diff --git a/TempleWare-CS2/source/templeware/features/aim/CUserCmd.h b/TempleWare-CS2/source/templeware/features/aim/CUserCmd.h index 1e862a6..dc5678e 100644 --- a/TempleWare-CS2/source/templeware/features/aim/CUserCmd.h +++ b/TempleWare-CS2/source/templeware/features/aim/CUserCmd.h @@ -2,149 +2,138 @@ #include #include "../../../templeware/utils/math/vector/vector.h" -#pragma pack(push, 1) -// --- Протобуферные структуры для сабтиков (CS2) --- - -struct CCmdQAnglePB { - QAngle_t angValue; -}; - -struct CCmdVectorPB { - Vector4D_t vecValue; -}; - -struct CBasePB_CS2 { - void* vtable; - uint32_t nHasBits; - uint64_t nCachedBits; -}; - -struct CInButtonStatePB_CS2 : CBasePB_CS2 { - uint64_t nValue; - uint64_t nValueChanged; - uint64_t nValueScroll; -}; - -struct CSubtickMoveStepPB_CS2 : CBasePB_CS2 { - uint64_t nButton; - bool bPressed; - float flWhen; - float flAnalogForwardDelta; - float flAnalogLeftDelta; -}; - -struct CCSGOInterpolationInfoPB_CS2 : CBasePB_CS2 { - float flFraction; - int nSrcTick; - int nDstTick; -}; - -struct CMsgQAnglePB_CS2 { QAngle_t angValue; }; -struct CMsgVectorPB_CS2 { Vector4D_t vecValue; }; - -struct CCSGOInputHistoryEntryPB_CS2 { - CMsgQAnglePB_CS2* pViewAngles; - CMsgVectorPB_CS2* pShootPosition; - CMsgVectorPB_CS2* pTargetHeadPositionCheck; - CMsgVectorPB_CS2* pTargetAbsPositionCheck; - CMsgQAnglePB_CS2* pTargetAngPositionCheck; - CCSGOInterpolationInfoPB_CS2* cl_interp; - CCSGOInterpolationInfoPB_CS2* sv_interp0; - CCSGOInterpolationInfoPB_CS2* sv_interp1; - CCSGOInterpolationInfoPB_CS2* player_interp; - int nRenderTickCount; - float flRenderTickFraction; - int nPlayerTickCount; - float flPlayerTickFraction; - int nFrameNumber; - int nTargetEntIndex; -}; +#define MEM_PAD(size) char _pad##__LINE__[size] template -struct RepeatedPtrFieldPB_CS2 { +struct RepeatedPtrField_t { struct Rep_t { int nAllocatedSize; - T* tElements[128]; + T* tElements[(std::numeric_limits::max() - 2 * sizeof(int)) / sizeof(void*)]; }; - void* pArena; // 0x0 (8 байт) - int nCurrentSize; // 0x8 (4 байта) - int nTotalSize; // 0xC (4 байта) - Rep_t* pRep; // 0x10 (8 байт) - // 0x18 + void* pArena; + int nCurrentSize; + int nTotalSize; + Rep_t* pRep; }; -static_assert(sizeof(RepeatedPtrFieldPB_CS2) == 0x18, "RepeatedPtrFieldPB_CS2 size mismatch!"); -struct CBaseUserCmdPB_CS2 { - RepeatedPtrFieldPB_CS2 subtickMovesField; // 0x0 (0x18) - void* strMoveCrc; // 0x18 - void* pInButtonState; // 0x20 - CMsgQAnglePB_CS2* pViewAngles; // 0x28 - int32_t nLegacyCommandNumber; // 0x30 - int32_t nClientTick; // 0x34 - float flForwardMove; // 0x38 - float flSideMove; // 0x3C - float flUpMove; // 0x40 - int32_t nImpulse; // 0x44 - int32_t nWeaponSelect; // 0x48 - int32_t nRandomSeed; // 0x4C - int32_t nMousedX; // 0x50 - int32_t nMousedY; // 0x54 - uint32_t nConsumedServerAngleChanges; // 0x58 - int32_t nCmdFlags; // 0x5C - uint32_t nPawnEntityHandle; // 0x60 - char pad[0x80 - 0x64]; // паддинг до 0x80 +class CBasePB { +public: + MEM_PAD(0x8); // 0x0 VTABLE + std::uint32_t nHasBits; // 0x8 + std::uint64_t nCachedBits; // 0xC + void SetBits(std::uint64_t nBits) { nCachedBits |= nBits; } }; -static_assert(sizeof(CBaseUserCmdPB_CS2) == 0x80, "CBaseUserCmdPB_CS2 size mismatch!"); +static_assert(sizeof(CBasePB) == 0x18); -struct CCSGOUserCmdPB_CS2 { - uint32_t nHasBits; // 0x0 - uint64_t nCachedSize; // 0x8 - RepeatedPtrFieldPB_CS2 inputHistoryField; // 0x10 (0x18) - CBaseUserCmdPB_CS2* pBaseCmd; // 0x28 - bool bLeftHandDesired; // 0x30 - char pad1[3]; // 0x31-0x33 - int32_t nAttack3StartHistoryIndex; // 0x34 - int32_t nAttack1StartHistoryIndex; // 0x38 - int32_t nAttack2StartHistoryIndex; // 0x3C - char pad2[4]; // 0x40-0x43 (чтобы размер стал 0x40) +class CMsgQAngle : public CBasePB { +public: + QAngle_t angValue; // 0x18 }; -static_assert(sizeof(CCSGOUserCmdPB_CS2) == 0x40, "CCSGOUserCmdPB_CS2 size mismatch!"); +static_assert(sizeof(CMsgQAngle) == 0x28); -struct CInButtonState_CS2 { - void* vtable; // 0x0 - uint64_t nValue; // 0x8 - uint64_t nValueChanged; // 0x10 - uint64_t nValueScroll; // 0x18 +class CMsgVector : public CBasePB { +public: + Vector_t vecValue; // 0x18 }; -static_assert(sizeof(CInButtonState_CS2) == 0x20, "CInButtonState_CS2 size mismatch!"); +static_assert(sizeof(CMsgVector) == 0x28); + +class CCSGOInterpolationInfoPB : public CBasePB { +public: + float flFraction; // 0x18 + int nSrcTick; // 0x1C + int nDstTick; // 0x20 +}; +static_assert(sizeof(CCSGOInterpolationInfoPB) == 0x28); + +class CCSGOInputHistoryEntryPB : public CBasePB { +public: + CMsgQAngle* pViewAngles; // 0x18 + CMsgVector* pShootPosition; // 0x20 + CMsgVector* pTargetHeadPositionCheck; // 0x28 + CMsgVector* pTargetAbsPositionCheck; // 0x30 + CMsgQAngle* pTargetAngPositionCheck; // 0x38 + CCSGOInterpolationInfoPB* cl_interp; // 0x40 + CCSGOInterpolationInfoPB* sv_interp0; // 0x48 + CCSGOInterpolationInfoPB* sv_interp1; // 0x50 + CCSGOInterpolationInfoPB* player_interp; // 0x58 + int nRenderTickCount; // 0x60 + float flRenderTickFraction; // 0x64 + int nPlayerTickCount; // 0x68 + float flPlayerTickFraction; // 0x6C + int nFrameNumber; // 0x70 + int nTargetEntIndex; // 0x74 +}; +static_assert(sizeof(CCSGOInputHistoryEntryPB) == 0x78); + +struct CInButtonState { + MEM_PAD(0x8); // 0x0 VTABLE + std::uint64_t nValue; // 0x8 + std::uint64_t nValueChanged; // 0x10 + std::uint64_t nValueScroll; // 0x18 +}; +static_assert(sizeof(CInButtonState) == 0x20); + +class CBaseUserCmdPB : public CBasePB { +public: + RepeatedPtrField_t subtickMovesField; + std::string* strMoveCrc; + CInButtonState* pInButtonState; // 0x20 + CMsgQAngle* pViewAngles; // 0x28 + std::int32_t nLegacyCommandNumber; + std::int32_t nClientTick; + float flForwardMove; + float flSideMove; + float flUpMove; + std::int32_t nImpulse; + std::int32_t nWeaponSelect; + std::int32_t nRandomSeed; + std::int32_t nMousedX; + std::int32_t nMousedY; + std::uint32_t nConsumedServerAngleChanges; + std::int32_t nCmdFlags; + std::uint32_t nPawnEntityHandle; +}; +static_assert(sizeof(CBaseUserCmdPB) == 0x80); + +class CCSGOUserCmdPB { +public: + std::uint32_t nHasBits; + std::uint64_t nCachedSize; + RepeatedPtrField_t inputHistoryField; + CBaseUserCmdPB* pBaseCmd; + bool bLeftHandDesired; + std::int32_t nAttack3StartHistoryIndex; + std::int32_t nAttack1StartHistoryIndex; + std::int32_t nAttack2StartHistoryIndex; + void CheckAndSetBits(std::uint32_t nBits) { + if (!(nHasBits & nBits)) + nHasBits |= nBits; + } +}; +static_assert(sizeof(CCSGOUserCmdPB) == 0x40); class CUserCmd { public: - char pad_0x00[0x8]; // 0x0 - char pad_0x08[0x10]; // 0x8 - CCSGOUserCmdPB_CS2 csgoUserCmd; // 0x18 - CInButtonState_CS2 nButtons; // 0x58 - char pad_0x78[0x20]; // 0x78 + MEM_PAD(0x8); // 0x0 VTABLE + MEM_PAD(0x10); // 0x8 + CCSGOUserCmdPB csgoUserCmd; // 0x18 + CInButtonState nButtons; // 0x58 + MEM_PAD(0x20); // 0x78 - CCSGOInputHistoryEntryPB_CS2* GetInputHistoryEntry(int nIndex) { - if (!csgoUserCmd.inputHistoryField.pRep) return nullptr; - if (nIndex < 0 || nIndex >= csgoUserCmd.inputHistoryField.nCurrentSize) return nullptr; + CCSGOInputHistoryEntryPB* GetInputHistoryEntry(int nIndex) { + if (nIndex >= csgoUserCmd.inputHistoryField.pRep->nAllocatedSize || nIndex >= csgoUserCmd.inputHistoryField.nCurrentSize) + return nullptr; return csgoUserCmd.inputHistoryField.pRep->tElements[nIndex]; } void SetSubTickAngle(const QAngle_t& angView) { - if (!csgoUserCmd.inputHistoryField.pRep) return; - for (int i = 0; i < csgoUserCmd.inputHistoryField.nCurrentSize; ++i) { - CCSGOInputHistoryEntryPB_CS2* pInputEntry = GetInputHistoryEntry(i); - if (!pInputEntry || !pInputEntry->pViewAngles) continue; + for (int i = 0; i < this->csgoUserCmd.inputHistoryField.pRep->nAllocatedSize; i++) { + CCSGOInputHistoryEntryPB* pInputEntry = this->GetInputHistoryEntry(i); + if (!pInputEntry || !pInputEntry->pViewAngles) + continue; pInputEntry->pViewAngles->angValue = angView; + pInputEntry->SetBits(0x1U); // INPUT_HISTORY_BITS_VIEWANGLES } } }; -static_assert(sizeof(CUserCmd) == 0x98, "CUserCmd size mismatch! Проверь паддинг и порядок полей."); - -// static_assert(sizeof(CUserCmd) == 0x98, "CUserCmd size mismatch! Проверь паддинг и порядок полей."); - -// Для overlay/hud: -// extern size_t g_szCBaseUserCmdPB_CS2; -// extern size_t g_szRepeatedPtrFieldPB_CS2; \ No newline at end of file +static_assert(sizeof(CUserCmd) == 0x98); \ No newline at end of file diff --git a/TempleWare-CS2/source/templeware/features/aim/aim.cpp b/TempleWare-CS2/source/templeware/features/aim/aim.cpp index d819ac0..5df658e 100644 --- a/TempleWare-CS2/source/templeware/features/aim/aim.cpp +++ b/TempleWare-CS2/source/templeware/features/aim/aim.cpp @@ -398,328 +398,210 @@ void Aimbot() { } void Ver2Aimbot(CUserCmd* pCmd) { - // --- Silent Aim: чистая и безопасная реализация --- - if (!Config::silent_aim || !pCmd) return; - static C_CSPlayerPawn* lockedTarget = nullptr; - static bool prevSilentState = false; - static QAngle_t last_punch_angle = { 0,0,0 }; - static int shotCount = 0; - static bool targetWasLost = false; - static bool targetWasLockedThisPress = false; - C_CSPlayerPawn* lp = H::oGetLocalPlayer(0); - if (!lp || !lp->handle().valid() || lp->getHealth() <= 0) return; - Vector_t lep = GetEntityEyePos(lp); - // Получаем viewangles только из CUserCmd! - QAngle_t* cur = nullptr; - if (pCmd->csgoUserCmd.pBaseCmd && pCmd->csgoUserCmd.pBaseCmd->pViewAngles) { - cur = &pCmd->csgoUserCmd.pBaseCmd->pViewAngles->angValue; - } - if (!cur) return; - // --- Кнопка активации --- - bool silentActive = Config::always_on_silent_aim ? true : (GetAsyncKeyState(Config::silent_aim_key) & 0x8000); - if (Config::silent_shooterAfterAim && (GetAsyncKeyState(Config::triggerbot_key) & 0x8000)) { - silentActive = true; - } - int shotsFired = lp ? lp->getShotsFired() : 0; - shotCount = shotsFired; - // --- Сброс флагов при новом нажатии --- - if (silentActive && !prevSilentState) { - targetWasLost = false; - targetWasLockedThisPress = false; - } - // --- Поиск цели --- - if (silentActive && !lockedTarget) { - if (Config::silent_rage || (!targetWasLost && !targetWasLockedThisPress)) { - int nMaxHighestEntity = I::GameEntity->Instance->GetHighestEntityIndex(); - float bestFov = Config::silent_aim_fov; - C_CSPlayerPawn* bestTarget = nullptr; - QAngle_t bestAngle = { 0, 0, 0 }; - for (int i = 1; i <= nMaxHighestEntity; i++) { - auto Entity = I::GameEntity->Instance->Get(i); - if (!Entity) continue; - if (!Entity->handle().valid()) continue; - SchemaClassInfoData_t* _class = nullptr; - Entity->dump_class_info(&_class); - if (!_class) continue; - const uint32_t hash = HASH(_class->szName); - if (hash == HASH("C_CSPlayerPawn")) { - C_CSPlayerPawn* pawn = (C_CSPlayerPawn*)Entity; - if (!pawn) continue; - if (pawn->get_entity_by_handle() == lp->get_entity_by_handle()) continue; - if (pawn->getHealth() <= 0) continue; - if (Config::team_check && pawn->getTeam() == lp->getTeam()) continue; - // --- Выбор кости для silent aim --- - Vector_t target_pos; - switch (Config::silent_aim_bone) { - case Config::BONE_HEAD: - target_pos = GetBonePosition(pawn, BONE_INDEX_HEAD); break; - case Config::BONE_NECK: - target_pos = GetBonePosition(pawn, BONE_INDEX_NECK); break; - case Config::BONE_BODY: - target_pos = GetBonePosition(pawn, BONE_INDEX_BODY); break; - case Config::BONE_NEAREST: - default: - target_pos = GetAimbotTargetPos(pawn, lep, *cur); break; - } - QAngle_t angle = CalcAngles(target_pos, lep); - angle.x *= -1.f; - angle.y += 180.f; - float fov = GetFov(*cur, angle); - if (!std::isfinite(fov) || fov > bestFov) continue; - bestFov = fov; - bestTarget = pawn; - bestAngle = angle; - } - } - lockedTarget = bestTarget; - last_punch_angle = { 0,0,0 }; - if (!Config::silent_rage && lockedTarget) targetWasLockedThisPress = true; - if (!Config::silent_rage && !lockedTarget) targetWasLost = true; - } - } - // --- Сброс при отпускании кнопки --- - if (!silentActive) { - lockedTarget = nullptr; - last_punch_angle = { 0,0,0 }; - targetWasLost = false; - targetWasLockedThisPress = false; - } - // --- Наведение на цель --- - if (silentActive && lockedTarget) { - // Проверка валидности цели - if (!lp || !lp->handle().valid() || lp->getHealth() <= 0 || - lockedTarget->get_entity_by_handle() == lp->get_entity_by_handle() || - lockedTarget->getHealth() <= 0 || - !lockedTarget->handle().valid() || - (Config::team_check && lockedTarget->getTeam() == lp->getTeam())) { - lockedTarget = nullptr; - last_punch_angle = { 0,0,0 }; - targetWasLost = true; - prevSilentState = silentActive; - return; - } - // --- Выбор кости для silent aim --- - Vector_t target_pos; - switch (Config::silent_aim_bone) { - case Config::BONE_HEAD: - target_pos = GetBonePosition(lockedTarget, BONE_INDEX_HEAD); break; - case Config::BONE_NECK: - target_pos = GetBonePosition(lockedTarget, BONE_INDEX_NECK); break; - case Config::BONE_BODY: - target_pos = GetBonePosition(lockedTarget, BONE_INDEX_BODY); break; - case Config::BONE_NEAREST: - default: - target_pos = GetAimbotTargetPos(lockedTarget, lep, *cur); break; - } - QAngle_t angle = CalcAngles(target_pos, lep); - angle.x *= -1.f; - angle.y += 180.f; - // --- Smooth --- - if (Config::silent_aim_smooth > 0.f) { - QAngle_t delta = (angle - *cur).Normalize(); - float smooth = Config::silent_aim_smooth; - angle = *cur + delta * (1.f / smooth); - angle = angle.Normalize(); - } - *cur = angle; - } - prevSilentState = silentActive; + //// --- Silent Aim: чистая и безопасная реализация --- + //if (!Config::silent_aim || !pCmd) return; + //static C_CSPlayerPawn* lockedTarget = nullptr; + //static bool prevSilentState = false; + //static QAngle_t last_punch_angle = { 0,0,0 }; + //static int shotCount = 0; + //static bool targetWasLost = false; + //static bool targetWasLockedThisPress = false; + //C_CSPlayerPawn* lp = H::oGetLocalPlayer(0); + //if (!lp || !lp->handle().valid() || lp->getHealth() <= 0) return; + //Vector_t lep = GetEntityEyePos(lp); + //// Получаем viewangles только из CUserCmd! + //QAngle_t* cur = nullptr; + //if (pCmd->csgoUserCmd.pBaseCmd && pCmd->csgoUserCmd.pBaseCmd->pViewAngles) { + // cur = &pCmd->csgoUserCmd.pBaseCmd->pViewAngles->angValue; + //} + //if (!cur) return; + //// --- Кнопка активации --- + //bool silentActive = Config::always_on_silent_aim ? true : (GetAsyncKeyState(Config::silent_aim_key) & 0x8000); + //if (Config::silent_shooterAfterAim && (GetAsyncKeyState(Config::triggerbot_key) & 0x8000)) { + // silentActive = true; + //} + //int shotsFired = lp ? lp->getShotsFired() : 0; + //shotCount = shotsFired; + //// --- Сброс флагов при новом нажатии --- + //if (silentActive && !prevSilentState) { + // targetWasLost = false; + // targetWasLockedThisPress = false; + //} + //// --- Поиск цели --- + //if (silentActive && !lockedTarget) { + // if (Config::silent_rage || (!targetWasLost && !targetWasLockedThisPress)) { + // int nMaxHighestEntity = I::GameEntity->Instance->GetHighestEntityIndex(); + // float bestFov = Config::silent_aim_fov; + // C_CSPlayerPawn* bestTarget = nullptr; + // QAngle_t bestAngle = { 0, 0, 0 }; + // for (int i = 1; i <= nMaxHighestEntity; i++) { + // auto Entity = I::GameEntity->Instance->Get(i); + // if (!Entity) continue; + // if (!Entity->handle().valid()) continue; + // SchemaClassInfoData_t* _class = nullptr; + // Entity->dump_class_info(&_class); + // if (!_class) continue; + // const uint32_t hash = HASH(_class->szName); + // if (hash == HASH("C_CSPlayerPawn")) { + // C_CSPlayerPawn* pawn = (C_CSPlayerPawn*)Entity; + // if (!pawn) continue; + // if (pawn->get_entity_by_handle() == lp->get_entity_by_handle()) continue; + // if (pawn->getHealth() <= 0) continue; + // if (Config::team_check && pawn->getTeam() == lp->getTeam()) continue; + // // --- Выбор кости для silent aim --- + // Vector_t target_pos; + // switch (Config::silent_aim_bone) { + // case Config::BONE_HEAD: + // target_pos = GetBonePosition(pawn, BONE_INDEX_HEAD); break; + // case Config::BONE_NECK: + // target_pos = GetBonePosition(pawn, BONE_INDEX_NECK); break; + // case Config::BONE_BODY: + // target_pos = GetBonePosition(pawn, BONE_INDEX_BODY); break; + // case Config::BONE_NEAREST: + // default: + // target_pos = GetAimbotTargetPos(pawn, lep, *cur); break; + // } + // QAngle_t angle = CalcAngles(target_pos, lep); + // angle.x *= -1.f; + // angle.y += 180.f; + // float fov = GetFov(*cur, angle); + // if (!std::isfinite(fov) || fov > bestFov) continue; + // bestFov = fov; + // bestTarget = pawn; + // bestAngle = angle; + // } + // } + // lockedTarget = bestTarget; + // last_punch_angle = { 0,0,0 }; + // if (!Config::silent_rage && lockedTarget) targetWasLockedThisPress = true; + // if (!Config::silent_rage && !lockedTarget) targetWasLost = true; + // } + //} + //// --- Сброс при отпускании кнопки --- + //if (!silentActive) { + // lockedTarget = nullptr; + // last_punch_angle = { 0,0,0 }; + // targetWasLost = false; + // targetWasLockedThisPress = false; + //} + //// --- Наведение на цель --- + //if (silentActive && lockedTarget) { + // // Проверка валидности цели + // if (!lp || !lp->handle().valid() || lp->getHealth() <= 0 || + // lockedTarget->get_entity_by_handle() == lp->get_entity_by_handle() || + // lockedTarget->getHealth() <= 0 || + // !lockedTarget->handle().valid() || + // (Config::team_check && lockedTarget->getTeam() == lp->getTeam())) { + // lockedTarget = nullptr; + // last_punch_angle = { 0,0,0 }; + // targetWasLost = true; + // prevSilentState = silentActive; + // return; + // } + // // --- Выбор кости для silent aim --- + // Vector_t target_pos; + // switch (Config::silent_aim_bone) { + // case Config::BONE_HEAD: + // target_pos = GetBonePosition(lockedTarget, BONE_INDEX_HEAD); break; + // case Config::BONE_NECK: + // target_pos = GetBonePosition(lockedTarget, BONE_INDEX_NECK); break; + // case Config::BONE_BODY: + // target_pos = GetBonePosition(lockedTarget, BONE_INDEX_BODY); break; + // case Config::BONE_NEAREST: + // default: + // target_pos = GetAimbotTargetPos(lockedTarget, lep, *cur); break; + // } + // QAngle_t angle = CalcAngles(target_pos, lep); + // angle.x *= -1.f; + // angle.y += 180.f; + // // --- Smooth --- + // if (Config::silent_aim_smooth > 0.f) { + // QAngle_t delta = (angle - *cur).Normalize(); + // float smooth = Config::silent_aim_smooth; + // angle = *cur + delta * (1.f / smooth); + // angle = angle.Normalize(); + // } + // *cur = angle; + //} + //prevSilentState = silentActive; } // --- Функция для вывода отладочной информации через ImGui --- void ShowSilentAimDebugInfo(const CUserCmd* pCmd) { char debugBuf[256]; _snprintf_s(debugBuf, sizeof(debugBuf), - "CUserCmd: size=%zu, csgoUserCmd@%zu, nButtons@%zu, nSubticks=%d, pRep=%p, pBaseCmd=%p", + "CUserCmd: size=%zu, m_csgoUserCmd@%zu, m_nButtons@%zu, nSubticks=%d, pRep=%p, pBaseCmd=%p", sizeof(CUserCmd), - offsetof(CUserCmd, csgoUserCmd), - offsetof(CUserCmd, nButtons), - pCmd->csgoUserCmd.inputHistoryField.nCurrentSize, - (void*)pCmd->csgoUserCmd.inputHistoryField.pRep, - (void*)pCmd->csgoUserCmd.pBaseCmd); + offsetof(CUserCmd, m_csgoUserCmd), + offsetof(CUserCmd, m_nButtons), + pCmd->m_csgoUserCmd.m_inputHistoryField.m_pRep ? pCmd->m_csgoUserCmd.m_inputHistoryField.m_pRep->m_nAllocatedSize : 0, + (void*)pCmd->m_csgoUserCmd.m_inputHistoryField.m_pRep, + (void*)pCmd->m_csgoUserCmd.m_pBaseCmd); g_DebugString = debugBuf; - // ImGui::SetTooltip("%s", debugBuf); // Можно включить при необходимости } void SilentAimbot(CUserCmd* pCmd) { - static bool printed = false; - if (!printed) { - std::cout << "RepeatedPtrFieldPB_CS2=" << sizeof(RepeatedPtrFieldPB_CS2) - << ", CBaseUserCmdPB_CS2=" << sizeof(CBaseUserCmdPB_CS2) - << ", CCSGOUserCmdPB_CS2=" << sizeof(CCSGOUserCmdPB_CS2) - << ", CUserCmd=" << sizeof(CUserCmd) - << ", csgoUserCmd@0x" << std::hex << offsetof(CUserCmd, csgoUserCmd) - << ", nButtons@0x" << std::hex << offsetof(CUserCmd, nButtons) - << std::dec << std::endl; - printed = true; + if (!Config::silent_aim || !pCmd) + return; + + C_CSPlayerPawn* lp = H::oGetLocalPlayer(0); + if (!lp || !lp->handle().valid() || lp->getHealth() <= 0) + return; + + // Кнопка активации + bool silentActive = Config::always_on_silent_aim ? true : (GetAsyncKeyState(Config::silent_aim_key) & 0x8000); + if (Config::silent_shooterAfterAim && (GetAsyncKeyState(Config::triggerbot_key) & 0x8000)) { + silentActive = true; } - char debugBuf[256]; - if (!Config::silent_aim || !pCmd) return; - static C_CSPlayerPawn* lockedTarget = nullptr; - static bool prevSilentState = false; - static QAngle_t last_punch_angle = { 0,0,0 }; - static int shotCount = 0; - static bool targetWasLost = false; - static bool targetWasLockedThisPress = false; - C_CSPlayerPawn* lp = H::oGetLocalPlayer(0); - if (!lp || !lp->handle().valid() || lp->getHealth() <= 0) return; - Vector_t lep = GetEntityEyePos(lp); - // --- Кнопка активации --- - bool silentActive = Config::always_on_silent_aim ? true : (GetAsyncKeyState(Config::silent_aim_key) & 0x8000); - if (Config::silent_shooterAfterAim && (GetAsyncKeyState(Config::triggerbot_key) & 0x8000)) { - silentActive = true; - } - int shotsFired = lp ? lp->getShotsFired() : 0; - shotCount = shotsFired; + if (!silentActive) + return; - if (silentActive && !prevSilentState) { - targetWasLost = false; - targetWasLockedThisPress = false; - } - if (silentActive && !lockedTarget) { - if (Config::silent_rage || (!targetWasLost && !targetWasLockedThisPress)) { - int nMaxHighestEntity = I::GameEntity->Instance->GetHighestEntityIndex(); - float bestFov = Config::silent_aim_fov; - C_CSPlayerPawn* bestTarget = nullptr; - QAngle_t bestAngle{}; - for (int i = 1; i <= nMaxHighestEntity; i++) { - auto Entity = I::GameEntity->Instance->Get(i); - if (!Entity) continue; - if (!Entity->handle().valid()) continue; - SchemaClassInfoData_t* _class = nullptr; - Entity->dump_class_info(&_class); - if (!_class) continue; - const uint32_t hash = HASH(_class->szName); - if (hash == HASH("C_CSPlayerPawn")) { - C_CSPlayerPawn* pawn = (C_CSPlayerPawn*)Entity; - if (!pawn) continue; - if (pawn->get_entity_by_handle() == lp->get_entity_by_handle()) continue; - if (pawn->getHealth() <= 0) continue; - if (Config::team_check && pawn->getTeam() == lp->getTeam()) continue; - Vector_t target_pos; - switch (Config::silent_aim_bone) { - case Config::BONE_HEAD: - target_pos = GetBonePosition(pawn, BONE_INDEX_HEAD); break; - case Config::BONE_NECK: - target_pos = GetBonePosition(pawn, BONE_INDEX_NECK); break; - case Config::BONE_BODY: - target_pos = GetBonePosition(pawn, BONE_INDEX_BODY); break; - case Config::BONE_NEAREST: - default: - target_pos = GetAimbotTargetPos(pawn, lep, QAngle_t{}); break; - } - QAngle_t angle = CalcAngles(target_pos, lep); - angle.x *= -1.f; - angle.y += 180.f; - float fov = sqrtf(angle.x * angle.x + angle.y * angle.y); - if (!std::isfinite(fov) || fov > bestFov) continue; - bestFov = fov; - bestTarget = pawn; - bestAngle = angle; - } - } - lockedTarget = bestTarget; - last_punch_angle = { 0,0,0 }; - if (!Config::silent_rage && lockedTarget) targetWasLockedThisPress = true; - if (!Config::silent_rage && !lockedTarget) targetWasLost = true; - } - } - if (!silentActive) { - lockedTarget = nullptr; - last_punch_angle = { 0,0,0 }; - targetWasLost = false; - targetWasLockedThisPress = false; - } - if (silentActive && lockedTarget) { - if (!lp || !lp->handle().valid() || lp->getHealth() <= 0 || - lockedTarget->get_entity_by_handle() == lp->get_entity_by_handle() || - lockedTarget->getHealth() <= 0 || - !lockedTarget->handle().valid() || - (Config::team_check && lockedTarget->getTeam() == lp->getTeam())) { - lockedTarget = nullptr; - last_punch_angle = { 0,0,0 }; - targetWasLost = true; - prevSilentState = silentActive; - return; - } - Vector_t target_pos; - switch (Config::silent_aim_bone) { - case Config::BONE_HEAD: - target_pos = GetBonePosition(lockedTarget, BONE_INDEX_HEAD); break; - case Config::BONE_NECK: - target_pos = GetBonePosition(lockedTarget, BONE_INDEX_NECK); break; - case Config::BONE_BODY: - target_pos = GetBonePosition(lockedTarget, BONE_INDEX_BODY); break; - case Config::BONE_NEAREST: - default: - target_pos = GetAimbotTargetPos(lockedTarget, lep, QAngle_t{}); break; - } - QAngle_t angle = CalcAngles(target_pos, lep); - angle.x *= -1.f; - angle.y += 180.f; - // --- Smooth --- - if (Config::silent_aim_smooth > 0.f) { - QAngle_t cur = angle; - bool found = false; - for (int i = 0; i < 8; ++i) { - CCSGOInputHistoryEntryPB_CS2* entry = pCmd->GetInputHistoryEntry(i); - if (entry && entry->pViewAngles) { - cur = entry->pViewAngles->angValue; - found = true; - break; - } - } - QAngle_t delta = (angle - cur).Normalize(); - float smooth = Config::silent_aim_smooth; - angle = cur + delta * (1.f / smooth); - angle = angle.Normalize(); - } - // --- Устанавливаем угол для всех сабтиков --- - int nSubticks = pCmd->csgoUserCmd.inputHistoryField.nCurrentSize; - _snprintf_s(debugBuf, sizeof(debugBuf), "nSubticks=%d, pRep=%p", nSubticks, (void*)pCmd->csgoUserCmd.inputHistoryField.pRep); - // g_DebugString = debugBuf; // Удалено + Vector_t localEye = GetEntityEyePos(lp); + // --- Исправленный доступ к углам --- + QAngle_t* curAngles = nullptr; + if (pCmd && pCmd->csgoUserCmd.pBaseCmd && pCmd->csgoUserCmd.pBaseCmd->pViewAngles) + curAngles = &pCmd->csgoUserCmd.pBaseCmd->pViewAngles->angValue; + if (!curAngles) + return; - // --- Расширенный отладочный вывод --- - // char debugBuf[256]; // Удалено - // _snprintf_s(debugBuf, sizeof(debugBuf), // Удалено - // "CUserCmd: size=%zu, csgoUserCmd@%zu, nButtons@%zu, nSubticks=%d, pRep=%p, pBaseCmd=%p", // Удалено - // sizeof(CUserCmd), // Удалено - // offsetof(CUserCmd, csgoUserCmd), // Удалено - // offsetof(CUserCmd, nButtons), // Удалено - // pCmd->csgoUserCmd.inputHistoryField.nCurrentSize, // Удалено - // (void*)pCmd->csgoUserCmd.inputHistoryField.pRep, // Удалено - // (void*)pCmd->csgoUserCmd.pBaseCmd); // Удалено - // g_DebugString = debugBuf; // Удалено + // Поиск цели + float bestFov = Config::silent_aim_fov; + C_CSPlayerPawn* bestTarget = nullptr; + Vector_t bestTargetPos{}; + for (int i = 1; i <= I::GameEntity->Instance->GetHighestEntityIndex(); ++i) { + auto Entity = I::GameEntity->Instance->Get(i); + if (!Entity || !Entity->handle().valid()) + continue; + SchemaClassInfoData_t* _class = nullptr; + Entity->dump_class_info(&_class); + if (!_class || HASH(_class->szName) != HASH("C_CSPlayerPawn")) + continue; + C_CSPlayerPawn* pawn = (C_CSPlayerPawn*)Entity; + if (!pawn || pawn->get_entity_by_handle() == lp->get_entity_by_handle() || pawn->getHealth() <= 0) + continue; + if (Config::team_check && pawn->getTeam() == lp->getTeam()) + continue; + Vector_t targetPos = GetBonePosition(pawn, Config::silent_aim_bone == Config::BONE_HEAD ? BONE_INDEX_HEAD : + Config::silent_aim_bone == Config::BONE_NECK ? BONE_INDEX_NECK : + Config::silent_aim_bone == Config::BONE_BODY ? BONE_INDEX_BODY : + BONE_INDEX_HEAD); + QAngle_t angle = CalcAngles(targetPos, localEye); + angle.x *= -1.f; + angle.y += 180.f; + float fov = GetFov(*curAngles, angle); + if (!std::isfinite(fov) || fov > bestFov) + continue; + bestFov = fov; + bestTarget = pawn; + bestTargetPos = targetPos; + } + if (!bestTarget) + return; - ShowSilentAimDebugInfo(pCmd); + QAngle_t aimAngle = CalcAngles(bestTargetPos, localEye); + aimAngle.x *= -1.f; + aimAngle.y += 180.f; - _snprintf_s(debugBuf, sizeof(debugBuf), - "sizeof(CUserCmd)=%zu, csgoUserCmd@0x%zX, nButtons@0x%zX", - sizeof(CUserCmd), - offsetof(CUserCmd, csgoUserCmd), - offsetof(CUserCmd, nButtons)); - g_DebugString = debugBuf; - - _snprintf_s(debugBuf, sizeof(debugBuf), - "sizeof(CUserCmd)=%zu, csgoUserCmd@0x%zX, nButtons@0x%zX, RepeatedPtrFieldPB_CS2=%zu, CBaseUserCmdPB_CS2=%zu", - sizeof(CUserCmd), - offsetof(CUserCmd, csgoUserCmd), - offsetof(CUserCmd, nButtons), - sizeof(RepeatedPtrFieldPB_CS2), - sizeof(CBaseUserCmdPB_CS2)); - g_DebugString = debugBuf; - - _snprintf_s(debugBuf, sizeof(debugBuf), - "RepeatedPtrFieldPB_CS2=%zu, CBaseUserCmdPB_CS2=%zu, CCSGOUserCmdPB_CS2=%zu, CUserCmd=%zu, csgoUserCmd@0x%zX, nButtons@0x%zX", - sizeof(RepeatedPtrFieldPB_CS2), - sizeof(CBaseUserCmdPB_CS2), - sizeof(CCSGOUserCmdPB_CS2), - sizeof(CUserCmd), - offsetof(CUserCmd, csgoUserCmd), - offsetof(CUserCmd, nButtons)); - g_DebugString = debugBuf; - - - } - prevSilentState = silentActive; + // Установить угол для всех сабтиков + pCmd->SetSubTickAngle(aimAngle); } diff --git a/TempleWare-CS2/source/templeware/hooks/hooks.cpp b/TempleWare-CS2/source/templeware/hooks/hooks.cpp index cdeb190..d71c31b 100644 --- a/TempleWare-CS2/source/templeware/hooks/hooks.cpp +++ b/TempleWare-CS2/source/templeware/hooks/hooks.cpp @@ -38,12 +38,13 @@ void* __fastcall H::hkLevelInit(void* pClientModeShared, const char* szNewMap) { return LevelInit.GetOriginal()(pClientModeShared, szNewMap); } -bool __fastcall H::hkCreateMove(void* pInput, int nSlot, void* pCmd) { - //Aimbot(); - //SilentAimbot(reinterpret_cast(pCmd)); - Ver2Aimbot(reinterpret_cast(pCmd)); +bool __fastcall H::hkCreateMove(void* pInput, int nSlot, CUserCmd* pCmd) { + SilentAimbot(pCmd); + //Ver2Aimbot(pCmd); Triggerbot(); - return CreateMove.GetOriginal()(pInput, nSlot, pCmd); + + return CreateMove.GetOriginal()(pInput, nSlot, pCmd); + // return CreateMove.GetOriginal()(pInput, edx, nSlot, pCmd); } void H::Hooks::init() { diff --git a/TempleWare-CS2/source/templeware/hooks/hooks.h b/TempleWare-CS2/source/templeware/hooks/hooks.h index 936f7b5..53b0f5b 100644 --- a/TempleWare-CS2/source/templeware/hooks/hooks.h +++ b/TempleWare-CS2/source/templeware/hooks/hooks.h @@ -1,4 +1,5 @@ #pragma once +#include "../features/aim/CUserCmd.h" #include "includeHooks.h" #include "../../cs2/entity/C_AggregateSceneObject/C_AggregateSceneObject.h" #include "../../cs2/entity/C_CSPlayerPawn/C_CSPlayerPawn.h" @@ -16,7 +17,8 @@ namespace H { void* __fastcall hkLevelInit(void* pClientModeShared, const char* szNewMap); void __fastcall hkChamsObject(void* pAnimatableSceneObjectDesc, void* pDx11, CMeshData* arrMeshDraw, int nDataCount, void* pSceneView, void* pSceneLayer, void* pUnk, void* pUnk2); void __fastcall hkRenderFlashbangOverlay(void* a1, void* a2, void* a3, void* a4, void* a5); - bool __fastcall hkCreateMove(void* pInput, int nSlot, void* pCmd); + // bool __fastcall hkCreateMove(void* pInput, void* edx, int nSlot, CUserCmd* pCmd); + bool __fastcall hkCreateMove(void* pInput, int nSlot, CUserCmd* pCmd); inline float g_flActiveFov; float hkGetRenderFov(void* rcx); diff --git a/examples/Axion-CS2-RAGE-CHEAT/.gitattributes b/examples/Axion-CS2-RAGE-CHEAT/.gitattributes new file mode 100644 index 0000000..dfe0770 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/examples/Axion-CS2-RAGE-CHEAT/LICENSE b/examples/Axion-CS2-RAGE-CHEAT/LICENSE new file mode 100644 index 0000000..351a74f --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 T1GXR + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/examples/Axion-CS2-RAGE-CHEAT/README.md b/examples/Axion-CS2-RAGE-CHEAT/README.md new file mode 100644 index 0000000..efab531 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/README.md @@ -0,0 +1,52 @@ +# Axion-CS2-RAGE-CHEAT + + The source code of AXION CS2 internal rage cheat. + + It's made on asphyxia base and has some features implemented from csgo cheats like Pandora. + + I decided to make it public beacause it has been sold for 75$ and then leaked on the internet. + + It has some great features but it can't be used for hvh because its preety buggy. + + The cheat might get you VAC banned so only use it at your own risk (better on non prime accounts). + +# Status: Needs update! +I don't have time to work on it anymore because of lack of time and other personal projects but I'll let it for the community. + +If you are trying to fix it, you have to: +- Update the schema (take it from asphyxia because it's the same) +- Update the signatures (You can find them in hooks.cpp/hooks.h). +- Make sure you build it on publish and not on release. (If you build on release you will get a lot of errors) +- Make sure you include everything required in the project settings! + +# PREVIEW +![Screenshot 2024-04-14 175107](https://github.com/T1GxR/AxionCS2-RAGE-CHEAT/assets/106729571/df318ac7-1723-43c0-bc00-d5900812df52) +![Screenshot 2024-04-14 175057](https://github.com/T1GxR/AxionCS2-RAGE-CHEAT/assets/106729571/2496ee46-667e-47b6-b1c7-8c97c18f88bf) +![Screenshot 2024-04-14 175032](https://github.com/T1GxR/AxionCS2-RAGE-CHEAT/assets/106729571/719246a9-4812-4134-a269-efadf648d78c) +![Screenshot 2024-04-14 175018](https://github.com/T1GxR/AxionCS2-RAGE-CHEAT/assets/106729571/3f80c0a0-96f4-432f-b55f-e2232297b323) +![Screenshot 2024-04-14 175010](https://github.com/T1GxR/AxionCS2-RAGE-CHEAT/assets/106729571/7535baf2-577a-4ae5-8bd3-39cf2a53a6d6) + +# Features: + + RAGE BOT: + - Rapid Fire + - Anti Aim (Jitter) + - Multipoint + - PSilent + + Visual: + - ESP (BOX, SKELETON AND MORE) + - CHAMS + - ITEM ESP + - FLAGS + - FOV changer + + Misc: + - Night mode + - Sky box changer + - No flash + - No smoke + - Third person + - No impact + + Other features: + - Inventory changer with item dump + - In game skin changer + - Configs tab (Path: Documents/.cs2/settings) + - Plant bomb anywhere (only works at the beginning of the round for a second only) + - AND MORE + +# TO-DO + + Improve the rage tab and some miscellaneous features because they were created to manipulate the game server and they only work on local games/practice games. Basically on higher ping games, the rage is completely useless, as well as bhop which makes the character fly while holding space. All those bugs can be fixed if you know what to do. + diff --git a/examples/Axion-CS2-RAGE-CHEAT/base.sln b/examples/Axion-CS2-RAGE-CHEAT/base.sln new file mode 100644 index 0000000..abac67b --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/base.sln @@ -0,0 +1,34 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.33801.447 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cstrike", "cstrike\cstrike.vcxproj", "{DAC639DD-46A6-B878-4FBE-434FBB1C1FDA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Developer|x64 = Developer|x64 + Distrib|x64 = Distrib|x64 + Publish|x64 = Publish|x64 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DAC639DD-46A6-B878-4FBE-434FBB1C1FDA}.Debug|x64.ActiveCfg = Debug|x64 + {DAC639DD-46A6-B878-4FBE-434FBB1C1FDA}.Debug|x64.Build.0 = Debug|x64 + {DAC639DD-46A6-B878-4FBE-434FBB1C1FDA}.Developer|x64.ActiveCfg = Developer|x64 + {DAC639DD-46A6-B878-4FBE-434FBB1C1FDA}.Developer|x64.Build.0 = Developer|x64 + {DAC639DD-46A6-B878-4FBE-434FBB1C1FDA}.Distrib|x64.ActiveCfg = Distrib|x64 + {DAC639DD-46A6-B878-4FBE-434FBB1C1FDA}.Distrib|x64.Build.0 = Distrib|x64 + {DAC639DD-46A6-B878-4FBE-434FBB1C1FDA}.Publish|x64.ActiveCfg = Publish|x64 + {DAC639DD-46A6-B878-4FBE-434FBB1C1FDA}.Publish|x64.Build.0 = Publish|x64 + {DAC639DD-46A6-B878-4FBE-434FBB1C1FDA}.Release|x64.ActiveCfg = Release|x64 + {DAC639DD-46A6-B878-4FBE-434FBB1C1FDA}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {0BA324F3-F438-4261-89D4-5AF13CD1FA32} + EndGlobalSection +EndGlobal diff --git a/examples/Axion-CS2-RAGE-CHEAT/cs2.png b/examples/Axion-CS2-RAGE-CHEAT/cs2.png new file mode 100644 index 0000000..528b518 Binary files /dev/null and b/examples/Axion-CS2-RAGE-CHEAT/cs2.png differ diff --git a/examples/Axion-CS2-RAGE-CHEAT/cs2.webp b/examples/Axion-CS2-RAGE-CHEAT/cs2.webp new file mode 100644 index 0000000..2bc8e1c Binary files /dev/null and b/examples/Axion-CS2-RAGE-CHEAT/cs2.webp differ diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/CS2GunIcons.ttf b/examples/Axion-CS2-RAGE-CHEAT/cstrike/CS2GunIcons.ttf new file mode 100644 index 0000000..e1a55e3 Binary files /dev/null and b/examples/Axion-CS2-RAGE-CHEAT/cstrike/CS2GunIcons.ttf differ diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/common.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/common.h new file mode 100644 index 0000000..9cc713c --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/common.h @@ -0,0 +1,251 @@ +#pragma once + +/* + * current build of cheat, change this when you made noticeable changes + * - used for automatic adaptation mechanism of configuration files from previous versions + */ + +#define CS_VERSION 2000 +#pragma section(".text") +__declspec(allocate(".text")) const unsigned char _fake_addr[] = { 0xFF, 0x23 }; + + /* + * game's modules + */ +#define CLIENT_DLL CS_XOR(L"client.dll") +#define SERVER_DLL CS_XOR(L"server.dll") +#define ENGINE2_DLL CS_XOR(L"engine2.dll") +#define SCHEMASYSTEM_DLL CS_XOR(L"schemasystem.dll") +#define INPUTSYSTEM_DLL CS_XOR(L"inputsystem.dll") +#define SDL3_DLL CS_XOR(L"SDL3.dll") +#define TIER0_DLL CS_XOR(L"tier0.dll") +#define ENGINE2_DLL CS_XOR(L"engine2.dll") + +#define NAVSYSTEM_DLL CS_XOR(L"navsystem.dll") +#define RENDERSYSTEM_DLL CS_XOR(L"rendersystemdx11.dll") +#define LOCALIZE_DLL CS_XOR(L"localize.dll") +#define DBGHELP_DLL CS_XOR(L"dbghelp.dll") +#define GAMEOVERLAYRENDERER_DLL CS_XOR(L"GameOverlayRenderer64.dll") +#define PARTICLES_DLL CS_XOR(L"particles.dll") +#define SCENESYSTEM_DLL CS_XOR(L"scenesystem.dll") +#define MATERIAL_SYSTEM2_DLL CS_XOR(L"materialsystem2.dll") +#define MATCHMAKING_DLL CS_XOR(L"matchmaking.dll") +#define RESOURCESYSTEM_DLL CS_XOR(L"resourcesystem.dll") + + /* + * define to specify default string encryption + */ +#ifdef _DEBUG +#define CS_XOR(STRING) STRING +#else +#define JM_XORSTR_DISABLE_AVX_INTRINSICS + // used: string encryption +#include "xorstr.h" +#define CS_XOR(STRING) xorstr_(STRING) +#endif + +// define to enable logging output to console +#ifdef _DEBUG +#define CS_LOG_CONSOLE +#endif + +// define to enable logging output to file +#define CS_LOG_FILE + +// define to enable additional run-time checks +#ifdef _DEBUG +#define CS_PARANOID +#endif + +/* + * define to search all possible occurrences for pattern and log if pattern isn't unique + * - useful for keeping patterns up to date and preventing possible inconsistent behavior + */ +#ifdef _DEBUG + #define CS_PARANOID_PATTERN_UNIQUENESS +#endif + +/* + * define to overwrite configuration file formatter implementation + */ +#define CS_CONFIGURATION_BINARY + // name of the default configuration file +#define CS_CONFIGURATION_DEFAULT_FILE_NAME L"default" + +// define to force disable behavior based on "Run-Time Type Information", even if available +//#define CS_NO_RTTI + +// @todo: use #warning instead of static asserts when c++23 comes out + +#pragma region common_architecture_specific +#if defined(i386) || defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__i686__) || defined(__i386) || defined(_M_IX86) || defined(_X86_) || defined(__THW_INTEL__) || defined(__I86__) || defined(__INTEL__) +#define CS_ARCH_X86 +#elif defined(__LP64__) || (defined(__x86_64__) && !defined(__ILP32__)) || defined(_M_X64) || defined(__ia64) || defined(_M_IA64) || defined(__aarch64__) || defined(__powerpc64__) +#define CS_ARCH_X64 +#else +static_assert(false, "could not determine the target architecture, consider define it manually!"); +#endif + +#pragma region common_compiler_specific +#ifdef _MSC_VER +#define CS_COMPILER_MSC +#endif +#ifdef __clang__ // @note: clang-cl have defined both 'CS_COMPILER_CLANG' and 'CS_COMPILER_MSC' +#define CS_COMPILER_CLANG +#endif + +#ifdef __has_builtin +#define CS_HAS_BUILTIN(BUILTIN) __has_builtin(BUILTIN) +#else +#define CS_HAS_BUILTIN(BUILTIN) 0 +#endif + +#ifdef CS_COMPILER_MSC +// treat "discarding return value of function with 'nodiscard' attribute" warning as error +#pragma warning(error: 4834) +#endif + +#ifdef CS_COMPILER_CLANG +#pragma clang diagnostic ignored "-Wunused-private-field" +#endif + +#if defined(CS_COMPILER_MSC) || defined(CS_COMPILER_CLANG) +#define CS_NAKED __declspec(naked) +#endif + +// @todo: platform dependent / but currently we shouldn't give fuck on it +#define CS_CDECL __cdecl +#define CS_STDCALL __stdcall +#define CS_FASTCALL __fastcall +#define CS_THISCALL __thiscall +#define CS_VECTORCALL __vectorcall +#pragma endregion + +#pragma region common_implementation_specific +#define _CS_INTERNAL_CONCATENATE(LEFT, RIGHT) LEFT##RIGHT +#define _CS_INTERNAL_STRINGIFY(NAME) #NAME +#define _CS_INTERNAL_UNPARENTHESIZE(...) __VA_ARGS__ + +// convert plain text to string +#define CS_STRINGIFY(NAME) _CS_INTERNAL_STRINGIFY(NAME) +// concatenate plain text +#define CS_CONCATENATE(LEFT, RIGHT) _CS_INTERNAL_CONCATENATE(LEFT, RIGHT) +// unparenthesize variadic arguments +#define CS_UNPARENTHESIZE(...) _CS_INTERNAL_UNPARENTHESIZE(__VA_ARGS__) + +// calculate elements count of fixed-size C array +#define CS_ARRAYSIZE(ARRAY) (sizeof(ARRAY) / sizeof(ARRAY[0])) + +// calculate the offset of a struct member variable, in bytes +#if defined(_CRT_USE_BUILTIN_OFFSETOF) || CS_HAS_BUILTIN(__builtin_offsetof) +#define CS_OFFSETOF(STRUCT, MEMBER) __builtin_offsetof(STRUCT, MEMBER) +#else +#define CS_OFFSETOF(STRUCT, MEMBER) reinterpret_cast(std::addressof(static_cast(nullptr)->MEMBER)) +#endif + +#ifndef CS_NO_RTTI +#if defined(CS_COMPILER_MSC) && !defined(_CPPRTTI) +#define CS_NO_RTTI +#elif defined(CS_COMPILER_CLANG) +#if !__has_feature(cxx_rtti) +#define CS_NO_RTTI +#endif +#endif +#endif + +#ifndef CS_INLINE +#if defined(CS_COMPILER_MSC) +#define CS_INLINE __forceinline +#else +// referenced to clang documentation, this is enough: https://clang.llvm.org/compatibility.html +#define CS_INLINE inline +#endif +#endif + +#ifndef CS_RETURN_ADDRESS +#if defined(CS_COMPILER_MSC) +#define CS_RETURN_ADDRESS() _ReturnAddress() +#elif defined(CS_COMPILER_CLANG) +#define CS_RETURN_ADDRESS() __builtin_return_address(0) +#else +static_assert(false, "it is expected you to define CS_RETURN_ADDRESS() into something that will get the return address off the stack!") +#define CS_RETURN_ADDRESS() +#endif +#endif + +#ifndef CS_FRAME_ADDRESS +#if defined(CS_COMPILER_MSC) +#define CS_FRAME_ADDRESS() _AddressOfReturnAddress() +#elif defined(CS_COMPILER_CLANG) +// @note: it isn't always what we're expecting, compiler dependent +#define CS_FRAME_ADDRESS() __builtin_frame_address(0) +#else +static_assert(false, "it is expected you to define CS_FRAME_ADDRESS() into something that will get the address of the method's stack frame!") +#define CS_FRAME_ADDRESS() +#endif +#endif + +#ifndef CS_DEBUG_BREAK +#if defined(CS_COMPILER_MSC) +#define CS_DEBUG_BREAK() __debugbreak() +#elif defined(CS_COMPILER_CLANG) +#define CS_DEBUG_BREAK() __builtin_debugtrap() +#else +static_assert(false, "it is expected you to define CS_DEBUG_BREAK() into something that will break in a debugger!"); +#define CS_DEBUG_BREAK() +#endif +#endif + +#ifndef CS_ASSERT +#ifdef _DEBUG +#define CS_ASSERT(EXPRESSION) static_cast(!!(EXPRESSION) || (CS_DEBUG_BREAK(), 0)) +#else +// disable assertion for release builds +#define CS_ASSERT(EXPRESSION) static_cast(0) +#endif +#endif + +#if !defined(CS_CONFIGURATION_BINARY) && !defined(CS_CONFIGURATION_JSON) && !defined(CS_CONFIGURATION_TOML) +static_assert(false, "it is expected you to define one of the available configuration file formatters!"); + +// fallback to binary formatter by default +#define CS_CONFIGURATION_BINARY +#endif + +#ifndef CS_CONFIGURATION_FILE_EXTENSION +#if defined(CS_CONFIGURATION_BINARY) +#define CS_CONFIGURATION_FILE_EXTENSION L".bin" +#elif defined(CS_CONFIGURATION_JSON) +#define CS_CONFIGURATION_FILE_EXTENSION L".json" +#elif defined(CS_CONFIGURATION_TOML) +#define CS_CONFIGURATION_FILE_EXTENSION L".toml" +#endif +#endif +#pragma endregion + +/* + * explicitly delete the following constructors, to prevent attempts on using them: + * constructor, move-constructor, copy-constructor + */ +#define CS_CLASS_NO_CONSTRUCTOR(CLASS) \ +CLASS() = delete; \ +CLASS(CLASS&&) = delete; \ +CLASS(const CLASS&) = delete; + + /* + * explicitly delete the following assignment operators, to prevent attempts on using them: + * move-assignment, copy-assignment + */ +#define CS_CLASS_NO_ASSIGNMENT(CLASS) \ +CLASS& operator=(CLASS&&) = delete; \ +CLASS& operator=(const CLASS&) = delete; + + // explicitly delete any class initializer to prevent attempts on using them +#define CS_CLASS_NO_INITIALIZER(CLASS) \ +CS_CLASS_NO_CONSTRUCTOR(CLASS) \ +CS_CLASS_NO_ASSIGNMENT(CLASS) + +// explicitly delete class heap allocator and deallocator, to prevent attempts on using class at heap memory +#define CS_CLASS_NO_ALLOC() \ +void* operator new(const std::size_t nSize) = delete; \ +void operator delete(void* pMemory) = delete; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core.cpp new file mode 100644 index 0000000..48efe14 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core.cpp @@ -0,0 +1,247 @@ +// used: [win] shgetknownfolderpath +#include + +#include "core.h" + +// used: features setup +#include "features.h" +// used: string copy +#include "utilities/crt.h" +// used: mem +#include "utilities/memory.h" +// used: l_print +#include "utilities/log.h" +// used: inputsystem setup/restore +#include "utilities/inputsystem.h" +// used: draw destroy +#include "utilities/draw.h" + +// used: interfaces setup/destroy +#include "core/interfaces.h" +// used: sdk setup +#include "core/sdk.h" +// used: config setup & variables +#include "core/variables.h" +// used: hooks setup/destroy +#include "core/hooks.h" +// used: schema setup/dump +#include "core/schema.h" +// used: convar setup +#include "core/convars.h" +// used: menu +#include "core/menu.h" +#include +bool CORE::GetWorkingPath(wchar_t* wszDestination) +{ + bool bSuccess = false; + PWSTR wszPathToDocuments = nullptr; + + // get path to user documents + if (SUCCEEDED(::SHGetKnownFolderPath(FOLDERID_Documents, KF_FLAG_CREATE, nullptr, &wszPathToDocuments))) + { + CRT::StringCat(CRT::StringCopy(wszDestination, wszPathToDocuments), CS_XOR(L"\\.cs2\\")); + bSuccess = true; + // create directory if it doesn't exist + if (!CreateDirectoryW(wszDestination, nullptr)) + { + if (::GetLastError() != ERROR_ALREADY_EXISTS) + { + L_PRINT(LOG_ERROR) << CS_XOR("failed to create default working directory, because one or more intermediate directories don't exist"); + bSuccess = false; + } + } + } + ::CoTaskMemFree(wszPathToDocuments); + + return bSuccess; +} + +static bool Setup(HMODULE hModule) +{ +#ifdef CS_LOG_CONSOLE + if (!L::AttachConsole(CS_XOR(L"cs2 developer-mode"))) + { + CS_ASSERT(false); // failed to attach console + return false; + } +#endif +#ifdef CS_LOG_FILE + if (!L::OpenFile(CS_XOR(L"cs2.log"))) + { + CS_ASSERT(false); // failed to open file + return false; + } +#endif + L_PRINT(LOG_NONE) << L::SetColor(LOG_COLOR_FORE_GREEN | LOG_COLOR_FORE_INTENSITY) << CS_XOR("logging system initialization completed"); + + // setup game's exported functions + if (!MEM::Setup()) + { + CS_ASSERT(false); // failed to setup memory system + return false; + } + L_PRINT(LOG_NONE) << L::SetColor(LOG_COLOR_FORE_GREEN | LOG_COLOR_FORE_INTENSITY) << CS_XOR("memory system initialization completed"); + + if (!MATH::Setup()) + { + CS_ASSERT(false); // failed to setup math system + return false; + } + L_PRINT(LOG_NONE) << L::SetColor(LOG_COLOR_FORE_GREEN | LOG_COLOR_FORE_INTENSITY) << CS_XOR("math system initialization completed"); + // grab game's interfaces + if (!I::Setup()) + { + CS_ASSERT(false); // failed to setup interfaces + return false; + } + L_PRINT(LOG_NONE) << L::SetColor(LOG_COLOR_FORE_GREEN | LOG_COLOR_FORE_INTENSITY) << CS_XOR("interfaces initialization completed"); + + if (!SDK::Setup()) + { + CS_ASSERT(false); // failed to setup sdk + return false; + } + L_PRINT(LOG_NONE) << L::SetColor(LOG_COLOR_FORE_GREEN | LOG_COLOR_FORE_INTENSITY) << CS_XOR("sdk initialization completed"); + + // setup input system and replace game's window messages processor with our + if (!IPT::Setup()) + { + CS_ASSERT(false); // failed to setup input system + return false; + } + L_PRINT(LOG_NONE) << L::SetColor(LOG_COLOR_FORE_GREEN | LOG_COLOR_FORE_INTENSITY) << CS_XOR("input system initialization completed"); + + L_PRINT(LOG_NONE) << L::SetColor(LOG_COLOR_FORE_GREEN | LOG_COLOR_FORE_INTENSITY) << CS_XOR("renderer backend initialization completed"); + + L_PRINT(LOG_NONE) << L::SetColor(LOG_COLOR_FORE_GREEN | LOG_COLOR_FORE_INTENSITY) << CS_XOR("menu style Iinitialization completed"); + + // initialize feature-related stuff + if (!F::Setup()) + { + CS_ASSERT(false); // failed to setup features + return false; + } + L_PRINT(LOG_NONE) << L::SetColor(LOG_COLOR_FORE_GREEN | LOG_COLOR_FORE_INTENSITY) << CS_XOR("features initialization completed"); + + if (!SCHEMA::Setup(CS_XOR(L"schema.txt"))) + { + CS_ASSERT(false); // failed to setup schema system + return false; + } + L_PRINT(LOG_NONE) << L::SetColor(LOG_COLOR_FORE_GREEN | LOG_COLOR_FORE_INTENSITY) << CS_XOR("schema system initialization completed"); + + if (!CONVAR::Dump(CS_XOR(L"convars.txt"))) + { + CS_ASSERT(false); // failed to setup convars system + return false; + } + L_PRINT(LOG_NONE) << L::SetColor(LOG_COLOR_FORE_GREEN | LOG_COLOR_FORE_INTENSITY) << CS_XOR("convars dumped completed, output: \"convars.txt\""); + + if (!CONVAR::Setup()) + { + CS_ASSERT(false); // failed to setup convars system + return false; + } + L_PRINT(LOG_NONE) << L::SetColor(LOG_COLOR_FORE_GREEN | LOG_COLOR_FORE_INTENSITY) << CS_XOR("convars system initialization completed"); + + // setup hooks + if (!H::Setup()) + { + CS_ASSERT(false); // failed to setup hooks + return false; + } + + L_PRINT(LOG_NONE) << CS_XOR("hooks initialization completed"); + + + L_PRINT(LOG_NONE) << CS_XOR("menu style initialization completed"); + + // setup values to save/load cheat variables into/from files and load default configuration + if (!C::Setup(CS_XOR(CS_CONFIGURATION_DEFAULT_FILE_NAME))) + // this error is not critical, only show that + L_PRINT(LOG_WARNING) << CS_XOR("failed to setup and/or load default configuration"); + else + L_PRINT(LOG_NONE) << L::SetColor(LOG_COLOR_FORE_GREEN | LOG_COLOR_FORE_INTENSITY) << CS_XOR("configuration system initialization completed"); + + L_PRINT(LOG_NONE) << L::SetColor(LOG_COLOR_FORE_CYAN | LOG_COLOR_FORE_INTENSITY) << CS_XOR("cs2 initialization completed, version: ") << CS_STRINGIFY(CS_VERSION); + + return true; +} + +// @todo: some of those may crash while closing process, because we dont have any dependencies from the game modules, it means them can be unloaded and destruct interfaces etc before our module | modify ldrlist? +static void Destroy() +{ + // restore window messages processor to original + IPT::Destroy(); + + // restore hooks + H::Destroy(); + + // destroy renderer backend + D::Destroy(); + +#ifdef CS_LOG_CONSOLE + L::DetachConsole(); +#endif +#ifdef CS_LOG_FILE + L::CloseFile(); +#endif +} + +DWORD WINAPI PanicThread(LPVOID lpParameter) +{ + // don't let proceed unload until user press specified key + while (!IPT::IsKeyReleased(C_GET(unsigned int, Vars.nPanicKey))) + ::Sleep(500UL); + + // call detach code and exit this thread + FreeLibraryAndExitThread(static_cast(lpParameter), EXIT_SUCCESS); +} + +extern "C" BOOL WINAPI _CRT_INIT(HMODULE hModule, DWORD dwReason, LPVOID lpReserved); + +BOOL APIENTRY CoreEntryPoint(HMODULE hModule, DWORD dwReason, LPVOID lpReserved) +{ + // process destroy of the cheat before crt calls atexit table + if (dwReason == DLL_PROCESS_DETACH) + Destroy(); + + if (dwReason == DLL_PROCESS_ATTACH) + { // dispatch reason for c-runtime, initialize/destroy static variables, TLS etc + if (!_CRT_INIT(hModule, dwReason, lpReserved)) + return FALSE; + + CORE::hProcess = MEM::GetModuleBaseHandle(nullptr); + + // basic process check + if (CORE::hProcess == nullptr) + return FALSE; + + /* + * check did all game modules have been loaded + * @note: navsystem.dll is the last loaded module + */ + if (MEM::GetModuleBaseHandle(NAVSYSTEM_DLL) == nullptr) + return FALSE; + + // save our module handle + CORE::hDll = hModule; + + // check did we perform main initialization successfully + if (!Setup(hModule)) + { + // undo the things we've done + Destroy(); + return FALSE; + } + + // create panic thread, it isn't critical error if it fails + HANDLE hThread = CreateThread(nullptr, 0U, &PanicThread, hModule, 0UL, nullptr); + + if (hThread != nullptr) + CloseHandle(hThread); + + } + + return TRUE; +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core.h new file mode 100644 index 0000000..aadd6f4 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core.h @@ -0,0 +1,15 @@ +#pragma once + +namespace CORE +{ + /* @section: get */ + /// @param[out] wszDestination output for working path where files will be saved (default: "%userprofile%\documents\.crown") + /// @returns: true if successfully got the path, false otherwise + bool GetWorkingPath(wchar_t* wszDestination); + + /* @section: values */ + // handle of self module + inline void* hDll = nullptr; + // current process handle + inline void* hProcess = nullptr; +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/Bgs.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/Bgs.h new file mode 100644 index 0000000..544cdc4 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/Bgs.h @@ -0,0 +1,2018 @@ +#include + +BYTE main_texture[] = +{ + 0xFF, 0xD8, 0xFF, 0xE0, 0x00, 0x10, 0x4A, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01, +0x00, 0x01, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x43, 0x00, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, +0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0x03, 0x02, 0x02, 0x02, 0x02, 0x02, 0x04, 0x03, +0x03, 0x02, 0x03, 0x05, 0x04, 0x05, 0x05, 0x05, 0x04, 0x04, 0x04, 0x05, 0x06, 0x07, 0x06, 0x05, +0x05, 0x07, 0x06, 0x04, 0x04, 0x06, 0x09, 0x06, 0x07, 0x08, 0x08, 0x08, 0x08, 0x08, 0x05, 0x06, +0x09, 0x0A, 0x09, 0x08, 0x0A, 0x07, 0x08, 0x08, 0x08, 0xFF, 0xDB, 0x00, 0x43, 0x01, 0x01, 0x01, +0x01, 0x02, 0x02, 0x02, 0x04, 0x02, 0x02, 0x04, 0x08, 0x05, 0x04, 0x05, 0x08, 0x08, 0x08, 0x08, +0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, +0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, +0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0xFF, 0xC0, +0x00, 0x11, 0x08, 0x02, 0xD0, 0x05, 0x00, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, +0x01, 0xFF, 0xC4, 0x00, 0x1F, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, +0x0A, 0x0B, 0xFF, 0xC4, 0x00, 0x1F, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, +0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, +0x09, 0x0A, 0x0B, 0xFF, 0xC4, 0x00, 0xB5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, +0x05, 0x05, 0x04, 0x04, 0x00, 0x00, 0x01, 0x7D, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12, +0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, 0x14, 0x32, 0x81, 0x91, 0xA1, 0x08, +0x23, 0x42, 0xB1, 0xC1, 0x15, 0x52, 0xD1, 0xF0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0A, 0x16, +0x17, 0x18, 0x19, 0x1A, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, +0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, +0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, +0x7A, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, +0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, +0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, +0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, +0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFF, 0xC4, 0x00, 0xB5, 0x11, 0x00, +0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, +0x01, 0x02, 0x03, 0x11, 0x04, 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, +0x22, 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xA1, 0xB1, 0xC1, 0x09, 0x23, 0x33, 0x52, 0xF0, 0x15, +0x62, 0x72, 0xD1, 0x0A, 0x16, 0x24, 0x34, 0xE1, 0x25, 0xF1, 0x17, 0x18, 0x19, 0x1A, 0x26, 0x27, +0x28, 0x29, 0x2A, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, +0x4A, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, +0x6A, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, +0x89, 0x8A, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, +0xA7, 0xA8, 0xA9, 0xAA, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xC2, 0xC3, 0xC4, +0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xE2, +0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, +0xFA, 0xFF, 0xDD, 0x00, 0x04, 0x00, 0x05, 0xFF, 0xDA, 0x00, 0x0C, 0x03, 0x01, 0x00, 0x02, 0x11, +0x03, 0x11, 0x00, 0x3F, 0x00, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0xB7, 0x6F, 0x6F, 0xE6, 0x7C, 0xEF, 0xC4, 0x63, 0xF5, 0xA2, 0xDE, +0xDC, 0xC8, 0x77, 0x3F, 0x09, 0xFC, 0xEA, 0xF4, 0xE4, 0x24, 0x45, 0x47, 0x19, 0xE0, 0x7B, 0x50, +0x06, 0x79, 0x39, 0x24, 0xD2, 0x51, 0x45, 0x00, 0x7F, 0xFF, 0xD0, 0xFE, 0x37, 0xA8, 0xA2, 0x8A, +0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x96, 0x28, 0x9E, 0x56, 0xDA, 0x83, 0xEA, 0x7D, 0x28, +0x8A, 0x16, 0x99, 0xB6, 0xAF, 0xE2, 0x7D, 0x2B, 0x6A, 0x28, 0x96, 0x15, 0x0A, 0xBF, 0x89, 0xF5, +0xA8, 0x9C, 0xEC, 0x26, 0xCC, 0x9B, 0xD8, 0x56, 0x15, 0x84, 0x28, 0xF5, 0xC9, 0xF5, 0xAC, 0xFA, +0xD7, 0xD4, 0xC7, 0xCB, 0x11, 0xF7, 0x35, 0x91, 0x58, 0xDC, 0xD2, 0x3B, 0x05, 0x14, 0x51, 0x41, +0x47, 0xFF, 0xD1, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xB5, 0x6D, 0x17, +0x99, 0xE6, 0x31, 0x04, 0xE0, 0x10, 0x3E, 0xB5, 0x56, 0xB6, 0xA0, 0x8F, 0xCB, 0x8D, 0x57, 0xBF, +0x53, 0xF5, 0xAC, 0x99, 0x57, 0x64, 0xAE, 0xBD, 0x06, 0x6A, 0xE5, 0x1B, 0x22, 0x53, 0x23, 0xA2, +0x8A, 0x2A, 0x0A, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD2, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, +0x51, 0xC9, 0x02, 0xA6, 0xA8, 0x93, 0xAD, 0x4B, 0x5A, 0xD3, 0x44, 0x48, 0x28, 0xA2, 0x8A, 0xD0, +0x90, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD3, 0xFE, 0x37, 0xE9, 0xD4, 0x80, +0x52, 0xD5, 0x4E, 0x57, 0x30, 0x61, 0x45, 0x14, 0x54, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, +0x35, 0x98, 0x28, 0xE6, 0x80, 0x14, 0x90, 0xA3, 0x26, 0xA9, 0x4B, 0x33, 0x07, 0x5C, 0x76, 0xEB, +0x52, 0x33, 0x1E, 0x58, 0xD5, 0x02, 0x4B, 0x12, 0x4F, 0x5A, 0xD1, 0xAB, 0x17, 0x14, 0x7F, 0xFF, +0xD4, 0xFE, 0x37, 0x55, 0x83, 0x28, 0x61, 0xC8, 0x34, 0xB5, 0x42, 0xDE, 0x5D, 0x8D, 0xB4, 0xFD, +0xD3, 0xFA, 0x55, 0xFA, 0xE8, 0x8B, 0xB9, 0x9B, 0x41, 0x45, 0x14, 0x53, 0x10, 0x51, 0x45, 0x14, +0x00, 0x51, 0x45, 0x14, 0x01, 0xAB, 0x03, 0x6F, 0x89, 0x0F, 0x7E, 0x86, 0xA6, 0xAA, 0x36, 0x8D, +0xF7, 0x93, 0xF1, 0x15, 0x7A, 0xB9, 0xE6, 0xB5, 0x24, 0xFF, 0xD5, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, +0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x05, 0xB4, 0xFB, 0xAB, 0xF4, 0xA7, 0x50, +0x38, 0x00, 0x7B, 0x51, 0x5D, 0x31, 0xD8, 0x61, 0x45, 0x14, 0x53, 0x19, 0xFF, 0xD6, 0xFE, 0x41, +0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA7, 0xA2, 0xEE, 0x60, 0x28, 0x02, 0xC4, 0x4B, 0xB5, +0x72, 0x7A, 0x9A, 0x96, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, +0xD7, 0xFE, 0x45, 0xA8, 0xA2, 0x9C, 0x07, 0x7A, 0xE8, 0x93, 0xB1, 0x88, 0x9B, 0x41, 0x04, 0x30, +0x04, 0x1A, 0xCC, 0xB8, 0xB4, 0x29, 0x97, 0x88, 0x12, 0x9D, 0xC7, 0xA5, 0x6A, 0xD1, 0x58, 0x73, +0xBB, 0xDC, 0x57, 0x39, 0xCA, 0x2B, 0x4E, 0xE6, 0xD3, 0x39, 0x92, 0x11, 0x83, 0xDD, 0x7D, 0x7E, +0x95, 0x9B, 0xD3, 0x83, 0xC1, 0xAD, 0xD4, 0xAE, 0x31, 0x28, 0xA2, 0x8A, 0x63, 0x0A, 0x28, 0xA2, +0x80, 0x3F, 0xFF, 0xD0, 0xFE, 0x3D, 0xAA, 0x8D, 0xC4, 0x5B, 0x4E, 0xF5, 0xFB, 0xA7, 0xAF, 0xB5, +0x5E, 0xA4, 0x65, 0x0E, 0xA5, 0x58, 0x64, 0x1A, 0xE9, 0x32, 0x32, 0x28, 0xA7, 0xBA, 0x18, 0xD8, +0xA9, 0xEA, 0x3F, 0x5A, 0x65, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x15, 0x14, +0x8B, 0xBB, 0x1E, 0xB5, 0x2D, 0x35, 0xBB, 0x54, 0xCF, 0x60, 0xB9, 0xFF, 0xD1, 0xFE, 0x34, 0x08, +0xC7, 0x06, 0x92, 0xAC, 0x32, 0xEE, 0xFA, 0xD5, 0x7A, 0x04, 0x9D, 0xC2, 0x8A, 0x28, 0xA0, 0x61, +0x45, 0x14, 0x55, 0x28, 0x36, 0x27, 0x20, 0xA5, 0x03, 0x34, 0xDA, 0x7D, 0x39, 0xA4, 0x91, 0x9B, +0x90, 0x84, 0x52, 0x53, 0xA9, 0x31, 0x59, 0x95, 0x19, 0x77, 0x3F, 0xFF, 0xD2, 0xFE, 0x33, 0xE8, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x2A, 0x36, 0x6E, 0xC2, 0x91, 0x9F, 0x3C, 0x0E, 0x94, +0xCA, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA7, 0x05, 0x27, 0xB6, 0x29, 0xE1, 0x07, 0x7E, 0x6A, +0x94, 0x18, 0xAE, 0x7F, 0xFF, 0xD3, 0xFE, 0x31, 0xE9, 0xC1, 0x49, 0xED, 0x52, 0x80, 0x07, 0x41, +0x45, 0x6A, 0xA9, 0xF7, 0x21, 0xC8, 0x60, 0x4F, 0x53, 0x4E, 0x0A, 0x07, 0x6A, 0x5A, 0x2A, 0xD4, +0x50, 0xAE, 0x38, 0x1E, 0xD4, 0xB4, 0xDE, 0x94, 0xEA, 0xC6, 0xA2, 0xD4, 0x86, 0x14, 0x51, 0x45, +0x40, 0x05, 0x14, 0x51, 0x40, 0x1F, 0xFF, 0xD4, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x04, 0xB1, +0xF7, 0xA7, 0xD3, 0x53, 0xEE, 0xD3, 0xA8, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, +0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD5, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x02, 0x81, 0x93, 0x53, 0xAB, 0x15, 0xFA, 0x54, +0x60, 0x62, 0x96, 0xB7, 0x8C, 0x74, 0x19, 0xFF, 0xD6, 0xFE, 0x3A, 0x01, 0x0C, 0x32, 0x29, 0x6A, +0xA8, 0x24, 0x1C, 0x8A, 0x9D, 0x5C, 0x37, 0xB1, 0xAA, 0x9C, 0x2C, 0x60, 0xD0, 0xFA, 0x28, 0xA2, +0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0xA4, 0x43, 0xD4, 0x54, 0x74, 0xE5, 0x38, 0x22, 0x80, 0x26, +0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD7, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, +0x80, 0x0A, 0xB7, 0x6F, 0x6E, 0x64, 0x3B, 0x9F, 0x84, 0xFE, 0x74, 0x5B, 0xDB, 0x99, 0x0E, 0xE7, +0xE1, 0x3F, 0x9D, 0x6A, 0x80, 0x00, 0x00, 0x0C, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x06, 0x05, 0x51, +0xBA, 0x7C, 0xB8, 0x4F, 0x4A, 0xBD, 0xEB, 0x59, 0x2E, 0xDB, 0x99, 0x9B, 0xD6, 0x80, 0x1B, 0x45, +0x14, 0x50, 0x07, 0xFF, 0xD0, 0xFE, 0x37, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x9E, 0x18, 0x5A, +0x66, 0xC2, 0xF0, 0xA3, 0xA9, 0xF4, 0xA5, 0x82, 0x06, 0x99, 0xBB, 0x84, 0x1D, 0x4D, 0x6C, 0xA2, +0x2C, 0x6A, 0x15, 0x46, 0x00, 0xFD, 0x6A, 0x27, 0x3B, 0x0A, 0xE2, 0x47, 0x1A, 0xC4, 0xA1, 0x10, +0x60, 0x7F, 0x3A, 0x7D, 0x14, 0x56, 0x02, 0x33, 0xB5, 0x21, 0xFB, 0xA8, 0xCF, 0xFB, 0x5F, 0xD2, +0xB1, 0xAB, 0x73, 0x51, 0x19, 0xB7, 0x07, 0x1D, 0x18, 0x56, 0x1D, 0x33, 0x58, 0x6C, 0x14, 0x51, +0x45, 0x05, 0x1F, 0xFF, 0xD1, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, 0x2A, 0xC5, 0xB4, 0x7E, 0x64, +0xA3, 0x3F, 0x74, 0x72, 0x6A, 0xBD, 0x6A, 0x59, 0xC7, 0xB5, 0x37, 0x9E, 0xAD, 0xFC, 0xAA, 0xA0, +0xAE, 0xC5, 0x26, 0x5B, 0xAC, 0xCB, 0xD5, 0xC4, 0x8A, 0xDD, 0x88, 0xAD, 0x3A, 0xA7, 0x7A, 0xB9, +0x8D, 0x5B, 0xD0, 0xD6, 0xB3, 0x5A, 0x11, 0x1D, 0xCC, 0xCA, 0x28, 0xA2, 0xB0, 0x34, 0x0A, 0x28, +0xA2, 0x80, 0x3F, 0xFF, 0xD2, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, 0x91, 0x07, 0x53, 0x4F, 0xA4, +0x5F, 0xBA, 0x29, 0x6B, 0x78, 0xAD, 0x0C, 0xDE, 0xE1, 0x45, 0x14, 0x55, 0x08, 0x28, 0xA2, 0x8A, +0x00, 0x29, 0x40, 0xA2, 0x9D, 0x51, 0x39, 0x58, 0x4C, 0xFF, 0xD3, 0xFE, 0x38, 0x68, 0xA2, 0x8A, +0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0xC7, 0x7D, 0xBC, 0x0E, 0xB4, 0xD2, 0xB8, 0x0A, +0xCE, 0x17, 0xDC, 0xD5, 0x72, 0x49, 0x39, 0x34, 0x52, 0x13, 0x81, 0x93, 0xD2, 0xB7, 0x8C, 0x6C, +0x32, 0x09, 0x9B, 0x80, 0xA3, 0xF1, 0xAA, 0xF4, 0xE6, 0x6D, 0xCC, 0x49, 0xA6, 0xD6, 0x32, 0x77, +0x66, 0xA9, 0x1F, 0xFF, 0xD4, 0xFE, 0x31, 0xEA, 0xFD, 0xBC, 0xBB, 0xD7, 0x69, 0x23, 0x70, 0xFD, +0x45, 0x50, 0xA7, 0x2B, 0x14, 0x60, 0xCB, 0xD4, 0x53, 0x4E, 0xC2, 0x68, 0xD5, 0xA2, 0x9A, 0x8E, +0x1D, 0x43, 0x0A, 0x75, 0x74, 0x19, 0x85, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x12, 0xC2, +0xDB, 0x24, 0x53, 0xEF, 0x8A, 0xD6, 0xAC, 0x4A, 0xD7, 0x85, 0xF7, 0xC6, 0xAD, 0xDF, 0xBD, 0x65, +0x55, 0x75, 0x13, 0x3F, 0xFF, 0xD5, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x05, 0xD1, 0xD0, 0x51, 0x45, 0x15, 0xD4, 0x50, 0x51, 0x45, 0x14, 0x01, +0xFF, 0xD6, 0xFE, 0x41, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0xB3, 0x02, 0xF0, 0x5A, 0xAB, 0x81, +0x92, 0x00, 0xEB, 0x57, 0xC0, 0x00, 0x00, 0x3A, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, +0x50, 0x01, 0x45, 0x14, 0xB4, 0x01, 0xFF, 0xD7, 0xFE, 0x45, 0xC0, 0xCD, 0x3A, 0x8A, 0x29, 0xCE, +0x57, 0x30, 0x0A, 0x28, 0xA2, 0xA4, 0x02, 0xAA, 0x5C, 0x5A, 0xAC, 0xBF, 0x32, 0x61, 0x64, 0xFE, +0x75, 0x6E, 0x8A, 0x69, 0xD8, 0x0E, 0x79, 0x95, 0x94, 0x95, 0x61, 0x82, 0x29, 0xB5, 0xBB, 0x34, +0x09, 0x30, 0xF9, 0xB8, 0x6E, 0xC6, 0xB1, 0xE5, 0x89, 0xE1, 0x62, 0x8E, 0x39, 0xEC, 0x7D, 0x6B, +0x78, 0xCE, 0xE3, 0xB9, 0x15, 0x14, 0x51, 0x54, 0x33, 0xFF, 0xD0, 0xFE, 0x3D, 0xA8, 0xA2, 0x8A, +0xE9, 0x32, 0x21, 0x9E, 0x3F, 0x31, 0x72, 0x07, 0xCC, 0x3A, 0x56, 0x6D, 0x6C, 0x55, 0x1B, 0x88, +0xB6, 0x9D, 0xEB, 0xF7, 0x4F, 0x5F, 0x63, 0x40, 0x15, 0x68, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x29, 0x1B, 0xA5, 0x2D, 0x07, 0xA1, 0xA4, 0xF6, 0x03, 0xFF, 0xD1, 0xFE, 0x36, 0x69, 0xAC, +0xBB, 0xBE, 0xB4, 0xEA, 0x29, 0x18, 0x26, 0x55, 0xE9, 0xC5, 0x15, 0x3B, 0xA6, 0xEF, 0xAD, 0x41, +0xED, 0x5A, 0x42, 0x46, 0x9B, 0xA1, 0x28, 0xA2, 0x8A, 0xD8, 0x91, 0x47, 0x5A, 0x75, 0x20, 0xE9, +0x4B, 0x5C, 0xF3, 0x77, 0x64, 0xB0, 0xA2, 0x8A, 0x2A, 0x40, 0xFF, 0xD2, 0xFE, 0x34, 0x08, 0xA4, +0xA7, 0x50, 0x45, 0x23, 0x38, 0xCF, 0xB8, 0xDA, 0x89, 0x9B, 0x3C, 0x0E, 0x94, 0xF2, 0x09, 0xE0, +0xF0, 0x28, 0x0A, 0x07, 0x6C, 0xD5, 0xA8, 0x36, 0x57, 0x32, 0x22, 0x00, 0x9E, 0x82, 0x9C, 0x10, +0xF7, 0xE2, 0xA4, 0xA2, 0xAD, 0x53, 0x17, 0x30, 0xD0, 0x80, 0x7B, 0xD3, 0xB1, 0x8E, 0x94, 0x51, +0x5A, 0x24, 0x4D, 0xC2, 0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD3, 0xFE, 0x33, 0xA8, 0xA2, 0x8A, 0xE9, +0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x70, 0xE9, 0x4D, 0xA5, 0x15, 0x33, 0x57, 0x42, 0x63, 0xA8, +0xA2, 0x8A, 0xE7, 0x10, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD4, 0xFE, 0x34, 0x68, 0xA2, 0x96, 0x91, +0x81, 0x32, 0xF4, 0x14, 0xB4, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, +0x14, 0x51, 0x40, 0x1F, 0xFF, 0xD5, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x01, 0x4E, 0x51, 0xDE, 0x90, 0x72, 0x40, 0xA9, 0x00, 0xC7, 0x02, 0xB4, +0xA7, 0x1E, 0xA3, 0x41, 0x45, 0x14, 0x56, 0xC3, 0x3F, 0xFF, 0xD6, 0xFE, 0x37, 0xA8, 0xA2, 0x8A, +0xE9, 0x32, 0x26, 0x59, 0x3B, 0x37, 0xE7, 0x52, 0xD5, 0x4A, 0x7A, 0xB9, 0x5F, 0x71, 0x59, 0xCA, +0x9F, 0x61, 0x58, 0xB1, 0x45, 0x00, 0x83, 0xC8, 0xA2, 0xB1, 0x10, 0x51, 0x45, 0x14, 0x01, 0x38, +0x39, 0x00, 0xD2, 0xD3, 0x10, 0xF0, 0x45, 0x3E, 0x80, 0x3F, 0xFF, 0xD7, 0xFE, 0x35, 0xA8, 0xA2, +0x8A, 0xE9, 0x32, 0x0A, 0xB7, 0x6F, 0x6E, 0x64, 0x3B, 0x9F, 0x84, 0xFE, 0x74, 0x5B, 0xDB, 0x99, +0x0E, 0xE7, 0xE1, 0x3F, 0x9D, 0x6A, 0x80, 0x00, 0x00, 0x0C, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x06, +0x05, 0x14, 0x51, 0x40, 0x10, 0xDC, 0x36, 0xD8, 0xCF, 0xA9, 0xE2, 0xB3, 0x6A, 0xDD, 0xD3, 0xE5, +0x95, 0x07, 0x40, 0x3F, 0x5A, 0xA9, 0x40, 0x05, 0x14, 0x51, 0x40, 0x1F, 0xFF, 0xD0, 0xFE, 0x37, +0xAA, 0xD5, 0xBD, 0xB3, 0x4C, 0x72, 0x72, 0x23, 0xEE, 0x68, 0xB7, 0xB6, 0x69, 0x8E, 0x5B, 0x2B, +0x1F, 0xAF, 0xAD, 0x6C, 0x00, 0x14, 0x00, 0x00, 0x00, 0x56, 0xB3, 0x9D, 0xB4, 0x46, 0x2D, 0x82, +0xAA, 0xA2, 0x85, 0x50, 0x00, 0x14, 0xB4, 0x51, 0x58, 0x88, 0x28, 0xA2, 0x8A, 0x00, 0xA7, 0x7E, +0x33, 0x6C, 0xFF, 0x00, 0x51, 0xFC, 0xEB, 0x06, 0xBA, 0x0B, 0xD1, 0x9B, 0x69, 0x7F, 0x0F, 0xE7, +0x5C, 0xFD, 0x34, 0x69, 0x0D, 0x82, 0x8A, 0x28, 0xA0, 0xB3, 0xFF, 0xD1, 0xFE, 0x35, 0xE8, 0xA2, +0x8A, 0x00, 0x7C, 0x68, 0x64, 0x75, 0x40, 0x32, 0x49, 0xAD, 0xB0, 0x02, 0x80, 0xA3, 0xA0, 0xE2, +0xB3, 0xEC, 0xA3, 0xC9, 0x69, 0x4F, 0x6E, 0x05, 0x68, 0xD6, 0xD4, 0xD1, 0x9C, 0x98, 0x54, 0x73, +0x2E, 0xE8, 0xA4, 0x5E, 0xB9, 0x15, 0x25, 0x15, 0x6D, 0x08, 0xC0, 0xA2, 0x9F, 0x22, 0xEC, 0x77, +0x5F, 0x43, 0x4C, 0xAE, 0x63, 0x50, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD2, 0xFE, 0x35, 0xE8, 0xA2, +0x95, 0x7A, 0x8A, 0x68, 0x09, 0xA8, 0xA2, 0x8A, 0xE8, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, +0xA5, 0x02, 0x93, 0x76, 0xD4, 0x05, 0x02, 0x96, 0x8A, 0x2B, 0x9D, 0xBB, 0xEA, 0x49, 0xFF, 0xD3, +0xFE, 0x38, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x15, 0x0B, 0xBE, 0x78, 0x5A, 0x6A, 0x37, 0x01, +0xCE, 0xF8, 0xE1, 0x7A, 0xD4, 0x14, 0x51, 0x5D, 0x11, 0x8D, 0x86, 0x15, 0x0C, 0xCD, 0x85, 0xDB, +0xEB, 0x53, 0x55, 0x27, 0x6D, 0xCC, 0x4F, 0x6A, 0x99, 0xBD, 0x0A, 0x8A, 0x1B, 0x45, 0x14, 0x56, +0x26, 0x87, 0xFF, 0xD4, 0xFE, 0x31, 0xE8, 0xA2, 0x8A, 0x00, 0x9A, 0x19, 0x3C, 0xB6, 0xE7, 0xEE, +0x9E, 0xB5, 0xA3, 0x59, 0x15, 0x76, 0xDE, 0x5C, 0x8F, 0x2D, 0x8F, 0x3D, 0xAB, 0x48, 0x4B, 0xA1, +0x32, 0x45, 0xAA, 0x28, 0xA2, 0xB5, 0x20, 0x28, 0xA2, 0x8A, 0x00, 0x2A, 0xF5, 0xA3, 0xF0, 0xC9, +0xF8, 0x8A, 0xA3, 0x53, 0x40, 0xDB, 0x65, 0x5C, 0xF4, 0x3C, 0x54, 0xCD, 0x68, 0x23, 0xFF, 0xD5, +0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x4A, 0x3A, 0x8F, 0xAD, 0x25, +0x28, 0xE4, 0x8F, 0xAD, 0x09, 0x01, 0x72, 0x8A, 0x28, 0xAE, 0xA2, 0x82, 0x8A, 0x28, 0xA0, 0x0F, +0xFF, 0xD6, 0xFE, 0x41, 0xA8, 0xA2, 0x96, 0xBA, 0x4C, 0x89, 0xA1, 0x5C, 0x92, 0xC7, 0xB5, 0x59, +0xA6, 0xA2, 0xED, 0x50, 0x29, 0xD4, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x53, +0xC0, 0xC5, 0x20, 0x14, 0xB5, 0x8C, 0xE7, 0x7D, 0x11, 0x2C, 0xFF, 0xD7, 0xFE, 0x46, 0x68, 0xA2, +0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x4C, 0x92, 0x34, 0x95, 0x76, +0xB8, 0xCF, 0xF4, 0xA7, 0xD1, 0x40, 0x18, 0x93, 0xDB, 0xBC, 0x27, 0x9F, 0x99, 0x3B, 0x1A, 0xAF, +0x5D, 0x11, 0x01, 0x81, 0x52, 0x01, 0x07, 0xD6, 0xB2, 0x6E, 0x2D, 0x4C, 0x59, 0x74, 0xCB, 0x47, +0xFC, 0xAB, 0x68, 0x4E, 0xFA, 0x31, 0xDC, 0xFF, 0xD0, 0xFE, 0x3D, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, +0x0A, 0x46, 0x50, 0xCA, 0x54, 0xF4, 0x34, 0xB4, 0x50, 0x06, 0x53, 0xA1, 0x46, 0x2A, 0x69, 0x95, +0xA5, 0x3C, 0x7E, 0x62, 0xE4, 0x7D, 0xE1, 0xD2, 0xB3, 0x68, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, +0x8A, 0x28, 0x03, 0xFF, 0xD1, 0xFE, 0x36, 0x68, 0xA5, 0x3D, 0x4D, 0x25, 0x26, 0x60, 0x14, 0xC7, +0x4C, 0xF2, 0x3A, 0xD3, 0xE8, 0xA0, 0x13, 0x2A, 0xD2, 0x54, 0xEE, 0x99, 0xE4, 0x75, 0xA8, 0x47, +0x5A, 0xDE, 0x33, 0xD0, 0xA6, 0x3A, 0x8A, 0x32, 0x29, 0x33, 0x59, 0x28, 0x32, 0x6C, 0x2D, 0x26, +0x45, 0x36, 0x8A, 0xD1, 0x52, 0x1D, 0x8F, 0xFF, 0xD2, 0xFE, 0x33, 0xF2, 0x69, 0x40, 0xEF, 0x40, +0x1D, 0xE9, 0x6A, 0xE7, 0x2E, 0x88, 0xC0, 0x29, 0x08, 0xF4, 0xA5, 0xA2, 0xA1, 0x4A, 0xC0, 0x32, +0x8A, 0x7D, 0x21, 0x1E, 0x95, 0xAA, 0xA8, 0x3B, 0x8D, 0xA2, 0x8A, 0x2B, 0x41, 0x85, 0x14, 0x51, +0x40, 0x1F, 0xFF, 0xD3, 0xFE, 0x33, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, +0x28, 0xA2, 0x80, 0x1E, 0x28, 0xA6, 0x8E, 0xB4, 0xEA, 0xE7, 0x9A, 0xB3, 0x25, 0x85, 0x14, 0x51, +0x52, 0x07, 0xFF, 0xD4, 0xFE, 0x34, 0x69, 0xCB, 0xF7, 0x85, 0x36, 0x9E, 0x9D, 0x69, 0x18, 0x12, +0xD1, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x01, +0xFF, 0xD5, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0xA3, +0x19, 0x19, 0x19, 0x14, 0x00, 0xF5, 0x18, 0x19, 0xEF, 0x4B, 0x52, 0x05, 0x04, 0x64, 0x1A, 0x4D, +0x8D, 0xEC, 0x6B, 0xA5, 0x2B, 0x2B, 0x14, 0x32, 0x8A, 0x76, 0xD2, 0x3B, 0x1A, 0x6D, 0x30, 0x3F, +0xFF, 0xD6, 0xFE, 0x37, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x1C, 0x09, 0x53, +0x91, 0x53, 0xAB, 0x6E, 0xFA, 0xD5, 0x6A, 0x5A, 0x99, 0x42, 0xE2, 0x2D, 0x51, 0x51, 0x2C, 0x9D, +0x9A, 0xA5, 0xAC, 0x1C, 0x6C, 0x21, 0xCA, 0x70, 0xC2, 0xA6, 0xAA, 0xF5, 0x38, 0x39, 0x00, 0xD2, +0x03, 0xFF, 0xD7, 0xFE, 0x35, 0xAA, 0xDD, 0xBD, 0xB9, 0x90, 0xEE, 0x7E, 0x13, 0xF9, 0xD1, 0x6F, +0x6E, 0x64, 0x3B, 0x9F, 0x84, 0xFE, 0x75, 0xAA, 0x00, 0x00, 0x00, 0x30, 0x2B, 0xA4, 0xC8, 0x00, +0x00, 0x00, 0x06, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x54, 0x33, 0xBE, 0xC8, 0x9B, 0xD4, 0xF1, +0x40, 0x14, 0x1D, 0xB7, 0x3B, 0x37, 0xA9, 0xA6, 0x51, 0x45, 0x00, 0x15, 0x72, 0xDA, 0xD8, 0xCA, +0x77, 0xBF, 0x11, 0xFF, 0x00, 0x3A, 0x75, 0xB5, 0xA9, 0x93, 0x12, 0x49, 0xC2, 0x76, 0x1E, 0xB5, +0xAA, 0x00, 0x03, 0x00, 0x60, 0x56, 0x73, 0x9F, 0x44, 0x26, 0xCF, 0xFF, 0xD0, 0xFE, 0x40, 0x00, +0x0A, 0x00, 0x03, 0x02, 0x96, 0x8A, 0x29, 0x18, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, +0x15, 0xEE, 0xFF, 0x00, 0xE3, 0xDA, 0x6C, 0x0C, 0x9D, 0xB5, 0xCE, 0xD7, 0x4B, 0x70, 0x33, 0x04, +0xC3, 0xFD, 0x93, 0x5C, 0xD5, 0x34, 0x69, 0x0D, 0x82, 0x8A, 0x28, 0xA0, 0xB3, 0xFF, 0xD1, 0xFE, +0x35, 0xE8, 0xA2, 0xAC, 0xDA, 0xC7, 0xBE, 0x50, 0x4F, 0x45, 0xE6, 0x9A, 0x40, 0x69, 0x43, 0x18, +0x8E, 0x35, 0x41, 0xD7, 0xBF, 0xD6, 0xA4, 0xA2, 0x8A, 0xE8, 0x48, 0xC8, 0x28, 0xA2, 0x8A, 0x00, +0xCA, 0xBC, 0x5C, 0x4D, 0x9E, 0xC4, 0x03, 0x55, 0x6B, 0x4A, 0xF9, 0x72, 0x88, 0xE3, 0x3C, 0x1C, +0x56, 0x6D, 0x61, 0x2D, 0xCD, 0x23, 0xB0, 0x51, 0x45, 0x15, 0x23, 0x3F, 0xFF, 0xD2, 0xFE, 0x35, +0xE9, 0xE9, 0xD6, 0x99, 0x52, 0x27, 0x43, 0x55, 0x05, 0xA8, 0xA5, 0xB0, 0xFA, 0x28, 0xA2, 0xB7, +0x33, 0x0A, 0x28, 0xA2, 0x80, 0x16, 0x9D, 0x48, 0x05, 0x2D, 0x61, 0x39, 0x5C, 0x96, 0x14, 0x51, +0x45, 0x40, 0x1F, 0xFF, 0xD3, 0xFE, 0x38, 0x68, 0xA0, 0x9C, 0x75, 0xAA, 0xEE, 0xFB, 0xBD, 0x85, +0x38, 0xC6, 0xE6, 0x03, 0x9D, 0xF3, 0xC0, 0xE9, 0x51, 0x51, 0x45, 0x6E, 0x95, 0x8A, 0x0A, 0x28, +0xA2, 0x98, 0x11, 0x4A, 0xDB, 0x57, 0x00, 0xF2, 0x6A, 0xAD, 0x3E, 0x46, 0xDC, 0xC4, 0xF6, 0xA6, +0x56, 0x13, 0x77, 0x66, 0x89, 0x05, 0x14, 0x51, 0x52, 0x33, 0xFF, 0xD4, 0xFE, 0x31, 0xE8, 0xA2, +0x8A, 0x00, 0x29, 0x41, 0x2A, 0x41, 0x07, 0x04, 0x52, 0x51, 0x40, 0x1A, 0x91, 0x48, 0x24, 0x50, +0xC3, 0xAF, 0x71, 0x4F, 0xAC, 0xD8, 0xA4, 0x31, 0xB6, 0x7F, 0x84, 0xF5, 0xAD, 0x20, 0x72, 0x32, +0x3A, 0x56, 0xF1, 0x95, 0xCC, 0xDA, 0x0A, 0x28, 0xA2, 0xA8, 0x41, 0x4B, 0x49, 0x45, 0x00, 0x7F, +0xFF, 0xD5, 0xFE, 0x3D, 0xD1, 0x83, 0xA2, 0xB0, 0xEE, 0x29, 0xD5, 0x52, 0xD1, 0xB2, 0xAC, 0x9E, +0x95, 0x6E, 0x89, 0x2B, 0x33, 0x00, 0xA2, 0x8A, 0x29, 0x00, 0x53, 0x93, 0xEF, 0x2F, 0xD6, 0x9B, +0x4F, 0x8F, 0xEF, 0xAD, 0x38, 0xEE, 0x05, 0xAA, 0x28, 0xA2, 0xBA, 0x4A, 0x0A, 0x28, 0xA2, 0x80, +0x3F, 0xFF, 0xD6, 0xFE, 0x41, 0xAA, 0x58, 0x97, 0x73, 0x64, 0xF4, 0x15, 0x15, 0x5C, 0x89, 0x76, +0xAF, 0x4E, 0x4F, 0x35, 0xD2, 0x64, 0x49, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x4E, +0x03, 0xBD, 0x20, 0x19, 0xA7, 0x56, 0x75, 0x25, 0xD0, 0x4C, 0x28, 0xA2, 0x8A, 0xC4, 0x47, 0xFF, +0xD7, 0xFE, 0x46, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD0, 0xFE, 0x42, 0x2E, 0x2C, 0xFA, 0xBC, +0x43, 0xEA, 0xBF, 0xE1, 0x59, 0xD5, 0xD1, 0x55, 0x4B, 0x8B, 0x51, 0x2E, 0x5D, 0x30, 0x24, 0xFE, +0x75, 0xA4, 0x27, 0xD1, 0x98, 0xDC, 0xC7, 0xA2, 0x94, 0x82, 0xA4, 0xAB, 0x02, 0x08, 0xA4, 0xAD, +0x46, 0x15, 0x42, 0xE2, 0x2D, 0xA7, 0x78, 0xFB, 0xA7, 0xAF, 0xB1, 0xAB, 0xF4, 0x8C, 0xA1, 0x94, +0xA9, 0xE8, 0x68, 0x03, 0x22, 0x8A, 0x7B, 0xA1, 0x8D, 0x8A, 0x9E, 0xDF, 0xAD, 0x32, 0x80, 0x0A, +0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD1, 0xFE, 0x36, 0xDB, 0xAD, 0x36, 0x9C, 0xDD, 0x73, 0x4D, 0xA7, +0x35, 0xA9, 0x83, 0x0A, 0x28, 0xA2, 0xA4, 0x02, 0xAB, 0xBF, 0xDE, 0x35, 0x3B, 0x1C, 0x02, 0x6A, +0xAD, 0x6B, 0x49, 0x75, 0x1A, 0x0A, 0x28, 0xA2, 0xB5, 0x18, 0x53, 0x80, 0xA4, 0x03, 0x34, 0xEA, +0xCE, 0x73, 0xB6, 0x88, 0x4D, 0x9F, 0xFF, 0xD2, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0xD6, 0x93, 0x14, 0xB4, 0x55, 0x29, 0x34, 0x03, 0x28, +0xA7, 0xE2, 0x9B, 0x8A, 0xDA, 0x33, 0x4C, 0x77, 0x3F, 0xFF, 0xD3, 0xFE, 0x33, 0xA8, 0xA2, 0x8A, +0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x7F, 0x5A, 0x65, 0x38, 0x54, +0x54, 0x5A, 0x09, 0x8B, 0x45, 0x14, 0x56, 0x02, 0x3F, 0xFF, 0xD4, 0xFE, 0x34, 0x6A, 0x48, 0xFB, +0xD4, 0x75, 0x32, 0x74, 0xA4, 0x73, 0x8E, 0xA2, 0x8A, 0x28, 0x18, 0x51, 0x45, 0x14, 0x00, 0x51, +0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD5, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x04, 0x88, 0xC4, 0x74, 0xAB, 0x0A, 0xC0, 0xFD, 0x6A, +0xA0, 0x38, 0x39, 0x15, 0x20, 0x3D, 0x08, 0xAD, 0xA9, 0xCB, 0xA0, 0xD1, 0x62, 0x8C, 0x03, 0xD4, +0x0A, 0x62, 0xBE, 0x78, 0x3D, 0x69, 0xF5, 0xA0, 0xCF, 0xFF, 0xD6, 0xFE, 0x39, 0x36, 0x2F, 0xA5, +0x21, 0x4F, 0x43, 0x4F, 0xA2, 0xBA, 0x4C, 0x88, 0xB6, 0x37, 0xB1, 0xA4, 0xDA, 0x47, 0x63, 0x53, +0x51, 0x40, 0x15, 0xE8, 0xAB, 0x18, 0x07, 0xA8, 0x14, 0xDD, 0x8B, 0xE9, 0x40, 0x10, 0xD4, 0x8A, +0xE5, 0x7A, 0xF2, 0x29, 0x4A, 0x7A, 0x1A, 0x6E, 0xC6, 0xF6, 0x34, 0x35, 0x70, 0x2C, 0x03, 0x9E, +0x45, 0x4A, 0x87, 0x8C, 0x55, 0x21, 0xB9, 0x4E, 0x70, 0x6A, 0xC4, 0x6E, 0x09, 0x1D, 0xAB, 0x09, +0x42, 0xC4, 0xD8, 0xFF, 0xD7, 0xFE, 0x41, 0x67, 0xB0, 0x68, 0x86, 0x61, 0x1B, 0xA3, 0x1D, 0xBB, +0x8A, 0xA1, 0x5D, 0x4D, 0x54, 0xB8, 0xB4, 0x8E, 0x6C, 0xB0, 0xF9, 0x24, 0xF5, 0x1D, 0xFE, 0xB5, +0xA4, 0x67, 0xDC, 0x97, 0x13, 0x06, 0x8A, 0x96, 0x58, 0x64, 0x85, 0xB6, 0xC8, 0xA4, 0x7B, 0xF6, +0x35, 0x15, 0x6A, 0x40, 0x55, 0x2B, 0xA6, 0xCB, 0x2A, 0xFA, 0x73, 0x57, 0x6B, 0x2A, 0x46, 0xDC, +0xEC, 0xDE, 0xF4, 0x00, 0xCA, 0xD0, 0xB6, 0xB5, 0xDD, 0x89, 0x65, 0xE1, 0x7B, 0x0F, 0x5A, 0x75, +0xAD, 0xA9, 0xE2, 0x49, 0x57, 0x1E, 0x8A, 0x7F, 0xAD, 0x68, 0xD6, 0x53, 0x9F, 0x44, 0x26, 0xC2, +0x8A, 0x28, 0xAC, 0x84, 0x7F, 0xFF, 0xD0, 0xFE, 0x40, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, +0x50, 0x01, 0x45, 0x14, 0x50, 0x03, 0x24, 0x19, 0x8D, 0xC7, 0xB1, 0xAE, 0x62, 0xBA, 0xA2, 0x32, +0x08, 0xF6, 0xAE, 0x56, 0x84, 0x69, 0x00, 0xA2, 0x8A, 0x29, 0x96, 0x7F, 0xFF, 0xD1, 0xFE, 0x35, +0xEB, 0x56, 0xD2, 0x3D, 0x91, 0x6E, 0x3D, 0x5B, 0x9F, 0xC2, 0xB3, 0xA2, 0x43, 0x24, 0x8A, 0x9E, +0xA7, 0x9F, 0x6A, 0xDB, 0x00, 0x00, 0x00, 0xE0, 0x56, 0x94, 0xD7, 0x52, 0x64, 0xC2, 0x8A, 0x28, +0xAD, 0x48, 0x0A, 0x28, 0xA2, 0x80, 0x21, 0xB8, 0x4D, 0xF0, 0xC8, 0x38, 0xC8, 0x19, 0xAC, 0x6A, +0xDF, 0x23, 0x20, 0x8A, 0xC2, 0x61, 0xB5, 0x99, 0x7D, 0x0E, 0x2B, 0x2A, 0x88, 0xB8, 0x8D, 0xA2, +0x8A, 0x2B, 0x32, 0x8F, 0xFF, 0xD2, 0xFE, 0x35, 0xEA, 0x65, 0xFB, 0xA2, 0xA1, 0xA9, 0xEB, 0x4A, +0x68, 0x99, 0x05, 0x14, 0x51, 0x5A, 0x90, 0x14, 0xA0, 0x51, 0x4E, 0xA8, 0x9C, 0xAC, 0x26, 0x14, +0x51, 0x45, 0x60, 0x20, 0xA4, 0x24, 0x01, 0x93, 0x43, 0x30, 0x51, 0x93, 0x55, 0xD9, 0x8B, 0x1C, +0x9A, 0xB8, 0x42, 0xE0, 0x91, 0xFF, 0xD3, 0xFE, 0x36, 0x59, 0x8B, 0x7D, 0x29, 0x94, 0x51, 0x5D, +0x29, 0x19, 0x05, 0x14, 0x51, 0x40, 0x05, 0x47, 0x2B, 0x6D, 0x5E, 0x3A, 0x9A, 0x92, 0xAA, 0x48, +0xFB, 0x9B, 0x83, 0x90, 0x38, 0xA9, 0x9B, 0xD0, 0x71, 0x44, 0x74, 0x51, 0x45, 0x60, 0x68, 0x14, +0x51, 0x45, 0x00, 0x7F, 0xFF, 0xD4, 0xFE, 0x31, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x2A, 0xDD, 0xB4, 0xBF, 0xF2, 0xCD, 0xBF, 0x0A, 0xA9, 0x45, 0x34, 0xEC, 0x26, 0x8D, 0x7A, 0x2A, +0x28, 0x64, 0xF3, 0x17, 0x3F, 0xC4, 0x3A, 0xD4, 0xB5, 0xD0, 0x99, 0x98, 0x51, 0x45, 0x14, 0x01, +0xFF, 0xD5, 0xFE, 0x39, 0x6D, 0xDF, 0x6C, 0xAB, 0xE8, 0x78, 0xAD, 0x4A, 0xC5, 0x1C, 0x72, 0x3A, +0xD6, 0xC2, 0x36, 0xE5, 0x56, 0xF5, 0x15, 0x75, 0x51, 0x8B, 0x1D, 0x45, 0x14, 0x56, 0x62, 0x0A, +0x92, 0x2F, 0xBE, 0x2A, 0x3A, 0x96, 0x2F, 0xBF, 0x4E, 0x3B, 0x81, 0x62, 0x8A, 0x28, 0xAE, 0x92, +0x82, 0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD6, 0xFE, 0x42, 0x51, 0x77, 0x30, 0x18, 0x24, 0x77, 0xAB, +0xB5, 0x0C, 0x2B, 0x80, 0x58, 0xF7, 0xA9, 0xAB, 0xA4, 0xC8, 0x28, 0xA2, 0x8A, 0x00, 0x29, 0x69, +0x29, 0xF5, 0x33, 0x95, 0x84, 0xC2, 0x8A, 0x28, 0xAE, 0x71, 0x05, 0x14, 0x51, 0x40, 0x1F, 0xFF, +0xD7, 0xFE, 0x46, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD0, 0xFE, 0x46, 0x68, 0xA2, 0x8A, 0x46, +0x04, 0x13, 0xDB, 0xA4, 0xC3, 0xD1, 0xFB, 0x1A, 0xC7, 0x92, 0x37, 0x89, 0x8A, 0xB8, 0xC1, 0xFE, +0x75, 0xBF, 0x51, 0xCB, 0x12, 0xCA, 0xA5, 0x58, 0x7D, 0x0F, 0xA5, 0x5C, 0x67, 0x60, 0xB9, 0x81, +0x45, 0x4F, 0x34, 0x0F, 0x0B, 0x61, 0xB9, 0x5E, 0xC7, 0xD6, 0xA0, 0xAD, 0xD3, 0x28, 0x86, 0x78, +0xFC, 0xC5, 0xC8, 0xFB, 0xC3, 0xA5, 0x66, 0xD6, 0xC5, 0x51, 0xB9, 0x8F, 0x6B, 0x6F, 0x51, 0xF2, +0x9E, 0xBE, 0xC6, 0x80, 0x2A, 0xD1, 0x45, 0x14, 0x01, 0xFF, 0xD1, 0xFE, 0x37, 0x1B, 0xA5, 0x32, +0xA4, 0x6E, 0x95, 0x1D, 0x55, 0x4D, 0xCC, 0x18, 0x51, 0x45, 0x15, 0x00, 0x45, 0x21, 0xE8, 0xB5, +0x0D, 0x39, 0x8E, 0x49, 0x34, 0xDA, 0xE9, 0x8A, 0xB2, 0x18, 0x52, 0xD1, 0x4E, 0xA9, 0x9C, 0xEC, +0x01, 0x45, 0x14, 0x56, 0x02, 0x3F, 0xFF, 0xD2, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, +0xD3, 0xFE, 0x34, 0x71, 0x4D, 0xC5, 0x3A, 0x8A, 0xA8, 0xCD, 0xA3, 0x0B, 0x8C, 0xA2, 0x9D, 0x8A, +0x4A, 0xD5, 0x49, 0x31, 0x89, 0x45, 0x14, 0x55, 0x0C, 0x28, 0xA2, 0x8A, 0x00, 0x7D, 0x14, 0x80, +0xF6, 0xA5, 0xAE, 0x69, 0x2B, 0x32, 0x4F, 0xFF, 0xD4, 0xFE, 0x34, 0x6A, 0x75, 0xFB, 0xA2, 0xA0, +0xAB, 0x14, 0x8C, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, +0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD5, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x01, 0x4E, 0x53, 0x83, 0x8E, 0xD4, 0xDA, 0x29, 0xA7, 0x67, 0x70, 0x25, +0xA7, 0xAB, 0xE3, 0x83, 0xC8, 0xA8, 0xD4, 0xE4, 0x7B, 0xD2, 0xD7, 0x4A, 0x65, 0x1F, 0xFF, 0xD6, +0xFE, 0x39, 0xA8, 0xA8, 0x43, 0x11, 0xF4, 0xA9, 0x41, 0x06, 0xBA, 0x4C, 0x85, 0xA2, 0x8A, 0x28, +0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA3, 0x03, 0xAF, 0x7A, 0x28, 0xA0, 0x0F, +0xFF, 0xD7, 0xFE, 0x47, 0xE8, 0xA2, 0x8A, 0x00, 0x6B, 0xA2, 0xBA, 0x95, 0x75, 0x0C, 0xA7, 0xB1, +0xAC, 0x9B, 0x8B, 0x06, 0x4C, 0xBC, 0x3F, 0x3A, 0xF7, 0x5E, 0xE3, 0xFC, 0x6B, 0x62, 0x8A, 0x6A, +0x56, 0x13, 0x47, 0x25, 0x3B, 0x15, 0x8D, 0xBD, 0x4F, 0x14, 0x5A, 0xDA, 0xED, 0xC4, 0xB2, 0x8F, +0x9B, 0xB0, 0xF4, 0xAD, 0xF9, 0xED, 0xE1, 0x99, 0xC3, 0x95, 0x01, 0xC7, 0x39, 0x1E, 0xB5, 0x51, +0xE1, 0x74, 0xCF, 0x1B, 0x97, 0xD4, 0x55, 0x4A, 0xA5, 0xCC, 0xDA, 0x64, 0x54, 0x51, 0x45, 0x66, +0x48, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD0, 0xFE, 0x40, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, +0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x5C, 0xBB, 0x0C, 0x33, 0x0F, 0x73, 0x5D, 0x45, 0x73, 0x33, +0x0C, 0x4B, 0x28, 0xFF, 0x00, 0x68, 0xD0, 0x8B, 0x81, 0x1D, 0x14, 0x50, 0x06, 0x48, 0x03, 0x93, +0x4C, 0xD0, 0xFF, 0xD1, 0xFE, 0x39, 0xEC, 0xA3, 0xFB, 0xD2, 0x11, 0xEC, 0x2A, 0xFD, 0x32, 0x34, +0x11, 0xC6, 0xA8, 0x3B, 0x0A, 0x7D, 0x74, 0x45, 0x59, 0x19, 0xB6, 0x14, 0x51, 0x45, 0x31, 0x05, +0x14, 0x51, 0x40, 0x05, 0x64, 0x5D, 0x2E, 0xD9, 0x9B, 0xD0, 0xF3, 0x5A, 0xF5, 0x42, 0xF9, 0x7E, +0xE3, 0xFE, 0x15, 0x13, 0x5A, 0x0E, 0x3B, 0x99, 0xF4, 0x51, 0x45, 0x62, 0x68, 0x7F, 0xFF, 0xD2, +0xFE, 0x36, 0x57, 0xEF, 0x0A, 0x96, 0xA3, 0x4E, 0xA4, 0xD4, 0x95, 0xB5, 0x3D, 0x8C, 0xE4, 0x14, +0x51, 0x4A, 0x05, 0x53, 0x76, 0xD4, 0x42, 0x81, 0x4B, 0x45, 0x15, 0xCE, 0xDD, 0xF5, 0x24, 0x29, +0xAC, 0xC1, 0x7E, 0xB4, 0x8C, 0xE1, 0x7D, 0xCD, 0x41, 0x57, 0x08, 0x5F, 0x56, 0x09, 0x01, 0x24, +0x9C, 0x9A, 0x4A, 0x28, 0xAD, 0x8A, 0x3F, 0xFF, 0xD3, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, +0x0A, 0x28, 0xA2, 0x80, 0x19, 0x23, 0x6D, 0x53, 0xEB, 0xD2, 0xA9, 0xD4, 0xB2, 0xB6, 0xE6, 0xC0, +0xE8, 0x2A, 0x2A, 0xC6, 0x6F, 0x53, 0x48, 0xA0, 0xA2, 0x8A, 0x2A, 0x06, 0x14, 0x51, 0x45, 0x00, +0x7F, 0xFF, 0xD4, 0xFE, 0x31, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x7C, 0x6E, 0x63, 0x60, 0xC3, 0xA7, 0x7A, 0xD3, 0x04, 0x30, 0x0C, 0x0E, 0x41, 0xAC, 0x9A, +0xB3, 0x6F, 0x2E, 0xD3, 0xB1, 0x8F, 0xCA, 0x7A, 0x7B, 0x56, 0x90, 0x97, 0x42, 0x64, 0x8B, 0xD4, +0x51, 0x45, 0x6A, 0x41, 0xFF, 0xD5, 0xFE, 0x37, 0xAB, 0x46, 0xD1, 0xB3, 0x19, 0x5F, 0x43, 0x59, +0xD5, 0x66, 0xD9, 0xB6, 0xCA, 0x07, 0x63, 0xC5, 0x6F, 0x35, 0xA1, 0x8B, 0x34, 0xA8, 0xA2, 0x8A, +0xE7, 0x10, 0x54, 0xD0, 0xF5, 0x6A, 0x86, 0xA6, 0x87, 0xAB, 0x55, 0x43, 0x70, 0x27, 0xA2, 0x8A, +0x2B, 0xA0, 0xA0, 0xA5, 0x00, 0x92, 0x00, 0xEB, 0x49, 0x56, 0x20, 0x5E, 0xAC, 0x47, 0xD2, 0x80, +0x3F, 0xFF, 0xD6, 0xFE, 0x45, 0x80, 0x00, 0x00, 0x3A, 0x51, 0x45, 0x15, 0xD2, 0x64, 0x14, 0x51, +0x4E, 0x03, 0xBD, 0x29, 0x3B, 0x08, 0x50, 0x31, 0x45, 0x14, 0x57, 0x33, 0x77, 0x10, 0x51, 0x45, +0x14, 0x00, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD7, 0xFE, 0x46, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, +0xD0, 0xFE, 0x46, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x02, 0x32, 0xAB, 0xA9, 0x56, +0x00, 0x83, 0x59, 0x17, 0x16, 0xAD, 0x16, 0x59, 0x7E, 0x68, 0xFF, 0x00, 0x51, 0x5B, 0x14, 0x11, +0x9E, 0x0F, 0x22, 0xAA, 0x32, 0xB0, 0x1C, 0xE5, 0x23, 0x28, 0x65, 0x2A, 0x7A, 0x1A, 0xD1, 0xB9, +0xB4, 0xDA, 0x37, 0xC4, 0x32, 0x3B, 0xAD, 0x67, 0xD6, 0xEA, 0x57, 0x19, 0x94, 0xE8, 0x63, 0x62, +0xA6, 0x99, 0x5A, 0x53, 0xC7, 0xBD, 0x38, 0x1F, 0x30, 0xE9, 0x59, 0xB4, 0xC6, 0x7F, 0xFF, 0xD1, +0xFE, 0x37, 0x8F, 0x43, 0x51, 0x54, 0xB5, 0x1D, 0x69, 0x54, 0xC5, 0x89, 0x4C, 0x90, 0xE1, 0x7E, +0xB4, 0xFA, 0x82, 0x43, 0x96, 0xC7, 0xA5, 0x44, 0x15, 0xD8, 0x91, 0x1D, 0x14, 0x53, 0x80, 0xAD, +0xE5, 0x2B, 0x0C, 0x50, 0x31, 0x45, 0x14, 0x57, 0x33, 0x77, 0x10, 0x51, 0x45, 0x14, 0x01, 0xFF, +0xD2, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD3, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, +0x01, 0x45, 0x14, 0x50, 0x02, 0x11, 0xE9, 0x4D, 0xA7, 0xD1, 0x5A, 0x2A, 0x81, 0x71, 0x94, 0x53, +0x88, 0xF4, 0xA6, 0xD6, 0xAA, 0x57, 0x18, 0xB4, 0xEA, 0x65, 0x38, 0x74, 0xA8, 0xA8, 0xBA, 0x83, +0x3F, 0xFF, 0xD4, 0xFE, 0x34, 0x87, 0x51, 0x53, 0xD4, 0x29, 0xF7, 0x85, 0x4D, 0x48, 0xE7, 0x0A, +0x28, 0xA2, 0x81, 0x85, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x1F, +0xFF, 0xD5, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x02, 0x83, 0x83, 0x52, 0x54, 0x54, 0xF5, 0x3D, 0xAB, 0x4A, 0x72, 0xE8, +0x34, 0x7F, 0xFF, 0xD6, 0xFE, 0x37, 0xA9, 0x41, 0x23, 0xA5, 0x25, 0x15, 0xD2, 0x64, 0x4C, 0xAC, +0x0F, 0xD6, 0x9D, 0x55, 0xEA, 0x55, 0x7E, 0xC6, 0x80, 0x1F, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, +0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD7, 0xFE, 0x47, 0xE8, 0xA2, 0x8A, 0x00, 0x2A, 0x37, +0x6E, 0xC2, 0x95, 0x9B, 0x1C, 0x0E, 0xB5, 0x15, 0x00, 0x14, 0x51, 0x45, 0x00, 0x42, 0xF0, 0x23, +0xF2, 0x3E, 0x56, 0xF6, 0xAA, 0x8F, 0x13, 0xA6, 0x72, 0x32, 0x3D, 0x45, 0x68, 0xD1, 0x41, 0x2E, +0x26, 0x4D, 0x15, 0x7E, 0x48, 0x15, 0xB9, 0x5F, 0x95, 0xBF, 0x4A, 0xA8, 0xF1, 0x3A, 0x75, 0x1C, +0x7A, 0x8A, 0x46, 0x6E, 0x2D, 0x1F, 0xFF, 0xD0, 0xFE, 0x40, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x5C, 0xE5, 0xD0, 0xC5, 0xC4, 0xC3, 0xFD, 0xA3, 0x5D, +0x1D, 0x73, 0xD7, 0x83, 0x17, 0x33, 0x7D, 0x7F, 0xA5, 0x08, 0xA8, 0x6E, 0x56, 0xAB, 0x56, 0x91, +0xEF, 0x93, 0x71, 0xE8, 0xBC, 0xFE, 0x35, 0x56, 0xB6, 0x2D, 0xA3, 0xF2, 0xE2, 0x5C, 0xFD, 0xE3, +0xC9, 0xAB, 0x82, 0xD4, 0xD2, 0x4C, 0xFF, 0xD1, 0xFE, 0x3D, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, +0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0xAF, 0x74, 0xBB, 0xA1, 0x6F, 0x6E, 0x6A, 0xC5, +0x23, 0x00, 0xC0, 0xA9, 0xE8, 0x46, 0x28, 0x68, 0x0C, 0x1A, 0x29, 0x48, 0x20, 0x90, 0x7A, 0x8A, +0x4A, 0xE6, 0x35, 0x3F, 0xFF, 0xD2, 0xFE, 0x37, 0x10, 0x71, 0x4E, 0xA0, 0x0C, 0x01, 0x45, 0x74, +0x47, 0x63, 0x26, 0x2D, 0x3A, 0x90, 0x0A, 0x5A, 0xC6, 0x72, 0xB9, 0x2C, 0x2A, 0x36, 0x93, 0x1C, +0x0E, 0x4D, 0x23, 0x49, 0xD9, 0x7F, 0x3A, 0x86, 0xAA, 0x10, 0xEE, 0x34, 0x85, 0xA4, 0xA2, 0x8A, +0xD4, 0x61, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD3, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, +0x6B, 0xB0, 0x45, 0x26, 0x9D, 0x55, 0xA6, 0x6C, 0xB0, 0x51, 0xD0, 0x52, 0x93, 0xB2, 0x1A, 0x44, +0x34, 0x51, 0x45, 0x73, 0x9A, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x1F, 0xFF, 0xD4, +0xFE, 0x31, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0xD0, 0x82, 0x5D, 0xEB, 0x83, 0xF7, 0x87, 0xEB, 0x53, 0xD6, 0x52, 0x31, 0x46, 0x0C, +0x3A, 0xD6, 0xA2, 0xB0, 0x75, 0x0C, 0x3A, 0x1A, 0xDA, 0x12, 0xB9, 0x9B, 0x47, 0xFF, 0xD5, 0xFE, +0x37, 0xA9, 0x41, 0x20, 0x82, 0x38, 0x22, 0x92, 0x8A, 0xE9, 0x32, 0x36, 0x81, 0x04, 0x02, 0x3B, +0x8A, 0x5A, 0xAF, 0x6A, 0xDB, 0xA2, 0xC1, 0xEA, 0x0E, 0x2A, 0xC5, 0x73, 0x35, 0x62, 0x42, 0xA7, +0x84, 0x7D, 0xE3, 0x50, 0x55, 0x88, 0x7A, 0x1A, 0xAA, 0x7B, 0x82, 0x25, 0xA2, 0x8A, 0x2B, 0x72, +0x85, 0xAB, 0xCA, 0xBB, 0x54, 0x2D, 0x56, 0x85, 0x72, 0xD9, 0xEC, 0x2A, 0xD5, 0x00, 0x7F, 0xFF, +0xD6, 0xFE, 0x45, 0xA8, 0xA2, 0x94, 0x0A, 0xE9, 0x6C, 0xC8, 0x00, 0xCD, 0x3A, 0x8A, 0x2B, 0x9E, +0x52, 0xB9, 0x21, 0x45, 0x14, 0x54, 0x80, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x01, 0xFF, +0xD7, 0xFE, 0x46, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD0, 0xFE, 0x46, 0x68, 0xA2, 0x8A, 0x46, +0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x54, 0xAE, 0x2D, 0x03, 0xE5, 0xE3, 0xE1, +0xFD, 0x3D, 0x6A, 0xED, 0x14, 0xD3, 0xB0, 0x1C, 0xE9, 0x04, 0x12, 0x08, 0x20, 0xD5, 0x0B, 0x88, +0xB6, 0x9F, 0x30, 0x74, 0x3D, 0x7D, 0xAB, 0xA9, 0x9E, 0xDD, 0x66, 0x19, 0x1F, 0x2C, 0x9D, 0x8F, +0xF8, 0xD6, 0x34, 0xB1, 0x15, 0x2D, 0x1C, 0xAB, 0x8A, 0xDE, 0x33, 0xB8, 0xCF, 0xFF, 0xD1, 0xFE, +0x37, 0xAA, 0x33, 0xD4, 0xD4, 0xEE, 0x86, 0x36, 0x2A, 0x6A, 0x16, 0xEB, 0x5A, 0xD4, 0xD8, 0xC5, +0x8C, 0x27, 0x00, 0x9A, 0xAD, 0x52, 0xC8, 0x7A, 0x2D, 0x46, 0x28, 0x8E, 0x8A, 0xE0, 0x00, 0x77, +0xA5, 0xA2, 0x8A, 0xCA, 0x4E, 0xE2, 0x0A, 0x28, 0xA2, 0x90, 0x05, 0x14, 0x51, 0x40, 0x1F, 0xFF, +0xD2, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD3, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, +0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x47, 0x5A, 0x28, 0xA1, 0x30, 0x13, 0x14, +0x82, 0x9D, 0x46, 0x2B, 0x45, 0x3E, 0xE1, 0x73, 0xFF, 0xD4, 0xFE, 0x35, 0x53, 0xA9, 0x35, 0x25, +0x46, 0x84, 0x0C, 0x8C, 0xE0, 0xD4, 0x94, 0x8C, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, +0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD5, 0xFE, 0x36, 0x68, 0xA2, 0x8A, +0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x4A, 0x0E, +0x39, 0xA4, 0xA2, 0x80, 0x3F, 0xFF, 0xD6, 0xFE, 0x37, 0x81, 0xC8, 0xA2, 0x98, 0x0E, 0x0E, 0x3B, +0x53, 0xEB, 0xA2, 0x2E, 0xE8, 0xC4, 0x28, 0xA2, 0x8A, 0x63, 0x1E, 0xAC, 0x47, 0xD2, 0xA5, 0x04, +0x1E, 0x95, 0x5E, 0x9C, 0x09, 0x1D, 0x28, 0x02, 0x6A, 0x29, 0x03, 0x03, 0xF5, 0xA5, 0xA0, 0x02, +0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD7, 0xFE, 0x47, 0xE9, 0xAC, 0xD8, 0x1E, 0xF4, 0xAC, 0x70, 0x2A, +0x0E, 0xBC, 0x9A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD0, 0xFE, 0x43, 0xDE, 0xDD, 0x5B, 0x95, 0xF9, 0x4F, 0xE9, 0x55, +0x5E, 0x37, 0x4F, 0xBC, 0x38, 0xF5, 0xAD, 0x2A, 0x31, 0x9E, 0x0F, 0x22, 0x82, 0x5C, 0x4C, 0x9A, +0x2A, 0xF3, 0xDB, 0xAB, 0x72, 0xBF, 0x29, 0xFD, 0x2A, 0xA3, 0xC6, 0xC9, 0xF7, 0x86, 0x29, 0x19, +0xB8, 0xB4, 0x32, 0x8A, 0x28, 0xA0, 0x41, 0x58, 0x17, 0xC3, 0x17, 0x32, 0x7E, 0x1F, 0xCA, 0xB7, +0xEB, 0x0B, 0x50, 0xFF, 0x00, 0x8F, 0x93, 0xC7, 0x1B, 0x45, 0x08, 0xA8, 0x6E, 0x57, 0x86, 0x3F, +0x32, 0x45, 0x5E, 0xDD, 0xFE, 0x95, 0xB5, 0x54, 0x6C, 0xA3, 0xC2, 0xB4, 0x84, 0x75, 0xE0, 0x55, +0xEA, 0xDE, 0x0B, 0x41, 0xC9, 0x9F, 0xFF, 0xD1, 0xFE, 0x3D, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, +0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x31, 0xEE, 0x57, 0x6C, 0xCE, +0x3A, 0x0E, 0xA2, 0xA1, 0x1D, 0x45, 0x5D, 0xBE, 0x5C, 0x32, 0x3F, 0xAF, 0x15, 0x4D, 0x3A, 0xD6, +0x0D, 0x6B, 0x63, 0x44, 0xF4, 0x3F, 0xFF, 0xD2, 0xFE, 0x37, 0xA9, 0x40, 0xA2, 0x9D, 0xD0, 0x56, +0xD3, 0x97, 0x44, 0x62, 0xC2, 0xA1, 0x77, 0xCF, 0x03, 0xA5, 0x23, 0xBE, 0xEE, 0x07, 0x02, 0xA3, +0xA5, 0x08, 0x77, 0x0B, 0x05, 0x14, 0x51, 0x5A, 0x0C, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0xFF, 0xD3, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x11, 0x9B, 0x6A, 0x93, 0x54, 0x6A, +0x79, 0x9B, 0x90, 0xA3, 0xF1, 0xA8, 0x2B, 0x19, 0xBD, 0x4B, 0x8A, 0x0A, 0x28, 0xA2, 0xA0, 0xA0, +0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD4, 0xFE, 0x31, 0xE8, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x2A, 0xC4, 0x12, 0x6C, +0x6D, 0xA4, 0xFC, 0xA6, 0xAB, 0xD1, 0x4D, 0x31, 0x34, 0x7F, 0xFF, 0xD5, 0xFE, 0x37, 0xA8, 0xAA, +0xF6, 0xF2, 0xEF, 0x05, 0x18, 0xFC, 0xC3, 0xF5, 0x15, 0x62, 0xBA, 0x13, 0xB9, 0x93, 0x45, 0xAB, +0x46, 0xC4, 0x85, 0x7D, 0x45, 0x68, 0xD6, 0x32, 0xB6, 0xD6, 0x56, 0xF4, 0x35, 0xB2, 0x08, 0x20, +0x11, 0xD2, 0xB2, 0xA8, 0x84, 0xC2, 0xAC, 0x43, 0xF7, 0x4F, 0xD6, 0xAB, 0xD5, 0xA8, 0xBE, 0xE0, +0xA5, 0x4F, 0x71, 0x21, 0xF4, 0x51, 0x4F, 0x8D, 0x77, 0x30, 0x1D, 0xBB, 0xD6, 0xE5, 0x16, 0xA3, +0x4D, 0x8B, 0xC8, 0xC1, 0x3C, 0x9A, 0x7D, 0x14, 0x50, 0x07, 0xFF, 0xD6, 0xFE, 0x45, 0xE9, 0xD4, +0x01, 0x8A, 0x2A, 0xA7, 0x2B, 0x98, 0x30, 0xA2, 0x8A, 0x2A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD7, 0xFE, 0x46, 0x68, 0xA2, 0x8A, 0x46, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, +0xFF, 0xD0, 0xFE, 0x46, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x01, 0x51, 0x4B, 0x0A, 0x4C, 0xB8, 0x6E, 0xBD, 0x8F, 0xA5, 0x4B, 0x45, +0x00, 0x7F, 0xFF, 0xD1, 0xFE, 0x3D, 0xAF, 0x6D, 0x5D, 0x06, 0x08, 0xC9, 0xEA, 0xA7, 0xD6, 0xB1, +0x18, 0x73, 0x5D, 0xE3, 0xAA, 0xBA, 0x95, 0x70, 0x0A, 0xD7, 0x25, 0xAA, 0xDA, 0xFD, 0x99, 0x83, +0x2B, 0x2B, 0x23, 0x1C, 0x7B, 0x8A, 0xB7, 0x3B, 0xAD, 0x4C, 0x2E, 0x63, 0x13, 0xB9, 0x89, 0xED, +0x45, 0x14, 0x54, 0x4A, 0x57, 0x00, 0xA2, 0x8A, 0x29, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, +0x14, 0x01, 0xFF, 0xD2, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD3, 0xFE, 0x34, 0x68, +0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0xD2, 0x73, 0x55, 0x08, 0xDC, 0x0F, 0xFF, 0xD4, 0xFE, 0x33, 0xA9, 0xE1, 0xD8, 0x74, +0x34, 0xCA, 0x2B, 0xA5, 0xA3, 0x22, 0x61, 0x27, 0xF7, 0x85, 0x48, 0x08, 0x6E, 0x86, 0xAA, 0xD2, +0xD4, 0x3A, 0x68, 0x56, 0x2D, 0x51, 0x55, 0xC4, 0x8C, 0x3B, 0xE6, 0xA5, 0x12, 0x29, 0xEB, 0xC5, +0x64, 0xE0, 0xD0, 0xAC, 0x3E, 0x8A, 0x33, 0x9E, 0x94, 0x54, 0x80, 0x51, 0x45, 0x14, 0x01, 0xFF, +0xD5, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD6, 0xFE, 0x36, 0x6A, 0x45, 0x39, 0x1E, +0xF5, 0x1D, 0x28, 0xE0, 0xD3, 0x84, 0xAC, 0xCC, 0x11, 0x25, 0x14, 0x51, 0x5D, 0x05, 0x05, 0x14, +0x51, 0x40, 0x0B, 0x52, 0x2B, 0x67, 0x83, 0xD6, 0xA2, 0xA2, 0x80, 0x2C, 0x51, 0x51, 0xAB, 0x63, +0x83, 0xD2, 0xA4, 0xA0, 0x0F, 0xFF, 0xD7, 0xFE, 0x48, 0xCD, 0xA3, 0x93, 0x9D, 0xEB, 0x4C, 0xFB, +0x2C, 0xBF, 0xEC, 0x9F, 0xC6, 0xB4, 0x68, 0xA4, 0x65, 0xCE, 0xCC, 0xC3, 0x6F, 0x30, 0xFE, 0x1C, +0xFE, 0x34, 0xDF, 0x26, 0x5F, 0xF9, 0xE6, 0xD5, 0xAB, 0x45, 0x17, 0x0E, 0x76, 0x63, 0xEC, 0x71, +0xD5, 0x1B, 0xF2, 0xA6, 0xE0, 0x8E, 0xA2, 0xB6, 0xA8, 0xA2, 0xE3, 0xE7, 0x31, 0x68, 0xAD, 0x9D, +0xAA, 0x7A, 0xAA, 0xFE, 0x54, 0xC3, 0x0C, 0x47, 0xAC, 0x6B, 0xF9, 0x51, 0x71, 0xF3, 0x99, 0x34, +0x56, 0xA1, 0xB7, 0x88, 0xFF, 0x00, 0x00, 0x14, 0xDF, 0xB2, 0xC5, 0xE8, 0xC3, 0xF1, 0xA2, 0xE1, +0xCE, 0x8F, 0xFF, 0xD0, 0xFE, 0x45, 0xE8, 0xAD, 0x03, 0x69, 0x1F, 0x66, 0x61, 0x4D, 0xFB, 0x18, +0xFF, 0x00, 0x9E, 0x87, 0xF2, 0xA0, 0x9E, 0x74, 0x51, 0xA0, 0x80, 0x78, 0x23, 0x22, 0xAE, 0x7D, +0x8D, 0xBB, 0x38, 0xFC, 0xA9, 0xA6, 0xD2, 0x4E, 0xC5, 0x4D, 0x01, 0xCC, 0x8C, 0xC7, 0xB7, 0x07, +0x25, 0x0E, 0x0F, 0xA5, 0x54, 0x65, 0x64, 0x38, 0x65, 0x22, 0xB7, 0x3E, 0xCD, 0x2F, 0xA0, 0xFC, +0xEA, 0x36, 0xB7, 0x90, 0x82, 0x0C, 0x64, 0x8F, 0x4A, 0x42, 0x69, 0x18, 0xB5, 0x8D, 0xA8, 0x29, +0x37, 0x11, 0x81, 0xC9, 0x2A, 0x07, 0xEB, 0x5D, 0x4C, 0x96, 0x4E, 0x39, 0x45, 0x65, 0xF6, 0x22, +0xB1, 0x6E, 0x61, 0x64, 0xB9, 0x43, 0x22, 0xED, 0xC2, 0x9E, 0xBE, 0xB4, 0xE2, 0xAE, 0xC9, 0x5A, +0x31, 0x88, 0xA1, 0x11, 0x50, 0x74, 0x03, 0x14, 0xEA, 0x32, 0x3D, 0x45, 0x15, 0xD3, 0x70, 0x3F, +0xFF, 0xD1, 0xFE, 0x3D, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, +0x80, 0x0A, 0x28, 0xA2, 0x80, 0x2B, 0x5D, 0xAE, 0xE8, 0x49, 0xEE, 0x0E, 0x6B, 0x35, 0x07, 0x53, +0x5B, 0x2E, 0xBB, 0xD1, 0x97, 0xD4, 0x56, 0x3A, 0xE1, 0x40, 0x26, 0xA1, 0xAD, 0x6E, 0x3B, 0xE8, +0x7F, 0xFF, 0xD2, 0xFE, 0x37, 0xF2, 0x14, 0x64, 0xD4, 0x2C, 0xC5, 0xBD, 0x85, 0x23, 0x31, 0x63, +0x93, 0x4D, 0xAD, 0xD4, 0x7A, 0xB3, 0x10, 0xA2, 0x8A, 0x2A, 0x86, 0x14, 0x51, 0x45, 0x00, 0x14, +0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x7F, 0xFF, 0xD3, 0xFE, 0x35, 0xA8, 0x24, 0x00, 0x49, +0xE9, 0x45, 0x41, 0x33, 0x74, 0x51, 0xF8, 0xD7, 0x43, 0x76, 0x32, 0x48, 0x80, 0x92, 0x49, 0x27, +0xAD, 0x25, 0x14, 0x57, 0x39, 0xA8, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, +0x14, 0x01, 0xFF, 0xD4, 0xFE, 0x31, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD5, 0xFE, 0x32, 0x15, 0x8A, +0x90, 0xC3, 0x82, 0x2B, 0x4D, 0x1C, 0x48, 0xA1, 0x87, 0xFF, 0x00, 0xAA, 0xB2, 0xEA, 0x68, 0x64, +0xF2, 0xDB, 0x9F, 0xBA, 0x7A, 0xD5, 0xC2, 0x56, 0x14, 0x91, 0xA3, 0x5A, 0x96, 0xCD, 0xBA, 0x25, +0x1D, 0xC7, 0x15, 0x97, 0xD7, 0xA5, 0x5C, 0xB4, 0x7C, 0x3B, 0x21, 0xE8, 0x47, 0xEB, 0x57, 0x51, +0x68, 0x64, 0xCB, 0xF5, 0x6A, 0x3F, 0xB8, 0x2A, 0xAD, 0x5B, 0x4F, 0xB8, 0xB5, 0x14, 0xF7, 0x12, +0x1D, 0x56, 0xA0, 0x5C, 0x29, 0x62, 0x39, 0x35, 0x5D, 0x41, 0x62, 0x00, 0xAB, 0xC0, 0x00, 0x30, +0x38, 0x15, 0xB1, 0x41, 0x4E, 0x03, 0xBD, 0x00, 0x52, 0xD6, 0x53, 0x9F, 0x44, 0x26, 0xCF, 0xFF, +0xD6, 0xFE, 0x46, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD7, 0xFE, 0x46, 0x68, 0xA2, 0x8A, 0x46, +0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x99, +0x1E, 0xA2, 0x80, 0x3F, 0xFF, 0xD0, 0xFE, 0x46, 0x68, 0xA6, 0xEF, 0x5F, 0x5A, 0x42, 0xFE, 0x82, +0x91, 0x80, 0xFA, 0x2A, 0x2D, 0xE7, 0xDA, 0x93, 0x73, 0x7A, 0xD0, 0x04, 0xD4, 0x9B, 0x87, 0xA8, +0xA8, 0x72, 0x4F, 0x53, 0x9A, 0x4A, 0x00, 0x9B, 0x7A, 0xFB, 0x9A, 0x4F, 0x33, 0xDA, 0xA2, 0xA2, +0x80, 0x1F, 0xBC, 0xFB, 0x52, 0x16, 0x3E, 0xB5, 0x13, 0xC8, 0xB1, 0x8C, 0xB1, 0xFC, 0x3D, 0x6A, +0x84, 0x93, 0x34, 0x9C, 0x7D, 0xD5, 0xF4, 0xA0, 0x0F, 0xFF, 0xD1, 0xFE, 0x41, 0xE5, 0xB9, 0x03, +0x21, 0x3E, 0x63, 0xEB, 0x58, 0x3A, 0x8B, 0x16, 0xF2, 0xD5, 0xB2, 0x49, 0xC9, 0xE6, 0xB4, 0x2B, +0x26, 0xF9, 0xB3, 0x30, 0x19, 0xE8, 0x2A, 0xA0, 0xB5, 0x30, 0x46, 0x71, 0x18, 0x34, 0x95, 0x29, +0x19, 0x1E, 0xF5, 0x15, 0x29, 0x46, 0xC0, 0xC2, 0x8A, 0x28, 0xA9, 0x00, 0xA2, 0x8A, 0x28, 0x00, +0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD2, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD3, 0xFE, +0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, +0x50, 0x02, 0x1A, 0x6D, 0x2D, 0x25, 0x74, 0x45, 0x59, 0x0C, 0xFF, 0xD4, 0xFE, 0x33, 0xA8, 0xA2, +0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x17, 0x24, 0x74, 0xA7, 0x89, +0x18, 0x75, 0xC1, 0xA8, 0xE8, 0xA4, 0xD5, 0xC4, 0x58, 0x12, 0x29, 0xEF, 0x8A, 0x7D, 0x54, 0xA7, +0x06, 0x23, 0xA1, 0x35, 0x9B, 0xA7, 0xD8, 0x2C, 0x7F, 0xFF, 0xD5, 0xFE, 0x36, 0x68, 0xA8, 0x84, +0x9F, 0xDE, 0x15, 0x20, 0x65, 0x3D, 0x0D, 0x0E, 0x2D, 0x18, 0x0B, 0x45, 0x14, 0x52, 0x00, 0xA2, +0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD6, 0xFE, 0x36, 0x68, +0xA2, 0x8A, 0x46, 0x03, 0xD4, 0xF6, 0xA7, 0x54, 0x7D, 0x2A, 0x40, 0x72, 0x2B, 0x6A, 0x72, 0xE8, +0x34, 0x14, 0x51, 0x45, 0x68, 0x30, 0xA2, 0x8A, 0x28, 0x00, 0xA7, 0x06, 0x23, 0xE9, 0x4D, 0xA5, +0xA5, 0x27, 0x64, 0x34, 0x8F, 0xFF, 0xD7, 0xFE, 0x4C, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, +0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD0, +0xFE, 0x4C, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x21, 0x65, 0x5E, 0xA6, 0xA2, 0x69, 0x3F, 0xBB, +0x4D, 0x45, 0xB0, 0x26, 0xA6, 0x19, 0x14, 0x74, 0xE6, 0xA0, 0x24, 0x9E, 0xA6, 0xB3, 0xAE, 0xAF, +0x04, 0x7B, 0xA2, 0x88, 0x82, 0xFD, 0x09, 0xFE, 0xEF, 0xFF, 0x00, 0x5E, 0xB5, 0x54, 0xC7, 0x62, +0xC5, 0xD5, 0xFF, 0x00, 0x95, 0x94, 0x42, 0x0C, 0xBE, 0x9E, 0x9F, 0x5A, 0xE6, 0x6E, 0xE4, 0x66, +0x22, 0x47, 0x62, 0xCC, 0x4F, 0x35, 0x39, 0x24, 0x92, 0x49, 0x24, 0xD5, 0x6B, 0x91, 0xFB, 0xB0, +0x7D, 0xEA, 0xA4, 0x95, 0x86, 0x91, 0x05, 0x15, 0x1A, 0x1C, 0xF1, 0x52, 0x54, 0x38, 0xDF, 0x54, +0x5A, 0x7D, 0xCF, 0xFF, 0xD1, 0xFE, 0x3B, 0xE8, 0xA2, 0x8A, 0x00, 0x5C, 0x9F, 0x53, 0x46, 0x4F, +0xA9, 0xA4, 0xA2, 0x80, 0x17, 0x27, 0xD4, 0xD2, 0xEE, 0x6F, 0x5A, 0x6D, 0x14, 0xEE, 0xC2, 0xC3, +0xB7, 0x37, 0xAD, 0x1B, 0x9B, 0xD6, 0x9B, 0x45, 0x17, 0x62, 0xB0, 0xED, 0xCD, 0xEB, 0x59, 0x53, +0xA9, 0x59, 0x18, 0x76, 0xEA, 0x2B, 0x4E, 0xAB, 0x5C, 0xA6, 0xE4, 0xDC, 0x3A, 0x8F, 0xE5, 0x55, +0x09, 0x6A, 0x29, 0x23, 0xFF, 0xD2, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, +0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD3, +0xFE, 0x35, 0x89, 0x00, 0x12, 0x7A, 0x55, 0x12, 0x72, 0x49, 0x35, 0x62, 0x66, 0xC0, 0x0A, 0x3B, +0xD5, 0x6A, 0xD2, 0xA3, 0x26, 0x28, 0x28, 0xA2, 0x8A, 0xCC, 0xA0, 0xA2, 0x8A, 0x28, 0x00, 0xA2, +0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD4, 0xFE, 0x31, 0xE8, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, +0xD5, 0xFE, 0x31, 0xE8, 0xA2, 0x8A, 0x00, 0xBB, 0x6D, 0x2E, 0x47, 0x96, 0x7A, 0xF6, 0xAB, 0xA8, +0xDB, 0x1D, 0x5B, 0xD0, 0xD6, 0x28, 0x24, 0x10, 0x47, 0x5A, 0xD3, 0x8A, 0x4F, 0x31, 0x73, 0xFC, +0x5D, 0xEB, 0x58, 0x3B, 0xE8, 0xC8, 0x92, 0x37, 0xFA, 0xF3, 0x56, 0xD3, 0xEE, 0xAF, 0xD2, 0xB3, +0xAD, 0xDB, 0x74, 0x4A, 0x4F, 0x51, 0xC5, 0x69, 0x8E, 0xD5, 0x30, 0x5A, 0x90, 0x8B, 0x10, 0x2F, +0x56, 0x3F, 0x41, 0x56, 0x40, 0xA6, 0xAA, 0xED, 0x01, 0x45, 0x49, 0x57, 0x39, 0x58, 0x18, 0x51, +0x45, 0x15, 0x80, 0x8F, 0xFF, 0xD6, 0xFE, 0x46, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x64, 0x0E, 0xA7, 0x14, 0x00, 0x51, 0x4D, 0xDE, 0xBE, +0xB4, 0x9B, 0xC7, 0xA1, 0xA0, 0x0F, 0xFF, 0xD7, 0xFE, 0x46, 0x68, 0xA8, 0xF7, 0x9E, 0xC2, 0x9B, +0xBD, 0xBD, 0x69, 0x18, 0x13, 0x51, 0x90, 0x3A, 0x91, 0x50, 0x64, 0x9E, 0xA7, 0x34, 0x94, 0x01, +0x36, 0xF5, 0xF5, 0xA4, 0xDE, 0x3B, 0x0A, 0x8A, 0x8A, 0x00, 0x93, 0x79, 0xF4, 0x14, 0xDD, 0xCD, +0xEB, 0x4D, 0xA2, 0x80, 0x17, 0x24, 0xF5, 0x39, 0xA4, 0xA2, 0x8A, 0x00, 0xFF, 0xD0, 0xFE, 0x44, +0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0xC7, 0x91, 0x63, 0x19, 0x63, +0xF8, 0x7A, 0xD0, 0x03, 0xEA, 0xAC, 0x97, 0x20, 0x65, 0x53, 0x96, 0xF5, 0xA8, 0x25, 0x99, 0xA4, +0xE0, 0x7C, 0xAB, 0xE9, 0x50, 0x50, 0x02, 0x92, 0x58, 0xE5, 0x89, 0x26, 0x92, 0x8A, 0x28, 0x03, +0xFF, 0xD1, 0xFE, 0x3E, 0x6B, 0x0E, 0xE1, 0xB7, 0x4F, 0x21, 0xED, 0x9C, 0x56, 0xE7, 0x62, 0x6B, +0x9E, 0x63, 0xB8, 0x93, 0xEA, 0x73, 0x57, 0x49, 0x18, 0xA1, 0xB4, 0xD6, 0x1D, 0xE9, 0xD4, 0x56, +0xB2, 0x57, 0x19, 0x15, 0x14, 0xA4, 0x60, 0xD2, 0x57, 0x33, 0x56, 0x24, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD2, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD3, 0xFE, +0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x48, 0x4F, +0x6A, 0x52, 0x71, 0x4C, 0xAD, 0x29, 0xC7, 0xA8, 0xD0, 0x51, 0x45, 0x15, 0xB0, 0xCF, 0xFF, 0xD4, +0xFE, 0x33, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, +0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD5, 0xFE, 0x33, 0xA8, 0xA2, 0x8A, 0xE9, +0x32, 0x1E, 0x1D, 0x87, 0x7A, 0x7A, 0xC9, 0xFD, 0xEA, 0x86, 0x8A, 0x97, 0x04, 0x2B, 0x16, 0x81, +0x07, 0xA1, 0xA5, 0xAA, 0xB4, 0xF1, 0x23, 0x0F, 0x7A, 0x87, 0x4F, 0xB0, 0x58, 0x9E, 0x8A, 0x60, +0x91, 0x4F, 0x5E, 0x29, 0xF5, 0x9B, 0x56, 0x10, 0x51, 0x45, 0x14, 0x80, 0xFF, 0xD6, 0xFE, 0x36, +0x68, 0xA2, 0x8A, 0x46, 0x01, 0x4A, 0x0E, 0x0F, 0xB5, 0x25, 0x14, 0xD3, 0xB3, 0xB8, 0x12, 0xD1, +0x48, 0xA7, 0x22, 0x96, 0xBA, 0x53, 0xB9, 0x41, 0x45, 0x14, 0x50, 0x02, 0xD1, 0x45, 0x15, 0x8C, +0xDE, 0xA5, 0xC5, 0x1F, 0xFF, 0xD7, 0xFE, 0x4C, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0xD2, 0xC1, 0x7A, 0x9E, 0x68, 0x48, 0x07, 0x51, 0xD2, +0xA1, 0x32, 0x1E, 0xC3, 0x15, 0x19, 0x24, 0xF5, 0x35, 0xA2, 0xA6, 0xFA, 0x85, 0x8F, 0xFF, 0xD0, +0xFE, 0x4B, 0x8C, 0x8A, 0x3A, 0x73, 0x51, 0x17, 0x63, 0xDF, 0x14, 0xCA, 0x2B, 0x75, 0x04, 0x8C, +0x6C, 0x14, 0x74, 0xE7, 0xB5, 0x23, 0x30, 0x55, 0x2C, 0xC4, 0x05, 0x1C, 0x92, 0x6B, 0x1A, 0xEA, +0xED, 0xA5, 0xCA, 0x46, 0x4A, 0xC5, 0xDF, 0xFD, 0xAA, 0xA1, 0x92, 0xDD, 0x5E, 0xE7, 0x31, 0xC0, +0xD8, 0x1D, 0x0B, 0x7A, 0xFD, 0x2B, 0x32, 0x8A, 0x28, 0x00, 0xA8, 0x2E, 0x7F, 0xD5, 0x1F, 0xAD, +0x4F, 0x50, 0xDC, 0x7F, 0xAA, 0x6F, 0xC2, 0x94, 0xB6, 0x04, 0x67, 0x82, 0x41, 0xC8, 0xA9, 0x81, +0xC8, 0x06, 0xA0, 0xA7, 0xA1, 0xED, 0xDA, 0xB2, 0x83, 0xD4, 0xB9, 0x23, 0xFF, 0xD1, 0xFE, 0x3B, +0xE8, 0xA4, 0xA2, 0xB7, 0x94, 0x2E, 0x66, 0x98, 0xB4, 0x51, 0x45, 0x62, 0xD5, 0x8B, 0x4C, 0x28, +0xA2, 0x8A, 0x43, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x08, 0xC8, 0xC1, 0xE9, 0x45, 0x14, 0x01, 0xFF, +0xD2, 0xFE, 0x36, 0x64, 0x43, 0x1B, 0xB2, 0x1E, 0xD4, 0xCA, 0xBD, 0x74, 0x99, 0x01, 0xC0, 0xE9, +0xC1, 0xAA, 0x35, 0xD1, 0x17, 0x74, 0x64, 0xD0, 0x51, 0x45, 0x14, 0xC0, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xE9, 0xC9, 0xA2, 0xA1, 0x99, 0xB0, 0xA1, 0x41, 0xE4, 0xD2, 0x6E, +0xC0, 0x91, 0xFF, 0xD3, 0xFE, 0x32, 0x58, 0xEE, 0x62, 0x69, 0xB4, 0x51, 0x40, 0x05, 0x14, 0x51, +0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x1F, 0xFF, 0xD4, +0xFE, 0x31, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD5, 0xFE, 0x31, 0xE8, 0xA2, 0x8A, 0x00, 0x2A, 0x48, +0xA4, 0x31, 0xB6, 0x7B, 0x77, 0xA8, 0xE8, 0xA0, 0x0E, 0x8E, 0xCE, 0x40, 0x72, 0xA0, 0x82, 0x0F, +0x22, 0xBA, 0x18, 0x17, 0x38, 0x3D, 0x80, 0xAE, 0x26, 0xCA, 0x7D, 0x92, 0x22, 0xB1, 0xC0, 0xCF, +0x15, 0xDF, 0xC4, 0xA1, 0x10, 0x67, 0x83, 0x5A, 0xA6, 0x96, 0xA6, 0x4D, 0x58, 0x94, 0x0C, 0x51, +0x49, 0xB9, 0x7D, 0x69, 0x37, 0x8F, 0x7A, 0xC5, 0xBB, 0x92, 0x3A, 0x8A, 0x8F, 0x79, 0xEC, 0x05, +0x26, 0xF6, 0xFA, 0x50, 0x07, 0xFF, 0xD6, 0xFE, 0x46, 0x68, 0xCD, 0x41, 0xB8, 0x9E, 0xE6, 0x92, +0x91, 0x81, 0x3E, 0xE5, 0xF5, 0xA6, 0xEF, 0x1E, 0xE6, 0xA2, 0xA2, 0x80, 0x24, 0xDE, 0x7B, 0x0A, +0x4D, 0xED, 0xEB, 0x4C, 0xA2, 0x80, 0x17, 0x27, 0xD4, 0xD2, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, +0x00, 0x7F, 0xFF, 0xD7, 0xFE, 0x44, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD0, 0xFE, 0x44, 0x68, +0xA2, 0x8A, 0x46, 0x01, 0x45, 0x31, 0xE4, 0x58, 0xC6, 0x58, 0xFE, 0x15, 0x46, 0x59, 0xDA, 0x4E, +0x3E, 0xEA, 0xFA, 0x50, 0x05, 0x89, 0x6E, 0x02, 0xE5, 0x53, 0xE6, 0x6F, 0x5E, 0xD5, 0x44, 0xB1, +0x63, 0x96, 0x24, 0x9A, 0x4A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, +0xD1, 0xFE, 0x3D, 0x27, 0x6D, 0x90, 0xC8, 0xDD, 0x38, 0xAC, 0x1A, 0xD9, 0xBC, 0x38, 0x81, 0xB9, +0xE4, 0x90, 0x2B, 0x1A, 0xB5, 0xA7, 0xB1, 0x8A, 0x0A, 0x28, 0xA2, 0xB4, 0x18, 0x11, 0x91, 0x51, +0xD4, 0x94, 0xD6, 0x1D, 0xEB, 0x3A, 0x91, 0xEA, 0x26, 0x32, 0x8A, 0x28, 0xAC, 0x44, 0x14, 0x51, +0x45, 0x00, 0x7F, 0xFF, 0xD2, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD3, 0xFE, 0x34, +0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x84, 0xF6, 0xA7, 0x15, 0x70, +0x10, 0x9C, 0xD2, 0x51, 0x45, 0x74, 0xA4, 0x50, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD4, 0xFE, 0x33, +0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, +0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD5, 0xFE, 0x33, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, +0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x5C, 0x91, 0xD2, 0x92, 0x8A, 0x00, 0x94, 0x48, +0x7B, 0x80, 0x69, 0xE1, 0xD4, 0xF7, 0xC5, 0x57, 0xA2, 0xA1, 0xD3, 0x42, 0xB1, 0xFF, 0xD6, 0xFE, +0x36, 0x68, 0xAA, 0xC1, 0x88, 0xE8, 0x4D, 0x48, 0x25, 0xF5, 0x15, 0x4E, 0x9B, 0x30, 0xB1, 0x2D, +0x14, 0x81, 0x95, 0xBA, 0x1A, 0x5A, 0x86, 0x80, 0x50, 0x70, 0x6A, 0x4A, 0x8A, 0x9E, 0xA7, 0xB5, +0x69, 0x4E, 0x5D, 0x06, 0x87, 0x51, 0x45, 0x2D, 0x6A, 0xDD, 0x86, 0x90, 0x51, 0x45, 0x15, 0xCE, +0x6A, 0x7F, 0xFF, 0xD7, 0xFE, 0x4C, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x34, 0xBA, 0x8E, 0xF5, +0x19, 0x90, 0xF6, 0xE2, 0xA9, 0x41, 0x85, 0x89, 0xB3, 0x8E, 0xB5, 0x19, 0x90, 0x76, 0xE6, 0xA1, +0xC9, 0x3D, 0x4E, 0x69, 0x2B, 0x45, 0x4D, 0x0E, 0xC3, 0xCB, 0xB1, 0xEF, 0x8F, 0xA5, 0x32, 0x8A, +0x2B, 0x44, 0x86, 0x14, 0x51, 0x45, 0x00, 0x7F, 0xFF, 0xD0, 0xFE, 0x49, 0xA9, 0x92, 0x48, 0x91, +0x29, 0x77, 0x20, 0x0A, 0x64, 0xD3, 0xA4, 0x0B, 0xB9, 0xCF, 0x3D, 0x87, 0x73, 0x58, 0x73, 0x4C, +0xF3, 0x39, 0x66, 0x3C, 0x76, 0x1D, 0x85, 0x74, 0x99, 0x0F, 0xB8, 0xB9, 0x79, 0xCE, 0x0F, 0xCB, +0x18, 0xE8, 0x3F, 0xC6, 0xAB, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x15, 0x1C, 0xDF, 0xEA, +0x9F, 0xE9, 0x52, 0x53, 0x25, 0xFF, 0x00, 0x56, 0xFF, 0x00, 0x4A, 0x52, 0xD8, 0x11, 0x97, 0x45, +0x14, 0x57, 0x39, 0xA9, 0xFF, 0xD1, 0xFE, 0x3B, 0x54, 0xE4, 0x7B, 0xD2, 0xD4, 0x2A, 0x70, 0x73, +0x53, 0x56, 0xF0, 0x95, 0xCC, 0xDA, 0x0A, 0x5A, 0x4A, 0x29, 0xB5, 0x71, 0x26, 0x2D, 0x14, 0x51, +0x58, 0xCA, 0x36, 0x34, 0x4C, 0x28, 0xA2, 0x8A, 0x91, 0x85, 0x14, 0x51, 0x40, 0x1F, 0xFF, 0xD2, +0xFE, 0x3B, 0x88, 0xC8, 0x20, 0xF4, 0x23, 0x15, 0x92, 0xC0, 0xAB, 0x15, 0x3D, 0x45, 0x6B, 0xD5, +0x2B, 0xA4, 0xC1, 0x0E, 0x07, 0x5E, 0x0D, 0x5D, 0x36, 0x4C, 0x91, 0x4E, 0x8A, 0x28, 0xAD, 0x88, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0xA6, 0xED, 0xB9, 0x89, 0xED, 0xDA, 0xAC, +0x4A, 0xDB, 0x57, 0x03, 0xA9, 0xAA, 0x95, 0x95, 0x47, 0xD0, 0xA8, 0xA3, 0xFF, 0xD3, 0xFE, 0x31, +0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD4, 0xFE, 0x31, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x9C, 0x14, 0x9F, 0x6A, 0x69, 0x05, +0xCF, 0xFF, 0xD5, 0xFE, 0x31, 0xE8, 0xA9, 0x42, 0x0E, 0xFC, 0xD3, 0x80, 0x03, 0xA0, 0xAB, 0x54, +0xD9, 0x3C, 0xC4, 0x41, 0x49, 0xED, 0x4E, 0x09, 0xEA, 0x69, 0xF4, 0x55, 0xA8, 0x22, 0x79, 0x89, +0xED, 0x62, 0x0D, 0x32, 0x7C, 0xB9, 0x00, 0x82, 0x6B, 0xBC, 0xAE, 0x46, 0xDE, 0x3D, 0x88, 0xB9, +0x1F, 0x31, 0x20, 0x9A, 0xEB, 0xAB, 0x29, 0xBD, 0x74, 0x21, 0xB0, 0xA2, 0x8A, 0x2A, 0x40, 0x28, +0xA2, 0x8A, 0x00, 0xFF, 0xD6, 0xFE, 0x44, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD7, 0xFE, 0x44, +0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0xD7, 0x75, 0x41, 0x96, 0x38, 0xA0, 0x0F, 0xFF, 0xD0, 0xFE, 0x44, 0x6A, 0xB4, +0xB7, 0x01, 0x7E, 0x54, 0xC3, 0x37, 0xAF, 0x6A, 0xAF, 0x24, 0xED, 0x26, 0x40, 0xF9, 0x57, 0xD2, +0xA0, 0xA4, 0x60, 0x29, 0x25, 0x89, 0x24, 0xE4, 0xD2, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, +0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x7F, 0xFF, 0xD1, 0xFE, 0x3A, 0x6F, 0xDB, 0xE5, +0x8D, 0x7D, 0xC9, 0xAC, 0xCA, 0xBD, 0x7C, 0xD9, 0x95, 0x47, 0xA2, 0xD5, 0x1A, 0xDE, 0x1B, 0x18, +0xA0, 0xA2, 0x8A, 0x2A, 0x86, 0x14, 0x51, 0x45, 0x00, 0x31, 0x86, 0x3A, 0x74, 0xA6, 0xD4, 0xA4, +0x66, 0xA3, 0xE9, 0x58, 0x4E, 0x36, 0x25, 0x89, 0x45, 0x14, 0x54, 0x01, 0xFF, 0xD2, 0xFE, 0x34, +0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD3, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, +0x50, 0x01, 0x4C, 0xA7, 0x1A, 0x6D, 0x6F, 0x4D, 0x68, 0x34, 0x14, 0x51, 0x45, 0x58, 0xC2, 0x8A, +0x28, 0xA0, 0x0F, 0xFF, 0xD4, 0xFE, 0x33, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD5, 0xFE, +0x33, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD6, 0xFE, 0x33, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, +0x0A, 0x78, 0x76, 0x1D, 0xE9, 0x94, 0x50, 0xD0, 0x13, 0x89, 0x07, 0x71, 0x8A, 0x78, 0x20, 0xF4, +0x39, 0xAA, 0xB4, 0xB5, 0x0E, 0x9A, 0xE8, 0x2B, 0x17, 0xC7, 0x38, 0xA5, 0xAA, 0xD1, 0x39, 0xDD, +0xB4, 0x9E, 0xB5, 0x6B, 0x15, 0x9C, 0xA4, 0x5A, 0xD3, 0x71, 0x28, 0xA2, 0x8A, 0x92, 0xCF, 0xFF, +0xD7, 0xFE, 0x4B, 0x5A, 0x41, 0xFC, 0x3C, 0xD4, 0x65, 0xD8, 0xF7, 0xA6, 0x51, 0x5B, 0xA8, 0x23, +0x1B, 0x05, 0x14, 0x51, 0x54, 0x30, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xAA, 0xD7, +0x17, 0x49, 0x00, 0xC7, 0xDE, 0x93, 0xB2, 0xD4, 0x57, 0x57, 0x62, 0x2C, 0xC7, 0x19, 0x06, 0x5F, +0xFD, 0x06, 0xB1, 0xD9, 0x99, 0x98, 0xB3, 0x12, 0xCC, 0x4E, 0x49, 0x34, 0x01, 0xFF, 0xD0, 0xFE, +0x40, 0xA4, 0x91, 0xE5, 0x62, 0xEE, 0xC4, 0x9F, 0xE5, 0x51, 0xD1, 0x45, 0x74, 0x99, 0x05, 0x14, +0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x23, 0x7D, 0xD6, 0xFA, 0x1A, 0x5A, 0x46, 0xFB, 0xAD, +0xF4, 0xA0, 0x0C, 0x9A, 0x28, 0xA2, 0xB9, 0x8D, 0x4F, 0xFF, 0xD1, 0xFE, 0x39, 0xEA, 0x44, 0x3D, +0x8D, 0x47, 0x47, 0x4E, 0x69, 0xA7, 0x61, 0x34, 0x4F, 0x45, 0x00, 0xE4, 0x66, 0x8A, 0xE8, 0x33, +0x0A, 0x28, 0xA2, 0x80, 0x16, 0x8A, 0x4A, 0x5A, 0xCA, 0x50, 0xEC, 0x5A, 0x90, 0x51, 0x45, 0x15, +0x99, 0x47, 0xFF, 0xD2, 0xFE, 0x3B, 0xE9, 0x92, 0x20, 0x74, 0x64, 0x3D, 0xE9, 0xF4, 0x50, 0x06, +0x39, 0x18, 0x24, 0x1E, 0xB4, 0x95, 0x6A, 0xE5, 0x36, 0xBE, 0xF1, 0xD0, 0xFF, 0x00, 0x3A, 0xAB, +0x5D, 0x09, 0xDC, 0xC9, 0xA0, 0xA2, 0x8A, 0x29, 0x80, 0x51, 0x45, 0x32, 0x46, 0xDA, 0xBE, 0xE7, +0x8A, 0x1B, 0x02, 0xB4, 0x8D, 0xB9, 0x89, 0xED, 0x4C, 0xA2, 0x8A, 0xE7, 0x6C, 0xD4, 0xFF, 0xD3, +0xFE, 0x31, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD4, 0xFE, 0x31, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA5, +0xDA, 0x4F, 0x6A, 0x78, 0x4F, 0x53, 0x4D, 0x45, 0xB1, 0x5C, 0x8E, 0x94, 0x02, 0x7A, 0x54, 0xA1, +0x40, 0xED, 0x4B, 0x56, 0xA9, 0x8B, 0x98, 0x8C, 0x21, 0xEF, 0xC5, 0x38, 0x20, 0x1E, 0xF4, 0xEA, +0x2A, 0xD4, 0x11, 0x2E, 0x41, 0xD3, 0xA5, 0x14, 0x51, 0x54, 0x23, 0xFF, 0xD5, 0xFE, 0x33, 0xA8, +0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x9A, 0x18, 0xFC, 0xC9, 0x00, 0xFE, 0x11, 0xC9, 0xA8, 0x6B, 0x4E, +0xDA, 0x3D, 0x91, 0xEE, 0x3D, 0x5B, 0x9A, 0x99, 0xBB, 0x21, 0x32, 0xC7, 0x71, 0xF5, 0x15, 0xD4, +0x57, 0x2F, 0xDC, 0x7D, 0x45, 0x75, 0x15, 0xCE, 0x20, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, +0x03, 0xFF, 0xD6, 0xFE, 0x44, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, +0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD7, 0xFE, 0x44, 0x68, 0xA2, +0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x35, 0xDD, 0x63, 0x19, +0x63, 0x8F, 0xEB, 0x54, 0x25, 0x9D, 0xA4, 0xE0, 0x7C, 0xAB, 0xE9, 0xEB, 0x40, 0x16, 0x25, 0xB8, +0x0B, 0xC2, 0x61, 0x9B, 0xF4, 0x15, 0x49, 0x99, 0x98, 0xE5, 0x89, 0x26, 0x9B, 0x45, 0x00, 0x7F, +0xFF, 0xD0, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD1, 0xFE, 0x37, 0xAE, 0x5B, 0x74, +0xF2, 0x1F, 0x7C, 0x55, 0x7A, 0x73, 0x12, 0xCC, 0xCC, 0x4E, 0x72, 0x49, 0xA6, 0xD7, 0x4A, 0x46, +0x41, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x48, 0xC3, 0x8C, 0xF7, 0xA5, 0xA2, 0x86, +0xAE, 0x04, 0x54, 0x53, 0x98, 0x77, 0xA6, 0xD7, 0x33, 0x56, 0x24, 0xFF, 0xD2, 0xFE, 0x34, 0x68, +0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x07, 0xFF, 0xD3, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x41, 0x38, 0xA2, +0x9B, 0x57, 0x08, 0xDC, 0x10, 0x94, 0x51, 0x45, 0x6E, 0x50, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, +0x14, 0x01, 0xFF, 0xD4, 0xFE, 0x33, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, +0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD5, 0xFE, 0x33, +0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, +0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD6, 0xFE, 0x33, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, +0x28, 0xA5, 0xA4, 0xDD, 0x81, 0x20, 0xA2, 0x8A, 0x2B, 0x19, 0x4E, 0xE6, 0x89, 0x0A, 0x09, 0x04, +0x11, 0xD6, 0xB4, 0x01, 0xC8, 0x04, 0x56, 0x75, 0x5C, 0x81, 0xB2, 0x98, 0xF4, 0xA8, 0x64, 0xCD, +0x13, 0x75, 0xA4, 0xC5, 0x2D, 0x14, 0x10, 0x99, 0xFF, 0xD7, 0xFE, 0x49, 0xA8, 0xA2, 0x8A, 0xE9, +0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA0, 0x90, 0x01, 0x24, 0xE0, 0x50, 0x01, 0x59, 0xB7, +0x57, 0xA0, 0x66, 0x38, 0x0E, 0x4F, 0x76, 0xF4, 0xFA, 0x54, 0x37, 0x57, 0xA6, 0x4C, 0xC7, 0x09, +0x22, 0x3E, 0xE7, 0xB9, 0xAC, 0xFA, 0x00, 0x5A, 0x4A, 0x28, 0xA0, 0x0F, 0xFF, 0xD0, 0xFE, 0x3F, +0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, +0x80, 0x32, 0x0F, 0x04, 0x8A, 0x29, 0xCD, 0xC3, 0x30, 0xF7, 0xA6, 0xD7, 0x31, 0xA9, 0xFF, 0xD1, +0xFE, 0x39, 0xE8, 0xA2, 0x8A, 0x00, 0x7A, 0x1C, 0x1C, 0x76, 0xA9, 0x2A, 0x0A, 0x95, 0x4E, 0x45, +0x6B, 0x4E, 0x5D, 0x08, 0x92, 0xEA, 0x3A, 0x8A, 0x28, 0xAD, 0x09, 0x0A, 0x28, 0xA2, 0x80, 0x16, +0x8A, 0x4A, 0x5A, 0x89, 0x42, 0xE3, 0x4C, 0xFF, 0xD2, 0xFE, 0x3B, 0xE8, 0xA2, 0x8A, 0x6D, 0x01, +0x14, 0xC9, 0xE6, 0x21, 0x03, 0xEF, 0x75, 0x15, 0x97, 0x5B, 0x35, 0x9B, 0x3A, 0x6C, 0x90, 0xE3, +0x1B, 0x4F, 0x22, 0xB4, 0xA6, 0xFA, 0x11, 0x24, 0x41, 0x45, 0x14, 0x56, 0x84, 0x85, 0x54, 0x95, +0xB7, 0x37, 0xB0, 0xAB, 0x12, 0x36, 0xD5, 0x27, 0xBF, 0x6A, 0xA7, 0x59, 0xD4, 0x7D, 0x0A, 0x8A, +0x0A, 0x28, 0xA2, 0xB2, 0x2C, 0xFF, 0xD3, 0xFE, 0x31, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8E, 0xBD, 0x28, 0x00, 0xA2, 0x9C, 0x10, 0xFD, 0x29, 0xE1, 0x07, 0x7E, 0x6A, +0x94, 0x18, 0xB9, 0x88, 0xA9, 0xC1, 0x49, 0xF6, 0xA9, 0x70, 0x3D, 0x28, 0xAB, 0x54, 0xC9, 0x72, +0x3F, 0xFF, 0xD4, 0xFE, 0x32, 0xC2, 0x7A, 0x9A, 0x70, 0x50, 0x3B, 0x52, 0xD1, 0x5D, 0x0A, 0x28, +0xCD, 0xB0, 0xA2, 0x8A, 0x29, 0x88, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0xFF, 0xD5, 0xFE, 0x33, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x25, 0x85, 0x3C, 0xC9, 0x15, +0x7B, 0x75, 0x3F, 0x4A, 0xD6, 0xAA, 0xD6, 0xB1, 0xED, 0x4D, 0xE7, 0xA9, 0xFE, 0x55, 0x66, 0xB0, +0xA8, 0xF5, 0x25, 0x87, 0x71, 0xF5, 0x15, 0xD4, 0x57, 0x2F, 0xDC, 0x7D, 0x45, 0x75, 0x15, 0x00, +0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x7F, 0xFF, 0xD6, 0xFE, 0x44, 0x68, 0xA2, 0x8A, +0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, +0x50, 0x07, 0xFF, 0xD7, 0xFE, 0x44, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0xD7, 0x75, 0x8C, +0x6E, 0x63, 0x81, 0x40, 0x0E, 0xAA, 0xF2, 0x5C, 0x2A, 0x65, 0x53, 0x0C, 0xDF, 0xA0, 0xAA, 0xD2, +0x4E, 0xCF, 0x90, 0x3E, 0x55, 0xA8, 0x28, 0x01, 0xCC, 0xC5, 0x89, 0x66, 0x24, 0x9A, 0x6D, 0x14, +0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD0, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x51, 0xCC, 0x76, 0xC5, 0x21, +0xF6, 0x35, 0x25, 0x56, 0xBC, 0x6C, 0x40, 0xDC, 0xF5, 0x20, 0x53, 0x8E, 0xE0, 0x7F, 0xFF, 0xD1, +0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, +0x28, 0xA2, 0x80, 0x02, 0x33, 0xC1, 0xA8, 0xC8, 0xC1, 0xA9, 0x28, 0x23, 0x23, 0xDE, 0xA2, 0x71, +0xB8, 0x99, 0xFF, 0xD2, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD3, 0xFE, 0x34, 0x68, +0xA2, 0x82, 0x69, 0x24, 0x60, 0x21, 0x3D, 0xA9, 0xB4, 0x51, 0x5D, 0x31, 0x56, 0x18, 0x51, 0x45, +0x14, 0xC6, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x7F, 0xFF, 0xD4, 0xFE, 0x33, 0xA8, +0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD5, 0xFE, 0x33, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, +0xD6, 0xFE, 0x33, 0xA9, 0x68, 0xA2, 0xB6, 0x94, 0xEC, 0x66, 0xA2, 0x14, 0x51, 0x45, 0x64, 0xD9, +0xA0, 0x51, 0x45, 0x14, 0x80, 0x2A, 0x68, 0x1B, 0x0F, 0x8E, 0xC6, 0xA1, 0xA3, 0xA7, 0x34, 0x09, +0xA3, 0x4A, 0x8A, 0x40, 0x43, 0x00, 0x47, 0x4A, 0x5A, 0x46, 0x27, 0xFF, 0xD7, 0xFE, 0x49, 0xA8, +0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA8, 0xE6, 0x99, 0x21, 0x42, 0xEE, 0x78, 0xF4, 0xEE, 0x68, +0x01, 0xCE, 0xEB, 0x1A, 0x97, 0x76, 0x0A, 0xA2, 0xB1, 0x6E, 0x6E, 0xDA, 0x73, 0xB5, 0x72, 0x91, +0x7A, 0x7A, 0xFD, 0x6A, 0x39, 0xEE, 0x1E, 0x76, 0xCB, 0x70, 0xA3, 0xA0, 0xF4, 0xAA, 0xF4, 0x00, +0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD0, 0xFE, 0x3F, 0xA8, 0xA2, 0x8A, 0xE9, +0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x32, 0xE4, 0x18, +0x91, 0xC7, 0xBD, 0x32, 0xA4, 0x9B, 0x89, 0x5F, 0xEB, 0x51, 0xD7, 0x33, 0x34, 0x5B, 0x1F, 0xFF, +0xD1, 0xFE, 0x39, 0xE8, 0xA2, 0x8A, 0x00, 0x29, 0x41, 0xC1, 0xCD, 0x25, 0x14, 0x01, 0x3D, 0x14, +0xC4, 0x3D, 0xA9, 0xF5, 0xD0, 0x9D, 0xCC, 0x9A, 0x0A, 0x28, 0xA2, 0x98, 0x05, 0x14, 0x51, 0x40, +0x1F, 0xFF, 0xD2, 0xFE, 0x3B, 0xA9, 0x69, 0x28, 0xAE, 0x86, 0xAE, 0x64, 0x98, 0xB5, 0x05, 0xC2, +0x6E, 0x8F, 0x23, 0xA8, 0xE6, 0xA7, 0xA2, 0xB1, 0x6A, 0xCC, 0xD2, 0xF7, 0x31, 0xA8, 0xA9, 0x65, +0x4F, 0x2D, 0xC8, 0xED, 0xD4, 0x54, 0x0E, 0xDB, 0x54, 0x9A, 0xDE, 0xFD, 0x4C, 0xC8, 0x26, 0x6C, +0xB6, 0xDE, 0xC2, 0xA1, 0xA2, 0x8A, 0xE7, 0x6C, 0xD1, 0x20, 0xA2, 0x8A, 0x50, 0xA4, 0xF6, 0xA5, +0x61, 0x9F, 0xFF, 0xD3, 0xFE, 0x31, 0xE8, 0xA9, 0x02, 0x7A, 0x9A, 0x70, 0x50, 0x2A, 0xD4, 0x19, +0x3C, 0xC4, 0x41, 0x49, 0xE8, 0x29, 0xC1, 0x0F, 0x7E, 0x2A, 0x4A, 0x2A, 0x95, 0x31, 0x73, 0x0D, +0x08, 0x3E, 0xB4, 0xEA, 0x28, 0xAD, 0x12, 0x26, 0xE1, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x07, 0xFF, 0xD4, 0xFE, 0x33, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD5, 0xFE, 0x33, 0xAA, +0x48, 0x93, 0xCC, 0x70, 0xBD, 0xBB, 0xD4, 0x75, 0xA3, 0x6B, 0x1E, 0xD5, 0x2E, 0x7A, 0x9E, 0x9F, +0x4A, 0xDE, 0x4E, 0xC8, 0xC4, 0xB5, 0xD3, 0x81, 0xC0, 0xA2, 0x8A, 0x2B, 0x9C, 0x41, 0xDC, 0x7D, +0x45, 0x75, 0x15, 0xCB, 0xF7, 0x1F, 0x51, 0x5D, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, +0x45, 0x00, 0x7F, 0xFF, 0xD6, 0xFE, 0x44, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD7, 0xFE, 0x44, +0x68, 0xA6, 0xBB, 0xAA, 0x0D, 0xCC, 0x70, 0x2A, 0x8C, 0x93, 0xB3, 0xE4, 0x2E, 0x55, 0x69, 0x18, +0x13, 0xCB, 0x70, 0xAB, 0x95, 0x4F, 0x99, 0xBF, 0x95, 0x52, 0x66, 0x66, 0x39, 0x62, 0x49, 0xA6, +0xD1, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x1F, 0xFF, +0xD0, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x54, 0x2F, 0xCE, 0x12, 0x35, 0xF5, 0x35, 0x7E, 0xB2, 0xAF, 0xCE, 0x64, +0x45, 0xF4, 0x15, 0x50, 0x5A, 0x82, 0x3F, 0xFF, 0xD1, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, +0x3F, 0xFF, 0xD2, 0xFE, 0x35, 0x18, 0x77, 0xA6, 0x54, 0xB5, 0x19, 0x18, 0x35, 0x75, 0x23, 0xD4, +0xC5, 0x89, 0x45, 0x14, 0x56, 0x62, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, +0xA2, 0x80, 0x3F, 0xFF, 0xD3, 0xFE, 0x34, 0x69, 0xA6, 0x94, 0x9E, 0xD4, 0xDA, 0xD6, 0x9C, 0x7A, +0x98, 0xA0, 0xA2, 0x8A, 0x2B, 0x41, 0x85, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, +0x51, 0x40, 0x1F, 0xFF, 0xD4, 0xFE, 0x33, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD5, 0xFE, +0x33, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, +0xA5, 0xA2, 0xE0, 0x25, 0x2D, 0x14, 0x56, 0x52, 0x9F, 0x62, 0xD4, 0x4F, 0xFF, 0xD6, 0xFE, 0x33, +0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0xB7, 0x03, 0x65, 0x4A, 0xFA, 0x54, 0xF5, 0x4A, 0x16, 0xDA, 0xE3, 0xD0, 0xF1, 0x57, 0x69, 0x19, +0x49, 0x6A, 0x7F, 0xFF, 0xD7, 0xFE, 0x49, 0xA8, 0xA2, 0xAA, 0x5C, 0xDD, 0xA4, 0x20, 0xA2, 0x90, +0xD3, 0x7A, 0x7A, 0x7D, 0x6B, 0xA4, 0xC8, 0x92, 0x7B, 0x84, 0x81, 0x72, 0xDC, 0xB1, 0xE8, 0x3D, +0x6B, 0x0E, 0x59, 0x5E, 0x67, 0x2E, 0xE7, 0x27, 0xB0, 0xEC, 0x29, 0x8C, 0xCC, 0xEC, 0x5D, 0xC9, +0x66, 0x34, 0xDA, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0xFF, 0xD0, 0xFE, 0x3F, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, +0x80, 0x0A, 0x28, 0xA2, 0x80, 0x33, 0x66, 0xFF, 0x00, 0x5A, 0xF5, 0x15, 0x4F, 0x71, 0xFE, 0xB4, +0xFE, 0x15, 0x05, 0x73, 0xCB, 0x73, 0x44, 0x7F, 0xFF, 0xD1, 0xFE, 0x39, 0xE8, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x2A, 0x60, 0x72, 0x33, 0x50, 0xD3, 0x94, 0xE0, 0xFB, 0x55, 0x42, 0x56, +0x14, 0x91, 0x2D, 0x14, 0x51, 0x5B, 0x99, 0x85, 0x14, 0x51, 0x40, 0x1F, 0xFF, 0xD2, 0xFE, 0x3B, +0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x5A, 0x4A, 0x28, 0x02, 0xBD, 0xD2, 0x6E, 0x45, 0x61, 0xD4, +0x7F, 0x2A, 0xC7, 0x99, 0xB2, 0xC1, 0x47, 0x6A, 0xE8, 0x42, 0xEE, 0xF9, 0x4F, 0x4E, 0xF5, 0x09, +0xB0, 0xB7, 0x3D, 0x03, 0xAF, 0xE3, 0x52, 0xE3, 0xA5, 0x87, 0x7D, 0x6E, 0x73, 0xE1, 0x49, 0xF6, +0xA7, 0x04, 0x1D, 0xCE, 0x6B, 0x68, 0xE9, 0xB1, 0xF6, 0x91, 0xC5, 0x33, 0xFB, 0x37, 0xD2, 0x6F, +0xCD, 0x69, 0x28, 0x20, 0xE6, 0x32, 0xC0, 0x03, 0xA0, 0xA2, 0xB4, 0x4E, 0x9D, 0x2F, 0x67, 0x43, +0x51, 0x9B, 0x0B, 0x80, 0x0E, 0x02, 0x1F, 0xC6, 0xAE, 0xC2, 0x3F, 0xFF, 0xD3, 0xFE, 0x33, 0xA8, +0xAB, 0x46, 0xCE, 0xE4, 0x7F, 0xCB, 0x3C, 0xFD, 0x08, 0xA6, 0x1B, 0x6B, 0x85, 0xEB, 0x0C, 0x9F, +0x95, 0x74, 0x99, 0x10, 0x51, 0x4F, 0x31, 0xC8, 0x3A, 0xA3, 0x8F, 0xC2, 0x9B, 0x8C, 0x75, 0xA0, +0x04, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD4, 0xFE, +0x33, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD5, 0xFE, 0x34, 0xA3, 0x43, 0x23, 0xAA, 0x8F, +0xC7, 0xDA, 0xB5, 0xC0, 0xC0, 0x00, 0x74, 0xAA, 0x96, 0x89, 0x85, 0x2E, 0x47, 0x27, 0xA7, 0xD2, +0xAD, 0xD5, 0x54, 0x7A, 0x98, 0x30, 0xA2, 0x8A, 0x2A, 0x00, 0x3B, 0x8F, 0xA8, 0xAE, 0xA2, 0xB9, +0x7E, 0xE3, 0xEA, 0x2B, 0xA8, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x0F, 0xFF, +0xD6, 0xFE, 0x44, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0xD6, 0x75, 0x41, 0x96, 0x38, 0x14, 0x00, 0xEA, 0xAF, 0x2D, 0xC2, 0xA6, 0x55, 0x7E, +0x66, 0xFE, 0x55, 0x5E, 0x59, 0xD9, 0xF8, 0x5F, 0x95, 0x7F, 0x9D, 0x57, 0xA0, 0x0F, 0xFF, 0xD7, +0xFE, 0x3E, 0xD9, 0x99, 0xCE, 0x58, 0xE4, 0xD3, 0x68, 0xA2, 0x91, 0x80, 0x51, 0x45, 0x14, 0x00, +0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD0, 0xFE, 0x3E, +0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x01, 0x58, 0xB7, 0x4D, 0xBA, 0x79, 0x0F, 0xA7, 0x15, 0xB5, 0x5C, 0xFB, 0x9D, 0xCE, 0xED, 0xEA, +0x49, 0xAD, 0x29, 0x21, 0xA3, 0xFF, 0xD1, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, +0xD2, 0xFE, 0x35, 0xA8, 0x23, 0x22, 0x8A, 0x2B, 0xA4, 0xC8, 0x8E, 0x92, 0x9E, 0xC3, 0xBD, 0x32, +0xB9, 0xA5, 0x1B, 0x32, 0x42, 0x8A, 0x28, 0xA4, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x86, +0x9C, 0x63, 0x76, 0x07, 0xFF, 0xD3, 0xFE, 0x33, 0xE9, 0x28, 0xA2, 0xBA, 0x4C, 0x82, 0x8A, 0x28, +0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD4, +0xFE, 0x33, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, +0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD5, 0xFE, 0x33, 0xA8, 0xA2, 0x8A, 0xE9, +0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x29, 0x68, 0xA9, 0x94, 0xAC, 0x34, 0x82, 0x8A, 0x28, 0xAC, +0x5B, 0xB9, 0x69, 0x05, 0x14, 0x51, 0x48, 0x67, 0xFF, 0xD6, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x3A, 0x73, 0x5A, 0x2A, +0x72, 0x01, 0xAC, 0xEA, 0xB7, 0x6E, 0xD9, 0x52, 0xBE, 0x94, 0x99, 0x13, 0x47, 0xFF, 0xD7, 0xFE, +0x45, 0xAE, 0xAF, 0x3C, 0xBD, 0xD1, 0x44, 0x41, 0x7E, 0x84, 0xFF, 0x00, 0x76, 0xB2, 0x09, 0x24, +0x92, 0x49, 0x26, 0xA8, 0x5B, 0xDD, 0x83, 0x84, 0x94, 0xE0, 0xF6, 0x6F, 0x5A, 0xBD, 0x5D, 0x26, +0x41, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x07, 0xFF, 0xD0, 0xFE, 0x3F, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x28, 0x5C, 0xFF, 0x00, 0xAC, 0xFC, 0x2A, 0xBD, 0x59, 0xBA, +0x1F, 0x3A, 0x9F, 0x6A, 0xAD, 0x5C, 0xF2, 0xDC, 0xD1, 0x6C, 0x7F, 0xFF, 0xD1, 0xFE, 0x39, 0xE8, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x95, 0x0E, 0x46, 0x3D, 0x29, +0xD5, 0x08, 0x38, 0x39, 0xA9, 0x81, 0xCF, 0x22, 0xB6, 0x83, 0xD0, 0xCE, 0x48, 0x28, 0xA2, 0x8A, +0xB1, 0x1F, 0xFF, 0xD2, 0xFE, 0x3B, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA5, 0x1C, 0xF1, +0x40, 0x12, 0x20, 0xE3, 0x34, 0xFA, 0x07, 0x1C, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, +0x51, 0x40, 0x1F, 0xFF, 0xD3, 0xFE, 0x3D, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x08, 0x07, 0xA8, +0x06, 0x8A, 0x28, 0x01, 0x8D, 0x14, 0x4D, 0xF7, 0xA3, 0x8C, 0xFE, 0x15, 0x19, 0xB5, 0xB7, 0x3D, +0x62, 0x4A, 0x9E, 0x8A, 0x00, 0xAA, 0x6C, 0xAD, 0x8F, 0xF0, 0x11, 0xF4, 0x35, 0x19, 0xD3, 0xE0, +0x3D, 0x0C, 0x83, 0xF1, 0xAB, 0xD4, 0x50, 0x06, 0x71, 0xD3, 0xA3, 0xED, 0x23, 0x8F, 0xC2, 0xA3, +0x3A, 0x69, 0xED, 0x28, 0xC7, 0xD2, 0xB5, 0x68, 0xA0, 0x0F, 0xFF, 0xD4, 0xFE, 0x37, 0x8E, 0x9D, +0x2F, 0x67, 0x8C, 0xD4, 0x66, 0xC6, 0xE4, 0x1F, 0xBA, 0x84, 0x7D, 0x6B, 0x72, 0x8A, 0xE9, 0x32, +0x30, 0x3E, 0xC7, 0x72, 0x3F, 0xE5, 0x93, 0x7E, 0x62, 0x98, 0x6D, 0xE7, 0x1D, 0x62, 0x93, 0xF2, +0xAE, 0x8A, 0x8A, 0x00, 0xE6, 0x8A, 0x38, 0xEA, 0x8C, 0x3F, 0x0A, 0x65, 0x75, 0x14, 0x10, 0x0E, +0x72, 0x01, 0xFC, 0x28, 0x03, 0x97, 0xA2, 0xBA, 0x43, 0x0C, 0x27, 0xAC, 0x51, 0x9F, 0xC2, 0xA3, +0x36, 0x96, 0xE7, 0xFE, 0x59, 0x2D, 0x00, 0x73, 0xF4, 0xF8, 0xD0, 0xC8, 0xEA, 0xA3, 0xBD, 0x6D, +0x1B, 0x1B, 0x63, 0x9F, 0x91, 0x87, 0xD0, 0xD5, 0x98, 0xF4, 0xA0, 0xB0, 0x34, 0xF1, 0x6F, 0x32, +0x76, 0x52, 0x7A, 0x8E, 0xF5, 0x32, 0x76, 0x42, 0x3F, 0xFF, 0xD5, 0xFE, 0x3A, 0x00, 0x00, 0x00, +0x38, 0x02, 0x96, 0x8A, 0x29, 0x18, 0x05, 0x14, 0x51, 0x40, 0x07, 0x71, 0xF5, 0x15, 0xD4, 0x57, +0x2F, 0xDC, 0x7D, 0x45, 0x75, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x01, 0xFF, +0xD6, 0xFE, 0x44, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x35, 0x99, 0x50, +0x65, 0x8E, 0x05, 0x51, 0x96, 0x76, 0x7C, 0xAA, 0xFC, 0xA9, 0xFC, 0xE8, 0x02, 0xC4, 0xB7, 0x0A, +0x99, 0x0B, 0xF3, 0x37, 0xE8, 0x2A, 0x8B, 0x33, 0x39, 0xCB, 0x12, 0x4D, 0x36, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0xFF, 0xD7, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD0, 0xFE, 0x3E, +0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x03, 0x24, 0x6D, 0xB1, 0xBB, 0x67, 0x18, 0x15, 0xCF, 0xD6, 0xDD, 0xDB, 0x05, 0xB7, 0x7E, 0x79, +0x38, 0x15, 0x89, 0x5B, 0x52, 0x43, 0x47, 0xFF, 0xD1, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, +0x3F, 0xFF, 0xD2, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x63, 0x0C, 0x74, 0xE9, 0x4F, +0xA0, 0x8C, 0xD4, 0xCE, 0x37, 0x11, 0x15, 0x14, 0xBD, 0x29, 0x2B, 0x9C, 0x41, 0x45, 0x14, 0x50, +0x00, 0x4E, 0x29, 0x94, 0xA4, 0xD2, 0x57, 0x44, 0x23, 0x64, 0x34, 0x7F, 0xFF, 0xD3, 0xFE, 0x33, +0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, +0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD4, 0xFE, 0x33, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, +0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, +0xFF, 0xD5, 0xFE, 0x33, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x5A, 0x28, 0xAC, 0xE5, 0x3E, 0xC5, +0x28, 0x85, 0x14, 0x51, 0x59, 0x16, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x7F, 0xFF, +0xD6, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0x2A, 0x48, 0x9B, 0x6B, 0x8F, 0x43, 0x51, 0xD1, 0x40, 0x33, 0xFF, 0xD7, 0xFE, +0x37, 0xAA, 0xE5, 0xBD, 0xD1, 0x8F, 0x0B, 0x21, 0x2C, 0x9F, 0xA8, 0xAA, 0x74, 0x57, 0x49, 0x91, +0xD0, 0x02, 0x18, 0x02, 0xA4, 0x30, 0xF5, 0x14, 0x56, 0x34, 0x33, 0xBC, 0x27, 0x8F, 0x99, 0x3B, +0x8A, 0xD6, 0x8E, 0x45, 0x91, 0x43, 0x29, 0xC8, 0xFE, 0x54, 0x00, 0xFA, 0x28, 0xA2, 0x80, 0x0A, +0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD0, 0xFE, 0x3F, 0xA8, 0xA2, 0x8A, 0xE9, +0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x29, 0xDD, 0x7D, +0xE4, 0x3E, 0xD5, 0x52, 0xAD, 0xDD, 0x0F, 0xB8, 0x7E, 0xB5, 0x52, 0xB0, 0x9E, 0xE6, 0x91, 0xD8, +0xFF, 0xD1, 0xFE, 0x39, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x29, 0xE8, 0x7B, 0x53, 0x28, 0xA6, 0x9D, 0x84, 0xD1, 0x3D, 0x14, 0x80, 0xE4, 0x52, 0xD7, 0x42, +0x66, 0x67, 0xFF, 0xD2, 0xFE, 0x3B, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x91, 0x07, 0x39, 0xA8, +0xEA, 0x75, 0x18, 0x14, 0x00, 0xB4, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, +0x00, 0x7F, 0xFF, 0xD3, 0xFE, 0x3D, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, +0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD4, 0xFE, 0x3D, +0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, +0x80, 0x25, 0x86, 0x33, 0x2C, 0x8A, 0x83, 0xF1, 0xF6, 0x15, 0xBC, 0x00, 0x00, 0x00, 0x30, 0x05, +0x53, 0xB3, 0x8B, 0x64, 0x7B, 0xC8, 0xF9, 0x9B, 0xF4, 0x15, 0x72, 0xB0, 0x9C, 0xAE, 0xC9, 0x67, +0xFF, 0xD5, 0xFE, 0x3F, 0x75, 0x0B, 0x4F, 0x2C, 0x99, 0xE3, 0x53, 0xB0, 0x9F, 0x98, 0x0E, 0xC7, +0xD6, 0xB2, 0xEB, 0xAF, 0x65, 0x56, 0x05, 0x58, 0x06, 0x53, 0xC1, 0x1E, 0xB5, 0xCD, 0x5D, 0xDB, +0x1B, 0x69, 0x08, 0xE4, 0xC6, 0x79, 0x53, 0xFD, 0x29, 0x18, 0x15, 0x68, 0xA2, 0x8A, 0x00, 0x3B, +0x8F, 0xA8, 0xAE, 0xA2, 0xB9, 0x7E, 0xE3, 0xEA, 0x2B, 0xA8, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, +0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD6, 0xFE, 0x44, 0x68, 0xA2, 0x9A, 0xEE, 0xA8, 0x37, 0x31, 0xC0, +0xA4, 0x60, 0x3A, 0xAB, 0xCB, 0x70, 0xA9, 0x95, 0x5F, 0x99, 0xBF, 0x41, 0x50, 0x49, 0x70, 0xCF, +0x90, 0xBF, 0x2A, 0xFE, 0xA6, 0xAB, 0x50, 0x03, 0x99, 0xD9, 0xCE, 0x58, 0xE4, 0xD3, 0x68, 0xA2, +0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD7, 0xFE, 0x3E, 0x68, 0xA2, +0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, +0x14, 0x50, 0x07, 0xFF, 0xD0, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x05, 0x1B, 0xF3, 0xFB, 0xB4, 0x5F, 0x53, 0x59, 0x55, +0x7E, 0xFC, 0xFE, 0xF1, 0x17, 0xB8, 0x19, 0xAA, 0x15, 0xD1, 0x05, 0xA0, 0xD1, 0xFF, 0xD1, 0xFE, +0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD2, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, +0x0A, 0x28, 0xA2, 0x80, 0x11, 0x87, 0x19, 0xEF, 0x51, 0xD4, 0xB4, 0xC6, 0x1D, 0xEB, 0x2A, 0x91, +0xEA, 0x26, 0x36, 0x90, 0x9E, 0xD4, 0xB4, 0xCA, 0x54, 0xE3, 0xD4, 0x48, 0x28, 0xA2, 0x8A, 0xD8, +0xA3, 0xFF, 0xD3, 0xFE, 0x33, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD4, 0xFE, 0x33, 0xA8, +0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0x28, 0xA5, 0xA4, 0xDD, 0x81, 0x23, 0xFF, 0xD5, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0xA9, 0x4E, +0xE2, 0x48, 0x28, 0xA2, 0x8A, 0x91, 0x85, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, +0x51, 0x40, 0x1F, 0xFF, 0xD6, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD7, 0xFE, 0x37, 0xA8, +0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x92, 0x39, 0x1E, 0x36, 0xDC, 0x87, 0x1F, 0xD6, 0xA3, 0xA2, 0x80, +0x36, 0x61, 0x9D, 0x66, 0x1E, 0x8F, 0xDC, 0x54, 0xF5, 0x80, 0x09, 0x52, 0x0A, 0x92, 0x08, 0xAD, +0x38, 0x2E, 0x83, 0xE1, 0x24, 0xC2, 0xBF, 0xAF, 0xAD, 0x00, 0x5C, 0xA2, 0x8A, 0x28, 0x00, 0xA2, +0x8A, 0x28, 0x03, 0xFF, 0xD0, 0xFE, 0x3F, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x2A, 0xDD, 0x7D, 0xD4, 0xFA, 0xD5, 0x2A, 0xBD, +0x75, 0xF7, 0x17, 0xEB, 0x54, 0x6B, 0x19, 0xEE, 0x5C, 0x76, 0x3F, 0xFF, 0xD1, 0xFE, 0x39, 0xE8, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x72, +0x9C, 0x1F, 0x6A, 0x96, 0xA0, 0xA9, 0x50, 0xE7, 0x8A, 0xD2, 0x12, 0xE8, 0x4C, 0x91, 0xFF, 0xD2, +0xFE, 0x3B, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x1C, 0xA3, 0x26, 0xA6, 0xA6, 0xA0, 0xC0, 0xCD, 0x3A, +0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD3, +0xFE, 0x3D, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, +0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD4, 0xFE, 0x3D, 0xA8, 0xA2, 0x8A, 0xE9, +0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0xB1, 0x6F, 0x17, 0x9B, 0x20, 0x07, +0xEE, 0x0E, 0x4D, 0x57, 0xAD, 0xBB, 0x68, 0x7C, 0xA8, 0xC6, 0x47, 0xCE, 0x79, 0x35, 0x33, 0x95, +0x90, 0x99, 0x62, 0x8A, 0x28, 0xAE, 0x71, 0x1F, 0xFF, 0xD5, 0xFE, 0x46, 0x6A, 0x19, 0xE1, 0x59, +0xE2, 0x68, 0xD8, 0x73, 0xD8, 0xFA, 0x1A, 0x9A, 0x8A, 0x46, 0x07, 0x27, 0x2C, 0x6D, 0x14, 0x8D, +0x1B, 0x8C, 0x30, 0x3F, 0x9D, 0x47, 0x5D, 0x15, 0xF5, 0xA8, 0x9D, 0x37, 0xA8, 0xFD, 0xEA, 0xF4, +0xFF, 0x00, 0x6B, 0xDA, 0xB9, 0xE2, 0x31, 0xC1, 0xE0, 0xD0, 0x02, 0x77, 0x1F, 0x51, 0x5D, 0x45, +0x72, 0xFD, 0xC7, 0xD4, 0x57, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x8C, 0xCA, 0x83, +0x2C, 0x40, 0x15, 0x46, 0x5B, 0x86, 0x7E, 0x17, 0xE5, 0x5F, 0xD4, 0xD0, 0x07, 0xFF, 0xD6, 0xFE, +0x42, 0xA5, 0xB8, 0x54, 0xE1, 0x7E, 0x66, 0xFD, 0x2A, 0x8B, 0xBB, 0x39, 0xCB, 0x1C, 0x9A, 0x65, +0x14, 0x8C, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, +0x28, 0xA0, 0x0F, 0xFF, 0xD7, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD0, 0xFE, 0x3E, +0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x06, 0x2D, 0xDB, 0x16, 0xB8, 0x7E, 0x78, 0x18, 0x15, 0x5A, 0xA4, 0x95, 0x8B, 0x48, 0xEC, 0x7B, +0x93, 0x51, 0xD7, 0x4C, 0x76, 0x19, 0xFF, 0xD1, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, +0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, +0xFF, 0xD2, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x31, 0x9E, +0x31, 0x9A, 0x7A, 0xA3, 0x39, 0xC0, 0xAB, 0x4A, 0x8A, 0x83, 0xDF, 0xD6, 0x80, 0x28, 0x34, 0x32, +0x03, 0x8C, 0x67, 0xE9, 0x51, 0x10, 0x47, 0x50, 0x45, 0x69, 0x51, 0xD6, 0xB1, 0x55, 0x09, 0xB9, +0x99, 0x45, 0x68, 0x98, 0xD0, 0xF5, 0x51, 0x51, 0x9B, 0x74, 0x3D, 0x09, 0x15, 0x4A, 0xA2, 0x1D, +0xCF, 0xFF, 0xD3, 0xFE, 0x33, 0xA8, 0xAB, 0x46, 0xDF, 0xD1, 0xBF, 0x4A, 0x88, 0xC3, 0x20, 0xED, +0x9F, 0xA5, 0x6E, 0xA6, 0x8C, 0x6E, 0x45, 0x45, 0x38, 0xAB, 0x0E, 0xA0, 0x8A, 0x6D, 0x50, 0xC2, +0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD4, 0xFE, 0x33, +0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x5A, 0x28, +0xA8, 0x94, 0xEC, 0x35, 0x10, 0xA2, 0x8A, 0x2B, 0x26, 0xCD, 0x0F, 0xFF, 0xD5, 0xFE, 0x33, 0xE8, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0xFF, 0xD6, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD7, 0xFE, 0x37, 0xA8, +0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x2F, 0xC1, 0x76, 0x57, +0x09, 0x29, 0x24, 0x76, 0x3E, 0x95, 0xA2, 0x08, 0x23, 0x20, 0xE4, 0x57, 0x3F, 0x56, 0xA0, 0xB9, +0x68, 0x8E, 0xD3, 0xF3, 0x47, 0xE9, 0xE9, 0xF4, 0xA0, 0x0D, 0x6A, 0x29, 0xA8, 0xEA, 0xEA, 0x19, +0x4E, 0x41, 0xA7, 0x50, 0x07, 0xFF, 0xD0, 0xFE, 0x3F, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x20, 0xB9, 0xFF, 0x00, 0x57, 0xF8, +0xD6, 0x7D, 0x68, 0x5C, 0x7F, 0xAA, 0x3F, 0x5A, 0xCF, 0xAC, 0x6A, 0x6E, 0x5C, 0x4F, 0xFF, 0xD1, +0xFE, 0x39, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0x29, 0x41, 0x20, 0xE4, 0x52, 0x51, 0x40, 0x1F, 0xFF, 0xD2, 0xFE, 0x3B, 0x81, 0xC8, +0x06, 0x94, 0x0C, 0x9C, 0x54, 0x48, 0x7B, 0x76, 0xAB, 0x08, 0x3A, 0x9A, 0xE8, 0x8B, 0xBA, 0x33, +0x68, 0x92, 0x8A, 0x28, 0xA6, 0x20, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, +0x28, 0x03, 0xFF, 0xD3, 0xFE, 0x3D, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, +0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD4, 0xFE, 0x3D, +0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA5, 0x00, 0x92, 0x00, 0x19, +0x34, 0x01, 0x6E, 0xCE, 0x2F, 0x32, 0x4D, 0xE7, 0x94, 0x5F, 0xE7, 0x5A, 0xF5, 0x14, 0x11, 0x08, +0xA3, 0x55, 0x1D, 0x7A, 0x9F, 0xAD, 0x4B, 0x5C, 0xF2, 0x77, 0x64, 0x85, 0x14, 0x51, 0x52, 0x07, +0xFF, 0xD5, 0xFE, 0x46, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x58, 0xDA, 0x85, 0xA6, 0x09, 0xB9, 0x8C, +0x71, 0xFC, 0x63, 0xFA, 0xD6, 0xCD, 0x04, 0x02, 0x08, 0x23, 0x22, 0x80, 0x38, 0xFE, 0xE3, 0xEA, +0x2B, 0xA8, 0xAC, 0x4B, 0xBB, 0x5F, 0x22, 0x55, 0xDB, 0x9F, 0x29, 0x8F, 0xCB, 0xED, 0xED, 0x5B, +0x4C, 0xCA, 0x83, 0x2C, 0x40, 0x14, 0x00, 0xB5, 0x04, 0xB3, 0xAA, 0x70, 0x3E, 0x66, 0xFE, 0x55, +0x5E, 0x5B, 0x86, 0x7C, 0xAA, 0x7C, 0xAB, 0xFC, 0xEA, 0xB5, 0x00, 0x3D, 0xDD, 0x9C, 0xEE, 0x63, +0x93, 0x4C, 0xA2, 0x8A, 0x00, 0xFF, 0xD6, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, +0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD7, +0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD0, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x4D, 0x73, 0xB5, 0x1D, 0xBD, 0x01, 0x34, 0xEA, +0xAF, 0x74, 0xDB, 0x60, 0x7F, 0x7E, 0x28, 0x48, 0x0C, 0x4A, 0x28, 0xA2, 0xBA, 0x8A, 0x3F, 0xFF, +0xD1, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD2, 0xFE, 0x35, 0xA8, 0xA2, 0x94, +0x02, 0x4E, 0x00, 0xC9, 0xAE, 0x93, 0x21, 0x2A, 0x64, 0x88, 0xB7, 0x2D, 0x90, 0x3F, 0x9D, 0x4A, +0x91, 0x05, 0xE5, 0xB0, 0x4F, 0xF2, 0xA9, 0x68, 0x00, 0x00, 0x00, 0x00, 0x18, 0x14, 0x87, 0xA1, +0xA5, 0xA6, 0xB7, 0x61, 0x53, 0x37, 0xA0, 0x86, 0x51, 0x45, 0x15, 0xCE, 0x20, 0xA2, 0x8A, 0x28, +0x03, 0xFF, 0xD3, 0xFE, 0x38, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x4D, 0x28, 0x87, 0xAA, 0x83, 0x4E, +0xA2, 0x80, 0x21, 0x30, 0x21, 0xF5, 0x14, 0xC3, 0x6F, 0xE8, 0xDF, 0x9D, 0x59, 0xA2, 0xAB, 0x9D, +0x85, 0xCA, 0x46, 0x09, 0x07, 0x60, 0x6A, 0x32, 0xAC, 0x3A, 0xA9, 0x15, 0xA3, 0x45, 0x52, 0xAA, +0x3B, 0x99, 0x94, 0x56, 0x91, 0x55, 0x3D, 0x40, 0x35, 0x19, 0x82, 0x33, 0xD8, 0x8A, 0xA5, 0x54, +0x2E, 0x7F, 0xFF, 0xD4, 0xFE, 0x33, 0xA8, 0xAB, 0x46, 0xDF, 0xD1, 0xBF, 0x3A, 0x61, 0x81, 0xC7, +0x4C, 0x35, 0x6E, 0xA6, 0x8C, 0x6E, 0x41, 0x45, 0x3C, 0xA3, 0x8E, 0xAA, 0x69, 0xB4, 0xEE, 0x86, +0x25, 0x2D, 0x14, 0x56, 0x72, 0x9F, 0x62, 0xD4, 0x42, 0x8A, 0x28, 0xAC, 0xCA, 0x0A, 0x28, 0xA2, +0x80, 0x3F, 0xFF, 0xD5, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD6, 0xFE, 0x33, 0xE8, 0xA2, +0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0xFF, 0xD7, 0xFE, 0x37, 0xA8, 0xA6, 0x87, 0x07, 0xAF, 0x14, 0xEA, 0xE9, 0x32, 0x0A, +0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x25, 0x8A, 0x57, 0x89, 0xB7, +0x29, 0xE3, 0xB8, 0xEC, 0x6B, 0x5A, 0x29, 0x92, 0x51, 0x95, 0x3C, 0xF7, 0x1E, 0x95, 0x89, 0x4E, +0x56, 0x64, 0x60, 0xCA, 0x70, 0xC2, 0x80, 0x3F, 0xFF, 0xD0, 0xFE, 0x3F, 0xA8, 0xAA, 0xD0, 0x5C, +0xAC, 0xA0, 0x2B, 0x7C, 0xB2, 0x7F, 0x3F, 0xA5, 0x59, 0xAE, 0x93, 0x20, 0xA2, 0x8A, 0x28, 0x00, +0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x02, 0x29, 0xF9, 0x89, 0xEB, 0x36, 0xB4, 0xE6, 0xFF, +0x00, 0x54, 0xFF, 0x00, 0x4A, 0xCC, 0xAC, 0xAA, 0x6E, 0x5C, 0x4F, 0xFF, 0xD1, 0xFE, 0x39, 0xE8, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0xFF, 0xD2, 0xFE, 0x39, 0xEA, 0xE5, 0xBB, 0xC6, 0xC4, 0x24, 0x8F, 0xE5, 0x1E, +0xCC, 0x7A, 0x7E, 0x35, 0x4E, 0x8A, 0x69, 0xD8, 0x4D, 0x1B, 0x6D, 0x65, 0x30, 0xFB, 0xBB, 0x5F, +0xE8, 0x6A, 0xBB, 0xC5, 0x22, 0x7D, 0xF4, 0x65, 0xA8, 0xED, 0x2F, 0x9E, 0x0C, 0x24, 0x99, 0x92, +0x1F, 0x4E, 0xEB, 0xF4, 0xAD, 0xE8, 0xE4, 0x49, 0x50, 0x3C, 0x6C, 0x19, 0x4D, 0x5A, 0xA8, 0x2E, +0x53, 0x06, 0x8A, 0xDD, 0x68, 0xA2, 0x7F, 0xBC, 0x8A, 0x7F, 0x0A, 0xAE, 0xD6, 0x51, 0x1C, 0xED, +0x2C, 0x86, 0xA9, 0x54, 0x42, 0xE5, 0x32, 0xA8, 0xAB, 0xCD, 0x62, 0xE3, 0xEE, 0x3A, 0xB7, 0xD7, +0x8A, 0xAE, 0xD6, 0xF3, 0x2F, 0x58, 0xCF, 0xE1, 0x54, 0xA4, 0x89, 0xB1, 0x0D, 0x14, 0xBF, 0x98, +0xA4, 0xA6, 0x07, 0xFF, 0xD3, 0xFE, 0x3D, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD4, 0xFE, +0x3D, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0xBF, 0x63, 0x16, 0xE6, 0x32, +0xB6, 0x70, 0x38, 0x1E, 0xE6, 0xA9, 0x22, 0x97, 0x65, 0x45, 0xE4, 0x93, 0x8A, 0xDE, 0x8D, 0x04, +0x68, 0xA8, 0x3A, 0x0A, 0xCE, 0xA4, 0xAC, 0x26, 0x3E, 0x8A, 0x28, 0xAC, 0x44, 0x14, 0x51, 0x45, +0x00, 0x7F, 0xFF, 0xD5, 0xFE, 0x46, 0x68, 0xA2, 0x9E, 0xA8, 0xCD, 0xD0, 0x52, 0x30, 0x19, 0x4A, +0x01, 0x27, 0x00, 0x12, 0x6A, 0xCA, 0xC2, 0x07, 0xDE, 0x39, 0xA9, 0x40, 0x03, 0x80, 0x00, 0x14, +0x01, 0x9F, 0x71, 0x02, 0x9B, 0x79, 0x4C, 0xBC, 0x00, 0x32, 0x07, 0xBD, 0x73, 0xED, 0x3F, 0x98, +0x72, 0xE4, 0xE6, 0xB6, 0xB5, 0x19, 0xBF, 0x73, 0x26, 0x0F, 0x1F, 0x76, 0xB9, 0xCA, 0xA7, 0x1B, +0x17, 0x18, 0x96, 0xBA, 0xD1, 0x55, 0x72, 0x47, 0x4A, 0x90, 0x48, 0x7B, 0xE0, 0xD4, 0xD8, 0x1C, +0x09, 0xA8, 0xA6, 0x87, 0x53, 0xDF, 0x14, 0xEA, 0x08, 0x68, 0xFF, 0xD6, 0xFE, 0x3E, 0x68, 0xA2, +0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, +0x14, 0x50, 0x07, 0xFF, 0xD7, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD0, 0xFE, 0x3E, +0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x54, 0xAF, 0xC9, +0x11, 0xA8, 0xF5, 0x35, 0x76, 0xB3, 0x35, 0x06, 0x05, 0xE3, 0x51, 0xD8, 0x13, 0x55, 0x05, 0xA8, +0x23, 0x3E, 0x8A, 0x28, 0xAE, 0x82, 0x8F, 0xFF, 0xD1, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA9, 0xD2, +0x1C, 0xE0, 0xB7, 0x03, 0xD2, 0x80, 0x3F, 0xFF, 0xD2, 0xFE, 0x36, 0x51, 0x0B, 0x9E, 0x38, 0x1E, +0xB5, 0x6D, 0x51, 0x50, 0x71, 0xD6, 0x9C, 0x00, 0x03, 0x03, 0x81, 0x45, 0x74, 0x99, 0x05, 0x14, +0x51, 0x40, 0x05, 0x31, 0xBA, 0xD3, 0xEA, 0x3E, 0xB5, 0x9D, 0x56, 0x26, 0x25, 0x14, 0x51, 0x58, +0x88, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD3, 0xFE, 0x38, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, +0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD4, +0xFE, 0x38, 0x68, 0xA0, 0x90, 0x06, 0x4D, 0x44, 0x58, 0x9F, 0x61, 0x48, 0xC0, 0x73, 0x3E, 0x38, +0x1C, 0xD4, 0x5D, 0x7A, 0xF3, 0x45, 0x14, 0x00, 0x9B, 0x57, 0xD0, 0x51, 0xB5, 0x7D, 0x05, 0x2D, +0x14, 0x05, 0xC6, 0xEC, 0x5F, 0x4A, 0x36, 0x2F, 0xA5, 0x3A, 0x8A, 0x07, 0x76, 0x33, 0xCB, 0x5F, +0x7A, 0x4F, 0x2D, 0x7D, 0x4D, 0x49, 0x45, 0x01, 0xCC, 0xCF, 0xFF, 0xD5, 0xFE, 0x35, 0x7C, 0xB1, +0xEA, 0x69, 0x3C, 0xAF, 0x7A, 0x96, 0x8A, 0x46, 0x3C, 0xCC, 0x8B, 0xCA, 0xF7, 0xA4, 0xF2, 0xCF, +0xA8, 0xA9, 0xA8, 0xA0, 0x7C, 0xCC, 0x87, 0xCB, 0x6F, 0x6A, 0x4F, 0x2D, 0xBD, 0xAA, 0x7A, 0x28, +0xB8, 0x73, 0xB2, 0x0D, 0x8D, 0xE9, 0x49, 0xB1, 0xBD, 0x2A, 0xC5, 0x14, 0x5C, 0x39, 0xD9, 0x5F, +0x6B, 0x7A, 0x1A, 0x4C, 0x1F, 0x43, 0x56, 0x68, 0xA2, 0xE3, 0xE7, 0x3F, 0xFF, 0xD6, 0xFE, 0x34, +0x30, 0x7D, 0x0D, 0x25, 0x5A, 0xA2, 0x95, 0xCC, 0xF9, 0xCA, 0xB4, 0x55, 0xAC, 0x0F, 0x41, 0x49, +0xB5, 0x7F, 0xBA, 0x3F, 0x2A, 0x2E, 0x3E, 0x72, 0xB5, 0x15, 0x63, 0x6A, 0xFA, 0x0A, 0x36, 0x2F, +0xA5, 0x3B, 0x87, 0x39, 0x5E, 0x8A, 0xB1, 0xB1, 0x7D, 0x29, 0x3C, 0xB5, 0xF7, 0xA0, 0x39, 0xD1, +0x05, 0x15, 0x37, 0x96, 0xBE, 0xA6, 0x9A, 0xC8, 0x07, 0x73, 0x9A, 0x07, 0xCE, 0x8F, 0xFF, 0xD7, +0xFE, 0x35, 0xA9, 0x41, 0x23, 0xA1, 0xA4, 0xA2, 0xBA, 0x4C, 0x89, 0x03, 0xFA, 0x8A, 0x78, 0x60, +0x7A, 0x1A, 0x82, 0x8A, 0x00, 0xB1, 0x45, 0x42, 0x18, 0x8E, 0xF4, 0xF0, 0xE3, 0xBF, 0x14, 0x00, +0xFA, 0x28, 0xCE, 0x7A, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x1F, 0xFF, 0xD0, 0xFE, 0x37, 0xEB, +0x42, 0xDE, 0xEB, 0x38, 0x49, 0x88, 0x1E, 0x8D, 0xFE, 0x35, 0x9D, 0x45, 0x74, 0x99, 0x1D, 0x05, +0x15, 0x97, 0x6F, 0x72, 0x63, 0xC2, 0x39, 0x2C, 0x9F, 0xCA, 0xB4, 0xD5, 0x83, 0x00, 0xCA, 0x72, +0x0D, 0x00, 0x2D, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x0C, 0x90, 0x66, 0x37, 0x1E, 0xD5, +0x97, 0x5A, 0xCD, 0xF7, 0x5B, 0xE9, 0x59, 0x35, 0x95, 0x42, 0xE2, 0x7F, 0xFF, 0xD1, 0xFE, 0x39, +0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD2, 0xFE, 0x39, 0xE8, 0xA2, 0x8A, 0x00, 0x2A, 0x68, 0x27, 0x92, +0xDD, 0xF7, 0xC6, 0xD8, 0xF5, 0x1D, 0x8D, 0x43, 0x45, 0x00, 0x74, 0xD6, 0xD7, 0x71, 0xDC, 0xAF, +0x1F, 0x24, 0x9D, 0xD4, 0xD5, 0xAA, 0xE4, 0x15, 0x99, 0x48, 0x65, 0x25, 0x58, 0x74, 0x22, 0xB6, +0xED, 0x75, 0x10, 0xFB, 0x63, 0xB8, 0x21, 0x5F, 0xA0, 0x6E, 0xC7, 0xEB, 0xE9, 0x40, 0x1A, 0x94, +0x51, 0x45, 0x00, 0x35, 0x91, 0x1B, 0x86, 0x55, 0x6F, 0xA8, 0xA8, 0x1A, 0xD2, 0x06, 0xCF, 0xCA, +0x54, 0xFB, 0x1A, 0xB3, 0x45, 0x34, 0xC2, 0xC7, 0xFF, 0xD3, 0xFE, 0x41, 0x9A, 0xC7, 0xFB, 0xB2, +0x7E, 0x62, 0xA0, 0x6B, 0x59, 0x97, 0xF8, 0x77, 0x7D, 0x2B, 0x62, 0x8A, 0xB5, 0x36, 0x4F, 0x2A, +0x30, 0x0A, 0xB2, 0xF0, 0xCA, 0xCB, 0xF5, 0x14, 0xDA, 0xE8, 0x70, 0x0F, 0x50, 0x0D, 0x40, 0xD6, +0xF0, 0xBF, 0x54, 0x03, 0xE9, 0xC5, 0x52, 0xA8, 0x2E, 0x53, 0x16, 0x8A, 0xD3, 0x7B, 0x14, 0x3C, +0xA3, 0xB2, 0x9F, 0x7E, 0x6A, 0x06, 0xB2, 0x94, 0x67, 0x6E, 0xD7, 0x15, 0x4A, 0x68, 0x56, 0x65, +0x3A, 0x2A, 0x47, 0x8A, 0x44, 0xFB, 0xE8, 0xCB, 0x51, 0xD5, 0x08, 0x28, 0xA2, 0x8A, 0x00, 0xFF, +0xD4, 0xFE, 0x3D, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA9, 0x22, 0x8C, 0xCB, 0x22, 0xA0, +0xEF, 0xD7, 0xD8, 0x50, 0x05, 0xEB, 0x18, 0x78, 0x33, 0x30, 0xE7, 0xA0, 0xAD, 0x1A, 0x45, 0x01, +0x54, 0x2A, 0x8C, 0x28, 0x18, 0x14, 0xB5, 0xCD, 0x27, 0x76, 0x48, 0x51, 0x4E, 0x55, 0x66, 0xE8, +0x33, 0x53, 0xAC, 0x1F, 0xDE, 0x39, 0xFA, 0x52, 0x02, 0xBE, 0x33, 0xD2, 0xA5, 0x58, 0x58, 0x8C, +0x9F, 0x96, 0xAC, 0x85, 0x0B, 0xD0, 0x0A, 0x5A, 0x00, 0xFF, 0xD5, 0xFE, 0x49, 0x96, 0x35, 0x5E, +0xD9, 0x34, 0xFA, 0x28, 0xA4, 0x60, 0x15, 0x0C, 0xCF, 0xB5, 0x76, 0x8E, 0xA6, 0xA5, 0x62, 0x14, +0x12, 0x6B, 0x3D, 0x98, 0xB3, 0x16, 0x35, 0x74, 0xD6, 0xA0, 0x8C, 0xCD, 0x45, 0xBE, 0x48, 0xD3, +0xD4, 0xE4, 0xD6, 0x4D, 0x5F, 0xD4, 0x1B, 0x33, 0x2A, 0xFA, 0x0A, 0xA1, 0x44, 0xB7, 0x36, 0x8E, +0xC1, 0x45, 0x14, 0x54, 0x8C, 0x29, 0x43, 0x11, 0xD0, 0xD2, 0x51, 0x40, 0x1F, 0xFF, 0xD6, 0xFE, +0x3D, 0x04, 0x9E, 0xA2, 0xA4, 0x0C, 0x0F, 0x43, 0x55, 0xA8, 0xA0, 0x87, 0x04, 0x5A, 0xA2, 0xAB, +0x86, 0x61, 0xDF, 0x8A, 0x90, 0x48, 0x3F, 0x8B, 0x8A, 0x44, 0xB8, 0xB2, 0x4A, 0x29, 0x01, 0x07, +0xA1, 0xA5, 0xA0, 0x90, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD7, 0xFE, 0x3E, +0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD0, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, +0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x58, 0xD7, 0x8D, 0x99, 0xDB, 0x9E, 0x80, 0x0A, 0xD9, 0xAC, +0x19, 0xDB, 0x74, 0xD2, 0x37, 0xA9, 0x35, 0xA5, 0x3D, 0xC1, 0x11, 0x51, 0x45, 0x15, 0xB1, 0x47, +0xFF, 0xD1, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, +0x80, 0x0A, 0x70, 0x52, 0xC7, 0x00, 0x64, 0xD3, 0x92, 0x32, 0xFE, 0xCB, 0xEB, 0x56, 0xD5, 0x42, +0x8C, 0x01, 0x40, 0x0C, 0x48, 0x82, 0xF2, 0x79, 0x6A, 0x92, 0x8A, 0x28, 0x03, 0xFF, 0xD2, 0xFE, +0x39, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x10, 0xF4, 0x35, 0x1D, 0x3D, 0x8F, +0x6A, 0x65, 0x61, 0x51, 0xEA, 0x4B, 0x0A, 0x28, 0xA2, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x0F, 0xFF, +0xD3, 0xFE, 0x38, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x74, 0xE4, 0xD0, 0x01, 0x4D, 0x66, 0x03, 0xEB, 0x4D, 0x67, 0xF4, 0xE9, 0x51, 0xD0, +0x07, 0xFF, 0xD4, 0xFE, 0x36, 0x89, 0x27, 0xAD, 0x25, 0x14, 0x52, 0x30, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD5, 0xFE, +0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, +0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD6, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x1D, 0x39, 0x35, 0x13, 0x3E, 0x78, 0x1C, 0x0A, +0x00, 0x73, 0x3E, 0x38, 0x15, 0x15, 0x14, 0x50, 0x07, 0xFF, 0xD7, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, +0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x16, 0x9C, 0x1C, 0xF7, 0xE6, 0x99, +0x45, 0x00, 0x4C, 0x18, 0x1F, 0x6A, 0x75, 0x57, 0xA7, 0x02, 0x47, 0x43, 0x40, 0x1F, 0xFF, 0xD0, +0xFE, 0x37, 0xA8, 0xA6, 0x07, 0xF5, 0x14, 0xF0, 0x41, 0xE8, 0x6B, 0xA4, 0xC8, 0x2A, 0x78, 0x67, +0x78, 0x4F, 0x1C, 0xAF, 0x71, 0x50, 0x51, 0x40, 0x1B, 0xB1, 0xC8, 0x92, 0xAE, 0xE4, 0x39, 0xF5, +0xF6, 0xA7, 0xD6, 0x12, 0x48, 0xF1, 0xB6, 0xE4, 0x38, 0x3F, 0xCE, 0xB5, 0xA0, 0x9D, 0x66, 0x1D, +0x83, 0xF7, 0x14, 0x01, 0x3D, 0x14, 0x51, 0x40, 0x01, 0xE8, 0x6B, 0x22, 0xB5, 0xEB, 0x24, 0xF5, +0x35, 0x9D, 0x42, 0xA2, 0x7F, 0xFF, 0xD1, 0xFE, 0x39, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD2, 0xFE, +0x39, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xBF, 0x6B, 0x7E, +0xF0, 0x61, 0x24, 0xCC, 0x91, 0x7E, 0xAB, 0xF4, 0xAD, 0xE8, 0xE4, 0x49, 0x54, 0x3C, 0x6C, 0x19, +0x4F, 0xA5, 0x72, 0x55, 0x34, 0x17, 0x12, 0x5B, 0xBE, 0xF8, 0xCF, 0xD4, 0x1E, 0x86, 0x80, 0x3A, +0xAA, 0x2A, 0xAD, 0xB5, 0xDC, 0x57, 0x0B, 0xF2, 0x90, 0xB2, 0x77, 0x53, 0xD6, 0xAD, 0x50, 0x07, +0xFF, 0xD3, 0xFE, 0x45, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x2A, 0x36, 0x8A, 0x27, 0xFB, 0xC8, 0xA7, 0xF0, 0xA9, 0x28, 0xA0, 0x0A, 0x6D, 0x65, 0x11, 0xCE, +0xD2, 0xC8, 0x6A, 0x06, 0xB1, 0x71, 0xF7, 0x1D, 0x5B, 0xEB, 0xC5, 0x69, 0xD1, 0x54, 0xA6, 0xC5, +0xCA, 0x7F, 0xFF, 0xD4, 0xFE, 0x3F, 0x1A, 0xDE, 0x65, 0xEB, 0x19, 0xFC, 0x2A, 0x2F, 0xCC, 0x57, +0x41, 0x4D, 0x64, 0x46, 0xE1, 0x95, 0x5B, 0xEA, 0x2B, 0x4F, 0x68, 0x4F, 0x29, 0x81, 0x5A, 0xD6, +0x50, 0x95, 0x4F, 0x30, 0x8F, 0x99, 0xBA, 0x7D, 0x29, 0xE6, 0xD2, 0xDD, 0x88, 0x25, 0x08, 0xE7, +0xB1, 0xAD, 0x34, 0x28, 0xA0, 0x00, 0xB8, 0xA2, 0x73, 0xBA, 0xB2, 0x25, 0xC5, 0x91, 0xAC, 0x4C, +0xDE, 0xC2, 0xA6, 0x58, 0x94, 0x60, 0x9E, 0x4D, 0x3F, 0x7A, 0xFA, 0xD3, 0xAB, 0x22, 0x2C, 0x14, +0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x7F, 0xFF, 0xD5, 0xFE, 0x4A, 0x68, 0xA2, 0xA3, 0x95, +0xF6, 0x2F, 0xB9, 0xE9, 0x49, 0x23, 0x02, 0x09, 0xDF, 0x27, 0x60, 0xE8, 0x3A, 0xD5, 0x7A, 0x5A, +0x6B, 0x10, 0xAA, 0x58, 0xF4, 0x03, 0x35, 0xD2, 0x95, 0x86, 0x60, 0x5C, 0xB6, 0xF9, 0xE5, 0x3D, +0x79, 0xC5, 0x41, 0x4A, 0x4E, 0x49, 0x27, 0xAF, 0x5A, 0x4A, 0xC1, 0xB3, 0x60, 0xA2, 0x8A, 0x29, +0x00, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD6, 0xFE, 0x3B, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x29, 0xE2, 0x46, 0x1E, 0xF4, 0xCA, 0x28, 0x13, 0x44, 0xE2, 0x45, 0x3D, 0x78, 0xA7, 0xF5, +0xAA, 0xB4, 0x64, 0x8E, 0x94, 0x58, 0x97, 0x02, 0xD5, 0x15, 0x08, 0x90, 0xF7, 0xC1, 0xA9, 0x03, +0xA9, 0xEF, 0x8A, 0x44, 0x38, 0xB3, 0xFF, 0xD7, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, +0xD0, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x02, +0x31, 0xDA, 0xAC, 0xC7, 0xB0, 0xAE, 0x7A, 0xB6, 0xEE, 0x5B, 0x6C, 0x12, 0x7D, 0x31, 0x58, 0x75, +0xB5, 0x24, 0x34, 0x14, 0x51, 0x45, 0x68, 0x33, 0xFF, 0xD1, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, +0x32, 0x0A, 0x28, 0xA7, 0x2A, 0x96, 0x38, 0x03, 0x34, 0x00, 0x95, 0x3A, 0x43, 0xDD, 0xFF, 0x00, +0x2A, 0x92, 0x38, 0xC2, 0x73, 0xD5, 0xBD, 0x6A, 0x4A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0xFF, 0xD2, 0xFE, 0x39, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x18, +0xDD, 0x69, 0xB4, 0xBD, 0x69, 0x2B, 0x95, 0xB2, 0x42, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, +0x0F, 0xFF, 0xD3, 0xFE, 0x38, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, +0xC6, 0x7F, 0x4A, 0x00, 0x71, 0x60, 0x3E, 0xB5, 0x11, 0x24, 0x9A, 0x4A, 0x4A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0xFF, 0xD4, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD5, 0xFE, 0x36, 0x68, +0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x07, 0xFF, 0xD6, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, +0x01, 0x48, 0x48, 0x02, 0x91, 0x98, 0x0F, 0xAD, 0x44, 0x49, 0x3D, 0x68, 0x01, 0x4B, 0x13, 0x4D, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD7, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, +0x3F, 0xFF, 0xD0, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x1E, 0x1D, 0x87, 0xBD, 0x3C, 0x38, +0xEF, 0xC5, 0x43, 0x45, 0x00, 0x58, 0xA5, 0x04, 0xA9, 0x05, 0x49, 0x06, 0xAB, 0x82, 0x47, 0x43, +0x4F, 0x0E, 0x7B, 0xF3, 0x40, 0x1B, 0x16, 0xF7, 0x41, 0xF0, 0x92, 0x10, 0x1F, 0xB1, 0xF5, 0xAB, +0x95, 0xCF, 0x06, 0x07, 0xBD, 0x5F, 0x82, 0xEC, 0xAE, 0x12, 0x53, 0x95, 0xEC, 0x7D, 0x3E, 0xB4, +0x01, 0xA5, 0x59, 0x72, 0x7D, 0xF7, 0xFA, 0xD6, 0xA0, 0x20, 0x8C, 0x83, 0x91, 0x59, 0x72, 0xF1, +0x23, 0xFD, 0x6B, 0x3A, 0x88, 0xA8, 0xEE, 0x7F, 0xFF, 0xD1, 0xFE, 0x39, 0xE8, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0xFF, 0xD2, 0xFE, 0x39, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x50, 0x4A, 0x90, 0xCA, 0x4A, 0xB0, 0xE4, 0x11, 0xDA, 0xB6, 0xED, 0x35, +0x00, 0xE4, 0x45, 0x3E, 0x15, 0xBB, 0x37, 0x63, 0xF5, 0xF4, 0xAC, 0x3A, 0x28, 0x03, 0xFF, 0xD3, +0xFE, 0x45, 0xE8, 0xAE, 0x7E, 0xD6, 0xFD, 0xE1, 0x01, 0x24, 0x05, 0xE2, 0xFD, 0x45, 0x6E, 0xA3, +0xA4, 0x8A, 0x1D, 0x18, 0x32, 0x9E, 0x84, 0x50, 0x03, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD4, 0xFE, 0x45, 0xE8, 0xA2, 0x8A, +0x00, 0x2A, 0x70, 0x72, 0x01, 0xA8, 0x2A, 0x54, 0x3C, 0x62, 0x80, 0x1F, 0x45, 0x14, 0x50, 0x03, +0xB7, 0xB7, 0xAD, 0x3B, 0xCC, 0x3E, 0x82, 0xA3, 0xA2, 0x81, 0x72, 0xA2, 0x71, 0x22, 0xF7, 0xC8, +0xA7, 0x06, 0x53, 0xDC, 0x55, 0x6A, 0x28, 0x27, 0x91, 0x1F, 0xFF, 0xD5, 0xFE, 0x4A, 0x49, 0x00, +0x64, 0xF4, 0xAA, 0x12, 0x3E, 0xF6, 0x27, 0xB7, 0x6A, 0x97, 0xB1, 0x1D, 0xAA, 0x16, 0x4C, 0x72, +0x39, 0x15, 0xAD, 0x38, 0xF5, 0x32, 0x6A, 0xC3, 0x2A, 0xBD, 0xDB, 0x6D, 0xB7, 0x94, 0x8E, 0x0E, +0x31, 0x56, 0x2A, 0x86, 0xA0, 0xF8, 0x89, 0x53, 0xD4, 0xD5, 0xCB, 0x60, 0x46, 0x3D, 0x14, 0x51, +0x5C, 0xE6, 0xA1, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD6, 0xFE, 0x3B, 0xE8, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0xFF, 0xD7, 0xFE, 0x3C, 0x03, 0x11, 0xD0, 0xD4, 0x82, 0x4F, 0x51, 0x51, 0x51, +0x40, 0x9A, 0x45, 0x90, 0xC0, 0xF4, 0x34, 0xB5, 0x56, 0x9C, 0x1D, 0x87, 0x7A, 0x56, 0x21, 0xC0, +0xB1, 0x45, 0x46, 0x24, 0x1F, 0xC5, 0xC5, 0x3C, 0x10, 0x79, 0x14, 0x12, 0xD0, 0xB4, 0x51, 0x45, +0x02, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD0, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x05, 0x2B, 0xE6, 0xC4, 0x4A, 0xBE, 0xAD, 0x59, 0x35, 0xA1, +0x7E, 0x7E, 0x68, 0xD7, 0xD8, 0x9A, 0xCF, 0xAD, 0xE9, 0xEC, 0x34, 0x14, 0x51, 0x45, 0x58, 0xCF, +0xFF, 0xD1, 0xFE, 0x35, 0xA8, 0xA5, 0xC6, 0x78, 0x1C, 0x9A, 0xB0, 0x90, 0xE3, 0x97, 0xFC, 0xAB, +0xA4, 0xC8, 0x8D, 0x23, 0x2F, 0xCF, 0x45, 0xAB, 0x4A, 0xA1, 0x46, 0x00, 0xC5, 0x2D, 0x14, 0x00, +0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD2, 0xFE, 0x39, +0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x0F, 0x43, 0x45, 0x35, 0x8F, 0x18, 0xA9, 0x93, 0xB2, 0x10, +0xCA, 0x28, 0xA2, 0xB9, 0xC4, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x7F, 0xFF, 0xD3, +0xFE, 0x38, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x41, 0x20, 0x0C, 0x9A, 0x6B, 0x30, 0x1E, 0xE6, 0xA2, +0x24, 0x9E, 0xB4, 0x00, 0xAC, 0xC4, 0xFB, 0x0A, 0x6D, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x07, 0xFF, 0xD4, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD5, 0xFE, +0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, +0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD6, 0xFE, 0x36, 0x68, 0xA2, 0x82, 0x71, 0xC9, 0xA4, +0x60, 0x15, 0x1B, 0x3F, 0x61, 0x48, 0xCD, 0x9E, 0x9C, 0x0A, 0x65, 0x00, 0x14, 0x51, 0x45, 0x00, +0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x7F, 0xFF, 0xD7, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, +0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, +0xA2, 0x80, 0x3F, 0xFF, 0xD0, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x70, 0x62, 0x3A, 0x1A, 0x6D, 0x2D, 0x26, 0xEC, 0x09, 0x17, 0x2D, +0xEF, 0x1A, 0x2C, 0x2B, 0x02, 0xD1, 0xFA, 0x7A, 0x7D, 0x2A, 0x57, 0x96, 0x39, 0x5D, 0x99, 0x18, +0x10, 0x6B, 0x25, 0x9C, 0x9E, 0x07, 0x4A, 0x65, 0x65, 0x29, 0x5C, 0xB4, 0x8F, 0xFF, 0xD1, 0xFE, +0x39, 0xE8, 0xAC, 0xB5, 0x96, 0x45, 0xE8, 0xE6, 0xA7, 0x5B, 0xA3, 0xFC, 0x6B, 0x9F, 0xA5, 0x00, +0x5D, 0xA2, 0xA1, 0x59, 0xE2, 0x6F, 0xE2, 0x03, 0xEB, 0x53, 0x67, 0x3C, 0x8E, 0x45, 0x00, 0x14, +0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x7F, 0xFF, 0xD2, 0xFE, 0x39, +0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD3, 0xFE, 0x39, 0xEA, 0x78, 0x2E, 0x65, 0xB7, 0x6D, 0xC8, 0x78, +0xEE, 0xBD, 0x8D, 0x41, 0x45, 0x00, 0x74, 0xF6, 0xF7, 0x51, 0xDC, 0x2F, 0xCA, 0x76, 0xBF, 0x75, +0x3D, 0x45, 0x59, 0xAE, 0x41, 0x59, 0x91, 0x95, 0xD4, 0x95, 0x61, 0xC8, 0x22, 0xB7, 0x2D, 0x35, +0x05, 0x93, 0x11, 0xCD, 0x85, 0x93, 0xA0, 0x6E, 0xC7, 0xFC, 0x28, 0x03, 0x4E, 0x8A, 0x28, 0xA0, +0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD4, 0xFE, 0x45, 0xE8, 0xA2, 0x8A, +0x00, 0x29, 0xE8, 0x79, 0xC5, 0x32, 0x81, 0xC1, 0x06, 0x80, 0x2C, 0x51, 0x45, 0x14, 0x00, 0x51, +0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD5, 0xFE, 0x47, 0xE9, 0x28, 0xA2, 0xBA, 0x52, +0x32, 0x64, 0x6C, 0x9D, 0xC5, 0x62, 0x6A, 0x2D, 0xFB, 0xC8, 0xD0, 0x76, 0x19, 0xAD, 0xE6, 0x60, +0xA0, 0xB1, 0xE8, 0x2B, 0x97, 0xBA, 0x7F, 0x36, 0xE2, 0x56, 0xCF, 0x7C, 0x7D, 0x2A, 0x64, 0xAF, +0xA0, 0xD3, 0x21, 0xA2, 0x9A, 0x43, 0x76, 0x6A, 0x6E, 0x5C, 0x75, 0xE6, 0xB2, 0x71, 0x65, 0xDC, +0x92, 0x8A, 0x8B, 0x79, 0xF6, 0xA5, 0xF3, 0x3D, 0xAA, 0x46, 0x49, 0x45, 0x33, 0x78, 0xEE, 0x28, +0xDE, 0x3D, 0xE8, 0x03, 0xFF, 0xD6, 0xFE, 0x3B, 0xE8, 0xA6, 0xEF, 0x5F, 0x5A, 0x37, 0xAF, 0xAD, +0x00, 0x3A, 0x8A, 0x4C, 0x8F, 0x51, 0x4B, 0x90, 0x7A, 0x1C, 0xD0, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD7, 0xFE, 0x3B, 0xE8, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x78, 0x91, 0x87, 0xBD, 0x48, 0x24, 0x53, 0xD7, +0x8A, 0x82, 0x8A, 0x09, 0x71, 0x45, 0xAA, 0x2A, 0xB0, 0x24, 0x74, 0x34, 0xF1, 0x21, 0xEE, 0x33, +0x4A, 0xC4, 0xB8, 0x1F, 0xFF, 0xD0, 0xFE, 0x3E, 0x68, 0xA6, 0x87, 0x53, 0xDF, 0x14, 0xEA, 0x46, +0x16, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x31, 0xEF, 0x5B, 0x33, 0x91, 0xE8, 0x00, +0xAA, 0x95, 0x34, 0xED, 0xBE, 0x69, 0x1B, 0xDE, 0xA1, 0xAE, 0x98, 0xEC, 0x30, 0xA7, 0x2A, 0x97, +0x38, 0x15, 0x22, 0x44, 0x5B, 0x93, 0xC2, 0xFF, 0x00, 0x3A, 0xB4, 0x00, 0x03, 0x00, 0x60, 0x53, +0x19, 0xFF, 0xD1, 0xFE, 0x38, 0xD2, 0x30, 0x9E, 0xE7, 0xD6, 0x9F, 0x45, 0x15, 0xD2, 0x64, 0x14, +0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x7F, +0xFF, 0xD2, 0xFE, 0x39, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x63, 0x75, 0xA7, 0xD4, 0x64, 0xE4, +0x93, 0x59, 0xD5, 0x62, 0x62, 0x51, 0x45, 0x15, 0x88, 0x82, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x29, +0x0B, 0x01, 0xF5, 0xA0, 0x0F, 0xFF, 0xD3, 0xFE, 0x38, 0x7A, 0x72, 0x6A, 0x22, 0xE4, 0xF4, 0xE0, +0x53, 0x49, 0x27, 0xAD, 0x25, 0x23, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, +0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD4, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, +0xFF, 0xD5, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0xD6, 0x60, 0x3D, 0xCD, 0x00, 0x7F, 0xFF, 0xD6, 0xFE, +0x36, 0x0B, 0x01, 0xD6, 0xA1, 0x24, 0x9E, 0xB4, 0x75, 0xA4, 0xA4, 0x60, 0x14, 0x51, 0x45, 0x00, +0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x4E, 0xDA, 0x7D, 0x28, 0x0B, 0x1F, +0xFF, 0xD7, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, +0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD0, 0xFE, 0x35, 0xA8, 0xA2, +0x8A, 0xE9, 0x32, 0x0A, 0x29, 0x68, 0xA4, 0xE4, 0x90, 0xD2, 0x0A, 0x28, 0xA4, 0x27, 0x1C, 0x9A, +0xC9, 0xCD, 0x94, 0xA2, 0x2F, 0x4E, 0x4D, 0x44, 0xCD, 0x9E, 0x9D, 0x29, 0x19, 0x8B, 0x7D, 0x29, +0xB5, 0x05, 0x05, 0x14, 0x51, 0x40, 0x1F, 0xFF, 0xD1, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x29, +0xC1, 0x99, 0x7E, 0xEB, 0x11, 0xF4, 0xA6, 0xD1, 0x40, 0x16, 0x16, 0xE6, 0x41, 0xD7, 0x0C, 0x2A, +0x75, 0xBA, 0x43, 0xF7, 0x81, 0x5A, 0xA1, 0x45, 0x00, 0x6B, 0x2B, 0xA3, 0xFD, 0xD6, 0x06, 0x9D, +0x58, 0xF9, 0xC7, 0x23, 0x83, 0x52, 0xAC, 0xD2, 0x2F, 0x46, 0x24, 0x7B, 0xD0, 0x06, 0x9D, 0x15, +0x4D, 0x6E, 0xBF, 0xBE, 0xBF, 0x95, 0x4E, 0xB3, 0x44, 0xDD, 0x18, 0x03, 0xEF, 0x40, 0x1F, 0xFF, +0xD2, 0xFE, 0x39, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD3, 0xFE, 0x39, 0xE8, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0xD1, 0xB4, 0xBF, 0x78, 0x71, 0x1C, 0xB9, 0x92, 0x2C, 0xF5, 0xEE, 0xB5, 0xBA, +0x8E, 0xB2, 0x28, 0x74, 0x60, 0xCA, 0x7A, 0x11, 0x5C, 0x8D, 0x4F, 0x05, 0xCC, 0xB6, 0xED, 0x94, +0x23, 0x69, 0xEA, 0x0F, 0x43, 0x40, 0x1D, 0x4D, 0x15, 0x5E, 0xDE, 0xEA, 0x2B, 0x95, 0xCA, 0x1C, +0x30, 0xEA, 0xA7, 0xA8, 0xAB, 0x14, 0x00, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD4, 0xFE, 0x45, 0xE8, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x9D, 0x4E, 0x40, 0xA5, 0xA8, 0xD0, 0xF5, 0x15, 0x25, +0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x54, 0x16, 0xA2, 0x93, 0x3F, 0xFF, 0xD5, 0xFE, +0x47, 0xA8, 0xA2, 0xA3, 0x96, 0x4F, 0x2D, 0x72, 0x3E, 0xF1, 0xE9, 0x5D, 0x2D, 0x99, 0x15, 0xEE, +0x65, 0xFE, 0x00, 0x78, 0x1C, 0x9A, 0xE7, 0x09, 0xC9, 0x26, 0xB5, 0xA7, 0x6C, 0x44, 0xE7, 0xBE, +0x2B, 0x22, 0xA2, 0x0E, 0xFA, 0x89, 0x05, 0x14, 0x51, 0x56, 0x30, 0x20, 0x1E, 0xA3, 0x34, 0xC2, +0x83, 0xB1, 0xC5, 0x3E, 0x8A, 0x4E, 0x29, 0x85, 0xC8, 0x8A, 0x91, 0xEF, 0x4D, 0xA9, 0xE8, 0xEB, +0x50, 0xE9, 0x95, 0xCC, 0x7F, 0xFF, 0xD6, 0xFE, 0x39, 0xE8, 0xA9, 0x4A, 0x0F, 0xA5, 0x34, 0xA1, +0xEC, 0x73, 0x54, 0xE0, 0xC5, 0xCC, 0x32, 0x8A, 0x52, 0x08, 0xEA, 0x29, 0x2A, 0x46, 0x14, 0xB9, +0x3E, 0xA6, 0x92, 0x8A, 0x00, 0x76, 0xE6, 0x1D, 0xE8, 0xDE, 0xDE, 0xB4, 0xDA, 0x28, 0x01, 0xDB, +0xDB, 0xD8, 0xD2, 0xEF, 0x3E, 0xD4, 0xCA, 0x28, 0x03, 0xFF, 0xD7, 0xFE, 0x3A, 0xFC, 0xCF, 0x6A, +0x5D, 0xE3, 0xB8, 0xA8, 0xA8, 0xA0, 0x09, 0x77, 0x8F, 0x7A, 0x5D, 0xEB, 0xEB, 0x50, 0xD1, 0x40, +0x13, 0x6F, 0x5F, 0x5A, 0x5C, 0x8F, 0x51, 0x50, 0x51, 0x40, 0x16, 0x32, 0x0F, 0x43, 0x9A, 0x2A, +0xBD, 0x14, 0x01, 0x62, 0x8A, 0x83, 0x27, 0xD4, 0xD2, 0xEE, 0x61, 0xDE, 0x80, 0x3F, 0xFF, 0xD0, +0xFE, 0x3B, 0xE9, 0x43, 0x11, 0xD0, 0xD4, 0x1B, 0xDB, 0xD6, 0x8D, 0xED, 0xEC, 0x68, 0x02, 0xD8, +0x93, 0xD4, 0x54, 0x81, 0x81, 0xE8, 0x6A, 0x8E, 0xF3, 0xED, 0x4B, 0xE6, 0x7B, 0x50, 0x4B, 0x82, +0x2F, 0x52, 0x13, 0x80, 0x4F, 0xA5, 0x55, 0x13, 0xB0, 0xA7, 0x34, 0x9E, 0x6A, 0x34, 0x68, 0xA4, +0x3B, 0x0C, 0x0A, 0x12, 0x21, 0xC5, 0x98, 0xDC, 0x93, 0xC7, 0x24, 0x9A, 0xB2, 0x91, 0x01, 0xCB, +0x72, 0x6A, 0x71, 0x6E, 0xF1, 0x0E, 0x51, 0xB3, 0xEB, 0x8A, 0x4A, 0xE9, 0x00, 0xA2, 0x8A, 0x28, +0x03, 0xFF, 0xD1, 0xFE, 0x39, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD2, 0xFE, 0x39, 0xA8, +0xA2, 0x8A, 0xE9, 0x32, 0x03, 0xD0, 0xD4, 0x54, 0xF6, 0xE9, 0x4C, 0xAC, 0x2A, 0x3D, 0x49, 0x61, +0x45, 0x14, 0x54, 0x00, 0x51, 0x41, 0x20, 0x0C, 0x9A, 0x85, 0x98, 0x9F, 0x61, 0x40, 0x0F, 0x67, +0xEC, 0x2A, 0x3A, 0x4A, 0x28, 0x03, 0xFF, 0xD3, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, +0xD4, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD5, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, +0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x04, 0x81, 0xD6, 0xA1, 0x66, 0x27, +0xE9, 0x40, 0x0E, 0x67, 0xEC, 0x2A, 0x3A, 0x28, 0xA0, 0x0F, 0xFF, 0xD6, 0xFE, 0x34, 0x68, 0xA2, +0x8A, 0x46, 0x01, 0x45, 0x28, 0x04, 0xD3, 0x82, 0xFA, 0x9A, 0x06, 0xA2, 0xC6, 0x52, 0x80, 0x4F, +0x4A, 0x90, 0x28, 0x1E, 0xF4, 0xB4, 0x58, 0xAE, 0x42, 0x30, 0xA7, 0xBF, 0x14, 0xE0, 0xA3, 0xBF, +0x34, 0xEA, 0x29, 0x94, 0xA2, 0x84, 0x00, 0x0E, 0x94, 0xF5, 0xE5, 0x85, 0x36, 0x9C, 0x9F, 0x78, +0x50, 0x51, 0xFF, 0xD7, 0xFE, 0x35, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, +0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x29, 0x68, 0xA4, 0xE4, 0x90, 0xD2, 0x3F, 0xFF, +0xD0, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0xB7, 0x36, 0x4A, 0x88, 0x51, 0x45, 0x21, 0x60, 0x2A, 0x0A, +0x02, 0x40, 0x19, 0x35, 0x09, 0x24, 0x9A, 0x09, 0x27, 0x93, 0x49, 0x40, 0x05, 0x14, 0x51, 0x40, +0x05, 0x14, 0x51, 0x40, 0x1F, 0xFF, 0xD1, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD2, 0xFE, +0x34, 0x55, 0xD9, 0x7E, 0xEB, 0x11, 0x53, 0xAD, 0xD3, 0x8F, 0xBC, 0x03, 0x55, 0x6A, 0x28, 0x02, +0xFA, 0xDD, 0x46, 0x7A, 0x86, 0x5A, 0x9D, 0x5D, 0x5B, 0xEE, 0xB0, 0x35, 0x93, 0x46, 0x71, 0xC8, +0xE0, 0xD0, 0x06, 0xC5, 0x15, 0x98, 0xB3, 0xC8, 0xBF, 0xC5, 0x91, 0xEF, 0x53, 0xAD, 0xD7, 0xF7, +0x93, 0xF2, 0xA0, 0x0B, 0x94, 0x54, 0x4B, 0x34, 0x6D, 0xD1, 0x80, 0x3E, 0xF5, 0x2D, 0x00, 0x14, +0x51, 0x45, 0x00, 0x7F, 0xFF, 0xD3, 0xFE, 0x39, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x72, 0xB3, 0x23, 0x06, 0x46, 0x2A, 0xC3, 0xB8, 0xAD, 0xCB, 0x5D, 0x41, +0x65, 0x22, 0x39, 0x40, 0x49, 0x3B, 0x1E, 0xCD, 0x58, 0x34, 0x50, 0x07, 0x61, 0x45, 0x60, 0xDA, +0x5F, 0xB4, 0x58, 0x49, 0x89, 0x78, 0xFB, 0x1E, 0xEB, 0x5B, 0x8A, 0xCA, 0xEA, 0x1D, 0x18, 0x32, +0x9E, 0x84, 0x50, 0x07, 0xFF, 0xD4, 0xFE, 0x45, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x72, 0x7D, 0xEA, 0x9A, 0xAB, 0xD5, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x29, 0x29, 0x69, 0x2B, +0x5A, 0x68, 0x89, 0x1F, 0xFF, 0xD5, 0xFE, 0x47, 0x89, 0xC0, 0x24, 0xF4, 0xAC, 0xE9, 0x5C, 0xC8, +0xC4, 0xF6, 0xED, 0x53, 0xDC, 0x49, 0xFC, 0x03, 0x9F, 0x5A, 0xA9, 0x57, 0x52, 0x5D, 0x0C, 0x59, +0x56, 0xED, 0xB1, 0x18, 0x1E, 0xA6, 0xB3, 0xAA, 0xE5, 0xE1, 0xF9, 0xD5, 0x7D, 0x05, 0x53, 0xAD, +0x20, 0xB4, 0x04, 0x14, 0x51, 0x45, 0x50, 0xC2, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x0F, +0xFF, 0xD6, 0xFE, 0x3B, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x42, 0xA0, 0xF6, 0xA5, 0xA2, 0x86, +0x80, 0x61, 0x4F, 0x43, 0x4C, 0x2A, 0x47, 0x6A, 0x9A, 0x8A, 0x87, 0x04, 0x3E, 0x62, 0x0A, 0x2A, +0x7C, 0x03, 0x4D, 0x28, 0x3B, 0x71, 0x50, 0xE9, 0xB2, 0x94, 0x88, 0xA8, 0xA7, 0x14, 0x3F, 0x5A, +0x6F, 0x4E, 0xB5, 0x2D, 0x15, 0x73, 0xFF, 0xD7, 0xFE, 0x39, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD0, +0xFE, 0x39, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x29, 0xCA, 0x76, 0xB2, 0x9F, 0x42, +0x29, 0xB4, 0x50, 0x06, 0xBD, 0x34, 0xA2, 0x37, 0xDE, 0x55, 0x3F, 0x85, 0x08, 0x72, 0x88, 0x7D, +0x45, 0x3A, 0xBA, 0x4C, 0x8A, 0xED, 0x6D, 0x19, 0xE9, 0xB9, 0x6A, 0x26, 0xB5, 0x61, 0xF7, 0x58, +0x1A, 0xBB, 0x45, 0x00, 0x7F, 0xFF, 0xD1, 0xFE, 0x3A, 0xDA, 0x19, 0x17, 0xAA, 0x1F, 0xC2, 0xA3, +0xAD, 0x7A, 0x42, 0xAA, 0xDF, 0x79, 0x41, 0xAE, 0x93, 0x23, 0x22, 0x8A, 0xD1, 0x6B, 0x78, 0xDB, +0xA0, 0x2A, 0x7D, 0xAA, 0x26, 0xB4, 0xFE, 0xEB, 0xFE, 0x74, 0x01, 0x4E, 0x8A, 0x99, 0xA0, 0x95, +0x73, 0xF2, 0xE4, 0x7B, 0x54, 0x44, 0x11, 0xD4, 0x11, 0x40, 0x09, 0x45, 0x14, 0x50, 0x01, 0x45, +0x14, 0x50, 0x07, 0xFF, 0xD2, 0xFE, 0x39, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x18, 0xDD, 0x69, 0xB4, +0xA4, 0xE4, 0x93, 0x49, 0xD3, 0x93, 0x5C, 0xCD, 0xDC, 0x90, 0xA6, 0xB3, 0x81, 0xD3, 0x93, 0x4C, +0x67, 0xCF, 0x03, 0x81, 0x4C, 0xA4, 0x02, 0x92, 0x4F, 0x5A, 0x4A, 0x28, 0xA0, 0x02, 0x8A, 0x28, +0xA0, 0x0F, 0xFF, 0xD3, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD4, 0xFE, 0x36, 0x68, +0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x07, 0xFF, 0xD5, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, +0x01, 0x48, 0x58, 0x0F, 0xAD, 0x35, 0x9F, 0x1C, 0x0E, 0xB4, 0xCC, 0x13, 0xD8, 0x9A, 0x00, 0x42, +0x49, 0x39, 0x34, 0x94, 0xFD, 0xA7, 0xB9, 0xA5, 0xDA, 0x28, 0x1A, 0x8B, 0x19, 0xD6, 0x94, 0x29, +0x3E, 0xD5, 0x25, 0x14, 0x58, 0xBE, 0x43, 0xFF, 0xD6, 0xFE, 0x35, 0x76, 0x8A, 0x50, 0x00, 0xE9, +0x4B, 0x45, 0x02, 0x49, 0x05, 0x14, 0x51, 0x40, 0xC2, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, +0x02, 0xA4, 0x4E, 0xA4, 0xD4, 0x75, 0x2A, 0x74, 0x26, 0x80, 0x3F, 0xFF, 0xD7, 0xFE, 0x35, 0xA8, +0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x29, 0x68, 0xA9, 0x72, 0x48, 0x69, 0x05, +0x14, 0x51, 0x59, 0xB9, 0xB6, 0x52, 0x88, 0x51, 0x45, 0x15, 0x05, 0x1F, 0xFF, 0xD0, 0xFE, 0x35, +0xE8, 0xA2, 0x9A, 0xCC, 0x07, 0xD6, 0x80, 0x06, 0x6C, 0x7D, 0x6A, 0x22, 0x49, 0x39, 0x34, 0x9D, +0x79, 0x34, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, +0xFF, 0xD1, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD2, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x29, 0xCA, 0xEE, 0x9F, 0x75, 0x88, 0xA6, 0xD1, +0x40, 0x16, 0x56, 0xE9, 0xC7, 0xDE, 0x01, 0xAA, 0x75, 0xB9, 0x8C, 0xF5, 0xCA, 0x9A, 0xCF, 0xA2, +0x80, 0x3F, 0xFF, 0xD3, 0xFE, 0x39, 0x43, 0x2B, 0x7D, 0xD6, 0x06, 0x9D, 0x59, 0x00, 0x91, 0xC8, +0x24, 0x1A, 0x95, 0x67, 0x95, 0x7F, 0x8B, 0x70, 0xF7, 0xA0, 0x0D, 0x2A, 0x2A, 0xA2, 0xDD, 0x8E, +0x8C, 0xB8, 0xFA, 0x54, 0xEB, 0x34, 0x6D, 0xD1, 0x86, 0x68, 0x02, 0x4A, 0x28, 0xA2, 0x80, 0x0A, +0x28, 0xA2, 0x80, 0x0A, 0xB1, 0x6F, 0x73, 0x2D, 0xBB, 0x65, 0x0E, 0x57, 0xBA, 0x9E, 0x86, 0xAB, +0xD1, 0x40, 0x1F, 0xFF, 0xD4, 0xFE, 0x43, 0xED, 0xEE, 0x62, 0xB8, 0x5C, 0xA1, 0xC3, 0x77, 0x53, +0xD4, 0x55, 0x8A, 0xE4, 0x55, 0xD9, 0x18, 0x3A, 0x31, 0x56, 0x1D, 0x08, 0xAD, 0xCB, 0x4B, 0xF5, +0x98, 0xAC, 0x73, 0x6D, 0x49, 0x7A, 0x03, 0xD9, 0xA8, 0x03, 0x4A, 0x8A, 0x28, 0xA0, 0x02, 0xA6, +0x53, 0x95, 0x15, 0x0D, 0x48, 0x87, 0xA8, 0xA0, 0x09, 0x28, 0xA2, 0x8A, 0x00, 0x2A, 0x39, 0x1C, +0x46, 0xA4, 0xF7, 0xED, 0x4F, 0xAC, 0xF9, 0xA4, 0xDE, 0xDF, 0xEC, 0x8E, 0x95, 0xB4, 0x9D, 0x91, +0x93, 0x67, 0xFF, 0xD5, 0xFE, 0x42, 0x89, 0x24, 0x92, 0x7A, 0xD2, 0x51, 0x41, 0x38, 0x04, 0xD2, +0x30, 0x32, 0xAE, 0x0E, 0x65, 0x7F, 0xCA, 0xA1, 0xA5, 0x27, 0x24, 0x9F, 0x5A, 0x4A, 0xEA, 0x48, +0xA0, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD6, 0xFE, +0x3B, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD7, 0xFE, 0x3B, 0x4A, 0x83, 0xDB, 0x14, 0xC2, +0x87, 0xB1, 0xCD, 0x49, 0x45, 0x6E, 0xE0, 0x8C, 0xEE, 0xC8, 0x48, 0x23, 0xB5, 0x25, 0x4F, 0x48, +0x54, 0x1E, 0xD5, 0x0E, 0x9F, 0x61, 0xA9, 0x10, 0xD1, 0x52, 0x14, 0xF4, 0x34, 0xD2, 0xA4, 0x7B, +0xD4, 0xB8, 0xB2, 0xAE, 0x36, 0x8A, 0x28, 0xA9, 0x18, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD0, 0xFE, +0x39, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xD1, 0xB7, 0x39, +0x89, 0x7D, 0xB8, 0xA9, 0xAA, 0xB5, 0xA9, 0xF9, 0x58, 0x7A, 0x1A, 0xB3, 0x5D, 0x11, 0xD8, 0xCD, +0xEE, 0x14, 0x51, 0x45, 0x31, 0x1F, 0xFF, 0xD1, 0xFE, 0x3F, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, +0x28, 0xA2, 0x80, 0x0A, 0x08, 0x07, 0xA8, 0x06, 0x8A, 0x28, 0x02, 0x23, 0x04, 0x4D, 0x9F, 0x97, +0x07, 0xDA, 0xA1, 0x6B, 0x41, 0xFC, 0x2E, 0x7F, 0x1A, 0xB7, 0x45, 0x00, 0x67, 0xB5, 0xBC, 0x8B, +0xD0, 0x06, 0x1E, 0xD5, 0x09, 0x56, 0x5E, 0xAA, 0xC3, 0xF0, 0xAD, 0x6A, 0x70, 0x52, 0xDD, 0x14, +0x9A, 0x00, 0xFF, 0xD2, 0xFE, 0x39, 0xA8, 0x3D, 0x0D, 0x6D, 0x7D, 0x88, 0x3F, 0xDE, 0x55, 0x5A, +0xA7, 0x7B, 0x64, 0xB0, 0xC3, 0xBD, 0x24, 0x6E, 0xB8, 0xE9, 0x5B, 0x4A, 0x6A, 0xC6, 0x37, 0x32, +0xCB, 0x01, 0xF5, 0xA8, 0x89, 0x24, 0xD4, 0x9B, 0x07, 0xA9, 0xA4, 0xD8, 0x3D, 0xEB, 0x01, 0x11, +0x51, 0x52, 0xEC, 0x1E, 0xF4, 0x6C, 0x1E, 0xF4, 0x01, 0x15, 0x15, 0x36, 0xC5, 0xF4, 0xA3, 0x62, +0xFA, 0x50, 0x04, 0x34, 0x54, 0xDB, 0x17, 0xD2, 0x8D, 0x8B, 0xE9, 0x40, 0x1F, 0xFF, 0xD3, 0xFE, +0x36, 0x68, 0xA9, 0xB6, 0x2F, 0xA5, 0x2E, 0xD5, 0x1D, 0x85, 0x23, 0x02, 0x0A, 0x2A, 0x7C, 0x0F, +0x41, 0x46, 0x07, 0xA0, 0xA0, 0x08, 0x28, 0xA9, 0xF0, 0x3D, 0x05, 0x18, 0x1E, 0x82, 0x80, 0x20, +0xA2, 0xAC, 0x51, 0x40, 0x15, 0xE8, 0xAB, 0x14, 0x50, 0x07, 0xFF, 0xD4, 0xFE, 0x36, 0xB0, 0x4F, +0x41, 0x9A, 0x30, 0x7D, 0x0D, 0x4F, 0x45, 0x23, 0x02, 0x0C, 0x1F, 0x43, 0x46, 0x0F, 0xA1, 0xA9, +0xE8, 0xA0, 0x08, 0x30, 0x7D, 0x0D, 0x2E, 0xC6, 0xF4, 0xA9, 0xA9, 0x37, 0x28, 0xEE, 0x28, 0x02, +0x2D, 0x8D, 0xE9, 0x46, 0xC6, 0xF4, 0xA9, 0x37, 0xAF, 0xD6, 0x9B, 0xE6, 0x7B, 0x50, 0x03, 0x76, +0x37, 0xA5, 0x1B, 0x1B, 0xD2, 0x97, 0x7B, 0x7D, 0x29, 0x37, 0x31, 0xEE, 0x68, 0x03, 0xFF, 0xD5, +0xFE, 0x36, 0xF6, 0x91, 0xD7, 0x02, 0x8D, 0xBE, 0xEB, 0xF9, 0xD3, 0x69, 0x0B, 0x01, 0xF5, 0xA4, +0x60, 0x29, 0xC0, 0xEE, 0x28, 0xDA, 0x5D, 0x72, 0xA7, 0x8A, 0x80, 0x92, 0x7A, 0xD5, 0xB8, 0x7E, +0xE0, 0xA0, 0x08, 0x76, 0x63, 0xB5, 0x15, 0x64, 0x8A, 0x61, 0x50, 0x7A, 0x8A, 0xD1, 0x46, 0xFB, +0x1A, 0x29, 0x10, 0xD1, 0x52, 0x14, 0xF4, 0x34, 0xC2, 0x08, 0xED, 0x52, 0xE2, 0xD1, 0x57, 0x12, +0x8A, 0x28, 0xA4, 0x33, 0xFF, 0xD6, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x2A, 0x64, 0xFB, 0xB5, 0x0D, 0x4C, 0xBC, 0x28, +0xA0, 0x0F, 0xFF, 0xD7, 0xFE, 0x35, 0xA8, 0xA5, 0xA2, 0xB7, 0x73, 0x46, 0x69, 0x05, 0x14, 0x51, +0x59, 0x39, 0xB2, 0xD4, 0x42, 0x8A, 0x28, 0xA9, 0x18, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x31, +0x9F, 0x1C, 0x0E, 0xB4, 0x01, 0xFF, 0xD0, 0xFE, 0x35, 0x19, 0xB1, 0xC0, 0xEB, 0x51, 0x51, 0x45, +0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, +0x00, 0x7F, 0xFF, 0xD1, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD2, 0xFE, 0x33, 0xE8, 0xA2, +0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0xFF, 0xD3, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x7A, 0xC8, +0xE9, 0xF7, 0x58, 0x8A, 0x9D, 0x6E, 0x98, 0x7D, 0xE5, 0x04, 0x55, 0x5A, 0x28, 0x03, 0x45, 0x6E, +0x23, 0x6E, 0xA4, 0xA9, 0xF7, 0xA9, 0x83, 0x06, 0x19, 0x52, 0x08, 0xAC, 0x8A, 0x50, 0x48, 0xE4, +0x12, 0x0D, 0x00, 0x6B, 0xD1, 0x59, 0xAB, 0x71, 0x2A, 0xF7, 0xDC, 0x3D, 0xEA, 0xC2, 0xDD, 0x29, +0xC6, 0xE5, 0x20, 0xFB, 0x50, 0x07, 0xFF, 0xD4, 0xFE, 0x39, 0xE8, 0xA8, 0xD6, 0x58, 0xDF, 0xEE, +0xB0, 0xA9, 0x28, 0x03, 0x4A, 0xD7, 0x50, 0x68, 0xB0, 0x93, 0x65, 0xE3, 0xE8, 0x0F, 0x75, 0xAD, +0xD5, 0x65, 0x75, 0x0C, 0x8C, 0x19, 0x4F, 0x42, 0x2B, 0x90, 0xAB, 0x36, 0xF7, 0x52, 0x5B, 0x36, +0x54, 0xEE, 0x43, 0xD5, 0x4F, 0x43, 0x40, 0x1D, 0x3D, 0x39, 0x4E, 0x18, 0x55, 0x5B, 0x7B, 0x98, +0xAE, 0x14, 0x32, 0x1C, 0x37, 0x75, 0x3D, 0x45, 0x58, 0xA0, 0x0B, 0x14, 0x50, 0x39, 0xE6, 0x9A, +0xEC, 0x11, 0x4B, 0x1A, 0xA8, 0xAD, 0x45, 0x26, 0x41, 0x71, 0x26, 0xD1, 0xB0, 0x75, 0x3D, 0x7E, +0x95, 0x4A, 0x94, 0x92, 0x49, 0x27, 0x92, 0x69, 0x29, 0x49, 0xDD, 0x98, 0x9F, 0xFF, 0xD5, 0xFE, +0x42, 0x6A, 0x29, 0x9B, 0x6C, 0x4E, 0x7D, 0xB1, 0x52, 0xD5, 0x5B, 0xB6, 0xC4, 0x60, 0x7A, 0x9A, +0x23, 0xB9, 0x81, 0x9D, 0x45, 0x14, 0x57, 0x49, 0x41, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD6, 0xFE, 0x3B, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, +0xD7, 0xFE, 0x3B, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0x69, 0x41, 0xF4, 0xA7, 0x51, 0x49, 0xC5, 0x01, 0x19, 0x43, 0xDB, 0x9A, 0x69, 0x04, 0x75, +0xA9, 0xA8, 0xA8, 0x74, 0xCA, 0xE6, 0x3F, 0xFF, 0xD0, 0xFE, 0x39, 0xE8, 0xA9, 0x8A, 0x83, 0xDA, +0x9A, 0x53, 0xD0, 0xD5, 0xB8, 0x32, 0x79, 0x88, 0xE8, 0xA5, 0x2A, 0x47, 0x6A, 0x4A, 0x8B, 0x14, +0x14, 0x51, 0x45, 0x00, 0x5A, 0xB5, 0x3F, 0x3B, 0x0F, 0x51, 0x57, 0x6B, 0x36, 0x03, 0x89, 0x54, +0xFE, 0x15, 0xA5, 0x5B, 0x53, 0xD8, 0xCE, 0x41, 0x45, 0x14, 0x55, 0x88, 0xFF, 0xD1, 0xFE, 0x3F, +0xA8, 0xA2, 0x94, 0x02, 0x7A, 0x02, 0x6B, 0xA4, 0xC8, 0x4A, 0x2A, 0x61, 0x0C, 0x87, 0xB6, 0x3E, +0xB5, 0x20, 0xB7, 0xFE, 0xF3, 0x7E, 0x55, 0x2E, 0x68, 0x57, 0x2A, 0xD2, 0x80, 0x4F, 0x00, 0x13, +0x57, 0x84, 0x51, 0x8F, 0xE1, 0x07, 0xEB, 0x52, 0x74, 0xE9, 0x52, 0xEA, 0x85, 0xCA, 0x4B, 0x03, +0x9E, 0xA0, 0x2F, 0xD6, 0xA5, 0x16, 0xE3, 0xF8, 0x98, 0x9A, 0xB1, 0x45, 0x43, 0xA8, 0xC5, 0x71, +0x82, 0x24, 0x5E, 0x8A, 0x29, 0xFD, 0x28, 0xA2, 0xA1, 0xB0, 0x3F, 0xFF, 0xD2, 0xFE, 0x44, 0x6A, +0x96, 0xA0, 0xB9, 0xB5, 0x73, 0xE8, 0x41, 0xFD, 0x6A, 0xED, 0x57, 0xBB, 0x1B, 0xAD, 0xA6, 0x1D, +0x7E, 0x5C, 0xD2, 0x30, 0x39, 0x7A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, +0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD3, 0xFE, 0x38, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, +0x19, 0x1E, 0xA2, 0x9B, 0xBD, 0x7D, 0x68, 0x01, 0xD4, 0x53, 0x37, 0x8E, 0xC2, 0x93, 0x79, 0xEC, +0x28, 0x02, 0x4A, 0x2A, 0x1D, 0xED, 0xEB, 0x49, 0x93, 0xEA, 0x68, 0x02, 0x7C, 0x81, 0xD4, 0xE2, +0x93, 0x72, 0xFA, 0xD4, 0x14, 0x50, 0x07, 0xFF, 0xD4, 0xFE, 0x37, 0xB7, 0x8F, 0x7A, 0x4D, 0xE7, +0xB0, 0x15, 0x1D, 0x14, 0x8C, 0x07, 0xEF, 0x6F, 0xA5, 0x26, 0xE3, 0xEA, 0x69, 0xB4, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x21, 0x20, 0x75, 0xA8, 0x8B, 0x13, 0xF4, +0xA0, 0x0F, 0xFF, 0xD5, 0xFE, 0x35, 0x59, 0xFB, 0x0A, 0x65, 0x25, 0x14, 0x8C, 0x02, 0xAE, 0xC7, +0xF7, 0x16, 0xA9, 0x55, 0xD8, 0xFE, 0xE2, 0xD0, 0x03, 0xE8, 0xA2, 0x8A, 0x00, 0x69, 0x18, 0xA4, +0xA7, 0xD2, 0x11, 0xE9, 0x5B, 0x46, 0xA7, 0x71, 0xDC, 0x61, 0x50, 0x7B, 0x53, 0x4A, 0x7A, 0x1A, +0x7D, 0x15, 0x4E, 0x28, 0xAB, 0x9F, 0xFF, 0xD6, 0xFE, 0x36, 0x0A, 0x91, 0xDA, 0x92, 0xA7, 0xA4, +0x20, 0x1E, 0xA2, 0xB4, 0x74, 0xFB, 0x10, 0xA4, 0x43, 0x45, 0x48, 0x53, 0xD0, 0xD3, 0x0A, 0x91, +0xDA, 0xA1, 0xC5, 0xA2, 0x93, 0x12, 0x8A, 0x28, 0xA4, 0x30, 0xA2, 0x8A, 0x28, 0x00, 0xAB, 0x03, +0x80, 0x05, 0x57, 0x1C, 0x90, 0x2A, 0xC5, 0x00, 0x7F, 0xFF, 0xD7, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0xA2, 0x66, 0xCF, 0x03, 0xA5, +0x00, 0x0C, 0xDD, 0x85, 0x32, 0x8A, 0x28, 0x03, 0xFF, 0xD0, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0xFF, 0xD1, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD2, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0xFF, 0xD3, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD4, 0xFE, 0x33, 0xEA, 0x45, 0x96, 0x45, +0xE8, 0xE6, 0xA3, 0xA2, 0x80, 0x2D, 0x2D, 0xD3, 0x0F, 0xBC, 0xA0, 0xFD, 0x2A, 0x75, 0xB8, 0x8D, +0xBB, 0xED, 0x3E, 0xF5, 0x9D, 0x45, 0x00, 0x6C, 0xC7, 0x21, 0x46, 0x59, 0x23, 0x7C, 0x30, 0xE8, +0x45, 0x6F, 0x5A, 0xDF, 0xAC, 0xDB, 0x63, 0x93, 0x09, 0x2F, 0xAF, 0x66, 0xAE, 0x24, 0x12, 0x39, +0x04, 0x83, 0xED, 0x52, 0xAD, 0xC4, 0xAB, 0xD4, 0xEE, 0x1E, 0xF4, 0x01, 0xE9, 0x08, 0x72, 0x2A, +0x94, 0xF2, 0x6F, 0x6C, 0x03, 0xF2, 0x8A, 0xC5, 0xD3, 0xB5, 0x39, 0x1F, 0x36, 0xD2, 0x0E, 0xAB, +0x85, 0x27, 0xF9, 0x56, 0x9D, 0x17, 0x33, 0x9B, 0x0A, 0x28, 0xA2, 0x91, 0x07, 0xFF, 0xD5, 0xFE, +0x42, 0x6A, 0x85, 0xE1, 0xF9, 0xD5, 0x7D, 0x05, 0x5F, 0xAC, 0xAB, 0x83, 0x99, 0x5F, 0xF2, 0xAA, +0xA7, 0xB9, 0x82, 0x21, 0xA2, 0x8A, 0x2B, 0x72, 0x82, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, +0x02, 0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD6, 0xFE, 0x3B, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, +0xD7, 0xFE, 0x3B, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD0, 0xFE, 0x3B, 0xA8, 0xA2, 0x8A, +0xE9, 0x32, 0x0A, 0x08, 0x07, 0xA8, 0xCD, 0x19, 0xC7, 0x5A, 0x4D, 0xCB, 0xEB, 0x43, 0x40, 0x34, +0xA0, 0xEC, 0x71, 0x4D, 0x2A, 0x47, 0xBD, 0x3F, 0x78, 0xF7, 0x34, 0xDD, 0xE7, 0xB0, 0xA9, 0x70, +0x43, 0xE6, 0x62, 0x29, 0x28, 0xEA, 0x7B, 0x82, 0x2B, 0x5A, 0xB3, 0x23, 0x0D, 0x2C, 0x8A, 0x9E, +0xA7, 0xF2, 0xAE, 0x88, 0x01, 0x81, 0x81, 0x8A, 0x4B, 0xDD, 0x1B, 0xD4, 0xA8, 0x21, 0x90, 0xF6, +0xC7, 0xD6, 0xA5, 0x16, 0xFF, 0x00, 0xDE, 0x6F, 0xCA, 0xA7, 0xC9, 0xA3, 0x26, 0x86, 0xA4, 0x41, +0xFF, 0xD1, 0xFE, 0x43, 0x44, 0x31, 0x8F, 0xE1, 0xCF, 0xD6, 0xA4, 0xC6, 0x3A, 0x53, 0x72, 0x68, +0xC9, 0xAB, 0x74, 0xD9, 0x8D, 0x87, 0x51, 0x4D, 0xC9, 0xA3, 0x26, 0x8F, 0x66, 0xC5, 0x61, 0xD4, +0x52, 0x66, 0x8C, 0xD2, 0xF6, 0x6C, 0x2C, 0x2D, 0x14, 0x99, 0xA3, 0x34, 0x7B, 0x36, 0x16, 0x16, +0x8A, 0x4C, 0xD1, 0x9A, 0x5C, 0x8C, 0x2C, 0x7F, 0xFF, 0xD2, 0xFE, 0x44, 0x69, 0x92, 0x0C, 0xC7, +0x22, 0xFA, 0xA9, 0x14, 0xEC, 0xD1, 0x9F, 0x6A, 0x7C, 0x8C, 0xC2, 0xC7, 0x21, 0x45, 0x24, 0x85, +0xA3, 0x91, 0xE3, 0x65, 0xC3, 0x29, 0x20, 0xD4, 0x7B, 0xDB, 0xE9, 0x52, 0x04, 0xB4, 0x54, 0x3B, +0x98, 0xF7, 0x34, 0x94, 0x01, 0x36, 0xE1, 0xEA, 0x29, 0x37, 0xAF, 0xD6, 0xA1, 0xA2, 0x80, 0x25, +0x2F, 0xE8, 0x29, 0xBB, 0xCF, 0xB5, 0x32, 0x8A, 0x00, 0xFF, 0xD3, 0xFE, 0x36, 0xF7, 0x37, 0xAD, +0x26, 0x49, 0xEA, 0x73, 0x49, 0x45, 0x23, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, +0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD4, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, +0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x12, 0x07, 0x5A, 0x00, 0x29, 0x8C, 0xF8, 0xE0, 0x75, +0xA6, 0x96, 0x27, 0xD8, 0x53, 0x28, 0x01, 0x69, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD5, 0xFE, 0x34, +0x68, 0xA2, 0x8A, 0x46, 0x01, 0x57, 0x90, 0x61, 0x54, 0x55, 0x1A, 0xBE, 0xBF, 0x74, 0x7D, 0x28, +0x01, 0x68, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x08, 0xA6, 0x91, 0x4E, 0xA2, 0xAA, 0x33, +0x68, 0x2E, 0x7F, 0xFF, 0xD6, 0xFE, 0x37, 0xA8, 0xA7, 0x11, 0xE9, 0x4D, 0xAE, 0x85, 0x2B, 0x98, +0x85, 0x14, 0x51, 0x4C, 0x60, 0x40, 0x3D, 0x45, 0x30, 0xA0, 0xEC, 0x71, 0x4F, 0xA2, 0x93, 0x8A, +0x63, 0xB9, 0x11, 0x52, 0x3B, 0x53, 0x6A, 0x7A, 0x08, 0x07, 0xA8, 0xA8, 0x74, 0xFB, 0x0D, 0x48, +0x85, 0x7E, 0xF0, 0xAD, 0x2B, 0x78, 0xB3, 0x89, 0x18, 0x71, 0xDB, 0xDE, 0xAA, 0xC5, 0x1A, 0xB4, +0xAA, 0x09, 0x20, 0x7F, 0x3A, 0xD6, 0x00, 0x00, 0x00, 0xE0, 0x51, 0x18, 0x77, 0x07, 0x23, 0xFF, +0xD7, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA3, 0xA7, 0x26, 0xA1, +0x66, 0x27, 0xE9, 0x40, 0x0A, 0xCD, 0x9E, 0x07, 0x4A, 0x65, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x07, 0xFF, 0xD0, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD1, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0xFF, 0xD2, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD3, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0xFF, 0xD4, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x94, 0x29, 0x34, 0x00, 0x95, +0x2A, 0xA6, 0x39, 0x3C, 0x9A, 0x70, 0x50, 0x29, 0x68, 0x02, 0x68, 0x09, 0x59, 0x01, 0x07, 0x04, +0x72, 0x2B, 0xA8, 0x86, 0x51, 0x2C, 0x6A, 0xE3, 0xAF, 0x7F, 0x63, 0x5C, 0xBC, 0x1F, 0x78, 0xFD, +0x2B, 0x5A, 0xCA, 0x5D, 0x8F, 0xE5, 0xB1, 0xF9, 0x5B, 0xF9, 0xD5, 0xF2, 0xFB, 0xA6, 0x73, 0x35, +0xA8, 0xA2, 0x8A, 0xCC, 0x83, 0xFF, 0xD5, 0xFE, 0x42, 0x49, 0xC0, 0x26, 0xB1, 0x49, 0xC9, 0x27, +0xD6, 0xB5, 0x66, 0x6D, 0xB1, 0x39, 0xF6, 0xC5, 0x64, 0xD6, 0xB4, 0x91, 0x8A, 0x0A, 0x28, 0xA2, +0xB4, 0x18, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD6, +0xFE, 0x3B, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, +0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD7, 0xFE, 0x3B, 0xA8, 0xA2, 0x8C, 0x81, +0xD4, 0x8A, 0xE9, 0x32, 0x0A, 0x29, 0x37, 0x2F, 0xAD, 0x37, 0x78, 0xF4, 0x34, 0x00, 0xFA, 0x2A, +0x3D, 0xE7, 0xB0, 0x14, 0xDD, 0xCD, 0xEB, 0x40, 0x13, 0x52, 0x6E, 0x1E, 0xA2, 0xA1, 0xC9, 0x3D, +0x4E, 0x69, 0x28, 0x02, 0x6D, 0xEB, 0xEB, 0x49, 0xE6, 0x7A, 0x0A, 0x8A, 0x8A, 0x00, 0xFF, 0xD0, +0xFE, 0x3A, 0x77, 0xB7, 0xB0, 0xA4, 0xDC, 0xDE, 0xA6, 0x9B, 0x45, 0x74, 0x99, 0x05, 0x14, 0x51, +0x40, 0x05, 0x14, 0x52, 0x80, 0x49, 0x00, 0x72, 0x68, 0x03, 0x46, 0xC6, 0x3F, 0xBD, 0x29, 0xFA, +0x0A, 0xD6, 0x1D, 0x05, 0x57, 0x89, 0x04, 0x71, 0xAA, 0x0E, 0xC2, 0xAC, 0x2F, 0x41, 0x5C, 0xED, +0xDD, 0x8E, 0x1B, 0x8B, 0x45, 0x14, 0x53, 0x8C, 0xAC, 0x5B, 0x47, 0xFF, 0xD1, 0xFE, 0x43, 0xA8, +0xA5, 0xA4, 0xAE, 0x88, 0xCA, 0xE6, 0x4D, 0x05, 0x14, 0x51, 0x4C, 0x02, 0x8A, 0x28, 0xA0, 0x02, +0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD2, 0xFE, 0x43, 0xA8, 0xA2, 0x8A, 0xE9, +0x32, 0x30, 0x75, 0x68, 0x76, 0xC8, 0x93, 0x81, 0xC3, 0x0C, 0x37, 0xD6, 0xB2, 0x2B, 0xAD, 0xBB, +0x87, 0xCF, 0xB7, 0x92, 0x3F, 0xE2, 0xC6, 0x47, 0xD6, 0xB9, 0x2F, 0xAF, 0x15, 0x85, 0x45, 0xA9, +0x2C, 0x28, 0xA2, 0x8A, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD3, +0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD4, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, +0x45, 0x04, 0xE3, 0x93, 0x51, 0x33, 0xE7, 0x81, 0xC0, 0xA0, 0x07, 0xB3, 0x01, 0xD3, 0x93, 0x51, +0x12, 0x4F, 0x5A, 0x4A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD5, +0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x57, 0xC7, 0x41, 0x54, 0x2A, 0xF8, 0xE8, 0x28, 0x01, +0x68, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD6, 0xFE, 0x38, +0x68, 0x23, 0x34, 0x51, 0x49, 0x33, 0x01, 0xB4, 0x94, 0xFA, 0x69, 0x15, 0xB4, 0x67, 0x7D, 0x18, +0xEE, 0x25, 0x14, 0x51, 0x5A, 0x0C, 0x28, 0xA2, 0x8A, 0x00, 0x92, 0x33, 0xB6, 0x44, 0x3E, 0xF5, +0xA9, 0x58, 0xF5, 0xAE, 0xA7, 0x72, 0xAB, 0x7A, 0x8C, 0xD0, 0x07, 0xFF, 0xD7, 0xFE, 0x35, 0xE8, +0xA2, 0x8A, 0x00, 0x29, 0x09, 0x00, 0x64, 0xD0, 0x48, 0x15, 0x09, 0x24, 0x9A, 0x00, 0x09, 0xCD, +0x25, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD0, 0xFE, 0x33, +0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD1, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD2, 0xFE, 0x33, +0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD3, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD4, 0xFE, 0x33, +0xE8, 0xA2, 0xA5, 0x54, 0xC7, 0x27, 0x93, 0x40, 0x0D, 0x54, 0xCF, 0x27, 0x81, 0x52, 0xD1, 0x45, +0x00, 0x14, 0x51, 0x45, 0x00, 0x4F, 0x07, 0x56, 0xAB, 0x23, 0x8E, 0x7B, 0xD5, 0x78, 0x3F, 0x8A, +0xA7, 0xAD, 0xE1, 0xB1, 0x9C, 0xB7, 0x37, 0x60, 0x97, 0xCE, 0x89, 0x5B, 0xF8, 0xBA, 0x11, 0xEF, +0x53, 0x56, 0x3D, 0xA4, 0xDE, 0x54, 0x9B, 0x5B, 0x3B, 0x1B, 0x8F, 0xA1, 0xAD, 0x8A, 0xC6, 0x71, +0xB3, 0x21, 0x9F, 0xFF, 0xD5, 0xFE, 0x3F, 0xEE, 0xDB, 0x11, 0x81, 0xEA, 0x6B, 0x3A, 0xAE, 0x5E, +0x1F, 0x9D, 0x57, 0xD0, 0x55, 0x3A, 0xDE, 0x0B, 0x43, 0x14, 0x14, 0x51, 0x45, 0x50, 0xC2, 0x8A, +0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD6, 0xFE, 0x3B, 0xA8, +0xA3, 0x20, 0x75, 0x22, 0x9B, 0xBD, 0x7D, 0x6B, 0xA4, 0xC8, 0x75, 0x14, 0xCD, 0xE3, 0xB0, 0xA4, +0xDE, 0x7B, 0x01, 0x40, 0x12, 0x51, 0x50, 0xEE, 0x6F, 0x5A, 0x4C, 0x93, 0xD4, 0xE6, 0x80, 0x26, +0xDC, 0x3D, 0x45, 0x26, 0xF5, 0xF7, 0x35, 0x0D, 0x14, 0x01, 0x27, 0x99, 0xED, 0x49, 0xBD, 0xBD, +0x85, 0x32, 0x8A, 0x00, 0xFF, 0xD7, 0xFE, 0x3A, 0x37, 0x1F, 0x53, 0x4D, 0xA2, 0x8A, 0xE9, 0x32, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, +0x3F, 0xFF, 0xD0, 0xFE, 0x39, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0xB9, +0x67, 0x1E, 0xF9, 0x77, 0x1E, 0x8B, 0xCD, 0x53, 0xAD, 0xBB, 0x58, 0xFC, 0xB8, 0x57, 0x3F, 0x78, +0xF2, 0x6A, 0x66, 0xEC, 0x84, 0xCB, 0x15, 0x2A, 0xF4, 0x15, 0x15, 0x48, 0xBD, 0x2B, 0x9D, 0x0E, +0x1B, 0x8E, 0xA2, 0x8A, 0x29, 0x9A, 0x9F, 0xFF, 0xD1, 0xFE, 0x43, 0xE8, 0xA2, 0x8A, 0x00, 0x3E, +0x94, 0x94, 0xB4, 0x56, 0xB1, 0x9F, 0x72, 0x1C, 0x7B, 0x09, 0x45, 0x2D, 0x25, 0x68, 0x48, 0x51, +0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD2, 0xFE, 0x43, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, +0x16, 0xB9, 0x7D, 0x42, 0x0F, 0x26, 0xE1, 0x88, 0x18, 0x46, 0xF9, 0x85, 0x74, 0xF5, 0x9D, 0xA9, +0xC1, 0xE6, 0xDB, 0xF9, 0x83, 0xEF, 0xA7, 0x3F, 0x87, 0x7A, 0x99, 0xAB, 0xA1, 0x33, 0x9B, 0xA2, +0x8A, 0x2B, 0x9C, 0x41, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD3, 0xFE, 0x36, +0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD4, 0xFE, 0x36, 0x69, 0xAC, 0xC0, 0x7D, 0x69, 0xAC, 0xFD, +0x85, 0x47, 0x48, 0xC0, 0x52, 0x49, 0xEB, 0x49, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, +0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD5, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x02, +0xD5, 0xFA, 0xA0, 0x3A, 0x8A, 0xBF, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, +0x14, 0x51, 0x40, 0x1F, 0xFF, 0xD6, 0xFE, 0x38, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, +0x02, 0x11, 0x4D, 0xA7, 0xD1, 0x5A, 0x46, 0x76, 0xD1, 0x85, 0xC6, 0x51, 0x4A, 0x46, 0x29, 0x2B, +0x64, 0xEE, 0x50, 0x56, 0x94, 0x07, 0x31, 0x2F, 0xB7, 0x15, 0x9B, 0x57, 0xAD, 0x4F, 0xCA, 0xCB, +0xEF, 0x9A, 0x00, 0xFF, 0xD7, 0xFE, 0x35, 0xE9, 0xAC, 0xC0, 0x0F, 0x7A, 0x19, 0xB1, 0xF5, 0xA8, +0x49, 0xCF, 0x26, 0x80, 0x14, 0x92, 0x4E, 0x4D, 0x25, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD0, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0xFF, 0xD1, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD2, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0xFF, 0xD3, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x29, 0x42, 0x93, 0x4E, 0x54, 0xCF, 0x27, 0x81, 0x52, 0xD0, 0x07, 0xFF, +0xD4, 0xFE, 0x35, 0x82, 0x81, 0x4B, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, +0x01, 0x62, 0x01, 0xC3, 0x1F, 0x7A, 0x9E, 0xA1, 0x83, 0xEE, 0x9F, 0xAD, 0x4D, 0x5D, 0x11, 0xD8, +0xCE, 0x5B, 0x85, 0x6D, 0xDA, 0xCB, 0xE6, 0xC4, 0x32, 0x7E, 0x71, 0xC1, 0xAC, 0x4A, 0xB1, 0x6D, +0x37, 0x93, 0x26, 0x4F, 0xDD, 0x3C, 0x1A, 0x53, 0x8D, 0xD1, 0x2C, 0xFF, 0xD5, 0xFE, 0x3D, 0x2E, +0x0E, 0x65, 0x7F, 0xCA, 0xA1, 0xA4, 0x67, 0x19, 0x24, 0xF5, 0xA6, 0x97, 0xF4, 0x15, 0xD2, 0x91, +0x90, 0xFA, 0x2A, 0x22, 0xE7, 0xB7, 0x14, 0x9B, 0x98, 0xF7, 0xA0, 0x09, 0xA9, 0x37, 0x28, 0xEF, +0x50, 0xD2, 0x50, 0x04, 0xDB, 0xD7, 0xDC, 0xD3, 0x7C, 0xCF, 0x41, 0x51, 0xD1, 0x40, 0x0F, 0xDE, +0xDF, 0x4A, 0x4D, 0xC4, 0xF7, 0x34, 0xDA, 0x28, 0x03, 0xFF, 0xD6, 0xFE, 0x39, 0xA8, 0xA2, 0x8A, +0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, +0xA2, 0x80, 0x3F, 0xFF, 0xD7, 0xFE, 0x39, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD0, 0xFE, +0x39, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x26, 0x82, 0x3F, 0x36, 0x55, 0x4E, +0xDD, 0x4F, 0xD2, 0xB7, 0x6A, 0x85, 0x8C, 0x78, 0x56, 0x90, 0x8E, 0x4F, 0x02, 0xAF, 0xD6, 0x15, +0x1E, 0xA4, 0xB0, 0xA7, 0xA7, 0x7A, 0x65, 0x3D, 0x3B, 0xD4, 0x22, 0xA3, 0xB8, 0xFA, 0x28, 0xA2, +0x99, 0xA9, 0xFF, 0xD1, 0xFE, 0x43, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x6A, 0x56, 0x13, 0x42, 0x51, 0x4B, 0x45, 0x6D, 0x19, 0x5C, 0x86, 0x84, 0xA2, 0x8A, 0x2A, +0x84, 0x7F, 0xFF, 0xD2, 0xFE, 0x43, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x42, 0x03, 0x02, 0xA4, +0x64, 0x1E, 0x0D, 0x2D, 0x14, 0x01, 0xC8, 0x5C, 0x42, 0x60, 0x9A, 0x48, 0x8F, 0x63, 0xC7, 0xD2, +0xA1, 0xAD, 0xBD, 0x5A, 0x1F, 0xF5, 0x73, 0x81, 0xFE, 0xCB, 0x7F, 0x4A, 0xC4, 0xAE, 0x69, 0x2B, +0x32, 0x42, 0x8A, 0x28, 0xA4, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD3, 0xFE, 0x36, 0x68, 0xA2, +0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x15, 0x1B, 0x3F, 0x61, +0x40, 0x0F, 0x2C, 0x07, 0xD6, 0xA2, 0x2C, 0x4D, 0x25, 0x25, 0x00, 0x7F, 0xFF, 0xD4, 0xFE, 0x34, +0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD5, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x02, 0x8E, 0xA2, +0xAF, 0xD5, 0x01, 0xD4, 0x55, 0xFA, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0xFF, 0xD6, 0xFE, 0x38, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x48, 0x47, 0xA5, 0x2D, 0x14, 0xD4, 0xAC, 0x03, 0x2A, 0xCD, 0xA9, 0xC4, +0x84, 0x7A, 0x8A, 0x84, 0x8A, 0x7C, 0x27, 0x6C, 0xA8, 0x7D, 0xF1, 0x5B, 0xC6, 0x69, 0x8E, 0xE7, +0xFF, 0xD7, 0xFE, 0x37, 0x66, 0xB3, 0x75, 0xCB, 0x46, 0x4B, 0x8F, 0x4E, 0xF5, 0x47, 0x18, 0xE0, +0xF0, 0x6B, 0xA2, 0xA8, 0x26, 0xB7, 0x8E, 0x60, 0x77, 0x0C, 0x37, 0xF7, 0x87, 0x5A, 0x46, 0x6A, +0x7D, 0xCC, 0x4A, 0x2A, 0x79, 0xAD, 0xE4, 0x87, 0x92, 0x37, 0x27, 0xF7, 0x85, 0x41, 0x4C, 0xD2, +0xE1, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD0, 0xFE, +0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD1, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD2, 0xFE, +0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD3, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x94, 0x29, 0x34, 0x00, 0x95, 0x2A, 0xA6, 0x39, 0x3C, 0x9A, 0x70, 0x50, 0x29, +0x68, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD4, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xB7, 0x0F, 0xDC, 0xA9, 0x2A, 0x38, 0xBE, 0xE0, 0xA9, 0x2B, +0xA2, 0x3B, 0x19, 0xB0, 0xA4, 0x6F, 0xBA, 0x69, 0x69, 0x8E, 0x7A, 0x0A, 0x62, 0x3F, 0xFF, 0xD5, +0xFE, 0x3C, 0x50, 0x2C, 0xD1, 0xAE, 0x7E, 0xF6, 0x3A, 0xD4, 0x0F, 0x1B, 0x27, 0x5E, 0x47, 0xAD, +0x2D, 0xB3, 0x61, 0x48, 0xF4, 0x35, 0x7B, 0x82, 0x3D, 0x45, 0x5F, 0x35, 0x9D, 0x8C, 0x0C, 0xCA, +0x2A, 0xE3, 0xC0, 0x0E, 0x4A, 0xF0, 0x6A, 0xAB, 0x29, 0x53, 0x82, 0x31, 0x5A, 0xC6, 0x57, 0x18, +0xDA, 0x28, 0xA2, 0x98, 0xC2, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD6, 0xFE, +0x39, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD7, 0xFE, 0x39, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, +0x3F, 0xFF, 0xD0, 0xFE, 0x39, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x72, 0x82, 0xCC, 0xAA, 0x3A, +0x93, 0x8A, 0x6D, 0x5E, 0xB1, 0x8F, 0x74, 0x85, 0xC8, 0xE1, 0x7F, 0x9D, 0x0D, 0xD8, 0x0D, 0x34, +0x50, 0x8A, 0xAA, 0x3A, 0x01, 0x4E, 0xA2, 0x8A, 0xE5, 0x24, 0x29, 0xEB, 0xD4, 0xD3, 0x29, 0xCB, +0xD6, 0x81, 0xC7, 0x72, 0x4A, 0x28, 0xA2, 0x99, 0xB1, 0xFF, 0xD1, 0xFE, 0x43, 0xE8, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x29, 0x29, 0x68, +0xAD, 0x23, 0x3E, 0xE4, 0xB8, 0x9F, 0xFF, 0xD2, 0xFE, 0x43, 0xA8, 0xA5, 0xA4, 0xAE, 0x93, 0x20, +0xA2, 0x8A, 0x28, 0x02, 0x39, 0xA2, 0x13, 0x43, 0x24, 0x4D, 0xD1, 0x94, 0x8A, 0xE4, 0x19, 0x4A, +0x31, 0x56, 0x18, 0x60, 0x70, 0x6B, 0xB3, 0xAE, 0x77, 0x53, 0x83, 0xCB, 0x9F, 0xCD, 0x1F, 0x75, +0xF9, 0xFC, 0x7B, 0xD6, 0x75, 0x17, 0x51, 0x33, 0x32, 0x8A, 0x28, 0xAC, 0x44, 0x14, 0x51, 0x45, +0x00, 0x7F, 0xFF, 0xD3, 0xFE, 0x36, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x48, +0x48, 0x1D, 0x69, 0xAC, 0xF8, 0xE0, 0x54, 0x64, 0xE7, 0xAD, 0x00, 0x29, 0x62, 0x7D, 0x85, 0x36, +0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD4, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, +0xFF, 0xD5, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x03, 0xE3, 0xFB, 0xEB, 0x57, 0x6A, 0x94, 0x7F, +0x7D, 0x6A, 0xED, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, +0x7F, 0xFF, 0xD6, 0xFE, 0x38, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, +0x50, 0x01, 0x45, 0x15, 0x6A, 0x1B, 0x57, 0x93, 0x0C, 0xDF, 0x22, 0x7B, 0xF5, 0x34, 0x01, 0x58, +0x02, 0xC4, 0x05, 0x04, 0x9F, 0x41, 0x57, 0xE1, 0xB3, 0xC1, 0x0F, 0x29, 0xF7, 0xC0, 0xAB, 0x91, +0xC5, 0x1C, 0x43, 0x08, 0xBC, 0xFA, 0xF7, 0x35, 0x25, 0x00, 0x7F, 0xFF, 0xD7, 0xFE, 0x3C, 0x68, +0xA2, 0x8A, 0x46, 0x01, 0x54, 0xA6, 0xB3, 0x47, 0xCB, 0x47, 0xF2, 0x37, 0xA7, 0x6A, 0xBB, 0x45, +0x00, 0x99, 0x80, 0xE8, 0xF1, 0x9C, 0x3A, 0x95, 0x34, 0xCA, 0xE8, 0x19, 0x15, 0xC6, 0xD7, 0x01, +0x85, 0x67, 0x4D, 0x64, 0x57, 0x2D, 0x11, 0x2C, 0x3D, 0x0F, 0x5A, 0x66, 0x8A, 0x65, 0x0A, 0x28, +0x20, 0x83, 0x82, 0x30, 0x68, 0xA0, 0xB0, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD0, 0xFE, 0x33, 0xE8, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0xFF, 0xD1, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD2, 0xFE, 0x33, 0xE8, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0xFF, 0xD3, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0xA5, 0x54, 0xC7, +0x27, 0x93, 0x40, 0x0D, 0x54, 0xCF, 0x27, 0x81, 0x52, 0xD1, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, +0x14, 0x51, 0x45, 0x00, 0x7F, 0xFF, 0xD4, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0xB9, 0x1F, 0x08, 0xB4, 0xFA, 0x6A, 0x7D, 0xC5, 0xFA, 0x53, 0xAB, +0xA2, 0x3B, 0x19, 0x30, 0xA8, 0x9F, 0xEF, 0x1A, 0x96, 0xA0, 0xA6, 0x07, 0xFF, 0xD5, 0xFE, 0x39, +0x60, 0x6C, 0x3E, 0x3D, 0x45, 0x68, 0x23, 0x76, 0x35, 0x94, 0xA7, 0x0C, 0x0D, 0x69, 0x55, 0xD4, +0x5A, 0x98, 0xB2, 0x7A, 0x46, 0x50, 0xC3, 0x04, 0x66, 0x85, 0x39, 0x19, 0xA5, 0xAC, 0xC4, 0x54, +0x78, 0x08, 0xC9, 0x53, 0xB8, 0x7A, 0x54, 0x15, 0xA5, 0x51, 0xBC, 0x4A, 0xFE, 0xCD, 0xEB, 0x5A, +0x46, 0xA7, 0x71, 0xDC, 0xA1, 0x45, 0x48, 0xF1, 0xB2, 0x75, 0xE4, 0x7A, 0xD4, 0x75, 0xB2, 0x63, +0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD6, 0xFE, 0x39, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, +0xD7, 0xFE, 0x39, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD0, 0xFE, 0x39, 0xA8, 0xA2, 0x8A, +0xE9, 0x32, 0x0A, 0xDC, 0xB6, 0x8F, 0xCB, 0x89, 0x47, 0x73, 0xC9, 0xAC, 0xAB, 0x68, 0xFC, 0xC9, +0x90, 0x11, 0x95, 0x1C, 0x9A, 0xDC, 0xAC, 0xAA, 0x3E, 0x82, 0x61, 0x45, 0x14, 0x56, 0x42, 0x0A, +0x72, 0xF5, 0x14, 0xDA, 0x51, 0xD4, 0x50, 0x0B, 0x72, 0x5A, 0x28, 0xA2, 0x99, 0xB9, 0xFF, 0xD1, +0xFE, 0x43, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD2, 0xFE, 0x43, 0xE8, 0xA2, 0x8A, 0x69, 0xD8, 0x4D, +0x09, 0x45, 0x2D, 0x15, 0xB4, 0x65, 0x72, 0x1A, 0x12, 0xA9, 0xDF, 0xC1, 0xE7, 0xDB, 0xB0, 0x03, +0x2E, 0xBF, 0x30, 0xAB, 0x94, 0x55, 0x34, 0x23, 0x8A, 0xA2, 0xAD, 0x5E, 0x41, 0xE4, 0x5C, 0x3A, +0x01, 0xF2, 0x1F, 0x99, 0x7E, 0x86, 0xAA, 0xD7, 0x2B, 0x44, 0x85, 0x14, 0x51, 0x40, 0x1F, 0xFF, +0xD3, 0xFE, 0x36, 0x68, 0xA2, 0x9A, 0xCC, 0x07, 0xB9, 0xA4, 0x60, 0x38, 0x90, 0x3A, 0xD4, 0x4C, +0xE4, 0xF4, 0xE0, 0x53, 0x49, 0x27, 0xAD, 0x25, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, +0x00, 0x14, 0x51, 0x45, 0x00, 0x7F, 0xFF, 0xD4, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, +0xD5, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x04, 0x91, 0x72, 0xEB, 0x57, 0x2A, 0xA4, 0x3F, 0x7C, +0x55, 0xBA, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, +0xD6, 0xFE, 0x38, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0xE5, 0x52, 0xC4, 0x2A, 0x82, 0x49, +0xF4, 0xA0, 0x06, 0xD4, 0xB1, 0xC4, 0xF2, 0x9F, 0x91, 0x72, 0x3D, 0x7B, 0x55, 0xC8, 0xAC, 0xC7, +0x0D, 0x37, 0x27, 0xFB, 0xA2, 0xAF, 0x00, 0x14, 0x00, 0xA0, 0x01, 0x40, 0x15, 0xE2, 0xB5, 0x8E, +0x3E, 0x5B, 0xE7, 0x7F, 0x53, 0xDA, 0xAC, 0xD1, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x7F, 0xFF, +0xD7, 0xFE, 0x3C, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x04, +0x32, 0xC1, 0x1C, 0xC3, 0xE6, 0x18, 0x6E, 0xC4, 0x56, 0x5C, 0xB6, 0xD2, 0x45, 0xCF, 0xDF, 0x4F, +0x51, 0x5B, 0x54, 0x50, 0x35, 0x2B, 0x1C, 0xED, 0x15, 0xAD, 0x2D, 0x9A, 0x3E, 0x4A, 0x7C, 0x8D, +0xFA, 0x1A, 0xCD, 0x92, 0x29, 0x22, 0x6D, 0xAE, 0xA4, 0x7B, 0xFA, 0xD3, 0x35, 0x52, 0xB9, 0xFF, +0xD0, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD1, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, +0xD2, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD3, 0xFE, 0x33, 0xE9, 0x42, 0x93, 0x4E, 0x54, +0xCF, 0x27, 0x81, 0x52, 0xD0, 0x02, 0x05, 0x02, 0x96, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, +0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD4, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xBE, 0x38, 0x00, 0x7B, 0x51, 0x47, 0x61, 0x45, +0x74, 0x47, 0x63, 0x11, 0xAE, 0x70, 0xB5, 0x0D, 0x48, 0xE7, 0xA0, 0xA8, 0xE9, 0x8C, 0xFF, 0xD5, +0xFE, 0x37, 0xAB, 0x42, 0x33, 0xB9, 0x14, 0xD6, 0x7D, 0x5B, 0xB7, 0x3F, 0x2B, 0x2D, 0x6D, 0x51, +0x68, 0x62, 0xCB, 0x4A, 0x70, 0x7D, 0xAA, 0x6A, 0xAF, 0x53, 0x21, 0xC8, 0xC7, 0x7A, 0xC0, 0x43, +0xA8, 0xA2, 0x8A, 0x00, 0x2A, 0xBB, 0xC0, 0x0F, 0x29, 0xC7, 0xB5, 0x58, 0xA2, 0x9A, 0x95, 0x80, +0xCD, 0x20, 0x83, 0x82, 0x30, 0x69, 0x2B, 0x45, 0x95, 0x5C, 0x61, 0x86, 0x6A, 0xAB, 0xC0, 0xCB, +0xCA, 0xFC, 0xC2, 0xB6, 0x55, 0x10, 0xEE, 0x7F, 0xFF, 0xD6, 0xFE, 0x39, 0xA8, 0xA2, 0x8A, 0xE9, +0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, +0x80, 0x3F, 0xFF, 0xD7, 0xFE, 0x39, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, +0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD0, 0xFE, 0x39, +0xA8, 0xA2, 0x9C, 0x8A, 0x5D, 0x95, 0x47, 0x52, 0x6B, 0xA4, 0xC8, 0xD4, 0xB1, 0x8F, 0x6C, 0x65, +0xC8, 0xE5, 0xBF, 0x95, 0x5D, 0xA4, 0x50, 0x15, 0x55, 0x47, 0x40, 0x31, 0x4B, 0x5C, 0xCD, 0xDC, +0x90, 0xA2, 0x8A, 0x29, 0x00, 0x52, 0x8E, 0xA2, 0x92, 0x96, 0x80, 0x44, 0xB4, 0x51, 0x45, 0x33, +0x73, 0xFF, 0xD1, 0xFE, 0x43, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD2, 0xFE, 0x43, 0xE8, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0x29, 0x29, 0x68, 0xAD, 0x23, 0x3E, 0xE4, 0xB8, 0x99, 0x5A, 0xAC, +0x3B, 0xE2, 0x59, 0x80, 0xF9, 0x94, 0xF3, 0xF4, 0xAE, 0x7A, 0xBB, 0x37, 0x40, 0xE8, 0xC8, 0xC3, +0x2A, 0x46, 0x0D, 0x72, 0x12, 0xC6, 0xD1, 0x48, 0xF1, 0xB7, 0xDE, 0x53, 0x8A, 0x9A, 0x9D, 0xCC, +0xDA, 0x23, 0xA0, 0x9C, 0x75, 0xA6, 0x96, 0x03, 0xDC, 0xD4, 0x44, 0x93, 0xD6, 0xA0, 0x47, 0xFF, +0xD3, 0xFE, 0x35, 0x0B, 0x93, 0xD3, 0x81, 0x4C, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD4, 0xFE, 0x34, +0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD5, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x04, 0xB0, 0xFD, +0xFA, 0xB7, 0x55, 0x21, 0xFB, 0xF5, 0x6E, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD6, 0xFE, 0x38, 0x68, 0xA9, 0xA3, 0x86, 0x49, 0x4F, 0xC8, +0x38, 0xF5, 0x3D, 0x2B, 0x4A, 0x1B, 0x64, 0x8B, 0x04, 0xFC, 0xEF, 0xEA, 0x7B, 0x52, 0x30, 0x29, +0x43, 0x68, 0xF2, 0x61, 0x9F, 0x28, 0xBF, 0xA9, 0xAD, 0x18, 0xE2, 0x48, 0x86, 0x10, 0x63, 0xDF, +0xB9, 0xA9, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, +0x0F, 0xFF, 0xD7, 0xFE, 0x3C, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, +0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x48, 0xCA, 0xAE, 0x36, 0xB0, 0x0C, 0x29, 0x68, 0xA0, 0x0F, +0xFF, 0xD0, 0xFE, 0x37, 0xE6, 0xB2, 0x23, 0x2D, 0x0F, 0x23, 0xFB, 0xA6, 0xA8, 0x10, 0x41, 0xC1, +0x04, 0x1F, 0x4A, 0xE8, 0x6A, 0x29, 0x61, 0x8E, 0x61, 0x87, 0x1C, 0xF6, 0x23, 0xA8, 0xA4, 0x66, +0xA7, 0xDC, 0xC2, 0xA2, 0xAC, 0xCD, 0x6B, 0x24, 0x5C, 0x8F, 0x9D, 0x3D, 0x47, 0x6A, 0xAD, 0x4C, +0xD1, 0x30, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD1, +0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD2, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x94, 0x29, 0x34, 0x00, 0x95, 0x2A, 0xA6, 0x39, +0x3C, 0x9A, 0x70, 0x50, 0x29, 0x68, 0x03, 0xFF, 0xD3, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, +0xD4, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x94, 0x75, 0x14, +0x01, 0x7A, 0x8A, 0x28, 0x3C, 0x02, 0x6B, 0xA4, 0xC8, 0x85, 0x8E, 0x49, 0xA6, 0xD1, 0x45, 0x00, +0x7F, 0xFF, 0xD5, 0xFE, 0x37, 0xAA, 0x68, 0x0E, 0x1F, 0x1E, 0xB5, 0x0D, 0x39, 0x4E, 0xD2, 0x0D, +0x74, 0x35, 0x73, 0x23, 0x46, 0x94, 0x1C, 0x10, 0x69, 0x28, 0xAE, 0x62, 0x4B, 0x14, 0x54, 0x68, +0x7B, 0x54, 0x94, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD6, 0xFE, 0x3D, +0x5E, 0x25, 0x7F, 0x63, 0xEB, 0x55, 0x1E, 0x36, 0x4E, 0xA3, 0x8F, 0x5A, 0xBF, 0x41, 0x00, 0x8C, +0x1E, 0x95, 0x51, 0x9B, 0x46, 0x17, 0x33, 0x28, 0xAB, 0x6F, 0x00, 0x3C, 0xA7, 0x1E, 0xD5, 0x54, +0x82, 0x0E, 0x08, 0xC1, 0xAD, 0x94, 0xAE, 0x31, 0x28, 0xA2, 0x8A, 0x63, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD7, 0xFE, 0x39, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, +0xD0, 0xFE, 0x39, 0xAB, 0x42, 0xC6, 0x3C, 0xB3, 0x48, 0x47, 0x03, 0x81, 0xF5, 0xAA, 0x15, 0xBB, +0x04, 0x7E, 0x54, 0x4A, 0x9D, 0xFA, 0x9F, 0xAD, 0x6D, 0x51, 0xE8, 0x62, 0xC9, 0x68, 0xA2, 0x8A, +0xC0, 0x41, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x04, 0xD4, 0x50, 0x3A, 0x0A, 0x29, 0x9B, +0x23, 0xFF, 0xD1, 0xFE, 0x43, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD2, 0xFE, 0x43, 0xE8, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8F, 0xAF, 0x14, 0x00, 0x57, 0x2B, 0xAA, 0x4D, 0x1C, +0x97, 0x05, 0xA2, 0x20, 0xF1, 0x86, 0x3E, 0xA6, 0xAF, 0x5E, 0xDF, 0x6F, 0xDD, 0x1C, 0x44, 0x88, +0xBB, 0xB7, 0xF7, 0xBF, 0xFA, 0xD5, 0xCF, 0xC8, 0x72, 0xD9, 0xA0, 0x87, 0xA8, 0xDA, 0x28, 0xA2, +0x91, 0x99, 0xFF, 0xD3, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD4, 0xFE, 0x34, 0x68, +0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x07, 0xFF, 0xD5, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x04, 0xF0, 0x75, 0x6A, +0xB3, 0x55, 0xA0, 0xEA, 0xD5, 0x66, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xAB, 0x91, 0x5A, +0x3B, 0xE1, 0x9F, 0xE4, 0x5F, 0xD4, 0xD0, 0x05, 0x55, 0x46, 0x72, 0x15, 0x14, 0xB1, 0xF6, 0xAD, +0x08, 0x6C, 0xC0, 0xC3, 0x4B, 0xF3, 0x1F, 0xEE, 0xD5, 0xB4, 0x8D, 0x23, 0x5D, 0xA8, 0x30, 0x3F, +0x9D, 0x3E, 0x80, 0x3F, 0xFF, 0xD6, 0xFE, 0x40, 0x40, 0x00, 0x60, 0x00, 0x05, 0x14, 0x51, 0x48, +0xC0, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0xFF, 0xD7, 0xFE, 0x3D, 0x1E, 0x37, 0x42, 0x55, 0x86, 0x08, 0xA6, 0x56, 0xD4, 0x91, 0x2C, +0x83, 0x07, 0x83, 0xD8, 0xD6, 0x63, 0xA3, 0x21, 0xDA, 0xC3, 0x9A, 0xA5, 0x14, 0xF6, 0x32, 0x71, +0x20, 0xA2, 0xA4, 0xDA, 0x29, 0x36, 0xFA, 0x1A, 0x4E, 0x0C, 0x9B, 0x0C, 0xA2, 0x97, 0x04, 0x52, +0x54, 0x80, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD0, 0xFE, 0x3C, 0x68, 0xA2, +0x8A, 0x46, 0x01, 0x55, 0x66, 0xB4, 0x8E, 0x4C, 0xB2, 0xE1, 0x1F, 0xF4, 0x35, 0x6A, 0x8A, 0x01, +0x33, 0x06, 0x48, 0xA4, 0x88, 0xE1, 0xD4, 0x8F, 0x7E, 0xD5, 0x1D, 0x74, 0x25, 0x43, 0x02, 0x18, +0x02, 0x3D, 0x2B, 0x3E, 0x6B, 0x2E, 0xAD, 0x0F, 0xFD, 0xF2, 0x68, 0x34, 0x53, 0x33, 0xA8, 0xA5, +0x20, 0xA9, 0x21, 0x81, 0x07, 0xD0, 0xD2, 0x53, 0x2C, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD1, 0xFE, +0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD2, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0xA5, 0x54, 0xC7, 0x27, 0x93, 0x40, 0x0D, 0x54, 0xCF, 0x27, 0x81, 0x52, 0xD1, +0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x7F, 0xFF, 0xD3, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, +0xD4, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x29, 0x57, 0xA8, 0xA4, 0xA7, +0x28, 0xCB, 0x28, 0xF7, 0xA6, 0xB7, 0x06, 0x5D, 0xA6, 0xB9, 0xE2, 0x9D, 0x51, 0xBF, 0x50, 0x2B, +0xA0, 0xC8, 0x8E, 0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD5, 0xFE, 0x37, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, +0x2F, 0xC4, 0xDB, 0x91, 0x4D, 0x49, 0x55, 0xED, 0xCF, 0x0C, 0xB5, 0x62, 0xB9, 0xE4, 0xB5, 0x24, +0x2A, 0x70, 0x72, 0x2A, 0x0A, 0x72, 0xB6, 0x0F, 0xB5, 0x48, 0x13, 0x51, 0x45, 0x14, 0x00, 0x51, +0x45, 0x14, 0x01, 0xFF, 0xD6, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x4D, 0x65, 0x57, 0x18, +0x61, 0x4E, 0xA2, 0x80, 0x29, 0xBC, 0x0C, 0xBC, 0xAF, 0xCC, 0x2A, 0x0A, 0xD3, 0xA8, 0x9E, 0x25, +0x7E, 0x7E, 0xE9, 0xAD, 0x23, 0x53, 0xB8, 0xEE, 0x51, 0xA2, 0x9E, 0xC8, 0xC8, 0x79, 0x1F, 0x8D, +0x32, 0xB6, 0xB8, 0xC2, 0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD7, 0xFE, 0x39, 0xA8, 0xA2, 0x8A, 0xE9, +0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, +0x80, 0x3F, 0xFF, 0xD0, 0xFE, 0x3B, 0xED, 0x63, 0xF3, 0x26, 0x5C, 0x8C, 0xA8, 0xE4, 0xD6, 0xD5, +0x54, 0xB2, 0x8F, 0x64, 0x5B, 0x8F, 0xDE, 0x63, 0x9F, 0xC2, 0xAD, 0xD3, 0x9B, 0xBB, 0x30, 0x61, +0x45, 0x14, 0x54, 0x80, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x01, 0x2A, 0xF4, 0x14, 0xB4, +0x8B, 0xD0, 0x52, 0xD3, 0x36, 0x5B, 0x1F, 0xFF, 0xD1, 0xFE, 0x43, 0xE8, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, +0xD2, 0xFE, 0x43, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x90, 0x90, 0xA0, 0x92, 0x40, 0x03, 0xA9, +0xA0, 0x05, 0x24, 0x00, 0x49, 0x38, 0x15, 0x85, 0x79, 0x7B, 0xE6, 0xEE, 0x8A, 0x22, 0x44, 0x5D, +0xCF, 0xF7, 0xBF, 0xFA, 0xD4, 0x97, 0x97, 0xA6, 0x6C, 0xC5, 0x19, 0x22, 0x2E, 0xE7, 0xFB, 0xDF, +0xFD, 0x6A, 0xCE, 0x63, 0x80, 0x4D, 0x23, 0x39, 0x4A, 0xFA, 0x22, 0x29, 0x1B, 0x3F, 0x2D, 0x56, +0x7F, 0xBD, 0x52, 0xD4, 0x2F, 0xF7, 0x8D, 0x32, 0xD2, 0xB0, 0x0E, 0x94, 0x52, 0x0A, 0x5A, 0x46, +0x52, 0x5A, 0x9F, 0xFF, 0xD3, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD4, 0xFE, 0x34, +0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD5, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x04, 0xF0, 0x75, +0x6A, 0xB3, 0x55, 0xE0, 0xFE, 0x2A, 0xB4, 0xAA, 0xCE, 0x42, 0xA8, 0x2C, 0x68, 0x01, 0xB5, 0x34, +0x50, 0x49, 0x29, 0xF9, 0x46, 0x07, 0xA9, 0xAB, 0xB1, 0x59, 0x85, 0xC3, 0x4A, 0x43, 0x1F, 0x41, +0xD2, 0xAE, 0x80, 0x00, 0xC0, 0x18, 0x14, 0x01, 0x5E, 0x2B, 0x68, 0xE2, 0xC1, 0xFB, 0xEF, 0xEA, +0x6A, 0xC5, 0x14, 0x50, 0x01, 0x45, 0x21, 0x65, 0x1C, 0x96, 0x14, 0xD3, 0x2C, 0x63, 0xF8, 0x85, +0x01, 0x63, 0xFF, 0xD6, 0xFE, 0x40, 0x68, 0xA8, 0x4C, 0xE9, 0xEE, 0x69, 0xBF, 0x68, 0x1F, 0xDD, +0x34, 0x8C, 0x79, 0x59, 0x62, 0x8A, 0xAB, 0xF6, 0x83, 0xFD, 0xD1, 0x4D, 0xF3, 0xDF, 0xFD, 0x9A, +0x07, 0xC8, 0xCB, 0x94, 0x55, 0x1F, 0x36, 0x4F, 0xEF, 0x1A, 0x66, 0xE6, 0xFE, 0xF1, 0xFC, 0xE8, +0xB0, 0xF9, 0x0D, 0x1C, 0x8F, 0x51, 0x4D, 0x32, 0x20, 0xEA, 0xCB, 0x59, 0xF4, 0x51, 0x61, 0xF2, +0x17, 0x4C, 0xD1, 0x8E, 0xF9, 0xFC, 0x29, 0xA6, 0xE1, 0x7B, 0x02, 0x6A, 0xA5, 0x14, 0xEC, 0x3E, +0x44, 0x7F, 0xFF, 0xD7, 0xFE, 0x43, 0xE9, 0x92, 0x46, 0xB2, 0x2E, 0x1B, 0xF0, 0x3E, 0x94, 0xFA, +0x28, 0x03, 0x25, 0xD1, 0xA3, 0x6D, 0xAD, 0xFF, 0x00, 0xEB, 0xA6, 0x56, 0xB3, 0xA2, 0xC8, 0xBB, +0x58, 0x7F, 0xF5, 0xAB, 0x36, 0x48, 0xDA, 0x36, 0xC1, 0xE4, 0x76, 0x3E, 0xB5, 0xBC, 0x65, 0x73, +0x36, 0x88, 0xE8, 0xC0, 0xF4, 0xA2, 0x8A, 0xA6, 0x84, 0x37, 0x6F, 0xA5, 0x21, 0x52, 0x29, 0xF4, +0x54, 0x3A, 0x68, 0x56, 0x23, 0xA4, 0xA9, 0x69, 0x36, 0x8A, 0x87, 0x48, 0x2C, 0x7F, 0xFF, 0xD0, +0xFE, 0x3C, 0x68, 0xA7, 0x6D, 0x3F, 0x5A, 0x4C, 0x11, 0xDA, 0x87, 0x16, 0x8C, 0x04, 0xA2, 0x8A, +0x29, 0x00, 0x51, 0x45, 0x14, 0x01, 0x1C, 0x90, 0xC7, 0x28, 0xC3, 0xAE, 0x7D, 0xFB, 0xD6, 0x5C, +0xD6, 0x8F, 0x18, 0x2E, 0xBF, 0x3A, 0x7E, 0xA3, 0xF0, 0xAD, 0x8A, 0x28, 0x1A, 0x95, 0x8E, 0x76, +0x8A, 0xD9, 0x9A, 0xD6, 0x39, 0x72, 0xC3, 0xE4, 0x7F, 0x51, 0xDE, 0xB2, 0xE5, 0x86, 0x48, 0x4E, +0x1D, 0x78, 0xF5, 0x1D, 0x0D, 0x33, 0x45, 0x2B, 0x9F, 0xFF, 0xD1, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0xFF, 0xD2, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x29, 0x42, 0x93, 0x4E, 0x54, 0xCF, 0x27, +0x81, 0x52, 0xD0, 0x02, 0x05, 0x02, 0x96, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, +0x28, 0x03, 0xFF, 0xD3, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD4, 0xFE, 0x35, 0xE8, 0xA2, +0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x29, 0xF1, 0xFD, 0xF5, 0xA6, 0x54, 0x91, 0x0C, 0xB8, 0xA7, +0x1D, 0xC4, 0xCB, 0x75, 0x09, 0x39, 0x24, 0xD4, 0xA4, 0xE0, 0x13, 0x50, 0x57, 0x41, 0x98, 0x51, +0x45, 0x14, 0x01, 0xFF, 0xD5, 0xFE, 0x37, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x26, 0x80, 0xE2, 0x41, +0xEF, 0xC5, 0x5D, 0xAC, 0xD0, 0x70, 0x41, 0xAD, 0x2A, 0xC6, 0xAA, 0x25, 0x85, 0x14, 0x51, 0x59, +0x81, 0x2A, 0x1C, 0x8C, 0x53, 0xEA, 0x00, 0x70, 0x73, 0x53, 0x83, 0x91, 0x9A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0xFF, 0xD6, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, +0x14, 0x50, 0x01, 0x8C, 0xF0, 0x79, 0x15, 0x5A, 0x48, 0x3B, 0xA7, 0xE5, 0x56, 0x68, 0xA6, 0xA5, +0x60, 0x33, 0x48, 0x20, 0xE0, 0x82, 0x0D, 0x25, 0x68, 0xBA, 0x2B, 0x8C, 0x11, 0x55, 0x24, 0x84, +0xA7, 0x23, 0xE6, 0x5A, 0xDA, 0x33, 0xB8, 0xEE, 0x7F, 0xFF, 0xD7, 0xFE, 0x39, 0xA8, 0xA2, 0x8A, +0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x92, +0x24, 0x32, 0x48, 0xA8, 0x3B, 0x9A, 0x8E, 0xB4, 0xAC, 0x63, 0xFB, 0xD2, 0x9F, 0xA0, 0xA5, 0x27, +0x64, 0x23, 0xFF, 0xD0, 0xFE, 0x42, 0x40, 0x00, 0x00, 0x38, 0x14, 0x51, 0x45, 0x23, 0x00, 0xA2, +0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x02, 0x45, 0xE9, 0x4E, 0xA6, 0xAF, +0x43, 0x4E, 0xA6, 0x6D, 0x1D, 0x8F, 0xFF, 0xD1, 0xFE, 0x43, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD2, +0xFE, 0x43, 0xE8, 0xA2, 0x91, 0x99, 0x51, 0x4B, 0x31, 0x0A, 0xA3, 0x92, 0x4F, 0x6A, 0x00, 0x09, +0x0A, 0x0B, 0x31, 0x0A, 0xA3, 0x92, 0x4F, 0x6A, 0xC1, 0xBC, 0xBC, 0x33, 0x93, 0x1C, 0x64, 0xAC, +0x20, 0xFF, 0x00, 0xDF, 0x54, 0x97, 0x77, 0x86, 0xE0, 0xEC, 0x4F, 0x96, 0x11, 0xD3, 0xDF, 0xEB, +0x54, 0x69, 0x19, 0xCA, 0x41, 0x50, 0x48, 0x72, 0x71, 0xE9, 0x52, 0xB9, 0xDA, 0x3D, 0xEA, 0xBD, +0x01, 0x05, 0xD4, 0x2A, 0x03, 0xD4, 0xD4, 0xF5, 0x5C, 0xF2, 0x49, 0xA6, 0x68, 0x14, 0xEA, 0x6D, +0x38, 0x52, 0x64, 0x4D, 0x1F, 0xFF, 0xD3, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, +0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD4, +0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD5, 0xFE, 0x34, 0x68, 0xA2, 0x82, 0x71, 0x49, +0x23, 0x02, 0xDD, 0xA9, 0x8F, 0x2C, 0x24, 0x24, 0x0F, 0x6A, 0xD8, 0x49, 0xA3, 0x45, 0xC4, 0x48, +0x31, 0xF5, 0xAE, 0x71, 0x1B, 0x6B, 0x03, 0xF9, 0xD5, 0xE0, 0x48, 0xE4, 0x1C, 0x56, 0xAA, 0x09, +0x95, 0x63, 0x5C, 0xDC, 0x37, 0x60, 0xA2, 0x9A, 0x66, 0x90, 0xF7, 0xC5, 0x67, 0xAC, 0xCC, 0x3A, +0xFC, 0xD5, 0x32, 0xCC, 0x87, 0xAF, 0xCA, 0x6A, 0x5C, 0x19, 0x6A, 0xC5, 0x83, 0x23, 0x9E, 0xAC, +0x69, 0xA4, 0x93, 0xD4, 0x93, 0x49, 0x90, 0x7A, 0x73, 0x45, 0x49, 0x56, 0x0A, 0x28, 0xA2, 0x80, +0x3F, 0xFF, 0xD6, 0xFE, 0x3B, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD7, 0xFE, 0x43, 0xE8, 0xA2, 0x8A, +0x00, 0x29, 0xAC, 0xA1, 0xC1, 0x56, 0x19, 0x14, 0xEA, 0x28, 0x03, 0x2E, 0x58, 0x9A, 0x33, 0xCF, +0x2B, 0xD8, 0xD4, 0x55, 0xB0, 0xCA, 0x18, 0x15, 0x61, 0x91, 0x59, 0xD3, 0x42, 0x63, 0x39, 0x1C, +0xA7, 0x63, 0x5B, 0x46, 0x77, 0x21, 0xA2, 0x0A, 0x28, 0xA2, 0xAC, 0x90, 0xA2, 0x8A, 0x28, 0x03, +0xFF, 0xD0, 0xFE, 0x3D, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0C, 0x03, 0x4D, 0xDA, 0x29, 0xD4, 0x52, +0x71, 0x4C, 0x43, 0x36, 0x9A, 0x4E, 0x95, 0x25, 0x15, 0x0E, 0x90, 0x58, 0x8A, 0x8A, 0x90, 0x80, +0x69, 0x36, 0xFA, 0x54, 0x3A, 0x6C, 0x56, 0x19, 0x48, 0x40, 0x20, 0x82, 0x01, 0x14, 0xEC, 0x1F, +0x4A, 0x4A, 0x86, 0x80, 0xFF, 0xD1, 0xFE, 0x38, 0x66, 0xB2, 0x1D, 0x61, 0xE3, 0xFD, 0x93, 0x59, +0xC5, 0x59, 0x49, 0x56, 0x52, 0xA7, 0xD0, 0xD7, 0x43, 0x4C, 0x92, 0x24, 0x95, 0x76, 0xB8, 0xCF, +0xF3, 0x14, 0x8C, 0xD4, 0xCC, 0x0A, 0x2A, 0xE4, 0xD6, 0x6F, 0x18, 0x2C, 0x99, 0x91, 0x7F, 0x51, +0x54, 0xE9, 0x96, 0x98, 0x51, 0x45, 0x14, 0x0C, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x94, 0x29, +0x34, 0x01, 0xFF, 0xD2, 0xFE, 0x33, 0xEA, 0x55, 0x4C, 0x72, 0x79, 0x34, 0xE0, 0xA0, 0x52, 0xD0, +0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x07, 0xFF, 0xD3, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD4, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x8A, 0x00, 0x2A, 0x58, 0x7E, 0xFF, 0x00, 0xE1, 0x51, 0x54, 0xD0, 0x8F, 0x98, +0x9F, 0x6A, 0xA8, 0xEE, 0x26, 0x4C, 0xE7, 0x80, 0x2A, 0x2A, 0x7B, 0x9E, 0x69, 0x95, 0xB9, 0x98, +0x51, 0x45, 0x14, 0x01, 0xFF, 0xD5, 0xFE, 0x37, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0xBF, 0x11, +0xDD, 0x18, 0xFC, 0xAA, 0x85, 0x5A, 0xB7, 0x3F, 0x7D, 0x7F, 0x11, 0x51, 0x51, 0x68, 0x26, 0x59, +0xA2, 0x8A, 0x2B, 0x01, 0x05, 0x48, 0x87, 0xB5, 0x47, 0x45, 0x00, 0x58, 0xA2, 0x91, 0x4E, 0x47, +0xBD, 0x2D, 0x00, 0x7F, 0xFF, 0xD6, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD7, 0xFE, +0x3C, 0xDE, 0x15, 0x6E, 0x47, 0xCA, 0xD5, 0x55, 0xD1, 0x90, 0xE0, 0x8A, 0xD0, 0xA0, 0x80, 0x46, +0x08, 0xC8, 0xAA, 0x8C, 0xDA, 0x30, 0xB9, 0x99, 0x45, 0x59, 0x78, 0x3B, 0xA7, 0xE5, 0x55, 0xC8, +0x23, 0x82, 0x30, 0x6B, 0x65, 0x2B, 0x8C, 0x4A, 0x28, 0xA2, 0x98, 0xC2, 0x8A, 0x28, 0xA0, 0x05, +0x00, 0x92, 0x00, 0xE4, 0xD6, 0xF4, 0x51, 0x88, 0xA3, 0x54, 0x1D, 0x87, 0xE7, 0x59, 0x76, 0x71, +0xEF, 0x9B, 0x71, 0xE8, 0xA3, 0x3F, 0x8D, 0x6C, 0x56, 0x55, 0x1F, 0x41, 0x33, 0xFF, 0xD0, 0xFE, +0x42, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, +0x50, 0x03, 0xD3, 0xBD, 0x3E, 0x98, 0xBD, 0x4D, 0x3E, 0x99, 0xAC, 0x36, 0x3F, 0xFF, 0xD1, 0xFE, +0x43, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, +0x00, 0x28, 0xA2, 0x9A, 0xEE, 0xB1, 0xAB, 0x3B, 0x90, 0xAA, 0x3A, 0xD0, 0x07, 0xFF, 0xD2, 0xFE, +0x43, 0x59, 0x95, 0x14, 0xBB, 0x90, 0xAA, 0x3A, 0x9A, 0xC0, 0xBB, 0xBB, 0x6B, 0x83, 0xB5, 0x72, +0xB0, 0x8E, 0x83, 0xD7, 0xDC, 0xD2, 0x5D, 0x5D, 0xB5, 0xC3, 0x10, 0xB9, 0x58, 0x47, 0x41, 0xEB, +0xEE, 0x6A, 0x9D, 0x23, 0x29, 0x48, 0x28, 0xA2, 0xA3, 0x91, 0xB0, 0x31, 0xDE, 0x82, 0x52, 0xB9, +0x1B, 0x1D, 0xC7, 0xDA, 0x9B, 0x45, 0x14, 0xCD, 0xD2, 0x0A, 0xAF, 0x53, 0x9E, 0x86, 0xA0, 0xA0, +0x02, 0x94, 0x75, 0xA4, 0xA2, 0x80, 0x67, 0xFF, 0xD3, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, +0xFF, 0xD4, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, +0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD5, 0xFE, 0x34, 0x69, 0xB4, 0x13, +0x49, 0x5A, 0xC2, 0x36, 0xD5, 0x98, 0xA1, 0x6A, 0xD4, 0x2D, 0x95, 0xC1, 0xEA, 0x2A, 0xB1, 0xEB, +0x4A, 0x8D, 0xB5, 0x81, 0xA8, 0x52, 0xD6, 0xE6, 0x96, 0xD0, 0xBB, 0x45, 0x14, 0x56, 0xE4, 0x0A, +0x09, 0x1C, 0x82, 0x45, 0x4C, 0xB3, 0x30, 0xFB, 0xDC, 0x8A, 0x82, 0x8A, 0x1A, 0x0B, 0x97, 0x56, +0x54, 0x6E, 0xF8, 0x3E, 0xF5, 0x25, 0x67, 0x53, 0x95, 0x99, 0x7A, 0x12, 0x2B, 0x37, 0x4F, 0xB1, +0x5C, 0xC7, 0xFF, 0xD6, 0xFE, 0x3B, 0xE8, 0xAA, 0xCB, 0x39, 0xFE, 0x21, 0x9A, 0x99, 0x64, 0x46, +0xE8, 0x79, 0xAA, 0x71, 0x62, 0xB8, 0xFA, 0x28, 0xA2, 0xA4, 0x61, 0x45, 0x14, 0x50, 0x01, 0x45, +0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD7, 0xFE, 0x43, 0xE8, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0x29, 0x08, 0x04, 0x10, 0x46, 0x45, 0x2D, 0x14, 0x01, 0x9D, 0x34, 0x06, 0x3C, +0xB2, 0xF2, 0x9F, 0xCA, 0xAB, 0xD6, 0xC1, 0x00, 0x82, 0x08, 0xC8, 0xAA, 0x13, 0xC1, 0xB3, 0x2E, +0xBF, 0x73, 0xF9, 0x56, 0xB0, 0x9F, 0x46, 0x43, 0x89, 0x5A, 0x8A, 0x28, 0xAD, 0x09, 0x3F, 0xFF, +0xD0, 0xFE, 0x3D, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x30, 0x0D, 0x14, 0x51, 0x60, 0x3F, 0xFF, 0xD1, 0xFE, 0x3D, 0x0A, +0x8E, 0xD4, 0x9B, 0x4D, 0x3E, 0x8A, 0xDD, 0xC1, 0x18, 0xD8, 0x8C, 0x82, 0x3A, 0xD5, 0x69, 0xAD, +0xA3, 0x97, 0x9F, 0xBA, 0xDE, 0xA2, 0xAE, 0xD2, 0x10, 0x0D, 0x66, 0xE9, 0x01, 0xCF, 0xCB, 0x04, +0x90, 0x9F, 0x98, 0x71, 0xEA, 0x3A, 0x54, 0x35, 0xD2, 0x14, 0x04, 0x11, 0xC1, 0x1E, 0x86, 0xB3, +0xE7, 0xB1, 0x18, 0x2D, 0x17, 0xCA, 0x7D, 0x3B, 0x54, 0xF2, 0xB2, 0xD4, 0xBB, 0x99, 0x74, 0x53, +0x99, 0x19, 0x18, 0xAB, 0x29, 0x0D, 0xE9, 0x4F, 0x54, 0xC7, 0x27, 0x93, 0x48, 0xB1, 0xAA, 0x99, +0xE4, 0xF0, 0x2A, 0x5A, 0x28, 0xA0, 0x0F, 0xFF, 0xD2, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, +0xD3, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0xFF, 0xD4, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x8A, 0x00, 0x2A, 0x68, 0x3A, 0xB7, 0xD2, 0xA1, 0xA9, 0x63, 0xE8, 0xE6, 0xAA, 0x1B, 0x8A, +0x5B, 0x0F, 0x3C, 0x92, 0x69, 0x28, 0xA2, 0xB7, 0x33, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD5, +0xFE, 0x37, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x96, 0x13, 0x89, 0x17, 0xA6, 0x3A, 0x54, 0x54, +0xBD, 0x30, 0x45, 0x0D, 0x01, 0xA5, 0x45, 0x03, 0x90, 0x0D, 0x15, 0xCA, 0x48, 0x51, 0x45, 0x14, +0x00, 0xE5, 0x38, 0x3E, 0xD5, 0x35, 0x57, 0xA9, 0x51, 0xB3, 0xC5, 0x00, 0x7F, 0xFF, 0xD6, 0xFE, +0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, +0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD7, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x4C, +0x74, 0x57, 0x18, 0x3F, 0x9D, 0x3E, 0x8A, 0x13, 0x02, 0x8B, 0xC4, 0xC9, 0xCF, 0x51, 0xEB, 0x51, +0x56, 0x9D, 0x42, 0xF0, 0x86, 0xE5, 0x7E, 0x53, 0x5A, 0xC6, 0xA7, 0x71, 0xDC, 0xA5, 0x45, 0x39, +0x91, 0x90, 0xE1, 0x86, 0x29, 0xF0, 0xC7, 0xE6, 0xC8, 0xA9, 0xDB, 0xBF, 0xD2, 0xB5, 0xBF, 0x51, +0x9A, 0xB6, 0x91, 0xF9, 0x70, 0x8C, 0xF5, 0x3C, 0xD5, 0x9A, 0x28, 0xAE, 0x56, 0xEE, 0x49, 0xFF, +0xD0, 0xFE, 0x42, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x03, 0x97, 0xAD, 0x49, 0x51, 0xAF, 0x51, 0x52, 0x53, 0x34, 0x86, 0xC7, 0xFF, +0xD1, 0xFE, 0x43, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x99, 0x24, 0x89, 0x12, 0x34, 0x92, 0x30, 0x55, 0x14, 0x00, 0x49, 0x22, 0x44, 0x8C, 0xEE, +0xC1, 0x54, 0x57, 0x3F, 0x75, 0x74, 0xD7, 0x0D, 0xDD, 0x62, 0x1D, 0x07, 0xF5, 0x34, 0x97, 0x37, +0x4F, 0x70, 0xFC, 0xFC, 0xB1, 0x8F, 0xBA, 0x3F, 0xC6, 0xAA, 0xD2, 0x32, 0x94, 0x8F, 0xFF, 0xD2, +0xFE, 0x38, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0xD2, 0xAB, 0x13, 0x92, 0x4D, 0x49, 0x23, 0x7F, 0x0D, +0x45, 0x4C, 0xD2, 0x08, 0x28, 0xA2, 0x8A, 0x0B, 0x1A, 0xDC, 0x29, 0xA8, 0x6A, 0x67, 0xFB, 0xA6, +0xA1, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD3, 0xFE, 0x34, 0x05, 0x2D, 0x36, 0x9D, 0x48, +0xCA, 0x68, 0x28, 0xA2, 0x8A, 0x09, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, +0xA2, 0x80, 0x3F, 0xFF, 0xD4, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, +0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x48, 0x4F, 0x6A, 0x52, 0x71, 0x4C, 0xAD, 0x29, +0xC7, 0xA8, 0xD1, 0xFF, 0xD5, 0xFE, 0x33, 0xA8, 0xA2, 0x96, 0xBA, 0x5B, 0x32, 0x0A, 0x28, 0xA2, +0xB9, 0x8D, 0x4B, 0x50, 0xB6, 0x57, 0x07, 0xA8, 0xA9, 0x6A, 0x92, 0x36, 0xD6, 0x06, 0xAE, 0xD6, +0xD0, 0x7A, 0x19, 0xC9, 0x05, 0x14, 0x51, 0x56, 0x20, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD6, 0xFE, +0x37, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x1E, 0xAE, 0xCB, 0xD0, 0x9A, 0x98, 0x4F, 0xFD, 0xE1, 0xF9, +0x55, 0x6A, 0x29, 0x38, 0xA6, 0x34, 0xCB, 0xCA, 0xEA, 0xDD, 0x0D, 0x3E, 0xB3, 0xAA, 0x41, 0x23, +0xAF, 0x7C, 0x8F, 0x7A, 0x87, 0x4F, 0xB0, 0xD4, 0x8B, 0xB4, 0x55, 0x75, 0x9C, 0x7F, 0x10, 0xC5, +0x4C, 0x19, 0x5B, 0xA1, 0x06, 0xB3, 0x71, 0x68, 0xA4, 0xC7, 0x51, 0x45, 0x14, 0x86, 0x7F, 0xFF, +0xD7, 0xFE, 0x43, 0xE8, 0xAB, 0x92, 0xC5, 0xBF, 0xE6, 0x1C, 0x37, 0xF3, 0xAA, 0x64, 0x10, 0x70, +0x78, 0x34, 0x09, 0x3B, 0x85, 0x14, 0x51, 0x40, 0xC2, 0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, +0x0A, 0x33, 0xC1, 0xB7, 0xE6, 0x40, 0x71, 0xDC, 0x7A, 0x55, 0x4A, 0xD9, 0xAA, 0x53, 0xC1, 0xD5, +0xD0, 0x7D, 0x45, 0x6B, 0x19, 0xF7, 0x21, 0xC4, 0xFF, 0xD0, 0xFE, 0x3D, 0xA8, 0xA2, 0x8A, 0xE9, +0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, +0x80, 0x3F, 0xFF, 0xD1, 0xFE, 0x3D, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, +0x50, 0x09, 0x38, 0x14, 0xE5, 0x52, 0xDD, 0x3A, 0x54, 0xE0, 0x05, 0x18, 0x15, 0x32, 0x9D, 0x84, +0x51, 0xB9, 0x89, 0x48, 0x0A, 0x40, 0x2D, 0xD7, 0x3E, 0x95, 0x98, 0xC9, 0xB4, 0x95, 0x20, 0x56, +0xAC, 0xC7, 0x32, 0x1F, 0x6E, 0x2A, 0xB4, 0x89, 0xBC, 0x71, 0x8D, 0xD4, 0xAC, 0xED, 0x71, 0xA2, +0x8E, 0xD1, 0xE8, 0x28, 0xDA, 0x3D, 0x05, 0x3B, 0xEB, 0x45, 0x25, 0x24, 0x53, 0x4C, 0xFF, 0xD2, +0xFE, 0x37, 0x76, 0xAF, 0xA5, 0x1B, 0x57, 0xD2, 0x96, 0x8A, 0xE8, 0xE5, 0x46, 0x57, 0x13, 0x6A, +0xFA, 0x52, 0x6D, 0x5F, 0x4A, 0x75, 0x14, 0x72, 0xA0, 0xB8, 0xDD, 0x83, 0xDE, 0x8D, 0x83, 0xDE, +0x9D, 0x45, 0x1C, 0xA8, 0x77, 0x63, 0x76, 0x0F, 0x7A, 0x4D, 0x83, 0xD4, 0xD3, 0xE8, 0xA5, 0xC8, +0x82, 0xEC, 0x66, 0xC1, 0xEA, 0x68, 0xD9, 0xEF, 0x4F, 0xA2, 0x8E, 0x44, 0x1C, 0xCC, 0xFF, 0xD3, +0xFE, 0x36, 0xF6, 0x7B, 0xD1, 0xB3, 0xDE, 0x9F, 0x45, 0x6F, 0xC8, 0x8C, 0xF9, 0x99, 0x1E, 0xCF, +0x7A, 0x36, 0x1F, 0x6A, 0x92, 0x8A, 0x5C, 0x88, 0x39, 0x99, 0x1E, 0xC3, 0xED, 0x46, 0xC3, 0xED, +0x52, 0x51, 0x47, 0xB3, 0x41, 0xCC, 0xC8, 0xF6, 0x1F, 0x6A, 0x4D, 0xAD, 0xE9, 0x52, 0xD1, 0x47, +0xB3, 0x43, 0xE6, 0x22, 0xDA, 0xDE, 0x94, 0x6D, 0x6F, 0x4A, 0x96, 0x8A, 0x3D, 0x9A, 0x0E, 0x63, +0xFF, 0xD4, 0xFE, 0x36, 0x76, 0xB7, 0xA5, 0x1B, 0x5B, 0xD2, 0xA5, 0xA2, 0xB6, 0xF6, 0x68, 0x8E, +0x62, 0x1C, 0x1F, 0x43, 0x46, 0x0F, 0xA1, 0xA9, 0xA8, 0xA5, 0xEC, 0xC3, 0x98, 0x87, 0x07, 0xD0, +0xD4, 0x89, 0x90, 0x0D, 0x3E, 0x94, 0xD2, 0x4A, 0xCC, 0x4E, 0x43, 0x68, 0xA2, 0x8A, 0xD4, 0x41, +0x45, 0x14, 0x50, 0x07, 0xFF, 0xD5, 0xFE, 0x37, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, +0x80, 0x2F, 0x42, 0x73, 0x18, 0xF5, 0x1C, 0x54, 0xB5, 0x5A, 0xDC, 0xFD, 0xE5, 0xFC, 0x6A, 0xCD, +0x73, 0xCD, 0x6A, 0x4B, 0x0A, 0x28, 0xA2, 0xA4, 0x02, 0x94, 0x1C, 0x1C, 0xD2, 0x51, 0x40, 0x1F, +0xFF, 0xD6, 0xFE, 0x3E, 0x41, 0xC8, 0xCD, 0x15, 0x1A, 0x1E, 0x71, 0x52, 0x52, 0x30, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, +0xD7, 0xFE, 0x3E, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0xE0, 0xA7, +0xBD, 0x00, 0x95, 0xC6, 0xED, 0xDD, 0xC6, 0x33, 0x4B, 0x02, 0x24, 0x04, 0xB3, 0x77, 0xE0, 0x7B, +0x54, 0xBF, 0x4A, 0x46, 0x1B, 0x81, 0x14, 0xCB, 0xE4, 0xD0, 0xB7, 0x9C, 0xF2, 0x39, 0x14, 0x56, +0x6A, 0x4A, 0xF1, 0x1C, 0x67, 0x23, 0xB8, 0xAB, 0xB1, 0xCC, 0x92, 0x74, 0xE1, 0xBD, 0x29, 0x10, +0x7F, 0xFF, 0xD0, 0xFE, 0x42, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, +0x50, 0x01, 0x45, 0x14, 0x50, 0x03, 0x97, 0xA8, 0xA9, 0x2A, 0x21, 0xD4, 0x54, 0xB4, 0xD1, 0xA4, +0x36, 0x3F, 0xFF, 0xD1, 0xFE, 0x43, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0xA2, 0x96, 0x54, 0x85, 0x0B, 0xC8, 0x70, 0x3F, 0x9D, 0x00, 0x2C, 0xB2, 0xA4, 0x28, 0x5E, 0x43, +0x85, 0x1F, 0xAD, 0x73, 0xB7, 0x37, 0x2F, 0x72, 0xFB, 0x8F, 0xCA, 0x83, 0xA2, 0xFA, 0x51, 0x71, +0x70, 0xF7, 0x0F, 0xB9, 0x8E, 0x10, 0x7D, 0xD5, 0xF4, 0xAA, 0xF4, 0x8C, 0xA5, 0x2B, 0x85, 0x14, +0x51, 0x41, 0x27, 0xFF, 0xD2, 0xFE, 0x38, 0x69, 0x09, 0xC0, 0xCD, 0x2D, 0x43, 0x23, 0x73, 0xB7, +0xB5, 0x23, 0x14, 0xAE, 0x47, 0xD7, 0x9A, 0x28, 0xA2, 0x99, 0xB0, 0x51, 0x45, 0x14, 0x00, 0xC7, +0xE9, 0x51, 0x54, 0x92, 0x76, 0x15, 0x1D, 0x00, 0x14, 0x51, 0x45, 0x00, 0x7F, 0xFF, 0xD3, 0xFE, +0x33, 0xE9, 0xC2, 0x9B, 0x4A, 0x28, 0x26, 0x4B, 0x41, 0x68, 0xA2, 0x8A, 0x46, 0x41, 0x45, 0x14, +0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD4, 0xFE, 0x34, 0x68, 0xA2, +0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x86, 0x9C, 0x63, +0x70, 0x10, 0x9A, 0x4A, 0x28, 0xAE, 0x94, 0x8A, 0x3F, 0xFF, 0xD5, 0xFE, 0x33, 0xA9, 0x69, 0x29, +0x6B, 0xA2, 0x5B, 0x19, 0xA0, 0xA2, 0x8A, 0x2B, 0x9C, 0xD0, 0x2A, 0xD4, 0x2D, 0x95, 0xC1, 0xEA, +0x2A, 0xAD, 0x39, 0x1B, 0x6B, 0x03, 0x55, 0x17, 0x66, 0x26, 0x8B, 0xB4, 0x51, 0x45, 0x6E, 0x66, +0x14, 0x51, 0x45, 0x00, 0x7F, 0xFF, 0xD6, 0xFE, 0x37, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x5A, 0x4A, 0x28, 0x02, 0x55, 0x95, 0xD7, 0xBE, 0x47, +0xBD, 0x4C, 0xB3, 0xA9, 0xFB, 0xDC, 0x1A, 0xA8, 0x48, 0x15, 0x1B, 0x12, 0x78, 0xAC, 0xE4, 0x96, +0xC3, 0xE6, 0x3F, 0xFF, 0xD7, 0xFE, 0x48, 0x6A, 0x39, 0x23, 0x0E, 0x3D, 0x1B, 0xD6, 0xA4, 0xA2, +0x91, 0x82, 0x66, 0x7B, 0x29, 0x53, 0x82, 0x30, 0x69, 0xB5, 0xA0, 0xE8, 0x1C, 0x60, 0xD5, 0x17, +0x42, 0x87, 0x06, 0x99, 0xAC, 0x65, 0x71, 0xB4, 0x51, 0x45, 0x05, 0x05, 0x14, 0x51, 0x40, 0x05, +0x14, 0x51, 0x40, 0x1F, 0xFF, 0xD0, 0xFE, 0x41, 0x27, 0x83, 0x39, 0x74, 0x1C, 0xF7, 0x15, 0x46, +0xB6, 0x6A, 0xAC, 0xF0, 0x6E, 0xCB, 0xA0, 0xF9, 0xBB, 0x8F, 0x5A, 0xD6, 0x33, 0xE8, 0xC8, 0x71, +0x28, 0x51, 0x4B, 0xD3, 0x83, 0x49, 0x5A, 0x12, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, +0x14, 0x51, 0x45, 0x00, 0x7F, 0xFF, 0xD1, 0xFE, 0x3D, 0xA8, 0xA2, 0x96, 0xBA, 0x4C, 0x84, 0xA9, +0x51, 0x33, 0xCB, 0x74, 0xA7, 0x2C, 0x78, 0xE4, 0xF2, 0x6A, 0x4A, 0xCA, 0x55, 0x3B, 0x0A, 0xE1, +0x45, 0x14, 0xC9, 0x0E, 0x11, 0x8D, 0x64, 0x90, 0x8A, 0x2C, 0x77, 0x12, 0x69, 0xB4, 0x51, 0x5D, +0x45, 0x10, 0xCB, 0x1E, 0x7E, 0x61, 0xD7, 0xBD, 0x56, 0xAB, 0xF5, 0x5A, 0x58, 0xF0, 0x4B, 0x0E, +0x9F, 0xCA, 0xB2, 0x9C, 0x7A, 0x95, 0x16, 0x7F, 0xFF, 0xD2, 0xFE, 0x37, 0xE8, 0xA2, 0x8A, 0xA5, +0x36, 0x84, 0xE2, 0x25, 0x14, 0xB4, 0x56, 0xAA, 0x69, 0x90, 0xD0, 0x94, 0x51, 0x45, 0x50, 0x82, +0x8A, 0x28, 0xA0, 0x02, 0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD3, 0xFE, 0x37, 0xA8, 0xA2, 0x8A, 0xE9, +0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, +0x80, 0x3F, 0xFF, 0xD4, 0xFE, 0x37, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA7, 0x81, 0x8A, +0x99, 0x4A, 0xC2, 0x0A, 0x28, 0xA2, 0xB9, 0xC4, 0x32, 0x8A, 0x53, 0xD6, 0x92, 0xBA, 0x93, 0xB9, +0x41, 0x45, 0x14, 0x50, 0x07, 0xFF, 0xD5, 0xFE, 0x37, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, +0xA2, 0x80, 0x25, 0x88, 0xE2, 0x45, 0xFC, 0xAA, 0xF5, 0x66, 0xF4, 0xE6, 0xB4, 0x41, 0xC8, 0x04, +0x56, 0x35, 0x50, 0x98, 0xB4, 0x51, 0x45, 0x66, 0x20, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD6, 0xFE, +0x3C, 0x6A, 0x75, 0x39, 0x1E, 0xF5, 0x05, 0x39, 0x4E, 0x0D, 0x23, 0x02, 0x6A, 0x28, 0xA2, 0x80, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD7, 0xFE, +0x3E, 0x68, 0xA2, 0x97, 0x04, 0xF4, 0xA4, 0x60, 0x25, 0x38, 0x02, 0x7D, 0x85, 0x38, 0x28, 0x1D, +0x79, 0x34, 0xEA, 0x0B, 0x50, 0xEE, 0x20, 0x00, 0x76, 0xA5, 0xA2, 0x8A, 0x66, 0x89, 0x05, 0x14, +0x51, 0x40, 0x15, 0xE5, 0x5C, 0x1D, 0xDE, 0xB5, 0x16, 0x71, 0xC8, 0xE0, 0xD5, 0xC6, 0x50, 0xCA, +0x45, 0x52, 0xA4, 0x65, 0x35, 0xA9, 0xFF, 0xD0, 0xFE, 0x3F, 0x23, 0xB9, 0x23, 0x02, 0x4E, 0x47, +0xAD, 0x5C, 0x56, 0x0C, 0x03, 0x29, 0x04, 0x56, 0x45, 0x3D, 0x1D, 0x90, 0xE5, 0x4E, 0x3F, 0xAD, +0x23, 0x03, 0x56, 0x8A, 0x82, 0x39, 0xD5, 0xF8, 0x3F, 0x2B, 0x54, 0xF4, 0x00, 0x51, 0x45, 0x14, +0x00, 0x51, 0x45, 0x14, 0x00, 0xB5, 0x2D, 0x43, 0x53, 0x50, 0x8B, 0x81, 0xFF, 0xD1, 0xFE, 0x43, +0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0xA1, 0x9E, 0x78, 0xE0, 0x4D, 0xEE, 0x7E, 0x83, 0xB9, 0xA0, +0x05, 0x9A, 0x64, 0x81, 0x0B, 0xB9, 0xC0, 0xEC, 0x3B, 0x93, 0x5C, 0xEC, 0xF3, 0xC9, 0x70, 0xE5, +0xDC, 0xE0, 0x76, 0x03, 0xA0, 0x14, 0x4F, 0x3C, 0x97, 0x0E, 0x5D, 0xCF, 0xD0, 0x76, 0x02, 0xA0, +0xA4, 0x65, 0x29, 0x5C, 0x28, 0xA2, 0x8A, 0x09, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD2, 0xFE, +0x37, 0xD9, 0xB6, 0x8C, 0xF7, 0xAA, 0xF4, 0xE7, 0x39, 0x3C, 0x74, 0xA6, 0xD0, 0x4C, 0x55, 0x82, +0x8A, 0x28, 0xA0, 0xA0, 0xA2, 0x8A, 0x28, 0x02, 0x39, 0x3B, 0x54, 0x74, 0xF7, 0xEB, 0x4C, 0xA0, +0x02, 0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD3, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x75, 0x14, 0x82, +0x96, 0x91, 0x8B, 0x56, 0x0A, 0x28, 0xA2, 0x81, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, +0x1F, 0xFF, 0xD4, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, +0x13, 0x42, 0x40, 0x21, 0xA6, 0xD1, 0x45, 0x74, 0xC6, 0x36, 0x18, 0x51, 0x45, 0x14, 0xC6, 0x7F, +0xFF, 0xD5, 0xFE, 0x33, 0xA9, 0x69, 0x29, 0x6B, 0x79, 0xEC, 0x67, 0x1D, 0xC2, 0x8A, 0x28, 0xAC, +0x0D, 0x02, 0x8A, 0x28, 0xA0, 0x0B, 0x50, 0xB6, 0x57, 0x07, 0xA8, 0xA9, 0x6A, 0x92, 0x36, 0xD6, +0x06, 0xAE, 0xD6, 0xD0, 0x7A, 0x19, 0xC9, 0x05, 0x14, 0x51, 0x56, 0x23, 0xFF, 0xD6, 0xFE, 0x37, +0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA0, 0x90, 0x28, 0x6C, 0x02, +0x9A, 0x5B, 0xD2, 0x90, 0x92, 0x7E, 0x94, 0xDA, 0xC6, 0x55, 0x3B, 0x0A, 0xE2, 0xD2, 0x0E, 0x58, +0x51, 0x42, 0x7D, 0xE1, 0x4A, 0x1D, 0x58, 0x91, 0xFF, 0xD7, 0xFE, 0x48, 0x68, 0xA2, 0x8A, 0x46, +0x01, 0x48, 0x54, 0x30, 0xC1, 0x19, 0xA5, 0xA2, 0x80, 0x28, 0xC9, 0x19, 0x43, 0xEA, 0x3D, 0x6A, +0x3A, 0xD2, 0x20, 0x11, 0x83, 0xC8, 0xAA, 0x72, 0x44, 0x57, 0xE6, 0x5E, 0x57, 0xF9, 0x53, 0x34, +0x8C, 0x88, 0x68, 0xA2, 0x8A, 0x0B, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD0, 0xFE, 0x43, 0xE8, +0xA2, 0x8A, 0x00, 0xAF, 0x34, 0x01, 0xC1, 0x65, 0xE1, 0xFF, 0x00, 0x9D, 0x67, 0x90, 0x41, 0xC1, +0x04, 0x1A, 0xD8, 0xA8, 0x26, 0x84, 0x48, 0x32, 0x30, 0x1F, 0xF9, 0xD6, 0x91, 0x9F, 0x46, 0x4B, +0x89, 0x9B, 0x45, 0x29, 0x05, 0x49, 0x04, 0x60, 0xD2, 0x56, 0xA4, 0x05, 0x14, 0x51, 0x40, 0x05, +0x14, 0x54, 0x8A, 0x85, 0xBA, 0xF0, 0x28, 0x6E, 0xC0, 0x7F, 0xFF, 0xD1, 0xFE, 0x3E, 0x15, 0x4B, +0x1C, 0x0A, 0x9D, 0x54, 0x2F, 0xD6, 0x9C, 0x06, 0x38, 0x14, 0x55, 0x4A, 0x77, 0x30, 0xB8, 0x51, +0x45, 0x15, 0x00, 0x15, 0x05, 0xC1, 0xC2, 0x81, 0xEA, 0x6A, 0x7A, 0xA7, 0x70, 0x72, 0xE0, 0x7A, +0x0A, 0xA8, 0x2D, 0x41, 0x10, 0x51, 0x45, 0x15, 0xD0, 0x50, 0x50, 0x40, 0x23, 0x07, 0x91, 0x45, +0x14, 0x01, 0xFF, 0xD2, 0xFE, 0x38, 0xE4, 0x42, 0x87, 0xA7, 0xCB, 0xDA, 0xA3, 0xAB, 0xCC, 0x03, +0x02, 0x0D, 0x53, 0x65, 0x2A, 0x70, 0x6A, 0xE7, 0x1B, 0x12, 0x98, 0xDA, 0x28, 0xA2, 0xA0, 0xA0, +0xA2, 0x8A, 0x2A, 0xD4, 0xD9, 0x2E, 0x22, 0x51, 0x4B, 0x45, 0x6A, 0xA4, 0x99, 0x0D, 0x09, 0x45, +0x14, 0x53, 0x03, 0xFF, 0xD3, 0xFE, 0x37, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA2, 0x80, 0x3F, 0xFF, 0xD4, 0xFE, +0x37, 0xA8, 0xA2, 0x9C, 0x05, 0x74, 0x37, 0x63, 0x20, 0x03, 0xBD, 0x2D, 0x14, 0x57, 0x3C, 0x9D, +0xC9, 0x0A, 0x28, 0xA2, 0x90, 0x08, 0x7A, 0x53, 0x69, 0xF4, 0xCA, 0xDA, 0x93, 0x1A, 0x0A, 0x28, +0xA2, 0xB4, 0x19, 0xFF, 0xD5, 0xFE, 0x37, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, 0xA2, 0x80, +0x0A, 0xBD, 0x01, 0xCA, 0x01, 0xE9, 0x54, 0x6A, 0xCD, 0xB9, 0xE5, 0x86, 0x6A, 0x2A, 0x2D, 0x04, +0xCB, 0x54, 0x51, 0x45, 0x60, 0x20, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD6, 0xFE, 0x3C, 0x68, 0xA2, +0x8A, 0x46, 0x04, 0xA8, 0xD9, 0xE2, 0x9F, 0x50, 0x03, 0x83, 0x9A, 0x9C, 0x1C, 0x80, 0x68, 0x00, +0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x00, 0xA5, 0xA5, 0x0A, 0x4F, 0x5E, 0x05, 0x3C, 0x00, +0x3A, 0x50, 0x52, 0x89, 0xFF, 0xD7, 0xFE, 0x3F, 0x02, 0xFA, 0xD3, 0xE8, 0xA2, 0x81, 0x25, 0x60, +0xA2, 0x8A, 0x28, 0x18, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x55, 0x69, 0x57, 0x6B, +0x6E, 0x1D, 0x0D, 0x59, 0xA6, 0xBA, 0xEE, 0x52, 0x28, 0x26, 0x4A, 0xE8, 0xFF, 0xD0, 0xFE, 0x3C, +0x68, 0xA2, 0x8A, 0x46, 0x01, 0x56, 0x23, 0xB8, 0x64, 0xE1, 0xBE, 0x65, 0xFE, 0x55, 0x5E, 0x8A, +0x00, 0xD6, 0x47, 0x57, 0x19, 0x53, 0x9A, 0x75, 0x64, 0xAB, 0x32, 0x9C, 0xA9, 0x20, 0xD5, 0xD8, +0xEE, 0x54, 0xF0, 0xFF, 0x00, 0x29, 0xF5, 0xED, 0x40, 0x16, 0x68, 0xA2, 0x8A, 0x00, 0x2A, 0x6E, +0xC2, 0xA1, 0xA9, 0x47, 0x41, 0x42, 0x2A, 0x1B, 0x9F, 0xFF, 0xD1, 0xFE, 0x43, 0xE8, 0xA2, 0xAB, +0xDC, 0x5C, 0x25, 0xBA, 0x16, 0x6E, 0x5B, 0xF8, 0x57, 0xD6, 0x80, 0x16, 0xE2, 0x74, 0xB7, 0x8C, +0xBB, 0xF2, 0x7B, 0x0F, 0x53, 0x5C, 0xF4, 0xD3, 0x3C, 0xEE, 0x5D, 0xCF, 0xD0, 0x7A, 0x0A, 0x49, +0x65, 0x79, 0x9C, 0xBB, 0x9C, 0x9E, 0xC3, 0xB0, 0x15, 0x15, 0x23, 0x29, 0x4A, 0xE1, 0x45, 0x14, +0x50, 0x48, 0x51, 0x45, 0x14, 0x00, 0x53, 0x24, 0x38, 0x18, 0xF5, 0xA7, 0xD5, 0x66, 0x39, 0x24, +0xD0, 0x8A, 0x82, 0x3F, 0xFF, 0xD2, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x85, 0xFE, 0xF1, 0xA6, 0xD3, 0x9F, 0xEF, 0x1A, 0x6D, 0x00, 0x14, 0x51, +0x45, 0x00, 0x7F, 0xFF, 0xD3, 0xFE, 0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x05, 0x3A, 0x9B, 0x4E, 0x1D, +0x29, 0x33, 0x39, 0xAE, 0xA1, 0x45, 0x14, 0x50, 0x40, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, +0x01, 0xFF, 0xD4, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x4D, 0x26, +0x94, 0x9E, 0xD4, 0xDA, 0xDA, 0x9C, 0x7A, 0x8D, 0x05, 0x14, 0x51, 0x5A, 0x0C, 0x28, 0xA2, 0x8A, +0x00, 0xFF, 0xD5, 0xFE, 0x33, 0xA9, 0x69, 0x29, 0xC7, 0xAD, 0x6B, 0x51, 0x91, 0x1D, 0xC4, 0xA2, +0x8A, 0x2B, 0x22, 0xC2, 0x8A, 0x28, 0xA0, 0x02, 0xAD, 0x42, 0xD9, 0x5C, 0x1E, 0xA2, 0xAA, 0xD3, +0x91, 0xB6, 0xB0, 0x35, 0x51, 0x76, 0x62, 0x68, 0xBB, 0x45, 0x14, 0x56, 0xE6, 0x67, 0xFF, 0xD6, +0xFE, 0x37, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x29, 0x09, 0x02, 0x98, 0x49, 0x3F, 0x4A, 0x99, +0x4D, 0x21, 0x0E, 0x2D, 0xE9, 0x4D, 0xA4, 0xA2, 0xB0, 0x72, 0xB8, 0x82, 0x8A, 0x28, 0xA4, 0x02, +0x1E, 0x94, 0xA9, 0xF7, 0xC5, 0x34, 0xF5, 0xA7, 0xC7, 0xF7, 0xAB, 0x64, 0xAD, 0x11, 0x9F, 0xFF, +0xD7, 0xFE, 0x48, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x05, +0x69, 0x61, 0xC7, 0xCC, 0x9D, 0x3D, 0x2A, 0xB5, 0x69, 0x54, 0x12, 0xC5, 0x9F, 0x99, 0x7A, 0xF7, +0x1E, 0xB4, 0x17, 0x19, 0x15, 0x28, 0xA2, 0x8A, 0x66, 0x87, 0xFF, 0xD0, 0xFE, 0x43, 0xE8, 0xA2, +0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x86, 0x58, 0x44, 0x83, 0xD1, 0xBB, 0x1A, 0xCE, 0x65, 0x28, +0x4A, 0xB0, 0xC1, 0xAD, 0x7A, 0x8A, 0x58, 0x96, 0x45, 0xE7, 0x86, 0xEC, 0x6A, 0xE1, 0x3B, 0x12, +0xE2, 0x65, 0xD1, 0x52, 0x34, 0x6C, 0xAD, 0xB0, 0x8E, 0x6A, 0x45, 0x40, 0xBE, 0xE6, 0xB4, 0x94, +0xEC, 0x66, 0xC6, 0xAC, 0x7D, 0xDB, 0xF2, 0xA9, 0x68, 0xA2, 0xB0, 0x72, 0xB8, 0x8F, 0xFF, 0xD1, +0xFE, 0x40, 0x68, 0xA2, 0x8A, 0x46, 0x01, 0x45, 0x14, 0x50, 0x01, 0x59, 0xF2, 0x1D, 0xCE, 0xC6, +0xAF, 0xB1, 0xC2, 0x93, 0xED, 0x59, 0xB5, 0xA5, 0x24, 0x34, 0x14, 0x51, 0x45, 0x6C, 0x30, 0xA2, +0x8A, 0x28, 0x03, 0xFF, 0xD2, 0xFE, 0x3B, 0xA9, 0x92, 0x26, 0xF1, 0xEF, 0xDA, 0x9F, 0x45, 0x74, +0xB4, 0x64, 0x51, 0x20, 0x83, 0x83, 0xC1, 0xA4, 0xAB, 0x52, 0xA6, 0xE1, 0xB8, 0x75, 0x15, 0x56, +0xB9, 0xE5, 0x1B, 0x1A, 0x26, 0x14, 0x51, 0x45, 0x21, 0x85, 0x14, 0x51, 0x40, 0x05, 0x25, 0x2D, +0x15, 0x6A, 0xA1, 0x2E, 0x27, 0xFF, 0xD3, 0xFE, 0x37, 0xA8, 0xA5, 0xA4, 0xAE, 0x84, 0xEE, 0x64, +0xD0, 0x51, 0x45, 0x14, 0xC0, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x96, +0x80, 0x3F, 0xFF, 0xD4, 0xFE, 0x37, 0xC0, 0xCD, 0x3A, 0x8A, 0x29, 0xCE, 0x57, 0x30, 0x0A, 0x28, +0xA2, 0xA4, 0x02, 0x8A, 0x28, 0xA0, 0x02, 0x90, 0xD2, 0xD0, 0x7A, 0x55, 0x41, 0xEA, 0x08, 0x65, +0x14, 0x51, 0x5D, 0x05, 0x1F, 0xFF, 0xD5, 0xFE, 0x37, 0xA8, 0xA2, 0x8A, 0xE9, 0x32, 0x0A, 0x28, +0xA2, 0x80, 0x0A, 0x92, 0x36, 0xDA, 0xEA, 0x6A, 0x3A, 0x28, 0x68, 0x0D, 0x3A, 0x29, 0x14, 0xE5, +0x41, 0xA5, 0xAE, 0x52, 0x42, 0x8A, 0x28, 0xA0, 0x0F, 0xFF, 0xD6, 0xFE, 0x3C, 0x68, 0xA2, 0x8A, +0x46, 0x01, 0x4F, 0x43, 0x83, 0x8E, 0xD4, 0xCA, 0x28, 0x02, 0xC5, 0x14, 0x89, 0xF3, 0x0E, 0x39, +0x35, 0x28, 0x5F, 0x5E, 0x68, 0x1A, 0x57, 0x18, 0x14, 0x9F, 0xA5, 0x48, 0x14, 0x0A, 0x5A, 0x29, +0x9A, 0x28, 0xD8, 0x28, 0xA2, 0x8A, 0x0A, 0x3F, 0xFF, 0xD7, 0xFE, 0x3F, 0xE8, 0xA2, 0x8A, 0x00, +0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, +0xFF, 0xD0, 0xFE, 0x3D, 0x65, 0x5D, 0xAD, 0x91, 0xD0, 0xD4, 0x75, 0x6E, 0x45, 0xDC, 0xA4, 0x77, +0xAA, 0x94, 0x8C, 0xA4, 0xB5, 0x0A, 0x28, 0xA2, 0x82, 0x42, 0x8A, 0x28, 0xA0, 0x09, 0xA3, 0x99, +0xE3, 0xE0, 0x72, 0xBE, 0x95, 0x7A, 0x39, 0x52, 0x41, 0xC1, 0xC3, 0x7A, 0x77, 0xAC, 0xBA, 0x50, +0x48, 0x39, 0x07, 0x06, 0x80, 0x35, 0xEA, 0x55, 0xE8, 0x2B, 0x3A, 0x3B, 0x9E, 0xD2, 0x7E, 0x75, +0x34, 0xD7, 0x51, 0xC1, 0x10, 0x6C, 0x86, 0x73, 0xF7, 0x40, 0xEF, 0x41, 0x51, 0x7A, 0x9F, 0xFF, +0xD1, 0xFE, 0x41, 0xEE, 0x6E, 0x52, 0xDD, 0x32, 0x7E, 0x67, 0x3F, 0x75, 0x7D, 0x7F, 0xFA, 0xD5, +0xCE, 0xCB, 0x2B, 0xCC, 0xE5, 0xE4, 0x6C, 0xB1, 0xFD, 0x28, 0x92, 0x47, 0x99, 0xDA, 0x49, 0x1B, +0x73, 0x1A, 0x8E, 0x91, 0x94, 0xA5, 0x70, 0xA2, 0x8A, 0x28, 0x24, 0x28, 0xA2, 0x8A, 0x00, 0x28, +0xA2, 0x83, 0xC7, 0x34, 0x01, 0x1C, 0x8D, 0xC6, 0xDA, 0x86, 0x94, 0x9C, 0x9C, 0xD2, 0x53, 0x36, +0x4A, 0xC7, 0xFF, 0xD2, 0xFE, 0x35, 0xE8, 0xA2, 0x8A, 0x00, 0x28, 0xA2, 0x8A, 0x00, 0x28, 0xA2, +0x8A, 0x00, 0x80, 0xF5, 0x34, 0x94, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x1F, 0xFF, 0xD3, 0xFE, +0x33, 0xE8, 0xA2, 0x8A, 0x00, 0x29, 0x45, 0x25, 0x14, 0x09, 0xA1, 0xD4, 0x51, 0x45, 0x23, 0x10, +0xA2, 0x8A, 0x28, 0x00, 0xA2, 0x8A, 0x28, 0x03, 0xFF, 0xD4, 0xFE, 0x34, 0x68, 0xA2, 0x8A, 0x46, +0x01, 0x48, 0x4D, 0x2D, 0x32, 0xB4, 0x84, 0x6F, 0xAB, 0x04, 0x14, 0x51, 0x45, 0x6C, 0x50, 0x51, +0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x01, 0xFF, 0xD5, 0xFE, 0x33, 0xA9, 0x68, 0xA2, 0xB4, 0xA8, +0xC9, 0x88, 0x51, 0x45, 0x15, 0x99, 0x41, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x05, 0xA8, +0x5B, 0x2B, 0x83, 0xD4, 0x54, 0xB5, 0x49, 0x1B, 0x6B, 0x03, 0x57, 0x0B, 0x0A, 0xDA, 0x12, 0xD0, +0xCE, 0x48, 0xFF, 0xD6, 0xFE, 0x37, 0xA9, 0xA5, 0xBD, 0x29, 0xA4, 0x93, 0x49, 0x57, 0x2A, 0x9D, +0x8C, 0x6E, 0x2D, 0x25, 0x14, 0x56, 0x62, 0x0A, 0x28, 0xA2, 0x80, 0x0A, 0x28, 0xA6, 0x93, 0x8A, +0x71, 0x57, 0x60, 0x25, 0x4B, 0x17, 0xDE, 0x3F, 0x4A, 0x83, 0x7A, 0xFA, 0xD4, 0x91, 0x38, 0x2D, +0x8F, 0x5A, 0xDE, 0x7B, 0x0C, 0xFF, 0xD9 +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/Header.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/Header.h new file mode 100644 index 0000000..7ba6133 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/Header.h @@ -0,0 +1,7426 @@ +#pragma once +unsigned char Icons[] = +{ + 0x00, 0x01, 0x00, 0x00, 0x00, 0x0B, 0x00, 0x80, 0x00, 0x03, 0x00, 0x30, 0x4F, 0x53, 0x2F, 0x32, + 0x12, 0xB0, 0x0D, 0x68, 0x00, 0x00, 0x00, 0xBC, 0x00, 0x00, 0x00, 0x60, 0x63, 0x6D, 0x61, 0x70, + 0x00, 0x8D, 0x00, 0xF2, 0x00, 0x00, 0x01, 0x1C, 0x00, 0x00, 0x00, 0x5C, 0x67, 0x61, 0x73, 0x70, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x01, 0x78, 0x00, 0x00, 0x00, 0x08, 0x67, 0x6C, 0x79, 0x66, + 0x57, 0x8E, 0x23, 0x91, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x27, 0xC4, 0x68, 0x65, 0x61, 0x64, + 0x1D, 0xE4, 0x43, 0xE0, 0x00, 0x00, 0x29, 0x44, 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, 0x65, 0x61, + 0x07, 0xC2, 0x03, 0xDF, 0x00, 0x00, 0x29, 0x7C, 0x00, 0x00, 0x00, 0x24, 0x68, 0x6D, 0x74, 0x78, + 0x6E, 0x00, 0x08, 0x93, 0x00, 0x00, 0x29, 0xA0, 0x00, 0x00, 0x00, 0x78, 0x6C, 0x6F, 0x63, 0x61, + 0x81, 0x74, 0x76, 0x1C, 0x00, 0x00, 0x2A, 0x18, 0x00, 0x00, 0x00, 0x3E, 0x6D, 0x61, 0x78, 0x70, + 0x00, 0x32, 0x01, 0x8C, 0x00, 0x00, 0x2A, 0x58, 0x00, 0x00, 0x00, 0x20, 0x6E, 0x61, 0x6D, 0x65, + 0x51, 0x00, 0xF5, 0x4F, 0x00, 0x00, 0x2A, 0x78, 0x00, 0x00, 0x02, 0x2E, 0x70, 0x6F, 0x73, 0x74, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x2C, 0xA8, 0x00, 0x00, 0x00, 0x20, 0x00, 0x03, 0x03, 0xED, + 0x01, 0x90, 0x00, 0x05, 0x00, 0x00, 0x02, 0x99, 0x02, 0xCC, 0x00, 0x00, 0x00, 0x8F, 0x02, 0x99, + 0x02, 0xCC, 0x00, 0x00, 0x01, 0xEB, 0x00, 0x33, 0x01, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x51, + 0x03, 0xC0, 0xFF, 0xC0, 0x00, 0x40, 0x03, 0xC0, 0x00, 0x40, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x03, 0x9F, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1C, + 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x04, 0x00, 0x40, 0x00, 0x00, 0x00, 0x0C, + 0x00, 0x08, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x20, 0x00, 0x38, 0x00, 0x51, 0xFF, 0xFD, + 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x30, 0x00, 0x41, 0xFF, 0xFD, 0xFF, 0xFF, + 0x00, 0x01, 0xFF, 0xE3, 0xFF, 0xD4, 0xFF, 0xCC, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x0F, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x37, 0x39, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x37, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x37, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x6C, + 0x00, 0x30, 0x03, 0x90, 0x03, 0x52, 0x00, 0x28, 0x00, 0x44, 0x00, 0x00, 0x01, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x16, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x06, 0x01, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x27, 0x26, 0x36, 0x37, 0x36, 0x16, 0x1F, 0x01, 0x37, 0x3E, 0x01, 0x31, 0x32, 0x16, + 0x17, 0x01, 0x80, 0x2C, 0x29, 0x2A, 0x46, 0x1B, 0x1A, 0x0D, 0x0A, 0x03, 0x03, 0x06, 0x09, 0x09, + 0x0F, 0x1E, 0x65, 0x3D, 0x2C, 0x37, 0x4D, 0x4D, 0x37, 0x2C, 0x3D, 0x66, 0x1E, 0x15, 0x0A, 0x0A, + 0x15, 0x1E, 0x66, 0x3D, 0x28, 0x3A, 0x3D, 0x2F, 0x4B, 0x01, 0x43, 0x1E, 0x30, 0x66, 0x39, 0x58, + 0x05, 0x07, 0x17, 0x16, 0x32, 0x15, 0x14, 0x03, 0x04, 0x06, 0x08, 0x0C, 0x18, 0x28, 0x3B, 0x7E, + 0x33, 0x4B, 0x01, 0x0A, 0x08, 0x03, 0x45, 0x0E, 0x1B, 0x1C, 0x48, 0x2B, 0x2A, 0x2D, 0x21, 0x27, + 0x27, 0x4F, 0x26, 0x25, 0x1E, 0x3C, 0x66, 0x1E, 0x15, 0x0A, 0x0A, 0x15, 0x1E, 0x66, 0x3D, 0x2C, + 0x37, 0x4D, 0x4D, 0x37, 0x2C, 0x3D, 0x65, 0x1E, 0x14, 0x0D, 0x01, 0x02, 0x07, 0xFE, 0xF7, 0x0C, + 0x4C, 0x65, 0x38, 0x4F, 0x12, 0x13, 0x30, 0x17, 0x17, 0x0A, 0x09, 0x16, 0x07, 0x0C, 0x0C, 0x28, + 0x3B, 0x7E, 0x33, 0x4A, 0x04, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x64, 0x00, 0x0C, 0x03, 0x9B, + 0x03, 0x74, 0x00, 0x64, 0x00, 0xDC, 0x00, 0x00, 0x01, 0x14, 0x16, 0x33, 0x30, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x3F, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x16, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x1F, 0x01, 0x15, 0x16, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x0F, 0x01, 0x15, 0x14, 0x16, 0x17, 0x32, + 0x36, 0x37, 0x3E, 0x01, 0x3F, 0x02, 0x34, 0x36, 0x37, 0x30, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x3F, 0x01, 0x11, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x31, 0x22, 0x06, 0x27, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x0F, 0x01, 0x15, 0x1F, 0x01, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x0F, 0x02, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x34, 0x26, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x34, 0x36, 0x27, 0x35, 0x07, 0x35, 0x3F, + 0x01, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x34, 0x36, 0x35, + 0x34, 0x26, 0x07, 0x02, 0x00, 0x01, 0x01, 0x06, 0x04, 0x04, 0x0E, 0x06, 0x06, 0x0D, 0x02, 0x03, + 0x14, 0x0C, 0x1C, 0x01, 0x01, 0x01, 0x05, 0x03, 0x02, 0x0E, 0x07, 0x07, 0x1E, 0x0E, 0x0E, 0x21, + 0x09, 0x17, 0x01, 0x01, 0x02, 0x01, 0x0D, 0x08, 0x08, 0x13, 0x05, 0x11, 0x29, 0x0B, 0x06, 0x0F, + 0x05, 0x0D, 0x01, 0x01, 0x01, 0x0C, 0x08, 0x08, 0x23, 0x10, 0x27, 0x01, 0x01, 0x02, 0x14, 0x0C, + 0x0C, 0x18, 0x04, 0x04, 0x1B, 0x0F, 0x0F, 0x19, 0x02, 0x06, 0x0A, 0x04, 0x23, 0x15, 0x37, 0x2C, + 0x3A, 0x1D, 0x34, 0x08, 0x07, 0x20, 0x0E, 0x0E, 0x16, 0x01, 0x01, 0x02, 0x01, 0x01, 0x85, 0x02, + 0x16, 0x0C, 0x17, 0x28, 0x13, 0x06, 0x1F, 0x10, 0x2E, 0x20, 0x0E, 0x10, 0x01, 0x0A, 0x04, 0x1D, + 0x10, 0x10, 0x21, 0x07, 0x0F, 0x1C, 0x14, 0x08, 0x14, 0x05, 0x05, 0x13, 0x07, 0x07, 0x1D, 0x0D, + 0x0D, 0x1A, 0x06, 0x06, 0x14, 0x09, 0x09, 0x10, 0x03, 0x04, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x1C, 0x12, 0x13, 0x22, 0x05, 0x0C, 0x01, 0x01, 0x02, 0x01, 0x02, 0x01, 0x08, 0x04, 0x05, + 0x0E, 0x04, 0x05, 0x0D, 0x05, 0x05, 0x0E, 0x05, 0x05, 0x17, 0x0C, 0x0C, 0x12, 0x01, 0x03, 0x01, + 0x02, 0x01, 0x18, 0x10, 0x3C, 0x3E, 0x01, 0x01, 0x01, 0xA6, 0x01, 0x0E, 0x06, 0x1E, 0x0F, 0x0F, + 0x1D, 0x05, 0x05, 0x10, 0x07, 0x07, 0x0A, 0x01, 0x01, 0x02, 0x09, 0x02, 0xB2, 0x50, 0x72, 0x03, + 0x02, 0x02, 0x08, 0x04, 0x03, 0x07, 0x01, 0x01, 0x0B, 0x07, 0x0F, 0x3F, 0x1E, 0x21, 0x01, 0x01, + 0x02, 0x02, 0x01, 0x08, 0x04, 0x03, 0x10, 0x08, 0x08, 0x12, 0x05, 0x0C, 0x74, 0x4B, 0x2A, 0x02, + 0x02, 0x07, 0x05, 0x04, 0x0A, 0x03, 0x0A, 0x17, 0x06, 0x03, 0x09, 0x03, 0x07, 0x66, 0x2D, 0x39, + 0x01, 0x05, 0x04, 0x05, 0x12, 0x08, 0x15, 0x26, 0x14, 0x13, 0x01, 0x0B, 0x06, 0x06, 0x0D, 0x02, + 0x02, 0x0E, 0x08, 0x08, 0x0D, 0x01, 0x03, 0x01, 0x74, 0x05, 0x02, 0x13, 0x0B, 0x1D, 0x17, 0x1F, + 0x0F, 0x1C, 0x04, 0x04, 0x10, 0x08, 0x08, 0x0B, 0x01, 0x01, 0x01, 0x72, 0x2C, 0x01, 0x0C, 0x06, + 0x0C, 0x15, 0x0A, 0x03, 0x10, 0x09, 0x18, 0x11, 0x07, 0x09, 0xDB, 0xDA, 0x06, 0x02, 0x0F, 0x09, + 0x09, 0x11, 0x04, 0x09, 0x0F, 0x0A, 0x04, 0x0B, 0x03, 0x02, 0x0A, 0x04, 0x04, 0x0F, 0x07, 0x06, + 0x0E, 0x03, 0x03, 0x0B, 0x05, 0x04, 0x09, 0x02, 0x02, 0x03, 0x57, 0x59, 0x54, 0x5C, 0x0E, 0x09, + 0x0A, 0x11, 0x03, 0x06, 0x31, 0x1E, 0x12, 0x01, 0x01, 0x01, 0x04, 0x02, 0x03, 0x07, 0x02, 0x03, + 0x07, 0x03, 0x03, 0x07, 0x03, 0x03, 0x0C, 0x07, 0x06, 0x0A, 0x01, 0x01, 0x2E, 0x02, 0x01, 0x0D, + 0x08, 0x1F, 0x21, 0x01, 0x01, 0x27, 0x1C, 0x42, 0x54, 0x3C, 0x3C, 0x08, 0x03, 0x10, 0x08, 0x08, + 0x0F, 0x03, 0x03, 0x09, 0x03, 0x04, 0x05, 0x01, 0x01, 0x26, 0x1B, 0x35, 0x0E, 0x05, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x2B, 0x00, 0x6B, 0x03, 0xD5, 0x03, 0x15, 0x00, 0x0F, 0x00, 0x28, 0x00, 0x3E, + 0x00, 0x00, 0x01, 0x07, 0x11, 0x17, 0x16, 0x32, 0x3F, 0x01, 0x11, 0x27, 0x2E, 0x01, 0x23, 0x22, + 0x06, 0x07, 0x05, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x07, 0x05, 0x0E, 0x01, 0x15, 0x14, + 0x16, 0x17, 0x16, 0x32, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x06, + 0x07, 0x02, 0xF0, 0x1B, 0x1B, 0x1D, 0x91, 0x1D, 0x1A, 0x1A, 0x11, 0x23, 0x32, 0x31, 0x23, 0x11, + 0xFE, 0xAB, 0x14, 0x07, 0x07, 0x14, 0x10, 0x23, 0x32, 0x32, 0x23, 0x10, 0x14, 0x07, 0x07, 0x14, + 0x10, 0x23, 0x32, 0x32, 0x23, 0x10, 0xFE, 0xAA, 0x13, 0x07, 0x07, 0x13, 0x1D, 0x91, 0x1D, 0x13, + 0x08, 0x08, 0x13, 0x11, 0x23, 0x31, 0x32, 0x23, 0x11, 0x02, 0xFB, 0x1A, 0xFD, 0xBE, 0x1A, 0x1D, + 0x1D, 0x1A, 0x02, 0x42, 0x1A, 0x11, 0x09, 0x09, 0x11, 0xAB, 0x13, 0x3B, 0x97, 0x98, 0x3A, 0x14, + 0x11, 0x09, 0x09, 0x11, 0x14, 0x3A, 0x98, 0x97, 0x3B, 0x13, 0x12, 0x09, 0x09, 0x12, 0xAB, 0x12, + 0x2A, 0x54, 0x53, 0x2A, 0x13, 0x1D, 0x1D, 0x13, 0x2A, 0x53, 0x54, 0x2A, 0x12, 0x12, 0x09, 0x09, + 0x12, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xEB, 0x04, 0x00, 0x02, 0x95, 0x00, 0x12, + 0x00, 0x25, 0x00, 0x3B, 0x00, 0x51, 0x00, 0x00, 0x13, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x1F, 0x01, + 0x21, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x2F, 0x01, 0x21, 0x07, 0x05, 0x1E, 0x01, 0x15, 0x14, + 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x17, 0x33, 0x1E, + 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, + 0x33, 0x32, 0x16, 0x17, 0x33, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, + 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x17, 0x1B, 0x14, 0x07, 0x07, 0x14, 0x19, + 0x03, 0x98, 0x19, 0x14, 0x07, 0x07, 0x14, 0x19, 0xFC, 0x68, 0x19, 0x01, 0x3A, 0x09, 0x0D, 0x2C, + 0x14, 0x15, 0x2B, 0x0C, 0x09, 0x09, 0x19, 0x09, 0x08, 0x1A, 0x08, 0xD6, 0x08, 0x0D, 0x2B, 0x15, + 0x09, 0x19, 0x09, 0x08, 0x0D, 0x0D, 0x08, 0x09, 0x19, 0x09, 0x09, 0x19, 0x09, 0xD5, 0x09, 0x0C, + 0x2B, 0x15, 0x08, 0x1A, 0x08, 0x09, 0x0D, 0x0D, 0x09, 0x08, 0x1A, 0x08, 0x09, 0x19, 0x09, 0x02, + 0x7B, 0x13, 0x32, 0x76, 0x76, 0x32, 0x13, 0x1A, 0x1A, 0x13, 0x32, 0x76, 0x76, 0x32, 0x13, 0x1A, + 0x1A, 0x90, 0x09, 0x19, 0x09, 0x15, 0x2B, 0x2B, 0x15, 0x09, 0x19, 0x09, 0x08, 0x0D, 0x0D, 0x08, + 0x09, 0x19, 0x09, 0x15, 0x2B, 0x0D, 0x08, 0x09, 0x19, 0x09, 0x09, 0x19, 0x09, 0x08, 0x0D, 0x0D, + 0x08, 0x09, 0x19, 0x09, 0x15, 0x2B, 0x0D, 0x08, 0x09, 0x19, 0x09, 0x09, 0x19, 0x09, 0x08, 0x0D, + 0x0D, 0x08, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x20, 0x00, 0x8B, 0x03, 0xE0, 0x02, 0xF5, 0x00, 0x0C, + 0x00, 0x18, 0x00, 0x24, 0x00, 0x30, 0x00, 0x3C, 0x00, 0x48, 0x00, 0x54, 0x00, 0x59, 0x00, 0x65, + 0x00, 0x71, 0x00, 0x7D, 0x00, 0x82, 0x00, 0x8E, 0x00, 0x93, 0x00, 0x9F, 0x00, 0x00, 0x13, 0x07, + 0x11, 0x1F, 0x01, 0x21, 0x3F, 0x01, 0x11, 0x2F, 0x01, 0x21, 0x07, 0x17, 0x14, 0x06, 0x23, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x17, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, + 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x14, 0x06, 0x23, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x05, 0x15, 0x23, 0x35, 0x33, 0x17, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x17, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x17, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x23, 0x35, + 0x33, 0x05, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x05, 0x15, 0x21, + 0x35, 0x21, 0x17, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x3B, 0x1B, + 0x1B, 0x19, 0x03, 0x58, 0x19, 0x1B, 0x1B, 0x19, 0xFC, 0xA8, 0x19, 0x90, 0x0B, 0x15, 0x16, 0x0A, + 0x0A, 0x16, 0x15, 0x0B, 0x8A, 0x0A, 0x16, 0x15, 0x0B, 0x0B, 0x15, 0x16, 0x0A, 0x8B, 0x0C, 0x19, + 0x1A, 0x0C, 0x0C, 0x1A, 0x19, 0x0C, 0x8B, 0x0C, 0x1A, 0x19, 0x0C, 0x0C, 0x19, 0x1A, 0x0C, 0x80, + 0x0B, 0x15, 0x16, 0x0A, 0x0A, 0x16, 0x15, 0x0B, 0x8A, 0x0A, 0x16, 0x15, 0x0B, 0x0B, 0x15, 0x16, + 0x0A, 0xFD, 0xA0, 0x8A, 0x8A, 0x80, 0x0A, 0x16, 0x15, 0x0B, 0x0B, 0x15, 0x16, 0x0A, 0x8B, 0x0A, + 0x16, 0x16, 0x0A, 0x0A, 0x16, 0x16, 0x0A, 0x8B, 0x0B, 0x15, 0x16, 0x0A, 0x0A, 0x16, 0x15, 0x0B, + 0xCA, 0x8A, 0x8A, 0xFD, 0x56, 0x0B, 0x15, 0x16, 0x0A, 0x0A, 0x16, 0x15, 0x0B, 0x02, 0x20, 0xFE, + 0x2A, 0x01, 0xD6, 0x8A, 0x0A, 0x16, 0x15, 0x0B, 0x0B, 0x15, 0x16, 0x0A, 0x02, 0xDB, 0x1A, 0xFD, + 0xFE, 0x1A, 0x1A, 0x1A, 0x1A, 0x02, 0x02, 0x1A, 0x1A, 0x1A, 0x90, 0x16, 0x0A, 0x0A, 0x16, 0x15, + 0x0B, 0x0B, 0x15, 0x16, 0x0A, 0x0A, 0x16, 0x15, 0x0B, 0x0B, 0x15, 0x17, 0x09, 0x09, 0x17, 0x16, + 0x0A, 0x0A, 0x16, 0x17, 0x09, 0x09, 0x17, 0x16, 0x0A, 0x0A, 0x16, 0x16, 0x0A, 0x0A, 0x16, 0x15, + 0x0B, 0x0B, 0x15, 0x16, 0x0A, 0x0A, 0x16, 0x15, 0x0B, 0x0B, 0xA0, 0x20, 0x40, 0x20, 0x16, 0x0A, + 0x0A, 0x16, 0x16, 0x0A, 0x0A, 0x16, 0x16, 0x0A, 0x0A, 0x16, 0x16, 0x0A, 0x0A, 0x16, 0x16, 0x0A, + 0x0A, 0x16, 0x16, 0x0A, 0x0A, 0x16, 0x20, 0x40, 0xAB, 0x15, 0x0B, 0x0B, 0x15, 0x16, 0x0A, 0x0A, + 0x16, 0x20, 0x40, 0x20, 0x15, 0x0B, 0x0B, 0x15, 0x16, 0x0A, 0x0A, 0x00, 0x00, 0x05, 0x00, 0x71, + 0x00, 0x30, 0x03, 0x74, 0x03, 0x31, 0x00, 0x0F, 0x00, 0x25, 0x00, 0x41, 0x00, 0x4F, 0x00, 0x60, + 0x00, 0x00, 0x01, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x22, 0x07, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x07, 0x06, + 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x32, 0x17, 0x05, 0x0E, 0x01, 0x15, 0x14, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x33, 0x32, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x35, 0x34, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x23, 0x22, 0x06, 0x07, 0x17, 0x14, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x23, 0x22, 0x36, 0x37, 0x3E, + 0x01, 0x15, 0x05, 0x07, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, + 0x26, 0x06, 0x07, 0x02, 0x65, 0x34, 0x16, 0x72, 0x64, 0x2E, 0x0C, 0x1E, 0x12, 0x13, 0x0D, 0x3B, + 0x19, 0x1B, 0x73, 0x20, 0x95, 0x07, 0x0A, 0x09, 0x0F, 0x0A, 0x14, 0x05, 0x04, 0x15, 0x09, 0x0F, + 0x0A, 0x09, 0x05, 0x0F, 0x39, 0x0F, 0xFE, 0x69, 0x31, 0x47, 0x32, 0x33, 0x7B, 0x36, 0x35, 0x06, + 0x06, 0x28, 0x28, 0x5A, 0x25, 0x24, 0x31, 0x31, 0x78, 0x35, 0x34, 0x07, 0x06, 0x4F, 0x33, 0xB2, + 0x17, 0x18, 0x3C, 0x1B, 0x1B, 0x06, 0x16, 0x1D, 0x38, 0x37, 0x31, 0xFE, 0x7B, 0x1F, 0x01, 0x5A, + 0x21, 0x12, 0x0B, 0x04, 0x03, 0x2D, 0x2C, 0x6E, 0x32, 0x32, 0x0C, 0x10, 0x19, 0x12, 0x03, 0x31, + 0x17, 0x31, 0x72, 0x64, 0x24, 0x0E, 0x20, 0x8A, 0x27, 0x19, 0x3D, 0x0D, 0x0E, 0x0E, 0x2D, 0x02, + 0x11, 0x08, 0x0D, 0x06, 0x05, 0x02, 0x04, 0x04, 0x02, 0x05, 0x06, 0x0D, 0x08, 0x11, 0x01, 0x07, + 0x06, 0x86, 0x32, 0x4D, 0x04, 0x06, 0x35, 0x35, 0x7B, 0x33, 0x32, 0x25, 0x26, 0x5D, 0x29, 0x29, + 0x07, 0x07, 0x34, 0x35, 0x78, 0x31, 0x30, 0x46, 0x31, 0x0B, 0x07, 0x1B, 0x1B, 0x3C, 0x18, 0x17, + 0x2F, 0x38, 0x38, 0x1F, 0x16, 0xC8, 0x21, 0xFE, 0xA6, 0x21, 0x13, 0x19, 0x10, 0x0D, 0x31, 0x31, + 0x6D, 0x2D, 0x2C, 0x03, 0x04, 0x0B, 0x13, 0x00, 0x00, 0x04, 0x00, 0x55, 0x00, 0x15, 0x03, 0xA7, + 0x03, 0x6A, 0x00, 0x10, 0x00, 0x23, 0x00, 0x2A, 0x00, 0x30, 0x00, 0x00, 0x01, 0x0E, 0x01, 0x0F, + 0x01, 0x1F, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x23, 0x30, 0x06, 0x07, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, + 0x05, 0x07, 0x1F, 0x01, 0x01, 0x27, 0x07, 0x01, 0x07, 0x17, 0x37, 0x27, 0x07, 0x03, 0x61, 0x24, + 0x39, 0x1B, 0x34, 0x2E, 0x2E, 0x35, 0x1D, 0x24, 0x0C, 0x09, 0x0C, 0x01, 0x2A, 0x1C, 0xE6, 0x09, + 0x0F, 0x02, 0x02, 0x12, 0x12, 0x2F, 0x16, 0x15, 0x04, 0x02, 0x0C, 0x05, 0x09, 0x0B, 0x24, 0x2A, + 0x13, 0xFE, 0xE4, 0xD0, 0x49, 0x47, 0x01, 0xA0, 0x90, 0xD0, 0xFE, 0xFD, 0x1D, 0x91, 0x3A, 0x91, + 0x1D, 0x03, 0x50, 0x0E, 0x24, 0x1B, 0x34, 0x2D, 0x2E, 0x39, 0x1E, 0x3A, 0x24, 0x1B, 0x26, 0x10, + 0x0A, 0x9D, 0x05, 0x09, 0x02, 0x01, 0x15, 0x15, 0x30, 0x14, 0x14, 0x11, 0x0C, 0x14, 0x17, 0x25, + 0x2A, 0x09, 0xFB, 0xD0, 0x47, 0x49, 0x01, 0xA0, 0x90, 0xD0, 0xFE, 0xFD, 0x1E, 0x8F, 0x3C, 0x8F, + 0x1E, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x40, 0x00, 0x80, 0x03, 0xA4, 0x03, 0x00, 0x00, 0x0E, + 0x00, 0x21, 0x00, 0x31, 0x00, 0x44, 0x00, 0x53, 0x00, 0x66, 0x00, 0x00, 0x13, 0x0E, 0x01, 0x15, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x17, 0x06, 0x16, 0x17, 0x1E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x34, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x07, 0x0E, + 0x01, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x17, 0x06, + 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x34, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, + 0x07, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x17, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x34, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x06, 0x07, 0x55, 0x08, 0x0D, 0x2B, 0x15, 0x15, 0x2B, 0x2B, 0x15, 0x09, 0x19, 0xD9, 0x0C, + 0x01, 0x0E, 0x07, 0x92, 0x9D, 0xCA, 0x62, 0x08, 0x07, 0x07, 0x08, 0x63, 0xCA, 0xA7, 0x89, 0x08, + 0xE2, 0x08, 0x0D, 0x2B, 0x15, 0x15, 0x2B, 0x2B, 0x15, 0x09, 0x19, 0x09, 0xE2, 0x0C, 0x01, 0x0E, + 0x07, 0x92, 0x9D, 0xCA, 0x62, 0x08, 0x07, 0x07, 0x08, 0x63, 0xCA, 0xA7, 0x89, 0x08, 0xE2, 0x08, + 0x0D, 0x2B, 0x15, 0x15, 0x2B, 0x2B, 0x15, 0x09, 0x19, 0xD9, 0x0C, 0x01, 0x0E, 0x07, 0x92, 0x9D, + 0xCA, 0x62, 0x08, 0x07, 0x07, 0x08, 0x63, 0xCA, 0xA7, 0x89, 0x08, 0x02, 0xEB, 0x09, 0x19, 0x09, + 0x15, 0x2B, 0x2B, 0x15, 0x15, 0x2B, 0x0D, 0x15, 0x0D, 0x25, 0x0B, 0x06, 0x05, 0x01, 0x03, 0x07, + 0x0D, 0x09, 0x12, 0x0A, 0x0C, 0x07, 0x03, 0x01, 0x05, 0x07, 0xF3, 0x09, 0x19, 0x09, 0x15, 0x2B, + 0x2B, 0x15, 0x15, 0x2B, 0x0D, 0x08, 0x0D, 0x0D, 0x25, 0x0B, 0x06, 0x05, 0x01, 0x03, 0x07, 0x0D, + 0x09, 0x12, 0x0A, 0x0C, 0x07, 0x03, 0x01, 0x05, 0x07, 0xF3, 0x09, 0x19, 0x09, 0x15, 0x2B, 0x2B, + 0x15, 0x15, 0x2B, 0x0D, 0x15, 0x0D, 0x25, 0x0B, 0x06, 0x05, 0x01, 0x03, 0x07, 0x0C, 0x0A, 0x12, + 0x09, 0x0D, 0x07, 0x03, 0x01, 0x05, 0x07, 0x00, 0x00, 0x02, 0x00, 0x5F, 0x00, 0xF0, 0x03, 0xA5, + 0x02, 0x92, 0x00, 0x1A, 0x00, 0x2F, 0x00, 0x00, 0x13, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, + 0x01, 0x33, 0x21, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x2F, 0x01, 0x25, 0x26, 0x07, 0x22, 0x06, + 0x07, 0x06, 0x07, 0x05, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x27, + 0x2E, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x16, 0xE2, 0x25, 0x53, 0x0B, 0x12, 0x33, 0x3D, 0x1E, + 0x54, 0xD2, 0x01, 0x1B, 0x2B, 0x32, 0x2C, 0x2C, 0x32, 0x2A, 0xFE, 0xF4, 0x38, 0x34, 0x33, 0x52, + 0x1B, 0x1B, 0x08, 0x02, 0x4D, 0x15, 0x0C, 0x0D, 0x16, 0x17, 0x1E, 0x23, 0x22, 0x1F, 0x16, 0x17, + 0x0C, 0x26, 0x24, 0x1E, 0x52, 0x02, 0x8A, 0x0C, 0x57, 0x29, 0x47, 0x88, 0x25, 0x14, 0x06, 0x1D, + 0x21, 0x54, 0x3E, 0x3E, 0x54, 0x21, 0x1D, 0x02, 0x01, 0x01, 0x02, 0x02, 0x02, 0x02, 0x74, 0x15, + 0x1F, 0x22, 0x22, 0x1F, 0x16, 0x17, 0x0D, 0x0D, 0x17, 0x16, 0x1E, 0x22, 0x2A, 0x3D, 0x10, 0x0D, + 0x12, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x40, 0x00, 0x00, 0x03, 0xC0, 0x03, 0x80, 0x00, 0x49, + 0x00, 0x61, 0x00, 0x78, 0x00, 0x8D, 0x00, 0xA2, 0x00, 0xB7, 0x00, 0xCB, 0x00, 0xDF, 0x00, 0xF5, + 0x00, 0x00, 0x01, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, + 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x0F, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, + 0x17, 0x16, 0x06, 0x07, 0x37, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x1F, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x2F, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x07, 0x14, 0x16, 0x33, 0x32, + 0x16, 0x1D, 0x01, 0x23, 0x22, 0x26, 0x35, 0x34, 0x26, 0x23, 0x22, 0x36, 0x37, 0x3E, 0x01, 0x15, + 0x17, 0x1E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x06, 0x2B, 0x01, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x36, 0x35, 0x34, 0x16, 0x17, 0x03, 0x14, 0x06, 0x23, 0x22, 0x06, 0x15, 0x14, 0x26, 0x27, 0x2E, + 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x36, 0x3B, 0x01, 0x15, 0x37, 0x14, 0x16, 0x33, 0x32, 0x06, + 0x07, 0x0E, 0x01, 0x35, 0x34, 0x26, 0x23, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x32, 0x16, 0x05, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x1F, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x2F, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x25, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x0F, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x07, 0x01, 0xD5, 0x19, 0x23, 0x3E, 0x43, 0x2A, 0x2B, + 0x37, 0x11, 0x0B, 0x10, 0x0C, 0x0D, 0x07, 0x07, 0x0D, 0x0C, 0x10, 0x0B, 0x11, 0x37, 0x2B, 0x2A, + 0x43, 0x3E, 0x23, 0x19, 0x11, 0x1A, 0x1A, 0x11, 0x14, 0x1A, 0x35, 0x5C, 0x27, 0x2C, 0x37, 0x11, + 0x0B, 0x10, 0x0C, 0x0D, 0x07, 0x07, 0x0D, 0x0C, 0x10, 0x0B, 0x10, 0x1B, 0x1C, 0x4C, 0x31, 0x30, + 0x38, 0x1A, 0x14, 0x11, 0x1A, 0x1A, 0x11, 0x04, 0x02, 0x17, 0x0E, 0x23, 0x6E, 0x0A, 0x07, 0x11, + 0x1E, 0x2C, 0x08, 0x09, 0x40, 0x1B, 0x1D, 0x5B, 0x1F, 0x16, 0x0B, 0x02, 0x02, 0x02, 0x02, 0xCB, + 0x12, 0x2D, 0x0C, 0x1B, 0x40, 0x09, 0x08, 0x2C, 0x1D, 0x12, 0x07, 0x0B, 0x61, 0x28, 0x1F, 0x0F, + 0x02, 0x03, 0x23, 0x0E, 0x2F, 0x12, 0xC7, 0x07, 0x04, 0x05, 0x06, 0x4B, 0x20, 0x2B, 0x09, 0x07, + 0x1E, 0x33, 0x2F, 0x20, 0x2C, 0xA2, 0x2F, 0x33, 0x1E, 0x07, 0x09, 0x2B, 0x20, 0x4B, 0x06, 0x05, + 0x05, 0x06, 0x2C, 0x20, 0x8C, 0x06, 0x05, 0x04, 0x07, 0x2C, 0x20, 0x2F, 0x33, 0x1E, 0x07, 0x09, + 0x2B, 0x20, 0x4B, 0xC0, 0x09, 0x07, 0x1E, 0x33, 0x2F, 0x20, 0x2C, 0x06, 0x05, 0x05, 0x06, 0x4B, + 0x20, 0x2B, 0xFE, 0x64, 0x0A, 0x6D, 0x25, 0x19, 0x0D, 0x02, 0x03, 0x24, 0x28, 0x6F, 0x17, 0x19, + 0x2F, 0x08, 0x07, 0x2C, 0x1E, 0x11, 0x07, 0x02, 0x3D, 0x0B, 0x18, 0x18, 0x44, 0x2A, 0x29, 0x2D, + 0x23, 0x03, 0x02, 0x0E, 0x1E, 0x31, 0x54, 0x15, 0x07, 0x12, 0x1C, 0x1F, 0x08, 0x05, 0x03, 0x6C, + 0x0C, 0x10, 0x0B, 0x12, 0x24, 0x28, 0x28, 0x5A, 0x3C, 0x24, 0x1A, 0x11, 0x1A, 0x1A, 0x11, 0x19, + 0x23, 0x3E, 0x5A, 0x28, 0x28, 0x24, 0x12, 0x0B, 0x10, 0x0C, 0x0D, 0x07, 0x08, 0x0D, 0x0C, 0x0E, + 0x06, 0x0E, 0x30, 0x24, 0x28, 0x5C, 0x3E, 0x23, 0x19, 0x11, 0x1A, 0x1A, 0x11, 0x1A, 0x24, 0x38, + 0x2F, 0x2F, 0x49, 0x1B, 0x1A, 0x0E, 0x06, 0x0E, 0x0C, 0x0D, 0x08, 0x07, 0x0D, 0xA7, 0x05, 0x0D, + 0x03, 0x08, 0x6E, 0x25, 0x19, 0x0D, 0x02, 0x03, 0x24, 0x28, 0x6F, 0x17, 0x19, 0x2E, 0x08, 0x04, + 0x07, 0x16, 0x0D, 0x1A, 0x06, 0x28, 0x0A, 0x1C, 0x0B, 0x17, 0x6F, 0x28, 0x24, 0x03, 0x02, 0x0C, + 0x18, 0x28, 0x65, 0x0E, 0x0A, 0x11, 0x1E, 0x2C, 0x07, 0x04, 0x12, 0x09, 0x72, 0x07, 0x09, 0x2B, + 0x20, 0x4B, 0x06, 0x05, 0x05, 0x06, 0x66, 0x1F, 0x16, 0x06, 0x11, 0x0B, 0x1F, 0x66, 0x06, 0x05, + 0x05, 0x06, 0x4B, 0x20, 0x2B, 0x09, 0x07, 0x11, 0x06, 0x16, 0xFE, 0xF0, 0x20, 0x2B, 0x09, 0x07, + 0x11, 0x06, 0x16, 0x1F, 0x66, 0x07, 0x04, 0x05, 0x06, 0x4B, 0x40, 0x04, 0x07, 0x66, 0x1F, 0x16, + 0x06, 0x11, 0x07, 0x09, 0x2B, 0x20, 0x4B, 0x06, 0x3A, 0x25, 0x6D, 0x0A, 0x07, 0x11, 0x1E, 0x2C, + 0x08, 0x09, 0x40, 0x1B, 0x1E, 0x5A, 0x22, 0x23, 0x03, 0x02, 0x0D, 0x19, 0x08, 0x2D, 0x29, 0x2A, + 0x44, 0x18, 0x18, 0x0B, 0x07, 0x2A, 0x1F, 0x12, 0x0A, 0x11, 0x5A, 0x3C, 0x12, 0x0A, 0x08, 0x1A, + 0x00, 0x08, 0x00, 0x97, 0x00, 0x62, 0x03, 0x79, 0x03, 0x40, 0x00, 0x12, 0x00, 0x1C, 0x00, 0x29, + 0x00, 0x35, 0x00, 0x45, 0x00, 0x52, 0x00, 0x5C, 0x00, 0x69, 0x00, 0x00, 0x01, 0x0E, 0x01, 0x15, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x07, 0x17, + 0x06, 0x16, 0x33, 0x32, 0x36, 0x27, 0x2E, 0x01, 0x07, 0x05, 0x06, 0x14, 0x17, 0x16, 0x36, 0x37, + 0x36, 0x26, 0x27, 0x26, 0x06, 0x07, 0x05, 0x06, 0x16, 0x17, 0x16, 0x36, 0x37, 0x36, 0x26, 0x27, + 0x26, 0x06, 0x05, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, + 0x06, 0x07, 0x05, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x05, + 0x06, 0x16, 0x37, 0x36, 0x26, 0x23, 0x22, 0x06, 0x07, 0x17, 0x06, 0x16, 0x37, 0x3E, 0x01, 0x35, + 0x34, 0x26, 0x27, 0x26, 0x06, 0x07, 0x01, 0xD5, 0x08, 0x0D, 0x2B, 0x15, 0x15, 0x2B, 0x0D, 0x08, + 0x09, 0x19, 0x09, 0x09, 0x19, 0x09, 0xE2, 0x28, 0x22, 0x34, 0x30, 0x20, 0x23, 0x16, 0x2F, 0x16, + 0xFE, 0x40, 0x0C, 0x0C, 0x0F, 0x2F, 0x10, 0x16, 0x16, 0x20, 0x0D, 0x1B, 0x06, 0x02, 0x10, 0x12, + 0x01, 0x13, 0x14, 0x4C, 0x10, 0x12, 0x01, 0x13, 0x14, 0x4C, 0xFD, 0x83, 0x03, 0x01, 0x01, 0x02, + 0x10, 0x17, 0x1A, 0x0B, 0x0B, 0x18, 0x11, 0x14, 0x03, 0x02, 0x1A, 0x0B, 0x18, 0x05, 0x1E, 0x80, + 0x36, 0x1E, 0x03, 0x1E, 0x1A, 0x33, 0x20, 0xFE, 0x47, 0x0B, 0x3E, 0x11, 0x0A, 0x17, 0x17, 0x0C, + 0x11, 0x03, 0xE9, 0x08, 0x13, 0x13, 0x0E, 0x0B, 0x0B, 0x0E, 0x0A, 0x11, 0x03, 0x03, 0x2B, 0x09, + 0x19, 0x09, 0x15, 0x2B, 0x2B, 0x15, 0x09, 0x19, 0x09, 0x08, 0x0D, 0x0D, 0x08, 0x52, 0x23, 0x56, + 0x52, 0x21, 0x16, 0x02, 0x12, 0x10, 0x0C, 0x39, 0x0D, 0x0E, 0x05, 0x12, 0x18, 0x38, 0x03, 0x02, + 0x07, 0x05, 0xD2, 0x14, 0x4C, 0x10, 0x12, 0x01, 0x13, 0x14, 0x4C, 0x10, 0x12, 0x01, 0x2E, 0x07, + 0x17, 0x0B, 0x0F, 0x09, 0x0B, 0x1A, 0x1A, 0x0C, 0x03, 0x01, 0x06, 0x08, 0xAC, 0x06, 0x1B, 0x0D, + 0x46, 0x56, 0x36, 0x1D, 0x49, 0x1F, 0x1A, 0x07, 0x12, 0x45, 0x21, 0x20, 0x1D, 0x14, 0x25, 0x0B, + 0x0A, 0x5A, 0x15, 0x1D, 0x03, 0x02, 0x0E, 0x0E, 0x0E, 0x0E, 0x02, 0x01, 0x07, 0x07, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x81, 0x00, 0x17, 0x03, 0x5C, 0x03, 0x60, 0x00, 0x4C, 0x00, 0x56, 0x00, 0x00, + 0x01, 0x06, 0x16, 0x17, 0x16, 0x06, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, 0x17, + 0x16, 0x06, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, 0x06, 0x0F, 0x01, 0x1F, 0x01, 0x37, + 0x3E, 0x01, 0x33, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x23, 0x22, 0x26, 0x27, 0x26, + 0x36, 0x3F, 0x01, 0x17, 0x1E, 0x01, 0x1F, 0x01, 0x35, 0x34, 0x26, 0x23, 0x22, 0x26, 0x2F, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x03, 0x16, 0x06, + 0x07, 0x0E, 0x01, 0x27, 0x26, 0x36, 0x17, 0x03, 0x05, 0x02, 0x03, 0x04, 0x0A, 0x1F, 0x21, 0x11, + 0x20, 0x24, 0x1A, 0x27, 0x08, 0x10, 0x50, 0x0A, 0x05, 0x24, 0x2C, 0x27, 0x2E, 0x42, 0x0F, 0x04, + 0x24, 0x14, 0x32, 0x3F, 0x40, 0x27, 0x30, 0x41, 0x06, 0x0D, 0x16, 0x0A, 0x0E, 0x18, 0x24, 0x20, + 0x13, 0x18, 0x07, 0x0F, 0x04, 0x04, 0x0B, 0x15, 0x24, 0x3A, 0x17, 0x45, 0x18, 0x3C, 0x08, 0x11, + 0x20, 0x7A, 0x18, 0x1E, 0x1F, 0x0D, 0x52, 0x30, 0x55, 0x27, 0x25, 0x0D, 0x15, 0x0A, 0x10, 0x13, + 0x08, 0xDF, 0x03, 0x09, 0x09, 0x0F, 0x0A, 0x04, 0x0B, 0x28, 0x0F, 0x03, 0x60, 0x04, 0x1D, 0x11, + 0x26, 0x2B, 0x07, 0x03, 0x14, 0x24, 0x1A, 0x1D, 0x03, 0x06, 0x50, 0x0C, 0x06, 0x2E, 0x2C, 0x27, + 0x3A, 0x09, 0x11, 0x4A, 0x1D, 0x15, 0x33, 0x42, 0x42, 0x47, 0x58, 0x6A, 0x01, 0x1C, 0x1E, 0x2D, + 0x0E, 0x11, 0x0E, 0x22, 0x0E, 0x09, 0x0F, 0x16, 0x15, 0x22, 0x14, 0x08, 0x11, 0x02, 0x08, 0x38, + 0x26, 0x10, 0x26, 0x10, 0x15, 0x37, 0x18, 0x61, 0x30, 0x54, 0x3C, 0x0A, 0x03, 0x07, 0x0B, 0x12, + 0x05, 0x0C, 0xFE, 0x1F, 0x05, 0x14, 0x09, 0x0F, 0x01, 0x0C, 0x1C, 0x22, 0x18, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0xC5, 0x01, 0x6B, 0x03, 0x55, 0x02, 0x15, 0x00, 0x0C, 0x00, 0x1F, 0x00, 0x2F, + 0x00, 0x00, 0x13, 0x06, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x21, + 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x27, 0x2E, 0x01, 0x23, 0x22, + 0x06, 0x07, 0x21, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x16, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x07, 0xC5, 0x28, 0x2B, 0x38, 0x21, 0x34, 0x34, 0x21, 0x0F, 0x20, 0x0C, 0x01, 0x00, 0x0C, + 0x0E, 0x0E, 0x0C, 0x0C, 0x20, 0x0F, 0x38, 0x2B, 0x28, 0x0C, 0x20, 0x0F, 0x0F, 0x20, 0x0C, 0x01, + 0x00, 0x0C, 0x0E, 0x0E, 0x0C, 0x28, 0x68, 0x34, 0x21, 0x0F, 0x20, 0x0C, 0x01, 0xFB, 0x28, 0x68, + 0x34, 0x21, 0x21, 0x34, 0x0E, 0x0C, 0x0C, 0x20, 0x0F, 0x0F, 0x20, 0x0C, 0x0C, 0x0E, 0x68, 0x28, + 0x0C, 0x0E, 0x0E, 0x0C, 0x0C, 0x20, 0x0F, 0x0F, 0x20, 0x0C, 0x28, 0x2B, 0x38, 0x21, 0x34, 0x0E, + 0x0C, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x5B, 0x00, 0x1B, 0x03, 0xA5, 0x03, 0x66, 0x00, 0x28, + 0x00, 0x4B, 0x00, 0x60, 0x00, 0x00, 0x01, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, + 0x14, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x35, 0x34, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x26, 0x06, 0x07, 0x05, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, + 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x34, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x17, + 0x16, 0x17, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x01, 0x9C, 0x33, 0x7C, 0x23, 0x12, 0x2E, 0x0D, 0x17, + 0x0B, 0x0B, 0x1C, 0x24, 0x63, 0x4A, 0x31, 0x37, 0x45, 0x45, 0x37, 0x31, 0x4A, 0x63, 0x24, 0x1C, + 0x0B, 0x0B, 0x1C, 0x1B, 0x26, 0x25, 0x5B, 0x35, 0x35, 0x3C, 0x21, 0x49, 0x11, 0x01, 0x05, 0x36, + 0x3D, 0x1F, 0x12, 0x0A, 0x01, 0x0B, 0x19, 0x1F, 0x40, 0x3C, 0x22, 0x35, 0x3A, 0x3A, 0x35, 0x22, + 0x3C, 0x40, 0x1F, 0x19, 0x0B, 0x01, 0x2B, 0x34, 0x28, 0x31, 0x30, 0x69, 0x36, 0x36, 0x33, 0xD1, + 0x24, 0x27, 0x0D, 0x17, 0x16, 0x1F, 0x22, 0x22, 0x1F, 0x16, 0x17, 0x0D, 0x0D, 0x14, 0x1B, 0x51, + 0x03, 0x60, 0x0D, 0x4A, 0x26, 0x13, 0x46, 0x1D, 0x31, 0x37, 0x46, 0x48, 0x35, 0x39, 0x49, 0x60, + 0x23, 0x17, 0x0B, 0x0B, 0x17, 0x23, 0x60, 0x49, 0x39, 0x35, 0x49, 0x49, 0x35, 0x39, 0x37, 0x2B, + 0x2B, 0x3D, 0x11, 0x12, 0x02, 0x02, 0x04, 0x04, 0x76, 0x1D, 0x40, 0x3C, 0x22, 0x35, 0x3A, 0x3E, + 0x31, 0x2F, 0x38, 0x3D, 0x20, 0x12, 0x0A, 0x0A, 0x12, 0x20, 0x3D, 0x38, 0x2F, 0x31, 0x3E, 0x50, + 0x6C, 0x34, 0x28, 0x18, 0x18, 0x0F, 0x09, 0x0A, 0x1A, 0xB4, 0x10, 0x3D, 0x2A, 0x22, 0x1E, 0x16, + 0x17, 0x0D, 0x0D, 0x17, 0x16, 0x1F, 0x22, 0x22, 0x1F, 0x15, 0x1B, 0x12, 0x00, 0x03, 0x00, 0x41, + 0x00, 0x65, 0x03, 0xD6, 0x03, 0x16, 0x00, 0x36, 0x00, 0x3F, 0x00, 0x60, 0x00, 0x00, 0x13, 0x0E, + 0x01, 0x0F, 0x03, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, + 0x3E, 0x01, 0x3F, 0x04, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x3B, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x22, 0x07, 0x06, 0x07, 0x06, 0x22, 0x27, 0x26, 0x27, 0x26, 0x22, 0x07, + 0x05, 0x14, 0x06, 0x27, 0x26, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x14, 0x06, 0x0F, 0x01, 0x23, 0x22, + 0x26, 0x27, 0x26, 0x36, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x32, 0x37, 0x36, 0x26, + 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0xB0, 0x05, 0x1C, 0x0F, 0x25, 0x04, + 0x03, 0x23, 0x28, 0x02, 0x2B, 0x38, 0x1A, 0x21, 0x0E, 0x2E, 0x3F, 0x59, 0x30, 0x14, 0x07, 0x11, + 0x04, 0x0C, 0xCE, 0x1F, 0x20, 0x83, 0x39, 0x4D, 0x04, 0x02, 0x14, 0x0B, 0x1A, 0x03, 0x02, 0x08, + 0x14, 0x0B, 0x15, 0x04, 0x0A, 0x31, 0x06, 0x03, 0x5E, 0x5F, 0xE0, 0x5F, 0x5E, 0x03, 0x06, 0x30, + 0x0A, 0x01, 0x8B, 0x92, 0x0A, 0x0B, 0x21, 0x39, 0x2D, 0x20, 0x1A, 0x0A, 0x07, 0x11, 0x39, 0x28, + 0x16, 0x08, 0x09, 0x08, 0x0C, 0x04, 0x0A, 0x02, 0x02, 0x18, 0x0C, 0x17, 0x0C, 0x04, 0x03, 0x08, + 0x0B, 0x09, 0x0E, 0x12, 0x1E, 0x19, 0x17, 0x03, 0x16, 0x04, 0x08, 0x01, 0x04, 0x6B, 0x6B, 0x10, + 0x11, 0x41, 0x4B, 0x60, 0x8B, 0x1D, 0x0D, 0x08, 0x21, 0x4A, 0x1A, 0x40, 0x13, 0x2D, 0x06, 0x53, + 0x52, 0x06, 0x05, 0x05, 0x06, 0x6E, 0x50, 0x1D, 0x03, 0x01, 0x08, 0x04, 0x0A, 0x0B, 0x05, 0x03, + 0x03, 0x03, 0x03, 0x05, 0x0B, 0x0A, 0x76, 0x10, 0x09, 0x10, 0x13, 0x0C, 0x03, 0x01, 0x08, 0xA3, + 0x05, 0x26, 0x15, 0x32, 0x09, 0x14, 0x17, 0x37, 0x0F, 0x0C, 0x0A, 0x1A, 0x06, 0x0C, 0x0C, 0x08, + 0x12, 0x07, 0x06, 0x16, 0x09, 0x0D, 0x07, 0x06, 0x08, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x95, + 0x00, 0x30, 0x03, 0x6B, 0x03, 0x53, 0x00, 0x0E, 0x00, 0x1D, 0x00, 0x43, 0x00, 0x00, 0x13, 0x06, + 0x14, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x26, 0x06, 0x05, 0x06, 0x14, + 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x26, 0x06, 0x05, 0x0E, 0x01, 0x15, + 0x14, 0x06, 0x0F, 0x01, 0x1F, 0x01, 0x21, 0x3F, 0x01, 0x33, 0x1F, 0x01, 0x21, 0x3F, 0x01, 0x27, + 0x2E, 0x01, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x1D, 0x01, 0x23, 0x35, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x07, 0xEF, 0x02, 0x02, 0x04, 0x28, 0x3C, 0x4A, 0x1A, 0x1A, 0x4A, 0x3C, 0x28, 0x01, 0x51, + 0x02, 0x02, 0x04, 0x28, 0x3D, 0x49, 0x1A, 0x1A, 0x49, 0x3D, 0x28, 0xFE, 0xA5, 0x0F, 0x09, 0x0A, + 0x16, 0x20, 0x02, 0x04, 0x01, 0x20, 0x03, 0x02, 0x80, 0x02, 0x03, 0x01, 0x20, 0x04, 0x02, 0x20, + 0x16, 0x0A, 0x2D, 0x4A, 0x3F, 0x35, 0x80, 0x36, 0x40, 0x2D, 0x22, 0x0E, 0x03, 0x45, 0x06, 0x13, + 0x07, 0x0A, 0x05, 0x01, 0x03, 0x07, 0x14, 0x14, 0x08, 0x02, 0x02, 0x05, 0x0B, 0x06, 0x13, 0x07, + 0x0A, 0x05, 0x01, 0x03, 0x07, 0x14, 0x14, 0x08, 0x02, 0x02, 0x05, 0x93, 0x0F, 0x25, 0x2B, 0x31, + 0x20, 0x17, 0x20, 0xD3, 0xD3, 0xC9, 0xC7, 0xC7, 0xC9, 0xD3, 0xD3, 0x20, 0x17, 0x20, 0x32, 0x4A, + 0x2C, 0x28, 0x30, 0x28, 0x29, 0x30, 0x27, 0x09, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x26, + 0xFF, 0xE6, 0x03, 0xDA, 0x03, 0x9F, 0x00, 0x50, 0x00, 0x98, 0x00, 0x00, 0x01, 0x0E, 0x01, 0x15, + 0x14, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x06, 0x07, + 0x06, 0x16, 0x33, 0x32, 0x16, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x15, + 0x14, 0x16, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x36, 0x37, 0x36, 0x26, 0x23, 0x22, 0x26, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x22, 0x06, 0x07, 0x07, 0x1E, 0x01, + 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, + 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, + 0x06, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x16, 0x17, 0x01, 0xEE, 0x06, 0x08, 0x0E, 0x1E, 0x3A, 0x36, 0x37, 0x58, 0x1F, + 0x1E, 0x09, 0x05, 0x0C, 0x13, 0x0D, 0x14, 0x04, 0x07, 0x14, 0x18, 0x13, 0x0C, 0x05, 0x09, 0x1F, + 0x1E, 0x59, 0x37, 0x36, 0x39, 0x1E, 0x0E, 0x1B, 0x15, 0x06, 0x0A, 0x14, 0x2B, 0x3D, 0x83, 0x26, + 0x1E, 0x32, 0x0E, 0x11, 0x0D, 0x15, 0x04, 0x08, 0x16, 0x18, 0x11, 0x0E, 0x32, 0x1E, 0x26, 0x83, + 0x3D, 0x2B, 0x14, 0x0A, 0x07, 0x07, 0x0A, 0x01, 0x01, 0x09, 0x05, 0x0C, 0x02, 0x0C, 0x10, 0x10, + 0x0C, 0x02, 0x02, 0x0C, 0x17, 0x2D, 0x5F, 0x21, 0x22, 0x33, 0x0A, 0x06, 0x08, 0x14, 0x12, 0x0C, + 0x0C, 0x12, 0x14, 0x08, 0x06, 0x0A, 0x19, 0x19, 0x47, 0x2C, 0x2C, 0x31, 0x17, 0x0C, 0x02, 0x02, + 0x0C, 0x10, 0x10, 0x0C, 0x02, 0x02, 0x0C, 0x17, 0x31, 0x2C, 0x2C, 0x47, 0x19, 0x19, 0x0A, 0x06, + 0x08, 0x14, 0x12, 0x0C, 0x0C, 0x10, 0x1B, 0x03, 0x11, 0x1B, 0x70, 0x4E, 0x32, 0x18, 0x03, 0x03, + 0x99, 0x02, 0x15, 0x0D, 0x14, 0x0B, 0x05, 0x09, 0x1E, 0x1F, 0x58, 0x37, 0x36, 0x3A, 0x1E, 0x0E, + 0x0A, 0x06, 0x15, 0x1B, 0x0E, 0x1E, 0x39, 0x36, 0x37, 0x59, 0x1E, 0x1F, 0x09, 0x05, 0x0C, 0x13, + 0x18, 0x14, 0x07, 0x04, 0x14, 0x0C, 0x14, 0x0C, 0x09, 0x0D, 0x56, 0x35, 0x28, 0x79, 0x1F, 0x0C, + 0x09, 0x09, 0x07, 0x15, 0x1B, 0x09, 0x0C, 0x1F, 0x79, 0x28, 0x35, 0x56, 0x0D, 0x09, 0x0C, 0x14, + 0x0C, 0x14, 0x04, 0x02, 0x04, 0x01, 0x04, 0x02, 0xA0, 0x12, 0x0C, 0x0C, 0x12, 0x14, 0x08, 0x06, + 0x0A, 0x33, 0x22, 0x21, 0x5F, 0x2D, 0x17, 0x0C, 0x02, 0x02, 0x0C, 0x10, 0x10, 0x0C, 0x02, 0x02, + 0x0C, 0x17, 0x31, 0x2C, 0x2C, 0x47, 0x19, 0x19, 0x0A, 0x06, 0x08, 0x14, 0x12, 0x0C, 0x0C, 0x12, + 0x14, 0x08, 0x06, 0x0A, 0x19, 0x19, 0x47, 0x2C, 0x2C, 0x31, 0x17, 0x0C, 0x02, 0x02, 0x0C, 0x10, + 0x10, 0x0C, 0x02, 0x03, 0x14, 0x32, 0x50, 0x71, 0x1B, 0x12, 0x04, 0x18, 0x00, 0x0C, 0x00, 0x3F, + 0x00, 0x91, 0x03, 0xC5, 0x03, 0x10, 0x00, 0x2E, 0x00, 0x53, 0x00, 0x60, 0x00, 0x82, 0x00, 0x8E, + 0x00, 0xA1, 0x00, 0xAD, 0x00, 0xB7, 0x00, 0xC3, 0x00, 0xCF, 0x00, 0xDB, 0x00, 0xE7, 0x00, 0x00, + 0x01, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, + 0x06, 0x07, 0x06, 0x14, 0x17, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x36, 0x37, 0x36, 0x16, 0x15, + 0x14, 0x16, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x26, 0x06, 0x07, 0x01, + 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x17, 0x16, + 0x36, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x26, + 0x27, 0x2E, 0x01, 0x07, 0x05, 0x16, 0x06, 0x23, 0x22, 0x26, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x05, 0x14, 0x16, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x06, 0x15, 0x14, 0x06, + 0x23, 0x22, 0x26, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x05, 0x1E, 0x01, 0x07, 0x14, 0x06, 0x07, 0x06, 0x26, 0x35, 0x34, 0x36, 0x07, + 0x14, 0x06, 0x07, 0x06, 0x07, 0x06, 0x22, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x3B, + 0x01, 0x15, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x27, 0x26, 0x36, 0x33, 0x32, 0x16, 0x27, 0x1E, + 0x01, 0x33, 0x36, 0x26, 0x27, 0x26, 0x06, 0x17, 0x07, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x36, + 0x26, 0x23, 0x22, 0x06, 0x05, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x17, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x05, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x02, 0x85, 0x01, 0x05, 0x01, 0x02, 0x08, 0x09, + 0x09, 0x09, 0x02, 0x01, 0x09, 0x04, 0x0B, 0x2F, 0x0D, 0x06, 0x03, 0x04, 0x02, 0x03, 0x06, 0x05, + 0x06, 0x06, 0x06, 0x10, 0x19, 0x09, 0x0D, 0x0D, 0x14, 0x0F, 0x13, 0x07, 0x06, 0x05, 0x04, 0x09, + 0x03, 0xFE, 0x16, 0x25, 0x27, 0x10, 0x1D, 0x19, 0x33, 0x35, 0x80, 0x39, 0x19, 0x34, 0x57, 0x57, + 0x34, 0x19, 0x39, 0x80, 0x35, 0x31, 0x1B, 0x19, 0x10, 0x28, 0x24, 0x2B, 0x67, 0x2B, 0x1F, 0x37, + 0x56, 0x56, 0x37, 0x1F, 0x29, 0x6C, 0x24, 0x02, 0xAE, 0x04, 0x1C, 0x15, 0x25, 0x13, 0x1E, 0x0F, + 0x11, 0x0E, 0x09, 0x0E, 0x02, 0xFD, 0xA2, 0x0A, 0x10, 0x0D, 0x0E, 0x0E, 0x0D, 0x10, 0x0A, 0x06, + 0x05, 0x04, 0x07, 0x0B, 0x0F, 0x1C, 0x02, 0x1C, 0x10, 0x0C, 0x07, 0x04, 0x05, 0x06, 0x01, 0xF2, + 0x09, 0x07, 0x01, 0x0E, 0x09, 0x15, 0x2B, 0x2E, 0x43, 0x09, 0x08, 0x08, 0x21, 0x20, 0x4C, 0x20, + 0x21, 0x08, 0x0D, 0x07, 0x0A, 0x03, 0x4B, 0x32, 0x79, 0xBA, 0x07, 0x0A, 0x40, 0x14, 0x14, 0x1C, + 0x1C, 0x05, 0x13, 0x26, 0x01, 0x09, 0x04, 0x0C, 0x04, 0x0C, 0x07, 0x06, 0x03, 0x5F, 0x01, 0x0B, + 0x06, 0x06, 0x0B, 0x02, 0x02, 0x0B, 0x0A, 0x0A, 0x0B, 0xFE, 0xF5, 0x13, 0x18, 0x17, 0x13, 0x13, + 0x17, 0x18, 0x13, 0x6B, 0x13, 0x17, 0x18, 0x13, 0x13, 0x18, 0x17, 0x13, 0x01, 0x00, 0x09, 0x07, + 0x06, 0x0A, 0x0A, 0x06, 0x07, 0x09, 0x03, 0x09, 0x06, 0x3D, 0x26, 0x36, 0x25, 0x19, 0x1D, 0x15, + 0x27, 0x06, 0x0D, 0x01, 0x0D, 0x06, 0x25, 0x25, 0x55, 0x22, 0x22, 0x38, 0x2C, 0x2E, 0x3B, 0x07, + 0x10, 0x25, 0x2A, 0x20, 0x19, 0x06, 0x08, 0x03, 0x0A, 0x0C, 0x22, 0x47, 0x2A, 0x3F, 0x02, 0x02, + 0x04, 0x05, 0xFE, 0xDA, 0x13, 0x28, 0x23, 0x3E, 0x77, 0x2D, 0x2F, 0x09, 0x26, 0x12, 0x08, 0x08, + 0x12, 0x26, 0x09, 0x2F, 0x2B, 0x73, 0x3C, 0x26, 0x2C, 0x12, 0x16, 0x04, 0x18, 0x13, 0x08, 0x08, + 0x13, 0x17, 0x05, 0x14, 0x52, 0x12, 0x1F, 0x3A, 0x15, 0x0A, 0x02, 0x0A, 0x06, 0x13, 0x07, 0x2C, + 0x10, 0x0A, 0x09, 0x07, 0x08, 0x08, 0x0B, 0x10, 0x0B, 0x10, 0x10, 0x0A, 0x0F, 0x0C, 0x03, 0x03, + 0x15, 0x04, 0x02, 0x0C, 0x0F, 0x0B, 0x0F, 0x0F, 0x0C, 0x0E, 0x05, 0x1C, 0x13, 0x05, 0x0F, 0x04, + 0x0C, 0x18, 0x17, 0x1E, 0x1B, 0x6B, 0x12, 0x16, 0x03, 0x03, 0x02, 0x01, 0x01, 0x02, 0x03, 0x05, + 0x38, 0x0B, 0x03, 0x04, 0x24, 0x02, 0x07, 0x13, 0x05, 0x1C, 0x1C, 0x14, 0x14, 0x40, 0x0A, 0x90, + 0x08, 0x0A, 0x01, 0x1A, 0x04, 0x02, 0x07, 0x08, 0x5E, 0x05, 0x09, 0x09, 0x05, 0x06, 0x07, 0x07, + 0x3E, 0x09, 0x07, 0x07, 0x09, 0x08, 0x08, 0x08, 0x08, 0x09, 0x07, 0x07, 0x09, 0x08, 0x08, 0x08, + 0x28, 0x07, 0x09, 0x09, 0x07, 0x06, 0x0A, 0x0A, 0x00, 0x04, 0x00, 0x5A, 0x00, 0x2A, 0x03, 0xA6, + 0x03, 0x3D, 0x00, 0x6B, 0x00, 0x74, 0x00, 0x7D, 0x00, 0x90, 0x00, 0x00, 0x01, 0x06, 0x16, 0x33, + 0x32, 0x16, 0x07, 0x06, 0x16, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x06, 0x0F, 0x01, + 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x3E, 0x01, 0x1F, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x36, 0x37, 0x36, 0x26, 0x2F, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x06, + 0x26, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x14, 0x07, 0x0E, 0x01, 0x17, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x3F, 0x02, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x2F, 0x01, 0x23, 0x2E, 0x01, 0x27, + 0x26, 0x27, 0x2E, 0x01, 0x07, 0x06, 0x07, 0x05, 0x16, 0x06, 0x27, 0x26, 0x36, 0x33, 0x32, 0x16, + 0x05, 0x07, 0x33, 0x32, 0x36, 0x3F, 0x01, 0x23, 0x07, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x23, 0x22, 0x06, 0x07, 0x01, 0x63, 0x1A, 0x23, + 0x2E, 0x18, 0x0D, 0x08, 0x0C, 0x01, 0x0F, 0x08, 0x25, 0x2A, 0x1E, 0x2B, 0x01, 0x01, 0x03, 0x04, + 0x07, 0x66, 0x5B, 0x5D, 0x21, 0x13, 0x28, 0x0A, 0x0B, 0x15, 0x2B, 0x2B, 0x15, 0x0A, 0x1A, 0x0A, + 0x0F, 0x20, 0x2C, 0x43, 0x1C, 0x16, 0x07, 0x10, 0x05, 0x3B, 0x24, 0x46, 0x5D, 0x1C, 0x18, 0x32, + 0x03, 0x04, 0x4F, 0x3A, 0x43, 0x2F, 0x39, 0x17, 0x26, 0x15, 0x38, 0x27, 0x0F, 0x01, 0x0C, 0x12, + 0x3B, 0x27, 0x1A, 0x19, 0x09, 0x0E, 0x0F, 0x07, 0x07, 0x02, 0x06, 0x46, 0x0C, 0x07, 0x0C, 0x03, + 0x06, 0x36, 0x2C, 0x39, 0x08, 0x08, 0x1A, 0x2E, 0x39, 0x4E, 0x22, 0x4F, 0x19, 0x1D, 0x27, 0x28, + 0x48, 0x1C, 0x1B, 0x07, 0x01, 0xE8, 0x14, 0x2B, 0x1B, 0x1C, 0x0E, 0x20, 0x08, 0x12, 0xFD, 0x50, + 0x15, 0x31, 0x21, 0x21, 0x1E, 0x2F, 0x95, 0x16, 0x2F, 0x02, 0x08, 0x02, 0x04, 0x11, 0x22, 0x23, + 0x13, 0x05, 0x03, 0x08, 0x02, 0x04, 0x11, 0x22, 0x23, 0x14, 0x05, 0x03, 0x34, 0x1B, 0x2E, 0x06, + 0x07, 0x0D, 0x25, 0x0C, 0x07, 0x01, 0x0A, 0x07, 0x08, 0x01, 0x01, 0x17, 0x0F, 0x26, 0x04, 0x03, + 0x23, 0x32, 0x1D, 0x80, 0x21, 0x0D, 0x0C, 0x2B, 0x15, 0x15, 0x2B, 0x0E, 0x09, 0x10, 0x08, 0x02, + 0x03, 0x20, 0x1B, 0x2A, 0x0C, 0x05, 0x0A, 0x03, 0x05, 0x1E, 0x1A, 0x16, 0x06, 0x19, 0x1B, 0x47, + 0x16, 0x18, 0x1E, 0x24, 0x52, 0x25, 0x15, 0x04, 0x10, 0x07, 0x05, 0x12, 0x1D, 0x10, 0x0C, 0x08, + 0x14, 0x15, 0x23, 0x45, 0x24, 0x10, 0x1A, 0x01, 0x06, 0x5B, 0x1B, 0x0E, 0x3D, 0x1C, 0x45, 0x06, + 0x06, 0x2C, 0x22, 0x22, 0x3B, 0x31, 0x3E, 0x01, 0x0A, 0x08, 0x0A, 0x06, 0x07, 0x05, 0x02, 0x02, + 0x07, 0x84, 0x1A, 0x37, 0x12, 0x12, 0x3D, 0x0A, 0x21, 0x2A, 0x0E, 0x1C, 0x2B, 0x2B, 0x6F, 0x0A, + 0x19, 0x07, 0x0B, 0x06, 0x08, 0x11, 0x0B, 0x19, 0x07, 0x0A, 0x07, 0x09, 0x11, 0x00, 0x00, 0x00, + 0x00, 0x0F, 0x00, 0x3F, 0xFF, 0xFF, 0x03, 0xC9, 0x03, 0x86, 0x00, 0x19, 0x00, 0x2B, 0x00, 0x37, + 0x00, 0x43, 0x00, 0x4F, 0x00, 0x5B, 0x00, 0x6E, 0x00, 0xCB, 0x00, 0xDD, 0x00, 0xED, 0x01, 0x12, + 0x01, 0x3B, 0x01, 0x54, 0x01, 0x67, 0x01, 0x89, 0x00, 0x00, 0x01, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x16, 0x32, 0x37, 0x36, 0x26, + 0x27, 0x26, 0x06, 0x07, 0x05, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x27, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x17, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x17, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x07, 0x14, + 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x14, 0x06, 0x23, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x25, 0x0E, 0x01, 0x15, 0x14, 0x36, 0x37, 0x3E, 0x01, 0x33, + 0x16, 0x36, 0x35, 0x34, 0x26, 0x27, 0x22, 0x06, 0x07, 0x17, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, + 0x16, 0x06, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x06, 0x0F, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, + 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x27, 0x2E, 0x01, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x26, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x15, 0x14, + 0x06, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x06, 0x07, 0x06, 0x32, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, + 0x27, 0x2E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x26, 0x23, + 0x22, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x13, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x35, 0x34, 0x26, 0x27, + 0x2E, 0x01, 0x35, 0x34, 0x36, 0x3B, 0x01, 0x07, 0x27, 0x1E, 0x01, 0x15, 0x14, 0x16, 0x37, 0x3E, + 0x01, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x17, 0x27, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x32, + 0x16, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x16, + 0x33, 0x32, 0x36, 0x37, 0x36, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x2F, 0x01, 0x15, 0x07, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, + 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x33, 0x32, 0x36, 0x35, 0x34, 0x36, 0x37, + 0x3E, 0x01, 0x27, 0x26, 0x22, 0x07, 0x05, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x26, 0x06, 0x07, 0x07, + 0x06, 0x14, 0x17, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x36, 0x26, 0x23, 0x22, + 0x06, 0x15, 0x01, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x14, 0x16, 0x17, 0x1E, + 0x01, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x34, 0x36, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, + 0x23, 0x22, 0x06, 0x07, 0x01, 0x20, 0x27, 0x2A, 0x2A, 0x44, 0x14, 0x14, 0x06, 0x05, 0x1E, 0x1F, + 0x3F, 0x7C, 0x5A, 0x37, 0x4A, 0x1C, 0x23, 0x16, 0x03, 0x07, 0x53, 0x5E, 0x38, 0x56, 0x17, 0x01, + 0xE4, 0x15, 0x0F, 0x46, 0x2A, 0x2A, 0x46, 0x0F, 0x15, 0x15, 0x20, 0x17, 0x17, 0x20, 0x12, 0x06, + 0x05, 0x04, 0x07, 0x07, 0x04, 0x05, 0x06, 0x75, 0x0A, 0x06, 0x06, 0x0A, 0x0A, 0x06, 0x06, 0x0A, + 0x60, 0x0A, 0x06, 0x06, 0x0A, 0x0A, 0x06, 0x06, 0x0A, 0x40, 0x0A, 0x06, 0x06, 0x0A, 0x0A, 0x06, + 0x06, 0x0A, 0xFD, 0xBB, 0x28, 0x53, 0x1A, 0x46, 0x22, 0x41, 0x38, 0x38, 0x28, 0x2A, 0x3C, 0x29, + 0x49, 0x08, 0x30, 0x07, 0x12, 0x06, 0x09, 0x01, 0x0B, 0x16, 0x09, 0x1C, 0x11, 0x0F, 0x3D, 0x22, + 0x1A, 0x2C, 0x28, 0x09, 0x1F, 0x0B, 0x0F, 0x07, 0x05, 0x05, 0x03, 0x04, 0x0A, 0x5A, 0x2C, 0x32, + 0x1D, 0x14, 0x07, 0x0A, 0x0B, 0x13, 0x32, 0x1A, 0x27, 0x14, 0x22, 0x38, 0x3C, 0x20, 0x1D, 0x18, + 0x0F, 0x09, 0x07, 0x06, 0x0A, 0x08, 0x05, 0x08, 0x0A, 0x16, 0x22, 0x4E, 0x13, 0x0D, 0x01, 0x0F, + 0x0B, 0x0B, 0x0D, 0x13, 0x14, 0x0C, 0x09, 0x07, 0x26, 0x52, 0x3A, 0x26, 0x42, 0x04, 0x02, 0x11, + 0x15, 0xB3, 0x02, 0x0B, 0x11, 0x1C, 0x24, 0x0A, 0x06, 0x06, 0x0A, 0x12, 0x2E, 0x41, 0x03, 0x50, + 0x08, 0x0A, 0x06, 0x0A, 0x06, 0x0A, 0x0A, 0x18, 0x17, 0x05, 0x0C, 0x23, 0x0F, 0x0C, 0x11, 0x1C, + 0x1C, 0x1C, 0x1F, 0x19, 0x1B, 0x0D, 0x08, 0x08, 0x13, 0x08, 0x1B, 0x11, 0x0F, 0x1C, 0x0D, 0x08, + 0x2E, 0x0A, 0x15, 0x10, 0x10, 0x55, 0x42, 0x41, 0x4F, 0x37, 0xB0, 0x28, 0x22, 0x22, 0x32, 0x0F, + 0x0E, 0x23, 0x1A, 0x13, 0x0C, 0x0A, 0x07, 0x08, 0x0D, 0x09, 0x17, 0x07, 0x20, 0x15, 0x11, 0x09, + 0x0F, 0x1B, 0x38, 0x0F, 0x11, 0x1B, 0x08, 0x15, 0x0D, 0x11, 0x15, 0x02, 0x9F, 0x07, 0x02, 0x08, + 0x09, 0x05, 0x02, 0x05, 0x2A, 0x30, 0x18, 0x0D, 0x07, 0x0E, 0x41, 0x23, 0x19, 0x0E, 0x04, 0x03, + 0x12, 0x0D, 0x03, 0x0C, 0x04, 0x30, 0x01, 0x01, 0x08, 0x0D, 0x1A, 0x05, 0x0D, 0x16, 0x2C, 0x04, + 0x04, 0x0C, 0x0C, 0x04, 0x07, 0xFD, 0xDC, 0x13, 0x06, 0x07, 0x07, 0x16, 0x14, 0x1A, 0x0C, 0x09, + 0x07, 0x06, 0x0A, 0x08, 0x08, 0x14, 0x30, 0x01, 0x0A, 0x06, 0x13, 0x0A, 0x1C, 0x17, 0x21, 0x26, + 0x26, 0x1F, 0x14, 0x03, 0x7C, 0x0B, 0x15, 0x14, 0x2C, 0x13, 0x14, 0x09, 0x07, 0x0D, 0x18, 0x30, + 0x2A, 0x05, 0x02, 0x05, 0x09, 0x0A, 0x0A, 0x12, 0x15, 0x02, 0x02, 0x05, 0x07, 0x20, 0x15, 0x20, + 0x17, 0x2A, 0x46, 0x46, 0x2A, 0x17, 0x20, 0x15, 0x15, 0x0F, 0x0F, 0x36, 0x07, 0x09, 0x09, 0x07, + 0x06, 0x0A, 0x0A, 0x11, 0x06, 0x0A, 0x0A, 0x06, 0x06, 0x0A, 0x0A, 0x3B, 0x07, 0x09, 0x09, 0x07, + 0x06, 0x0A, 0x0A, 0x31, 0x06, 0x0A, 0x0A, 0x06, 0x06, 0x0A, 0x0A, 0x6D, 0x0A, 0x2B, 0x0B, 0x0D, + 0x05, 0x19, 0x0D, 0x09, 0x02, 0x06, 0x08, 0x09, 0x07, 0x01, 0x01, 0x03, 0x6A, 0x02, 0x06, 0x02, + 0x03, 0x09, 0x0C, 0x18, 0x4A, 0x1A, 0x10, 0x1F, 0x11, 0x1C, 0x45, 0x0D, 0x0A, 0x30, 0x2B, 0x41, + 0x1C, 0x0B, 0x1C, 0x09, 0x09, 0x15, 0x04, 0x05, 0x0E, 0x06, 0x10, 0x32, 0x0D, 0x0F, 0x0F, 0x1E, + 0x0B, 0x20, 0x0B, 0x11, 0x0A, 0x64, 0x29, 0x15, 0x09, 0x0B, 0x1E, 0x19, 0x20, 0x1B, 0x13, 0x20, + 0x06, 0x05, 0x1C, 0x0E, 0x0E, 0x1C, 0x05, 0x08, 0x07, 0x0C, 0x31, 0x14, 0x10, 0x0B, 0x0E, 0x0A, + 0x1D, 0x14, 0x15, 0x1E, 0x12, 0x13, 0x1F, 0x1F, 0x17, 0x22, 0x06, 0x1F, 0x81, 0x44, 0x2B, 0x20, + 0x11, 0x07, 0xFE, 0xF6, 0x26, 0x1E, 0x0D, 0x15, 0x10, 0x22, 0x0E, 0x1C, 0x06, 0x05, 0x17, 0x0A, + 0x12, 0x08, 0x3C, 0x08, 0x08, 0x1D, 0x0D, 0x12, 0x06, 0x08, 0x06, 0x1D, 0x0E, 0x19, 0x0C, 0x06, + 0x0E, 0xEB, 0x0E, 0x25, 0x0E, 0x15, 0x0C, 0x0F, 0x1A, 0x1C, 0x20, 0x2D, 0x22, 0x25, 0x07, 0x0F, + 0x27, 0x1A, 0x11, 0x1F, 0x15, 0x1C, 0x3A, 0x5E, 0x28, 0x4B, 0x4C, 0x4B, 0x7E, 0x2B, 0x2B, 0x0B, + 0x07, 0x21, 0x14, 0x14, 0x23, 0x22, 0x56, 0x30, 0x30, 0x2F, 0x2B, 0x76, 0x28, 0x1E, 0x07, 0x0E, + 0x08, 0x1A, 0x09, 0x09, 0x19, 0x08, 0x15, 0x27, 0x1F, 0x14, 0x1F, 0x14, 0x16, 0x0E, 0x3D, 0x1D, + 0x12, 0x1E, 0x10, 0x1B, 0x3A, 0x14, 0x0B, 0x0B, 0x80, 0x03, 0x1A, 0x1E, 0x1C, 0x4A, 0x37, 0x5A, + 0x7C, 0x3F, 0x1F, 0x1E, 0x05, 0x08, 0x55, 0x47, 0x34, 0x3F, 0x44, 0x48, 0x95, 0x07, 0x02, 0x01, + 0x01, 0x40, 0x04, 0x40, 0x2A, 0x3B, 0x43, 0x22, 0x46, 0x1A, 0x81, 0x4C, 0x4A, 0x5E, 0x04, 0x03, + 0xFE, 0xFE, 0x13, 0x14, 0x0F, 0x0C, 0x0A, 0x0A, 0x14, 0x0D, 0x1D, 0x09, 0x08, 0x1D, 0x0C, 0x0F, + 0x0F, 0x41, 0x1B, 0x0D, 0x1C, 0x06, 0x10, 0x32, 0x1C, 0x16, 0x0C, 0x0B, 0x14, 0x00, 0x00, 0x00, + 0x00, 0x13, 0x00, 0x4B, 0x00, 0x0B, 0x03, 0xBB, 0x03, 0x6C, 0x00, 0x08, 0x00, 0x30, 0x00, 0x3C, + 0x00, 0x46, 0x00, 0x50, 0x00, 0x5D, 0x00, 0x73, 0x00, 0x7D, 0x00, 0x89, 0x00, 0x93, 0x00, 0x9F, + 0x00, 0xB8, 0x00, 0xC4, 0x00, 0xCD, 0x00, 0xDD, 0x00, 0xE7, 0x00, 0xF1, 0x00, 0xFE, 0x01, 0x08, + 0x00, 0x00, 0x13, 0x06, 0x16, 0x17, 0x16, 0x36, 0x35, 0x34, 0x22, 0x17, 0x14, 0x16, 0x17, 0x1E, + 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x06, 0x16, 0x1F, 0x01, 0x3F, 0x01, 0x27, 0x2E, + 0x01, 0x37, 0x36, 0x16, 0x1F, 0x01, 0x3F, 0x01, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x25, 0x06, 0x16, 0x17, 0x16, 0x36, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x17, + 0x06, 0x16, 0x17, 0x16, 0x36, 0x35, 0x34, 0x26, 0x07, 0x05, 0x06, 0x16, 0x17, 0x16, 0x36, 0x35, + 0x34, 0x26, 0x07, 0x05, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x25, 0x14, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x1F, 0x01, 0x37, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x37, + 0x36, 0x26, 0x27, 0x26, 0x06, 0x15, 0x05, 0x06, 0x16, 0x17, 0x16, 0x36, 0x27, 0x2E, 0x01, 0x07, + 0x05, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x05, 0x06, 0x16, 0x37, + 0x36, 0x26, 0x23, 0x22, 0x06, 0x07, 0x05, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, + 0x26, 0x06, 0x05, 0x07, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, + 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x23, 0x22, 0x06, 0x07, 0x05, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x25, 0x06, 0x16, 0x17, 0x16, 0x36, 0x37, 0x36, 0x26, + 0x05, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x07, + 0x17, 0x06, 0x16, 0x37, 0x36, 0x26, 0x23, 0x22, 0x06, 0x07, 0x17, 0x1E, 0x01, 0x37, 0x36, 0x26, + 0x23, 0x22, 0x06, 0x17, 0x05, 0x0E, 0x01, 0x17, 0x16, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x07, 0x05, 0x06, 0x16, 0x33, 0x32, 0x36, 0x27, 0x2E, 0x01, 0x07, 0x9B, 0x03, 0x03, 0x05, 0x0A, + 0x16, 0x1F, 0x4A, 0x0C, 0x1D, 0x2B, 0x26, 0x02, 0x01, 0x0B, 0x0F, 0x18, 0x0E, 0x05, 0x03, 0x0E, + 0x24, 0x34, 0x32, 0x32, 0x63, 0x2A, 0x36, 0x03, 0x03, 0x3F, 0x2A, 0x65, 0x18, 0x18, 0xD5, 0x2C, + 0x27, 0x28, 0x3C, 0x12, 0x12, 0x02, 0x04, 0x04, 0x01, 0x1B, 0x12, 0x03, 0x13, 0x18, 0x2B, 0x0D, + 0x10, 0x01, 0x14, 0x13, 0x2B, 0xF0, 0x08, 0x03, 0x09, 0x04, 0x06, 0x04, 0x0A, 0xFD, 0x44, 0x10, + 0x13, 0x17, 0x19, 0x22, 0x40, 0x15, 0x02, 0xF5, 0x06, 0x05, 0x04, 0x06, 0x06, 0x04, 0x05, 0x06, + 0xFD, 0xAB, 0x0B, 0x0C, 0x24, 0x17, 0x16, 0x17, 0x20, 0x01, 0x1E, 0x19, 0x0E, 0x03, 0x08, 0x14, + 0x2F, 0x2D, 0x0E, 0x0A, 0x02, 0xB1, 0x03, 0x06, 0x05, 0x0D, 0x12, 0x08, 0x07, 0x13, 0x05, 0xFC, + 0xEF, 0x09, 0x07, 0x06, 0x0A, 0x0A, 0x06, 0x07, 0x09, 0x02, 0xAF, 0x08, 0x19, 0x0B, 0x0A, 0x09, + 0x0C, 0x04, 0x0A, 0x03, 0xFD, 0xA6, 0x07, 0x04, 0x04, 0x06, 0x06, 0x04, 0x05, 0x06, 0x01, 0xAD, + 0x22, 0x3A, 0x1F, 0x1C, 0x26, 0x1D, 0x0F, 0x1A, 0x05, 0x10, 0x14, 0x06, 0x02, 0x1C, 0x1B, 0x42, + 0x1D, 0x1C, 0x06, 0x02, 0x18, 0x0E, 0xFE, 0x88, 0x06, 0x05, 0x05, 0x06, 0x06, 0x05, 0x05, 0x06, + 0x02, 0x66, 0x10, 0x04, 0x13, 0x0A, 0x0F, 0x09, 0x1D, 0x28, 0xFC, 0xC8, 0x1D, 0x05, 0x16, 0x14, + 0x28, 0x18, 0x17, 0x02, 0x19, 0x0B, 0x12, 0x03, 0x01, 0x15, 0x0E, 0xB1, 0x06, 0x16, 0x0B, 0x09, + 0x0A, 0x0C, 0x03, 0x08, 0x03, 0xDB, 0x03, 0x15, 0x04, 0x01, 0x07, 0x08, 0x08, 0x08, 0x02, 0xFE, + 0xDF, 0x14, 0x02, 0x10, 0x18, 0x37, 0x21, 0x09, 0x04, 0x12, 0x09, 0x01, 0xE6, 0x0A, 0x08, 0x11, + 0x09, 0x0B, 0x02, 0x04, 0x16, 0x07, 0x03, 0x6C, 0x04, 0x0A, 0x03, 0x06, 0x0C, 0x0B, 0x09, 0x58, + 0x22, 0x12, 0x0B, 0x11, 0x3F, 0x32, 0x20, 0x22, 0x13, 0x1C, 0x38, 0x28, 0x1C, 0x1D, 0x23, 0x33, + 0x31, 0x32, 0x66, 0x2A, 0x40, 0x03, 0x03, 0x36, 0x2A, 0x65, 0x19, 0x17, 0xD5, 0x2C, 0x27, 0x27, + 0x3A, 0x11, 0x11, 0x1C, 0x12, 0x1D, 0x12, 0x3E, 0x0A, 0x0D, 0x07, 0x13, 0x18, 0x1D, 0x13, 0x14, + 0x02, 0x08, 0x08, 0x5B, 0x05, 0x04, 0x1D, 0x1B, 0x2E, 0x10, 0x0A, 0x33, 0x12, 0x34, 0x06, 0x06, + 0x19, 0x18, 0x22, 0x19, 0x1A, 0x95, 0x38, 0x43, 0x43, 0x38, 0x38, 0x42, 0x42, 0x38, 0x48, 0x1B, + 0x29, 0x29, 0x57, 0x28, 0x28, 0x1A, 0x25, 0x2E, 0x26, 0x44, 0x11, 0x0A, 0x0E, 0x0F, 0x25, 0x5D, + 0x0E, 0x04, 0x06, 0x0B, 0x17, 0x04, 0x0D, 0x05, 0x0A, 0x11, 0x0E, 0x09, 0x01, 0x09, 0xBC, 0x06, + 0x0A, 0x0A, 0x06, 0x06, 0x0A, 0x0A, 0x22, 0x0D, 0x15, 0x0B, 0x09, 0x1A, 0x07, 0x05, 0x2E, 0x14, + 0x1D, 0x19, 0x11, 0x12, 0x1D, 0x02, 0x03, 0x17, 0x55, 0x23, 0x39, 0x1F, 0x28, 0x0F, 0x20, 0x2A, + 0x05, 0x03, 0x0B, 0x34, 0x11, 0x09, 0x20, 0x20, 0x47, 0x1C, 0x1C, 0x15, 0x0F, 0x27, 0x1A, 0x26, + 0x26, 0x1A, 0x1A, 0x26, 0x26, 0x0C, 0x0C, 0x27, 0x0C, 0x06, 0x01, 0x08, 0x18, 0x3B, 0x4F, 0x23, + 0x35, 0x16, 0x13, 0x02, 0x11, 0x10, 0x3C, 0x26, 0x10, 0x17, 0x17, 0x10, 0x5E, 0x0E, 0x0F, 0x0B, + 0x09, 0x19, 0x0A, 0x06, 0x2C, 0x11, 0x01, 0x11, 0x08, 0x0A, 0x09, 0x08, 0x2A, 0x1A, 0x1E, 0x11, + 0x17, 0x14, 0x1F, 0x11, 0x37, 0x10, 0x0B, 0x56, 0x0A, 0x0F, 0x07, 0x05, 0x0C, 0x08, 0x07, 0x00, + 0x00, 0x06, 0x00, 0x00, 0x00, 0x6B, 0x04, 0x00, 0x03, 0x15, 0x00, 0x12, 0x00, 0x20, 0x00, 0x2E, + 0x00, 0x46, 0x00, 0x5E, 0x00, 0x72, 0x00, 0x00, 0x01, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x36, + 0x37, 0x3E, 0x01, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x05, 0x06, 0x07, 0x06, 0x16, + 0x17, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x07, 0x21, 0x06, 0x07, 0x06, 0x16, 0x17, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x07, 0x01, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x32, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x07, 0x05, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x3B, 0x01, 0x35, 0x34, 0x36, + 0x37, 0x3E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x25, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x15, 0x33, + 0x32, 0x36, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x01, 0xB7, 0x36, 0x20, 0x1F, + 0x21, 0x69, 0x35, 0x28, 0x15, 0x16, 0x02, 0x12, 0x13, 0x26, 0x0F, 0x2B, 0x0F, 0x0F, 0x2B, 0xFE, + 0xC6, 0x23, 0x0B, 0x0B, 0x11, 0x1A, 0x1A, 0x28, 0x29, 0x42, 0x6A, 0x35, 0x02, 0x80, 0x23, 0x0B, + 0x0B, 0x11, 0x1A, 0x1A, 0x28, 0x29, 0x42, 0x6A, 0x35, 0xFE, 0x84, 0x49, 0x54, 0x11, 0x0D, 0x01, + 0x0C, 0x07, 0x58, 0x57, 0xD0, 0x57, 0x58, 0x07, 0x0C, 0x01, 0x0C, 0x0E, 0x2C, 0x2C, 0x75, 0x40, + 0x40, 0x34, 0xFE, 0xDE, 0x13, 0x2D, 0x0E, 0x16, 0x0A, 0x07, 0x06, 0x05, 0x26, 0x15, 0x33, 0x08, + 0x09, 0x06, 0x08, 0x01, 0x02, 0x1C, 0x12, 0x02, 0xF2, 0x01, 0x09, 0x06, 0x07, 0x08, 0x01, 0x33, + 0x15, 0x26, 0x05, 0x06, 0x07, 0x0A, 0x16, 0x17, 0x69, 0x03, 0x00, 0x22, 0x73, 0x34, 0x34, 0x20, + 0x1B, 0x14, 0x22, 0x22, 0x4B, 0x24, 0x23, 0x18, 0x09, 0x0C, 0x0C, 0x83, 0x13, 0x21, 0x22, 0x40, + 0x18, 0x18, 0x42, 0x28, 0x3C, 0x3E, 0x1E, 0x13, 0x21, 0x22, 0x40, 0x18, 0x18, 0x42, 0x28, 0x3C, + 0x3E, 0x1E, 0xFF, 0x00, 0x13, 0x30, 0x20, 0x17, 0x89, 0x0C, 0x06, 0x04, 0x03, 0x03, 0x04, 0x06, + 0x0C, 0x86, 0x19, 0x1F, 0x18, 0x19, 0x1D, 0x03, 0x02, 0x0E, 0x2D, 0x07, 0x1B, 0x0C, 0x15, 0x1F, + 0x2E, 0x1D, 0x2F, 0x06, 0x05, 0x07, 0x5A, 0x30, 0x3C, 0x10, 0x0E, 0x15, 0x01, 0x01, 0x07, 0x06, + 0x09, 0x03, 0x14, 0x0B, 0x0D, 0x3E, 0x2C, 0x5E, 0x07, 0x05, 0x06, 0x2F, 0x1D, 0x2E, 0x1F, 0x15, + 0x15, 0x2E, 0x00, 0x00, 0x00, 0x04, 0x00, 0x55, 0x00, 0x1B, 0x03, 0x8B, 0x03, 0x79, 0x00, 0x61, + 0x00, 0x6A, 0x00, 0x7B, 0x00, 0x86, 0x00, 0x00, 0x01, 0x0E, 0x01, 0x15, 0x14, 0x06, 0x27, 0x26, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, + 0x27, 0x26, 0x36, 0x3F, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x2F, 0x02, 0x2E, 0x01, 0x37, + 0x3E, 0x01, 0x33, 0x32, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x27, + 0x26, 0x06, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x17, 0x06, 0x26, 0x35, 0x34, 0x36, 0x17, + 0x16, 0x14, 0x05, 0x14, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x26, 0x27, 0x26, 0x36, 0x37, + 0x3E, 0x01, 0x15, 0x17, 0x16, 0x06, 0x0F, 0x01, 0x27, 0x26, 0x36, 0x37, 0x36, 0x32, 0x02, 0xF2, + 0x03, 0x04, 0x06, 0x07, 0x08, 0x19, 0x1A, 0x39, 0x18, 0x18, 0x05, 0x09, 0x28, 0x14, 0x08, 0x15, + 0x05, 0x06, 0x41, 0x28, 0x3C, 0x23, 0x04, 0x13, 0x13, 0x4E, 0x28, 0x39, 0x16, 0x16, 0x35, 0x18, + 0x18, 0x04, 0x04, 0x20, 0x12, 0x1E, 0x28, 0x18, 0x0B, 0x0A, 0x18, 0x08, 0x15, 0x06, 0x05, 0x1A, + 0x0D, 0x17, 0x04, 0x0A, 0x0B, 0x06, 0x1A, 0x23, 0x3E, 0x34, 0x7D, 0x13, 0x0A, 0x06, 0x02, 0x03, + 0x46, 0x43, 0x74, 0x0E, 0x05, 0x12, 0x07, 0x07, 0x17, 0x17, 0x30, 0x14, 0x13, 0x28, 0x1D, 0x26, + 0x1A, 0x05, 0x07, 0x0A, 0x0D, 0x14, 0x19, 0x1B, 0x18, 0x12, 0x09, 0x30, 0x07, 0x06, 0x06, 0x07, + 0x07, 0xFE, 0xB7, 0x15, 0x15, 0x36, 0x19, 0x1A, 0x09, 0x05, 0x0A, 0x03, 0x03, 0x26, 0x28, 0x3A, + 0x29, 0x32, 0x03, 0x09, 0x08, 0x13, 0x08, 0x04, 0x01, 0x06, 0x0C, 0x14, 0x03, 0x79, 0x03, 0x32, + 0x20, 0x2C, 0x20, 0x03, 0x02, 0x0F, 0x0F, 0x2C, 0x16, 0x17, 0x0B, 0x18, 0x03, 0x15, 0x0A, 0x09, + 0x02, 0x02, 0x31, 0x1F, 0x2F, 0x26, 0x0E, 0x44, 0x2C, 0x41, 0x21, 0x36, 0x04, 0x07, 0x18, 0x19, + 0x32, 0x12, 0x12, 0x04, 0x04, 0x4E, 0x32, 0x56, 0x40, 0x17, 0x50, 0x20, 0x2E, 0x0F, 0x0A, 0x12, + 0x14, 0x27, 0x28, 0x17, 0x1A, 0x22, 0x1B, 0x18, 0x1C, 0x08, 0x03, 0x19, 0x20, 0x37, 0x12, 0x11, + 0x46, 0x10, 0x07, 0x08, 0x15, 0x15, 0x34, 0x19, 0x19, 0x08, 0x05, 0x31, 0x1D, 0x26, 0x27, 0x08, + 0x0A, 0x01, 0x0C, 0x12, 0x04, 0x1C, 0x19, 0x09, 0x09, 0x66, 0x07, 0x05, 0x0F, 0x0F, 0x05, 0x07, + 0x07, 0x0C, 0xED, 0x03, 0x15, 0x15, 0x32, 0x16, 0x16, 0x05, 0x03, 0x05, 0x06, 0x08, 0x28, 0x20, + 0x2F, 0x16, 0x0D, 0xA8, 0x07, 0x16, 0x09, 0x15, 0x17, 0x0A, 0x15, 0x06, 0x0F, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x2B, 0x00, 0x77, 0x03, 0xD5, 0x03, 0x09, 0x00, 0x1A, 0x00, 0x33, 0x00, 0x50, + 0x00, 0x00, 0x01, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x37, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x05, 0x0E, 0x01, + 0x15, 0x14, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2F, 0x01, 0x37, + 0x3E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x25, 0x06, 0x16, 0x1F, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x14, + 0x16, 0x33, 0x32, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x35, 0x34, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x23, + 0x22, 0x06, 0x07, 0x02, 0x37, 0x02, 0x08, 0x09, 0x1B, 0x11, 0x11, 0x13, 0x37, 0x1B, 0x08, 0x0C, + 0x27, 0x0C, 0x02, 0x08, 0x09, 0x1B, 0x11, 0x11, 0x13, 0x37, 0x1B, 0x08, 0x0C, 0x27, 0x0C, 0xFE, + 0x6B, 0x34, 0x43, 0x24, 0x25, 0x5B, 0x29, 0x29, 0x0A, 0x10, 0x1A, 0x36, 0x26, 0x5E, 0x5E, 0x44, + 0x1F, 0x13, 0x13, 0x3A, 0x5A, 0x02, 0x15, 0x12, 0x1E, 0x44, 0x5E, 0x5E, 0x26, 0x36, 0x1A, 0x10, + 0x0A, 0x29, 0x29, 0x5B, 0x25, 0x24, 0x24, 0x25, 0x5B, 0x29, 0x29, 0x0A, 0x07, 0x11, 0x06, 0x03, + 0x09, 0x03, 0x1B, 0x1B, 0x59, 0x3A, 0x39, 0x41, 0xC4, 0x79, 0x0A, 0x0F, 0x03, 0x0D, 0x03, 0x1B, + 0x1B, 0x59, 0x3A, 0x39, 0x41, 0xC4, 0x79, 0x0A, 0x0F, 0x03, 0x0D, 0xCA, 0x2F, 0x47, 0x09, 0x08, + 0x26, 0x26, 0x54, 0x21, 0x22, 0x1B, 0x0F, 0x07, 0x3E, 0x25, 0x57, 0x59, 0x40, 0x32, 0x13, 0x12, + 0x21, 0x50, 0x5F, 0x13, 0x32, 0x40, 0x59, 0x57, 0x25, 0x3E, 0x07, 0x0F, 0x1B, 0x22, 0x21, 0x54, + 0x26, 0x26, 0x08, 0x08, 0x26, 0x26, 0x54, 0x21, 0x22, 0x08, 0x05, 0x00, 0x00, 0x04, 0x00, 0x9B, + 0x00, 0x55, 0x03, 0x2B, 0x03, 0x3D, 0x00, 0x3E, 0x00, 0x47, 0x00, 0x51, 0x00, 0x61, 0x00, 0x00, + 0x01, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x06, 0x16, 0x17, 0x16, 0x06, 0x07, + 0x06, 0x16, 0x37, 0x3E, 0x01, 0x3F, 0x02, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x2B, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x06, 0x07, 0x06, + 0x16, 0x3B, 0x01, 0x2F, 0x01, 0x37, 0x3E, 0x01, 0x3D, 0x01, 0x27, 0x26, 0x06, 0x07, 0x07, 0x0E, + 0x01, 0x27, 0x26, 0x36, 0x33, 0x32, 0x16, 0x17, 0x14, 0x06, 0x27, 0x26, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x05, 0x14, 0x06, 0x07, 0x06, 0x26, 0x27, 0x26, 0x34, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, + 0x15, 0x01, 0xA2, 0x0E, 0x27, 0x0C, 0x10, 0x1E, 0x14, 0x23, 0x50, 0x11, 0x1D, 0x0C, 0x24, 0x09, + 0x02, 0x0E, 0x10, 0x06, 0x1A, 0x0F, 0x10, 0x0D, 0x14, 0x5E, 0x2F, 0xBD, 0xBC, 0x2E, 0x2D, 0xB5, + 0xB0, 0x07, 0x02, 0x08, 0x03, 0x04, 0x0A, 0x14, 0x0D, 0x17, 0x02, 0x04, 0x06, 0x0A, 0x04, 0x2A, + 0x5C, 0x87, 0x07, 0x08, 0x24, 0x17, 0x0D, 0x9B, 0x57, 0x53, 0x14, 0x8F, 0x27, 0x25, 0x05, 0x03, + 0x2C, 0x18, 0x08, 0x0A, 0x40, 0x34, 0x08, 0x06, 0x30, 0x08, 0x04, 0x06, 0x01, 0x50, 0x19, 0x4A, + 0x3D, 0x27, 0x04, 0x03, 0x03, 0x04, 0x27, 0x3D, 0x4A, 0x19, 0x03, 0x30, 0x06, 0x16, 0x08, 0x0C, + 0x07, 0x03, 0x05, 0x1F, 0x1C, 0x2B, 0x71, 0x1D, 0x08, 0x25, 0x3B, 0x4A, 0x32, 0x04, 0x02, 0x22, + 0x3A, 0x5B, 0x16, 0xBC, 0xBC, 0x2F, 0x32, 0xCF, 0xCD, 0x32, 0x29, 0x10, 0x25, 0x0A, 0x0D, 0x11, + 0x09, 0x07, 0x0A, 0x28, 0x24, 0x0D, 0x07, 0x35, 0x35, 0x03, 0x02, 0x0B, 0x11, 0x1B, 0x02, 0x01, + 0x05, 0x09, 0x77, 0x54, 0x21, 0x2B, 0x1A, 0x37, 0x04, 0x4B, 0x12, 0x39, 0x09, 0x06, 0x56, 0x10, + 0x0A, 0xA6, 0x14, 0x08, 0x02, 0x02, 0x05, 0x0B, 0x06, 0x13, 0x07, 0x0A, 0x05, 0x01, 0x03, 0x07, + 0x14, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x61, 0x00, 0x15, 0x03, 0x8B, 0x03, 0x5E, 0x00, 0x30, + 0x00, 0x3C, 0x00, 0x7C, 0x00, 0x89, 0x00, 0x00, 0x01, 0x0E, 0x01, 0x15, 0x14, 0x06, 0x27, 0x26, + 0x06, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x07, 0x06, 0x16, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, + 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x36, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x37, + 0x36, 0x26, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x17, 0x16, 0x14, 0x07, 0x06, 0x22, 0x27, + 0x26, 0x34, 0x37, 0x36, 0x32, 0x05, 0x0E, 0x01, 0x15, 0x14, 0x06, 0x27, 0x26, 0x06, 0x07, 0x06, + 0x16, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x07, 0x06, 0x14, 0x17, 0x1E, 0x01, 0x37, 0x36, 0x16, + 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x36, 0x17, 0x16, 0x36, 0x37, 0x36, 0x34, 0x27, + 0x2E, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x34, 0x27, 0x2E, 0x01, 0x07, 0x06, 0x26, 0x35, 0x34, + 0x26, 0x23, 0x22, 0x06, 0x07, 0x17, 0x16, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x17, 0x02, 0xAD, 0x05, 0x08, 0x3B, 0x13, 0x1E, 0x2D, 0x19, 0x05, 0x06, 0x06, 0x05, 0x1A, + 0x30, 0x1D, 0x15, 0x30, 0x0B, 0x08, 0x16, 0x14, 0x15, 0x15, 0x08, 0x0C, 0x30, 0x14, 0x1E, 0x2F, + 0x19, 0x04, 0x07, 0x07, 0x04, 0x19, 0x2D, 0x20, 0x14, 0x35, 0x09, 0x09, 0x3F, 0x10, 0x5A, 0x18, + 0x16, 0x16, 0x38, 0x18, 0x17, 0x16, 0x16, 0x37, 0xFE, 0x3E, 0x06, 0x07, 0x64, 0x1D, 0x16, 0x1A, + 0x0E, 0x0A, 0x0E, 0x11, 0x06, 0x07, 0x0A, 0x0D, 0x15, 0x15, 0x0D, 0x15, 0x10, 0x1D, 0x65, 0x1D, + 0x18, 0x19, 0x1D, 0x60, 0x20, 0x11, 0x15, 0x0E, 0x15, 0x15, 0x0D, 0x0B, 0x0B, 0x0D, 0x15, 0x15, + 0x0E, 0x14, 0x10, 0x1E, 0x64, 0x1D, 0x19, 0x0B, 0x18, 0x05, 0x63, 0x28, 0x2B, 0x38, 0x20, 0x35, + 0x35, 0x20, 0x10, 0x1F, 0x0C, 0x03, 0x5E, 0x05, 0x10, 0x06, 0x0D, 0x1D, 0x05, 0x06, 0x4F, 0x10, + 0x02, 0x1D, 0x11, 0x10, 0x1D, 0x03, 0x10, 0x4F, 0x07, 0x05, 0x1B, 0x18, 0x0E, 0x0C, 0x0C, 0x0E, + 0x18, 0x1B, 0x05, 0x07, 0x4F, 0x10, 0x03, 0x1D, 0x10, 0x11, 0x1D, 0x02, 0x10, 0x4E, 0x05, 0x03, + 0x1E, 0x15, 0x14, 0x0C, 0x10, 0x95, 0x16, 0x38, 0x18, 0x17, 0x16, 0x16, 0x37, 0x18, 0x18, 0xAC, + 0x05, 0x14, 0x0A, 0x15, 0x32, 0x06, 0x06, 0x0E, 0x19, 0x13, 0x2D, 0x05, 0x02, 0x21, 0x18, 0x1F, + 0x20, 0x0E, 0x15, 0x16, 0x1A, 0x12, 0x09, 0x04, 0x08, 0x32, 0x16, 0x16, 0x1A, 0x1A, 0x16, 0x17, + 0x31, 0x08, 0x04, 0x09, 0x12, 0x1A, 0x16, 0x15, 0x0D, 0x21, 0x1C, 0x1C, 0x20, 0x0D, 0x15, 0x16, + 0x1B, 0x11, 0x09, 0x04, 0x07, 0x31, 0x16, 0x16, 0x1A, 0x07, 0x06, 0xCE, 0x27, 0x69, 0x35, 0x21, + 0x20, 0x35, 0x0E, 0x0D, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x9B, 0xFD, 0x02, 0x5D, + 0x5F, 0x0F, 0x3C, 0xF5, 0x00, 0x0B, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xDD, 0x62, 0x7F, 0xAF, + 0x00, 0x00, 0x00, 0x00, 0xDD, 0x62, 0x7F, 0xAF, 0x00, 0x00, 0xFF, 0xE6, 0x04, 0x00, 0x03, 0x9F, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x03, 0xC0, 0xFF, 0xC0, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, + 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x04, 0x00, 0x00, 0x6C, 0x04, 0x00, 0x00, 0x64, 0x04, 0x00, 0x00, 0x2B, 0x04, 0x00, 0x00, 0x00, + 0x04, 0x00, 0x00, 0x20, 0x04, 0x00, 0x00, 0x71, 0x04, 0x00, 0x00, 0x55, 0x04, 0x00, 0x00, 0x40, + 0x04, 0x00, 0x00, 0x5F, 0x04, 0x00, 0x00, 0x40, 0x04, 0x00, 0x00, 0x97, 0x04, 0x00, 0x00, 0x81, + 0x04, 0x00, 0x00, 0xC5, 0x04, 0x00, 0x00, 0x5B, 0x04, 0x00, 0x00, 0x41, 0x04, 0x00, 0x00, 0x95, + 0x04, 0x00, 0x00, 0x26, 0x04, 0x00, 0x00, 0x3F, 0x04, 0x00, 0x00, 0x5A, 0x04, 0x00, 0x00, 0x3F, + 0x04, 0x00, 0x00, 0x4B, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x55, 0x04, 0x00, 0x00, 0x2B, + 0x04, 0x00, 0x00, 0x9B, 0x04, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x14, + 0x00, 0x1E, 0x00, 0x8C, 0x01, 0xD0, 0x02, 0x32, 0x02, 0xAA, 0x03, 0x86, 0x04, 0x1C, 0x04, 0x72, + 0x05, 0x0C, 0x05, 0x5A, 0x06, 0xB8, 0x07, 0x60, 0x07, 0xE8, 0x08, 0x32, 0x08, 0xC6, 0x09, 0x56, + 0x09, 0xBE, 0x0A, 0x9E, 0x0B, 0xEC, 0x0C, 0xC8, 0x0E, 0xF8, 0x10, 0x88, 0x11, 0x3A, 0x12, 0x08, + 0x12, 0x86, 0x13, 0x1A, 0x13, 0xE2, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1E, 0x01, 0x8A, + 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0xAE, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x15, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x07, 0x00, 0xDE, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x15, + 0x00, 0x60, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x15, 0x00, 0xF3, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0B, 0x00, 0x3F, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x06, 0x00, 0x15, 0x00, 0x9F, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x1A, + 0x01, 0x32, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x01, 0x00, 0x2A, 0x00, 0x15, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x02, 0x00, 0x0E, 0x00, 0xE5, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x03, 0x00, 0x2A, 0x00, 0x75, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x04, 0x00, 0x2A, + 0x01, 0x08, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x05, 0x00, 0x16, 0x00, 0x4A, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x06, 0x00, 0x2A, 0x00, 0xB4, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x0A, 0x00, 0x34, 0x01, 0x4C, 0x45, 0x76, 0x6F, 0x6C, 0x75, 0x74, 0x69, 0x6F, 0x6E, 0x52, + 0x65, 0x62, 0x6F, 0x72, 0x6E, 0x2D, 0x49, 0x63, 0x6F, 0x6E, 0x73, 0x00, 0x45, 0x00, 0x76, 0x00, + 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x52, 0x00, + 0x65, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6E, 0x00, 0x2D, 0x00, 0x49, 0x00, 0x63, 0x00, + 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6F, 0x6E, 0x20, 0x31, 0x2E, 0x30, + 0x00, 0x56, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, + 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, 0x45, 0x76, 0x6F, 0x6C, 0x75, 0x74, 0x69, 0x6F, 0x6E, 0x52, + 0x65, 0x62, 0x6F, 0x72, 0x6E, 0x2D, 0x49, 0x63, 0x6F, 0x6E, 0x73, 0x00, 0x45, 0x00, 0x76, 0x00, + 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x52, 0x00, + 0x65, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6E, 0x00, 0x2D, 0x00, 0x49, 0x00, 0x63, 0x00, + 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x45, 0x76, 0x6F, 0x6C, 0x75, 0x74, 0x69, 0x6F, 0x6E, 0x52, 0x65, + 0x62, 0x6F, 0x72, 0x6E, 0x2D, 0x49, 0x63, 0x6F, 0x6E, 0x73, 0x00, 0x45, 0x00, 0x76, 0x00, 0x6F, + 0x00, 0x6C, 0x00, 0x75, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x52, 0x00, 0x65, + 0x00, 0x62, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6E, 0x00, 0x2D, 0x00, 0x49, 0x00, 0x63, 0x00, 0x6F, + 0x00, 0x6E, 0x00, 0x73, 0x52, 0x65, 0x67, 0x75, 0x6C, 0x61, 0x72, 0x00, 0x52, 0x00, 0x65, 0x00, + 0x67, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, 0x45, 0x76, 0x6F, 0x6C, 0x75, 0x74, 0x69, + 0x6F, 0x6E, 0x52, 0x65, 0x62, 0x6F, 0x72, 0x6E, 0x2D, 0x49, 0x63, 0x6F, 0x6E, 0x73, 0x00, 0x45, + 0x00, 0x76, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, + 0x00, 0x52, 0x00, 0x65, 0x00, 0x62, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x6E, 0x00, 0x2D, 0x00, 0x49, + 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x46, 0x6F, 0x6E, 0x74, 0x20, 0x67, 0x65, 0x6E, + 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x49, 0x63, 0x6F, 0x4D, 0x6F, 0x6F, + 0x6E, 0x2E, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x67, 0x00, 0x65, + 0x00, 0x6E, 0x00, 0x65, 0x00, 0x72, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, + 0x00, 0x62, 0x00, 0x79, 0x00, 0x20, 0x00, 0x49, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x4D, 0x00, 0x6F, + 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 +}; +char weapons_font[/*47320*/] = +{ + 0x00, 0x01, 0x00, 0x00, 0x00, 0x0D, 0x00, 0x80, 0x00, 0x03, + 0x00, 0x50, 0x46, 0x46, 0x54, 0x4D, 0x7B, 0xE3, 0x73, 0x8D, + 0x00, 0x00, 0xB8, 0xBC, 0x00, 0x00, 0x00, 0x1C, 0x47, 0x44, + 0x45, 0x46, 0x00, 0x27, 0x00, 0x67, 0x00, 0x00, 0xB8, 0x94, + 0x00, 0x00, 0x00, 0x26, 0x4F, 0x53, 0x2F, 0x32, 0x57, 0xD0, + 0x74, 0xA0, 0x00, 0x00, 0x01, 0x58, 0x00, 0x00, 0x00, 0x60, + 0x63, 0x6D, 0x61, 0x70, 0x1D, 0x36, 0xDC, 0x3C, 0x00, 0x00, + 0x02, 0xB8, 0x00, 0x00, 0x01, 0x76, 0x67, 0x61, 0x73, 0x70, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0xB8, 0x8C, 0x00, 0x00, + 0x00, 0x08, 0x67, 0x6C, 0x79, 0x66, 0x40, 0xA2, 0xDD, 0x0D, + 0x00, 0x00, 0x04, 0xB4, 0x00, 0x00, 0xB1, 0x60, 0x68, 0x65, + 0x61, 0x64, 0x14, 0x16, 0x60, 0xCA, 0x00, 0x00, 0x00, 0xDC, + 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, 0x65, 0x61, 0x10, 0xEF, + 0x0D, 0x99, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0x24, + 0x68, 0x6D, 0x74, 0x78, 0xC4, 0x0C, 0x13, 0x3F, 0x00, 0x00, + 0x01, 0xB8, 0x00, 0x00, 0x00, 0xFE, 0x6C, 0x6F, 0x63, 0x61, + 0xAF, 0xAF, 0xDF, 0x16, 0x00, 0x00, 0x04, 0x30, 0x00, 0x00, + 0x00, 0x84, 0x6D, 0x61, 0x78, 0x70, 0x00, 0x52, 0x02, 0x31, + 0x00, 0x00, 0x01, 0x38, 0x00, 0x00, 0x00, 0x20, 0x6E, 0x61, + 0x6D, 0x65, 0xF8, 0x4C, 0xD0, 0xCA, 0x00, 0x00, 0xB6, 0x14, + 0x00, 0x00, 0x01, 0xC2, 0x70, 0x6F, 0x73, 0x74, 0x25, 0x31, + 0x3E, 0x4F, 0x00, 0x00, 0xB7, 0xD8, 0x00, 0x00, 0x00, 0xB3, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xE0, 0x19, + 0x16, 0x8D, 0x5F, 0x0F, 0x3C, 0xF5, 0x00, 0x0B, 0x04, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xD2, 0xEB, 0xED, 0xCA, 0x00, 0x00, + 0x00, 0x00, 0xD4, 0xDE, 0x2E, 0x83, 0x00, 0x00, 0xFF, 0xBF, + 0x0D, 0x2D, 0x03, 0xC1, 0x00, 0x00, 0x00, 0x08, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x03, 0xC0, 0xFF, 0xC0, 0x00, 0x00, 0x0D, 0x9A, 0x00, 0x00, + 0x00, 0x00, 0x0D, 0x2D, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x3E, 0x00, 0x01, 0x00, 0x00, 0x00, 0x41, 0x02, 0x2F, + 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x07, 0x76, 0x01, 0x90, + 0x00, 0x05, 0x00, 0x00, 0x02, 0x99, 0x02, 0xCC, 0x00, 0x00, + 0x00, 0x8F, 0x02, 0x99, 0x02, 0xCC, 0x00, 0x00, 0x01, 0xEB, + 0x00, 0x33, 0x01, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x50, 0x66, 0x45, 0x64, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x76, 0x03, 0xC0, 0xFF, 0xC0, 0x00, 0x40, 0x03, 0xC0, + 0x00, 0x40, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x03, 0x63, 0x03, 0x5A, 0x00, 0x00, 0x00, 0x20, 0x00, 0x01, + 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x55, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x08, 0xCD, 0x00, 0x53, 0x09, 0x4D, 0x00, 0x5D, 0x08, 0xCD, + 0x00, 0x53, 0x08, 0x66, 0x00, 0x53, 0x08, 0x4D, 0x00, 0x52, + 0x09, 0x4D, 0x00, 0x52, 0x08, 0xCD, 0x00, 0x51, 0x08, 0xCD, + 0x00, 0x53, 0x08, 0xCD, 0x00, 0x50, 0x08, 0xCD, 0x00, 0x54, + 0x06, 0x80, 0x00, 0x5D, 0x0A, 0x00, 0x00, 0x4F, 0x05, 0x4D, + 0x00, 0x57, 0x05, 0xE6, 0x00, 0x4B, 0x05, 0x00, 0x00, 0x55, + 0x05, 0x00, 0x00, 0x59, 0x09, 0x66, 0x00, 0x53, 0x06, 0x66, + 0x00, 0x65, 0x05, 0x9A, 0x00, 0x5A, 0x07, 0x4D, 0x00, 0x5B, + 0x05, 0x4D, 0x00, 0x5D, 0x09, 0xB3, 0x00, 0x5A, 0x0A, 0x9A, + 0x00, 0x5D, 0x06, 0x1A, 0x00, 0x61, 0x08, 0x4D, 0x00, 0x4F, + 0x08, 0x4D, 0x00, 0x62, 0x0C, 0x1A, 0x00, 0x5D, 0x09, 0x1A, + 0x00, 0x5A, 0x0A, 0xB3, 0x00, 0x64, 0x0D, 0x9A, 0x00, 0x5B, + 0x09, 0x66, 0x00, 0x53, 0x0A, 0x80, 0x00, 0x53, 0x0B, 0x1A, + 0x00, 0x56, 0x0B, 0x4D, 0x00, 0x4D, 0x0B, 0x4D, 0x00, 0x4A, + 0x0D, 0x9A, 0x00, 0x62, 0x08, 0xCD, 0x00, 0x52, 0x08, 0xCD, + 0x00, 0x53, 0x0C, 0x80, 0x00, 0x55, 0x0A, 0xE6, 0x00, 0x62, + 0x0A, 0x66, 0x00, 0x5E, 0x07, 0xE6, 0x00, 0x63, 0x0B, 0x4D, + 0x00, 0x60, 0x09, 0x66, 0x00, 0x55, 0x0A, 0x9A, 0x00, 0x53, + 0x05, 0x33, 0x00, 0x56, 0x02, 0x00, 0x00, 0x54, 0x02, 0xE6, + 0x00, 0x58, 0x02, 0x1A, 0x00, 0x54, 0x02, 0xCD, 0x00, 0x57, + 0x03, 0x9A, 0x00, 0x61, 0x02, 0x1A, 0x00, 0x51, 0x04, 0x00, + 0x00, 0x5E, 0x03, 0x00, 0x00, 0x62, 0x03, 0x00, 0x00, 0x66, + 0x03, 0xE6, 0x00, 0x59, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x03, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x1C, 0x00, 0x04, 0x00, 0x54, 0x00, 0x00, + 0x00, 0x10, 0x00, 0x10, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x20, 0x00, 0x39, 0x00, 0x5B, 0x00, 0x5D, 0x00, 0x76, + 0xFF, 0xFD, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x00, 0x30, 0x00, 0x41, 0x00, 0x5D, 0x00, 0x61, 0xFF, 0xFD, + 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xE4, 0xFF, 0xD5, 0xFF, 0xCE, + 0xFF, 0xCD, 0xFF, 0xCA, 0x00, 0x03, 0x00, 0x01, 0x00, 0x10, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, + 0x01, 0x06, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, + 0x0D, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, + 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, + 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F, 0x20, 0x21, 0x22, 0x23, + 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x00, 0x2A, 0x00, 0x00, + 0x00, 0x2B, 0x2C, 0x2D, 0x2E, 0x2F, 0x30, 0x31, 0x32, 0x33, + 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x3B, 0x3C, 0x3D, + 0x3E, 0x3F, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x08, + 0x00, 0x10, 0x00, 0x18, 0x01, 0x4E, 0x02, 0xC2, 0x04, 0x2C, + 0x05, 0x7E, 0x06, 0xC6, 0x08, 0xF0, 0x0B, 0x16, 0x0D, 0x34, + 0x0F, 0x58, 0x11, 0xB4, 0x12, 0xEA, 0x14, 0xCA, 0x15, 0xC8, + 0x16, 0xAE, 0x17, 0xC4, 0x19, 0x50, 0x1A, 0x1C, 0x1C, 0x5A, + 0x1D, 0xE6, 0x1F, 0x92, 0x20, 0xF2, 0x23, 0xB8, 0x25, 0xBE, + 0x27, 0x58, 0x28, 0xF0, 0x2A, 0xC0, 0x2C, 0x9A, 0x2D, 0xD0, + 0x2F, 0xE0, 0x31, 0x64, 0x33, 0x02, 0x35, 0xC8, 0x36, 0xA4, + 0x39, 0x14, 0x3C, 0x02, 0x3C, 0xF4, 0x3D, 0xEE, 0x3F, 0x80, + 0x41, 0xBA, 0x43, 0x94, 0x44, 0xA0, 0x46, 0x22, 0x47, 0xE6, + 0x4A, 0x54, 0x4C, 0x7A, 0x4D, 0x4C, 0x4D, 0xA6, 0x4E, 0x9A, + 0x4F, 0xAA, 0x50, 0x5E, 0x51, 0x0A, 0x52, 0x16, 0x53, 0x94, + 0x54, 0x74, 0x55, 0x2E, 0x56, 0xA4, 0x57, 0x08, 0x57, 0xAA, + 0x57, 0xDE, 0x58, 0xB0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x39, 0x02, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x39, 0x02, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x39, 0x02, 0x00, 0x01, 0x00, 0x53, 0x00, 0xDA, 0x08, 0x53, + 0x02, 0xA5, 0x00, 0xD6, 0x00, 0x00, 0x01, 0x3E, 0x01, 0x37, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x07, 0x22, 0x26, + 0x23, 0x26, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x06, 0x27, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x27, 0x26, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2E, 0x01, + 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x27, 0x26, 0x36, 0x35, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x16, 0x33, 0x1E, 0x01, + 0x17, 0x32, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x3A, + 0x01, 0x33, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x35, 0x34, 0x26, + 0x27, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x15, 0x14, 0x22, 0x23, + 0x2A, 0x01, 0x23, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x33, 0x32, + 0x36, 0x33, 0x3E, 0x01, 0x37, 0x32, 0x36, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, + 0x31, 0x07, 0xF4, 0x18, 0x30, 0x17, 0x01, 0x08, 0x03, 0x06, + 0x0B, 0x05, 0x0E, 0x1F, 0x11, 0x21, 0x41, 0x24, 0x35, 0x6F, + 0x37, 0x17, 0x2E, 0x16, 0x0B, 0x17, 0x0B, 0x0A, 0x16, 0x0A, + 0x1D, 0x3A, 0x1D, 0x17, 0x2F, 0x17, 0x17, 0x35, 0x19, 0x03, + 0x08, 0x04, 0x01, 0x04, 0x01, 0x02, 0x0B, 0x04, 0x0D, 0x1B, + 0x0D, 0x0F, 0x24, 0x10, 0x07, 0x09, 0x02, 0x0E, 0x2B, 0x2E, + 0x12, 0x20, 0x0A, 0x04, 0x07, 0x03, 0x03, 0x05, 0x08, 0x0D, + 0x1A, 0x0C, 0x0A, 0x14, 0x0B, 0x18, 0x34, 0x18, 0x0C, 0x19, + 0x0C, 0x0B, 0x1A, 0x0B, 0x0B, 0x18, 0x0A, 0x0F, 0x24, 0x08, + 0x09, 0x09, 0x07, 0x03, 0x05, 0x06, 0x07, 0x10, 0x06, 0x0B, + 0x16, 0x10, 0x16, 0x21, 0x0F, 0x16, 0x27, 0x14, 0x08, 0x11, + 0x09, 0x06, 0x0B, 0x06, 0x05, 0x07, 0x04, 0x08, 0x01, 0x01, + 0x12, 0x0C, 0x1B, 0x62, 0x37, 0x2B, 0x63, 0x31, 0x16, 0x2C, + 0x17, 0x20, 0x41, 0x21, 0x07, 0x12, 0x07, 0x04, 0x0A, 0x03, + 0x07, 0x0F, 0x07, 0x1A, 0x35, 0x1A, 0x03, 0x04, 0x02, 0x06, + 0x0A, 0x06, 0x07, 0x0E, 0x07, 0x15, 0x29, 0x14, 0x1D, 0x39, + 0x1D, 0x09, 0x13, 0x09, 0x01, 0x03, 0x02, 0x07, 0x06, 0x02, + 0x01, 0x01, 0x01, 0x01, 0x11, 0x21, 0x11, 0x08, 0x07, 0x02, + 0x05, 0x04, 0x09, 0x04, 0x03, 0x09, 0x08, 0x04, 0x09, 0x04, + 0x11, 0x21, 0x11, 0x18, 0x2F, 0x17, 0x09, 0x14, 0x09, 0x0F, + 0x1D, 0x0F, 0x24, 0x4A, 0x25, 0x30, 0x61, 0x31, 0x23, 0x45, + 0x24, 0x02, 0x27, 0x02, 0x05, 0x02, 0x05, 0x07, 0x04, 0x05, + 0x0C, 0x06, 0x0E, 0x1C, 0x09, 0x13, 0x25, 0x0C, 0x10, 0x0D, + 0x05, 0x03, 0x01, 0x01, 0x01, 0x01, 0x02, 0x05, 0x09, 0x05, + 0x04, 0x0C, 0x05, 0x06, 0x03, 0x01, 0x07, 0x01, 0x03, 0x08, + 0x01, 0x05, 0x0A, 0x05, 0x05, 0x10, 0x01, 0x01, 0x1B, 0x05, + 0x23, 0x51, 0x04, 0x02, 0x08, 0x11, 0x05, 0x0B, 0x06, 0x07, + 0x07, 0x01, 0x01, 0x07, 0x02, 0x02, 0x03, 0x01, 0x02, 0x06, + 0x04, 0x02, 0x04, 0x03, 0x02, 0x07, 0x01, 0x0A, 0x04, 0x05, + 0x19, 0x0B, 0x0B, 0x1C, 0x0C, 0x05, 0x0B, 0x02, 0x01, 0x03, + 0x07, 0x0B, 0x19, 0x02, 0x02, 0x16, 0x0E, 0x16, 0x2F, 0x17, + 0x0A, 0x15, 0x08, 0x05, 0x0A, 0x04, 0x05, 0x03, 0x08, 0x0F, + 0x23, 0x10, 0x1D, 0x39, 0x1A, 0x3B, 0x56, 0x20, 0x1A, 0x1C, + 0x09, 0x04, 0x09, 0x02, 0x03, 0x07, 0x04, 0x01, 0x03, 0x01, + 0x01, 0x04, 0x01, 0x01, 0x02, 0x01, 0x04, 0x01, 0x01, 0x02, + 0x03, 0x01, 0x02, 0x05, 0x02, 0x01, 0x01, 0x01, 0x01, 0x0D, + 0x04, 0x01, 0x06, 0x01, 0x02, 0x05, 0x02, 0x08, 0x05, 0x07, + 0x0F, 0x03, 0x01, 0x02, 0x01, 0x01, 0x03, 0x02, 0x06, 0x03, + 0x05, 0x09, 0x05, 0x0C, 0x14, 0x03, 0x05, 0x09, 0x04, 0x03, + 0x02, 0x02, 0x00, 0x02, 0x00, 0x5D, 0x00, 0xD7, 0x08, 0xDE, + 0x02, 0xAA, 0x01, 0x1C, 0x01, 0x32, 0x00, 0x00, 0x01, 0x2E, + 0x03, 0x27, 0x26, 0x22, 0x23, 0x2A, 0x01, 0x27, 0x2A, 0x01, + 0x27, 0x22, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x35, 0x3C, + 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x06, 0x23, 0x2A, 0x01, + 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x23, + 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x06, + 0x26, 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, + 0x23, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x30, 0x07, 0x06, 0x33, + 0x0E, 0x01, 0x23, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x2A, + 0x01, 0x27, 0x22, 0x06, 0x15, 0x0E, 0x01, 0x23, 0x22, 0x26, + 0x23, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, 0x23, 0x06, + 0x26, 0x27, 0x26, 0x06, 0x23, 0x2A, 0x01, 0x27, 0x22, 0x06, + 0x07, 0x06, 0x16, 0x07, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, + 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x32, 0x17, + 0x16, 0x14, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x36, + 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, + 0x36, 0x16, 0x17, 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, + 0x16, 0x37, 0x36, 0x32, 0x17, 0x1E, 0x01, 0x33, 0x3A, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x32, 0x14, 0x15, 0x1C, 0x01, 0x15, + 0x1C, 0x01, 0x15, 0x14, 0x16, 0x33, 0x32, 0x3B, 0x01, 0x3C, + 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, 0x33, 0x3A, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x36, 0x32, 0x33, 0x3A, 0x02, 0x36, + 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x25, 0x1E, 0x01, 0x07, 0x14, 0x06, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, + 0x36, 0x17, 0x08, 0xDE, 0x37, 0x6D, 0x6D, 0x6D, 0x36, 0x07, + 0x0E, 0x06, 0x16, 0x2C, 0x16, 0x48, 0x90, 0x48, 0x46, 0x8E, + 0x46, 0x15, 0x29, 0x14, 0x05, 0x08, 0x04, 0x06, 0x0C, 0x07, + 0x11, 0x20, 0x10, 0x0C, 0x06, 0x0E, 0x02, 0x02, 0x0F, 0x02, + 0x07, 0x12, 0x22, 0x11, 0x06, 0x0D, 0x06, 0x05, 0x04, 0x06, + 0x06, 0x09, 0x03, 0x02, 0x01, 0x02, 0x08, 0x10, 0x08, 0x08, + 0x10, 0x08, 0x07, 0x09, 0x07, 0x05, 0x08, 0x03, 0x08, 0x0F, + 0x07, 0x09, 0x10, 0x09, 0x02, 0x03, 0x02, 0x02, 0x02, 0x01, + 0x03, 0x07, 0x03, 0x08, 0x07, 0x08, 0x09, 0x12, 0x08, 0x07, + 0x0D, 0x06, 0x02, 0x02, 0x01, 0x0A, 0x02, 0x02, 0x08, 0x02, + 0x02, 0x03, 0x01, 0x06, 0x0E, 0x06, 0x09, 0x11, 0x09, 0x07, + 0x04, 0x06, 0x06, 0x0A, 0x05, 0x05, 0x0D, 0x07, 0x0F, 0x17, + 0x0E, 0x07, 0x14, 0x08, 0x20, 0x40, 0x20, 0x0A, 0x10, 0x02, + 0x03, 0x02, 0x01, 0x08, 0x02, 0x01, 0x07, 0x02, 0x03, 0x06, + 0x04, 0x10, 0x21, 0x10, 0x12, 0x25, 0x12, 0x08, 0x11, 0x07, + 0x06, 0x0E, 0x06, 0x07, 0x0F, 0x07, 0x07, 0x06, 0x06, 0x04, + 0x08, 0x04, 0x02, 0x03, 0x10, 0x21, 0x10, 0x08, 0x02, 0x06, + 0x0A, 0x09, 0x07, 0x10, 0x20, 0x11, 0x06, 0x08, 0x09, 0x02, + 0x06, 0x01, 0x03, 0x04, 0x03, 0x0F, 0x20, 0x0F, 0x01, 0x05, + 0x01, 0x06, 0x0D, 0x04, 0x04, 0x0B, 0x05, 0x0A, 0x12, 0x09, + 0x03, 0x10, 0x02, 0x05, 0x0F, 0x07, 0x06, 0x03, 0x07, 0x12, + 0x23, 0x12, 0x05, 0x0A, 0x04, 0x01, 0x02, 0x06, 0x02, 0x0B, + 0x0B, 0x01, 0x04, 0x05, 0x0A, 0x06, 0x14, 0x2A, 0x14, 0x45, + 0x89, 0x44, 0x40, 0x7F, 0x80, 0x7F, 0x40, 0x22, 0x43, 0x22, + 0x32, 0x60, 0x2E, 0x1F, 0x34, 0x1A, 0xFE, 0xC0, 0x07, 0x06, + 0x02, 0x03, 0x05, 0x0C, 0x18, 0x0C, 0x06, 0x09, 0x08, 0x05, + 0x07, 0x0E, 0x07, 0x04, 0x0B, 0x04, 0x01, 0xC4, 0x09, 0x10, + 0x11, 0x11, 0x08, 0x01, 0x01, 0x01, 0x01, 0x0A, 0x0C, 0x22, + 0x44, 0x22, 0x04, 0x09, 0x05, 0x03, 0x01, 0x02, 0x04, 0x09, + 0x04, 0x23, 0x45, 0x23, 0x06, 0x0E, 0x0A, 0x01, 0x01, 0x05, + 0x04, 0x02, 0x01, 0x0B, 0x01, 0x01, 0x09, 0x02, 0x02, 0x02, + 0x04, 0x01, 0x0B, 0x01, 0x04, 0x01, 0x02, 0x03, 0x04, 0x01, + 0x05, 0x03, 0x03, 0x02, 0x04, 0x06, 0x05, 0x01, 0x01, 0x07, + 0x05, 0x03, 0x02, 0x01, 0x10, 0x09, 0x0D, 0x1C, 0x0D, 0x0C, + 0x18, 0x0C, 0x07, 0x0D, 0x06, 0x05, 0x0D, 0x05, 0x02, 0x0F, + 0x01, 0x03, 0x03, 0x07, 0x01, 0x01, 0x01, 0x02, 0x02, 0x01, + 0x04, 0x02, 0x02, 0x03, 0x04, 0x06, 0x0D, 0x0B, 0x03, 0x01, + 0x07, 0x06, 0x01, 0x03, 0x03, 0x04, 0x04, 0x01, 0x02, 0x03, + 0x07, 0x03, 0x03, 0x01, 0x0B, 0x01, 0x12, 0x24, 0x12, 0x07, + 0x0E, 0x07, 0x05, 0x01, 0x06, 0x0C, 0x05, 0x11, 0x22, 0x11, + 0x05, 0x01, 0x01, 0x01, 0x05, 0x04, 0x05, 0x18, 0x16, 0x0F, + 0x28, 0x17, 0x08, 0x04, 0x0C, 0x08, 0x02, 0x11, 0x11, 0x05, + 0x03, 0x13, 0x02, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x53, + 0x01, 0x00, 0x08, 0x53, 0x02, 0x7F, 0x00, 0xE9, 0x00, 0xF9, + 0x00, 0x00, 0x01, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x2E, 0x02, 0x27, 0x2E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x23, 0x16, 0x06, 0x15, 0x2E, 0x01, + 0x23, 0x1C, 0x01, 0x15, 0x2E, 0x01, 0x27, 0x14, 0x06, 0x07, + 0x2E, 0x01, 0x07, 0x22, 0x26, 0x07, 0x06, 0x26, 0x27, 0x14, + 0x06, 0x15, 0x26, 0x06, 0x27, 0x26, 0x22, 0x07, 0x2E, 0x01, + 0x27, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x23, + 0x2A, 0x01, 0x23, 0x06, 0x22, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x32, 0x16, + 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x32, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x1E, 0x01, 0x17, + 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x36, + 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x32, 0x16, + 0x35, 0x3E, 0x01, 0x37, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x32, 0x16, 0x33, 0x32, + 0x36, 0x37, 0x36, 0x16, 0x17, 0x32, 0x16, 0x17, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x17, 0x16, 0x32, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x0E, 0x01, 0x07, 0x05, 0x3C, 0x01, 0x33, 0x3A, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x06, 0x16, 0x17, 0x2A, 0x01, + 0x07, 0x07, 0xEA, 0x2F, 0x5F, 0x30, 0x1F, 0x3E, 0x1E, 0x2F, + 0x5E, 0x2F, 0x31, 0x61, 0x62, 0x60, 0x30, 0x04, 0x0E, 0x04, + 0x03, 0x07, 0x02, 0x03, 0x06, 0x03, 0x01, 0x01, 0x02, 0x04, + 0x03, 0x02, 0x04, 0x02, 0x01, 0x01, 0x06, 0x03, 0x03, 0x01, + 0x05, 0x01, 0x03, 0x02, 0x05, 0x02, 0x04, 0x06, 0x01, 0x05, + 0x02, 0x05, 0x01, 0x03, 0x02, 0x05, 0x05, 0x08, 0x0B, 0x18, + 0x0D, 0x0B, 0x16, 0x0C, 0x1E, 0x3E, 0x1F, 0x2B, 0x56, 0x2B, + 0x1F, 0x3D, 0x1F, 0x18, 0x30, 0x18, 0x16, 0x2C, 0x16, 0x1E, + 0x38, 0x19, 0x18, 0x29, 0x11, 0x07, 0x0F, 0x01, 0x1B, 0x08, + 0x04, 0x02, 0x01, 0x01, 0x0B, 0x05, 0x09, 0x17, 0x09, 0x08, + 0x0E, 0x08, 0x09, 0x0F, 0x08, 0x18, 0x32, 0x1E, 0x0F, 0x21, + 0x10, 0x22, 0x44, 0x20, 0x0A, 0x12, 0x0B, 0x05, 0x0C, 0x05, + 0x11, 0x2C, 0x15, 0x0E, 0x1B, 0x0D, 0x08, 0x11, 0x09, 0x06, + 0x08, 0x05, 0x0B, 0x19, 0x0D, 0x16, 0x22, 0x0F, 0x08, 0x0B, + 0x06, 0x07, 0x09, 0x0D, 0x0A, 0x0B, 0x07, 0x08, 0x10, 0x08, + 0x02, 0x03, 0x01, 0x02, 0x05, 0x05, 0x10, 0x1F, 0x0F, 0x05, + 0x0A, 0x05, 0x07, 0x0F, 0x07, 0x05, 0x08, 0x04, 0x09, 0x0F, + 0x0A, 0x02, 0x11, 0x05, 0x0C, 0x06, 0x04, 0x0E, 0x03, 0x01, + 0x07, 0x02, 0x04, 0x07, 0x05, 0x07, 0x0D, 0x08, 0x02, 0x04, + 0x02, 0x03, 0x09, 0x03, 0x09, 0x0E, 0x0A, 0x02, 0x05, 0x02, + 0x03, 0x05, 0x03, 0x09, 0x16, 0x0A, 0x07, 0x09, 0x09, 0x0D, + 0x1A, 0x0D, 0x36, 0x6B, 0x34, 0x39, 0x6F, 0x32, 0x22, 0x41, + 0x20, 0x0C, 0x18, 0x0B, 0x1A, 0x34, 0x1B, 0xFB, 0x66, 0x01, + 0x05, 0x0A, 0x04, 0x0B, 0x16, 0x0B, 0x01, 0x01, 0x01, 0x10, + 0x20, 0x11, 0x02, 0x62, 0x0D, 0x18, 0x06, 0x04, 0x08, 0x04, + 0x06, 0x05, 0x02, 0x02, 0x01, 0x08, 0x0F, 0x0A, 0x01, 0x06, + 0x01, 0x01, 0x07, 0x01, 0x02, 0x01, 0x02, 0x03, 0x02, 0x01, + 0x02, 0x02, 0x04, 0x03, 0x01, 0x02, 0x01, 0x02, 0x03, 0x02, + 0x02, 0x01, 0x06, 0x05, 0x02, 0x04, 0x01, 0x03, 0x02, 0x03, + 0x01, 0x02, 0x04, 0x01, 0x03, 0x05, 0x02, 0x03, 0x01, 0x07, + 0x02, 0x05, 0x06, 0x06, 0x01, 0x01, 0x01, 0x01, 0x03, 0x02, + 0x04, 0x01, 0x02, 0x09, 0x04, 0x04, 0x0E, 0x07, 0x0A, 0x17, + 0x13, 0x13, 0x2B, 0x19, 0x0B, 0x15, 0x0D, 0x0C, 0x0E, 0x04, + 0x02, 0x0E, 0x05, 0x05, 0x04, 0x02, 0x03, 0x04, 0x03, 0x02, + 0x05, 0x03, 0x03, 0x0C, 0x06, 0x13, 0x1F, 0x08, 0x03, 0x03, + 0x01, 0x0B, 0x0A, 0x03, 0x07, 0x01, 0x01, 0x0B, 0x03, 0x0C, + 0x0E, 0x01, 0x05, 0x05, 0x03, 0x0B, 0x01, 0x08, 0x03, 0x07, + 0x09, 0x02, 0x03, 0x0B, 0x0F, 0x07, 0x0E, 0x09, 0x0A, 0x0C, + 0x01, 0x01, 0x04, 0x07, 0x08, 0x10, 0x08, 0x06, 0x0D, 0x06, + 0x06, 0x01, 0x0A, 0x02, 0x04, 0x05, 0x02, 0x02, 0x05, 0x02, + 0x06, 0x04, 0x03, 0x08, 0x01, 0x03, 0x08, 0x01, 0x03, 0x02, + 0x01, 0x05, 0x01, 0x03, 0x05, 0x02, 0x03, 0x02, 0x02, 0x05, + 0x08, 0x01, 0x05, 0x01, 0x02, 0x03, 0x01, 0x02, 0x05, 0x02, + 0x08, 0x06, 0x09, 0x05, 0x02, 0x02, 0x04, 0x02, 0x08, 0x18, + 0x13, 0x14, 0x38, 0x23, 0x17, 0x32, 0x1A, 0x09, 0x13, 0x09, + 0x07, 0x0F, 0x07, 0x82, 0x02, 0x0E, 0x04, 0x07, 0x04, 0x01, + 0x00, 0x02, 0x00, 0x53, 0x01, 0x08, 0x07, 0xED, 0x02, 0x78, + 0x00, 0xD4, 0x00, 0xE1, 0x00, 0x00, 0x01, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x22, 0x06, 0x27, 0x2E, + 0x01, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x06, 0x26, + 0x27, 0x26, 0x06, 0x27, 0x26, 0x22, 0x07, 0x06, 0x26, 0x27, + 0x26, 0x06, 0x27, 0x2E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x26, + 0x06, 0x07, 0x06, 0x26, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, + 0x07, 0x06, 0x26, 0x27, 0x26, 0x06, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x27, 0x16, 0x26, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, + 0x06, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x32, 0x36, 0x33, 0x32, 0x36, 0x17, + 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x16, 0x36, 0x37, + 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x36, 0x33, 0x3A, + 0x01, 0x33, 0x3A, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x03, + 0x37, 0x3E, 0x01, 0x37, 0x2E, 0x01, 0x27, 0x05, 0x1E, 0x01, + 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x17, + 0x07, 0xBA, 0x3D, 0x81, 0x40, 0x0C, 0x11, 0x0A, 0x06, 0x10, + 0x03, 0x06, 0x0B, 0x06, 0x0C, 0x18, 0x0A, 0x06, 0x07, 0x01, + 0x01, 0x02, 0x0A, 0x08, 0x0E, 0x07, 0x04, 0x0B, 0x04, 0x0D, + 0x1A, 0x0D, 0x28, 0x52, 0x29, 0x1C, 0x39, 0x1C, 0x0B, 0x17, + 0x0C, 0x04, 0x0A, 0x04, 0x07, 0x03, 0x09, 0x08, 0x06, 0x07, + 0x08, 0x08, 0x08, 0x06, 0x08, 0x04, 0x02, 0x0C, 0x05, 0x08, + 0x04, 0x09, 0x06, 0x0B, 0x05, 0x03, 0x0A, 0x04, 0x08, 0x07, + 0x08, 0x08, 0x05, 0x07, 0x05, 0x0C, 0x05, 0x02, 0x0B, 0x02, + 0x07, 0x06, 0x07, 0x08, 0x05, 0x09, 0x08, 0x04, 0x07, 0x02, + 0x07, 0x02, 0x07, 0x0E, 0x07, 0x31, 0x61, 0x31, 0x3A, 0x77, + 0x3A, 0x3C, 0x78, 0x3B, 0x0D, 0x19, 0x0D, 0x05, 0x0E, 0x05, + 0x08, 0x07, 0x0A, 0x03, 0x22, 0x07, 0x0C, 0x10, 0x05, 0x0E, + 0x1B, 0x0C, 0x06, 0x06, 0x01, 0x10, 0x11, 0x0A, 0x12, 0x0C, + 0x06, 0x0D, 0x06, 0x17, 0x2E, 0x16, 0x0C, 0x13, 0x0C, 0x0C, + 0x16, 0x0B, 0x17, 0x2F, 0x17, 0x38, 0x70, 0x38, 0x0A, 0x15, + 0x0A, 0x05, 0x11, 0x04, 0x0E, 0x16, 0x12, 0x06, 0x0B, 0x05, + 0x0B, 0x14, 0x0C, 0x14, 0x28, 0x16, 0x07, 0x0F, 0x07, 0x0C, + 0x18, 0x0A, 0x14, 0x16, 0x05, 0x01, 0x03, 0x01, 0x01, 0x08, + 0x01, 0x04, 0x02, 0x03, 0x03, 0x0B, 0x03, 0x06, 0x04, 0x1E, + 0x03, 0x13, 0x24, 0x13, 0x11, 0x24, 0x12, 0x3A, 0x76, 0x3A, + 0x2A, 0x55, 0x54, 0x50, 0x26, 0x31, 0x51, 0x28, 0x0D, 0x19, + 0x0D, 0xF8, 0xDD, 0x07, 0x05, 0x04, 0x03, 0x15, 0x08, 0x0C, + 0x0C, 0x03, 0x04, 0x29, 0x0E, 0x01, 0xFF, 0x1A, 0x28, 0x11, + 0x03, 0x01, 0x08, 0x05, 0x07, 0x01, 0x02, 0x04, 0x02, 0x06, + 0x0B, 0x09, 0x04, 0x06, 0x07, 0x07, 0x15, 0x01, 0x01, 0x02, + 0x01, 0x01, 0x04, 0x02, 0x04, 0x09, 0x04, 0x0E, 0x1A, 0x0B, + 0x08, 0x0A, 0x06, 0x02, 0x04, 0x02, 0x09, 0x01, 0x02, 0x0C, + 0x04, 0x03, 0x02, 0x06, 0x05, 0x03, 0x03, 0x02, 0x0A, 0x03, + 0x03, 0x0C, 0x05, 0x07, 0x04, 0x03, 0x08, 0x03, 0x02, 0x0A, + 0x02, 0x05, 0x04, 0x05, 0x04, 0x04, 0x06, 0x04, 0x08, 0x02, + 0x01, 0x0E, 0x01, 0x06, 0x05, 0x05, 0x05, 0x01, 0x04, 0x05, + 0x0B, 0x03, 0x01, 0x01, 0x02, 0x02, 0x04, 0x03, 0x07, 0x08, + 0x13, 0x0E, 0x03, 0x05, 0x02, 0x01, 0x01, 0x04, 0x06, 0x03, + 0x0F, 0x03, 0x02, 0x03, 0x21, 0x09, 0x19, 0x33, 0x1A, 0x0C, + 0x17, 0x0D, 0x12, 0x1E, 0x08, 0x04, 0x05, 0x03, 0x02, 0x04, + 0x02, 0x08, 0x17, 0x0A, 0x05, 0x07, 0x03, 0x02, 0x04, 0x01, + 0x04, 0x06, 0x03, 0x04, 0x0A, 0x03, 0x01, 0x02, 0x04, 0x09, + 0x10, 0x04, 0x02, 0x09, 0x03, 0x08, 0x0F, 0x05, 0x09, 0x04, + 0x03, 0x01, 0x02, 0x01, 0x01, 0x0D, 0x06, 0x0C, 0x26, 0x17, + 0x07, 0x0E, 0x06, 0x01, 0x02, 0x02, 0x03, 0x03, 0x04, 0x02, + 0x04, 0x08, 0x07, 0x0A, 0x03, 0x01, 0x01, 0x01, 0x01, 0x05, + 0x04, 0x0E, 0x15, 0x1E, 0x13, 0x19, 0x43, 0x24, 0x06, 0x0B, + 0x05, 0x96, 0x0A, 0x10, 0x0C, 0x06, 0x0F, 0x03, 0x04, 0x0C, + 0x0D, 0x15, 0x10, 0x0A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x52, + 0x00, 0x54, 0x07, 0xD3, 0x03, 0x2C, 0x00, 0xBF, 0x00, 0xD8, + 0x00, 0x00, 0x01, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x22, 0x26, + 0x27, 0x22, 0x26, 0x27, 0x26, 0x06, 0x07, 0x22, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x22, + 0x06, 0x23, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x23, 0x22, 0x06, 0x17, 0x0E, 0x01, + 0x07, 0x06, 0x26, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x26, 0x17, 0x16, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x16, 0x17, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x06, 0x16, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x34, 0x35, 0x16, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x17, 0x16, 0x32, 0x37, 0x3E, 0x01, 0x37, 0x36, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x37, 0x36, 0x26, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x03, 0x17, 0x2E, + 0x01, 0x27, 0x05, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x32, 0x36, + 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x07, 0x9D, 0x16, + 0x35, 0x1F, 0x2B, 0x69, 0x3B, 0x2C, 0x5F, 0x32, 0x20, 0x41, + 0x21, 0x17, 0x2F, 0x17, 0x07, 0x0E, 0x07, 0x01, 0x07, 0x02, + 0x08, 0x2E, 0x0C, 0x05, 0x0E, 0x04, 0x0B, 0x1B, 0x0E, 0x26, + 0x57, 0x28, 0x07, 0x10, 0x07, 0x03, 0x07, 0x04, 0x04, 0x09, + 0x04, 0x07, 0x07, 0x07, 0x0B, 0x17, 0x0B, 0x45, 0x83, 0x3E, + 0x0F, 0x1D, 0x0E, 0x03, 0x01, 0x01, 0x07, 0x02, 0x06, 0x0B, + 0x03, 0x04, 0x06, 0x07, 0x0B, 0x0E, 0x03, 0x01, 0x06, 0x06, + 0x08, 0x13, 0x02, 0x03, 0x03, 0x07, 0x05, 0x0A, 0x05, 0x06, + 0x08, 0x01, 0x04, 0x02, 0x0A, 0x06, 0x13, 0x02, 0x02, 0x24, + 0x06, 0x06, 0x06, 0x03, 0x02, 0x05, 0x06, 0x06, 0x0F, 0x02, + 0x02, 0x05, 0x02, 0x05, 0x0A, 0x05, 0x04, 0x0F, 0x09, 0x04, + 0x0F, 0x02, 0x37, 0x09, 0x05, 0x09, 0x05, 0x08, 0x11, 0x09, + 0x1D, 0x45, 0x22, 0x35, 0x4B, 0x04, 0x01, 0x07, 0x07, 0x02, + 0x07, 0x0E, 0x0A, 0x16, 0x39, 0x1C, 0x08, 0x06, 0x04, 0x09, + 0x13, 0x0D, 0x1D, 0x47, 0x24, 0x0C, 0x06, 0x06, 0x08, 0x1B, + 0x0F, 0x1E, 0x4B, 0x1D, 0x10, 0x1A, 0x09, 0x04, 0x0B, 0x0A, + 0x07, 0x2F, 0x04, 0x07, 0x08, 0x0B, 0x06, 0x0D, 0x06, 0x1C, + 0x37, 0x1C, 0x32, 0x66, 0x33, 0x41, 0x85, 0x3B, 0x23, 0x45, + 0x3E, 0x37, 0x15, 0x04, 0x20, 0x12, 0xF9, 0xE4, 0x10, 0x24, + 0x17, 0x15, 0x20, 0x14, 0x15, 0x17, 0x08, 0x08, 0x04, 0x07, + 0x07, 0x34, 0x19, 0x0F, 0x1F, 0x0F, 0x1C, 0x2C, 0x07, 0x08, + 0x0E, 0x15, 0x01, 0x62, 0x2A, 0x4D, 0x24, 0x33, 0x52, 0x20, + 0x18, 0x29, 0x0A, 0x07, 0x0E, 0x03, 0x01, 0x04, 0x02, 0x01, + 0x01, 0x11, 0x03, 0x0A, 0x0B, 0x02, 0x10, 0x03, 0x0A, 0x0E, + 0x05, 0x0F, 0x09, 0x04, 0x01, 0x02, 0x01, 0x04, 0x01, 0x06, + 0x01, 0x03, 0x03, 0x01, 0x03, 0x06, 0x02, 0x11, 0x2E, 0x22, + 0x08, 0x10, 0x08, 0x01, 0x03, 0x03, 0x02, 0x03, 0x01, 0x03, + 0x06, 0x05, 0x05, 0x07, 0x02, 0x03, 0x03, 0x0E, 0x0A, 0x03, + 0x06, 0x0A, 0x07, 0x09, 0x01, 0x02, 0x08, 0x07, 0x05, 0x08, + 0x0C, 0x01, 0x01, 0x05, 0x0C, 0x11, 0x01, 0x08, 0x08, 0x12, + 0x0A, 0x08, 0x06, 0x06, 0x03, 0x06, 0x07, 0x08, 0x10, 0x08, + 0x12, 0x23, 0x12, 0x10, 0x1F, 0x0E, 0x06, 0x12, 0x07, 0x0E, + 0x07, 0x02, 0x02, 0x07, 0x03, 0x05, 0x0A, 0x05, 0x12, 0x12, + 0x09, 0x0D, 0x57, 0x36, 0x07, 0x0D, 0x07, 0x05, 0x12, 0x03, + 0x0C, 0x17, 0x09, 0x16, 0x03, 0x02, 0x01, 0x0B, 0x06, 0x0D, + 0x18, 0x0A, 0x18, 0x0D, 0x0B, 0x04, 0x0B, 0x11, 0x1D, 0x0A, + 0x15, 0x01, 0x15, 0x0C, 0x20, 0x11, 0x07, 0x23, 0x02, 0x01, + 0x13, 0x05, 0x08, 0x0A, 0x04, 0x02, 0x05, 0x02, 0x08, 0x0F, + 0x05, 0x09, 0x05, 0x05, 0x06, 0x2B, 0x1E, 0x12, 0x2E, 0x37, + 0x3E, 0x22, 0x28, 0x4E, 0x24, 0xBE, 0x12, 0x10, 0x02, 0x02, + 0x05, 0x0C, 0x0D, 0x21, 0x16, 0x17, 0x2D, 0x17, 0x17, 0x2E, + 0x02, 0x01, 0x05, 0x0A, 0x33, 0x1D, 0x1E, 0x3E, 0x17, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x52, 0x00, 0x94, 0x08, 0xD3, + 0x02, 0xED, 0x01, 0x94, 0x01, 0xAA, 0x00, 0x00, 0x01, 0x3E, + 0x01, 0x37, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x22, 0x23, 0x1E, 0x01, 0x23, 0x2E, 0x01, 0x27, + 0x26, 0x06, 0x23, 0x22, 0x26, 0x23, 0x1E, 0x01, 0x23, 0x22, + 0x26, 0x27, 0x2E, 0x01, 0x27, 0x22, 0x26, 0x23, 0x1E, 0x01, + 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x06, 0x22, 0x23, + 0x1E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x1E, 0x01, 0x07, 0x22, 0x26, 0x27, 0x2E, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x1E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x1E, 0x01, 0x17, 0x16, + 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x23, 0x22, 0x26, + 0x23, 0x1E, 0x01, 0x07, 0x14, 0x06, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x26, 0x35, 0x3C, 0x01, 0x27, 0x34, 0x26, + 0x35, 0x34, 0x26, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, + 0x1C, 0x01, 0x15, 0x14, 0x26, 0x15, 0x06, 0x14, 0x07, 0x2E, + 0x01, 0x23, 0x2A, 0x01, 0x07, 0x22, 0x06, 0x23, 0x0E, 0x01, + 0x07, 0x14, 0x26, 0x23, 0x22, 0x26, 0x27, 0x26, 0x06, 0x23, + 0x22, 0x26, 0x23, 0x26, 0x22, 0x23, 0x22, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x22, 0x26, 0x27, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x15, 0x06, 0x22, 0x23, + 0x22, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x06, + 0x26, 0x27, 0x26, 0x06, 0x23, 0x22, 0x06, 0x23, 0x22, 0x06, + 0x23, 0x22, 0x06, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x23, + 0x26, 0x22, 0x27, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x23, 0x2A, + 0x01, 0x07, 0x06, 0x14, 0x15, 0x14, 0x06, 0x17, 0x1E, 0x01, + 0x15, 0x1C, 0x01, 0x17, 0x16, 0x36, 0x33, 0x36, 0x32, 0x33, + 0x32, 0x16, 0x17, 0x16, 0x32, 0x33, 0x16, 0x32, 0x33, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x16, + 0x33, 0x32, 0x16, 0x33, 0x32, 0x16, 0x33, 0x32, 0x16, 0x37, + 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x33, 0x32, + 0x26, 0x37, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, + 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x3E, 0x01, 0x33, + 0x32, 0x36, 0x33, 0x32, 0x26, 0x17, 0x3A, 0x01, 0x17, 0x1E, + 0x01, 0x33, 0x32, 0x16, 0x33, 0x32, 0x16, 0x33, 0x32, 0x16, + 0x33, 0x32, 0x36, 0x37, 0x1C, 0x01, 0x33, 0x16, 0x14, 0x15, + 0x16, 0x14, 0x15, 0x14, 0x16, 0x15, 0x1C, 0x01, 0x15, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, + 0x35, 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x36, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x32, + 0x36, 0x33, 0x32, 0x3E, 0x01, 0x32, 0x37, 0x3A, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x25, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x17, + 0x16, 0x06, 0x07, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x26, 0x27, 0x26, 0x36, 0x37, 0x08, 0x9A, 0x0E, 0x1D, 0x0E, + 0x28, 0x52, 0x29, 0x40, 0x7F, 0x40, 0x21, 0x42, 0x21, 0x13, + 0x24, 0x14, 0x06, 0x01, 0x0C, 0x07, 0x06, 0x03, 0x03, 0x09, + 0x07, 0x07, 0x10, 0x08, 0x08, 0x05, 0x0E, 0x08, 0x08, 0x03, + 0x05, 0x03, 0x09, 0x08, 0x10, 0x08, 0x05, 0x0A, 0x0C, 0x08, + 0x0D, 0x03, 0x02, 0x04, 0x08, 0x08, 0x11, 0x09, 0x06, 0x04, + 0x0E, 0x09, 0x07, 0x03, 0x05, 0x05, 0x0A, 0x09, 0x10, 0x08, + 0x06, 0x06, 0x10, 0x09, 0x07, 0x03, 0x04, 0x04, 0x09, 0x09, + 0x10, 0x09, 0x05, 0x04, 0x10, 0x07, 0x06, 0x03, 0x05, 0x06, + 0x09, 0x08, 0x11, 0x08, 0x04, 0x05, 0x01, 0x02, 0x0E, 0x07, + 0x08, 0x08, 0x04, 0x01, 0x20, 0x03, 0x09, 0x14, 0x09, 0x04, + 0x09, 0x01, 0x12, 0x02, 0x03, 0x07, 0x03, 0x02, 0x09, 0x05, + 0x01, 0x08, 0x02, 0x08, 0x10, 0x08, 0x11, 0x23, 0x11, 0x09, + 0x04, 0x01, 0x01, 0x24, 0x07, 0x01, 0x01, 0x01, 0x02, 0x04, + 0x07, 0x0F, 0x07, 0x10, 0x21, 0x10, 0x06, 0x01, 0x03, 0x08, + 0x02, 0x02, 0x01, 0x02, 0x02, 0x0D, 0x02, 0x09, 0x13, 0x0A, + 0x06, 0x0C, 0x06, 0x02, 0x01, 0x01, 0x02, 0x02, 0x05, 0x05, + 0x02, 0x02, 0x02, 0x02, 0x06, 0x0D, 0x06, 0x0F, 0x1D, 0x0F, + 0x01, 0x03, 0x02, 0x02, 0x05, 0x04, 0x02, 0x06, 0x10, 0x21, + 0x10, 0x06, 0x04, 0x04, 0x07, 0x05, 0x05, 0x03, 0x0B, 0x03, + 0x0A, 0x13, 0x09, 0x07, 0x0D, 0x07, 0x04, 0x03, 0x05, 0x07, + 0x06, 0x06, 0x05, 0x0B, 0x05, 0x10, 0x1F, 0x10, 0x17, 0x2F, + 0x16, 0x0E, 0x19, 0x0D, 0x03, 0x0E, 0x01, 0x02, 0x08, 0x02, + 0x01, 0x05, 0x03, 0x04, 0x0E, 0x07, 0x03, 0x06, 0x03, 0x01, + 0x05, 0x01, 0x04, 0x0D, 0x05, 0x0C, 0x17, 0x0C, 0x1C, 0x39, + 0x1C, 0x05, 0x09, 0x04, 0x07, 0x07, 0x08, 0x03, 0x03, 0x04, + 0x08, 0x0E, 0x07, 0x09, 0x11, 0x09, 0x03, 0x0E, 0x03, 0x03, + 0x05, 0x06, 0x05, 0x04, 0x07, 0x10, 0x21, 0x10, 0x07, 0x01, + 0x05, 0x08, 0x02, 0x04, 0x0C, 0x18, 0x0D, 0x08, 0x1B, 0x04, + 0x02, 0x0A, 0x03, 0x02, 0x02, 0x06, 0x0E, 0x1D, 0x0F, 0x05, + 0x09, 0x04, 0x05, 0x02, 0x06, 0x03, 0x03, 0x01, 0x01, 0x02, + 0x01, 0x04, 0x08, 0x04, 0x10, 0x1F, 0x0F, 0x06, 0x0A, 0x06, + 0x03, 0x02, 0x02, 0x03, 0x05, 0x01, 0x01, 0x10, 0x02, 0x01, + 0x10, 0x01, 0x01, 0x04, 0x09, 0x04, 0x20, 0x3E, 0x20, 0x0A, + 0x13, 0x08, 0x04, 0x02, 0x05, 0x2D, 0x59, 0x2D, 0x43, 0x87, + 0x87, 0x87, 0x43, 0x10, 0x20, 0x10, 0x4E, 0x94, 0x43, 0xFE, + 0x62, 0x0D, 0x1A, 0x0E, 0x06, 0x08, 0x02, 0x03, 0x08, 0x09, + 0x04, 0x0D, 0x04, 0x08, 0x0F, 0x07, 0x06, 0x0C, 0x02, 0x05, + 0x0C, 0x09, 0x01, 0x82, 0x09, 0x11, 0x09, 0x0A, 0x14, 0x07, + 0x0C, 0x16, 0x0C, 0x06, 0x0C, 0x05, 0x04, 0x06, 0x16, 0x01, + 0x0E, 0x05, 0x06, 0x01, 0x01, 0x05, 0x19, 0x0D, 0x07, 0x08, + 0x03, 0x01, 0x01, 0x06, 0x16, 0x04, 0x03, 0x09, 0x07, 0x06, + 0x0C, 0x01, 0x06, 0x1B, 0x02, 0x01, 0x0D, 0x07, 0x09, 0x01, + 0x07, 0x18, 0x01, 0x10, 0x06, 0x08, 0x02, 0x08, 0x1B, 0x03, + 0x01, 0x0F, 0x06, 0x08, 0x01, 0x01, 0x01, 0x02, 0x04, 0x0B, + 0x05, 0x09, 0x06, 0x04, 0x04, 0x13, 0x08, 0x03, 0x01, 0x01, + 0x05, 0x0D, 0x07, 0x05, 0x0C, 0x06, 0x07, 0x0D, 0x07, 0x05, + 0x08, 0x05, 0x01, 0x01, 0x01, 0x09, 0x0E, 0x1D, 0x0E, 0x1F, + 0x3F, 0x20, 0x09, 0x02, 0x09, 0x13, 0x28, 0x13, 0x19, 0x33, + 0x19, 0x06, 0x0C, 0x06, 0x03, 0x02, 0x02, 0x05, 0x0A, 0x06, + 0x05, 0x05, 0x01, 0x01, 0x01, 0x04, 0x06, 0x01, 0x01, 0x09, + 0x01, 0x02, 0x01, 0x01, 0x01, 0x02, 0x02, 0x04, 0x02, 0x01, + 0x01, 0x04, 0x02, 0x04, 0x01, 0x06, 0x01, 0x04, 0x0B, 0x01, + 0x05, 0x09, 0x0C, 0x03, 0x01, 0x02, 0x01, 0x01, 0x0B, 0x02, + 0x03, 0x02, 0x05, 0x01, 0x01, 0x04, 0x03, 0x01, 0x02, 0x04, + 0x06, 0x0B, 0x06, 0x19, 0x30, 0x1A, 0x0D, 0x18, 0x0D, 0x05, + 0x0C, 0x04, 0x06, 0x03, 0x01, 0x05, 0x01, 0x02, 0x01, 0x01, + 0x02, 0x01, 0x01, 0x04, 0x02, 0x04, 0x04, 0x0C, 0x01, 0x01, + 0x03, 0x02, 0x02, 0x0F, 0x09, 0x06, 0x01, 0x01, 0x08, 0x02, + 0x04, 0x0F, 0x03, 0x08, 0x03, 0x06, 0x05, 0x05, 0x04, 0x01, + 0x01, 0x01, 0x0C, 0x01, 0x03, 0x01, 0x06, 0x01, 0x01, 0x01, + 0x06, 0x03, 0x02, 0x12, 0x02, 0x02, 0x05, 0x0F, 0x1F, 0x0F, + 0x11, 0x22, 0x11, 0x04, 0x07, 0x04, 0x02, 0x04, 0x04, 0x02, + 0x04, 0x07, 0x03, 0x11, 0x22, 0x11, 0x0F, 0x1E, 0x0F, 0x01, + 0x05, 0x01, 0x07, 0x05, 0x03, 0x02, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x06, 0x31, 0x28, 0x47, 0x09, 0x06, 0x0B, 0x13, 0x06, + 0x02, 0x01, 0x0B, 0x04, 0x0C, 0x12, 0x07, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x51, 0x00, 0xE8, 0x08, 0x53, 0x02, 0x97, + 0x01, 0x6C, 0x01, 0x78, 0x00, 0x00, 0x01, 0x16, 0x06, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x15, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x1E, 0x01, + 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x1E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x2A, 0x01, + 0x07, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x07, + 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x1E, + 0x01, 0x07, 0x06, 0x22, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x23, 0x16, 0x14, 0x07, 0x0E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x22, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x23, + 0x22, 0x26, 0x27, 0x26, 0x06, 0x07, 0x06, 0x26, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, 0x23, 0x36, 0x26, + 0x37, 0x26, 0x06, 0x15, 0x14, 0x06, 0x27, 0x2E, 0x01, 0x15, + 0x14, 0x06, 0x27, 0x26, 0x36, 0x07, 0x22, 0x16, 0x07, 0x22, + 0x36, 0x27, 0x26, 0x16, 0x07, 0x06, 0x26, 0x15, 0x14, 0x06, + 0x35, 0x2E, 0x01, 0x15, 0x14, 0x06, 0x27, 0x26, 0x36, 0x07, + 0x06, 0x16, 0x23, 0x06, 0x26, 0x07, 0x22, 0x16, 0x07, 0x2A, + 0x01, 0x07, 0x22, 0x06, 0x23, 0x06, 0x22, 0x23, 0x2E, 0x01, + 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x33, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, + 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x36, 0x17, 0x1C, 0x01, 0x15, 0x1C, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x1E, 0x01, 0x33, + 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, + 0x16, 0x33, 0x32, 0x16, 0x33, 0x32, 0x16, 0x33, 0x3A, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x16, 0x36, 0x33, 0x32, 0x36, 0x33, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x2E, 0x01, 0x27, + 0x31, 0x01, 0x06, 0x26, 0x37, 0x36, 0x16, 0x17, 0x16, 0x06, + 0x07, 0x06, 0x37, 0x07, 0x76, 0x0C, 0x0B, 0x0E, 0x05, 0x07, + 0x02, 0x04, 0x06, 0x08, 0x04, 0x05, 0x02, 0x10, 0x06, 0x04, + 0x08, 0x03, 0x04, 0x05, 0x09, 0x04, 0x02, 0x07, 0x04, 0x10, + 0x03, 0x05, 0x06, 0x02, 0x04, 0x05, 0x07, 0x04, 0x05, 0x08, + 0x05, 0x0C, 0x05, 0x05, 0x06, 0x02, 0x03, 0x05, 0x08, 0x03, + 0x06, 0x02, 0x02, 0x01, 0x04, 0x05, 0x09, 0x04, 0x06, 0x08, + 0x02, 0x03, 0x06, 0x07, 0x01, 0x06, 0x03, 0x04, 0x0A, 0x06, + 0x06, 0x05, 0x04, 0x04, 0x06, 0x09, 0x03, 0x02, 0x01, 0x03, + 0x13, 0x05, 0x05, 0x05, 0x03, 0x01, 0x04, 0x01, 0x02, 0x03, + 0x05, 0x02, 0x02, 0x04, 0x0D, 0x05, 0x06, 0x06, 0x04, 0x04, + 0x0F, 0x05, 0x0B, 0x14, 0x0A, 0x14, 0x27, 0x17, 0x35, 0x6F, + 0x35, 0x13, 0x26, 0x13, 0x07, 0x0E, 0x07, 0x02, 0x08, 0x02, + 0x06, 0x0B, 0x07, 0x04, 0x0B, 0x05, 0x09, 0x11, 0x09, 0x0A, + 0x11, 0x08, 0x03, 0x09, 0x04, 0x03, 0x07, 0x04, 0x03, 0x0B, + 0x01, 0x02, 0x06, 0x03, 0x01, 0x02, 0x01, 0x04, 0x03, 0x04, + 0x01, 0x01, 0x06, 0x01, 0x05, 0x03, 0x04, 0x06, 0x03, 0x03, + 0x03, 0x06, 0x03, 0x02, 0x07, 0x03, 0x02, 0x05, 0x08, 0x08, + 0x01, 0x06, 0x04, 0x03, 0x04, 0x04, 0x07, 0x03, 0x03, 0x05, + 0x04, 0x01, 0x04, 0x02, 0x01, 0x03, 0x04, 0x07, 0x03, 0x06, + 0x0C, 0x06, 0x0D, 0x18, 0x0D, 0x19, 0x32, 0x19, 0x3A, 0x73, + 0x35, 0x20, 0x3E, 0x21, 0x0B, 0x16, 0x0B, 0x0E, 0x12, 0x08, + 0x07, 0x0D, 0x08, 0x08, 0x10, 0x06, 0x06, 0x08, 0x08, 0x06, + 0x0D, 0x05, 0x10, 0x21, 0x10, 0x07, 0x13, 0x09, 0x0B, 0x0F, + 0x06, 0x0A, 0x17, 0x0F, 0x0B, 0x18, 0x0B, 0x07, 0x0D, 0x06, + 0x08, 0x0C, 0x06, 0x07, 0x10, 0x09, 0x06, 0x0D, 0x06, 0x0E, + 0x1A, 0x0D, 0x05, 0x0B, 0x05, 0x08, 0x0B, 0x05, 0x0C, 0x16, + 0x0D, 0x18, 0x3C, 0x0C, 0x07, 0x0D, 0x08, 0x0C, 0x10, 0x04, + 0x08, 0x1C, 0x18, 0x18, 0x29, 0x14, 0x09, 0x0F, 0x07, 0x02, + 0x02, 0x01, 0x02, 0x06, 0x0D, 0x09, 0x05, 0x0D, 0x01, 0x0B, + 0x04, 0x0C, 0x1A, 0x0C, 0x0C, 0x0C, 0x03, 0x06, 0x0D, 0x05, + 0x03, 0x23, 0x0A, 0x1F, 0x3E, 0x1F, 0x3F, 0x7E, 0x3E, 0x05, + 0x08, 0x04, 0x0C, 0x15, 0x08, 0x06, 0x0A, 0x04, 0x01, 0x03, + 0x01, 0x03, 0x11, 0x03, 0x06, 0x0D, 0x06, 0x0A, 0x14, 0x09, + 0x20, 0x3F, 0x20, 0x2B, 0x56, 0x29, 0x0E, 0x1B, 0x0E, 0x07, + 0x0F, 0x05, 0x15, 0x29, 0x15, 0x11, 0x23, 0x11, 0x37, 0x6F, + 0x37, 0xFC, 0x48, 0x0F, 0x1A, 0x11, 0x07, 0x12, 0x03, 0x03, + 0x05, 0x02, 0x03, 0x01, 0x02, 0x58, 0x07, 0x1A, 0x07, 0x02, + 0x0A, 0x05, 0x07, 0x06, 0x02, 0x04, 0x0A, 0x06, 0x08, 0x05, + 0x05, 0x03, 0x0A, 0x04, 0x09, 0x06, 0x02, 0x06, 0x13, 0x05, + 0x03, 0x02, 0x03, 0x03, 0x0B, 0x04, 0x07, 0x06, 0x01, 0x06, + 0x11, 0x05, 0x04, 0x05, 0x03, 0x03, 0x0B, 0x05, 0x07, 0x04, + 0x01, 0x03, 0x0E, 0x04, 0x04, 0x03, 0x01, 0x01, 0x0D, 0x05, + 0x06, 0x08, 0x01, 0x03, 0x10, 0x03, 0x04, 0x06, 0x04, 0x04, + 0x09, 0x06, 0x07, 0x08, 0x01, 0x04, 0x10, 0x05, 0x07, 0x03, + 0x03, 0x09, 0x05, 0x03, 0x05, 0x03, 0x04, 0x01, 0x04, 0x0B, + 0x04, 0x05, 0x06, 0x06, 0x05, 0x10, 0x06, 0x06, 0x01, 0x01, + 0x02, 0x0D, 0x04, 0x0A, 0x0E, 0x03, 0x07, 0x0A, 0x0A, 0x03, + 0x07, 0x04, 0x01, 0x03, 0x01, 0x01, 0x02, 0x04, 0x09, 0x03, + 0x02, 0x02, 0x0A, 0x02, 0x02, 0x09, 0x04, 0x02, 0x02, 0x04, + 0x02, 0x05, 0x02, 0x01, 0x05, 0x04, 0x04, 0x0B, 0x02, 0x03, + 0x01, 0x01, 0x02, 0x03, 0x02, 0x03, 0x03, 0x02, 0x04, 0x03, + 0x03, 0x07, 0x02, 0x01, 0x05, 0x01, 0x07, 0x01, 0x04, 0x01, + 0x02, 0x08, 0x01, 0x02, 0x09, 0x09, 0x01, 0x01, 0x02, 0x03, + 0x01, 0x02, 0x04, 0x02, 0x01, 0x01, 0x05, 0x02, 0x01, 0x04, + 0x01, 0x05, 0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x05, + 0x03, 0x08, 0x1A, 0x17, 0x0D, 0x1B, 0x09, 0x03, 0x04, 0x01, + 0x01, 0x08, 0x0C, 0x0A, 0x14, 0x08, 0x0A, 0x13, 0x0B, 0x0C, + 0x13, 0x0A, 0x08, 0x0F, 0x08, 0x1B, 0x34, 0x1A, 0x0A, 0x05, + 0x04, 0x04, 0x18, 0x09, 0x0D, 0x1A, 0x09, 0x05, 0x03, 0x04, + 0x02, 0x03, 0x03, 0x04, 0x0C, 0x05, 0x06, 0x09, 0x02, 0x01, + 0x05, 0x01, 0x03, 0x04, 0x02, 0x05, 0x01, 0x01, 0x07, 0x04, + 0x07, 0x12, 0x05, 0x09, 0x19, 0x16, 0x0C, 0x16, 0x0B, 0x11, + 0x20, 0x08, 0x16, 0x25, 0x07, 0x07, 0x0E, 0x0C, 0x06, 0x14, + 0x09, 0x03, 0x05, 0x07, 0x02, 0x06, 0x02, 0x06, 0x0C, 0x05, + 0x0C, 0x15, 0x0A, 0x06, 0x0E, 0x09, 0x05, 0x03, 0x01, 0x03, + 0x02, 0x02, 0x08, 0x0C, 0x1B, 0x36, 0x1B, 0x0D, 0x02, 0x01, + 0x01, 0x01, 0x01, 0x08, 0x07, 0x04, 0x0A, 0x06, 0x02, 0x0B, + 0x01, 0x02, 0x02, 0x01, 0x01, 0x01, 0x02, 0x06, 0x03, 0x04, + 0x15, 0x0C, 0x05, 0x08, 0x04, 0x02, 0x04, 0x05, 0x16, 0x2B, + 0x15, 0x13, 0x24, 0x12, 0x07, 0x0E, 0x07, 0xFE, 0xAF, 0x0E, + 0x20, 0x0B, 0x04, 0x05, 0x08, 0x06, 0x09, 0x05, 0x03, 0x01, + 0x00, 0x01, 0x00, 0x53, 0x01, 0x09, 0x08, 0x53, 0x02, 0x77, + 0x01, 0x8D, 0x00, 0x00, 0x01, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x31, 0x2E, 0x01, 0x27, 0x22, 0x26, 0x27, 0x2E, 0x01, + 0x23, 0x30, 0x31, 0x27, 0x26, 0x06, 0x23, 0x22, 0x06, 0x27, + 0x2A, 0x01, 0x23, 0x2E, 0x01, 0x07, 0x22, 0x06, 0x07, 0x17, + 0x30, 0x31, 0x23, 0x2E, 0x01, 0x27, 0x0E, 0x01, 0x07, 0x30, + 0x23, 0x22, 0x23, 0x26, 0x06, 0x23, 0x22, 0x26, 0x23, 0x31, + 0x22, 0x23, 0x2E, 0x01, 0x27, 0x16, 0x14, 0x17, 0x23, 0x31, + 0x14, 0x06, 0x15, 0x2E, 0x01, 0x27, 0x06, 0x26, 0x27, 0x22, + 0x26, 0x23, 0x14, 0x16, 0x15, 0x22, 0x26, 0x15, 0x22, 0x31, + 0x23, 0x2E, 0x01, 0x27, 0x0E, 0x01, 0x07, 0x22, 0x06, 0x27, + 0x2E, 0x01, 0x27, 0x22, 0x26, 0x27, 0x0E, 0x01, 0x15, 0x30, + 0x31, 0x23, 0x2E, 0x01, 0x27, 0x06, 0x26, 0x07, 0x2E, 0x01, + 0x27, 0x16, 0x14, 0x15, 0x30, 0x39, 0x01, 0x22, 0x26, 0x23, + 0x2E, 0x01, 0x27, 0x0E, 0x01, 0x07, 0x22, 0x23, 0x15, 0x0E, + 0x01, 0x07, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x17, 0x2E, 0x01, + 0x23, 0x22, 0x06, 0x15, 0x2A, 0x01, 0x23, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x23, 0x26, 0x22, 0x23, 0x1C, 0x01, 0x15, 0x30, + 0x31, 0x15, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x30, 0x15, + 0x16, 0x15, 0x14, 0x06, 0x23, 0x06, 0x22, 0x23, 0x2E, 0x01, + 0x27, 0x1E, 0x01, 0x17, 0x2A, 0x01, 0x15, 0x2E, 0x01, 0x23, + 0x26, 0x22, 0x07, 0x2A, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x14, + 0x16, 0x17, 0x0E, 0x01, 0x07, 0x22, 0x26, 0x07, 0x2E, 0x01, + 0x27, 0x06, 0x22, 0x27, 0x06, 0x22, 0x07, 0x23, 0x26, 0x27, + 0x2E, 0x01, 0x27, 0x15, 0x22, 0x26, 0x23, 0x2A, 0x01, 0x23, + 0x3E, 0x01, 0x35, 0x2E, 0x01, 0x27, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x14, 0x16, 0x17, 0x2E, 0x01, 0x07, 0x0E, 0x01, + 0x27, 0x26, 0x06, 0x27, 0x06, 0x26, 0x07, 0x2E, 0x01, 0x27, + 0x06, 0x26, 0x07, 0x26, 0x06, 0x07, 0x22, 0x06, 0x07, 0x06, + 0x26, 0x07, 0x26, 0x06, 0x27, 0x0E, 0x01, 0x07, 0x06, 0x14, + 0x07, 0x0E, 0x01, 0x07, 0x22, 0x26, 0x23, 0x16, 0x14, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x1E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x06, 0x16, + 0x07, 0x32, 0x36, 0x37, 0x34, 0x26, 0x35, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x1E, 0x01, 0x17, 0x16, + 0x36, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x16, 0x36, 0x37, + 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x22, + 0x26, 0x27, 0x07, 0xED, 0x17, 0x2E, 0x16, 0x17, 0x2F, 0x16, + 0x03, 0x06, 0x03, 0x01, 0x02, 0x01, 0x02, 0x05, 0x03, 0x01, + 0x07, 0x0E, 0x07, 0x0D, 0x19, 0x0D, 0x01, 0x03, 0x01, 0x02, + 0x04, 0x04, 0x0D, 0x1A, 0x0D, 0x01, 0x01, 0x01, 0x03, 0x01, + 0x02, 0x06, 0x03, 0x01, 0x01, 0x01, 0x04, 0x0B, 0x05, 0x02, + 0x05, 0x03, 0x01, 0x01, 0x04, 0x0B, 0x05, 0x01, 0x01, 0x01, + 0x01, 0x03, 0x05, 0x03, 0x05, 0x17, 0x07, 0x02, 0x05, 0x02, + 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, + 0x02, 0x04, 0x08, 0x04, 0x03, 0x06, 0x03, 0x02, 0x07, 0x02, + 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x05, 0x0C, 0x06, 0x06, + 0x0C, 0x07, 0x01, 0x02, 0x04, 0x01, 0x01, 0x01, 0x01, 0x02, + 0x04, 0x02, 0x01, 0x01, 0x03, 0x04, 0x02, 0x09, 0x0D, 0x09, + 0x01, 0x04, 0x01, 0x03, 0x0A, 0x03, 0x01, 0x01, 0x04, 0x08, + 0x03, 0x04, 0x06, 0x03, 0x02, 0x04, 0x02, 0x02, 0x03, 0x02, + 0x02, 0x03, 0x01, 0x03, 0x04, 0x02, 0x01, 0x02, 0x01, 0x01, + 0x03, 0x01, 0x09, 0x13, 0x09, 0x01, 0x04, 0x02, 0x01, 0x01, + 0x03, 0x06, 0x03, 0x04, 0x08, 0x04, 0x03, 0x07, 0x04, 0x03, + 0x09, 0x04, 0x01, 0x01, 0x08, 0x10, 0x07, 0x07, 0x0E, 0x07, + 0x01, 0x04, 0x01, 0x04, 0x08, 0x03, 0x01, 0x02, 0x01, 0x03, + 0x04, 0x02, 0x02, 0x02, 0x02, 0x02, 0x05, 0x02, 0x0A, 0x14, + 0x0A, 0x04, 0x03, 0x06, 0x0C, 0x06, 0x06, 0x0B, 0x07, 0x07, + 0x0E, 0x07, 0x01, 0x01, 0x05, 0x0B, 0x06, 0x12, 0x28, 0x13, + 0x16, 0x2C, 0x16, 0x11, 0x21, 0x11, 0x3A, 0x74, 0x3A, 0x22, + 0x44, 0x23, 0x14, 0x28, 0x14, 0x09, 0x13, 0x09, 0x09, 0x0E, + 0x08, 0x15, 0x29, 0x14, 0x08, 0x14, 0x03, 0x03, 0x01, 0x05, + 0x08, 0x03, 0x03, 0x07, 0x03, 0x01, 0x02, 0x06, 0x0F, 0x03, + 0x05, 0x03, 0x0D, 0x06, 0x11, 0x08, 0x0A, 0x13, 0x09, 0x03, + 0x05, 0x05, 0x0D, 0x1E, 0x0B, 0x12, 0x24, 0x12, 0x1B, 0x37, + 0x1B, 0x1C, 0x38, 0x1C, 0x2C, 0x57, 0x2B, 0x15, 0x2A, 0x14, + 0x0C, 0x19, 0x0D, 0x0F, 0x1C, 0x0E, 0x09, 0x0E, 0x06, 0x0D, + 0x18, 0x0B, 0x01, 0x06, 0x02, 0x06, 0x02, 0x02, 0x09, 0x12, + 0x09, 0x01, 0x06, 0x0F, 0x0A, 0x05, 0x0E, 0x01, 0x01, 0x02, + 0x03, 0x12, 0x20, 0x11, 0x0F, 0x1D, 0x0E, 0x06, 0x04, 0x01, + 0x1B, 0x37, 0x1C, 0x1F, 0x3E, 0x20, 0x43, 0x87, 0x43, 0x1F, + 0x3F, 0x20, 0x13, 0x26, 0x13, 0x10, 0x1F, 0x10, 0x22, 0x41, + 0x1C, 0x07, 0x12, 0x04, 0x19, 0x34, 0x19, 0x01, 0xEF, 0x03, + 0x06, 0x07, 0x07, 0x10, 0x0B, 0x02, 0x03, 0x01, 0x01, 0x01, + 0x02, 0x03, 0x01, 0x01, 0x04, 0x07, 0x01, 0x03, 0x04, 0x01, + 0x01, 0x01, 0x03, 0x01, 0x03, 0x01, 0x01, 0x02, 0x01, 0x03, + 0x01, 0x01, 0x03, 0x04, 0x01, 0x01, 0x06, 0x02, 0x02, 0x01, + 0x01, 0x03, 0x05, 0x03, 0x0B, 0x08, 0x04, 0x01, 0x02, 0x04, + 0x02, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, + 0x01, 0x01, 0x03, 0x02, 0x01, 0x01, 0x03, 0x07, 0x03, 0x02, + 0x04, 0x03, 0x05, 0x01, 0x01, 0x03, 0x05, 0x03, 0x02, 0x07, + 0x02, 0x02, 0x01, 0x04, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x02, 0x0A, 0x01, 0x02, 0x08, 0x02, 0x01, 0x03, + 0x02, 0x01, 0x01, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x03, 0x01, 0x01, 0x08, 0x03, 0x02, 0x08, 0x02, + 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x03, 0x04, 0x02, 0x02, + 0x05, 0x02, 0x01, 0x03, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, + 0x01, 0x11, 0x23, 0x11, 0x01, 0x02, 0x01, 0x0A, 0x13, 0x09, + 0x06, 0x09, 0x05, 0x04, 0x07, 0x04, 0x02, 0x04, 0x03, 0x08, + 0x03, 0x03, 0x03, 0x01, 0x03, 0x03, 0x04, 0x03, 0x02, 0x07, + 0x01, 0x03, 0x01, 0x05, 0x01, 0x0A, 0x02, 0x02, 0x02, 0x03, + 0x0C, 0x02, 0x01, 0x03, 0x06, 0x02, 0x06, 0x0A, 0x0C, 0x18, + 0x0C, 0x04, 0x09, 0x06, 0x01, 0x07, 0x0E, 0x07, 0x04, 0x05, + 0x08, 0x16, 0x2F, 0x14, 0x07, 0x04, 0x03, 0x04, 0x0A, 0x04, + 0x0A, 0x14, 0x09, 0x0A, 0x0B, 0x0B, 0x02, 0x01, 0x02, 0x04, + 0x05, 0x06, 0x02, 0x0B, 0x01, 0x03, 0x03, 0x03, 0x05, 0x10, + 0x09, 0x05, 0x06, 0x02, 0x01, 0x07, 0x03, 0x02, 0x0B, 0x06, + 0x0A, 0x14, 0x0A, 0x07, 0x0C, 0x06, 0x0E, 0x1F, 0x0F, 0x01, + 0x03, 0x03, 0x08, 0x02, 0x0C, 0x16, 0x09, 0x06, 0x0B, 0x09, + 0x0E, 0x1C, 0x0D, 0x04, 0x11, 0x04, 0x01, 0x02, 0x0B, 0x04, + 0x03, 0x02, 0x03, 0x01, 0x01, 0x0F, 0x0D, 0x05, 0x02, 0x01, + 0x01, 0x01, 0x05, 0x01, 0x0B, 0x03, 0x0A, 0x20, 0x17, 0x09, + 0x0E, 0x0B, 0x01, 0x04, 0x00, 0x0A, 0x00, 0x50, 0x01, 0x0D, + 0x08, 0x54, 0x02, 0x71, 0x00, 0xF3, 0x00, 0xFF, 0x01, 0x0C, + 0x01, 0x19, 0x01, 0x25, 0x01, 0x32, 0x01, 0x3B, 0x01, 0x44, + 0x01, 0x52, 0x01, 0x68, 0x00, 0x00, 0x01, 0x0E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x22, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x23, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x23, 0x22, 0x0E, 0x02, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, + 0x32, 0x16, 0x15, 0x1E, 0x01, 0x17, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x37, + 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x32, 0x33, + 0x32, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, + 0x27, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x16, 0x07, 0x3E, 0x01, 0x33, 0x32, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x35, 0x3E, 0x01, + 0x17, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x0E, 0x01, 0x07, 0x31, 0x05, + 0x06, 0x26, 0x37, 0x36, 0x16, 0x17, 0x16, 0x06, 0x07, 0x06, + 0x3F, 0x01, 0x06, 0x26, 0x37, 0x36, 0x16, 0x17, 0x16, 0x06, + 0x07, 0x06, 0x3F, 0x01, 0x25, 0x06, 0x26, 0x37, 0x36, 0x16, + 0x17, 0x16, 0x06, 0x07, 0x06, 0x3F, 0x01, 0x17, 0x06, 0x26, + 0x37, 0x36, 0x16, 0x17, 0x16, 0x06, 0x07, 0x06, 0x37, 0x05, + 0x06, 0x26, 0x37, 0x36, 0x16, 0x17, 0x16, 0x06, 0x07, 0x06, + 0x3F, 0x02, 0x06, 0x26, 0x37, 0x36, 0x16, 0x07, 0x06, 0x36, + 0x25, 0x06, 0x26, 0x37, 0x36, 0x16, 0x07, 0x06, 0x36, 0x17, + 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x36, 0x16, 0x07, 0x30, + 0x37, 0x36, 0x07, 0x25, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x3A, 0x01, 0x17, 0x32, 0x16, 0x17, 0x2E, + 0x03, 0x27, 0x31, 0x08, 0x19, 0x34, 0x65, 0x33, 0x1B, 0x33, + 0x18, 0x06, 0x0B, 0x05, 0x05, 0x05, 0x07, 0x16, 0x2E, 0x17, + 0x22, 0x43, 0x22, 0x15, 0x28, 0x14, 0x1A, 0x33, 0x19, 0x0C, + 0x1A, 0x0C, 0x06, 0x0B, 0x05, 0x07, 0x0F, 0x0B, 0x07, 0x10, + 0x08, 0x0B, 0x08, 0x05, 0x08, 0x1D, 0x0F, 0x19, 0x31, 0x1A, + 0x14, 0x27, 0x13, 0x12, 0x20, 0x13, 0x19, 0x30, 0x19, 0x33, + 0x67, 0x67, 0x64, 0x32, 0x25, 0x4A, 0x23, 0x0D, 0x19, 0x0D, + 0x0E, 0x1F, 0x0B, 0x04, 0x08, 0x04, 0x06, 0x0B, 0x04, 0x08, + 0x10, 0x08, 0x09, 0x11, 0x0B, 0x0B, 0x14, 0x0B, 0x19, 0x33, + 0x1A, 0x22, 0x47, 0x25, 0x1B, 0x37, 0x1B, 0x1D, 0x39, 0x1C, + 0x2F, 0x5F, 0x2F, 0x19, 0x33, 0x19, 0x0B, 0x16, 0x0A, 0x02, + 0x02, 0x03, 0x05, 0x04, 0x18, 0x29, 0x17, 0x1C, 0x38, 0x1C, + 0x30, 0x61, 0x2F, 0x4B, 0x96, 0x46, 0x25, 0x4B, 0x21, 0x0C, + 0x18, 0x09, 0x04, 0x1E, 0x04, 0x0B, 0x17, 0x11, 0x03, 0x04, + 0x02, 0x05, 0x0B, 0x06, 0x1E, 0x43, 0x20, 0x30, 0x64, 0x32, + 0x17, 0x31, 0x17, 0x16, 0x2A, 0x15, 0x21, 0x40, 0x21, 0x17, + 0x31, 0x17, 0x15, 0x2C, 0x16, 0x05, 0x0B, 0x05, 0x05, 0x0D, + 0x04, 0x04, 0x05, 0x02, 0x05, 0x05, 0x02, 0x05, 0x05, 0x01, + 0x08, 0x04, 0x03, 0x10, 0x02, 0x10, 0x0A, 0x09, 0x0E, 0x23, + 0x0B, 0x03, 0x04, 0x02, 0x01, 0x01, 0x01, 0x05, 0x09, 0x06, + 0x07, 0x09, 0x03, 0x04, 0x09, 0x05, 0x05, 0x08, 0x04, 0x03, + 0x05, 0x03, 0x03, 0x2D, 0x01, 0x01, 0x04, 0x05, 0x0B, 0x05, + 0x11, 0x22, 0x12, 0x33, 0x67, 0x34, 0x17, 0x2E, 0x18, 0x18, + 0x30, 0x18, 0x1A, 0x34, 0x18, 0x23, 0x40, 0x19, 0x0E, 0x1C, + 0x0D, 0x0F, 0x1D, 0x0F, 0xF8, 0x94, 0x0E, 0x18, 0x13, 0x07, + 0x10, 0x01, 0x01, 0x04, 0x02, 0x02, 0x01, 0x49, 0x0E, 0x19, + 0x11, 0x08, 0x10, 0x03, 0x01, 0x04, 0x02, 0x03, 0x02, 0x01, + 0x02, 0x03, 0x0E, 0x1A, 0x10, 0x08, 0x11, 0x03, 0x02, 0x04, + 0x02, 0x03, 0x01, 0x02, 0x47, 0x0D, 0x1A, 0x10, 0x07, 0x11, + 0x03, 0x03, 0x05, 0x02, 0x02, 0x01, 0xFD, 0xF7, 0x0D, 0x1A, + 0x10, 0x07, 0x0F, 0x04, 0x04, 0x04, 0x03, 0x02, 0x01, 0x01, + 0x3A, 0x0C, 0x1C, 0x0E, 0x0C, 0x1C, 0x0E, 0x03, 0x06, 0x02, + 0x0D, 0x0E, 0x19, 0x11, 0x0D, 0x14, 0x0B, 0x03, 0x06, 0x3D, + 0x04, 0x08, 0x04, 0x08, 0x09, 0x03, 0x09, 0x24, 0x0F, 0x01, + 0x01, 0x02, 0x01, 0xD2, 0x03, 0x08, 0x03, 0x32, 0x63, 0x32, + 0x21, 0x42, 0x20, 0x0A, 0x13, 0x0A, 0x07, 0x06, 0x06, 0x2E, + 0x5E, 0x5D, 0x5E, 0x2F, 0x02, 0x15, 0x04, 0x07, 0x0E, 0x07, + 0x18, 0x0E, 0x04, 0x06, 0x04, 0x03, 0x02, 0x04, 0x09, 0x02, + 0x02, 0x05, 0x02, 0x01, 0x04, 0x02, 0x03, 0x05, 0x04, 0x03, + 0x04, 0x03, 0x01, 0x04, 0x05, 0x08, 0x0B, 0x02, 0x02, 0x04, + 0x01, 0x09, 0x07, 0x0B, 0x11, 0x04, 0x08, 0x11, 0x02, 0x01, + 0x01, 0x06, 0x05, 0x0F, 0x02, 0x02, 0x05, 0x05, 0x0B, 0x14, + 0x10, 0x0C, 0x18, 0x10, 0x06, 0x0E, 0x07, 0x09, 0x12, 0x0D, + 0x05, 0x0A, 0x05, 0x06, 0x0C, 0x05, 0x09, 0x11, 0x08, 0x08, + 0x0D, 0x08, 0x08, 0x0D, 0x07, 0x0E, 0x17, 0x0C, 0x0F, 0x1B, + 0x08, 0x06, 0x0D, 0x04, 0x04, 0x08, 0x04, 0x06, 0x02, 0x03, + 0x01, 0x03, 0x01, 0x01, 0x03, 0x10, 0x02, 0x06, 0x0B, 0x05, + 0x02, 0x17, 0x03, 0x03, 0x05, 0x02, 0x04, 0x03, 0x06, 0x09, + 0x1F, 0x1E, 0x10, 0x21, 0x16, 0x08, 0x0F, 0x0A, 0x05, 0x23, + 0x05, 0x0C, 0x13, 0x03, 0x0D, 0x02, 0x06, 0x07, 0x05, 0x13, + 0x19, 0x0D, 0x13, 0x1C, 0x0D, 0x06, 0x02, 0x02, 0x01, 0x04, + 0x01, 0x02, 0x03, 0x01, 0x01, 0x08, 0x03, 0x03, 0x04, 0x03, + 0x01, 0x01, 0x01, 0x02, 0x0C, 0x03, 0x09, 0x11, 0x09, 0x0E, + 0x15, 0x0D, 0x03, 0x09, 0x03, 0x03, 0x0B, 0x02, 0x10, 0x30, + 0x15, 0x0C, 0x12, 0x08, 0x03, 0x07, 0x03, 0x02, 0x0A, 0x01, + 0x03, 0x07, 0x01, 0x01, 0x09, 0x06, 0x04, 0x04, 0x01, 0x03, + 0x01, 0x08, 0x01, 0x01, 0x04, 0x02, 0x03, 0x06, 0x01, 0x01, + 0x01, 0x02, 0x04, 0x02, 0x06, 0x0D, 0x06, 0x03, 0x07, 0x02, + 0x02, 0x07, 0x01, 0x01, 0x02, 0x09, 0x0D, 0x1F, 0x1D, 0x11, + 0x20, 0x11, 0x02, 0x05, 0x03, 0x6C, 0x0F, 0x24, 0x07, 0x04, + 0x08, 0x08, 0x04, 0x08, 0x04, 0x03, 0x01, 0x1B, 0x0E, 0x20, + 0x0B, 0x04, 0x07, 0x08, 0x05, 0x09, 0x04, 0x02, 0x01, 0x01, + 0x7C, 0x0E, 0x1F, 0x0B, 0x05, 0x05, 0x08, 0x05, 0x0A, 0x05, + 0x03, 0x01, 0x02, 0x05, 0x0D, 0x1E, 0x0B, 0x05, 0x05, 0x08, + 0x05, 0x0A, 0x05, 0x02, 0x01, 0xCC, 0x0D, 0x1E, 0x0B, 0x04, + 0x04, 0x06, 0x06, 0x0A, 0x06, 0x03, 0x01, 0x02, 0x19, 0x0D, + 0x1A, 0x0C, 0x0C, 0x19, 0x0C, 0x03, 0x05, 0x51, 0x0E, 0x20, + 0x09, 0x06, 0x16, 0x0B, 0x03, 0x05, 0x09, 0x02, 0x04, 0x01, + 0x01, 0x0F, 0x08, 0x13, 0x19, 0x0D, 0x01, 0x01, 0x02, 0x3F, + 0x02, 0x04, 0x02, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, + 0x03, 0x05, 0x01, 0x03, 0x02, 0x03, 0x01, 0x00, 0x00, 0x00, + 0x00, 0x08, 0x00, 0x54, 0x00, 0x86, 0x08, 0x54, 0x02, 0xF5, + 0x00, 0x77, 0x00, 0x90, 0x00, 0xAC, 0x00, 0xCF, 0x01, 0x36, + 0x01, 0x4F, 0x01, 0x6B, 0x01, 0x8D, 0x00, 0x00, 0x01, 0x2E, + 0x03, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2A, 0x01, + 0x23, 0x2E, 0x01, 0x23, 0x26, 0x22, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x34, 0x35, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x14, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x2E, 0x01, 0x27, 0x26, 0x1F, 0x01, 0x25, 0x3E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x36, 0x06, + 0x37, 0x13, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x06, 0x3F, 0x02, 0x0E, + 0x01, 0x07, 0x06, 0x22, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x30, + 0x37, 0x36, 0x07, 0x25, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x26, 0x34, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, + 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x14, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x03, 0x37, + 0x2E, 0x01, 0x27, 0x31, 0x25, 0x3E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x36, 0x06, 0x37, 0x13, + 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x06, 0x07, 0x06, 0x3F, 0x02, 0x0E, 0x01, 0x07, + 0x06, 0x22, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x37, 0x36, 0x07, + 0x03, 0xE8, 0x24, 0x51, 0x54, 0x56, 0x2B, 0x1F, 0x3E, 0x20, + 0x0A, 0x15, 0x0A, 0x03, 0x06, 0x03, 0x04, 0x02, 0x04, 0x06, + 0x0E, 0x03, 0x04, 0x09, 0x05, 0x05, 0x07, 0x02, 0x01, 0x04, + 0x02, 0x04, 0x0B, 0x0E, 0x13, 0x32, 0x1C, 0x10, 0x1C, 0x05, + 0x03, 0x02, 0x14, 0x09, 0x04, 0x01, 0x05, 0x08, 0x16, 0x0D, + 0x07, 0x1B, 0x0A, 0x08, 0x0C, 0x06, 0x12, 0x22, 0x09, 0x0B, + 0x02, 0x01, 0x05, 0x0B, 0x07, 0x11, 0x08, 0x0A, 0x17, 0x11, + 0x12, 0x29, 0x0B, 0x07, 0x0B, 0x01, 0x01, 0x09, 0x03, 0x04, + 0x08, 0x02, 0x03, 0x01, 0x07, 0x07, 0x25, 0x11, 0x13, 0x1E, + 0x0E, 0x09, 0x1C, 0x01, 0x02, 0x01, 0x07, 0x0A, 0x10, 0x04, + 0x0C, 0x24, 0x0E, 0x1F, 0x3D, 0x1F, 0x27, 0x4F, 0x27, 0x44, + 0x80, 0x3C, 0x0D, 0x1A, 0x0F, 0x1D, 0x0F, 0x0E, 0xFC, 0xBA, + 0x03, 0x10, 0x0B, 0x0B, 0x10, 0x08, 0x0A, 0x0F, 0x02, 0x02, + 0x08, 0x0A, 0x08, 0x0E, 0x07, 0x07, 0x0F, 0x04, 0x05, 0x12, + 0x04, 0x09, 0x13, 0x0A, 0x39, 0x0B, 0x0F, 0x0A, 0x07, 0x0B, + 0x06, 0x02, 0x08, 0x06, 0x08, 0x10, 0x08, 0x09, 0x16, 0x05, + 0x03, 0x03, 0x02, 0x02, 0x02, 0x01, 0x01, 0x0D, 0x05, 0x08, + 0x04, 0x04, 0x02, 0x0C, 0x18, 0x0D, 0x0C, 0x1F, 0x08, 0x08, + 0x03, 0x01, 0x01, 0x01, 0x02, 0x01, 0x03, 0x07, 0x06, 0x14, + 0x07, 0x0D, 0x1A, 0x0D, 0x10, 0x20, 0x0D, 0x04, 0x03, 0x04, + 0x0A, 0x17, 0x0B, 0x0D, 0x0D, 0x1A, 0x07, 0x62, 0x2F, 0x5F, + 0x37, 0x1C, 0x37, 0x1C, 0x21, 0x42, 0x21, 0x21, 0x46, 0x1D, + 0x08, 0x11, 0x08, 0x06, 0x04, 0x03, 0x08, 0x21, 0x1D, 0x17, + 0x39, 0x0E, 0x0B, 0x07, 0x03, 0x09, 0x04, 0x03, 0x0B, 0x04, + 0x06, 0x0E, 0x0A, 0x08, 0x21, 0x0F, 0x07, 0x0B, 0x04, 0x0A, + 0x13, 0x09, 0x0F, 0x16, 0x04, 0x02, 0x02, 0x01, 0x01, 0x07, + 0x12, 0x08, 0x11, 0x09, 0x09, 0x22, 0x19, 0x11, 0x22, 0x07, + 0x08, 0x10, 0x06, 0x07, 0x03, 0x04, 0x07, 0x4D, 0x1D, 0x0E, + 0x1A, 0x09, 0x05, 0x01, 0x02, 0x0B, 0x09, 0x04, 0x07, 0x02, + 0x03, 0x13, 0x09, 0x1C, 0x38, 0x1C, 0x27, 0x4F, 0x27, 0x28, + 0x4E, 0x4C, 0x49, 0x23, 0x06, 0x0A, 0x05, 0xFC, 0x98, 0x04, + 0x0F, 0x0B, 0x0B, 0x10, 0x09, 0x09, 0x0E, 0x03, 0x02, 0x07, + 0x0B, 0x07, 0x0F, 0x07, 0x07, 0x0F, 0x04, 0x04, 0x11, 0x04, + 0x09, 0x13, 0x0A, 0x39, 0x0B, 0x0F, 0x09, 0x07, 0x0C, 0x05, + 0x03, 0x08, 0x07, 0x07, 0x10, 0x08, 0x0A, 0x15, 0x05, 0x03, + 0x04, 0x01, 0x02, 0x02, 0x01, 0x01, 0x0D, 0x05, 0x08, 0x04, + 0x04, 0x02, 0x0C, 0x18, 0x0D, 0x0C, 0x1F, 0x08, 0x08, 0x02, + 0x02, 0x01, 0x01, 0x02, 0x01, 0x04, 0x07, 0x05, 0x14, 0x07, + 0x0D, 0x1A, 0x0D, 0x10, 0x20, 0x0D, 0x04, 0x03, 0x04, 0x0A, + 0x16, 0x0C, 0x0D, 0x0D, 0x1A, 0x01, 0xE1, 0x18, 0x20, 0x15, + 0x0C, 0x04, 0x04, 0x05, 0x02, 0x01, 0x01, 0x01, 0x01, 0x03, + 0x02, 0x05, 0x08, 0x0F, 0x07, 0x07, 0x02, 0x09, 0x09, 0x12, + 0x09, 0x14, 0x24, 0x0F, 0x14, 0x15, 0x08, 0x05, 0x16, 0x11, + 0x0A, 0x14, 0x09, 0x16, 0x29, 0x13, 0x09, 0x0E, 0x09, 0x0F, + 0x19, 0x0B, 0x05, 0x13, 0x09, 0x08, 0x16, 0x0B, 0x1F, 0x42, + 0x23, 0x2C, 0x5B, 0x2C, 0x19, 0x36, 0x16, 0x11, 0x1F, 0x10, + 0x14, 0x2D, 0x10, 0x10, 0x2A, 0x0D, 0x08, 0x12, 0x0B, 0x09, + 0x0E, 0x07, 0x0A, 0x15, 0x0B, 0x0F, 0x24, 0x0E, 0x11, 0x12, + 0x01, 0x01, 0x0D, 0x0C, 0x09, 0x1D, 0x0E, 0x0D, 0x26, 0x0B, + 0x12, 0x30, 0x03, 0x08, 0x02, 0x02, 0x02, 0x07, 0x04, 0x05, + 0x08, 0x09, 0x0F, 0x36, 0x22, 0x0B, 0x11, 0x09, 0x14, 0x0A, + 0x0A, 0xBB, 0x08, 0x1E, 0x02, 0x02, 0x0D, 0x07, 0x08, 0x3B, + 0x0B, 0x0A, 0x07, 0x04, 0x04, 0x08, 0x03, 0x04, 0x07, 0x07, + 0x08, 0x1D, 0x07, 0x13, 0x25, 0x12, 0xFE, 0x2F, 0x0A, 0x02, + 0x0C, 0x09, 0x13, 0x0A, 0x04, 0x10, 0x05, 0x05, 0x0B, 0x05, + 0x06, 0x06, 0x0C, 0x08, 0x12, 0x08, 0x07, 0x0F, 0x07, 0x07, + 0x0A, 0x04, 0x07, 0x04, 0x03, 0xB8, 0x0B, 0x15, 0x0B, 0x0B, + 0x14, 0x14, 0x2E, 0x16, 0x0F, 0x20, 0x0F, 0x0B, 0x1A, 0x08, + 0x07, 0x04, 0x06, 0x0B, 0x17, 0x0B, 0x0D, 0x1D, 0x10, 0x06, + 0x07, 0x04, 0x0D, 0x16, 0x0B, 0x0D, 0x0C, 0x19, 0x4A, 0x1C, + 0x2F, 0x0C, 0x06, 0x0C, 0x03, 0x03, 0x08, 0x02, 0x02, 0x01, + 0x0C, 0x03, 0x2F, 0x13, 0x0C, 0x20, 0x0D, 0x1E, 0x2A, 0x0C, + 0x0A, 0x0F, 0x16, 0x12, 0x34, 0x13, 0x09, 0x12, 0x09, 0x07, + 0x15, 0x07, 0x0B, 0x16, 0x09, 0x09, 0x1D, 0x03, 0x01, 0x14, + 0x05, 0x11, 0x24, 0x12, 0x1E, 0x3C, 0x21, 0x17, 0x2D, 0x17, + 0x28, 0x53, 0x24, 0x11, 0x21, 0x11, 0x10, 0x3E, 0x0C, 0x09, + 0x25, 0x12, 0x12, 0x1C, 0x11, 0x12, 0x23, 0x13, 0x26, 0x15, + 0x14, 0x09, 0x1C, 0x0F, 0x09, 0x14, 0x09, 0x06, 0x2E, 0x10, + 0x07, 0x0C, 0x08, 0x09, 0x04, 0x01, 0x04, 0x04, 0x04, 0x05, + 0x0A, 0x05, 0x05, 0x15, 0x1E, 0x24, 0x13, 0x04, 0x09, 0x04, + 0xCF, 0x08, 0x1E, 0x02, 0x02, 0x0D, 0x07, 0x08, 0x3B, 0x0B, + 0x0A, 0x07, 0x04, 0x04, 0x08, 0x03, 0x04, 0x07, 0x07, 0x08, + 0x1D, 0x07, 0x13, 0x25, 0x12, 0xFE, 0x2F, 0x0A, 0x02, 0x0C, + 0x09, 0x13, 0x0A, 0x04, 0x10, 0x05, 0x05, 0x0B, 0x05, 0x06, + 0x06, 0x0C, 0x08, 0x12, 0x08, 0x07, 0x0F, 0x07, 0x07, 0x0A, + 0x04, 0x07, 0x04, 0x03, 0xB8, 0x0B, 0x15, 0x0B, 0x0B, 0x14, + 0x14, 0x2E, 0x16, 0x0F, 0x20, 0x0F, 0x0B, 0x1A, 0x08, 0x07, + 0x04, 0x06, 0x0B, 0x17, 0x0B, 0x0D, 0x1D, 0x10, 0x06, 0x07, + 0x04, 0x0D, 0x16, 0x0B, 0x0D, 0x0C, 0x19, 0x00, 0x00, 0x02, + 0x00, 0x5D, 0x00, 0x26, 0x06, 0x16, 0x03, 0x5B, 0x00, 0xC2, + 0x00, 0xDE, 0x00, 0x00, 0x01, 0x2E, 0x01, 0x35, 0x3E, 0x01, + 0x23, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x22, + 0x06, 0x27, 0x26, 0x36, 0x23, 0x2A, 0x01, 0x23, 0x2E, 0x01, + 0x23, 0x2A, 0x01, 0x27, 0x22, 0x06, 0x23, 0x22, 0x26, 0x23, + 0x2E, 0x01, 0x23, 0x2E, 0x01, 0x23, 0x22, 0x26, 0x23, 0x22, + 0x06, 0x23, 0x22, 0x06, 0x07, 0x22, 0x06, 0x27, 0x2E, 0x01, + 0x23, 0x22, 0x26, 0x07, 0x06, 0x16, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x22, 0x23, 0x2A, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x0E, + 0x01, 0x07, 0x06, 0x16, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x16, 0x33, 0x32, 0x16, 0x33, 0x32, 0x16, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x06, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x14, 0x16, 0x17, + 0x1E, 0x01, 0x33, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x2E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x33, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x32, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x01, 0x06, 0x22, + 0x23, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x35, + 0x3C, 0x01, 0x35, 0x34, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x16, 0x07, 0x06, 0x14, 0x01, 0x03, 0x01, + 0x01, 0x0D, 0x04, 0x15, 0x01, 0x02, 0x09, 0x0B, 0x0B, 0x13, + 0x0A, 0x08, 0x0B, 0x0A, 0x08, 0x1F, 0x07, 0x03, 0x02, 0x02, + 0x01, 0x0F, 0x01, 0x04, 0x05, 0x08, 0x07, 0x0D, 0x07, 0x37, + 0x6E, 0x37, 0x11, 0x23, 0x11, 0x05, 0x03, 0x03, 0x07, 0x0C, + 0x06, 0x2F, 0x5D, 0x2F, 0x16, 0x2C, 0x16, 0x0C, 0x0A, 0x0A, + 0x32, 0x63, 0x32, 0x0F, 0x17, 0x10, 0x08, 0x17, 0x06, 0x04, + 0x14, 0x05, 0x06, 0x22, 0x05, 0x05, 0x08, 0x05, 0x0F, 0x20, + 0x09, 0x06, 0x0E, 0x0D, 0x04, 0x09, 0x03, 0x02, 0x08, 0x02, + 0x04, 0x10, 0x03, 0x01, 0x01, 0x0C, 0x04, 0x05, 0x0A, 0x02, + 0x03, 0x05, 0x02, 0x04, 0x17, 0x10, 0x11, 0x24, 0x0B, 0x0B, + 0x08, 0x0F, 0x0A, 0x13, 0x09, 0x12, 0x25, 0x11, 0x1A, 0x1B, + 0x06, 0x03, 0x03, 0x08, 0x02, 0x06, 0x0A, 0x06, 0x10, 0x1B, + 0x0C, 0x0A, 0x0A, 0x01, 0x09, 0x0F, 0x07, 0x0E, 0x07, 0x2E, + 0x58, 0x2E, 0x24, 0x4A, 0x25, 0x04, 0x12, 0x03, 0x03, 0x06, + 0x03, 0x05, 0x0D, 0x05, 0x04, 0x0B, 0x18, 0x0D, 0x2B, 0x0F, + 0x15, 0x28, 0x14, 0x0B, 0x15, 0x0A, 0x0D, 0x0B, 0x05, 0x08, + 0x06, 0x14, 0x0E, 0x0C, 0x1B, 0x11, 0x21, 0x43, 0x21, 0x33, + 0x67, 0x67, 0x67, 0x34, 0x0A, 0x0E, 0x04, 0x07, 0x0D, 0x05, + 0x04, 0x10, 0x02, 0xFD, 0x03, 0x08, 0x22, 0x11, 0x0D, 0x25, + 0x0D, 0x0B, 0x09, 0x04, 0x02, 0x01, 0x28, 0x11, 0x11, 0x21, + 0x11, 0x1C, 0x02, 0x02, 0x07, 0x02, 0xEE, 0x0A, 0x14, 0x0B, + 0x0B, 0x0D, 0x02, 0x04, 0x04, 0x0A, 0x0E, 0x03, 0x03, 0x0C, + 0x06, 0x05, 0x01, 0x04, 0x04, 0x02, 0x0A, 0x02, 0x01, 0x01, + 0x04, 0x0C, 0x01, 0x01, 0x01, 0x0D, 0x05, 0x01, 0x02, 0x01, + 0x01, 0x0F, 0x01, 0x0A, 0x01, 0x03, 0x06, 0x04, 0x18, 0x04, + 0x04, 0x04, 0x1B, 0x04, 0x08, 0x17, 0x0F, 0x0C, 0x02, 0x01, + 0x06, 0x01, 0x02, 0x03, 0x02, 0x0F, 0x03, 0x08, 0x13, 0x07, + 0x08, 0x0D, 0x0A, 0x09, 0x13, 0x0A, 0x11, 0x07, 0x05, 0x05, + 0x10, 0x0F, 0x0F, 0x0A, 0x01, 0x01, 0x03, 0x04, 0x1C, 0x19, + 0x0E, 0x18, 0x0E, 0x06, 0x0F, 0x06, 0x0C, 0x19, 0x0D, 0x25, + 0x4C, 0x26, 0x1D, 0x3C, 0x1E, 0x0B, 0x23, 0x02, 0x01, 0x01, + 0x02, 0x01, 0x03, 0x02, 0x0D, 0x0A, 0x24, 0x0B, 0x0F, 0x1D, + 0x0F, 0x1F, 0x3D, 0x1F, 0x1B, 0x2E, 0x11, 0x0A, 0x11, 0x02, + 0x01, 0x03, 0x02, 0x02, 0x02, 0x03, 0x02, 0x0D, 0x15, 0x2D, + 0x14, 0x0F, 0x28, 0x09, 0x09, 0x16, 0x02, 0x0B, 0x13, 0x27, + 0x13, 0x10, 0x27, 0x10, 0xFE, 0xCD, 0x12, 0x04, 0x04, 0x04, + 0x05, 0x0B, 0x06, 0x09, 0x07, 0x13, 0x25, 0x12, 0x1A, 0x03, + 0x31, 0x13, 0x0F, 0x1F, 0x0D, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x4F, 0x00, 0x25, 0x09, 0x93, 0x03, 0x5A, 0x00, 0x91, + 0x01, 0x0C, 0x01, 0x2C, 0x01, 0x4A, 0x00, 0x00, 0x01, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x17, + 0x23, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x23, 0x06, 0x26, 0x23, + 0x22, 0x26, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x16, 0x17, 0x07, 0x15, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, + 0x2E, 0x01, 0x0F, 0x01, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x14, 0x06, 0x07, 0x06, + 0x26, 0x23, 0x22, 0x06, 0x2F, 0x01, 0x2E, 0x01, 0x35, 0x2E, + 0x01, 0x27, 0x34, 0x26, 0x27, 0x36, 0x26, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x2E, 0x01, 0x35, 0x3E, 0x01, 0x37, 0x36, 0x16, + 0x17, 0x3E, 0x01, 0x37, 0x35, 0x36, 0x16, 0x17, 0x32, 0x16, + 0x15, 0x17, 0x32, 0x36, 0x33, 0x16, 0x32, 0x17, 0x32, 0x36, + 0x1F, 0x01, 0x21, 0x35, 0x17, 0x2E, 0x01, 0x35, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x17, 0x3E, 0x01, 0x33, 0x35, 0x36, 0x16, + 0x17, 0x1E, 0x01, 0x17, 0x32, 0x36, 0x1F, 0x01, 0x21, 0x35, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x07, + 0x0E, 0x01, 0x17, 0x23, 0x07, 0x06, 0x26, 0x23, 0x22, 0x26, + 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x14, 0x06, 0x15, + 0x14, 0x16, 0x0F, 0x01, 0x15, 0x0E, 0x01, 0x07, 0x06, 0x26, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x14, 0x16, 0x07, + 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x35, 0x3E, 0x01, 0x35, 0x2E, 0x01, 0x27, 0x35, + 0x27, 0x34, 0x26, 0x37, 0x34, 0x36, 0x37, 0x33, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x37, 0x3E, 0x01, 0x33, 0x3E, 0x01, 0x27, 0x05, 0x2A, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x3E, + 0x01, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x23, 0x05, + 0x22, 0x26, 0x07, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, + 0x33, 0x17, 0x1E, 0x01, 0x17, 0x32, 0x16, 0x17, 0x3E, 0x01, + 0x3F, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2A, 0x01, 0x23, 0x04, + 0x88, 0x03, 0x09, 0x05, 0x05, 0x0E, 0x09, 0x07, 0x0D, 0x06, + 0x04, 0x0B, 0x01, 0x02, 0x07, 0x03, 0x03, 0x08, 0x01, 0x02, + 0x06, 0x01, 0x51, 0x02, 0x03, 0x02, 0x0B, 0x1C, 0x0B, 0x0F, + 0x1D, 0x0F, 0x1A, 0x35, 0x1A, 0x0E, 0x1D, 0x0E, 0x17, 0x20, + 0x10, 0x16, 0x02, 0x02, 0x0A, 0x1C, 0x3E, 0x1E, 0x13, 0x21, + 0x13, 0x16, 0x34, 0x15, 0x17, 0x0A, 0x08, 0x05, 0x08, 0x11, + 0x09, 0x04, 0x06, 0x05, 0x03, 0x07, 0x08, 0x17, 0x40, 0x1A, + 0x1F, 0x3E, 0x1C, 0x0C, 0x01, 0x01, 0x14, 0x20, 0x12, 0x02, + 0x02, 0x01, 0x05, 0x02, 0x02, 0x09, 0x01, 0x10, 0x1D, 0x0E, + 0x08, 0x10, 0x09, 0x0D, 0x0F, 0x10, 0x0A, 0x3A, 0x14, 0x0A, + 0x03, 0x03, 0x06, 0x15, 0x08, 0x15, 0x18, 0x08, 0x02, 0x05, + 0x02, 0x04, 0x04, 0x0F, 0x19, 0x0E, 0x0E, 0x1D, 0x10, 0x0C, + 0x17, 0x0C, 0x04, 0x03, 0x04, 0x1F, 0x3D, 0x1F, 0x12, 0x25, + 0x13, 0x0D, 0x22, 0x0D, 0x08, 0x02, 0x11, 0xD6, 0x01, 0x03, + 0x02, 0x06, 0x04, 0x0F, 0x17, 0x0E, 0x0F, 0x1E, 0x10, 0x0C, + 0x18, 0x0C, 0x07, 0x03, 0x01, 0x3F, 0x80, 0x40, 0x09, 0x02, + 0x0E, 0x03, 0x04, 0x09, 0x02, 0x16, 0x2E, 0x06, 0x03, 0x0B, + 0x0C, 0x02, 0x04, 0x01, 0x55, 0x04, 0x16, 0x37, 0x17, 0x1B, + 0x36, 0x1C, 0x21, 0x38, 0x1A, 0x0C, 0x18, 0x02, 0x02, 0x08, + 0x05, 0x0A, 0x1F, 0x45, 0x22, 0x27, 0x65, 0x22, 0x11, 0x0C, + 0x07, 0x08, 0x0D, 0x0B, 0x11, 0x16, 0x15, 0x31, 0x17, 0x1E, + 0x3C, 0x1D, 0x02, 0x05, 0x0B, 0x05, 0x09, 0x08, 0x02, 0x02, + 0x13, 0x23, 0x12, 0x02, 0x05, 0x01, 0x09, 0x05, 0x02, 0x08, + 0x21, 0x0D, 0x0F, 0x26, 0x06, 0x0D, 0x0A, 0x3A, 0x14, 0x09, + 0x01, 0x07, 0x06, 0x15, 0x07, 0x19, 0x1F, 0x07, 0xFD, 0x33, + 0x11, 0x23, 0x11, 0x13, 0x1C, 0x11, 0x07, 0x09, 0x02, 0x06, + 0x05, 0x02, 0x06, 0x0C, 0x06, 0x0F, 0x1D, 0x11, 0x0E, 0x1D, + 0x0F, 0x2F, 0x33, 0x04, 0x02, 0x01, 0x08, 0x05, 0x11, 0x0D, + 0x35, 0x04, 0x74, 0x0D, 0x21, 0x0B, 0x04, 0x0D, 0x19, 0x05, + 0x02, 0x03, 0x07, 0x03, 0x14, 0x0F, 0x1D, 0x11, 0x0F, 0x1E, + 0x0F, 0x2F, 0x31, 0x03, 0x04, 0x09, 0x05, 0x12, 0x0D, 0x19, + 0x32, 0x19, 0x03, 0x2E, 0x06, 0x0A, 0x04, 0x06, 0x04, 0x01, + 0x02, 0x03, 0x02, 0x06, 0x04, 0x08, 0x0D, 0x19, 0x0D, 0x08, + 0x1F, 0x0A, 0x1A, 0x36, 0x1A, 0x03, 0x06, 0x02, 0x05, 0x01, + 0x01, 0x01, 0x02, 0x01, 0x03, 0x05, 0x19, 0x0F, 0x14, 0x35, + 0x19, 0x0A, 0x02, 0x0B, 0x15, 0x02, 0x01, 0x02, 0x02, 0x03, + 0x0A, 0x05, 0x0D, 0x0D, 0x19, 0x10, 0x1C, 0x39, 0x1C, 0x0F, + 0x1A, 0x10, 0x14, 0x27, 0x14, 0x11, 0x19, 0x08, 0x0E, 0x05, + 0x03, 0x0C, 0x0F, 0x0B, 0x15, 0x0A, 0x02, 0x05, 0x0A, 0x02, + 0x06, 0x02, 0x10, 0x1F, 0x0F, 0x12, 0x24, 0x12, 0x20, 0x41, + 0x21, 0x13, 0x27, 0x13, 0x19, 0x2C, 0x1C, 0x14, 0x07, 0x04, + 0x0A, 0x13, 0x0C, 0x06, 0x06, 0x01, 0x14, 0x29, 0x1C, 0x0D, + 0x1B, 0x0E, 0x06, 0x08, 0x01, 0x01, 0x05, 0x03, 0x06, 0x0C, + 0x01, 0x1B, 0x01, 0x03, 0x02, 0x03, 0x02, 0x18, 0x04, 0x01, + 0x01, 0x01, 0x03, 0x0D, 0x03, 0x2E, 0x08, 0x0F, 0x08, 0x07, + 0x07, 0x01, 0x02, 0x05, 0x02, 0x03, 0x10, 0x19, 0x01, 0x03, + 0x02, 0x06, 0x0F, 0x09, 0x02, 0x02, 0x0A, 0x01, 0x05, 0x03, + 0x07, 0x05, 0x13, 0x1B, 0x16, 0x0E, 0x31, 0x0B, 0x1E, 0x3C, + 0x1E, 0x09, 0x08, 0x04, 0x01, 0x01, 0x01, 0x0A, 0x17, 0x0A, + 0x18, 0x11, 0x06, 0x0D, 0x07, 0x06, 0x19, 0x04, 0x0B, 0x04, + 0x0C, 0x13, 0x02, 0x02, 0x1A, 0x19, 0x14, 0x35, 0x19, 0x1A, + 0x38, 0x19, 0x23, 0x52, 0x20, 0x0B, 0x03, 0x02, 0x01, 0x03, + 0x02, 0x05, 0x14, 0x10, 0x04, 0x09, 0x04, 0x03, 0x04, 0x09, + 0x06, 0x05, 0x0E, 0x19, 0x0E, 0x14, 0x25, 0x13, 0x21, 0x41, + 0x1E, 0x22, 0x4A, 0x24, 0x25, 0x14, 0x09, 0x02, 0x07, 0x1B, + 0x08, 0x05, 0x09, 0x17, 0x33, 0x24, 0xBA, 0x01, 0x01, 0x05, + 0x08, 0x05, 0x0B, 0x06, 0x0C, 0x19, 0x0C, 0x06, 0x0B, 0x06, + 0x04, 0x0D, 0x01, 0x01, 0x01, 0x07, 0x17, 0x10, 0x0E, 0x18, + 0x0D, 0x09, 0x10, 0x07, 0x06, 0x03, 0x05, 0x07, 0x0D, 0x0E, + 0x0D, 0x1A, 0x0C, 0x14, 0x06, 0x0D, 0x01, 0x01, 0x01, 0x06, + 0x18, 0x12, 0x13, 0x20, 0x09, 0x0F, 0x06, 0x00, 0x00, 0x02, + 0x00, 0x57, 0x00, 0x24, 0x04, 0xD4, 0x03, 0x5A, 0x00, 0x98, + 0x00, 0xB7, 0x00, 0x00, 0x01, 0x2E, 0x01, 0x27, 0x26, 0x06, + 0x23, 0x22, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, + 0x03, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x16, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x16, 0x14, 0x15, 0x14, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x16, 0x36, 0x37, + 0x3E, 0x01, 0x37, 0x32, 0x36, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x36, 0x35, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x34, 0x37, 0x3E, 0x01, 0x17, + 0x16, 0x32, 0x37, 0x36, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x34, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, + 0x36, 0x16, 0x17, 0x36, 0x34, 0x37, 0x34, 0x36, 0x35, 0x3E, + 0x01, 0x37, 0x34, 0x26, 0x27, 0x01, 0x1C, 0x01, 0x15, 0x14, + 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x27, 0x26, 0x36, + 0x35, 0x3C, 0x01, 0x35, 0x34, 0x32, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x16, 0x17, 0x16, 0x06, 0x15, 0x04, 0xCE, 0x02, 0x0C, + 0x0C, 0x05, 0x0A, 0x05, 0x04, 0x0C, 0x07, 0x14, 0x2A, 0x15, + 0x33, 0x66, 0x32, 0x03, 0x0A, 0x02, 0x03, 0x05, 0x03, 0x0C, + 0x17, 0x0C, 0x35, 0x69, 0x6A, 0x69, 0x35, 0x12, 0x25, 0x13, + 0x08, 0x0F, 0x07, 0x18, 0x30, 0x1B, 0x0C, 0x07, 0x06, 0x0A, + 0x14, 0x06, 0x0C, 0x09, 0x05, 0x04, 0x0A, 0x01, 0x02, 0x48, + 0x1C, 0x12, 0x08, 0x03, 0x04, 0x08, 0x04, 0x06, 0x0B, 0x05, + 0x0B, 0x12, 0x07, 0x05, 0x06, 0x0D, 0x0D, 0x0E, 0x2E, 0x13, + 0x27, 0x4D, 0x27, 0x11, 0x2E, 0x08, 0x01, 0x07, 0x03, 0x02, + 0x05, 0x03, 0x04, 0x02, 0x04, 0x09, 0x05, 0x02, 0x06, 0x02, + 0x01, 0x0A, 0x01, 0x02, 0x11, 0x0C, 0x14, 0x10, 0x0C, 0x16, + 0x0B, 0x26, 0x4B, 0x25, 0x15, 0x24, 0x07, 0x03, 0x02, 0x01, + 0x01, 0x01, 0x01, 0x04, 0x09, 0x0E, 0x24, 0x10, 0x0D, 0x1E, + 0x0D, 0x32, 0x65, 0x32, 0x0F, 0x09, 0x03, 0x02, 0x3A, 0x08, + 0x03, 0x01, 0x0A, 0x01, 0x01, 0x01, 0x01, 0x05, 0xFE, 0x20, + 0x2C, 0x0C, 0x1C, 0x38, 0x1C, 0x0C, 0x2C, 0x0B, 0x08, 0x02, + 0x25, 0x0D, 0x2C, 0x58, 0x2B, 0x04, 0x07, 0x02, 0x05, 0x02, + 0x03, 0x30, 0x09, 0x1E, 0x02, 0x01, 0x01, 0x23, 0x01, 0x02, + 0x03, 0x03, 0x01, 0x05, 0x0F, 0x06, 0x02, 0x01, 0x13, 0x05, + 0x07, 0x0F, 0x0C, 0x15, 0x34, 0x17, 0x12, 0x21, 0x11, 0x2A, + 0x22, 0x0D, 0x09, 0x16, 0x10, 0x09, 0x12, 0x08, 0x0C, 0x16, + 0x0C, 0x11, 0x25, 0x12, 0x24, 0x49, 0x25, 0x17, 0x31, 0x18, + 0x10, 0x19, 0x0C, 0x0F, 0x05, 0x01, 0x01, 0x05, 0x01, 0x0F, + 0x18, 0x04, 0x07, 0x03, 0x02, 0x0C, 0x02, 0x09, 0x11, 0x09, + 0x12, 0x23, 0x12, 0x09, 0x14, 0x0A, 0x08, 0x0F, 0x08, 0x14, + 0x38, 0x0D, 0x09, 0x05, 0x02, 0x01, 0x01, 0x01, 0x09, 0x06, + 0x03, 0x16, 0x15, 0x0B, 0x18, 0x0C, 0x08, 0x11, 0x08, 0x0A, + 0x13, 0x05, 0x09, 0x15, 0x03, 0x02, 0x02, 0x1F, 0x0C, 0x06, + 0x03, 0x03, 0x06, 0x0C, 0x06, 0x06, 0x05, 0x06, 0x0B, 0x18, + 0x0B, 0x1A, 0x31, 0x19, 0xFE, 0xCC, 0x0A, 0x15, 0x0A, 0x13, + 0x02, 0x05, 0x07, 0x05, 0x1E, 0x07, 0x0C, 0x16, 0x0B, 0x14, + 0x03, 0x04, 0x08, 0x1B, 0x09, 0x00, 0x00, 0x02, 0x00, 0x4B, + 0x00, 0x26, 0x05, 0x73, 0x03, 0x5A, 0x00, 0x94, 0x00, 0xA7, + 0x00, 0x00, 0x01, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, + 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x23, 0x0E, 0x01, 0x27, + 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x3E, 0x01, 0x37, 0x22, 0x26, 0x27, 0x26, 0x36, 0x37, 0x1C, + 0x01, 0x15, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x26, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x32, 0x16, + 0x17, 0x16, 0x36, 0x33, 0x3A, 0x03, 0x33, 0x3A, 0x03, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x3A, 0x01, + 0x33, 0x32, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x05, 0x2A, 0x01, + 0x23, 0x22, 0x06, 0x15, 0x14, 0x06, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x36, 0x35, 0x34, 0x36, 0x23, 0x05, 0x73, 0x0A, 0x21, + 0x14, 0x28, 0x14, 0x27, 0x4F, 0x27, 0x16, 0x2A, 0x16, 0x0C, + 0x36, 0x02, 0x03, 0x02, 0x04, 0x01, 0x06, 0x12, 0x02, 0x28, + 0x51, 0x28, 0x13, 0x29, 0x13, 0x0B, 0x16, 0x0B, 0x0A, 0x0D, + 0x0B, 0x11, 0x19, 0x09, 0x14, 0x1C, 0x0E, 0x08, 0x0F, 0x08, + 0x07, 0x16, 0x02, 0x01, 0x10, 0x0D, 0x06, 0x0D, 0x06, 0x3E, + 0x7B, 0x3E, 0x01, 0x03, 0x02, 0x14, 0x28, 0x0D, 0x0E, 0x0D, + 0x06, 0x19, 0x2B, 0x16, 0x0B, 0x18, 0x0C, 0x0B, 0x0F, 0x08, + 0x11, 0x04, 0x28, 0x0B, 0x15, 0x0A, 0x0A, 0x06, 0x01, 0x07, + 0x04, 0x04, 0x1C, 0x07, 0x0E, 0x0A, 0x06, 0x06, 0x0A, 0x0D, + 0x0D, 0x07, 0x02, 0x01, 0x0E, 0x02, 0x2B, 0x54, 0x54, 0x54, + 0x2A, 0x3A, 0x74, 0x73, 0x74, 0x3A, 0x26, 0x4C, 0x25, 0x09, + 0x11, 0x08, 0x03, 0x01, 0x01, 0x02, 0x0A, 0x05, 0x08, 0x02, + 0x06, 0x06, 0x01, 0x08, 0x07, 0x0F, 0x08, 0x07, 0x01, 0x01, + 0x01, 0x04, 0x02, 0xFE, 0x03, 0x28, 0x4E, 0x28, 0x11, 0x0D, + 0x02, 0x11, 0x28, 0x50, 0x28, 0x0D, 0x0F, 0x03, 0x12, 0x02, + 0xC0, 0x18, 0x4C, 0x03, 0x02, 0x03, 0x01, 0x01, 0x04, 0x01, + 0x01, 0x01, 0x01, 0x04, 0x11, 0x13, 0x28, 0x14, 0x08, 0x12, + 0x08, 0x03, 0x16, 0x05, 0x04, 0x02, 0x01, 0x03, 0x02, 0x03, + 0x02, 0x02, 0x07, 0x02, 0x04, 0x27, 0x0D, 0x1F, 0x44, 0x22, + 0x15, 0x29, 0x14, 0x16, 0x32, 0x16, 0x0E, 0x13, 0x08, 0x0F, + 0x08, 0x07, 0x14, 0x16, 0x37, 0x18, 0x01, 0x01, 0x01, 0x20, + 0x44, 0x22, 0x11, 0x20, 0x11, 0x10, 0x29, 0x12, 0x25, 0x5B, + 0x17, 0x05, 0x0A, 0x05, 0x06, 0x19, 0x0A, 0x14, 0x29, 0x14, + 0x08, 0x11, 0x08, 0x07, 0x0B, 0x07, 0x08, 0x02, 0x01, 0x01, + 0x03, 0x0B, 0x0A, 0x02, 0x01, 0x09, 0x0D, 0x03, 0x01, 0x01, + 0x02, 0x04, 0x03, 0x01, 0x03, 0x01, 0x03, 0x02, 0x04, 0x15, + 0x06, 0x1B, 0x34, 0x1B, 0x7D, 0x10, 0x12, 0x09, 0x3F, 0x0D, + 0x10, 0x09, 0x44, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x55, + 0x00, 0x25, 0x04, 0x97, 0x03, 0x5A, 0x00, 0x93, 0x00, 0xC4, + 0x00, 0x00, 0x01, 0x2E, 0x01, 0x27, 0x34, 0x26, 0x27, 0x26, + 0x22, 0x23, 0x2A, 0x01, 0x23, 0x06, 0x22, 0x23, 0x2A, 0x01, + 0x23, 0x22, 0x16, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x2A, 0x01, 0x23, 0x22, 0x36, 0x23, 0x2A, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x27, 0x26, 0x22, + 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x27, 0x2E, + 0x01, 0x27, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x33, 0x16, 0x32, 0x33, 0x1E, 0x01, 0x17, + 0x16, 0x36, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x16, 0x37, 0x32, 0x36, + 0x33, 0x36, 0x32, 0x37, 0x32, 0x36, 0x35, 0x3E, 0x01, 0x27, + 0x05, 0x06, 0x14, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x07, + 0x06, 0x26, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x17, 0x32, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x36, 0x26, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x33, + 0x16, 0x32, 0x33, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x04, + 0x96, 0x01, 0x02, 0x01, 0x01, 0x0A, 0x0C, 0x16, 0x0D, 0x19, + 0x32, 0x19, 0x34, 0x68, 0x34, 0x04, 0x08, 0x03, 0x01, 0x01, + 0x01, 0x02, 0x05, 0x03, 0x1A, 0x35, 0x1A, 0x09, 0x14, 0x09, + 0x05, 0x05, 0x04, 0x0E, 0x1E, 0x0E, 0x3C, 0x78, 0x3C, 0x0F, + 0x1D, 0x0F, 0x02, 0x02, 0x02, 0x02, 0x0F, 0x03, 0x03, 0x0D, + 0x03, 0x04, 0x04, 0x04, 0x09, 0x19, 0x0A, 0x09, 0x12, 0x06, + 0x0B, 0x1C, 0x03, 0x03, 0x01, 0x12, 0x11, 0x2C, 0x12, 0x14, + 0x0A, 0x05, 0x03, 0x09, 0x05, 0x0A, 0x16, 0x0B, 0x0F, 0x16, + 0x09, 0x09, 0x10, 0x03, 0x01, 0x17, 0x0D, 0x1B, 0x35, 0x1B, + 0x30, 0x62, 0x30, 0x09, 0x32, 0x16, 0x05, 0x19, 0x01, 0x02, + 0x01, 0x01, 0x02, 0x05, 0x0A, 0x17, 0x0C, 0x03, 0x1C, 0x05, + 0x08, 0x0F, 0x08, 0x1D, 0x3C, 0x1D, 0x27, 0x4F, 0x26, 0x08, + 0x1E, 0x02, 0x01, 0x03, 0x02, 0x01, 0x04, 0x15, 0x12, 0x0E, + 0x22, 0x0F, 0x1F, 0x3F, 0x1F, 0x14, 0x27, 0x14, 0x14, 0x05, + 0x01, 0x01, 0x01, 0xFE, 0x9D, 0x01, 0x0B, 0x08, 0x17, 0x08, + 0x16, 0x2A, 0x16, 0x19, 0x61, 0x01, 0x0C, 0x0C, 0x1E, 0x10, + 0x03, 0x03, 0x01, 0x01, 0x21, 0x0B, 0x0A, 0x15, 0x0D, 0x0E, + 0x19, 0x03, 0x06, 0x0B, 0x04, 0x08, 0x14, 0x02, 0x02, 0x0A, + 0x0E, 0x18, 0x31, 0x18, 0x02, 0x18, 0x02, 0x08, 0x03, 0x01, + 0x02, 0xDE, 0x0F, 0x1E, 0x10, 0x0A, 0x16, 0x07, 0x06, 0x01, + 0x0C, 0x0C, 0x0D, 0x01, 0x02, 0x03, 0x01, 0x02, 0x0D, 0x02, + 0x05, 0x07, 0x05, 0x05, 0x15, 0x09, 0x0F, 0x2A, 0x12, 0x17, + 0x42, 0x10, 0x0F, 0x0B, 0x0C, 0x0D, 0x1A, 0x17, 0x0E, 0x19, + 0x0C, 0x1A, 0x33, 0x19, 0x20, 0x40, 0x21, 0x1D, 0x3C, 0x1E, + 0x10, 0x03, 0x03, 0x05, 0x0B, 0x05, 0x0A, 0x13, 0x0A, 0x02, + 0x0A, 0x0E, 0x03, 0x0D, 0x06, 0x0D, 0x19, 0x0C, 0x12, 0x20, + 0x10, 0x21, 0x3F, 0x20, 0x08, 0x57, 0x01, 0x01, 0x02, 0x01, + 0x01, 0x07, 0x07, 0x01, 0x04, 0x0C, 0x0A, 0x13, 0x0A, 0x0F, + 0x1E, 0x10, 0x13, 0x11, 0x04, 0x04, 0x03, 0x01, 0x01, 0x01, + 0x01, 0x2C, 0x0D, 0x15, 0x2B, 0x15, 0xF1, 0x0A, 0x17, 0x06, + 0x03, 0x01, 0x01, 0x01, 0x01, 0x02, 0x03, 0x03, 0x26, 0x11, + 0x22, 0x0E, 0x0E, 0x03, 0x01, 0x28, 0x04, 0x0D, 0x1A, 0x06, + 0x06, 0x0B, 0x05, 0x04, 0x09, 0x01, 0x02, 0x07, 0x06, 0x0A, + 0x19, 0x0E, 0x13, 0x04, 0x01, 0x06, 0x13, 0x03, 0x0E, 0x21, + 0x0F, 0x00, 0x00, 0x03, 0x00, 0x59, 0x00, 0x25, 0x04, 0x8E, + 0x03, 0x59, 0x00, 0xCE, 0x00, 0xD4, 0x01, 0x1E, 0x00, 0x00, + 0x01, 0x34, 0x36, 0x27, 0x26, 0x06, 0x37, 0x36, 0x26, 0x23, + 0x06, 0x26, 0x23, 0x22, 0x26, 0x23, 0x14, 0x16, 0x07, 0x06, + 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x35, 0x3C, 0x01, + 0x23, 0x0E, 0x01, 0x35, 0x36, 0x22, 0x23, 0x2A, 0x02, 0x26, + 0x23, 0x1C, 0x01, 0x15, 0x26, 0x22, 0x23, 0x14, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x06, + 0x14, 0x07, 0x06, 0x14, 0x17, 0x16, 0x32, 0x17, 0x16, 0x14, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x17, + 0x16, 0x06, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x17, 0x14, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x0E, 0x01, 0x15, + 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x36, 0x17, 0x16, + 0x06, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x33, 0x32, 0x16, 0x35, + 0x34, 0x26, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x35, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x17, 0x32, 0x16, 0x35, 0x34, 0x36, 0x27, 0x26, + 0x36, 0x35, 0x34, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x16, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, + 0x36, 0x26, 0x35, 0x34, 0x26, 0x37, 0x01, 0x36, 0x16, 0x17, + 0x22, 0x26, 0x01, 0x06, 0x26, 0x27, 0x14, 0x06, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x26, 0x07, 0x06, 0x36, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x36, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x17, + 0x16, 0x06, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x37, 0x32, 0x36, 0x27, 0x26, 0x06, 0x35, 0x30, 0x27, + 0x26, 0x23, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x35, 0x34, 0x36, + 0x37, 0x36, 0x16, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x15, + 0x1C, 0x01, 0x17, 0x1C, 0x01, 0x07, 0x04, 0x8B, 0x03, 0x04, + 0x05, 0x09, 0x02, 0x03, 0x24, 0x08, 0x16, 0x2C, 0x16, 0x3B, + 0x76, 0x3B, 0x03, 0x03, 0x03, 0x17, 0x04, 0x18, 0x2F, 0x17, + 0x0A, 0x11, 0x06, 0x03, 0x0C, 0x01, 0x09, 0x0A, 0x31, 0x62, + 0x62, 0x62, 0x31, 0x08, 0x11, 0x08, 0x14, 0x05, 0x05, 0x0E, + 0x06, 0x04, 0x06, 0x01, 0x01, 0x04, 0x07, 0x05, 0x01, 0x02, + 0x01, 0x01, 0x05, 0x04, 0x03, 0x02, 0x07, 0x13, 0x07, 0x12, + 0x23, 0x0C, 0x06, 0x07, 0x01, 0x01, 0x09, 0x0B, 0x03, 0x02, + 0x0A, 0x01, 0x0B, 0x02, 0x04, 0x06, 0x03, 0x04, 0x0E, 0x07, + 0x03, 0x04, 0x02, 0x03, 0x02, 0x02, 0x06, 0x06, 0x01, 0x05, + 0x3A, 0x0D, 0x05, 0x03, 0x09, 0x06, 0x0F, 0x06, 0x0C, 0x24, + 0x0D, 0x1A, 0x34, 0x19, 0x0A, 0x0E, 0x0A, 0x0A, 0x14, 0x0A, + 0x06, 0x12, 0x17, 0x03, 0x0A, 0x08, 0x07, 0x04, 0x04, 0x01, + 0x02, 0x08, 0x02, 0x04, 0x0B, 0x04, 0x04, 0x0A, 0x02, 0x02, + 0x07, 0x01, 0x05, 0x01, 0x02, 0x06, 0x07, 0x39, 0x71, 0x39, + 0x18, 0x31, 0x18, 0x03, 0x12, 0x04, 0x08, 0x04, 0x03, 0x02, + 0x0B, 0x0B, 0x06, 0x23, 0x09, 0x0E, 0x1C, 0x0E, 0x1C, 0x37, + 0x1C, 0x09, 0x42, 0x02, 0x03, 0x03, 0x01, 0x02, 0xFC, 0x94, + 0x03, 0x05, 0x01, 0x03, 0x04, 0x02, 0x19, 0x01, 0x0C, 0x07, + 0x08, 0x0E, 0x12, 0x24, 0x12, 0x21, 0x40, 0x20, 0x10, 0x01, + 0x01, 0x01, 0x0A, 0x01, 0x01, 0x0D, 0x12, 0x04, 0x03, 0x16, + 0x06, 0x0A, 0x06, 0x01, 0x01, 0x12, 0x07, 0x08, 0x12, 0x0C, + 0x09, 0x15, 0x0A, 0x06, 0x04, 0x04, 0x02, 0x0F, 0x06, 0x05, + 0x01, 0x09, 0x12, 0x07, 0x0A, 0x01, 0x08, 0x05, 0x16, 0x2D, + 0x16, 0x0E, 0x17, 0x0A, 0x04, 0x0F, 0x01, 0x02, 0x03, 0x25, + 0x04, 0x12, 0x03, 0x05, 0x04, 0x0A, 0x0F, 0x01, 0x02, 0x01, + 0x01, 0x06, 0x19, 0x06, 0x04, 0x02, 0x02, 0x0C, 0x04, 0x0B, + 0x01, 0x01, 0x05, 0x0A, 0x01, 0x06, 0x0A, 0x06, 0x01, 0x0C, + 0x11, 0x0B, 0x0A, 0x15, 0x0A, 0x09, 0x17, 0x0A, 0x0A, 0x05, + 0x05, 0x04, 0x19, 0x06, 0x07, 0x11, 0x07, 0x06, 0x03, 0x01, + 0x04, 0x02, 0x04, 0x04, 0x03, 0x09, 0x1C, 0x10, 0x08, 0x0C, + 0x0A, 0x07, 0x0C, 0x05, 0x05, 0x17, 0x05, 0x03, 0x10, 0x03, + 0x03, 0x18, 0x03, 0x06, 0x11, 0x07, 0x0D, 0x1B, 0x0D, 0x05, + 0x0F, 0x06, 0x07, 0x10, 0x07, 0x10, 0x26, 0x11, 0x05, 0x04, + 0x04, 0x05, 0x08, 0x05, 0x0B, 0x17, 0x0B, 0x19, 0x0F, 0x07, + 0x03, 0x0E, 0x03, 0x02, 0x02, 0x03, 0x07, 0x08, 0x01, 0x03, + 0x06, 0x06, 0x03, 0x06, 0x03, 0x04, 0x0B, 0x04, 0x07, 0x04, + 0x0C, 0x34, 0x0F, 0x08, 0x18, 0x09, 0x09, 0x0F, 0x08, 0x0F, + 0x1B, 0x0F, 0x0D, 0x19, 0x0D, 0x0A, 0x18, 0x0A, 0x09, 0x16, + 0x09, 0x06, 0x05, 0x01, 0x01, 0x05, 0x08, 0x13, 0x05, 0x02, + 0x30, 0x05, 0x09, 0x12, 0x09, 0x10, 0x10, 0x0B, 0x06, 0x04, + 0x05, 0x0C, 0x19, 0x36, 0x19, 0x1A, 0x35, 0x1A, 0xFD, 0x19, + 0x01, 0x02, 0x01, 0x01, 0x01, 0x8E, 0x08, 0x02, 0x01, 0x0E, + 0x02, 0x01, 0x02, 0x01, 0x13, 0x0C, 0x0B, 0x13, 0x0C, 0x0B, + 0x12, 0x0B, 0x0A, 0x0C, 0x07, 0x05, 0x09, 0x02, 0x03, 0x2E, + 0x08, 0x0F, 0x11, 0x0B, 0x0B, 0x0C, 0x06, 0x04, 0x01, 0x01, + 0x12, 0x02, 0x01, 0x02, 0x03, 0x03, 0x02, 0x05, 0x0D, 0x08, + 0x0D, 0x20, 0x0E, 0x06, 0x0E, 0x01, 0x05, 0x06, 0x01, 0x01, + 0x04, 0x0B, 0x04, 0x08, 0x03, 0x12, 0x23, 0x11, 0x08, 0x10, + 0x08, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x53, 0x00, 0x26, + 0x08, 0xFB, 0x03, 0x5A, 0x00, 0x64, 0x00, 0x8C, 0x00, 0x00, + 0x01, 0x2F, 0x01, 0x21, 0x07, 0x27, 0x21, 0x27, 0x07, 0x23, + 0x15, 0x23, 0x15, 0x23, 0x35, 0x27, 0x07, 0x35, 0x27, 0x23, + 0x15, 0x21, 0x15, 0x23, 0x35, 0x21, 0x2F, 0x02, 0x15, 0x0F, + 0x01, 0x27, 0x07, 0x27, 0x22, 0x06, 0x07, 0x14, 0x16, 0x1F, + 0x02, 0x0F, 0x01, 0x1F, 0x01, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x0F, 0x02, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x0F, 0x01, 0x05, + 0x27, 0x37, 0x13, 0x17, 0x3F, 0x01, 0x1F, 0x02, 0x3F, 0x03, + 0x3E, 0x01, 0x3F, 0x01, 0x21, 0x3F, 0x01, 0x35, 0x27, 0x35, + 0x33, 0x15, 0x33, 0x15, 0x33, 0x17, 0x37, 0x21, 0x37, 0x17, + 0x21, 0x3F, 0x02, 0x27, 0x01, 0x0F, 0x02, 0x2F, 0x04, 0x2E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x3F, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x16, 0x1F, 0x01, 0x37, 0x2F, 0x01, + 0x34, 0x36, 0x3F, 0x03, 0x1F, 0x02, 0x15, 0x08, 0xF8, 0x08, + 0x07, 0xFE, 0x46, 0x0A, 0x0A, 0xFE, 0xA9, 0x0D, 0x0A, 0x96, + 0x2B, 0x1C, 0x0B, 0x0A, 0x08, 0x48, 0xFE, 0xD2, 0xAF, 0xFE, + 0xC7, 0x09, 0x5C, 0x17, 0x1E, 0x13, 0x2B, 0x07, 0x10, 0x08, + 0x09, 0x02, 0x04, 0x05, 0x0A, 0x35, 0x03, 0x01, 0x0B, 0x26, + 0x0E, 0x13, 0x04, 0x06, 0x03, 0x02, 0x0A, 0x14, 0x10, 0x1A, + 0x0A, 0x09, 0x0E, 0x04, 0x03, 0x01, 0x35, 0x10, 0x03, 0x49, + 0x0A, 0x1A, 0x16, 0x16, 0x25, 0x15, 0x96, 0x17, 0x0E, 0x3A, + 0x02, 0x06, 0x03, 0x06, 0x01, 0x46, 0x03, 0x07, 0x07, 0x1E, + 0x31, 0x91, 0x0D, 0x09, 0x01, 0x57, 0x09, 0x06, 0x01, 0xBF, + 0x05, 0x09, 0x04, 0x02, 0xFA, 0x55, 0x15, 0x1D, 0x3F, 0x47, + 0x1F, 0x2A, 0x25, 0x19, 0x04, 0x01, 0x02, 0x03, 0x0A, 0x08, + 0x05, 0x13, 0x0D, 0x17, 0x10, 0x09, 0x0B, 0x01, 0x01, 0x05, + 0x06, 0x0B, 0x0A, 0x06, 0x02, 0x06, 0x05, 0x11, 0x23, 0xA4, + 0x0A, 0x10, 0x02, 0x03, 0x2D, 0x1E, 0x09, 0x04, 0x01, 0x06, + 0x06, 0x2A, 0x14, 0x17, 0x0D, 0x01, 0x1A, 0x0A, 0x27, 0x05, + 0x06, 0x07, 0x02, 0x0D, 0x19, 0x39, 0x5E, 0x1C, 0x26, 0x02, + 0x07, 0x08, 0x05, 0x0A, 0x03, 0x03, 0x06, 0x15, 0x21, 0x0C, + 0x0D, 0x05, 0x09, 0x05, 0x05, 0x0D, 0x09, 0x1A, 0x29, 0x23, + 0x4A, 0x27, 0x27, 0x52, 0x2B, 0x47, 0x03, 0x17, 0x23, 0x01, + 0x36, 0x03, 0x03, 0x05, 0x03, 0x0C, 0x08, 0x05, 0x05, 0x10, + 0x8C, 0x05, 0x08, 0x03, 0x03, 0x31, 0x06, 0x18, 0x06, 0x32, + 0x15, 0x1A, 0x05, 0x06, 0x03, 0x04, 0x0D, 0x1E, 0x38, 0x35, + 0xFE, 0xEC, 0x3C, 0x41, 0x04, 0x03, 0x02, 0x02, 0x10, 0x1D, + 0x09, 0x14, 0x0B, 0x0A, 0x12, 0x09, 0x06, 0x0A, 0x04, 0x06, + 0x13, 0x0C, 0x1A, 0x0F, 0x08, 0x16, 0x0D, 0x18, 0x07, 0x0E, + 0x1D, 0x0A, 0x12, 0x08, 0x17, 0x24, 0x01, 0x01, 0x09, 0x0E, + 0x09, 0x00, 0x00, 0x02, 0x00, 0x65, 0x00, 0x26, 0x05, 0xF6, + 0x03, 0x5F, 0x01, 0x7B, 0x01, 0xB4, 0x00, 0x00, 0x01, 0x3E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, + 0x33, 0x3A, 0x03, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x37, + 0x36, 0x26, 0x35, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x32, + 0x36, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x16, 0x15, 0x14, 0x06, + 0x17, 0x30, 0x17, 0x16, 0x35, 0x14, 0x36, 0x17, 0x16, 0x06, + 0x17, 0x32, 0x16, 0x15, 0x1C, 0x01, 0x15, 0x26, 0x16, 0x23, + 0x32, 0x36, 0x17, 0x26, 0x16, 0x35, 0x1C, 0x01, 0x15, 0x16, + 0x06, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x26, 0x23, 0x22, 0x26, + 0x0F, 0x01, 0x06, 0x15, 0x14, 0x06, 0x23, 0x0E, 0x01, 0x07, + 0x06, 0x0F, 0x01, 0x14, 0x26, 0x27, 0x26, 0x06, 0x27, 0x22, + 0x26, 0x23, 0x22, 0x06, 0x23, 0x22, 0x06, 0x15, 0x1C, 0x01, + 0x15, 0x1C, 0x01, 0x15, 0x14, 0x22, 0x23, 0x22, 0x06, 0x07, + 0x0E, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x1C, + 0x01, 0x15, 0x14, 0x32, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x15, 0x1C, 0x01, 0x15, + 0x14, 0x16, 0x07, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x2A, 0x01, 0x27, 0x26, 0x36, 0x35, 0x3C, 0x01, + 0x35, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x35, 0x34, 0x26, 0x35, + 0x34, 0x3D, 0x01, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x16, 0x15, 0x26, 0x22, 0x27, 0x22, 0x06, 0x23, 0x0E, 0x01, + 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x32, 0x17, 0x1E, 0x01, 0x15, 0x1C, 0x01, + 0x07, 0x06, 0x26, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x27, + 0x22, 0x26, 0x23, 0x22, 0x26, 0x27, 0x2A, 0x01, 0x35, 0x14, + 0x26, 0x27, 0x26, 0x34, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x35, 0x34, 0x36, 0x35, 0x37, 0x36, 0x37, 0x3E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x35, + 0x34, 0x06, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x26, 0x35, 0x3C, 0x01, + 0x35, 0x34, 0x36, 0x35, 0x3C, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x35, 0x36, 0x37, 0x32, 0x36, 0x33, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x16, 0x36, + 0x17, 0x26, 0x36, 0x33, 0x1E, 0x01, 0x15, 0x14, 0x16, 0x17, + 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x02, 0x16, 0x3B, + 0x01, 0x31, 0x34, 0x26, 0x37, 0x03, 0x2E, 0x01, 0x27, 0x26, + 0x06, 0x23, 0x2A, 0x01, 0x23, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x35, + 0x34, 0x26, 0x27, 0x3C, 0x01, 0x35, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x15, 0x14, 0x06, 0x15, 0x14, 0x16, 0x32, 0x16, 0x33, + 0x26, 0x36, 0x37, 0x32, 0x36, 0x15, 0x34, 0x36, 0x27, 0x2E, + 0x01, 0x35, 0x02, 0xFD, 0x11, 0x1C, 0x11, 0x05, 0x0D, 0x05, + 0x04, 0x02, 0x01, 0x01, 0x2D, 0x5A, 0x5A, 0x5B, 0x2D, 0x25, + 0x4C, 0x26, 0x05, 0x03, 0x02, 0x01, 0x01, 0x02, 0x01, 0x02, + 0x02, 0x0D, 0x03, 0x09, 0x12, 0x07, 0x01, 0x07, 0x08, 0x01, + 0x02, 0x04, 0x04, 0x0B, 0x02, 0x02, 0x04, 0x04, 0x01, 0x03, + 0x01, 0x0C, 0x04, 0x09, 0x15, 0x08, 0x02, 0x09, 0x01, 0x01, + 0x09, 0x07, 0x07, 0x18, 0x05, 0x01, 0x02, 0x07, 0x02, 0x02, + 0x02, 0x02, 0x02, 0x03, 0x03, 0x0E, 0x05, 0x26, 0x4C, 0x26, + 0x2F, 0x5E, 0x2F, 0x03, 0x05, 0x02, 0x0B, 0x06, 0x2E, 0x09, + 0x0C, 0x0F, 0x09, 0x04, 0x0D, 0x0C, 0x02, 0x04, 0x02, 0x02, + 0x02, 0x03, 0x09, 0x07, 0x06, 0x02, 0x02, 0x02, 0x02, 0x02, + 0x01, 0x13, 0x02, 0x1B, 0x37, 0x1B, 0x0C, 0x16, 0x0B, 0x09, + 0x05, 0x03, 0x03, 0x03, 0x05, 0x05, 0x09, 0x04, 0x26, 0x03, + 0x0F, 0x1D, 0x0F, 0x13, 0x26, 0x13, 0x09, 0x02, 0x14, 0x29, + 0x14, 0x05, 0x07, 0x02, 0x01, 0x07, 0x05, 0x02, 0x04, 0x05, + 0x03, 0x02, 0x01, 0x02, 0x02, 0x05, 0x01, 0x04, 0x04, 0x02, + 0x01, 0x05, 0x01, 0x02, 0x03, 0x01, 0x03, 0x03, 0x03, 0x02, + 0x04, 0x09, 0x06, 0x13, 0x02, 0x09, 0x13, 0x06, 0x15, 0x27, + 0x15, 0x10, 0x20, 0x13, 0x05, 0x0B, 0x06, 0x07, 0x16, 0x10, + 0x02, 0x02, 0x07, 0x03, 0x02, 0x06, 0x02, 0x01, 0x01, 0x01, + 0x01, 0x02, 0x01, 0x02, 0x01, 0x03, 0x0B, 0x11, 0x07, 0x07, + 0x16, 0x07, 0x02, 0x05, 0x03, 0x01, 0x08, 0x10, 0x02, 0x03, + 0x01, 0x02, 0x06, 0x01, 0x01, 0x07, 0x02, 0x02, 0x05, 0x04, + 0x05, 0x03, 0x19, 0x07, 0x08, 0x10, 0x06, 0x06, 0x07, 0x04, + 0x02, 0x09, 0x01, 0x03, 0x07, 0x02, 0x02, 0x04, 0x04, 0x03, + 0x02, 0x02, 0x04, 0x02, 0x01, 0x01, 0x01, 0x09, 0x01, 0x04, + 0x02, 0x02, 0x06, 0x0C, 0x06, 0x07, 0x1B, 0x02, 0x02, 0x05, + 0x02, 0x01, 0x0B, 0x0A, 0x05, 0x11, 0x03, 0x01, 0x03, 0x15, + 0x06, 0x15, 0x2A, 0x15, 0x2F, 0x5E, 0x5D, 0x5E, 0x2F, 0x01, + 0x01, 0x02, 0x45, 0x04, 0x05, 0x08, 0x06, 0x15, 0x07, 0x0C, + 0x18, 0x0C, 0x02, 0x13, 0x08, 0x03, 0x12, 0x01, 0x01, 0x10, + 0x08, 0x0E, 0x14, 0x0B, 0x02, 0x0E, 0x09, 0x02, 0x0D, 0x03, + 0x07, 0x03, 0x07, 0x09, 0x32, 0x3E, 0x39, 0x07, 0x01, 0x03, + 0x03, 0x01, 0x08, 0x01, 0x01, 0x01, 0x04, 0x03, 0x44, 0x09, + 0x12, 0x0B, 0x04, 0x07, 0x05, 0x04, 0x05, 0x07, 0x02, 0x12, + 0x01, 0x03, 0x01, 0x05, 0x01, 0x02, 0x01, 0x02, 0x02, 0x0F, + 0x01, 0x05, 0x01, 0x08, 0x02, 0x02, 0x03, 0x04, 0x02, 0x05, + 0x01, 0x03, 0x04, 0x01, 0x08, 0x01, 0x05, 0x03, 0x10, 0x02, + 0x0B, 0x02, 0x02, 0x04, 0x02, 0x04, 0x0A, 0x03, 0x03, 0x01, + 0x07, 0x02, 0x02, 0x05, 0x02, 0x07, 0x10, 0x07, 0x04, 0x07, + 0x03, 0x08, 0x01, 0x03, 0x04, 0x08, 0x07, 0x01, 0x03, 0x0C, + 0x01, 0x09, 0x02, 0x02, 0x04, 0x04, 0x09, 0x03, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x0A, 0x08, 0x0F, 0x07, 0x08, + 0x0F, 0x07, 0x09, 0x1E, 0x09, 0x04, 0x0C, 0x08, 0x0A, 0x13, + 0x09, 0x06, 0x0D, 0x06, 0x02, 0x06, 0x03, 0x01, 0x03, 0x08, + 0x18, 0x07, 0x0A, 0x09, 0x05, 0x03, 0x09, 0x08, 0x0E, 0x20, + 0x0E, 0x2F, 0x5E, 0x2F, 0x03, 0x11, 0x02, 0x01, 0x01, 0x05, + 0x07, 0x1F, 0x08, 0x39, 0x73, 0x39, 0x03, 0x0D, 0x03, 0x05, + 0x08, 0x1A, 0x0B, 0x01, 0x0C, 0x0C, 0x13, 0x08, 0x01, 0x01, + 0x20, 0x01, 0x0B, 0x02, 0x06, 0x06, 0x05, 0x07, 0x10, 0x07, + 0x05, 0x06, 0x05, 0x03, 0x0A, 0x03, 0x08, 0x0D, 0x08, 0x03, + 0x08, 0x02, 0x05, 0x0A, 0x05, 0x09, 0x06, 0x03, 0x0C, 0x02, + 0x0A, 0x18, 0x05, 0x02, 0x06, 0x02, 0x01, 0x01, 0x02, 0x01, + 0x05, 0x03, 0x01, 0x09, 0x01, 0x07, 0x04, 0x04, 0x09, 0x05, + 0x12, 0x1B, 0x10, 0x07, 0x0E, 0x08, 0x02, 0x04, 0x01, 0x03, + 0x02, 0x02, 0x04, 0x09, 0x03, 0x0B, 0x22, 0x0F, 0x11, 0x1D, + 0x0D, 0x04, 0x06, 0x03, 0x02, 0x0D, 0x01, 0x09, 0x0D, 0x0A, + 0x07, 0x08, 0x02, 0x06, 0x06, 0x07, 0x04, 0x0A, 0x03, 0x04, + 0x0A, 0x04, 0x05, 0x08, 0x08, 0x08, 0x02, 0x02, 0x01, 0x01, + 0x0B, 0x02, 0x01, 0x0A, 0x02, 0x02, 0x09, 0x04, 0x06, 0x15, + 0x08, 0x0F, 0x1E, 0x0F, 0x0A, 0x15, 0x07, 0x04, 0x09, 0x02, + 0x01, 0x03, 0x02, 0x01, 0x02, 0x01, 0x02, 0x03, 0x01, 0x06, + 0x02, 0x03, 0x02, 0x04, 0x07, 0x04, 0x03, 0x0F, 0x09, 0x01, + 0x01, 0x01, 0x0B, 0x09, 0x01, 0x01, 0x05, 0x03, 0x0F, 0x01, + 0x04, 0x01, 0x01, 0x07, 0x12, 0x05, 0xFE, 0xA1, 0x08, 0x14, + 0x04, 0x02, 0x01, 0x0C, 0x15, 0x07, 0x03, 0x08, 0x04, 0x09, + 0x09, 0x03, 0x04, 0x0A, 0x0B, 0x03, 0x0B, 0x03, 0x03, 0x11, + 0x03, 0x01, 0x03, 0x01, 0x02, 0x1B, 0x07, 0x03, 0x11, 0x04, + 0x05, 0x0C, 0x05, 0x02, 0x02, 0x01, 0x05, 0x05, 0x04, 0x0E, + 0x01, 0x04, 0x05, 0x04, 0x04, 0x06, 0x04, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x5A, 0x00, 0x26, 0x05, 0x2D, 0x03, 0x5A, + 0x00, 0xCC, 0x00, 0xDC, 0x01, 0x0D, 0x00, 0x00, 0x01, 0x16, + 0x32, 0x33, 0x3E, 0x01, 0x33, 0x16, 0x3A, 0x02, 0x33, 0x3E, + 0x01, 0x37, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x32, 0x16, 0x17, 0x16, 0x14, 0x07, 0x2A, 0x01, 0x27, + 0x06, 0x16, 0x07, 0x0E, 0x01, 0x23, 0x06, 0x26, 0x07, 0x36, + 0x16, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x22, 0x06, + 0x23, 0x1E, 0x03, 0x17, 0x1E, 0x01, 0x17, 0x0E, 0x01, 0x07, + 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x22, + 0x06, 0x27, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x03, + 0x27, 0x2E, 0x01, 0x27, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x15, + 0x14, 0x16, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x26, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x0E, 0x01, 0x23, 0x22, + 0x26, 0x27, 0x3C, 0x01, 0x35, 0x2E, 0x01, 0x27, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x26, 0x27, 0x26, 0x06, 0x27, 0x26, 0x36, 0x27, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, + 0x37, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, + 0x3E, 0x01, 0x37, 0x36, 0x16, 0x33, 0x3E, 0x01, 0x37, 0x36, + 0x16, 0x33, 0x1E, 0x01, 0x17, 0x3A, 0x01, 0x17, 0x05, 0x22, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x1E, 0x01, 0x17, 0x3E, 0x01, + 0x27, 0x36, 0x26, 0x27, 0x05, 0x26, 0x06, 0x07, 0x14, 0x06, + 0x15, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x15, + 0x22, 0x26, 0x27, 0x26, 0x36, 0x27, 0x36, 0x26, 0x27, 0x34, + 0x36, 0x35, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, + 0x2E, 0x01, 0x27, 0x02, 0x4B, 0x1B, 0x36, 0x1B, 0x0D, 0x1B, + 0x0D, 0x29, 0x52, 0x52, 0x52, 0x29, 0x02, 0x02, 0x04, 0x09, + 0x13, 0x09, 0x04, 0x07, 0x06, 0x05, 0x02, 0x04, 0x2A, 0x55, + 0x2A, 0x07, 0x07, 0x2B, 0x56, 0x2B, 0x04, 0x03, 0x04, 0x02, + 0x0C, 0x06, 0x27, 0x4F, 0x27, 0x0D, 0x14, 0x0C, 0x03, 0x05, + 0x02, 0x06, 0x0E, 0x07, 0x0B, 0x16, 0x0B, 0x12, 0x21, 0x22, + 0x21, 0x11, 0x06, 0x0F, 0x05, 0x03, 0x06, 0x03, 0x01, 0x01, + 0x05, 0x0E, 0x06, 0x05, 0x07, 0x06, 0x08, 0x0E, 0x07, 0x10, + 0x20, 0x10, 0x06, 0x06, 0x02, 0x0F, 0x1E, 0x1E, 0x1F, 0x0F, + 0x0D, 0x1C, 0x0E, 0x07, 0x0A, 0x03, 0x02, 0x04, 0x01, 0x01, + 0x0B, 0x1A, 0x0D, 0x16, 0x2E, 0x17, 0x13, 0x25, 0x12, 0x0F, + 0x22, 0x0F, 0x0F, 0x12, 0x05, 0x07, 0x14, 0x08, 0x07, 0x0F, + 0x04, 0x02, 0x01, 0x01, 0x08, 0x11, 0x03, 0x06, 0x0F, 0x09, + 0x02, 0x05, 0x03, 0x2F, 0x5D, 0x2F, 0x05, 0x0A, 0x04, 0x10, + 0x24, 0x06, 0x03, 0x06, 0x07, 0x0A, 0x15, 0x0B, 0x05, 0x0C, + 0x06, 0x0B, 0x1B, 0x09, 0x06, 0x0A, 0x13, 0x12, 0x2A, 0x14, + 0x08, 0x02, 0x01, 0x14, 0x2A, 0x0F, 0x06, 0x01, 0x01, 0x02, + 0x09, 0x08, 0x06, 0x0B, 0x01, 0x01, 0x07, 0x05, 0x04, 0x08, + 0x04, 0x07, 0x0C, 0x06, 0x05, 0x0C, 0x05, 0x0C, 0x18, 0x0B, + 0x03, 0x04, 0x02, 0x06, 0x0C, 0x06, 0x03, 0x05, 0x02, 0x42, + 0x84, 0x42, 0xFE, 0x72, 0x02, 0x05, 0x02, 0x01, 0x03, 0x01, + 0x02, 0x09, 0x05, 0x03, 0x07, 0x01, 0x01, 0x09, 0x03, 0x01, + 0xE4, 0x11, 0x1D, 0x10, 0x01, 0x04, 0x0D, 0x02, 0x03, 0x08, + 0x0B, 0x06, 0x0E, 0x10, 0x17, 0x09, 0x0A, 0x08, 0x01, 0x01, + 0x06, 0x02, 0x01, 0x0D, 0x16, 0x09, 0x0A, 0x0D, 0x01, 0x01, + 0x1E, 0x13, 0x20, 0x42, 0x1E, 0x10, 0x17, 0x04, 0x01, 0x02, + 0x08, 0x07, 0x18, 0x0C, 0x03, 0x41, 0x03, 0x02, 0x01, 0x01, + 0x05, 0x0A, 0x04, 0x01, 0x01, 0x01, 0x06, 0x0D, 0x04, 0x03, + 0x0B, 0x03, 0x01, 0x01, 0x0F, 0x23, 0x10, 0x01, 0x11, 0x22, + 0x10, 0x07, 0x04, 0x01, 0x01, 0x02, 0x01, 0x10, 0x04, 0x02, + 0x06, 0x04, 0x05, 0x07, 0x03, 0x01, 0x36, 0x6C, 0x6B, 0x6C, + 0x36, 0x16, 0x2A, 0x16, 0x03, 0x04, 0x03, 0x06, 0x0C, 0x05, + 0x05, 0x02, 0x01, 0x01, 0x0B, 0x01, 0x07, 0x01, 0x01, 0x01, + 0x06, 0x10, 0x08, 0x2F, 0x5F, 0x5F, 0x5E, 0x30, 0x2D, 0x5B, + 0x2D, 0x06, 0x10, 0x09, 0x09, 0x12, 0x0A, 0x0E, 0x1E, 0x0F, + 0x09, 0x0B, 0x05, 0x08, 0x08, 0x02, 0x02, 0x08, 0x06, 0x05, + 0x07, 0x08, 0x05, 0x1B, 0x0F, 0x1C, 0x38, 0x1C, 0x16, 0x2B, + 0x16, 0x0F, 0x1E, 0x0F, 0x04, 0x08, 0x09, 0x08, 0x0D, 0x06, + 0x01, 0x02, 0x01, 0x01, 0x01, 0x05, 0x02, 0x07, 0x0D, 0x06, + 0x02, 0x0D, 0x11, 0x19, 0x33, 0x18, 0x20, 0x40, 0x20, 0x0E, + 0x1A, 0x0D, 0x15, 0x26, 0x16, 0x14, 0x2D, 0x0C, 0x0B, 0x05, + 0x01, 0x05, 0x12, 0x07, 0x06, 0x06, 0x10, 0x06, 0x10, 0x08, + 0x0B, 0x15, 0x07, 0x06, 0x0C, 0x09, 0x08, 0x0C, 0x05, 0x02, + 0x04, 0x01, 0x01, 0x05, 0x02, 0x07, 0x0D, 0x06, 0x01, 0x01, + 0x06, 0x0C, 0x05, 0x01, 0x01, 0x05, 0x0C, 0x06, 0x01, 0x24, + 0x02, 0x01, 0x02, 0x05, 0x02, 0x05, 0x07, 0x01, 0x03, 0x06, + 0x04, 0x06, 0x04, 0x02, 0xA7, 0x02, 0x0F, 0x01, 0x03, 0x05, + 0x03, 0x08, 0x0E, 0x0A, 0x0F, 0x20, 0x0B, 0x05, 0x0B, 0x09, + 0x17, 0x0C, 0x0F, 0x24, 0x11, 0x04, 0x05, 0x03, 0x02, 0x06, + 0x02, 0x0D, 0x08, 0x0A, 0x1B, 0x0E, 0x15, 0x20, 0x06, 0x07, + 0x06, 0x0F, 0x08, 0x1D, 0x11, 0x0D, 0x1C, 0x0B, 0x0B, 0x0D, + 0x02, 0x00, 0x00, 0x05, 0x00, 0x5B, 0x00, 0x27, 0x06, 0xE3, + 0x03, 0x5A, 0x00, 0xD6, 0x00, 0xE6, 0x00, 0xF3, 0x01, 0x06, + 0x01, 0x34, 0x00, 0x00, 0x01, 0x14, 0x16, 0x17, 0x16, 0x06, + 0x17, 0x16, 0x06, 0x07, 0x06, 0x16, 0x07, 0x14, 0x06, 0x23, + 0x2A, 0x01, 0x23, 0x2A, 0x03, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x14, 0x07, 0x06, 0x26, + 0x07, 0x0E, 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x23, + 0x2A, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x06, + 0x16, 0x17, 0x16, 0x06, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x22, 0x16, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x32, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x37, 0x36, 0x26, 0x27, + 0x26, 0x06, 0x27, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, + 0x26, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x32, 0x33, 0x2E, 0x01, + 0x27, 0x26, 0x36, 0x37, 0x36, 0x16, 0x33, 0x32, 0x06, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x36, 0x33, 0x32, 0x36, 0x17, 0x1E, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x33, 0x3A, 0x01, + 0x33, 0x32, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x3A, + 0x01, 0x17, 0x1E, 0x01, 0x37, 0x05, 0x36, 0x06, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x26, 0x07, 0x06, 0x32, 0x33, 0x3A, 0x01, + 0x33, 0x37, 0x36, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x06, 0x36, + 0x33, 0x3A, 0x01, 0x33, 0x17, 0x3A, 0x01, 0x33, 0x3A, 0x01, + 0x33, 0x32, 0x36, 0x27, 0x26, 0x06, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x26, 0x17, 0x01, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x34, 0x26, 0x23, 0x0E, 0x01, 0x07, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x06, + 0xC2, 0x1C, 0x02, 0x01, 0x01, 0x01, 0x02, 0x07, 0x04, 0x02, + 0x04, 0x01, 0x05, 0x06, 0x0A, 0x14, 0x09, 0x3D, 0x78, 0x78, + 0x78, 0x3C, 0x2F, 0x5C, 0x2F, 0x10, 0x05, 0x07, 0x07, 0x0A, + 0x02, 0x01, 0x04, 0x08, 0x35, 0x10, 0x0D, 0x47, 0x08, 0x17, + 0x13, 0x36, 0x17, 0x14, 0x2D, 0x10, 0x12, 0x1B, 0x07, 0x01, + 0x0C, 0x06, 0x03, 0x08, 0x01, 0x03, 0x0B, 0x0B, 0x08, 0x15, + 0x0A, 0x0C, 0x17, 0x0C, 0x08, 0x05, 0x01, 0x01, 0x04, 0x01, + 0x02, 0x11, 0x05, 0x08, 0x07, 0x02, 0x02, 0x01, 0x0C, 0x09, + 0x0C, 0x07, 0x04, 0x02, 0x39, 0x11, 0x19, 0x31, 0x19, 0x15, + 0x28, 0x0E, 0x10, 0x03, 0x03, 0x08, 0x31, 0x1E, 0x0A, 0x14, + 0x0A, 0x0B, 0x1B, 0x08, 0x04, 0x01, 0x05, 0x04, 0x0A, 0x06, + 0x06, 0x08, 0x05, 0x0B, 0x1D, 0x0C, 0x0E, 0x08, 0x09, 0x09, + 0x0D, 0x0C, 0x06, 0x0C, 0x06, 0x05, 0x0D, 0x05, 0x16, 0x1B, + 0x10, 0x0A, 0x1B, 0x07, 0x0B, 0x15, 0x0C, 0x0D, 0x18, 0x0E, + 0x0B, 0x01, 0x07, 0x04, 0x08, 0x04, 0x0D, 0x18, 0x10, 0x07, + 0x1B, 0x04, 0x01, 0x01, 0x02, 0x02, 0x12, 0x03, 0x06, 0x04, + 0x04, 0x09, 0x02, 0x07, 0x06, 0x09, 0x20, 0x08, 0x03, 0x05, + 0x04, 0x05, 0x0C, 0x05, 0x13, 0x25, 0x12, 0x39, 0x70, 0x38, + 0x0B, 0x0B, 0x09, 0x11, 0x23, 0x11, 0x33, 0x67, 0x66, 0x67, + 0x33, 0x1D, 0x3A, 0x1D, 0x0D, 0x1C, 0x0B, 0x08, 0x0E, 0x08, + 0x06, 0x05, 0x02, 0x01, 0x02, 0x08, 0xFD, 0xDE, 0x05, 0x2B, + 0x09, 0x0C, 0x18, 0x0B, 0x03, 0x16, 0x02, 0x0C, 0x38, 0x03, + 0x12, 0x26, 0x12, 0xFE, 0x05, 0x33, 0x08, 0x12, 0x24, 0x11, + 0x01, 0x2E, 0x08, 0x12, 0x24, 0x12, 0x7D, 0x11, 0x24, 0x12, + 0x0A, 0x15, 0x0A, 0x02, 0x12, 0x07, 0x01, 0x11, 0x02, 0x0D, + 0x19, 0x0C, 0x08, 0x33, 0x04, 0xFC, 0xC3, 0x08, 0x0F, 0x09, + 0x0D, 0x0D, 0x03, 0x04, 0x09, 0x08, 0x02, 0x09, 0x04, 0x06, + 0x05, 0x06, 0x11, 0x0F, 0x05, 0x1F, 0x02, 0x0C, 0x15, 0x0C, + 0x05, 0x09, 0x05, 0x08, 0x0F, 0x10, 0x16, 0x4A, 0x1A, 0x15, + 0x1B, 0x0A, 0x06, 0x01, 0x01, 0x02, 0x06, 0x12, 0x0A, 0x23, + 0x06, 0x03, 0x33, 0x15, 0x1E, 0x16, 0x0A, 0x12, 0x0A, 0x0D, + 0x15, 0x0D, 0x06, 0x17, 0x08, 0x04, 0x1D, 0x04, 0x11, 0x10, + 0x21, 0x12, 0x08, 0x21, 0x07, 0x0C, 0x06, 0x05, 0x04, 0x11, + 0x0E, 0x1C, 0x3B, 0x13, 0x10, 0x08, 0x0D, 0x0F, 0x1E, 0x17, + 0x03, 0x25, 0x0A, 0x05, 0x23, 0x05, 0x0E, 0x02, 0x05, 0x03, + 0x06, 0x02, 0x02, 0x05, 0x01, 0x1C, 0x07, 0x0C, 0x17, 0x0C, + 0x08, 0x14, 0x07, 0x0C, 0x0D, 0x0F, 0x0D, 0x18, 0x0D, 0x0C, + 0x07, 0x08, 0x0B, 0x0D, 0x0E, 0x15, 0x01, 0x01, 0x03, 0x02, + 0x01, 0x01, 0x13, 0x18, 0x32, 0x1B, 0x40, 0x79, 0x39, 0x12, + 0x24, 0x12, 0x15, 0x2D, 0x16, 0x0B, 0x15, 0x0A, 0x08, 0x04, + 0x03, 0x0D, 0x04, 0x06, 0x04, 0x02, 0x03, 0x08, 0x09, 0x08, + 0x0D, 0x03, 0x01, 0x03, 0x01, 0x01, 0x03, 0x03, 0x0A, 0x23, + 0x01, 0x01, 0x0B, 0x0A, 0x05, 0x08, 0x02, 0x02, 0x06, 0x03, + 0x07, 0x04, 0x08, 0x04, 0x0A, 0x04, 0x0C, 0x06, 0x03, 0x27, + 0x02, 0x02, 0x02, 0x08, 0x01, 0x09, 0x06, 0x01, 0x04, 0x04, + 0x01, 0x0B, 0x03, 0x06, 0x0D, 0x04, 0x03, 0x05, 0x06, 0x06, + 0x08, 0x02, 0x28, 0x0F, 0x04, 0x02, 0x02, 0x0B, 0x01, 0x0E, + 0x04, 0x0D, 0x03, 0x01, 0x01, 0x07, 0x02, 0x02, 0x04, 0x0C, + 0xFE, 0xA1, 0x05, 0x08, 0x03, 0x03, 0x02, 0x0E, 0x11, 0x18, + 0x0E, 0x03, 0x08, 0x03, 0x05, 0x04, 0x05, 0x0F, 0x23, 0x15, + 0x02, 0x08, 0x03, 0x06, 0x03, 0x0C, 0x18, 0x0C, 0x12, 0x0F, + 0x0B, 0x10, 0x02, 0x06, 0x05, 0x13, 0x13, 0x0B, 0x1D, 0x0D, + 0x13, 0x07, 0x07, 0x04, 0x11, 0x0F, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x5D, 0x00, 0x26, 0x04, 0xE3, 0x03, 0x5A, 0x00, 0xE7, + 0x00, 0xF7, 0x01, 0x07, 0x00, 0x00, 0x01, 0x1C, 0x01, 0x07, + 0x06, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x16, 0x17, 0x16, 0x06, 0x17, 0x1E, 0x01, + 0x17, 0x22, 0x26, 0x23, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x26, 0x23, 0x06, 0x26, 0x27, 0x1C, 0x01, 0x15, 0x1C, + 0x01, 0x15, 0x14, 0x26, 0x07, 0x06, 0x16, 0x15, 0x1C, 0x01, + 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x23, 0x2A, 0x01, 0x23, + 0x2A, 0x01, 0x23, 0x22, 0x36, 0x35, 0x3C, 0x01, 0x35, 0x34, + 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x27, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x26, 0x27, 0x26, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x2B, + 0x01, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x23, + 0x22, 0x26, 0x27, 0x26, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x35, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x30, 0x17, 0x16, + 0x17, 0x16, 0x06, 0x07, 0x06, 0x22, 0x23, 0x22, 0x26, 0x27, + 0x2E, 0x01, 0x27, 0x2A, 0x01, 0x27, 0x31, 0x27, 0x06, 0x36, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x35, 0x36, + 0x34, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x37, + 0x36, 0x26, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, + 0x06, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x17, 0x05, 0x16, + 0x32, 0x33, 0x32, 0x36, 0x27, 0x26, 0x06, 0x23, 0x22, 0x26, + 0x07, 0x0E, 0x01, 0x17, 0x01, 0x22, 0x06, 0x15, 0x1C, 0x01, + 0x15, 0x1E, 0x01, 0x17, 0x3E, 0x01, 0x37, 0x2E, 0x01, 0x23, + 0x04, 0xE3, 0x0C, 0x07, 0x27, 0x0A, 0x10, 0x01, 0x04, 0x0D, + 0x22, 0x46, 0x23, 0x0E, 0x05, 0x01, 0x01, 0x0D, 0x01, 0x02, + 0x02, 0x01, 0x11, 0x22, 0x11, 0x03, 0x1A, 0x04, 0x09, 0x11, + 0x0E, 0x09, 0x14, 0x09, 0x1B, 0x2E, 0x18, 0x0F, 0x04, 0x02, + 0x02, 0x01, 0x03, 0x0A, 0x15, 0x0A, 0x19, 0x31, 0x19, 0x03, + 0x01, 0x0F, 0x10, 0x0D, 0x1A, 0x0C, 0x0A, 0x09, 0x06, 0x02, + 0x06, 0x01, 0x03, 0x06, 0x04, 0x08, 0x11, 0x09, 0x02, 0x03, + 0x06, 0x07, 0x0D, 0x0A, 0x0C, 0x38, 0x0F, 0x08, 0x0A, 0x05, + 0x09, 0x0D, 0x04, 0x04, 0x16, 0x04, 0x0F, 0x1E, 0x0F, 0x02, + 0x0C, 0x0C, 0x1B, 0x04, 0x0B, 0x11, 0x0A, 0x09, 0x14, 0x09, + 0x07, 0x0D, 0x03, 0x08, 0x0B, 0x02, 0x03, 0x02, 0x02, 0x01, + 0x02, 0x01, 0x01, 0x1D, 0x50, 0x9E, 0x4F, 0x08, 0x0F, 0x08, + 0x03, 0x03, 0x01, 0x02, 0x04, 0x05, 0x10, 0x28, 0x12, 0x13, + 0x24, 0x12, 0x0E, 0x1C, 0x0D, 0x03, 0x15, 0x01, 0x01, 0x02, + 0x10, 0x09, 0x0B, 0x15, 0x0A, 0x15, 0x28, 0x15, 0x24, 0x48, + 0x24, 0x2A, 0x53, 0x2A, 0x19, 0x33, 0x19, 0x04, 0x01, 0x02, + 0x0C, 0x10, 0x24, 0x10, 0x06, 0x09, 0x02, 0x05, 0x03, 0x09, + 0x18, 0x2F, 0x18, 0x03, 0x07, 0x04, 0x05, 0x03, 0x02, 0x02, + 0x01, 0x06, 0x0A, 0x39, 0x0B, 0x11, 0x01, 0x02, 0x12, 0x0B, + 0x17, 0x0C, 0x0C, 0x07, 0x07, 0xFE, 0x08, 0x17, 0x2D, 0x19, + 0x13, 0x24, 0x06, 0x06, 0x3B, 0x16, 0x0A, 0x1D, 0x0A, 0x0E, + 0x05, 0x0D, 0xFD, 0xC8, 0x09, 0x08, 0x01, 0x02, 0x02, 0x06, + 0x0D, 0x08, 0x04, 0x07, 0x04, 0x02, 0xC8, 0x11, 0x16, 0x0C, + 0x07, 0x04, 0x12, 0x0D, 0x0B, 0x1A, 0x0E, 0x0B, 0x08, 0x04, + 0x08, 0x06, 0x0D, 0x07, 0x01, 0x01, 0x32, 0x05, 0x0B, 0x11, + 0x03, 0x03, 0x01, 0x01, 0x07, 0x0F, 0x2D, 0x5C, 0x2D, 0x09, + 0x10, 0x09, 0x09, 0x05, 0x05, 0x03, 0x0F, 0x03, 0x0D, 0x1B, + 0x0D, 0x1A, 0x35, 0x1A, 0x02, 0x0A, 0x39, 0x05, 0x1B, 0x36, + 0x1C, 0x11, 0x03, 0x0E, 0x08, 0x03, 0x12, 0x03, 0x0E, 0x1D, + 0x0F, 0x25, 0x4B, 0x25, 0x0C, 0x0B, 0x0B, 0x0C, 0x1B, 0x0A, + 0x0C, 0x06, 0x01, 0x01, 0x09, 0x05, 0x09, 0x12, 0x03, 0x03, + 0x03, 0x0C, 0x16, 0x0B, 0x0B, 0x16, 0x0B, 0x02, 0x07, 0x02, + 0x03, 0x03, 0x02, 0x04, 0x02, 0x0F, 0x06, 0x0F, 0x1E, 0x0F, + 0x27, 0x51, 0x27, 0x17, 0x2C, 0x16, 0x0E, 0x14, 0x0E, 0x05, + 0x0E, 0x0B, 0x01, 0x03, 0x04, 0x03, 0x01, 0x07, 0x07, 0x03, + 0x0A, 0x03, 0x01, 0x01, 0x02, 0x01, 0x03, 0x01, 0x0C, 0x01, + 0x01, 0x01, 0x02, 0x01, 0x02, 0x01, 0x12, 0x05, 0x0B, 0x09, + 0x02, 0x02, 0x01, 0x04, 0x02, 0x0E, 0x06, 0x09, 0x02, 0x02, + 0x04, 0x05, 0x0D, 0x02, 0x04, 0x1A, 0x09, 0x0E, 0x1C, 0x15, + 0x0A, 0x2A, 0x02, 0x0B, 0xE9, 0x08, 0x10, 0x1A, 0x1D, 0x02, + 0x02, 0x05, 0x07, 0x29, 0x0A, 0x01, 0x33, 0x01, 0x0B, 0x07, + 0x0F, 0x08, 0x10, 0x1E, 0x10, 0x1A, 0x32, 0x19, 0x01, 0x02, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x5A, 0x00, 0x24, 0x09, 0x3D, + 0x03, 0x5A, 0x01, 0xA4, 0x01, 0xC2, 0x01, 0xD5, 0x01, 0xE5, + 0x02, 0x07, 0x00, 0x00, 0x01, 0x1E, 0x01, 0x15, 0x1C, 0x01, + 0x15, 0x14, 0x16, 0x17, 0x16, 0x36, 0x33, 0x16, 0x36, 0x17, + 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x15, 0x14, 0x06, 0x07, 0x06, 0x26, + 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x15, + 0x16, 0x06, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x34, 0x36, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x23, + 0x26, 0x06, 0x07, 0x06, 0x26, 0x23, 0x3E, 0x01, 0x35, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x23, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x07, 0x30, 0x07, 0x06, 0x23, 0x06, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x23, 0x2A, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, + 0x01, 0x17, 0x1E, 0x01, 0x33, 0x0E, 0x01, 0x07, 0x06, 0x26, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x07, + 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x03, 0x07, 0x0E, 0x01, 0x35, 0x34, 0x36, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x36, 0x33, 0x36, 0x32, 0x37, 0x36, 0x16, + 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x32, 0x36, + 0x17, 0x32, 0x16, 0x17, 0x16, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x1C, 0x01, 0x15, 0x14, 0x36, 0x35, 0x34, 0x26, 0x37, 0x36, + 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x37, 0x36, 0x16, + 0x15, 0x14, 0x06, 0x33, 0x32, 0x16, 0x35, 0x34, 0x26, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x06, 0x15, 0x14, 0x36, 0x33, 0x32, + 0x26, 0x37, 0x36, 0x16, 0x33, 0x32, 0x36, 0x15, 0x1C, 0x01, + 0x33, 0x32, 0x16, 0x37, 0x36, 0x26, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x06, 0x15, 0x14, 0x16, 0x35, 0x3C, 0x01, 0x33, 0x3A, + 0x01, 0x33, 0x32, 0x06, 0x17, 0x16, 0x36, 0x33, 0x32, 0x34, + 0x35, 0x34, 0x16, 0x33, 0x32, 0x36, 0x17, 0x16, 0x06, 0x33, + 0x32, 0x16, 0x37, 0x36, 0x26, 0x33, 0x32, 0x36, 0x15, 0x14, + 0x16, 0x33, 0x32, 0x34, 0x35, 0x34, 0x36, 0x17, 0x16, 0x06, + 0x33, 0x3A, 0x01, 0x33, 0x32, 0x06, 0x15, 0x14, 0x32, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, + 0x16, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x34, 0x36, + 0x37, 0x3E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x32, 0x16, 0x17, + 0x1E, 0x01, 0x17, 0x05, 0x2A, 0x03, 0x23, 0x2A, 0x01, 0x23, + 0x32, 0x06, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, + 0x35, 0x01, 0x14, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, + 0x37, 0x36, 0x26, 0x27, 0x26, 0x06, 0x23, 0x22, 0x26, 0x15, + 0x25, 0x36, 0x26, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x17, + 0x1E, 0x01, 0x33, 0x32, 0x16, 0x37, 0x25, 0x2E, 0x01, 0x27, + 0x1E, 0x01, 0x17, 0x16, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x08, 0xAF, 0x0C, 0x0E, 0x09, 0x01, 0x01, 0x25, 0x05, 0x09, + 0x26, 0x03, 0x04, 0x09, 0x0A, 0x08, 0x1B, 0x0C, 0x0E, 0x14, + 0x0F, 0x02, 0x04, 0x09, 0x08, 0x07, 0x03, 0x06, 0x05, 0x19, + 0x06, 0x06, 0x19, 0x05, 0x07, 0x0E, 0x09, 0x12, 0x05, 0x02, + 0x02, 0x04, 0x02, 0x02, 0x05, 0x02, 0x03, 0x04, 0x0A, 0x14, + 0x31, 0x03, 0x03, 0x04, 0x01, 0x03, 0x05, 0x03, 0x0B, 0x04, + 0x0F, 0x14, 0x13, 0x06, 0x0F, 0x07, 0x08, 0x10, 0x09, 0x11, + 0x26, 0x12, 0x01, 0x02, 0x0D, 0x19, 0x0E, 0x0D, 0x1E, 0x0E, + 0x04, 0x07, 0x03, 0x01, 0x07, 0x02, 0x07, 0x08, 0x01, 0x05, + 0x03, 0x01, 0x09, 0x12, 0x08, 0x08, 0x11, 0x09, 0x02, 0x0C, + 0x09, 0x08, 0x10, 0x08, 0x11, 0x23, 0x11, 0x05, 0x14, 0x01, + 0x02, 0x03, 0x02, 0x05, 0x0B, 0x05, 0x08, 0x11, 0x07, 0x02, + 0x04, 0x02, 0x03, 0x03, 0x0B, 0x13, 0x26, 0x12, 0x10, 0x0F, + 0x0F, 0x13, 0x27, 0x14, 0x19, 0x35, 0x17, 0x06, 0x0D, 0x06, + 0x08, 0x0F, 0x06, 0x03, 0x12, 0x03, 0x02, 0x07, 0x04, 0x03, + 0x07, 0x03, 0x02, 0x07, 0x02, 0x06, 0x0B, 0x06, 0x09, 0x11, + 0x03, 0x02, 0x05, 0x06, 0x06, 0x18, 0x06, 0x11, 0x20, 0x10, + 0x05, 0x3B, 0x02, 0x05, 0x12, 0x08, 0x14, 0x29, 0x15, 0x08, + 0x13, 0x0B, 0x0F, 0x30, 0x13, 0x23, 0x4C, 0x23, 0x17, 0x2D, + 0x15, 0x31, 0x61, 0x31, 0x29, 0x52, 0x52, 0x52, 0x29, 0x11, + 0x5A, 0x03, 0x04, 0x05, 0x02, 0x03, 0x02, 0x2B, 0x15, 0x14, + 0x28, 0x14, 0x50, 0x9F, 0x50, 0x27, 0x4E, 0x27, 0x0D, 0x1F, + 0x0D, 0x13, 0x20, 0x0F, 0x10, 0x21, 0x13, 0x08, 0x0F, 0x08, + 0x08, 0x11, 0x06, 0x0B, 0x18, 0x0F, 0x09, 0x11, 0x09, 0x06, + 0x0C, 0x06, 0x03, 0x07, 0x03, 0x04, 0x07, 0x04, 0x03, 0x0B, + 0x03, 0x0A, 0x09, 0x05, 0x02, 0x02, 0x03, 0x1F, 0x05, 0x05, + 0x0A, 0x05, 0x04, 0x04, 0x02, 0x02, 0x1E, 0x01, 0x05, 0x02, + 0x10, 0x01, 0x05, 0x06, 0x0C, 0x06, 0x04, 0x01, 0x11, 0x03, + 0x03, 0x04, 0x02, 0x01, 0x0F, 0x02, 0x02, 0x0B, 0x07, 0x02, + 0x10, 0x01, 0x01, 0x02, 0x02, 0x06, 0x0B, 0x06, 0x07, 0x01, + 0x1A, 0x06, 0x06, 0x0C, 0x07, 0x02, 0x03, 0x01, 0x02, 0x0F, + 0x02, 0x07, 0x08, 0x06, 0x02, 0x0E, 0x02, 0x01, 0x03, 0x03, + 0x02, 0x0F, 0x02, 0x02, 0x05, 0x05, 0x07, 0x1A, 0x01, 0x08, + 0x09, 0x1E, 0x02, 0x01, 0x03, 0x02, 0x07, 0x0D, 0x06, 0x09, + 0x03, 0x08, 0x02, 0x10, 0x22, 0x10, 0x37, 0x6E, 0x38, 0x1C, + 0x39, 0x1D, 0x04, 0x0A, 0x04, 0x0A, 0x15, 0x07, 0x03, 0x0C, + 0x01, 0x01, 0x01, 0x03, 0x0E, 0x0E, 0x05, 0x0C, 0x05, 0x02, + 0x0E, 0x02, 0x09, 0x0A, 0x02, 0xFD, 0xAE, 0x2B, 0x56, 0x55, + 0x56, 0x2B, 0x20, 0x3F, 0x20, 0x01, 0x03, 0x03, 0x04, 0x09, + 0x04, 0x12, 0x25, 0x12, 0x3F, 0x7E, 0x3F, 0x18, 0x30, 0x18, + 0x06, 0x0D, 0x06, 0x07, 0x01, 0xFE, 0x7C, 0x55, 0x0F, 0x0B, + 0x15, 0x0B, 0x0D, 0x0D, 0x05, 0x07, 0x1B, 0x0B, 0x0A, 0x17, + 0x0A, 0x16, 0x4E, 0xFD, 0xA3, 0x07, 0x07, 0x16, 0x0D, 0x1F, + 0x0D, 0x0C, 0x0C, 0x08, 0x06, 0x0F, 0x08, 0x0E, 0x29, 0x0B, + 0xFE, 0x5A, 0x07, 0x0E, 0x07, 0x01, 0x06, 0x01, 0x01, 0x02, + 0x05, 0x0C, 0x1B, 0x0E, 0x11, 0x25, 0x11, 0x11, 0x23, 0x12, + 0x12, 0x18, 0x04, 0x02, 0x04, 0x03, 0x05, 0x03, 0x0F, 0x12, + 0x23, 0x12, 0x1C, 0x38, 0x1D, 0x03, 0x1B, 0x12, 0x38, 0x15, + 0x07, 0x0E, 0x07, 0x04, 0x0F, 0x04, 0x02, 0x02, 0x01, 0x03, + 0x0A, 0x0C, 0x1D, 0x0B, 0x09, 0x04, 0x01, 0x02, 0x06, 0x04, + 0x0C, 0x0A, 0x08, 0x08, 0x02, 0x0E, 0x07, 0x11, 0x02, 0x03, + 0x02, 0x01, 0x01, 0x09, 0x03, 0x04, 0x07, 0x03, 0x07, 0x2B, + 0x0E, 0x27, 0x4D, 0x27, 0x12, 0x24, 0x12, 0x07, 0x0F, 0x07, + 0x0A, 0x08, 0x01, 0x03, 0x07, 0x1A, 0x12, 0x1B, 0x12, 0x28, + 0x52, 0x28, 0x06, 0x37, 0x02, 0x06, 0x1D, 0x03, 0x01, 0x01, + 0x01, 0x01, 0x02, 0x03, 0x03, 0x07, 0x10, 0x07, 0x07, 0x0E, + 0x06, 0x05, 0x02, 0x11, 0x22, 0x11, 0x05, 0x1F, 0x04, 0x03, + 0x02, 0x03, 0x0A, 0x05, 0x28, 0x4E, 0x27, 0x25, 0x4A, 0x25, + 0x0B, 0x01, 0x01, 0x01, 0x03, 0x01, 0x02, 0x03, 0x02, 0x01, + 0x05, 0x06, 0x08, 0x0E, 0x07, 0x17, 0x2E, 0x17, 0x23, 0x44, + 0x22, 0x0A, 0x12, 0x09, 0x0A, 0x11, 0x06, 0x05, 0x26, 0x03, + 0x04, 0x03, 0x02, 0x01, 0x02, 0x09, 0x02, 0x04, 0x03, 0x05, + 0x0B, 0x09, 0x05, 0x1A, 0x08, 0x04, 0x12, 0x03, 0x08, 0x02, + 0x01, 0x04, 0x04, 0x09, 0x12, 0x09, 0x0E, 0x24, 0x11, 0x08, + 0x16, 0x07, 0x05, 0x02, 0x03, 0x08, 0x12, 0x09, 0x03, 0x21, + 0x0A, 0x11, 0x1F, 0x0F, 0x25, 0x48, 0x24, 0x0D, 0x31, 0x08, + 0x0C, 0x10, 0x04, 0x06, 0x09, 0x05, 0x03, 0x12, 0x08, 0x11, + 0x22, 0x12, 0x0E, 0x1D, 0x1D, 0x1D, 0x0F, 0x06, 0x02, 0x1B, + 0x25, 0x4F, 0x25, 0x26, 0x4D, 0x27, 0x1B, 0x07, 0x01, 0x01, + 0x01, 0x01, 0x0B, 0x03, 0x05, 0x0C, 0x0C, 0x0B, 0x0B, 0x04, + 0x02, 0x03, 0x02, 0x03, 0x14, 0x05, 0x0B, 0x20, 0x02, 0x02, + 0x02, 0x01, 0x01, 0x02, 0x01, 0x03, 0x01, 0x04, 0x02, 0x02, + 0x01, 0x08, 0x0A, 0x0B, 0x16, 0x0B, 0x02, 0x05, 0x03, 0x02, + 0x13, 0x02, 0x03, 0x03, 0x0D, 0x02, 0x02, 0x03, 0x01, 0x04, + 0x09, 0x01, 0x02, 0x04, 0x0A, 0x0A, 0x04, 0x02, 0x01, 0x0D, + 0x02, 0x01, 0x01, 0x01, 0x03, 0x07, 0x06, 0x02, 0x02, 0x01, + 0x0E, 0x07, 0x07, 0x01, 0x03, 0x08, 0x06, 0x04, 0x0E, 0x01, + 0x02, 0x02, 0x03, 0x06, 0x07, 0x01, 0x01, 0x01, 0x02, 0x0D, + 0x02, 0x02, 0x02, 0x0D, 0x02, 0x08, 0x07, 0x02, 0x04, 0x09, + 0x01, 0x03, 0x02, 0x02, 0x0D, 0x16, 0x07, 0x01, 0x01, 0x01, + 0x04, 0x18, 0x08, 0x03, 0x0A, 0x04, 0x06, 0x0D, 0x05, 0x0D, + 0x13, 0x04, 0x02, 0x0C, 0x02, 0x0A, 0x1B, 0x0C, 0x27, 0x0D, + 0x06, 0x07, 0xFE, 0x92, 0x1C, 0x02, 0x0E, 0x0B, 0x0F, 0x12, + 0x02, 0x01, 0x01, 0x01, 0x23, 0x88, 0x10, 0x1D, 0x02, 0x03, + 0x03, 0x1B, 0x09, 0x08, 0x05, 0x02, 0x0A, 0x46, 0x01, 0x01, + 0x01, 0x26, 0x4B, 0x26, 0x06, 0x18, 0x04, 0x08, 0x05, 0x03, + 0x03, 0x0E, 0x05, 0x06, 0x0F, 0x08, 0x0A, 0x13, 0x18, 0x09, + 0x11, 0x08, 0x0E, 0x0B, 0x02, 0x03, 0x0A, 0x04, 0x08, 0x0B, + 0x03, 0x00, 0x00, 0x03, 0x00, 0x5D, 0x00, 0x40, 0x0A, 0x2D, + 0x03, 0x44, 0x01, 0x27, 0x01, 0x4A, 0x01, 0x75, 0x00, 0x00, + 0x01, 0x1E, 0x01, 0x27, 0x26, 0x16, 0x17, 0x26, 0x06, 0x23, + 0x2A, 0x01, 0x23, 0x22, 0x26, 0x37, 0x3E, 0x01, 0x27, 0x26, + 0x36, 0x37, 0x36, 0x26, 0x27, 0x26, 0x06, 0x07, 0x06, 0x16, + 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x22, + 0x06, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x07, 0x0E, + 0x01, 0x23, 0x22, 0x06, 0x23, 0x22, 0x26, 0x27, 0x2A, 0x01, + 0x07, 0x0E, 0x01, 0x27, 0x36, 0x26, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x26, 0x23, 0x2E, 0x01, 0x23, 0x22, 0x26, 0x07, 0x06, + 0x14, 0x15, 0x14, 0x06, 0x17, 0x1E, 0x01, 0x15, 0x1C, 0x01, + 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x07, 0x06, 0x16, 0x15, + 0x14, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x03, 0x37, 0x36, + 0x16, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x36, 0x26, 0x27, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x16, 0x17, 0x16, 0x36, 0x33, 0x3A, 0x01, + 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x06, 0x17, + 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x34, 0x37, 0x36, + 0x26, 0x37, 0x36, 0x16, 0x17, 0x16, 0x06, 0x37, 0x14, 0x32, + 0x37, 0x3E, 0x01, 0x35, 0x26, 0x36, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x03, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x17, 0x16, + 0x06, 0x33, 0x36, 0x16, 0x37, 0x36, 0x34, 0x35, 0x26, 0x36, + 0x35, 0x34, 0x36, 0x27, 0x2E, 0x01, 0x27, 0x34, 0x36, 0x27, + 0x36, 0x16, 0x33, 0x32, 0x16, 0x37, 0x36, 0x26, 0x35, 0x34, + 0x36, 0x27, 0x05, 0x0E, 0x03, 0x07, 0x3E, 0x01, 0x37, 0x36, + 0x26, 0x37, 0x06, 0x26, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x26, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x0E, 0x01, 0x07, + 0x3A, 0x01, 0x23, 0x05, 0x06, 0x26, 0x27, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x27, 0x2E, 0x01, 0x37, 0x36, 0x26, 0x37, 0x36, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x27, 0x2E, 0x01, 0x37, 0x36, 0x16, 0x33, 0x32, 0x36, 0x17, + 0x16, 0x06, 0x15, 0x14, 0x16, 0x07, 0x0A, 0x25, 0x01, 0x02, + 0x03, 0x03, 0x02, 0x01, 0x09, 0x2C, 0x0B, 0x0D, 0x1B, 0x0E, + 0x0B, 0x11, 0x01, 0x01, 0x01, 0x04, 0x02, 0x04, 0x01, 0x02, + 0x05, 0x04, 0x06, 0x3A, 0x0C, 0x0A, 0x06, 0x01, 0x04, 0x28, + 0x15, 0x1E, 0x3A, 0x1D, 0x3A, 0x74, 0x3A, 0x08, 0x20, 0x05, + 0x03, 0x08, 0x04, 0x05, 0x19, 0x07, 0x08, 0x12, 0x06, 0x0A, + 0x01, 0x13, 0x06, 0x0D, 0x08, 0x03, 0x07, 0x03, 0x03, 0x01, + 0x04, 0x0C, 0x23, 0x06, 0x02, 0x11, 0x05, 0x06, 0x11, 0x08, + 0x0C, 0x0C, 0x0A, 0x04, 0x0C, 0x03, 0x02, 0x0F, 0x03, 0x04, + 0x08, 0x05, 0x0D, 0x1A, 0x0C, 0x19, 0x32, 0x19, 0x33, 0x65, + 0x33, 0x17, 0x34, 0x17, 0x13, 0x1D, 0x0E, 0x0A, 0x15, 0x0F, + 0x12, 0x19, 0x10, 0x07, 0x10, 0x09, 0x0C, 0x17, 0x0C, 0x1B, + 0x36, 0x1B, 0x22, 0x44, 0x22, 0x0D, 0x1B, 0x0D, 0x06, 0x14, + 0x04, 0x09, 0x07, 0x08, 0x08, 0x0D, 0x08, 0x15, 0x35, 0x16, + 0x37, 0x6E, 0x37, 0x14, 0x29, 0x0A, 0x04, 0x02, 0x05, 0x07, + 0x05, 0x03, 0x05, 0x0E, 0x05, 0x09, 0x17, 0x0C, 0x88, 0x06, + 0x04, 0xB2, 0xDC, 0xC2, 0x14, 0x1E, 0x46, 0x1B, 0x1A, 0x0A, + 0x09, 0x0A, 0x10, 0x0F, 0x12, 0x11, 0x16, 0x15, 0x44, 0x21, + 0x0C, 0x1B, 0x07, 0x06, 0x01, 0x0D, 0x09, 0x06, 0x04, 0x06, + 0x0D, 0x05, 0x05, 0x0C, 0x06, 0x03, 0x09, 0x08, 0x0A, 0x0C, + 0x05, 0x09, 0x2B, 0x0B, 0x13, 0x24, 0x12, 0x10, 0x21, 0x0D, + 0x07, 0x11, 0x09, 0x07, 0x08, 0x01, 0x03, 0x1F, 0x07, 0x04, + 0x01, 0x03, 0x04, 0x03, 0x06, 0x08, 0x09, 0x07, 0x11, 0x01, + 0x01, 0x01, 0x11, 0x1E, 0x06, 0x06, 0x04, 0x01, 0x08, 0x0C, + 0x31, 0x62, 0x30, 0x32, 0x63, 0x64, 0x63, 0x32, 0x13, 0x28, + 0x14, 0x0D, 0x1C, 0x0E, 0x0F, 0x01, 0x11, 0x0E, 0x20, 0x0E, + 0x0C, 0x02, 0x01, 0x05, 0x03, 0x02, 0x05, 0x05, 0x06, 0x0F, + 0x12, 0x28, 0x12, 0x08, 0x2A, 0x05, 0x07, 0x03, 0x05, 0x08, + 0xF8, 0xF4, 0x11, 0xB9, 0xD7, 0xB9, 0x11, 0x02, 0x07, 0x01, + 0x02, 0x06, 0x02, 0x0E, 0x03, 0x01, 0x01, 0x02, 0x05, 0x0F, + 0x20, 0x41, 0x21, 0x3E, 0x7D, 0x7D, 0x7D, 0x3E, 0x04, 0x06, + 0x05, 0x01, 0x01, 0x02, 0x02, 0x98, 0x09, 0x41, 0x0F, 0x10, + 0x1F, 0x10, 0x0C, 0x1C, 0x04, 0x02, 0x02, 0x03, 0x04, 0x02, + 0x08, 0x09, 0x08, 0x02, 0x03, 0x08, 0x09, 0x07, 0x13, 0x0A, + 0x08, 0x11, 0x0B, 0x0A, 0x21, 0x1A, 0x0F, 0x1E, 0x0F, 0x06, + 0x2D, 0x04, 0x03, 0x03, 0x04, 0x04, 0x02, 0x82, 0x02, 0x02, + 0x04, 0x03, 0x02, 0x01, 0x09, 0x04, 0x01, 0x0E, 0x13, 0x28, + 0x12, 0x0A, 0x15, 0x0A, 0x0B, 0x13, 0x0A, 0x10, 0x09, 0x02, + 0x02, 0x2E, 0x07, 0x1C, 0x01, 0x03, 0x07, 0x05, 0x09, 0x05, + 0x05, 0x04, 0x01, 0x01, 0x07, 0x09, 0x1D, 0x0E, 0x04, 0x09, + 0x03, 0x01, 0x02, 0x02, 0x02, 0x06, 0x01, 0x04, 0x0A, 0x0C, + 0x06, 0x0B, 0x05, 0x06, 0x04, 0x01, 0x17, 0x08, 0x03, 0x08, + 0x05, 0x03, 0x01, 0x04, 0x03, 0x0E, 0x04, 0x04, 0x04, 0x23, + 0x0D, 0x0A, 0x18, 0x01, 0x01, 0x1B, 0x08, 0x05, 0x01, 0x02, + 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x09, 0x03, 0x04, 0x0D, + 0x04, 0x04, 0x0B, 0x03, 0x09, 0x04, 0x01, 0x01, 0x04, 0x17, + 0x0A, 0x19, 0x0B, 0x07, 0x20, 0x05, 0x06, 0x06, 0x0A, 0x0A, + 0x13, 0x0A, 0x0C, 0x19, 0x0C, 0x05, 0x1F, 0x03, 0x07, 0x40, + 0x0F, 0x11, 0x24, 0x0B, 0x06, 0x28, 0x03, 0x01, 0x39, 0x45, + 0x3D, 0x05, 0x08, 0x03, 0x12, 0x11, 0x3B, 0x17, 0x1B, 0x36, + 0x17, 0x1C, 0x46, 0x1C, 0x1D, 0x0D, 0x03, 0x0B, 0x08, 0x25, + 0x04, 0x0A, 0x20, 0x0D, 0x10, 0x20, 0x11, 0x12, 0x23, 0x11, + 0x0A, 0x16, 0x06, 0x06, 0x14, 0x05, 0x09, 0x04, 0x02, 0x02, + 0x01, 0x09, 0x05, 0x09, 0x01, 0x01, 0x17, 0x06, 0x0A, 0x06, + 0x08, 0x06, 0x0C, 0x06, 0x07, 0x0F, 0x07, 0x0A, 0x22, 0x08, + 0x05, 0x23, 0x04, 0x07, 0x33, 0x0A, 0x0B, 0x01, 0x01, 0x06, + 0x06, 0x0C, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0x02, 0x17, + 0x01, 0x05, 0x05, 0x04, 0x1D, 0x0B, 0x13, 0x27, 0x13, 0x08, + 0x13, 0x07, 0x04, 0x0E, 0x01, 0x09, 0x1C, 0x02, 0x05, 0x02, + 0x05, 0x07, 0x09, 0x1B, 0x0B, 0x0A, 0x20, 0x09, 0x9D, 0x05, + 0x3B, 0x45, 0x3D, 0x07, 0x03, 0x02, 0x04, 0x03, 0x05, 0x04, + 0x01, 0x21, 0x09, 0x14, 0x26, 0x14, 0x07, 0x40, 0x02, 0x07, + 0x01, 0x7A, 0x13, 0x04, 0x01, 0x03, 0x0E, 0x08, 0x16, 0x08, + 0x0A, 0x1A, 0x07, 0x08, 0x07, 0x09, 0x0D, 0x18, 0x09, 0x08, + 0x0C, 0x02, 0x02, 0x0D, 0x08, 0x07, 0x36, 0x02, 0x01, 0x01, + 0x04, 0x05, 0x06, 0x1B, 0x06, 0x09, 0x1B, 0x08, 0x00, 0x04, + 0x00, 0x61, 0x00, 0x26, 0x05, 0x9E, 0x03, 0x5A, 0x01, 0x02, + 0x01, 0x0B, 0x01, 0x18, 0x01, 0x2D, 0x00, 0x00, 0x01, 0x34, + 0x06, 0x23, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x36, 0x26, + 0x35, 0x34, 0x36, 0x23, 0x36, 0x26, 0x27, 0x26, 0x06, 0x27, + 0x2E, 0x01, 0x23, 0x26, 0x06, 0x23, 0x2A, 0x03, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x06, 0x07, 0x26, 0x06, 0x23, 0x22, 0x26, + 0x27, 0x26, 0x06, 0x07, 0x30, 0x07, 0x06, 0x23, 0x0E, 0x01, + 0x07, 0x06, 0x14, 0x17, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x23, + 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x15, 0x1C, + 0x01, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, 0x37, 0x06, 0x16, 0x17, + 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x36, 0x33, 0x32, 0x36, 0x37, 0x32, 0x16, + 0x37, 0x3E, 0x01, 0x17, 0x16, 0x06, 0x17, 0x16, 0x06, 0x15, + 0x14, 0x06, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x15, 0x14, + 0x16, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, + 0x15, 0x14, 0x16, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, + 0x32, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x16, 0x27, 0x26, + 0x36, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x34, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, + 0x36, 0x26, 0x35, 0x34, 0x36, 0x35, 0x3C, 0x01, 0x33, 0x32, + 0x36, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, 0x35, 0x34, 0x36, + 0x27, 0x36, 0x32, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x15, + 0x1C, 0x01, 0x15, 0x14, 0x06, 0x07, 0x06, 0x16, 0x17, 0x1E, + 0x01, 0x37, 0x36, 0x26, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, + 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x35, + 0x34, 0x2F, 0x01, 0x3E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, + 0x16, 0x37, 0x36, 0x26, 0x35, 0x05, 0x3C, 0x01, 0x35, 0x3C, + 0x01, 0x35, 0x16, 0x14, 0x05, 0x2E, 0x01, 0x37, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x22, 0x26, 0x27, 0x37, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x35, + 0x36, 0x16, 0x33, 0x32, 0x36, 0x07, 0x16, 0x06, 0x05, 0x98, + 0x19, 0x07, 0x0D, 0x4F, 0x08, 0x03, 0x06, 0x03, 0x03, 0x08, + 0x01, 0x0C, 0x05, 0x0D, 0x09, 0x0E, 0x1F, 0x0B, 0x0B, 0x0C, + 0x0F, 0x0C, 0x1B, 0x0D, 0x48, 0x91, 0x90, 0x91, 0x48, 0x31, + 0x62, 0x31, 0x13, 0x16, 0x08, 0x05, 0x04, 0x05, 0x06, 0x05, + 0x06, 0x0C, 0x0D, 0x07, 0x03, 0x02, 0x01, 0x01, 0x05, 0x01, + 0x03, 0x05, 0x0E, 0x1A, 0x0D, 0x09, 0x03, 0x07, 0x05, 0x18, + 0x03, 0x04, 0x05, 0x01, 0x01, 0x01, 0x04, 0x1F, 0x19, 0x16, + 0x09, 0x05, 0x08, 0x05, 0x03, 0x0F, 0x08, 0x06, 0x01, 0x0A, + 0x04, 0x07, 0x13, 0x08, 0x12, 0x25, 0x12, 0x08, 0x24, 0x08, + 0x03, 0x04, 0x03, 0x05, 0x0E, 0x06, 0x10, 0x20, 0x10, 0x06, + 0x0A, 0x04, 0x04, 0x02, 0x04, 0x02, 0x01, 0x02, 0x07, 0x0D, + 0x0E, 0x01, 0x01, 0x01, 0x02, 0x02, 0x08, 0x0C, 0x04, 0x09, + 0x04, 0x01, 0x05, 0x07, 0x0A, 0x06, 0x06, 0x13, 0x0F, 0x09, + 0x13, 0x0A, 0x0B, 0x12, 0x09, 0x09, 0x33, 0x06, 0x03, 0x04, + 0x04, 0x01, 0x04, 0x02, 0x01, 0x01, 0x01, 0x03, 0x02, 0x03, + 0x04, 0x02, 0x03, 0x04, 0x02, 0x04, 0x0F, 0x07, 0x07, 0x0C, + 0x02, 0x09, 0x17, 0x2F, 0x17, 0x1A, 0x30, 0x14, 0x04, 0x04, + 0x03, 0x08, 0x04, 0x24, 0x48, 0x24, 0x10, 0x0D, 0x01, 0x02, + 0x03, 0x06, 0x26, 0x0D, 0x3C, 0x06, 0x04, 0x04, 0x0A, 0x07, + 0x0B, 0x12, 0x09, 0x02, 0x11, 0x04, 0x09, 0x0A, 0x02, 0x02, + 0x02, 0x14, 0x01, 0x11, 0x20, 0x10, 0x09, 0x1B, 0x05, 0x06, + 0x06, 0xFA, 0xD9, 0x03, 0x02, 0x64, 0x01, 0x01, 0x01, 0x02, + 0x04, 0x02, 0x03, 0x06, 0x05, 0x0F, 0x02, 0x04, 0x7C, 0x03, + 0x03, 0x03, 0x05, 0x12, 0x0A, 0x0C, 0x02, 0x06, 0x03, 0x16, + 0x01, 0x32, 0x09, 0x07, 0x1F, 0x04, 0x02, 0x07, 0x02, 0xC3, + 0x0B, 0x02, 0x06, 0x0B, 0x01, 0x04, 0x01, 0x08, 0x10, 0x08, + 0x06, 0x0D, 0x0C, 0x1A, 0x05, 0x07, 0x05, 0x08, 0x09, 0x11, + 0x01, 0x02, 0x11, 0x10, 0x04, 0x05, 0x02, 0x03, 0x06, 0x07, + 0x08, 0x04, 0x05, 0x03, 0x05, 0x03, 0x06, 0x0D, 0x06, 0x07, + 0x01, 0x08, 0x07, 0x08, 0x07, 0x07, 0x06, 0x0C, 0x06, 0x3B, + 0x77, 0x3B, 0x18, 0x1D, 0x16, 0x14, 0x0B, 0x16, 0x0A, 0x08, + 0x1C, 0x08, 0x08, 0x2B, 0x04, 0x05, 0x13, 0x02, 0x04, 0x02, + 0x04, 0x04, 0x02, 0x09, 0x02, 0x02, 0x05, 0x01, 0x01, 0x03, + 0x02, 0x02, 0x0A, 0x04, 0x03, 0x0A, 0x01, 0x03, 0x2F, 0x05, + 0x0C, 0x1C, 0x0D, 0x0F, 0x1D, 0x10, 0x0E, 0x1F, 0x0E, 0x06, + 0x15, 0x02, 0x03, 0x05, 0x0D, 0x20, 0x38, 0x1E, 0x07, 0x10, + 0x07, 0x08, 0x0D, 0x07, 0x0D, 0x24, 0x0A, 0x0D, 0x02, 0x06, + 0x03, 0x02, 0x01, 0x02, 0x0D, 0x06, 0x11, 0x07, 0x02, 0x01, + 0x03, 0x01, 0x04, 0x02, 0x03, 0x06, 0x04, 0x06, 0x0F, 0x07, + 0x0F, 0x1C, 0x0F, 0x18, 0x42, 0x18, 0x1C, 0x3B, 0x1E, 0x10, + 0x1D, 0x0F, 0x06, 0x15, 0x02, 0x01, 0x02, 0x07, 0x20, 0x09, + 0x0C, 0x06, 0x07, 0x0F, 0x08, 0x01, 0x01, 0x10, 0x0F, 0x1D, + 0x0F, 0x1E, 0x3B, 0x1E, 0x20, 0x47, 0x0C, 0x05, 0x15, 0x12, + 0x0C, 0x23, 0x0C, 0x3C, 0x76, 0x3B, 0x0B, 0x09, 0x04, 0x07, + 0x10, 0x12, 0x04, 0x14, 0x02, 0x07, 0x0E, 0x09, 0x02, 0x07, + 0x07, 0x04, 0x05, 0x02, 0x09, 0x09, 0x2A, 0x0A, 0x2B, 0x09, + 0x13, 0x09, 0x03, 0x08, 0x03, 0x0A, 0x1F, 0x67, 0x04, 0x09, + 0x04, 0x04, 0x07, 0x04, 0x03, 0x09, 0x02, 0x02, 0x0A, 0x11, + 0x04, 0x0C, 0x04, 0x08, 0x01, 0x08, 0x06, 0x03, 0x21, 0x03, + 0x08, 0x03, 0x03, 0x0D, 0x06, 0x08, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x4F, 0x00, 0x3E, 0x07, 0xD5, 0x03, 0x43, 0x01, 0x08, + 0x01, 0x15, 0x01, 0x28, 0x01, 0x2B, 0x00, 0x00, 0x01, 0x3E, + 0x01, 0x27, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, + 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x33, + 0x32, 0x16, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x15, 0x16, + 0x06, 0x27, 0x2A, 0x01, 0x23, 0x1E, 0x01, 0x17, 0x16, 0x06, + 0x17, 0x14, 0x06, 0x23, 0x2A, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x06, 0x15, 0x14, 0x06, 0x15, 0x14, 0x16, 0x15, 0x14, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x34, 0x35, 0x34, 0x26, 0x27, 0x2E, + 0x01, 0x35, 0x2E, 0x01, 0x35, 0x34, 0x26, 0x35, 0x34, 0x26, + 0x27, 0x2E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x26, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x0E, + 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, 0x16, + 0x07, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x30, 0x37, 0x34, + 0x27, 0x34, 0x36, 0x27, 0x26, 0x06, 0x23, 0x06, 0x26, 0x27, + 0x26, 0x36, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, + 0x27, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x23, 0x06, 0x26, 0x07, + 0x06, 0x26, 0x35, 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, + 0x06, 0x27, 0x26, 0x06, 0x27, 0x22, 0x26, 0x33, 0x26, 0x06, + 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x16, 0x15, + 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x22, 0x07, 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x3C, 0x01, + 0x35, 0x34, 0x16, 0x33, 0x1E, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x37, 0x3A, 0x01, 0x37, 0x32, 0x36, 0x35, 0x3C, + 0x01, 0x35, 0x34, 0x26, 0x37, 0x36, 0x16, 0x35, 0x34, 0x36, + 0x37, 0x01, 0x2E, 0x01, 0x27, 0x0E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x2E, 0x01, 0x27, 0x37, 0x2E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x01, 0x26, 0x16, 0x03, 0x94, 0x02, 0x02, + 0x01, 0x18, 0x15, 0x15, 0x2D, 0x5B, 0x2D, 0x45, 0x8B, 0x8B, + 0x8B, 0x46, 0x0B, 0x44, 0x07, 0x09, 0x09, 0x08, 0x09, 0x32, + 0x0F, 0x14, 0x2C, 0x13, 0x0B, 0x03, 0x01, 0x01, 0x02, 0x11, + 0x18, 0x30, 0x18, 0x0B, 0x15, 0x0B, 0x02, 0x01, 0x01, 0x03, + 0x11, 0x0F, 0x0A, 0x08, 0x08, 0x10, 0x09, 0x03, 0x32, 0x02, + 0x07, 0x0E, 0x05, 0x05, 0x09, 0x03, 0x05, 0x16, 0x19, 0x0D, + 0x23, 0x0F, 0x09, 0x15, 0x09, 0x07, 0x19, 0x05, 0x0F, 0x08, + 0x05, 0x03, 0x09, 0x03, 0x01, 0x06, 0x02, 0x02, 0x03, 0x02, + 0x03, 0x04, 0x02, 0x01, 0x01, 0x02, 0x0E, 0x15, 0x1C, 0x1B, + 0x16, 0x09, 0x0E, 0x0A, 0x0D, 0x17, 0x0F, 0x22, 0x3C, 0x19, + 0x20, 0x0D, 0x03, 0x05, 0x04, 0x03, 0x01, 0x05, 0x3F, 0x0D, + 0x1C, 0x38, 0x1C, 0x01, 0x01, 0x01, 0x01, 0x02, 0x10, 0x04, + 0x0E, 0x14, 0x05, 0x04, 0x01, 0x03, 0x09, 0x01, 0x07, 0x02, + 0x01, 0x01, 0x01, 0x04, 0x0B, 0x03, 0x07, 0x0E, 0x01, 0x01, + 0x04, 0x04, 0x03, 0x0E, 0x06, 0x33, 0x66, 0x33, 0x17, 0x3E, + 0x13, 0x0A, 0x13, 0x16, 0x06, 0x01, 0x06, 0x02, 0x01, 0x04, + 0x01, 0x03, 0x09, 0x03, 0x3E, 0x7B, 0x3D, 0x3C, 0x77, 0x3B, + 0x10, 0x04, 0x07, 0x02, 0x03, 0x06, 0x02, 0x01, 0x06, 0x02, + 0x04, 0x14, 0x0F, 0x0D, 0x01, 0x1F, 0x47, 0x22, 0x48, 0x90, + 0x48, 0x29, 0x55, 0x2A, 0x0D, 0x1B, 0x0D, 0x07, 0x01, 0x06, + 0x06, 0x09, 0x97, 0x06, 0x04, 0x01, 0xD6, 0x0D, 0x10, 0x02, + 0x05, 0x1D, 0x06, 0x0E, 0x24, 0x14, 0x03, 0x05, 0x03, 0x7A, + 0x11, 0x2D, 0x18, 0x13, 0x0C, 0x01, 0x08, 0x07, 0x05, 0x07, + 0x09, 0x0A, 0x11, 0x08, 0x10, 0x14, 0x0B, 0xFE, 0x1C, 0x01, + 0x02, 0x03, 0x35, 0x02, 0x04, 0x05, 0x03, 0x25, 0x06, 0x0D, + 0x11, 0x29, 0x12, 0x13, 0x0A, 0x04, 0x02, 0x01, 0x07, 0x0B, + 0x0F, 0x36, 0x0F, 0x0B, 0x07, 0x01, 0x19, 0x30, 0x18, 0x03, + 0x0A, 0x03, 0x11, 0x08, 0x0E, 0x0F, 0x1E, 0x0F, 0x06, 0x03, + 0x0B, 0x11, 0x22, 0x11, 0x12, 0x21, 0x11, 0x10, 0x23, 0x0F, + 0x0F, 0x20, 0x10, 0x15, 0x63, 0x0D, 0x08, 0x05, 0x02, 0x01, + 0x01, 0x01, 0x01, 0x07, 0x02, 0x06, 0x0A, 0x0D, 0x09, 0x11, + 0x09, 0x03, 0x08, 0x04, 0x06, 0x05, 0x05, 0x07, 0x14, 0x07, + 0x10, 0x20, 0x11, 0x07, 0x11, 0x08, 0x08, 0x10, 0x08, 0x12, + 0x21, 0x12, 0x13, 0x25, 0x04, 0x06, 0x30, 0x0A, 0x05, 0x0E, + 0x05, 0x07, 0x0B, 0x02, 0x04, 0x01, 0x18, 0x3B, 0x84, 0x46, + 0x09, 0x11, 0x09, 0x04, 0x09, 0x0E, 0x03, 0x0A, 0x04, 0x06, + 0x07, 0x01, 0x01, 0x06, 0x02, 0x02, 0x01, 0x01, 0x01, 0x0F, + 0x0F, 0x25, 0x10, 0x21, 0x43, 0x1E, 0x04, 0x09, 0x04, 0x04, + 0x08, 0x04, 0x09, 0x10, 0x08, 0x11, 0x21, 0x12, 0x0A, 0x0E, + 0x09, 0x05, 0x1A, 0x01, 0x01, 0x06, 0x0A, 0x05, 0x12, 0x08, + 0x11, 0x20, 0x10, 0x03, 0x08, 0x04, 0x08, 0x06, 0x06, 0x01, + 0x01, 0x04, 0x07, 0x01, 0x01, 0x1C, 0x0A, 0x15, 0x2E, 0x16, + 0x20, 0x3F, 0x1F, 0x07, 0x0E, 0x06, 0x10, 0x02, 0x36, 0x6C, + 0x36, 0x1F, 0x3E, 0x1F, 0x06, 0x0C, 0x06, 0x05, 0x07, 0x05, + 0x01, 0x01, 0x01, 0x03, 0x07, 0x08, 0x11, 0x09, 0x0D, 0x2C, + 0x0B, 0x15, 0x10, 0x08, 0x0A, 0x03, 0x08, 0xFE, 0x7A, 0x0D, + 0x21, 0x12, 0x04, 0x1F, 0x05, 0x0E, 0x12, 0x02, 0x03, 0x05, + 0x02, 0x35, 0x11, 0x17, 0x04, 0x03, 0x04, 0x14, 0x0E, 0x1D, + 0x0D, 0x07, 0x09, 0x02, 0x01, 0x07, 0x04, 0x0A, 0x19, 0x0E, + 0xFE, 0x92, 0x05, 0x06, 0x00, 0x05, 0x00, 0x62, 0x00, 0x3F, + 0x07, 0xDF, 0x03, 0x48, 0x00, 0x1E, 0x00, 0x3C, 0x00, 0x5A, + 0x00, 0x73, 0x01, 0x5E, 0x00, 0x00, 0x01, 0x06, 0x16, 0x17, + 0x1C, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x15, 0x14, + 0x06, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x05, 0x34, 0x26, + 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x14, + 0x16, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x01, 0x36, 0x26, + 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x27, + 0x1C, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x2A, 0x01, + 0x15, 0x14, 0x06, 0x17, 0x32, 0x16, 0x07, 0x0E, 0x01, 0x15, + 0x1E, 0x01, 0x17, 0x16, 0x32, 0x35, 0x3C, 0x01, 0x35, 0x34, + 0x36, 0x27, 0x05, 0x1E, 0x01, 0x07, 0x06, 0x26, 0x23, 0x2A, + 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x23, 0x22, 0x06, + 0x07, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x1C, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x06, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x06, 0x07, 0x22, 0x06, 0x15, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x22, 0x06, 0x07, + 0x22, 0x06, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x27, 0x26, 0x06, 0x27, 0x22, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x36, 0x35, 0x3C, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x26, + 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x03, 0x23, + 0x22, 0x36, 0x35, 0x3C, 0x01, 0x27, 0x34, 0x26, 0x27, 0x26, + 0x36, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x32, 0x16, + 0x37, 0x3E, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x32, 0x26, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x34, 0x37, 0x3E, + 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x16, 0x07, 0x0E, 0x01, + 0x15, 0x14, 0x06, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x35, 0x34, + 0x06, 0x27, 0x26, 0x36, 0x35, 0x34, 0x36, 0x37, 0x32, 0x36, + 0x17, 0x16, 0x14, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, + 0x32, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x1C, + 0x01, 0x15, 0x14, 0x06, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, + 0x33, 0x05, 0x5E, 0x08, 0x01, 0x01, 0x01, 0x07, 0x0F, 0x07, + 0x02, 0x0E, 0x01, 0x03, 0x13, 0x1A, 0x17, 0x1A, 0x12, 0x0D, + 0x09, 0x1D, 0x0B, 0x07, 0x08, 0x0E, 0x10, 0x23, 0x0C, 0xFE, + 0xF4, 0x0D, 0x11, 0x16, 0x2B, 0x16, 0x0B, 0x15, 0x0B, 0x03, + 0x0B, 0x04, 0x06, 0x0E, 0x04, 0x06, 0x0F, 0x04, 0x06, 0x04, + 0x01, 0x0C, 0x10, 0x18, 0x28, 0x19, 0x1B, 0x54, 0x02, 0x26, + 0x06, 0x17, 0x04, 0x0C, 0x19, 0x0D, 0x1A, 0x35, 0x1B, 0x27, + 0x4F, 0x27, 0x01, 0x06, 0x0E, 0x06, 0x1E, 0x3C, 0x1E, 0x20, + 0x42, 0x21, 0x0A, 0x15, 0x0B, 0x09, 0x01, 0x2C, 0x0A, 0x08, + 0x01, 0x06, 0x05, 0x0A, 0x02, 0x03, 0x08, 0x01, 0x02, 0x01, + 0x01, 0x0D, 0x05, 0x0C, 0x01, 0x2C, 0x0D, 0x06, 0x16, 0x0D, + 0x1F, 0x0E, 0x15, 0x2A, 0x16, 0x05, 0x0A, 0x05, 0x03, 0x02, + 0x02, 0x02, 0x08, 0x01, 0x07, 0x10, 0x03, 0x03, 0x04, 0x02, + 0x02, 0x04, 0x02, 0x03, 0x03, 0x0D, 0x09, 0x11, 0x2E, 0x05, + 0x03, 0x01, 0x05, 0x02, 0x3C, 0x08, 0x06, 0x0E, 0x01, 0x03, + 0x01, 0x03, 0x1F, 0x1C, 0x19, 0x40, 0x20, 0x0D, 0x1A, 0x0E, + 0x06, 0x10, 0x07, 0x0A, 0x10, 0x01, 0x01, 0x05, 0x02, 0x03, + 0x06, 0x03, 0x01, 0x05, 0x02, 0x07, 0x32, 0x10, 0x0B, 0x0A, + 0x06, 0x05, 0x11, 0x07, 0x2F, 0x72, 0x3D, 0x25, 0x4C, 0x25, + 0x0C, 0x18, 0x0C, 0x0B, 0x01, 0x07, 0x0A, 0x14, 0x0A, 0x18, + 0x31, 0x18, 0x04, 0x09, 0x04, 0x03, 0x21, 0x01, 0x05, 0x11, + 0x0C, 0x0F, 0x1D, 0x0F, 0x2F, 0x5E, 0x5E, 0x5E, 0x2F, 0x20, + 0x01, 0x01, 0x02, 0x02, 0x01, 0x0E, 0x0C, 0x0F, 0x1F, 0x0F, + 0x34, 0x69, 0x68, 0x68, 0x34, 0x17, 0x31, 0x17, 0x1D, 0x37, + 0x1E, 0x2D, 0x5A, 0x5A, 0x5A, 0x2D, 0x05, 0x03, 0x03, 0x08, + 0x0F, 0x07, 0x04, 0x0A, 0x0B, 0x0C, 0x03, 0x04, 0x20, 0x09, + 0x04, 0x01, 0x01, 0x01, 0x01, 0x05, 0x02, 0x04, 0x0F, 0x1E, + 0x10, 0x35, 0x6A, 0x35, 0x0D, 0x1A, 0x0D, 0x05, 0x12, 0x05, + 0x0B, 0x0E, 0x05, 0x02, 0x01, 0x01, 0x0A, 0x09, 0x06, 0x18, + 0x01, 0x01, 0x01, 0x03, 0x03, 0x08, 0x0B, 0x08, 0x09, 0x06, + 0x09, 0x12, 0x08, 0x0D, 0x1B, 0x02, 0x05, 0x0C, 0x19, 0x0C, + 0x1B, 0x34, 0x1B, 0x01, 0x60, 0x0C, 0x24, 0x0F, 0x01, 0x0E, + 0x01, 0x02, 0x03, 0x12, 0x01, 0x06, 0x15, 0x08, 0x0A, 0x2C, + 0x19, 0x10, 0x12, 0x0E, 0x0A, 0x07, 0x02, 0x02, 0x06, 0x0E, + 0x23, 0x0E, 0x2A, 0x02, 0x02, 0x02, 0x11, 0x04, 0x06, 0x0C, + 0x06, 0x08, 0x18, 0x08, 0x13, 0x20, 0x0B, 0x12, 0x0B, 0x0A, + 0x0A, 0x2E, 0x01, 0x40, 0x09, 0x05, 0x06, 0x02, 0x03, 0x1F, + 0x04, 0x1B, 0x0B, 0x05, 0x06, 0x01, 0x07, 0x07, 0x07, 0x0C, + 0x07, 0x0C, 0x17, 0x0B, 0x05, 0x03, 0x0B, 0x15, 0x0A, 0x0B, + 0x33, 0x07, 0x79, 0x0B, 0x47, 0x05, 0x03, 0x02, 0x07, 0x06, + 0x02, 0x08, 0x13, 0x0B, 0x08, 0x16, 0x08, 0x13, 0x26, 0x13, + 0x08, 0x15, 0x08, 0x09, 0x02, 0x04, 0x16, 0x12, 0x25, 0x12, + 0x0B, 0x02, 0x01, 0x17, 0x05, 0x0C, 0x18, 0x0C, 0x23, 0x41, + 0x16, 0x14, 0x15, 0x02, 0x02, 0x01, 0x02, 0x01, 0x03, 0x03, + 0x0C, 0x08, 0x10, 0x07, 0x0D, 0x19, 0x0D, 0x06, 0x0F, 0x06, + 0x11, 0x03, 0x01, 0x05, 0x0A, 0x06, 0x0D, 0x05, 0x24, 0x42, + 0x02, 0x02, 0x03, 0x03, 0x02, 0x02, 0x01, 0x01, 0x0E, 0x0B, + 0x08, 0x05, 0x02, 0x04, 0x08, 0x03, 0x09, 0x13, 0x09, 0x01, + 0x05, 0x03, 0x02, 0x09, 0x15, 0x59, 0x14, 0x26, 0x4B, 0x25, + 0x2A, 0x53, 0x29, 0x12, 0x06, 0x03, 0x04, 0x05, 0x04, 0x2E, + 0x06, 0x13, 0x26, 0x13, 0x0B, 0x0F, 0x05, 0x05, 0x1B, 0x0B, + 0x0E, 0x15, 0x14, 0x08, 0x14, 0x09, 0x04, 0x09, 0x04, 0x02, + 0x04, 0x04, 0x04, 0x15, 0x0E, 0x03, 0x06, 0x06, 0x0D, 0x0A, + 0x05, 0x04, 0x03, 0x0C, 0x04, 0x07, 0x10, 0x01, 0x04, 0x0A, + 0x0A, 0x14, 0x0A, 0x0A, 0x0F, 0x0A, 0x0C, 0x06, 0x01, 0x06, + 0x09, 0x13, 0x0A, 0x0D, 0x1C, 0x14, 0x18, 0x31, 0x18, 0x04, + 0x12, 0x00, 0x00, 0x03, 0x00, 0x5D, 0x00, 0x25, 0x0B, 0x9F, + 0x03, 0x5A, 0x01, 0x39, 0x01, 0x49, 0x01, 0x55, 0x00, 0x00, + 0x01, 0x32, 0x06, 0x15, 0x14, 0x26, 0x23, 0x2A, 0x01, 0x23, + 0x2A, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x06, 0x23, 0x2A, + 0x01, 0x23, 0x06, 0x22, 0x23, 0x22, 0x16, 0x07, 0x0E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x06, 0x07, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x14, 0x22, 0x23, 0x22, 0x06, + 0x07, 0x2A, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, + 0x2E, 0x01, 0x35, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x14, + 0x06, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x15, 0x14, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x26, 0x27, 0x26, 0x34, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, + 0x03, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, 0x32, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x17, 0x32, 0x16, 0x17, 0x16, 0x36, 0x37, 0x36, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x14, 0x36, 0x37, 0x36, 0x16, + 0x17, 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x2E, 0x01, 0x27, 0x3A, 0x01, 0x33, 0x32, 0x06, 0x17, 0x16, + 0x36, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x3A, 0x01, + 0x33, 0x26, 0x34, 0x35, 0x34, 0x26, 0x37, 0x3E, 0x01, 0x33, + 0x3E, 0x01, 0x37, 0x32, 0x06, 0x15, 0x1C, 0x01, 0x15, 0x1C, + 0x01, 0x15, 0x14, 0x06, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x36, 0x37, 0x36, 0x32, 0x37, 0x3E, 0x01, 0x17, + 0x05, 0x22, 0x06, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x16, 0x37, + 0x36, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x25, 0x1E, 0x01, 0x17, + 0x3E, 0x01, 0x37, 0x2A, 0x01, 0x23, 0x1E, 0x01, 0x0B, 0x8F, + 0x10, 0x04, 0x08, 0x06, 0x0D, 0x1C, 0x0E, 0x24, 0x49, 0x25, + 0x2A, 0x55, 0x2A, 0x12, 0x23, 0x11, 0x0D, 0x18, 0x0C, 0x06, + 0x0B, 0x06, 0x09, 0x02, 0x03, 0x06, 0x29, 0x10, 0x0B, 0x14, + 0x09, 0x03, 0x16, 0x04, 0x0B, 0x13, 0x0B, 0x28, 0x52, 0x28, + 0x0B, 0x02, 0x02, 0x01, 0x06, 0x05, 0x08, 0x02, 0x01, 0x01, + 0x02, 0x01, 0x1A, 0x02, 0x2D, 0x59, 0x2C, 0x29, 0x55, 0x28, + 0x0A, 0x15, 0x0A, 0x07, 0x1D, 0x07, 0x0D, 0x01, 0x1C, 0x37, + 0x1B, 0x06, 0x0E, 0x07, 0x04, 0x01, 0x04, 0x06, 0x02, 0x02, + 0x08, 0x05, 0x0D, 0x21, 0x13, 0x0A, 0x13, 0x0E, 0x28, 0x50, + 0x26, 0x04, 0x0E, 0x06, 0x05, 0x08, 0x03, 0x08, 0x0E, 0x05, + 0x06, 0x0D, 0x06, 0x16, 0x22, 0x12, 0x08, 0x11, 0x07, 0x05, + 0x07, 0x05, 0x0A, 0x20, 0x0C, 0x16, 0x26, 0x14, 0x06, 0x0A, + 0x05, 0x04, 0x0B, 0x05, 0x07, 0x07, 0x03, 0x04, 0x08, 0x04, + 0x05, 0x09, 0x01, 0x02, 0x04, 0x03, 0x09, 0x0E, 0x1A, 0x0C, + 0x14, 0x27, 0x13, 0x09, 0x0A, 0x03, 0x10, 0x1F, 0x0D, 0x05, + 0x0E, 0x0C, 0x06, 0x0C, 0x06, 0x03, 0x1B, 0x05, 0x27, 0x4D, + 0x26, 0x2B, 0x57, 0x2B, 0x42, 0x73, 0x31, 0x1A, 0x35, 0x17, + 0x06, 0x0B, 0x07, 0x10, 0x0B, 0x03, 0x05, 0x01, 0x02, 0x03, + 0x02, 0x02, 0x04, 0x03, 0x04, 0x09, 0x2D, 0x1B, 0x37, 0x1B, + 0x35, 0x6B, 0x6A, 0x6B, 0x35, 0x0B, 0x18, 0x0B, 0x05, 0x08, + 0x04, 0x0C, 0x08, 0x0D, 0x14, 0x27, 0x14, 0x0B, 0x0F, 0x09, + 0x0B, 0x06, 0x01, 0x03, 0x06, 0x1F, 0x0A, 0x0C, 0x08, 0x0A, + 0x0D, 0x0E, 0x0C, 0x09, 0x06, 0x05, 0x04, 0x02, 0x47, 0x07, + 0x11, 0x24, 0x11, 0x0D, 0x1A, 0x0D, 0x36, 0x6D, 0x36, 0x0A, + 0x12, 0x0A, 0x01, 0x03, 0x03, 0x0A, 0x16, 0x0B, 0x10, 0x0C, + 0x0A, 0x05, 0x0E, 0x05, 0x27, 0x4E, 0x27, 0x38, 0x70, 0x70, + 0x70, 0x38, 0x1D, 0x3A, 0x1D, 0x01, 0x06, 0x03, 0x02, 0x0B, + 0x06, 0x0B, 0x17, 0x0C, 0x09, 0x02, 0x0A, 0x1E, 0x04, 0x0E, + 0x25, 0x12, 0x4F, 0x9C, 0x4E, 0x17, 0x2F, 0x17, 0x0F, 0x48, + 0x0A, 0xF8, 0xB8, 0x17, 0x07, 0x0B, 0x09, 0x14, 0x0C, 0x0A, + 0x49, 0x05, 0x06, 0x04, 0x1D, 0x15, 0x29, 0x15, 0xFC, 0x5D, + 0x05, 0x07, 0x06, 0x3A, 0x7E, 0x40, 0x45, 0x87, 0x44, 0x01, + 0x03, 0x02, 0xD5, 0x49, 0x0B, 0x07, 0x01, 0x01, 0x01, 0x02, + 0x01, 0x01, 0x06, 0x08, 0x0F, 0x1A, 0x07, 0x05, 0x13, 0x08, + 0x03, 0x04, 0x02, 0x03, 0x05, 0x01, 0x04, 0x04, 0x02, 0x0B, + 0x0A, 0x04, 0x04, 0x01, 0x03, 0x09, 0x09, 0x13, 0x0A, 0x01, + 0x01, 0x01, 0x05, 0x02, 0x02, 0x01, 0x01, 0x09, 0x02, 0x03, + 0x42, 0x0B, 0x06, 0x09, 0x06, 0x01, 0x01, 0x01, 0x15, 0x02, + 0x0D, 0x25, 0x0D, 0x14, 0x26, 0x13, 0x33, 0x62, 0x31, 0x19, + 0x35, 0x17, 0x0E, 0x29, 0x14, 0x02, 0x08, 0x02, 0x06, 0x0E, + 0x07, 0x10, 0x21, 0x10, 0x14, 0x27, 0x14, 0x43, 0x89, 0x44, + 0x04, 0x07, 0x04, 0x03, 0x07, 0x02, 0x06, 0x03, 0x01, 0x02, + 0x0A, 0x0A, 0x03, 0x07, 0x04, 0x04, 0x04, 0x03, 0x03, 0x18, + 0x07, 0x0B, 0x16, 0x0B, 0x10, 0x20, 0x11, 0x15, 0x2B, 0x16, + 0x07, 0x0D, 0x02, 0x04, 0x0C, 0x06, 0x09, 0x15, 0x09, 0x04, + 0x12, 0x06, 0x26, 0x4E, 0x27, 0x0E, 0x26, 0x0D, 0x07, 0x0D, + 0x07, 0x04, 0x01, 0x01, 0x02, 0x02, 0x02, 0x04, 0x02, 0x02, + 0x49, 0x28, 0x14, 0x2C, 0x17, 0x06, 0x11, 0x04, 0x08, 0x1A, + 0x0C, 0x12, 0x25, 0x11, 0x14, 0x27, 0x14, 0x14, 0x27, 0x14, + 0x1C, 0x4D, 0x01, 0x01, 0x1C, 0x03, 0x05, 0x05, 0x07, 0x04, + 0x08, 0x08, 0x09, 0x13, 0x0D, 0x17, 0x2A, 0x01, 0x0D, 0x08, + 0x09, 0x02, 0x01, 0x02, 0x05, 0x0A, 0x08, 0x14, 0x09, 0x03, + 0x06, 0x01, 0x01, 0x08, 0x02, 0x01, 0x01, 0x08, 0x0F, 0x07, + 0x0C, 0x05, 0x02, 0x01, 0x05, 0x09, 0x05, 0x05, 0x0F, 0x05, + 0x05, 0x1A, 0x01, 0x02, 0x02, 0x0E, 0x08, 0x0D, 0x1A, 0x0D, + 0x04, 0x07, 0x03, 0x01, 0x03, 0x03, 0x04, 0x13, 0x02, 0x0B, + 0x07, 0x01, 0x04, 0x02, 0x01, 0x01, 0x03, 0x03, 0x0F, 0x0F, + 0xA2, 0x30, 0x0E, 0x08, 0x01, 0x04, 0x0E, 0x14, 0x29, 0x02, + 0x24, 0x49, 0x24, 0x33, 0x5E, 0x2E, 0x0B, 0x17, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x5A, 0x00, 0x40, 0x08, 0xA7, 0x03, 0x41, + 0x00, 0xC4, 0x00, 0xDB, 0x00, 0x00, 0x01, 0x17, 0x16, 0x06, + 0x17, 0x22, 0x06, 0x23, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x07, 0x27, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, + 0x14, 0x16, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x07, + 0x06, 0x14, 0x15, 0x0E, 0x01, 0x07, 0x1E, 0x01, 0x1F, 0x01, + 0x23, 0x0E, 0x01, 0x15, 0x17, 0x22, 0x26, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x34, 0x26, 0x27, 0x26, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x23, 0x14, 0x16, 0x15, 0x1E, 0x01, + 0x07, 0x0E, 0x01, 0x23, 0x2E, 0x03, 0x27, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x23, 0x0E, 0x01, 0x07, 0x2E, 0x01, 0x2F, 0x01, + 0x0E, 0x01, 0x07, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x35, 0x33, + 0x15, 0x1E, 0x01, 0x17, 0x3E, 0x01, 0x37, 0x32, 0x1E, 0x02, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x35, 0x3E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x03, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x33, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x15, 0x3A, 0x01, 0x33, + 0x32, 0x16, 0x37, 0x3E, 0x01, 0x1F, 0x01, 0x15, 0x25, 0x21, + 0x22, 0x06, 0x1D, 0x01, 0x14, 0x16, 0x33, 0x3A, 0x03, 0x33, + 0x32, 0x16, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x08, + 0x9F, 0x06, 0x02, 0x09, 0x01, 0x18, 0x30, 0x18, 0x14, 0x26, + 0x14, 0x22, 0x43, 0x22, 0x18, 0x29, 0x17, 0x0A, 0x05, 0x04, + 0x0C, 0x0D, 0x14, 0x22, 0x15, 0x29, 0x51, 0x29, 0x29, 0x52, + 0x29, 0x14, 0x26, 0x14, 0x01, 0x0D, 0x12, 0x36, 0x15, 0x12, + 0x25, 0x11, 0x14, 0x0D, 0x0A, 0x0B, 0x05, 0x01, 0x01, 0x01, + 0x06, 0x06, 0x0D, 0x0A, 0x04, 0x11, 0x25, 0x11, 0x08, 0x0F, + 0x07, 0x04, 0x07, 0x03, 0x09, 0x07, 0x07, 0x03, 0x09, 0x11, + 0x0B, 0x25, 0x02, 0x09, 0x09, 0x18, 0x28, 0x17, 0x18, 0x26, + 0x0E, 0x0B, 0x12, 0x1B, 0x04, 0x02, 0x06, 0x01, 0x27, 0x58, + 0x30, 0x02, 0x05, 0x04, 0x03, 0x01, 0x1E, 0x3C, 0x1E, 0x01, + 0x03, 0x09, 0x0D, 0x1D, 0x0C, 0x04, 0x07, 0x04, 0x02, 0x32, + 0x6A, 0x38, 0x01, 0x04, 0x02, 0x0F, 0x15, 0x05, 0x02, 0x03, + 0x14, 0x09, 0x12, 0x08, 0x05, 0x0C, 0x05, 0xD0, 0x09, 0x14, + 0x0B, 0x14, 0x20, 0x11, 0x29, 0x50, 0x50, 0x51, 0x28, 0x04, + 0x07, 0x03, 0x02, 0x09, 0x13, 0x48, 0x1A, 0x22, 0x44, 0x22, + 0x2E, 0x5A, 0x5A, 0x5B, 0x2D, 0x2B, 0x55, 0x2B, 0x2A, 0x55, + 0x2B, 0x04, 0x08, 0x04, 0x14, 0x03, 0x02, 0x01, 0x08, 0x02, + 0x0F, 0x1D, 0x0E, 0x01, 0x01, 0x16, 0x2B, 0x16, 0x13, 0x2A, + 0x13, 0x27, 0x50, 0x28, 0x08, 0xFD, 0xEE, 0xFD, 0x3F, 0x13, + 0x12, 0x13, 0x12, 0x51, 0xA2, 0xA2, 0xA2, 0x52, 0x0F, 0x38, + 0x0B, 0x0E, 0x01, 0x0D, 0x04, 0x0D, 0x09, 0x02, 0x4A, 0x14, + 0x0A, 0x14, 0x0A, 0x05, 0x01, 0x09, 0x11, 0x01, 0x07, 0x15, + 0x22, 0x12, 0x07, 0x01, 0x01, 0x06, 0x16, 0x30, 0x12, 0x0C, + 0x07, 0x02, 0x02, 0x05, 0x06, 0x0D, 0x0A, 0x22, 0x0E, 0x04, + 0x16, 0x09, 0x04, 0x0A, 0x04, 0x09, 0x10, 0x1D, 0x15, 0x06, + 0x0A, 0x03, 0x01, 0x06, 0x03, 0x01, 0x02, 0x02, 0x04, 0x0D, + 0x05, 0x25, 0x52, 0x22, 0x17, 0x23, 0x19, 0x05, 0x0A, 0x05, + 0x04, 0x02, 0x09, 0x08, 0x1F, 0x14, 0x12, 0x2C, 0x18, 0x30, + 0x18, 0x1D, 0x3C, 0x1D, 0x1C, 0x15, 0x2A, 0x55, 0x54, 0x55, + 0x2A, 0x05, 0x0C, 0x07, 0x07, 0x1B, 0x03, 0x09, 0x01, 0x05, + 0x08, 0x04, 0x0A, 0x1A, 0x0F, 0x03, 0x02, 0x03, 0x01, 0x2C, + 0x5A, 0x2F, 0x20, 0x56, 0x1C, 0x0C, 0x15, 0x0C, 0x08, 0x10, + 0x08, 0x06, 0x06, 0x0D, 0x18, 0x0C, 0x09, 0x17, 0x0E, 0x04, + 0x04, 0x01, 0x05, 0x0B, 0x17, 0x0C, 0x09, 0x19, 0x0A, 0x12, + 0x08, 0x01, 0x01, 0x02, 0x02, 0x01, 0x03, 0x03, 0x03, 0x01, + 0x01, 0x03, 0x01, 0x01, 0x03, 0x01, 0x06, 0x07, 0x16, 0x45, + 0x1C, 0x13, 0x26, 0x14, 0x01, 0x06, 0x03, 0x02, 0x05, 0x02, + 0x03, 0x05, 0x0B, 0x02, 0x02, 0x04, 0x05, 0x99, 0x14, 0x13, + 0x23, 0x12, 0x13, 0x03, 0x0E, 0x0B, 0x43, 0x0B, 0x05, 0x06, + 0x00, 0x03, 0x00, 0x64, 0x00, 0x21, 0x0A, 0x42, 0x03, 0x60, + 0x00, 0x18, 0x00, 0x2B, 0x01, 0x91, 0x00, 0x00, 0x01, 0x34, + 0x26, 0x23, 0x22, 0x16, 0x17, 0x06, 0x26, 0x27, 0x2E, 0x01, + 0x27, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x16, 0x37, + 0x3E, 0x01, 0x37, 0x01, 0x1E, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x26, 0x37, 0x34, 0x36, 0x37, 0x22, 0x26, 0x07, 0x0E, + 0x01, 0x07, 0x17, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x06, 0x07, 0x06, 0x26, 0x27, 0x26, 0x06, 0x23, 0x22, 0x26, + 0x15, 0x14, 0x06, 0x07, 0x06, 0x26, 0x23, 0x2A, 0x03, 0x23, + 0x2A, 0x01, 0x23, 0x22, 0x26, 0x27, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x35, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, + 0x07, 0x06, 0x14, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x07, 0x22, 0x23, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x34, 0x36, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x36, 0x35, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, + 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x16, 0x06, 0x23, 0x0E, + 0x01, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x26, 0x27, 0x26, 0x06, 0x27, 0x26, 0x36, 0x37, 0x22, + 0x26, 0x27, 0x2E, 0x01, 0x33, 0x2A, 0x01, 0x23, 0x2A, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x36, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x3C, + 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x26, 0x37, 0x3E, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x3A, 0x01, 0x17, + 0x16, 0x32, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, + 0x26, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x26, 0x37, 0x3E, 0x01, + 0x37, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x26, 0x27, 0x26, 0x36, 0x17, 0x1E, 0x01, 0x15, 0x1C, + 0x01, 0x15, 0x14, 0x16, 0x33, 0x32, 0x34, 0x35, 0x34, 0x16, + 0x33, 0x3A, 0x01, 0x15, 0x14, 0x1D, 0x01, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x16, 0x17, 0x16, 0x36, 0x37, 0x36, + 0x16, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x33, 0x3A, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x3A, + 0x01, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x36, + 0x33, 0x32, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x05, 0x4D, 0x40, 0x18, + 0x0D, 0x0E, 0x02, 0x07, 0x13, 0x03, 0x07, 0x02, 0x01, 0x12, + 0x0F, 0x0C, 0x09, 0x1F, 0x11, 0x0E, 0x1D, 0x0E, 0x14, 0x08, + 0x03, 0x03, 0xB7, 0x01, 0x03, 0x05, 0x0D, 0x1A, 0x0D, 0x07, + 0x02, 0x01, 0x01, 0x01, 0x08, 0x21, 0x07, 0x06, 0x0B, 0x04, + 0x8B, 0x01, 0x08, 0x01, 0x05, 0x0C, 0x06, 0x0E, 0x08, 0x08, + 0x07, 0x14, 0x04, 0x08, 0x1B, 0x08, 0x03, 0x1F, 0x0B, 0x10, + 0x07, 0x11, 0x07, 0x36, 0x6B, 0x6B, 0x6B, 0x35, 0x1E, 0x3B, + 0x1D, 0x13, 0x15, 0x09, 0x03, 0x06, 0x02, 0x02, 0x09, 0x0B, + 0x05, 0x0A, 0x01, 0x01, 0x01, 0x03, 0x06, 0x1B, 0x0C, 0x01, + 0x08, 0x06, 0x01, 0x02, 0x02, 0x0A, 0x13, 0x09, 0x1C, 0x38, + 0x1C, 0x08, 0x27, 0x07, 0x02, 0x02, 0x01, 0x03, 0x07, 0x04, + 0x0C, 0x11, 0x01, 0x04, 0x03, 0x01, 0x0B, 0x03, 0x02, 0x01, + 0x05, 0x09, 0x07, 0x0D, 0x18, 0x0C, 0x0E, 0x1D, 0x0E, 0x07, + 0x13, 0x06, 0x0A, 0x07, 0x09, 0x08, 0x15, 0x04, 0x07, 0x09, + 0x06, 0x02, 0x05, 0x06, 0x07, 0x12, 0x05, 0x0D, 0x11, 0x09, + 0x06, 0x05, 0x06, 0x08, 0x07, 0x0D, 0x0B, 0x41, 0x3E, 0x27, + 0x0E, 0x21, 0x43, 0x22, 0x04, 0x0A, 0x04, 0x08, 0x08, 0x0E, + 0x0C, 0x1F, 0x0A, 0x08, 0x02, 0x02, 0x05, 0x09, 0x04, 0x03, + 0x03, 0x01, 0x08, 0x10, 0x07, 0x1E, 0x3A, 0x1D, 0x09, 0x14, + 0x09, 0x08, 0x02, 0x05, 0x0D, 0x28, 0x0B, 0x04, 0x08, 0x0A, + 0x11, 0x08, 0x09, 0x05, 0x05, 0x0B, 0x0E, 0x1B, 0x0E, 0x0A, + 0x08, 0x07, 0x06, 0x1E, 0x05, 0x13, 0x26, 0x13, 0x08, 0x0F, + 0x07, 0x0D, 0x0B, 0x01, 0x27, 0x4E, 0x27, 0x0B, 0x20, 0x04, + 0x05, 0x2B, 0x0E, 0x0C, 0x03, 0x02, 0x04, 0x08, 0x22, 0x10, + 0x2A, 0x54, 0x2A, 0x35, 0x69, 0x69, 0x69, 0x35, 0x09, 0x10, + 0x02, 0x02, 0x05, 0x08, 0x0D, 0x19, 0x0D, 0x1B, 0x35, 0x1A, + 0x0B, 0x05, 0x06, 0x0B, 0x13, 0x0D, 0x07, 0x07, 0x05, 0x06, + 0x17, 0x09, 0x0A, 0x14, 0x0A, 0x05, 0x1C, 0x04, 0x04, 0x13, + 0x01, 0x03, 0x1C, 0x05, 0x08, 0x23, 0x15, 0x10, 0x06, 0x01, + 0x05, 0x09, 0x1F, 0x06, 0x05, 0x05, 0x29, 0x53, 0x2A, 0x2E, + 0x5C, 0x2E, 0x09, 0x09, 0x05, 0x03, 0x0A, 0x04, 0x04, 0x0E, + 0x05, 0x04, 0x0A, 0x01, 0x01, 0x05, 0x05, 0x03, 0x07, 0x04, + 0x4F, 0xA0, 0x50, 0x29, 0x52, 0x2A, 0x12, 0x30, 0x0C, 0x0C, + 0x19, 0x0D, 0x04, 0x0B, 0x07, 0x0B, 0x15, 0x0B, 0x0A, 0x06, + 0x1C, 0x04, 0x07, 0x08, 0x07, 0x19, 0x32, 0x1A, 0x16, 0x34, + 0x1D, 0x15, 0x20, 0x41, 0x20, 0x01, 0xA0, 0x24, 0x01, 0x38, + 0x07, 0x04, 0x18, 0x04, 0x08, 0x15, 0x0A, 0x0C, 0x1E, 0x15, + 0x12, 0x03, 0x01, 0x01, 0x03, 0x1D, 0x0F, 0x01, 0x3D, 0x04, + 0x1C, 0x18, 0x06, 0x0B, 0x16, 0x0B, 0x04, 0x04, 0x04, 0x1F, + 0x07, 0x81, 0x01, 0x06, 0x09, 0x0B, 0x09, 0x12, 0x01, 0x04, + 0x04, 0x01, 0x02, 0x12, 0x10, 0x07, 0x02, 0x01, 0x03, 0x13, + 0x05, 0x09, 0x05, 0x01, 0x04, 0x01, 0x08, 0x11, 0x09, 0x1A, + 0x34, 0x1A, 0x07, 0x09, 0x05, 0x0A, 0x15, 0x0D, 0x15, 0x2B, + 0x14, 0x27, 0x50, 0x26, 0x04, 0x02, 0x07, 0x01, 0x03, 0x06, + 0x03, 0x09, 0x12, 0x09, 0x02, 0x10, 0x0B, 0x04, 0x17, 0x05, + 0x0D, 0x1A, 0x0D, 0x2C, 0x5D, 0x2E, 0x06, 0x19, 0x03, 0x02, + 0x02, 0x01, 0x01, 0x0B, 0x02, 0x05, 0x0B, 0x02, 0x02, 0x04, + 0x0D, 0x0F, 0x0D, 0x19, 0x06, 0x0B, 0x0C, 0x0E, 0x05, 0x08, + 0x03, 0x03, 0x07, 0x06, 0x10, 0x28, 0x12, 0x0C, 0x0D, 0x0C, + 0x0E, 0x09, 0x01, 0x02, 0x07, 0x16, 0x18, 0x3A, 0x73, 0x3A, + 0x08, 0x10, 0x08, 0x0D, 0x2C, 0x09, 0x07, 0x0B, 0x0E, 0x0B, + 0x35, 0x0B, 0x03, 0x02, 0x01, 0x07, 0x14, 0x07, 0x13, 0x18, + 0x15, 0x09, 0x12, 0x05, 0x0E, 0x0B, 0x05, 0x13, 0x03, 0x03, + 0x0F, 0x1C, 0x0F, 0x05, 0x0C, 0x05, 0x09, 0x07, 0x0E, 0x19, + 0x32, 0x19, 0x07, 0x11, 0x0E, 0x16, 0x01, 0x0C, 0x0B, 0x18, + 0x10, 0x17, 0x2F, 0x17, 0x39, 0x71, 0x39, 0x0C, 0x1F, 0x0B, + 0x12, 0x07, 0x0C, 0x08, 0x05, 0x03, 0x04, 0x01, 0x19, 0x05, + 0x06, 0x04, 0x01, 0x03, 0x05, 0x07, 0x14, 0x08, 0x0D, 0x0C, + 0x0B, 0x16, 0x20, 0x09, 0x07, 0x1B, 0x0F, 0x0D, 0x1A, 0x0D, + 0x05, 0x01, 0x05, 0x0A, 0x07, 0x02, 0x04, 0x02, 0x0A, 0x0A, + 0x0B, 0x07, 0x05, 0x08, 0x03, 0x02, 0x02, 0x01, 0x04, 0x05, + 0x05, 0x03, 0x11, 0x11, 0x21, 0x11, 0x05, 0x10, 0x01, 0x03, + 0x03, 0x09, 0x0D, 0x19, 0x0D, 0x19, 0x31, 0x18, 0x03, 0x01, + 0x0B, 0x02, 0x20, 0x1B, 0x0A, 0x00, 0x00, 0x07, 0x00, 0x5B, + 0x00, 0x26, 0x0D, 0x2D, 0x03, 0x5A, 0x00, 0xBA, 0x00, 0xC5, + 0x00, 0xCA, 0x00, 0xDC, 0x00, 0xE7, 0x00, 0xEE, 0x01, 0x11, + 0x00, 0x00, 0x01, 0x25, 0x27, 0x3F, 0x01, 0x27, 0x35, 0x0F, + 0x01, 0x27, 0x17, 0x15, 0x07, 0x27, 0x15, 0x23, 0x35, 0x33, + 0x35, 0x27, 0x0F, 0x03, 0x2F, 0x01, 0x37, 0x27, 0x23, 0x0F, + 0x02, 0x23, 0x07, 0x05, 0x2F, 0x01, 0x07, 0x27, 0x07, 0x17, + 0x0F, 0x02, 0x27, 0x22, 0x06, 0x0F, 0x02, 0x15, 0x1F, 0x01, + 0x07, 0x15, 0x1E, 0x01, 0x1F, 0x03, 0x07, 0x23, 0x35, 0x2F, + 0x03, 0x07, 0x27, 0x23, 0x07, 0x23, 0x22, 0x06, 0x0F, 0x02, + 0x17, 0x07, 0x0E, 0x01, 0x0F, 0x04, 0x1F, 0x01, 0x07, 0x27, + 0x13, 0x3F, 0x01, 0x2F, 0x03, 0x15, 0x07, 0x2F, 0x02, 0x23, + 0x0F, 0x01, 0x15, 0x07, 0x17, 0x23, 0x15, 0x23, 0x35, 0x07, + 0x35, 0x0F, 0x03, 0x2F, 0x01, 0x13, 0x33, 0x1F, 0x01, 0x05, + 0x1F, 0x01, 0x05, 0x27, 0x33, 0x35, 0x37, 0x17, 0x37, 0x35, + 0x33, 0x17, 0x3F, 0x03, 0x33, 0x05, 0x1F, 0x03, 0x07, 0x3F, + 0x01, 0x17, 0x35, 0x37, 0x35, 0x3F, 0x01, 0x05, 0x17, 0x15, + 0x1F, 0x03, 0x33, 0x3F, 0x02, 0x3E, 0x01, 0x17, 0x1E, 0x01, + 0x1F, 0x01, 0x07, 0x17, 0x33, 0x17, 0x37, 0x35, 0x33, 0x35, + 0x21, 0x17, 0x15, 0x07, 0x25, 0x2F, 0x03, 0x07, 0x17, 0x33, + 0x37, 0x35, 0x23, 0x07, 0x33, 0x37, 0x23, 0x15, 0x25, 0x27, + 0x21, 0x0F, 0x03, 0x17, 0x25, 0x3F, 0x01, 0x3E, 0x01, 0x35, + 0x34, 0x26, 0x2F, 0x01, 0x05, 0x27, 0x23, 0x0F, 0x01, 0x1F, + 0x01, 0x33, 0x3F, 0x01, 0x2F, 0x01, 0x15, 0x33, 0x2F, 0x02, + 0x07, 0x05, 0x27, 0x23, 0x07, 0x0E, 0x01, 0x07, 0x14, 0x16, + 0x1F, 0x01, 0x07, 0x27, 0x2E, 0x01, 0x35, 0x26, 0x36, 0x3F, + 0x01, 0x07, 0x0E, 0x01, 0x17, 0x14, 0x16, 0x1F, 0x01, 0x33, + 0x35, 0x37, 0x36, 0x26, 0x2F, 0x01, 0x0D, 0x29, 0xFD, 0xA7, + 0x01, 0x0C, 0x01, 0xC1, 0x50, 0x10, 0x8B, 0x1C, 0x07, 0x1E, + 0x17, 0x06, 0x56, 0x02, 0x03, 0x03, 0x06, 0x07, 0x05, 0x01, + 0x02, 0x11, 0x02, 0x05, 0x05, 0x09, 0x08, 0xFE, 0x1B, 0x09, + 0x0C, 0x18, 0x03, 0x18, 0x02, 0x02, 0x04, 0x0C, 0x03, 0x03, + 0x04, 0x01, 0x06, 0x02, 0x08, 0x01, 0x11, 0x01, 0x06, 0x05, + 0x1D, 0x11, 0x05, 0xC6, 0x06, 0x15, 0x1E, 0x0A, 0x03, 0x0E, + 0x13, 0x7B, 0x29, 0x06, 0x05, 0x07, 0x03, 0x08, 0x1D, 0x0F, + 0x04, 0x04, 0x09, 0x05, 0x0A, 0x02, 0x39, 0x01, 0x07, 0x05, + 0x05, 0xB9, 0xA6, 0x04, 0x03, 0x09, 0x0F, 0x10, 0x2A, 0x0B, + 0x02, 0x21, 0x01, 0x84, 0x20, 0x7D, 0x6D, 0x02, 0x4C, 0x25, + 0x7C, 0x9C, 0x01, 0x01, 0x07, 0x05, 0x02, 0x03, 0x8B, 0x05, + 0x04, 0x01, 0x67, 0x04, 0x02, 0x01, 0x22, 0x01, 0x22, 0x0C, + 0x01, 0x23, 0x22, 0x02, 0x58, 0x04, 0x0B, 0x0D, 0x08, 0x01, + 0xB5, 0x0D, 0x16, 0x0D, 0x06, 0x03, 0x09, 0x02, 0x1B, 0x09, + 0x03, 0x06, 0x01, 0xE6, 0x05, 0x0E, 0x02, 0x04, 0x03, 0x11, + 0x01, 0x50, 0x08, 0x04, 0x08, 0x04, 0x0A, 0x0E, 0x05, 0x04, + 0x02, 0x02, 0x8B, 0x12, 0x4F, 0xC1, 0x02, 0x4C, 0x05, 0x04, + 0xFB, 0xE9, 0x07, 0x05, 0x01, 0x1F, 0x2F, 0x07, 0x59, 0x07, + 0x0C, 0x53, 0x54, 0x04, 0x58, 0xFD, 0x6E, 0x04, 0xFE, 0x88, + 0x0F, 0x0C, 0x05, 0x15, 0x08, 0x01, 0xA3, 0x05, 0x0B, 0x07, + 0x08, 0x07, 0x07, 0x0B, 0xFA, 0xAC, 0x05, 0x61, 0x05, 0x04, + 0x05, 0x04, 0x63, 0x03, 0x04, 0x04, 0x6F, 0x7D, 0x02, 0x04, + 0x05, 0x72, 0x04, 0xB6, 0x0A, 0x32, 0x0C, 0x05, 0x06, 0x01, + 0x04, 0x05, 0x0C, 0x05, 0x11, 0x09, 0x09, 0x01, 0x03, 0x03, + 0x05, 0x16, 0x0C, 0x0B, 0x02, 0x09, 0x08, 0x10, 0x76, 0x0A, + 0x03, 0x01, 0x04, 0x17, 0x02, 0x2D, 0x01, 0x18, 0x01, 0x09, + 0x03, 0x05, 0x01, 0x05, 0x01, 0x05, 0x18, 0x08, 0x02, 0x0B, + 0x28, 0x05, 0x02, 0x07, 0x14, 0x04, 0x03, 0x04, 0x03, 0x12, + 0x08, 0x1D, 0x05, 0x04, 0x11, 0x04, 0x05, 0x03, 0x09, 0x21, + 0x02, 0x15, 0x02, 0x07, 0x04, 0x01, 0x02, 0x03, 0x08, 0x05, + 0x70, 0x02, 0x09, 0x07, 0x29, 0x17, 0x2C, 0x15, 0x66, 0x36, + 0x07, 0x37, 0x06, 0x45, 0x75, 0x4F, 0x22, 0x03, 0x03, 0x04, + 0x02, 0x02, 0x08, 0x37, 0x11, 0x03, 0x01, 0x04, 0x02, 0x08, + 0x04, 0x6F, 0x0A, 0x0B, 0x03, 0x0C, 0x2B, 0x01, 0x21, 0x0C, + 0x17, 0x18, 0x10, 0x08, 0x01, 0x05, 0x02, 0x48, 0x02, 0x0C, + 0x18, 0x03, 0x0B, 0x02, 0x44, 0x1C, 0x1B, 0x4E, 0x3F, 0x47, + 0x1A, 0x04, 0x05, 0x05, 0x04, 0x01, 0x5D, 0x05, 0x12, 0x04, + 0x03, 0x07, 0x01, 0x0C, 0x09, 0x01, 0x09, 0x02, 0x0F, 0x02, + 0x8C, 0x05, 0x08, 0x06, 0x30, 0x02, 0x0D, 0x17, 0x0C, 0x55, + 0x01, 0x26, 0x05, 0x09, 0x02, 0x02, 0x04, 0x03, 0x08, 0x0A, + 0x0E, 0x01, 0x01, 0x05, 0x20, 0x33, 0x71, 0x07, 0x03, 0x03, + 0x01, 0x01, 0x08, 0x05, 0x0A, 0x04, 0x94, 0x06, 0x01, 0x05, + 0x24, 0x06, 0x7C, 0x07, 0xB2, 0x07, 0x11, 0x0D, 0x03, 0x4A, + 0x05, 0x08, 0x1F, 0x4D, 0x0D, 0x0D, 0x81, 0x02, 0x06, 0x0C, + 0x07, 0x33, 0x08, 0x03, 0x01, 0x05, 0x06, 0x11, 0x0C, 0x09, + 0x10, 0x06, 0x07, 0xF4, 0x01, 0x01, 0x08, 0x07, 0x03, 0x04, + 0x07, 0x07, 0x9A, 0x0E, 0x09, 0x05, 0x02, 0x02, 0xFA, 0x04, + 0x0C, 0x09, 0x0F, 0x08, 0x07, 0x0E, 0x08, 0x0A, 0x04, 0x0D, + 0x08, 0x11, 0x09, 0x06, 0x0E, 0x08, 0x0C, 0x08, 0x08, 0x17, + 0x0F, 0x09, 0x0F, 0x08, 0x0B, 0x0F, 0x10, 0x09, 0x15, 0x0B, + 0x15, 0x00, 0x00, 0x02, 0x00, 0x53, 0xFF, 0xF2, 0x08, 0xFC, + 0x03, 0x8D, 0x00, 0x1E, 0x01, 0x28, 0x00, 0x00, 0x01, 0x07, + 0x0E, 0x01, 0x15, 0x17, 0x0F, 0x01, 0x27, 0x07, 0x23, 0x0F, + 0x02, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x33, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x23, 0x25, 0x17, + 0x37, 0x33, 0x1F, 0x01, 0x0F, 0x01, 0x23, 0x2F, 0x01, 0x0F, + 0x01, 0x23, 0x27, 0x23, 0x27, 0x23, 0x0E, 0x01, 0x2B, 0x01, + 0x2F, 0x01, 0x05, 0x07, 0x23, 0x27, 0x23, 0x07, 0x23, 0x07, + 0x14, 0x06, 0x07, 0x1F, 0x01, 0x1E, 0x01, 0x07, 0x0E, 0x01, + 0x1F, 0x01, 0x15, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x0F, 0x01, + 0x2F, 0x01, 0x34, 0x36, 0x3F, 0x01, 0x3E, 0x01, 0x2F, 0x02, + 0x26, 0x36, 0x3F, 0x01, 0x27, 0x07, 0x0E, 0x01, 0x0F, 0x01, + 0x0E, 0x01, 0x0F, 0x03, 0x22, 0x26, 0x2F, 0x01, 0x3E, 0x01, + 0x3F, 0x01, 0x3E, 0x01, 0x3F, 0x01, 0x3E, 0x01, 0x35, 0x34, + 0x26, 0x27, 0x0F, 0x01, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x0F, + 0x01, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x0F, + 0x02, 0x06, 0x26, 0x37, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x2F, 0x02, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x0F, 0x01, 0x1F, 0x01, 0x14, 0x06, + 0x07, 0x0E, 0x01, 0x2B, 0x01, 0x22, 0x26, 0x27, 0x2E, 0x01, + 0x2F, 0x01, 0x2E, 0x01, 0x35, 0x26, 0x36, 0x3F, 0x02, 0x3E, + 0x01, 0x33, 0x25, 0x35, 0x3F, 0x02, 0x17, 0x35, 0x23, 0x16, + 0x06, 0x23, 0x2F, 0x01, 0x23, 0x07, 0x23, 0x2E, 0x01, 0x35, + 0x34, 0x36, 0x37, 0x33, 0x17, 0x3F, 0x01, 0x3E, 0x01, 0x33, + 0x32, 0x16, 0x15, 0x37, 0x35, 0x37, 0x17, 0x15, 0x3F, 0x01, + 0x33, 0x17, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x07, 0x15, + 0x23, 0x35, 0x23, 0x17, 0x33, 0x1E, 0x01, 0x1F, 0x01, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x17, 0x15, 0x17, 0x21, 0x3F, 0x01, 0x33, 0x17, 0x33, 0x37, + 0x17, 0x37, 0x3E, 0x01, 0x3B, 0x01, 0x17, 0x04, 0x8B, 0x07, + 0x04, 0x04, 0x03, 0x05, 0x16, 0x0E, 0x06, 0x1B, 0x08, 0x06, + 0x37, 0x05, 0x01, 0x04, 0x03, 0x09, 0x06, 0x4B, 0x15, 0x20, + 0x0B, 0x08, 0x36, 0x2F, 0x03, 0x08, 0x0A, 0x5E, 0x04, 0x13, + 0x0E, 0x0F, 0x37, 0x05, 0x05, 0x05, 0x07, 0x31, 0x0A, 0x0A, + 0x0E, 0x06, 0x1F, 0x05, 0x31, 0x04, 0x18, 0x01, 0x05, 0x04, + 0x2D, 0x09, 0x03, 0xFE, 0xBE, 0x11, 0x08, 0x06, 0x07, 0x05, + 0x43, 0x09, 0x07, 0x07, 0x08, 0x12, 0x09, 0x08, 0x01, 0x03, + 0x02, 0x02, 0x01, 0x01, 0x0D, 0x0C, 0x02, 0x08, 0x0A, 0x2A, + 0x31, 0x1C, 0x02, 0x04, 0x0F, 0x05, 0x02, 0x01, 0x08, 0x09, + 0x02, 0x09, 0x0A, 0x14, 0x53, 0x61, 0x10, 0x2B, 0x1A, 0x47, + 0x0C, 0x17, 0x0B, 0x40, 0x6E, 0x4E, 0x05, 0x07, 0x02, 0x02, + 0x01, 0x06, 0x05, 0x15, 0x08, 0x0C, 0x03, 0x17, 0x08, 0x08, + 0x0E, 0x0E, 0x3E, 0x44, 0x10, 0x13, 0x02, 0x05, 0x0F, 0x0B, + 0x03, 0x03, 0x11, 0x0F, 0x16, 0x28, 0x13, 0x08, 0x02, 0x09, + 0x52, 0x52, 0x07, 0x05, 0x01, 0x19, 0x0E, 0x19, 0x0A, 0x0A, + 0x0F, 0x04, 0x05, 0x21, 0x32, 0x02, 0x05, 0x04, 0x04, 0x05, + 0x01, 0x0E, 0x28, 0x1A, 0x1F, 0x22, 0x03, 0x08, 0x0C, 0x0D, + 0x05, 0x04, 0x04, 0x0B, 0x08, 0x82, 0x06, 0x0C, 0x06, 0x07, + 0x0B, 0x04, 0x23, 0x0C, 0x0E, 0x01, 0x02, 0x02, 0x0E, 0x24, + 0x0D, 0x15, 0x07, 0x02, 0xBB, 0x12, 0x1B, 0x1F, 0x2A, 0x11, + 0x01, 0x08, 0x09, 0x0E, 0x02, 0x27, 0x05, 0x0E, 0x05, 0x05, + 0x05, 0x04, 0x0A, 0x07, 0x26, 0x02, 0x02, 0x07, 0x07, 0x07, + 0x07, 0x0B, 0x15, 0x17, 0x58, 0x6A, 0x22, 0x10, 0x0F, 0x0D, + 0x16, 0x16, 0x0C, 0x37, 0x09, 0x0E, 0x08, 0x08, 0x01, 0x05, + 0x24, 0x11, 0x26, 0x10, 0x26, 0x10, 0x27, 0x0F, 0x27, 0x10, + 0x1E, 0x4E, 0x14, 0x01, 0x59, 0x06, 0x09, 0x29, 0x0A, 0x14, + 0x0A, 0x2B, 0x01, 0x02, 0x04, 0x03, 0x1C, 0x07, 0x01, 0xF9, + 0x05, 0x05, 0x0B, 0x06, 0x17, 0x06, 0x01, 0x01, 0x0E, 0x02, + 0x07, 0x64, 0x0A, 0x12, 0x08, 0x06, 0x08, 0x02, 0x02, 0x0B, + 0x08, 0x07, 0x53, 0x4D, 0x05, 0x16, 0x10, 0xB2, 0x01, 0x07, + 0x0A, 0x1A, 0x19, 0x0A, 0x03, 0x01, 0x02, 0x02, 0x03, 0x04, + 0x04, 0x03, 0x03, 0x02, 0x08, 0x12, 0x06, 0x06, 0x44, 0x06, + 0x08, 0x02, 0x08, 0x02, 0x02, 0x07, 0x05, 0x13, 0x1B, 0x09, + 0x33, 0x3A, 0x11, 0x25, 0x13, 0x04, 0x08, 0x04, 0x07, 0x09, + 0x07, 0x19, 0x2D, 0x14, 0x37, 0x0D, 0x14, 0x06, 0x1C, 0x13, + 0x05, 0x0A, 0x06, 0x0A, 0x04, 0x04, 0x0B, 0x2F, 0x25, 0x6B, + 0x11, 0x18, 0x05, 0x0B, 0x06, 0x01, 0x03, 0x04, 0x17, 0x18, + 0x22, 0x0B, 0x27, 0x0F, 0x12, 0x02, 0x14, 0x0A, 0x19, 0x0E, + 0x10, 0x13, 0x03, 0x02, 0x05, 0x01, 0x05, 0x05, 0x06, 0x0B, + 0x04, 0x28, 0x1E, 0x51, 0x32, 0x4F, 0x67, 0x18, 0x0A, 0x0F, + 0x05, 0x1D, 0x1C, 0x02, 0x14, 0x16, 0x36, 0x25, 0x4F, 0x2B, + 0x2B, 0x52, 0x27, 0x3D, 0x02, 0x28, 0x02, 0x03, 0x05, 0x05, + 0x04, 0x01, 0x05, 0x17, 0x12, 0x15, 0x22, 0x0B, 0x1B, 0x0D, + 0x13, 0x07, 0x0B, 0x04, 0x04, 0x04, 0x05, 0x05, 0x07, 0x11, + 0x0B, 0x90, 0x3C, 0x49, 0x0E, 0x0D, 0x14, 0x07, 0x15, 0x1D, + 0x08, 0x09, 0x0F, 0x08, 0x0D, 0x12, 0x05, 0x01, 0x39, 0x06, + 0x06, 0x05, 0x07, 0x06, 0x07, 0x19, 0x11, 0x11, 0x12, 0x02, + 0x05, 0x02, 0x07, 0x04, 0x03, 0x07, 0x06, 0x01, 0x13, 0x03, + 0x02, 0x0E, 0x0D, 0x0C, 0x0C, 0x06, 0x04, 0x6D, 0x01, 0x05, + 0x07, 0x0D, 0x01, 0x04, 0x03, 0x15, 0x04, 0x04, 0x04, 0x04, + 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x27, 0x1A, 0x0B, 0x04, + 0x05, 0x09, 0x06, 0x02, 0x04, 0x02, 0x02, 0x02, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x53, 0x00, 0x0D, 0x0A, 0x10, 0x03, 0x75, + 0x01, 0xEE, 0x02, 0x04, 0x02, 0x11, 0x00, 0x00, 0x01, 0x36, + 0x26, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x06, 0x17, 0x1E, 0x01, + 0x27, 0x34, 0x16, 0x17, 0x16, 0x36, 0x35, 0x26, 0x36, 0x33, + 0x32, 0x36, 0x15, 0x16, 0x06, 0x17, 0x16, 0x36, 0x33, 0x3A, + 0x01, 0x33, 0x32, 0x16, 0x37, 0x34, 0x26, 0x37, 0x36, 0x16, + 0x33, 0x16, 0x32, 0x33, 0x32, 0x36, 0x37, 0x34, 0x16, 0x15, + 0x16, 0x14, 0x37, 0x36, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x33, 0x32, 0x36, 0x15, 0x14, 0x36, 0x33, 0x32, 0x16, + 0x37, 0x3E, 0x01, 0x17, 0x16, 0x06, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x03, 0x33, 0x32, 0x36, 0x17, 0x32, 0x16, 0x35, 0x34, + 0x16, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x26, 0x37, 0x36, 0x32, + 0x15, 0x16, 0x36, 0x17, 0x16, 0x06, 0x15, 0x14, 0x32, 0x17, + 0x1E, 0x01, 0x07, 0x14, 0x06, 0x17, 0x16, 0x36, 0x17, 0x16, + 0x06, 0x15, 0x16, 0x36, 0x17, 0x1E, 0x01, 0x23, 0x2A, 0x01, + 0x23, 0x30, 0x07, 0x06, 0x15, 0x32, 0x36, 0x17, 0x16, 0x06, + 0x07, 0x06, 0x26, 0x15, 0x14, 0x16, 0x3A, 0x01, 0x33, 0x32, + 0x36, 0x37, 0x34, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, + 0x33, 0x3A, 0x01, 0x17, 0x16, 0x06, 0x15, 0x14, 0x16, 0x23, + 0x06, 0x26, 0x23, 0x22, 0x26, 0x07, 0x06, 0x36, 0x23, 0x2A, + 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x06, 0x14, + 0x07, 0x06, 0x26, 0x07, 0x06, 0x16, 0x07, 0x22, 0x26, 0x23, + 0x2E, 0x01, 0x35, 0x34, 0x36, 0x27, 0x34, 0x26, 0x07, 0x22, + 0x34, 0x27, 0x26, 0x06, 0x23, 0x26, 0x06, 0x07, 0x06, 0x16, + 0x07, 0x06, 0x16, 0x23, 0x22, 0x26, 0x23, 0x22, 0x26, 0x23, + 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x06, + 0x26, 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, + 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x17, 0x14, 0x06, 0x17, + 0x16, 0x36, 0x17, 0x16, 0x06, 0x23, 0x22, 0x06, 0x15, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x22, 0x07, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x07, + 0x0E, 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x27, 0x23, + 0x26, 0x22, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x26, 0x07, 0x06, + 0x16, 0x15, 0x1E, 0x01, 0x07, 0x2A, 0x01, 0x27, 0x22, 0x26, + 0x07, 0x0E, 0x01, 0x15, 0x14, 0x22, 0x23, 0x22, 0x06, 0x15, + 0x0E, 0x01, 0x07, 0x22, 0x06, 0x23, 0x22, 0x26, 0x35, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x36, + 0x35, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x22, 0x06, 0x27, 0x26, 0x36, 0x27, 0x2E, 0x01, 0x35, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x34, 0x26, + 0x37, 0x36, 0x16, 0x17, 0x32, 0x06, 0x17, 0x16, 0x36, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x32, 0x33, 0x1E, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x32, 0x34, 0x27, 0x34, 0x36, 0x35, + 0x2E, 0x01, 0x07, 0x06, 0x16, 0x23, 0x22, 0x26, 0x37, 0x34, + 0x06, 0x23, 0x22, 0x16, 0x07, 0x06, 0x34, 0x37, 0x34, 0x26, + 0x37, 0x13, 0x26, 0x06, 0x23, 0x22, 0x16, 0x17, 0x14, 0x36, + 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x26, 0x27, 0x07, 0x26, 0x06, 0x15, 0x14, 0x16, 0x33, + 0x34, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x03, 0x36, 0x09, 0x03, + 0x04, 0x02, 0x16, 0x04, 0x09, 0x0E, 0x0E, 0x06, 0x12, 0x01, + 0x10, 0x02, 0x04, 0x07, 0x01, 0x0A, 0x09, 0x03, 0x16, 0x01, + 0x02, 0x03, 0x09, 0x1B, 0x0B, 0x10, 0x1F, 0x10, 0x02, 0x0F, + 0x01, 0x03, 0x02, 0x04, 0x13, 0x04, 0x0A, 0x15, 0x0A, 0x0F, + 0x02, 0x01, 0x11, 0x01, 0x09, 0x06, 0x03, 0x01, 0x03, 0x0D, + 0x05, 0x02, 0x1C, 0x0A, 0x03, 0x20, 0x1B, 0x0A, 0x18, 0x31, + 0x18, 0x07, 0x10, 0x07, 0x0B, 0x08, 0x0E, 0x3C, 0x77, 0x3C, + 0x31, 0x62, 0x63, 0x62, 0x31, 0x15, 0x29, 0x14, 0x03, 0x13, + 0x09, 0x04, 0x05, 0x02, 0x1C, 0x01, 0x08, 0x02, 0x02, 0x02, + 0x05, 0x03, 0x04, 0x01, 0x01, 0x04, 0x04, 0x02, 0x0C, 0x04, + 0x05, 0x01, 0x01, 0x36, 0x04, 0x01, 0x02, 0x03, 0x05, 0x0C, + 0x06, 0x02, 0x01, 0x03, 0x14, 0x02, 0x02, 0x04, 0x05, 0x05, + 0x2E, 0x44, 0x55, 0x4C, 0x07, 0x04, 0x02, 0x01, 0x10, 0x02, + 0x08, 0x10, 0x08, 0x0E, 0x1E, 0x0F, 0x03, 0x09, 0x04, 0x02, + 0x02, 0x04, 0x03, 0x0B, 0x16, 0x0B, 0x1C, 0x39, 0x1C, 0x0D, + 0x04, 0x07, 0x11, 0x23, 0x11, 0x1E, 0x3C, 0x1D, 0x05, 0x0B, + 0x05, 0x03, 0x01, 0x03, 0x09, 0x04, 0x04, 0x09, 0x09, 0x06, + 0x0E, 0x06, 0x0B, 0x02, 0x04, 0x01, 0x04, 0x03, 0x05, 0x02, + 0x0A, 0x01, 0x05, 0x08, 0x09, 0x02, 0x02, 0x02, 0x0D, 0x07, + 0x01, 0x0B, 0x0D, 0x1A, 0x0D, 0x3D, 0x7B, 0x3D, 0x1D, 0x3A, + 0x1D, 0x0F, 0x1D, 0x0E, 0x09, 0x2D, 0x04, 0x03, 0x0F, 0x03, + 0x02, 0x01, 0x02, 0x07, 0x0E, 0x07, 0x1C, 0x36, 0x1C, 0x18, + 0x28, 0x14, 0x09, 0x08, 0x01, 0x01, 0x01, 0x02, 0x04, 0x03, + 0x05, 0x07, 0x05, 0x09, 0x03, 0x01, 0x04, 0x02, 0x01, 0x06, + 0x02, 0x03, 0x02, 0x03, 0x06, 0x10, 0x07, 0x03, 0x07, 0x05, + 0x04, 0x06, 0x04, 0x03, 0x19, 0x06, 0x0F, 0x1D, 0x0F, 0x16, + 0x30, 0x18, 0x0E, 0x07, 0x05, 0x09, 0x0C, 0x04, 0x04, 0x0B, + 0x03, 0x04, 0x08, 0x06, 0x04, 0x01, 0x11, 0x1E, 0x3C, 0x1E, + 0x09, 0x12, 0x09, 0x09, 0x0B, 0x05, 0x03, 0x0C, 0x0C, 0x02, + 0x04, 0x0C, 0x06, 0x0C, 0x0B, 0x03, 0x03, 0x39, 0x08, 0x17, + 0x30, 0x16, 0x21, 0x5B, 0x0D, 0x0C, 0x13, 0x06, 0x06, 0x30, + 0x10, 0x01, 0x01, 0x01, 0x01, 0x05, 0x06, 0x08, 0x0A, 0x01, + 0x01, 0x01, 0x16, 0x0B, 0x17, 0x0C, 0x05, 0x0B, 0x05, 0x02, + 0x01, 0x2E, 0x05, 0x03, 0x03, 0x01, 0x03, 0x08, 0x06, 0x0B, + 0x05, 0x09, 0x01, 0x0A, 0x1A, 0x0B, 0x09, 0x13, 0x08, 0x04, + 0x17, 0x06, 0x07, 0x03, 0x0F, 0x20, 0x08, 0x12, 0x23, 0x09, + 0x04, 0x02, 0x0B, 0x08, 0x13, 0x08, 0x06, 0x02, 0x01, 0x02, + 0x05, 0x03, 0x0B, 0x03, 0x03, 0x03, 0x02, 0x02, 0x04, 0x02, + 0x02, 0x05, 0x08, 0x13, 0x08, 0x07, 0x02, 0x01, 0x01, 0x1B, + 0x05, 0x1F, 0x3F, 0x1F, 0x3E, 0x7C, 0x3F, 0x19, 0x39, 0x19, + 0x14, 0x19, 0x11, 0x06, 0x04, 0x01, 0x02, 0x0E, 0x05, 0x17, + 0x2C, 0x17, 0x14, 0x27, 0x14, 0x0B, 0x01, 0x01, 0x01, 0x08, + 0x01, 0x03, 0x05, 0x0C, 0x04, 0x09, 0x02, 0x20, 0x03, 0x10, + 0x08, 0x0A, 0x12, 0x01, 0x03, 0x05, 0xBF, 0x0A, 0x2B, 0x0C, + 0x19, 0x04, 0x01, 0x1E, 0x06, 0x07, 0x0D, 0x07, 0x0D, 0x09, + 0x05, 0x08, 0x1A, 0x01, 0x01, 0x0F, 0x08, 0x86, 0x08, 0x04, + 0x16, 0x10, 0x0B, 0x02, 0x02, 0x09, 0x02, 0x03, 0x48, 0x08, + 0x0F, 0x0A, 0x06, 0x06, 0x04, 0x07, 0x29, 0x02, 0x01, 0x02, + 0x09, 0x05, 0x04, 0x03, 0x06, 0x01, 0x09, 0x0A, 0x01, 0x02, + 0x03, 0x02, 0x10, 0x01, 0x03, 0x03, 0x02, 0x03, 0x02, 0x07, + 0x02, 0x04, 0x03, 0x01, 0x04, 0x0C, 0x03, 0x01, 0x04, 0x06, + 0x0D, 0x02, 0x02, 0x1A, 0x03, 0x0B, 0x15, 0x0A, 0x05, 0x3A, + 0x02, 0x03, 0x0D, 0x03, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, + 0x0C, 0x02, 0x02, 0x08, 0x04, 0x06, 0x03, 0x05, 0x0D, 0x1A, + 0x0D, 0x06, 0x45, 0x03, 0x01, 0x05, 0x09, 0x05, 0x05, 0x05, + 0x0A, 0x05, 0x06, 0x03, 0x06, 0x10, 0x07, 0x0A, 0x1C, 0x0A, + 0x05, 0x03, 0x03, 0x02, 0x0F, 0x04, 0x13, 0x13, 0x0E, 0x01, + 0x11, 0x04, 0x05, 0x01, 0x02, 0x04, 0x05, 0x0A, 0x01, 0x01, + 0x03, 0x03, 0x01, 0x01, 0x04, 0x03, 0x03, 0x01, 0x01, 0x01, + 0x2A, 0x04, 0x02, 0x1A, 0x02, 0x01, 0x01, 0x02, 0x01, 0x0D, + 0x02, 0x01, 0x01, 0x08, 0x02, 0x08, 0x01, 0x05, 0x07, 0x35, + 0x01, 0x02, 0x01, 0x0A, 0x0A, 0x09, 0x11, 0x09, 0x04, 0x01, + 0x01, 0x05, 0x03, 0x0D, 0x37, 0x01, 0x06, 0x09, 0x0B, 0x08, + 0x04, 0x02, 0x06, 0x01, 0x01, 0x03, 0x06, 0x04, 0x02, 0x03, + 0x01, 0x09, 0x02, 0x01, 0x01, 0x09, 0x0D, 0x06, 0x0D, 0x0B, + 0x03, 0x0D, 0x03, 0x04, 0x04, 0x01, 0x02, 0x0F, 0x07, 0x09, + 0x15, 0x2A, 0x15, 0x08, 0x0B, 0x07, 0x07, 0x10, 0x08, 0x15, + 0x2B, 0x15, 0x09, 0x15, 0x09, 0x06, 0x0B, 0x09, 0x07, 0x05, + 0x02, 0x06, 0x09, 0x05, 0x08, 0x11, 0x39, 0x0A, 0x13, 0x30, + 0x16, 0x11, 0x20, 0x12, 0x16, 0x2E, 0x16, 0x10, 0x09, 0x01, + 0x01, 0x01, 0x08, 0x06, 0x14, 0x07, 0x05, 0x11, 0x05, 0x09, + 0x11, 0x08, 0x14, 0x24, 0x15, 0x10, 0x1A, 0x04, 0x0A, 0x11, + 0x0C, 0x11, 0x6E, 0x0D, 0x0D, 0x24, 0x12, 0x12, 0x0E, 0x01, + 0x05, 0x04, 0x09, 0x12, 0x09, 0x09, 0x03, 0x03, 0x04, 0x0D, + 0x0A, 0x12, 0x15, 0x01, 0x01, 0x01, 0x01, 0x01, 0x17, 0x03, + 0x07, 0x0C, 0x02, 0x08, 0x05, 0x01, 0x01, 0x07, 0x08, 0x0A, + 0x0B, 0x0A, 0x09, 0x0C, 0x0B, 0x05, 0x02, 0x03, 0x03, 0x25, + 0x06, 0x21, 0x0A, 0x12, 0x27, 0x18, 0x09, 0x0A, 0x01, 0x01, + 0x03, 0x03, 0x12, 0x05, 0x08, 0x0D, 0x09, 0x23, 0x46, 0x24, + 0x16, 0x2C, 0x16, 0x19, 0x31, 0x18, 0x05, 0x14, 0x02, 0x03, + 0x03, 0x01, 0x0D, 0x04, 0x09, 0x02, 0x03, 0x05, 0x04, 0x24, + 0x08, 0x03, 0x04, 0x07, 0x06, 0x01, 0x01, 0x05, 0x0A, 0x04, + 0x08, 0x03, 0x03, 0x03, 0x03, 0x07, 0x06, 0x05, 0x07, 0x03, + 0x01, 0x09, 0x04, 0x07, 0x20, 0x0A, 0x16, 0x2C, 0x16, 0xFE, + 0x6F, 0x0A, 0x08, 0x2F, 0x11, 0x0A, 0x03, 0x02, 0x05, 0x07, + 0x0D, 0x0C, 0x09, 0x11, 0x04, 0x11, 0x0D, 0x1D, 0x03, 0x12, + 0x0F, 0x04, 0x0D, 0x05, 0x08, 0x0E, 0x08, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x56, 0x00, 0x40, 0x0A, 0xA0, 0x03, 0x40, + 0x00, 0x7D, 0x00, 0x95, 0x00, 0x00, 0x01, 0x2F, 0x01, 0x35, + 0x23, 0x15, 0x07, 0x0E, 0x01, 0x0F, 0x02, 0x23, 0x2F, 0x02, + 0x23, 0x2F, 0x02, 0x25, 0x07, 0x0E, 0x01, 0x0F, 0x01, 0x21, + 0x27, 0x0F, 0x03, 0x2F, 0x01, 0x0F, 0x02, 0x27, 0x07, 0x0E, + 0x01, 0x07, 0x13, 0x25, 0x3F, 0x04, 0x36, 0x16, 0x1F, 0x01, + 0x0F, 0x03, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x3F, 0x02, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x3F, 0x02, 0x1E, 0x01, 0x17, 0x37, + 0x3E, 0x01, 0x37, 0x17, 0x3F, 0x01, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x3F, 0x02, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x35, 0x33, 0x17, 0x1E, 0x01, + 0x33, 0x17, 0x3F, 0x02, 0x21, 0x37, 0x33, 0x17, 0x37, 0x21, + 0x17, 0x37, 0x33, 0x17, 0x3F, 0x01, 0x27, 0x05, 0x0E, 0x01, + 0x2B, 0x01, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, + 0x37, 0x3E, 0x01, 0x33, 0x37, 0x32, 0x16, 0x17, 0x1E, 0x01, + 0x15, 0x0A, 0x9B, 0x08, 0x2B, 0x2E, 0x03, 0x02, 0x05, 0x03, + 0x22, 0x0D, 0xB0, 0x16, 0x1B, 0x1E, 0xC8, 0x15, 0x16, 0x1B, + 0xFE, 0x20, 0x1B, 0x04, 0x06, 0x02, 0x07, 0xFD, 0x91, 0x09, + 0x66, 0x3F, 0x30, 0x1C, 0x2F, 0x20, 0xA2, 0x6E, 0x31, 0x3A, + 0x31, 0x0C, 0x15, 0x08, 0x16, 0x01, 0x0A, 0xC8, 0x4D, 0x43, + 0x32, 0x17, 0x08, 0x0E, 0x07, 0x13, 0x14, 0x22, 0x20, 0x11, + 0x03, 0x0D, 0x0B, 0x0B, 0x17, 0x0D, 0x2D, 0x14, 0x04, 0x0E, + 0x0B, 0x0A, 0x16, 0x0C, 0x29, 0x15, 0x0F, 0x1E, 0x10, 0x35, + 0x0E, 0x1B, 0x0D, 0x21, 0x09, 0x0C, 0x13, 0x2F, 0x1C, 0x1C, + 0x36, 0x1A, 0x1F, 0x3F, 0x22, 0x33, 0x25, 0x14, 0x2E, 0x47, + 0x19, 0x18, 0x23, 0x0B, 0x0D, 0x0D, 0x9A, 0x0F, 0x01, 0x05, + 0x03, 0x16, 0x15, 0x1D, 0x28, 0x01, 0x53, 0x03, 0xD8, 0x12, + 0x0F, 0x01, 0x2E, 0x24, 0x13, 0x0D, 0x0D, 0x13, 0x05, 0x05, + 0xF9, 0xEB, 0x05, 0x0D, 0x08, 0x3D, 0x09, 0x10, 0x06, 0x06, + 0x06, 0x06, 0x06, 0x06, 0x10, 0x09, 0x3D, 0x08, 0x0D, 0x05, + 0x06, 0x05, 0x02, 0xB0, 0x12, 0x05, 0x79, 0x08, 0x11, 0x02, + 0x0B, 0x08, 0x4B, 0x05, 0x0E, 0x1C, 0x25, 0x07, 0x06, 0x09, + 0x05, 0x02, 0x02, 0x02, 0x02, 0x06, 0x09, 0x57, 0x13, 0x0D, + 0x06, 0x0A, 0x0A, 0x0A, 0x09, 0x01, 0x01, 0x0C, 0x04, 0x0A, + 0x07, 0xFE, 0xC3, 0x58, 0x4A, 0x1A, 0x19, 0x11, 0x08, 0x01, + 0x05, 0x06, 0x0E, 0x1B, 0x3D, 0x3E, 0x24, 0x14, 0x1B, 0x07, + 0x06, 0x06, 0x01, 0x0A, 0x09, 0x11, 0x21, 0x10, 0x12, 0x1F, + 0x0E, 0x2C, 0x11, 0x0C, 0x0E, 0x01, 0x03, 0x03, 0x0A, 0x07, + 0x05, 0x07, 0x02, 0x38, 0x61, 0x28, 0x2A, 0x45, 0x1B, 0x20, + 0x37, 0x17, 0x52, 0x3A, 0x1A, 0x20, 0x41, 0x21, 0x20, 0x3A, + 0x1B, 0x1E, 0x3B, 0x1C, 0x0A, 0x02, 0x03, 0x04, 0x05, 0x0F, + 0x16, 0x13, 0x0E, 0x13, 0x0E, 0x21, 0x03, 0x07, 0x0B, 0x0D, + 0xAE, 0x06, 0x06, 0x06, 0x06, 0x05, 0x0D, 0x07, 0x09, 0x0F, + 0x07, 0x05, 0x05, 0x01, 0x06, 0x05, 0x06, 0x10, 0x09, 0x00, + 0x00, 0x02, 0x00, 0x4D, 0x00, 0x55, 0x0A, 0xE2, 0x03, 0x29, + 0x01, 0xB8, 0x01, 0xC8, 0x00, 0x00, 0x01, 0x06, 0x26, 0x27, + 0x22, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x06, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x06, 0x26, + 0x15, 0x14, 0x16, 0x07, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x26, 0x15, 0x14, 0x22, 0x07, 0x22, 0x26, 0x27, 0x2A, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x36, 0x06, 0x23, 0x2A, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x27, 0x22, 0x26, 0x27, 0x26, 0x36, 0x23, 0x2A, + 0x01, 0x23, 0x2A, 0x01, 0x23, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, + 0x01, 0x27, 0x3E, 0x01, 0x37, 0x2A, 0x01, 0x23, 0x22, 0x16, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x26, 0x27, 0x26, 0x22, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x23, 0x2A, + 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2E, 0x01, 0x35, + 0x34, 0x36, 0x37, 0x36, 0x26, 0x37, 0x36, 0x26, 0x27, 0x34, + 0x26, 0x27, 0x2E, 0x01, 0x27, 0x34, 0x26, 0x27, 0x2E, 0x01, + 0x35, 0x34, 0x36, 0x37, 0x36, 0x32, 0x33, 0x32, 0x36, 0x33, + 0x3E, 0x01, 0x37, 0x36, 0x16, 0x37, 0x32, 0x36, 0x37, 0x32, + 0x36, 0x33, 0x32, 0x36, 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x36, 0x16, 0x37, + 0x3A, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, + 0x01, 0x07, 0x16, 0x36, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, + 0x35, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x27, + 0x22, 0x26, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x3C, + 0x01, 0x37, 0x34, 0x36, 0x37, 0x36, 0x16, 0x33, 0x32, 0x16, + 0x17, 0x16, 0x36, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x33, + 0x3E, 0x01, 0x33, 0x3A, 0x01, 0x37, 0x3A, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x16, 0x17, 0x32, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, + 0x32, 0x16, 0x17, 0x16, 0x14, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x26, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x06, 0x26, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x07, 0x0E, 0x01, 0x07, + 0x3A, 0x03, 0x33, 0x32, 0x36, 0x37, 0x3A, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x32, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x2E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x14, 0x15, 0x1C, 0x01, 0x17, 0x16, 0x14, 0x07, 0x32, 0x36, + 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x33, 0x16, 0x32, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x16, + 0x14, 0x17, 0x16, 0x06, 0x07, 0x05, 0x06, 0x16, 0x33, 0x32, + 0x36, 0x37, 0x3E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x06, + 0x07, 0x0A, 0xD5, 0x24, 0x49, 0x24, 0x05, 0x08, 0x05, 0x0A, + 0x14, 0x0A, 0x18, 0x31, 0x18, 0x08, 0x04, 0x07, 0x07, 0x0F, + 0x08, 0x15, 0x0F, 0x07, 0x04, 0x11, 0x02, 0x0C, 0x0E, 0x20, + 0x0F, 0x0D, 0x18, 0x0D, 0x06, 0x19, 0x02, 0x07, 0x05, 0x0A, + 0x05, 0x04, 0x09, 0x04, 0x06, 0x01, 0x02, 0x06, 0x1C, 0x04, + 0x15, 0x2B, 0x15, 0x33, 0x67, 0x33, 0x1C, 0x36, 0x1C, 0x08, + 0x10, 0x08, 0x09, 0x1B, 0x08, 0x04, 0x08, 0x03, 0x02, 0x01, + 0x01, 0x08, 0x10, 0x07, 0x1D, 0x39, 0x1D, 0x03, 0x07, 0x03, + 0x01, 0x10, 0x0C, 0x24, 0x4B, 0x25, 0x0A, 0x2B, 0x02, 0x03, + 0x03, 0x02, 0x03, 0x05, 0x02, 0x01, 0x02, 0x01, 0x01, 0x12, + 0x01, 0x03, 0x08, 0x08, 0x02, 0x04, 0x03, 0x05, 0x0A, 0x05, + 0x04, 0x01, 0x01, 0x04, 0x07, 0x04, 0x03, 0x0E, 0x0A, 0x0C, + 0x17, 0x0B, 0x07, 0x0B, 0x07, 0x07, 0x19, 0x06, 0x07, 0x0F, + 0x08, 0x02, 0x09, 0x02, 0x04, 0x06, 0x01, 0x10, 0x1D, 0x11, + 0x04, 0x0A, 0x07, 0x08, 0x21, 0x06, 0x11, 0x21, 0x10, 0x02, + 0x05, 0x03, 0x0B, 0x0E, 0x08, 0x0C, 0x22, 0x0D, 0x0B, 0x08, + 0x1A, 0x17, 0x2D, 0x16, 0x13, 0x25, 0x12, 0x0F, 0x1E, 0x0E, + 0x20, 0x3E, 0x1F, 0x48, 0x90, 0x48, 0x20, 0x42, 0x22, 0x1C, + 0x0C, 0x06, 0x02, 0x01, 0x02, 0x02, 0x07, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x04, 0x02, 0x02, 0x01, 0x12, 0x08, + 0x12, 0x25, 0x12, 0x09, 0x10, 0x09, 0x06, 0x07, 0x04, 0x0C, + 0x30, 0x0F, 0x23, 0x46, 0x23, 0x14, 0x26, 0x13, 0x0A, 0x13, + 0x0A, 0x03, 0x1B, 0x02, 0x0A, 0x11, 0x13, 0x11, 0x1E, 0x0F, + 0x11, 0x29, 0x16, 0x11, 0x23, 0x11, 0x0A, 0x10, 0x06, 0x07, + 0x0A, 0x0A, 0x0F, 0x1D, 0x0F, 0x07, 0x16, 0x0D, 0x09, 0x01, + 0x0A, 0x03, 0x05, 0x0A, 0x12, 0x25, 0x13, 0x0F, 0x1F, 0x10, + 0x13, 0x28, 0x14, 0x11, 0x23, 0x10, 0x14, 0x27, 0x13, 0x05, + 0x04, 0x01, 0x01, 0x07, 0x01, 0x02, 0x33, 0x0A, 0x23, 0x46, + 0x23, 0x24, 0x4B, 0x24, 0x10, 0x24, 0x10, 0x14, 0x27, 0x14, + 0x11, 0x21, 0x10, 0x09, 0x11, 0x09, 0x03, 0x09, 0x02, 0x07, + 0x03, 0x0A, 0x0F, 0x1E, 0x0F, 0x04, 0x04, 0x03, 0x03, 0x0E, + 0x05, 0x10, 0x22, 0x10, 0x27, 0x4D, 0x26, 0x12, 0x25, 0x12, + 0x0E, 0x2F, 0x09, 0x09, 0x04, 0x03, 0x0C, 0x06, 0x04, 0x3F, + 0x06, 0x14, 0x28, 0x13, 0x15, 0x2B, 0x15, 0x08, 0x19, 0x08, + 0x03, 0x06, 0x01, 0x04, 0x03, 0x05, 0x13, 0x2B, 0x07, 0x4C, + 0x99, 0x99, 0x99, 0x4D, 0x16, 0x2C, 0x16, 0x07, 0x0E, 0x07, + 0x0A, 0x07, 0x08, 0x06, 0x0F, 0x07, 0x0A, 0x09, 0x07, 0x09, + 0x07, 0x0E, 0x13, 0x27, 0x13, 0x20, 0x40, 0x20, 0x02, 0x0C, + 0x08, 0x06, 0x0D, 0x08, 0x05, 0x15, 0x01, 0x06, 0x07, 0x03, + 0x01, 0x05, 0x04, 0x03, 0x04, 0x09, 0x02, 0x04, 0x07, 0x04, + 0x05, 0x02, 0x04, 0x06, 0x0E, 0x06, 0x23, 0x45, 0x22, 0x22, + 0x44, 0x22, 0x06, 0x0E, 0x03, 0x03, 0x01, 0x01, 0x02, 0x0B, + 0xF9, 0x45, 0x10, 0x3E, 0x09, 0x13, 0x2A, 0x07, 0x03, 0x08, + 0x0F, 0x0B, 0x11, 0x0C, 0x14, 0x28, 0x13, 0x01, 0xDD, 0x05, + 0x02, 0x03, 0x05, 0x02, 0x04, 0x04, 0x05, 0x04, 0x0A, 0x1C, + 0x0E, 0x08, 0x0D, 0x0E, 0x0B, 0x13, 0x04, 0x04, 0x09, 0x02, + 0x07, 0x09, 0x01, 0x01, 0x01, 0x01, 0x02, 0x04, 0x06, 0x05, + 0x01, 0x04, 0x02, 0x01, 0x01, 0x01, 0x01, 0x07, 0x02, 0x07, + 0x03, 0x01, 0x09, 0x26, 0x4C, 0x26, 0x0C, 0x76, 0x03, 0x09, + 0x0E, 0x05, 0x02, 0x0A, 0x0F, 0x12, 0x24, 0x12, 0x1C, 0x38, + 0x1C, 0x0E, 0x1B, 0x0E, 0x01, 0x01, 0x02, 0x06, 0x0E, 0x02, + 0x05, 0x09, 0x05, 0x04, 0x03, 0x0B, 0x16, 0x0A, 0x09, 0x19, + 0x02, 0x03, 0x04, 0x02, 0x02, 0x01, 0x01, 0x01, 0x04, 0x05, + 0x08, 0x04, 0x01, 0x06, 0x01, 0x0D, 0x02, 0x21, 0x41, 0x1F, + 0x07, 0x0B, 0x03, 0x03, 0x15, 0x05, 0x0C, 0x17, 0x0C, 0x02, + 0x03, 0x01, 0x0D, 0x23, 0x0E, 0x15, 0x1E, 0x13, 0x11, 0x36, + 0x0C, 0x04, 0x0B, 0x16, 0x0C, 0x1C, 0x34, 0x1A, 0x0B, 0x0E, + 0x01, 0x1E, 0x17, 0x0C, 0x14, 0x0C, 0x07, 0x12, 0x08, 0x12, + 0x23, 0x13, 0x07, 0x0E, 0x07, 0x05, 0x0B, 0x05, 0x02, 0x04, + 0x03, 0x09, 0x11, 0x09, 0x0A, 0x04, 0x02, 0x05, 0x01, 0x01, + 0x1B, 0x05, 0x0B, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x02, + 0x03, 0x0C, 0x1F, 0x07, 0x05, 0x10, 0x09, 0x0B, 0x1A, 0x01, + 0x01, 0x01, 0x07, 0x09, 0x0B, 0x06, 0x08, 0x09, 0x04, 0x01, + 0x18, 0x04, 0x02, 0x08, 0x07, 0x06, 0x07, 0x05, 0x09, 0x18, + 0x0B, 0x03, 0x05, 0x03, 0x03, 0x02, 0x01, 0x02, 0x02, 0x03, + 0x04, 0x01, 0x01, 0x34, 0x07, 0x0A, 0x12, 0x0A, 0x08, 0x0E, + 0x07, 0x0C, 0x04, 0x03, 0x01, 0x02, 0x02, 0x05, 0x02, 0x08, + 0x02, 0x01, 0x02, 0x01, 0x01, 0x02, 0x01, 0x05, 0x0A, 0x03, + 0x07, 0x07, 0x02, 0x08, 0x02, 0x04, 0x04, 0x01, 0x03, 0x01, + 0x01, 0x02, 0x07, 0x04, 0x01, 0x01, 0x02, 0x0D, 0x0D, 0x2E, + 0x0E, 0x0A, 0x13, 0x08, 0x07, 0x03, 0x01, 0x02, 0x03, 0x07, + 0x04, 0x02, 0x06, 0x04, 0x02, 0x0D, 0x03, 0x06, 0x02, 0x0B, + 0x16, 0x16, 0x08, 0x01, 0x02, 0x02, 0x05, 0x05, 0x04, 0x01, + 0x08, 0x0D, 0x03, 0x09, 0x27, 0x08, 0x06, 0x0E, 0x02, 0x01, + 0x04, 0x04, 0x11, 0x20, 0x12, 0x06, 0x0E, 0x07, 0x06, 0x01, + 0x03, 0x03, 0x0B, 0x04, 0x05, 0x03, 0x02, 0x01, 0x05, 0x04, + 0x13, 0x05, 0x09, 0x16, 0x03, 0x8B, 0x10, 0x12, 0x01, 0x16, + 0x0A, 0x16, 0x03, 0x02, 0x05, 0x06, 0x05, 0x00, 0x00, 0x08, + 0x00, 0x4A, 0x00, 0x5A, 0x0A, 0xD5, 0x03, 0x26, 0x00, 0x06, + 0x00, 0x0C, 0x01, 0xE7, 0x01, 0xFA, 0x02, 0x0D, 0x02, 0x1F, + 0x02, 0x28, 0x02, 0x2E, 0x00, 0x00, 0x01, 0x22, 0x27, 0x31, + 0x30, 0x31, 0x16, 0x37, 0x22, 0x06, 0x23, 0x32, 0x36, 0x25, + 0x06, 0x26, 0x23, 0x22, 0x26, 0x07, 0x2E, 0x01, 0x07, 0x22, + 0x06, 0x07, 0x36, 0x06, 0x23, 0x22, 0x06, 0x27, 0x06, 0x26, + 0x23, 0x2A, 0x01, 0x27, 0x06, 0x16, 0x07, 0x3C, 0x01, 0x33, + 0x0E, 0x01, 0x35, 0x34, 0x06, 0x33, 0x22, 0x26, 0x27, 0x16, + 0x26, 0x33, 0x22, 0x06, 0x07, 0x36, 0x22, 0x17, 0x2E, 0x01, + 0x23, 0x32, 0x06, 0x37, 0x22, 0x06, 0x17, 0x26, 0x36, 0x23, + 0x22, 0x06, 0x35, 0x34, 0x06, 0x07, 0x34, 0x22, 0x17, 0x2E, + 0x01, 0x27, 0x32, 0x06, 0x35, 0x2B, 0x01, 0x34, 0x06, 0x35, + 0x34, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, + 0x01, 0x15, 0x16, 0x06, 0x23, 0x22, 0x16, 0x15, 0x1C, 0x01, + 0x15, 0x14, 0x06, 0x17, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x23, 0x22, 0x06, 0x07, 0x2A, 0x01, 0x23, 0x0E, + 0x01, 0x07, 0x06, 0x14, 0x15, 0x06, 0x16, 0x07, 0x06, 0x22, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x16, 0x26, 0x27, + 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x27, 0x26, 0x06, 0x23, 0x2E, 0x01, 0x23, 0x22, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x23, + 0x2A, 0x01, 0x23, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x36, 0x23, 0x22, 0x26, 0x07, 0x06, 0x16, 0x15, 0x14, 0x06, + 0x27, 0x16, 0x06, 0x27, 0x32, 0x16, 0x15, 0x06, 0x36, 0x35, + 0x3C, 0x01, 0x35, 0x34, 0x26, 0x27, 0x34, 0x26, 0x35, 0x34, + 0x26, 0x33, 0x32, 0x36, 0x07, 0x16, 0x36, 0x17, 0x16, 0x06, + 0x15, 0x1C, 0x01, 0x15, 0x30, 0x17, 0x16, 0x35, 0x34, 0x16, + 0x37, 0x36, 0x26, 0x23, 0x22, 0x06, 0x27, 0x26, 0x36, 0x37, + 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x16, + 0x36, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x26, 0x07, 0x06, 0x36, 0x33, 0x32, 0x36, 0x37, + 0x3E, 0x01, 0x33, 0x32, 0x16, 0x37, 0x36, 0x26, 0x37, 0x36, + 0x16, 0x33, 0x32, 0x36, 0x23, 0x22, 0x06, 0x27, 0x26, 0x36, + 0x33, 0x32, 0x36, 0x33, 0x36, 0x16, 0x17, 0x16, 0x06, 0x33, + 0x32, 0x36, 0x17, 0x16, 0x06, 0x17, 0x16, 0x36, 0x33, 0x37, + 0x36, 0x27, 0x26, 0x06, 0x23, 0x26, 0x06, 0x27, 0x26, 0x36, + 0x35, 0x34, 0x26, 0x37, 0x36, 0x16, 0x33, 0x32, 0x16, 0x17, + 0x1E, 0x01, 0x35, 0x34, 0x16, 0x33, 0x32, 0x06, 0x33, 0x32, + 0x16, 0x37, 0x36, 0x26, 0x17, 0x26, 0x36, 0x17, 0x26, 0x36, + 0x33, 0x32, 0x06, 0x17, 0x1E, 0x01, 0x37, 0x36, 0x26, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x06, 0x33, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x32, 0x33, 0x32, 0x36, 0x33, 0x32, 0x06, + 0x17, 0x16, 0x06, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x26, 0x23, + 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x22, 0x23, 0x22, 0x06, 0x07, 0x06, 0x16, 0x33, 0x3A, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x37, 0x36, 0x26, 0x37, + 0x36, 0x16, 0x33, 0x32, 0x16, 0x17, 0x26, 0x16, 0x17, 0x16, + 0x06, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, + 0x07, 0x16, 0x06, 0x15, 0x14, 0x16, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x26, 0x33, 0x32, 0x16, 0x37, 0x1E, 0x01, 0x17, 0x3C, + 0x01, 0x35, 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, + 0x17, 0x14, 0x16, 0x07, 0x05, 0x34, 0x26, 0x23, 0x22, 0x26, + 0x07, 0x14, 0x06, 0x17, 0x16, 0x06, 0x33, 0x3A, 0x01, 0x37, + 0x26, 0x36, 0x35, 0x05, 0x34, 0x26, 0x07, 0x0E, 0x01, 0x17, + 0x06, 0x36, 0x07, 0x0E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, + 0x01, 0x35, 0x13, 0x26, 0x06, 0x15, 0x22, 0x26, 0x23, 0x2E, + 0x01, 0x07, 0x06, 0x16, 0x07, 0x32, 0x16, 0x33, 0x34, 0x36, + 0x05, 0x22, 0x26, 0x07, 0x3A, 0x01, 0x33, 0x3C, 0x01, 0x05, + 0x22, 0x23, 0x07, 0x32, 0x36, 0x06, 0xA4, 0x01, 0x01, 0x01, + 0x11, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, 0x20, 0x07, 0x3A, + 0x12, 0x13, 0x9A, 0x01, 0x08, 0x0A, 0x0B, 0x0A, 0x07, 0x0C, + 0x05, 0x5B, 0x0E, 0x24, 0x53, 0x22, 0x07, 0x8E, 0x13, 0x36, + 0x6C, 0x36, 0x01, 0x03, 0x07, 0x01, 0x05, 0x12, 0x17, 0x04, + 0x09, 0x04, 0x0A, 0x06, 0x17, 0x02, 0x0A, 0x02, 0x08, 0x05, + 0x1B, 0x05, 0x08, 0x02, 0x0A, 0x02, 0x16, 0x06, 0x01, 0x13, + 0x08, 0x0B, 0x02, 0x0C, 0x01, 0x0C, 0x11, 0x05, 0x1B, 0x09, + 0x0A, 0x04, 0x0C, 0x01, 0x22, 0x25, 0x24, 0x31, 0x15, 0x04, + 0x0D, 0x15, 0x05, 0x02, 0x01, 0x01, 0x01, 0x08, 0x01, 0x03, + 0x0A, 0x06, 0x02, 0x05, 0x07, 0x2E, 0x5B, 0x2E, 0x08, 0x04, + 0x03, 0x0B, 0x07, 0x09, 0x05, 0x1D, 0x3C, 0x1D, 0x0D, 0x12, + 0x03, 0x01, 0x01, 0x05, 0x02, 0x02, 0x0F, 0x03, 0x05, 0x05, + 0x03, 0x06, 0x0F, 0x04, 0x14, 0x62, 0x0F, 0x12, 0x15, 0x05, + 0x02, 0x0C, 0x04, 0x14, 0x22, 0x13, 0x0A, 0x14, 0x0D, 0x0E, + 0x3C, 0x17, 0x15, 0x22, 0x16, 0x1B, 0x2A, 0x13, 0x06, 0x0B, + 0x06, 0x0F, 0x09, 0x06, 0x07, 0x3C, 0x1F, 0x1C, 0x39, 0x1C, + 0x15, 0x4A, 0x14, 0x04, 0x05, 0x04, 0x06, 0x0A, 0x0E, 0x0A, + 0x23, 0x05, 0x03, 0x03, 0x0E, 0x19, 0x02, 0x09, 0x0C, 0x01, + 0x01, 0x20, 0x10, 0x02, 0x02, 0x03, 0x08, 0x09, 0x09, 0x23, + 0x08, 0x12, 0x13, 0x05, 0x03, 0x03, 0x21, 0x21, 0x61, 0x05, + 0x02, 0x0C, 0x0E, 0x17, 0x26, 0x06, 0x05, 0x03, 0x09, 0x07, + 0x17, 0x0A, 0x21, 0x42, 0x22, 0x27, 0x52, 0x26, 0x16, 0x42, + 0x07, 0x02, 0x13, 0x05, 0x09, 0x16, 0x0C, 0x06, 0x12, 0x08, + 0x14, 0x62, 0x03, 0x03, 0x6B, 0x15, 0x07, 0x0D, 0x04, 0x0E, + 0x36, 0x15, 0x13, 0x2D, 0x0B, 0x04, 0x01, 0x04, 0x05, 0x15, + 0x07, 0x0E, 0x09, 0x11, 0x02, 0x1D, 0x02, 0x06, 0x08, 0x07, + 0x0F, 0x23, 0x0C, 0x08, 0x0D, 0x05, 0x07, 0x04, 0x10, 0x0A, + 0x21, 0x07, 0x03, 0x03, 0x02, 0x0F, 0x3E, 0x12, 0x02, 0x03, + 0x03, 0x0B, 0x17, 0x0D, 0x2C, 0x61, 0x2A, 0x09, 0x03, 0x03, + 0x03, 0x05, 0x46, 0x07, 0x23, 0x44, 0x1E, 0x06, 0x0F, 0x37, + 0x0C, 0x0F, 0x0E, 0x11, 0x0A, 0x18, 0x0A, 0x05, 0x05, 0x10, + 0x03, 0x02, 0x09, 0x03, 0x0B, 0x0E, 0x18, 0x04, 0x05, 0x06, + 0x24, 0x16, 0x03, 0x08, 0x0C, 0x0D, 0x1B, 0x0E, 0x12, 0x0A, + 0x17, 0x17, 0x22, 0x15, 0x19, 0x34, 0x1A, 0x17, 0x1E, 0x1E, + 0x1A, 0x35, 0x1B, 0x0F, 0x01, 0x02, 0x04, 0x04, 0x12, 0x0F, + 0x28, 0x57, 0x27, 0x0D, 0x1D, 0x0D, 0x0F, 0x1D, 0x0D, 0x10, + 0x1F, 0x10, 0x19, 0x02, 0x04, 0x03, 0x01, 0x0F, 0x3C, 0x76, + 0x3B, 0x25, 0x49, 0x25, 0x10, 0x06, 0x04, 0x02, 0x03, 0x05, + 0x06, 0x2F, 0x0B, 0x09, 0x10, 0x06, 0x01, 0x20, 0x05, 0x0A, + 0x05, 0x1B, 0x25, 0x48, 0x25, 0x18, 0x2F, 0x18, 0x09, 0x13, + 0x12, 0x09, 0x01, 0x09, 0x1C, 0x34, 0x67, 0x34, 0x0D, 0x06, + 0x0B, 0x03, 0x17, 0x01, 0x02, 0x09, 0x03, 0x18, 0x50, 0x24, + 0x09, 0x12, 0x11, 0x0E, 0x41, 0x03, 0x02, 0x02, 0xF6, 0x11, + 0x05, 0x11, 0x0B, 0x1B, 0x06, 0x02, 0x02, 0x03, 0x03, 0x13, + 0x0E, 0x19, 0x08, 0x02, 0x02, 0x03, 0x7D, 0x2C, 0x19, 0x11, + 0x02, 0x05, 0x20, 0x12, 0x1A, 0x06, 0x01, 0x12, 0x0F, 0x4C, + 0x0C, 0x07, 0x02, 0xAB, 0x0B, 0x3A, 0x0A, 0x15, 0x0B, 0x01, + 0x42, 0x09, 0x05, 0x03, 0x01, 0x30, 0x5E, 0x30, 0x03, 0x02, + 0x44, 0x0B, 0x1B, 0x04, 0x0A, 0x16, 0x0A, 0xFE, 0xE9, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0xA9, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x2E, 0x0D, 0x05, 0x05, 0x0F, 0x05, 0x02, 0x01, 0x06, + 0x01, 0x16, 0x07, 0x06, 0x08, 0x10, 0x09, 0x01, 0x0C, 0x18, + 0x05, 0x01, 0x01, 0x01, 0x02, 0x06, 0x0D, 0x11, 0x06, 0x02, + 0x01, 0x01, 0x04, 0x02, 0x01, 0x01, 0x02, 0x04, 0x01, 0x01, + 0x07, 0x02, 0x02, 0x07, 0x0D, 0x0A, 0x06, 0x07, 0x02, 0x01, + 0x02, 0x02, 0x03, 0x02, 0x06, 0x03, 0x09, 0x17, 0x0E, 0x05, + 0x0A, 0x02, 0x04, 0x07, 0x0C, 0x05, 0x1A, 0x06, 0x05, 0x0C, + 0x02, 0x0B, 0x0E, 0x17, 0x05, 0x11, 0x23, 0x12, 0x1E, 0x49, + 0x1B, 0x2B, 0x0A, 0x0F, 0x7E, 0x08, 0x01, 0x01, 0x0D, 0x0B, + 0x03, 0x0A, 0x01, 0x01, 0x0B, 0x04, 0x02, 0x03, 0x04, 0x0D, + 0x06, 0x0A, 0x18, 0x0B, 0x24, 0x17, 0x04, 0x06, 0x05, 0x12, + 0x08, 0x0B, 0x06, 0x20, 0x36, 0x1E, 0x0F, 0x1D, 0x12, 0x14, + 0x03, 0x01, 0x0B, 0x02, 0x0C, 0x04, 0x0C, 0x06, 0x10, 0x0F, + 0x15, 0x1D, 0x07, 0x08, 0x08, 0x02, 0x0C, 0x03, 0x04, 0x04, + 0x03, 0x07, 0x05, 0x22, 0x07, 0x19, 0x02, 0x01, 0x0A, 0x0C, + 0x03, 0x01, 0x01, 0x0A, 0x44, 0x0B, 0x1B, 0x37, 0x1B, 0x18, + 0x2E, 0x16, 0x08, 0x14, 0x05, 0x07, 0x0E, 0x01, 0x0B, 0x02, + 0x02, 0x0E, 0x08, 0x18, 0x08, 0x0A, 0x12, 0x09, 0x04, 0x05, + 0x10, 0x1F, 0x22, 0x1C, 0x0F, 0x02, 0x03, 0x12, 0x11, 0x58, + 0x07, 0x05, 0x01, 0x04, 0x02, 0x01, 0x05, 0x1B, 0x09, 0x13, + 0x07, 0x0B, 0x1E, 0x0A, 0x05, 0x0F, 0x02, 0x07, 0x11, 0x19, + 0x17, 0x07, 0x10, 0x04, 0x0F, 0x4F, 0x03, 0x0B, 0x03, 0x10, + 0x03, 0x04, 0x02, 0x0C, 0x02, 0x02, 0x07, 0x0D, 0x05, 0x01, + 0x02, 0x02, 0x02, 0x08, 0x02, 0x04, 0x02, 0x11, 0x01, 0x08, + 0x07, 0x21, 0x21, 0x05, 0x0F, 0x16, 0x01, 0x06, 0x06, 0x01, + 0x32, 0x09, 0x03, 0x19, 0x03, 0x05, 0x07, 0x03, 0x05, 0x01, + 0x08, 0x10, 0x0E, 0x05, 0x14, 0x02, 0x02, 0x02, 0x0F, 0x04, + 0x08, 0x0E, 0x01, 0x10, 0x07, 0x09, 0x11, 0x11, 0x12, 0x0A, + 0x02, 0x0B, 0x12, 0x06, 0x06, 0x06, 0x0B, 0x06, 0x04, 0x01, + 0x07, 0x0C, 0x11, 0x29, 0x12, 0x09, 0x12, 0x09, 0x11, 0x02, + 0x05, 0x08, 0x03, 0x0B, 0x03, 0x04, 0x08, 0x03, 0x03, 0x01, + 0x11, 0x0F, 0x2A, 0x07, 0x0C, 0x07, 0x0A, 0x04, 0x07, 0x04, + 0x06, 0x06, 0x14, 0x0E, 0x06, 0x0D, 0x12, 0x0E, 0x04, 0x08, + 0x16, 0x11, 0x1A, 0x07, 0x0B, 0x12, 0x12, 0x02, 0x04, 0x04, + 0x03, 0x05, 0x03, 0x0D, 0x02, 0x05, 0x0C, 0x06, 0x14, 0x05, + 0x4A, 0x0F, 0x04, 0x01, 0x05, 0x0F, 0x1F, 0x0F, 0x0E, 0x07, + 0x06, 0x0D, 0x21, 0x0F, 0x47, 0x20, 0x0C, 0x13, 0x0C, 0x1E, + 0x12, 0x02, 0x50, 0x08, 0x0E, 0x31, 0x09, 0x07, 0x01, 0x09, + 0x06, 0x10, 0x0C, 0x01, 0x63, 0x0A, 0x15, 0x04, 0x01, 0x07, + 0x10, 0x09, 0x05, 0x1F, 0x08, 0x01, 0x05, 0x24, 0x41, 0x02, + 0x08, 0x01, 0x04, 0xBA, 0x01, 0x01, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x62, 0x00, 0x8D, 0x0D, 0x2B, 0x02, 0xF3, 0x00, 0xA4, + 0x00, 0xB2, 0x00, 0x00, 0x01, 0x2F, 0x01, 0x35, 0x21, 0x35, + 0x37, 0x17, 0x35, 0x17, 0x33, 0x2F, 0x02, 0x0F, 0x02, 0x23, + 0x35, 0x32, 0x36, 0x3F, 0x01, 0x27, 0x23, 0x07, 0x15, 0x17, + 0x15, 0x0F, 0x01, 0x23, 0x27, 0x0F, 0x02, 0x23, 0x07, 0x0E, + 0x01, 0x1D, 0x01, 0x17, 0x15, 0x1F, 0x01, 0x3F, 0x02, 0x33, + 0x15, 0x23, 0x0E, 0x01, 0x0F, 0x03, 0x23, 0x15, 0x0F, 0x01, + 0x21, 0x27, 0x2E, 0x01, 0x23, 0x21, 0x0F, 0x03, 0x23, 0x07, + 0x0E, 0x01, 0x1D, 0x01, 0x07, 0x15, 0x1F, 0x01, 0x33, 0x3F, + 0x03, 0x33, 0x17, 0x37, 0x32, 0x36, 0x35, 0x37, 0x33, 0x1F, + 0x05, 0x3F, 0x04, 0x33, 0x37, 0x1E, 0x01, 0x17, 0x3F, 0x02, + 0x3E, 0x01, 0x33, 0x15, 0x25, 0x35, 0x3E, 0x01, 0x3F, 0x03, + 0x17, 0x0E, 0x01, 0x23, 0x2E, 0x01, 0x2B, 0x01, 0x22, 0x06, + 0x15, 0x06, 0x16, 0x1F, 0x02, 0x33, 0x37, 0x2F, 0x01, 0x37, + 0x21, 0x37, 0x35, 0x3F, 0x01, 0x34, 0x26, 0x2F, 0x01, 0x35, + 0x23, 0x35, 0x21, 0x37, 0x3E, 0x01, 0x35, 0x27, 0x05, 0x23, + 0x22, 0x26, 0x35, 0x34, 0x36, 0x3B, 0x01, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x0D, 0x27, 0x04, 0x06, 0xF8, 0x92, 0x37, 0x21, + 0xE0, 0x07, 0x02, 0x05, 0x26, 0x46, 0x4B, 0x37, 0xA7, 0x02, + 0x05, 0x01, 0x03, 0x0B, 0x02, 0x5F, 0x02, 0x20, 0x32, 0x64, + 0x2E, 0x41, 0x37, 0x18, 0x06, 0x02, 0x02, 0x02, 0x04, 0x02, + 0x38, 0x41, 0x37, 0x1D, 0x24, 0x61, 0x03, 0x03, 0x01, 0x0B, + 0x25, 0x2D, 0x02, 0x06, 0x09, 0xFE, 0xC8, 0x1F, 0x04, 0x0A, + 0x04, 0xFE, 0xED, 0x09, 0x06, 0x03, 0x02, 0x1E, 0x67, 0x0B, + 0x0C, 0x06, 0x03, 0x03, 0x08, 0x1C, 0x25, 0x23, 0x17, 0x4C, + 0x28, 0x0D, 0x03, 0x04, 0x0C, 0x97, 0x16, 0x22, 0x21, 0x2B, + 0x4F, 0x51, 0x36, 0x10, 0x0E, 0x08, 0x01, 0x09, 0x05, 0x13, + 0x22, 0x0F, 0x35, 0x22, 0x13, 0x02, 0x0D, 0x0A, 0x01, 0x08, + 0x01, 0x0E, 0x0C, 0x37, 0x35, 0x1D, 0xDF, 0x0A, 0x13, 0x09, + 0x03, 0x12, 0x0E, 0x04, 0x07, 0x07, 0x04, 0x01, 0x06, 0x0F, + 0x05, 0x2F, 0x05, 0x08, 0x05, 0x05, 0x01, 0xD9, 0x06, 0x02, + 0x02, 0x05, 0x05, 0x0D, 0x5A, 0x04, 0xC8, 0x04, 0x07, 0x07, + 0x04, 0xF6, 0xF3, 0x40, 0x0D, 0x0E, 0x0E, 0x0D, 0x40, 0x0E, + 0x0D, 0x0D, 0x02, 0x26, 0x0C, 0x0C, 0x05, 0x1A, 0x01, 0x05, + 0x04, 0x0E, 0x84, 0x03, 0x05, 0x06, 0x08, 0x08, 0x06, 0x02, + 0x02, 0x04, 0x20, 0x06, 0x12, 0x06, 0x13, 0x03, 0x01, 0x04, + 0x04, 0x03, 0x03, 0x02, 0x02, 0x06, 0x05, 0x1F, 0x31, 0x04, + 0x06, 0x03, 0x06, 0x07, 0x04, 0x1D, 0x01, 0x03, 0x01, 0x03, + 0x07, 0x08, 0x06, 0x1D, 0x1D, 0x1F, 0x05, 0x05, 0x07, 0x03, + 0x02, 0x03, 0x07, 0x05, 0x09, 0x05, 0x4C, 0x67, 0x84, 0x14, + 0x03, 0x05, 0x08, 0x06, 0x04, 0x08, 0x08, 0x04, 0x05, 0x4A, + 0x10, 0x20, 0x22, 0x0F, 0x0D, 0x0A, 0x06, 0x17, 0x2B, 0x2F, + 0x23, 0x03, 0x0C, 0x0D, 0x01, 0x05, 0x12, 0x0F, 0x03, 0x03, + 0x53, 0x1C, 0x50, 0x02, 0x05, 0x03, 0x0F, 0x0F, 0x08, 0x03, + 0x04, 0x05, 0x04, 0x04, 0x07, 0x07, 0x08, 0x16, 0x0D, 0x23, + 0x06, 0x11, 0x09, 0x03, 0x0C, 0x0D, 0x04, 0x03, 0x09, 0x0A, + 0x0E, 0x04, 0x0D, 0x4E, 0x15, 0x06, 0x0A, 0x10, 0x06, 0x0F, + 0xE8, 0x0F, 0x0E, 0x0C, 0x0C, 0x0C, 0x0C, 0x0E, 0x0F, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x52, 0x00, 0xDA, 0x08, 0x53, + 0x02, 0xA9, 0x00, 0xA8, 0x00, 0x00, 0x01, 0x3E, 0x01, 0x37, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, + 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x27, 0x26, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x35, 0x2E, 0x01, + 0x27, 0x26, 0x36, 0x37, 0x36, 0x26, 0x37, 0x34, 0x36, 0x37, + 0x34, 0x36, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, + 0x36, 0x26, 0x35, 0x34, 0x36, 0x17, 0x1E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, + 0x15, 0x14, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x08, 0x14, 0x10, 0x20, 0x0F, + 0x1C, 0x3C, 0x25, 0x1A, 0x3E, 0x20, 0x13, 0x28, 0x14, 0x37, + 0x6F, 0x38, 0x4A, 0x95, 0x4B, 0x0E, 0x1C, 0x0E, 0x03, 0x13, + 0x03, 0x02, 0x05, 0x02, 0x05, 0x10, 0x0D, 0x1F, 0x48, 0x17, + 0x0A, 0x1A, 0x0A, 0x04, 0x10, 0x06, 0x05, 0x04, 0x02, 0x02, + 0x10, 0x07, 0x1C, 0x21, 0x01, 0x02, 0x02, 0x18, 0x0C, 0x14, + 0x26, 0x13, 0x17, 0x2E, 0x17, 0x39, 0x71, 0x39, 0x3E, 0x7D, + 0x3E, 0x12, 0x25, 0x12, 0x15, 0x17, 0x09, 0x05, 0x11, 0x0A, + 0x06, 0x02, 0x01, 0x01, 0x01, 0x04, 0x0D, 0x02, 0x04, 0x07, + 0x0C, 0x05, 0x01, 0x01, 0x01, 0x01, 0x03, 0x05, 0x0B, 0x12, + 0x05, 0x0A, 0x18, 0x14, 0x13, 0x27, 0x13, 0x3E, 0x7C, 0x3E, + 0x39, 0x72, 0x39, 0x16, 0x2D, 0x16, 0x14, 0x27, 0x13, 0x06, + 0x0A, 0x06, 0x08, 0x03, 0x01, 0x02, 0x02, 0x2B, 0x1C, 0x0F, + 0x01, 0x0B, 0x07, 0x10, 0x02, 0x03, 0x09, 0x08, 0x02, 0x06, + 0x02, 0x01, 0x01, 0x16, 0x06, 0x13, 0x26, 0x13, 0x22, 0x43, + 0x22, 0x39, 0x73, 0x39, 0x3A, 0x74, 0x3A, 0x20, 0x42, 0x21, + 0x16, 0x2E, 0x16, 0x1C, 0x39, 0x1D, 0x02, 0x05, 0x01, 0x05, + 0x02, 0x24, 0x46, 0x1C, 0x14, 0x1B, 0x0A, 0x06, 0x0A, 0x02, + 0x04, 0x0D, 0x01, 0x02, 0x02, 0x13, 0x04, 0x0D, 0x15, 0x08, + 0x12, 0x14, 0x19, 0x0C, 0x30, 0x11, 0x06, 0x04, 0x03, 0x03, + 0x0C, 0x05, 0x08, 0x04, 0x01, 0x04, 0x28, 0x1C, 0x0F, 0x20, + 0x0F, 0x11, 0x04, 0x01, 0x03, 0x06, 0x03, 0x03, 0x02, 0x02, + 0x03, 0x08, 0x03, 0x03, 0x05, 0x06, 0x02, 0x04, 0x01, 0x02, + 0x19, 0x10, 0x08, 0x0D, 0x0A, 0x06, 0x13, 0x08, 0x10, 0x20, + 0x10, 0x09, 0x0B, 0x09, 0x0F, 0x20, 0x0A, 0x05, 0x16, 0x07, + 0x08, 0x10, 0x08, 0x07, 0x10, 0x06, 0x0C, 0x13, 0x08, 0x10, + 0x15, 0x02, 0x02, 0x03, 0x02, 0x06, 0x06, 0x03, 0x03, 0x09, + 0x03, 0x02, 0x02, 0x03, 0x03, 0x06, 0x03, 0x01, 0x01, 0x01, + 0x01, 0x10, 0x05, 0x0E, 0x20, 0x0F, 0x1B, 0x2D, 0x04, 0x02, + 0x18, 0x06, 0x05, 0x03, 0x0B, 0x0D, 0x22, 0x0A, 0x03, 0x04, + 0x03, 0x03, 0x0C, 0x03, 0x07, 0x02, 0x0A, 0x05, 0x05, 0x05, + 0x02, 0x02, 0x03, 0x01, 0x01, 0x05, 0x01, 0x02, 0x05, 0x02, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x53, 0x00, 0xD4, 0x08, 0x54, + 0x02, 0xAB, 0x01, 0x20, 0x00, 0x00, 0x01, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x0E, 0x01, 0x27, 0x30, + 0x2B, 0x01, 0x06, 0x26, 0x27, 0x26, 0x06, 0x23, 0x22, 0x26, + 0x07, 0x06, 0x26, 0x27, 0x30, 0x31, 0x22, 0x23, 0x14, 0x06, + 0x23, 0x22, 0x26, 0x27, 0x26, 0x06, 0x27, 0x2E, 0x01, 0x07, + 0x06, 0x26, 0x27, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, + 0x23, 0x22, 0x26, 0x35, 0x22, 0x23, 0x31, 0x0E, 0x01, 0x27, + 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x35, 0x36, 0x34, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x14, 0x07, 0x22, 0x06, 0x17, + 0x22, 0x17, 0x33, 0x14, 0x16, 0x15, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x36, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x32, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x07, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x17, + 0x1E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x37, 0x36, + 0x16, 0x17, 0x31, 0x33, 0x36, 0x32, 0x17, 0x16, 0x36, 0x37, + 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x36, + 0x16, 0x17, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x16, 0x36, + 0x33, 0x32, 0x16, 0x17, 0x16, 0x32, 0x37, 0x36, 0x16, 0x17, + 0x32, 0x33, 0x31, 0x36, 0x32, 0x17, 0x16, 0x36, 0x33, 0x32, + 0x16, 0x17, 0x16, 0x32, 0x37, 0x36, 0x16, 0x17, 0x30, 0x3B, + 0x01, 0x3E, 0x01, 0x17, 0x16, 0x14, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x2E, 0x01, 0x27, 0x07, 0xE5, 0x20, 0x43, 0x21, + 0x33, 0x67, 0x33, 0x3E, 0x7B, 0x3E, 0x04, 0x0B, 0x03, 0x01, + 0x01, 0x02, 0x0D, 0x03, 0x08, 0x0A, 0x09, 0x09, 0x0B, 0x08, + 0x02, 0x0D, 0x03, 0x01, 0x01, 0x03, 0x06, 0x04, 0x04, 0x01, + 0x07, 0x0C, 0x0B, 0x06, 0x10, 0x03, 0x04, 0x0B, 0x03, 0x04, + 0x07, 0x05, 0x02, 0x03, 0x07, 0x02, 0x07, 0x06, 0x07, 0x0A, + 0x03, 0x01, 0x08, 0x02, 0x01, 0x06, 0x01, 0x05, 0x04, 0x01, + 0x01, 0x01, 0x0A, 0x05, 0x03, 0x02, 0x09, 0x0D, 0x1B, 0x0D, + 0x09, 0x0F, 0x0A, 0x05, 0x0A, 0x06, 0x05, 0x02, 0x01, 0x04, + 0x04, 0x09, 0x04, 0x02, 0x02, 0x04, 0x0A, 0x16, 0x0B, 0x06, + 0x19, 0x1E, 0x11, 0x25, 0x13, 0x43, 0x85, 0x42, 0x33, 0x66, + 0x32, 0x1D, 0x3A, 0x1C, 0x0C, 0x12, 0x0B, 0x10, 0x2A, 0x0E, + 0x0B, 0x13, 0x04, 0x02, 0x03, 0x01, 0x01, 0x03, 0x0B, 0x01, + 0x09, 0x01, 0x03, 0x03, 0x01, 0x01, 0x03, 0x01, 0x06, 0x1D, + 0x1E, 0x17, 0x27, 0x10, 0x09, 0x14, 0x0B, 0x10, 0x23, 0x11, + 0x43, 0x86, 0x43, 0x15, 0x2A, 0x15, 0x0F, 0x1D, 0x0F, 0x10, + 0x20, 0x11, 0x09, 0x11, 0x09, 0x08, 0x0D, 0x06, 0x16, 0x03, + 0x10, 0x0B, 0x17, 0x0C, 0x05, 0x03, 0x02, 0x09, 0x11, 0x09, + 0x01, 0x01, 0x04, 0x08, 0x08, 0x10, 0x08, 0x06, 0x08, 0x06, + 0x0E, 0x1B, 0x0E, 0x09, 0x01, 0x04, 0x06, 0x08, 0x01, 0x01, + 0x03, 0x0D, 0x03, 0x05, 0x05, 0x02, 0x03, 0x0A, 0x06, 0x06, + 0x07, 0x01, 0x06, 0x04, 0x01, 0x06, 0x09, 0x02, 0x01, 0x03, + 0x05, 0x05, 0x05, 0x06, 0x0C, 0x09, 0x06, 0x09, 0x02, 0x03, + 0x07, 0x01, 0x03, 0x0D, 0x01, 0x01, 0x01, 0x02, 0x0E, 0x02, + 0x07, 0x0C, 0x09, 0x06, 0x08, 0x03, 0x02, 0x08, 0x01, 0x03, + 0x0D, 0x01, 0x01, 0x01, 0x01, 0x0A, 0x05, 0x01, 0x04, 0x07, + 0x0E, 0x06, 0x1C, 0x38, 0x1C, 0x35, 0x6A, 0x34, 0x1F, 0x3E, + 0x1E, 0x38, 0x77, 0x2C, 0x18, 0x3A, 0x1D, 0x01, 0xF4, 0x09, + 0x0F, 0x03, 0x05, 0x0A, 0x0F, 0x01, 0x10, 0x10, 0x01, 0x0F, + 0x05, 0x16, 0x16, 0x05, 0x10, 0x01, 0x0F, 0x04, 0x0D, 0x0E, + 0x03, 0x05, 0x19, 0x03, 0x01, 0x18, 0x0D, 0x10, 0x0B, 0x0A, + 0x03, 0x14, 0x0D, 0x04, 0x0A, 0x04, 0x05, 0x0B, 0x01, 0x02, + 0x09, 0x05, 0x03, 0x04, 0x04, 0x02, 0x0D, 0x0E, 0x03, 0x07, + 0x10, 0x0D, 0x09, 0x01, 0x0C, 0x03, 0x02, 0x03, 0x02, 0x03, + 0x02, 0x06, 0x0A, 0x15, 0x0A, 0x0C, 0x1A, 0x0C, 0x05, 0x19, + 0x01, 0x03, 0x04, 0x03, 0x20, 0x3F, 0x11, 0x09, 0x0C, 0x01, + 0x02, 0x04, 0x03, 0x02, 0x08, 0x02, 0x01, 0x07, 0x03, 0x01, + 0x0F, 0x04, 0x06, 0x02, 0x0A, 0x08, 0x15, 0x0D, 0x06, 0x0E, + 0x06, 0x05, 0x0F, 0x03, 0x23, 0x02, 0x01, 0x04, 0x09, 0x05, + 0x08, 0x10, 0x08, 0x1B, 0x2A, 0x04, 0x03, 0x22, 0x0E, 0x08, + 0x04, 0x03, 0x04, 0x02, 0x02, 0x04, 0x01, 0x01, 0x01, 0x01, + 0x07, 0x01, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, 0x09, 0x05, + 0x13, 0x3A, 0x18, 0x03, 0x06, 0x04, 0x01, 0x0F, 0x04, 0x1A, + 0x33, 0x19, 0x02, 0x04, 0x03, 0x08, 0x01, 0x01, 0x01, 0x0A, + 0x02, 0x01, 0x04, 0x04, 0x09, 0x0A, 0x13, 0x04, 0x0F, 0x0F, + 0x04, 0x0A, 0x02, 0x05, 0x05, 0x01, 0x02, 0x0A, 0x05, 0x04, + 0x0A, 0x03, 0x0E, 0x13, 0x04, 0x03, 0x0E, 0x0E, 0x03, 0x05, + 0x16, 0x07, 0x06, 0x05, 0x06, 0x0F, 0x0A, 0x0A, 0x0F, 0x0F, + 0x05, 0x16, 0x08, 0x05, 0x05, 0x06, 0x0F, 0x0A, 0x0A, 0x06, + 0x11, 0x0E, 0x04, 0x05, 0x03, 0x02, 0x03, 0x04, 0x08, 0x22, + 0x26, 0x14, 0x18, 0x08, 0x00, 0x00, 0x00, 0x04, 0x00, 0x55, + 0x00, 0x3E, 0x0C, 0x0F, 0x03, 0x42, 0x01, 0x8A, 0x01, 0x9D, + 0x01, 0xA6, 0x01, 0xB2, 0x00, 0x00, 0x01, 0x34, 0x26, 0x23, + 0x2A, 0x01, 0x23, 0x2A, 0x03, 0x23, 0x2A, 0x03, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x26, 0x35, 0x3C, 0x01, 0x35, 0x3C, 0x01, + 0x35, 0x34, 0x36, 0x27, 0x26, 0x06, 0x23, 0x22, 0x26, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x36, + 0x26, 0x35, 0x34, 0x36, 0x27, 0x26, 0x06, 0x23, 0x22, 0x14, + 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x2A, 0x01, 0x23, 0x22, 0x36, 0x35, 0x34, 0x36, 0x27, 0x26, + 0x06, 0x23, 0x22, 0x16, 0x07, 0x06, 0x26, 0x07, 0x0E, 0x01, + 0x07, 0x14, 0x06, 0x17, 0x16, 0x36, 0x17, 0x1E, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x06, 0x07, 0x06, 0x22, 0x23, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x23, 0x22, 0x06, 0x27, 0x26, 0x36, 0x37, + 0x36, 0x34, 0x35, 0x34, 0x36, 0x35, 0x2E, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x2E, 0x01, 0x07, + 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, + 0x01, 0x07, 0x06, 0x16, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, + 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x37, 0x36, 0x32, 0x37, + 0x06, 0x16, 0x35, 0x34, 0x26, 0x27, 0x3C, 0x01, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x32, 0x17, 0x16, 0x36, 0x35, + 0x34, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x36, 0x17, 0x16, + 0x36, 0x33, 0x32, 0x16, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x14, 0x15, + 0x14, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x26, 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x35, 0x1E, 0x01, 0x33, 0x3A, 0x02, 0x36, + 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x33, 0x3A, 0x02, 0x16, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x06, 0x17, 0x14, 0x16, 0x37, 0x14, 0x06, 0x17, 0x22, + 0x06, 0x15, 0x06, 0x16, 0x33, 0x06, 0x14, 0x15, 0x14, 0x06, + 0x07, 0x06, 0x14, 0x15, 0x14, 0x16, 0x17, 0x16, 0x36, 0x37, + 0x06, 0x16, 0x17, 0x22, 0x06, 0x17, 0x16, 0x36, 0x33, 0x32, + 0x36, 0x37, 0x3E, 0x01, 0x27, 0x36, 0x26, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x27, + 0x2E, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, 0x27, 0x26, + 0x36, 0x35, 0x34, 0x36, 0x35, 0x34, 0x26, 0x37, 0x16, 0x3A, + 0x01, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x16, 0x32, 0x33, 0x36, + 0x16, 0x35, 0x3C, 0x01, 0x35, 0x01, 0x0E, 0x01, 0x23, 0x22, + 0x06, 0x07, 0x22, 0x26, 0x27, 0x26, 0x36, 0x37, 0x36, 0x16, + 0x33, 0x32, 0x36, 0x07, 0x25, 0x26, 0x36, 0x37, 0x1C, 0x01, + 0x17, 0x06, 0x26, 0x17, 0x36, 0x26, 0x35, 0x3C, 0x01, 0x35, + 0x26, 0x16, 0x33, 0x0E, 0x01, 0x0C, 0x0F, 0x08, 0x0D, 0x23, + 0x6E, 0x23, 0x3C, 0x79, 0x79, 0x79, 0x3C, 0x43, 0x86, 0x86, + 0x86, 0x43, 0x0F, 0x1E, 0x0F, 0x0A, 0x02, 0x07, 0x10, 0x12, + 0x31, 0x13, 0x0D, 0x33, 0x09, 0x07, 0x17, 0x0A, 0x0E, 0x20, + 0x0E, 0x38, 0x70, 0x39, 0x04, 0x02, 0x04, 0x02, 0x06, 0x3E, + 0x0A, 0x0D, 0x04, 0x0D, 0x18, 0x0D, 0x21, 0x42, 0x20, 0x08, + 0x01, 0x02, 0x03, 0x07, 0x37, 0x0D, 0x10, 0x0D, 0x05, 0x06, + 0x40, 0x0D, 0x09, 0x0C, 0x01, 0x03, 0x04, 0x06, 0x2C, 0x10, + 0x14, 0x30, 0x17, 0x0D, 0x1C, 0x0E, 0x02, 0x01, 0x01, 0x02, + 0x0E, 0x03, 0x12, 0x23, 0x11, 0x0B, 0x1C, 0x0D, 0x0E, 0x21, + 0x10, 0x0F, 0x1F, 0x0F, 0x0D, 0x1B, 0x0F, 0x0B, 0x3F, 0x06, + 0x03, 0x0A, 0x01, 0x01, 0x04, 0x02, 0x12, 0x0C, 0x1E, 0x3D, + 0x1E, 0x25, 0x4A, 0x25, 0x0D, 0x29, 0x0B, 0x0A, 0x04, 0x01, + 0x01, 0x03, 0x02, 0x03, 0x09, 0x01, 0x0D, 0x20, 0x0D, 0x04, + 0x06, 0x04, 0x06, 0x0D, 0x06, 0x13, 0x27, 0x13, 0x05, 0x12, + 0x03, 0x05, 0x03, 0x0F, 0x11, 0x1A, 0x33, 0x1A, 0x05, 0x6A, + 0x08, 0x01, 0x05, 0x0D, 0x07, 0x07, 0x07, 0x3C, 0x79, 0x3C, + 0x08, 0x0F, 0x07, 0x07, 0x04, 0x09, 0x05, 0x29, 0x02, 0x05, + 0x19, 0x06, 0x06, 0x05, 0x07, 0x08, 0x07, 0x04, 0x0B, 0x0A, + 0x16, 0x0B, 0x04, 0x0C, 0x02, 0x01, 0x0C, 0x0C, 0x03, 0x05, + 0x0A, 0x03, 0x03, 0x0C, 0x02, 0x03, 0x0F, 0x04, 0x09, 0x3A, + 0x13, 0x09, 0x20, 0x0A, 0x05, 0x17, 0x01, 0x04, 0x07, 0x02, + 0x01, 0x04, 0x06, 0x05, 0x07, 0x04, 0x03, 0x0B, 0x02, 0x06, + 0x03, 0x36, 0x6B, 0x6C, 0x6B, 0x35, 0x05, 0x11, 0x03, 0x07, + 0x0F, 0x05, 0x05, 0x12, 0x07, 0x07, 0x0A, 0x0A, 0x3E, 0x7C, + 0x7C, 0x7B, 0x3E, 0x32, 0x63, 0x31, 0x0A, 0x01, 0x01, 0x09, + 0x0C, 0x03, 0x04, 0x12, 0x06, 0x01, 0x0C, 0x13, 0x01, 0x14, + 0x04, 0x06, 0x01, 0x0D, 0x10, 0x27, 0x11, 0x07, 0x22, 0x02, + 0x0E, 0x06, 0x05, 0x04, 0x2C, 0x08, 0x09, 0x07, 0x05, 0x04, + 0x0B, 0x08, 0x06, 0x0C, 0x05, 0x05, 0x07, 0x04, 0x05, 0x11, + 0x0D, 0x01, 0x02, 0x03, 0x02, 0x04, 0x01, 0x04, 0x02, 0x01, + 0x06, 0x03, 0x02, 0x01, 0x36, 0x6C, 0x6B, 0x6C, 0x36, 0x3E, + 0x7C, 0x3E, 0x0B, 0x16, 0x0B, 0x16, 0x0C, 0xF5, 0xAF, 0x02, + 0x1B, 0x05, 0x06, 0x07, 0x05, 0x03, 0x1B, 0x03, 0x02, 0x03, + 0x01, 0x07, 0x2B, 0x0A, 0x09, 0x10, 0x02, 0x02, 0x06, 0x01, + 0x0C, 0x05, 0x0B, 0x0A, 0x11, 0x44, 0x01, 0x09, 0x03, 0x3D, + 0x0A, 0x05, 0x21, 0x02, 0x68, 0x07, 0x01, 0x04, 0x0B, 0x13, + 0x27, 0x13, 0x0A, 0x13, 0x09, 0x0A, 0x0C, 0x05, 0x06, 0x06, + 0x05, 0x0A, 0x07, 0x0A, 0x05, 0x07, 0x09, 0x0F, 0x1D, 0x0E, + 0x06, 0x11, 0x05, 0x0A, 0x05, 0x27, 0x0B, 0x07, 0x0F, 0x08, + 0x04, 0x07, 0x11, 0x07, 0x06, 0x13, 0x05, 0x0B, 0x05, 0x2F, + 0x08, 0x0C, 0x0A, 0x04, 0x03, 0x0B, 0x0B, 0x0C, 0x2C, 0x0C, + 0x10, 0x05, 0x01, 0x01, 0x01, 0x05, 0x02, 0x01, 0x01, 0x03, + 0x07, 0x05, 0x14, 0x09, 0x09, 0x10, 0x07, 0x07, 0x0D, 0x05, + 0x05, 0x05, 0x08, 0x08, 0x04, 0x0A, 0x04, 0x03, 0x0A, 0x05, + 0x08, 0x15, 0x07, 0x0E, 0x08, 0x04, 0x05, 0x04, 0x14, 0x0A, + 0x04, 0x0B, 0x05, 0x05, 0x07, 0x05, 0x01, 0x05, 0x01, 0x01, + 0x04, 0x04, 0x07, 0x20, 0x09, 0x0B, 0x17, 0x0B, 0x28, 0x4E, + 0x28, 0x13, 0x28, 0x14, 0x12, 0x0B, 0x01, 0x01, 0x01, 0x13, + 0x03, 0x17, 0x0A, 0x0B, 0x09, 0x06, 0x0B, 0x06, 0x0C, 0x04, + 0x02, 0x03, 0x1A, 0x32, 0x1A, 0x03, 0x06, 0x03, 0x03, 0x09, + 0x02, 0x02, 0x04, 0x0A, 0x18, 0x06, 0x08, 0x12, 0x06, 0x04, + 0x02, 0x01, 0x03, 0x02, 0x01, 0x23, 0x07, 0x06, 0x0C, 0x07, + 0x03, 0x14, 0x02, 0x02, 0x14, 0x05, 0x06, 0x0C, 0x06, 0x07, + 0x14, 0x08, 0x0B, 0x15, 0x0B, 0x14, 0x11, 0x07, 0x04, 0x09, + 0x01, 0x01, 0x09, 0x04, 0x0D, 0x20, 0x0D, 0x0E, 0x0E, 0x0E, + 0x0A, 0x10, 0x09, 0x06, 0x0F, 0x07, 0x01, 0x01, 0x01, 0x20, + 0x04, 0x0A, 0x14, 0x0A, 0x0A, 0x15, 0x09, 0x08, 0x0D, 0x01, + 0x0D, 0x08, 0x08, 0x17, 0x04, 0x11, 0x28, 0x0F, 0x0B, 0x0F, + 0x12, 0x0A, 0x05, 0x09, 0x04, 0x03, 0x02, 0x03, 0x05, 0x13, + 0x08, 0x0C, 0x0C, 0x02, 0x02, 0x04, 0x01, 0x0A, 0x3D, 0x0C, + 0x3A, 0x0A, 0x09, 0x04, 0x02, 0x06, 0x05, 0x19, 0x04, 0x0B, + 0x0D, 0x07, 0x07, 0x11, 0x09, 0x0B, 0x34, 0x02, 0x04, 0x11, + 0x05, 0x04, 0x07, 0x03, 0x07, 0x0E, 0x0A, 0x0A, 0x14, 0x0B, + 0x06, 0x13, 0x05, 0x04, 0x13, 0x07, 0x14, 0x24, 0x15, 0x11, + 0x22, 0x11, 0x01, 0x01, 0x01, 0x01, 0x02, 0x08, 0x09, 0x28, + 0x09, 0xFE, 0xFD, 0x07, 0x0E, 0x07, 0x02, 0x01, 0x04, 0x03, + 0x1B, 0x02, 0x07, 0x04, 0x01, 0x0B, 0x2F, 0x09, 0x0A, 0x04, + 0x0B, 0x17, 0x06, 0x04, 0x0B, 0x07, 0x07, 0x03, 0x06, 0x05, + 0x08, 0x05, 0x0F, 0x04, 0x16, 0x15, 0x00, 0x05, 0x00, 0x62, + 0x00, 0xA4, 0x0A, 0x6A, 0x02, 0xDA, 0x01, 0x0B, 0x01, 0x1E, + 0x01, 0x4A, 0x01, 0x50, 0x01, 0x56, 0x00, 0x00, 0x01, 0x32, + 0x36, 0x37, 0x3E, 0x01, 0x35, 0x31, 0x35, 0x34, 0x26, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x22, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, + 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x03, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x26, 0x07, 0x06, 0x26, 0x27, 0x26, 0x06, 0x27, 0x26, + 0x36, 0x27, 0x2A, 0x01, 0x15, 0x16, 0x06, 0x23, 0x2A, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x15, + 0x14, 0x16, 0x15, 0x26, 0x36, 0x27, 0x26, 0x22, 0x07, 0x22, + 0x26, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x26, 0x23, 0x26, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x37, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x15, 0x1E, 0x01, 0x17, 0x14, 0x16, 0x15, 0x14, 0x06, 0x17, + 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x0E, 0x01, + 0x15, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3A, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x16, 0x36, 0x17, + 0x16, 0x32, 0x37, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x33, 0x36, + 0x16, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x33, 0x3A, 0x03, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x36, 0x37, 0x36, 0x26, 0x27, 0x26, 0x06, 0x27, 0x26, + 0x16, 0x37, 0x05, 0x06, 0x26, 0x27, 0x26, 0x22, 0x27, 0x2E, + 0x01, 0x37, 0x36, 0x16, 0x17, 0x3A, 0x01, 0x17, 0x16, 0x06, + 0x07, 0x25, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x27, 0x22, 0x26, + 0x23, 0x06, 0x26, 0x37, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, + 0x01, 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x33, 0x1E, 0x01, 0x17, 0x15, 0x25, 0x32, 0x16, 0x33, 0x06, + 0x27, 0x23, 0x2A, 0x01, 0x23, 0x36, 0x16, 0x0A, 0x35, 0x0A, + 0x13, 0x09, 0x0D, 0x02, 0x03, 0x08, 0x09, 0x0C, 0x06, 0x0C, + 0x1E, 0x10, 0x06, 0x0D, 0x07, 0x09, 0x03, 0x02, 0x02, 0x08, + 0x07, 0x06, 0x0D, 0x08, 0x36, 0x6D, 0x35, 0x38, 0x70, 0x37, + 0x2D, 0x5A, 0x5A, 0x5A, 0x2D, 0x2D, 0x59, 0x2D, 0x2A, 0x54, + 0x2A, 0x10, 0x06, 0x03, 0x02, 0x24, 0x09, 0x03, 0x06, 0x06, + 0x03, 0x0E, 0x01, 0x02, 0x08, 0x0A, 0x13, 0x09, 0x2C, 0x58, + 0x2C, 0x17, 0x2D, 0x16, 0x06, 0x04, 0x01, 0x0A, 0x03, 0x06, + 0x06, 0x16, 0x08, 0x0B, 0x19, 0x0A, 0x02, 0x02, 0x02, 0x03, + 0x05, 0x03, 0x09, 0x10, 0x05, 0x05, 0x11, 0x07, 0x02, 0x02, + 0x0B, 0x05, 0x0C, 0x01, 0x2C, 0x58, 0x2D, 0x2B, 0x58, 0x2C, + 0x16, 0x2D, 0x17, 0x08, 0x0D, 0x06, 0x06, 0x0C, 0x07, 0x15, + 0x2A, 0x15, 0x09, 0x27, 0x01, 0x01, 0x01, 0x01, 0x03, 0x09, + 0x11, 0x1E, 0x0F, 0x0F, 0x26, 0x0B, 0x06, 0x08, 0x03, 0x04, + 0x09, 0x05, 0x09, 0x15, 0x10, 0x2A, 0x53, 0x2A, 0x02, 0x01, + 0x0A, 0x15, 0x0A, 0x06, 0x1B, 0x03, 0x08, 0x08, 0x06, 0x0B, + 0x17, 0x0B, 0x08, 0x18, 0x01, 0x1E, 0x0B, 0x10, 0x20, 0x11, + 0x14, 0x29, 0x15, 0x13, 0x17, 0x04, 0x08, 0x0C, 0x08, 0x09, + 0x12, 0x09, 0x05, 0x0D, 0x0E, 0x10, 0x23, 0x0F, 0x0B, 0x16, + 0x0B, 0x08, 0x11, 0x08, 0x0E, 0x16, 0x08, 0x0A, 0x11, 0x10, + 0x0F, 0x1E, 0x0F, 0x0B, 0x18, 0x0B, 0x08, 0x11, 0x08, 0x0F, + 0x17, 0x0F, 0x14, 0x2C, 0x15, 0x11, 0x25, 0x11, 0x13, 0x2C, + 0x14, 0x15, 0x2A, 0x15, 0x2D, 0x5A, 0x2C, 0x2D, 0x58, 0x2D, + 0x16, 0x2C, 0x17, 0x09, 0x14, 0x09, 0x09, 0x10, 0x0A, 0x2C, + 0x59, 0x59, 0x59, 0x2D, 0x2D, 0x59, 0x2D, 0x18, 0x2E, 0x18, + 0x0C, 0x11, 0x02, 0x02, 0x0B, 0x0E, 0x0B, 0x21, 0x06, 0x03, + 0x1B, 0x04, 0xF9, 0x2F, 0x0A, 0x2C, 0x0D, 0x0A, 0x15, 0x08, + 0x06, 0x03, 0x02, 0x05, 0x34, 0x12, 0x09, 0x16, 0x06, 0x08, + 0x04, 0x03, 0x06, 0x7A, 0x4F, 0x9A, 0x4F, 0x27, 0x4F, 0x27, + 0x10, 0x20, 0x10, 0x0A, 0x0D, 0x0A, 0x04, 0x14, 0x06, 0x08, + 0x12, 0x08, 0x14, 0x27, 0x14, 0x27, 0x4F, 0x28, 0x26, 0x4E, + 0x26, 0x0A, 0x14, 0x0A, 0x03, 0x0A, 0x01, 0x01, 0x01, 0x01, + 0x05, 0x0D, 0x05, 0x04, 0x04, 0x03, 0xF9, 0x6A, 0x01, 0x02, + 0x01, 0x03, 0x01, 0x42, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, + 0x4D, 0x03, 0x02, 0x04, 0x02, 0x0B, 0x1D, 0x08, 0x09, 0x02, + 0x03, 0x06, 0x08, 0x0D, 0x15, 0x09, 0x03, 0x07, 0x0F, 0x06, + 0x0A, 0x14, 0x08, 0x07, 0x01, 0x01, 0x04, 0x03, 0x02, 0x03, + 0x01, 0x0E, 0x0D, 0x0F, 0x0D, 0x06, 0x03, 0x0F, 0x01, 0x05, + 0x09, 0x05, 0x01, 0x06, 0x05, 0x0B, 0x05, 0x05, 0x10, 0x09, + 0x08, 0x01, 0x01, 0x07, 0x01, 0x0B, 0x03, 0x01, 0x03, 0x07, + 0x07, 0x1E, 0x01, 0x19, 0x05, 0x02, 0x11, 0x06, 0x04, 0x08, + 0x04, 0x04, 0x08, 0x04, 0x02, 0x04, 0x02, 0x01, 0x02, 0x06, + 0x05, 0x06, 0x01, 0x04, 0x05, 0x03, 0x01, 0x02, 0x0C, 0x2C, + 0x56, 0x2C, 0x17, 0x2F, 0x17, 0x0A, 0x36, 0x04, 0x06, 0x0E, + 0x07, 0x06, 0x0F, 0x0C, 0x07, 0x14, 0x08, 0x0A, 0x12, 0x09, + 0x0E, 0x10, 0x04, 0x09, 0x15, 0x08, 0x04, 0x09, 0x05, 0x01, + 0x02, 0x01, 0x02, 0x06, 0x0F, 0x1D, 0x0D, 0x15, 0x2A, 0x14, + 0x0E, 0x22, 0x10, 0x0F, 0x0D, 0x03, 0x05, 0x06, 0x04, 0x04, + 0x08, 0x05, 0x05, 0x17, 0x08, 0x13, 0x1E, 0x10, 0x13, 0x25, + 0x13, 0x0B, 0x27, 0x04, 0x04, 0x01, 0x01, 0x01, 0x01, 0x05, + 0x15, 0x0A, 0x0B, 0x14, 0x03, 0x03, 0x02, 0x01, 0x02, 0x05, + 0x03, 0x02, 0x08, 0x01, 0x01, 0x14, 0x03, 0x03, 0x04, 0x02, + 0x02, 0x04, 0x06, 0x06, 0x01, 0x01, 0x01, 0x01, 0x04, 0x03, + 0x01, 0x01, 0x03, 0x03, 0x05, 0x16, 0x0B, 0x0E, 0x1F, 0x05, + 0x04, 0x09, 0x0D, 0x08, 0x02, 0x01, 0x91, 0x0D, 0x03, 0x01, + 0x01, 0x08, 0x05, 0x10, 0x08, 0x18, 0x01, 0x01, 0x08, 0x0A, + 0x16, 0x0B, 0x81, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x07, 0x0B, 0x05, 0x02, 0x01, 0x02, 0x02, 0x02, 0x01, 0x02, + 0x02, 0x01, 0x04, 0x04, 0x06, 0x8C, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x5E, 0x00, 0xBB, + 0x09, 0xE8, 0x02, 0xC6, 0x00, 0xAC, 0x00, 0xC5, 0x00, 0x00, + 0x01, 0x3C, 0x01, 0x35, 0x2A, 0x01, 0x26, 0x22, 0x23, 0x2A, + 0x03, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x26, 0x06, + 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, + 0x23, 0x22, 0x26, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x15, + 0x14, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x1C, 0x01, 0x15, 0x30, 0x33, + 0x32, 0x35, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x16, + 0x06, 0x33, 0x3A, 0x01, 0x17, 0x26, 0x36, 0x33, 0x32, 0x26, + 0x37, 0x3E, 0x01, 0x15, 0x14, 0x36, 0x33, 0x32, 0x36, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x06, 0x33, 0x16, 0x32, 0x33, 0x36, + 0x16, 0x33, 0x3A, 0x03, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x32, 0x17, 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, + 0x26, 0x06, 0x23, 0x22, 0x36, 0x37, 0x32, 0x16, 0x33, 0x05, + 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x37, 0x14, + 0x16, 0x33, 0x22, 0x36, 0x37, 0x36, 0x16, 0x33, 0x32, 0x16, + 0x17, 0x16, 0x06, 0x07, 0x09, 0xE8, 0x62, 0xC9, 0xCA, 0xCA, + 0x62, 0x3A, 0x72, 0x73, 0x72, 0x3A, 0x20, 0x42, 0x21, 0x09, + 0x22, 0x06, 0x08, 0x84, 0x14, 0x3F, 0x86, 0x3D, 0x14, 0x2A, + 0x10, 0x0F, 0x1F, 0x0E, 0x0E, 0x1A, 0x0E, 0x0B, 0x18, 0x0E, + 0x0B, 0x18, 0x0A, 0x0F, 0x23, 0x10, 0x15, 0x2D, 0x16, 0x1C, + 0x24, 0x14, 0x07, 0x01, 0x09, 0x04, 0x22, 0x02, 0x07, 0x16, + 0x11, 0x2C, 0x17, 0x20, 0x15, 0x08, 0x04, 0x11, 0x07, 0x20, + 0x5B, 0x35, 0x01, 0x01, 0x27, 0x1E, 0x10, 0x0A, 0x14, 0x0E, + 0x2D, 0x6A, 0x2A, 0x1D, 0x44, 0x25, 0x0E, 0x1F, 0x10, 0x06, + 0x1D, 0x0B, 0x0A, 0x18, 0x0B, 0x1D, 0x3A, 0x1D, 0x12, 0x2B, + 0x12, 0x02, 0x04, 0x06, 0x0B, 0x15, 0x0B, 0x01, 0x01, 0x05, + 0x11, 0x07, 0x05, 0x02, 0x45, 0x61, 0x0F, 0x32, 0x72, 0x31, + 0x0A, 0x13, 0x0A, 0x05, 0x03, 0x04, 0x0B, 0x17, 0x0B, 0x02, + 0x9F, 0x10, 0x29, 0x52, 0x51, 0x52, 0x29, 0x1F, 0x4B, 0x15, + 0x06, 0x09, 0x06, 0x0D, 0x1B, 0x15, 0x15, 0x1F, 0x09, 0x08, + 0x04, 0x04, 0x0F, 0x1E, 0x10, 0xF9, 0x16, 0x0A, 0x26, 0x0E, + 0x15, 0x31, 0x11, 0x11, 0x0C, 0x17, 0x01, 0x16, 0x04, 0x16, + 0x03, 0x0B, 0x1D, 0x0D, 0x15, 0x22, 0x08, 0x04, 0x03, 0x06, + 0x02, 0x46, 0x16, 0x36, 0x12, 0x01, 0x06, 0x03, 0x1E, 0x0C, + 0x08, 0x09, 0x09, 0x0B, 0x09, 0x07, 0x0D, 0x07, 0x07, 0x10, + 0x07, 0x05, 0x16, 0x02, 0x03, 0x13, 0x05, 0x08, 0x0D, 0x06, + 0x07, 0x0F, 0x02, 0x04, 0x11, 0x0A, 0x03, 0x07, 0x01, 0x03, + 0x07, 0x0C, 0x07, 0x18, 0x31, 0x19, 0x22, 0x4E, 0x18, 0x14, + 0x2F, 0x09, 0x0C, 0x10, 0x15, 0x0A, 0x1B, 0x0A, 0x2F, 0x51, + 0x18, 0x02, 0x04, 0x02, 0x01, 0x0E, 0x2E, 0x18, 0x0E, 0x16, + 0x08, 0x17, 0x12, 0x1D, 0x15, 0x21, 0x0A, 0x04, 0x07, 0x01, + 0x01, 0x17, 0x06, 0x05, 0x01, 0x04, 0x04, 0x01, 0x0A, 0x01, + 0x05, 0x07, 0x07, 0x02, 0x01, 0x08, 0x06, 0x1B, 0x06, 0x09, + 0x09, 0x02, 0x0B, 0x03, 0x01, 0x09, 0x01, 0x0D, 0x06, 0x03, + 0x0F, 0x03, 0x13, 0x05, 0x0C, 0x01, 0x0F, 0x1F, 0x0F, 0x07, + 0x15, 0x07, 0x01, 0x01, 0x07, 0x09, 0x01, 0xDC, 0x0E, 0x12, + 0x04, 0x07, 0x08, 0x0B, 0x0B, 0x2E, 0x10, 0x13, 0x31, 0x46, + 0x06, 0x04, 0x02, 0x03, 0x14, 0x0A, 0x13, 0x07, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x63, 0x00, 0x72, 0x07, 0x72, 0x03, 0x0D, + 0x00, 0xFE, 0x01, 0x10, 0x01, 0x24, 0x00, 0x00, 0x01, 0x34, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x36, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x34, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x34, 0x37, 0x36, 0x34, 0x37, 0x3E, 0x01, 0x33, + 0x35, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, 0x32, 0x36, 0x33, + 0x32, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x3A, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, + 0x17, 0x16, 0x32, 0x33, 0x14, 0x06, 0x17, 0x23, 0x15, 0x32, + 0x16, 0x17, 0x36, 0x32, 0x17, 0x35, 0x16, 0x06, 0x15, 0x3A, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, + 0x15, 0x14, 0x16, 0x07, 0x14, 0x06, 0x23, 0x2A, 0x01, 0x23, + 0x2A, 0x01, 0x23, 0x1C, 0x01, 0x15, 0x23, 0x06, 0x26, 0x23, + 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x16, 0x06, 0x23, 0x15, + 0x23, 0x1C, 0x01, 0x15, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x22, 0x23, 0x22, 0x26, 0x27, 0x22, 0x06, 0x23, + 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x35, 0x34, 0x26, + 0x35, 0x34, 0x26, 0x27, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x23, + 0x22, 0x06, 0x23, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x34, 0x06, 0x23, 0x06, 0x26, + 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x37, 0x23, 0x14, 0x06, + 0x15, 0x14, 0x06, 0x07, 0x0E, 0x03, 0x07, 0x0E, 0x01, 0x23, + 0x06, 0x16, 0x07, 0x06, 0x22, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x06, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x3F, 0x01, 0x25, + 0x35, 0x07, 0x1C, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x34, 0x26, 0x27, 0x07, 0x35, 0x0E, + 0x01, 0x07, 0x23, 0x14, 0x06, 0x15, 0x23, 0x14, 0x06, 0x15, + 0x0E, 0x01, 0x15, 0x33, 0x34, 0x26, 0x37, 0x01, 0xA3, 0x1A, + 0x02, 0x05, 0x0D, 0x07, 0x06, 0x1D, 0x08, 0x0B, 0x16, 0x0C, + 0x15, 0x2D, 0x14, 0x10, 0x27, 0x10, 0x08, 0x11, 0x08, 0x09, + 0x0F, 0x09, 0x06, 0x10, 0x09, 0x02, 0x11, 0x03, 0x04, 0x07, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x09, 0x04, 0x04, + 0x03, 0x02, 0x01, 0x02, 0x08, 0x08, 0x4C, 0x97, 0x4C, 0x1B, + 0x36, 0x1B, 0x07, 0x10, 0x06, 0x03, 0x05, 0x02, 0x06, 0x0A, + 0x05, 0x57, 0xAE, 0xAD, 0xAE, 0x57, 0x31, 0x63, 0x32, 0x0B, + 0x17, 0x0C, 0x02, 0x05, 0x02, 0x03, 0x06, 0x02, 0x02, 0x06, + 0x05, 0x01, 0x01, 0x04, 0x02, 0x04, 0x02, 0x03, 0x0E, 0x04, + 0x09, 0x01, 0x23, 0x47, 0x23, 0x17, 0x2F, 0x17, 0x06, 0x1E, + 0x05, 0x06, 0x02, 0x01, 0x01, 0x04, 0x08, 0x14, 0x29, 0x15, + 0x0B, 0x18, 0x0B, 0x01, 0x04, 0x30, 0x09, 0x0F, 0x1E, 0x0E, + 0x06, 0x0A, 0x05, 0x06, 0x10, 0x05, 0x25, 0x0A, 0x03, 0x08, + 0x05, 0x05, 0x11, 0x04, 0x06, 0x33, 0x0C, 0x0C, 0x1D, 0x08, + 0x21, 0x42, 0x20, 0x05, 0x09, 0x03, 0x02, 0x02, 0x01, 0x01, + 0x08, 0x02, 0x06, 0x0C, 0x04, 0x08, 0x0C, 0x11, 0x0C, 0x33, + 0x04, 0x01, 0x01, 0x18, 0x31, 0x18, 0x0D, 0x1B, 0x0D, 0x05, + 0x0B, 0x05, 0x0A, 0x02, 0x03, 0x08, 0x05, 0x05, 0x08, 0x05, + 0x03, 0x06, 0x02, 0x08, 0x01, 0x11, 0x33, 0x15, 0x0F, 0x20, + 0x0F, 0x05, 0x0D, 0x04, 0x05, 0x06, 0x05, 0x01, 0x01, 0x23, + 0x2A, 0x23, 0x01, 0x04, 0x01, 0x04, 0x05, 0x04, 0x03, 0x05, + 0x0D, 0x06, 0x24, 0x49, 0x24, 0x0D, 0x2B, 0x0B, 0x03, 0x0B, + 0x26, 0x05, 0x3F, 0x01, 0xC8, 0x61, 0x03, 0x07, 0x10, 0x0F, + 0x09, 0x1A, 0x05, 0x02, 0x0C, 0x04, 0x01, 0x01, 0x83, 0x01, + 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x04, 0x18, 0x09, + 0x01, 0x01, 0x73, 0x02, 0x32, 0x03, 0x0B, 0x15, 0x0B, 0x05, + 0x03, 0x01, 0x01, 0x05, 0x01, 0x04, 0x08, 0x07, 0x06, 0x08, + 0x0A, 0x06, 0x07, 0x04, 0x05, 0x0E, 0x05, 0x04, 0x10, 0x02, + 0x07, 0x0B, 0x05, 0x05, 0x0C, 0x06, 0x05, 0x0E, 0x05, 0x06, + 0x0D, 0x06, 0x08, 0x09, 0x06, 0x07, 0x0D, 0x05, 0x05, 0x0F, + 0x05, 0x06, 0x10, 0x01, 0x01, 0x01, 0x03, 0x03, 0x04, 0x03, + 0x04, 0x0B, 0x14, 0x0B, 0x02, 0x01, 0x01, 0x03, 0x02, 0x01, + 0x01, 0x13, 0x06, 0x03, 0x05, 0x07, 0x09, 0x09, 0x07, 0x0D, + 0x06, 0x06, 0x0E, 0x03, 0x06, 0x03, 0x0A, 0x03, 0x01, 0x03, + 0x08, 0x04, 0x03, 0x05, 0x0B, 0x05, 0x01, 0x09, 0x10, 0x09, + 0x08, 0x0D, 0x07, 0x0D, 0x09, 0x0A, 0x03, 0x06, 0x02, 0x02, + 0x01, 0x02, 0x02, 0x02, 0x02, 0x05, 0x0C, 0x08, 0x0D, 0x1B, + 0x04, 0x04, 0x09, 0x13, 0x06, 0x0B, 0x06, 0x06, 0x0C, 0x05, + 0x01, 0x02, 0x07, 0x05, 0x05, 0x05, 0x0A, 0x04, 0x05, 0x0A, + 0x05, 0x03, 0x03, 0x04, 0x01, 0x08, 0x09, 0x04, 0x03, 0x07, + 0x04, 0x08, 0x05, 0x03, 0x0B, 0x03, 0x03, 0x47, 0x55, 0x47, + 0x01, 0x09, 0x07, 0x01, 0x09, 0x04, 0x04, 0x03, 0x09, 0x03, + 0x0B, 0x05, 0x07, 0x58, 0x0A, 0x7C, 0x83, 0x01, 0x01, 0x06, + 0x0F, 0x06, 0x0C, 0x04, 0x02, 0x0A, 0x04, 0x15, 0x01, 0x01, + 0x03, 0x01, 0x12, 0x02, 0x01, 0x04, 0x02, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x02, 0x08, 0x04, 0x06, 0x0B, 0x08, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x60, 0x00, 0xA5, 0x0A, 0xDB, + 0x02, 0xDA, 0x01, 0x2A, 0x01, 0x3D, 0x00, 0x00, 0x01, 0x26, + 0x36, 0x27, 0x26, 0x06, 0x23, 0x22, 0x34, 0x27, 0x26, 0x06, + 0x07, 0x0E, 0x01, 0x15, 0x2E, 0x01, 0x23, 0x14, 0x16, 0x17, + 0x2A, 0x03, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x23, 0x2A, + 0x01, 0x23, 0x26, 0x06, 0x27, 0x2E, 0x01, 0x23, 0x26, 0x06, + 0x27, 0x26, 0x06, 0x07, 0x06, 0x22, 0x23, 0x22, 0x26, 0x23, + 0x22, 0x06, 0x37, 0x30, 0x27, 0x22, 0x17, 0x2E, 0x01, 0x07, + 0x22, 0x06, 0x37, 0x36, 0x22, 0x23, 0x26, 0x36, 0x07, 0x22, + 0x26, 0x17, 0x26, 0x22, 0x23, 0x14, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x06, 0x26, 0x27, 0x26, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x23, 0x22, 0x06, 0x27, 0x2A, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x22, 0x23, 0x22, 0x26, 0x23, 0x06, 0x26, 0x23, 0x22, + 0x06, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x32, 0x36, 0x27, 0x16, 0x32, + 0x33, 0x32, 0x36, 0x37, 0x3A, 0x01, 0x37, 0x32, 0x36, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, + 0x03, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x27, 0x34, 0x36, 0x27, 0x26, 0x36, 0x37, + 0x36, 0x16, 0x33, 0x3E, 0x01, 0x33, 0x16, 0x32, 0x33, 0x2E, + 0x01, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x17, 0x15, + 0x26, 0x1F, 0x01, 0x05, 0x26, 0x16, 0x33, 0x3A, 0x01, 0x17, + 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x26, + 0x1F, 0x01, 0x0A, 0xD4, 0x05, 0x0C, 0x11, 0x0A, 0x16, 0x0A, + 0x07, 0x03, 0x06, 0x1C, 0x0A, 0x0E, 0x0B, 0x0A, 0x14, 0x0A, + 0x01, 0x01, 0x55, 0xAA, 0xAA, 0xAA, 0x55, 0x2A, 0x53, 0x29, + 0x15, 0x29, 0x15, 0x0B, 0x17, 0x0B, 0x07, 0x0F, 0x07, 0x05, + 0x07, 0x05, 0x05, 0x11, 0x04, 0x0B, 0x20, 0x0F, 0x14, 0x28, + 0x13, 0x0B, 0x16, 0x0B, 0x01, 0x0F, 0x02, 0x07, 0x07, 0x05, + 0x17, 0x30, 0x17, 0x07, 0x4F, 0x01, 0x02, 0x10, 0x03, 0x07, + 0x02, 0x0A, 0x08, 0x21, 0x04, 0x03, 0x04, 0x03, 0x1B, 0x0B, + 0x10, 0x20, 0x11, 0x08, 0x10, 0x08, 0x0A, 0x12, 0x09, 0x15, + 0x2A, 0x14, 0x0A, 0x12, 0x0A, 0x09, 0x11, 0x0A, 0x06, 0x14, + 0x02, 0x04, 0x1E, 0x07, 0x2C, 0x5A, 0x2C, 0x14, 0x28, 0x14, + 0x16, 0x2D, 0x16, 0x13, 0x24, 0x12, 0x06, 0x0B, 0x05, 0x02, + 0x03, 0x01, 0x06, 0x0C, 0x06, 0x09, 0x12, 0x0A, 0x07, 0x0C, + 0x07, 0x15, 0x1F, 0x0A, 0x04, 0x05, 0x01, 0x01, 0x01, 0x01, + 0x03, 0x01, 0x02, 0x01, 0x04, 0x02, 0x02, 0x01, 0x08, 0x09, + 0x27, 0x10, 0x05, 0x13, 0x02, 0x02, 0x18, 0x07, 0x13, 0x22, + 0x12, 0x09, 0x13, 0x09, 0x0A, 0x13, 0x0B, 0x0F, 0x1E, 0x0E, + 0x05, 0x0C, 0x06, 0x08, 0x0C, 0x07, 0x08, 0x10, 0x07, 0x0A, + 0x15, 0x0A, 0x16, 0x2C, 0x17, 0x10, 0x1A, 0x06, 0x03, 0x01, + 0x08, 0x0B, 0x16, 0x09, 0x08, 0x11, 0x08, 0x09, 0x10, 0x07, + 0x0D, 0x04, 0x05, 0x02, 0x0A, 0x02, 0x02, 0x04, 0x04, 0x0C, + 0x1B, 0x0F, 0x10, 0x22, 0x11, 0x14, 0x0E, 0x0B, 0x14, 0x50, + 0x1B, 0x0E, 0x19, 0x0E, 0x06, 0x0A, 0x06, 0x01, 0x12, 0x01, + 0x0E, 0x20, 0x0F, 0x18, 0x31, 0x19, 0x16, 0x2C, 0x16, 0x07, + 0x0F, 0x06, 0x08, 0x10, 0x0A, 0x0F, 0x21, 0x11, 0x17, 0x2F, + 0x18, 0x2E, 0x5C, 0x5C, 0x5C, 0x2F, 0x35, 0x6B, 0x36, 0x0C, + 0x17, 0x0C, 0x0C, 0x1B, 0x0B, 0x0A, 0x1F, 0x01, 0x01, 0x04, + 0x04, 0x08, 0x07, 0x07, 0x0F, 0x07, 0x0E, 0x1A, 0x0E, 0x38, + 0x71, 0x38, 0x01, 0x01, 0x01, 0x03, 0x0A, 0x01, 0x03, 0x01, + 0x05, 0x03, 0x02, 0xF9, 0x5F, 0x03, 0x2F, 0x09, 0x05, 0x0F, + 0x02, 0x02, 0x01, 0x02, 0x05, 0x2F, 0x0A, 0x08, 0x0C, 0x06, + 0x02, 0x01, 0x01, 0x02, 0x8E, 0x0A, 0x15, 0x04, 0x03, 0x02, + 0x11, 0x04, 0x0A, 0x02, 0x01, 0x01, 0x0A, 0x0F, 0x01, 0x03, + 0x02, 0x03, 0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x07, 0x01, + 0x03, 0x03, 0x09, 0x03, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, + 0x02, 0x04, 0x01, 0x01, 0x03, 0x05, 0x07, 0x01, 0x0C, 0x01, + 0x01, 0x0C, 0x01, 0x0E, 0x10, 0x06, 0x08, 0x0E, 0x05, 0x03, + 0x0A, 0x03, 0x04, 0x07, 0x04, 0x09, 0x10, 0x09, 0x04, 0x04, + 0x02, 0x03, 0x07, 0x01, 0x04, 0x06, 0x08, 0x06, 0x01, 0x05, + 0x06, 0x01, 0x01, 0x07, 0x01, 0x01, 0x04, 0x03, 0x01, 0x02, + 0x01, 0x04, 0x02, 0x02, 0x02, 0x01, 0x05, 0x0A, 0x14, 0x09, + 0x11, 0x0A, 0x09, 0x13, 0x0A, 0x17, 0x2E, 0x17, 0x16, 0x2B, + 0x16, 0x11, 0x2D, 0x10, 0x10, 0x06, 0x03, 0x01, 0x03, 0x06, + 0x09, 0x05, 0x03, 0x06, 0x11, 0x0A, 0x04, 0x07, 0x04, 0x04, + 0x0B, 0x04, 0x06, 0x0F, 0x09, 0x03, 0x08, 0x03, 0x04, 0x06, + 0x02, 0x02, 0x09, 0x03, 0x04, 0x09, 0x05, 0x09, 0x15, 0x08, + 0x06, 0x19, 0x0D, 0x06, 0x09, 0x01, 0x02, 0x0C, 0x05, 0x04, + 0x02, 0x03, 0x02, 0x08, 0x05, 0x09, 0x23, 0x0D, 0x06, 0x09, + 0x06, 0x05, 0x06, 0x04, 0x0A, 0x0B, 0x04, 0x03, 0x05, 0x01, + 0x01, 0x1D, 0x0F, 0x1A, 0x05, 0x10, 0x09, 0x17, 0x09, 0x03, + 0x0C, 0x03, 0x0A, 0x01, 0x04, 0x02, 0x01, 0x01, 0x01, 0x06, + 0x09, 0x10, 0x06, 0x09, 0x05, 0x01, 0x02, 0x01, 0x03, 0x06, + 0x0D, 0x0A, 0x07, 0x01, 0x01, 0x01, 0x05, 0x01, 0x03, 0x02, + 0x03, 0x03, 0x05, 0x0D, 0x05, 0x15, 0x09, 0x18, 0x08, 0x07, + 0x0D, 0x03, 0x02, 0x01, 0x01, 0x03, 0x01, 0x02, 0x04, 0x02, + 0x01, 0x05, 0x09, 0x10, 0x08, 0x01, 0x01, 0x0A, 0x05, 0x05, + 0x9F, 0x0B, 0x02, 0x05, 0x05, 0x13, 0x04, 0x0C, 0x03, 0x04, + 0x03, 0x1D, 0x03, 0x08, 0x04, 0x04, 0x00, 0x02, 0x00, 0x55, + 0x00, 0x0C, 0x09, 0x06, 0x03, 0x7A, 0x01, 0xB8, 0x01, 0xD1, + 0x00, 0x00, 0x01, 0x1E, 0x01, 0x07, 0x16, 0x26, 0x23, 0x06, + 0x22, 0x07, 0x2A, 0x01, 0x07, 0x22, 0x06, 0x15, 0x14, 0x16, + 0x17, 0x16, 0x06, 0x15, 0x14, 0x16, 0x27, 0x14, 0x16, 0x07, + 0x16, 0x06, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x23, 0x22, + 0x16, 0x15, 0x14, 0x16, 0x23, 0x22, 0x06, 0x35, 0x34, 0x36, + 0x35, 0x3C, 0x01, 0x35, 0x34, 0x26, 0x35, 0x34, 0x26, 0x35, + 0x3C, 0x01, 0x35, 0x34, 0x26, 0x37, 0x3E, 0x01, 0x35, 0x34, + 0x36, 0x07, 0x26, 0x34, 0x37, 0x2E, 0x01, 0x35, 0x34, 0x26, + 0x15, 0x14, 0x06, 0x07, 0x06, 0x26, 0x15, 0x14, 0x06, 0x07, + 0x06, 0x26, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x36, 0x35, 0x34, + 0x06, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x15, 0x14, 0x06, + 0x17, 0x16, 0x36, 0x17, 0x16, 0x06, 0x17, 0x16, 0x36, 0x15, + 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x1C, + 0x01, 0x15, 0x14, 0x06, 0x15, 0x14, 0x26, 0x23, 0x2A, 0x01, + 0x23, 0x22, 0x06, 0x27, 0x26, 0x06, 0x35, 0x3C, 0x01, 0x35, + 0x3C, 0x01, 0x35, 0x34, 0x36, 0x27, 0x26, 0x36, 0x37, 0x06, + 0x22, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x30, 0x0F, + 0x01, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x16, 0x07, 0x06, 0x16, 0x23, 0x22, 0x06, 0x23, 0x06, + 0x26, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x06, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x06, 0x23, 0x22, + 0x06, 0x27, 0x26, 0x36, 0x23, 0x22, 0x06, 0x27, 0x26, 0x06, + 0x23, 0x22, 0x16, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, + 0x01, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, + 0x17, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x33, + 0x3A, 0x01, 0x33, 0x22, 0x36, 0x15, 0x36, 0x34, 0x37, 0x36, + 0x32, 0x37, 0x36, 0x26, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, + 0x33, 0x32, 0x16, 0x17, 0x16, 0x32, 0x17, 0x1E, 0x01, 0x17, + 0x16, 0x36, 0x33, 0x32, 0x36, 0x17, 0x36, 0x16, 0x15, 0x32, + 0x16, 0x37, 0x3E, 0x01, 0x17, 0x3E, 0x01, 0x17, 0x36, 0x16, + 0x17, 0x32, 0x16, 0x33, 0x16, 0x36, 0x33, 0x32, 0x36, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x16, 0x33, 0x32, 0x36, 0x17, 0x36, + 0x16, 0x33, 0x36, 0x32, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x36, 0x37, 0x36, 0x16, 0x33, 0x32, 0x16, 0x17, 0x36, 0x16, + 0x17, 0x1E, 0x01, 0x17, 0x14, 0x36, 0x17, 0x16, 0x06, 0x15, + 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, + 0x06, 0x07, 0x06, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, + 0x37, 0x36, 0x26, 0x37, 0x36, 0x26, 0x37, 0x34, 0x26, 0x37, + 0x34, 0x36, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, + 0x36, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x36, 0x33, 0x3A, 0x03, + 0x33, 0x05, 0x3E, 0x01, 0x37, 0x2A, 0x01, 0x23, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x08, 0xD9, 0x0B, 0x22, + 0x15, 0x06, 0x5C, 0x12, 0x48, 0x90, 0x48, 0x39, 0x74, 0x3A, + 0x03, 0x02, 0x0F, 0x03, 0x03, 0x03, 0x02, 0x14, 0x02, 0x03, + 0x10, 0x05, 0x01, 0x01, 0x13, 0x03, 0x0A, 0x0C, 0x05, 0x1E, + 0x07, 0x01, 0x13, 0x01, 0x02, 0x02, 0x07, 0x02, 0x0E, 0x04, + 0x04, 0x04, 0x09, 0x09, 0x04, 0x04, 0x02, 0x09, 0x02, 0x02, + 0x0A, 0x1B, 0x0D, 0x0D, 0x13, 0x06, 0x01, 0x01, 0x17, 0x02, + 0x26, 0x4C, 0x26, 0x06, 0x62, 0x01, 0x01, 0x02, 0x06, 0x02, + 0x04, 0x01, 0x09, 0x03, 0x08, 0x02, 0x1F, 0x0C, 0x28, 0x51, + 0x28, 0x0B, 0x22, 0x08, 0x04, 0x09, 0x03, 0x05, 0x02, 0x0C, + 0x08, 0x13, 0x25, 0x06, 0x02, 0x0C, 0x0A, 0x05, 0x0F, 0x06, + 0x0E, 0x05, 0x05, 0x04, 0x02, 0x03, 0x05, 0x03, 0x01, 0x03, + 0x05, 0x04, 0x05, 0x06, 0x03, 0x03, 0x07, 0x03, 0x0B, 0x04, + 0x16, 0x4B, 0x10, 0x04, 0x04, 0x0D, 0x04, 0x07, 0x06, 0x11, + 0x0A, 0x09, 0x0D, 0x05, 0x01, 0x01, 0x03, 0x04, 0x02, 0x07, + 0x05, 0x05, 0x2E, 0x03, 0x11, 0x49, 0x0D, 0x0A, 0x08, 0x12, + 0x0D, 0x1E, 0x0D, 0x04, 0x07, 0x05, 0x07, 0x03, 0x06, 0x2B, + 0x5F, 0x2F, 0x02, 0x07, 0x02, 0x02, 0x04, 0x03, 0x03, 0x0E, + 0x04, 0x0B, 0x1A, 0x0A, 0x0A, 0x0E, 0x09, 0x06, 0x06, 0x01, + 0x02, 0x03, 0x03, 0x1D, 0x05, 0x23, 0x09, 0x28, 0x4F, 0x28, + 0x34, 0x60, 0x34, 0x0E, 0x1B, 0x0E, 0x02, 0x09, 0x03, 0x07, + 0x05, 0x0E, 0x04, 0x06, 0x09, 0x0A, 0x08, 0x06, 0x0C, 0x07, + 0x09, 0x0D, 0x04, 0x02, 0x11, 0x05, 0x04, 0x03, 0x07, 0x0D, + 0x22, 0x0E, 0x08, 0x11, 0x02, 0x0B, 0x06, 0x18, 0x3A, 0x14, + 0x07, 0x18, 0x05, 0x07, 0x12, 0x07, 0x06, 0x37, 0x0A, 0x03, + 0x05, 0x01, 0x04, 0x09, 0x04, 0x08, 0x11, 0x08, 0x0D, 0x19, + 0x0C, 0x05, 0x08, 0x03, 0x04, 0x0E, 0x01, 0x08, 0x0C, 0x08, + 0x09, 0x10, 0x09, 0x01, 0x03, 0x02, 0x08, 0x0F, 0x06, 0x07, + 0x0D, 0x07, 0x04, 0x17, 0x0D, 0x0F, 0x1D, 0x0F, 0x08, 0x24, + 0x02, 0x02, 0x21, 0x07, 0x06, 0x13, 0x04, 0x04, 0x08, 0x05, + 0x0B, 0x0E, 0x06, 0x05, 0x0B, 0x04, 0x09, 0x60, 0x0D, 0x0B, + 0x25, 0x06, 0x0C, 0x04, 0x02, 0x01, 0x17, 0x0C, 0x0C, 0x0D, + 0x09, 0x05, 0x01, 0x06, 0x25, 0x4A, 0x25, 0x06, 0x19, 0x04, + 0x04, 0x04, 0x07, 0x0B, 0x01, 0x01, 0x01, 0x04, 0x0B, 0x01, + 0x06, 0x1E, 0x08, 0x04, 0x03, 0x06, 0x03, 0x05, 0x02, 0x41, + 0x16, 0x43, 0x87, 0x86, 0x86, 0x43, 0xF8, 0xA0, 0x02, 0x04, + 0x02, 0x35, 0x6B, 0x35, 0x01, 0x03, 0x04, 0x03, 0x0C, 0x02, + 0x05, 0x09, 0x04, 0x11, 0x1C, 0x0D, 0x08, 0x16, 0x08, 0x11, + 0x21, 0x10, 0x02, 0xB4, 0x03, 0x35, 0x01, 0x11, 0x01, 0x01, + 0x01, 0x01, 0x1D, 0x04, 0x0B, 0x03, 0x08, 0x08, 0x20, 0x0B, + 0x0C, 0x27, 0x07, 0x10, 0x24, 0x0F, 0x02, 0x6A, 0x12, 0x20, + 0x40, 0x20, 0x07, 0x36, 0x2B, 0x10, 0x01, 0x0A, 0x02, 0x08, + 0x03, 0x03, 0x06, 0x04, 0x08, 0x04, 0x08, 0x11, 0x06, 0x04, + 0x0D, 0x0A, 0x41, 0x81, 0x41, 0x07, 0x0F, 0x06, 0x05, 0x09, + 0x0A, 0x0A, 0x2D, 0x08, 0x06, 0x2F, 0x02, 0x02, 0x06, 0x05, + 0x03, 0x0D, 0x06, 0x07, 0x03, 0x04, 0x03, 0x02, 0x05, 0x02, + 0x06, 0x01, 0x07, 0x03, 0x01, 0x01, 0x02, 0x0C, 0x02, 0x0A, + 0x03, 0x02, 0x01, 0x01, 0x02, 0x03, 0x09, 0x03, 0x07, 0x01, + 0x06, 0x09, 0x11, 0x0A, 0x04, 0x01, 0x07, 0x04, 0x08, 0x04, + 0x11, 0x20, 0x10, 0x21, 0x42, 0x21, 0x10, 0x20, 0x10, 0x09, + 0x12, 0x08, 0x11, 0x03, 0x02, 0x08, 0x04, 0x03, 0x08, 0x04, + 0x08, 0x05, 0x08, 0x10, 0x07, 0x41, 0x84, 0x40, 0x14, 0x10, + 0x0E, 0x01, 0x19, 0x0A, 0x0C, 0x0A, 0x04, 0x01, 0x01, 0x02, + 0x07, 0x07, 0x0F, 0x08, 0x08, 0x10, 0x07, 0x07, 0x16, 0x05, + 0x05, 0x14, 0x05, 0x03, 0x0A, 0x05, 0x02, 0x07, 0x1D, 0x10, + 0x20, 0x0E, 0x0D, 0x23, 0x0D, 0x0B, 0x0A, 0x0B, 0x09, 0x09, + 0x05, 0x05, 0x0D, 0x0A, 0x03, 0x08, 0x03, 0x04, 0x01, 0x03, + 0x01, 0x06, 0x05, 0x02, 0x01, 0x07, 0x0C, 0x0A, 0x11, 0x02, + 0x04, 0x01, 0x07, 0x05, 0x05, 0x25, 0x48, 0x1E, 0x02, 0x02, + 0x02, 0x0D, 0x03, 0x02, 0x0A, 0x01, 0x06, 0x05, 0x08, 0x07, + 0x2A, 0x0C, 0x0D, 0x27, 0x0C, 0x0D, 0x24, 0x0E, 0x12, 0x45, + 0x09, 0x06, 0x02, 0x07, 0x0D, 0x01, 0x06, 0x03, 0x04, 0x03, + 0x02, 0x05, 0x11, 0x06, 0x0D, 0x04, 0x05, 0x04, 0x10, 0x02, + 0x08, 0x05, 0x04, 0x02, 0x07, 0x02, 0x04, 0x04, 0x02, 0x0C, + 0x04, 0x20, 0x07, 0x03, 0x08, 0x03, 0x14, 0x0E, 0x05, 0x04, + 0x05, 0x0A, 0x02, 0x02, 0x07, 0x01, 0x02, 0x01, 0x06, 0x0A, + 0x0D, 0x02, 0x03, 0x01, 0x06, 0x01, 0x02, 0x03, 0x03, 0x03, + 0x05, 0x02, 0x01, 0x0B, 0x04, 0x05, 0x0B, 0x05, 0x02, 0x09, + 0x0A, 0x08, 0x01, 0x06, 0x07, 0x08, 0x09, 0x0B, 0x0C, 0x07, + 0x0D, 0x16, 0x05, 0x02, 0x0F, 0x22, 0x03, 0x03, 0x0B, 0x0B, + 0x01, 0x05, 0x04, 0x02, 0x0B, 0x04, 0x08, 0x10, 0x09, 0x08, + 0x11, 0x08, 0x0E, 0x04, 0x02, 0x04, 0x02, 0x0A, 0x02, 0x04, + 0x02, 0x0B, 0x03, 0x03, 0x0E, 0x0A, 0x05, 0x02, 0x07, 0x01, + 0x0B, 0x01, 0x04, 0x09, 0x04, 0x02, 0x04, 0x07, 0x09, 0x01, + 0x06, 0x08, 0x0C, 0x0B, 0x1E, 0x04, 0x49, 0x01, 0x02, 0x01, + 0x09, 0x19, 0x07, 0x08, 0x03, 0x08, 0x0D, 0x1B, 0x0D, 0x0D, + 0x0D, 0x0A, 0x07, 0x0B, 0x06, 0x0C, 0x18, 0x0D, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x53, 0x00, 0x58, 0x0A, 0x33, 0x03, 0x26, + 0x01, 0x80, 0x01, 0x8D, 0x00, 0x00, 0x01, 0x32, 0x36, 0x17, + 0x1E, 0x01, 0x33, 0x32, 0x14, 0x17, 0x16, 0x36, 0x33, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x15, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x34, 0x36, 0x37, 0x34, 0x16, 0x33, + 0x32, 0x06, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x17, 0x16, + 0x32, 0x33, 0x16, 0x32, 0x33, 0x3E, 0x01, 0x37, 0x32, 0x16, + 0x37, 0x36, 0x16, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x07, + 0x0E, 0x01, 0x23, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, + 0x01, 0x07, 0x06, 0x16, 0x33, 0x32, 0x36, 0x17, 0x16, 0x06, + 0x15, 0x14, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x26, 0x27, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x07, 0x14, 0x06, + 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x27, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x23, 0x1E, 0x01, 0x15, 0x14, 0x16, 0x27, 0x26, + 0x06, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x35, 0x2E, 0x01, + 0x35, 0x34, 0x36, 0x27, 0x26, 0x06, 0x17, 0x14, 0x16, 0x07, + 0x06, 0x16, 0x17, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x22, + 0x26, 0x27, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x17, 0x14, 0x16, 0x07, 0x0E, 0x01, 0x23, 0x06, 0x26, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x35, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x17, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x0E, + 0x01, 0x23, 0x22, 0x06, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x35, 0x3C, 0x01, 0x35, + 0x3C, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x16, 0x33, 0x3A, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x36, 0x33, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x36, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x3A, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x16, 0x06, 0x17, 0x3A, + 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x22, + 0x06, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x1E, 0x01, + 0x17, 0x01, 0x2A, 0x01, 0x07, 0x22, 0x06, 0x17, 0x1E, 0x01, + 0x33, 0x32, 0x36, 0x27, 0x05, 0xF3, 0x09, 0x15, 0x07, 0x03, + 0x05, 0x03, 0x04, 0x02, 0x05, 0x08, 0x04, 0x0A, 0x10, 0x08, + 0x09, 0x10, 0x09, 0x04, 0x17, 0x03, 0x05, 0x05, 0x01, 0x01, + 0x02, 0x03, 0x10, 0x0D, 0x20, 0x3F, 0x20, 0x16, 0x2B, 0x16, + 0x06, 0x1C, 0x05, 0x06, 0x01, 0x08, 0x08, 0x11, 0x09, 0x0E, + 0x1D, 0x0F, 0x07, 0x0F, 0x07, 0x0E, 0x06, 0x02, 0x02, 0x11, + 0x01, 0x02, 0x01, 0x18, 0x05, 0x03, 0x01, 0x02, 0x01, 0x02, + 0x17, 0x03, 0x06, 0x0C, 0x06, 0x42, 0x84, 0x43, 0x1C, 0x3A, + 0x1D, 0x07, 0x0F, 0x07, 0x09, 0x02, 0x02, 0x02, 0x03, 0x06, + 0x05, 0x11, 0x06, 0x3C, 0x78, 0x3C, 0x2A, 0x54, 0x29, 0x09, + 0x10, 0x08, 0x06, 0x01, 0x07, 0x07, 0x17, 0x06, 0x11, 0x01, + 0x15, 0x03, 0x08, 0x0B, 0x09, 0x21, 0x44, 0x22, 0x16, 0x2A, + 0x16, 0x03, 0x14, 0x02, 0x04, 0x0A, 0x08, 0x0C, 0x15, 0x09, + 0x07, 0x0C, 0x09, 0x01, 0x02, 0x01, 0x04, 0x10, 0x05, 0x08, + 0x05, 0x06, 0x0E, 0x07, 0x0C, 0x17, 0x0B, 0x2F, 0x5C, 0x2E, + 0x0B, 0x03, 0x01, 0x09, 0x20, 0x44, 0x20, 0x13, 0x25, 0x12, + 0x0C, 0x16, 0x01, 0x01, 0x01, 0x03, 0x07, 0x10, 0x01, 0x05, + 0x07, 0x06, 0x04, 0x01, 0x01, 0x03, 0x06, 0x23, 0x0B, 0x17, + 0x2A, 0x15, 0x06, 0x0E, 0x06, 0x04, 0x08, 0x03, 0x01, 0x06, + 0x01, 0x08, 0x02, 0x01, 0x11, 0x0A, 0x0E, 0x1E, 0x0D, 0x09, + 0x11, 0x08, 0x09, 0x16, 0x09, 0x11, 0x1D, 0x0F, 0x05, 0x0A, + 0x05, 0x02, 0x09, 0x01, 0x03, 0x0B, 0x04, 0x0E, 0x05, 0x3E, + 0x7D, 0x3E, 0x1F, 0x3E, 0x1E, 0x14, 0x28, 0x13, 0x16, 0x33, + 0x01, 0x05, 0x04, 0x03, 0x0C, 0x01, 0x01, 0x08, 0x04, 0x0C, + 0x1A, 0x0C, 0x2D, 0x59, 0x2D, 0x12, 0x25, 0x12, 0x08, 0x15, + 0x08, 0x10, 0x05, 0x03, 0x0C, 0x04, 0x15, 0x05, 0x05, 0x0C, + 0x06, 0x25, 0x4C, 0x25, 0x0D, 0x1D, 0x0B, 0x0E, 0x17, 0x12, + 0x08, 0x13, 0x08, 0x3F, 0x7B, 0x3A, 0x18, 0x31, 0x1A, 0x19, + 0x32, 0x18, 0x11, 0x20, 0x10, 0x01, 0x11, 0x06, 0x0E, 0x26, + 0x10, 0x0F, 0x1D, 0x0F, 0x0A, 0x02, 0x04, 0x12, 0x23, 0x12, + 0x13, 0x25, 0x13, 0x06, 0x03, 0x01, 0x08, 0x11, 0x08, 0x0A, + 0x14, 0x0A, 0x01, 0x06, 0x01, 0x02, 0x05, 0x05, 0x10, 0x1E, + 0x0F, 0x1F, 0x3B, 0x1E, 0x0F, 0x1F, 0x0F, 0x10, 0x22, 0x0C, + 0x02, 0x10, 0x03, 0x08, 0x0E, 0x08, 0x12, 0x23, 0x12, 0x08, + 0x10, 0x08, 0x05, 0x06, 0x03, 0x05, 0x03, 0x07, 0x07, 0x16, + 0x07, 0x06, 0x06, 0x03, 0x02, 0x0E, 0x01, 0x0D, 0x17, 0x09, + 0xFE, 0xC8, 0x0A, 0x13, 0x0A, 0x0D, 0x18, 0x04, 0x04, 0x21, + 0x0E, 0x14, 0x05, 0x04, 0x03, 0x11, 0x01, 0x08, 0x02, 0x01, + 0x03, 0x01, 0x01, 0x01, 0x01, 0x08, 0x05, 0x04, 0x01, 0x03, + 0x01, 0x08, 0x03, 0x05, 0x19, 0x06, 0x09, 0x12, 0x09, 0x09, + 0x25, 0x01, 0x03, 0x03, 0x03, 0x0C, 0x01, 0x02, 0x03, 0x02, + 0x03, 0x07, 0x03, 0x02, 0x02, 0x01, 0x02, 0x0E, 0x0C, 0x0F, + 0x17, 0x0F, 0x08, 0x0F, 0x08, 0x04, 0x01, 0x38, 0x04, 0x09, + 0x13, 0x09, 0x03, 0x0D, 0x02, 0x04, 0x01, 0x01, 0x01, 0x01, + 0x02, 0x04, 0x01, 0x01, 0x11, 0x08, 0x08, 0x0D, 0x06, 0x04, + 0x02, 0x03, 0x03, 0x02, 0x01, 0x0D, 0x03, 0x03, 0x08, 0x25, + 0x0E, 0x03, 0x01, 0x02, 0x04, 0x01, 0x05, 0x01, 0x01, 0x04, + 0x01, 0x01, 0x02, 0x07, 0x10, 0x04, 0x06, 0x09, 0x08, 0x07, + 0x05, 0x04, 0x0A, 0x15, 0x0A, 0x0D, 0x14, 0x03, 0x01, 0x05, + 0x01, 0x01, 0x29, 0x4E, 0x29, 0x06, 0x77, 0x02, 0x04, 0x03, + 0x03, 0x0F, 0x48, 0x8F, 0x47, 0x05, 0x1A, 0x02, 0x05, 0x0A, + 0x08, 0x05, 0x12, 0x03, 0x02, 0x11, 0x06, 0x06, 0x14, 0x05, + 0x0A, 0x0F, 0x05, 0x0A, 0x12, 0x23, 0x11, 0x0A, 0x13, 0x0A, + 0x04, 0x0B, 0x04, 0x06, 0x08, 0x06, 0x09, 0x14, 0x01, 0x0A, + 0x04, 0x03, 0x07, 0x03, 0x04, 0x0B, 0x02, 0x18, 0x36, 0x19, + 0x08, 0x11, 0x08, 0x05, 0x0D, 0x05, 0x0B, 0x14, 0x05, 0x03, + 0x08, 0x01, 0x04, 0x09, 0x01, 0x03, 0x02, 0x04, 0x02, 0x02, + 0x12, 0x1B, 0x09, 0x11, 0x08, 0x05, 0x0E, 0x07, 0x04, 0x02, + 0x02, 0x02, 0x04, 0x02, 0x01, 0x02, 0x01, 0x02, 0x03, 0x08, + 0x24, 0x10, 0x12, 0x24, 0x12, 0x2A, 0x54, 0x2A, 0x0E, 0x07, + 0x09, 0x02, 0x03, 0x01, 0x05, 0x0B, 0x05, 0x02, 0x03, 0x08, + 0x0B, 0x1B, 0x05, 0x02, 0x02, 0x02, 0x22, 0x19, 0x0A, 0x12, + 0x05, 0x04, 0x03, 0x04, 0x02, 0x03, 0x32, 0x04, 0x0D, 0x05, + 0x04, 0x03, 0x08, 0x05, 0x04, 0x25, 0x0C, 0x02, 0x0A, 0x01, + 0x01, 0x01, 0x02, 0x02, 0x01, 0x03, 0x01, 0x02, 0x02, 0x0C, + 0x03, 0x18, 0x02, 0x05, 0x09, 0x04, 0x07, 0x07, 0x03, 0x02, + 0x03, 0x03, 0x01, 0x03, 0x03, 0x05, 0x01, 0x03, 0x03, 0x07, + 0x13, 0x09, 0x07, 0x14, 0x06, 0x01, 0x0B, 0x09, 0xFE, 0x6E, + 0x01, 0x01, 0x14, 0x13, 0x03, 0x1E, 0x0E, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x56, 0x00, 0x23, 0x04, 0xCB, 0x03, 0x5B, + 0x00, 0x0D, 0x00, 0x8D, 0x00, 0x00, 0x01, 0x23, 0x22, 0x06, + 0x1D, 0x01, 0x14, 0x16, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, + 0x25, 0x17, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x23, 0x22, 0x26, 0x15, 0x14, 0x16, 0x27, 0x26, 0x06, 0x23, + 0x2A, 0x01, 0x07, 0x2E, 0x01, 0x35, 0x0E, 0x01, 0x2B, 0x01, + 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x14, + 0x26, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x26, 0x36, 0x35, 0x34, + 0x26, 0x37, 0x3E, 0x01, 0x37, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x1F, 0x01, 0x36, 0x16, 0x33, 0x32, 0x36, + 0x17, 0x2E, 0x01, 0x37, 0x34, 0x36, 0x37, 0x17, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x32, 0x36, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x17, 0x1E, + 0x01, 0x15, 0x1E, 0x01, 0x17, 0x36, 0x16, 0x17, 0x02, 0x59, + 0x54, 0x08, 0x08, 0x08, 0x08, 0x15, 0x2F, 0x11, 0x07, 0x0F, + 0x02, 0x53, 0x08, 0x03, 0x0F, 0x06, 0x05, 0x35, 0x13, 0x0E, + 0x24, 0x10, 0x0C, 0x8A, 0x02, 0x13, 0x1D, 0x3C, 0x1D, 0x1E, + 0x39, 0x1D, 0x05, 0x05, 0x08, 0x12, 0x09, 0x75, 0x11, 0x0C, + 0x06, 0x0E, 0x10, 0x07, 0x0D, 0x0A, 0x07, 0x1E, 0x09, 0x08, + 0x0F, 0x08, 0x17, 0x2E, 0x17, 0x12, 0x24, 0x12, 0x15, 0x34, + 0x07, 0x09, 0x13, 0x07, 0x07, 0x0D, 0x07, 0x0C, 0x1E, 0x0B, + 0x02, 0x2E, 0x0D, 0x0B, 0x04, 0x02, 0x06, 0x06, 0x22, 0x0E, + 0x0C, 0x2F, 0x08, 0x0E, 0x20, 0x10, 0x21, 0x42, 0x22, 0x06, + 0x22, 0x47, 0x24, 0x21, 0x42, 0x20, 0x01, 0x01, 0x01, 0x0A, + 0x0A, 0x14, 0x04, 0x0D, 0x04, 0x18, 0x1C, 0x16, 0x08, 0x15, + 0x08, 0x08, 0x10, 0x09, 0x15, 0x2C, 0x15, 0x0C, 0x13, 0x0A, + 0x09, 0x17, 0x08, 0x04, 0x03, 0x15, 0x22, 0x12, 0x0D, 0x10, + 0x0D, 0x02, 0x3E, 0x08, 0x08, 0x30, 0x08, 0x09, 0x01, 0x0F, + 0x07, 0x3C, 0xB8, 0x04, 0x2C, 0x57, 0x2C, 0x16, 0x0F, 0x05, + 0x04, 0x0D, 0x02, 0x0E, 0x0B, 0x41, 0x02, 0x05, 0x02, 0x06, + 0x04, 0x0B, 0x06, 0x0F, 0x0E, 0x28, 0x0D, 0x1C, 0x3B, 0x1E, + 0x35, 0x5F, 0x36, 0x10, 0x07, 0x01, 0x01, 0x02, 0x01, 0x05, + 0x0A, 0x05, 0x03, 0x0A, 0x05, 0x05, 0x0E, 0x19, 0x1C, 0x45, + 0x1C, 0x1C, 0x37, 0x1C, 0x32, 0x62, 0x31, 0x1B, 0x1E, 0x12, + 0x0F, 0x34, 0x11, 0x14, 0x30, 0x13, 0x12, 0x1B, 0x0B, 0x02, + 0x02, 0x0A, 0x06, 0x06, 0x01, 0x04, 0x01, 0x05, 0x0E, 0x09, + 0x02, 0x01, 0x08, 0x03, 0x05, 0x04, 0x04, 0x06, 0x02, 0x04, + 0x05, 0x1A, 0x01, 0x02, 0x06, 0x08, 0x03, 0x08, 0x01, 0x07, + 0x01, 0x01, 0x0C, 0x04, 0x03, 0x09, 0x07, 0x03, 0x01, 0x01, + 0x02, 0x06, 0x03, 0x06, 0x0C, 0x09, 0x03, 0x02, 0x05, 0x00, + 0x00, 0x01, 0x00, 0x54, 0x00, 0x5A, 0x01, 0x80, 0x03, 0x26, + 0x00, 0x44, 0x00, 0x00, 0x13, 0x35, 0x2E, 0x01, 0x35, 0x34, + 0x36, 0x3F, 0x01, 0x33, 0x17, 0x11, 0x07, 0x27, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x3F, 0x01, 0x11, 0x27, 0x15, 0x07, 0x15, + 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x33, 0x15, 0x17, 0x15, 0x14, 0x06, 0x2B, 0x01, 0x22, 0x26, + 0x3D, 0x01, 0x37, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, + 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x27, 0x35, 0x34, 0x36, + 0x3B, 0x01, 0x37, 0x95, 0x0D, 0x0E, 0x05, 0x05, 0x17, 0x7C, + 0x69, 0x35, 0x11, 0x03, 0x03, 0x05, 0x04, 0x0E, 0x09, 0x10, + 0x2E, 0x1B, 0x0B, 0x0B, 0x0B, 0x0B, 0x0B, 0x0B, 0x1B, 0x07, + 0x08, 0xC9, 0x08, 0x08, 0x1A, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, + 0x0C, 0x1A, 0x08, 0x08, 0x0F, 0x22, 0x02, 0xC9, 0x2D, 0x02, + 0x0D, 0x0B, 0x07, 0x0A, 0x02, 0x03, 0xA8, 0xFE, 0x9D, 0x1A, + 0x03, 0x05, 0x0A, 0x04, 0x04, 0x09, 0x05, 0x08, 0x01, 0x3D, + 0x1A, 0x35, 0x19, 0x35, 0x36, 0x38, 0x36, 0x39, 0x36, 0x34, + 0x2E, 0x27, 0x08, 0x07, 0x07, 0x08, 0x27, 0x2E, 0x34, 0x36, + 0x39, 0x36, 0x38, 0x36, 0x35, 0x19, 0x49, 0x07, 0x08, 0x1E, + 0x00, 0x01, 0x00, 0x58, 0x00, 0x58, 0x02, 0x73, 0x03, 0x26, + 0x00, 0xA6, 0x00, 0x00, 0x01, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x06, 0x16, 0x15, + 0x14, 0x16, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x26, + 0x36, 0x37, 0x36, 0x26, 0x35, 0x34, 0x36, 0x27, 0x34, 0x26, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x27, 0x22, + 0x26, 0x07, 0x06, 0x16, 0x15, 0x14, 0x06, 0x17, 0x1E, 0x01, + 0x33, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x37, 0x36, + 0x34, 0x23, 0x22, 0x36, 0x35, 0x22, 0x06, 0x27, 0x2E, 0x01, + 0x35, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, + 0x32, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x35, 0x36, + 0x26, 0x35, 0x34, 0x32, 0x33, 0x1E, 0x01, 0x15, 0x14, 0x06, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x31, 0x01, 0xFD, 0x03, 0x15, 0x07, 0x0B, 0x11, 0x08, 0x07, + 0x0F, 0x09, 0x09, 0x07, 0x01, 0x03, 0x06, 0x02, 0x02, 0x01, + 0x06, 0x07, 0x04, 0x0F, 0x01, 0x02, 0x0D, 0x01, 0x03, 0x03, + 0x01, 0x01, 0x07, 0x0B, 0x02, 0x06, 0x05, 0x04, 0x01, 0x05, + 0x0C, 0x0E, 0x0A, 0x04, 0x09, 0x05, 0x04, 0x02, 0x04, 0x09, + 0x19, 0x09, 0x08, 0x1B, 0x06, 0x04, 0x02, 0x02, 0x08, 0x06, + 0x0E, 0x06, 0x0B, 0x15, 0x0A, 0x13, 0x1B, 0x0D, 0x10, 0x0B, + 0x07, 0x08, 0x07, 0x03, 0x04, 0x21, 0x17, 0x1D, 0x59, 0x2A, + 0x14, 0x2C, 0x15, 0x12, 0x24, 0x12, 0x0C, 0x12, 0x0A, 0x07, + 0x09, 0x05, 0x07, 0x0C, 0x05, 0x15, 0x14, 0x01, 0x01, 0x12, + 0x14, 0x0A, 0x13, 0x10, 0x10, 0x21, 0x10, 0x0A, 0x1E, 0x02, + 0x02, 0x0A, 0x08, 0x03, 0x0A, 0x16, 0x0A, 0x04, 0x04, 0x01, + 0x03, 0x02, 0x02, 0x01, 0x02, 0x03, 0x0C, 0x07, 0x09, 0x09, + 0x09, 0x19, 0x33, 0x1A, 0x03, 0x24, 0x01, 0x01, 0x10, 0x03, + 0x08, 0x07, 0x04, 0x03, 0x02, 0x06, 0x02, 0x06, 0x04, 0x04, + 0x0A, 0x0A, 0x0E, 0x02, 0x96, 0x11, 0x1E, 0x0F, 0x13, 0x2A, + 0x14, 0x10, 0x20, 0x0E, 0x0F, 0x1D, 0x10, 0x2F, 0x5D, 0x2E, + 0x16, 0x2C, 0x16, 0x07, 0x09, 0x02, 0x01, 0x01, 0x05, 0x08, + 0x06, 0x05, 0x08, 0x11, 0x07, 0x1A, 0x32, 0x19, 0x2C, 0x55, + 0x2A, 0x07, 0x11, 0x04, 0x04, 0x0D, 0x03, 0x0B, 0x1D, 0x0F, + 0x06, 0x0C, 0x06, 0x04, 0x0B, 0x03, 0x05, 0x02, 0x01, 0x02, + 0x06, 0x03, 0x15, 0x05, 0x07, 0x16, 0x04, 0x02, 0x01, 0x01, + 0x05, 0x02, 0x05, 0x10, 0x0E, 0x0F, 0x26, 0x14, 0x18, 0x2B, + 0x1A, 0x24, 0x49, 0x1C, 0x24, 0x19, 0x0A, 0x04, 0x04, 0x06, + 0x06, 0x0B, 0x06, 0x04, 0x0F, 0x06, 0x04, 0x0B, 0x05, 0x06, + 0x09, 0x08, 0x25, 0x4E, 0x2A, 0x20, 0x40, 0x19, 0x0D, 0x12, + 0x06, 0x06, 0x09, 0x06, 0x03, 0x05, 0x0D, 0x07, 0x29, 0x83, + 0x0A, 0x01, 0x04, 0x02, 0x06, 0x05, 0x03, 0x05, 0x03, 0x03, + 0x03, 0x04, 0x07, 0x05, 0x09, 0x01, 0x02, 0x05, 0x0B, 0x05, + 0x05, 0x01, 0x0A, 0x08, 0x03, 0x05, 0x03, 0x03, 0x04, 0x02, + 0x06, 0x12, 0x07, 0x10, 0x2B, 0x0F, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x54, 0x00, 0x58, 0x01, 0xA3, 0x03, 0x26, 0x00, 0x86, + 0x00, 0xA9, 0x00, 0xCB, 0x00, 0x00, 0x01, 0x3C, 0x01, 0x35, + 0x34, 0x36, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x34, 0x35, 0x34, + 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x34, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x36, 0x06, 0x27, + 0x26, 0x36, 0x27, 0x26, 0x22, 0x23, 0x0E, 0x01, 0x07, 0x36, + 0x06, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, + 0x33, 0x3A, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x15, + 0x14, 0x06, 0x07, 0x0E, 0x01, 0x17, 0x1C, 0x01, 0x15, 0x1C, + 0x03, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x17, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x35, 0x3C, 0x01, 0x35, + 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x15, 0x1C, 0x01, + 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x15, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x3E, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x07, + 0x1C, 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x22, 0x36, 0x35, 0x3C, 0x01, + 0x35, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x30, 0x15, 0x14, 0x15, 0x11, 0x1C, 0x01, 0x15, 0x14, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x36, 0x35, 0x3C, 0x01, 0x35, 0x1E, 0x01, 0x17, 0x16, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x1C, 0x01, 0x15, 0x01, 0xA2, + 0x01, 0x03, 0x02, 0x07, 0x03, 0x03, 0x07, 0x01, 0x02, 0x04, + 0x03, 0x07, 0x01, 0x08, 0x03, 0x04, 0x03, 0x06, 0x01, 0x04, + 0x08, 0x04, 0x01, 0x06, 0x02, 0x01, 0x02, 0x01, 0x01, 0x09, + 0x01, 0x05, 0x0B, 0x04, 0x02, 0x35, 0x06, 0x0C, 0x1A, 0x0C, + 0x05, 0x0D, 0x04, 0x09, 0x0B, 0x03, 0x02, 0x18, 0x06, 0x17, + 0x05, 0x09, 0x32, 0x0A, 0x21, 0x07, 0x29, 0x50, 0x2A, 0x0E, + 0x1F, 0x0B, 0x04, 0x02, 0x06, 0x06, 0x04, 0x04, 0x06, 0x03, + 0x02, 0x09, 0x01, 0x05, 0x05, 0x06, 0x01, 0x07, 0x04, 0x02, + 0x02, 0x07, 0x01, 0x45, 0x04, 0x0D, 0x11, 0x23, 0x12, 0x07, + 0x12, 0x08, 0x1D, 0x3B, 0x1E, 0x06, 0x01, 0x1F, 0x3E, 0x1F, + 0x0D, 0x1F, 0x0D, 0x10, 0x1E, 0x10, 0x04, 0x0D, 0x11, 0x23, + 0x12, 0x07, 0x12, 0x08, 0x1D, 0x3B, 0x1E, 0x06, 0x01, 0x1F, + 0x3E, 0x1F, 0x0D, 0x1F, 0x0D, 0x10, 0x1E, 0x10, 0x01, 0xA4, + 0x1C, 0x37, 0x1B, 0x0E, 0x1E, 0x0C, 0x09, 0x0A, 0x07, 0x04, + 0x08, 0x06, 0x02, 0x08, 0x01, 0x05, 0x0D, 0x04, 0x07, 0x19, + 0x08, 0x03, 0x10, 0x04, 0x03, 0x0D, 0x03, 0x0B, 0x14, 0x0A, + 0x06, 0x02, 0x04, 0x02, 0x08, 0x01, 0x01, 0x02, 0x11, 0x07, + 0x09, 0x03, 0x02, 0x02, 0x03, 0x29, 0x01, 0x0A, 0x14, 0x0A, + 0x07, 0x0B, 0x09, 0x04, 0x03, 0x01, 0x01, 0x05, 0x15, 0x17, + 0x2D, 0x16, 0x2F, 0x5E, 0x5E, 0x5E, 0x2F, 0x0B, 0x17, 0x0B, + 0x07, 0x0E, 0x02, 0x11, 0x03, 0x09, 0x02, 0x0B, 0x08, 0x03, + 0x01, 0x04, 0x0B, 0x15, 0x0B, 0x2C, 0x59, 0x2C, 0x49, 0x91, + 0x49, 0x04, 0x0C, 0x04, 0x05, 0x0B, 0x05, 0x03, 0x0B, 0x03, + 0x0B, 0x23, 0x0C, 0x37, 0x6E, 0x37, 0x1B, 0x37, 0x1B, 0x04, + 0x05, 0x07, 0x07, 0x02, 0x01, 0x01, 0x05, 0x11, 0x0A, 0x37, + 0x6D, 0x36, 0x99, 0x05, 0x0B, 0x06, 0x0D, 0x02, 0x02, 0x02, + 0x04, 0x03, 0x01, 0x03, 0x01, 0x04, 0x07, 0x04, 0x07, 0x06, + 0x07, 0x0D, 0x06, 0x03, 0x06, 0x03, 0x02, 0x06, 0x02, 0x01, + 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x31, 0x05, 0x0B, 0x06, + 0x0C, 0x03, 0x02, 0x02, 0x04, 0x02, 0x01, 0x04, 0x01, 0x04, + 0x07, 0x04, 0x01, 0x06, 0x06, 0x07, 0x0D, 0x07, 0x04, 0x06, + 0x03, 0x01, 0x06, 0x01, 0x02, 0x03, 0x02, 0x01, 0x02, 0x01, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x57, 0x00, 0x3E, 0x02, 0x61, + 0x03, 0x40, 0x00, 0x4D, 0x00, 0x74, 0x00, 0x00, 0x01, 0x06, + 0x16, 0x17, 0x16, 0x06, 0x0F, 0x01, 0x0E, 0x01, 0x07, 0x3F, + 0x02, 0x2F, 0x01, 0x2E, 0x01, 0x2F, 0x01, 0x0F, 0x01, 0x33, + 0x07, 0x27, 0x2E, 0x01, 0x3F, 0x01, 0x36, 0x34, 0x27, 0x17, + 0x1E, 0x01, 0x1F, 0x02, 0x37, 0x36, 0x26, 0x2F, 0x01, 0x2E, + 0x01, 0x37, 0x34, 0x36, 0x37, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x1F, 0x02, 0x1E, 0x01, 0x37, 0x36, 0x26, + 0x27, 0x26, 0x36, 0x37, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x1F, + 0x01, 0x0F, 0x02, 0x37, 0x2F, 0x01, 0x2E, 0x01, 0x2F, 0x01, + 0x07, 0x33, 0x15, 0x0F, 0x02, 0x0E, 0x01, 0x07, 0x03, 0x06, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x3F, + 0x01, 0x13, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x3F, 0x02, 0x02, + 0x4E, 0x02, 0x03, 0x04, 0x03, 0x02, 0x05, 0x22, 0x06, 0x11, + 0x0A, 0x09, 0x05, 0x24, 0x07, 0x19, 0x07, 0x0E, 0x06, 0x16, + 0x22, 0x0A, 0x04, 0x17, 0x0D, 0x05, 0x01, 0x03, 0x0C, 0x04, + 0x04, 0x0C, 0x06, 0x0A, 0x03, 0x04, 0x01, 0x0F, 0x01, 0x07, + 0x07, 0x17, 0x03, 0x03, 0x01, 0x05, 0x05, 0x01, 0x09, 0x09, + 0x04, 0x17, 0x12, 0x07, 0x09, 0x02, 0x08, 0x0C, 0x03, 0x06, + 0x02, 0x02, 0x04, 0x06, 0x07, 0x02, 0x09, 0x01, 0x0D, 0x0B, + 0x0C, 0x0E, 0x02, 0x01, 0x08, 0x0B, 0x39, 0x1F, 0x05, 0x16, + 0x07, 0x0C, 0x06, 0x0F, 0x1F, 0x01, 0x53, 0x13, 0x1F, 0x18, + 0x1F, 0x08, 0xB6, 0x02, 0x06, 0x07, 0x09, 0x18, 0x0F, 0x0E, + 0x1E, 0x10, 0x11, 0x0B, 0x0A, 0xB6, 0x08, 0x0B, 0x03, 0x03, + 0x05, 0x02, 0x44, 0x05, 0x02, 0x86, 0x04, 0x09, 0x05, 0x05, + 0x0F, 0x08, 0x28, 0x07, 0x09, 0x02, 0x10, 0x01, 0x32, 0x12, + 0x18, 0x05, 0x07, 0x02, 0x02, 0x2F, 0x0E, 0x1C, 0x1B, 0x0E, + 0x17, 0x09, 0x17, 0x07, 0x14, 0x0D, 0x05, 0x03, 0x0C, 0x08, + 0x1C, 0x0B, 0x22, 0x05, 0x11, 0x0B, 0x1D, 0x05, 0x16, 0x11, + 0x12, 0x16, 0x05, 0x0B, 0x13, 0x09, 0x04, 0x09, 0x06, 0x02, + 0x09, 0x06, 0x16, 0x10, 0x05, 0x02, 0x02, 0x02, 0x0C, 0x0A, + 0x0A, 0x17, 0x0D, 0x05, 0x10, 0x0B, 0x0B, 0x15, 0x0B, 0x15, + 0x19, 0x11, 0x4F, 0x2B, 0x0E, 0x13, 0x05, 0x07, 0x02, 0x01, + 0x2B, 0x06, 0x65, 0x0C, 0x0F, 0x0B, 0x16, 0x0C, 0xFF, 0x00, + 0x06, 0x12, 0x0C, 0x0E, 0x18, 0x0A, 0x0B, 0x0E, 0x05, 0x04, + 0x02, 0x03, 0x01, 0x00, 0x0C, 0x25, 0x19, 0x1B, 0x1C, 0x03, + 0x6F, 0x01, 0x00, 0x04, 0x00, 0x61, 0x00, 0x5A, 0x03, 0x1D, + 0x03, 0x8C, 0x00, 0x12, 0x00, 0x25, 0x00, 0x38, 0x00, 0x7D, + 0x00, 0x00, 0x13, 0x17, 0x07, 0x27, 0x15, 0x23, 0x35, 0x07, + 0x27, 0x37, 0x27, 0x37, 0x17, 0x35, 0x33, 0x15, 0x37, 0x17, + 0x07, 0x13, 0x37, 0x27, 0x07, 0x35, 0x23, 0x15, 0x27, 0x07, + 0x17, 0x07, 0x17, 0x37, 0x15, 0x33, 0x35, 0x17, 0x37, 0x27, + 0x05, 0x37, 0x27, 0x07, 0x35, 0x23, 0x15, 0x27, 0x07, 0x17, + 0x07, 0x17, 0x37, 0x15, 0x33, 0x35, 0x17, 0x37, 0x27, 0x05, + 0x07, 0x23, 0x22, 0x06, 0x1D, 0x01, 0x17, 0x15, 0x33, 0x15, + 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x07, 0x15, 0x14, 0x16, 0x3B, 0x01, 0x32, 0x36, 0x3D, 0x01, + 0x27, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, + 0x23, 0x35, 0x33, 0x35, 0x37, 0x35, 0x17, 0x11, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x1F, 0x01, 0x37, 0x11, 0x27, 0x23, + 0x07, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x15, 0xDA, 0x2E, + 0x13, 0x2D, 0x25, 0x30, 0x12, 0x2F, 0x2F, 0x14, 0x2E, 0x25, + 0x2D, 0x12, 0x2D, 0x4E, 0x37, 0x16, 0x35, 0x2D, 0x38, 0x16, + 0x38, 0x38, 0x16, 0x38, 0x2D, 0x35, 0x16, 0x37, 0x01, 0xC7, + 0x2D, 0x12, 0x2D, 0x25, 0x2E, 0x13, 0x2D, 0x2D, 0x12, 0x2F, + 0x25, 0x2D, 0x13, 0x2E, 0xFE, 0xA9, 0x21, 0x10, 0x08, 0x08, + 0x1A, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x1A, 0x08, 0x08, + 0xC9, 0x08, 0x07, 0x1B, 0x0B, 0x0B, 0x0B, 0x0B, 0x0B, 0x0B, + 0x1B, 0x2E, 0x10, 0x09, 0x0E, 0x04, 0x05, 0x03, 0x03, 0x11, + 0x35, 0x69, 0x7C, 0x17, 0x05, 0x05, 0x0E, 0x0D, 0x02, 0x00, + 0x1A, 0x20, 0x1A, 0x34, 0x35, 0x1B, 0x20, 0x1A, 0x1B, 0x21, + 0x1B, 0x36, 0x35, 0x1A, 0x21, 0x1B, 0x01, 0x27, 0x20, 0x26, + 0x1F, 0x3E, 0x40, 0x21, 0x26, 0x20, 0x20, 0x26, 0x20, 0x40, + 0x3E, 0x1E, 0x26, 0x20, 0x2B, 0x1B, 0x21, 0x1A, 0x35, 0x36, + 0x1B, 0x21, 0x1B, 0x1A, 0x20, 0x1B, 0x35, 0x34, 0x1A, 0x20, + 0x1A, 0x33, 0x1E, 0x08, 0x07, 0x49, 0x19, 0x35, 0x36, 0x38, + 0x36, 0x39, 0x36, 0x34, 0x2E, 0x27, 0x07, 0x08, 0x08, 0x07, + 0x27, 0x2E, 0x34, 0x36, 0x39, 0x36, 0x38, 0x36, 0x35, 0x19, + 0x35, 0x1A, 0xFE, 0xC3, 0x08, 0x05, 0x09, 0x04, 0x04, 0x0A, + 0x05, 0x03, 0x1A, 0x01, 0x63, 0xA8, 0x03, 0x02, 0x0A, 0x07, + 0x0C, 0x0C, 0x02, 0x2D, 0x00, 0x00, 0x00, 0x03, 0x00, 0x51, + 0x00, 0x58, 0x01, 0xA1, 0x03, 0x26, 0x00, 0x86, 0x00, 0xA2, + 0x00, 0xC4, 0x00, 0x00, 0x01, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x14, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x14, 0x16, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x06, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, + 0x07, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x35, + 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x1C, 0x01, + 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x26, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x35, 0x3C, + 0x01, 0x35, 0x3C, 0x03, 0x35, 0x3C, 0x01, 0x35, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, 0x35, 0x3C, 0x01, 0x35, + 0x34, 0x22, 0x23, 0x22, 0x36, 0x37, 0x36, 0x16, 0x33, 0x3A, + 0x01, 0x33, 0x32, 0x36, 0x07, 0x3E, 0x01, 0x37, 0x3A, 0x01, + 0x17, 0x16, 0x06, 0x17, 0x16, 0x36, 0x15, 0x07, 0x0E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x26, 0x36, 0x37, 0x06, 0x16, 0x17, + 0x1E, 0x01, 0x07, 0x16, 0x36, 0x37, 0x36, 0x26, 0x27, 0x2E, + 0x01, 0x37, 0x0E, 0x01, 0x07, 0x13, 0x34, 0x3D, 0x01, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x1C, 0x01, + 0x15, 0x1C, 0x01, 0x33, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x01, + 0x4D, 0x03, 0x09, 0x03, 0x02, 0x05, 0x04, 0x03, 0x04, 0x07, + 0x01, 0x08, 0x03, 0x03, 0x03, 0x07, 0x01, 0x02, 0x03, 0x08, + 0x02, 0x03, 0x01, 0x01, 0x07, 0x02, 0x03, 0x04, 0x06, 0x01, + 0x06, 0x04, 0x04, 0x01, 0x0A, 0x02, 0x03, 0x05, 0x04, 0x04, + 0x07, 0x05, 0x03, 0x03, 0x0C, 0x1F, 0x0E, 0x2A, 0x4F, 0x2A, + 0x06, 0x21, 0x0B, 0x32, 0x0A, 0x05, 0x16, 0x07, 0x19, 0x02, + 0x03, 0x0B, 0x09, 0x05, 0x0D, 0x04, 0x0D, 0x19, 0x0D, 0x05, + 0x35, 0x01, 0x03, 0x0B, 0x06, 0x01, 0x08, 0x01, 0x02, 0x03, + 0x01, 0x02, 0x06, 0x8A, 0x20, 0x1E, 0x01, 0x01, 0x22, 0x2F, + 0x22, 0x03, 0x1E, 0x06, 0x0E, 0x0C, 0x06, 0x25, 0x0E, 0x15, + 0x21, 0x03, 0x04, 0x0C, 0x0E, 0x17, 0x36, 0x21, 0x0F, 0x1E, + 0x0F, 0x97, 0x0F, 0x1F, 0x0F, 0x0E, 0x1E, 0x0E, 0x1F, 0x3E, + 0x1F, 0x06, 0x1D, 0x3B, 0x1E, 0x08, 0x11, 0x08, 0x11, 0x23, + 0x12, 0x0C, 0x04, 0x03, 0x12, 0x0A, 0x14, 0x0B, 0x03, 0x0D, + 0x03, 0x04, 0x10, 0x03, 0x08, 0x19, 0x07, 0x04, 0x0D, 0x05, + 0x01, 0x08, 0x02, 0x06, 0x08, 0x04, 0x07, 0x0A, 0x09, 0x0C, + 0x1E, 0x0E, 0x1B, 0x37, 0x1C, 0x36, 0x6D, 0x37, 0x0A, 0x11, + 0x05, 0x01, 0x01, 0x02, 0x07, 0x07, 0x05, 0x04, 0x1B, 0x37, + 0x1B, 0x37, 0x6E, 0x37, 0x0C, 0x23, 0x0B, 0x03, 0x0B, 0x03, + 0x05, 0x0B, 0x05, 0x04, 0x0C, 0x04, 0x49, 0x91, 0x49, 0x2C, + 0x59, 0x2C, 0x0B, 0x15, 0x0B, 0x04, 0x01, 0x03, 0x08, 0x0B, + 0x02, 0x09, 0x03, 0x11, 0x02, 0x0D, 0x08, 0x0B, 0x17, 0x0B, + 0x2F, 0x5E, 0x5E, 0x5E, 0x2F, 0x16, 0x2D, 0x17, 0x15, 0x05, + 0x01, 0x01, 0x03, 0x04, 0x09, 0x0B, 0x07, 0x0A, 0x14, 0x0A, + 0x01, 0x29, 0x03, 0x02, 0x02, 0x03, 0x09, 0x07, 0x11, 0x02, + 0x01, 0x01, 0x08, 0x02, 0x04, 0x02, 0x06, 0xD4, 0x1C, 0x55, + 0x29, 0x28, 0x4C, 0x03, 0x15, 0x55, 0x16, 0x11, 0x20, 0x0D, + 0x06, 0x2F, 0x09, 0x08, 0x37, 0x0E, 0x19, 0x2F, 0x14, 0x22, + 0x5A, 0x28, 0x0C, 0x18, 0x0C, 0xFE, 0xCD, 0x01, 0x01, 0x01, + 0x01, 0x04, 0x01, 0x02, 0x06, 0x02, 0x03, 0x06, 0x03, 0x06, + 0x0D, 0x07, 0x06, 0x07, 0x04, 0x07, 0x04, 0x01, 0x03, 0x01, + 0x03, 0x04, 0x02, 0x02, 0x02, 0x0D, 0x06, 0x0B, 0x05, 0x00, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x5E, 0x00, 0xC0, 0x03, 0x8F, + 0x02, 0xC0, 0x00, 0x10, 0x00, 0x2D, 0x00, 0x3F, 0x00, 0x51, + 0x00, 0x61, 0x00, 0x70, 0x00, 0x7D, 0x00, 0x8C, 0x00, 0x9B, + 0x00, 0xA7, 0x00, 0xB9, 0x00, 0xC1, 0x00, 0xCF, 0x00, 0xDD, + 0x00, 0xE9, 0x01, 0x0C, 0x00, 0x00, 0x01, 0x34, 0x26, 0x23, + 0x21, 0x22, 0x06, 0x0F, 0x01, 0x15, 0x1F, 0x01, 0x21, 0x32, + 0x36, 0x3D, 0x01, 0x37, 0x1E, 0x01, 0x15, 0x11, 0x14, 0x06, + 0x07, 0x0E, 0x01, 0x23, 0x21, 0x22, 0x26, 0x27, 0x2E, 0x01, + 0x35, 0x11, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x21, 0x32, + 0x16, 0x17, 0x07, 0x27, 0x37, 0x17, 0x35, 0x33, 0x07, 0x37, + 0x17, 0x07, 0x17, 0x07, 0x27, 0x17, 0x23, 0x35, 0x07, 0x2F, + 0x01, 0x07, 0x17, 0x07, 0x27, 0x17, 0x23, 0x35, 0x07, 0x27, + 0x37, 0x27, 0x37, 0x17, 0x35, 0x33, 0x07, 0x37, 0x17, 0x2F, + 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x1D, 0x01, 0x1F, + 0x01, 0x33, 0x3F, 0x02, 0x07, 0x0E, 0x01, 0x1D, 0x01, 0x1F, + 0x01, 0x33, 0x3F, 0x01, 0x35, 0x2F, 0x01, 0x23, 0x2F, 0x02, + 0x23, 0x0F, 0x01, 0x15, 0x1F, 0x01, 0x33, 0x3F, 0x01, 0x35, + 0x37, 0x27, 0x23, 0x07, 0x0E, 0x01, 0x1D, 0x01, 0x1F, 0x01, + 0x33, 0x3F, 0x01, 0x35, 0x27, 0x17, 0x27, 0x23, 0x07, 0x0E, + 0x01, 0x1D, 0x01, 0x1F, 0x01, 0x33, 0x3F, 0x01, 0x35, 0x27, + 0x35, 0x27, 0x23, 0x0F, 0x01, 0x15, 0x1F, 0x01, 0x33, 0x3F, + 0x01, 0x35, 0x27, 0x07, 0x17, 0x07, 0x27, 0x17, 0x23, 0x35, + 0x07, 0x27, 0x37, 0x27, 0x37, 0x17, 0x35, 0x33, 0x07, 0x37, + 0x07, 0x3F, 0x01, 0x33, 0x0F, 0x01, 0x15, 0x23, 0x17, 0x23, + 0x22, 0x06, 0x0F, 0x01, 0x15, 0x1F, 0x01, 0x33, 0x3F, 0x01, + 0x35, 0x2F, 0x01, 0x23, 0x0F, 0x01, 0x15, 0x17, 0x1E, 0x01, + 0x3B, 0x01, 0x3F, 0x01, 0x35, 0x27, 0x05, 0x15, 0x33, 0x15, + 0x33, 0x35, 0x33, 0x35, 0x23, 0x35, 0x23, 0x07, 0x27, 0x1F, + 0x01, 0x37, 0x2F, 0x01, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x15, + 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x3F, 0x01, 0x27, 0x07, + 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x37, + 0x3E, 0x01, 0x33, 0x03, 0x4A, 0x07, 0x08, 0xFE, 0xCE, 0x03, + 0x05, 0x02, 0x06, 0x06, 0x0A, 0x01, 0x32, 0x08, 0x07, 0x3A, + 0x05, 0x06, 0x06, 0x05, 0x06, 0x11, 0x0B, 0xFD, 0x2A, 0x09, + 0x10, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x10, 0x09, 0x02, + 0xD6, 0x0B, 0x10, 0x07, 0xD1, 0x0B, 0x04, 0x0D, 0x0A, 0x02, + 0x0D, 0x04, 0x0E, 0x0E, 0x04, 0x0D, 0x02, 0x0A, 0x0D, 0x04, + 0x13, 0x0D, 0x0D, 0x05, 0x0E, 0x03, 0x0B, 0x0B, 0x06, 0x0D, + 0x0D, 0x06, 0x0B, 0x0B, 0x03, 0x0E, 0x06, 0x03, 0x0A, 0x27, + 0x03, 0x04, 0x01, 0x02, 0x02, 0x04, 0x08, 0x27, 0x0A, 0x03, + 0x23, 0x08, 0x03, 0x02, 0x05, 0x08, 0x29, 0x08, 0x03, 0x03, + 0x08, 0x29, 0x23, 0x03, 0x0A, 0x27, 0x08, 0x04, 0x04, 0x08, + 0x27, 0x0A, 0x03, 0x54, 0x08, 0x29, 0x08, 0x03, 0x02, 0x05, + 0x08, 0x29, 0x08, 0x03, 0x03, 0x57, 0x0A, 0x26, 0x0A, 0x02, + 0x02, 0x04, 0x0A, 0x26, 0x0A, 0x04, 0x04, 0x0A, 0x26, 0x0A, + 0x04, 0x04, 0x0A, 0x26, 0x0A, 0x04, 0xEE, 0x0D, 0x0D, 0x03, + 0x0F, 0x03, 0x0A, 0x0D, 0x04, 0x0B, 0x0B, 0x04, 0x0D, 0x0A, + 0x03, 0x0F, 0xEE, 0x0C, 0x08, 0x03, 0x02, 0x01, 0x2D, 0xE4, + 0x26, 0x02, 0x05, 0x02, 0x06, 0x06, 0x09, 0x26, 0x0A, 0x04, + 0x04, 0x0A, 0x26, 0x09, 0x06, 0x06, 0x02, 0x05, 0x02, 0x26, + 0x0A, 0x04, 0x04, 0xFE, 0xE4, 0x5B, 0x2E, 0x1B, 0x1B, 0x3B, + 0x4E, 0x31, 0x10, 0x0B, 0x08, 0x11, 0x13, 0x17, 0x22, 0x0C, + 0x0A, 0x0B, 0x0B, 0x0A, 0x0B, 0x1E, 0x13, 0x19, 0x13, 0x05, + 0x0E, 0x0F, 0x08, 0x0F, 0x06, 0x07, 0x07, 0x06, 0x06, 0x05, + 0x10, 0x0A, 0x02, 0x7A, 0x08, 0x07, 0x02, 0x02, 0x0B, 0xC4, + 0x0B, 0x03, 0x07, 0x07, 0xC4, 0x38, 0x07, 0x11, 0x0A, 0xFE, + 0x5E, 0x09, 0x0F, 0x07, 0x07, 0x08, 0x08, 0x07, 0x07, 0x0F, + 0x09, 0x01, 0xA2, 0x0A, 0x11, 0x07, 0x07, 0x07, 0x07, 0x07, + 0x9D, 0x07, 0x07, 0x07, 0x0D, 0x0D, 0x07, 0x07, 0x07, 0x07, + 0x08, 0x07, 0x0E, 0x0E, 0x07, 0x08, 0x0E, 0x07, 0x07, 0x08, + 0x07, 0x0E, 0x0E, 0x07, 0x08, 0x07, 0x07, 0x07, 0x07, 0x0D, + 0x0D, 0x07, 0xFE, 0x08, 0x06, 0x03, 0x03, 0x01, 0x04, 0x03, + 0x27, 0x0A, 0x03, 0x03, 0x0A, 0x35, 0x06, 0x01, 0x05, 0x02, + 0x27, 0x0A, 0x03, 0x03, 0x0A, 0x27, 0x08, 0x06, 0x4E, 0x0A, + 0x03, 0x03, 0x0A, 0x27, 0x08, 0x06, 0x06, 0x08, 0x27, 0x0A, + 0x03, 0x03, 0x03, 0x05, 0x02, 0x27, 0x08, 0x06, 0x06, 0x08, + 0x27, 0x0A, 0x5E, 0x06, 0x06, 0x01, 0x04, 0x03, 0x27, 0x0A, + 0x03, 0x03, 0x0A, 0x27, 0x08, 0x5E, 0x03, 0x03, 0x0A, 0x27, + 0x08, 0x06, 0x06, 0x08, 0x27, 0x9B, 0x07, 0x07, 0x08, 0x07, + 0x0E, 0x0E, 0x07, 0x08, 0x07, 0x07, 0x07, 0x07, 0x0D, 0x0D, + 0x07, 0xAC, 0x14, 0x15, 0x15, 0x14, 0x2E, 0x16, 0x03, 0x03, + 0x08, 0x27, 0x0A, 0x03, 0x03, 0x0A, 0x27, 0x08, 0x61, 0x03, + 0x0A, 0x27, 0x08, 0x03, 0x03, 0x06, 0x08, 0x27, 0x0A, 0x46, + 0x20, 0x31, 0x31, 0x24, 0x7B, 0x7F, 0x2A, 0x02, 0x02, 0x23, + 0x04, 0x01, 0x0C, 0x0C, 0x0B, 0x1C, 0x12, 0x13, 0x1E, 0x0B, + 0x0B, 0x0A, 0x03, 0x04, 0x26, 0x06, 0x06, 0x05, 0x05, 0x10, + 0x0B, 0x09, 0x0F, 0x06, 0x07, 0x07, 0x00, 0x03, 0x00, 0x62, + 0x00, 0x3E, 0x02, 0x89, 0x03, 0x40, 0x00, 0x3B, 0x00, 0x6A, + 0x00, 0x91, 0x00, 0x00, 0x01, 0x06, 0x16, 0x17, 0x16, 0x14, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x03, 0x27, 0x26, 0x36, 0x37, 0x1E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x17, 0x07, 0x16, 0x0E, 0x02, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x34, 0x36, 0x37, 0x36, 0x16, + 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x34, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x06, 0x16, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x03, 0x27, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x23, 0x02, 0x83, 0x01, 0x05, 0x01, + 0x01, 0x01, 0x02, 0x0A, 0x09, 0x0F, 0x36, 0x26, 0x0A, 0x13, + 0x0B, 0x0A, 0x18, 0x0C, 0x09, 0x16, 0x0A, 0x06, 0x0A, 0x07, + 0x0F, 0x1E, 0x0C, 0x2E, 0x4A, 0x35, 0x20, 0x06, 0x04, 0x04, + 0x08, 0x19, 0x35, 0x1F, 0x1B, 0x2C, 0x15, 0x0B, 0x12, 0x09, + 0x09, 0x05, 0x03, 0x15, 0x30, 0x22, 0x13, 0x2A, 0x15, 0x0E, + 0x1C, 0x0D, 0x0A, 0x11, 0x0A, 0x5E, 0x05, 0x07, 0x19, 0x2F, + 0x24, 0x09, 0x15, 0x0B, 0x06, 0x10, 0x06, 0x10, 0x1D, 0x0E, + 0x30, 0x36, 0x09, 0x03, 0x04, 0x02, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x03, 0x12, 0x03, 0x1B, 0x39, 0x15, 0x0A, 0x12, 0x09, + 0x06, 0x08, 0x08, 0x16, 0x0D, 0x15, 0x25, 0x17, 0x0C, 0x16, + 0x07, 0x32, 0x4F, 0x1D, 0x0D, 0x20, 0x11, 0x28, 0x5A, 0x2F, + 0x09, 0x0A, 0x12, 0x14, 0x47, 0x34, 0x0D, 0x1A, 0x0E, 0x07, + 0x0E, 0x07, 0x02, 0x05, 0x01, 0x0F, 0x1D, 0x0D, 0x37, 0x49, + 0x28, 0x0B, 0x06, 0x0B, 0x15, 0x0A, 0x09, 0x17, 0x0A, 0x02, + 0xCC, 0x11, 0x21, 0x11, 0x15, 0x29, 0x15, 0x26, 0x4B, 0x25, + 0x3B, 0x72, 0x30, 0x0C, 0x1A, 0x0C, 0x0B, 0x14, 0x0B, 0x09, + 0x0D, 0x07, 0x05, 0x07, 0x03, 0x06, 0x1C, 0x0A, 0x29, 0x60, + 0x6C, 0x74, 0x3E, 0x31, 0x66, 0x31, 0x10, 0x14, 0x03, 0x04, + 0x1B, 0x11, 0x09, 0x14, 0x0B, 0x0A, 0x17, 0x0C, 0x20, 0x3C, + 0x13, 0x0B, 0x0A, 0x01, 0x08, 0x05, 0x05, 0x05, 0x08, 0x64, + 0x33, 0x67, 0x62, 0x59, 0x27, 0x0A, 0x13, 0x07, 0x04, 0x0C, + 0x04, 0x0B, 0x18, 0x0E, 0x31, 0x79, 0x44, 0x19, 0x33, 0x1A, + 0x07, 0x0D, 0x07, 0x01, 0x0A, 0x01, 0x01, 0x0C, 0x01, 0x0A, + 0x0F, 0x12, 0x0A, 0x12, 0x0A, 0x08, 0x05, 0x0C, 0x0D, 0x17, + 0x08, 0x0E, 0x06, 0x01, 0x01, 0x0C, 0x38, 0x03, 0x38, 0x27, + 0x11, 0x1E, 0x0C, 0x1D, 0x12, 0x16, 0x43, 0x88, 0x41, 0x47, + 0x81, 0x35, 0x0C, 0x17, 0x0A, 0x06, 0x0A, 0x05, 0x05, 0x01, + 0x0B, 0x15, 0x0C, 0x33, 0x7E, 0x8C, 0x94, 0x48, 0x03, 0x06, + 0x03, 0x03, 0x01, 0x00, 0x00, 0x04, 0x00, 0x66, 0x00, 0x40, + 0x02, 0x90, 0x03, 0x40, 0x00, 0x29, 0x00, 0x47, 0x00, 0x66, + 0x00, 0x84, 0x00, 0x00, 0x01, 0x16, 0x06, 0x0F, 0x07, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x2F, 0x01, 0x35, 0x3F, 0x01, + 0x17, 0x1E, 0x01, 0x3F, 0x05, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x36, 0x3F, 0x02, 0x17, 0x15, 0x07, 0x2E, 0x01, 0x27, 0x0F, + 0x03, 0x0E, 0x01, 0x27, 0x0F, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x3F, 0x06, 0x35, 0x27, 0x07, 0x1F, 0x01, + 0x0F, 0x05, 0x2F, 0x04, 0x35, 0x37, 0x33, 0x1E, 0x01, 0x3F, + 0x04, 0x33, 0x1E, 0x01, 0x1F, 0x01, 0x3F, 0x01, 0x33, 0x0F, + 0x07, 0x33, 0x37, 0x33, 0x37, 0x1F, 0x06, 0x33, 0x1F, 0x01, + 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x07, 0x02, 0x87, + 0x09, 0x09, 0x12, 0x26, 0x36, 0x36, 0x2F, 0x24, 0x0D, 0x07, + 0x09, 0x3A, 0x5C, 0x22, 0x19, 0x25, 0x0B, 0x0C, 0x05, 0x07, + 0x12, 0x1A, 0x37, 0x1C, 0x32, 0x26, 0x18, 0x0B, 0x0C, 0x0D, + 0x20, 0x4A, 0x2A, 0x14, 0x2A, 0x17, 0x0B, 0x09, 0x05, 0x70, + 0x2D, 0x50, 0x22, 0x05, 0x07, 0x1F, 0x2A, 0x25, 0x4E, 0x28, + 0x02, 0x02, 0x0B, 0x0A, 0x23, 0x18, 0x1E, 0x54, 0x36, 0x16, + 0x22, 0x26, 0x26, 0x36, 0x24, 0x14, 0x02, 0x55, 0x11, 0x03, + 0x12, 0x1B, 0x22, 0x24, 0x1F, 0x1D, 0x4C, 0x34, 0x1F, 0x10, + 0x06, 0x04, 0x02, 0x15, 0x2A, 0x16, 0x24, 0x1B, 0x10, 0x04, + 0x03, 0x0C, 0x1A, 0x0D, 0x31, 0x2B, 0x1D, 0x04, 0xCE, 0x35, + 0x14, 0x12, 0x0E, 0x04, 0x07, 0x02, 0x09, 0x0B, 0x1B, 0x12, + 0x0F, 0x15, 0x14, 0x0F, 0x05, 0x07, 0x0B, 0x4C, 0x14, 0x14, + 0x1B, 0x1B, 0x0B, 0x18, 0x0E, 0x36, 0x02, 0xC5, 0x52, 0x95, + 0x43, 0x69, 0x5E, 0x41, 0x2D, 0x16, 0x0C, 0x04, 0x05, 0x28, + 0x62, 0x3B, 0x2D, 0x69, 0x3A, 0x5C, 0x49, 0x34, 0x28, 0x0B, + 0x10, 0x09, 0x07, 0x19, 0x1F, 0x1D, 0x0E, 0x1F, 0x1B, 0x31, + 0x35, 0x03, 0x01, 0x0A, 0x0B, 0x0B, 0x05, 0x12, 0x09, 0x24, + 0x01, 0x30, 0x2F, 0x06, 0x07, 0x22, 0x1D, 0x16, 0x05, 0x12, + 0x21, 0x2D, 0x7D, 0x38, 0x65, 0x2D, 0x37, 0x5B, 0x23, 0x0F, + 0x1B, 0x26, 0x34, 0x59, 0x63, 0xBA, 0x2A, 0x26, 0x0B, 0x38, + 0x74, 0x5C, 0x4A, 0x38, 0x2B, 0x1D, 0x16, 0x41, 0x45, 0x46, + 0x41, 0x3E, 0x55, 0x10, 0x0D, 0x07, 0x07, 0x11, 0x19, 0x14, + 0x09, 0x13, 0x1B, 0x08, 0x14, 0x03, 0x0D, 0x38, 0x10, 0x14, + 0x1D, 0x26, 0x07, 0x06, 0x03, 0x03, 0x02, 0x02, 0x09, 0x0C, + 0x06, 0x02, 0x05, 0x02, 0x05, 0x04, 0x0B, 0x32, 0x44, 0x10, + 0x09, 0x09, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x59, + 0x00, 0x59, 0x03, 0x7D, 0x03, 0x26, 0x00, 0xC4, 0x00, 0xD4, + 0x00, 0xE4, 0x00, 0xF7, 0x00, 0x00, 0x01, 0x0E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x22, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x16, 0x32, 0x07, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1C, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x23, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x30, 0x37, 0x36, 0x37, 0x36, + 0x32, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x32, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x26, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x36, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x16, 0x06, 0x07, 0x25, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, + 0x22, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x27, + 0x26, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x37, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x22, 0x14, 0x33, 0x16, 0x32, 0x33, 0x1E, 0x01, + 0x33, 0x32, 0x26, 0x27, 0x03, 0x70, 0x05, 0x0E, 0x07, 0x0A, + 0x15, 0x08, 0x20, 0x43, 0x24, 0x15, 0x27, 0x15, 0x1B, 0x35, + 0x1B, 0x0F, 0x1A, 0x0E, 0x05, 0x0B, 0x05, 0x04, 0x05, 0x02, + 0x02, 0x04, 0x03, 0x06, 0x02, 0x04, 0x02, 0x06, 0x03, 0x03, + 0x12, 0x1A, 0x03, 0x02, 0x05, 0x03, 0x01, 0x05, 0x02, 0x05, + 0x08, 0x04, 0x03, 0x07, 0x02, 0x02, 0x05, 0x05, 0x0A, 0x22, + 0x18, 0x0B, 0x1A, 0x0D, 0x06, 0x14, 0x01, 0x02, 0x02, 0x05, + 0x01, 0x01, 0x01, 0x06, 0x03, 0x07, 0x04, 0x06, 0x0B, 0x05, + 0x0F, 0x1B, 0x0D, 0x2F, 0x43, 0x06, 0x03, 0x07, 0x04, 0x01, + 0x07, 0x03, 0x04, 0x08, 0x04, 0x07, 0x14, 0x0B, 0x0D, 0x1A, + 0x0D, 0x09, 0x0E, 0x07, 0x1C, 0x39, 0x1C, 0x03, 0x04, 0x02, + 0x02, 0x02, 0x01, 0x02, 0x05, 0x03, 0x0E, 0x1C, 0x0E, 0x12, + 0x25, 0x13, 0x0D, 0x09, 0x02, 0x01, 0x11, 0x04, 0x01, 0x02, + 0x02, 0x03, 0x06, 0x02, 0x06, 0x0B, 0x05, 0x05, 0x09, 0x03, + 0x15, 0x2A, 0x15, 0x03, 0x05, 0x03, 0x06, 0x0D, 0x05, 0x02, + 0x06, 0x01, 0x07, 0x0E, 0x07, 0x10, 0x22, 0x11, 0x05, 0x0B, + 0x05, 0x02, 0x08, 0x01, 0x09, 0x11, 0x09, 0x04, 0x08, 0x04, + 0x04, 0x10, 0x05, 0x0E, 0x1B, 0x0E, 0x0E, 0x1E, 0x0E, 0x1B, + 0x36, 0x1B, 0x15, 0x2D, 0x15, 0x0B, 0x18, 0x0B, 0x0C, 0x1A, + 0x0D, 0x16, 0x28, 0x15, 0x07, 0x01, 0x0C, 0xFE, 0x7E, 0x04, + 0x09, 0x08, 0x05, 0x0E, 0x05, 0x06, 0x04, 0x04, 0x04, 0x08, + 0x05, 0x04, 0x11, 0x05, 0x38, 0x05, 0x02, 0x03, 0x05, 0x12, + 0x06, 0x03, 0x0E, 0x03, 0x07, 0x0E, 0x07, 0x03, 0x05, 0x03, + 0x44, 0x03, 0x06, 0x04, 0x07, 0x0F, 0x08, 0x04, 0x04, 0x02, + 0x08, 0x02, 0x07, 0x0F, 0x08, 0x03, 0x01, 0x01, 0x01, 0xE3, + 0x03, 0x05, 0x01, 0x01, 0x10, 0x05, 0x13, 0x1E, 0x08, 0x05, + 0x01, 0x01, 0x09, 0x02, 0x01, 0x01, 0x06, 0x02, 0x04, 0x01, + 0x01, 0x03, 0x03, 0x03, 0x07, 0x03, 0x04, 0x03, 0x05, 0x05, + 0x08, 0x05, 0x05, 0x13, 0x06, 0x05, 0x12, 0x03, 0x01, 0x04, + 0x02, 0x06, 0x02, 0x02, 0x06, 0x03, 0x0C, 0x19, 0x0D, 0x13, + 0x26, 0x13, 0x23, 0x40, 0x1B, 0x0D, 0x16, 0x0A, 0x04, 0x0D, + 0x09, 0x06, 0x0D, 0x05, 0x03, 0x04, 0x03, 0x05, 0x03, 0x02, + 0x01, 0x04, 0x01, 0x07, 0x02, 0x09, 0x15, 0x0B, 0x28, 0x70, + 0x3E, 0x1D, 0x38, 0x1C, 0x06, 0x06, 0x04, 0x07, 0x0E, 0x07, + 0x0A, 0x19, 0x05, 0x05, 0x0B, 0x05, 0x03, 0x0D, 0x06, 0x17, + 0x2E, 0x17, 0x02, 0x04, 0x03, 0x06, 0x05, 0x01, 0x02, 0x01, + 0x06, 0x0A, 0x06, 0x07, 0x0E, 0x07, 0x05, 0x06, 0x0F, 0x08, + 0x05, 0x01, 0x07, 0x02, 0x04, 0x07, 0x04, 0x07, 0x06, 0x02, + 0x02, 0x03, 0x04, 0x1C, 0x38, 0x1C, 0x03, 0x08, 0x03, 0x08, + 0x03, 0x04, 0x02, 0x04, 0x0A, 0x05, 0x0B, 0x18, 0x0B, 0x04, + 0x08, 0x03, 0x02, 0x02, 0x01, 0x0C, 0x19, 0x0C, 0x05, 0x0A, + 0x04, 0x04, 0x03, 0x01, 0x04, 0x08, 0x03, 0x02, 0x05, 0x01, + 0x02, 0x01, 0x01, 0x01, 0x02, 0x05, 0x03, 0x05, 0x06, 0x07, + 0x0E, 0x07, 0x0B, 0x1F, 0x0E, 0x08, 0x1F, 0x06, 0x0A, 0x08, + 0x04, 0x03, 0x02, 0x07, 0x02, 0x0C, 0x01, 0x01, 0x02, 0x01, + 0x01, 0x07, 0x03, 0x06, 0x01, 0x07, 0x03, 0x05, 0x08, 0x03, + 0x03, 0x02, 0x09, 0x04, 0x07, 0x04, 0x02, 0x03, 0x01, 0x1A, + 0x02, 0x01, 0x01, 0x01, 0x03, 0x01, 0x0E, 0x01, 0x01, 0x02, + 0x08, 0x01, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0xFF, 0xC0, + 0x04, 0x00, 0x03, 0xC0, 0x00, 0x17, 0x00, 0x1F, 0x00, 0x27, + 0x00, 0x2F, 0x00, 0x37, 0x00, 0x3F, 0x00, 0x00, 0x01, 0x15, + 0x23, 0x0E, 0x01, 0x07, 0x15, 0x23, 0x35, 0x2E, 0x01, 0x27, + 0x23, 0x35, 0x33, 0x3E, 0x01, 0x37, 0x35, 0x33, 0x15, 0x1E, + 0x01, 0x17, 0x23, 0x2E, 0x01, 0x27, 0x15, 0x1E, 0x01, 0x17, + 0x06, 0x32, 0x36, 0x34, 0x26, 0x22, 0x06, 0x14, 0x11, 0x0E, + 0x01, 0x07, 0x33, 0x3E, 0x01, 0x37, 0x07, 0x1E, 0x01, 0x17, + 0x35, 0x2E, 0x01, 0x27, 0x17, 0x3E, 0x01, 0x37, 0x23, 0x0E, + 0x01, 0x07, 0x04, 0x00, 0x65, 0x15, 0xC0, 0x86, 0x80, 0x86, + 0xC0, 0x15, 0x65, 0x65, 0x15, 0xC0, 0x86, 0x80, 0x86, 0xC0, + 0x15, 0x82, 0x13, 0x75, 0x51, 0x29, 0x3E, 0x0E, 0xCF, 0x34, + 0x26, 0x26, 0x34, 0x26, 0x51, 0x75, 0x13, 0x64, 0x0E, 0x3E, + 0x29, 0xD9, 0x13, 0x75, 0x51, 0x29, 0x3E, 0x0E, 0xF5, 0x51, + 0x75, 0x13, 0x64, 0x0E, 0x3E, 0x29, 0x02, 0x00, 0x80, 0x86, + 0xC0, 0x15, 0x65, 0x65, 0x15, 0xC0, 0x86, 0x80, 0x86, 0xC0, + 0x15, 0x65, 0x65, 0x15, 0xC0, 0x86, 0x51, 0x75, 0x13, 0x64, + 0x0E, 0x3E, 0x29, 0x80, 0x26, 0x34, 0x26, 0x26, 0x34, 0x01, + 0x33, 0x13, 0x75, 0x51, 0x29, 0x3E, 0x0E, 0xF5, 0x51, 0x75, + 0x13, 0x64, 0x0E, 0x3E, 0x29, 0xD9, 0x13, 0x75, 0x51, 0x29, + 0x3E, 0x0E, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0xFF, 0xC0, + 0x04, 0x00, 0x03, 0xC0, 0x00, 0x07, 0x00, 0x0D, 0x00, 0x19, + 0x00, 0x25, 0x00, 0x31, 0x00, 0x3D, 0x00, 0x49, 0x00, 0x55, + 0x00, 0x61, 0x00, 0x6D, 0x00, 0x00, 0x00, 0x32, 0x16, 0x14, + 0x06, 0x22, 0x26, 0x34, 0x01, 0x32, 0x36, 0x34, 0x26, 0x23, + 0x02, 0x32, 0x16, 0x1D, 0x01, 0x14, 0x06, 0x22, 0x26, 0x3D, + 0x01, 0x34, 0x12, 0x22, 0x26, 0x3D, 0x01, 0x34, 0x36, 0x32, + 0x16, 0x1D, 0x01, 0x14, 0x01, 0x32, 0x16, 0x14, 0x06, 0x2B, + 0x01, 0x22, 0x26, 0x34, 0x36, 0x33, 0x04, 0x14, 0x06, 0x2B, + 0x01, 0x22, 0x26, 0x34, 0x36, 0x3B, 0x01, 0x32, 0x01, 0x17, + 0x16, 0x14, 0x06, 0x22, 0x2F, 0x01, 0x26, 0x34, 0x36, 0x32, + 0x01, 0x27, 0x26, 0x34, 0x36, 0x32, 0x1F, 0x01, 0x16, 0x14, + 0x06, 0x22, 0x25, 0x06, 0x22, 0x26, 0x34, 0x3F, 0x01, 0x36, + 0x32, 0x16, 0x14, 0x07, 0x01, 0x36, 0x32, 0x16, 0x14, 0x0F, + 0x01, 0x06, 0x22, 0x26, 0x34, 0x37, 0x01, 0x96, 0xD4, 0x96, + 0x96, 0xD4, 0x96, 0x01, 0x00, 0x42, 0x5E, 0x5E, 0x42, 0x1A, + 0x34, 0x26, 0x26, 0x34, 0x26, 0x5A, 0x34, 0x26, 0x26, 0x34, + 0x26, 0x01, 0x80, 0x1A, 0x26, 0x26, 0x1A, 0x40, 0x1A, 0x26, + 0x26, 0x1A, 0xFD, 0x40, 0x26, 0x1A, 0x40, 0x1A, 0x26, 0x26, + 0x1A, 0x40, 0x1A, 0x02, 0xA3, 0x2D, 0x13, 0x26, 0x35, 0x12, + 0x2E, 0x12, 0x25, 0x35, 0xFD, 0x99, 0x2D, 0x13, 0x26, 0x35, + 0x12, 0x2E, 0x12, 0x25, 0x35, 0x02, 0x67, 0x13, 0x35, 0x25, + 0x12, 0x2E, 0x12, 0x35, 0x26, 0x13, 0xFD, 0x59, 0x13, 0x35, + 0x25, 0x12, 0x2E, 0x12, 0x35, 0x26, 0x13, 0x02, 0xC0, 0x96, + 0xD4, 0x96, 0x96, 0xD4, 0xFE, 0xF6, 0x5E, 0x84, 0x5E, 0xFE, + 0x20, 0x26, 0x1A, 0x40, 0x1A, 0x26, 0x26, 0x1A, 0x40, 0x1A, + 0x02, 0xA6, 0x26, 0x1A, 0x40, 0x1A, 0x26, 0x26, 0x1A, 0x40, + 0x1A, 0xFE, 0xDA, 0x26, 0x34, 0x26, 0x26, 0x34, 0x26, 0x26, + 0x34, 0x26, 0x26, 0x34, 0x26, 0xFE, 0xDE, 0x2E, 0x12, 0x35, + 0x26, 0x13, 0x2D, 0x13, 0x35, 0x25, 0x01, 0xB2, 0x2E, 0x12, + 0x35, 0x26, 0x13, 0x2D, 0x13, 0x35, 0x25, 0x12, 0x12, 0x25, + 0x35, 0x13, 0x2D, 0x13, 0x26, 0x35, 0x12, 0xFE, 0x0E, 0x12, + 0x25, 0x35, 0x13, 0x2D, 0x13, 0x26, 0x35, 0x12, 0x00, 0x01, + 0x00, 0x00, 0xFF, 0xBF, 0x04, 0x01, 0x03, 0xC0, 0x00, 0x1F, + 0x00, 0x00, 0x25, 0x1E, 0x01, 0x0F, 0x01, 0x06, 0x26, 0x27, + 0x01, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x37, 0x17, 0x16, + 0x32, 0x3F, 0x01, 0x36, 0x34, 0x2F, 0x01, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x07, 0x03, 0xEB, 0x14, 0x02, 0x13, 0x65, + 0x13, 0x33, 0x11, 0xFE, 0x75, 0x3F, 0x48, 0x77, 0xA9, 0x0C, + 0xA7, 0x12, 0x36, 0x12, 0x66, 0x12, 0x12, 0xA7, 0x29, 0x2B, + 0x77, 0xA9, 0x22, 0x8E, 0x11, 0x33, 0x13, 0x65, 0x13, 0x02, + 0x14, 0x01, 0xCD, 0x22, 0xA9, 0x77, 0x2B, 0x29, 0xA7, 0x12, + 0x12, 0x66, 0x12, 0x36, 0x12, 0xA7, 0x0C, 0xA9, 0x77, 0x48, + 0x3F, 0x00, 0x00, 0x04, 0x00, 0x00, 0xFF, 0xC0, 0x04, 0x00, + 0x03, 0xC1, 0x00, 0x27, 0x00, 0x2F, 0x00, 0x7F, 0x00, 0x87, + 0x00, 0x00, 0x25, 0x16, 0x1F, 0x01, 0x15, 0x07, 0x06, 0x07, + 0x17, 0x07, 0x27, 0x06, 0x0F, 0x01, 0x23, 0x27, 0x26, 0x27, + 0x07, 0x27, 0x37, 0x26, 0x2F, 0x01, 0x35, 0x37, 0x36, 0x37, + 0x27, 0x37, 0x17, 0x36, 0x3F, 0x01, 0x33, 0x17, 0x16, 0x17, + 0x37, 0x17, 0x06, 0x32, 0x36, 0x34, 0x26, 0x22, 0x06, 0x14, + 0x01, 0x07, 0x06, 0x07, 0x17, 0x07, 0x27, 0x06, 0x07, 0x17, + 0x07, 0x27, 0x06, 0x07, 0x17, 0x07, 0x27, 0x06, 0x0F, 0x01, + 0x23, 0x27, 0x26, 0x27, 0x07, 0x27, 0x37, 0x26, 0x27, 0x07, + 0x27, 0x37, 0x26, 0x27, 0x07, 0x27, 0x37, 0x26, 0x2F, 0x01, + 0x35, 0x37, 0x36, 0x37, 0x27, 0x37, 0x17, 0x36, 0x37, 0x27, + 0x37, 0x17, 0x36, 0x37, 0x27, 0x37, 0x17, 0x36, 0x3F, 0x01, + 0x33, 0x17, 0x16, 0x17, 0x37, 0x17, 0x07, 0x16, 0x17, 0x37, + 0x17, 0x07, 0x16, 0x17, 0x37, 0x17, 0x07, 0x16, 0x1F, 0x01, + 0x04, 0x32, 0x36, 0x34, 0x26, 0x22, 0x06, 0x14, 0x01, 0x6C, + 0x09, 0x05, 0x46, 0x46, 0x05, 0x09, 0x29, 0x2D, 0x3A, 0x10, + 0x12, 0x0C, 0x40, 0x0C, 0x12, 0x10, 0x3A, 0x2D, 0x29, 0x09, + 0x05, 0x46, 0x46, 0x05, 0x09, 0x29, 0x2D, 0x3A, 0x10, 0x12, + 0x0C, 0x40, 0x0C, 0x12, 0x10, 0x3A, 0x2D, 0xCF, 0x34, 0x26, + 0x26, 0x34, 0x26, 0x03, 0x60, 0x43, 0x02, 0x03, 0x39, 0x18, + 0x43, 0x06, 0x08, 0x27, 0x2D, 0x38, 0x0A, 0x0A, 0x0E, 0x3B, + 0x25, 0x0C, 0x0C, 0x0C, 0x40, 0x0C, 0x0D, 0x0B, 0x25, 0x3B, + 0x0E, 0x0A, 0x0A, 0x38, 0x2E, 0x27, 0x07, 0x06, 0x43, 0x19, + 0x3A, 0x03, 0x02, 0x43, 0x43, 0x02, 0x03, 0x3A, 0x19, 0x43, + 0x06, 0x07, 0x27, 0x2E, 0x38, 0x09, 0x0B, 0x0E, 0x3B, 0x25, + 0x0C, 0x0C, 0x0C, 0x40, 0x0C, 0x0D, 0x0B, 0x25, 0x3B, 0x0E, + 0x09, 0x0B, 0x38, 0x2D, 0x27, 0x07, 0x07, 0x43, 0x18, 0x39, + 0x03, 0x02, 0x43, 0xFE, 0x66, 0x74, 0x51, 0x51, 0x74, 0x51, + 0xEE, 0x10, 0x12, 0x0C, 0x40, 0x0C, 0x12, 0x10, 0x3A, 0x2D, + 0x29, 0x09, 0x05, 0x46, 0x46, 0x05, 0x09, 0x29, 0x2D, 0x3A, + 0x10, 0x12, 0x0C, 0x40, 0x0C, 0x12, 0x10, 0x3A, 0x2D, 0x29, + 0x09, 0x05, 0x46, 0x46, 0x05, 0x09, 0x29, 0x2D, 0xC8, 0x26, + 0x34, 0x26, 0x26, 0x34, 0x01, 0xBA, 0x0C, 0x0D, 0x0B, 0x25, + 0x3B, 0x0E, 0x0A, 0x0A, 0x38, 0x2E, 0x27, 0x07, 0x06, 0x43, + 0x19, 0x3A, 0x03, 0x02, 0x43, 0x43, 0x02, 0x03, 0x3A, 0x19, + 0x43, 0x06, 0x07, 0x27, 0x2E, 0x38, 0x0A, 0x0A, 0x0E, 0x3B, + 0x25, 0x0C, 0x0C, 0x0C, 0x40, 0x0C, 0x0D, 0x0B, 0x25, 0x3B, + 0x0E, 0x0A, 0x0A, 0x38, 0x2E, 0x27, 0x07, 0x06, 0x43, 0x19, + 0x3A, 0x03, 0x02, 0x43, 0x43, 0x02, 0x03, 0x3A, 0x19, 0x43, + 0x06, 0x07, 0x27, 0x2E, 0x38, 0x0A, 0x0A, 0x0E, 0x3B, 0x25, + 0x0C, 0x0C, 0x0C, 0xAB, 0x51, 0x74, 0x51, 0x51, 0x74, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0xAE, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0A, + 0x00, 0x19, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x07, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x25, 0x00, 0x88, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x0A, 0x00, 0xC4, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0B, 0x00, 0xE7, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x0A, + 0x01, 0x09, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x01, 0x00, 0x14, 0x00, 0x03, 0x00, 0x03, 0x00, 0x01, + 0x04, 0x09, 0x00, 0x02, 0x00, 0x0E, 0x00, 0x24, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x03, 0x00, 0x4A, 0x00, 0x3C, + 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x04, 0x00, 0x14, + 0x00, 0xAE, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x05, + 0x00, 0x16, 0x00, 0xCF, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x06, 0x00, 0x14, 0x00, 0xF3, 0x00, 0x00, 0x00, 0x00, + 0x41, 0x00, 0x73, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, + 0x75, 0x00, 0x6D, 0x00, 0x57, 0x00, 0x65, 0x00, 0x70, 0x00, + 0x00, 0x41, 0x73, 0x74, 0x72, 0x69, 0x75, 0x6D, 0x57, 0x65, + 0x70, 0x00, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, 0x00, 0x75, + 0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, 0x00, 0x00, 0x52, 0x65, + 0x67, 0x75, 0x6C, 0x61, 0x72, 0x00, 0x00, 0x46, 0x00, 0x6F, + 0x00, 0x6E, 0x00, 0x74, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x72, + 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, 0x32, 0x00, 0x2E, + 0x00, 0x30, 0x00, 0x20, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x41, + 0x00, 0x73, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x75, + 0x00, 0x6D, 0x00, 0x57, 0x00, 0x65, 0x00, 0x70, 0x00, 0x20, + 0x00, 0x3A, 0x00, 0x20, 0x00, 0x33, 0x00, 0x2D, 0x00, 0x33, + 0x00, 0x2D, 0x00, 0x32, 0x00, 0x30, 0x00, 0x31, 0x00, 0x37, + 0x00, 0x00, 0x46, 0x6F, 0x6E, 0x74, 0x46, 0x6F, 0x72, 0x67, + 0x65, 0x20, 0x32, 0x2E, 0x30, 0x20, 0x3A, 0x20, 0x41, 0x73, + 0x74, 0x72, 0x69, 0x75, 0x6D, 0x57, 0x65, 0x70, 0x20, 0x3A, + 0x20, 0x33, 0x2D, 0x33, 0x2D, 0x32, 0x30, 0x31, 0x37, 0x00, + 0x00, 0x41, 0x00, 0x73, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, + 0x00, 0x75, 0x00, 0x6D, 0x00, 0x57, 0x00, 0x65, 0x00, 0x70, + 0x00, 0x00, 0x41, 0x73, 0x74, 0x72, 0x69, 0x75, 0x6D, 0x57, + 0x65, 0x70, 0x00, 0x00, 0x56, 0x00, 0x65, 0x00, 0x72, 0x00, + 0x73, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, + 0x31, 0x00, 0x2E, 0x00, 0x31, 0x00, 0x00, 0x56, 0x65, 0x72, + 0x73, 0x69, 0x6F, 0x6E, 0x20, 0x31, 0x2E, 0x31, 0x00, 0x00, + 0x41, 0x00, 0x73, 0x00, 0x74, 0x00, 0x72, 0x00, 0x69, 0x00, + 0x75, 0x00, 0x6D, 0x00, 0x57, 0x00, 0x65, 0x00, 0x70, 0x00, + 0x00, 0x41, 0x73, 0x74, 0x72, 0x69, 0x75, 0x6D, 0x57, 0x65, + 0x70, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, + 0x01, 0x02, 0x00, 0x02, 0x01, 0x03, 0x00, 0x03, 0x00, 0x13, + 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x18, + 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, 0x00, 0x1C, 0x00, 0x24, + 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, 0x00, 0x29, + 0x00, 0x2A, 0x00, 0x2B, 0x00, 0x2C, 0x00, 0x2D, 0x00, 0x2E, + 0x00, 0x2F, 0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x33, + 0x00, 0x34, 0x00, 0x35, 0x00, 0x36, 0x00, 0x37, 0x00, 0x38, + 0x00, 0x39, 0x00, 0x3A, 0x00, 0x3B, 0x00, 0x3C, 0x00, 0x3D, + 0x00, 0x3E, 0x00, 0x40, 0x00, 0x44, 0x00, 0x45, 0x00, 0x46, + 0x00, 0x47, 0x00, 0x48, 0x00, 0x49, 0x00, 0x4A, 0x00, 0x4B, + 0x00, 0x4C, 0x00, 0x4D, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, + 0x00, 0x51, 0x00, 0x52, 0x00, 0x53, 0x00, 0x54, 0x00, 0x55, + 0x00, 0x56, 0x00, 0x57, 0x00, 0x58, 0x00, 0x59, 0x06, 0x67, + 0x6C, 0x79, 0x70, 0x68, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x30, 0x30, 0x31, 0x00, 0x00, 0x01, 0x00, 0x01, 0xFF, 0xFF, + 0x00, 0x0F, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, + 0x00, 0x16, 0x00, 0x1E, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x40, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0xD4, 0x19, 0x57, 0x3F, 0x00, 0x00, 0x00, 0x00, 0xD2, 0xEB, + 0xED, 0xCA, 0x00, 0x00, 0x00, 0x00, 0xD4, 0xDE, 0x2E, 0x83, +}; +unsigned char icon[] = +{ + 0x00, 0x01, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x80, 0x00, 0x03, 0x00, 0x60, 0x4F, 0x53, 0x2F, 0x32, +0x43, 0x76, 0x63, 0xFA, 0x00, 0x00, 0x01, 0x68, 0x00, 0x00, 0x00, 0x64, 0x63, 0x6D, 0x61, 0x70, +0x8F, 0x3F, 0xC7, 0x4A, 0x00, 0x00, 0x05, 0x78, 0x00, 0x00, 0x02, 0x52, 0x63, 0x76, 0x74, 0x20, +0x10, 0x48, 0x07, 0x6C, 0x00, 0x00, 0x16, 0x80, 0x00, 0x00, 0x00, 0x24, 0x66, 0x70, 0x67, 0x6D, +0x62, 0x2E, 0xFB, 0x7B, 0x00, 0x00, 0x07, 0xCC, 0x00, 0x00, 0x0E, 0x0C, 0x67, 0x61, 0x73, 0x70, +0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x64, 0x50, 0x00, 0x00, 0x00, 0x08, 0x67, 0x6C, 0x79, 0x66, +0x79, 0x90, 0xAE, 0x93, 0x00, 0x00, 0x18, 0x7C, 0x00, 0x00, 0x47, 0x48, 0x68, 0x65, 0x61, 0x64, +0x1E, 0x04, 0x85, 0xDF, 0x00, 0x00, 0x00, 0xEC, 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, 0x65, 0x61, +0x0D, 0x94, 0x02, 0xAC, 0x00, 0x00, 0x01, 0x24, 0x00, 0x00, 0x00, 0x24, 0x68, 0x6D, 0x74, 0x78, +0xB7, 0xC1, 0x0F, 0xEB, 0x00, 0x00, 0x01, 0xCC, 0x00, 0x00, 0x03, 0xAC, 0x6C, 0x6F, 0x63, 0x61, +0xB3, 0x61, 0xC8, 0x4C, 0x00, 0x00, 0x16, 0xA4, 0x00, 0x00, 0x01, 0xD8, 0x6D, 0x61, 0x78, 0x70, +0x03, 0xF9, 0x04, 0x9C, 0x00, 0x00, 0x01, 0x48, 0x00, 0x00, 0x00, 0x20, 0x6E, 0x61, 0x6D, 0x65, +0x26, 0x16, 0x43, 0x5E, 0x00, 0x00, 0x5F, 0xC4, 0x00, 0x00, 0x01, 0xFA, 0x70, 0x6F, 0x73, 0x74, +0x3A, 0x6D, 0xE7, 0xFC, 0x00, 0x00, 0x61, 0xC0, 0x00, 0x00, 0x02, 0x8F, 0x70, 0x72, 0x65, 0x70, +0x64, 0x3E, 0xAD, 0x9C, 0x00, 0x00, 0x15, 0xD8, 0x00, 0x00, 0x00, 0xA7, 0x00, 0x01, 0x00, 0x00, +0x00, 0x01, 0x00, 0x00, 0xC7, 0x6D, 0xC9, 0xBA, 0x5F, 0x0F, 0x3C, 0xF5, 0x00, 0x0F, 0x08, 0x00, +0x00, 0x00, 0x00, 0x00, 0xDC, 0x69, 0x5B, 0x74, 0x00, 0x00, 0x00, 0x00, 0xDC, 0x77, 0xDE, 0x9A, +0xFD, 0x90, 0xFE, 0x5E, 0x08, 0x70, 0x08, 0x78, 0x00, 0x00, 0x00, 0x06, 0x00, 0x02, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x07, 0x79, 0xFE, 0x5D, 0x00, 0x18, 0x09, 0x42, +0xFD, 0x90, 0xFA, 0x21, 0x08, 0x70, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xEB, 0x00, 0x01, 0x00, 0x00, 0x00, 0xEB, 0x01, 0x7F, +0x00, 0x0E, 0x00, 0x3C, 0x00, 0x03, 0x00, 0x02, 0x00, 0x70, 0x00, 0xC0, 0x00, 0x8D, 0x00, 0x00, +0x01, 0xFC, 0x02, 0x1E, 0x00, 0x03, 0x00, 0x01, 0x00, 0x05, 0x04, 0x3A, 0x01, 0x90, 0x00, 0x05, +0x00, 0x00, 0x05, 0x9A, 0x05, 0x33, 0x00, 0x00, 0x01, 0x33, 0x05, 0x9A, 0x05, 0x33, 0x00, 0x00, +0x03, 0x9A, 0x00, 0x66, 0x02, 0x12, 0x00, 0x00, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x48, 0x4C, 0x20, 0x20, 0x01, 0x40, 0x00, 0x20, 0xFB, 0x02, 0x06, 0x2B, 0xFE, 0x5D, +0x00, 0xCD, 0x07, 0x79, 0x01, 0xA3, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBE, +0x05, 0x9A, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x04, 0x00, 0x00, 0x64, +0x01, 0xFC, 0x00, 0x00, 0x02, 0xA0, 0x00, 0xCF, 0x02, 0xA0, 0x00, 0x65, 0x05, 0x38, 0x00, 0x75, +0x03, 0xF6, 0x00, 0x71, 0x06, 0x4A, 0x00, 0x3E, 0x06, 0x93, 0x00, 0x98, 0x01, 0x5A, 0x00, 0x65, +0x02, 0xF6, 0x00, 0xFC, 0x02, 0xF6, 0x00, 0x3A, 0x04, 0x00, 0x00, 0xDA, 0x03, 0xF6, 0x00, 0x57, +0x02, 0x2D, 0x00, 0x77, 0x02, 0x9E, 0x00, 0x74, 0x02, 0x2D, 0x00, 0x81, 0x02, 0x39, 0x00, 0x0D, +0x03, 0xF6, 0x00, 0x4D, 0x03, 0xF6, 0x00, 0xDA, 0x03, 0xF6, 0x00, 0x72, 0x03, 0xF6, 0x00, 0x53, +0x03, 0xF6, 0x00, 0x2B, 0x03, 0xF6, 0x00, 0x4D, 0x03, 0xF6, 0x00, 0x4D, 0x03, 0xF6, 0x00, 0x60, +0x03, 0xF6, 0x00, 0x4D, 0x03, 0xF6, 0x00, 0x4D, 0x02, 0x2D, 0x00, 0x81, 0x02, 0x2D, 0x00, 0x77, +0x03, 0xF6, 0x00, 0x57, 0x03, 0xF6, 0x00, 0x57, 0x03, 0xF6, 0x00, 0x57, 0x02, 0xEC, 0x00, 0x84, +0x07, 0xE3, 0x00, 0x64, 0x06, 0x04, 0xFF, 0x38, 0x04, 0xC3, 0xFF, 0x9C, 0x05, 0x77, 0x00, 0x64, +0x05, 0xEE, 0x00, 0x00, 0x04, 0x7F, 0x00, 0x00, 0x04, 0x37, 0x00, 0x00, 0x05, 0xC7, 0xFF, 0x9C, +0x06, 0x2B, 0x00, 0x00, 0x02, 0x91, 0xFE, 0xD4, 0x02, 0x91, 0x00, 0x00, 0x05, 0x66, 0x00, 0x00, +0x04, 0x68, 0x00, 0x00, 0x07, 0x06, 0x00, 0x00, 0x06, 0x12, 0x00, 0x00, 0x06, 0x4E, 0x00, 0x00, +0x04, 0x60, 0x00, 0x00, 0x06, 0x4E, 0x00, 0x00, 0x05, 0x03, 0x00, 0x00, 0x04, 0x3D, 0x00, 0x00, +0x05, 0x46, 0x00, 0x00, 0x05, 0xDD, 0x00, 0x00, 0x05, 0xB0, 0x00, 0x00, 0x07, 0xEE, 0x00, 0x00, +0x05, 0x46, 0x00, 0x00, 0x04, 0xD1, 0x00, 0x00, 0x04, 0x64, 0x00, 0x00, 0x02, 0xF6, 0x00, 0x00, +0x02, 0x39, 0x00, 0x00, 0x02, 0xF6, 0x00, 0x00, 0x03, 0xF6, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, +0x04, 0x00, 0x00, 0xD4, 0x03, 0x9A, 0x00, 0x00, 0x03, 0xE3, 0x00, 0x00, 0x03, 0x89, 0x00, 0x00, +0x04, 0x10, 0x00, 0x00, 0x03, 0x8D, 0x00, 0x00, 0x02, 0x2F, 0x00, 0x00, 0x03, 0x83, 0x00, 0x00, +0x04, 0x50, 0x00, 0x00, 0x02, 0x02, 0x00, 0x00, 0x01, 0xFE, 0x00, 0x00, 0x04, 0x02, 0x00, 0x00, +0x02, 0x0A, 0x00, 0x00, 0x06, 0x21, 0x00, 0x00, 0x04, 0x54, 0x00, 0x00, 0x03, 0xF2, 0x00, 0x00, +0x03, 0xF2, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0xB4, 0x00, 0x00, 0x02, 0xBE, 0x00, 0x00, +0x02, 0xA2, 0x00, 0x00, 0x04, 0x23, 0x00, 0x00, 0x03, 0xE1, 0x00, 0x00, 0x05, 0x87, 0x00, 0x00, +0x03, 0xF2, 0x00, 0x00, 0x03, 0x64, 0x00, 0x00, 0x02, 0xD7, 0x00, 0x00, 0x03, 0xF6, 0x00, 0xF0, +0x03, 0xF6, 0x01, 0xAB, 0x03, 0xF6, 0x00, 0x82, 0x03, 0xF6, 0x00, 0x5E, 0x02, 0xA0, 0x00, 0x00, +0x04, 0x73, 0x00, 0x00, 0x03, 0xF6, 0x00, 0x4C, 0x03, 0xF6, 0x00, 0x7A, 0x03, 0xF6, 0xFF, 0xEA, +0x03, 0xF6, 0x01, 0xAB, 0x03, 0xF6, 0x00, 0xAA, 0x04, 0x00, 0x00, 0xD1, 0x06, 0x8A, 0x00, 0x64, +0x02, 0x88, 0x00, 0x00, 0x03, 0xB0, 0x00, 0xAE, 0x03, 0xF6, 0x00, 0x57, 0x06, 0x8A, 0x00, 0x64, +0x04, 0x00, 0x00, 0xFE, 0x02, 0xA2, 0x00, 0x3C, 0x03, 0xF6, 0x00, 0x57, 0x03, 0xF6, 0x00, 0x00, +0x03, 0xF6, 0x00, 0x00, 0x04, 0x00, 0x01, 0x3C, 0x04, 0x9C, 0x00, 0x00, 0x04, 0x00, 0x00, 0x5D, +0x01, 0xFC, 0x00, 0x90, 0x04, 0x00, 0x01, 0x68, 0x03, 0xF6, 0x00, 0x00, 0x05, 0xF2, 0x00, 0x00, +0x03, 0xB0, 0x00, 0x65, 0x06, 0xAC, 0x00, 0x00, 0x09, 0x42, 0x00, 0x00, 0x06, 0xAC, 0x00, 0x00, +0x02, 0xEC, 0x00, 0x00, 0x06, 0x04, 0x00, 0x00, 0x06, 0x04, 0x00, 0x00, 0x06, 0x04, 0x00, 0x00, +0x06, 0x04, 0x00, 0x00, 0x06, 0x04, 0x00, 0x00, 0x06, 0x04, 0x00, 0x00, 0x08, 0x2A, 0x00, 0x00, +0x05, 0x77, 0x00, 0x00, 0x04, 0x7F, 0x00, 0x00, 0x04, 0x7F, 0x00, 0x00, 0x04, 0x7F, 0x00, 0x00, +0x04, 0x7F, 0x00, 0x00, 0x02, 0x91, 0x00, 0x00, 0x02, 0x91, 0x00, 0x00, 0x02, 0x91, 0x00, 0x00, +0x02, 0x91, 0x00, 0x00, 0x05, 0xEE, 0x00, 0x00, 0x06, 0x12, 0x00, 0x00, 0x06, 0x4E, 0x00, 0x00, +0x06, 0x4E, 0x00, 0x00, 0x06, 0x4E, 0x00, 0x00, 0x06, 0x4E, 0x00, 0x00, 0x06, 0x4E, 0x00, 0x00, +0x03, 0xF6, 0x00, 0xA1, 0x06, 0x4E, 0x00, 0x00, 0x05, 0xDD, 0x00, 0x00, 0x05, 0xDD, 0x00, 0x00, +0x05, 0xDD, 0x00, 0x00, 0x05, 0xDD, 0x00, 0x00, 0x04, 0xD1, 0x00, 0x00, 0x04, 0x60, 0x00, 0x00, +0x04, 0xE3, 0x00, 0x00, 0x03, 0x9A, 0x00, 0x00, 0x03, 0x9A, 0x00, 0x00, 0x03, 0x9A, 0x00, 0x00, +0x03, 0x9A, 0x00, 0x00, 0x03, 0x9A, 0x00, 0x00, 0x03, 0x9A, 0x00, 0x00, 0x05, 0xAB, 0x00, 0x00, +0x03, 0x89, 0x00, 0x00, 0x03, 0x8D, 0x00, 0x00, 0x03, 0x8D, 0x00, 0x00, 0x03, 0x8D, 0x00, 0x00, +0x03, 0x8D, 0x00, 0x00, 0x02, 0x02, 0x00, 0x00, 0x02, 0x02, 0x00, 0x00, 0x02, 0x02, 0x00, 0x00, +0x02, 0x02, 0x00, 0x00, 0x04, 0x73, 0x00, 0x00, 0x04, 0x54, 0x00, 0x00, 0x03, 0xF2, 0x00, 0x00, +0x03, 0xF2, 0x00, 0x00, 0x03, 0xF2, 0x00, 0x00, 0x03, 0xF2, 0x00, 0x00, 0x03, 0xF2, 0x00, 0x00, +0x03, 0xF6, 0x00, 0x57, 0x03, 0xF2, 0x00, 0x00, 0x04, 0x23, 0x00, 0x00, 0x04, 0x23, 0x00, 0x00, +0x04, 0x23, 0x00, 0x00, 0x04, 0x23, 0x00, 0x00, 0x03, 0x64, 0x00, 0x00, 0x03, 0xF2, 0x00, 0x00, +0x03, 0x64, 0x00, 0x00, 0x02, 0x02, 0x00, 0x13, 0x00, 0x00, 0xFE, 0x1A, 0x00, 0x00, 0xFE, 0x1A, +0x00, 0x00, 0xFD, 0x90, 0x00, 0x00, 0xFD, 0x9C, 0x00, 0x00, 0xFD, 0xF2, 0x00, 0x00, 0xFE, 0x7C, +0x00, 0x00, 0xFD, 0xA5, 0x00, 0x00, 0xFE, 0x56, 0x00, 0x00, 0xFD, 0x90, 0x00, 0x00, 0xFE, 0x29, +0x04, 0x54, 0x00, 0x38, 0x08, 0x00, 0x00, 0x00, 0x02, 0x2D, 0x00, 0xBA, 0x02, 0x2D, 0x00, 0x77, +0x02, 0x2D, 0x00, 0x77, 0x03, 0x8E, 0x00, 0xBA, 0x03, 0x8E, 0x00, 0x77, 0x03, 0x8E, 0x00, 0x77, +0x03, 0xF6, 0x00, 0x47, 0x03, 0xF6, 0x00, 0x46, 0x04, 0x00, 0x00, 0xD8, 0x08, 0x00, 0x00, 0x81, +0x02, 0x77, 0x00, 0xAE, 0x02, 0x77, 0x00, 0x65, 0x01, 0x56, 0xFE, 0xAA, 0x03, 0xF6, 0x00, 0x30, +0x03, 0xF6, 0x00, 0x4C, 0x07, 0xEC, 0x00, 0x30, 0x03, 0xF6, 0xFF, 0xD4, 0x08, 0xDF, 0x00, 0x00, +0x05, 0xD9, 0x00, 0x00, 0x03, 0xF6, 0x00, 0x4D, 0x04, 0x39, 0x00, 0x06, 0x05, 0xEB, 0x00, 0x30, +0x04, 0xB6, 0x00, 0x78, 0x03, 0xF6, 0x00, 0x57, 0x03, 0xF6, 0x00, 0x11, 0x03, 0xF6, 0x00, 0x42, +0x02, 0x99, 0xFF, 0xB8, 0x03, 0xF6, 0x00, 0x5E, 0x03, 0xF6, 0x00, 0x57, 0x03, 0xF6, 0x00, 0x57, +0x04, 0x31, 0x00, 0x00, 0x04, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, +0x00, 0x00, 0x00, 0x1C, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x4C, 0x00, 0x03, 0x00, 0x01, +0x00, 0x00, 0x00, 0x1C, 0x00, 0x04, 0x01, 0x30, 0x00, 0x00, 0x00, 0x46, 0x00, 0x40, 0x00, 0x05, +0x00, 0x06, 0x00, 0x7E, 0x00, 0xA0, 0x00, 0xAC, 0x00, 0xAD, 0x00, 0xFF, 0x01, 0x31, 0x03, 0x04, +0x03, 0x08, 0x03, 0x0A, 0x03, 0x0C, 0x03, 0x27, 0x20, 0x14, 0x20, 0x1A, 0x20, 0x1E, 0x20, 0x22, +0x20, 0x26, 0x20, 0x3A, 0x20, 0x44, 0x20, 0xA4, 0x20, 0xA7, 0x20, 0xAC, 0x21, 0x16, 0x21, 0x22, +0x22, 0x02, 0x22, 0x06, 0x22, 0x0F, 0x22, 0x12, 0x22, 0x15, 0x22, 0x1A, 0x22, 0x1E, 0x22, 0x2B, +0x22, 0x48, 0x22, 0x65, 0xFB, 0x02, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x20, 0x00, 0xA0, 0x00, 0xA1, +0x00, 0xAD, 0x00, 0xAE, 0x01, 0x31, 0x03, 0x00, 0x03, 0x07, 0x03, 0x0A, 0x03, 0x0C, 0x03, 0x27, +0x20, 0x13, 0x20, 0x18, 0x20, 0x1C, 0x20, 0x20, 0x20, 0x26, 0x20, 0x39, 0x20, 0x44, 0x20, 0xA3, +0x20, 0xA7, 0x20, 0xAC, 0x21, 0x16, 0x21, 0x22, 0x22, 0x02, 0x22, 0x06, 0x22, 0x0F, 0x22, 0x11, +0x22, 0x15, 0x22, 0x19, 0x22, 0x1E, 0x22, 0x2B, 0x22, 0x48, 0x22, 0x64, 0xFB, 0x01, 0xFF, 0xFF, +0xFF, 0xE1, 0x00, 0x00, 0xFF, 0xBF, 0x00, 0x00, 0xFF, 0xBE, 0xFF, 0x8D, 0xFD, 0xBF, 0xFD, 0xBD, +0xFD, 0xBC, 0xFD, 0xBB, 0xFD, 0xA1, 0xE0, 0xB6, 0xE0, 0xB3, 0xE0, 0xB2, 0xE0, 0xB1, 0xE0, 0xAE, +0xE0, 0x9C, 0xE0, 0x93, 0xE0, 0x35, 0xE0, 0x33, 0xE0, 0x2F, 0xDF, 0xC6, 0xDF, 0xBB, 0xDE, 0xDC, +0xDE, 0xD9, 0xDE, 0xD1, 0xDE, 0xD0, 0xDE, 0xC2, 0x00, 0x00, 0xDE, 0xC6, 0xDE, 0xBA, 0xDE, 0x9E, +0xDE, 0x83, 0x05, 0xE8, 0x00, 0x01, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0E, +0x00, 0x75, 0x00, 0xE3, 0x00, 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, +0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, +0x17, 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, +0x27, 0x28, 0x29, 0x2A, 0x2B, 0x2C, 0x2D, 0x2E, 0x2F, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, +0x37, 0x38, 0x39, 0x3A, 0x3B, 0x3C, 0x3D, 0x3E, 0x3F, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, +0x47, 0x48, 0x49, 0x4A, 0x4B, 0x4C, 0x4D, 0x4E, 0x4F, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, +0x57, 0x58, 0x59, 0x5A, 0x5B, 0x5C, 0x5D, 0x5E, 0x5F, 0x00, 0x82, 0x83, 0x85, 0x87, 0x8F, 0x94, +0x9A, 0x9F, 0x9E, 0xA0, 0xA2, 0xA1, 0xA3, 0xA5, 0xA7, 0xA6, 0xA8, 0xA9, 0xAB, 0xAA, 0xAC, 0xAD, +0xAF, 0xB1, 0xB0, 0xB2, 0xB4, 0xB3, 0xB8, 0xB7, 0xB9, 0xBA, 0xD1, 0x6E, 0x61, 0x62, 0x66, 0xD3, +0x74, 0x9D, 0x6C, 0x68, 0xDD, 0x72, 0x67, 0x00, 0x84, 0x96, 0xE4, 0x6F, 0xE7, 0xE8, 0x64, 0x73, +0xDE, 0xE1, 0xE0, 0x00, 0xE5, 0x69, 0x78, 0x00, 0xA4, 0xB6, 0x7D, 0x60, 0x6B, 0xE3, 0x00, 0xE6, +0xDF, 0x6A, 0x79, 0xD4, 0x01, 0x7E, 0x81, 0x93, 0x00, 0x00, 0xC9, 0xCA, 0xCE, 0xCF, 0xCB, 0xCC, +0xB5, 0x00, 0xBD, 0x00, 0xD7, 0x63, 0xD5, 0xD6, 0xE9, 0xEA, 0xD2, 0x75, 0xCD, 0xD0, 0x00, 0x80, +0x88, 0x7F, 0x89, 0x86, 0x8B, 0x8C, 0x8D, 0x8A, 0x91, 0x92, 0x00, 0x90, 0x98, 0x99, 0x97, 0xBE, +0x00, 0x00, 0x6D, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0xB0, 0x00, 0x2C, 0x20, +0xB0, 0x00, 0x55, 0x58, 0x45, 0x59, 0x20, 0x20, 0x4B, 0xB8, 0x00, 0x0E, 0x51, 0x4B, 0xB0, 0x06, +0x53, 0x5A, 0x58, 0xB0, 0x34, 0x1B, 0xB0, 0x28, 0x59, 0x60, 0x66, 0x20, 0x8A, 0x55, 0x58, 0xB0, +0x02, 0x25, 0x61, 0xB9, 0x08, 0x00, 0x08, 0x00, 0x63, 0x63, 0x23, 0x62, 0x1B, 0x21, 0x21, 0xB0, +0x00, 0x59, 0xB0, 0x00, 0x43, 0x23, 0x44, 0xB2, 0x00, 0x01, 0x00, 0x43, 0x60, 0x42, 0x2D, 0xB0, +0x01, 0x2C, 0xB0, 0x20, 0x60, 0x66, 0x2D, 0xB0, 0x02, 0x2C, 0x23, 0x21, 0x23, 0x21, 0x2D, 0xB0, +0x03, 0x2C, 0x20, 0x64, 0xB3, 0x03, 0x14, 0x15, 0x00, 0x42, 0x43, 0xB0, 0x13, 0x43, 0x20, 0x60, +0x60, 0x42, 0xB1, 0x02, 0x14, 0x43, 0x42, 0xB1, 0x25, 0x03, 0x43, 0xB0, 0x02, 0x43, 0x54, 0x78, +0x20, 0xB0, 0x0C, 0x23, 0xB0, 0x02, 0x43, 0x43, 0x61, 0x64, 0xB0, 0x04, 0x50, 0x78, 0xB2, 0x02, +0x02, 0x02, 0x43, 0x60, 0x42, 0xB0, 0x21, 0x65, 0x1C, 0x21, 0xB0, 0x02, 0x43, 0x43, 0xB2, 0x0E, +0x15, 0x01, 0x42, 0x1C, 0x20, 0xB0, 0x02, 0x43, 0x23, 0x42, 0xB2, 0x13, 0x01, 0x13, 0x43, 0x60, +0x42, 0x23, 0xB0, 0x00, 0x50, 0x58, 0x65, 0x59, 0xB2, 0x16, 0x01, 0x02, 0x43, 0x60, 0x42, 0x2D, +0xB0, 0x04, 0x2C, 0xB0, 0x03, 0x2B, 0xB0, 0x15, 0x43, 0x58, 0x23, 0x21, 0x23, 0x21, 0xB0, 0x16, +0x43, 0x43, 0x23, 0xB0, 0x00, 0x50, 0x58, 0x65, 0x59, 0x1B, 0x20, 0x64, 0x20, 0xB0, 0xC0, 0x50, +0xB0, 0x04, 0x26, 0x5A, 0xB2, 0x28, 0x01, 0x0D, 0x43, 0x45, 0x63, 0x45, 0xB0, 0x06, 0x45, 0x58, +0x21, 0xB0, 0x03, 0x25, 0x59, 0x52, 0x5B, 0x58, 0x21, 0x23, 0x21, 0x1B, 0x8A, 0x58, 0x20, 0xB0, +0x50, 0x50, 0x58, 0x21, 0xB0, 0x40, 0x59, 0x1B, 0x20, 0xB0, 0x38, 0x50, 0x58, 0x21, 0xB0, 0x38, +0x59, 0x59, 0x20, 0xB1, 0x01, 0x0D, 0x43, 0x45, 0x63, 0x45, 0x61, 0x64, 0xB0, 0x28, 0x50, 0x58, +0x21, 0xB1, 0x01, 0x0D, 0x43, 0x45, 0x63, 0x45, 0x20, 0xB0, 0x30, 0x50, 0x58, 0x21, 0xB0, 0x30, +0x59, 0x1B, 0x20, 0xB0, 0xC0, 0x50, 0x58, 0x20, 0x66, 0x20, 0x8A, 0x8A, 0x61, 0x20, 0xB0, 0x0A, +0x50, 0x58, 0x60, 0x1B, 0x20, 0xB0, 0x20, 0x50, 0x58, 0x21, 0xB0, 0x0A, 0x60, 0x1B, 0x20, 0xB0, +0x36, 0x50, 0x58, 0x21, 0xB0, 0x36, 0x60, 0x1B, 0x60, 0x59, 0x59, 0x59, 0x1B, 0xB0, 0x02, 0x25, +0xB0, 0x0C, 0x43, 0x63, 0xB0, 0x00, 0x52, 0x58, 0xB0, 0x00, 0x4B, 0xB0, 0x0A, 0x50, 0x58, 0x21, +0xB0, 0x0C, 0x43, 0x1B, 0x4B, 0xB0, 0x1E, 0x50, 0x58, 0x21, 0xB0, 0x1E, 0x4B, 0x61, 0xB8, 0x10, +0x00, 0x63, 0xB0, 0x0C, 0x43, 0x63, 0xB8, 0x05, 0x00, 0x62, 0x59, 0x59, 0x64, 0x61, 0x59, 0xB0, +0x01, 0x2B, 0x59, 0x59, 0x23, 0xB0, 0x00, 0x50, 0x58, 0x65, 0x59, 0x59, 0x20, 0x64, 0xB0, 0x16, +0x43, 0x23, 0x42, 0x59, 0x2D, 0xB0, 0x05, 0x2C, 0x20, 0x45, 0x20, 0xB0, 0x04, 0x25, 0x61, 0x64, +0x20, 0xB0, 0x07, 0x43, 0x50, 0x58, 0xB0, 0x07, 0x23, 0x42, 0xB0, 0x08, 0x23, 0x42, 0x1B, 0x21, +0x21, 0x59, 0xB0, 0x01, 0x60, 0x2D, 0xB0, 0x06, 0x2C, 0x23, 0x21, 0x23, 0x21, 0xB0, 0x03, 0x2B, +0x20, 0x64, 0xB1, 0x07, 0x62, 0x42, 0x20, 0xB0, 0x08, 0x23, 0x42, 0xB0, 0x06, 0x45, 0x58, 0x1B, +0xB1, 0x01, 0x0D, 0x43, 0x45, 0x63, 0xB1, 0x01, 0x0D, 0x43, 0xB0, 0x01, 0x60, 0x45, 0x63, 0xB0, +0x05, 0x2A, 0x21, 0x20, 0xB0, 0x08, 0x43, 0x20, 0x8A, 0x20, 0x8A, 0xB0, 0x01, 0x2B, 0xB1, 0x30, +0x05, 0x25, 0xB0, 0x04, 0x26, 0x51, 0x58, 0x60, 0x50, 0x1B, 0x61, 0x52, 0x59, 0x58, 0x23, 0x59, +0x21, 0x59, 0x20, 0xB0, 0x40, 0x53, 0x58, 0xB0, 0x01, 0x2B, 0x1B, 0x21, 0xB0, 0x40, 0x59, 0x23, +0xB0, 0x00, 0x50, 0x58, 0x65, 0x59, 0x2D, 0xB0, 0x07, 0x2C, 0xB0, 0x09, 0x43, 0x2B, 0xB2, 0x00, +0x02, 0x00, 0x43, 0x60, 0x42, 0x2D, 0xB0, 0x08, 0x2C, 0xB0, 0x09, 0x23, 0x42, 0x23, 0x20, 0xB0, +0x00, 0x23, 0x42, 0x61, 0xB0, 0x02, 0x62, 0x66, 0xB0, 0x01, 0x63, 0xB0, 0x01, 0x60, 0xB0, 0x07, +0x2A, 0x2D, 0xB0, 0x09, 0x2C, 0x20, 0x20, 0x45, 0x20, 0xB0, 0x0E, 0x43, 0x63, 0xB8, 0x04, 0x00, +0x62, 0x20, 0xB0, 0x00, 0x50, 0x58, 0xB0, 0x40, 0x60, 0x59, 0x66, 0xB0, 0x01, 0x63, 0x60, 0x44, +0xB0, 0x01, 0x60, 0x2D, 0xB0, 0x0A, 0x2C, 0xB2, 0x09, 0x0E, 0x00, 0x43, 0x45, 0x42, 0x2A, 0x21, +0xB2, 0x00, 0x01, 0x00, 0x43, 0x60, 0x42, 0x2D, 0xB0, 0x0B, 0x2C, 0xB0, 0x00, 0x43, 0x23, 0x44, +0xB2, 0x00, 0x01, 0x00, 0x43, 0x60, 0x42, 0x2D, 0xB0, 0x0C, 0x2C, 0x20, 0x20, 0x45, 0x20, 0xB0, +0x01, 0x2B, 0x23, 0xB0, 0x00, 0x43, 0xB0, 0x04, 0x25, 0x60, 0x20, 0x45, 0x8A, 0x23, 0x61, 0x20, +0x64, 0x20, 0xB0, 0x20, 0x50, 0x58, 0x21, 0xB0, 0x00, 0x1B, 0xB0, 0x30, 0x50, 0x58, 0xB0, 0x20, +0x1B, 0xB0, 0x40, 0x59, 0x59, 0x23, 0xB0, 0x00, 0x50, 0x58, 0x65, 0x59, 0xB0, 0x03, 0x25, 0x23, +0x61, 0x44, 0x44, 0xB0, 0x01, 0x60, 0x2D, 0xB0, 0x0D, 0x2C, 0x20, 0x20, 0x45, 0x20, 0xB0, 0x01, +0x2B, 0x23, 0xB0, 0x00, 0x43, 0xB0, 0x04, 0x25, 0x60, 0x20, 0x45, 0x8A, 0x23, 0x61, 0x20, 0x64, +0xB0, 0x24, 0x50, 0x58, 0xB0, 0x00, 0x1B, 0xB0, 0x40, 0x59, 0x23, 0xB0, 0x00, 0x50, 0x58, 0x65, +0x59, 0xB0, 0x03, 0x25, 0x23, 0x61, 0x44, 0x44, 0xB0, 0x01, 0x60, 0x2D, 0xB0, 0x0E, 0x2C, 0x20, +0xB0, 0x00, 0x23, 0x42, 0xB3, 0x0D, 0x0C, 0x00, 0x03, 0x45, 0x50, 0x58, 0x21, 0x1B, 0x23, 0x21, +0x59, 0x2A, 0x21, 0x2D, 0xB0, 0x0F, 0x2C, 0xB1, 0x02, 0x02, 0x45, 0xB0, 0x64, 0x61, 0x44, 0x2D, +0xB0, 0x10, 0x2C, 0xB0, 0x01, 0x60, 0x20, 0x20, 0xB0, 0x0F, 0x43, 0x4A, 0xB0, 0x00, 0x50, 0x58, +0x20, 0xB0, 0x0F, 0x23, 0x42, 0x59, 0xB0, 0x10, 0x43, 0x4A, 0xB0, 0x00, 0x52, 0x58, 0x20, 0xB0, +0x10, 0x23, 0x42, 0x59, 0x2D, 0xB0, 0x11, 0x2C, 0x20, 0xB0, 0x10, 0x62, 0x66, 0xB0, 0x01, 0x63, +0x20, 0xB8, 0x04, 0x00, 0x63, 0x8A, 0x23, 0x61, 0xB0, 0x11, 0x43, 0x60, 0x20, 0x8A, 0x60, 0x20, +0xB0, 0x11, 0x23, 0x42, 0x23, 0x2D, 0xB0, 0x12, 0x2C, 0x4B, 0x54, 0x58, 0xB1, 0x04, 0x64, 0x44, +0x59, 0x24, 0xB0, 0x0D, 0x65, 0x23, 0x78, 0x2D, 0xB0, 0x13, 0x2C, 0x4B, 0x51, 0x58, 0x4B, 0x53, +0x58, 0xB1, 0x04, 0x64, 0x44, 0x59, 0x1B, 0x21, 0x59, 0x24, 0xB0, 0x13, 0x65, 0x23, 0x78, 0x2D, +0xB0, 0x14, 0x2C, 0xB1, 0x00, 0x12, 0x43, 0x55, 0x58, 0xB1, 0x12, 0x12, 0x43, 0xB0, 0x01, 0x61, +0x42, 0xB0, 0x11, 0x2B, 0x59, 0xB0, 0x00, 0x43, 0xB0, 0x02, 0x25, 0x42, 0xB1, 0x0F, 0x02, 0x25, +0x42, 0xB1, 0x10, 0x02, 0x25, 0x42, 0xB0, 0x01, 0x16, 0x23, 0x20, 0xB0, 0x03, 0x25, 0x50, 0x58, +0xB1, 0x01, 0x00, 0x43, 0x60, 0xB0, 0x04, 0x25, 0x42, 0x8A, 0x8A, 0x20, 0x8A, 0x23, 0x61, 0xB0, +0x10, 0x2A, 0x21, 0x23, 0xB0, 0x01, 0x61, 0x20, 0x8A, 0x23, 0x61, 0xB0, 0x10, 0x2A, 0x21, 0x1B, +0xB1, 0x01, 0x00, 0x43, 0x60, 0xB0, 0x02, 0x25, 0x42, 0xB0, 0x02, 0x25, 0x61, 0xB0, 0x10, 0x2A, +0x21, 0x59, 0xB0, 0x0F, 0x43, 0x47, 0xB0, 0x10, 0x43, 0x47, 0x60, 0xB0, 0x02, 0x62, 0x20, 0xB0, +0x00, 0x50, 0x58, 0xB0, 0x40, 0x60, 0x59, 0x66, 0xB0, 0x01, 0x63, 0x20, 0xB0, 0x0E, 0x43, 0x63, +0xB8, 0x04, 0x00, 0x62, 0x20, 0xB0, 0x00, 0x50, 0x58, 0xB0, 0x40, 0x60, 0x59, 0x66, 0xB0, 0x01, +0x63, 0x60, 0xB1, 0x00, 0x00, 0x13, 0x23, 0x44, 0xB0, 0x01, 0x43, 0xB0, 0x00, 0x3E, 0xB2, 0x01, +0x01, 0x01, 0x43, 0x60, 0x42, 0x2D, 0xB0, 0x15, 0x2C, 0x00, 0xB1, 0x00, 0x02, 0x45, 0x54, 0x58, +0xB0, 0x12, 0x23, 0x42, 0x20, 0x45, 0xB0, 0x0E, 0x23, 0x42, 0xB0, 0x0D, 0x23, 0xB0, 0x01, 0x60, +0x42, 0x20, 0x60, 0xB7, 0x18, 0x18, 0x01, 0x00, 0x11, 0x00, 0x13, 0x00, 0x42, 0x42, 0x42, 0x8A, +0x60, 0x20, 0xB0, 0x14, 0x23, 0x42, 0xB0, 0x01, 0x61, 0xB1, 0x14, 0x08, 0x2B, 0xB0, 0x8B, 0x2B, +0x1B, 0x22, 0x59, 0x2D, 0xB0, 0x16, 0x2C, 0xB1, 0x00, 0x15, 0x2B, 0x2D, 0xB0, 0x17, 0x2C, 0xB1, +0x01, 0x15, 0x2B, 0x2D, 0xB0, 0x18, 0x2C, 0xB1, 0x02, 0x15, 0x2B, 0x2D, 0xB0, 0x19, 0x2C, 0xB1, +0x03, 0x15, 0x2B, 0x2D, 0xB0, 0x1A, 0x2C, 0xB1, 0x04, 0x15, 0x2B, 0x2D, 0xB0, 0x1B, 0x2C, 0xB1, +0x05, 0x15, 0x2B, 0x2D, 0xB0, 0x1C, 0x2C, 0xB1, 0x06, 0x15, 0x2B, 0x2D, 0xB0, 0x1D, 0x2C, 0xB1, +0x07, 0x15, 0x2B, 0x2D, 0xB0, 0x1E, 0x2C, 0xB1, 0x08, 0x15, 0x2B, 0x2D, 0xB0, 0x1F, 0x2C, 0xB1, +0x09, 0x15, 0x2B, 0x2D, 0xB0, 0x2B, 0x2C, 0x23, 0x20, 0xB0, 0x10, 0x62, 0x66, 0xB0, 0x01, 0x63, +0xB0, 0x06, 0x60, 0x4B, 0x54, 0x58, 0x23, 0x20, 0x2E, 0xB0, 0x01, 0x5D, 0x1B, 0x21, 0x21, 0x59, +0x2D, 0xB0, 0x2C, 0x2C, 0x23, 0x20, 0xB0, 0x10, 0x62, 0x66, 0xB0, 0x01, 0x63, 0xB0, 0x16, 0x60, +0x4B, 0x54, 0x58, 0x23, 0x20, 0x2E, 0xB0, 0x01, 0x71, 0x1B, 0x21, 0x21, 0x59, 0x2D, 0xB0, 0x2D, +0x2C, 0x23, 0x20, 0xB0, 0x10, 0x62, 0x66, 0xB0, 0x01, 0x63, 0xB0, 0x26, 0x60, 0x4B, 0x54, 0x58, +0x23, 0x20, 0x2E, 0xB0, 0x01, 0x72, 0x1B, 0x21, 0x21, 0x59, 0x2D, 0xB0, 0x20, 0x2C, 0x00, 0xB0, +0x0F, 0x2B, 0xB1, 0x00, 0x02, 0x45, 0x54, 0x58, 0xB0, 0x12, 0x23, 0x42, 0x20, 0x45, 0xB0, 0x0E, +0x23, 0x42, 0xB0, 0x0D, 0x23, 0xB0, 0x01, 0x60, 0x42, 0x20, 0x60, 0xB0, 0x01, 0x61, 0xB5, 0x18, +0x18, 0x01, 0x00, 0x11, 0x00, 0x42, 0x42, 0x8A, 0x60, 0xB1, 0x14, 0x08, 0x2B, 0xB0, 0x8B, 0x2B, +0x1B, 0x22, 0x59, 0x2D, 0xB0, 0x21, 0x2C, 0xB1, 0x00, 0x20, 0x2B, 0x2D, 0xB0, 0x22, 0x2C, 0xB1, +0x01, 0x20, 0x2B, 0x2D, 0xB0, 0x23, 0x2C, 0xB1, 0x02, 0x20, 0x2B, 0x2D, 0xB0, 0x24, 0x2C, 0xB1, +0x03, 0x20, 0x2B, 0x2D, 0xB0, 0x25, 0x2C, 0xB1, 0x04, 0x20, 0x2B, 0x2D, 0xB0, 0x26, 0x2C, 0xB1, +0x05, 0x20, 0x2B, 0x2D, 0xB0, 0x27, 0x2C, 0xB1, 0x06, 0x20, 0x2B, 0x2D, 0xB0, 0x28, 0x2C, 0xB1, +0x07, 0x20, 0x2B, 0x2D, 0xB0, 0x29, 0x2C, 0xB1, 0x08, 0x20, 0x2B, 0x2D, 0xB0, 0x2A, 0x2C, 0xB1, +0x09, 0x20, 0x2B, 0x2D, 0xB0, 0x2E, 0x2C, 0x20, 0x3C, 0xB0, 0x01, 0x60, 0x2D, 0xB0, 0x2F, 0x2C, +0x20, 0x60, 0xB0, 0x18, 0x60, 0x20, 0x43, 0x23, 0xB0, 0x01, 0x60, 0x43, 0xB0, 0x02, 0x25, 0x61, +0xB0, 0x01, 0x60, 0xB0, 0x2E, 0x2A, 0x21, 0x2D, 0xB0, 0x30, 0x2C, 0xB0, 0x2F, 0x2B, 0xB0, 0x2F, +0x2A, 0x2D, 0xB0, 0x31, 0x2C, 0x20, 0x20, 0x47, 0x20, 0x20, 0xB0, 0x0E, 0x43, 0x63, 0xB8, 0x04, +0x00, 0x62, 0x20, 0xB0, 0x00, 0x50, 0x58, 0xB0, 0x40, 0x60, 0x59, 0x66, 0xB0, 0x01, 0x63, 0x60, +0x23, 0x61, 0x38, 0x23, 0x20, 0x8A, 0x55, 0x58, 0x20, 0x47, 0x20, 0x20, 0xB0, 0x0E, 0x43, 0x63, +0xB8, 0x04, 0x00, 0x62, 0x20, 0xB0, 0x00, 0x50, 0x58, 0xB0, 0x40, 0x60, 0x59, 0x66, 0xB0, 0x01, +0x63, 0x60, 0x23, 0x61, 0x38, 0x1B, 0x21, 0x59, 0x2D, 0xB0, 0x32, 0x2C, 0x00, 0xB1, 0x00, 0x02, +0x45, 0x54, 0x58, 0xB1, 0x0E, 0x06, 0x45, 0x42, 0xB0, 0x01, 0x16, 0xB0, 0x31, 0x2A, 0xB1, 0x05, +0x01, 0x15, 0x45, 0x58, 0x30, 0x59, 0x1B, 0x22, 0x59, 0x2D, 0xB0, 0x33, 0x2C, 0x00, 0xB0, 0x0F, +0x2B, 0xB1, 0x00, 0x02, 0x45, 0x54, 0x58, 0xB1, 0x0E, 0x06, 0x45, 0x42, 0xB0, 0x01, 0x16, 0xB0, +0x31, 0x2A, 0xB1, 0x05, 0x01, 0x15, 0x45, 0x58, 0x30, 0x59, 0x1B, 0x22, 0x59, 0x2D, 0xB0, 0x34, +0x2C, 0x20, 0x35, 0xB0, 0x01, 0x60, 0x2D, 0xB0, 0x35, 0x2C, 0x00, 0xB1, 0x0E, 0x06, 0x45, 0x42, +0xB0, 0x01, 0x45, 0x63, 0xB8, 0x04, 0x00, 0x62, 0x20, 0xB0, 0x00, 0x50, 0x58, 0xB0, 0x40, 0x60, +0x59, 0x66, 0xB0, 0x01, 0x63, 0xB0, 0x01, 0x2B, 0xB0, 0x0E, 0x43, 0x63, 0xB8, 0x04, 0x00, 0x62, +0x20, 0xB0, 0x00, 0x50, 0x58, 0xB0, 0x40, 0x60, 0x59, 0x66, 0xB0, 0x01, 0x63, 0xB0, 0x01, 0x2B, +0xB0, 0x00, 0x16, 0xB4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x3E, 0x23, 0x38, 0xB1, 0x34, 0x01, +0x15, 0x2A, 0x21, 0x2D, 0xB0, 0x36, 0x2C, 0x20, 0x3C, 0x20, 0x47, 0x20, 0xB0, 0x0E, 0x43, 0x63, +0xB8, 0x04, 0x00, 0x62, 0x20, 0xB0, 0x00, 0x50, 0x58, 0xB0, 0x40, 0x60, 0x59, 0x66, 0xB0, 0x01, +0x63, 0x60, 0xB0, 0x00, 0x43, 0x61, 0x38, 0x2D, 0xB0, 0x37, 0x2C, 0x2E, 0x17, 0x3C, 0x2D, 0xB0, +0x38, 0x2C, 0x20, 0x3C, 0x20, 0x47, 0x20, 0xB0, 0x0E, 0x43, 0x63, 0xB8, 0x04, 0x00, 0x62, 0x20, +0xB0, 0x00, 0x50, 0x58, 0xB0, 0x40, 0x60, 0x59, 0x66, 0xB0, 0x01, 0x63, 0x60, 0xB0, 0x00, 0x43, +0x61, 0xB0, 0x01, 0x43, 0x63, 0x38, 0x2D, 0xB0, 0x39, 0x2C, 0xB1, 0x02, 0x00, 0x16, 0x25, 0x20, +0x2E, 0x20, 0x47, 0xB0, 0x00, 0x23, 0x42, 0xB0, 0x02, 0x25, 0x49, 0x8A, 0x8A, 0x47, 0x23, 0x47, +0x23, 0x61, 0x20, 0x58, 0x62, 0x1B, 0x21, 0x59, 0xB0, 0x01, 0x23, 0x42, 0xB2, 0x38, 0x01, 0x01, +0x15, 0x14, 0x2A, 0x2D, 0xB0, 0x3A, 0x2C, 0xB0, 0x00, 0x16, 0xB0, 0x17, 0x23, 0x42, 0xB0, 0x04, +0x25, 0xB0, 0x04, 0x25, 0x47, 0x23, 0x47, 0x23, 0x61, 0xB1, 0x0C, 0x00, 0x42, 0xB0, 0x0B, 0x43, +0x2B, 0x65, 0x8A, 0x2E, 0x23, 0x20, 0x20, 0x3C, 0x8A, 0x38, 0x2D, 0xB0, 0x3B, 0x2C, 0xB0, 0x00, +0x16, 0xB0, 0x17, 0x23, 0x42, 0xB0, 0x04, 0x25, 0xB0, 0x04, 0x25, 0x20, 0x2E, 0x47, 0x23, 0x47, +0x23, 0x61, 0x20, 0xB0, 0x06, 0x23, 0x42, 0xB1, 0x0C, 0x00, 0x42, 0xB0, 0x0B, 0x43, 0x2B, 0x20, +0xB0, 0x60, 0x50, 0x58, 0x20, 0xB0, 0x40, 0x51, 0x58, 0xB3, 0x04, 0x20, 0x05, 0x20, 0x1B, 0xB3, +0x04, 0x26, 0x05, 0x1A, 0x59, 0x42, 0x42, 0x23, 0x20, 0xB0, 0x0A, 0x43, 0x20, 0x8A, 0x23, 0x47, +0x23, 0x47, 0x23, 0x61, 0x23, 0x46, 0x60, 0xB0, 0x06, 0x43, 0xB0, 0x02, 0x62, 0x20, 0xB0, 0x00, +0x50, 0x58, 0xB0, 0x40, 0x60, 0x59, 0x66, 0xB0, 0x01, 0x63, 0x60, 0x20, 0xB0, 0x01, 0x2B, 0x20, +0x8A, 0x8A, 0x61, 0x20, 0xB0, 0x04, 0x43, 0x60, 0x64, 0x23, 0xB0, 0x05, 0x43, 0x61, 0x64, 0x50, +0x58, 0xB0, 0x04, 0x43, 0x61, 0x1B, 0xB0, 0x05, 0x43, 0x60, 0x59, 0xB0, 0x03, 0x25, 0xB0, 0x02, +0x62, 0x20, 0xB0, 0x00, 0x50, 0x58, 0xB0, 0x40, 0x60, 0x59, 0x66, 0xB0, 0x01, 0x63, 0x61, 0x23, +0x20, 0x20, 0xB0, 0x04, 0x26, 0x23, 0x46, 0x61, 0x38, 0x1B, 0x23, 0xB0, 0x0A, 0x43, 0x46, 0xB0, +0x02, 0x25, 0xB0, 0x0A, 0x43, 0x47, 0x23, 0x47, 0x23, 0x61, 0x60, 0x20, 0xB0, 0x06, 0x43, 0xB0, +0x02, 0x62, 0x20, 0xB0, 0x00, 0x50, 0x58, 0xB0, 0x40, 0x60, 0x59, 0x66, 0xB0, 0x01, 0x63, 0x60, +0x23, 0x20, 0xB0, 0x01, 0x2B, 0x23, 0xB0, 0x06, 0x43, 0x60, 0xB0, 0x01, 0x2B, 0xB0, 0x05, 0x25, +0x61, 0xB0, 0x05, 0x25, 0xB0, 0x02, 0x62, 0x20, 0xB0, 0x00, 0x50, 0x58, 0xB0, 0x40, 0x60, 0x59, +0x66, 0xB0, 0x01, 0x63, 0xB0, 0x04, 0x26, 0x61, 0x20, 0xB0, 0x04, 0x25, 0x60, 0x64, 0x23, 0xB0, +0x03, 0x25, 0x60, 0x64, 0x50, 0x58, 0x21, 0x1B, 0x23, 0x21, 0x59, 0x23, 0x20, 0x20, 0xB0, 0x04, +0x26, 0x23, 0x46, 0x61, 0x38, 0x59, 0x2D, 0xB0, 0x3C, 0x2C, 0xB0, 0x00, 0x16, 0xB0, 0x17, 0x23, +0x42, 0x20, 0x20, 0x20, 0xB0, 0x05, 0x26, 0x20, 0x2E, 0x47, 0x23, 0x47, 0x23, 0x61, 0x23, 0x3C, +0x38, 0x2D, 0xB0, 0x3D, 0x2C, 0xB0, 0x00, 0x16, 0xB0, 0x17, 0x23, 0x42, 0x20, 0xB0, 0x0A, 0x23, +0x42, 0x20, 0x20, 0x20, 0x46, 0x23, 0x47, 0xB0, 0x01, 0x2B, 0x23, 0x61, 0x38, 0x2D, 0xB0, 0x3E, +0x2C, 0xB0, 0x00, 0x16, 0xB0, 0x17, 0x23, 0x42, 0xB0, 0x03, 0x25, 0xB0, 0x02, 0x25, 0x47, 0x23, +0x47, 0x23, 0x61, 0xB0, 0x00, 0x54, 0x58, 0x2E, 0x20, 0x3C, 0x23, 0x21, 0x1B, 0xB0, 0x02, 0x25, +0xB0, 0x02, 0x25, 0x47, 0x23, 0x47, 0x23, 0x61, 0x20, 0xB0, 0x05, 0x25, 0xB0, 0x04, 0x25, 0x47, +0x23, 0x47, 0x23, 0x61, 0xB0, 0x06, 0x25, 0xB0, 0x05, 0x25, 0x49, 0xB0, 0x02, 0x25, 0x61, 0xB9, +0x08, 0x00, 0x08, 0x00, 0x63, 0x63, 0x23, 0x20, 0x58, 0x62, 0x1B, 0x21, 0x59, 0x63, 0xB8, 0x04, +0x00, 0x62, 0x20, 0xB0, 0x00, 0x50, 0x58, 0xB0, 0x40, 0x60, 0x59, 0x66, 0xB0, 0x01, 0x63, 0x60, +0x23, 0x2E, 0x23, 0x20, 0x20, 0x3C, 0x8A, 0x38, 0x23, 0x21, 0x59, 0x2D, 0xB0, 0x3F, 0x2C, 0xB0, +0x00, 0x16, 0xB0, 0x17, 0x23, 0x42, 0x20, 0xB0, 0x0A, 0x43, 0x20, 0x2E, 0x47, 0x23, 0x47, 0x23, +0x61, 0x20, 0x60, 0xB0, 0x20, 0x60, 0x66, 0xB0, 0x02, 0x62, 0x20, 0xB0, 0x00, 0x50, 0x58, 0xB0, +0x40, 0x60, 0x59, 0x66, 0xB0, 0x01, 0x63, 0x23, 0x20, 0x20, 0x3C, 0x8A, 0x38, 0x2D, 0xB0, 0x40, +0x2C, 0x23, 0x20, 0x2E, 0x46, 0xB0, 0x02, 0x25, 0x46, 0xB0, 0x17, 0x43, 0x58, 0x50, 0x1B, 0x52, +0x59, 0x58, 0x20, 0x3C, 0x59, 0x2E, 0xB1, 0x30, 0x01, 0x14, 0x2B, 0x2D, 0xB0, 0x41, 0x2C, 0x23, +0x20, 0x2E, 0x46, 0xB0, 0x02, 0x25, 0x46, 0xB0, 0x17, 0x43, 0x58, 0x52, 0x1B, 0x50, 0x59, 0x58, +0x20, 0x3C, 0x59, 0x2E, 0xB1, 0x30, 0x01, 0x14, 0x2B, 0x2D, 0xB0, 0x42, 0x2C, 0x23, 0x20, 0x2E, +0x46, 0xB0, 0x02, 0x25, 0x46, 0xB0, 0x17, 0x43, 0x58, 0x50, 0x1B, 0x52, 0x59, 0x58, 0x20, 0x3C, +0x59, 0x23, 0x20, 0x2E, 0x46, 0xB0, 0x02, 0x25, 0x46, 0xB0, 0x17, 0x43, 0x58, 0x52, 0x1B, 0x50, +0x59, 0x58, 0x20, 0x3C, 0x59, 0x2E, 0xB1, 0x30, 0x01, 0x14, 0x2B, 0x2D, 0xB0, 0x43, 0x2C, 0xB0, +0x3A, 0x2B, 0x23, 0x20, 0x2E, 0x46, 0xB0, 0x02, 0x25, 0x46, 0xB0, 0x17, 0x43, 0x58, 0x50, 0x1B, +0x52, 0x59, 0x58, 0x20, 0x3C, 0x59, 0x2E, 0xB1, 0x30, 0x01, 0x14, 0x2B, 0x2D, 0xB0, 0x44, 0x2C, +0xB0, 0x3B, 0x2B, 0x8A, 0x20, 0x20, 0x3C, 0xB0, 0x06, 0x23, 0x42, 0x8A, 0x38, 0x23, 0x20, 0x2E, +0x46, 0xB0, 0x02, 0x25, 0x46, 0xB0, 0x17, 0x43, 0x58, 0x50, 0x1B, 0x52, 0x59, 0x58, 0x20, 0x3C, +0x59, 0x2E, 0xB1, 0x30, 0x01, 0x14, 0x2B, 0xB0, 0x06, 0x43, 0x2E, 0xB0, 0x30, 0x2B, 0x2D, 0xB0, +0x45, 0x2C, 0xB0, 0x00, 0x16, 0xB0, 0x04, 0x25, 0xB0, 0x04, 0x26, 0x20, 0x20, 0x20, 0x46, 0x23, +0x47, 0x61, 0xB0, 0x0C, 0x23, 0x42, 0x2E, 0x47, 0x23, 0x47, 0x23, 0x61, 0xB0, 0x0B, 0x43, 0x2B, +0x23, 0x20, 0x3C, 0x20, 0x2E, 0x23, 0x38, 0xB1, 0x30, 0x01, 0x14, 0x2B, 0x2D, 0xB0, 0x46, 0x2C, +0xB1, 0x0A, 0x04, 0x25, 0x42, 0xB0, 0x00, 0x16, 0xB0, 0x04, 0x25, 0xB0, 0x04, 0x25, 0x20, 0x2E, +0x47, 0x23, 0x47, 0x23, 0x61, 0x20, 0xB0, 0x06, 0x23, 0x42, 0xB1, 0x0C, 0x00, 0x42, 0xB0, 0x0B, +0x43, 0x2B, 0x20, 0xB0, 0x60, 0x50, 0x58, 0x20, 0xB0, 0x40, 0x51, 0x58, 0xB3, 0x04, 0x20, 0x05, +0x20, 0x1B, 0xB3, 0x04, 0x26, 0x05, 0x1A, 0x59, 0x42, 0x42, 0x23, 0x20, 0x47, 0xB0, 0x06, 0x43, +0xB0, 0x02, 0x62, 0x20, 0xB0, 0x00, 0x50, 0x58, 0xB0, 0x40, 0x60, 0x59, 0x66, 0xB0, 0x01, 0x63, +0x60, 0x20, 0xB0, 0x01, 0x2B, 0x20, 0x8A, 0x8A, 0x61, 0x20, 0xB0, 0x04, 0x43, 0x60, 0x64, 0x23, +0xB0, 0x05, 0x43, 0x61, 0x64, 0x50, 0x58, 0xB0, 0x04, 0x43, 0x61, 0x1B, 0xB0, 0x05, 0x43, 0x60, +0x59, 0xB0, 0x03, 0x25, 0xB0, 0x02, 0x62, 0x20, 0xB0, 0x00, 0x50, 0x58, 0xB0, 0x40, 0x60, 0x59, +0x66, 0xB0, 0x01, 0x63, 0x61, 0xB0, 0x02, 0x25, 0x46, 0x61, 0x38, 0x23, 0x20, 0x3C, 0x23, 0x38, +0x1B, 0x21, 0x20, 0x20, 0x46, 0x23, 0x47, 0xB0, 0x01, 0x2B, 0x23, 0x61, 0x38, 0x21, 0x59, 0xB1, +0x30, 0x01, 0x14, 0x2B, 0x2D, 0xB0, 0x47, 0x2C, 0xB1, 0x00, 0x3A, 0x2B, 0x2E, 0xB1, 0x30, 0x01, +0x14, 0x2B, 0x2D, 0xB0, 0x48, 0x2C, 0xB1, 0x00, 0x3B, 0x2B, 0x21, 0x23, 0x20, 0x20, 0x3C, 0xB0, +0x06, 0x23, 0x42, 0x23, 0x38, 0xB1, 0x30, 0x01, 0x14, 0x2B, 0xB0, 0x06, 0x43, 0x2E, 0xB0, 0x30, +0x2B, 0x2D, 0xB0, 0x49, 0x2C, 0xB0, 0x00, 0x15, 0x20, 0x47, 0xB0, 0x00, 0x23, 0x42, 0xB2, 0x00, +0x01, 0x01, 0x15, 0x14, 0x13, 0x2E, 0xB0, 0x36, 0x2A, 0x2D, 0xB0, 0x4A, 0x2C, 0xB0, 0x00, 0x15, +0x20, 0x47, 0xB0, 0x00, 0x23, 0x42, 0xB2, 0x00, 0x01, 0x01, 0x15, 0x14, 0x13, 0x2E, 0xB0, 0x36, +0x2A, 0x2D, 0xB0, 0x4B, 0x2C, 0xB1, 0x00, 0x01, 0x14, 0x13, 0xB0, 0x37, 0x2A, 0x2D, 0xB0, 0x4C, +0x2C, 0xB0, 0x39, 0x2A, 0x2D, 0xB0, 0x4D, 0x2C, 0xB0, 0x00, 0x16, 0x45, 0x23, 0x20, 0x2E, 0x20, +0x46, 0x8A, 0x23, 0x61, 0x38, 0xB1, 0x30, 0x01, 0x14, 0x2B, 0x2D, 0xB0, 0x4E, 0x2C, 0xB0, 0x0A, +0x23, 0x42, 0xB0, 0x4D, 0x2B, 0x2D, 0xB0, 0x4F, 0x2C, 0xB2, 0x00, 0x00, 0x46, 0x2B, 0x2D, 0xB0, +0x50, 0x2C, 0xB2, 0x00, 0x01, 0x46, 0x2B, 0x2D, 0xB0, 0x51, 0x2C, 0xB2, 0x01, 0x00, 0x46, 0x2B, +0x2D, 0xB0, 0x52, 0x2C, 0xB2, 0x01, 0x01, 0x46, 0x2B, 0x2D, 0xB0, 0x53, 0x2C, 0xB2, 0x00, 0x00, +0x47, 0x2B, 0x2D, 0xB0, 0x54, 0x2C, 0xB2, 0x00, 0x01, 0x47, 0x2B, 0x2D, 0xB0, 0x55, 0x2C, 0xB2, +0x01, 0x00, 0x47, 0x2B, 0x2D, 0xB0, 0x56, 0x2C, 0xB2, 0x01, 0x01, 0x47, 0x2B, 0x2D, 0xB0, 0x57, +0x2C, 0xB3, 0x00, 0x00, 0x00, 0x43, 0x2B, 0x2D, 0xB0, 0x58, 0x2C, 0xB3, 0x00, 0x01, 0x00, 0x43, +0x2B, 0x2D, 0xB0, 0x59, 0x2C, 0xB3, 0x01, 0x00, 0x00, 0x43, 0x2B, 0x2D, 0xB0, 0x5A, 0x2C, 0xB3, +0x01, 0x01, 0x00, 0x43, 0x2B, 0x2D, 0xB0, 0x5B, 0x2C, 0xB3, 0x00, 0x00, 0x01, 0x43, 0x2B, 0x2D, +0xB0, 0x5C, 0x2C, 0xB3, 0x00, 0x01, 0x01, 0x43, 0x2B, 0x2D, 0xB0, 0x5D, 0x2C, 0xB3, 0x01, 0x00, +0x01, 0x43, 0x2B, 0x2D, 0xB0, 0x5E, 0x2C, 0xB3, 0x01, 0x01, 0x01, 0x43, 0x2B, 0x2D, 0xB0, 0x5F, +0x2C, 0xB2, 0x00, 0x00, 0x45, 0x2B, 0x2D, 0xB0, 0x60, 0x2C, 0xB2, 0x00, 0x01, 0x45, 0x2B, 0x2D, +0xB0, 0x61, 0x2C, 0xB2, 0x01, 0x00, 0x45, 0x2B, 0x2D, 0xB0, 0x62, 0x2C, 0xB2, 0x01, 0x01, 0x45, +0x2B, 0x2D, 0xB0, 0x63, 0x2C, 0xB2, 0x00, 0x00, 0x48, 0x2B, 0x2D, 0xB0, 0x64, 0x2C, 0xB2, 0x00, +0x01, 0x48, 0x2B, 0x2D, 0xB0, 0x65, 0x2C, 0xB2, 0x01, 0x00, 0x48, 0x2B, 0x2D, 0xB0, 0x66, 0x2C, +0xB2, 0x01, 0x01, 0x48, 0x2B, 0x2D, 0xB0, 0x67, 0x2C, 0xB3, 0x00, 0x00, 0x00, 0x44, 0x2B, 0x2D, +0xB0, 0x68, 0x2C, 0xB3, 0x00, 0x01, 0x00, 0x44, 0x2B, 0x2D, 0xB0, 0x69, 0x2C, 0xB3, 0x01, 0x00, +0x00, 0x44, 0x2B, 0x2D, 0xB0, 0x6A, 0x2C, 0xB3, 0x01, 0x01, 0x00, 0x44, 0x2B, 0x2D, 0xB0, 0x6B, +0x2C, 0xB3, 0x00, 0x00, 0x01, 0x44, 0x2B, 0x2D, 0xB0, 0x6C, 0x2C, 0xB3, 0x00, 0x01, 0x01, 0x44, +0x2B, 0x2D, 0xB0, 0x6D, 0x2C, 0xB3, 0x01, 0x00, 0x01, 0x44, 0x2B, 0x2D, 0xB0, 0x6E, 0x2C, 0xB3, +0x01, 0x01, 0x01, 0x44, 0x2B, 0x2D, 0xB0, 0x6F, 0x2C, 0xB1, 0x00, 0x3C, 0x2B, 0x2E, 0xB1, 0x30, +0x01, 0x14, 0x2B, 0x2D, 0xB0, 0x70, 0x2C, 0xB1, 0x00, 0x3C, 0x2B, 0xB0, 0x40, 0x2B, 0x2D, 0xB0, +0x71, 0x2C, 0xB1, 0x00, 0x3C, 0x2B, 0xB0, 0x41, 0x2B, 0x2D, 0xB0, 0x72, 0x2C, 0xB0, 0x00, 0x16, +0xB1, 0x00, 0x3C, 0x2B, 0xB0, 0x42, 0x2B, 0x2D, 0xB0, 0x73, 0x2C, 0xB1, 0x01, 0x3C, 0x2B, 0xB0, +0x40, 0x2B, 0x2D, 0xB0, 0x74, 0x2C, 0xB1, 0x01, 0x3C, 0x2B, 0xB0, 0x41, 0x2B, 0x2D, 0xB0, 0x75, +0x2C, 0xB0, 0x00, 0x16, 0xB1, 0x01, 0x3C, 0x2B, 0xB0, 0x42, 0x2B, 0x2D, 0xB0, 0x76, 0x2C, 0xB1, +0x00, 0x3D, 0x2B, 0x2E, 0xB1, 0x30, 0x01, 0x14, 0x2B, 0x2D, 0xB0, 0x77, 0x2C, 0xB1, 0x00, 0x3D, +0x2B, 0xB0, 0x40, 0x2B, 0x2D, 0xB0, 0x78, 0x2C, 0xB1, 0x00, 0x3D, 0x2B, 0xB0, 0x41, 0x2B, 0x2D, +0xB0, 0x79, 0x2C, 0xB1, 0x00, 0x3D, 0x2B, 0xB0, 0x42, 0x2B, 0x2D, 0xB0, 0x7A, 0x2C, 0xB1, 0x01, +0x3D, 0x2B, 0xB0, 0x40, 0x2B, 0x2D, 0xB0, 0x7B, 0x2C, 0xB1, 0x01, 0x3D, 0x2B, 0xB0, 0x41, 0x2B, +0x2D, 0xB0, 0x7C, 0x2C, 0xB1, 0x01, 0x3D, 0x2B, 0xB0, 0x42, 0x2B, 0x2D, 0xB0, 0x7D, 0x2C, 0xB1, +0x00, 0x3E, 0x2B, 0x2E, 0xB1, 0x30, 0x01, 0x14, 0x2B, 0x2D, 0xB0, 0x7E, 0x2C, 0xB1, 0x00, 0x3E, +0x2B, 0xB0, 0x40, 0x2B, 0x2D, 0xB0, 0x7F, 0x2C, 0xB1, 0x00, 0x3E, 0x2B, 0xB0, 0x41, 0x2B, 0x2D, +0xB0, 0x80, 0x2C, 0xB1, 0x00, 0x3E, 0x2B, 0xB0, 0x42, 0x2B, 0x2D, 0xB0, 0x81, 0x2C, 0xB1, 0x01, +0x3E, 0x2B, 0xB0, 0x40, 0x2B, 0x2D, 0xB0, 0x82, 0x2C, 0xB1, 0x01, 0x3E, 0x2B, 0xB0, 0x41, 0x2B, +0x2D, 0xB0, 0x83, 0x2C, 0xB1, 0x01, 0x3E, 0x2B, 0xB0, 0x42, 0x2B, 0x2D, 0xB0, 0x84, 0x2C, 0xB1, +0x00, 0x3F, 0x2B, 0x2E, 0xB1, 0x30, 0x01, 0x14, 0x2B, 0x2D, 0xB0, 0x85, 0x2C, 0xB1, 0x00, 0x3F, +0x2B, 0xB0, 0x40, 0x2B, 0x2D, 0xB0, 0x86, 0x2C, 0xB1, 0x00, 0x3F, 0x2B, 0xB0, 0x41, 0x2B, 0x2D, +0xB0, 0x87, 0x2C, 0xB1, 0x00, 0x3F, 0x2B, 0xB0, 0x42, 0x2B, 0x2D, 0xB0, 0x88, 0x2C, 0xB1, 0x01, +0x3F, 0x2B, 0xB0, 0x40, 0x2B, 0x2D, 0xB0, 0x89, 0x2C, 0xB1, 0x01, 0x3F, 0x2B, 0xB0, 0x41, 0x2B, +0x2D, 0xB0, 0x8A, 0x2C, 0xB1, 0x01, 0x3F, 0x2B, 0xB0, 0x42, 0x2B, 0x2D, 0xB0, 0x8B, 0x2C, 0xB2, +0x0B, 0x00, 0x03, 0x45, 0x50, 0x58, 0xB0, 0x06, 0x1B, 0xB2, 0x04, 0x02, 0x03, 0x45, 0x58, 0x23, +0x21, 0x1B, 0x21, 0x59, 0x59, 0x42, 0x2B, 0xB0, 0x08, 0x65, 0xB0, 0x03, 0x24, 0x50, 0x78, 0xB1, +0x05, 0x01, 0x15, 0x45, 0x58, 0x30, 0x59, 0x2D, 0x00, 0x4B, 0xB8, 0x00, 0xC8, 0x52, 0x58, 0xB1, +0x01, 0x01, 0x8E, 0x59, 0xB0, 0x01, 0xB9, 0x08, 0x00, 0x08, 0x00, 0x63, 0x70, 0xB1, 0x00, 0x07, +0x42, 0xB2, 0x00, 0x01, 0x00, 0x2A, 0xB1, 0x00, 0x07, 0x42, 0xB3, 0x0C, 0x04, 0x01, 0x0A, 0x2A, +0xB1, 0x00, 0x07, 0x42, 0xB3, 0x10, 0x02, 0x01, 0x0A, 0x2A, 0xB1, 0x00, 0x08, 0x42, 0xBA, 0x03, +0x40, 0x00, 0x01, 0x00, 0x0B, 0x2A, 0xB1, 0x00, 0x09, 0x42, 0xBA, 0x00, 0x40, 0x00, 0x01, 0x00, +0x0B, 0x2A, 0xB9, 0x00, 0x03, 0x00, 0x00, 0x44, 0xB1, 0x24, 0x01, 0x88, 0x51, 0x58, 0xB0, 0x40, +0x88, 0x58, 0xB9, 0x00, 0x03, 0x00, 0x64, 0x44, 0xB1, 0x28, 0x01, 0x88, 0x51, 0x58, 0xB8, 0x08, +0x00, 0x88, 0x58, 0xB9, 0x00, 0x03, 0x00, 0x00, 0x44, 0x59, 0x1B, 0xB1, 0x27, 0x01, 0x88, 0x51, +0x58, 0xBA, 0x08, 0x80, 0x00, 0x01, 0x04, 0x40, 0x88, 0x63, 0x54, 0x58, 0xB9, 0x00, 0x03, 0x00, +0x00, 0x44, 0x59, 0x59, 0x59, 0x59, 0x59, 0xB3, 0x0E, 0x02, 0x01, 0x0E, 0x2A, 0xB8, 0x01, 0xFF, +0x85, 0xB0, 0x04, 0x8D, 0xB1, 0x02, 0x00, 0x44, 0xB3, 0x05, 0x64, 0x06, 0x00, 0x44, 0x44, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0x32, 0x00, 0x32, 0x00, 0x32, 0x07, 0x6C, 0x03, 0x84, +0x08, 0x78, 0x03, 0x84, 0x00, 0x00, 0x00, 0x7C, 0x00, 0x7C, 0x00, 0xC6, 0x01, 0x02, 0x01, 0x84, +0x02, 0x1E, 0x03, 0xB4, 0x04, 0x84, 0x04, 0xAC, 0x04, 0xD6, 0x05, 0x00, 0x05, 0xBA, 0x05, 0xEA, +0x06, 0x10, 0x06, 0x34, 0x06, 0x62, 0x06, 0x78, 0x06, 0xD6, 0x07, 0x0C, 0x07, 0x54, 0x07, 0xB2, +0x08, 0x06, 0x08, 0x6E, 0x08, 0xC6, 0x09, 0x04, 0x09, 0x92, 0x09, 0xEA, 0x0A, 0x38, 0x0A, 0x84, +0x0A, 0x9C, 0x0A, 0xC2, 0x0A, 0xDA, 0x0B, 0x36, 0x0B, 0xE8, 0x0C, 0xC0, 0x0D, 0x4C, 0x0D, 0x8A, +0x0D, 0xCE, 0x0F, 0xBE, 0x10, 0x38, 0x10, 0xFE, 0x11, 0x6E, 0x11, 0xB0, 0x12, 0x16, 0x12, 0x16, +0x12, 0x16, 0x12, 0x16, 0x12, 0x16, 0x12, 0x16, 0x12, 0x16, 0x12, 0x16, 0x12, 0x16, 0x12, 0x16, +0x12, 0x16, 0x12, 0x16, 0x12, 0x16, 0x12, 0x16, 0x12, 0x16, 0x12, 0x16, 0x12, 0x16, 0x12, 0x16, +0x12, 0x16, 0x12, 0x16, 0x12, 0x16, 0x12, 0x32, 0x12, 0x58, 0x12, 0x58, 0x12, 0x58, 0x12, 0x58, +0x12, 0x58, 0x12, 0x58, 0x12, 0x58, 0x12, 0x58, 0x12, 0x58, 0x12, 0x58, 0x12, 0x58, 0x12, 0x58, +0x12, 0x58, 0x12, 0x58, 0x12, 0x58, 0x12, 0x58, 0x12, 0x58, 0x12, 0x58, 0x12, 0x58, 0x12, 0x58, +0x12, 0x58, 0x12, 0x58, 0x12, 0x58, 0x12, 0x58, 0x12, 0x58, 0x12, 0x58, 0x12, 0x58, 0x12, 0xAA, +0x12, 0xC0, 0x13, 0x12, 0x13, 0x50, 0x13, 0x50, 0x13, 0x50, 0x13, 0xAE, 0x14, 0x54, 0x14, 0xC6, +0x14, 0xE8, 0x15, 0x8A, 0x15, 0xDA, 0x16, 0x84, 0x16, 0x84, 0x16, 0x90, 0x16, 0xB2, 0x17, 0x84, +0x17, 0xA4, 0x17, 0xE6, 0x17, 0xF8, 0x17, 0xF8, 0x17, 0xF8, 0x18, 0x1E, 0x18, 0x1E, 0x18, 0x54, +0x18, 0x7A, 0x18, 0xD8, 0x18, 0xD8, 0x18, 0xD8, 0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, +0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, +0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, +0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, 0x18, 0xE4, +0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, +0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, +0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, +0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, 0x19, 0x04, +0x19, 0x16, 0x19, 0x16, 0x19, 0x16, 0x19, 0x16, 0x19, 0x16, 0x19, 0x16, 0x19, 0x16, 0x19, 0x16, +0x19, 0x16, 0x19, 0x4A, 0x19, 0x6E, 0x19, 0x92, 0x19, 0xB8, 0x19, 0xF0, 0x1A, 0x10, 0x1A, 0x42, +0x1A, 0x92, 0x1A, 0xCE, 0x1A, 0xF0, 0x1B, 0x4E, 0x1B, 0x6A, 0x1B, 0x86, 0x1B, 0xAC, 0x1B, 0xD2, +0x1B, 0xF8, 0x1C, 0x32, 0x1C, 0x6C, 0x1C, 0xA6, 0x1D, 0x20, 0x1D, 0xDE, 0x1D, 0xFE, 0x1E, 0x0E, +0x1E, 0x26, 0x1E, 0x3C, 0x1E, 0x58, 0x1E, 0xBE, 0x1F, 0x34, 0x20, 0x5C, 0x20, 0xE2, 0x20, 0xE2, +0x20, 0xE2, 0x21, 0x4A, 0x21, 0x6C, 0x21, 0xBC, 0x22, 0x04, 0x22, 0x22, 0x22, 0x44, 0x22, 0xA6, +0x23, 0x14, 0x23, 0x78, 0x23, 0x8E, 0x23, 0xA4, 0x23, 0xA4, 0x23, 0xA4, 0x00, 0x04, 0x00, 0x64, +0x00, 0x00, 0x03, 0x9C, 0x05, 0x9A, 0x00, 0x03, 0x00, 0x07, 0x00, 0x24, 0x00, 0x38, 0x00, 0x4B, +0x40, 0x48, 0x24, 0x08, 0x02, 0x05, 0x06, 0x37, 0x01, 0x02, 0x05, 0x02, 0x4C, 0x00, 0x05, 0x06, +0x02, 0x06, 0x05, 0x02, 0x80, 0x00, 0x00, 0x00, 0x03, 0x04, 0x00, 0x03, 0x67, 0x00, 0x04, 0x00, +0x06, 0x05, 0x04, 0x06, 0x69, 0x00, 0x02, 0x01, 0x01, 0x02, 0x57, 0x00, 0x02, 0x02, 0x01, 0x5F, +0x07, 0x01, 0x01, 0x02, 0x01, 0x4F, 0x00, 0x00, 0x21, 0x1F, 0x18, 0x17, 0x0D, 0x0B, 0x07, 0x06, +0x05, 0x04, 0x00, 0x03, 0x00, 0x03, 0x11, 0x08, 0x06, 0x17, 0x2B, 0x33, 0x11, 0x21, 0x11, 0x25, +0x21, 0x11, 0x21, 0x17, 0x36, 0x37, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, +0x15, 0x14, 0x17, 0x23, 0x26, 0x35, 0x34, 0x12, 0x35, 0x34, 0x26, 0x23, 0x22, 0x07, 0x06, 0x07, +0x13, 0x37, 0x36, 0x33, 0x32, 0x1F, 0x01, 0x16, 0x15, 0x14, 0x0F, 0x01, 0x06, 0x23, 0x22, 0x2F, +0x01, 0x26, 0x35, 0x34, 0x64, 0x03, 0x38, 0xFC, 0xFA, 0x02, 0xD4, 0xFD, 0x2C, 0xAF, 0x1F, 0x1B, +0x35, 0x3B, 0x5C, 0x70, 0x2E, 0x40, 0x3F, 0x48, 0x18, 0x20, 0x23, 0xA3, 0x42, 0x3A, 0x26, 0x1F, +0x1A, 0x1E, 0x40, 0x39, 0x0B, 0x09, 0x0A, 0x0C, 0x38, 0x09, 0x0A, 0x38, 0x0E, 0x07, 0x0B, 0x09, +0x3D, 0x07, 0x05, 0x9A, 0xFA, 0x66, 0x32, 0x05, 0x36, 0xEC, 0x1C, 0x0F, 0x1E, 0x5F, 0x50, 0x31, +0x63, 0x50, 0x50, 0x68, 0x2F, 0x26, 0x5F, 0x61, 0x33, 0x4C, 0x01, 0x1C, 0x4B, 0x39, 0x42, 0x11, +0x0F, 0x19, 0xFC, 0xFF, 0x3A, 0x0A, 0x0B, 0x3C, 0x0B, 0x09, 0x0B, 0x0B, 0x3E, 0x0E, 0x0A, 0x47, +0x09, 0x09, 0x0A, 0x00, 0x00, 0x02, 0x00, 0xCF, 0xFF, 0xFB, 0x01, 0xC9, 0x05, 0xB0, 0x00, 0x08, +0x00, 0x1C, 0x00, 0x32, 0x40, 0x2F, 0x07, 0x01, 0x01, 0x00, 0x01, 0x4C, 0x00, 0x00, 0x01, 0x00, +0x85, 0x04, 0x01, 0x01, 0x02, 0x01, 0x85, 0x00, 0x02, 0x03, 0x03, 0x02, 0x59, 0x00, 0x02, 0x02, +0x03, 0x61, 0x00, 0x03, 0x02, 0x03, 0x51, 0x00, 0x00, 0x17, 0x15, 0x0D, 0x0B, 0x00, 0x08, 0x00, +0x08, 0x23, 0x05, 0x07, 0x17, 0x2B, 0x01, 0x03, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x03, 0x07, +0x37, 0x36, 0x33, 0x32, 0x1F, 0x01, 0x16, 0x15, 0x14, 0x0F, 0x01, 0x06, 0x23, 0x22, 0x2F, 0x01, +0x26, 0x35, 0x34, 0x01, 0x39, 0x31, 0x2A, 0x29, 0x2A, 0x29, 0x50, 0x7F, 0x52, 0x0F, 0x0E, 0x0D, +0x12, 0x50, 0x0C, 0x0E, 0x50, 0x14, 0x09, 0x10, 0x0D, 0x58, 0x0A, 0x01, 0x48, 0x04, 0x0C, 0x2E, +0x2E, 0x2E, 0x2E, 0xFB, 0xF4, 0xA1, 0x54, 0x0E, 0x10, 0x56, 0x10, 0x0D, 0x0F, 0x10, 0x58, 0x14, +0x0E, 0x65, 0x0D, 0x0D, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x65, 0x04, 0x54, 0x02, 0x3F, +0x06, 0x29, 0x00, 0x0C, 0x00, 0x19, 0x00, 0x24, 0x40, 0x21, 0x17, 0x0A, 0x02, 0x00, 0x01, 0x01, +0x4C, 0x03, 0x01, 0x01, 0x00, 0x00, 0x01, 0x59, 0x03, 0x01, 0x01, 0x01, 0x00, 0x5F, 0x02, 0x01, +0x00, 0x01, 0x00, 0x4F, 0x25, 0x15, 0x25, 0x10, 0x04, 0x07, 0x1A, 0x2B, 0x13, 0x23, 0x03, 0x26, +0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x13, 0x23, 0x03, 0x26, 0x35, 0x34, 0x36, +0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0xC5, 0x1E, 0x3E, 0x04, 0x29, 0x27, 0x27, 0x2B, 0x04, 0xFA, +0x1E, 0x3E, 0x04, 0x29, 0x27, 0x27, 0x2B, 0x04, 0x04, 0x54, 0x01, 0x67, 0x17, 0x0A, 0x25, 0x28, +0x27, 0x25, 0x08, 0x1A, 0xFE, 0x99, 0x01, 0x67, 0x17, 0x0A, 0x25, 0x28, 0x27, 0x25, 0x08, 0x1A, +0x00, 0x02, 0x00, 0x75, 0x00, 0x00, 0x04, 0xC3, 0x05, 0x9A, 0x00, 0x03, 0x00, 0x1F, 0x00, 0x8B, +0x4B, 0xB0, 0x19, 0x50, 0x58, 0x40, 0x28, 0x04, 0x01, 0x02, 0x03, 0x02, 0x85, 0x0B, 0x01, 0x09, +0x08, 0x09, 0x86, 0x0D, 0x07, 0x02, 0x00, 0x0C, 0x0A, 0x02, 0x08, 0x09, 0x00, 0x08, 0x67, 0x0F, +0x05, 0x02, 0x03, 0x03, 0x01, 0x5F, 0x0E, 0x06, 0x10, 0x03, 0x01, 0x01, 0x0F, 0x01, 0x4E, 0x1B, +0x40, 0x2F, 0x04, 0x01, 0x02, 0x03, 0x02, 0x85, 0x0B, 0x01, 0x09, 0x08, 0x09, 0x86, 0x0F, 0x05, +0x02, 0x03, 0x0E, 0x06, 0x10, 0x03, 0x01, 0x00, 0x03, 0x01, 0x67, 0x0D, 0x07, 0x02, 0x00, 0x08, +0x08, 0x00, 0x57, 0x0D, 0x07, 0x02, 0x00, 0x00, 0x08, 0x5F, 0x0C, 0x0A, 0x02, 0x08, 0x00, 0x08, +0x4F, 0x59, 0x40, 0x26, 0x00, 0x00, 0x1F, 0x1E, 0x1D, 0x1C, 0x1B, 0x1A, 0x19, 0x18, 0x17, 0x16, +0x15, 0x14, 0x13, 0x12, 0x11, 0x10, 0x0F, 0x0E, 0x0D, 0x0C, 0x0B, 0x0A, 0x09, 0x08, 0x07, 0x06, +0x05, 0x04, 0x00, 0x03, 0x00, 0x03, 0x11, 0x11, 0x07, 0x17, 0x2B, 0x01, 0x03, 0x33, 0x13, 0x03, +0x33, 0x03, 0x33, 0x13, 0x33, 0x03, 0x21, 0x07, 0x21, 0x03, 0x21, 0x07, 0x21, 0x03, 0x23, 0x13, +0x23, 0x03, 0x23, 0x13, 0x21, 0x37, 0x21, 0x13, 0x21, 0x37, 0x21, 0x02, 0x54, 0x55, 0xF2, 0x56, +0xA6, 0x5D, 0x8D, 0xF2, 0x8E, 0x5C, 0x8D, 0x01, 0x03, 0x1D, 0xFE, 0xFD, 0x53, 0x01, 0x17, 0x1E, +0xFE, 0xE8, 0x8C, 0x5C, 0x8B, 0xF0, 0x8E, 0x5C, 0x8C, 0xFE, 0xEF, 0x1E, 0x01, 0x0F, 0x56, 0xFE, +0xD9, 0x1D, 0x01, 0x27, 0x03, 0x5B, 0xFE, 0xDE, 0x01, 0x22, 0x02, 0x3F, 0xFE, 0x23, 0x01, 0xDD, +0xFE, 0x23, 0x61, 0xFE, 0xDE, 0x62, 0xFE, 0x28, 0x01, 0xD8, 0xFE, 0x28, 0x01, 0xD8, 0x62, 0x01, +0x22, 0x61, 0x00, 0x00, 0x00, 0x03, 0x00, 0x71, 0xFF, 0x00, 0x03, 0xD5, 0x06, 0x10, 0x00, 0x2E, +0x00, 0x36, 0x00, 0x3F, 0x00, 0x70, 0x40, 0x6D, 0x2D, 0x01, 0x02, 0x00, 0x01, 0x37, 0x2F, 0x25, +0x0F, 0x04, 0x07, 0x02, 0x30, 0x01, 0x08, 0x07, 0x15, 0x01, 0x04, 0x05, 0x04, 0x4C, 0x0E, 0x01, +0x0A, 0x01, 0x4B, 0x0B, 0x01, 0x09, 0x01, 0x09, 0x85, 0x00, 0x01, 0x00, 0x01, 0x85, 0x00, 0x00, +0x0A, 0x00, 0x85, 0x00, 0x0A, 0x02, 0x0A, 0x85, 0x00, 0x02, 0x07, 0x02, 0x85, 0x00, 0x05, 0x08, +0x04, 0x08, 0x05, 0x04, 0x80, 0x00, 0x03, 0x04, 0x03, 0x86, 0x00, 0x07, 0x08, 0x04, 0x07, 0x57, +0x00, 0x08, 0x05, 0x04, 0x08, 0x59, 0x00, 0x08, 0x08, 0x04, 0x61, 0x06, 0x01, 0x04, 0x08, 0x04, +0x51, 0x00, 0x00, 0x39, 0x38, 0x00, 0x2E, 0x00, 0x2E, 0x12, 0x11, 0x11, 0x13, 0x11, 0x1C, 0x11, +0x11, 0x15, 0x0C, 0x07, 0x1F, 0x2B, 0x01, 0x15, 0x16, 0x17, 0x16, 0x33, 0x32, 0x37, 0x33, 0x13, +0x23, 0x26, 0x27, 0x26, 0x27, 0x11, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x07, 0x15, 0x23, 0x35, 0x26, +0x27, 0x26, 0x23, 0x22, 0x07, 0x23, 0x11, 0x33, 0x1E, 0x01, 0x33, 0x11, 0x26, 0x27, 0x26, 0x35, +0x34, 0x37, 0x36, 0x37, 0x35, 0x13, 0x11, 0x3E, 0x01, 0x35, 0x34, 0x27, 0x26, 0x03, 0x11, 0x06, +0x07, 0x06, 0x15, 0x14, 0x17, 0x16, 0x02, 0x41, 0x44, 0x49, 0x0A, 0x09, 0x19, 0x10, 0x32, 0x67, +0x31, 0x3C, 0x6C, 0x4A, 0x3F, 0xF1, 0xA3, 0xEF, 0xA5, 0x49, 0xBC, 0x4E, 0x0A, 0x09, 0x19, 0x10, +0x32, 0x31, 0x32, 0xCD, 0x48, 0xD6, 0x55, 0x5C, 0x7D, 0x69, 0xA1, 0x49, 0x7D, 0xAD, 0x45, 0x3E, +0xF0, 0x77, 0x50, 0x56, 0x37, 0x34, 0x06, 0x10, 0x66, 0x08, 0x1B, 0x06, 0x2D, 0xFE, 0xE6, 0x86, +0x2D, 0x1E, 0x09, 0xFD, 0xE4, 0x5D, 0xB4, 0xAE, 0xC5, 0xCE, 0x11, 0xEF, 0xED, 0x03, 0x23, 0x06, +0x2D, 0x01, 0x4B, 0xB7, 0x56, 0x02, 0x7B, 0x43, 0x56, 0x5B, 0x9E, 0xA6, 0x69, 0x58, 0x0E, 0x64, +0xFC, 0x7F, 0xFD, 0x9E, 0x11, 0x9E, 0x8C, 0x74, 0x43, 0x3B, 0x01, 0x0F, 0x02, 0x08, 0x05, 0x43, +0x49, 0x6D, 0x62, 0x37, 0x36, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x3E, 0xFF, 0xE3, 0x06, 0x0C, +0x05, 0xB3, 0x00, 0x0F, 0x00, 0x2A, 0x00, 0x2E, 0x00, 0x3E, 0x00, 0x58, 0x02, 0x1E, 0x4B, 0xB0, +0x0B, 0x50, 0x58, 0x40, 0x2E, 0x00, 0x04, 0x00, 0x03, 0x00, 0x04, 0x03, 0x80, 0x0A, 0x01, 0x00, +0x00, 0x03, 0x02, 0x00, 0x03, 0x69, 0x0C, 0x06, 0x02, 0x02, 0x09, 0x01, 0x01, 0x08, 0x02, 0x01, +0x69, 0x00, 0x08, 0x05, 0x05, 0x08, 0x59, 0x00, 0x08, 0x08, 0x05, 0x61, 0x07, 0x0B, 0x02, 0x05, +0x08, 0x05, 0x51, 0x1B, 0x4B, 0xB0, 0x0C, 0x50, 0x58, 0x40, 0x32, 0x00, 0x04, 0x00, 0x03, 0x00, +0x04, 0x03, 0x80, 0x0B, 0x01, 0x05, 0x07, 0x05, 0x86, 0x0A, 0x01, 0x00, 0x00, 0x03, 0x02, 0x00, +0x03, 0x69, 0x0C, 0x06, 0x02, 0x02, 0x09, 0x01, 0x01, 0x08, 0x02, 0x01, 0x69, 0x00, 0x08, 0x07, +0x07, 0x08, 0x59, 0x00, 0x08, 0x08, 0x07, 0x61, 0x00, 0x07, 0x08, 0x07, 0x51, 0x1B, 0x4B, 0xB0, +0x0E, 0x50, 0x58, 0x40, 0x2E, 0x00, 0x04, 0x00, 0x03, 0x00, 0x04, 0x03, 0x80, 0x0A, 0x01, 0x00, +0x00, 0x03, 0x02, 0x00, 0x03, 0x69, 0x0C, 0x06, 0x02, 0x02, 0x09, 0x01, 0x01, 0x08, 0x02, 0x01, +0x69, 0x00, 0x08, 0x05, 0x05, 0x08, 0x59, 0x00, 0x08, 0x08, 0x05, 0x61, 0x07, 0x0B, 0x02, 0x05, +0x08, 0x05, 0x51, 0x1B, 0x4B, 0xB0, 0x0F, 0x50, 0x58, 0x40, 0x32, 0x00, 0x04, 0x00, 0x03, 0x00, +0x04, 0x03, 0x80, 0x0B, 0x01, 0x05, 0x07, 0x05, 0x86, 0x0A, 0x01, 0x00, 0x00, 0x03, 0x02, 0x00, +0x03, 0x69, 0x0C, 0x06, 0x02, 0x02, 0x09, 0x01, 0x01, 0x08, 0x02, 0x01, 0x69, 0x00, 0x08, 0x07, +0x07, 0x08, 0x59, 0x00, 0x08, 0x08, 0x07, 0x61, 0x00, 0x07, 0x08, 0x07, 0x51, 0x1B, 0x4B, 0xB0, +0x11, 0x50, 0x58, 0x40, 0x2E, 0x00, 0x04, 0x00, 0x03, 0x00, 0x04, 0x03, 0x80, 0x0A, 0x01, 0x00, +0x00, 0x03, 0x02, 0x00, 0x03, 0x69, 0x0C, 0x06, 0x02, 0x02, 0x09, 0x01, 0x01, 0x08, 0x02, 0x01, +0x69, 0x00, 0x08, 0x05, 0x05, 0x08, 0x59, 0x00, 0x08, 0x08, 0x05, 0x61, 0x07, 0x0B, 0x02, 0x05, +0x08, 0x05, 0x51, 0x1B, 0x4B, 0xB0, 0x12, 0x50, 0x58, 0x40, 0x32, 0x00, 0x04, 0x00, 0x03, 0x00, +0x04, 0x03, 0x80, 0x0B, 0x01, 0x05, 0x07, 0x05, 0x86, 0x0A, 0x01, 0x00, 0x00, 0x03, 0x02, 0x00, +0x03, 0x69, 0x0C, 0x06, 0x02, 0x02, 0x09, 0x01, 0x01, 0x08, 0x02, 0x01, 0x69, 0x00, 0x08, 0x07, +0x07, 0x08, 0x59, 0x00, 0x08, 0x08, 0x07, 0x61, 0x00, 0x07, 0x08, 0x07, 0x51, 0x1B, 0x4B, 0xB0, +0x1B, 0x50, 0x58, 0x40, 0x2E, 0x00, 0x04, 0x00, 0x03, 0x00, 0x04, 0x03, 0x80, 0x0A, 0x01, 0x00, +0x00, 0x03, 0x02, 0x00, 0x03, 0x69, 0x0C, 0x06, 0x02, 0x02, 0x09, 0x01, 0x01, 0x08, 0x02, 0x01, +0x69, 0x00, 0x08, 0x05, 0x05, 0x08, 0x59, 0x00, 0x08, 0x08, 0x05, 0x61, 0x07, 0x0B, 0x02, 0x05, +0x08, 0x05, 0x51, 0x1B, 0x4B, 0xB0, 0x1C, 0x50, 0x58, 0x40, 0x32, 0x00, 0x04, 0x00, 0x03, 0x00, +0x04, 0x03, 0x80, 0x0B, 0x01, 0x05, 0x07, 0x05, 0x86, 0x0A, 0x01, 0x00, 0x00, 0x03, 0x02, 0x00, +0x03, 0x69, 0x0C, 0x06, 0x02, 0x02, 0x09, 0x01, 0x01, 0x08, 0x02, 0x01, 0x69, 0x00, 0x08, 0x07, +0x07, 0x08, 0x59, 0x00, 0x08, 0x08, 0x07, 0x61, 0x00, 0x07, 0x08, 0x07, 0x51, 0x1B, 0x40, 0x2E, +0x00, 0x04, 0x00, 0x03, 0x00, 0x04, 0x03, 0x80, 0x0A, 0x01, 0x00, 0x00, 0x03, 0x02, 0x00, 0x03, +0x69, 0x0C, 0x06, 0x02, 0x02, 0x09, 0x01, 0x01, 0x08, 0x02, 0x01, 0x69, 0x00, 0x08, 0x05, 0x05, +0x08, 0x59, 0x00, 0x08, 0x08, 0x05, 0x61, 0x07, 0x0B, 0x02, 0x05, 0x08, 0x05, 0x51, 0x59, 0x59, +0x59, 0x59, 0x59, 0x59, 0x59, 0x59, 0x40, 0x23, 0x30, 0x2F, 0x2B, 0x2B, 0x01, 0x00, 0x53, 0x50, +0x46, 0x43, 0x38, 0x36, 0x2F, 0x3E, 0x30, 0x3E, 0x2B, 0x2E, 0x2B, 0x2E, 0x2D, 0x2C, 0x25, 0x22, +0x18, 0x14, 0x09, 0x07, 0x00, 0x0F, 0x01, 0x0F, 0x0D, 0x07, 0x16, 0x2B, 0x01, 0x32, 0x1E, 0x01, +0x15, 0x14, 0x0E, 0x01, 0x23, 0x22, 0x2E, 0x01, 0x35, 0x34, 0x3E, 0x01, 0x03, 0x1E, 0x01, 0x17, +0x16, 0x33, 0x32, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x35, 0x34, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x2B, +0x01, 0x0E, 0x01, 0x07, 0x06, 0x15, 0x14, 0x13, 0x01, 0x33, 0x09, 0x01, 0x32, 0x1E, 0x01, 0x15, +0x14, 0x0E, 0x01, 0x23, 0x22, 0x2E, 0x01, 0x35, 0x34, 0x3E, 0x01, 0x03, 0x1E, 0x01, 0x17, 0x16, +0x3B, 0x01, 0x3E, 0x01, 0x37, 0x36, 0x35, 0x34, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x2B, 0x01, 0x0E, +0x01, 0x07, 0x06, 0x15, 0x14, 0x01, 0xC1, 0x62, 0xB9, 0x68, 0x65, 0xB9, 0x65, 0x64, 0xB9, 0x66, +0x68, 0xB9, 0x91, 0x0D, 0x55, 0x40, 0x39, 0x39, 0x07, 0x06, 0x3F, 0x68, 0x15, 0x0D, 0x04, 0x0C, +0x58, 0x3F, 0x3A, 0x39, 0x0B, 0x3D, 0x68, 0x15, 0x0F, 0x5F, 0x03, 0xAC, 0x54, 0xFC, 0x56, 0x03, +0x0A, 0x61, 0xBA, 0x68, 0x65, 0xB9, 0x65, 0x65, 0xB8, 0x66, 0x68, 0xB9, 0x91, 0x0D, 0x55, 0x40, +0x3B, 0x39, 0x0B, 0x3F, 0x68, 0x15, 0x0D, 0x04, 0x0C, 0x58, 0x3F, 0x3A, 0x39, 0x0B, 0x3D, 0x68, +0x15, 0x0F, 0x05, 0xB3, 0x62, 0xB5, 0x64, 0x63, 0xB3, 0x65, 0x65, 0xB3, 0x63, 0x64, 0xB5, 0x62, +0xFE, 0x77, 0x5C, 0xA3, 0x2B, 0x28, 0x01, 0x03, 0x64, 0x56, 0x36, 0x39, 0x20, 0x21, 0x5D, 0xA5, +0x2A, 0x26, 0x03, 0x62, 0x56, 0x3A, 0x3B, 0x1F, 0xFB, 0x9A, 0x05, 0xB5, 0xFA, 0x4B, 0x02, 0xFF, +0x63, 0xB5, 0x63, 0x64, 0xB3, 0x64, 0x64, 0xB3, 0x64, 0x63, 0xB5, 0x63, 0xFE, 0x76, 0x5C, 0xA3, +0x2B, 0x27, 0x03, 0x64, 0x56, 0x36, 0x39, 0x20, 0x21, 0x5D, 0xA5, 0x2A, 0x26, 0x03, 0x62, 0x56, +0x3A, 0x3B, 0x1F, 0x00, 0x00, 0x02, 0x00, 0x98, 0xFF, 0xF0, 0x06, 0x79, 0x05, 0xAE, 0x00, 0x0C, +0x00, 0x48, 0x00, 0xCA, 0x40, 0x0F, 0x19, 0x01, 0x00, 0x07, 0x41, 0x32, 0x02, 0x0D, 0x09, 0x10, +0x01, 0x0C, 0x0D, 0x03, 0x4C, 0x4B, 0xB0, 0x30, 0x50, 0x58, 0x40, 0x40, 0x00, 0x05, 0x04, 0x08, +0x04, 0x05, 0x08, 0x80, 0x00, 0x07, 0x08, 0x00, 0x08, 0x07, 0x00, 0x80, 0x00, 0x0D, 0x09, 0x0C, +0x09, 0x0D, 0x0C, 0x80, 0x06, 0x01, 0x04, 0x00, 0x08, 0x07, 0x04, 0x08, 0x69, 0x00, 0x0A, 0x0B, +0x01, 0x09, 0x0D, 0x0A, 0x09, 0x69, 0x00, 0x0C, 0x0E, 0x01, 0x02, 0x03, 0x0C, 0x02, 0x67, 0x00, +0x01, 0x00, 0x03, 0x01, 0x03, 0x65, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x4E, 0x1B, 0x40, 0x4A, 0x00, +0x05, 0x04, 0x08, 0x04, 0x05, 0x08, 0x80, 0x00, 0x07, 0x08, 0x00, 0x08, 0x07, 0x00, 0x80, 0x00, +0x00, 0x0A, 0x08, 0x00, 0x0A, 0x7E, 0x00, 0x0D, 0x09, 0x0C, 0x09, 0x0D, 0x0C, 0x80, 0x06, 0x01, +0x04, 0x00, 0x08, 0x07, 0x04, 0x08, 0x69, 0x00, 0x0A, 0x0B, 0x01, 0x09, 0x0D, 0x0A, 0x09, 0x69, +0x00, 0x01, 0x02, 0x03, 0x01, 0x59, 0x00, 0x0C, 0x0E, 0x01, 0x02, 0x03, 0x0C, 0x02, 0x67, 0x00, +0x01, 0x01, 0x03, 0x61, 0x00, 0x03, 0x01, 0x03, 0x51, 0x59, 0x40, 0x21, 0x0E, 0x0D, 0x47, 0x46, +0x43, 0x42, 0x3E, 0x3C, 0x3B, 0x3A, 0x39, 0x37, 0x2D, 0x2B, 0x28, 0x27, 0x26, 0x25, 0x24, 0x23, +0x20, 0x1E, 0x14, 0x12, 0x0D, 0x48, 0x0E, 0x48, 0x27, 0x11, 0x0F, 0x07, 0x18, 0x2B, 0x25, 0x01, +0x22, 0x06, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x05, 0x22, 0x26, 0x27, 0x0E, +0x01, 0x23, 0x22, 0x00, 0x35, 0x34, 0x36, 0x37, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, +0x16, 0x33, 0x32, 0x37, 0x33, 0x13, 0x23, 0x26, 0x27, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x17, +0x01, 0x36, 0x37, 0x36, 0x35, 0x34, 0x2B, 0x01, 0x35, 0x21, 0x15, 0x23, 0x22, 0x07, 0x06, 0x07, +0x16, 0x3B, 0x01, 0x36, 0x37, 0x17, 0x07, 0x04, 0x1B, 0xFD, 0xD6, 0x76, 0x7B, 0x47, 0x42, 0x48, +0xBA, 0x65, 0x58, 0xA2, 0x01, 0x88, 0x38, 0xA6, 0x54, 0x43, 0xD8, 0x85, 0xE5, 0xFE, 0xDD, 0x98, +0x95, 0x2A, 0x29, 0x9A, 0x69, 0x44, 0x4A, 0x09, 0x09, 0x17, 0x0F, 0x2E, 0x60, 0x2E, 0x37, 0x64, +0x55, 0x38, 0x41, 0x52, 0x66, 0x02, 0x13, 0x62, 0x17, 0x11, 0x3E, 0x5A, 0x01, 0xBB, 0x5A, 0x5F, +0x32, 0x1F, 0x7C, 0x6D, 0x8B, 0x10, 0x8F, 0x31, 0x31, 0x67, 0xC4, 0x02, 0xAB, 0xAC, 0x76, 0x5B, +0xB5, 0x4A, 0x53, 0x58, 0x43, 0x8B, 0x32, 0x6B, 0x4A, 0x63, 0x01, 0x2D, 0xEB, 0xA1, 0xD3, 0x2E, +0x3D, 0x6E, 0x38, 0x69, 0xB8, 0x27, 0x06, 0x2D, 0xFE, 0xE7, 0x85, 0x2D, 0x25, 0x5B, 0x48, 0x83, +0x88, 0xFD, 0x62, 0x92, 0x62, 0x4E, 0x34, 0x61, 0x32, 0x32, 0xE3, 0x84, 0xA0, 0x88, 0x11, 0x6F, +0x01, 0xE7, 0x00, 0x00, 0x00, 0x01, 0x00, 0x65, 0x04, 0x54, 0x01, 0x07, 0x06, 0x29, 0x00, 0x0C, +0x00, 0x1E, 0x40, 0x1B, 0x0A, 0x01, 0x00, 0x01, 0x01, 0x4C, 0x00, 0x01, 0x00, 0x00, 0x01, 0x59, +0x00, 0x01, 0x01, 0x00, 0x5F, 0x00, 0x00, 0x01, 0x00, 0x4F, 0x25, 0x10, 0x02, 0x07, 0x18, 0x2B, +0x13, 0x23, 0x03, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0xC5, 0x1E, 0x3E, +0x04, 0x29, 0x27, 0x27, 0x2B, 0x04, 0x04, 0x54, 0x01, 0x67, 0x17, 0x0A, 0x25, 0x28, 0x27, 0x25, +0x08, 0x1A, 0x00, 0x00, 0x00, 0x01, 0x00, 0xFC, 0xFE, 0x8E, 0x02, 0xBC, 0x06, 0x25, 0x00, 0x10, +0x00, 0x11, 0x40, 0x0E, 0x00, 0x00, 0x01, 0x00, 0x85, 0x00, 0x01, 0x01, 0x76, 0x19, 0x13, 0x02, +0x07, 0x18, 0x2B, 0x13, 0x1A, 0x01, 0x37, 0x33, 0x06, 0x07, 0x06, 0x11, 0x15, 0x10, 0x17, 0x16, +0x17, 0x23, 0x26, 0x02, 0xFC, 0x02, 0xC3, 0xAB, 0x50, 0xAC, 0x3A, 0x39, 0x39, 0x3A, 0xAC, 0x50, +0xAB, 0xC3, 0x02, 0x59, 0x01, 0x15, 0x01, 0xFA, 0xBD, 0xF2, 0xC4, 0xC1, 0xFE, 0xB6, 0x16, 0xFE, +0xB6, 0xC0, 0xC4, 0xF2, 0xBD, 0x01, 0xF9, 0x00, 0x00, 0x01, 0x00, 0x3A, 0xFE, 0x8E, 0x01, 0xFA, +0x06, 0x25, 0x00, 0x10, 0x00, 0x11, 0x40, 0x0E, 0x00, 0x01, 0x00, 0x01, 0x85, 0x00, 0x00, 0x00, +0x76, 0x19, 0x10, 0x02, 0x07, 0x18, 0x2B, 0x13, 0x23, 0x36, 0x37, 0x36, 0x11, 0x35, 0x10, 0x27, +0x26, 0x27, 0x33, 0x16, 0x12, 0x13, 0x0A, 0x01, 0x8A, 0x50, 0xAC, 0x3A, 0x39, 0x39, 0x3A, 0xAC, +0x50, 0xAB, 0xC3, 0x02, 0x02, 0xC3, 0xFE, 0x8E, 0xF2, 0xC4, 0xC0, 0x01, 0x4A, 0x16, 0x01, 0x4A, +0xC1, 0xC4, 0xF2, 0xBD, 0xFE, 0x06, 0xFE, 0xEB, 0xFE, 0xEB, 0xFE, 0x07, 0x00, 0x01, 0x00, 0xDA, +0x03, 0xF2, 0x03, 0x25, 0x06, 0x2B, 0x00, 0x64, 0x00, 0x52, 0x40, 0x4F, 0x59, 0x0E, 0x00, 0x03, +0x02, 0x07, 0x4D, 0x26, 0x02, 0x01, 0x02, 0x47, 0x3A, 0x2C, 0x03, 0x03, 0x01, 0x03, 0x4C, 0x14, +0x01, 0x07, 0x01, 0x4B, 0x00, 0x00, 0x07, 0x00, 0x85, 0x05, 0x01, 0x02, 0x07, 0x01, 0x07, 0x02, +0x01, 0x80, 0x04, 0x01, 0x03, 0x01, 0x03, 0x86, 0x00, 0x07, 0x02, 0x01, 0x07, 0x59, 0x00, 0x07, +0x07, 0x01, 0x61, 0x06, 0x01, 0x01, 0x07, 0x01, 0x51, 0x60, 0x5E, 0x53, 0x52, 0x50, 0x4E, 0x42, +0x3F, 0x35, 0x31, 0x25, 0x23, 0x21, 0x20, 0x26, 0x08, 0x07, 0x17, 0x2B, 0x01, 0x26, 0x27, 0x26, +0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x06, 0x07, 0x36, 0x37, 0x36, 0x37, 0x36, +0x33, 0x32, 0x17, 0x16, 0x17, 0x16, 0x15, 0x14, 0x07, 0x06, 0x07, 0x06, 0x23, 0x22, 0x27, 0x26, +0x23, 0x22, 0x07, 0x16, 0x17, 0x16, 0x17, 0x16, 0x15, 0x14, 0x07, 0x06, 0x07, 0x06, 0x23, 0x22, +0x35, 0x22, 0x27, 0x26, 0x27, 0x26, 0x27, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x23, 0x22, 0x27, +0x26, 0x27, 0x26, 0x35, 0x34, 0x37, 0x36, 0x37, 0x36, 0x37, 0x26, 0x23, 0x22, 0x07, 0x06, 0x23, +0x22, 0x27, 0x26, 0x27, 0x26, 0x35, 0x34, 0x37, 0x36, 0x37, 0x36, 0x33, 0x32, 0x17, 0x16, 0x17, +0x16, 0x01, 0xF2, 0x04, 0x21, 0x25, 0x2F, 0x27, 0x25, 0x31, 0x24, 0x21, 0x04, 0x42, 0x2F, 0x33, +0x12, 0x0B, 0x0A, 0x12, 0x11, 0x1A, 0x0C, 0x06, 0x04, 0x0A, 0x1C, 0x06, 0x0D, 0x19, 0x33, 0x1C, +0x1B, 0x29, 0x28, 0x2C, 0x3D, 0x44, 0x0B, 0x0D, 0x02, 0x08, 0x1F, 0x1D, 0x1E, 0x01, 0x1F, 0x11, +0x0C, 0x0A, 0x0A, 0x25, 0x26, 0x08, 0x09, 0x0B, 0x13, 0x1E, 0x05, 0x1C, 0x1D, 0x1E, 0x09, 0x04, +0x0B, 0x0D, 0x46, 0x3D, 0x2C, 0x29, 0x27, 0x1B, 0x1A, 0x36, 0x18, 0x09, 0x05, 0x1E, 0x0B, 0x06, +0x06, 0x0B, 0x19, 0x11, 0x11, 0x09, 0x09, 0x14, 0x36, 0x2F, 0x05, 0x0E, 0x47, 0x3B, 0x42, 0x12, +0x20, 0x27, 0x24, 0x1D, 0x15, 0x44, 0x3D, 0x45, 0x19, 0x32, 0x37, 0x06, 0x03, 0x0A, 0x11, 0x24, +0x13, 0x11, 0x0F, 0x0D, 0x1E, 0x08, 0x02, 0x09, 0x05, 0x0B, 0x37, 0x1C, 0x20, 0x0F, 0x12, 0x14, +0x09, 0x08, 0x1E, 0x17, 0x16, 0x01, 0x17, 0x11, 0x4D, 0x43, 0x3A, 0x3A, 0x42, 0x4B, 0x0F, 0x19, +0x02, 0x15, 0x15, 0x1E, 0x0A, 0x0A, 0x11, 0x0F, 0x11, 0x22, 0x1D, 0x35, 0x0B, 0x05, 0x0B, 0x02, +0x09, 0x1D, 0x0D, 0x10, 0x11, 0x13, 0x23, 0x12, 0x0C, 0x03, 0x06, 0x38, 0x31, 0x00, 0x00, 0x00, +0x00, 0x01, 0x00, 0x57, 0x01, 0x15, 0x03, 0x9F, 0x04, 0x85, 0x00, 0x0D, 0x00, 0x29, 0x40, 0x26, +0x00, 0x02, 0x01, 0x02, 0x85, 0x00, 0x05, 0x00, 0x05, 0x86, 0x03, 0x01, 0x01, 0x00, 0x00, 0x01, +0x57, 0x03, 0x01, 0x01, 0x01, 0x00, 0x5F, 0x04, 0x01, 0x00, 0x01, 0x00, 0x4F, 0x11, 0x12, 0x11, +0x21, 0x11, 0x10, 0x06, 0x07, 0x1C, 0x2B, 0x01, 0x21, 0x35, 0x21, 0x11, 0x37, 0x33, 0x11, 0x21, +0x17, 0x15, 0x21, 0x11, 0x23, 0x01, 0xB5, 0xFE, 0xA2, 0x01, 0x5E, 0x01, 0x8B, 0x01, 0x5D, 0x01, +0xFE, 0xA2, 0x8C, 0x02, 0x87, 0x8C, 0x01, 0x71, 0x01, 0xFE, 0x8E, 0x01, 0x8B, 0xFE, 0x8E, 0x00, +0x00, 0x01, 0x00, 0x77, 0xFE, 0xD1, 0x01, 0x73, 0x01, 0x02, 0x00, 0x0C, 0x00, 0x1A, 0x40, 0x17, +0x0C, 0x0B, 0x09, 0x07, 0x04, 0x01, 0x00, 0x01, 0x4C, 0x00, 0x00, 0x01, 0x00, 0x85, 0x00, 0x01, +0x01, 0x76, 0x14, 0x10, 0x02, 0x07, 0x18, 0x2B, 0x13, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x35, +0x36, 0x37, 0x34, 0x27, 0x35, 0xEE, 0x2C, 0x59, 0x8E, 0x44, 0x49, 0x0E, 0x81, 0x01, 0x02, 0x83, +0x56, 0x6D, 0xEB, 0x2B, 0x2B, 0x93, 0x77, 0x2A, 0x2A, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x74, +0x01, 0x99, 0x02, 0x2A, 0x02, 0x25, 0x00, 0x0B, 0x00, 0x1F, 0x40, 0x1C, 0x00, 0x01, 0x00, 0x00, +0x01, 0x57, 0x00, 0x01, 0x01, 0x00, 0x5F, 0x02, 0x01, 0x00, 0x01, 0x00, 0x4F, 0x01, 0x00, 0x07, +0x04, 0x00, 0x0B, 0x01, 0x0A, 0x03, 0x07, 0x16, 0x2B, 0x13, 0x22, 0x3D, 0x01, 0x34, 0x33, 0x21, +0x32, 0x1D, 0x01, 0x14, 0x23, 0x9C, 0x28, 0x29, 0x01, 0x64, 0x29, 0x28, 0x01, 0x99, 0x1C, 0x53, +0x1D, 0x1D, 0x53, 0x1C, 0x00, 0x01, 0x00, 0x81, 0xFF, 0xFB, 0x01, 0x7B, 0x01, 0x09, 0x00, 0x13, +0x00, 0x18, 0x40, 0x15, 0x00, 0x00, 0x01, 0x01, 0x00, 0x59, 0x00, 0x00, 0x00, 0x01, 0x61, 0x00, +0x01, 0x00, 0x01, 0x51, 0x28, 0x22, 0x02, 0x07, 0x18, 0x2B, 0x3F, 0x01, 0x36, 0x33, 0x32, 0x1F, +0x01, 0x16, 0x15, 0x14, 0x0F, 0x01, 0x06, 0x23, 0x22, 0x2F, 0x01, 0x26, 0x35, 0x34, 0x91, 0x52, +0x0F, 0x0E, 0x0D, 0x12, 0x50, 0x0C, 0x0E, 0x50, 0x14, 0x09, 0x10, 0x0D, 0x58, 0x0A, 0xA7, 0x54, +0x0E, 0x10, 0x56, 0x10, 0x0D, 0x0F, 0x10, 0x58, 0x14, 0x0E, 0x65, 0x0D, 0x0D, 0x0F, 0x00, 0x00, +0x00, 0x01, 0x00, 0x0D, 0xFF, 0xCE, 0x02, 0x7A, 0x05, 0x9A, 0x00, 0x03, 0x00, 0x11, 0x40, 0x0E, +0x00, 0x01, 0x00, 0x01, 0x85, 0x00, 0x00, 0x00, 0x76, 0x11, 0x10, 0x02, 0x07, 0x18, 0x2B, 0x17, +0x23, 0x01, 0x33, 0x5D, 0x50, 0x02, 0x1D, 0x50, 0x32, 0x05, 0xCC, 0x00, 0x00, 0x02, 0x00, 0x4D, +0xFF, 0xE7, 0x03, 0xA9, 0x05, 0xB3, 0x00, 0x0F, 0x00, 0x2B, 0x00, 0x2B, 0x40, 0x28, 0x04, 0x01, +0x00, 0x00, 0x03, 0x02, 0x00, 0x03, 0x69, 0x00, 0x02, 0x01, 0x01, 0x02, 0x59, 0x00, 0x02, 0x02, +0x01, 0x61, 0x00, 0x01, 0x02, 0x01, 0x51, 0x01, 0x00, 0x23, 0x22, 0x15, 0x14, 0x09, 0x07, 0x00, +0x0F, 0x01, 0x0F, 0x05, 0x07, 0x16, 0x2B, 0x01, 0x32, 0x16, 0x12, 0x15, 0x14, 0x02, 0x06, 0x23, +0x22, 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, 0x03, 0x16, 0x12, 0x17, 0x16, 0x33, 0x32, 0x37, 0x3E, +0x01, 0x37, 0x36, 0x35, 0x34, 0x27, 0x26, 0x02, 0x27, 0x26, 0x23, 0x22, 0x07, 0x0E, 0x01, 0x07, +0x06, 0x15, 0x14, 0x01, 0xFB, 0x6C, 0xCE, 0x74, 0x71, 0xCD, 0x70, 0x70, 0xCD, 0x71, 0x73, 0xCE, +0xA1, 0x0E, 0x5F, 0x47, 0x41, 0x40, 0x06, 0x06, 0x46, 0x73, 0x18, 0x0F, 0x05, 0x0E, 0x61, 0x47, +0x41, 0x3F, 0x06, 0x05, 0x44, 0x74, 0x18, 0x10, 0x05, 0xB3, 0xC0, 0xFE, 0x9C, 0xC2, 0xC2, 0xFE, +0xA0, 0xC4, 0xC4, 0x01, 0x60, 0xC2, 0xC2, 0x01, 0x64, 0xC0, 0xFC, 0xFE, 0xB4, 0xFE, 0xC0, 0x54, +0x4E, 0x01, 0x07, 0xC3, 0xA8, 0x6B, 0x71, 0x3E, 0x40, 0xB5, 0x01, 0x44, 0x52, 0x4C, 0x01, 0x07, +0xBF, 0xA9, 0x6E, 0x73, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xDA, 0x00, 0x00, 0x03, 0x1A, +0x05, 0x9A, 0x00, 0x11, 0x00, 0x33, 0x40, 0x30, 0x09, 0x01, 0x01, 0x02, 0x01, 0x4C, 0x00, 0x02, +0x01, 0x02, 0x85, 0x00, 0x01, 0x00, 0x01, 0x85, 0x03, 0x01, 0x00, 0x04, 0x04, 0x00, 0x59, 0x03, +0x01, 0x00, 0x00, 0x04, 0x5F, 0x05, 0x01, 0x04, 0x00, 0x04, 0x4F, 0x00, 0x00, 0x00, 0x11, 0x00, +0x11, 0x22, 0x13, 0x23, 0x21, 0x06, 0x07, 0x1A, 0x2B, 0x33, 0x35, 0x33, 0x32, 0x35, 0x11, 0x34, +0x2B, 0x01, 0x35, 0x24, 0x37, 0x33, 0x11, 0x14, 0x3B, 0x01, 0x15, 0xEA, 0x60, 0x67, 0x75, 0x62, +0x01, 0x24, 0x23, 0x32, 0x67, 0x60, 0x32, 0xEB, 0x03, 0x1A, 0x81, 0x32, 0x3F, 0x71, 0xFB, 0x83, +0xEB, 0x32, 0x00, 0x00, 0x00, 0x01, 0x00, 0x72, 0x00, 0x00, 0x03, 0xA8, 0x05, 0xAE, 0x00, 0x17, +0x00, 0x3D, 0x40, 0x3A, 0x07, 0x01, 0x01, 0x00, 0x16, 0x01, 0x05, 0x03, 0x02, 0x4C, 0x00, 0x01, +0x00, 0x04, 0x00, 0x01, 0x04, 0x80, 0x00, 0x04, 0x03, 0x00, 0x04, 0x03, 0x7E, 0x00, 0x02, 0x00, +0x00, 0x01, 0x02, 0x00, 0x69, 0x00, 0x03, 0x05, 0x05, 0x03, 0x57, 0x00, 0x03, 0x03, 0x05, 0x5F, +0x00, 0x05, 0x03, 0x05, 0x4F, 0x11, 0x11, 0x24, 0x23, 0x11, 0x22, 0x06, 0x07, 0x1C, 0x2B, 0x01, +0x34, 0x26, 0x23, 0x22, 0x07, 0x23, 0x35, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x10, 0x01, 0x21, +0x32, 0x37, 0x33, 0x07, 0x21, 0x37, 0x00, 0x02, 0xD2, 0xAC, 0x64, 0xAA, 0x69, 0x16, 0x27, 0x98, +0x6D, 0xB7, 0xF7, 0xFD, 0x8D, 0x01, 0xA6, 0x82, 0x4F, 0x31, 0x67, 0xFD, 0x31, 0x01, 0x02, 0x5F, +0x04, 0x0C, 0x94, 0xC2, 0x83, 0x31, 0x32, 0x6C, 0xF2, 0xB0, 0xFE, 0xFA, 0xFD, 0x72, 0x70, 0xE8, +0x32, 0x02, 0xA3, 0x00, 0x00, 0x01, 0x00, 0x53, 0xFF, 0xEA, 0x03, 0x7F, 0x05, 0xAE, 0x00, 0x28, +0x00, 0x46, 0x40, 0x43, 0x1B, 0x06, 0x02, 0x05, 0x02, 0x01, 0x4C, 0x00, 0x02, 0x01, 0x05, 0x01, +0x02, 0x05, 0x80, 0x00, 0x05, 0x00, 0x01, 0x05, 0x00, 0x7E, 0x00, 0x03, 0x00, 0x01, 0x02, 0x03, +0x01, 0x69, 0x06, 0x01, 0x00, 0x04, 0x04, 0x00, 0x59, 0x06, 0x01, 0x00, 0x00, 0x04, 0x61, 0x00, +0x04, 0x00, 0x04, 0x51, 0x01, 0x00, 0x26, 0x25, 0x22, 0x20, 0x16, 0x14, 0x11, 0x10, 0x0E, 0x0D, +0x00, 0x28, 0x01, 0x28, 0x07, 0x07, 0x16, 0x2B, 0x25, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x35, +0x3E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x22, 0x06, 0x15, 0x23, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, +0x15, 0x14, 0x06, 0x07, 0x1E, 0x01, 0x15, 0x14, 0x00, 0x23, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x14, +0x16, 0x01, 0xB3, 0x97, 0x86, 0x59, 0x84, 0x51, 0x7E, 0x6E, 0x6F, 0x44, 0x6F, 0x2A, 0x93, 0x52, +0x9B, 0xCC, 0x7A, 0x84, 0x5D, 0xCC, 0xFE, 0xE0, 0xB5, 0x98, 0xBF, 0x31, 0xAC, 0x16, 0xE9, 0xA4, +0x68, 0xCB, 0x2F, 0x13, 0x2D, 0x97, 0x86, 0x6E, 0x9F, 0x0D, 0x5A, 0x42, 0x9F, 0x14, 0x1B, 0xA8, +0xA5, 0x57, 0x9E, 0x3C, 0x0E, 0xF1, 0x9E, 0xA3, 0xFE, 0xFA, 0x4E, 0x31, 0x64, 0x53, 0x64, 0x00, +0x00, 0x02, 0x00, 0x2B, 0x00, 0x00, 0x03, 0xE6, 0x05, 0x9A, 0x00, 0x02, 0x00, 0x18, 0x00, 0x52, +0x40, 0x4F, 0x01, 0x01, 0x07, 0x05, 0x10, 0x01, 0x04, 0x00, 0x02, 0x4C, 0x00, 0x05, 0x07, 0x05, +0x85, 0x00, 0x07, 0x00, 0x07, 0x85, 0x06, 0x09, 0x02, 0x00, 0x0A, 0x08, 0x02, 0x04, 0x01, 0x00, +0x04, 0x67, 0x03, 0x01, 0x01, 0x02, 0x02, 0x01, 0x59, 0x03, 0x01, 0x01, 0x01, 0x02, 0x5F, 0x00, +0x02, 0x01, 0x02, 0x4F, 0x03, 0x03, 0x00, 0x00, 0x03, 0x18, 0x03, 0x18, 0x17, 0x16, 0x15, 0x13, +0x12, 0x11, 0x0F, 0x0E, 0x0C, 0x0A, 0x09, 0x08, 0x07, 0x05, 0x00, 0x02, 0x00, 0x02, 0x0B, 0x07, +0x16, 0x2B, 0x01, 0x11, 0x01, 0x05, 0x15, 0x14, 0x3B, 0x01, 0x15, 0x21, 0x35, 0x33, 0x32, 0x3D, +0x01, 0x21, 0x35, 0x01, 0x33, 0x11, 0x33, 0x32, 0x37, 0x33, 0x07, 0x02, 0x58, 0xFE, 0x58, 0x02, +0x31, 0x48, 0x4C, 0xFE, 0x46, 0x4C, 0x51, 0xFD, 0xD3, 0x02, 0x94, 0x22, 0x13, 0x85, 0x3C, 0x31, +0x67, 0x01, 0xB6, 0x02, 0xAE, 0xFD, 0x52, 0x64, 0xAB, 0x75, 0x32, 0x32, 0x78, 0xA8, 0x23, 0x04, +0x25, 0xFC, 0x1C, 0x84, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x4D, 0xFF, 0xEA, 0x03, 0xA3, +0x05, 0xCE, 0x00, 0x1E, 0x00, 0x6D, 0x4B, 0xB0, 0x18, 0x50, 0x58, 0x40, 0x27, 0x00, 0x01, 0x00, +0x01, 0x85, 0x00, 0x05, 0x07, 0x06, 0x07, 0x05, 0x06, 0x80, 0x00, 0x00, 0x00, 0x02, 0x03, 0x00, +0x02, 0x67, 0x00, 0x06, 0x00, 0x04, 0x06, 0x04, 0x65, 0x00, 0x03, 0x03, 0x07, 0x61, 0x00, 0x07, +0x07, 0x0F, 0x07, 0x4E, 0x1B, 0x40, 0x2D, 0x00, 0x01, 0x00, 0x01, 0x85, 0x00, 0x05, 0x07, 0x06, +0x07, 0x05, 0x06, 0x80, 0x00, 0x00, 0x00, 0x02, 0x03, 0x00, 0x02, 0x67, 0x00, 0x03, 0x00, 0x07, +0x05, 0x03, 0x07, 0x69, 0x00, 0x06, 0x04, 0x04, 0x06, 0x59, 0x00, 0x06, 0x06, 0x04, 0x61, 0x00, +0x04, 0x06, 0x04, 0x51, 0x59, 0x40, 0x0B, 0x24, 0x22, 0x14, 0x24, 0x11, 0x11, 0x11, 0x21, 0x08, +0x07, 0x1E, 0x2B, 0x1B, 0x01, 0x21, 0x32, 0x37, 0x33, 0x07, 0x21, 0x03, 0x32, 0x04, 0x15, 0x14, +0x00, 0x23, 0x22, 0x27, 0x26, 0x3D, 0x01, 0x33, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, +0x23, 0x22, 0xE5, 0x90, 0x01, 0x8C, 0x67, 0x09, 0x32, 0x3F, 0xFE, 0x53, 0x68, 0xE2, 0x01, 0x44, +0xFE, 0xE1, 0xB5, 0x98, 0x60, 0x5C, 0x2E, 0xAC, 0x83, 0x97, 0x85, 0xDC, 0xAF, 0x28, 0x03, 0x54, +0x02, 0x46, 0x34, 0xAC, 0xFE, 0x61, 0xF9, 0xB0, 0xEA, 0xFE, 0xFA, 0x27, 0x25, 0x2D, 0x6A, 0x58, +0x5F, 0xE9, 0xE7, 0x9F, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x4D, 0xFF, 0xE7, 0x03, 0xA9, +0x05, 0xB3, 0x00, 0x0B, 0x00, 0x1F, 0x00, 0x43, 0x40, 0x40, 0x10, 0x01, 0x00, 0x01, 0x01, 0x4C, +0x07, 0x01, 0x05, 0x00, 0x02, 0x03, 0x05, 0x02, 0x69, 0x00, 0x03, 0x00, 0x01, 0x00, 0x03, 0x01, +0x69, 0x06, 0x01, 0x00, 0x04, 0x04, 0x00, 0x59, 0x06, 0x01, 0x00, 0x00, 0x04, 0x61, 0x00, 0x04, +0x00, 0x04, 0x51, 0x0C, 0x0C, 0x01, 0x00, 0x0C, 0x1F, 0x0C, 0x1F, 0x1B, 0x19, 0x13, 0x11, 0x0E, +0x0D, 0x07, 0x05, 0x00, 0x0B, 0x01, 0x0B, 0x08, 0x07, 0x16, 0x2B, 0x25, 0x32, 0x36, 0x35, 0x34, +0x02, 0x23, 0x22, 0x06, 0x15, 0x14, 0x12, 0x01, 0x15, 0x06, 0x00, 0x03, 0x36, 0x33, 0x32, 0x1E, +0x01, 0x15, 0x14, 0x0E, 0x01, 0x23, 0x22, 0x02, 0x35, 0x10, 0x00, 0x02, 0x2E, 0x65, 0x7C, 0xC8, +0x74, 0x5B, 0x90, 0xBF, 0x01, 0x7A, 0xB1, 0xFE, 0xD5, 0x54, 0x60, 0xAA, 0x6C, 0xCE, 0x74, 0x71, +0xAF, 0x52, 0xF3, 0xF7, 0x01, 0xA2, 0x0B, 0xC5, 0x95, 0xCB, 0x01, 0x05, 0xCB, 0x95, 0x99, 0xFE, +0xCF, 0x05, 0xA8, 0x30, 0x0C, 0xFE, 0xB1, 0xFE, 0xD4, 0x5D, 0x72, 0xD3, 0x74, 0x74, 0xD1, 0x74, +0x01, 0x45, 0xD2, 0x01, 0x40, 0x02, 0x75, 0x00, 0x00, 0x01, 0x00, 0x60, 0x00, 0x00, 0x03, 0x96, +0x05, 0x9A, 0x00, 0x13, 0x00, 0x34, 0x40, 0x31, 0x07, 0x01, 0x00, 0x02, 0x01, 0x4C, 0x00, 0x01, +0x00, 0x03, 0x00, 0x01, 0x03, 0x80, 0x00, 0x02, 0x00, 0x00, 0x01, 0x02, 0x00, 0x67, 0x05, 0x01, +0x03, 0x04, 0x04, 0x03, 0x59, 0x05, 0x01, 0x03, 0x03, 0x04, 0x5F, 0x00, 0x04, 0x03, 0x04, 0x4F, +0x21, 0x11, 0x24, 0x11, 0x11, 0x20, 0x06, 0x07, 0x1C, 0x2B, 0x01, 0x21, 0x22, 0x07, 0x23, 0x37, +0x21, 0x07, 0x00, 0x11, 0x14, 0x3B, 0x01, 0x15, 0x21, 0x35, 0x33, 0x32, 0x35, 0x12, 0x02, 0xE1, +0xFE, 0x71, 0x85, 0x3B, 0x32, 0x67, 0x02, 0xCF, 0x01, 0xFE, 0x8E, 0x43, 0x75, 0xFE, 0x65, 0x43, +0x48, 0x13, 0x05, 0x22, 0x70, 0xE8, 0x32, 0xFC, 0x9E, 0xFE, 0xAD, 0x81, 0x32, 0x32, 0x83, 0x01, +0x28, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x4D, 0xFF, 0xE7, 0x03, 0xA9, 0x05, 0xAE, 0x00, 0x15, +0x00, 0x2B, 0x00, 0x4F, 0x00, 0x2D, 0x40, 0x2A, 0x3E, 0x2C, 0x1C, 0x03, 0x01, 0x00, 0x01, 0x4C, +0x00, 0x03, 0x00, 0x00, 0x01, 0x03, 0x00, 0x69, 0x00, 0x01, 0x02, 0x02, 0x01, 0x59, 0x00, 0x01, +0x01, 0x02, 0x61, 0x00, 0x02, 0x01, 0x02, 0x51, 0x48, 0x46, 0x36, 0x34, 0x23, 0x20, 0x3A, 0x04, +0x07, 0x17, 0x2B, 0x01, 0x36, 0x37, 0x36, 0x35, 0x34, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x2B, 0x01, +0x0E, 0x01, 0x07, 0x06, 0x15, 0x14, 0x17, 0x1E, 0x01, 0x17, 0x06, 0x07, 0x06, 0x15, 0x14, 0x17, +0x1E, 0x01, 0x17, 0x16, 0x3B, 0x01, 0x3E, 0x01, 0x37, 0x36, 0x35, 0x34, 0x27, 0x2E, 0x01, 0x27, +0x16, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x0E, 0x01, 0x23, 0x22, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x37, +0x36, 0x37, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x3E, 0x01, 0x33, 0x32, 0x1E, 0x01, 0x15, 0x14, +0x06, 0x07, 0x06, 0x02, 0x28, 0x79, 0x23, 0x1B, 0x03, 0x0C, 0x51, 0x3B, 0x37, 0x33, 0x09, 0x39, +0x61, 0x14, 0x0D, 0x04, 0x0C, 0x4F, 0x63, 0x72, 0x43, 0x38, 0x02, 0x0E, 0x5F, 0x47, 0x40, 0x40, +0x0D, 0x46, 0x73, 0x18, 0x0F, 0x05, 0x0B, 0x7D, 0x05, 0x2A, 0x28, 0x67, 0x74, 0x71, 0xCD, 0x70, +0x70, 0xCD, 0x71, 0x73, 0x67, 0x29, 0x29, 0x18, 0x18, 0x56, 0x5E, 0x60, 0xAB, 0x5B, 0x5A, 0xAC, +0x60, 0x5E, 0x55, 0x19, 0x03, 0x3E, 0x19, 0x63, 0x4B, 0x41, 0x14, 0x13, 0x51, 0x92, 0x25, 0x21, +0x03, 0x56, 0x4C, 0x31, 0x33, 0x1C, 0x1D, 0x50, 0x90, 0x63, 0x15, 0x88, 0x73, 0x5B, 0x12, 0x11, +0x68, 0xB9, 0x30, 0x2C, 0x04, 0x70, 0x61, 0x3E, 0x41, 0x24, 0x25, 0x70, 0xC9, 0x4F, 0x0E, 0x15, +0x38, 0xCD, 0x70, 0x70, 0xCB, 0x71, 0x71, 0xCB, 0x70, 0x70, 0xCD, 0x38, 0x15, 0x0E, 0x09, 0x0C, +0x2C, 0x9E, 0x57, 0x57, 0xA0, 0x56, 0x56, 0xA0, 0x57, 0x57, 0x9E, 0x2C, 0x0D, 0x00, 0x00, 0x00, +0x00, 0x02, 0x00, 0x4D, 0xFF, 0xE7, 0x03, 0xA9, 0x05, 0xB3, 0x00, 0x0B, 0x00, 0x1F, 0x00, 0x42, +0x40, 0x3F, 0x10, 0x01, 0x01, 0x00, 0x01, 0x4C, 0x00, 0x04, 0x06, 0x01, 0x00, 0x01, 0x04, 0x00, +0x69, 0x00, 0x01, 0x00, 0x03, 0x02, 0x01, 0x03, 0x69, 0x00, 0x02, 0x05, 0x05, 0x02, 0x59, 0x00, +0x02, 0x02, 0x05, 0x61, 0x07, 0x01, 0x05, 0x02, 0x05, 0x51, 0x0C, 0x0C, 0x01, 0x00, 0x0C, 0x1F, +0x0C, 0x1F, 0x1B, 0x19, 0x13, 0x11, 0x0E, 0x0D, 0x07, 0x05, 0x00, 0x0B, 0x01, 0x0B, 0x08, 0x07, +0x16, 0x2B, 0x01, 0x22, 0x06, 0x15, 0x14, 0x12, 0x33, 0x32, 0x36, 0x35, 0x34, 0x02, 0x01, 0x35, +0x36, 0x00, 0x13, 0x06, 0x23, 0x22, 0x2E, 0x01, 0x35, 0x34, 0x3E, 0x01, 0x33, 0x32, 0x12, 0x15, +0x10, 0x00, 0x01, 0xC8, 0x65, 0x7B, 0xC8, 0x73, 0x5B, 0x91, 0xC0, 0xFE, 0x86, 0xB1, 0x01, 0x2B, +0x54, 0x5F, 0xAB, 0x6C, 0xCE, 0x74, 0x71, 0xAF, 0x52, 0xF3, 0xF7, 0xFE, 0x5E, 0x05, 0x8F, 0xC5, +0x95, 0xCB, 0xFE, 0xFB, 0xCB, 0x95, 0x99, 0x01, 0x31, 0xFA, 0x58, 0x30, 0x0C, 0x01, 0x4F, 0x01, +0x2C, 0x5D, 0x72, 0xD3, 0x74, 0x74, 0xD1, 0x74, 0xFE, 0xBB, 0xD2, 0xFE, 0xC0, 0xFD, 0x8B, 0x00, +0x00, 0x02, 0x00, 0x81, 0xFF, 0xFB, 0x01, 0x7B, 0x03, 0xBE, 0x00, 0x13, 0x00, 0x27, 0x00, 0x22, +0x40, 0x1F, 0x00, 0x02, 0x00, 0x03, 0x00, 0x02, 0x03, 0x69, 0x00, 0x00, 0x01, 0x01, 0x00, 0x59, +0x00, 0x00, 0x00, 0x01, 0x61, 0x00, 0x01, 0x00, 0x01, 0x51, 0x28, 0x28, 0x28, 0x22, 0x04, 0x07, +0x1A, 0x2B, 0x3F, 0x01, 0x36, 0x33, 0x32, 0x1F, 0x01, 0x16, 0x15, 0x14, 0x0F, 0x01, 0x06, 0x23, +0x22, 0x2F, 0x01, 0x26, 0x35, 0x34, 0x13, 0x37, 0x36, 0x33, 0x32, 0x1F, 0x01, 0x16, 0x15, 0x14, +0x0F, 0x01, 0x06, 0x23, 0x22, 0x2F, 0x01, 0x26, 0x35, 0x34, 0x91, 0x52, 0x0F, 0x0E, 0x0D, 0x12, +0x50, 0x0C, 0x0E, 0x50, 0x14, 0x09, 0x10, 0x0D, 0x58, 0x0A, 0x10, 0x52, 0x0F, 0x0E, 0x0D, 0x12, +0x50, 0x0C, 0x0E, 0x50, 0x14, 0x09, 0x10, 0x0D, 0x58, 0x0A, 0xA7, 0x54, 0x0E, 0x10, 0x56, 0x10, +0x0D, 0x0F, 0x10, 0x58, 0x14, 0x0E, 0x65, 0x0D, 0x0D, 0x0F, 0x02, 0xC5, 0x54, 0x0E, 0x10, 0x56, +0x10, 0x0D, 0x0F, 0x10, 0x58, 0x14, 0x0E, 0x65, 0x0D, 0x0D, 0x0F, 0x00, 0x00, 0x02, 0x00, 0x77, +0xFE, 0xD1, 0x01, 0x7B, 0x03, 0xBD, 0x00, 0x13, 0x00, 0x20, 0x00, 0x2F, 0x40, 0x2C, 0x20, 0x1F, +0x1D, 0x1B, 0x04, 0x03, 0x02, 0x01, 0x4C, 0x00, 0x02, 0x01, 0x03, 0x01, 0x02, 0x03, 0x80, 0x00, +0x03, 0x03, 0x84, 0x00, 0x00, 0x01, 0x01, 0x00, 0x59, 0x00, 0x00, 0x00, 0x01, 0x61, 0x00, 0x01, +0x00, 0x01, 0x51, 0x14, 0x16, 0x28, 0x22, 0x04, 0x07, 0x1A, 0x2B, 0x13, 0x37, 0x36, 0x33, 0x32, +0x1F, 0x01, 0x16, 0x15, 0x14, 0x0F, 0x01, 0x06, 0x23, 0x22, 0x2F, 0x01, 0x26, 0x35, 0x34, 0x13, +0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x35, 0x36, 0x37, 0x34, 0x27, 0x35, 0x91, 0x52, 0x0F, 0x0E, +0x0D, 0x12, 0x50, 0x0C, 0x0E, 0x50, 0x14, 0x09, 0x10, 0x0D, 0x58, 0x0A, 0x6D, 0x2C, 0x59, 0x8E, +0x44, 0x49, 0x0E, 0x81, 0x03, 0x5B, 0x54, 0x0E, 0x10, 0x56, 0x10, 0x0D, 0x0F, 0x10, 0x58, 0x14, +0x0E, 0x65, 0x0D, 0x0D, 0x0F, 0xFD, 0xB7, 0x83, 0x56, 0x6D, 0xEB, 0x2B, 0x2B, 0x93, 0x77, 0x2A, +0x2A, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x57, 0x00, 0xC1, 0x03, 0x9F, 0x04, 0xD9, 0x00, 0x06, +0x00, 0x06, 0xB3, 0x06, 0x03, 0x01, 0x32, 0x2B, 0x09, 0x02, 0x15, 0x01, 0x35, 0x01, 0x03, 0x9F, +0xFD, 0x8F, 0x02, 0x71, 0xFC, 0xB8, 0x03, 0x48, 0x04, 0x32, 0xFE, 0x99, 0xFE, 0x9D, 0xA7, 0x01, +0xE1, 0x53, 0x01, 0xE4, 0x00, 0x02, 0x00, 0x57, 0x01, 0xEB, 0x03, 0x9F, 0x03, 0xAF, 0x00, 0x03, +0x00, 0x07, 0x00, 0x22, 0x40, 0x1F, 0x00, 0x02, 0x00, 0x03, 0x00, 0x02, 0x03, 0x67, 0x00, 0x00, +0x01, 0x01, 0x00, 0x57, 0x00, 0x00, 0x00, 0x01, 0x5F, 0x00, 0x01, 0x00, 0x01, 0x4F, 0x11, 0x11, +0x11, 0x10, 0x04, 0x07, 0x1A, 0x2B, 0x13, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x57, 0x03, +0x48, 0xFC, 0xB8, 0x03, 0x48, 0xFC, 0xB8, 0x02, 0x77, 0x8C, 0x01, 0xC4, 0x8C, 0x00, 0x00, 0x00, +0x00, 0x01, 0x00, 0x57, 0x00, 0xC1, 0x03, 0x9F, 0x04, 0xD9, 0x00, 0x06, 0x00, 0x06, 0xB3, 0x03, +0x00, 0x01, 0x32, 0x2B, 0x13, 0x01, 0x15, 0x01, 0x35, 0x09, 0x01, 0x57, 0x03, 0x48, 0xFC, 0xB8, +0x02, 0x71, 0xFD, 0x8F, 0x04, 0xD9, 0xFE, 0x1C, 0x53, 0xFE, 0x1F, 0xA7, 0x01, 0x63, 0x01, 0x67, +0x00, 0x02, 0x00, 0x84, 0xFF, 0xFB, 0x02, 0x9A, 0x05, 0x9A, 0x00, 0x18, 0x00, 0x2C, 0x00, 0x32, +0x40, 0x2F, 0x18, 0x00, 0x02, 0x01, 0x02, 0x01, 0x4C, 0x00, 0x01, 0x02, 0x03, 0x02, 0x01, 0x03, +0x80, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00, 0x02, 0x69, 0x00, 0x03, 0x04, 0x04, 0x03, 0x59, 0x00, +0x03, 0x03, 0x04, 0x61, 0x00, 0x04, 0x03, 0x04, 0x51, 0x28, 0x24, 0x27, 0x1A, 0x21, 0x05, 0x07, +0x1B, 0x2B, 0x13, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x17, +0x23, 0x26, 0x35, 0x34, 0x12, 0x35, 0x34, 0x26, 0x23, 0x22, 0x07, 0x13, 0x37, 0x36, 0x33, 0x32, +0x1F, 0x01, 0x16, 0x15, 0x14, 0x0F, 0x01, 0x06, 0x23, 0x22, 0x2F, 0x01, 0x26, 0x35, 0x34, 0x84, +0x80, 0x72, 0x84, 0xA0, 0x41, 0x5C, 0x5A, 0x67, 0x23, 0x2F, 0x32, 0xE9, 0x5E, 0x53, 0x54, 0x5E, +0x5B, 0x52, 0x0F, 0x0E, 0x0D, 0x12, 0x50, 0x0C, 0x0E, 0x50, 0x14, 0x09, 0x10, 0x0D, 0x58, 0x0A, +0x05, 0x32, 0x68, 0x88, 0x72, 0x45, 0x8E, 0x73, 0x71, 0x95, 0x44, 0x3F, 0x7E, 0x8A, 0x49, 0x6D, +0x01, 0x96, 0x6A, 0x52, 0x5E, 0x51, 0xFB, 0xB5, 0x54, 0x0E, 0x10, 0x56, 0x10, 0x0D, 0x0F, 0x10, +0x58, 0x14, 0x0E, 0x65, 0x0D, 0x0D, 0x0F, 0x00, 0x00, 0x02, 0x00, 0x64, 0xFE, 0x5E, 0x07, 0x5A, +0x05, 0x9A, 0x00, 0x0A, 0x00, 0x50, 0x00, 0x65, 0x40, 0x62, 0x0E, 0x09, 0x08, 0x03, 0x06, 0x04, +0x40, 0x3F, 0x02, 0x08, 0x02, 0x02, 0x4C, 0x00, 0x04, 0x03, 0x06, 0x03, 0x04, 0x06, 0x80, 0x00, +0x0A, 0x00, 0x07, 0x05, 0x0A, 0x07, 0x69, 0x00, 0x05, 0x00, 0x03, 0x04, 0x05, 0x03, 0x69, 0x00, +0x06, 0x0B, 0x01, 0x01, 0x02, 0x06, 0x01, 0x69, 0x00, 0x00, 0x00, 0x02, 0x08, 0x00, 0x02, 0x69, +0x00, 0x08, 0x09, 0x09, 0x08, 0x59, 0x00, 0x08, 0x08, 0x09, 0x61, 0x00, 0x09, 0x08, 0x09, 0x51, +0x0C, 0x0B, 0x4B, 0x49, 0x43, 0x41, 0x3E, 0x3C, 0x35, 0x33, 0x2D, 0x2C, 0x28, 0x26, 0x22, 0x21, +0x1F, 0x1D, 0x12, 0x10, 0x0B, 0x50, 0x0C, 0x50, 0x25, 0x0C, 0x07, 0x17, 0x2B, 0x01, 0x0E, 0x01, +0x15, 0x14, 0x16, 0x33, 0x36, 0x37, 0x11, 0x06, 0x01, 0x2E, 0x01, 0x27, 0x0E, 0x01, 0x23, 0x22, +0x26, 0x35, 0x3E, 0x02, 0x37, 0x3E, 0x01, 0x35, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x07, 0x23, 0x35, +0x34, 0x37, 0x36, 0x33, 0x1E, 0x01, 0x15, 0x11, 0x14, 0x33, 0x36, 0x12, 0x35, 0x02, 0x27, 0x26, +0x21, 0x22, 0x00, 0x07, 0x06, 0x15, 0x10, 0x00, 0x04, 0x33, 0x20, 0x25, 0x15, 0x04, 0x21, 0x22, +0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x20, 0x00, 0x11, 0x10, 0x07, 0x06, 0x03, 0xCC, 0x53, +0x88, 0x80, 0x77, 0x61, 0x1D, 0x36, 0x01, 0x20, 0x3F, 0x4B, 0x18, 0x1D, 0x6A, 0x50, 0x90, 0xE1, +0x01, 0x68, 0xA1, 0x5D, 0x43, 0x56, 0x02, 0x4E, 0x5A, 0x48, 0x63, 0x01, 0x2D, 0x48, 0x49, 0x69, +0x6D, 0xA9, 0x5E, 0xB9, 0xA4, 0x14, 0xD4, 0xC5, 0xFE, 0xE5, 0xCD, 0xFE, 0x89, 0x52, 0x43, 0x01, +0x03, 0x01, 0x5F, 0x8F, 0x01, 0x12, 0x01, 0x2D, 0xFE, 0xF9, 0xFE, 0xCC, 0xF0, 0xFE, 0x46, 0xF4, +0xF8, 0x01, 0xBB, 0xEB, 0x01, 0x6A, 0x01, 0xEE, 0xB0, 0xAF, 0x02, 0x6E, 0x0A, 0x8C, 0x81, 0x6B, +0xAE, 0x05, 0xA2, 0x01, 0xDC, 0x3F, 0xFD, 0x9B, 0x01, 0x22, 0x25, 0x25, 0x37, 0xC9, 0x85, 0x57, +0x9F, 0x47, 0x0E, 0x10, 0x35, 0x30, 0x45, 0x70, 0x76, 0x42, 0x9F, 0x14, 0x14, 0x14, 0x02, 0x7D, +0x5F, 0xFD, 0xB3, 0x75, 0x23, 0x01, 0x39, 0xE2, 0x01, 0x4F, 0xCD, 0xBC, 0xFE, 0xED, 0xDA, 0xB2, +0xB7, 0xFE, 0xC7, 0xFE, 0x73, 0xB8, 0xD0, 0x4B, 0xB8, 0xF5, 0x01, 0xB7, 0xF2, 0xF2, 0x01, 0xBD, +0xEF, 0xFE, 0x34, 0xFE, 0xB0, 0xFE, 0xF2, 0xA9, 0xA8, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0x38, +0x03, 0x20, 0x03, 0x38, 0x08, 0x70, 0x00, 0x5B, 0x00, 0x67, 0x00, 0x76, 0x00, 0x87, 0x00, 0x92, +0x00, 0x9C, 0x00, 0xA7, 0x00, 0x00, 0x13, 0x33, 0x16, 0x15, 0x06, 0x15, 0x14, 0x23, 0x06, 0x15, +0x14, 0x07, 0x15, 0x33, 0x36, 0x33, 0x36, 0x35, 0x34, 0x33, 0x34, 0x37, 0x16, 0x17, 0x06, 0x15, +0x16, 0x15, 0x16, 0x33, 0x26, 0x23, 0x26, 0x23, 0x35, 0x34, 0x37, 0x35, 0x27, 0x35, 0x34, 0x37, +0x32, 0x17, 0x35, 0x27, 0x36, 0x33, 0x16, 0x17, 0x16, 0x1D, 0x01, 0x14, 0x17, 0x16, 0x1D, 0x01, +0x14, 0x07, 0x15, 0x06, 0x2B, 0x01, 0x22, 0x3D, 0x01, 0x23, 0x15, 0x14, 0x23, 0x22, 0x3D, 0x01, +0x23, 0x15, 0x06, 0x2B, 0x01, 0x22, 0x3D, 0x01, 0x26, 0x3D, 0x01, 0x34, 0x37, 0x10, 0x37, 0x36, +0x37, 0x36, 0x01, 0x14, 0x17, 0x36, 0x3D, 0x01, 0x34, 0x27, 0x23, 0x22, 0x07, 0x06, 0x05, 0x14, +0x17, 0x32, 0x17, 0x32, 0x37, 0x36, 0x35, 0x34, 0x27, 0x23, 0x22, 0x07, 0x06, 0x07, 0x23, 0x26, +0x2B, 0x01, 0x22, 0x1D, 0x01, 0x16, 0x3B, 0x01, 0x32, 0x37, 0x35, 0x34, 0x27, 0x06, 0x03, 0x32, +0x1D, 0x01, 0x14, 0x07, 0x23, 0x22, 0x35, 0x34, 0x33, 0x21, 0x32, 0x1D, 0x01, 0x06, 0x23, 0x22, +0x3D, 0x01, 0x34, 0x07, 0x33, 0x32, 0x1D, 0x01, 0x14, 0x23, 0x26, 0x3D, 0x01, 0x36, 0xD0, 0x04, +0x40, 0x38, 0x10, 0x70, 0x1C, 0x04, 0x23, 0x39, 0x60, 0x24, 0x24, 0x19, 0x17, 0x08, 0x88, 0x2A, +0x02, 0x24, 0x10, 0x4C, 0x08, 0x20, 0x58, 0x1C, 0x07, 0x39, 0x04, 0x15, 0x3F, 0x8A, 0x4E, 0x10, +0x04, 0x3C, 0xF8, 0x09, 0x33, 0x24, 0x30, 0x2C, 0x50, 0x48, 0x2C, 0x10, 0x28, 0x2C, 0x2C, 0xF8, +0x3C, 0x34, 0x3F, 0xB5, 0x2B, 0xFE, 0xE1, 0x94, 0x90, 0x78, 0x2C, 0x41, 0x33, 0x0C, 0x01, 0xF4, +0x70, 0x0A, 0x16, 0x6C, 0x24, 0x04, 0x80, 0x28, 0x4A, 0x2E, 0x04, 0x6C, 0x04, 0x15, 0x0F, 0x0C, +0x20, 0x36, 0x1A, 0x04, 0x1F, 0x35, 0x30, 0x11, 0xD3, 0x48, 0x1C, 0x44, 0x1C, 0x24, 0x01, 0xA0, +0x38, 0x07, 0x29, 0x50, 0x9C, 0x20, 0x48, 0x54, 0x44, 0x05, 0x08, 0x70, 0x57, 0x11, 0x21, 0x17, +0x38, 0x31, 0x17, 0x0D, 0x43, 0x04, 0x64, 0x14, 0x10, 0x48, 0x06, 0x06, 0x29, 0x2F, 0x33, 0x11, +0x37, 0x19, 0x30, 0x7C, 0x24, 0x04, 0x10, 0x2C, 0x08, 0x54, 0x04, 0x17, 0x19, 0x10, 0x04, 0x1C, +0x0C, 0x41, 0xC7, 0x3F, 0x29, 0x38, 0x28, 0x50, 0x3A, 0x5A, 0x04, 0x9A, 0x7A, 0x30, 0x40, 0x44, +0x0C, 0x30, 0x50, 0x4C, 0x34, 0x18, 0x38, 0x44, 0x2C, 0x70, 0xA0, 0x08, 0x59, 0x3B, 0x01, 0x26, +0x36, 0x92, 0x4E, 0x0C, 0xFD, 0x2C, 0x79, 0x17, 0x18, 0x78, 0x04, 0x69, 0x23, 0x54, 0x28, 0x1C, +0x5A, 0x2A, 0x04, 0x74, 0x0F, 0x15, 0x66, 0x22, 0x68, 0x1C, 0x90, 0x14, 0x28, 0x08, 0x48, 0x50, +0x08, 0x1C, 0x08, 0x07, 0xFE, 0xC3, 0x2C, 0x48, 0x23, 0x11, 0x54, 0x54, 0x34, 0x3C, 0x3C, 0x40, +0x3C, 0x30, 0x30, 0x3C, 0x18, 0x48, 0x06, 0x3E, 0x20, 0x38, 0x00, 0x00, 0x00, 0x04, 0xFF, 0x9C, +0x03, 0x84, 0x03, 0x9C, 0x07, 0x84, 0x00, 0x2B, 0x00, 0x57, 0x00, 0x61, 0x00, 0x6A, 0x00, 0x00, +0x01, 0x33, 0x16, 0x1D, 0x01, 0x32, 0x17, 0x16, 0x15, 0x33, 0x16, 0x1D, 0x01, 0x14, 0x2B, 0x01, +0x14, 0x07, 0x06, 0x23, 0x15, 0x14, 0x2B, 0x01, 0x22, 0x3D, 0x01, 0x22, 0x27, 0x26, 0x35, 0x23, +0x22, 0x3D, 0x01, 0x36, 0x3B, 0x01, 0x34, 0x37, 0x36, 0x33, 0x35, 0x36, 0x01, 0x33, 0x16, 0x1D, +0x01, 0x14, 0x2B, 0x01, 0x16, 0x17, 0x16, 0x33, 0x35, 0x36, 0x3B, 0x01, 0x16, 0x1D, 0x01, 0x36, +0x37, 0x36, 0x35, 0x23, 0x22, 0x3D, 0x01, 0x36, 0x3B, 0x01, 0x26, 0x27, 0x26, 0x23, 0x15, 0x14, +0x2B, 0x01, 0x22, 0x3D, 0x01, 0x06, 0x07, 0x06, 0x25, 0x32, 0x17, 0x15, 0x14, 0x07, 0x22, 0x27, +0x34, 0x37, 0x17, 0x32, 0x1F, 0x01, 0x07, 0x21, 0x22, 0x35, 0x34, 0x01, 0x74, 0x50, 0x08, 0x81, +0x8B, 0x64, 0x58, 0x08, 0x08, 0x58, 0x8C, 0x80, 0x64, 0x08, 0x50, 0x08, 0x81, 0x8B, 0x64, 0x58, +0x08, 0x01, 0x07, 0x58, 0x8C, 0x80, 0x64, 0x01, 0xFE, 0xEF, 0x24, 0x08, 0x08, 0x24, 0x05, 0x5B, +0x6D, 0x43, 0x01, 0x07, 0x50, 0x08, 0x54, 0x68, 0x54, 0x24, 0x08, 0x01, 0x07, 0x24, 0x0A, 0x56, +0x6D, 0x43, 0x08, 0x50, 0x08, 0x54, 0x68, 0x54, 0x01, 0x38, 0x49, 0x1B, 0x60, 0x53, 0x09, 0x50, +0x0C, 0x6E, 0x1E, 0x04, 0x08, 0xFE, 0xF4, 0x08, 0x07, 0x84, 0x01, 0x07, 0x58, 0x8C, 0x80, 0x64, +0x01, 0x07, 0x50, 0x08, 0x81, 0x8B, 0x64, 0x58, 0x08, 0x08, 0x58, 0x8C, 0x80, 0x64, 0x08, 0x50, +0x08, 0x81, 0x8B, 0x64, 0x58, 0x08, 0xFE, 0x30, 0x01, 0x07, 0x50, 0x08, 0x54, 0x68, 0x54, 0x24, +0x08, 0x01, 0x07, 0x24, 0x05, 0x5B, 0x6C, 0x44, 0x08, 0x50, 0x08, 0x5D, 0x5F, 0x54, 0x24, 0x08, +0x08, 0x24, 0x04, 0x5C, 0x6C, 0x48, 0x4C, 0x18, 0x4C, 0x0C, 0x60, 0x44, 0x18, 0xE8, 0x68, 0x24, +0x04, 0x08, 0x78, 0x00, 0x00, 0x02, 0x00, 0x64, 0x03, 0x20, 0x03, 0x14, 0x08, 0x78, 0x00, 0x0D, +0x00, 0x2B, 0x00, 0x00, 0x01, 0x32, 0x17, 0x14, 0x17, 0x06, 0x2B, 0x01, 0x22, 0x27, 0x35, 0x34, +0x37, 0x36, 0x13, 0x32, 0x17, 0x33, 0x32, 0x1D, 0x01, 0x14, 0x0F, 0x01, 0x15, 0x14, 0x07, 0x06, +0x2B, 0x01, 0x22, 0x27, 0x35, 0x23, 0x22, 0x27, 0x26, 0x3D, 0x01, 0x34, 0x3B, 0x01, 0x36, 0x33, +0x01, 0xC4, 0x80, 0x34, 0x04, 0x1E, 0x9E, 0x10, 0x87, 0x2D, 0x74, 0x1A, 0x76, 0x1D, 0x33, 0x20, +0xA4, 0x68, 0x30, 0x6C, 0x15, 0x13, 0x58, 0x7C, 0x18, 0x10, 0x58, 0x2C, 0x04, 0x98, 0x24, 0x4C, +0x04, 0x08, 0x78, 0x98, 0x05, 0x23, 0xBC, 0xAC, 0x14, 0x6F, 0x3D, 0x10, 0xFE, 0x70, 0x24, 0xA8, +0xE0, 0x8C, 0x24, 0x04, 0xCC, 0x73, 0x25, 0x04, 0x88, 0xE0, 0x70, 0x22, 0x16, 0xD8, 0xBC, 0x24, +0x00, 0x02, 0x00, 0x00, 0x03, 0x84, 0x04, 0x00, 0x07, 0x84, 0x00, 0x0B, 0x00, 0x29, 0x00, 0x00, +0x13, 0x21, 0x15, 0x07, 0x01, 0x14, 0x07, 0x01, 0x07, 0x23, 0x11, 0x36, 0x21, 0x20, 0x13, 0x16, +0x1D, 0x01, 0x10, 0x05, 0x06, 0x23, 0x22, 0x27, 0x26, 0x35, 0x37, 0x33, 0x32, 0x17, 0x12, 0x33, +0x32, 0x13, 0x36, 0x35, 0x34, 0x27, 0x26, 0x27, 0x35, 0x34, 0x08, 0x01, 0x84, 0x90, 0x01, 0x28, +0x60, 0xFE, 0xD4, 0x94, 0x04, 0x01, 0x02, 0x0B, 0x01, 0x13, 0xAD, 0x34, 0xFE, 0xF0, 0x70, 0x90, +0xF6, 0xAA, 0x50, 0x08, 0x7C, 0x07, 0x11, 0x6C, 0xF8, 0xF9, 0x6B, 0x10, 0xDC, 0x3B, 0x5D, 0x07, +0x84, 0x04, 0x94, 0xFE, 0xD4, 0x06, 0x5A, 0x01, 0x28, 0x90, 0x01, 0x84, 0x08, 0xFE, 0xE8, 0x7A, +0x5E, 0x20, 0xFE, 0xF5, 0xAD, 0x38, 0xEC, 0x82, 0x8E, 0x04, 0x70, 0xFE, 0xFC, 0x01, 0x04, 0x3C, +0x3C, 0xD4, 0x78, 0x18, 0x0C, 0x80, 0x08, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x03, 0x20, 0x03, 0xE8, +0x07, 0x08, 0x00, 0x75, 0x00, 0x79, 0x00, 0x85, 0x00, 0x89, 0x00, 0xA0, 0x00, 0xAA, 0x00, 0xEA, +0x01, 0x26, 0x01, 0x3C, 0x01, 0x46, 0x01, 0x53, 0x01, 0x5D, 0x01, 0x74, 0x01, 0x7E, 0x00, 0x00, +0x13, 0x17, 0x33, 0x32, 0x37, 0x17, 0x33, 0x32, 0x37, 0x17, 0x33, 0x32, 0x37, 0x17, 0x33, 0x32, +0x37, 0x17, 0x33, 0x32, 0x37, 0x17, 0x33, 0x37, 0x32, 0x01, 0x15, 0x14, 0x17, 0x06, 0x1D, 0x01, +0x14, 0x17, 0x06, 0x1D, 0x01, 0x14, 0x17, 0x06, 0x2B, 0x01, 0x26, 0x3D, 0x01, 0x21, 0x22, 0x27, +0x36, 0x3D, 0x01, 0x34, 0x27, 0x36, 0x3D, 0x01, 0x34, 0x27, 0x36, 0x3D, 0x01, 0x21, 0x11, 0x21, +0x32, 0x17, 0x15, 0x14, 0x07, 0x21, 0x22, 0x27, 0x37, 0x35, 0x34, 0x27, 0x37, 0x35, 0x34, 0x27, +0x37, 0x35, 0x34, 0x27, 0x37, 0x35, 0x34, 0x27, 0x37, 0x35, 0x34, 0x27, 0x37, 0x35, 0x34, 0x27, +0x37, 0x35, 0x34, 0x27, 0x37, 0x35, 0x34, 0x27, 0x37, 0x35, 0x34, 0x27, 0x37, 0x35, 0x34, 0x27, +0x37, 0x35, 0x27, 0x34, 0x33, 0x32, 0x05, 0x15, 0x33, 0x26, 0x25, 0x21, 0x16, 0x1D, 0x01, 0x14, +0x07, 0x21, 0x22, 0x27, 0x35, 0x34, 0x17, 0x15, 0x21, 0x35, 0x13, 0x33, 0x32, 0x17, 0x33, 0x32, +0x17, 0x15, 0x14, 0x07, 0x23, 0x14, 0x07, 0x26, 0x35, 0x21, 0x22, 0x27, 0x35, 0x34, 0x37, 0x21, +0x36, 0x17, 0x15, 0x16, 0x17, 0x32, 0x35, 0x34, 0x2B, 0x01, 0x06, 0x05, 0x33, 0x32, 0x17, 0x16, +0x33, 0x34, 0x37, 0x33, 0x32, 0x17, 0x14, 0x07, 0x16, 0x33, 0x32, 0x15, 0x14, 0x23, 0x22, 0x15, +0x22, 0x15, 0x14, 0x17, 0x14, 0x07, 0x23, 0x26, 0x35, 0x06, 0x15, 0x06, 0x2B, 0x01, 0x22, 0x27, +0x26, 0x27, 0x07, 0x23, 0x26, 0x35, 0x36, 0x37, 0x26, 0x23, 0x22, 0x27, 0x35, 0x34, 0x37, 0x34, +0x37, 0x22, 0x27, 0x35, 0x36, 0x37, 0x32, 0x17, 0x36, 0x33, 0x34, 0x17, 0x15, 0x14, 0x23, 0x22, +0x07, 0x23, 0x27, 0x07, 0x15, 0x17, 0x15, 0x06, 0x23, 0x22, 0x07, 0x15, 0x14, 0x17, 0x16, 0x17, +0x22, 0x07, 0x14, 0x17, 0x36, 0x33, 0x16, 0x15, 0x16, 0x3B, 0x01, 0x34, 0x33, 0x36, 0x33, 0x16, +0x33, 0x37, 0x35, 0x26, 0x35, 0x36, 0x37, 0x32, 0x37, 0x35, 0x34, 0x27, 0x26, 0x27, 0x34, 0x37, +0x35, 0x27, 0x07, 0x26, 0x35, 0x26, 0x27, 0x05, 0x32, 0x17, 0x33, 0x32, 0x17, 0x15, 0x14, 0x07, +0x23, 0x06, 0x23, 0x22, 0x27, 0x23, 0x22, 0x27, 0x35, 0x34, 0x37, 0x33, 0x36, 0x17, 0x15, 0x14, +0x33, 0x32, 0x3D, 0x01, 0x26, 0x23, 0x06, 0x05, 0x32, 0x1F, 0x01, 0x15, 0x14, 0x07, 0x06, 0x23, +0x22, 0x27, 0x35, 0x36, 0x17, 0x16, 0x3B, 0x01, 0x32, 0x37, 0x26, 0x2B, 0x01, 0x06, 0x05, 0x16, +0x15, 0x33, 0x16, 0x1D, 0x01, 0x14, 0x2B, 0x01, 0x06, 0x2B, 0x01, 0x22, 0x27, 0x23, 0x22, 0x3D, +0x01, 0x36, 0x3B, 0x01, 0x34, 0x17, 0x14, 0x3B, 0x01, 0x36, 0x35, 0x26, 0x27, 0x23, 0x06, 0x34, +0x18, 0x24, 0x0D, 0x07, 0x18, 0x24, 0x0D, 0x07, 0x18, 0x24, 0x0D, 0x07, 0x18, 0x24, 0x0D, 0x07, +0x18, 0x24, 0x0D, 0x07, 0x18, 0x24, 0x18, 0x11, 0x01, 0x23, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, +0x08, 0x0C, 0x0C, 0xFE, 0xEC, 0x08, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0xFE, 0x14, 0x02, 0x00, +0x06, 0x06, 0x0C, 0xFD, 0xEC, 0x04, 0x0C, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, +0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x14, 0x1C, 0x02, +0x00, 0xE0, 0x3A, 0xFD, 0x9A, 0x01, 0x40, 0x08, 0x0C, 0xFE, 0xC4, 0x06, 0x06, 0x20, 0x01, 0x14, +0x24, 0x0C, 0x22, 0x12, 0x38, 0x06, 0x06, 0x0C, 0x38, 0x3C, 0x34, 0xFE, 0xD0, 0x06, 0x06, 0x0C, +0x01, 0x28, 0x1D, 0x07, 0x08, 0x10, 0x1C, 0x1C, 0x04, 0x14, 0x01, 0x2C, 0x38, 0x0F, 0x05, 0x31, +0x07, 0x24, 0x08, 0x06, 0x2A, 0x1C, 0x0A, 0x1A, 0x2C, 0x18, 0x30, 0x08, 0x1C, 0x38, 0x04, 0x24, +0x34, 0x08, 0x0C, 0x3C, 0x0B, 0x09, 0x27, 0x09, 0x28, 0x0C, 0x30, 0x0C, 0x14, 0x17, 0x09, 0x2E, +0x02, 0x3C, 0x14, 0x06, 0x1A, 0x19, 0x17, 0x0B, 0x29, 0x24, 0x10, 0x20, 0x28, 0x0A, 0x1E, 0x0C, +0x28, 0x0C, 0x18, 0x23, 0x05, 0x05, 0x23, 0x34, 0x06, 0x1A, 0x05, 0x17, 0x10, 0x1E, 0x0E, 0x50, +0x04, 0x08, 0x14, 0x20, 0x33, 0x09, 0x26, 0x02, 0x0C, 0x18, 0x0F, 0x15, 0x09, 0x23, 0x34, 0x02, +0x1E, 0x1C, 0x0C, 0x28, 0x58, 0x04, 0x04, 0xFD, 0xF0, 0x1B, 0x1D, 0xCC, 0x06, 0x06, 0x0C, 0xD0, +0x0D, 0x2B, 0x26, 0x1A, 0x48, 0x06, 0x06, 0x0C, 0x48, 0x18, 0x0C, 0x1C, 0x18, 0x0C, 0x10, 0x10, +0x02, 0x20, 0x53, 0x25, 0x04, 0x60, 0x05, 0x17, 0x64, 0x1C, 0x13, 0x0D, 0x12, 0x4A, 0x08, 0x4C, +0x0C, 0x0D, 0x4B, 0x08, 0x5C, 0xFE, 0xDC, 0x38, 0x10, 0x18, 0x08, 0x20, 0x0E, 0x22, 0x0C, 0x23, +0x19, 0xD4, 0x08, 0x04, 0x14, 0xCC, 0x1C, 0x1C, 0x08, 0x14, 0x05, 0x0F, 0x14, 0x10, 0x07, 0x08, +0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0xFE, 0xE8, 0x0C, 0x15, +0x0F, 0x15, 0x13, 0x04, 0x15, 0x0F, 0x15, 0x13, 0x04, 0x13, 0x15, 0x28, 0x04, 0x14, 0xD0, 0x30, +0x15, 0x13, 0x04, 0x15, 0x0F, 0x15, 0x13, 0x04, 0x13, 0x15, 0x0F, 0x15, 0x10, 0xFC, 0x88, 0x0C, +0x08, 0x06, 0x06, 0x10, 0x1C, 0x24, 0x0D, 0x07, 0x18, 0x24, 0x0D, 0x07, 0x18, 0x24, 0x0D, 0x07, +0x18, 0x24, 0x0D, 0x07, 0x18, 0x24, 0x0D, 0x07, 0x18, 0x24, 0x0D, 0x07, 0x18, 0x24, 0x0D, 0x07, +0x18, 0x24, 0x0D, 0x07, 0x18, 0x24, 0x0D, 0x07, 0x18, 0x24, 0x0D, 0x07, 0x18, 0x24, 0x18, 0x30, +0x38, 0xD0, 0x3E, 0x5A, 0x01, 0x07, 0xA4, 0x06, 0x06, 0x0C, 0xA0, 0x06, 0x1A, 0x78, 0x78, 0xFE, +0xEC, 0x2C, 0x0C, 0x08, 0x06, 0x06, 0x21, 0x0B, 0x0C, 0x20, 0x0C, 0x08, 0x06, 0x06, 0x2C, 0x3C, +0x08, 0x0E, 0x06, 0x1C, 0x1C, 0x08, 0x24, 0x3C, 0x14, 0x05, 0x17, 0x30, 0x0F, 0x21, 0x38, 0x1C, +0x40, 0x28, 0x10, 0x04, 0x24, 0x22, 0x16, 0x19, 0x03, 0x15, 0x07, 0x34, 0x3C, 0x0B, 0x09, 0x1C, +0x2A, 0x0A, 0x19, 0x13, 0x38, 0x10, 0x3C, 0x0B, 0x09, 0x0F, 0x25, 0x28, 0x04, 0x23, 0x11, 0x1C, +0x14, 0x3C, 0x20, 0x04, 0x3C, 0x14, 0x1C, 0x10, 0x04, 0x20, 0x10, 0x4C, 0x04, 0x14, 0x06, 0x0A, +0x1D, 0x37, 0x24, 0x06, 0x0A, 0x18, 0x1D, 0x0B, 0x28, 0x38, 0x18, 0x1C, 0x10, 0x04, 0x1E, 0x0E, +0x19, 0x37, 0x04, 0x14, 0x06, 0x0A, 0x16, 0x3A, 0x04, 0x24, 0x04, 0x10, 0x1C, 0x1C, 0x10, 0x0A, +0x1E, 0x28, 0x2C, 0x0C, 0x08, 0x06, 0x06, 0x2C, 0x2C, 0x0C, 0x08, 0x06, 0x06, 0x2C, 0x34, 0x08, +0x1C, 0x1C, 0x08, 0x14, 0x05, 0x0F, 0x58, 0x18, 0x1C, 0x4A, 0x22, 0x04, 0x74, 0x08, 0x80, 0x7C, +0x60, 0x60, 0x5C, 0x13, 0x2D, 0x10, 0x1C, 0x02, 0x0A, 0x0C, 0x08, 0x2C, 0x2C, 0x08, 0x0C, 0x0C, +0x1E, 0x32, 0x18, 0x0C, 0x10, 0x11, 0x07, 0x06, 0x00, 0x04, 0x00, 0x00, 0x03, 0x1E, 0x04, 0x00, +0x07, 0x22, 0x00, 0x1C, 0x00, 0x39, 0x00, 0x47, 0x00, 0x55, 0x00, 0x00, 0x01, 0x21, 0x32, 0x17, +0x16, 0x1D, 0x01, 0x14, 0x23, 0x06, 0x23, 0x11, 0x14, 0x07, 0x06, 0x23, 0x21, 0x22, 0x27, 0x26, +0x3D, 0x01, 0x34, 0x3B, 0x01, 0x11, 0x34, 0x37, 0x36, 0x07, 0x06, 0x15, 0x11, 0x16, 0x3B, 0x01, +0x32, 0x15, 0x16, 0x33, 0x32, 0x37, 0x26, 0x35, 0x37, 0x27, 0x37, 0x27, 0x37, 0x34, 0x23, 0x37, +0x11, 0x36, 0x33, 0x35, 0x21, 0x22, 0x13, 0x16, 0x1D, 0x01, 0x07, 0x14, 0x17, 0x15, 0x06, 0x23, +0x26, 0x27, 0x35, 0x36, 0x33, 0x16, 0x17, 0x06, 0x0F, 0x01, 0x26, 0x35, 0x34, 0x37, 0x35, 0x27, +0x35, 0x34, 0x01, 0x28, 0x02, 0x28, 0x71, 0x2F, 0x10, 0x38, 0x1D, 0x2B, 0x34, 0x40, 0x38, 0xFD, +0xE0, 0x3B, 0x41, 0x38, 0x68, 0x18, 0x88, 0x10, 0x08, 0x50, 0x65, 0x2F, 0xD0, 0x24, 0x27, 0x61, +0x55, 0x1B, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x1F, 0x1D, 0xFE, 0x4C, 0x49, 0x25, +0x1C, 0x70, 0x70, 0x0E, 0x16, 0x1C, 0x80, 0x85, 0xDF, 0x81, 0x1F, 0x01, 0x93, 0x18, 0x18, 0x70, +0x70, 0x07, 0x22, 0x7C, 0x2F, 0x25, 0x10, 0x20, 0x04, 0xFD, 0x9C, 0x28, 0x44, 0x30, 0x40, 0x44, +0x4C, 0x1C, 0x18, 0x02, 0x5C, 0x71, 0x2F, 0x04, 0x44, 0x1F, 0x59, 0xFD, 0xBC, 0x04, 0x54, 0x6C, +0x68, 0x08, 0x04, 0x14, 0x10, 0x14, 0x10, 0x14, 0x04, 0x1C, 0x02, 0x24, 0x6C, 0x04, 0xFF, 0x00, +0x0C, 0x18, 0x08, 0x74, 0x06, 0x72, 0x14, 0x18, 0x09, 0x8F, 0x14, 0x98, 0x69, 0x3B, 0x12, 0x8A, +0x04, 0x08, 0x18, 0x17, 0x65, 0x04, 0x78, 0x0C, 0x20, 0x00, 0x00, 0x00, 0x00, 0x0B, 0xFF, 0x9C, +0x03, 0xE8, 0x03, 0x28, 0x06, 0x38, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x12, 0x00, 0x65, 0x00, 0x69, +0x00, 0x6D, 0x00, 0x71, 0x00, 0x77, 0x00, 0x7D, 0x00, 0x83, 0x00, 0x8C, 0x00, 0x00, 0x13, 0x33, +0x17, 0x15, 0x27, 0x23, 0x07, 0x35, 0x07, 0x15, 0x07, 0x34, 0x37, 0x16, 0x17, 0x15, 0x23, 0x26, +0x23, 0x07, 0x17, 0x33, 0x32, 0x37, 0x32, 0x17, 0x32, 0x37, 0x16, 0x17, 0x16, 0x17, 0x16, 0x15, +0x16, 0x17, 0x32, 0x17, 0x32, 0x15, 0x06, 0x15, 0x16, 0x15, 0x06, 0x15, 0x32, 0x17, 0x14, 0x23, +0x14, 0x17, 0x07, 0x14, 0x17, 0x07, 0x22, 0x27, 0x06, 0x23, 0x26, 0x35, 0x36, 0x35, 0x34, 0x27, +0x34, 0x27, 0x22, 0x27, 0x26, 0x23, 0x22, 0x07, 0x23, 0x22, 0x27, 0x26, 0x27, 0x33, 0x16, 0x17, +0x32, 0x37, 0x34, 0x2F, 0x01, 0x22, 0x07, 0x06, 0x15, 0x33, 0x36, 0x37, 0x15, 0x22, 0x07, 0x35, +0x36, 0x33, 0x17, 0x36, 0x07, 0x06, 0x23, 0x36, 0x07, 0x33, 0x15, 0x2B, 0x01, 0x33, 0x15, 0x23, +0x17, 0x32, 0x17, 0x15, 0x26, 0x23, 0x17, 0x33, 0x16, 0x15, 0x23, 0x26, 0x17, 0x33, 0x16, 0x15, +0x23, 0x26, 0x01, 0x16, 0x3B, 0x01, 0x32, 0x37, 0x34, 0x27, 0x06, 0xBC, 0x0C, 0x30, 0x28, 0x1C, +0x28, 0x14, 0x3C, 0xD0, 0x1E, 0x32, 0x08, 0x3E, 0x0A, 0x5C, 0x94, 0x14, 0x02, 0x0A, 0x0A, 0x1E, +0x02, 0x0E, 0x10, 0x20, 0x2A, 0x4E, 0x94, 0x0F, 0x05, 0x0C, 0x04, 0x0C, 0x04, 0x10, 0x04, 0x15, +0x03, 0x04, 0x04, 0x04, 0x04, 0x08, 0x07, 0x11, 0x29, 0x17, 0x54, 0x0C, 0x40, 0x2C, 0x20, 0x04, +0x10, 0x28, 0x13, 0x31, 0x08, 0x05, 0x1B, 0x07, 0x39, 0x08, 0x16, 0x22, 0x08, 0x08, 0xB0, 0x28, +0x63, 0x61, 0x18, 0x04, 0x36, 0x56, 0x2F, 0x6D, 0x54, 0x1C, 0x08, 0x4A, 0x26, 0x04, 0x14, 0x04, +0x0C, 0x08, 0x08, 0x08, 0x08, 0x08, 0x64, 0x0A, 0x36, 0x31, 0x0F, 0x4C, 0x08, 0x20, 0x04, 0x24, +0x2C, 0x08, 0x18, 0x08, 0x18, 0x01, 0xA8, 0x0D, 0x27, 0x14, 0x29, 0x07, 0x3C, 0x3C, 0x06, 0x38, +0x04, 0x08, 0x04, 0x04, 0x08, 0x04, 0x08, 0x0C, 0x09, 0x0B, 0x04, 0x10, 0x04, 0x10, 0x04, 0x14, +0x08, 0x10, 0x04, 0x02, 0x2A, 0x22, 0x2A, 0x89, 0x1F, 0x06, 0x12, 0x18, 0x08, 0x08, 0x04, 0x06, +0x06, 0x08, 0x04, 0x1C, 0x04, 0x04, 0x08, 0x40, 0x06, 0x32, 0x04, 0x08, 0x04, 0x1D, 0x43, 0x2F, +0x0D, 0x26, 0x16, 0x3E, 0x0E, 0x30, 0x20, 0x20, 0x30, 0x0B, 0x25, 0x09, 0x1B, 0x3C, 0x27, 0x31, +0x04, 0x48, 0x1A, 0x02, 0x19, 0x0B, 0x08, 0x28, 0x08, 0x5C, 0x04, 0x20, 0x08, 0x0C, 0x0C, 0x0C, +0x04, 0x04, 0x34, 0x0C, 0x08, 0x0C, 0x0C, 0x07, 0x09, 0x08, 0x08, 0x09, 0x07, 0x09, 0xFE, 0x9B, +0x38, 0x40, 0x2C, 0x08, 0x08, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x03, 0x20, 0x03, 0xF0, +0x06, 0x74, 0x00, 0x12, 0x00, 0x27, 0x00, 0x3A, 0x00, 0x4D, 0x00, 0x00, 0x01, 0x32, 0x15, 0x11, +0x14, 0x07, 0x22, 0x27, 0x26, 0x27, 0x23, 0x26, 0x3D, 0x01, 0x34, 0x37, 0x33, 0x00, 0x33, 0x05, +0x16, 0x17, 0x16, 0x1D, 0x01, 0x14, 0x0F, 0x01, 0x23, 0x26, 0x35, 0x34, 0x37, 0x36, 0x35, 0x34, +0x2F, 0x01, 0x35, 0x36, 0x07, 0x32, 0x17, 0x16, 0x15, 0x14, 0x07, 0x23, 0x22, 0x27, 0x34, 0x37, +0x36, 0x35, 0x34, 0x27, 0x26, 0x35, 0x36, 0x07, 0x32, 0x17, 0x16, 0x15, 0x14, 0x07, 0x23, 0x26, +0x35, 0x34, 0x37, 0x36, 0x35, 0x34, 0x2F, 0x01, 0x35, 0x36, 0x01, 0xD4, 0x24, 0x24, 0x21, 0xCB, +0x3A, 0x06, 0x84, 0x24, 0x28, 0x84, 0x01, 0x0C, 0x10, 0x01, 0x28, 0x81, 0x4F, 0x30, 0xEC, 0x14, +0x0C, 0x1C, 0x58, 0x84, 0xD4, 0x04, 0x0F, 0x3F, 0x35, 0x5F, 0x28, 0xB4, 0x0C, 0x1E, 0x06, 0x48, +0x4C, 0x90, 0x04, 0x0D, 0x49, 0x55, 0x2B, 0x04, 0x78, 0x08, 0x28, 0x38, 0x20, 0x54, 0x04, 0x05, +0x06, 0x74, 0x2C, 0xFD, 0x04, 0x20, 0x0C, 0xD8, 0x32, 0x06, 0x05, 0x1F, 0xF0, 0x1F, 0x05, 0x01, +0x0C, 0x24, 0x30, 0x8C, 0x65, 0x47, 0x30, 0xDF, 0x8D, 0x04, 0x0E, 0x1A, 0x1A, 0x32, 0x77, 0x95, +0xD1, 0x77, 0x14, 0x10, 0x1C, 0x6C, 0x80, 0x56, 0x46, 0xB1, 0x63, 0x28, 0x18, 0x2C, 0x4F, 0x5D, +0x85, 0x57, 0x15, 0x03, 0x24, 0x80, 0x78, 0x16, 0x0E, 0x67, 0x2D, 0x05, 0x23, 0x20, 0x10, 0x21, +0x1F, 0x38, 0x20, 0x14, 0x08, 0x24, 0x00, 0x00, 0x00, 0x02, 0xFE, 0xD4, 0x02, 0xBC, 0x02, 0xD4, +0x06, 0xBC, 0x00, 0x12, 0x00, 0x2A, 0x00, 0x00, 0x13, 0x33, 0x32, 0x17, 0x16, 0x17, 0x14, 0x07, +0x06, 0x2B, 0x01, 0x22, 0x03, 0x26, 0x3D, 0x01, 0x34, 0x37, 0x36, 0x03, 0x16, 0x3B, 0x01, 0x32, +0x37, 0x33, 0x16, 0x17, 0x16, 0x1D, 0x01, 0x06, 0x07, 0x06, 0x2B, 0x01, 0x20, 0x2F, 0x01, 0x35, +0x34, 0x37, 0x36, 0xC8, 0x18, 0x87, 0x55, 0x10, 0x08, 0x98, 0x2D, 0x37, 0x08, 0xA3, 0x51, 0x04, +0x7C, 0x43, 0x83, 0x53, 0x61, 0x1C, 0x58, 0x5C, 0x04, 0xC7, 0x51, 0x20, 0x1C, 0xA4, 0x92, 0x76, +0x68, 0xFE, 0xEB, 0xA7, 0x14, 0x34, 0xA0, 0x06, 0xBC, 0x9C, 0x1F, 0x4D, 0xB0, 0x78, 0x20, 0x01, +0x04, 0x1B, 0x11, 0x30, 0x6F, 0x5D, 0x24, 0xFD, 0xD0, 0x58, 0x58, 0x41, 0x53, 0x40, 0x1C, 0x4C, +0x3C, 0x34, 0x24, 0x78, 0x1C, 0x48, 0x3C, 0x38, 0x6B, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, +0x03, 0x84, 0x08, 0x70, 0x07, 0x44, 0x00, 0x47, 0x00, 0x00, 0x01, 0x33, 0x32, 0x17, 0x16, 0x17, +0x00, 0x3B, 0x01, 0x32, 0x37, 0x36, 0x3D, 0x01, 0x34, 0x27, 0x26, 0x23, 0x20, 0x07, 0x23, 0x22, +0x27, 0x36, 0x37, 0x36, 0x3B, 0x01, 0x32, 0x17, 0x16, 0x15, 0x10, 0x05, 0x06, 0x23, 0x22, 0x27, +0x26, 0x27, 0x26, 0x27, 0x26, 0x23, 0x22, 0x07, 0x06, 0x1D, 0x01, 0x14, 0x17, 0x16, 0x3B, 0x01, +0x32, 0x37, 0x33, 0x32, 0x17, 0x15, 0x14, 0x07, 0x06, 0x2B, 0x01, 0x20, 0x27, 0x26, 0x35, 0x34, +0x37, 0x36, 0x01, 0xDC, 0x28, 0xB6, 0xF6, 0xC3, 0x39, 0x01, 0x09, 0xD7, 0x2C, 0x89, 0x83, 0x34, +0xF4, 0x4E, 0x2A, 0xFE, 0xEA, 0xD2, 0x10, 0x09, 0x03, 0x7F, 0xF5, 0x54, 0x30, 0x2C, 0xC8, 0xA8, +0x54, 0xFE, 0xE0, 0x56, 0x96, 0xBB, 0xED, 0x92, 0x52, 0x10, 0x84, 0xC2, 0xB2, 0xB6, 0x82, 0x30, +0x94, 0x74, 0x64, 0x30, 0xE2, 0xDA, 0x10, 0x06, 0x06, 0xA8, 0xAA, 0xAA, 0x08, 0xFE, 0xEF, 0x97, +0x30, 0xF0, 0x7A, 0x07, 0x44, 0xB0, 0xB0, 0x74, 0xFE, 0xB8, 0x94, 0x5F, 0x45, 0x18, 0xD6, 0x6E, +0x1C, 0xE8, 0x14, 0xB9, 0x4F, 0x14, 0xC0, 0x7A, 0x8E, 0xFE, 0xE5, 0x8D, 0x2C, 0xB0, 0x81, 0x7B, +0x2C, 0x90, 0xC8, 0xB0, 0x51, 0x5B, 0x04, 0x90, 0x7C, 0x50, 0xE4, 0x0C, 0x04, 0x28, 0x80, 0x70, +0xFC, 0x54, 0x7C, 0xE2, 0x9E, 0x44, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xFF, 0x60, 0x04, 0x00, +0xFF, 0x9C, 0x00, 0x03, 0x00, 0x20, 0xB1, 0x06, 0x64, 0x44, 0x40, 0x15, 0x00, 0x00, 0x01, 0x01, +0x00, 0x57, 0x00, 0x00, 0x00, 0x01, 0x5F, 0x00, 0x01, 0x00, 0x01, 0x4F, 0x11, 0x10, 0x02, 0x07, +0x18, 0x2B, 0xB1, 0x06, 0x00, 0x44, 0x15, 0x21, 0x15, 0x21, 0x04, 0x00, 0xFC, 0x00, 0x64, 0x3C, +0x00, 0x01, 0x00, 0xD4, 0x04, 0x37, 0x02, 0xA1, 0x05, 0x9A, 0x00, 0x0B, 0x00, 0x19, 0xB1, 0x06, +0x64, 0x44, 0x40, 0x0E, 0x00, 0x01, 0x00, 0x01, 0x85, 0x00, 0x00, 0x00, 0x76, 0x26, 0x10, 0x02, +0x07, 0x18, 0x2B, 0xB1, 0x06, 0x00, 0x44, 0x01, 0x23, 0x25, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x33, +0x32, 0x16, 0x17, 0x02, 0xA1, 0x45, 0xFE, 0xB6, 0x1F, 0x1F, 0x29, 0x21, 0x14, 0x29, 0x23, 0x04, +0x37, 0xCA, 0x14, 0x28, 0x16, 0x1F, 0x28, 0x18, 0x23, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xF0, +0xFF, 0x0E, 0x03, 0x74, 0x06, 0x2B, 0x00, 0x23, 0x00, 0x35, 0x40, 0x32, 0x00, 0x03, 0x00, 0x06, +0x00, 0x03, 0x06, 0x80, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x02, 0x69, 0x00, 0x00, 0x00, 0x06, +0x04, 0x00, 0x06, 0x69, 0x00, 0x04, 0x05, 0x05, 0x04, 0x59, 0x00, 0x04, 0x04, 0x05, 0x61, 0x00, +0x05, 0x04, 0x05, 0x51, 0x15, 0x21, 0x25, 0x26, 0x21, 0x25, 0x10, 0x07, 0x07, 0x1D, 0x2B, 0x13, +0x3E, 0x01, 0x35, 0x11, 0x34, 0x36, 0x3B, 0x01, 0x15, 0x23, 0x22, 0x06, 0x07, 0x11, 0x14, 0x06, +0x07, 0x15, 0x1E, 0x01, 0x15, 0x03, 0x1E, 0x01, 0x3B, 0x01, 0x15, 0x23, 0x22, 0x26, 0x27, 0x11, +0x34, 0x26, 0x27, 0xF0, 0xAC, 0x66, 0x9A, 0x6C, 0x6C, 0x5A, 0x3D, 0x5C, 0x01, 0x79, 0x52, 0x52, +0x7A, 0x01, 0x01, 0x5C, 0x3D, 0x5A, 0x6C, 0x6C, 0x99, 0x01, 0x66, 0xAC, 0x02, 0xBA, 0x05, 0x84, +0x43, 0x01, 0xD4, 0x4A, 0x87, 0x32, 0x43, 0x3A, 0xFE, 0x0C, 0x53, 0x97, 0x01, 0x02, 0x01, 0x96, +0x53, 0xFE, 0x0C, 0x3A, 0x43, 0x32, 0x87, 0x4A, 0x01, 0xD4, 0x42, 0x84, 0x05, 0x00, 0x00, 0x00, +0x00, 0x01, 0x01, 0xAB, 0xFE, 0x5E, 0x02, 0x4B, 0x06, 0x29, 0x00, 0x03, 0x00, 0x11, 0x40, 0x0E, +0x00, 0x00, 0x01, 0x00, 0x85, 0x00, 0x01, 0x01, 0x76, 0x11, 0x10, 0x02, 0x07, 0x18, 0x2B, 0x01, +0x33, 0x11, 0x23, 0x01, 0xAB, 0xA0, 0xA0, 0x06, 0x29, 0xF8, 0x35, 0x00, 0x00, 0x01, 0x00, 0x82, +0xFF, 0x0E, 0x03, 0x06, 0x06, 0x2B, 0x00, 0x23, 0x00, 0x35, 0x40, 0x32, 0x00, 0x03, 0x06, 0x00, +0x06, 0x03, 0x00, 0x80, 0x00, 0x05, 0x00, 0x04, 0x06, 0x05, 0x04, 0x69, 0x00, 0x06, 0x00, 0x00, +0x02, 0x06, 0x00, 0x69, 0x00, 0x02, 0x01, 0x01, 0x02, 0x59, 0x00, 0x02, 0x02, 0x01, 0x61, 0x00, +0x01, 0x02, 0x01, 0x51, 0x15, 0x21, 0x25, 0x26, 0x21, 0x25, 0x10, 0x07, 0x07, 0x1D, 0x2B, 0x01, +0x0E, 0x01, 0x15, 0x11, 0x0E, 0x01, 0x2B, 0x01, 0x35, 0x33, 0x32, 0x36, 0x37, 0x03, 0x34, 0x36, +0x37, 0x35, 0x2E, 0x01, 0x35, 0x11, 0x2E, 0x01, 0x2B, 0x01, 0x35, 0x33, 0x32, 0x16, 0x15, 0x11, +0x14, 0x16, 0x17, 0x03, 0x06, 0xAC, 0x66, 0x01, 0x99, 0x6C, 0x6C, 0x5A, 0x3D, 0x5C, 0x01, 0x01, +0x7A, 0x53, 0x53, 0x79, 0x01, 0x5C, 0x3D, 0x5A, 0x6C, 0x6C, 0x9A, 0x66, 0xAC, 0x02, 0x7E, 0x05, +0x84, 0x42, 0xFE, 0x2C, 0x4A, 0x87, 0x32, 0x43, 0x3A, 0x01, 0xF4, 0x53, 0x96, 0x01, 0x02, 0x01, +0x97, 0x53, 0x01, 0xF4, 0x3A, 0x43, 0x32, 0x87, 0x4A, 0xFE, 0x2C, 0x43, 0x84, 0x05, 0x00, 0x00, +0x00, 0x01, 0x00, 0x5E, 0x02, 0x2C, 0x03, 0x9B, 0x03, 0x6E, 0x00, 0x13, 0x00, 0x39, 0xB1, 0x06, +0x64, 0x44, 0x40, 0x2E, 0x0B, 0x01, 0x02, 0x01, 0x03, 0x01, 0x4C, 0x00, 0x01, 0x02, 0x4A, 0x0A, +0x01, 0x00, 0x49, 0x00, 0x03, 0x01, 0x00, 0x03, 0x59, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x01, +0x69, 0x00, 0x03, 0x03, 0x00, 0x61, 0x00, 0x00, 0x03, 0x00, 0x51, 0x21, 0x25, 0x21, 0x23, 0x04, +0x07, 0x1A, 0x2B, 0xB1, 0x06, 0x00, 0x44, 0x01, 0x15, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x23, 0x22, +0x06, 0x07, 0x35, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x33, 0x32, 0x36, 0x03, 0x9B, 0x3F, 0x76, 0x39, +0x3C, 0xEB, 0x3B, 0x33, 0x71, 0x49, 0x40, 0x76, 0x37, 0x40, 0xEB, 0x37, 0x34, 0x71, 0x03, 0x6E, +0x9C, 0x48, 0x33, 0x61, 0x38, 0x54, 0x9C, 0x49, 0x34, 0x63, 0x38, 0x00, 0x00, 0x01, 0x00, 0x4C, +0x00, 0x00, 0x03, 0xA8, 0x05, 0xAE, 0x00, 0x26, 0x00, 0x49, 0x40, 0x46, 0x14, 0x01, 0x05, 0x03, +0x01, 0x4C, 0x00, 0x09, 0x00, 0x01, 0x00, 0x09, 0x01, 0x80, 0x00, 0x04, 0x02, 0x03, 0x02, 0x04, +0x03, 0x80, 0x00, 0x08, 0x00, 0x00, 0x09, 0x08, 0x00, 0x69, 0x07, 0x01, 0x01, 0x06, 0x01, 0x02, +0x04, 0x01, 0x02, 0x67, 0x00, 0x03, 0x05, 0x05, 0x03, 0x57, 0x00, 0x03, 0x03, 0x05, 0x5F, 0x00, +0x05, 0x03, 0x05, 0x4F, 0x25, 0x24, 0x24, 0x11, 0x15, 0x11, 0x11, 0x24, 0x11, 0x14, 0x20, 0x0A, +0x07, 0x1F, 0x2B, 0x00, 0x23, 0x22, 0x06, 0x15, 0x16, 0x17, 0x21, 0x15, 0x21, 0x16, 0x15, 0x14, +0x07, 0x21, 0x32, 0x37, 0x17, 0x07, 0x21, 0x37, 0x36, 0x35, 0x34, 0x27, 0x23, 0x35, 0x33, 0x26, +0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x1D, 0x01, 0x23, 0x26, 0x02, 0xB8, 0x6C, 0x66, 0xAE, 0x01, +0x35, 0x01, 0x68, 0xFE, 0xB2, 0x42, 0xA2, 0x01, 0x92, 0x82, 0x3B, 0x31, 0x67, 0xFD, 0x31, 0x01, +0xBB, 0x41, 0xA1, 0x87, 0x3A, 0xF7, 0xB7, 0x6D, 0xBF, 0x26, 0x05, 0x05, 0x62, 0xC2, 0x94, 0xA5, +0x8A, 0x3C, 0x71, 0x55, 0xA1, 0xD6, 0x84, 0x01, 0xE7, 0x32, 0xEE, 0xB4, 0x4D, 0x80, 0x3C, 0x8F, +0x6E, 0xE2, 0xF2, 0x1C, 0x14, 0xA1, 0x3D, 0x00, 0x00, 0x02, 0x00, 0x7A, 0x01, 0x4C, 0x03, 0x7B, +0x04, 0x4E, 0x00, 0x1F, 0x00, 0x4B, 0x00, 0x63, 0x40, 0x20, 0x2D, 0x2B, 0x23, 0x21, 0x04, 0x01, +0x02, 0x44, 0x36, 0x2E, 0x03, 0x00, 0x01, 0x43, 0x41, 0x39, 0x37, 0x04, 0x03, 0x00, 0x03, 0x4C, +0x2C, 0x22, 0x02, 0x02, 0x4A, 0x42, 0x38, 0x02, 0x03, 0x49, 0x4B, 0xB0, 0x1A, 0x50, 0x58, 0x40, +0x12, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x65, 0x00, 0x02, 0x02, 0x01, 0x61, 0x00, 0x01, 0x01, +0x0F, 0x01, 0x4E, 0x1B, 0x40, 0x18, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x01, 0x69, 0x00, 0x00, +0x03, 0x03, 0x00, 0x59, 0x00, 0x00, 0x00, 0x03, 0x61, 0x00, 0x03, 0x00, 0x03, 0x51, 0x59, 0x40, +0x09, 0x3E, 0x3C, 0x28, 0x26, 0x2E, 0x23, 0x04, 0x07, 0x18, 0x2B, 0x01, 0x16, 0x17, 0x16, 0x33, +0x32, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x35, 0x34, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x23, +0x22, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x15, 0x14, 0x17, 0x16, 0x03, 0x27, 0x37, 0x17, 0x36, +0x37, 0x36, 0x33, 0x32, 0x17, 0x16, 0x17, 0x37, 0x17, 0x07, 0x16, 0x17, 0x16, 0x15, 0x14, 0x07, +0x06, 0x07, 0x17, 0x07, 0x27, 0x06, 0x07, 0x06, 0x23, 0x22, 0x27, 0x26, 0x27, 0x07, 0x27, 0x37, +0x26, 0x27, 0x26, 0x35, 0x34, 0x37, 0x36, 0x01, 0x5E, 0x29, 0x3A, 0x1D, 0x1D, 0x1D, 0x1D, 0x3A, +0x29, 0x28, 0x11, 0x09, 0x09, 0x11, 0x28, 0x29, 0x3B, 0x1D, 0x1D, 0x1D, 0x1D, 0x3A, 0x28, 0x27, +0x11, 0x0A, 0x09, 0x10, 0x45, 0x76, 0x50, 0x76, 0x2C, 0x37, 0x2C, 0x2D, 0x29, 0x2A, 0x39, 0x2D, +0x76, 0x50, 0x75, 0x1F, 0x11, 0x0C, 0x0C, 0x11, 0x1F, 0x75, 0x50, 0x76, 0x2D, 0x38, 0x2A, 0x2B, +0x2A, 0x2B, 0x39, 0x2D, 0x76, 0x50, 0x76, 0x20, 0x10, 0x0C, 0x0D, 0x10, 0x02, 0x30, 0x28, 0x11, +0x08, 0x08, 0x11, 0x28, 0x29, 0x3A, 0x1D, 0x1D, 0x1D, 0x1D, 0x3A, 0x29, 0x28, 0x11, 0x08, 0x09, +0x11, 0x27, 0x28, 0x3A, 0x1E, 0x1E, 0x1C, 0x1C, 0x3B, 0x01, 0x2E, 0x76, 0x51, 0x76, 0x1E, 0x10, +0x0E, 0x0C, 0x11, 0x1F, 0x76, 0x51, 0x75, 0x2E, 0x38, 0x2A, 0x2B, 0x2A, 0x2B, 0x38, 0x2E, 0x75, +0x51, 0x76, 0x20, 0x10, 0x0C, 0x0C, 0x10, 0x20, 0x76, 0x51, 0x75, 0x2E, 0x39, 0x2A, 0x2A, 0x2C, +0x2B, 0x37, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xEA, 0x00, 0x00, 0x04, 0x0D, 0x05, 0x9A, 0x00, 0x33, +0x00, 0x57, 0x40, 0x54, 0x1B, 0x01, 0x05, 0x06, 0x01, 0x4C, 0x0A, 0x01, 0x07, 0x0B, 0x09, 0x08, +0x03, 0x06, 0x05, 0x07, 0x06, 0x69, 0x0C, 0x01, 0x05, 0x0D, 0x01, 0x04, 0x03, 0x05, 0x04, 0x67, +0x0E, 0x01, 0x03, 0x0F, 0x01, 0x02, 0x01, 0x03, 0x02, 0x67, 0x10, 0x01, 0x01, 0x00, 0x00, 0x01, +0x59, 0x10, 0x01, 0x01, 0x01, 0x00, 0x5F, 0x00, 0x00, 0x01, 0x00, 0x4F, 0x33, 0x31, 0x2F, 0x2E, +0x2D, 0x2C, 0x2B, 0x2A, 0x29, 0x28, 0x26, 0x24, 0x23, 0x22, 0x21, 0x1F, 0x21, 0x11, 0x22, 0x11, +0x21, 0x11, 0x12, 0x21, 0x10, 0x11, 0x07, 0x1F, 0x2B, 0x29, 0x01, 0x35, 0x33, 0x32, 0x35, 0x11, +0x23, 0x35, 0x33, 0x35, 0x27, 0x23, 0x35, 0x33, 0x03, 0x26, 0x2B, 0x01, 0x35, 0x21, 0x15, 0x23, +0x22, 0x15, 0x14, 0x17, 0x1B, 0x01, 0x36, 0x35, 0x34, 0x2B, 0x01, 0x35, 0x21, 0x15, 0x23, 0x22, +0x07, 0x03, 0x33, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x11, 0x14, 0x3B, 0x01, 0x02, 0xEF, 0xFE, +0x1A, 0x53, 0x5A, 0xFE, 0xFE, 0x01, 0xFD, 0xDE, 0xF0, 0x4F, 0x4C, 0x21, 0x01, 0xB3, 0x54, 0x39, +0x24, 0xDB, 0xE2, 0x25, 0x2C, 0x55, 0x01, 0x78, 0x21, 0x5A, 0x50, 0xE6, 0xE6, 0xFF, 0x00, 0x01, +0x00, 0xFF, 0x00, 0x58, 0x55, 0x32, 0xEB, 0x01, 0x17, 0x3C, 0x3A, 0x02, 0x3C, 0x01, 0xD4, 0xAC, +0x32, 0x32, 0x35, 0x2A, 0x4C, 0xFE, 0x3B, 0x01, 0xC5, 0x52, 0x2A, 0x2F, 0x32, 0x32, 0xAB, 0xFE, +0x2B, 0x3C, 0x3C, 0x3C, 0xFE, 0xE9, 0xEB, 0x00, 0x00, 0x02, 0x01, 0xAB, 0xFE, 0x5E, 0x02, 0x4B, +0x06, 0x2A, 0x00, 0x03, 0x00, 0x07, 0x00, 0x1D, 0x40, 0x1A, 0x00, 0x02, 0x03, 0x02, 0x85, 0x00, +0x03, 0x00, 0x03, 0x85, 0x00, 0x00, 0x01, 0x00, 0x85, 0x00, 0x01, 0x01, 0x76, 0x11, 0x11, 0x11, +0x10, 0x04, 0x07, 0x1A, 0x2B, 0x01, 0x33, 0x11, 0x23, 0x11, 0x33, 0x11, 0x23, 0x01, 0xAB, 0xA0, +0xA0, 0xA0, 0xA0, 0x01, 0x73, 0xFC, 0xEB, 0x07, 0xCC, 0xFC, 0xEB, 0x00, 0x00, 0x02, 0x00, 0xAA, +0xFE, 0x60, 0x03, 0x4C, 0x05, 0xAE, 0x00, 0x11, 0x00, 0x54, 0x00, 0x52, 0x40, 0x4F, 0x1F, 0x01, +0x00, 0x03, 0x40, 0x04, 0x02, 0x06, 0x00, 0x02, 0x4C, 0x00, 0x03, 0x04, 0x00, 0x04, 0x03, 0x00, +0x80, 0x00, 0x00, 0x06, 0x04, 0x00, 0x06, 0x7E, 0x00, 0x06, 0x01, 0x04, 0x06, 0x01, 0x7E, 0x00, +0x02, 0x00, 0x04, 0x03, 0x02, 0x04, 0x69, 0x07, 0x01, 0x01, 0x05, 0x05, 0x01, 0x59, 0x07, 0x01, +0x01, 0x01, 0x05, 0x61, 0x00, 0x05, 0x01, 0x05, 0x51, 0x13, 0x12, 0x51, 0x50, 0x4D, 0x47, 0x35, +0x32, 0x2F, 0x2E, 0x2B, 0x26, 0x12, 0x54, 0x13, 0x54, 0x2C, 0x08, 0x07, 0x17, 0x2B, 0x01, 0x36, +0x37, 0x36, 0x35, 0x34, 0x27, 0x23, 0x26, 0x27, 0x26, 0x27, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, +0x13, 0x36, 0x37, 0x36, 0x35, 0x34, 0x25, 0x2E, 0x01, 0x35, 0x34, 0x37, 0x36, 0x37, 0x27, 0x2E, +0x01, 0x35, 0x34, 0x37, 0x36, 0x37, 0x36, 0x3B, 0x01, 0x32, 0x16, 0x1D, 0x01, 0x23, 0x26, 0x27, +0x26, 0x27, 0x23, 0x22, 0x06, 0x15, 0x14, 0x05, 0x1E, 0x01, 0x15, 0x14, 0x07, 0x06, 0x07, 0x16, +0x17, 0x16, 0x15, 0x14, 0x07, 0x06, 0x07, 0x35, 0x06, 0x2B, 0x01, 0x22, 0x26, 0x3D, 0x01, 0x33, +0x16, 0x17, 0x16, 0x02, 0x21, 0x38, 0x29, 0x49, 0x01, 0x02, 0x01, 0x03, 0x16, 0x5B, 0x3B, 0x43, +0x4E, 0x5E, 0xA9, 0x71, 0x48, 0x48, 0xFE, 0xC4, 0x7B, 0x69, 0x59, 0x43, 0x67, 0x28, 0x7B, 0x69, +0x59, 0x52, 0x86, 0x08, 0x09, 0x03, 0x42, 0xC2, 0x33, 0x05, 0x4B, 0x46, 0x4F, 0x0F, 0x4E, 0x5E, +0x01, 0x1F, 0x95, 0x6F, 0x65, 0x2F, 0x34, 0x6C, 0x2E, 0x37, 0x65, 0x7C, 0x99, 0x06, 0x07, 0x03, +0x42, 0xC2, 0x33, 0x05, 0x4B, 0x44, 0x01, 0x41, 0x10, 0x25, 0x41, 0x65, 0x05, 0x05, 0x0E, 0x0D, +0x3D, 0x42, 0x1D, 0x59, 0x49, 0x7B, 0xFC, 0xE6, 0x06, 0x3F, 0x40, 0x65, 0x7D, 0x97, 0x40, 0x92, +0x68, 0x94, 0x59, 0x41, 0x11, 0x13, 0x40, 0x92, 0x68, 0x94, 0x59, 0x4F, 0x07, 0x01, 0x21, 0x19, +0xC2, 0x51, 0x33, 0x2F, 0x04, 0x59, 0x49, 0x84, 0x89, 0x43, 0x99, 0x6F, 0xAB, 0x6F, 0x27, 0x19, +0x38, 0x3E, 0x4D, 0x6E, 0xAB, 0x70, 0x66, 0x03, 0x01, 0x01, 0x21, 0x19, 0xC2, 0x51, 0x33, 0x2D, +0x00, 0x02, 0x00, 0xD1, 0x04, 0x76, 0x03, 0x16, 0x05, 0x5D, 0x00, 0x13, 0x00, 0x27, 0x00, 0x25, +0xB1, 0x06, 0x64, 0x44, 0x40, 0x1A, 0x02, 0x01, 0x00, 0x01, 0x01, 0x00, 0x59, 0x02, 0x01, 0x00, +0x00, 0x01, 0x61, 0x03, 0x01, 0x01, 0x00, 0x01, 0x51, 0x28, 0x28, 0x28, 0x22, 0x04, 0x07, 0x1A, +0x2B, 0xB1, 0x06, 0x00, 0x44, 0x13, 0x37, 0x36, 0x33, 0x32, 0x1F, 0x01, 0x16, 0x15, 0x14, 0x0F, +0x01, 0x06, 0x23, 0x22, 0x2F, 0x01, 0x26, 0x35, 0x34, 0x25, 0x37, 0x36, 0x33, 0x32, 0x1F, 0x01, +0x16, 0x15, 0x14, 0x0F, 0x01, 0x06, 0x23, 0x22, 0x2F, 0x01, 0x26, 0x35, 0x34, 0xDF, 0x47, 0x0D, +0x0C, 0x0B, 0x10, 0x45, 0x0A, 0x0C, 0x45, 0x11, 0x08, 0x0E, 0x0B, 0x4C, 0x09, 0x01, 0x7B, 0x47, +0x0D, 0x0C, 0x0B, 0x10, 0x45, 0x0A, 0x0C, 0x45, 0x11, 0x08, 0x0E, 0x0B, 0x4C, 0x09, 0x05, 0x09, +0x48, 0x0C, 0x0E, 0x49, 0x0E, 0x0B, 0x0D, 0x0E, 0x4B, 0x11, 0x0C, 0x56, 0x0C, 0x0B, 0x0D, 0x0D, +0x48, 0x0C, 0x0D, 0x4A, 0x0E, 0x0B, 0x0D, 0x0D, 0x4C, 0x11, 0x0C, 0x57, 0x0B, 0x0B, 0x0D, 0x00, +0x00, 0x03, 0x00, 0x64, 0xFF, 0xEE, 0x06, 0x26, 0x05, 0xB0, 0x00, 0x2A, 0x00, 0x36, 0x00, 0x42, +0x00, 0x76, 0xB1, 0x06, 0x64, 0x44, 0x40, 0x6B, 0x00, 0x02, 0x01, 0x05, 0x01, 0x02, 0x05, 0x80, +0x00, 0x04, 0x05, 0x07, 0x05, 0x04, 0x07, 0x80, 0x00, 0x07, 0x06, 0x05, 0x07, 0x06, 0x7E, 0x00, +0x0B, 0x00, 0x09, 0x01, 0x0B, 0x09, 0x69, 0x03, 0x01, 0x01, 0x00, 0x05, 0x04, 0x01, 0x05, 0x69, +0x00, 0x06, 0x0C, 0x01, 0x00, 0x08, 0x06, 0x00, 0x69, 0x0D, 0x01, 0x08, 0x0A, 0x0A, 0x08, 0x59, +0x0D, 0x01, 0x08, 0x08, 0x0A, 0x61, 0x0E, 0x01, 0x0A, 0x08, 0x0A, 0x51, 0x38, 0x37, 0x2C, 0x2B, +0x01, 0x00, 0x3E, 0x3C, 0x37, 0x42, 0x38, 0x42, 0x32, 0x30, 0x2B, 0x36, 0x2C, 0x36, 0x27, 0x26, +0x24, 0x22, 0x16, 0x15, 0x12, 0x11, 0x10, 0x0F, 0x0E, 0x0B, 0x09, 0x07, 0x00, 0x2A, 0x01, 0x2A, +0x0F, 0x07, 0x16, 0x2B, 0xB1, 0x06, 0x00, 0x44, 0x25, 0x22, 0x2E, 0x01, 0x35, 0x34, 0x3E, 0x01, +0x33, 0x32, 0x16, 0x17, 0x16, 0x33, 0x32, 0x37, 0x33, 0x17, 0x23, 0x26, 0x27, 0x26, 0x2B, 0x01, +0x0E, 0x01, 0x07, 0x06, 0x15, 0x14, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x32, 0x36, 0x35, 0x33, +0x15, 0x14, 0x06, 0x07, 0x20, 0x00, 0x11, 0x10, 0x00, 0x21, 0x20, 0x00, 0x11, 0x10, 0x00, 0x05, +0x20, 0x00, 0x11, 0x10, 0x00, 0x21, 0x20, 0x00, 0x11, 0x10, 0x00, 0x03, 0x61, 0x8E, 0xF4, 0x80, +0x83, 0xF4, 0x84, 0x26, 0x4A, 0x27, 0x05, 0x04, 0x13, 0x07, 0x2A, 0x48, 0x2C, 0x34, 0x4F, 0x48, +0x4B, 0x0F, 0x56, 0xA1, 0x29, 0x21, 0x02, 0x0B, 0x75, 0x5B, 0x48, 0x5E, 0x7C, 0x8C, 0x35, 0xC1, +0xAE, 0x01, 0x18, 0x01, 0x8D, 0xFE, 0x73, 0xFE, 0xE8, 0xFE, 0xE8, 0xFE, 0x73, 0x01, 0x8D, 0x01, +0x18, 0xFE, 0xCF, 0xFE, 0x50, 0x01, 0xB0, 0x01, 0x31, 0x01, 0x31, 0x01, 0xB0, 0xFE, 0x50, 0xDF, +0x88, 0xEA, 0x7E, 0x7E, 0xEC, 0x85, 0x0D, 0x0E, 0x01, 0x1E, 0xC6, 0x5E, 0x1E, 0x1A, 0x08, 0x7E, +0x72, 0x5A, 0x5E, 0x19, 0x19, 0x79, 0xCE, 0x31, 0x28, 0x02, 0x70, 0x46, 0x64, 0x2E, 0x51, 0xB5, +0x01, 0x8D, 0x01, 0x18, 0x01, 0x18, 0x01, 0x8D, 0xFE, 0x73, 0xFE, 0xE8, 0xFE, 0xE8, 0xFE, 0x73, +0x3C, 0x01, 0xB0, 0x01, 0x31, 0x01, 0x31, 0x01, 0xB0, 0xFE, 0x50, 0xFE, 0xCF, 0xFE, 0xCF, 0xFE, +0x50, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0xAE, 0x00, 0xB0, 0x03, 0x4B, 0x03, 0x0E, 0x00, 0x22, +0x00, 0xD5, 0x00, 0x00, 0x00, 0x03, 0x00, 0xD5, 0x01, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0x57, +0x01, 0x13, 0x03, 0x9F, 0x02, 0xFF, 0x00, 0x06, 0x00, 0x1E, 0x40, 0x1B, 0x00, 0x01, 0x02, 0x01, +0x86, 0x00, 0x00, 0x02, 0x02, 0x00, 0x57, 0x00, 0x00, 0x00, 0x02, 0x5F, 0x00, 0x02, 0x00, 0x02, +0x4F, 0x11, 0x21, 0x10, 0x03, 0x07, 0x19, 0x2B, 0x13, 0x21, 0x11, 0x07, 0x23, 0x11, 0x21, 0x57, +0x03, 0x48, 0x01, 0x62, 0xFD, 0x1B, 0x02, 0xFF, 0xFE, 0x15, 0x01, 0x01, 0x88, 0x00, 0x00, 0x00, +0x00, 0x04, 0x00, 0x64, 0xFF, 0xEE, 0x06, 0x26, 0x05, 0xB0, 0x00, 0x23, 0x00, 0x2E, 0x00, 0x3A, +0x00, 0x46, 0x00, 0xC0, 0xB1, 0x06, 0x64, 0x44, 0xB5, 0x0F, 0x01, 0x03, 0x09, 0x01, 0x4C, 0x4B, +0xB0, 0x09, 0x50, 0x58, 0x40, 0x3F, 0x00, 0x09, 0x07, 0x03, 0x00, 0x09, 0x72, 0x00, 0x03, 0x00, +0x07, 0x03, 0x00, 0x7E, 0x00, 0x0E, 0x00, 0x0C, 0x08, 0x0E, 0x0C, 0x69, 0x00, 0x08, 0x0F, 0x0A, +0x02, 0x07, 0x09, 0x08, 0x07, 0x69, 0x06, 0x04, 0x02, 0x03, 0x00, 0x05, 0x01, 0x01, 0x0B, 0x00, +0x01, 0x68, 0x10, 0x01, 0x0B, 0x0D, 0x0D, 0x0B, 0x59, 0x10, 0x01, 0x0B, 0x0B, 0x0D, 0x61, 0x11, +0x01, 0x0D, 0x0B, 0x0D, 0x51, 0x1B, 0x40, 0x40, 0x00, 0x09, 0x07, 0x03, 0x07, 0x09, 0x03, 0x80, +0x00, 0x03, 0x00, 0x07, 0x03, 0x00, 0x7E, 0x00, 0x0E, 0x00, 0x0C, 0x08, 0x0E, 0x0C, 0x69, 0x00, +0x08, 0x0F, 0x0A, 0x02, 0x07, 0x09, 0x08, 0x07, 0x69, 0x06, 0x04, 0x02, 0x03, 0x00, 0x05, 0x01, +0x01, 0x0B, 0x00, 0x01, 0x68, 0x10, 0x01, 0x0B, 0x0D, 0x0D, 0x0B, 0x59, 0x10, 0x01, 0x0B, 0x0B, +0x0D, 0x61, 0x11, 0x01, 0x0D, 0x0B, 0x0D, 0x51, 0x59, 0x40, 0x24, 0x3C, 0x3B, 0x30, 0x2F, 0x24, +0x24, 0x42, 0x40, 0x3B, 0x46, 0x3C, 0x46, 0x36, 0x34, 0x2F, 0x3A, 0x30, 0x3A, 0x24, 0x2E, 0x24, +0x2D, 0x28, 0x27, 0x21, 0x23, 0x21, 0x11, 0x23, 0x14, 0x21, 0x11, 0x22, 0x12, 0x07, 0x1F, 0x2B, +0xB1, 0x06, 0x00, 0x44, 0x01, 0x17, 0x16, 0x3B, 0x01, 0x15, 0x21, 0x35, 0x33, 0x32, 0x35, 0x34, +0x2F, 0x01, 0x22, 0x27, 0x15, 0x14, 0x3B, 0x01, 0x15, 0x21, 0x35, 0x33, 0x32, 0x35, 0x11, 0x34, +0x2B, 0x01, 0x35, 0x21, 0x1E, 0x01, 0x15, 0x14, 0x01, 0x11, 0x1E, 0x01, 0x33, 0x3E, 0x01, 0x35, +0x2E, 0x01, 0x23, 0x03, 0x20, 0x00, 0x11, 0x10, 0x00, 0x21, 0x20, 0x00, 0x11, 0x10, 0x00, 0x05, +0x20, 0x00, 0x11, 0x10, 0x00, 0x21, 0x20, 0x00, 0x11, 0x10, 0x00, 0x03, 0xD8, 0x52, 0x64, 0x32, +0x22, 0xFE, 0xA6, 0x2D, 0x1E, 0x45, 0x4B, 0x2A, 0x2A, 0x24, 0x35, 0xFE, 0xC4, 0x2B, 0x25, 0x25, +0x2B, 0x01, 0x64, 0x68, 0x92, 0xFE, 0x85, 0x01, 0x4D, 0x2B, 0x29, 0x50, 0x05, 0x53, 0x3D, 0x07, +0x01, 0x18, 0x01, 0x8D, 0xFE, 0x73, 0xFE, 0xE8, 0xFE, 0xE8, 0xFE, 0x73, 0x01, 0x8D, 0x01, 0x18, +0xFE, 0xCF, 0xFE, 0x50, 0x01, 0xB0, 0x01, 0x31, 0x01, 0x31, 0x01, 0xB0, 0xFE, 0x50, 0x02, 0x40, +0x74, 0x8D, 0x32, 0x32, 0x16, 0x1D, 0x55, 0x66, 0x2A, 0x9F, 0x79, 0x32, 0x32, 0x79, 0x02, 0x1A, +0x79, 0x46, 0x01, 0xB2, 0x81, 0x9E, 0x01, 0x8C, 0xFE, 0x8A, 0x36, 0x39, 0x04, 0x98, 0x53, 0x68, +0x8E, 0xFB, 0xDF, 0x01, 0x8D, 0x01, 0x18, 0x01, 0x18, 0x01, 0x8D, 0xFE, 0x73, 0xFE, 0xE8, 0xFE, +0xE8, 0xFE, 0x73, 0x3C, 0x01, 0xB0, 0x01, 0x31, 0x01, 0x31, 0x01, 0xB0, 0xFE, 0x50, 0xFE, 0xCF, +0xFE, 0xCF, 0xFE, 0x50, 0x00, 0x01, 0x00, 0xFE, 0x04, 0xAB, 0x03, 0x02, 0x05, 0x28, 0x00, 0x03, +0x00, 0x26, 0xB1, 0x06, 0x64, 0x44, 0x40, 0x1B, 0x00, 0x00, 0x01, 0x01, 0x00, 0x57, 0x00, 0x00, +0x00, 0x01, 0x5F, 0x02, 0x01, 0x01, 0x00, 0x01, 0x4F, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x11, +0x03, 0x07, 0x17, 0x2B, 0xB1, 0x06, 0x00, 0x44, 0x13, 0x35, 0x21, 0x15, 0xFE, 0x02, 0x04, 0x04, +0xAB, 0x7D, 0x7D, 0x00, 0x00, 0x02, 0x00, 0x3C, 0x03, 0x76, 0x02, 0x68, 0x05, 0xA2, 0x00, 0x0B, +0x00, 0x17, 0x00, 0x38, 0xB1, 0x06, 0x64, 0x44, 0x40, 0x2D, 0x05, 0x01, 0x02, 0x04, 0x01, 0x00, +0x01, 0x02, 0x00, 0x69, 0x00, 0x01, 0x03, 0x03, 0x01, 0x59, 0x00, 0x01, 0x01, 0x03, 0x61, 0x00, +0x03, 0x01, 0x03, 0x51, 0x0D, 0x0C, 0x01, 0x00, 0x13, 0x11, 0x0C, 0x17, 0x0D, 0x17, 0x07, 0x05, +0x00, 0x0B, 0x01, 0x0B, 0x06, 0x07, 0x16, 0x2B, 0xB1, 0x06, 0x00, 0x44, 0x01, 0x22, 0x06, 0x15, +0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, +0x26, 0x35, 0x34, 0x36, 0x01, 0x53, 0x56, 0x7B, 0x7A, 0x57, 0x57, 0x78, 0x79, 0x56, 0x73, 0xA2, +0xA4, 0x73, 0x75, 0xA0, 0xA3, 0x05, 0x5C, 0x7A, 0x57, 0x57, 0x78, 0x78, 0x57, 0x57, 0x7A, 0x46, +0xA3, 0x73, 0x72, 0xA4, 0xA2, 0x74, 0x74, 0xA2, 0xFF, 0xFF, 0x00, 0x57, 0x00, 0x00, 0x03, 0x9F, +0x04, 0x85, 0x02, 0x22, 0x00, 0x0C, 0x00, 0x00, 0x01, 0x03, 0x00, 0xE2, 0x00, 0x00, 0xFD, 0x79, +0x00, 0x09, 0xB1, 0x01, 0x01, 0xB8, 0xFD, 0x79, 0xB0, 0x35, 0x2B, 0x00, 0x00, 0x01, 0x01, 0x3C, +0x04, 0x36, 0x03, 0x09, 0x05, 0x9A, 0x00, 0x0B, 0x00, 0x19, 0xB1, 0x06, 0x64, 0x44, 0x40, 0x0E, +0x00, 0x00, 0x01, 0x00, 0x85, 0x00, 0x01, 0x01, 0x76, 0x16, 0x22, 0x02, 0x07, 0x18, 0x2B, 0xB1, +0x06, 0x00, 0x44, 0x01, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x05, 0x23, 0x02, +0x5F, 0x23, 0x29, 0x14, 0x21, 0x29, 0x1F, 0x1F, 0xFE, 0xB6, 0x45, 0x05, 0x5F, 0x23, 0x18, 0x28, +0x1F, 0x16, 0x28, 0x14, 0xCB, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x5D, 0x00, 0x00, 0x03, 0xA1, +0x05, 0x9B, 0x00, 0x0F, 0x00, 0x31, 0x40, 0x2E, 0x00, 0x04, 0x00, 0x01, 0x00, 0x04, 0x01, 0x80, +0x03, 0x01, 0x01, 0x01, 0x84, 0x06, 0x01, 0x05, 0x00, 0x00, 0x05, 0x57, 0x06, 0x01, 0x05, 0x05, +0x00, 0x5F, 0x02, 0x01, 0x00, 0x05, 0x00, 0x4F, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x0E, 0x11, 0x11, +0x11, 0x11, 0x11, 0x07, 0x07, 0x1B, 0x2B, 0x01, 0x15, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x23, +0x11, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x33, 0x03, 0xA1, 0x7F, 0x52, 0xA6, 0x54, 0xAE, 0xCB, 0xD7, +0xB2, 0x05, 0x9B, 0x46, 0xFA, 0xAB, 0x05, 0x55, 0xFA, 0xAB, 0x02, 0xE2, 0x08, 0xBD, 0x97, 0x9D, +0xC0, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x90, 0x02, 0x7D, 0x01, 0x6C, 0x03, 0x59, 0x00, 0x0B, +0x00, 0x1F, 0x40, 0x1C, 0x00, 0x01, 0x00, 0x00, 0x01, 0x59, 0x00, 0x01, 0x01, 0x00, 0x61, 0x02, +0x01, 0x00, 0x01, 0x00, 0x51, 0x01, 0x00, 0x07, 0x05, 0x00, 0x0B, 0x01, 0x0B, 0x03, 0x07, 0x16, +0x2B, 0x13, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xFE, 0x2E, 0x40, +0x40, 0x2E, 0x2D, 0x41, 0x41, 0x02, 0x7D, 0x40, 0x2E, 0x2D, 0x41, 0x41, 0x2D, 0x2E, 0x40, 0x00, +0x00, 0x01, 0x01, 0x68, 0xFE, 0x5E, 0x03, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x6C, 0xB1, 0x06, +0x64, 0x44, 0x40, 0x0E, 0x0E, 0x01, 0x01, 0x03, 0x00, 0x01, 0x00, 0x01, 0x18, 0x01, 0x04, 0x00, +0x03, 0x4C, 0x4B, 0xB0, 0x0B, 0x50, 0x58, 0x40, 0x1F, 0x00, 0x03, 0x02, 0x01, 0x00, 0x03, 0x72, +0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x01, 0x69, 0x00, 0x00, 0x04, 0x04, 0x00, 0x59, 0x00, 0x00, +0x00, 0x04, 0x62, 0x00, 0x04, 0x00, 0x04, 0x52, 0x1B, 0x40, 0x20, 0x00, 0x03, 0x02, 0x01, 0x02, +0x03, 0x01, 0x80, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x01, 0x69, 0x00, 0x00, 0x04, 0x04, 0x00, +0x59, 0x00, 0x00, 0x00, 0x04, 0x62, 0x00, 0x04, 0x00, 0x04, 0x52, 0x59, 0xB7, 0x24, 0x22, 0x11, +0x35, 0x21, 0x05, 0x07, 0x1B, 0x2B, 0xB1, 0x06, 0x00, 0x44, 0x01, 0x16, 0x33, 0x32, 0x36, 0x35, +0x34, 0x27, 0x26, 0x23, 0x22, 0x07, 0x37, 0x33, 0x07, 0x36, 0x37, 0x32, 0x16, 0x15, 0x14, 0x06, +0x23, 0x22, 0x27, 0x01, 0x68, 0x55, 0x43, 0x42, 0x39, 0x31, 0x28, 0x3E, 0x10, 0x12, 0x30, 0x3F, +0x25, 0x20, 0x1E, 0x56, 0x60, 0x75, 0x66, 0x6D, 0x50, 0xFE, 0xDE, 0x34, 0x2B, 0x2D, 0x2D, 0x13, +0x10, 0x02, 0xB0, 0x68, 0x04, 0x01, 0x51, 0x49, 0x4C, 0x59, 0x20, 0x00, 0xFF, 0xFF, 0x00, 0x65, +0x00, 0xB0, 0x03, 0x02, 0x03, 0x0E, 0x00, 0x22, 0x00, 0xD6, 0x00, 0x00, 0x00, 0x03, 0x00, 0xD6, +0x01, 0x39, 0x00, 0x00, 0x00, 0x01, 0x00, 0xA1, 0x01, 0x73, 0x03, 0x55, 0x04, 0x27, 0x00, 0x0D, +0x00, 0x06, 0xB3, 0x05, 0x01, 0x01, 0x32, 0x2B, 0x01, 0x07, 0x27, 0x37, 0x27, 0x37, 0x17, 0x37, +0x33, 0x17, 0x07, 0x17, 0x15, 0x07, 0x01, 0xFB, 0xF7, 0x63, 0xF7, 0xF7, 0x63, 0xF7, 0xF7, 0x01, +0x62, 0xF7, 0xF7, 0x63, 0x02, 0x6A, 0xF7, 0x63, 0xF7, 0xF7, 0x63, 0xF7, 0xF7, 0x63, 0xF7, 0xF7, +0x01, 0x62, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x57, 0x00, 0xEC, 0x03, 0x9F, 0x04, 0xAF, 0x02, 0x22, +0x00, 0xE2, 0x00, 0x00, 0x01, 0x03, 0x00, 0x1B, 0x00, 0xFD, 0x00, 0xF1, 0x00, 0x08, 0xB1, 0x01, +0x02, 0xB0, 0xF1, 0xB0, 0x35, 0x2B, 0x00, 0x00, 0x00, 0x01, 0x00, 0x13, 0x00, 0x00, 0x01, 0xDA, +0x03, 0xBE, 0x00, 0x11, 0x00, 0x2D, 0x40, 0x2A, 0x0E, 0x01, 0x03, 0x04, 0x01, 0x4C, 0x00, 0x04, +0x03, 0x04, 0x85, 0x00, 0x03, 0x00, 0x03, 0x85, 0x02, 0x01, 0x00, 0x01, 0x01, 0x00, 0x59, 0x02, +0x01, 0x00, 0x00, 0x01, 0x5F, 0x00, 0x01, 0x00, 0x01, 0x4F, 0x13, 0x23, 0x21, 0x11, 0x21, 0x05, +0x07, 0x1B, 0x2B, 0x25, 0x14, 0x3B, 0x01, 0x15, 0x21, 0x35, 0x33, 0x32, 0x35, 0x11, 0x34, 0x2B, +0x01, 0x35, 0x36, 0x37, 0x33, 0x01, 0x48, 0x64, 0x2E, 0xFE, 0x46, 0x2E, 0x64, 0x6F, 0x30, 0xDE, +0x27, 0x30, 0xDF, 0xAD, 0x32, 0x32, 0xAD, 0x01, 0xB0, 0x4D, 0x2C, 0x45, 0x71, 0x00, 0x00, 0x00, +0x00, 0x01, 0xFE, 0x1A, 0x04, 0x38, 0xFF, 0xE7, 0x05, 0x9C, 0x00, 0x0B, 0x00, 0x19, 0xB1, 0x06, +0x64, 0x44, 0x40, 0x0E, 0x00, 0x01, 0x00, 0x01, 0x85, 0x00, 0x00, 0x00, 0x76, 0x26, 0x10, 0x02, +0x07, 0x18, 0x2B, 0xB1, 0x06, 0x00, 0x44, 0x03, 0x23, 0x25, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x33, +0x32, 0x16, 0x17, 0x19, 0x45, 0xFE, 0xB6, 0x1F, 0x1F, 0x29, 0x21, 0x14, 0x29, 0x23, 0x04, 0x38, +0xCB, 0x14, 0x28, 0x16, 0x1F, 0x28, 0x18, 0x23, 0x00, 0x01, 0xFE, 0x1A, 0x04, 0x38, 0xFF, 0xE7, +0x05, 0x9C, 0x00, 0x0B, 0x00, 0x19, 0xB1, 0x06, 0x64, 0x44, 0x40, 0x0E, 0x00, 0x00, 0x01, 0x00, +0x85, 0x00, 0x01, 0x01, 0x76, 0x16, 0x22, 0x02, 0x07, 0x18, 0x2B, 0xB1, 0x06, 0x00, 0x44, 0x03, +0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x05, 0x23, 0xC3, 0x23, 0x29, 0x14, 0x21, +0x29, 0x1F, 0x1F, 0xFE, 0xB6, 0x45, 0x05, 0x61, 0x23, 0x18, 0x28, 0x1F, 0x16, 0x28, 0x14, 0xCB, +0x00, 0x01, 0xFD, 0x90, 0x04, 0x39, 0xFF, 0xD6, 0x05, 0x9C, 0x00, 0x06, 0x00, 0x27, 0xB1, 0x06, +0x64, 0x44, 0x40, 0x1C, 0x05, 0x01, 0x01, 0x00, 0x01, 0x4C, 0x00, 0x00, 0x01, 0x00, 0x85, 0x03, +0x02, 0x02, 0x01, 0x01, 0x76, 0x00, 0x00, 0x00, 0x06, 0x00, 0x06, 0x11, 0x11, 0x04, 0x07, 0x18, +0x2B, 0xB1, 0x06, 0x00, 0x44, 0x01, 0x13, 0x33, 0x13, 0x23, 0x27, 0x07, 0xFD, 0x90, 0xE8, 0x76, +0xE8, 0x3A, 0xE9, 0xE9, 0x04, 0x39, 0x01, 0x63, 0xFE, 0x9D, 0xD8, 0xD8, 0x00, 0x01, 0xFD, 0x9C, +0x04, 0x8B, 0xFF, 0xDA, 0x05, 0x49, 0x00, 0x11, 0x00, 0x34, 0xB1, 0x06, 0x64, 0x44, 0x40, 0x29, +0x00, 0x04, 0x01, 0x00, 0x04, 0x59, 0x06, 0x05, 0x02, 0x03, 0x00, 0x01, 0x00, 0x03, 0x01, 0x69, +0x00, 0x04, 0x04, 0x00, 0x61, 0x02, 0x01, 0x00, 0x04, 0x00, 0x51, 0x00, 0x00, 0x00, 0x11, 0x00, +0x11, 0x21, 0x22, 0x11, 0x21, 0x22, 0x07, 0x07, 0x1B, 0x2B, 0xB1, 0x06, 0x00, 0x44, 0x03, 0x0E, +0x01, 0x23, 0x22, 0x26, 0x23, 0x22, 0x07, 0x23, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x33, 0x32, 0x37, +0x26, 0x14, 0x61, 0x52, 0x32, 0x81, 0x3A, 0x3B, 0x19, 0x36, 0x13, 0x62, 0x46, 0x38, 0x83, 0x3A, +0x3C, 0x1C, 0x05, 0x49, 0x49, 0x75, 0x3E, 0x3E, 0x4C, 0x72, 0x38, 0x38, 0x00, 0x01, 0xFD, 0xF2, +0x04, 0xAB, 0xFF, 0xF6, 0x05, 0x28, 0x00, 0x03, 0x00, 0x26, 0xB1, 0x06, 0x64, 0x44, 0x40, 0x1B, +0x00, 0x00, 0x01, 0x01, 0x00, 0x57, 0x00, 0x00, 0x00, 0x01, 0x5F, 0x02, 0x01, 0x01, 0x00, 0x01, +0x4F, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x11, 0x03, 0x07, 0x17, 0x2B, 0xB1, 0x06, 0x00, 0x44, +0x01, 0x35, 0x21, 0x15, 0xFD, 0xF2, 0x02, 0x04, 0x04, 0xAB, 0x7D, 0x7D, 0x00, 0x01, 0xFE, 0x7C, +0x04, 0x76, 0xFF, 0x53, 0x05, 0x5D, 0x00, 0x1B, 0x00, 0x06, 0xB3, 0x11, 0x03, 0x01, 0x32, 0x2B, +0x01, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x1F, 0x01, 0x1E, 0x01, 0x15, 0x0E, 0x01, 0x0F, 0x01, +0x0E, 0x01, 0x23, 0x22, 0x26, 0x2F, 0x01, 0x2E, 0x01, 0x35, 0x34, 0x36, 0xFE, 0x8A, 0x45, 0x06, +0x0E, 0x07, 0x06, 0x0D, 0x06, 0x47, 0x05, 0x04, 0x01, 0x04, 0x06, 0x47, 0x0C, 0x08, 0x03, 0x0A, +0x0D, 0x04, 0x4B, 0x04, 0x04, 0x06, 0x05, 0x09, 0x48, 0x06, 0x06, 0x06, 0x06, 0x4C, 0x04, 0x0C, +0x08, 0x09, 0x0C, 0x06, 0x4C, 0x0B, 0x05, 0x05, 0x06, 0x57, 0x04, 0x0B, 0x08, 0x06, 0x0D, 0x00, +0x00, 0x02, 0xFD, 0xA5, 0x04, 0x76, 0xFF, 0xEA, 0x05, 0x5D, 0x00, 0x13, 0x00, 0x27, 0x00, 0x25, +0xB1, 0x06, 0x64, 0x44, 0x40, 0x1A, 0x02, 0x01, 0x00, 0x01, 0x01, 0x00, 0x59, 0x02, 0x01, 0x00, +0x00, 0x01, 0x61, 0x03, 0x01, 0x01, 0x00, 0x01, 0x51, 0x28, 0x28, 0x28, 0x22, 0x04, 0x07, 0x1A, +0x2B, 0xB1, 0x06, 0x00, 0x44, 0x01, 0x37, 0x36, 0x33, 0x32, 0x1F, 0x01, 0x16, 0x15, 0x14, 0x0F, +0x01, 0x06, 0x23, 0x22, 0x2F, 0x01, 0x26, 0x35, 0x34, 0x25, 0x37, 0x36, 0x33, 0x32, 0x1F, 0x01, +0x16, 0x15, 0x14, 0x0F, 0x01, 0x06, 0x23, 0x22, 0x2F, 0x01, 0x26, 0x35, 0x34, 0xFD, 0xB3, 0x47, +0x0D, 0x0C, 0x0B, 0x10, 0x45, 0x0A, 0x0C, 0x45, 0x11, 0x08, 0x0E, 0x0B, 0x4C, 0x09, 0x01, 0x7B, +0x47, 0x0D, 0x0C, 0x0B, 0x10, 0x45, 0x0A, 0x0C, 0x45, 0x11, 0x08, 0x0E, 0x0B, 0x4C, 0x09, 0x05, +0x09, 0x48, 0x0C, 0x0E, 0x49, 0x0E, 0x0B, 0x0D, 0x0E, 0x4B, 0x11, 0x0C, 0x56, 0x0C, 0x0B, 0x0D, +0x0D, 0x48, 0x0C, 0x0D, 0x4A, 0x0E, 0x0B, 0x0D, 0x0D, 0x4C, 0x11, 0x0C, 0x57, 0x0B, 0x0B, 0x0D, +0x00, 0x02, 0xFE, 0x56, 0x04, 0x38, 0xFF, 0xB9, 0x05, 0x9B, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x2A, +0xB1, 0x06, 0x64, 0x44, 0x40, 0x1F, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x01, 0x69, 0x00, 0x00, +0x03, 0x03, 0x00, 0x59, 0x00, 0x00, 0x00, 0x03, 0x61, 0x00, 0x03, 0x00, 0x03, 0x51, 0x24, 0x24, +0x24, 0x22, 0x04, 0x07, 0x1A, 0x2B, 0xB1, 0x06, 0x00, 0x44, 0x01, 0x14, 0x16, 0x33, 0x32, 0x36, +0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, +0x22, 0x26, 0xFE, 0xA2, 0x3A, 0x2A, 0x2A, 0x3A, 0x3B, 0x29, 0x29, 0x3B, 0x4C, 0x66, 0x4A, 0x4C, +0x67, 0x67, 0x4C, 0x4A, 0x66, 0x04, 0xEA, 0x2A, 0x3A, 0x3A, 0x2A, 0x28, 0x3B, 0x3B, 0x28, 0x4B, +0x66, 0x67, 0x4A, 0x4B, 0x67, 0x67, 0x00, 0x00, 0x00, 0x01, 0xFD, 0x90, 0x04, 0x38, 0xFF, 0xD6, +0x05, 0x9C, 0x00, 0x06, 0x00, 0x21, 0xB1, 0x06, 0x64, 0x44, 0x40, 0x16, 0x02, 0x01, 0x02, 0x00, +0x01, 0x4C, 0x01, 0x01, 0x00, 0x02, 0x00, 0x85, 0x00, 0x02, 0x02, 0x76, 0x11, 0x12, 0x10, 0x03, +0x07, 0x19, 0x2B, 0xB1, 0x06, 0x00, 0x44, 0x01, 0x33, 0x17, 0x37, 0x33, 0x03, 0x23, 0xFD, 0x90, +0x3A, 0xE9, 0xE9, 0x3A, 0xE8, 0x76, 0x05, 0x9C, 0xD6, 0xD6, 0xFE, 0x9C, 0x00, 0x01, 0xFE, 0x29, +0xFE, 0x5E, 0xFF, 0xC1, 0x00, 0x00, 0x00, 0x18, 0x00, 0x6C, 0xB1, 0x06, 0x64, 0x44, 0x40, 0x0E, +0x0E, 0x01, 0x01, 0x03, 0x00, 0x01, 0x00, 0x01, 0x18, 0x01, 0x04, 0x00, 0x03, 0x4C, 0x4B, 0xB0, +0x0B, 0x50, 0x58, 0x40, 0x1F, 0x00, 0x03, 0x02, 0x01, 0x00, 0x03, 0x72, 0x00, 0x02, 0x00, 0x01, +0x00, 0x02, 0x01, 0x69, 0x00, 0x00, 0x04, 0x04, 0x00, 0x59, 0x00, 0x00, 0x00, 0x04, 0x62, 0x00, +0x04, 0x00, 0x04, 0x52, 0x1B, 0x40, 0x20, 0x00, 0x03, 0x02, 0x01, 0x02, 0x03, 0x01, 0x80, 0x00, +0x02, 0x00, 0x01, 0x00, 0x02, 0x01, 0x69, 0x00, 0x00, 0x04, 0x04, 0x00, 0x59, 0x00, 0x00, 0x00, +0x04, 0x62, 0x00, 0x04, 0x00, 0x04, 0x52, 0x59, 0xB7, 0x24, 0x22, 0x11, 0x35, 0x21, 0x05, 0x07, +0x1B, 0x2B, 0xB1, 0x06, 0x00, 0x44, 0x01, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x27, 0x26, 0x23, +0x22, 0x07, 0x37, 0x33, 0x07, 0x36, 0x37, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x27, 0xFE, +0x29, 0x55, 0x43, 0x42, 0x39, 0x31, 0x28, 0x3E, 0x10, 0x12, 0x30, 0x3F, 0x25, 0x20, 0x1E, 0x56, +0x60, 0x75, 0x66, 0x6D, 0x50, 0xFE, 0xDE, 0x34, 0x2B, 0x2D, 0x2D, 0x13, 0x10, 0x02, 0xB0, 0x68, +0x04, 0x01, 0x51, 0x49, 0x4C, 0x59, 0x20, 0x00, 0x00, 0x01, 0x00, 0x38, 0x01, 0xA3, 0x04, 0x1C, +0x02, 0x1B, 0x00, 0x03, 0x00, 0x1E, 0x40, 0x1B, 0x00, 0x00, 0x01, 0x01, 0x00, 0x57, 0x00, 0x00, +0x00, 0x01, 0x5F, 0x02, 0x01, 0x01, 0x00, 0x01, 0x4F, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x11, +0x03, 0x07, 0x17, 0x2B, 0x13, 0x35, 0x21, 0x15, 0x38, 0x03, 0xE4, 0x01, 0xA3, 0x78, 0x78, 0x00, +0x00, 0x01, 0x00, 0x00, 0x01, 0xA3, 0x08, 0x00, 0x02, 0x1B, 0x00, 0x03, 0x00, 0x1E, 0x40, 0x1B, +0x00, 0x00, 0x01, 0x01, 0x00, 0x57, 0x00, 0x00, 0x00, 0x01, 0x5F, 0x02, 0x01, 0x01, 0x00, 0x01, +0x4F, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x11, 0x03, 0x07, 0x17, 0x2B, 0x11, 0x35, 0x21, 0x15, +0x08, 0x00, 0x01, 0xA3, 0x78, 0x78, 0x00, 0x00, 0x00, 0x01, 0x00, 0xBA, 0x03, 0xF8, 0x01, 0xB6, +0x06, 0x29, 0x00, 0x0C, 0x00, 0x1A, 0x40, 0x17, 0x0C, 0x0B, 0x09, 0x07, 0x04, 0x00, 0x01, 0x01, +0x4C, 0x00, 0x01, 0x00, 0x01, 0x85, 0x00, 0x00, 0x00, 0x76, 0x14, 0x10, 0x02, 0x07, 0x18, 0x2B, +0x01, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x15, 0x06, 0x07, 0x14, 0x17, 0x15, 0x01, 0x3F, 0x2C, +0x59, 0x8E, 0x44, 0x49, 0x0E, 0x81, 0x03, 0xF8, 0x83, 0x56, 0x6D, 0xEB, 0x2B, 0x2B, 0x93, 0x77, +0x2A, 0x2A, 0x00, 0x00, 0x00, 0x01, 0x00, 0x77, 0x03, 0xF8, 0x01, 0x73, 0x06, 0x29, 0x00, 0x0C, +0x00, 0x1A, 0x40, 0x17, 0x0C, 0x0B, 0x09, 0x07, 0x04, 0x01, 0x00, 0x01, 0x4C, 0x00, 0x00, 0x01, +0x00, 0x85, 0x00, 0x01, 0x01, 0x76, 0x14, 0x10, 0x02, 0x07, 0x18, 0x2B, 0x13, 0x32, 0x16, 0x15, +0x14, 0x06, 0x23, 0x35, 0x36, 0x37, 0x34, 0x27, 0x35, 0xEE, 0x2C, 0x59, 0x8E, 0x44, 0x49, 0x0E, +0x81, 0x06, 0x29, 0x83, 0x56, 0x6D, 0xEB, 0x2B, 0x2B, 0x93, 0x77, 0x2A, 0x2A, 0x00, 0x00, 0x00, +0x00, 0x01, 0x00, 0x77, 0xFE, 0xE8, 0x01, 0x73, 0x01, 0x19, 0x00, 0x0C, 0x00, 0x1A, 0x40, 0x17, +0x0C, 0x0B, 0x09, 0x07, 0x04, 0x01, 0x00, 0x01, 0x4C, 0x00, 0x00, 0x01, 0x00, 0x85, 0x00, 0x01, +0x01, 0x76, 0x14, 0x10, 0x02, 0x07, 0x18, 0x2B, 0x13, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x35, +0x36, 0x37, 0x34, 0x27, 0x35, 0xEE, 0x2C, 0x59, 0x8E, 0x44, 0x49, 0x0E, 0x81, 0x01, 0x19, 0x83, +0x56, 0x6D, 0xEB, 0x2B, 0x2B, 0x93, 0x77, 0x2A, 0x2A, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0xBA, +0x03, 0xF8, 0x03, 0x17, 0x06, 0x29, 0x00, 0x0C, 0x00, 0x19, 0x00, 0x22, 0x40, 0x1F, 0x19, 0x18, +0x16, 0x14, 0x0C, 0x0B, 0x09, 0x07, 0x08, 0x00, 0x01, 0x01, 0x4C, 0x03, 0x01, 0x01, 0x00, 0x01, +0x85, 0x02, 0x01, 0x00, 0x00, 0x76, 0x14, 0x17, 0x14, 0x10, 0x04, 0x07, 0x1A, 0x2B, 0x01, 0x22, +0x26, 0x35, 0x34, 0x36, 0x33, 0x15, 0x06, 0x07, 0x14, 0x17, 0x15, 0x17, 0x22, 0x26, 0x35, 0x34, +0x36, 0x33, 0x15, 0x06, 0x07, 0x14, 0x17, 0x15, 0x01, 0x3F, 0x2C, 0x59, 0x8E, 0x44, 0x49, 0x0E, +0x81, 0xEA, 0x2C, 0x59, 0x8E, 0x44, 0x49, 0x0E, 0x81, 0x03, 0xF8, 0x83, 0x56, 0x6D, 0xEB, 0x2B, +0x2B, 0x93, 0x77, 0x2A, 0x2A, 0x7D, 0x83, 0x56, 0x6D, 0xEB, 0x2B, 0x2B, 0x93, 0x77, 0x2A, 0x2A, +0x00, 0x02, 0x00, 0x77, 0x03, 0xF8, 0x02, 0xD4, 0x06, 0x29, 0x00, 0x0C, 0x00, 0x19, 0x00, 0x22, +0x40, 0x1F, 0x19, 0x18, 0x16, 0x14, 0x0C, 0x0B, 0x09, 0x07, 0x08, 0x01, 0x00, 0x01, 0x4C, 0x02, +0x01, 0x00, 0x01, 0x00, 0x85, 0x03, 0x01, 0x01, 0x01, 0x76, 0x14, 0x17, 0x14, 0x10, 0x04, 0x07, +0x1A, 0x2B, 0x13, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x35, 0x36, 0x37, 0x34, 0x27, 0x35, 0x25, +0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x35, 0x36, 0x37, 0x34, 0x27, 0x35, 0xEE, 0x2C, 0x59, 0x8E, +0x44, 0x49, 0x0E, 0x81, 0x01, 0xD8, 0x2C, 0x59, 0x8E, 0x44, 0x49, 0x0E, 0x81, 0x06, 0x29, 0x83, +0x56, 0x6D, 0xEB, 0x2B, 0x2B, 0x93, 0x77, 0x2A, 0x2A, 0x7D, 0x83, 0x56, 0x6D, 0xEB, 0x2B, 0x2B, +0x93, 0x77, 0x2A, 0x2A, 0x00, 0x02, 0x00, 0x77, 0xFE, 0xE8, 0x02, 0xD4, 0x01, 0x19, 0x00, 0x0C, +0x00, 0x19, 0x00, 0x22, 0x40, 0x1F, 0x19, 0x18, 0x16, 0x14, 0x0C, 0x0B, 0x09, 0x07, 0x08, 0x01, +0x00, 0x01, 0x4C, 0x02, 0x01, 0x00, 0x01, 0x00, 0x85, 0x03, 0x01, 0x01, 0x01, 0x76, 0x14, 0x17, +0x14, 0x10, 0x04, 0x07, 0x1A, 0x2B, 0x13, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x35, 0x36, 0x37, +0x34, 0x27, 0x35, 0x25, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x35, 0x36, 0x37, 0x34, 0x27, 0x35, +0xEE, 0x2C, 0x59, 0x8E, 0x44, 0x49, 0x0E, 0x81, 0x01, 0xD8, 0x2C, 0x59, 0x8E, 0x44, 0x49, 0x0E, +0x81, 0x01, 0x19, 0x83, 0x56, 0x6D, 0xEB, 0x2B, 0x2B, 0x93, 0x77, 0x2A, 0x2A, 0x7D, 0x83, 0x56, +0x6D, 0xEB, 0x2B, 0x2B, 0x93, 0x77, 0x2A, 0x2A, 0x00, 0x01, 0x00, 0x47, 0xFE, 0xF2, 0x03, 0xB0, +0x05, 0x9D, 0x00, 0x32, 0x00, 0x5A, 0x40, 0x0D, 0x25, 0x1C, 0x0E, 0x03, 0x02, 0x01, 0x23, 0x1E, +0x02, 0x03, 0x02, 0x02, 0x4C, 0x4B, 0xB0, 0x21, 0x50, 0x58, 0x40, 0x17, 0x00, 0x00, 0x01, 0x00, +0x85, 0x00, 0x03, 0x02, 0x03, 0x86, 0x05, 0x01, 0x01, 0x01, 0x02, 0x61, 0x04, 0x01, 0x02, 0x02, +0x0F, 0x02, 0x4E, 0x1B, 0x40, 0x1D, 0x00, 0x00, 0x01, 0x00, 0x85, 0x00, 0x03, 0x02, 0x03, 0x86, +0x05, 0x01, 0x01, 0x02, 0x02, 0x01, 0x59, 0x05, 0x01, 0x01, 0x01, 0x02, 0x61, 0x04, 0x01, 0x02, +0x01, 0x02, 0x51, 0x59, 0x40, 0x09, 0x24, 0x27, 0x17, 0x24, 0x29, 0x26, 0x06, 0x07, 0x1C, 0x2B, +0x01, 0x26, 0x27, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x06, 0x07, 0x36, +0x37, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x27, 0x26, 0x27, 0x16, 0x17, 0x02, +0x03, 0x23, 0x02, 0x03, 0x36, 0x37, 0x06, 0x07, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, +0x32, 0x17, 0x16, 0x01, 0xE6, 0x08, 0x2E, 0x39, 0x48, 0x3C, 0x39, 0x4B, 0x37, 0x2E, 0x09, 0x60, +0x51, 0x65, 0x1C, 0x31, 0x3C, 0x37, 0x2D, 0x20, 0x68, 0x55, 0x5E, 0x08, 0x66, 0x6A, 0x06, 0x26, +0x06, 0x6C, 0x66, 0x09, 0x60, 0x52, 0x65, 0x1C, 0x31, 0x3B, 0x37, 0x2C, 0x20, 0x69, 0x55, 0x03, +0xFE, 0x61, 0x51, 0x65, 0x1C, 0x31, 0x3B, 0x37, 0x2C, 0x20, 0x69, 0x55, 0x5E, 0x08, 0x2E, 0x39, +0x48, 0x3C, 0x39, 0x4B, 0x37, 0x2E, 0x0B, 0xB0, 0x65, 0xFE, 0x34, 0xFD, 0xFE, 0x02, 0x02, 0x01, +0xCC, 0x65, 0xB0, 0x0A, 0x2D, 0x39, 0x48, 0x3C, 0x39, 0x4B, 0x38, 0x2E, 0x00, 0x01, 0x00, 0x46, +0xFE, 0xF2, 0x03, 0xAF, 0x05, 0x9D, 0x00, 0x5B, 0x00, 0x7B, 0x40, 0x15, 0x58, 0x4A, 0x3C, 0x2E, +0x04, 0x05, 0x06, 0x5A, 0x2C, 0x02, 0x00, 0x05, 0x2A, 0x1C, 0x0E, 0x00, 0x04, 0x01, 0x00, 0x03, +0x4C, 0x4B, 0xB0, 0x21, 0x50, 0x58, 0x40, 0x21, 0x00, 0x07, 0x06, 0x07, 0x85, 0x00, 0x02, 0x01, +0x02, 0x86, 0x04, 0x01, 0x00, 0x03, 0x01, 0x01, 0x02, 0x00, 0x01, 0x69, 0x08, 0x01, 0x06, 0x06, +0x05, 0x61, 0x09, 0x01, 0x05, 0x05, 0x0F, 0x05, 0x4E, 0x1B, 0x40, 0x27, 0x00, 0x07, 0x06, 0x07, +0x85, 0x00, 0x02, 0x01, 0x02, 0x86, 0x08, 0x01, 0x06, 0x09, 0x01, 0x05, 0x00, 0x06, 0x05, 0x69, +0x04, 0x01, 0x00, 0x01, 0x01, 0x00, 0x59, 0x04, 0x01, 0x00, 0x00, 0x01, 0x61, 0x03, 0x01, 0x01, +0x00, 0x01, 0x51, 0x59, 0x40, 0x0E, 0x55, 0x53, 0x29, 0x29, 0x24, 0x2A, 0x24, 0x29, 0x29, 0x24, +0x23, 0x0A, 0x07, 0x1F, 0x2B, 0x25, 0x36, 0x37, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, +0x22, 0x27, 0x26, 0x27, 0x16, 0x17, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x37, +0x36, 0x37, 0x06, 0x07, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, 0x16, 0x17, +0x26, 0x27, 0x36, 0x37, 0x06, 0x07, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, +0x16, 0x17, 0x26, 0x27, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x06, 0x07, +0x36, 0x37, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x27, 0x26, 0x27, 0x16, 0x17, +0x06, 0x02, 0x10, 0x5E, 0x55, 0x68, 0x20, 0x2D, 0x37, 0x3C, 0x31, 0x1C, 0x65, 0x51, 0x60, 0x09, +0x2E, 0x37, 0x4B, 0x39, 0x3C, 0x48, 0x39, 0x2E, 0x08, 0x5E, 0x55, 0x69, 0x20, 0x2C, 0x37, 0x3B, +0x31, 0x1C, 0x65, 0x52, 0x60, 0x09, 0x66, 0x66, 0x09, 0x60, 0x52, 0x65, 0x1C, 0x31, 0x3B, 0x37, +0x2C, 0x20, 0x69, 0x55, 0x5E, 0x08, 0x2E, 0x39, 0x48, 0x3C, 0x39, 0x4B, 0x37, 0x2E, 0x09, 0x60, +0x51, 0x65, 0x1C, 0x31, 0x3C, 0x37, 0x2D, 0x20, 0x68, 0x55, 0x5E, 0x08, 0x66, 0x66, 0xBA, 0x0B, +0x2E, 0x37, 0x4B, 0x39, 0x3C, 0x48, 0x39, 0x2E, 0x08, 0x5E, 0x55, 0x69, 0x20, 0x2C, 0x37, 0x3B, +0x31, 0x1C, 0x65, 0x51, 0x61, 0x09, 0x2E, 0x38, 0x4B, 0x39, 0x3C, 0x48, 0x39, 0x2D, 0x0A, 0xE2, +0xAC, 0xAB, 0xE2, 0x0A, 0x2D, 0x39, 0x48, 0x3C, 0x39, 0x4B, 0x38, 0x2E, 0x09, 0x61, 0x51, 0x65, +0x1C, 0x31, 0x3B, 0x37, 0x2C, 0x20, 0x69, 0x55, 0x5E, 0x08, 0x2E, 0x39, 0x48, 0x3C, 0x39, 0x4B, +0x37, 0x2E, 0x0B, 0xE2, 0xAB, 0xAC, 0x00, 0x00, 0x00, 0x01, 0x00, 0xD8, 0x01, 0xA5, 0x03, 0x28, +0x03, 0xF5, 0x00, 0x0B, 0x00, 0x11, 0x40, 0x0E, 0x00, 0x00, 0x01, 0x00, 0x85, 0x00, 0x01, 0x01, +0x76, 0x24, 0x22, 0x02, 0x07, 0x18, 0x2B, 0x13, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, +0x23, 0x22, 0x26, 0xD8, 0xAE, 0x7B, 0x7A, 0xAD, 0xAF, 0x7A, 0x7B, 0xAC, 0x02, 0xCE, 0x7B, 0xAC, +0xAD, 0x7A, 0x7A, 0xAF, 0xAE, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0xFF, 0xFB, 0x06, 0xD1, +0x01, 0x09, 0x00, 0x22, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x23, 0x00, 0x0F, 0x02, 0xAB, 0x00, 0x00, +0x00, 0x03, 0x00, 0x0F, 0x05, 0x56, 0x00, 0x00, 0x00, 0x01, 0x00, 0xAE, 0x00, 0xB0, 0x02, 0x12, +0x03, 0x0E, 0x00, 0x07, 0x00, 0x06, 0xB3, 0x06, 0x01, 0x01, 0x32, 0x2B, 0x13, 0x01, 0x33, 0x15, +0x03, 0x13, 0x15, 0x23, 0xAE, 0x01, 0x56, 0x0E, 0xCD, 0xCD, 0x0E, 0x01, 0xDF, 0x01, 0x2F, 0x25, +0xFE, 0xF6, 0xFE, 0xF6, 0x25, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x65, 0x00, 0xB0, 0x01, 0xC9, +0x03, 0x0E, 0x00, 0x07, 0x00, 0x06, 0xB3, 0x05, 0x00, 0x01, 0x32, 0x2B, 0x37, 0x23, 0x35, 0x13, +0x03, 0x35, 0x33, 0x01, 0x73, 0x0E, 0xCD, 0xCD, 0x0E, 0x01, 0x56, 0xB0, 0x25, 0x01, 0x0A, 0x01, +0x0A, 0x25, 0xFE, 0xD1, 0x00, 0x01, 0xFE, 0xAA, 0xFF, 0xE3, 0x02, 0xAA, 0x05, 0x98, 0x00, 0x03, +0x00, 0x17, 0x40, 0x14, 0x00, 0x00, 0x01, 0x00, 0x85, 0x02, 0x01, 0x01, 0x01, 0x76, 0x00, 0x00, +0x00, 0x03, 0x00, 0x03, 0x11, 0x03, 0x07, 0x17, 0x2B, 0x05, 0x01, 0x33, 0x01, 0xFE, 0xAA, 0x03, +0xAC, 0x54, 0xFC, 0x56, 0x1D, 0x05, 0xB5, 0xFA, 0x4B, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x30, +0x00, 0x00, 0x04, 0x2A, 0x05, 0x9A, 0x00, 0x2A, 0x00, 0x58, 0x40, 0x55, 0x00, 0x04, 0x02, 0x07, +0x02, 0x04, 0x07, 0x80, 0x00, 0x03, 0x05, 0x01, 0x02, 0x04, 0x03, 0x02, 0x69, 0x00, 0x06, 0x00, +0x09, 0x08, 0x06, 0x09, 0x67, 0x00, 0x07, 0x00, 0x08, 0x01, 0x07, 0x08, 0x67, 0x0A, 0x01, 0x01, +0x0B, 0x01, 0x00, 0x0C, 0x01, 0x00, 0x67, 0x0E, 0x01, 0x0C, 0x0D, 0x0D, 0x0C, 0x59, 0x0E, 0x01, +0x0C, 0x0C, 0x0D, 0x5F, 0x00, 0x0D, 0x0C, 0x0D, 0x4F, 0x29, 0x27, 0x26, 0x25, 0x24, 0x22, 0x20, +0x1F, 0x1E, 0x1D, 0x1C, 0x1A, 0x11, 0x12, 0x22, 0x31, 0x11, 0x11, 0x22, 0x11, 0x10, 0x0F, 0x07, +0x1F, 0x2B, 0x13, 0x23, 0x35, 0x33, 0x11, 0x34, 0x2B, 0x01, 0x35, 0x21, 0x17, 0x23, 0x26, 0x23, +0x05, 0x22, 0x15, 0x11, 0x21, 0x32, 0x3D, 0x01, 0x33, 0x11, 0x23, 0x35, 0x34, 0x23, 0x21, 0x11, +0x33, 0x15, 0x23, 0x15, 0x14, 0x3B, 0x01, 0x15, 0x21, 0x35, 0x33, 0x32, 0x35, 0xF7, 0xC2, 0xC2, +0x67, 0x60, 0x03, 0x93, 0x67, 0x31, 0x3B, 0x83, 0xFE, 0xC4, 0x66, 0x01, 0x69, 0x64, 0x32, 0x32, +0x64, 0xFE, 0x97, 0xC2, 0xC2, 0x66, 0x61, 0xFD, 0xD0, 0x60, 0x67, 0x01, 0x65, 0x3C, 0x02, 0xDC, +0xEB, 0x32, 0xE7, 0xB6, 0x01, 0xEB, 0xFE, 0xA0, 0x3F, 0x3A, 0xFE, 0xAA, 0x3C, 0x3E, 0xFE, 0xE7, +0x3C, 0x48, 0xEB, 0x32, 0x32, 0xEB, 0x00, 0x00, 0x00, 0x01, 0x00, 0x4C, 0x00, 0x00, 0x03, 0xA8, +0x05, 0xAE, 0x00, 0x32, 0x00, 0x5B, 0x40, 0x58, 0x1A, 0x01, 0x07, 0x05, 0x01, 0x4C, 0x00, 0x0D, +0x00, 0x01, 0x00, 0x0D, 0x01, 0x80, 0x00, 0x06, 0x04, 0x05, 0x04, 0x06, 0x05, 0x80, 0x00, 0x0C, +0x00, 0x00, 0x0D, 0x0C, 0x00, 0x69, 0x0B, 0x01, 0x01, 0x0A, 0x01, 0x02, 0x03, 0x01, 0x02, 0x67, +0x09, 0x01, 0x03, 0x08, 0x01, 0x04, 0x06, 0x03, 0x04, 0x67, 0x00, 0x05, 0x07, 0x07, 0x05, 0x57, +0x00, 0x05, 0x05, 0x07, 0x5F, 0x00, 0x07, 0x05, 0x07, 0x4F, 0x31, 0x30, 0x2D, 0x2B, 0x27, 0x26, +0x25, 0x24, 0x22, 0x21, 0x25, 0x11, 0x11, 0x24, 0x11, 0x12, 0x11, 0x14, 0x30, 0x0E, 0x07, 0x1F, +0x2B, 0x00, 0x2B, 0x01, 0x22, 0x06, 0x15, 0x16, 0x17, 0x21, 0x15, 0x21, 0x16, 0x17, 0x21, 0x15, +0x21, 0x16, 0x15, 0x14, 0x07, 0x21, 0x32, 0x37, 0x17, 0x07, 0x21, 0x37, 0x36, 0x35, 0x34, 0x2F, +0x01, 0x23, 0x35, 0x33, 0x26, 0x27, 0x23, 0x35, 0x33, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, +0x1D, 0x01, 0x23, 0x26, 0x02, 0xC2, 0x76, 0x02, 0x64, 0xAE, 0x01, 0x21, 0x01, 0x7C, 0xFE, 0x98, +0x0C, 0x0E, 0x01, 0x60, 0xFE, 0xBF, 0x23, 0xA2, 0x01, 0x92, 0x82, 0x3B, 0x31, 0x67, 0xFD, 0x31, +0x01, 0xBB, 0x22, 0x02, 0xAC, 0x8F, 0x0E, 0x0C, 0x87, 0x71, 0x24, 0xF7, 0xBB, 0x4B, 0xDD, 0x26, +0x05, 0x05, 0x62, 0xC2, 0x94, 0x88, 0x6B, 0x3C, 0x1E, 0x1E, 0x3C, 0x3F, 0x4B, 0xA1, 0xD6, 0x84, +0x01, 0xE7, 0x32, 0xEE, 0xB4, 0x4D, 0x42, 0x02, 0x3C, 0x1F, 0x1D, 0x3C, 0x6B, 0x56, 0xE2, 0xF2, +0x1C, 0x14, 0xA1, 0x3D, 0x00, 0x03, 0x00, 0x30, 0xFF, 0xED, 0x07, 0xAF, 0x05, 0x9A, 0x00, 0x17, +0x00, 0x30, 0x00, 0x7A, 0x00, 0xF5, 0x40, 0x0B, 0x3A, 0x01, 0x02, 0x00, 0x0F, 0x1E, 0x01, 0x04, +0x03, 0x02, 0x4C, 0x4B, 0xB0, 0x2E, 0x50, 0x58, 0x40, 0x52, 0x00, 0x0C, 0x01, 0x0E, 0x01, 0x0C, +0x0E, 0x80, 0x00, 0x0F, 0x02, 0x00, 0x02, 0x0F, 0x00, 0x80, 0x00, 0x0A, 0x09, 0x15, 0x02, 0x01, +0x0C, 0x0A, 0x01, 0x69, 0x00, 0x00, 0x00, 0x05, 0x03, 0x00, 0x05, 0x69, 0x00, 0x03, 0x04, 0x11, +0x03, 0x57, 0x12, 0x01, 0x07, 0x11, 0x04, 0x07, 0x59, 0x08, 0x06, 0x02, 0x04, 0x13, 0x01, 0x11, +0x04, 0x11, 0x65, 0x00, 0x0E, 0x0E, 0x10, 0x61, 0x00, 0x10, 0x10, 0x0F, 0x4D, 0x0D, 0x01, 0x0B, +0x0B, 0x02, 0x5F, 0x17, 0x14, 0x16, 0x03, 0x02, 0x02, 0x0F, 0x02, 0x4E, 0x1B, 0x40, 0x50, 0x00, +0x0C, 0x01, 0x0E, 0x01, 0x0C, 0x0E, 0x80, 0x00, 0x0F, 0x02, 0x00, 0x02, 0x0F, 0x00, 0x80, 0x00, +0x0A, 0x09, 0x15, 0x02, 0x01, 0x0C, 0x0A, 0x01, 0x69, 0x00, 0x0E, 0x00, 0x10, 0x02, 0x0E, 0x10, +0x69, 0x00, 0x00, 0x00, 0x05, 0x03, 0x00, 0x05, 0x69, 0x00, 0x03, 0x04, 0x11, 0x03, 0x57, 0x12, +0x01, 0x07, 0x11, 0x04, 0x07, 0x59, 0x08, 0x06, 0x02, 0x04, 0x13, 0x01, 0x11, 0x04, 0x11, 0x65, +0x0D, 0x01, 0x0B, 0x0B, 0x02, 0x5F, 0x17, 0x14, 0x16, 0x03, 0x02, 0x02, 0x0F, 0x02, 0x4E, 0x59, +0x40, 0x38, 0x31, 0x31, 0x19, 0x18, 0x00, 0x00, 0x31, 0x7A, 0x31, 0x7A, 0x76, 0x74, 0x71, 0x70, +0x6E, 0x6C, 0x62, 0x60, 0x5E, 0x5D, 0x5A, 0x57, 0x56, 0x55, 0x54, 0x53, 0x52, 0x50, 0x4B, 0x49, +0x48, 0x46, 0x43, 0x41, 0x40, 0x3F, 0x3E, 0x3C, 0x37, 0x35, 0x26, 0x23, 0x20, 0x1F, 0x18, 0x30, +0x19, 0x30, 0x00, 0x17, 0x00, 0x14, 0x36, 0x18, 0x07, 0x17, 0x2B, 0x01, 0x11, 0x16, 0x17, 0x16, +0x17, 0x16, 0x33, 0x32, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x35, 0x34, 0x27, 0x2E, 0x01, 0x27, 0x26, +0x23, 0x22, 0x07, 0x01, 0x23, 0x11, 0x14, 0x17, 0x16, 0x17, 0x27, 0x37, 0x16, 0x17, 0x16, 0x3B, +0x01, 0x32, 0x37, 0x36, 0x35, 0x34, 0x25, 0x2E, 0x01, 0x35, 0x34, 0x37, 0x25, 0x06, 0x07, 0x0E, +0x01, 0x23, 0x22, 0x27, 0x26, 0x27, 0x11, 0x14, 0x3B, 0x01, 0x15, 0x21, 0x35, 0x33, 0x32, 0x35, +0x11, 0x34, 0x2B, 0x01, 0x35, 0x21, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x33, 0x32, 0x11, 0x33, +0x11, 0x21, 0x36, 0x37, 0x33, 0x32, 0x16, 0x1D, 0x01, 0x23, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, +0x14, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x07, 0x06, 0x07, 0x22, 0x27, 0x26, 0x23, 0x22, 0x07, 0x06, +0x23, 0x22, 0x26, 0x27, 0x23, 0x11, 0x01, 0x99, 0x03, 0x04, 0x29, 0x43, 0x39, 0x3B, 0x0A, 0x09, +0x44, 0x76, 0x1C, 0x16, 0x01, 0x07, 0x55, 0x42, 0x38, 0x38, 0x0A, 0x0B, 0x03, 0x7D, 0xB3, 0x22, +0x1C, 0x35, 0x47, 0x31, 0x37, 0x3B, 0x39, 0x46, 0x07, 0x5C, 0x3B, 0x3B, 0xFE, 0xFD, 0x65, 0x56, +0x49, 0xFE, 0x38, 0x07, 0x29, 0x32, 0xB6, 0x63, 0x64, 0x5B, 0x21, 0x1B, 0x66, 0x61, 0xFD, 0xD0, +0x60, 0x67, 0x67, 0x60, 0x02, 0x6A, 0x5C, 0x59, 0x5B, 0x34, 0x32, 0x01, 0x0A, 0xD8, 0x32, 0x01, +0x03, 0x2A, 0x44, 0x02, 0x36, 0x9F, 0x2A, 0x04, 0x7B, 0x48, 0x40, 0x4D, 0xEB, 0x7A, 0x5B, 0x53, +0x66, 0x7E, 0x3A, 0x2F, 0x1C, 0x1C, 0x12, 0x12, 0x1C, 0x1F, 0x7C, 0x63, 0x08, 0x01, 0x05, 0x68, +0xFD, 0x6A, 0x09, 0x08, 0x66, 0x33, 0x2C, 0x01, 0x08, 0x86, 0x6E, 0x57, 0x5C, 0x18, 0x17, 0x74, +0xCD, 0x2A, 0x23, 0x01, 0xFE, 0x24, 0xFD, 0x53, 0x51, 0x26, 0x1F, 0x06, 0xC0, 0x01, 0x82, 0x2C, +0x2C, 0x34, 0x35, 0x53, 0x66, 0x7C, 0x34, 0x78, 0x55, 0x79, 0x49, 0x03, 0x65, 0x5D, 0x72, 0x7F, +0x40, 0x16, 0x1D, 0xFE, 0xCF, 0xEB, 0x32, 0x32, 0xEB, 0x03, 0x60, 0xEB, 0x32, 0x02, 0x3C, 0x3E, +0x73, 0x71, 0x7C, 0x01, 0x63, 0xFE, 0x9D, 0x13, 0x01, 0x1B, 0x14, 0x9F, 0x42, 0x54, 0x49, 0x3C, +0x6C, 0x70, 0x37, 0x7D, 0x5B, 0x8C, 0x5B, 0x54, 0x02, 0x0B, 0x06, 0x03, 0x05, 0x72, 0x77, 0x02, +0xAF, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xD4, 0x00, 0x00, 0x04, 0x0D, 0x05, 0xCE, 0x00, 0x2F, +0x00, 0x70, 0x40, 0x6D, 0x00, 0x0D, 0x0C, 0x00, 0x0C, 0x0D, 0x00, 0x80, 0x00, 0x0F, 0x00, 0x01, +0x00, 0x0F, 0x01, 0x80, 0x00, 0x06, 0x04, 0x05, 0x04, 0x06, 0x05, 0x80, 0x0E, 0x01, 0x0C, 0x10, +0x01, 0x00, 0x0F, 0x0C, 0x00, 0x69, 0x0B, 0x01, 0x01, 0x0A, 0x01, 0x02, 0x03, 0x01, 0x02, 0x67, +0x09, 0x01, 0x03, 0x08, 0x01, 0x04, 0x06, 0x03, 0x04, 0x67, 0x00, 0x05, 0x07, 0x07, 0x05, 0x59, +0x00, 0x05, 0x05, 0x07, 0x61, 0x00, 0x07, 0x05, 0x07, 0x51, 0x01, 0x00, 0x2D, 0x2C, 0x2B, 0x2A, +0x29, 0x27, 0x26, 0x24, 0x22, 0x21, 0x20, 0x1F, 0x1C, 0x1B, 0x1A, 0x19, 0x17, 0x15, 0x12, 0x11, +0x0F, 0x0D, 0x0B, 0x0A, 0x09, 0x08, 0x06, 0x05, 0x04, 0x03, 0x00, 0x2F, 0x01, 0x2F, 0x11, 0x07, +0x16, 0x2B, 0x01, 0x22, 0x00, 0x07, 0x21, 0x07, 0x21, 0x14, 0x17, 0x21, 0x07, 0x21, 0x16, 0x00, +0x17, 0x3E, 0x01, 0x35, 0x33, 0x15, 0x14, 0x06, 0x07, 0x20, 0x00, 0x27, 0x23, 0x37, 0x33, 0x35, +0x34, 0x37, 0x23, 0x37, 0x33, 0x36, 0x00, 0x21, 0x32, 0x16, 0x33, 0x32, 0x37, 0x33, 0x13, 0x07, +0x2E, 0x01, 0x02, 0x89, 0xB1, 0xFE, 0xF0, 0x07, 0x02, 0xC2, 0x11, 0xFD, 0x4C, 0x02, 0x02, 0xA2, +0x11, 0xFD, 0x74, 0x11, 0x01, 0x19, 0xC2, 0x9C, 0x90, 0x30, 0xD8, 0x84, 0xFE, 0xF1, 0xFE, 0xAC, +0x0E, 0x6C, 0x11, 0x57, 0x01, 0x47, 0x11, 0x3A, 0x0E, 0x01, 0x39, 0x01, 0x11, 0x3F, 0x72, 0x0E, +0x0E, 0x0E, 0x29, 0x54, 0x28, 0x31, 0xC8, 0x05, 0x99, 0xFE, 0x9F, 0xF7, 0x3C, 0x1E, 0x1E, 0x3C, +0xE4, 0xFE, 0x8A, 0x01, 0x03, 0xB3, 0x5E, 0x8F, 0x46, 0x6F, 0x02, 0x01, 0x97, 0xF6, 0x3C, 0x1D, +0x10, 0x0F, 0x3C, 0xE1, 0x01, 0xAA, 0x2B, 0x2D, 0xFE, 0xE7, 0x01, 0x7C, 0x69, 0x00, 0x00, 0x00, +0x00, 0x02, 0x00, 0x4D, 0xFF, 0xE7, 0x03, 0xA9, 0x05, 0xB3, 0x00, 0x1A, 0x00, 0x31, 0x00, 0x32, +0x40, 0x2F, 0x2E, 0x01, 0x03, 0x04, 0x2B, 0x01, 0x00, 0x01, 0x02, 0x4C, 0x00, 0x04, 0x03, 0x04, +0x85, 0x00, 0x03, 0x00, 0x01, 0x00, 0x03, 0x01, 0x6A, 0x00, 0x00, 0x02, 0x02, 0x00, 0x59, 0x00, +0x00, 0x00, 0x02, 0x61, 0x00, 0x02, 0x00, 0x02, 0x51, 0x17, 0x26, 0x27, 0x3D, 0x16, 0x05, 0x06, +0x1B, 0x2B, 0x13, 0x14, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x33, 0x32, 0x37, 0x3E, 0x01, 0x37, 0x36, +0x35, 0x34, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x2B, 0x01, 0x0E, 0x01, 0x07, 0x06, 0x05, 0x14, 0x0E, +0x01, 0x23, 0x22, 0x2E, 0x01, 0x35, 0x34, 0x3E, 0x01, 0x33, 0x32, 0x17, 0x16, 0x17, 0x26, 0x00, +0x27, 0x35, 0x20, 0x00, 0xE8, 0x05, 0x0E, 0x5F, 0x47, 0x40, 0x40, 0x06, 0x07, 0x46, 0x73, 0x17, +0x10, 0x05, 0x0E, 0x61, 0x47, 0x41, 0x3F, 0x0B, 0x44, 0x74, 0x18, 0x10, 0x02, 0xC1, 0x71, 0xCD, +0x70, 0x70, 0xCD, 0x71, 0x74, 0xCE, 0x6C, 0x6D, 0x67, 0x1D, 0x19, 0x54, 0xFE, 0xD5, 0xB1, 0x01, +0x32, 0x01, 0xA2, 0x02, 0x19, 0x29, 0x26, 0x7A, 0xD8, 0x39, 0x35, 0x01, 0x05, 0x83, 0x72, 0x49, +0x4C, 0x2A, 0x2B, 0x7A, 0xDB, 0x38, 0x32, 0x05, 0x81, 0x72, 0x54, 0x85, 0x84, 0xEE, 0x84, 0x84, +0xEE, 0x84, 0x83, 0xF0, 0x82, 0x41, 0x12, 0x17, 0xEB, 0x01, 0x1C, 0x0D, 0x37, 0xFD, 0xC6, 0x00, +0x00, 0x02, 0x00, 0x06, 0x00, 0x00, 0x04, 0x31, 0x05, 0x9A, 0x00, 0x02, 0x00, 0x05, 0x00, 0x18, +0x40, 0x15, 0x00, 0x00, 0x01, 0x01, 0x00, 0x57, 0x00, 0x00, 0x00, 0x01, 0x5F, 0x00, 0x01, 0x00, +0x01, 0x4F, 0x12, 0x11, 0x02, 0x06, 0x18, 0x2B, 0x09, 0x01, 0x21, 0x09, 0x01, 0x21, 0x02, 0x02, +0xFE, 0x6A, 0x03, 0x21, 0xFE, 0x96, 0x02, 0x0E, 0xFB, 0xD5, 0x04, 0xAB, 0xFB, 0xD0, 0x05, 0x1F, +0xFA, 0x66, 0x00, 0x00, 0x00, 0x01, 0x00, 0x30, 0xFE, 0x5E, 0x05, 0xBB, 0x05, 0x9A, 0x00, 0x23, +0x00, 0x40, 0x40, 0x3D, 0x00, 0x05, 0x06, 0x04, 0x0A, 0x03, 0x00, 0x01, 0x05, 0x00, 0x69, 0x09, +0x07, 0x03, 0x03, 0x01, 0x02, 0x02, 0x01, 0x59, 0x09, 0x07, 0x03, 0x03, 0x01, 0x01, 0x02, 0x5F, +0x08, 0x01, 0x02, 0x01, 0x02, 0x4F, 0x01, 0x00, 0x1F, 0x1D, 0x1C, 0x1B, 0x1A, 0x18, 0x15, 0x13, +0x12, 0x11, 0x10, 0x0E, 0x0B, 0x09, 0x08, 0x07, 0x06, 0x04, 0x00, 0x23, 0x01, 0x22, 0x0B, 0x06, +0x16, 0x2B, 0x01, 0x22, 0x15, 0x11, 0x14, 0x3B, 0x01, 0x15, 0x21, 0x35, 0x33, 0x32, 0x35, 0x11, +0x34, 0x2B, 0x01, 0x35, 0x21, 0x15, 0x23, 0x22, 0x15, 0x11, 0x14, 0x3B, 0x01, 0x15, 0x21, 0x35, +0x33, 0x32, 0x35, 0x11, 0x34, 0x23, 0x01, 0xFF, 0x66, 0x66, 0x61, 0xFD, 0xD0, 0x60, 0x67, 0x67, +0x60, 0x05, 0x8B, 0x61, 0x66, 0x66, 0x61, 0xFD, 0xD0, 0x60, 0x67, 0x67, 0x05, 0x68, 0xEB, 0xFA, +0xFF, 0xEB, 0x33, 0x33, 0xEB, 0x05, 0x01, 0xEB, 0x32, 0x32, 0xEB, 0xFA, 0xFF, 0xEB, 0x32, 0x32, +0xEB, 0x05, 0x01, 0xEB, 0x00, 0x01, 0x00, 0x78, 0xFE, 0x60, 0x04, 0x78, 0x05, 0x9A, 0x00, 0x15, +0x00, 0x3E, 0x40, 0x3B, 0x0B, 0x01, 0x01, 0x06, 0x01, 0x4C, 0x00, 0x06, 0x04, 0x01, 0x04, 0x06, +0x01, 0x80, 0x00, 0x01, 0x00, 0x04, 0x01, 0x00, 0x7E, 0x00, 0x05, 0x07, 0x01, 0x04, 0x06, 0x05, +0x04, 0x69, 0x03, 0x01, 0x00, 0x02, 0x02, 0x00, 0x59, 0x03, 0x01, 0x00, 0x00, 0x02, 0x5F, 0x00, +0x02, 0x00, 0x02, 0x4F, 0x21, 0x11, 0x11, 0x14, 0x11, 0x11, 0x11, 0x21, 0x08, 0x06, 0x1E, 0x2B, +0x09, 0x01, 0x21, 0x32, 0x37, 0x33, 0x07, 0x21, 0x35, 0x32, 0x37, 0x09, 0x01, 0x26, 0x23, 0x35, +0x21, 0x17, 0x23, 0x26, 0x23, 0x21, 0x04, 0x23, 0xFC, 0xEC, 0x02, 0x7B, 0x82, 0x3B, 0x31, 0x67, +0xFC, 0x67, 0x3E, 0x2C, 0x02, 0x97, 0xFD, 0x69, 0x2C, 0x3E, 0x03, 0x99, 0x67, 0x31, 0x3B, 0x82, +0xFE, 0x1B, 0x02, 0x24, 0xFC, 0x6E, 0xB6, 0xE8, 0x32, 0x35, 0x03, 0x0D, 0x03, 0x5B, 0x39, 0x32, +0xE8, 0xB6, 0x00, 0x00, 0x00, 0x01, 0x00, 0x57, 0x02, 0x87, 0x03, 0x9F, 0x03, 0x13, 0x00, 0x04, +0x00, 0x1E, 0x40, 0x1B, 0x00, 0x00, 0x01, 0x01, 0x00, 0x57, 0x00, 0x00, 0x00, 0x01, 0x5F, 0x02, +0x01, 0x01, 0x00, 0x01, 0x4F, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x11, 0x03, 0x07, 0x17, 0x2B, +0x13, 0x35, 0x21, 0x17, 0x15, 0x57, 0x03, 0x47, 0x01, 0x02, 0x87, 0x8C, 0x01, 0x8B, 0x00, 0x00, +0x00, 0x01, 0x00, 0x11, 0x00, 0x00, 0x04, 0x1E, 0x06, 0x8F, 0x00, 0x07, 0x00, 0x1E, 0x40, 0x1B, +0x03, 0x02, 0x01, 0x03, 0x01, 0x49, 0x00, 0x00, 0x01, 0x01, 0x00, 0x57, 0x00, 0x00, 0x00, 0x01, +0x5F, 0x00, 0x01, 0x00, 0x01, 0x4F, 0x11, 0x14, 0x02, 0x06, 0x18, 0x2B, 0x33, 0x03, 0x37, 0x17, +0x01, 0x33, 0x15, 0x23, 0xB5, 0xA4, 0x4A, 0x55, 0x02, 0xD8, 0x96, 0x48, 0x01, 0x67, 0x23, 0xB9, +0x05, 0xBE, 0x3C, 0x00, 0x00, 0x03, 0x00, 0x42, 0x01, 0x60, 0x03, 0xB7, 0x04, 0x3A, 0x00, 0x15, +0x00, 0x21, 0x00, 0x2D, 0x00, 0x3C, 0x40, 0x39, 0x0A, 0x01, 0x07, 0x06, 0x01, 0x4C, 0x00, 0x02, +0x00, 0x05, 0x06, 0x02, 0x05, 0x69, 0x00, 0x01, 0x00, 0x06, 0x07, 0x01, 0x06, 0x69, 0x00, 0x04, +0x00, 0x03, 0x04, 0x59, 0x00, 0x07, 0x00, 0x00, 0x03, 0x07, 0x00, 0x69, 0x00, 0x04, 0x04, 0x03, +0x61, 0x00, 0x03, 0x04, 0x03, 0x51, 0x24, 0x24, 0x24, 0x24, 0x24, 0x23, 0x24, 0x21, 0x08, 0x06, +0x1E, 0x2B, 0x01, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, 0x3E, 0x01, 0x33, +0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x35, 0x2E, +0x01, 0x23, 0x22, 0x06, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x1E, 0x01, 0x33, 0x32, 0x36, +0x01, 0xC2, 0x3F, 0x7A, 0x52, 0x75, 0x75, 0x52, 0x84, 0x35, 0x13, 0x8A, 0x57, 0x6B, 0x96, 0xA0, +0x61, 0x43, 0x8C, 0x15, 0x0C, 0x97, 0x36, 0x51, 0xA8, 0x02, 0x70, 0x59, 0x52, 0x95, 0x3B, 0x0F, +0x55, 0x3A, 0x52, 0x77, 0x02, 0x56, 0x48, 0x42, 0x65, 0x02, 0x5F, 0xC2, 0xA7, 0x89, 0x7E, 0xB2, +0xC2, 0x6C, 0x93, 0xD2, 0x9B, 0x9B, 0xD2, 0x76, 0xD9, 0x60, 0x69, 0x9F, 0x68, 0x5B, 0x6E, 0x6D, +0x56, 0x53, 0x48, 0x89, 0x54, 0x42, 0x64, 0x5A, 0x00, 0x01, 0xFF, 0xB8, 0xFE, 0xE7, 0x02, 0xD5, +0x06, 0xB4, 0x00, 0x1E, 0x00, 0x77, 0xB6, 0x1B, 0x0C, 0x02, 0x01, 0x04, 0x01, 0x4C, 0x4B, 0xB0, +0x1E, 0x50, 0x58, 0x40, 0x26, 0x00, 0x04, 0x05, 0x01, 0x05, 0x04, 0x72, 0x00, 0x01, 0x02, 0x02, +0x01, 0x70, 0x00, 0x03, 0x00, 0x05, 0x04, 0x03, 0x05, 0x69, 0x00, 0x02, 0x00, 0x00, 0x02, 0x59, +0x00, 0x02, 0x02, 0x00, 0x62, 0x06, 0x01, 0x00, 0x02, 0x00, 0x52, 0x1B, 0x40, 0x28, 0x00, 0x04, +0x05, 0x01, 0x05, 0x04, 0x01, 0x80, 0x00, 0x01, 0x02, 0x05, 0x01, 0x02, 0x7E, 0x00, 0x03, 0x00, +0x05, 0x04, 0x03, 0x05, 0x69, 0x00, 0x02, 0x00, 0x00, 0x02, 0x59, 0x00, 0x02, 0x02, 0x00, 0x62, +0x06, 0x01, 0x00, 0x02, 0x00, 0x52, 0x59, 0x40, 0x13, 0x01, 0x00, 0x19, 0x17, 0x15, 0x14, 0x12, +0x10, 0x09, 0x06, 0x04, 0x03, 0x00, 0x1E, 0x01, 0x1E, 0x07, 0x06, 0x16, 0x2B, 0x03, 0x22, 0x3D, +0x01, 0x33, 0x1E, 0x01, 0x3B, 0x01, 0x32, 0x37, 0x36, 0x37, 0x13, 0x37, 0x36, 0x12, 0x33, 0x32, +0x1D, 0x01, 0x23, 0x2E, 0x01, 0x23, 0x22, 0x02, 0x07, 0x03, 0x06, 0x02, 0x0C, 0x3C, 0x24, 0x01, +0x43, 0x1E, 0x01, 0x52, 0x21, 0x20, 0x08, 0x46, 0x08, 0x1B, 0xD8, 0x7E, 0x3C, 0x24, 0x01, 0x44, +0x1D, 0x47, 0x5A, 0x04, 0x49, 0x14, 0xDD, 0xFE, 0xE7, 0x1D, 0x9F, 0x2B, 0x2B, 0xA2, 0xA2, 0x9A, +0x02, 0xDE, 0x3E, 0xEE, 0x01, 0x7F, 0x1D, 0x9F, 0x2B, 0x2B, 0xFE, 0xC9, 0xD0, 0xFD, 0x01, 0xE7, +0xFE, 0x86, 0x00, 0x00, 0x00, 0x02, 0x00, 0x5E, 0x01, 0x7F, 0x03, 0x9B, 0x04, 0x1D, 0x00, 0x13, +0x00, 0x27, 0x00, 0x4F, 0x40, 0x4C, 0x0B, 0x01, 0x02, 0x01, 0x03, 0x14, 0x0A, 0x02, 0x06, 0x00, +0x1F, 0x15, 0x02, 0x05, 0x07, 0x03, 0x4C, 0x00, 0x01, 0x02, 0x4A, 0x1E, 0x01, 0x04, 0x49, 0x00, +0x02, 0x00, 0x01, 0x00, 0x02, 0x01, 0x69, 0x00, 0x03, 0x00, 0x00, 0x06, 0x03, 0x00, 0x69, 0x00, +0x07, 0x05, 0x04, 0x07, 0x59, 0x00, 0x06, 0x00, 0x05, 0x04, 0x06, 0x05, 0x69, 0x00, 0x07, 0x07, +0x04, 0x61, 0x00, 0x04, 0x07, 0x04, 0x51, 0x21, 0x25, 0x21, 0x25, 0x21, 0x25, 0x21, 0x23, 0x08, +0x06, 0x1E, 0x2B, 0x01, 0x15, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x23, 0x22, 0x06, 0x07, 0x35, 0x3E, +0x01, 0x33, 0x32, 0x16, 0x33, 0x32, 0x36, 0x13, 0x15, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x23, 0x22, +0x06, 0x07, 0x35, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x33, 0x32, 0x36, 0x03, 0x9B, 0x3F, 0x76, 0x39, +0x3C, 0xEB, 0x3B, 0x33, 0x71, 0x49, 0x40, 0x76, 0x37, 0x40, 0xEB, 0x37, 0x34, 0x71, 0x49, 0x3F, +0x76, 0x39, 0x3C, 0xEB, 0x3B, 0x33, 0x71, 0x49, 0x40, 0x76, 0x37, 0x40, 0xEB, 0x37, 0x34, 0x71, +0x04, 0x1D, 0x9C, 0x48, 0x33, 0x61, 0x38, 0x54, 0x9C, 0x49, 0x34, 0x63, 0x38, 0xFE, 0xF8, 0x9C, +0x48, 0x33, 0x61, 0x38, 0x54, 0x9C, 0x49, 0x34, 0x63, 0x38, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x57, +0x00, 0x00, 0x03, 0x9F, 0x04, 0xEA, 0x02, 0x22, 0x00, 0x1D, 0x00, 0x11, 0x01, 0x03, 0x00, 0xE2, +0x00, 0x00, 0xFD, 0x79, 0x00, 0x11, 0xB1, 0x00, 0x01, 0xB0, 0x11, 0xB0, 0x35, 0x2B, 0xB1, 0x01, +0x01, 0xB8, 0xFD, 0x79, 0xB0, 0x35, 0x2B, 0x00, 0xFF, 0xFF, 0x00, 0x57, 0x00, 0x00, 0x03, 0x9F, +0x04, 0xEA, 0x02, 0x22, 0x00, 0x1F, 0x00, 0x11, 0x01, 0x03, 0x00, 0xE2, 0x00, 0x00, 0xFD, 0x79, +0x00, 0x11, 0xB1, 0x00, 0x01, 0xB0, 0x11, 0xB0, 0x35, 0x2B, 0xB1, 0x01, 0x01, 0xB8, 0xFD, 0x79, +0xB0, 0x35, 0x2B, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x66, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x01, 0x00, 0x10, +0x00, 0x76, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x02, 0x00, 0x0E, 0x00, 0x68, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x00, 0x03, 0x00, 0x2A, 0x00, 0x76, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x00, 0x04, 0x00, 0x10, 0x00, 0x76, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x05, 0x00, 0x74, +0x00, 0xA0, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x06, 0x00, 0x10, 0x00, 0x76, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x00, 0x0A, 0x00, 0x80, 0x01, 0x14, 0x00, 0x54, 0x00, 0x79, 0x00, 0x70, +0x00, 0x65, 0x00, 0x66, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65, 0x00, 0x20, 0x00, 0xA9, 0x00, 0x20, +0x00, 0x28, 0x00, 0x79, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, +0x00, 0x6D, 0x00, 0x70, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x79, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x20, +0x00, 0x32, 0x00, 0x30, 0x00, 0x32, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x41, 0x00, 0x6C, +0x00, 0x6C, 0x00, 0x20, 0x00, 0x52, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x73, +0x00, 0x20, 0x00, 0x52, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x72, 0x00, 0x76, 0x00, 0x65, +0x00, 0x64, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, +0x00, 0x69, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, +0x00, 0x3A, 0x00, 0x56, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, +0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x30, 0x00, 0x56, 0x00, 0x65, 0x00, 0x72, +0x00, 0x73, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, +0x00, 0x30, 0x00, 0x3B, 0x00, 0x4D, 0x00, 0x61, 0x00, 0x72, 0x00, 0x63, 0x00, 0x68, 0x00, 0x20, +0x00, 0x31, 0x00, 0x37, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x32, 0x00, 0x30, 0x00, 0x32, 0x00, 0x31, +0x00, 0x3B, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x43, 0x00, 0x72, 0x00, 0x65, +0x00, 0x61, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x31, 0x00, 0x33, 0x00, 0x2E, +0x00, 0x30, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x2E, 0x00, 0x32, 0x00, 0x36, 0x00, 0x38, 0x00, 0x33, +0x00, 0x20, 0x00, 0x36, 0x00, 0x34, 0x00, 0x2D, 0x00, 0x62, 0x00, 0x69, 0x00, 0x74, 0x00, 0x54, +0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, +0x00, 0x20, 0x00, 0x77, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, +0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x75, 0x00, 0x73, 0x00, 0x69, +0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x43, +0x00, 0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, 0x31, +0x00, 0x33, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x20, 0x00, 0x66, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6D, +0x00, 0x20, 0x00, 0x48, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x2D, 0x00, 0x4C, 0x00, 0x6F, +0x00, 0x67, 0x00, 0x69, 0x00, 0x63, 0x00, 0x2E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x00, +0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x27, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0xEB, 0x00, 0x00, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, +0x00, 0x09, 0x00, 0x0A, 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x0D, 0x00, 0x0E, 0x00, 0x0F, 0x00, 0x10, +0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x18, +0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, 0x00, 0x1C, 0x00, 0x1D, 0x00, 0x1E, 0x00, 0x1F, 0x00, 0x20, +0x00, 0x21, 0x00, 0x22, 0x00, 0x23, 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, +0x00, 0x29, 0x00, 0x2A, 0x00, 0x2B, 0x00, 0x2C, 0x00, 0x2D, 0x00, 0x2E, 0x00, 0x2F, 0x00, 0x30, +0x00, 0x31, 0x00, 0x32, 0x00, 0x33, 0x00, 0x34, 0x00, 0x35, 0x00, 0x36, 0x00, 0x37, 0x00, 0x38, +0x00, 0x39, 0x00, 0x3A, 0x00, 0x3B, 0x00, 0x3C, 0x00, 0x3D, 0x00, 0x3E, 0x00, 0x3F, 0x00, 0x40, +0x00, 0x41, 0x00, 0x42, 0x00, 0x43, 0x00, 0x44, 0x00, 0x45, 0x00, 0x46, 0x00, 0x47, 0x00, 0x48, +0x00, 0x49, 0x00, 0x4A, 0x00, 0x4B, 0x00, 0x4C, 0x00, 0x4D, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, +0x00, 0x51, 0x00, 0x52, 0x00, 0x53, 0x00, 0x54, 0x00, 0x55, 0x00, 0x56, 0x00, 0x57, 0x00, 0x58, +0x00, 0x59, 0x00, 0x5A, 0x00, 0x5B, 0x00, 0x5C, 0x00, 0x5D, 0x00, 0x5E, 0x00, 0x5F, 0x00, 0x60, +0x00, 0x61, 0x00, 0xA3, 0x00, 0x84, 0x00, 0x85, 0x00, 0xBD, 0x00, 0x96, 0x00, 0xE8, 0x00, 0x86, +0x00, 0x8E, 0x00, 0x8B, 0x00, 0x9D, 0x00, 0xA9, 0x00, 0xA4, 0x00, 0x8A, 0x00, 0xDA, 0x00, 0x83, +0x00, 0x93, 0x01, 0x02, 0x01, 0x03, 0x00, 0x8D, 0x00, 0x97, 0x00, 0x88, 0x00, 0xC3, 0x00, 0xDE, +0x01, 0x04, 0x00, 0x9E, 0x00, 0xAA, 0x00, 0xF5, 0x00, 0xF4, 0x00, 0xF6, 0x00, 0xA2, 0x00, 0xAD, +0x00, 0xC9, 0x00, 0xC7, 0x00, 0xAE, 0x00, 0x62, 0x00, 0x63, 0x00, 0x90, 0x00, 0x64, 0x00, 0xCB, +0x00, 0x65, 0x00, 0xC8, 0x00, 0xCA, 0x00, 0xCF, 0x00, 0xCC, 0x00, 0xCD, 0x00, 0xCE, 0x00, 0xE9, +0x00, 0x66, 0x00, 0xD3, 0x00, 0xD0, 0x00, 0xD1, 0x00, 0xAF, 0x00, 0x67, 0x00, 0xF0, 0x00, 0x91, +0x00, 0xD6, 0x00, 0xD4, 0x00, 0xD5, 0x00, 0x68, 0x00, 0xEB, 0x00, 0xED, 0x00, 0x89, 0x00, 0x6A, +0x00, 0x69, 0x00, 0x6B, 0x00, 0x6D, 0x00, 0x6C, 0x00, 0x6E, 0x00, 0xA0, 0x00, 0x6F, 0x00, 0x71, +0x00, 0x70, 0x00, 0x72, 0x00, 0x73, 0x00, 0x75, 0x00, 0x74, 0x00, 0x76, 0x00, 0x77, 0x00, 0xEA, +0x00, 0x78, 0x00, 0x7A, 0x00, 0x79, 0x00, 0x7B, 0x00, 0x7D, 0x00, 0x7C, 0x00, 0xB8, 0x00, 0xA1, +0x00, 0x7F, 0x00, 0x7E, 0x00, 0x80, 0x00, 0x81, 0x00, 0xEC, 0x00, 0xEE, 0x00, 0xBA, 0x00, 0xD7, +0x01, 0x05, 0x01, 0x06, 0x01, 0x07, 0x01, 0x08, 0x01, 0x09, 0x01, 0x0A, 0x01, 0x0B, 0x01, 0x0C, +0x01, 0x0D, 0x01, 0x0E, 0x00, 0xB2, 0x00, 0xB3, 0x00, 0xB6, 0x00, 0xB7, 0x00, 0xC4, 0x00, 0xB4, +0x00, 0xB5, 0x00, 0xC5, 0x00, 0x82, 0x00, 0xC2, 0x00, 0x87, 0x00, 0xAB, 0x00, 0xBE, 0x00, 0xBF, +0x00, 0xBC, 0x00, 0xF7, 0x01, 0x0F, 0x01, 0x10, 0x01, 0x11, 0x01, 0x12, 0x00, 0x8C, 0x00, 0x98, +0x00, 0xA8, 0x00, 0x9A, 0x00, 0x99, 0x00, 0xEF, 0x00, 0xA5, 0x00, 0x92, 0x00, 0x9C, 0x00, 0xA7, +0x00, 0x94, 0x00, 0x95, 0x01, 0x13, 0x01, 0x14, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x42, 0x32, +0x07, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x42, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x42, 0x39, +0x09, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x09, 0x61, 0x63, 0x75, 0x74, 0x65, +0x63, 0x6F, 0x6D, 0x62, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x32, 0x09, 0x74, 0x69, 0x6C, +0x64, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x34, 0x07, 0x75, +0x6E, 0x69, 0x30, 0x33, 0x30, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x38, 0x07, 0x75, +0x6E, 0x69, 0x30, 0x33, 0x30, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x43, 0x07, 0x75, +0x6E, 0x69, 0x30, 0x33, 0x32, 0x37, 0x04, 0x6C, 0x69, 0x72, 0x61, 0x06, 0x70, 0x65, 0x73, 0x65, +0x74, 0x61, 0x04, 0x45, 0x75, 0x72, 0x6F, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x31, 0x36, 0x07, +0x75, 0x6E, 0x69, 0x46, 0x42, 0x30, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x46, 0x42, 0x30, 0x32, 0x00, +0x00, 0x01, 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x0F +}; +unsigned char logo[] = +{ + 0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A, 0x00, 0x00, 0x00, 0x0D, 0x49, 0x48, 0x44, 0x52, + 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x00, 0x50, 0x08, 0x06, 0x00, 0x00, 0x00, 0x68, 0x31, 0xAC, + 0x85, 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, 0x00, 0x00, 0x0B, 0x13, 0x00, 0x00, 0x0B, + 0x13, 0x01, 0x00, 0x9A, 0x9C, 0x18, 0x00, 0x00, 0x07, 0x3B, 0x69, 0x54, 0x58, 0x74, 0x58, 0x4D, + 0x4C, 0x3A, 0x63, 0x6F, 0x6D, 0x2E, 0x61, 0x64, 0x6F, 0x62, 0x65, 0x2E, 0x78, 0x6D, 0x70, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x3C, 0x3F, 0x78, 0x70, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x20, 0x62, 0x65, + 0x67, 0x69, 0x6E, 0x3D, 0x22, 0xEF, 0xBB, 0xBF, 0x22, 0x20, 0x69, 0x64, 0x3D, 0x22, 0x57, 0x35, + 0x4D, 0x30, 0x4D, 0x70, 0x43, 0x65, 0x68, 0x69, 0x48, 0x7A, 0x72, 0x65, 0x53, 0x7A, 0x4E, 0x54, + 0x63, 0x7A, 0x6B, 0x63, 0x39, 0x64, 0x22, 0x3F, 0x3E, 0x20, 0x3C, 0x78, 0x3A, 0x78, 0x6D, 0x70, + 0x6D, 0x65, 0x74, 0x61, 0x20, 0x78, 0x6D, 0x6C, 0x6E, 0x73, 0x3A, 0x78, 0x3D, 0x22, 0x61, 0x64, + 0x6F, 0x62, 0x65, 0x3A, 0x6E, 0x73, 0x3A, 0x6D, 0x65, 0x74, 0x61, 0x2F, 0x22, 0x20, 0x78, 0x3A, + 0x78, 0x6D, 0x70, 0x74, 0x6B, 0x3D, 0x22, 0x41, 0x64, 0x6F, 0x62, 0x65, 0x20, 0x58, 0x4D, 0x50, + 0x20, 0x43, 0x6F, 0x72, 0x65, 0x20, 0x35, 0x2E, 0x36, 0x2D, 0x63, 0x31, 0x34, 0x35, 0x20, 0x37, + 0x39, 0x2E, 0x31, 0x36, 0x33, 0x34, 0x39, 0x39, 0x2C, 0x20, 0x32, 0x30, 0x31, 0x38, 0x2F, 0x30, + 0x38, 0x2F, 0x31, 0x33, 0x2D, 0x31, 0x36, 0x3A, 0x34, 0x30, 0x3A, 0x32, 0x32, 0x20, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x20, 0x22, 0x3E, 0x20, 0x3C, 0x72, 0x64, 0x66, 0x3A, 0x52, 0x44, 0x46, + 0x20, 0x78, 0x6D, 0x6C, 0x6E, 0x73, 0x3A, 0x72, 0x64, 0x66, 0x3D, 0x22, 0x68, 0x74, 0x74, 0x70, + 0x3A, 0x2F, 0x2F, 0x77, 0x77, 0x77, 0x2E, 0x77, 0x33, 0x2E, 0x6F, 0x72, 0x67, 0x2F, 0x31, 0x39, + 0x39, 0x39, 0x2F, 0x30, 0x32, 0x2F, 0x32, 0x32, 0x2D, 0x72, 0x64, 0x66, 0x2D, 0x73, 0x79, 0x6E, + 0x74, 0x61, 0x78, 0x2D, 0x6E, 0x73, 0x23, 0x22, 0x3E, 0x20, 0x3C, 0x72, 0x64, 0x66, 0x3A, 0x44, + 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6F, 0x6E, 0x20, 0x72, 0x64, 0x66, 0x3A, 0x61, + 0x62, 0x6F, 0x75, 0x74, 0x3D, 0x22, 0x22, 0x20, 0x78, 0x6D, 0x6C, 0x6E, 0x73, 0x3A, 0x78, 0x6D, + 0x70, 0x3D, 0x22, 0x68, 0x74, 0x74, 0x70, 0x3A, 0x2F, 0x2F, 0x6E, 0x73, 0x2E, 0x61, 0x64, 0x6F, + 0x62, 0x65, 0x2E, 0x63, 0x6F, 0x6D, 0x2F, 0x78, 0x61, 0x70, 0x2F, 0x31, 0x2E, 0x30, 0x2F, 0x22, + 0x20, 0x78, 0x6D, 0x6C, 0x6E, 0x73, 0x3A, 0x78, 0x6D, 0x70, 0x4D, 0x4D, 0x3D, 0x22, 0x68, 0x74, + 0x74, 0x70, 0x3A, 0x2F, 0x2F, 0x6E, 0x73, 0x2E, 0x61, 0x64, 0x6F, 0x62, 0x65, 0x2E, 0x63, 0x6F, + 0x6D, 0x2F, 0x78, 0x61, 0x70, 0x2F, 0x31, 0x2E, 0x30, 0x2F, 0x6D, 0x6D, 0x2F, 0x22, 0x20, 0x78, + 0x6D, 0x6C, 0x6E, 0x73, 0x3A, 0x73, 0x74, 0x45, 0x76, 0x74, 0x3D, 0x22, 0x68, 0x74, 0x74, 0x70, + 0x3A, 0x2F, 0x2F, 0x6E, 0x73, 0x2E, 0x61, 0x64, 0x6F, 0x62, 0x65, 0x2E, 0x63, 0x6F, 0x6D, 0x2F, + 0x78, 0x61, 0x70, 0x2F, 0x31, 0x2E, 0x30, 0x2F, 0x73, 0x54, 0x79, 0x70, 0x65, 0x2F, 0x52, 0x65, + 0x73, 0x6F, 0x75, 0x72, 0x63, 0x65, 0x45, 0x76, 0x65, 0x6E, 0x74, 0x23, 0x22, 0x20, 0x78, 0x6D, + 0x6C, 0x6E, 0x73, 0x3A, 0x70, 0x68, 0x6F, 0x74, 0x6F, 0x73, 0x68, 0x6F, 0x70, 0x3D, 0x22, 0x68, + 0x74, 0x74, 0x70, 0x3A, 0x2F, 0x2F, 0x6E, 0x73, 0x2E, 0x61, 0x64, 0x6F, 0x62, 0x65, 0x2E, 0x63, + 0x6F, 0x6D, 0x2F, 0x70, 0x68, 0x6F, 0x74, 0x6F, 0x73, 0x68, 0x6F, 0x70, 0x2F, 0x31, 0x2E, 0x30, + 0x2F, 0x22, 0x20, 0x78, 0x6D, 0x6C, 0x6E, 0x73, 0x3A, 0x64, 0x63, 0x3D, 0x22, 0x68, 0x74, 0x74, + 0x70, 0x3A, 0x2F, 0x2F, 0x70, 0x75, 0x72, 0x6C, 0x2E, 0x6F, 0x72, 0x67, 0x2F, 0x64, 0x63, 0x2F, + 0x65, 0x6C, 0x65, 0x6D, 0x65, 0x6E, 0x74, 0x73, 0x2F, 0x31, 0x2E, 0x31, 0x2F, 0x22, 0x20, 0x78, + 0x6D, 0x70, 0x3A, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6F, 0x72, 0x54, 0x6F, 0x6F, 0x6C, 0x3D, 0x22, + 0x41, 0x64, 0x6F, 0x62, 0x65, 0x20, 0x50, 0x68, 0x6F, 0x74, 0x6F, 0x73, 0x68, 0x6F, 0x70, 0x20, + 0x43, 0x43, 0x20, 0x32, 0x30, 0x31, 0x39, 0x20, 0x28, 0x57, 0x69, 0x6E, 0x64, 0x6F, 0x77, 0x73, + 0x29, 0x22, 0x20, 0x78, 0x6D, 0x70, 0x3A, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x61, 0x74, + 0x65, 0x3D, 0x22, 0x32, 0x30, 0x32, 0x31, 0x2D, 0x30, 0x39, 0x2D, 0x31, 0x31, 0x54, 0x31, 0x39, + 0x3A, 0x32, 0x37, 0x3A, 0x33, 0x30, 0x2B, 0x30, 0x33, 0x3A, 0x30, 0x30, 0x22, 0x20, 0x78, 0x6D, + 0x70, 0x3A, 0x4D, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x44, 0x61, 0x74, 0x65, 0x3D, 0x22, + 0x32, 0x30, 0x32, 0x31, 0x2D, 0x30, 0x39, 0x2D, 0x31, 0x31, 0x54, 0x31, 0x39, 0x3A, 0x32, 0x37, + 0x3A, 0x33, 0x30, 0x2B, 0x30, 0x33, 0x3A, 0x30, 0x30, 0x22, 0x20, 0x78, 0x6D, 0x70, 0x3A, 0x4D, + 0x6F, 0x64, 0x69, 0x66, 0x79, 0x44, 0x61, 0x74, 0x65, 0x3D, 0x22, 0x32, 0x30, 0x32, 0x31, 0x2D, + 0x30, 0x39, 0x2D, 0x31, 0x31, 0x54, 0x31, 0x39, 0x3A, 0x32, 0x37, 0x3A, 0x33, 0x30, 0x2B, 0x30, + 0x33, 0x3A, 0x30, 0x30, 0x22, 0x20, 0x78, 0x6D, 0x70, 0x4D, 0x4D, 0x3A, 0x49, 0x6E, 0x73, 0x74, + 0x61, 0x6E, 0x63, 0x65, 0x49, 0x44, 0x3D, 0x22, 0x78, 0x6D, 0x70, 0x2E, 0x69, 0x69, 0x64, 0x3A, + 0x31, 0x64, 0x38, 0x37, 0x65, 0x61, 0x30, 0x37, 0x2D, 0x64, 0x63, 0x30, 0x33, 0x2D, 0x37, 0x66, + 0x34, 0x35, 0x2D, 0x61, 0x39, 0x39, 0x65, 0x2D, 0x66, 0x63, 0x38, 0x33, 0x30, 0x31, 0x66, 0x30, + 0x65, 0x63, 0x32, 0x36, 0x22, 0x20, 0x78, 0x6D, 0x70, 0x4D, 0x4D, 0x3A, 0x44, 0x6F, 0x63, 0x75, + 0x6D, 0x65, 0x6E, 0x74, 0x49, 0x44, 0x3D, 0x22, 0x61, 0x64, 0x6F, 0x62, 0x65, 0x3A, 0x64, 0x6F, + 0x63, 0x69, 0x64, 0x3A, 0x70, 0x68, 0x6F, 0x74, 0x6F, 0x73, 0x68, 0x6F, 0x70, 0x3A, 0x39, 0x62, + 0x35, 0x38, 0x61, 0x65, 0x30, 0x30, 0x2D, 0x30, 0x36, 0x63, 0x31, 0x2D, 0x31, 0x35, 0x34, 0x63, + 0x2D, 0x61, 0x37, 0x66, 0x66, 0x2D, 0x35, 0x34, 0x32, 0x64, 0x35, 0x31, 0x62, 0x31, 0x65, 0x39, + 0x30, 0x30, 0x22, 0x20, 0x78, 0x6D, 0x70, 0x4D, 0x4D, 0x3A, 0x4F, 0x72, 0x69, 0x67, 0x69, 0x6E, + 0x61, 0x6C, 0x44, 0x6F, 0x63, 0x75, 0x6D, 0x65, 0x6E, 0x74, 0x49, 0x44, 0x3D, 0x22, 0x78, 0x6D, + 0x70, 0x2E, 0x64, 0x69, 0x64, 0x3A, 0x34, 0x65, 0x39, 0x66, 0x64, 0x36, 0x31, 0x62, 0x2D, 0x31, + 0x61, 0x65, 0x35, 0x2D, 0x38, 0x62, 0x34, 0x39, 0x2D, 0x39, 0x30, 0x33, 0x37, 0x2D, 0x66, 0x31, + 0x63, 0x64, 0x35, 0x38, 0x61, 0x36, 0x63, 0x34, 0x33, 0x61, 0x22, 0x20, 0x70, 0x68, 0x6F, 0x74, + 0x6F, 0x73, 0x68, 0x6F, 0x70, 0x3A, 0x43, 0x6F, 0x6C, 0x6F, 0x72, 0x4D, 0x6F, 0x64, 0x65, 0x3D, + 0x22, 0x33, 0x22, 0x20, 0x64, 0x63, 0x3A, 0x66, 0x6F, 0x72, 0x6D, 0x61, 0x74, 0x3D, 0x22, 0x69, + 0x6D, 0x61, 0x67, 0x65, 0x2F, 0x70, 0x6E, 0x67, 0x22, 0x3E, 0x20, 0x3C, 0x78, 0x6D, 0x70, 0x4D, + 0x4D, 0x3A, 0x48, 0x69, 0x73, 0x74, 0x6F, 0x72, 0x79, 0x3E, 0x20, 0x3C, 0x72, 0x64, 0x66, 0x3A, + 0x53, 0x65, 0x71, 0x3E, 0x20, 0x3C, 0x72, 0x64, 0x66, 0x3A, 0x6C, 0x69, 0x20, 0x73, 0x74, 0x45, + 0x76, 0x74, 0x3A, 0x61, 0x63, 0x74, 0x69, 0x6F, 0x6E, 0x3D, 0x22, 0x63, 0x72, 0x65, 0x61, 0x74, + 0x65, 0x64, 0x22, 0x20, 0x73, 0x74, 0x45, 0x76, 0x74, 0x3A, 0x69, 0x6E, 0x73, 0x74, 0x61, 0x6E, + 0x63, 0x65, 0x49, 0x44, 0x3D, 0x22, 0x78, 0x6D, 0x70, 0x2E, 0x69, 0x69, 0x64, 0x3A, 0x34, 0x65, + 0x39, 0x66, 0x64, 0x36, 0x31, 0x62, 0x2D, 0x31, 0x61, 0x65, 0x35, 0x2D, 0x38, 0x62, 0x34, 0x39, + 0x2D, 0x39, 0x30, 0x33, 0x37, 0x2D, 0x66, 0x31, 0x63, 0x64, 0x35, 0x38, 0x61, 0x36, 0x63, 0x34, + 0x33, 0x61, 0x22, 0x20, 0x73, 0x74, 0x45, 0x76, 0x74, 0x3A, 0x77, 0x68, 0x65, 0x6E, 0x3D, 0x22, + 0x32, 0x30, 0x32, 0x31, 0x2D, 0x30, 0x39, 0x2D, 0x31, 0x31, 0x54, 0x31, 0x39, 0x3A, 0x32, 0x37, + 0x3A, 0x33, 0x30, 0x2B, 0x30, 0x33, 0x3A, 0x30, 0x30, 0x22, 0x20, 0x73, 0x74, 0x45, 0x76, 0x74, + 0x3A, 0x73, 0x6F, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x41, 0x67, 0x65, 0x6E, 0x74, 0x3D, 0x22, + 0x41, 0x64, 0x6F, 0x62, 0x65, 0x20, 0x50, 0x68, 0x6F, 0x74, 0x6F, 0x73, 0x68, 0x6F, 0x70, 0x20, + 0x43, 0x43, 0x20, 0x32, 0x30, 0x31, 0x39, 0x20, 0x28, 0x57, 0x69, 0x6E, 0x64, 0x6F, 0x77, 0x73, + 0x29, 0x22, 0x2F, 0x3E, 0x20, 0x3C, 0x72, 0x64, 0x66, 0x3A, 0x6C, 0x69, 0x20, 0x73, 0x74, 0x45, + 0x76, 0x74, 0x3A, 0x61, 0x63, 0x74, 0x69, 0x6F, 0x6E, 0x3D, 0x22, 0x73, 0x61, 0x76, 0x65, 0x64, + 0x22, 0x20, 0x73, 0x74, 0x45, 0x76, 0x74, 0x3A, 0x69, 0x6E, 0x73, 0x74, 0x61, 0x6E, 0x63, 0x65, + 0x49, 0x44, 0x3D, 0x22, 0x78, 0x6D, 0x70, 0x2E, 0x69, 0x69, 0x64, 0x3A, 0x31, 0x64, 0x38, 0x37, + 0x65, 0x61, 0x30, 0x37, 0x2D, 0x64, 0x63, 0x30, 0x33, 0x2D, 0x37, 0x66, 0x34, 0x35, 0x2D, 0x61, + 0x39, 0x39, 0x65, 0x2D, 0x66, 0x63, 0x38, 0x33, 0x30, 0x31, 0x66, 0x30, 0x65, 0x63, 0x32, 0x36, + 0x22, 0x20, 0x73, 0x74, 0x45, 0x76, 0x74, 0x3A, 0x77, 0x68, 0x65, 0x6E, 0x3D, 0x22, 0x32, 0x30, + 0x32, 0x31, 0x2D, 0x30, 0x39, 0x2D, 0x31, 0x31, 0x54, 0x31, 0x39, 0x3A, 0x32, 0x37, 0x3A, 0x33, + 0x30, 0x2B, 0x30, 0x33, 0x3A, 0x30, 0x30, 0x22, 0x20, 0x73, 0x74, 0x45, 0x76, 0x74, 0x3A, 0x73, + 0x6F, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x41, 0x67, 0x65, 0x6E, 0x74, 0x3D, 0x22, 0x41, 0x64, + 0x6F, 0x62, 0x65, 0x20, 0x50, 0x68, 0x6F, 0x74, 0x6F, 0x73, 0x68, 0x6F, 0x70, 0x20, 0x43, 0x43, + 0x20, 0x32, 0x30, 0x31, 0x39, 0x20, 0x28, 0x57, 0x69, 0x6E, 0x64, 0x6F, 0x77, 0x73, 0x29, 0x22, + 0x20, 0x73, 0x74, 0x45, 0x76, 0x74, 0x3A, 0x63, 0x68, 0x61, 0x6E, 0x67, 0x65, 0x64, 0x3D, 0x22, + 0x2F, 0x22, 0x2F, 0x3E, 0x20, 0x3C, 0x2F, 0x72, 0x64, 0x66, 0x3A, 0x53, 0x65, 0x71, 0x3E, 0x20, + 0x3C, 0x2F, 0x78, 0x6D, 0x70, 0x4D, 0x4D, 0x3A, 0x48, 0x69, 0x73, 0x74, 0x6F, 0x72, 0x79, 0x3E, + 0x20, 0x3C, 0x70, 0x68, 0x6F, 0x74, 0x6F, 0x73, 0x68, 0x6F, 0x70, 0x3A, 0x54, 0x65, 0x78, 0x74, + 0x4C, 0x61, 0x79, 0x65, 0x72, 0x73, 0x3E, 0x20, 0x3C, 0x72, 0x64, 0x66, 0x3A, 0x42, 0x61, 0x67, + 0x3E, 0x20, 0x3C, 0x72, 0x64, 0x66, 0x3A, 0x6C, 0x69, 0x20, 0x70, 0x68, 0x6F, 0x74, 0x6F, 0x73, + 0x68, 0x6F, 0x70, 0x3A, 0x4C, 0x61, 0x79, 0x65, 0x72, 0x4E, 0x61, 0x6D, 0x65, 0x3D, 0x22, 0x45, + 0x56, 0x4F, 0x4C, 0x55, 0x54, 0x49, 0x4F, 0x4E, 0x22, 0x20, 0x70, 0x68, 0x6F, 0x74, 0x6F, 0x73, + 0x68, 0x6F, 0x70, 0x3A, 0x4C, 0x61, 0x79, 0x65, 0x72, 0x54, 0x65, 0x78, 0x74, 0x3D, 0x22, 0x45, + 0x56, 0x4F, 0x4C, 0x55, 0x54, 0x49, 0x4F, 0x4E, 0x22, 0x2F, 0x3E, 0x20, 0x3C, 0x2F, 0x72, 0x64, + 0x66, 0x3A, 0x42, 0x61, 0x67, 0x3E, 0x20, 0x3C, 0x2F, 0x70, 0x68, 0x6F, 0x74, 0x6F, 0x73, 0x68, + 0x6F, 0x70, 0x3A, 0x54, 0x65, 0x78, 0x74, 0x4C, 0x61, 0x79, 0x65, 0x72, 0x73, 0x3E, 0x20, 0x3C, + 0x70, 0x68, 0x6F, 0x74, 0x6F, 0x73, 0x68, 0x6F, 0x70, 0x3A, 0x44, 0x6F, 0x63, 0x75, 0x6D, 0x65, + 0x6E, 0x74, 0x41, 0x6E, 0x63, 0x65, 0x73, 0x74, 0x6F, 0x72, 0x73, 0x3E, 0x20, 0x3C, 0x72, 0x64, + 0x66, 0x3A, 0x42, 0x61, 0x67, 0x3E, 0x20, 0x3C, 0x72, 0x64, 0x66, 0x3A, 0x6C, 0x69, 0x3E, 0x61, + 0x64, 0x6F, 0x62, 0x65, 0x3A, 0x64, 0x6F, 0x63, 0x69, 0x64, 0x3A, 0x70, 0x68, 0x6F, 0x74, 0x6F, + 0x73, 0x68, 0x6F, 0x70, 0x3A, 0x35, 0x65, 0x35, 0x61, 0x66, 0x64, 0x61, 0x38, 0x2D, 0x38, 0x34, + 0x30, 0x36, 0x2D, 0x33, 0x36, 0x34, 0x61, 0x2D, 0x62, 0x30, 0x61, 0x32, 0x2D, 0x66, 0x32, 0x34, + 0x64, 0x33, 0x32, 0x64, 0x31, 0x36, 0x63, 0x35, 0x65, 0x3C, 0x2F, 0x72, 0x64, 0x66, 0x3A, 0x6C, + 0x69, 0x3E, 0x20, 0x3C, 0x72, 0x64, 0x66, 0x3A, 0x6C, 0x69, 0x3E, 0x78, 0x6D, 0x70, 0x2E, 0x64, + 0x69, 0x64, 0x3A, 0x63, 0x62, 0x65, 0x64, 0x34, 0x64, 0x38, 0x38, 0x2D, 0x34, 0x63, 0x63, 0x63, + 0x2D, 0x66, 0x37, 0x34, 0x38, 0x2D, 0x62, 0x63, 0x66, 0x39, 0x2D, 0x38, 0x66, 0x32, 0x61, 0x37, + 0x38, 0x61, 0x64, 0x36, 0x30, 0x66, 0x33, 0x3C, 0x2F, 0x72, 0x64, 0x66, 0x3A, 0x6C, 0x69, 0x3E, + 0x20, 0x3C, 0x2F, 0x72, 0x64, 0x66, 0x3A, 0x42, 0x61, 0x67, 0x3E, 0x20, 0x3C, 0x2F, 0x70, 0x68, + 0x6F, 0x74, 0x6F, 0x73, 0x68, 0x6F, 0x70, 0x3A, 0x44, 0x6F, 0x63, 0x75, 0x6D, 0x65, 0x6E, 0x74, + 0x41, 0x6E, 0x63, 0x65, 0x73, 0x74, 0x6F, 0x72, 0x73, 0x3E, 0x20, 0x3C, 0x2F, 0x72, 0x64, 0x66, + 0x3A, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6F, 0x6E, 0x3E, 0x20, 0x3C, 0x2F, + 0x72, 0x64, 0x66, 0x3A, 0x52, 0x44, 0x46, 0x3E, 0x20, 0x3C, 0x2F, 0x78, 0x3A, 0x78, 0x6D, 0x70, + 0x6D, 0x65, 0x74, 0x61, 0x3E, 0x20, 0x3C, 0x3F, 0x78, 0x70, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x20, + 0x65, 0x6E, 0x64, 0x3D, 0x22, 0x72, 0x22, 0x3F, 0x3E, 0xC4, 0x24, 0x71, 0x6E, 0x00, 0x00, 0x0E, + 0xBF, 0x49, 0x44, 0x41, 0x54, 0x78, 0x9C, 0xED, 0x9D, 0x79, 0xAC, 0x64, 0x45, 0xBD, 0xC7, 0x3F, + 0x67, 0x06, 0x1F, 0x51, 0x89, 0x2F, 0x23, 0xC1, 0x8D, 0xC4, 0x3F, 0x2E, 0xB2, 0xA8, 0x51, 0xD1, + 0x4B, 0x5C, 0x82, 0x22, 0x90, 0x3B, 0x31, 0xE6, 0x11, 0xDF, 0x8B, 0xE1, 0x0E, 0xB8, 0x25, 0xAE, + 0x0C, 0x8A, 0x80, 0x1A, 0x70, 0x2E, 0xC6, 0xB0, 0xC8, 0x33, 0x8F, 0xAB, 0xF8, 0x12, 0xDE, 0xE3, + 0x09, 0x33, 0x3C, 0x35, 0x2E, 0x28, 0xCC, 0x38, 0x71, 0xC3, 0xC4, 0xC8, 0x55, 0x70, 0x9B, 0x3F, + 0x74, 0x2E, 0xB8, 0x8F, 0x0A, 0x73, 0x35, 0x11, 0x89, 0x46, 0xCD, 0x15, 0x37, 0x88, 0xE8, 0x7C, + 0xFD, 0xE3, 0x54, 0xCF, 0x54, 0xD7, 0xA9, 0xD3, 0x7D, 0x4E, 0x9F, 0xD3, 0x67, 0x99, 0xFE, 0x7D, + 0x92, 0x7B, 0xBB, 0xBB, 0xB6, 0xAE, 0xEE, 0x3A, 0xE7, 0xDB, 0xF5, 0xAB, 0xFA, 0x55, 0x55, 0x22, + 0x09, 0xC3, 0x30, 0x8C, 0x59, 0x64, 0x43, 0xDB, 0x15, 0x30, 0x0C, 0xC3, 0x68, 0x0B, 0x13, 0x40, + 0xC3, 0x30, 0x66, 0x16, 0x13, 0x40, 0xC3, 0x30, 0x66, 0x16, 0x13, 0x40, 0xC3, 0x30, 0x66, 0x16, + 0x13, 0x40, 0xC3, 0x30, 0x66, 0x16, 0x13, 0x40, 0xC3, 0x30, 0x66, 0x16, 0x13, 0x40, 0xC3, 0x30, + 0x66, 0x16, 0x13, 0x40, 0xC3, 0x30, 0x66, 0x16, 0x13, 0x40, 0xC3, 0x30, 0x66, 0x96, 0x23, 0x9A, + 0x7A, 0xA3, 0x77, 0xDC, 0x78, 0x60, 0xE8, 0xB5, 0x0E, 0xFE, 0xF3, 0x5E, 0xBB, 0x27, 0xFE, 0xDA, + 0x94, 0xC1, 0x42, 0x15, 0x3F, 0xBD, 0x82, 0xB8, 0x58, 0x3A, 0xC1, 0x59, 0xC0, 0xAB, 0x24, 0xB6, + 0x02, 0x7F, 0xF4, 0xC2, 0x87, 0xD3, 0x67, 0xF3, 0x95, 0x8B, 0xF7, 0xC2, 0x3F, 0x79, 0x99, 0xFD, + 0x9E, 0x18, 0x46, 0x9F, 0x68, 0xE5, 0x8E, 0x6D, 0x40, 0xFC, 0x06, 0xE1, 0xE7, 0x02, 0xF7, 0x0A, + 0xAE, 0x46, 0x6C, 0x98, 0xA6, 0xF8, 0x0D, 0x55, 0xDC, 0x30, 0x8C, 0x5E, 0xD0, 0xB8, 0x00, 0x36, + 0x28, 0x7E, 0x7F, 0x72, 0x41, 0xC7, 0x20, 0xDE, 0x2D, 0xB8, 0x07, 0xB8, 0x64, 0x5A, 0xE2, 0x67, + 0xFA, 0x67, 0x18, 0xFD, 0xA3, 0x51, 0x01, 0x6C, 0x50, 0xFC, 0x00, 0xD7, 0xE3, 0x3B, 0x14, 0x3E, + 0x27, 0xF1, 0x7E, 0x60, 0x9F, 0xC4, 0xF9, 0x23, 0xF2, 0x99, 0xF8, 0x19, 0xC6, 0x8C, 0xD0, 0x98, + 0x00, 0xD6, 0x2C, 0x7E, 0x4F, 0x96, 0x38, 0xD9, 0x4F, 0x37, 0x52, 0xA4, 0x18, 0x12, 0xB7, 0x93, + 0x80, 0x1B, 0x04, 0x77, 0x23, 0xCE, 0xA9, 0x4B, 0xFC, 0x6C, 0x53, 0x1D, 0xC3, 0xE8, 0x1F, 0xCD, + 0xF5, 0x00, 0xEB, 0x13, 0xBF, 0x77, 0x4B, 0xFC, 0x04, 0x9C, 0x78, 0x95, 0x13, 0x3F, 0x3F, 0xFE, + 0x64, 0xC1, 0x2D, 0xC0, 0x37, 0x25, 0xFE, 0xBD, 0x50, 0x7E, 0x3F, 0xDC, 0xC4, 0xCF, 0x30, 0x7A, + 0x4F, 0x3B, 0x63, 0x80, 0xEE, 0x49, 0x49, 0xF1, 0xBB, 0x08, 0xB8, 0x47, 0xE2, 0x6A, 0xE0, 0x91, + 0x82, 0x5F, 0x55, 0x10, 0x3F, 0x3F, 0xFE, 0x54, 0xE0, 0xB3, 0x12, 0x5F, 0x01, 0x5E, 0x3C, 0xA9, + 0xF8, 0x99, 0x06, 0x1A, 0x46, 0xFF, 0x68, 0x7E, 0x0C, 0xD0, 0x3D, 0x29, 0x21, 0x7E, 0xAF, 0x05, + 0xBE, 0x07, 0x5C, 0x27, 0xF1, 0x14, 0x2F, 0x5D, 0x76, 0x56, 0x37, 0x28, 0xBB, 0xE4, 0x84, 0xC7, + 0x99, 0x82, 0x3B, 0x11, 0x9F, 0x13, 0x9C, 0x92, 0x9B, 0x6F, 0x84, 0x38, 0x1A, 0x86, 0xD1, 0x2F, + 0x9A, 0x1D, 0x03, 0x74, 0x4F, 0x0A, 0x8A, 0xDF, 0x7F, 0x48, 0x7C, 0x19, 0xF8, 0x08, 0xF0, 0xCC, + 0x52, 0xE6, 0x29, 0xA5, 0xC5, 0xCF, 0x8F, 0x7F, 0x19, 0xF0, 0x1D, 0x89, 0x1B, 0x80, 0x13, 0x8B, + 0x8A, 0x9F, 0xE9, 0x9F, 0x61, 0xF4, 0x8F, 0x66, 0x4D, 0xE0, 0x62, 0xE2, 0xB7, 0x19, 0xD8, 0x2D, + 0xF1, 0x19, 0xD2, 0xE7, 0xE5, 0xC6, 0xE6, 0xA8, 0x24, 0x7E, 0x7E, 0xF8, 0xF9, 0x82, 0x1F, 0x22, + 0xDE, 0x27, 0x38, 0xD6, 0xC4, 0xCF, 0x30, 0x0E, 0x3F, 0x1A, 0x9D, 0x04, 0x19, 0x23, 0x7E, 0x2F, + 0x12, 0x7C, 0x0A, 0xF8, 0xB2, 0xC4, 0xCB, 0xF3, 0xD2, 0x35, 0x24, 0x7E, 0x83, 0xF0, 0x23, 0x04, + 0x97, 0x22, 0x7E, 0x2C, 0xB8, 0x02, 0x38, 0x7A, 0x5C, 0x3E, 0xC3, 0x30, 0xFA, 0x43, 0xF3, 0x26, + 0x30, 0x19, 0x91, 0x79, 0x16, 0x70, 0x93, 0xE0, 0xEB, 0xC0, 0xB9, 0x25, 0xFC, 0xFC, 0xA6, 0x2D, + 0x7E, 0xFE, 0xE3, 0x63, 0x80, 0x2B, 0x25, 0xF6, 0x01, 0x97, 0x08, 0x36, 0x9A, 0xF8, 0x19, 0x46, + 0xFF, 0x69, 0x7E, 0x16, 0xF8, 0x90, 0xC8, 0x9C, 0x88, 0xF8, 0x1F, 0xE0, 0xBB, 0x82, 0x37, 0xFA, + 0x71, 0x41, 0xBA, 0x3C, 0x91, 0x3A, 0xAA, 0x21, 0xF1, 0xF3, 0xE3, 0x8F, 0x11, 0xBC, 0x1F, 0xB1, + 0x4F, 0x70, 0x41, 0x58, 0x67, 0xC3, 0x30, 0xFA, 0x45, 0xB3, 0xB3, 0xC0, 0xA9, 0x58, 0x3C, 0x49, + 0xF0, 0x3E, 0xC4, 0x8F, 0x80, 0x0B, 0x63, 0xBD, 0xA8, 0x82, 0x22, 0x75, 0x7F, 0x45, 0xF1, 0x7B, + 0x58, 0xB0, 0x27, 0x37, 0xDF, 0x68, 0x71, 0x3C, 0x1E, 0xB8, 0x5E, 0xE2, 0x6E, 0xE0, 0x75, 0x61, + 0xFD, 0x0D, 0xC3, 0xE8, 0x07, 0xCD, 0x99, 0xC0, 0xE2, 0x89, 0xC0, 0x15, 0x82, 0x7D, 0x88, 0x4B, + 0x81, 0x8D, 0x13, 0x8A, 0xDF, 0x9D, 0x88, 0x2D, 0x82, 0x8F, 0x0E, 0x85, 0x97, 0xEF, 0xF9, 0x6D, + 0x04, 0x5E, 0x21, 0xF1, 0x62, 0xE0, 0x2B, 0x25, 0xC4, 0xCF, 0x0F, 0x3F, 0x19, 0xF8, 0xB0, 0xC4, + 0x1D, 0xC0, 0xD9, 0xA5, 0xBE, 0x10, 0xC3, 0x30, 0x5A, 0xA7, 0xB1, 0xED, 0xB0, 0x80, 0x5B, 0x04, + 0xA7, 0xE1, 0x0B, 0x0A, 0xA5, 0xC4, 0xEF, 0x5E, 0xC1, 0xF5, 0x88, 0xEB, 0x6A, 0x32, 0x7B, 0x37, + 0x48, 0x3C, 0x1E, 0xF8, 0xBA, 0x60, 0x01, 0x71, 0x91, 0xE0, 0x62, 0xC4, 0x5C, 0x41, 0xF1, 0xF3, + 0x9F, 0x9F, 0x2E, 0x38, 0x1D, 0x48, 0x0A, 0x7C, 0x0F, 0x00, 0xDB, 0x0A, 0xA6, 0x8B, 0xB1, 0x9A, + 0x24, 0xC9, 0x8A, 0xA4, 0xF3, 0x80, 0x4D, 0x41, 0xDC, 0xAE, 0x24, 0x49, 0xD6, 0xCA, 0x14, 0x26, + 0x69, 0x11, 0x98, 0x2B, 0x5B, 0x8E, 0xA4, 0x4D, 0xC0, 0x22, 0xB0, 0xE0, 0xF2, 0xCF, 0x7B, 0xD1, + 0xEB, 0xC0, 0xEA, 0xE0, 0x2F, 0x49, 0x92, 0x5D, 0x65, 0xEA, 0xE4, 0xCA, 0x0F, 0xBF, 0xA3, 0xF5, + 0x24, 0x49, 0x76, 0x94, 0x2C, 0x63, 0xCE, 0xD5, 0xD1, 0x67, 0x35, 0x49, 0x92, 0x95, 0xBA, 0xF2, + 0x4B, 0x5A, 0x60, 0xF8, 0xB3, 0xD7, 0x42, 0x92, 0x24, 0xCB, 0xDE, 0x7B, 0xD4, 0xF1, 0x5D, 0x4C, + 0xAD, 0xBD, 0x22, 0xF5, 0x1B, 0xAA, 0xFF, 0x98, 0xBC, 0x00, 0xB1, 0x6B, 0xB9, 0x50, 0xFE, 0xAA, + 0x24, 0x6A, 0xC8, 0x76, 0xBB, 0xF0, 0xFF, 0x0E, 0x7C, 0x1F, 0xF1, 0x0C, 0x28, 0x2D, 0x7E, 0xF7, + 0x93, 0x4E, 0x92, 0x5C, 0x85, 0x0E, 0x65, 0x29, 0x20, 0x7E, 0x67, 0x00, 0x5F, 0x1D, 0x23, 0x62, + 0xA7, 0x0A, 0xF6, 0x78, 0x3D, 0xBF, 0x8D, 0x82, 0xAB, 0x80, 0x37, 0x49, 0x3C, 0x6E, 0x44, 0xBE, + 0xEC, 0x7B, 0x03, 0xBB, 0x2F, 0xDF, 0x50, 0x54, 0x00, 0xAB, 0x7C, 0xE9, 0x4B, 0x49, 0x92, 0x2C, + 0xBB, 0x8B, 0xEE, 0x9A, 0x20, 0x6E, 0x39, 0x49, 0x92, 0xA5, 0x32, 0x85, 0x49, 0xDA, 0x4F, 0x56, + 0x00, 0x1F, 0x9B, 0x24, 0xC9, 0x7A, 0x4E, 0xFA, 0x4D, 0xEE, 0x7D, 0xCF, 0x2B, 0xF1, 0x36, 0x6B, + 0xAE, 0x6E, 0x85, 0x6F, 0x5A, 0x65, 0x2F, 0xCC, 0x95, 0x24, 0x49, 0x36, 0x97, 0x78, 0xCF, 0x81, + 0x38, 0xDD, 0x1E, 0x04, 0x2F, 0x95, 0xB8, 0x39, 0xC7, 0xE6, 0xCF, 0x69, 0x87, 0xCA, 0x24, 0x49, + 0x72, 0xF0, 0x5A, 0xAA, 0xF2, 0x5D, 0x34, 0xD1, 0x5E, 0x91, 0xFA, 0x41, 0xC1, 0xEF, 0xD9, 0x65, + 0xBD, 0x9D, 0x54, 0x98, 0x7D, 0x8A, 0xDE, 0x4B, 0x95, 0x68, 0xD2, 0x0D, 0x66, 0xB0, 0x3D, 0x55, + 0xFA, 0x72, 0xBC, 0xF8, 0xFD, 0x51, 0xE2, 0x03, 0xC0, 0x53, 0x04, 0x57, 0x96, 0x14, 0xBF, 0x62, + 0xF1, 0x7E, 0x78, 0xFA, 0xF8, 0x0F, 0xD2, 0xB5, 0xC6, 0x27, 0x00, 0xD7, 0x0B, 0x1E, 0x2A, 0x2A, + 0x7E, 0x95, 0x24, 0x6D, 0x32, 0x62, 0x17, 0x67, 0xD8, 0x5B, 0x19, 0x89, 0xA4, 0x79, 0xE2, 0xBD, + 0xBF, 0x3C, 0xF1, 0x5B, 0x04, 0xF6, 0x53, 0xEE, 0x66, 0xC2, 0xBD, 0xC7, 0x76, 0x49, 0xB7, 0xBB, + 0x1B, 0xD2, 0x68, 0x80, 0x96, 0xDB, 0x6B, 0x9B, 0xEB, 0x41, 0x77, 0x9A, 0x26, 0x27, 0x41, 0x32, + 0x02, 0xE6, 0x3F, 0x0F, 0x44, 0xE8, 0x43, 0x12, 0xC7, 0x93, 0xBA, 0x9C, 0x3C, 0xD8, 0xC2, 0x6C, + 0xEF, 0x03, 0x82, 0x0B, 0x11, 0x4F, 0x15, 0xEC, 0x1C, 0x59, 0xE7, 0x20, 0x7F, 0x53, 0x38, 0x91, + 0x0A, 0x4D, 0x95, 0x39, 0x27, 0x6A, 0x45, 0x89, 0x09, 0x66, 0xD4, 0x3C, 0x74, 0x26, 0xF7, 0x4E, + 0xB2, 0xA6, 0x4A, 0x19, 0x16, 0x80, 0xBD, 0x25, 0xEB, 0x68, 0x4C, 0x40, 0x07, 0xDA, 0x6B, 0x13, + 0xB0, 0xBD, 0xC2, 0x7B, 0x37, 0x42, 0x63, 0x63, 0x80, 0x72, 0x62, 0x3B, 0x46, 0xFC, 0x76, 0x03, + 0x97, 0x49, 0xDC, 0x13, 0x84, 0x0F, 0xA7, 0x9F, 0xAE, 0xF8, 0xF9, 0xE1, 0xBF, 0x00, 0xCE, 0x91, + 0xB8, 0x16, 0xB8, 0x0E, 0x78, 0xC1, 0x94, 0xC4, 0x6F, 0x8D, 0x78, 0x8F, 0x2E, 0xC6, 0xAA, 0xF7, + 0x7C, 0x85, 0xAC, 0x88, 0x2D, 0x06, 0x69, 0x46, 0x11, 0xE6, 0x8D, 0x8E, 0x2D, 0xB9, 0x9B, 0x29, + 0xEF, 0x62, 0x5E, 0x23, 0x15, 0xE2, 0x55, 0xD2, 0xB1, 0x24, 0x48, 0xC7, 0x97, 0xE6, 0x88, 0xF7, + 0x3C, 0xE6, 0x80, 0x9D, 0x92, 0x4E, 0xC9, 0xEB, 0x69, 0xF6, 0x8C, 0x55, 0x60, 0xDC, 0xB0, 0x43, + 0x68, 0x22, 0xAF, 0x90, 0xF3, 0x43, 0x53, 0x07, 0x1D, 0x6A, 0xAF, 0x05, 0x49, 0xDB, 0x8A, 0x0E, + 0x39, 0xB4, 0x41, 0x93, 0x93, 0x20, 0x1B, 0x0A, 0x98, 0xBD, 0xAF, 0x94, 0xF8, 0x5B, 0x24, 0xBC, + 0x0D, 0xF1, 0xF3, 0xC3, 0xBF, 0x03, 0x5C, 0x2E, 0xA5, 0xE3, 0x41, 0x31, 0xF1, 0xAB, 0x28, 0x82, + 0x6B, 0x13, 0x5E, 0x24, 0xBB, 0x48, 0x6F, 0x2E, 0xFF, 0x57, 0x7E, 0x91, 0xF1, 0x37, 0x64, 0xAE, + 0xF9, 0x9B, 0x93, 0x2E, 0x76, 0x33, 0xAD, 0x93, 0x8E, 0xF3, 0xC4, 0x84, 0x7B, 0xC5, 0xE5, 0x5D, + 0x72, 0x79, 0x43, 0xA1, 0x9D, 0x23, 0xED, 0x9D, 0x94, 0x1A, 0xD3, 0xEB, 0x22, 0x6E, 0x42, 0x64, + 0xA4, 0x98, 0x49, 0xCA, 0x08, 0xE0, 0xB4, 0x44, 0xA1, 0x83, 0xED, 0xB5, 0x4D, 0x52, 0xE9, 0xC9, + 0xB9, 0xA6, 0x68, 0xD2, 0x0D, 0x26, 0xF3, 0x3C, 0x22, 0x36, 0x4F, 0xC8, 0x09, 0xCF, 0xCB, 0x97, + 0x8C, 0x89, 0xCF, 0x0F, 0x4F, 0x1F, 0x1F, 0x55, 0x24, 0x9F, 0x7B, 0xFE, 0xD8, 0x83, 0x69, 0xC2, + 0x74, 0x43, 0x11, 0xCD, 0x51, 0xD1, 0x0C, 0x8E, 0x99, 0xBF, 0xB1, 0xD9, 0xBF, 0xD8, 0x00, 0xFF, + 0x3A, 0xB0, 0x79, 0xDC, 0x20, 0x79, 0x92, 0x24, 0xEB, 0x49, 0x92, 0x6C, 0x01, 0xB6, 0x46, 0xA2, + 0x17, 0x5C, 0x4F, 0xC5, 0xA8, 0x97, 0xAE, 0xB5, 0x57, 0xA7, 0x4D, 0xE1, 0x36, 0x57, 0x82, 0xC4, + 0xC4, 0xE6, 0x88, 0x82, 0xE2, 0xF7, 0x6C, 0xA5, 0x8D, 0xB4, 0xB1, 0x82, 0xF8, 0xFD, 0x1A, 0xF8, + 0x45, 0x09, 0x57, 0x97, 0x83, 0x7E, 0x8B, 0x5D, 0x10, 0x3F, 0x8F, 0x58, 0xEF, 0xA3, 0xC8, 0x64, + 0x48, 0x98, 0x66, 0x2D, 0x74, 0x0F, 0x71, 0xB3, 0xA0, 0xE1, 0xEC, 0xDC, 0xE0, 0x66, 0x2A, 0x6A, + 0x66, 0xE3, 0x6E, 0xBC, 0x58, 0x8F, 0xA7, 0x8A, 0x3B, 0x90, 0x11, 0xD0, 0xA1, 0xF6, 0x0A, 0x7B, + 0x7B, 0x9D, 0xFD, 0xB1, 0x6B, 0x63, 0x25, 0x48, 0x59, 0xF3, 0xD3, 0x8F, 0x3F, 0x16, 0x71, 0x93, + 0xE0, 0x2E, 0xE0, 0x22, 0x89, 0xBF, 0x97, 0x2E, 0x57, 0x3C, 0x28, 0xB8, 0x0C, 0x38, 0x4E, 0xE2, + 0xDE, 0x51, 0xF9, 0x32, 0x65, 0x84, 0xE9, 0xBC, 0x88, 0xB6, 0x34, 0xD0, 0xF9, 0x6C, 0x85, 0x17, + 0xDC, 0x48, 0x01, 0x2C, 0x6A, 0xFE, 0x12, 0x1F, 0x13, 0x5A, 0x2E, 0x73, 0x33, 0x0D, 0x70, 0xEE, + 0x39, 0x61, 0x3D, 0xE7, 0xDC, 0x4C, 0xA5, 0x51, 0x0F, 0x5D, 0x69, 0xAF, 0xD8, 0x35, 0x79, 0x4D, + 0x17, 0x3D, 0x00, 0x1A, 0x37, 0x81, 0xC7, 0x88, 0x54, 0x9E, 0xAB, 0xCB, 0xE3, 0x05, 0x37, 0x20, + 0xF6, 0xEB, 0xD0, 0xBA, 0xE1, 0x9F, 0x8D, 0x29, 0x57, 0x99, 0xF0, 0xD4, 0x89, 0x7A, 0x0E, 0xB8, + 0x46, 0xE2, 0xAF, 0xA3, 0xEA, 0x93, 0x29, 0x3B, 0x4C, 0xE7, 0x45, 0xB4, 0xDB, 0x01, 0x04, 0xCA, + 0x9B, 0xC1, 0xB1, 0x1B, 0x25, 0x26, 0x80, 0x99, 0x49, 0x12, 0x8A, 0x4F, 0xD6, 0xC4, 0x88, 0xF5, + 0x2A, 0x6C, 0x46, 0xB8, 0x3E, 0xBA, 0xD2, 0x5E, 0xF3, 0x64, 0xC7, 0xA1, 0x3B, 0x69, 0x0A, 0xB7, + 0x72, 0x2A, 0xDC, 0x88, 0x1E, 0xDA, 0xD0, 0x4C, 0xB1, 0x5B, 0xA9, 0xF1, 0x41, 0xC1, 0x7E, 0xC4, + 0xF9, 0x82, 0x23, 0xBD, 0xF8, 0x0D, 0x63, 0x44, 0x75, 0xA3, 0x17, 0x7E, 0x2B, 0xE2, 0x78, 0xC1, + 0xDB, 0x80, 0x5F, 0x97, 0x30, 0x7B, 0x8B, 0x8B, 0x5F, 0xBB, 0x2A, 0x58, 0x44, 0xBC, 0x46, 0xC5, + 0xAD, 0x86, 0xBD, 0x04, 0x67, 0x4E, 0x85, 0xAC, 0x54, 0x9C, 0xB9, 0x8D, 0x99, 0xEB, 0x26, 0x80, + 0x35, 0xD0, 0xB5, 0xF6, 0x72, 0x96, 0x49, 0x98, 0x7F, 0xB1, 0x6B, 0x3D, 0xFE, 0x26, 0xDD, 0x60, + 0x54, 0xC0, 0xEC, 0xBD, 0xCF, 0x85, 0x1F, 0x2D, 0x71, 0x15, 0xF0, 0x5A, 0xC1, 0xA3, 0x0B, 0x4E, + 0x88, 0x84, 0xE1, 0x9B, 0x10, 0xDF, 0x17, 0xBC, 0x19, 0xB1, 0xA7, 0xA8, 0xB9, 0x9D, 0x49, 0x13, + 0xA6, 0xF3, 0x22, 0x6A, 0x14, 0xBF, 0x79, 0x49, 0xE1, 0x8A, 0x83, 0x90, 0xA5, 0x3C, 0x53, 0x26, + 0x49, 0x92, 0x55, 0x49, 0x6B, 0x0C, 0x9B, 0xB5, 0xD1, 0xD9, 0x60, 0x77, 0x01, 0x66, 0x96, 0xD0, + 0x45, 0x8A, 0x8D, 0x99, 0x2B, 0xA5, 0x4D, 0x29, 0x9F, 0x24, 0x49, 0xD6, 0x22, 0xF5, 0x8C, 0xDD, + 0xB8, 0x46, 0x79, 0xBA, 0xD8, 0x5E, 0x4B, 0xC0, 0xDE, 0x20, 0x6C, 0xBB, 0xA4, 0xAA, 0xC2, 0x5C, + 0x1B, 0xCD, 0xB9, 0xC1, 0x28, 0xBB, 0xF9, 0x41, 0x20, 0x42, 0x0F, 0x48, 0x1C, 0x07, 0x2C, 0x4A, + 0xBC, 0x1D, 0xF8, 0xD7, 0x5C, 0x71, 0x2B, 0x66, 0x4E, 0xDF, 0x2E, 0xF8, 0x74, 0x99, 0xB1, 0xC6, + 0x4C, 0x9A, 0x30, 0x9D, 0x17, 0x11, 0x8A, 0x5F, 0x45, 0x0D, 0xDC, 0xC4, 0xF8, 0x0B, 0x6B, 0xDC, + 0xF8, 0xC9, 0x0E, 0x86, 0x67, 0x00, 0xE7, 0x24, 0xCD, 0x47, 0x44, 0x33, 0xF6, 0x3E, 0x31, 0x01, + 0x8C, 0x79, 0xF1, 0xD7, 0x71, 0xD1, 0x86, 0x37, 0x94, 0x51, 0x0F, 0x9D, 0x6B, 0x2F, 0xF7, 0xC3, + 0xBC, 0xC4, 0xF0, 0x75, 0x39, 0x30, 0x85, 0xB7, 0xD4, 0x50, 0xB7, 0xCA, 0x34, 0xB9, 0x21, 0xEA, + 0x46, 0x18, 0x29, 0x42, 0x1B, 0x81, 0xBB, 0x24, 0xAE, 0xA4, 0xBA, 0xF8, 0x21, 0x78, 0xA0, 0x27, + 0xE2, 0x57, 0x17, 0x45, 0x27, 0x31, 0x42, 0x13, 0xA4, 0xB3, 0x3E, 0x5A, 0x46, 0xFF, 0x71, 0xFE, + 0x8E, 0xE1, 0x8F, 0x70, 0x67, 0x4C, 0xE1, 0x66, 0x97, 0xC2, 0x8D, 0x16, 0xA1, 0xA3, 0x24, 0x37, + 0xC6, 0x17, 0x8F, 0x9F, 0x96, 0x93, 0x73, 0x36, 0x4D, 0x98, 0xCE, 0x8B, 0xE8, 0xA8, 0xF8, 0xE1, + 0x44, 0x2C, 0x33, 0xE6, 0xE2, 0xBF, 0xC8, 0x31, 0x7F, 0xF3, 0x9C, 0x78, 0x63, 0xA2, 0x58, 0xC7, + 0x2C, 0x9E, 0xF5, 0xFE, 0xA6, 0x43, 0x97, 0xDB, 0x2B, 0xE6, 0x57, 0xB8, 0xBD, 0x0B, 0xB3, 0xC2, + 0xCD, 0x8D, 0x01, 0x8E, 0x13, 0xAF, 0xF2, 0xF1, 0xC7, 0xE4, 0xE6, 0x6B, 0x41, 0xFC, 0xFC, 0xF2, + 0x26, 0xA0, 0xC8, 0x72, 0xAA, 0x22, 0xE3, 0x39, 0xBB, 0x18, 0x36, 0x71, 0x37, 0x49, 0x5A, 0xF4, + 0xB6, 0x37, 0x8A, 0xF9, 0x88, 0xE5, 0x6D, 0x7D, 0x14, 0x33, 0x9F, 0x2A, 0xDD, 0x0C, 0xEE, 0x82, + 0x0F, 0xCB, 0xA8, 0x34, 0x4E, 0x65, 0x1C, 0xA4, 0xB3, 0xED, 0x35, 0xC2, 0x14, 0xBE, 0x86, 0x54, + 0x1C, 0xEB, 0x30, 0xD5, 0x27, 0xA2, 0xC9, 0xA5, 0x70, 0x75, 0x8A, 0x1F, 0xC0, 0xEA, 0x61, 0x22, + 0x7E, 0x90, 0xAE, 0xC1, 0xAD, 0x63, 0x6D, 0xE8, 0x2E, 0xB2, 0xAE, 0x06, 0x0B, 0x1C, 0x12, 0xB9, + 0x98, 0xF9, 0x1B, 0xBD, 0xF8, 0xDC, 0x9E, 0x83, 0x61, 0x70, 0xD5, 0x09, 0x8B, 0x58, 0x7E, 0x13, + 0xC0, 0x1A, 0xE8, 0x41, 0x7B, 0xED, 0x20, 0x1D, 0x92, 0xF1, 0x05, 0xF5, 0x3C, 0x17, 0xBE, 0x4A, + 0xC9, 0x9D, 0x8C, 0xEA, 0xA2, 0xD9, 0x43, 0x91, 0xEA, 0x11, 0xBF, 0x6F, 0x00, 0x67, 0x4B, 0x5C, + 0x98, 0xC9, 0xD7, 0x4F, 0xF1, 0xAB, 0x0D, 0x27, 0x66, 0xA1, 0xDF, 0xD7, 0x02, 0x94, 0x36, 0x7F, + 0xF3, 0xE2, 0xE7, 0x2A, 0x7A, 0xF4, 0xC7, 0xF2, 0xF6, 0x4D, 0x00, 0x5B, 0xEB, 0xAD, 0x14, 0xA0, + 0xB3, 0xED, 0xE5, 0xAE, 0xCD, 0x98, 0x29, 0x5C, 0xFB, 0x5E, 0x8A, 0x65, 0x68, 0xE5, 0x58, 0xCC, + 0x09, 0xC5, 0xEF, 0x2E, 0xC1, 0xAB, 0x81, 0xD3, 0x24, 0x76, 0x67, 0xF2, 0xCD, 0xB8, 0xF8, 0x79, + 0xC4, 0x6E, 0x82, 0x79, 0xB2, 0xFE, 0x5B, 0xEB, 0x05, 0x76, 0xFE, 0x8D, 0xC5, 0x6F, 0x9B, 0x64, + 0xEC, 0xC6, 0x09, 0x70, 0x19, 0x13, 0xBC, 0x32, 0x39, 0xBD, 0xEA, 0x32, 0x7E, 0x87, 0xB1, 0xB4, + 0x5D, 0x9E, 0x30, 0xEA, 0x74, 0x7B, 0xB9, 0xF6, 0x08, 0x9D, 0xAB, 0x63, 0xCB, 0xF7, 0x1A, 0xA3, + 0xF1, 0x63, 0x31, 0x27, 0x10, 0xBF, 0x1F, 0x22, 0xDE, 0xA0, 0xF4, 0x62, 0xBC, 0xB9, 0x45, 0xB3, + 0xF7, 0x6F, 0x3D, 0x10, 0xBF, 0x81, 0x03, 0x6A, 0xD8, 0x4B, 0x89, 0x5D, 0x64, 0x63, 0x57, 0x08, + 0xB8, 0x35, 0xA1, 0x99, 0xE5, 0x50, 0x94, 0xF4, 0xE8, 0x1F, 0xB1, 0x43, 0xC9, 0x72, 0x03, 0xFE, + 0x60, 0xB1, 0x75, 0xA9, 0x45, 0x05, 0xA1, 0x57, 0x3D, 0xD6, 0x9E, 0xB4, 0xD7, 0x32, 0x91, 0x36, + 0xA9, 0x58, 0xE6, 0xC4, 0xB4, 0xB3, 0x16, 0xB8, 0x98, 0xF8, 0xFD, 0x4C, 0x70, 0x1E, 0xE2, 0x19, + 0x82, 0x0F, 0xE7, 0xE6, 0x1B, 0x2D, 0x7E, 0xA3, 0xF7, 0x20, 0x0C, 0xF3, 0x7B, 0x11, 0x91, 0x9E, + 0xDF, 0xC3, 0x61, 0x19, 0x1D, 0x26, 0xFC, 0x95, 0x8E, 0x9D, 0x5B, 0x51, 0xF4, 0x97, 0x3C, 0x36, + 0x39, 0xB3, 0x28, 0x69, 0x67, 0x11, 0x21, 0xF1, 0xB6, 0x95, 0x0F, 0xD3, 0x96, 0xD9, 0x03, 0xB1, + 0x0A, 0xE1, 0xE7, 0x2C, 0xB4, 0x24, 0x4B, 0xD2, 0x76, 0xB2, 0x13, 0x00, 0x9D, 0x71, 0xE0, 0x1D, + 0x41, 0xA7, 0xDB, 0x6B, 0x84, 0x29, 0xDC, 0x0A, 0xCD, 0xAF, 0x05, 0x1E, 0x2F, 0x7E, 0xF7, 0x01, + 0x6F, 0x13, 0x3C, 0x8D, 0x74, 0xE3, 0x83, 0xFC, 0x7C, 0xF9, 0xE2, 0x77, 0x81, 0xE0, 0x7F, 0x19, + 0xB5, 0x07, 0x61, 0x98, 0xDF, 0x8B, 0x88, 0x88, 0xDF, 0xC5, 0xC0, 0xB5, 0x7E, 0x19, 0x1D, 0x27, + 0x3A, 0x0E, 0xE8, 0xB1, 0x56, 0x74, 0x81, 0xBC, 0xEB, 0x51, 0xE6, 0x6D, 0xBF, 0xBF, 0x5F, 0x52, + 0x74, 0xEB, 0x73, 0x49, 0xF3, 0x4E, 0x44, 0x62, 0x37, 0x13, 0xC0, 0x96, 0x86, 0xC4, 0x24, 0x5A, + 0x77, 0x49, 0x7B, 0x63, 0xBE, 0x68, 0xAE, 0xDE, 0x3B, 0x89, 0xF7, 0xFE, 0x9A, 0x10, 0xEC, 0x4A, + 0xF4, 0xA1, 0xBD, 0x72, 0x4C, 0xE1, 0x56, 0x68, 0xEC, 0x50, 0xA4, 0x37, 0xFE, 0xF7, 0x81, 0xBD, + 0x52, 0xDA, 0x0B, 0x19, 0x21, 0x7E, 0x57, 0x03, 0xCB, 0x82, 0xBF, 0x8C, 0x35, 0x6B, 0xE3, 0xF1, + 0x67, 0x21, 0xDE, 0x2A, 0x78, 0x09, 0x70, 0xBF, 0xC4, 0xB1, 0xC4, 0xCA, 0x08, 0xF3, 0x7B, 0x11, + 0x81, 0xF8, 0x9D, 0x23, 0xB8, 0x04, 0x38, 0xC5, 0x2F, 0x23, 0x8F, 0xCF, 0xBF, 0xA7, 0x91, 0x43, + 0x91, 0x86, 0x0E, 0xCC, 0xC9, 0x7D, 0x83, 0xF8, 0x61, 0x47, 0x03, 0x0A, 0x1F, 0x0C, 0xE4, 0x95, + 0xB7, 0x97, 0xD1, 0xE3, 0x67, 0xEB, 0x1C, 0x32, 0x0F, 0xC7, 0x99, 0x34, 0x5B, 0xC7, 0xED, 0x4D, + 0x97, 0x73, 0xD0, 0x4E, 0x51, 0x86, 0x0E, 0x0D, 0x2A, 0x70, 0x70, 0xD1, 0x60, 0x77, 0xE4, 0x79, + 0xF2, 0x7D, 0xE7, 0x76, 0xB9, 0xBD, 0xF2, 0x4A, 0x13, 0xF9, 0x2C, 0xA5, 0xBE, 0xFF, 0x49, 0x0E, + 0x45, 0x6A, 0xB2, 0xBD, 0x26, 0xAC, 0xDF, 0x26, 0xD2, 0x65, 0x72, 0x79, 0xD7, 0xE8, 0xE1, 0x75, + 0x28, 0x52, 0x41, 0xB3, 0xF7, 0x8A, 0x09, 0xC5, 0xEF, 0x34, 0xC1, 0xCD, 0x88, 0x2F, 0x38, 0xF1, + 0x43, 0xE2, 0xC7, 0xD1, 0xF7, 0x0E, 0xF3, 0x7B, 0x11, 0x5E, 0xFC, 0x89, 0xA4, 0xC7, 0x78, 0xDE, + 0x42, 0x41, 0xF1, 0xEB, 0x20, 0xA3, 0x04, 0x66, 0x92, 0x81, 0xEC, 0xCD, 0x63, 0xCA, 0x1C, 0x2C, + 0xE7, 0x1B, 0x75, 0x33, 0xAD, 0x53, 0x40, 0xFC, 0xEA, 0xC6, 0x89, 0xCD, 0xA8, 0xF7, 0x9C, 0x27, + 0xAD, 0x77, 0x9E, 0xF8, 0xAD, 0xD2, 0x21, 0xB3, 0xAD, 0x20, 0x9D, 0x6E, 0xAF, 0xAE, 0x98, 0xC2, + 0xDD, 0xD8, 0x0D, 0xE6, 0x90, 0x00, 0x3D, 0xA1, 0xA4, 0xF8, 0xBD, 0x00, 0xF8, 0x84, 0xE0, 0x6B, + 0x88, 0x57, 0x06, 0xF9, 0xB2, 0x4B, 0xEF, 0xC2, 0xFC, 0x5E, 0x84, 0x7B, 0x78, 0x22, 0xE2, 0xBD, + 0xC0, 0x3E, 0xC1, 0x39, 0x07, 0xB3, 0xF4, 0x4F, 0xFC, 0x20, 0x5F, 0xE4, 0x56, 0x26, 0x59, 0xFA, + 0xE6, 0x76, 0x0B, 0xDE, 0x4A, 0x3A, 0xC6, 0x34, 0x89, 0x29, 0xB4, 0x42, 0x81, 0x5D, 0x89, 0xA7, + 0x85, 0x57, 0xF7, 0xB2, 0xEC, 0x20, 0xAD, 0x77, 0xD7, 0xC7, 0xFE, 0x86, 0xE8, 0x43, 0x7B, 0x75, + 0xC1, 0x14, 0xEE, 0x9A, 0x1F, 0xE0, 0x51, 0x25, 0xC4, 0xEF, 0xCD, 0xC0, 0x1E, 0xC1, 0xAB, 0x6A, + 0x98, 0xED, 0x7D, 0x04, 0xF0, 0x56, 0xC4, 0x4F, 0x80, 0x77, 0xC9, 0xEB, 0x7E, 0xF7, 0x54, 0xFC, + 0x06, 0x4B, 0xE3, 0x62, 0xE3, 0x7C, 0x95, 0xDC, 0x4E, 0x5C, 0x6F, 0xEA, 0x38, 0xD2, 0x1B, 0xAB, + 0xE8, 0xEA, 0x94, 0xCD, 0x49, 0x92, 0x94, 0xDA, 0x95, 0x78, 0x1A, 0x78, 0x75, 0xDF, 0xC1, 0x78, + 0x51, 0x18, 0xD4, 0x7B, 0x6B, 0xDF, 0xC4, 0xCF, 0xA7, 0x07, 0xED, 0xB5, 0xCC, 0x4C, 0xAC, 0x04, + 0x19, 0x2F, 0x7E, 0x08, 0x6E, 0x03, 0xDE, 0x2B, 0xF1, 0xB1, 0x20, 0x3C, 0x96, 0xFF, 0x79, 0x79, + 0xA2, 0x9A, 0x29, 0x3B, 0x4C, 0xE7, 0x45, 0x28, 0xF5, 0x2D, 0xBC, 0x9C, 0xF4, 0x18, 0xCE, 0xA1, + 0xC1, 0xB9, 0x12, 0xE2, 0xB7, 0x0F, 0xB8, 0xB1, 0x70, 0x6A, 0x4F, 0x60, 0x0B, 0x0C, 0xE7, 0x4D, + 0x4C, 0x92, 0x24, 0xA7, 0x4C, 0xA9, 0xDC, 0x75, 0xD2, 0x0B, 0x77, 0xD9, 0x8D, 0xE5, 0x84, 0x7E, + 0x86, 0x6B, 0x54, 0x5C, 0xDD, 0x52, 0x64, 0x9C, 0x73, 0xC2, 0x72, 0xD7, 0x48, 0x4D, 0xAF, 0xAD, + 0xDE, 0xCE, 0xD8, 0x83, 0x71, 0xA8, 0x75, 0x22, 0x47, 0x03, 0xD4, 0xF0, 0x9E, 0x95, 0x3E, 0x4B, + 0x0D, 0xF9, 0xA7, 0xDA, 0x5E, 0x15, 0xEB, 0xB7, 0x0E, 0xE9, 0x79, 0x3B, 0x6D, 0xD0, 0xE4, 0x7E, + 0x80, 0xE9, 0x63, 0xBE, 0xF8, 0x01, 0x9C, 0x20, 0xF1, 0x51, 0xE0, 0x62, 0xC1, 0x15, 0x88, 0xDB, + 0x72, 0x7B, 0x8E, 0xF0, 0xBB, 0x1A, 0xC4, 0xEF, 0x53, 0xC0, 0xB9, 0x99, 0x31, 0x40, 0x0A, 0x8B, + 0xDF, 0xCF, 0x81, 0x9B, 0x80, 0xFF, 0x2A, 0x94, 0x3A, 0x42, 0x53, 0x93, 0x50, 0x53, 0x64, 0x9D, + 0x9C, 0x63, 0x1E, 0x7B, 0xF0, 0xD9, 0x56, 0x89, 0xF4, 0x8A, 0x7A, 0x50, 0xEF, 0x2A, 0xF4, 0xB9, + 0xBD, 0x6A, 0xA7, 0x9B, 0x7E, 0x80, 0xF0, 0x1C, 0x37, 0xA1, 0x71, 0x1B, 0xE2, 0xF4, 0x91, 0x66, + 0x31, 0x13, 0x8B, 0x1F, 0xC0, 0xF3, 0x27, 0x14, 0xBF, 0xFB, 0x80, 0xAB, 0x81, 0x93, 0xA8, 0x20, + 0x7E, 0x86, 0x61, 0xB4, 0x4B, 0x93, 0xB3, 0xC0, 0x4F, 0x76, 0x8F, 0xE9, 0x6B, 0xF7, 0x6F, 0xCC, + 0x98, 0xDF, 0xBF, 0x09, 0xEE, 0x00, 0x3E, 0x2E, 0x71, 0x72, 0x10, 0x3F, 0x74, 0x24, 0x66, 0xA6, + 0x8C, 0xB0, 0x7C, 0x2F, 0xC2, 0x8B, 0xFF, 0xCD, 0xD0, 0x6B, 0xC6, 0x8A, 0xDF, 0x1F, 0x48, 0x4D, + 0x89, 0x13, 0x81, 0xCB, 0x21, 0x3D, 0xC3, 0xD8, 0x30, 0x8C, 0x7E, 0xD2, 0x64, 0x0F, 0xF0, 0x13, + 0x25, 0xC5, 0xCF, 0x8F, 0x7F, 0x35, 0x70, 0xB7, 0x60, 0x19, 0xB9, 0xCD, 0x52, 0xD3, 0x1D, 0xA4, + 0x0F, 0x32, 0xE5, 0xB5, 0xBD, 0x07, 0x80, 0x8F, 0x00, 0x27, 0x90, 0x0E, 0x26, 0xFF, 0x35, 0xFF, + 0x63, 0x1A, 0x86, 0xD1, 0x17, 0x9A, 0xEC, 0x01, 0xBE, 0x03, 0x38, 0x49, 0xB0, 0xBB, 0xA4, 0xF8, + 0xF9, 0xF1, 0xEF, 0x14, 0xEC, 0x07, 0xB6, 0xC8, 0x6D, 0x9E, 0x9A, 0x49, 0x13, 0xE6, 0xF7, 0x22, + 0x26, 0x10, 0xBF, 0x87, 0x80, 0x9B, 0x49, 0x85, 0xEF, 0xF5, 0xC0, 0x6F, 0x0B, 0x7C, 0x54, 0xC3, + 0x30, 0x7A, 0x42, 0xD3, 0xFB, 0x01, 0xFE, 0x14, 0x71, 0xB6, 0xE0, 0xB9, 0xA4, 0xB3, 0xBD, 0x0B, + 0x2E, 0xBC, 0x88, 0xF8, 0x0D, 0xC2, 0x8F, 0x96, 0xB8, 0x15, 0x67, 0x7E, 0x4E, 0xB9, 0xE7, 0xF7, + 0x69, 0xE0, 0x35, 0x85, 0x3F, 0xA0, 0x61, 0x18, 0xBD, 0xA2, 0x2D, 0x3F, 0xC0, 0x6F, 0x4B, 0x6C, + 0x06, 0xCE, 0x10, 0xEC, 0x29, 0x21, 0x7E, 0xBE, 0x58, 0xFD, 0x4B, 0x03, 0x5B, 0x5A, 0xFD, 0x65, + 0xCC, 0xC7, 0x32, 0x0C, 0xA3, 0xC7, 0xB4, 0xBB, 0x1F, 0x20, 0xDC, 0x89, 0x38, 0x55, 0xF0, 0x32, + 0xC4, 0xBE, 0x12, 0xE2, 0xD7, 0xD4, 0x7E, 0x7E, 0x47, 0x8E, 0x4D, 0x61, 0x18, 0x46, 0x6F, 0x69, + 0x6F, 0x3F, 0x40, 0xF7, 0xCF, 0x3D, 0x7E, 0x41, 0xF0, 0x34, 0xE0, 0x02, 0x89, 0xFB, 0x33, 0xF1, + 0xB4, 0x22, 0x7E, 0x86, 0x61, 0x1C, 0xE6, 0xB4, 0xE3, 0x07, 0xE8, 0xFE, 0x45, 0x44, 0xEE, 0x83, + 0xC0, 0x71, 0x82, 0x4B, 0x11, 0x0F, 0x74, 0x40, 0xFC, 0x9E, 0x54, 0x38, 0xA5, 0x61, 0x18, 0xBD, + 0xA3, 0xDD, 0xDD, 0x60, 0xE2, 0x66, 0xF1, 0x43, 0x88, 0x6B, 0x95, 0xAE, 0x5F, 0x5C, 0x6E, 0x51, + 0xFC, 0xFE, 0x0C, 0xFC, 0x7F, 0xE1, 0xD4, 0x86, 0x61, 0xF4, 0x8E, 0xF6, 0x76, 0x83, 0x19, 0x3F, + 0xE1, 0xF1, 0x7B, 0x89, 0x25, 0xE0, 0x99, 0xC0, 0x8D, 0x0D, 0x8A, 0xDF, 0x83, 0xC0, 0x55, 0xA4, + 0xCE, 0xCE, 0x53, 0x3B, 0xAF, 0xC2, 0x30, 0x8C, 0xF6, 0x69, 0x67, 0x16, 0xB8, 0xDC, 0x6C, 0xEF, + 0x0F, 0xDC, 0xCE, 0x2F, 0xCF, 0x13, 0xDC, 0x4A, 0x98, 0xEE, 0xE0, 0xBF, 0x89, 0xC4, 0xEF, 0x1F, + 0xC1, 0xEB, 0xC1, 0x2A, 0x8F, 0x2B, 0x21, 0x1D, 0x8B, 0x34, 0x0C, 0xE3, 0xF0, 0xA5, 0xF9, 0x59, + 0xE0, 0x72, 0xE2, 0xE7, 0xA7, 0xF9, 0x36, 0xE9, 0xC6, 0x05, 0x67, 0x0A, 0xBE, 0xE4, 0xE7, 0xF3, + 0x1E, 0xCA, 0xF6, 0xFC, 0x9E, 0xEE, 0x1E, 0x6F, 0x20, 0x9D, 0x84, 0x59, 0x02, 0x7E, 0x59, 0xF8, + 0x33, 0x19, 0x86, 0xD1, 0x6B, 0xDA, 0xDF, 0x0F, 0x30, 0x27, 0x3C, 0x93, 0xE6, 0x50, 0xBA, 0x3B, + 0x80, 0x97, 0x0A, 0xCE, 0x40, 0x7C, 0x31, 0x8C, 0x1F, 0x7A, 0xCD, 0x48, 0xF1, 0x3B, 0x92, 0xF4, + 0x9C, 0x8F, 0x33, 0x81, 0xB7, 0x90, 0x6E, 0x69, 0x65, 0x18, 0xC6, 0x0C, 0xD1, 0xB6, 0x1F, 0x60, + 0x15, 0x57, 0x97, 0x3B, 0x81, 0xB3, 0x04, 0x2F, 0x05, 0xBE, 0x35, 0xC1, 0x98, 0xDF, 0xC3, 0xC0, + 0x7F, 0x92, 0x0A, 0xAA, 0x61, 0x18, 0x33, 0x48, 0x37, 0xFC, 0x00, 0x29, 0x2D, 0x7E, 0x7E, 0xFC, + 0x97, 0x10, 0x2F, 0x04, 0xCE, 0x16, 0xDC, 0xE5, 0x95, 0x71, 0x60, 0x4C, 0x95, 0xC6, 0xC5, 0x1B, + 0x86, 0x71, 0x98, 0xD3, 0xBE, 0x1F, 0x20, 0x95, 0xC4, 0xCF, 0x7F, 0xBD, 0x9B, 0x74, 0x97, 0xDB, + 0x37, 0x48, 0xFC, 0x99, 0x74, 0xF6, 0xB8, 0x91, 0x93, 0xA5, 0x0C, 0xC3, 0xE8, 0x27, 0x8D, 0x1D, + 0x8B, 0x69, 0x18, 0x86, 0xD1, 0x35, 0x1A, 0xED, 0x01, 0x1A, 0x86, 0x61, 0x74, 0x09, 0x13, 0x40, + 0xC3, 0x30, 0x66, 0x16, 0x13, 0x40, 0xC3, 0x30, 0x66, 0x16, 0x13, 0x40, 0xC3, 0x30, 0x66, 0x16, + 0x13, 0x40, 0xC3, 0x30, 0x66, 0x16, 0x13, 0x40, 0xC3, 0x30, 0x66, 0x16, 0x13, 0x40, 0xC3, 0x30, + 0x66, 0x16, 0x13, 0x40, 0xC3, 0x30, 0x66, 0x16, 0x13, 0x40, 0xC3, 0x30, 0x66, 0x96, 0x7F, 0x02, + 0x17, 0x30, 0x01, 0x22, 0xF6, 0x9C, 0x91, 0xB4, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4E, 0x44, + 0xAE, 0x42, 0x60, 0x82 +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/ImFont.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/ImFont.h new file mode 100644 index 0000000..f595cbf --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/ImFont.h @@ -0,0 +1,26338 @@ +#pragma once + +BYTE MuseoSansCyrl700[] = { + 0x00, 0x01, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x80, 0x00, 0x03, 0x00, 0x70, 0x46, 0x46, 0x54, 0x4D, + 0x64, 0xAB, 0x76, 0x28, 0x00, 0x01, 0xF5, 0x34, 0x00, 0x00, 0x00, 0x1C, 0x47, 0x44, 0x45, 0x46, + 0x07, 0xA4, 0x04, 0xBC, 0x00, 0x01, 0x0F, 0x98, 0x00, 0x00, 0x00, 0x2C, 0x47, 0x50, 0x4F, 0x53, + 0x99, 0xF3, 0xC0, 0x21, 0x00, 0x01, 0x1A, 0xE0, 0x00, 0x00, 0xDA, 0x52, 0x47, 0x53, 0x55, 0x42, + 0x36, 0x31, 0xAD, 0xAF, 0x00, 0x01, 0x0F, 0xC4, 0x00, 0x00, 0x0B, 0x1C, 0x4F, 0x53, 0x2F, 0x32, + 0x80, 0xAB, 0x9F, 0xE9, 0x00, 0x00, 0x01, 0x78, 0x00, 0x00, 0x00, 0x60, 0x63, 0x6D, 0x61, 0x70, + 0xF5, 0x57, 0x9A, 0x9F, 0x00, 0x00, 0x0C, 0xD0, 0x00, 0x00, 0x03, 0x6E, 0x67, 0x61, 0x73, 0x70, + 0xFF, 0xFF, 0x00, 0x03, 0x00, 0x01, 0x0F, 0x90, 0x00, 0x00, 0x00, 0x08, 0x67, 0x6C, 0x79, 0x66, + 0x09, 0x6E, 0x7F, 0x5E, 0x00, 0x00, 0x15, 0xC0, 0x00, 0x00, 0xDD, 0xDC, 0x68, 0x65, 0x61, 0x64, + 0x04, 0x06, 0x3D, 0x3B, 0x00, 0x00, 0x00, 0xFC, 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, 0x65, 0x61, + 0x07, 0xA1, 0x05, 0xCE, 0x00, 0x00, 0x01, 0x34, 0x00, 0x00, 0x00, 0x24, 0x68, 0x6D, 0x74, 0x78, + 0x48, 0x12, 0x7A, 0xF3, 0x00, 0x00, 0x01, 0xD8, 0x00, 0x00, 0x0A, 0xF8, 0x6C, 0x6F, 0x63, 0x61, + 0xA2, 0x75, 0x6B, 0xAA, 0x00, 0x00, 0x10, 0x40, 0x00, 0x00, 0x05, 0x7E, 0x6D, 0x61, 0x78, 0x70, + 0x03, 0x07, 0x00, 0x4D, 0x00, 0x00, 0x01, 0x58, 0x00, 0x00, 0x00, 0x20, 0x6E, 0x61, 0x6D, 0x65, + 0x19, 0x26, 0x5D, 0x52, 0x00, 0x00, 0xF3, 0x9C, 0x00, 0x00, 0x05, 0x6D, 0x70, 0x6F, 0x73, 0x74, + 0x0A, 0x1A, 0x90, 0xF5, 0x00, 0x00, 0xF9, 0x0C, 0x00, 0x00, 0x16, 0x81, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x01, 0x05, 0xE3, 0x71, 0x40, 0x2B, 0xFF, 0x5F, 0x0F, 0x3C, 0xF5, 0x00, 0x0B, 0x03, 0xE8, + 0x00, 0x00, 0x00, 0x00, 0xD0, 0x79, 0xF9, 0xE2, 0x00, 0x00, 0x00, 0x00, 0xD0, 0x79, 0xF9, 0xE2, + 0xFF, 0x84, 0xFF, 0x29, 0x04, 0x6E, 0x03, 0x86, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0xAC, 0xFE, 0xFC, 0x00, 0x00, 0x04, 0x8F, + 0xFF, 0x84, 0xFF, 0x84, 0x04, 0x6E, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xBE, 0x00, 0x01, 0x00, 0x00, 0x02, 0xBE, 0x00, 0x4A, + 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x02, 0x53, 0x02, 0x58, 0x00, 0x05, + 0x00, 0x08, 0x02, 0x8A, 0x02, 0x58, 0x00, 0x00, 0x00, 0x4B, 0x02, 0x8A, 0x02, 0x58, 0x00, 0x00, + 0x01, 0x5E, 0x00, 0x32, 0x01, 0x2C, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x78, 0x6C, 0x6A, 0x62, 0x00, 0x20, 0x00, 0x20, 0xFB, 0x04, 0x02, 0xEE, 0xFF, 0x06, + 0x00, 0xC8, 0x03, 0xAC, 0x01, 0x04, 0x20, 0x00, 0x00, 0x97, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFE, + 0x02, 0xC6, 0x00, 0x00, 0x00, 0x20, 0x00, 0x0B, 0x01, 0xFE, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x4D, 0x00, 0x00, 0x00, 0xFA, 0x00, 0x00, 0x01, 0x20, 0x00, 0x4E, 0x01, 0x89, 0x00, 0x45, + 0x02, 0xCB, 0x00, 0x27, 0x02, 0x4A, 0x00, 0x35, 0x03, 0x20, 0x00, 0x2B, 0x02, 0xAC, 0x00, 0x33, + 0x00, 0xEB, 0x00, 0x45, 0x01, 0x34, 0x00, 0x30, 0x01, 0x34, 0x00, 0x22, 0x01, 0xEF, 0x00, 0x2C, + 0x02, 0x4A, 0x00, 0x19, 0x01, 0x1A, 0x00, 0x19, 0x01, 0xB0, 0x00, 0x42, 0x01, 0x03, 0x00, 0x42, + 0x01, 0xAE, 0x00, 0x21, 0x02, 0x74, 0x00, 0x38, 0x02, 0x05, 0x00, 0x2D, 0x02, 0x47, 0x00, 0x34, + 0x02, 0x3D, 0x00, 0x26, 0x02, 0x6B, 0x00, 0x1E, 0x02, 0x3A, 0x00, 0x2C, 0x02, 0x5C, 0x00, 0x34, + 0x02, 0x23, 0x00, 0x26, 0x02, 0x62, 0x00, 0x32, 0x02, 0x5C, 0x00, 0x2B, 0x01, 0x02, 0x00, 0x42, + 0x01, 0x27, 0x00, 0x27, 0x02, 0x4A, 0x00, 0x27, 0x02, 0x4A, 0x00, 0x31, 0x02, 0x4A, 0x00, 0x41, + 0x01, 0xE3, 0x00, 0x23, 0x03, 0x2F, 0x00, 0x34, 0x02, 0x8A, 0x00, 0x08, 0x02, 0x79, 0x00, 0x56, + 0x02, 0xCC, 0x00, 0x2D, 0x02, 0xE1, 0x00, 0x56, 0x02, 0x38, 0x00, 0x56, 0x02, 0x0B, 0x00, 0x56, + 0x02, 0xFE, 0x00, 0x2D, 0x02, 0xF2, 0x00, 0x56, 0x01, 0x2D, 0x00, 0x56, 0x02, 0x22, 0x00, 0x18, + 0x02, 0x7E, 0x00, 0x56, 0x02, 0x18, 0x00, 0x56, 0x03, 0x5C, 0x00, 0x3B, 0x02, 0xF1, 0x00, 0x56, + 0x03, 0x36, 0x00, 0x2C, 0x02, 0x67, 0x00, 0x56, 0x03, 0x36, 0x00, 0x2C, 0x02, 0x80, 0x00, 0x56, + 0x02, 0x2D, 0x00, 0x23, 0x02, 0x6E, 0x00, 0x0E, 0x02, 0xD8, 0x00, 0x4E, 0x02, 0x90, 0x00, 0x05, + 0x03, 0xBC, 0x00, 0x17, 0x02, 0x6E, 0x00, 0x0D, 0x02, 0x5E, 0x00, 0x02, 0x02, 0x62, 0x00, 0x24, + 0x01, 0x41, 0x00, 0x50, 0x01, 0xAE, 0x00, 0x21, 0x01, 0x41, 0x00, 0x2C, 0x02, 0x6B, 0x00, 0x41, + 0x02, 0x5D, 0x00, 0x16, 0x01, 0xED, 0x00, 0x8F, 0x02, 0x19, 0x00, 0x1D, 0x02, 0x66, 0x00, 0x44, + 0x02, 0x24, 0x00, 0x25, 0x02, 0x66, 0x00, 0x27, 0x02, 0x31, 0x00, 0x25, 0x01, 0x64, 0x00, 0x22, + 0x02, 0x5E, 0x00, 0x28, 0x02, 0x64, 0x00, 0x44, 0x01, 0x07, 0x00, 0x44, 0x01, 0x07, 0xFF, 0xC8, + 0x02, 0x25, 0x00, 0x44, 0x01, 0x21, 0x00, 0x44, 0x03, 0x90, 0x00, 0x44, 0x02, 0x64, 0x00, 0x44, + 0x02, 0x7A, 0x00, 0x25, 0x02, 0x66, 0x00, 0x44, 0x02, 0x66, 0x00, 0x27, 0x01, 0x8C, 0x00, 0x44, + 0x01, 0xC9, 0x00, 0x1B, 0x01, 0x75, 0x00, 0x1B, 0x02, 0x5F, 0x00, 0x3F, 0x02, 0x21, 0x00, 0x0D, + 0x03, 0x3F, 0x00, 0x13, 0x02, 0x07, 0x00, 0x0F, 0x02, 0x21, 0x00, 0x04, 0x02, 0x0C, 0x00, 0x23, + 0x01, 0x73, 0x00, 0x25, 0x01, 0x08, 0x00, 0x4E, 0x01, 0x73, 0x00, 0x29, 0x02, 0x6D, 0x00, 0x3E, + 0x00, 0xFA, 0x00, 0x00, 0x01, 0x0C, 0x00, 0x44, 0x02, 0x4A, 0x00, 0x31, 0x02, 0x4A, 0x00, 0x2F, + 0x02, 0x70, 0x00, 0x33, 0x02, 0x4A, 0x00, 0x09, 0x01, 0xDF, 0x00, 0x2C, 0x01, 0xED, 0x00, 0x6A, + 0x03, 0x31, 0x00, 0x32, 0x01, 0xAC, 0x00, 0x44, 0x02, 0x56, 0x00, 0x28, 0x02, 0x70, 0x00, 0x3E, + 0x01, 0xB0, 0x00, 0x42, 0x03, 0x31, 0x00, 0x32, 0x01, 0xED, 0x00, 0x74, 0x01, 0xA4, 0x00, 0x2F, + 0x02, 0x4A, 0x00, 0x19, 0x01, 0x88, 0x00, 0x27, 0x01, 0x88, 0x00, 0x20, 0x01, 0xED, 0x00, 0x8F, + 0x02, 0x65, 0x00, 0x4E, 0x02, 0x72, 0x00, 0x24, 0x00, 0xFF, 0x00, 0x42, 0x01, 0xED, 0x00, 0xA2, + 0x01, 0x88, 0x00, 0x38, 0x01, 0xE0, 0x00, 0x40, 0x02, 0x56, 0x00, 0x30, 0x03, 0xD1, 0x00, 0x2F, + 0x03, 0xC7, 0x00, 0x2E, 0x03, 0xDE, 0x00, 0x27, 0x01, 0xDB, 0x00, 0x24, 0x02, 0x8A, 0x00, 0x08, + 0x02, 0x8A, 0x00, 0x08, 0x02, 0x8A, 0x00, 0x08, 0x02, 0x8A, 0x00, 0x08, 0x02, 0x8A, 0x00, 0x08, + 0x02, 0x8A, 0x00, 0x08, 0x03, 0x89, 0x00, 0x02, 0x02, 0xCC, 0x00, 0x2D, 0x02, 0x38, 0x00, 0x56, + 0x02, 0x38, 0x00, 0x56, 0x02, 0x38, 0x00, 0x56, 0x02, 0x38, 0x00, 0x56, 0x01, 0x2D, 0xFF, 0xFF, + 0x01, 0x2D, 0x00, 0x56, 0x01, 0x2D, 0xFF, 0xFC, 0x01, 0x2D, 0x00, 0x0B, 0x02, 0xE7, 0x00, 0x22, + 0x02, 0xF1, 0x00, 0x56, 0x03, 0x36, 0x00, 0x2C, 0x03, 0x36, 0x00, 0x2C, 0x03, 0x36, 0x00, 0x2C, + 0x03, 0x36, 0x00, 0x2C, 0x03, 0x36, 0x00, 0x2C, 0x02, 0x4A, 0x00, 0x1C, 0x03, 0x35, 0x00, 0x2C, + 0x02, 0xD8, 0x00, 0x4E, 0x02, 0xD8, 0x00, 0x4E, 0x02, 0xD8, 0x00, 0x4E, 0x02, 0xD8, 0x00, 0x4E, + 0x02, 0x5E, 0x00, 0x02, 0x02, 0x68, 0x00, 0x56, 0x02, 0x5A, 0x00, 0x44, 0x02, 0x19, 0x00, 0x1D, + 0x02, 0x19, 0x00, 0x1D, 0x02, 0x19, 0x00, 0x1D, 0x02, 0x19, 0x00, 0x1D, 0x02, 0x19, 0x00, 0x1D, + 0x02, 0x19, 0x00, 0x1D, 0x03, 0x5B, 0x00, 0x1D, 0x02, 0x24, 0x00, 0x25, 0x02, 0x31, 0x00, 0x25, + 0x02, 0x31, 0x00, 0x25, 0x02, 0x31, 0x00, 0x25, 0x02, 0x31, 0x00, 0x25, 0x01, 0x07, 0xFF, 0xEC, + 0x01, 0x07, 0x00, 0x44, 0x01, 0x07, 0xFF, 0xE8, 0x01, 0x07, 0xFF, 0xF8, 0x02, 0x47, 0x00, 0x26, + 0x02, 0x64, 0x00, 0x44, 0x02, 0x7A, 0x00, 0x25, 0x02, 0x7A, 0x00, 0x25, 0x02, 0x7A, 0x00, 0x25, + 0x02, 0x7A, 0x00, 0x25, 0x02, 0x7A, 0x00, 0x25, 0x02, 0x4A, 0x00, 0x20, 0x02, 0x7B, 0x00, 0x25, + 0x02, 0x5F, 0x00, 0x3F, 0x02, 0x5F, 0x00, 0x3F, 0x02, 0x5F, 0x00, 0x3F, 0x02, 0x5F, 0x00, 0x3F, + 0x02, 0x21, 0x00, 0x04, 0x02, 0x64, 0x00, 0x44, 0x02, 0x21, 0x00, 0x04, 0x02, 0x8A, 0x00, 0x08, + 0x02, 0x19, 0x00, 0x1D, 0x02, 0x8A, 0x00, 0x08, 0x02, 0x19, 0x00, 0x1D, 0x02, 0x8A, 0x00, 0x08, + 0x02, 0x19, 0x00, 0x1D, 0x02, 0xCC, 0x00, 0x2D, 0x02, 0x24, 0x00, 0x25, 0x02, 0xCC, 0x00, 0x2D, + 0x02, 0x24, 0x00, 0x25, 0x02, 0xCC, 0x00, 0x2D, 0x02, 0x24, 0x00, 0x25, 0x02, 0xCC, 0x00, 0x2D, + 0x02, 0x24, 0x00, 0x25, 0x02, 0xE1, 0x00, 0x56, 0x02, 0x73, 0x00, 0x27, 0x02, 0xE7, 0x00, 0x22, + 0x02, 0x66, 0x00, 0x27, 0x02, 0x38, 0x00, 0x56, 0x02, 0x31, 0x00, 0x25, 0x02, 0x38, 0x00, 0x56, + 0x02, 0x31, 0x00, 0x25, 0x02, 0x38, 0x00, 0x56, 0x02, 0x31, 0x00, 0x25, 0x02, 0x38, 0x00, 0x56, + 0x02, 0x31, 0x00, 0x25, 0x02, 0x38, 0x00, 0x56, 0x02, 0x31, 0x00, 0x25, 0x02, 0xFE, 0x00, 0x2D, + 0x02, 0x5E, 0x00, 0x28, 0x02, 0xFE, 0x00, 0x2D, 0x02, 0x5E, 0x00, 0x28, 0x02, 0xFE, 0x00, 0x2D, + 0x02, 0x5E, 0x00, 0x28, 0x02, 0xFE, 0x00, 0x2D, 0x02, 0x5E, 0x00, 0x28, 0x02, 0xF2, 0x00, 0x56, + 0x02, 0x64, 0xFF, 0xE9, 0x02, 0xF9, 0x00, 0x1B, 0x02, 0x64, 0x00, 0x02, 0x01, 0x2D, 0xFF, 0xE2, + 0x01, 0x07, 0xFF, 0xCF, 0x01, 0x2D, 0x00, 0x15, 0x01, 0x07, 0x00, 0x02, 0x01, 0x2D, 0x00, 0x03, + 0x01, 0x07, 0xFF, 0xF0, 0x01, 0x2D, 0x00, 0x36, 0x01, 0x08, 0x00, 0x23, 0x01, 0x2D, 0x00, 0x56, + 0x01, 0x07, 0x00, 0x44, 0x02, 0x7D, 0x00, 0x56, 0x02, 0x0E, 0x00, 0x44, 0x02, 0x22, 0x00, 0x18, + 0x01, 0x07, 0xFF, 0xC8, 0x02, 0x7E, 0x00, 0x56, 0x02, 0x25, 0x00, 0x44, 0x02, 0x23, 0x00, 0x44, + 0x02, 0x18, 0x00, 0x56, 0x01, 0x20, 0x00, 0x44, 0x02, 0x18, 0x00, 0x56, 0x01, 0x20, 0x00, 0x44, + 0x02, 0x19, 0x00, 0x56, 0x01, 0x2D, 0x00, 0x44, 0x02, 0x1A, 0x00, 0x56, 0x01, 0x93, 0x00, 0x44, + 0x02, 0x1D, 0x00, 0x22, 0x01, 0x31, 0x00, 0x11, 0x02, 0xF1, 0x00, 0x56, 0x02, 0x64, 0x00, 0x44, + 0x02, 0xF1, 0x00, 0x56, 0x02, 0x64, 0x00, 0x44, 0x02, 0xF1, 0x00, 0x56, 0x02, 0x64, 0x00, 0x44, + 0x02, 0x64, 0xFF, 0xEC, 0x02, 0xF0, 0x00, 0x56, 0x02, 0x64, 0x00, 0x44, 0x03, 0x36, 0x00, 0x2C, + 0x02, 0x7A, 0x00, 0x25, 0x03, 0x36, 0x00, 0x2C, 0x02, 0x7A, 0x00, 0x25, 0x03, 0x36, 0x00, 0x2C, + 0x02, 0x7A, 0x00, 0x25, 0x03, 0xC9, 0x00, 0x2C, 0x03, 0xE0, 0x00, 0x25, 0x02, 0x80, 0x00, 0x56, + 0x01, 0x8C, 0x00, 0x44, 0x02, 0x80, 0x00, 0x56, 0x01, 0x8C, 0x00, 0x44, 0x02, 0x80, 0x00, 0x56, + 0x01, 0x8C, 0x00, 0x44, 0x02, 0x2D, 0x00, 0x23, 0x01, 0xC9, 0x00, 0x1B, 0x02, 0x2D, 0x00, 0x23, + 0x01, 0xC9, 0x00, 0x1B, 0x02, 0x2E, 0x00, 0x23, 0x01, 0xCB, 0x00, 0x1C, 0x02, 0x2D, 0x00, 0x23, + 0x01, 0xC9, 0x00, 0x1B, 0x02, 0x6E, 0x00, 0x0E, 0x01, 0x75, 0x00, 0x1B, 0x02, 0x6E, 0x00, 0x0E, + 0x01, 0x75, 0x00, 0x1B, 0x02, 0x78, 0x00, 0x13, 0x01, 0x79, 0x00, 0x16, 0x02, 0xD8, 0x00, 0x4E, + 0x02, 0x5F, 0x00, 0x3F, 0x02, 0xD8, 0x00, 0x4E, 0x02, 0x5F, 0x00, 0x3F, 0x02, 0xD8, 0x00, 0x4E, + 0x02, 0x5F, 0x00, 0x3F, 0x02, 0xD8, 0x00, 0x4E, 0x02, 0x5F, 0x00, 0x3F, 0x02, 0xD8, 0x00, 0x4E, + 0x02, 0x5F, 0x00, 0x3F, 0x02, 0xD9, 0x00, 0x4F, 0x02, 0x5F, 0x00, 0x3F, 0x03, 0xBC, 0x00, 0x17, + 0x03, 0x3F, 0x00, 0x13, 0x02, 0x5E, 0x00, 0x02, 0x02, 0x21, 0x00, 0x04, 0x02, 0x5E, 0x00, 0x02, + 0x02, 0x62, 0x00, 0x24, 0x02, 0x0C, 0x00, 0x23, 0x02, 0x62, 0x00, 0x24, 0x02, 0x0C, 0x00, 0x23, + 0x02, 0x62, 0x00, 0x24, 0x02, 0x0C, 0x00, 0x23, 0x01, 0x38, 0x00, 0x22, 0x02, 0x4A, 0x00, 0x1F, + 0x02, 0x2D, 0x00, 0x23, 0x01, 0xC9, 0x00, 0x1B, 0x02, 0x6E, 0x00, 0x0E, 0x01, 0x75, 0x00, 0x1B, + 0x01, 0xEE, 0x00, 0x5B, 0x01, 0xEE, 0x00, 0x5B, 0x01, 0xED, 0x00, 0x62, 0x01, 0xEE, 0x00, 0xC1, + 0x01, 0xEE, 0x00, 0x98, 0x01, 0xEE, 0x00, 0xA0, 0x01, 0xED, 0x00, 0x41, 0x01, 0xED, 0x00, 0x3B, + 0x02, 0x39, 0x00, 0x56, 0x02, 0x39, 0x00, 0x56, 0x02, 0xEA, 0x00, 0x0E, 0x01, 0xFA, 0x00, 0x56, + 0x02, 0xCC, 0x00, 0x2D, 0x02, 0x2D, 0x00, 0x23, 0x01, 0x2D, 0x00, 0x56, 0x01, 0x2D, 0x00, 0x0B, + 0x02, 0x22, 0x00, 0x18, 0x03, 0xCA, 0x00, 0x13, 0x03, 0xFB, 0x00, 0x56, 0x02, 0xEC, 0x00, 0x0E, + 0x02, 0x7E, 0x00, 0x56, 0x02, 0xF1, 0x00, 0x56, 0x02, 0x64, 0xFF, 0xFD, 0x02, 0xE1, 0x00, 0x56, + 0x02, 0x8A, 0x00, 0x08, 0x02, 0x68, 0x00, 0x56, 0x02, 0x79, 0x00, 0x56, 0x01, 0xFA, 0x00, 0x56, + 0x02, 0xE4, 0x00, 0x07, 0x02, 0x39, 0x00, 0x56, 0x03, 0xA4, 0x00, 0x0D, 0x02, 0x2B, 0x00, 0x16, + 0x02, 0xF1, 0x00, 0x56, 0x02, 0xF1, 0x00, 0x56, 0x02, 0x7E, 0x00, 0x56, 0x02, 0xB4, 0x00, 0x0E, + 0x03, 0x5C, 0x00, 0x3B, 0x02, 0xF2, 0x00, 0x56, 0x03, 0x36, 0x00, 0x2C, 0x02, 0xEB, 0x00, 0x56, + 0x02, 0x64, 0x00, 0x56, 0x02, 0xCC, 0x00, 0x2D, 0x02, 0x6F, 0x00, 0x0E, 0x02, 0x64, 0xFF, 0xFD, + 0x03, 0x4D, 0x00, 0x21, 0x02, 0x6E, 0x00, 0x0D, 0x03, 0x03, 0x00, 0x56, 0x02, 0x94, 0x00, 0x2E, + 0x03, 0xF9, 0x00, 0x56, 0x04, 0x1D, 0x00, 0x56, 0x02, 0xC2, 0x00, 0x07, 0x03, 0x6C, 0x00, 0x56, + 0x02, 0x5B, 0x00, 0x56, 0x02, 0xCC, 0x00, 0x1C, 0x04, 0x3B, 0x00, 0x56, 0x02, 0x7A, 0x00, 0x11, + 0x02, 0x18, 0x00, 0x1D, 0x02, 0x54, 0x00, 0x2E, 0x02, 0x1A, 0x00, 0x44, 0x01, 0xA6, 0x00, 0x44, + 0x02, 0x68, 0x00, 0x0D, 0x02, 0x31, 0x00, 0x25, 0x03, 0x11, 0x00, 0x0D, 0x01, 0xCA, 0x00, 0x16, + 0x02, 0x5E, 0x00, 0x44, 0x02, 0x5E, 0x00, 0x44, 0x02, 0x25, 0x00, 0x44, 0x02, 0x37, 0x00, 0x14, + 0x02, 0xE7, 0x00, 0x2F, 0x02, 0x60, 0x00, 0x44, 0x02, 0x7A, 0x00, 0x25, 0x02, 0x59, 0x00, 0x44, + 0x02, 0x66, 0x00, 0x44, 0x02, 0x24, 0x00, 0x25, 0x01, 0xF4, 0x00, 0x13, 0x02, 0x21, 0x00, 0x04, + 0x02, 0xED, 0x00, 0x26, 0x02, 0x07, 0x00, 0x0F, 0x02, 0x70, 0x00, 0x44, 0x02, 0x20, 0x00, 0x26, + 0x03, 0x31, 0x00, 0x44, 0x03, 0x4F, 0x00, 0x44, 0x02, 0x45, 0x00, 0x09, 0x02, 0xE7, 0x00, 0x44, + 0x01, 0xFB, 0x00, 0x44, 0x02, 0x22, 0x00, 0x18, 0x03, 0x53, 0x00, 0x44, 0x02, 0x12, 0x00, 0x12, + 0x02, 0x31, 0x00, 0x25, 0x02, 0x31, 0x00, 0x25, 0x02, 0x65, 0x00, 0x07, 0x01, 0xA6, 0x00, 0x44, + 0x02, 0x25, 0x00, 0x25, 0x01, 0xC9, 0x00, 0x1B, 0x01, 0x07, 0x00, 0x44, 0x01, 0x07, 0xFF, 0xF8, + 0x01, 0x07, 0xFF, 0xC8, 0x03, 0x0B, 0x00, 0x18, 0x03, 0x45, 0x00, 0x44, 0x02, 0x65, 0x00, 0x07, + 0x02, 0x25, 0x00, 0x44, 0x02, 0x5E, 0x00, 0x44, 0x02, 0x21, 0x00, 0x04, 0x02, 0x4C, 0x00, 0x44, + 0x02, 0xBC, 0x00, 0x0A, 0x02, 0x30, 0xFF, 0xFD, 0x03, 0x36, 0x00, 0x2C, 0x02, 0x7A, 0x00, 0x25, + 0x02, 0xB4, 0x00, 0x05, 0x02, 0x42, 0x00, 0x0C, 0x03, 0x23, 0x00, 0x56, 0x02, 0x96, 0x00, 0x44, + 0x02, 0xB4, 0x00, 0x09, 0x02, 0x33, 0x00, 0x00, 0x02, 0x75, 0x00, 0x56, 0x02, 0x6C, 0x00, 0x44, + 0x02, 0x05, 0x00, 0x56, 0x01, 0xAC, 0x00, 0x44, 0x02, 0x04, 0x00, 0x20, 0x01, 0xAF, 0x00, 0x0C, + 0x02, 0x72, 0x00, 0x56, 0x02, 0x07, 0x00, 0x44, 0x03, 0xD3, 0x00, 0x0D, 0x03, 0x3D, 0x00, 0x0D, + 0x02, 0x2D, 0x00, 0x16, 0x01, 0xCC, 0x00, 0x16, 0x02, 0xAB, 0x00, 0x56, 0x02, 0x4C, 0x00, 0x44, + 0x02, 0xE6, 0x00, 0x56, 0x02, 0x7B, 0x00, 0x44, 0x02, 0x82, 0x00, 0x16, 0x02, 0x25, 0x00, 0x07, + 0x03, 0x02, 0x00, 0x10, 0x02, 0x6F, 0x00, 0x09, 0x03, 0x1C, 0x00, 0x56, 0x02, 0x8B, 0x00, 0x44, + 0x03, 0xAE, 0x00, 0x56, 0x02, 0xE5, 0x00, 0x44, 0x03, 0xE8, 0x00, 0x56, 0x03, 0x43, 0x00, 0x44, + 0x03, 0xAC, 0x00, 0x2D, 0x03, 0x1C, 0x00, 0x25, 0x02, 0xCC, 0x00, 0x2D, 0x02, 0x24, 0x00, 0x25, + 0x02, 0x72, 0x00, 0x0D, 0x01, 0xFB, 0x00, 0x13, 0x02, 0x51, 0xFF, 0xFC, 0x02, 0x1D, 0x00, 0x0B, + 0x02, 0x51, 0xFF, 0xFC, 0x02, 0x1C, 0x00, 0x0B, 0x02, 0x9A, 0x00, 0x0D, 0x02, 0x2B, 0x00, 0x0F, + 0x03, 0x91, 0x00, 0x10, 0x02, 0xE9, 0x00, 0x14, 0x02, 0xBD, 0x00, 0x2E, 0x02, 0x4C, 0x00, 0x26, + 0x02, 0xAC, 0x00, 0x2C, 0x02, 0x46, 0x00, 0x26, 0x02, 0x7F, 0x00, 0x56, 0x02, 0x64, 0x00, 0x44, + 0x03, 0x7D, 0x00, 0x20, 0x02, 0xB7, 0x00, 0x1B, 0x03, 0x7E, 0x00, 0x20, 0x02, 0xB7, 0x00, 0x1B, + 0x01, 0x2C, 0x00, 0x56, 0x03, 0xA4, 0x00, 0x0D, 0x03, 0x11, 0x00, 0x0D, 0x02, 0x91, 0x00, 0x56, + 0x02, 0x29, 0x00, 0x44, 0x02, 0xE7, 0x00, 0x0E, 0x02, 0x6A, 0x00, 0x14, 0x02, 0xF2, 0x00, 0x56, + 0x02, 0x61, 0x00, 0x44, 0x03, 0x25, 0x00, 0x56, 0x02, 0x93, 0x00, 0x44, 0x02, 0x93, 0x00, 0x2E, + 0x02, 0x21, 0x00, 0x25, 0x03, 0x96, 0x00, 0x3B, 0x03, 0x22, 0x00, 0x2F, 0x01, 0x07, 0x00, 0x44, + 0x02, 0x8A, 0x00, 0x08, 0x02, 0x19, 0x00, 0x1D, 0x02, 0x8A, 0x00, 0x08, 0x02, 0x19, 0x00, 0x1D, + 0x03, 0x89, 0x00, 0x01, 0x03, 0x5B, 0x00, 0x1D, 0x02, 0x39, 0x00, 0x56, 0x02, 0x31, 0x00, 0x25, + 0x02, 0xD4, 0x00, 0x2E, 0x02, 0x31, 0x00, 0x25, 0x02, 0xD4, 0x00, 0x2E, 0x02, 0x31, 0x00, 0x25, + 0x03, 0xA4, 0x00, 0x0D, 0x03, 0x11, 0x00, 0x0D, 0x02, 0x2B, 0x00, 0x16, 0x01, 0xCA, 0x00, 0x16, + 0x02, 0x15, 0x00, 0x1F, 0x01, 0xEE, 0x00, 0x07, 0x02, 0xF1, 0x00, 0x56, 0x02, 0x5E, 0x00, 0x44, + 0x02, 0xF1, 0x00, 0x56, 0x02, 0x5E, 0x00, 0x44, 0x03, 0x36, 0x00, 0x2C, 0x02, 0x7A, 0x00, 0x25, + 0x03, 0x36, 0x00, 0x2C, 0x02, 0x7A, 0x00, 0x25, 0x03, 0x36, 0x00, 0x2C, 0x02, 0x7A, 0x00, 0x25, + 0x02, 0xCC, 0x00, 0x1C, 0x02, 0x22, 0x00, 0x18, 0x02, 0x64, 0xFF, 0xFD, 0x02, 0x21, 0x00, 0x04, + 0x02, 0x64, 0xFF, 0xFD, 0x02, 0x21, 0x00, 0x04, 0x02, 0x64, 0xFF, 0xFD, 0x02, 0x21, 0x00, 0x04, + 0x02, 0x94, 0x00, 0x2E, 0x02, 0x20, 0x00, 0x26, 0x01, 0xFE, 0x00, 0x56, 0x01, 0xAA, 0x00, 0x44, + 0x03, 0x6C, 0x00, 0x56, 0x02, 0xE7, 0x00, 0x44, 0x03, 0x15, 0x00, 0x56, 0x02, 0x84, 0x00, 0x44, + 0x02, 0xAF, 0x00, 0x50, 0x00, 0x10, 0x00, 0x00, 0x02, 0xB1, 0x00, 0x44, 0x03, 0x79, 0x00, 0x44, + 0x01, 0x06, 0x00, 0x34, 0x00, 0xFF, 0x00, 0x39, 0x01, 0x09, 0x00, 0x28, 0x01, 0xAA, 0x00, 0x34, + 0x01, 0xA3, 0x00, 0x39, 0x01, 0xA8, 0x00, 0x28, 0x01, 0xC4, 0x00, 0x28, 0x01, 0xE0, 0x00, 0x36, + 0x01, 0xEE, 0x00, 0x50, 0x03, 0x39, 0x00, 0x42, 0x04, 0x8F, 0x00, 0x2E, 0x01, 0x75, 0x00, 0x28, + 0x01, 0x75, 0x00, 0x30, 0x00, 0xB4, 0xFF, 0x84, 0x01, 0x88, 0x00, 0x22, 0x01, 0x88, 0x00, 0x0F, + 0x01, 0x88, 0x00, 0x24, 0x01, 0x88, 0x00, 0x24, 0x01, 0x88, 0x00, 0x2D, 0x01, 0x88, 0x00, 0x1F, + 0x01, 0x88, 0x00, 0x20, 0x01, 0x88, 0x00, 0x22, 0x01, 0x88, 0x00, 0x38, 0x01, 0x88, 0x00, 0x27, + 0x01, 0x88, 0x00, 0x20, 0x01, 0x88, 0x00, 0x0F, 0x01, 0x88, 0x00, 0x24, 0x01, 0x88, 0x00, 0x24, + 0x01, 0x88, 0x00, 0x2D, 0x01, 0x88, 0x00, 0x1F, 0x01, 0x88, 0x00, 0x20, 0x02, 0x4A, 0x00, 0x1A, + 0x04, 0x3D, 0x00, 0x52, 0x03, 0xEC, 0x00, 0x3A, 0x02, 0x4A, 0x00, 0x1D, 0x01, 0xEE, 0x00, 0x38, + 0x02, 0x4A, 0x00, 0x25, 0x02, 0x4A, 0x00, 0x30, 0x02, 0x4A, 0x00, 0x2D, 0x02, 0x4A, 0x00, 0x3C, + 0x01, 0x4F, 0x00, 0x6E, 0x01, 0x71, 0x00, 0x13, 0x04, 0x6A, 0x00, 0x2A, 0x02, 0xC6, 0x00, 0x21, + 0x02, 0x6A, 0x00, 0x21, 0x02, 0x80, 0x00, 0x22, 0x03, 0xCE, 0x00, 0x21, 0x03, 0xE2, 0x00, 0x21, + 0x02, 0x6A, 0x00, 0x21, 0x02, 0x4A, 0x00, 0x24, 0x02, 0x4A, 0x00, 0x4F, 0x02, 0x4A, 0x00, 0x35, + 0x02, 0x4A, 0x00, 0x2C, 0x02, 0x4A, 0x00, 0x0D, 0x02, 0x4A, 0x00, 0x33, 0x02, 0x4A, 0x00, 0x2B, + 0x02, 0x4A, 0x00, 0x39, 0x02, 0x4A, 0x00, 0x26, 0x02, 0x4A, 0x00, 0x22, 0x01, 0xB0, 0x00, 0x42, + 0x01, 0x34, 0x00, 0x30, 0x01, 0x34, 0x00, 0x22, 0x01, 0x41, 0x00, 0x50, 0x01, 0x41, 0x00, 0x2C, + 0x01, 0x73, 0x00, 0x25, 0x01, 0x73, 0x00, 0x29, 0x03, 0x2F, 0x00, 0x34, 0x02, 0x55, 0x00, 0x28, + 0x02, 0x55, 0x00, 0x2F, 0x01, 0x75, 0x00, 0x28, 0x01, 0x75, 0x00, 0x2F, 0x02, 0xAD, 0x00, 0x42, + 0x03, 0x75, 0x00, 0x42, 0x00, 0xFE, 0x00, 0x42, 0x01, 0xE4, 0x00, 0x28, 0x01, 0x1F, 0x00, 0x4E, + 0x01, 0xEC, 0x00, 0x4F, 0x02, 0x49, 0x00, 0x2E, 0x01, 0xF2, 0x00, 0x25, 0x02, 0x23, 0x00, 0x29, + 0x02, 0x1C, 0x00, 0x1C, 0x02, 0x58, 0x00, 0x18, 0x02, 0x20, 0x00, 0x24, 0x02, 0x53, 0x00, 0x32, + 0x02, 0x0B, 0x00, 0x1E, 0x02, 0x50, 0x00, 0x30, 0x02, 0x42, 0x00, 0x24, 0x02, 0x4A, 0x00, 0x2E, + 0x02, 0x4A, 0x00, 0x51, 0x02, 0x4A, 0x00, 0x3D, 0x02, 0x4A, 0x00, 0x34, 0x02, 0x4A, 0x00, 0x12, + 0x02, 0x4A, 0x00, 0x39, 0x02, 0x4A, 0x00, 0x2F, 0x02, 0x4A, 0x00, 0x3D, 0x02, 0x4A, 0x00, 0x2D, + 0x02, 0x4A, 0x00, 0x27, 0x02, 0x0E, 0x00, 0x27, 0x02, 0x2B, 0x00, 0x2B, 0x02, 0x5E, 0x00, 0x34, + 0x02, 0x82, 0x00, 0x2E, 0x02, 0x2B, 0x00, 0x12, 0x02, 0x55, 0x00, 0x2F, 0x01, 0x88, 0x00, 0x22, + 0x01, 0x88, 0x00, 0x38, 0x01, 0x88, 0x00, 0x27, 0x01, 0x88, 0x00, 0x20, 0x01, 0x88, 0x00, 0x0F, + 0x01, 0x88, 0x00, 0x24, 0x01, 0x88, 0x00, 0x24, 0x01, 0x88, 0x00, 0x2D, 0x01, 0x88, 0x00, 0x1F, + 0x01, 0x88, 0x00, 0x20, 0x01, 0x88, 0x00, 0x22, 0x01, 0x88, 0x00, 0x38, 0x01, 0x88, 0x00, 0x27, + 0x01, 0x88, 0x00, 0x20, 0x01, 0x88, 0x00, 0x0F, 0x01, 0x88, 0x00, 0x24, 0x01, 0x88, 0x00, 0x24, + 0x01, 0x88, 0x00, 0x2D, 0x01, 0x88, 0x00, 0x1F, 0x01, 0x88, 0x00, 0x20, 0x01, 0xC7, 0x00, 0x23, + 0x02, 0x5E, 0x00, 0x28, 0x03, 0x11, 0x00, 0x0D, 0x02, 0x5F, 0x00, 0x3F, 0x02, 0x5F, 0x00, 0x3F, + 0x02, 0x25, 0x00, 0x44, 0x02, 0x1E, 0x00, 0x0A, 0x02, 0x64, 0x00, 0x44, 0x03, 0x90, 0x00, 0x44, + 0x02, 0x84, 0x00, 0x3F, 0x03, 0x8F, 0x00, 0x3F, 0x03, 0xAF, 0x00, 0x3F, 0x02, 0x4C, 0x00, 0x17, + 0x02, 0x0E, 0x00, 0x3F, 0x03, 0x53, 0x00, 0x44, 0x02, 0x5C, 0x00, 0x3B, 0x01, 0xC6, 0xFF, 0xFD, + 0x02, 0xD8, 0x00, 0x0B, 0x02, 0x8D, 0x00, 0x07, 0x02, 0x70, 0x00, 0x11, 0x02, 0x1E, 0x00, 0x0A, + 0x03, 0x8E, 0x00, 0x06, 0x03, 0x07, 0x00, 0x0A, 0x02, 0xE9, 0x00, 0x07, 0x02, 0x64, 0x00, 0x0A, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x64, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x04, 0x01, 0x48, + 0x00, 0x00, 0x00, 0x4E, 0x00, 0x40, 0x00, 0x05, 0x00, 0x0E, 0x00, 0x7E, 0x00, 0xA5, 0x01, 0x7F, + 0x01, 0x92, 0x02, 0x1B, 0x02, 0xC7, 0x02, 0xDD, 0x03, 0xBC, 0x04, 0x5F, 0x04, 0x63, 0x04, 0x75, + 0x04, 0xF9, 0x05, 0x25, 0x1E, 0x9E, 0x20, 0x09, 0x20, 0x14, 0x20, 0x1A, 0x20, 0x1E, 0x20, 0x22, + 0x20, 0x26, 0x20, 0x30, 0x20, 0x3A, 0x20, 0x44, 0x20, 0x70, 0x20, 0x79, 0x20, 0x89, 0x20, 0xAC, + 0x21, 0x16, 0x21, 0x22, 0x22, 0x12, 0x22, 0x1E, 0x22, 0x48, 0x22, 0x60, 0x22, 0x65, 0xF6, 0xC3, + 0xF6, 0xD4, 0xF8, 0xFF, 0xFB, 0x04, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x20, 0x00, 0xA0, 0x00, 0xA7, + 0x01, 0x92, 0x02, 0x18, 0x02, 0xC6, 0x02, 0xD8, 0x03, 0xBC, 0x04, 0x00, 0x04, 0x62, 0x04, 0x72, + 0x04, 0x8A, 0x05, 0x24, 0x1E, 0x9E, 0x20, 0x09, 0x20, 0x13, 0x20, 0x18, 0x20, 0x1C, 0x20, 0x20, + 0x20, 0x26, 0x20, 0x30, 0x20, 0x39, 0x20, 0x44, 0x20, 0x70, 0x20, 0x74, 0x20, 0x80, 0x20, 0xAC, + 0x21, 0x16, 0x21, 0x22, 0x22, 0x12, 0x22, 0x1E, 0x22, 0x48, 0x22, 0x60, 0x22, 0x64, 0xF6, 0xC3, + 0xF6, 0xD4, 0xF8, 0xFF, 0xFB, 0x00, 0xFF, 0xFF, 0xFF, 0xE3, 0xFF, 0xC2, 0xFF, 0xC1, 0xFF, 0xAF, + 0xFF, 0x2A, 0xFE, 0x80, 0xFE, 0x70, 0xFC, 0xBA, 0xFD, 0x4E, 0xFD, 0x4C, 0xFD, 0x3E, 0xFD, 0x2A, + 0xFD, 0x00, 0xE3, 0x88, 0xE2, 0x1E, 0xE2, 0x15, 0xE2, 0x12, 0xE2, 0x11, 0xE2, 0x10, 0xE2, 0x0D, + 0xE2, 0x04, 0xE1, 0xFC, 0xE1, 0xF3, 0xE1, 0xC8, 0xE1, 0xC5, 0xE1, 0xBF, 0xE1, 0x9D, 0xE1, 0x34, + 0xE1, 0x29, 0xE0, 0x3A, 0xE0, 0x2F, 0xE0, 0x06, 0xDF, 0xEF, 0xDF, 0xEC, 0x0B, 0x8F, 0x0B, 0x7F, + 0x09, 0x55, 0x07, 0x55, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x02, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0A, 0x00, 0x0B, + 0x00, 0x0C, 0x00, 0x0D, 0x00, 0x0E, 0x00, 0x0F, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, + 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x18, 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, + 0x00, 0x1C, 0x00, 0x1D, 0x00, 0x1E, 0x00, 0x1F, 0x00, 0x20, 0x00, 0x21, 0x00, 0x22, 0x00, 0x23, + 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, 0x00, 0x29, 0x00, 0x2A, 0x00, 0x2B, + 0x00, 0x2C, 0x00, 0x2D, 0x00, 0x2E, 0x00, 0x2F, 0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x33, + 0x00, 0x34, 0x00, 0x35, 0x00, 0x36, 0x00, 0x37, 0x00, 0x38, 0x00, 0x39, 0x00, 0x3A, 0x00, 0x3B, + 0x00, 0x3C, 0x00, 0x3D, 0x00, 0x3E, 0x00, 0x3F, 0x00, 0x40, 0x00, 0x41, 0x00, 0x42, 0x00, 0x43, + 0x00, 0x44, 0x00, 0x45, 0x00, 0x46, 0x00, 0x47, 0x00, 0x48, 0x00, 0x49, 0x00, 0x4A, 0x00, 0x4B, + 0x00, 0x4C, 0x00, 0x4D, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x51, 0x00, 0x52, 0x00, 0x53, + 0x00, 0x54, 0x00, 0x55, 0x00, 0x56, 0x00, 0x57, 0x00, 0x58, 0x00, 0x59, 0x00, 0x5A, 0x00, 0x5B, + 0x00, 0x5C, 0x00, 0x5D, 0x00, 0x5E, 0x00, 0x5F, 0x00, 0x60, 0x00, 0x61, 0x00, 0x00, 0x00, 0x85, + 0x00, 0x86, 0x00, 0x88, 0x00, 0x8A, 0x00, 0x92, 0x00, 0x97, 0x00, 0x9D, 0x00, 0xA2, 0x00, 0xA1, + 0x00, 0xA3, 0x00, 0xA5, 0x00, 0xA4, 0x00, 0xA6, 0x00, 0xA8, 0x00, 0xAA, 0x00, 0xA9, 0x00, 0xAB, + 0x00, 0xAC, 0x00, 0xAE, 0x00, 0xAD, 0x00, 0xAF, 0x00, 0xB0, 0x00, 0xB2, 0x00, 0xB4, 0x00, 0xB3, + 0x00, 0xB5, 0x00, 0xB7, 0x00, 0xB6, 0x00, 0xBB, 0x00, 0xBA, 0x00, 0xBC, 0x00, 0xBD, 0x02, 0x30, + 0x00, 0x71, 0x00, 0x64, 0x00, 0x65, 0x00, 0x68, 0x02, 0x32, 0x00, 0x77, 0x00, 0xA0, 0x00, 0x6F, + 0x00, 0x6A, 0x02, 0x4B, 0x00, 0x75, 0x00, 0x69, 0x02, 0x4F, 0x00, 0x87, 0x00, 0x99, 0x02, 0x4D, + 0x00, 0x72, 0x02, 0x50, 0x02, 0x51, 0x00, 0x67, 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x6B, 0x00, 0x7B, 0x00, 0x00, 0x00, 0xA7, 0x00, 0xB9, 0x00, 0x80, + 0x00, 0x63, 0x00, 0x6D, 0x00, 0x00, 0x01, 0x41, 0x02, 0x4E, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x7C, + 0x02, 0x33, 0x00, 0x62, 0x00, 0x81, 0x00, 0x84, 0x00, 0x96, 0x01, 0x13, 0x01, 0x14, 0x02, 0x28, + 0x02, 0x29, 0x02, 0x2D, 0x02, 0x2E, 0x02, 0x2A, 0x02, 0x2B, 0x00, 0xB8, 0x00, 0x00, 0x00, 0xC0, + 0x01, 0x39, 0x02, 0x37, 0x02, 0x49, 0x02, 0x35, 0x02, 0x36, 0x02, 0x56, 0x02, 0x57, 0x02, 0x31, + 0x00, 0x78, 0x02, 0x2C, 0x02, 0x2F, 0x02, 0x34, 0x00, 0x83, 0x00, 0x8B, 0x00, 0x82, 0x00, 0x8C, + 0x00, 0x89, 0x00, 0x8E, 0x00, 0x8F, 0x00, 0x90, 0x00, 0x8D, 0x00, 0x94, 0x00, 0x95, 0x02, 0x54, + 0x00, 0x93, 0x00, 0x9B, 0x00, 0x9C, 0x00, 0x9A, 0x00, 0xF2, 0x01, 0x46, 0x01, 0x4C, 0x00, 0x70, + 0x01, 0x48, 0x01, 0x49, 0x01, 0x4A, 0x00, 0x79, 0x01, 0x4D, 0x01, 0x4B, 0x01, 0x47, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x28, 0x00, 0x28, 0x00, 0x28, 0x00, 0x28, 0x00, 0x3C, 0x00, 0x4E, 0x00, 0x80, + 0x00, 0xBC, 0x01, 0x04, 0x01, 0x44, 0x01, 0x50, 0x01, 0x64, 0x01, 0x78, 0x01, 0x9A, 0x01, 0xAE, + 0x01, 0xBC, 0x01, 0xC8, 0x01, 0xD4, 0x01, 0xE2, 0x02, 0x06, 0x02, 0x20, 0x02, 0x50, 0x02, 0x84, + 0x02, 0xA4, 0x02, 0xD2, 0x03, 0x0A, 0x03, 0x26, 0x03, 0x72, 0x03, 0xAA, 0x03, 0xBC, 0x03, 0xD0, + 0x03, 0xE4, 0x03, 0xF8, 0x04, 0x0C, 0x04, 0x38, 0x04, 0x6E, 0x04, 0x8C, 0x04, 0xBE, 0x04, 0xE4, + 0x05, 0x02, 0x05, 0x18, 0x05, 0x2C, 0x05, 0x5C, 0x05, 0x74, 0x05, 0x80, 0x05, 0xA0, 0x05, 0xBC, + 0x05, 0xCC, 0x05, 0xFC, 0x06, 0x26, 0x06, 0x4A, 0x06, 0x6A, 0x06, 0x9C, 0x06, 0xCA, 0x07, 0x00, + 0x07, 0x12, 0x07, 0x30, 0x07, 0x4A, 0x07, 0x78, 0x07, 0x9C, 0x07, 0xB6, 0x07, 0xE0, 0x07, 0xF2, + 0x08, 0x02, 0x08, 0x14, 0x08, 0x28, 0x08, 0x34, 0x08, 0x42, 0x08, 0x7A, 0x08, 0xAC, 0x08, 0xD2, + 0x09, 0x04, 0x09, 0x32, 0x09, 0x54, 0x09, 0x90, 0x09, 0xB0, 0x09, 0xC4, 0x09, 0xEA, 0x0A, 0x04, + 0x0A, 0x20, 0x0A, 0x52, 0x0A, 0x72, 0x0A, 0x92, 0x0A, 0xC4, 0x0A, 0xF6, 0x0B, 0x14, 0x0B, 0x44, + 0x0B, 0x68, 0x0B, 0x8A, 0x0B, 0xA2, 0x0B, 0xD0, 0x0B, 0xF4, 0x0C, 0x1C, 0x0C, 0x44, 0x0C, 0x80, + 0x0C, 0x8E, 0x0C, 0xCC, 0x0C, 0xEE, 0x0C, 0xEE, 0x0D, 0x02, 0x0D, 0x30, 0x0D, 0x54, 0x0D, 0x7E, + 0x0D, 0xA8, 0x0D, 0xE0, 0x0D, 0xF2, 0x0E, 0x36, 0x0E, 0x6C, 0x0E, 0x86, 0x0E, 0x96, 0x0E, 0xA2, + 0x0E, 0xE6, 0x0E, 0xF4, 0x0F, 0x16, 0x0F, 0x32, 0x0F, 0x5E, 0x0F, 0x8C, 0x0F, 0x9A, 0x0F, 0xC4, + 0x0F, 0xE0, 0x0F, 0xEC, 0x10, 0x0C, 0x10, 0x28, 0x10, 0x52, 0x10, 0x6C, 0x10, 0xA8, 0x10, 0xF0, + 0x11, 0x40, 0x11, 0x6E, 0x11, 0x92, 0x11, 0xB6, 0x11, 0xE0, 0x12, 0x14, 0x12, 0x3E, 0x12, 0x7A, + 0x12, 0x9C, 0x12, 0xD8, 0x12, 0xF6, 0x13, 0x14, 0x13, 0x36, 0x13, 0x58, 0x13, 0x6C, 0x13, 0x80, + 0x13, 0x98, 0x13, 0xB0, 0x13, 0xD6, 0x14, 0x16, 0x14, 0x40, 0x14, 0x6C, 0x14, 0x9C, 0x14, 0xD6, + 0x15, 0x06, 0x15, 0x20, 0x15, 0x5A, 0x15, 0x7E, 0x15, 0xA4, 0x15, 0xCE, 0x15, 0xF8, 0x16, 0x1A, + 0x16, 0x3A, 0x16, 0x78, 0x16, 0xB6, 0x16, 0xF4, 0x17, 0x38, 0x17, 0x88, 0x17, 0xCC, 0x18, 0x22, + 0x18, 0x7A, 0x18, 0xB6, 0x18, 0xEA, 0x19, 0x1E, 0x19, 0x58, 0x19, 0x92, 0x19, 0xA6, 0x19, 0xBA, + 0x19, 0xD4, 0x19, 0xEE, 0x1A, 0x30, 0x1A, 0x68, 0x1A, 0x90, 0x1A, 0xBA, 0x1A, 0xE8, 0x1B, 0x20, + 0x1B, 0x4E, 0x1B, 0x68, 0x1B, 0xA0, 0x1B, 0xC8, 0x1B, 0xF2, 0x1C, 0x20, 0x1C, 0x4E, 0x1C, 0x7E, + 0x1C, 0xAE, 0x1C, 0xE2, 0x1D, 0x06, 0x1D, 0x44, 0x1D, 0x78, 0x1D, 0xC6, 0x1D, 0xF6, 0x1E, 0x40, + 0x1E, 0x6E, 0x1E, 0x9C, 0x1E, 0xCE, 0x1F, 0x00, 0x1F, 0x2C, 0x1F, 0x58, 0x1F, 0x8A, 0x1F, 0xBC, + 0x1F, 0xE8, 0x20, 0x28, 0x20, 0x4E, 0x20, 0x88, 0x20, 0xA4, 0x20, 0xD8, 0x21, 0x04, 0x21, 0x46, + 0x21, 0x62, 0x21, 0x94, 0x21, 0xBC, 0x21, 0xFC, 0x22, 0x20, 0x22, 0x5A, 0x22, 0x96, 0x22, 0xDE, + 0x23, 0x24, 0x23, 0x76, 0x23, 0xAC, 0x23, 0xEE, 0x24, 0x2C, 0x24, 0x76, 0x24, 0x9A, 0x24, 0xC8, + 0x24, 0xEE, 0x25, 0x16, 0x25, 0x38, 0x25, 0x5C, 0x25, 0x70, 0x25, 0x84, 0x25, 0xA6, 0x25, 0xC8, + 0x25, 0xE8, 0x26, 0x10, 0x26, 0x22, 0x26, 0x2E, 0x26, 0x4E, 0x26, 0x80, 0x26, 0xAC, 0x26, 0xD8, + 0x27, 0x02, 0x27, 0x28, 0x27, 0x40, 0x27, 0x58, 0x27, 0x7C, 0x27, 0x98, 0x27, 0xC0, 0x27, 0xDE, + 0x28, 0x08, 0x28, 0x1E, 0x28, 0x40, 0x28, 0x5A, 0x28, 0x7E, 0x28, 0xB0, 0x28, 0xDA, 0x29, 0x12, + 0x29, 0x40, 0x29, 0x78, 0x29, 0xA6, 0x29, 0xD6, 0x2A, 0x0A, 0x2A, 0x38, 0x2A, 0x62, 0x2A, 0x8A, + 0x2A, 0xC4, 0x2A, 0xFA, 0x2B, 0x2C, 0x2B, 0x5C, 0x2B, 0x90, 0x2B, 0xD4, 0x2C, 0x0C, 0x2C, 0x32, + 0x2C, 0x6E, 0x2C, 0x98, 0x2C, 0xD4, 0x2C, 0xFE, 0x2D, 0x3C, 0x2D, 0x74, 0x2D, 0xB6, 0x2D, 0xF4, + 0x2E, 0x3E, 0x2E, 0x86, 0x2E, 0xC8, 0x2F, 0x06, 0x2F, 0x2E, 0x2F, 0x66, 0x2F, 0x84, 0x2F, 0xB6, + 0x2F, 0xD0, 0x2F, 0xFE, 0x30, 0x32, 0x30, 0x6C, 0x30, 0x90, 0x30, 0xB8, 0x30, 0xEC, 0x31, 0x24, + 0x31, 0x62, 0x31, 0xA2, 0x31, 0xCE, 0x31, 0xFE, 0x32, 0x38, 0x32, 0x6C, 0x32, 0xA6, 0x32, 0xE0, + 0x33, 0x06, 0x33, 0x3A, 0x33, 0x60, 0x33, 0x92, 0x33, 0xC2, 0x33, 0xF2, 0x34, 0x20, 0x34, 0x56, + 0x34, 0x8A, 0x34, 0xA8, 0x34, 0xDA, 0x35, 0x1C, 0x35, 0x5A, 0x35, 0x78, 0x35, 0xAA, 0x35, 0xBC, + 0x35, 0xCE, 0x35, 0xEA, 0x35, 0xF6, 0x36, 0x1C, 0x36, 0x3E, 0x36, 0x5A, 0x36, 0x6E, 0x36, 0x8A, + 0x36, 0xAC, 0x36, 0xDC, 0x36, 0xF4, 0x37, 0x2E, 0x37, 0x64, 0x37, 0x70, 0x37, 0x88, 0x37, 0xA8, + 0x37, 0xD8, 0x38, 0x04, 0x38, 0x26, 0x38, 0x4A, 0x38, 0x72, 0x38, 0xAC, 0x38, 0xC2, 0x38, 0xE0, + 0x39, 0x02, 0x39, 0x34, 0x39, 0x44, 0x39, 0x66, 0x39, 0x7C, 0x39, 0xA6, 0x39, 0xDE, 0x3A, 0x00, + 0x3A, 0x38, 0x3A, 0x54, 0x3A, 0x6E, 0x3A, 0x9E, 0x3A, 0xB6, 0x3A, 0xDA, 0x3A, 0xEC, 0x3B, 0x0C, + 0x3B, 0x32, 0x3B, 0x44, 0x3B, 0x6A, 0x3B, 0x9C, 0x3B, 0xC0, 0x3B, 0xD6, 0x3B, 0xF6, 0x3C, 0x0C, + 0x3C, 0x26, 0x3C, 0x48, 0x3C, 0x6E, 0x3C, 0x8C, 0x3C, 0xB6, 0x3C, 0xE4, 0x3D, 0x10, 0x3D, 0x48, + 0x3D, 0x7A, 0x3D, 0xAC, 0x3D, 0xBC, 0x3D, 0xDC, 0x3E, 0x0A, 0x3E, 0x2E, 0x3E, 0x5C, 0x3E, 0x7E, + 0x3E, 0xB6, 0x3E, 0xCE, 0x3E, 0xE8, 0x3F, 0x12, 0x3F, 0x26, 0x3F, 0x46, 0x3F, 0x58, 0x3F, 0x8A, + 0x3F, 0xB0, 0x3F, 0xC2, 0x3F, 0xEA, 0x40, 0x20, 0x40, 0x44, 0x40, 0x5A, 0x40, 0x76, 0x40, 0x8C, + 0x40, 0xA6, 0x40, 0xC8, 0x40, 0xEE, 0x41, 0x0E, 0x41, 0x36, 0x41, 0x60, 0x41, 0x86, 0x41, 0xBA, + 0x41, 0xF4, 0x42, 0x2C, 0x42, 0x44, 0x42, 0x78, 0x42, 0xA8, 0x42, 0xBC, 0x42, 0xD6, 0x42, 0xFC, + 0x43, 0x28, 0x43, 0x4E, 0x43, 0x7A, 0x43, 0x9A, 0x43, 0xC4, 0x44, 0x00, 0x44, 0x16, 0x44, 0x3E, + 0x44, 0x66, 0x44, 0x92, 0x44, 0xBC, 0x44, 0xE0, 0x45, 0x02, 0x45, 0x3E, 0x45, 0x7A, 0x45, 0xA0, + 0x45, 0xC8, 0x45, 0xF4, 0x46, 0x36, 0x46, 0x48, 0x46, 0x58, 0x46, 0x70, 0x46, 0x86, 0x46, 0xAA, + 0x46, 0xCA, 0x46, 0xF8, 0x47, 0x20, 0x47, 0x5A, 0x47, 0x8C, 0x47, 0xAC, 0x47, 0xC8, 0x47, 0xEC, + 0x48, 0x0C, 0x48, 0x30, 0x48, 0x50, 0x48, 0x6E, 0x48, 0x8A, 0x48, 0xA6, 0x48, 0xBE, 0x48, 0xD8, + 0x48, 0xF0, 0x49, 0x18, 0x49, 0x3E, 0x49, 0x84, 0x49, 0xC4, 0x49, 0xEE, 0x4A, 0x16, 0x4A, 0x2C, + 0x4A, 0x42, 0x4A, 0x5C, 0x4A, 0x76, 0x4A, 0x96, 0x4A, 0xB6, 0x4A, 0xDE, 0x4B, 0x06, 0x4B, 0x20, + 0x4B, 0x3A, 0x4B, 0x5E, 0x4B, 0x7E, 0x4B, 0xA6, 0x4B, 0xCC, 0x4B, 0xEA, 0x4C, 0x0A, 0x4C, 0x46, + 0x4C, 0x84, 0x4C, 0xC4, 0x4D, 0x04, 0x4D, 0x10, 0x4D, 0x4E, 0x4D, 0x86, 0x4D, 0xAA, 0x4D, 0xCE, + 0x4D, 0xEE, 0x4E, 0x0E, 0x4E, 0x2E, 0x4E, 0x4C, 0x4E, 0x6A, 0x4E, 0x84, 0x4E, 0xA8, 0x4E, 0xCA, + 0x4F, 0x00, 0x4F, 0x30, 0x4F, 0x3C, 0x4F, 0x6E, 0x4F, 0xBA, 0x4F, 0xE4, 0x50, 0x28, 0x50, 0x4A, + 0x50, 0xA2, 0x50, 0xCC, 0x51, 0x0C, 0x51, 0x38, 0x51, 0x66, 0x51, 0x9E, 0x51, 0xD8, 0x52, 0x0E, + 0x52, 0x40, 0x52, 0x84, 0x52, 0xBE, 0x52, 0xF6, 0x53, 0x2E, 0x53, 0x58, 0x53, 0x82, 0x53, 0xB0, + 0x53, 0xE0, 0x54, 0x10, 0x54, 0x3E, 0x54, 0x6A, 0x54, 0x94, 0x54, 0xCC, 0x55, 0x00, 0x55, 0x38, + 0x55, 0x6C, 0x55, 0x9A, 0x55, 0xCA, 0x55, 0xFE, 0x56, 0x32, 0x56, 0x66, 0x56, 0x9C, 0x56, 0xC8, + 0x56, 0xF0, 0x57, 0x04, 0x57, 0x18, 0x57, 0x4A, 0x57, 0x7E, 0x57, 0x94, 0x57, 0xAA, 0x57, 0xE4, + 0x57, 0xE4, 0x57, 0xF0, 0x57, 0xFC, 0x58, 0x0A, 0x58, 0x18, 0x58, 0x26, 0x58, 0x3A, 0x58, 0x4E, + 0x58, 0x62, 0x58, 0x78, 0x58, 0x94, 0x58, 0xA8, 0x58, 0xC0, 0x59, 0x22, 0x59, 0x32, 0x59, 0x42, + 0x59, 0x50, 0x59, 0x6A, 0x59, 0x8A, 0x59, 0xB8, 0x59, 0xEC, 0x5A, 0x04, 0x5A, 0x48, 0x5A, 0x7C, + 0x5A, 0x96, 0x5A, 0xB0, 0x5A, 0xDC, 0x5B, 0x0A, 0x5B, 0x2A, 0x5B, 0x56, 0x5B, 0x8A, 0x5B, 0xA0, + 0x5B, 0xE4, 0x5C, 0x18, 0x5C, 0x52, 0x5C, 0x9E, 0x5C, 0xCE, 0x5C, 0xDA, 0x5C, 0xEC, 0x5D, 0x1E, + 0x5D, 0x3E, 0x5D, 0x58, 0x5D, 0x72, 0x5D, 0x86, 0x5D, 0xA0, 0x5E, 0x0C, 0x5E, 0x46, 0x5E, 0x72, + 0x5E, 0xAC, 0x5E, 0xF0, 0x5F, 0x40, 0x5F, 0x7E, 0x5F, 0xA2, 0x5F, 0xBC, 0x5F, 0xEC, 0x60, 0x20, + 0x60, 0x40, 0x60, 0x6E, 0x60, 0xA6, 0x60, 0xC2, 0x61, 0x0E, 0x61, 0x46, 0x61, 0x54, 0x61, 0x68, + 0x61, 0x7C, 0x61, 0x8E, 0x61, 0xA0, 0x61, 0xDC, 0x62, 0x1A, 0x62, 0x50, 0x62, 0x6A, 0x62, 0x84, + 0x62, 0x94, 0x62, 0xA4, 0x62, 0xB2, 0x62, 0xC0, 0x62, 0xCC, 0x62, 0xFA, 0x63, 0x0E, 0x63, 0x22, + 0x63, 0x4A, 0x63, 0x64, 0x63, 0x8C, 0x63, 0xBC, 0x63, 0xDC, 0x64, 0x0C, 0x64, 0x44, 0x64, 0x60, + 0x64, 0xAA, 0x64, 0xE0, 0x65, 0x08, 0x65, 0x22, 0x65, 0x4A, 0x65, 0x7C, 0x65, 0x9C, 0x65, 0xCC, + 0x66, 0x04, 0x66, 0x20, 0x66, 0x6A, 0x66, 0xA0, 0x66, 0xDC, 0x67, 0x08, 0x67, 0x2C, 0x67, 0x56, + 0x67, 0x86, 0x67, 0xBC, 0x67, 0xD6, 0x67, 0xF2, 0x68, 0x1E, 0x68, 0x4C, 0x68, 0x6C, 0x68, 0x9A, + 0x68, 0xCE, 0x68, 0xE6, 0x69, 0x2A, 0x69, 0x5E, 0x69, 0x78, 0x69, 0x92, 0x69, 0xBE, 0x69, 0xEC, + 0x6A, 0x0C, 0x6A, 0x38, 0x6A, 0x6C, 0x6A, 0x82, 0x6A, 0xC6, 0x6A, 0xFA, 0x6B, 0x2A, 0x6B, 0x66, + 0x6B, 0x8C, 0x6B, 0xAE, 0x6B, 0xE4, 0x6B, 0xFE, 0x6C, 0x16, 0x6C, 0x36, 0x6C, 0x68, 0x6C, 0x8E, + 0x6C, 0xC2, 0x6C, 0xFA, 0x6D, 0x24, 0x6D, 0x4C, 0x6D, 0x78, 0x6D, 0xBC, 0x6D, 0xF2, 0x6E, 0x14, + 0x6E, 0x2C, 0x6E, 0x4E, 0x6E, 0x66, 0x6E, 0x8C, 0x6E, 0xB2, 0x6E, 0xD0, 0x6E, 0xEE, 0x00, 0x00, + 0x00, 0x05, 0x00, 0x05, 0x00, 0x00, 0x01, 0xF9, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x06, 0x00, 0x09, + 0x00, 0x0C, 0x00, 0x0F, 0x00, 0x00, 0x33, 0x11, 0x21, 0x11, 0x03, 0x13, 0x21, 0x13, 0x17, 0x11, + 0x01, 0x13, 0x03, 0x13, 0x21, 0x03, 0x05, 0x01, 0xF4, 0xFA, 0xAA, 0xFE, 0xAC, 0xC8, 0xAA, 0xFE, + 0x70, 0xAA, 0xAA, 0x1E, 0x01, 0x54, 0xAA, 0x02, 0xBC, 0xFD, 0x44, 0x01, 0x8B, 0x00, 0xFF, 0xFE, + 0xD4, 0xFF, 0x01, 0xFE, 0xFE, 0x02, 0x00, 0xFF, 0x00, 0xFF, 0xFD, 0xD5, 0x00, 0xFF, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x4E, 0x00, 0x00, 0x00, 0xD1, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x37, 0x03, 0x33, 0x03, 0x07, 0x35, 0x33, 0x15, 0x58, 0x0A, 0x83, 0x0A, 0x75, 0x7B, 0xCD, 0x01, + 0xF9, 0xFE, 0x07, 0xCD, 0x77, 0x77, 0x00, 0x00, 0x00, 0x02, 0x00, 0x45, 0x02, 0x02, 0x01, 0x44, + 0x02, 0xD3, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x13, 0x35, 0x33, 0x15, 0x23, 0x35, 0x33, 0x15, + 0xE6, 0x5E, 0xFF, 0x5F, 0x02, 0x02, 0xD1, 0xD1, 0xD1, 0xD1, 0x00, 0x00, 0x00, 0x02, 0x00, 0x27, + 0x00, 0x00, 0x02, 0xA3, 0x02, 0xC6, 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x00, 0x33, 0x37, 0x23, 0x37, + 0x33, 0x37, 0x23, 0x37, 0x33, 0x37, 0x33, 0x07, 0x33, 0x37, 0x33, 0x07, 0x33, 0x07, 0x23, 0x07, + 0x33, 0x07, 0x23, 0x07, 0x23, 0x37, 0x23, 0x07, 0x13, 0x33, 0x37, 0x23, 0x7E, 0x20, 0x77, 0x10, + 0x77, 0x19, 0x76, 0x0F, 0x76, 0x23, 0x66, 0x23, 0x88, 0x23, 0x66, 0x23, 0x79, 0x10, 0x78, 0x19, + 0x77, 0x0F, 0x77, 0x21, 0x66, 0x21, 0x89, 0x20, 0x30, 0x88, 0x19, 0x89, 0xBB, 0x5B, 0x8C, 0x5C, + 0xC8, 0xC8, 0xC8, 0xC8, 0x5C, 0x8C, 0x5B, 0xBB, 0xBB, 0xBB, 0x01, 0x16, 0x8C, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x35, 0xFF, 0x9B, 0x02, 0x14, 0x03, 0x2B, 0x00, 0x2A, 0x00, 0x00, 0x3F, 0x01, + 0x1E, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x03, 0x35, 0x34, 0x36, 0x37, 0x35, 0x33, 0x15, + 0x16, 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x1E, 0x04, 0x15, 0x14, 0x06, 0x07, + 0x15, 0x23, 0x35, 0x26, 0x35, 0x45, 0x22, 0x61, 0x2E, 0x2C, 0x3C, 0x46, 0x63, 0x63, 0x46, 0x68, + 0x54, 0x55, 0x68, 0x48, 0x38, 0x1F, 0x55, 0x28, 0x2E, 0x3E, 0x32, 0x4B, 0x58, 0x4B, 0x32, 0x68, + 0x5A, 0x55, 0x7C, 0x55, 0x61, 0x20, 0x2B, 0x2D, 0x29, 0x21, 0x33, 0x29, 0x32, 0x58, 0x3C, 0x4D, + 0x6E, 0x0E, 0x5E, 0x5C, 0x08, 0x41, 0x69, 0x1B, 0x23, 0x30, 0x25, 0x1B, 0x2D, 0x1D, 0x2A, 0x2D, + 0x51, 0x35, 0x4F, 0x72, 0x0C, 0x5C, 0x5C, 0x0E, 0x00, 0x05, 0x00, 0x2B, 0xFF, 0xF4, 0x02, 0xF5, + 0x02, 0xD2, 0x00, 0x0A, 0x00, 0x0E, 0x00, 0x18, 0x00, 0x21, 0x00, 0x2B, 0x00, 0x00, 0x00, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x09, 0x01, 0x33, 0x01, 0x02, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x22, 0x06, 0x15, 0x14, 0x00, 0x34, 0x36, 0x33, 0x32, 0x16, 0x14, 0x06, 0x22, + 0x37, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x01, 0x12, 0x88, 0x5F, 0x5F, 0x44, + 0x43, 0x61, 0xFE, 0xD2, 0x02, 0x21, 0x75, 0xFD, 0xDF, 0x07, 0x38, 0x27, 0x27, 0x38, 0x26, 0x01, + 0x23, 0x5F, 0x44, 0x43, 0x60, 0x5F, 0x88, 0x02, 0x26, 0x38, 0x27, 0x27, 0x38, 0x26, 0x01, 0x96, + 0x5C, 0x42, 0x41, 0x5D, 0x5D, 0x41, 0x42, 0xFE, 0x0E, 0x02, 0xC6, 0xFD, 0x3A, 0x01, 0xF2, 0x26, + 0x1C, 0x1B, 0x27, 0x27, 0x1B, 0x1C, 0xFE, 0x38, 0x82, 0x5D, 0x5D, 0x82, 0x5C, 0x9E, 0x1C, 0x26, + 0x26, 0x1C, 0x1B, 0x27, 0x27, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x33, 0xFF, 0xF4, 0x02, 0x8C, + 0x02, 0xD2, 0x00, 0x22, 0x00, 0x2D, 0x00, 0x00, 0x37, 0x34, 0x36, 0x37, 0x35, 0x2E, 0x01, 0x35, + 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x3B, 0x01, 0x35, + 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x3D, 0x01, 0x23, 0x22, 0x06, 0x33, 0x41, 0x37, 0x29, 0x31, 0x7F, 0x62, 0x28, 0x35, 0x1F, + 0x15, 0x1A, 0x30, 0x3D, 0x32, 0x39, 0x72, 0x7F, 0x5C, 0x5C, 0x88, 0x78, 0x71, 0x8C, 0x84, 0x43, + 0x36, 0x3E, 0x43, 0x78, 0x3D, 0x45, 0xC9, 0x3B, 0x63, 0x13, 0x02, 0x13, 0x52, 0x36, 0x5A, 0x61, + 0x0C, 0x66, 0x06, 0x32, 0x2D, 0x25, 0x39, 0x5C, 0x5C, 0x70, 0x54, 0x6E, 0x83, 0x79, 0x64, 0x2C, + 0x3B, 0x42, 0x40, 0x4D, 0x35, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x45, 0x02, 0x02, 0x00, 0xA5, + 0x02, 0xD3, 0x00, 0x03, 0x00, 0x00, 0x13, 0x35, 0x33, 0x15, 0x45, 0x60, 0x02, 0x02, 0xD1, 0xD1, + 0x00, 0x01, 0x00, 0x30, 0xFF, 0xA1, 0x01, 0x12, 0x02, 0xE5, 0x00, 0x09, 0x00, 0x00, 0x17, 0x26, + 0x35, 0x34, 0x37, 0x33, 0x06, 0x15, 0x14, 0x17, 0xA7, 0x77, 0x77, 0x6B, 0x71, 0x71, 0x5F, 0xC3, + 0xF3, 0xD2, 0xBC, 0xBE, 0xD1, 0xE2, 0xD3, 0x00, 0x00, 0x01, 0x00, 0x22, 0xFF, 0xA1, 0x01, 0x04, + 0x02, 0xE5, 0x00, 0x09, 0x00, 0x00, 0x17, 0x36, 0x35, 0x34, 0x27, 0x33, 0x16, 0x15, 0x14, 0x07, + 0x22, 0x71, 0x71, 0x6B, 0x77, 0x77, 0x5F, 0xD3, 0xE2, 0xD1, 0xBE, 0xBC, 0xD2, 0xF3, 0xC3, 0x00, + 0x00, 0x01, 0x00, 0x2C, 0x01, 0x41, 0x01, 0xC4, 0x02, 0xC6, 0x00, 0x11, 0x00, 0x00, 0x13, 0x27, + 0x37, 0x35, 0x27, 0x37, 0x17, 0x27, 0x33, 0x07, 0x37, 0x17, 0x07, 0x15, 0x17, 0x07, 0x27, 0x23, + 0xB2, 0x5C, 0x54, 0x7E, 0x22, 0x79, 0x09, 0x73, 0x0A, 0x7A, 0x23, 0x7F, 0x54, 0x5C, 0x45, 0x02, + 0x01, 0x41, 0x42, 0x64, 0x02, 0x1F, 0x6C, 0x31, 0x83, 0x83, 0x31, 0x6B, 0x20, 0x02, 0x63, 0x43, + 0x6E, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x19, 0x00, 0x00, 0x02, 0x31, 0x02, 0x3C, 0x00, 0x0B, + 0x00, 0x00, 0x37, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x19, 0xD9, + 0x67, 0xD8, 0xD8, 0x67, 0xEC, 0x63, 0xED, 0xED, 0x63, 0xEC, 0xEC, 0x00, 0x00, 0x01, 0x00, 0x19, + 0xFF, 0x97, 0x00, 0xDB, 0x00, 0x81, 0x00, 0x03, 0x00, 0x00, 0x17, 0x37, 0x33, 0x07, 0x19, 0x44, + 0x7E, 0x61, 0x69, 0xEA, 0xEA, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x42, 0x00, 0xE6, 0x01, 0x6E, + 0x01, 0x55, 0x00, 0x03, 0x00, 0x00, 0x37, 0x35, 0x21, 0x15, 0x42, 0x01, 0x2C, 0xE6, 0x6F, 0x6F, + 0x00, 0x01, 0x00, 0x42, 0x00, 0x00, 0x00, 0xC1, 0x00, 0x80, 0x00, 0x03, 0x00, 0x00, 0x33, 0x35, + 0x33, 0x15, 0x42, 0x7F, 0x80, 0x80, 0x00, 0x00, 0x00, 0x01, 0x00, 0x21, 0xFF, 0xD6, 0x01, 0x8D, + 0x02, 0xEA, 0x00, 0x03, 0x00, 0x00, 0x17, 0x01, 0x33, 0x03, 0x21, 0x00, 0xFF, 0x6D, 0xFF, 0x2A, + 0x03, 0x14, 0xFC, 0xEC, 0x00, 0x02, 0x00, 0x38, 0xFF, 0xF4, 0x02, 0x3B, 0x02, 0xD2, 0x00, 0x0E, + 0x00, 0x14, 0x00, 0x00, 0x04, 0x22, 0x2E, 0x02, 0x34, 0x3E, 0x02, 0x33, 0x20, 0x11, 0x14, 0x0E, + 0x01, 0x24, 0x32, 0x35, 0x34, 0x22, 0x15, 0x01, 0x80, 0x8C, 0x67, 0x3A, 0x1B, 0x1B, 0x3A, 0x66, + 0x47, 0x01, 0x01, 0x1B, 0x39, 0xFE, 0xD6, 0xFA, 0xFA, 0x0C, 0x38, 0x68, 0x80, 0xA0, 0x80, 0x66, + 0x38, 0xFE, 0x92, 0x50, 0x80, 0x68, 0x3E, 0xFA, 0xF7, 0xF7, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2D, + 0x00, 0x00, 0x01, 0xEA, 0x02, 0xC6, 0x00, 0x0E, 0x00, 0x00, 0x33, 0x35, 0x33, 0x11, 0x37, 0x23, + 0x06, 0x0F, 0x01, 0x27, 0x37, 0x33, 0x11, 0x33, 0x15, 0x38, 0x9B, 0x01, 0x02, 0x09, 0x17, 0x39, + 0x4C, 0xB2, 0x71, 0x9A, 0x6F, 0x01, 0x8A, 0x30, 0x11, 0x17, 0x36, 0x50, 0xAB, 0xFD, 0xA9, 0x6F, + 0x00, 0x01, 0x00, 0x34, 0x00, 0x00, 0x02, 0x11, 0x02, 0xD2, 0x00, 0x21, 0x00, 0x00, 0x33, 0x26, + 0x35, 0x34, 0x3E, 0x05, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x3E, 0x01, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x0E, 0x05, 0x07, 0x21, 0x15, 0x3A, 0x06, 0x25, 0x3A, 0x47, 0x47, 0x3A, 0x25, + 0x3E, 0x2E, 0x27, 0x44, 0x15, 0x60, 0x22, 0x78, 0x51, 0x61, 0x86, 0x23, 0x38, 0x45, 0x44, 0x3A, + 0x25, 0x01, 0x01, 0x4F, 0x22, 0x1D, 0x34, 0x5A, 0x41, 0x38, 0x30, 0x2E, 0x35, 0x1C, 0x2D, 0x36, + 0x30, 0x24, 0x40, 0x3E, 0x50, 0x71, 0x61, 0x2E, 0x51, 0x3A, 0x34, 0x2C, 0x2B, 0x32, 0x1B, 0x6F, + 0x00, 0x01, 0x00, 0x26, 0xFF, 0xF4, 0x02, 0x0B, 0x02, 0xC6, 0x00, 0x21, 0x00, 0x00, 0x3F, 0x01, + 0x1E, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x27, 0x37, 0x3E, 0x01, 0x3F, 0x01, + 0x35, 0x06, 0x2B, 0x01, 0x35, 0x21, 0x15, 0x07, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, + 0x26, 0x42, 0x1E, 0x57, 0x2D, 0x37, 0x48, 0x55, 0x43, 0x31, 0x1C, 0x82, 0x0C, 0x19, 0x07, 0x07, + 0x16, 0x29, 0xD4, 0x01, 0xB1, 0xAD, 0x50, 0x71, 0x88, 0x72, 0x41, 0x7D, 0x53, 0x63, 0x1F, 0x29, + 0x3C, 0x2E, 0x36, 0x38, 0x42, 0x9A, 0x0F, 0x1B, 0x06, 0x06, 0x02, 0x03, 0x6F, 0x51, 0xC9, 0x0B, + 0x6D, 0x57, 0x60, 0x89, 0x31, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1E, 0x00, 0x00, 0x02, 0x45, + 0x02, 0xC6, 0x00, 0x0A, 0x00, 0x12, 0x00, 0x00, 0x37, 0x35, 0x01, 0x33, 0x11, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x35, 0x27, 0x33, 0x35, 0x37, 0x23, 0x06, 0x0F, 0x01, 0x1E, 0x01, 0x33, 0x98, 0x5C, + 0x5C, 0x7F, 0xC4, 0xC4, 0x05, 0x02, 0x10, 0x13, 0xA4, 0xB7, 0x4F, 0x01, 0xC0, 0xFE, 0x5C, 0x6B, + 0xB7, 0xB7, 0x6B, 0xDC, 0x4A, 0x26, 0x1B, 0xE3, 0x00, 0x01, 0x00, 0x2C, 0xFF, 0xF4, 0x02, 0x10, + 0x02, 0xC6, 0x00, 0x1D, 0x00, 0x00, 0x3F, 0x01, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x22, 0x07, 0x27, 0x13, 0x21, 0x15, 0x21, 0x0F, 0x01, 0x33, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x23, 0x22, 0x26, 0x2C, 0x43, 0x41, 0x56, 0x36, 0x4F, 0x50, 0x3E, 0x3B, 0x33, 0x48, 0x21, + 0x01, 0x76, 0xFE, 0xFA, 0x0B, 0x05, 0x02, 0x1E, 0x2E, 0x72, 0x88, 0x92, 0x6E, 0x41, 0x78, 0x54, + 0x61, 0x47, 0x43, 0x36, 0x37, 0x44, 0x1E, 0x1A, 0x01, 0x68, 0x6F, 0x75, 0x21, 0x10, 0x86, 0x63, + 0x69, 0x8B, 0x32, 0x00, 0x00, 0x02, 0x00, 0x34, 0xFF, 0xF4, 0x02, 0x30, 0x02, 0xD2, 0x00, 0x19, + 0x00, 0x25, 0x00, 0x00, 0x13, 0x34, 0x3E, 0x03, 0x33, 0x32, 0x17, 0x07, 0x26, 0x23, 0x22, 0x06, + 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x14, 0x06, 0x23, 0x22, 0x26, 0x05, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x34, 0x19, 0x36, 0x4B, 0x6D, 0x40, 0x53, 0x3F, + 0x26, 0x28, 0x3D, 0x4E, 0x60, 0x0E, 0x02, 0x12, 0x4C, 0x27, 0x66, 0x7D, 0x82, 0x67, 0x74, 0x9F, + 0x01, 0x14, 0x2F, 0x3A, 0x45, 0x3D, 0x31, 0x44, 0x54, 0x01, 0x44, 0x39, 0x70, 0x67, 0x4F, 0x2F, + 0x1E, 0x6F, 0x16, 0x6E, 0x50, 0x16, 0x1C, 0x8A, 0xC8, 0x89, 0xB6, 0x40, 0x44, 0x33, 0x39, 0x4B, + 0x2B, 0x25, 0x3E, 0x6D, 0x00, 0x01, 0x00, 0x26, 0x00, 0x00, 0x02, 0x0E, 0x02, 0xC6, 0x00, 0x0D, + 0x00, 0x00, 0x33, 0x01, 0x3E, 0x01, 0x3F, 0x01, 0x35, 0x06, 0x23, 0x21, 0x35, 0x21, 0x15, 0x01, + 0x51, 0x01, 0x0A, 0x0A, 0x15, 0x05, 0x05, 0x0B, 0x24, 0xFE, 0xD1, 0x01, 0xE8, 0xFE, 0xC9, 0x02, + 0x16, 0x14, 0x20, 0x06, 0x07, 0x02, 0x02, 0x6F, 0x5A, 0xFD, 0x94, 0x00, 0x00, 0x03, 0x00, 0x32, + 0xFF, 0xF4, 0x02, 0x2A, 0x02, 0xD2, 0x00, 0x14, 0x00, 0x26, 0x00, 0x34, 0x00, 0x00, 0x37, 0x34, + 0x3E, 0x02, 0x37, 0x26, 0x34, 0x36, 0x33, 0x32, 0x16, 0x14, 0x07, 0x16, 0x15, 0x14, 0x06, 0x23, + 0x22, 0x26, 0x01, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x1E, 0x07, 0x07, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x03, 0x27, 0x06, 0x32, 0x18, 0x28, 0x1D, 0x0F, 0x4A, + 0x76, 0x6E, 0x65, 0x81, 0x4F, 0x5B, 0x89, 0x72, 0x70, 0x8D, 0x01, 0x3D, 0x31, 0x3B, 0x30, 0x2E, + 0x34, 0x05, 0x0D, 0x09, 0x19, 0x0D, 0x21, 0x0D, 0x28, 0xB4, 0x48, 0x31, 0x33, 0x45, 0x11, 0x2B, + 0x1E, 0x46, 0x0E, 0x43, 0xCD, 0x23, 0x40, 0x2F, 0x1B, 0x0B, 0x39, 0xA2, 0x72, 0x6A, 0xB4, 0x57, + 0x3A, 0x5C, 0x56, 0x7D, 0x7D, 0x01, 0x1C, 0x3C, 0x3B, 0x2A, 0x31, 0x2E, 0x24, 0x0B, 0x13, 0x13, + 0x0D, 0x10, 0x09, 0x10, 0x05, 0x12, 0xB8, 0x30, 0x41, 0x39, 0x2D, 0x13, 0x1E, 0x1D, 0x10, 0x1E, + 0x07, 0x39, 0x00, 0x00, 0x00, 0x02, 0x00, 0x2B, 0xFF, 0xF4, 0x02, 0x27, 0x02, 0xD2, 0x00, 0x1A, + 0x00, 0x26, 0x00, 0x00, 0x3F, 0x01, 0x16, 0x33, 0x32, 0x36, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x03, 0x23, 0x22, 0x13, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x4F, 0x26, 0x30, 0x34, 0x4E, 0x60, 0x0F, + 0x02, 0x12, 0x4C, 0x27, 0x66, 0x7E, 0x82, 0x68, 0x74, 0x9E, 0x19, 0x36, 0x4B, 0x6D, 0x40, 0x54, + 0xA1, 0x30, 0x45, 0x55, 0x37, 0x31, 0x3A, 0x45, 0x12, 0x6F, 0x17, 0x6D, 0x51, 0x16, 0x1C, 0x8B, + 0x63, 0x64, 0x8A, 0xB6, 0x9B, 0x39, 0x70, 0x67, 0x4E, 0x2F, 0x01, 0x6C, 0x2D, 0x20, 0x43, 0x6B, + 0x43, 0x34, 0x39, 0x4B, 0x00, 0x02, 0x00, 0x42, 0x00, 0x00, 0x00, 0xC0, 0x01, 0xFE, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x00, 0x13, 0x35, 0x33, 0x15, 0x03, 0x35, 0x33, 0x15, 0x42, 0x7E, 0x7E, 0x7E, + 0x01, 0x7F, 0x7F, 0x7F, 0xFE, 0x81, 0x7F, 0x7F, 0x00, 0x02, 0x00, 0x27, 0xFF, 0x97, 0x00, 0xDF, + 0x01, 0xFE, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x13, 0x35, 0x33, 0x15, 0x03, 0x37, 0x33, 0x07, + 0x64, 0x7B, 0xB8, 0x3A, 0x7E, 0x57, 0x01, 0x7F, 0x7F, 0x7F, 0xFE, 0x18, 0xEA, 0xEA, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x27, 0x00, 0x1F, 0x02, 0x08, 0x02, 0x1D, 0x00, 0x07, 0x00, 0x00, 0x37, 0x35, + 0x25, 0x15, 0x05, 0x15, 0x05, 0x15, 0x27, 0x01, 0xE1, 0xFE, 0xA5, 0x01, 0x5B, 0xF5, 0x52, 0xD6, + 0x6F, 0x8F, 0x02, 0x8F, 0x6F, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x31, 0x00, 0x86, 0x02, 0x19, + 0x01, 0xB5, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x13, 0x35, 0x21, 0x15, 0x05, 0x35, 0x21, 0x15, + 0x31, 0x01, 0xE8, 0xFE, 0x18, 0x01, 0xE8, 0x01, 0x53, 0x62, 0x62, 0xCD, 0x62, 0x62, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x41, 0x00, 0x1F, 0x02, 0x22, 0x02, 0x1D, 0x00, 0x07, 0x00, 0x00, 0x37, 0x35, + 0x25, 0x35, 0x25, 0x35, 0x05, 0x15, 0x41, 0x01, 0x5B, 0xFE, 0xA5, 0x01, 0xE1, 0x1F, 0x6F, 0x8F, + 0x02, 0x8F, 0x6F, 0xD6, 0x52, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x23, 0x00, 0x00, 0x01, 0xBA, + 0x02, 0xD4, 0x00, 0x19, 0x00, 0x1D, 0x00, 0x00, 0x37, 0x35, 0x34, 0x3E, 0x03, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x07, 0x27, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x03, 0x1D, 0x01, 0x07, 0x35, + 0x33, 0x15, 0x91, 0x22, 0x30, 0x30, 0x22, 0x38, 0x29, 0x37, 0x33, 0x47, 0x4C, 0x70, 0x59, 0x82, + 0x24, 0x34, 0x33, 0x24, 0x7B, 0x7B, 0xCD, 0x30, 0x28, 0x42, 0x2C, 0x29, 0x33, 0x1D, 0x23, 0x30, + 0x2A, 0x57, 0x48, 0x67, 0x55, 0x2E, 0x4A, 0x30, 0x2B, 0x34, 0x1D, 0x27, 0xCD, 0x77, 0x77, 0x00, + 0x00, 0x02, 0x00, 0x34, 0xFF, 0x81, 0x03, 0x08, 0x02, 0x65, 0x00, 0x1D, 0x00, 0x25, 0x00, 0x00, + 0x37, 0x34, 0x36, 0x33, 0x32, 0x16, 0x1D, 0x01, 0x33, 0x15, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, + 0x3B, 0x01, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x15, 0x22, 0x26, 0x24, 0x14, + 0x16, 0x3B, 0x01, 0x35, 0x23, 0x22, 0x34, 0xD9, 0x9F, 0x8F, 0x84, 0x49, 0xFE, 0xEB, 0x61, 0x76, + 0x75, 0x62, 0x55, 0x01, 0x55, 0x42, 0x6B, 0x94, 0x95, 0x7B, 0xB0, 0xDD, 0x01, 0x67, 0x35, 0x2B, + 0x4D, 0x4B, 0x2C, 0xF0, 0x9C, 0xD9, 0x7A, 0x60, 0xFA, 0x5B, 0x6E, 0x4C, 0x4B, 0x6C, 0x27, 0x31, + 0xA2, 0x6D, 0x71, 0x9B, 0x63, 0xD2, 0xC9, 0x52, 0x39, 0xC4, 0x00, 0x00, 0x00, 0x02, 0x00, 0x08, + 0x00, 0x00, 0x02, 0x82, 0x02, 0xC6, 0x00, 0x07, 0x00, 0x0E, 0x00, 0x00, 0x33, 0x13, 0x33, 0x13, + 0x23, 0x27, 0x23, 0x07, 0x13, 0x33, 0x2F, 0x01, 0x23, 0x06, 0x07, 0x08, 0xF9, 0x88, 0xF9, 0x84, + 0x3D, 0xF9, 0x3C, 0x5C, 0xB9, 0x3F, 0x1C, 0x02, 0x10, 0x0C, 0x02, 0xC6, 0xFD, 0x3A, 0xB6, 0xB6, + 0x01, 0x1F, 0xBE, 0x6E, 0x46, 0x28, 0x00, 0x00, 0x00, 0x03, 0x00, 0x56, 0x00, 0x00, 0x02, 0x4C, + 0x02, 0xC6, 0x00, 0x0F, 0x00, 0x18, 0x00, 0x21, 0x00, 0x00, 0x33, 0x11, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x07, 0x15, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x23, 0x03, 0x33, 0x32, 0x36, 0x35, 0x34, + 0x26, 0x2B, 0x01, 0x11, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x56, 0xFD, 0x63, 0x79, + 0x2E, 0x28, 0x38, 0x3B, 0x8C, 0x69, 0x80, 0x7D, 0x29, 0x2F, 0x2F, 0x2B, 0x7B, 0x8A, 0x30, 0x37, + 0x37, 0x30, 0x8A, 0x02, 0xC6, 0x61, 0x56, 0x32, 0x50, 0x16, 0x02, 0x10, 0x5E, 0x39, 0x65, 0x69, + 0x01, 0xA4, 0x33, 0x28, 0x27, 0x31, 0xFE, 0x18, 0x39, 0x2E, 0x2D, 0x39, 0x00, 0x01, 0x00, 0x2D, + 0xFF, 0xF4, 0x02, 0xB3, 0x02, 0xD2, 0x00, 0x16, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x17, + 0x07, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x37, 0x17, 0x06, 0x23, 0x22, + 0x26, 0x2D, 0xCE, 0x9F, 0xA2, 0x64, 0x3E, 0x27, 0x69, 0x32, 0x70, 0x7E, 0x80, 0x6F, 0x72, 0x5C, + 0x44, 0x71, 0xA6, 0xA5, 0xCA, 0x01, 0x66, 0x9C, 0xD0, 0x61, 0x60, 0x21, 0x2A, 0x8C, 0x68, 0x69, + 0x95, 0x5A, 0x5D, 0x73, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0xB2, + 0x02, 0xC6, 0x00, 0x07, 0x00, 0x10, 0x00, 0x00, 0x33, 0x11, 0x33, 0x32, 0x16, 0x10, 0x06, 0x23, + 0x27, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x56, 0xF2, 0xA6, 0xC4, 0xC4, 0xA6, 0x71, + 0x6A, 0x6E, 0x7E, 0x7F, 0x6D, 0x6A, 0x02, 0xC6, 0xBC, 0xFE, 0xB4, 0xBE, 0x6F, 0x7F, 0x76, 0x74, + 0x7F, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x56, 0x00, 0x00, 0x02, 0x0F, 0x02, 0xC6, 0x00, 0x0B, + 0x00, 0x00, 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x56, 0x01, + 0xA9, 0xFE, 0xD8, 0xEF, 0xEF, 0x01, 0x38, 0x02, 0xC6, 0x6F, 0xBA, 0x6F, 0xBF, 0x6F, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x56, 0x00, 0x00, 0x01, 0xEE, 0x02, 0xC6, 0x00, 0x09, 0x00, 0x00, 0x33, 0x11, + 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x11, 0x56, 0x01, 0x98, 0xFE, 0xE9, 0xEB, 0xEB, 0x02, + 0xC6, 0x6F, 0xC9, 0x6F, 0xFE, 0xE1, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2D, 0xFF, 0xF4, 0x02, 0xC6, + 0x02, 0xD2, 0x00, 0x1F, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, + 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x37, 0x35, 0x23, 0x35, 0x33, 0x11, 0x23, 0x35, 0x37, + 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x2D, 0xD1, 0x9D, 0xA0, 0x68, 0x40, 0x21, 0x6A, 0x32, 0x73, + 0x81, 0x88, 0x66, 0x65, 0x4D, 0x6D, 0xE1, 0x6E, 0x01, 0x02, 0x23, 0x6F, 0x3C, 0x91, 0xCB, 0x01, + 0x64, 0x9B, 0xD3, 0x5A, 0x60, 0x1E, 0x26, 0x8C, 0x68, 0x71, 0x8D, 0x4A, 0x53, 0x6F, 0xFE, 0x8A, + 0x22, 0x1E, 0x22, 0x2A, 0xCD, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x56, 0x00, 0x00, 0x02, 0x9C, + 0x02, 0xC6, 0x00, 0x0B, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x23, 0x11, + 0x21, 0x11, 0x56, 0x81, 0x01, 0x45, 0x80, 0x80, 0xFE, 0xBB, 0x02, 0xC6, 0xFE, 0xD3, 0x01, 0x2D, + 0xFD, 0x3A, 0x01, 0x2A, 0xFE, 0xD6, 0x00, 0x00, 0x00, 0x01, 0x00, 0x56, 0x00, 0x00, 0x00, 0xD7, + 0x02, 0xC6, 0x00, 0x03, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x56, 0x81, 0x02, 0xC6, 0xFD, 0x3A, + 0x00, 0x01, 0x00, 0x18, 0xFF, 0xF4, 0x01, 0xD2, 0x02, 0xC6, 0x00, 0x13, 0x00, 0x00, 0x37, 0x35, + 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x23, 0x35, 0x21, 0x11, 0x14, 0x06, 0x23, + 0x22, 0x26, 0x18, 0x80, 0x2E, 0x2F, 0x29, 0x34, 0xB8, 0x01, 0x38, 0x83, 0x5A, 0x5B, 0x82, 0xD2, + 0x29, 0x21, 0x30, 0x40, 0x34, 0x36, 0x01, 0x83, 0x6F, 0xFE, 0x0C, 0x6D, 0x71, 0x72, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x56, 0x00, 0x00, 0x02, 0x72, 0x02, 0xC6, 0x00, 0x0D, 0x00, 0x00, 0x33, 0x11, + 0x33, 0x11, 0x33, 0x13, 0x33, 0x03, 0x15, 0x13, 0x23, 0x03, 0x23, 0x11, 0x56, 0x81, 0x5C, 0xA7, + 0x8C, 0xC9, 0xD5, 0x92, 0xAD, 0x5C, 0x02, 0xC6, 0xFE, 0xDF, 0x01, 0x21, 0xFE, 0xAE, 0x02, 0xFE, + 0x8E, 0x01, 0x36, 0xFE, 0xCA, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x56, 0x00, 0x00, 0x02, 0x0A, + 0x02, 0xC6, 0x00, 0x05, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x21, 0x15, 0x56, 0x81, 0x01, 0x33, + 0x02, 0xC6, 0xFD, 0xA9, 0x6F, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x3B, 0x00, 0x00, 0x03, 0x21, + 0x02, 0xC6, 0x00, 0x1B, 0x00, 0x00, 0x33, 0x13, 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, + 0x13, 0x23, 0x03, 0x26, 0x34, 0x37, 0x35, 0x23, 0x06, 0x07, 0x03, 0x23, 0x03, 0x27, 0x23, 0x16, + 0x07, 0x03, 0x3B, 0x3A, 0x89, 0x8C, 0x23, 0x02, 0x13, 0x10, 0x8C, 0x89, 0x3A, 0x81, 0x1D, 0x02, + 0x01, 0x02, 0x17, 0x10, 0x73, 0x70, 0x73, 0x27, 0x02, 0x03, 0x04, 0x1D, 0x02, 0xC6, 0xFE, 0xA1, + 0x68, 0x3E, 0x2A, 0x01, 0x5F, 0xFD, 0x3A, 0x01, 0x8D, 0x15, 0x37, 0x11, 0x11, 0x45, 0x29, 0xFE, + 0xED, 0x01, 0x13, 0x6F, 0x40, 0x2F, 0xFE, 0x73, 0x00, 0x01, 0x00, 0x56, 0x00, 0x00, 0x02, 0x9A, + 0x02, 0xC6, 0x00, 0x17, 0x00, 0x00, 0x33, 0x11, 0x33, 0x01, 0x1E, 0x01, 0x1F, 0x01, 0x33, 0x26, + 0x35, 0x11, 0x33, 0x11, 0x23, 0x01, 0x2E, 0x01, 0x2F, 0x01, 0x23, 0x16, 0x15, 0x11, 0x56, 0x81, + 0x01, 0x0D, 0x0C, 0x1D, 0x09, 0x09, 0x02, 0x07, 0x80, 0x80, 0xFE, 0xF3, 0x0C, 0x1D, 0x09, 0x09, + 0x02, 0x07, 0x02, 0xC6, 0xFE, 0x66, 0x13, 0x37, 0x12, 0x12, 0x44, 0x2A, 0x01, 0x9A, 0xFD, 0x3A, + 0x01, 0x99, 0x13, 0x37, 0x12, 0x12, 0x44, 0x2A, 0xFE, 0x67, 0x00, 0x00, 0x00, 0x02, 0x00, 0x2C, + 0xFF, 0xF4, 0x03, 0x0A, 0x02, 0xD2, 0x00, 0x09, 0x00, 0x13, 0x00, 0x00, 0x13, 0x34, 0x36, 0x20, + 0x16, 0x15, 0x14, 0x06, 0x20, 0x26, 0x37, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, + 0x2C, 0xCF, 0x01, 0x40, 0xCF, 0xCF, 0xFE, 0xC0, 0xCF, 0x85, 0x85, 0xCA, 0x85, 0x85, 0xCA, 0x85, + 0x01, 0x68, 0x9A, 0xD0, 0xD0, 0x9A, 0x9E, 0xD6, 0xD6, 0x9E, 0x6D, 0x91, 0x91, 0x6D, 0x68, 0x8C, + 0x8C, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0x4A, 0x02, 0xC6, 0x00, 0x09, + 0x00, 0x12, 0x00, 0x00, 0x33, 0x11, 0x21, 0x32, 0x16, 0x14, 0x06, 0x2B, 0x01, 0x15, 0x11, 0x33, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x56, 0x01, 0x12, 0x64, 0x7E, 0x7E, 0x64, 0x91, 0x79, + 0x38, 0x3F, 0x3F, 0x36, 0x7B, 0x02, 0xC6, 0x80, 0xCE, 0x83, 0xF5, 0x01, 0x65, 0x42, 0x38, 0x37, + 0x41, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x2C, 0xFF, 0xEC, 0x03, 0x0C, 0x02, 0xD2, 0x00, 0x0F, + 0x00, 0x1E, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x17, 0x07, 0x27, + 0x06, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x33, 0x32, 0x37, 0x27, 0x37, 0x17, 0x36, 0x35, 0x34, + 0x26, 0x22, 0x06, 0x2C, 0xD0, 0x9F, 0xA0, 0xCF, 0x4E, 0x50, 0x4A, 0x4E, 0x5D, 0x7C, 0x9F, 0xD0, + 0x85, 0x86, 0x64, 0x48, 0x34, 0x4F, 0x49, 0x4D, 0x27, 0x86, 0xC8, 0x86, 0x01, 0x67, 0x9A, 0xD1, + 0xD0, 0x9B, 0x7C, 0x65, 0x48, 0x52, 0x4E, 0x46, 0xD6, 0x9D, 0x6C, 0x91, 0x26, 0x4A, 0x51, 0x4D, + 0x3D, 0x4C, 0x69, 0x8C, 0x8C, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0x70, + 0x02, 0xC6, 0x00, 0x12, 0x00, 0x1C, 0x00, 0x00, 0x33, 0x11, 0x33, 0x32, 0x17, 0x1E, 0x01, 0x15, + 0x14, 0x06, 0x07, 0x15, 0x16, 0x17, 0x13, 0x23, 0x03, 0x23, 0x19, 0x01, 0x33, 0x32, 0x36, 0x35, + 0x34, 0x27, 0x26, 0x2B, 0x01, 0x56, 0xEA, 0x5A, 0x2C, 0x38, 0x40, 0x40, 0x37, 0x09, 0x0E, 0x92, + 0x91, 0x8C, 0x7C, 0x74, 0x34, 0x3C, 0x38, 0x1B, 0x33, 0x5E, 0x02, 0xC6, 0x13, 0x17, 0x64, 0x47, + 0x41, 0x6B, 0x16, 0x02, 0x0B, 0x1A, 0xFE, 0xF8, 0x01, 0x09, 0xFE, 0xF7, 0x01, 0x79, 0x3D, 0x34, + 0x4A, 0x17, 0x0C, 0x00, 0x00, 0x01, 0x00, 0x23, 0xFF, 0xF4, 0x02, 0x02, 0x02, 0xD2, 0x00, 0x24, + 0x00, 0x00, 0x3F, 0x01, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x03, 0x35, 0x34, 0x36, + 0x33, 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x1E, 0x03, 0x15, 0x14, 0x06, + 0x23, 0x22, 0x26, 0x23, 0x46, 0x23, 0x5F, 0x2E, 0x30, 0x38, 0x44, 0x61, 0x62, 0x44, 0x89, 0x69, + 0x7D, 0x53, 0x39, 0x1E, 0x55, 0x29, 0x31, 0x3B, 0x44, 0x61, 0x62, 0x44, 0x7E, 0x6E, 0x44, 0x80, + 0x55, 0x61, 0x1F, 0x2C, 0x2D, 0x24, 0x25, 0x36, 0x28, 0x30, 0x58, 0x3D, 0x5C, 0x72, 0x4C, 0x69, + 0x1B, 0x23, 0x2C, 0x25, 0x24, 0x34, 0x26, 0x2F, 0x58, 0x3F, 0x5A, 0x78, 0x32, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x0E, 0x00, 0x00, 0x02, 0x60, 0x02, 0xC6, 0x00, 0x07, 0x00, 0x00, 0x33, 0x11, + 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0xF7, 0xE9, 0x02, 0x52, 0xE9, 0x02, 0x57, 0x6F, 0x6F, 0xFD, + 0xA9, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x4E, 0xFF, 0xF4, 0x02, 0x8A, 0x02, 0xC6, 0x00, 0x10, + 0x00, 0x00, 0x13, 0x11, 0x33, 0x11, 0x14, 0x16, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, + 0x23, 0x22, 0x26, 0x4E, 0x81, 0x55, 0x90, 0x55, 0x81, 0x9D, 0x80, 0x81, 0x9E, 0x00, 0xFF, 0x01, + 0xC7, 0xFE, 0x3A, 0x47, 0x4F, 0x4F, 0x47, 0x01, 0xC6, 0xFE, 0x39, 0x77, 0x94, 0x94, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x02, 0x8B, 0x02, 0xC6, 0x00, 0x0A, 0x00, 0x00, 0x21, 0x01, + 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, 0x01, 0x01, 0x05, 0xFF, 0x00, 0x8B, 0x9C, 0x1B, + 0x02, 0x0E, 0x0D, 0x9E, 0x89, 0xFF, 0x00, 0x02, 0xC6, 0xFE, 0x31, 0x68, 0x3F, 0x29, 0x01, 0xCF, + 0xFD, 0x3A, 0x00, 0x00, 0x00, 0x01, 0x00, 0x17, 0x00, 0x00, 0x03, 0xA9, 0x02, 0xC6, 0x00, 0x18, + 0x00, 0x00, 0x33, 0x03, 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, 0x13, 0x17, 0x33, 0x36, + 0x37, 0x13, 0x33, 0x03, 0x23, 0x03, 0x27, 0x23, 0x06, 0x07, 0x03, 0xC8, 0xB1, 0x87, 0x6E, 0x0C, + 0x02, 0x04, 0x0B, 0x7F, 0x6C, 0x7E, 0x0F, 0x02, 0x02, 0x09, 0x76, 0x85, 0xB8, 0x91, 0x6F, 0x12, + 0x03, 0x07, 0x0C, 0x6E, 0x02, 0xC6, 0xFE, 0x15, 0x4B, 0x22, 0x29, 0x01, 0xEB, 0xFE, 0x15, 0x4B, + 0x23, 0x28, 0x01, 0xEB, 0xFD, 0x3A, 0x01, 0xA4, 0x5D, 0x2F, 0x2E, 0xFE, 0x5C, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x0D, 0x00, 0x00, 0x02, 0x62, 0x02, 0xC6, 0x00, 0x13, 0x00, 0x00, 0x33, 0x13, + 0x03, 0x33, 0x1F, 0x01, 0x33, 0x36, 0x3F, 0x01, 0x33, 0x03, 0x13, 0x23, 0x2F, 0x01, 0x23, 0x06, + 0x0F, 0x01, 0x0D, 0xDC, 0xD4, 0x93, 0x62, 0x2C, 0x02, 0x14, 0x18, 0x63, 0x93, 0xD5, 0xDD, 0x90, + 0x6F, 0x2C, 0x02, 0x14, 0x17, 0x6E, 0x01, 0x68, 0x01, 0x5E, 0xAE, 0x57, 0x2D, 0x2A, 0xAE, 0xFE, + 0xA2, 0xFE, 0x98, 0xBF, 0x54, 0x2B, 0x29, 0xBF, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x02, 0x5B, + 0x02, 0xC6, 0x00, 0x0C, 0x00, 0x00, 0x33, 0x11, 0x03, 0x33, 0x1F, 0x01, 0x33, 0x36, 0x3F, 0x01, + 0x33, 0x03, 0x11, 0xEF, 0xED, 0x92, 0x6F, 0x2B, 0x02, 0x15, 0x16, 0x6E, 0x92, 0xEC, 0x01, 0x29, + 0x01, 0x9D, 0xD1, 0x5F, 0x33, 0x2C, 0xD1, 0xFE, 0x63, 0xFE, 0xD7, 0x00, 0x00, 0x01, 0x00, 0x24, + 0x00, 0x00, 0x02, 0x3A, 0x02, 0xC6, 0x00, 0x17, 0x00, 0x00, 0x33, 0x35, 0x01, 0x3E, 0x01, 0x3F, + 0x01, 0x35, 0x06, 0x23, 0x21, 0x35, 0x21, 0x15, 0x01, 0x0E, 0x01, 0x0F, 0x01, 0x15, 0x36, 0x33, + 0x21, 0x15, 0x24, 0x01, 0x3B, 0x0C, 0x1A, 0x07, 0x07, 0x14, 0x21, 0xFE, 0xD6, 0x02, 0x01, 0xFE, + 0xC5, 0x0C, 0x1A, 0x07, 0x07, 0x14, 0x21, 0x01, 0x3F, 0x53, 0x01, 0xC4, 0x12, 0x20, 0x07, 0x07, + 0x02, 0x02, 0x6F, 0x52, 0xFE, 0x3B, 0x12, 0x20, 0x07, 0x07, 0x02, 0x02, 0x6F, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x50, 0xFF, 0xA1, 0x01, 0x15, 0x02, 0xE5, 0x00, 0x07, 0x00, 0x00, 0x17, 0x11, + 0x33, 0x15, 0x23, 0x11, 0x33, 0x15, 0x50, 0xC5, 0x59, 0x59, 0x5F, 0x03, 0x44, 0x5C, 0xFD, 0x74, + 0x5C, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x21, 0xFF, 0xD6, 0x01, 0x8D, 0x02, 0xEA, 0x00, 0x03, + 0x00, 0x00, 0x05, 0x03, 0x33, 0x01, 0x01, 0x20, 0xFF, 0x6D, 0x00, 0xFF, 0x2A, 0x03, 0x14, 0xFC, + 0xEC, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2C, 0xFF, 0xA1, 0x00, 0xF1, 0x02, 0xE5, 0x00, 0x07, + 0x00, 0x00, 0x17, 0x33, 0x11, 0x23, 0x35, 0x33, 0x11, 0x23, 0x2C, 0x59, 0x59, 0xC5, 0xC5, 0x03, + 0x02, 0x8C, 0x5C, 0xFC, 0xBC, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x41, 0x00, 0xF5, 0x02, 0x23, + 0x02, 0xC6, 0x00, 0x06, 0x00, 0x00, 0x37, 0x13, 0x33, 0x13, 0x23, 0x0B, 0x01, 0x41, 0xC9, 0x50, + 0xC9, 0x6E, 0x83, 0x83, 0xF5, 0x01, 0xD1, 0xFE, 0x2F, 0x01, 0x4B, 0xFE, 0xB5, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x16, 0xFF, 0x9E, 0x02, 0x47, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x33, 0x21, + 0x15, 0x21, 0x16, 0x02, 0x31, 0xFD, 0xCF, 0x62, 0x00, 0x01, 0x00, 0x8F, 0x02, 0xF5, 0x01, 0x5E, + 0x03, 0x7D, 0x00, 0x03, 0x00, 0x00, 0x13, 0x27, 0x33, 0x17, 0xF7, 0x68, 0x83, 0x4C, 0x02, 0xF5, + 0x88, 0x88, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1D, 0xFF, 0xF4, 0x01, 0xDB, 0x02, 0x0A, 0x00, 0x1C, + 0x00, 0x26, 0x00, 0x00, 0x37, 0x34, 0x3E, 0x02, 0x3B, 0x01, 0x35, 0x34, 0x23, 0x22, 0x07, 0x27, + 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, + 0x37, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x23, 0x22, 0x1D, 0x3B, 0x61, 0x5B, 0x32, 0x16, + 0x60, 0x46, 0x48, 0x2F, 0x21, 0x70, 0x37, 0x64, 0x70, 0x76, 0x03, 0x02, 0x18, 0x56, 0x33, 0x47, + 0x61, 0x7E, 0x29, 0x24, 0x33, 0x42, 0x16, 0xAC, 0x8D, 0x36, 0x4C, 0x23, 0x0E, 0x07, 0x5A, 0x31, + 0x5B, 0x1A, 0x25, 0x6B, 0x60, 0xFE, 0xC1, 0x2B, 0x25, 0x29, 0x33, 0x55, 0x4F, 0x1B, 0x28, 0x54, + 0x32, 0x0E, 0x00, 0x00, 0x00, 0x02, 0x00, 0x44, 0xFF, 0xF4, 0x02, 0x3E, 0x02, 0xC6, 0x00, 0x15, + 0x00, 0x21, 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x23, 0x16, 0x1D, 0x01, 0x37, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x44, 0x7F, 0x03, 0x02, 0x16, 0x55, 0x2F, 0x67, 0x7B, 0x83, + 0x67, 0x2E, 0x54, 0x18, 0x02, 0x02, 0x05, 0x43, 0x3C, 0x37, 0x49, 0x46, 0x38, 0x37, 0x4A, 0x02, + 0xC6, 0xDD, 0x2B, 0x22, 0x2A, 0x94, 0x77, 0x78, 0x93, 0x2A, 0x25, 0x0E, 0x14, 0x21, 0xFC, 0x40, + 0x5D, 0x55, 0x49, 0x48, 0x58, 0x51, 0x00, 0x00, 0x00, 0x01, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x0C, + 0x02, 0x0A, 0x00, 0x16, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x23, + 0x22, 0x06, 0x14, 0x16, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x25, 0x99, 0x7C, + 0x37, 0x6A, 0x23, 0x39, 0x37, 0x4D, 0x45, 0x56, 0x58, 0x47, 0x53, 0x43, 0x31, 0x24, 0x71, 0x3D, + 0x7C, 0x99, 0x00, 0xFF, 0x70, 0x9B, 0x26, 0x26, 0x57, 0x37, 0x5B, 0x86, 0x5D, 0x41, 0x5A, 0x26, + 0x2D, 0x99, 0x00, 0x00, 0x00, 0x02, 0x00, 0x27, 0xFF, 0xF4, 0x02, 0x21, 0x02, 0xC6, 0x00, 0x14, + 0x00, 0x20, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x17, 0x33, 0x26, 0x3D, 0x01, 0x33, 0x11, + 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x27, 0x81, 0x66, 0x65, 0x30, 0x02, 0x02, 0x7E, 0x77, 0x02, 0x02, + 0x17, 0x55, 0x35, 0x66, 0x7C, 0x80, 0x46, 0x39, 0x36, 0x4A, 0x42, 0x3D, 0x36, 0x4A, 0x00, 0xFF, + 0x78, 0x93, 0x43, 0x0D, 0x11, 0xE1, 0xFD, 0x3A, 0x2C, 0x20, 0x28, 0x30, 0x94, 0x77, 0x48, 0x58, + 0x51, 0x50, 0x40, 0x5D, 0x55, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x0B, + 0x02, 0x0A, 0x00, 0x14, 0x00, 0x1B, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x07, 0x21, 0x1E, 0x01, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, 0x33, 0x2E, + 0x01, 0x23, 0x22, 0x06, 0x25, 0x91, 0x73, 0x6A, 0x78, 0x04, 0xFE, 0xA1, 0x06, 0x56, 0x3D, 0x4C, + 0x46, 0x32, 0x26, 0x6F, 0x38, 0x7B, 0x98, 0x86, 0xE1, 0x01, 0x39, 0x2C, 0x30, 0x42, 0x00, 0xFF, + 0x76, 0x95, 0x89, 0x69, 0x11, 0x20, 0x40, 0x47, 0x38, 0x5B, 0x22, 0x27, 0x9B, 0xAF, 0x32, 0x3A, + 0x3B, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x22, 0x00, 0x00, 0x01, 0x5D, 0x02, 0xCA, 0x00, 0x17, + 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, 0x33, 0x35, 0x34, 0x3E, 0x03, 0x33, 0x32, 0x17, 0x15, 0x26, + 0x23, 0x22, 0x1D, 0x01, 0x33, 0x15, 0x23, 0x11, 0x61, 0x3F, 0x3F, 0x1F, 0x2C, 0x3D, 0x30, 0x19, + 0x1C, 0x0F, 0x08, 0x12, 0x63, 0x6E, 0x6E, 0x01, 0x92, 0x65, 0x16, 0x30, 0x47, 0x27, 0x18, 0x07, + 0x03, 0x6C, 0x02, 0x53, 0x13, 0x65, 0xFE, 0x6E, 0x00, 0x02, 0x00, 0x28, 0xFF, 0x2E, 0x02, 0x1A, + 0x02, 0x0A, 0x00, 0x1E, 0x00, 0x29, 0x00, 0x00, 0x17, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x37, + 0x23, 0x06, 0x23, 0x22, 0x26, 0x34, 0x36, 0x33, 0x32, 0x17, 0x33, 0x26, 0x3D, 0x01, 0x33, 0x11, + 0x14, 0x0E, 0x02, 0x23, 0x22, 0x27, 0x13, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x23, 0x22, + 0x06, 0x7E, 0x44, 0x49, 0x40, 0x50, 0x02, 0x02, 0x2F, 0x60, 0x6A, 0x7A, 0x77, 0x6A, 0x68, 0x30, + 0x03, 0x02, 0x78, 0x2E, 0x4E, 0x5D, 0x34, 0x61, 0x55, 0x51, 0x43, 0x3D, 0x33, 0x43, 0x7E, 0x39, + 0x3F, 0x45, 0x21, 0x3C, 0x40, 0x20, 0x1B, 0x47, 0x94, 0xDC, 0x90, 0x43, 0x06, 0x08, 0x29, 0xFE, + 0x21, 0x3F, 0x60, 0x37, 0x1B, 0x2C, 0x01, 0xB6, 0x45, 0x56, 0x46, 0x50, 0x93, 0x4D, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x44, 0x00, 0x00, 0x02, 0x25, 0x02, 0xC6, 0x00, 0x14, 0x00, 0x00, 0x33, 0x11, + 0x33, 0x15, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x1D, 0x01, 0x44, 0x7F, 0x03, 0x02, 0x15, 0x5F, 0x3D, 0xB2, 0x7F, 0x23, 0x2D, 0x42, 0x51, + 0x02, 0xC6, 0xF8, 0x2B, 0x29, 0x3E, 0xC2, 0xFE, 0xB8, 0x01, 0x2E, 0x33, 0x35, 0x5F, 0x4A, 0xED, + 0x00, 0x02, 0x00, 0x44, 0x00, 0x00, 0x00, 0xC3, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x13, 0x35, 0x33, 0x15, 0x03, 0x11, 0x33, 0x11, 0x44, 0x7F, 0x7F, 0x7F, 0x02, 0x55, 0x71, 0x71, + 0xFD, 0xAB, 0x01, 0xFE, 0xFE, 0x02, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xC8, 0xFF, 0x31, 0x00, 0xC3, + 0x02, 0xC6, 0x00, 0x03, 0x00, 0x16, 0x00, 0x00, 0x13, 0x35, 0x33, 0x15, 0x03, 0x11, 0x33, 0x11, + 0x14, 0x0E, 0x03, 0x23, 0x22, 0x27, 0x35, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x44, 0x7F, 0x7F, 0x7F, + 0x20, 0x2D, 0x3E, 0x31, 0x19, 0x12, 0x14, 0x0C, 0x0A, 0x11, 0x1E, 0x22, 0x15, 0x02, 0x55, 0x71, + 0x71, 0xFD, 0xA6, 0x02, 0x03, 0xFD, 0xF3, 0x31, 0x49, 0x27, 0x18, 0x07, 0x03, 0x6B, 0x02, 0x07, + 0x11, 0x29, 0x00, 0x00, 0x00, 0x01, 0x00, 0x44, 0x00, 0x00, 0x02, 0x1E, 0x02, 0xC6, 0x00, 0x0D, + 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x33, 0x37, 0x33, 0x07, 0x15, 0x13, 0x23, 0x27, 0x23, 0x15, + 0x44, 0x7F, 0x3F, 0x7B, 0x8D, 0xA1, 0xB5, 0x92, 0x87, 0x42, 0x02, 0xC6, 0xFE, 0x84, 0xB4, 0xE4, + 0x02, 0xFE, 0xE8, 0xDF, 0xDF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x44, 0xFF, 0xFB, 0x01, 0x09, + 0x02, 0xC6, 0x00, 0x0F, 0x00, 0x00, 0x37, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x37, 0x15, + 0x06, 0x23, 0x22, 0x2E, 0x02, 0x44, 0x7E, 0x19, 0x1B, 0x0C, 0x07, 0x1B, 0x0D, 0x1F, 0x30, 0x32, + 0x1C, 0x9F, 0x02, 0x27, 0xFD, 0xEC, 0x28, 0x1E, 0x01, 0x6F, 0x03, 0x0B, 0x1F, 0x46, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x44, 0x00, 0x00, 0x03, 0x50, 0x02, 0x0A, 0x00, 0x23, 0x00, 0x00, 0x33, 0x11, + 0x33, 0x15, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x17, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x15, 0x11, + 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x1D, 0x01, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x1D, 0x01, 0x44, 0x7A, 0x02, 0x02, 0x14, 0x5B, 0x38, 0x74, 0x20, 0x02, 0x17, 0x5E, 0x39, 0xA7, + 0x7E, 0x1E, 0x28, 0x3E, 0x44, 0x7F, 0x1C, 0x29, 0x3E, 0x45, 0x01, 0xFE, 0x3C, 0x24, 0x2A, 0x42, + 0x69, 0x2B, 0x3E, 0xC2, 0xFE, 0xB8, 0x01, 0x30, 0x31, 0x35, 0x69, 0x48, 0xE5, 0x01, 0x30, 0x31, + 0x35, 0x6B, 0x46, 0xE5, 0x00, 0x01, 0x00, 0x44, 0x00, 0x00, 0x02, 0x25, 0x02, 0x0A, 0x00, 0x14, + 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x15, 0x11, 0x23, 0x11, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x1D, 0x01, 0x44, 0x7A, 0x02, 0x02, 0x14, 0x5C, 0x45, 0xB2, 0x7F, + 0x23, 0x2D, 0x42, 0x51, 0x01, 0xFE, 0x3C, 0x24, 0x29, 0x43, 0xC2, 0xFE, 0xB8, 0x01, 0x2E, 0x33, + 0x35, 0x60, 0x47, 0xEF, 0x00, 0x02, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x55, 0x02, 0x0A, 0x00, 0x08, + 0x00, 0x12, 0x00, 0x00, 0x36, 0x34, 0x36, 0x33, 0x32, 0x16, 0x14, 0x06, 0x22, 0x03, 0x14, 0x16, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x25, 0xA2, 0x75, 0x76, 0xA3, 0xA2, 0xEC, 0x21, 0x57, + 0x80, 0x58, 0x59, 0x7E, 0x58, 0x8B, 0xE8, 0x97, 0x97, 0xE8, 0x97, 0x01, 0x0B, 0x46, 0x59, 0x59, + 0x46, 0x45, 0x5A, 0x5A, 0x00, 0x02, 0x00, 0x44, 0xFF, 0x38, 0x02, 0x3E, 0x02, 0x0A, 0x00, 0x14, + 0x00, 0x20, 0x00, 0x00, 0x17, 0x11, 0x33, 0x15, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x23, 0x22, 0x27, 0x23, 0x16, 0x1D, 0x01, 0x03, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x44, 0x74, 0x02, 0x02, 0x19, 0x57, 0x34, 0x67, 0x7B, 0x83, 0x66, + 0x5B, 0x38, 0x02, 0x03, 0x04, 0x44, 0x3B, 0x37, 0x49, 0x46, 0x38, 0x37, 0x4A, 0xC8, 0x02, 0xC6, + 0x26, 0x24, 0x29, 0x2D, 0x94, 0x77, 0x78, 0x93, 0x48, 0x12, 0x1A, 0xD8, 0x01, 0xC4, 0x40, 0x5D, + 0x55, 0x49, 0x48, 0x58, 0x51, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x27, 0xFF, 0x38, 0x02, 0x21, + 0x02, 0x0A, 0x00, 0x15, 0x00, 0x21, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x33, + 0x26, 0x3D, 0x01, 0x33, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x27, 0x81, 0x66, 0x2F, 0x54, 0x19, + 0x02, 0x02, 0x77, 0x7E, 0x02, 0x02, 0x17, 0x52, 0x31, 0x66, 0x7C, 0x80, 0x46, 0x39, 0x36, 0x4A, + 0x42, 0x3D, 0x36, 0x4A, 0x00, 0xFF, 0x78, 0x93, 0x27, 0x24, 0x0D, 0x13, 0x1F, 0xFD, 0x3A, 0xDD, + 0x2C, 0x22, 0x2B, 0x94, 0x77, 0x48, 0x58, 0x51, 0x50, 0x40, 0x5D, 0x55, 0x00, 0x01, 0x00, 0x44, + 0x00, 0x00, 0x01, 0x78, 0x02, 0x05, 0x00, 0x11, 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, 0x07, 0x33, + 0x3E, 0x01, 0x33, 0x32, 0x17, 0x15, 0x26, 0x23, 0x22, 0x06, 0x1D, 0x01, 0x44, 0x7A, 0x02, 0x02, + 0x12, 0x58, 0x38, 0x08, 0x10, 0x0A, 0x15, 0x4A, 0x4C, 0x01, 0xFE, 0x5A, 0x23, 0x38, 0x4C, 0x02, + 0x7D, 0x02, 0x6C, 0x4E, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x1B, 0xFF, 0xF4, 0x01, 0xA4, + 0x02, 0x0A, 0x00, 0x21, 0x00, 0x00, 0x3F, 0x01, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x03, + 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x15, 0x14, 0x1E, 0x03, 0x15, + 0x14, 0x06, 0x23, 0x22, 0x1B, 0x39, 0x3D, 0x54, 0x22, 0x25, 0x34, 0x4A, 0x4B, 0x34, 0x6F, 0x54, + 0x6A, 0x42, 0x2F, 0x16, 0x49, 0x22, 0x47, 0x34, 0x4B, 0x4A, 0x34, 0x6A, 0x57, 0x7A, 0x3F, 0x54, + 0x38, 0x1B, 0x18, 0x16, 0x20, 0x1A, 0x23, 0x42, 0x2E, 0x48, 0x51, 0x3A, 0x59, 0x13, 0x19, 0x31, + 0x16, 0x20, 0x1A, 0x21, 0x42, 0x2E, 0x44, 0x59, 0x00, 0x01, 0x00, 0x1B, 0xFF, 0xFB, 0x01, 0x58, + 0x02, 0x89, 0x00, 0x18, 0x00, 0x00, 0x37, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, + 0x23, 0x15, 0x14, 0x16, 0x33, 0x32, 0x37, 0x15, 0x06, 0x23, 0x22, 0x2E, 0x03, 0x5D, 0x42, 0x45, + 0x7C, 0x74, 0x74, 0x3F, 0x26, 0x0D, 0x0A, 0x1E, 0x09, 0x1A, 0x30, 0x3E, 0x2D, 0x1F, 0xBB, 0xD7, + 0x65, 0x92, 0x92, 0x65, 0xC7, 0x37, 0x29, 0x02, 0x6F, 0x03, 0x07, 0x18, 0x27, 0x49, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x3F, 0xFF, 0xF4, 0x02, 0x1A, 0x01, 0xFE, 0x00, 0x14, 0x00, 0x00, 0x37, 0x11, + 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, + 0x01, 0x23, 0x22, 0x3F, 0x7F, 0x23, 0x2C, 0x42, 0x4D, 0x7E, 0x7A, 0x03, 0x02, 0x14, 0x60, 0x3D, + 0xB1, 0xB6, 0x01, 0x48, 0xFE, 0xD2, 0x33, 0x35, 0x64, 0x48, 0xEA, 0xFE, 0x02, 0x3C, 0x23, 0x2B, + 0x40, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0D, 0x00, 0x00, 0x02, 0x13, 0x01, 0xFE, 0x00, 0x0A, + 0x00, 0x00, 0x33, 0x03, 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, 0x03, 0xC6, 0xB9, 0x86, + 0x6A, 0x12, 0x02, 0x09, 0x09, 0x6A, 0x86, 0xB7, 0x01, 0xFE, 0xFE, 0xC4, 0x4D, 0x2F, 0x1E, 0x01, + 0x3C, 0xFE, 0x02, 0x00, 0x00, 0x01, 0x00, 0x13, 0x00, 0x00, 0x03, 0x2C, 0x01, 0xFE, 0x00, 0x18, + 0x00, 0x00, 0x33, 0x03, 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, 0x13, 0x17, 0x33, 0x36, + 0x37, 0x13, 0x33, 0x03, 0x23, 0x03, 0x27, 0x23, 0x06, 0x07, 0x03, 0xAE, 0x9B, 0x86, 0x59, 0x0A, + 0x02, 0x05, 0x07, 0x5E, 0x71, 0x5E, 0x0B, 0x02, 0x03, 0x08, 0x59, 0x84, 0x9B, 0x8D, 0x56, 0x0D, + 0x02, 0x05, 0x07, 0x57, 0x01, 0xFE, 0xFE, 0xB1, 0x36, 0x1B, 0x1B, 0x01, 0x4E, 0xFE, 0xB2, 0x36, + 0x1B, 0x1B, 0x01, 0x4F, 0xFE, 0x02, 0x01, 0x23, 0x37, 0x1C, 0x1B, 0xFE, 0xDD, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x0F, 0x00, 0x00, 0x01, 0xF9, 0x01, 0xFE, 0x00, 0x13, 0x00, 0x00, 0x33, 0x13, + 0x27, 0x33, 0x1F, 0x01, 0x33, 0x36, 0x3F, 0x01, 0x33, 0x07, 0x13, 0x23, 0x2F, 0x01, 0x23, 0x06, + 0x0F, 0x01, 0x0F, 0xA8, 0xA4, 0x90, 0x4F, 0x10, 0x02, 0x0A, 0x07, 0x4F, 0x90, 0xA4, 0xA9, 0x8E, + 0x58, 0x0F, 0x02, 0x07, 0x07, 0x58, 0x01, 0x02, 0xFC, 0x8B, 0x20, 0x13, 0x0D, 0x8B, 0xFC, 0xFE, + 0xFE, 0x94, 0x1B, 0x10, 0x0B, 0x94, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0xFF, 0x2E, 0x02, 0x12, + 0x01, 0xFE, 0x00, 0x16, 0x00, 0x00, 0x17, 0x16, 0x33, 0x32, 0x3F, 0x01, 0x03, 0x33, 0x13, 0x17, + 0x33, 0x36, 0x37, 0x13, 0x33, 0x03, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x2F, 0x01, 0x37, 0x1C, 0x1C, + 0x3D, 0x1C, 0x13, 0xD7, 0x8F, 0x6B, 0x13, 0x02, 0x09, 0x08, 0x64, 0x8A, 0xE3, 0x19, 0x63, 0x3C, + 0x1B, 0x35, 0x0D, 0x0D, 0x52, 0x15, 0x42, 0x2D, 0x01, 0xF6, 0xFE, 0xDA, 0x45, 0x28, 0x1B, 0x01, + 0x28, 0xFD, 0xB5, 0x43, 0x42, 0x10, 0x08, 0x09, 0x00, 0x01, 0x00, 0x23, 0x00, 0x00, 0x01, 0xE6, + 0x01, 0xFE, 0x00, 0x17, 0x00, 0x00, 0x33, 0x35, 0x13, 0x3E, 0x01, 0x3F, 0x01, 0x35, 0x06, 0x2B, + 0x01, 0x35, 0x21, 0x15, 0x03, 0x0E, 0x01, 0x0F, 0x01, 0x15, 0x36, 0x3B, 0x01, 0x15, 0x23, 0xE6, + 0x0A, 0x16, 0x05, 0x06, 0x0F, 0x21, 0xD7, 0x01, 0xB2, 0xE5, 0x0A, 0x16, 0x06, 0x06, 0x0F, 0x21, + 0xE8, 0x44, 0x01, 0x1F, 0x0D, 0x17, 0x05, 0x06, 0x02, 0x02, 0x6C, 0x45, 0xFE, 0xE1, 0x0D, 0x17, + 0x06, 0x05, 0x02, 0x03, 0x6C, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x25, 0xFF, 0x9D, 0x01, 0x4A, + 0x02, 0xE8, 0x00, 0x2B, 0x00, 0x00, 0x37, 0x35, 0x34, 0x26, 0x27, 0x35, 0x3E, 0x01, 0x3D, 0x01, + 0x34, 0x3E, 0x03, 0x33, 0x17, 0x15, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x1D, 0x01, 0x14, 0x06, 0x07, + 0x15, 0x16, 0x1D, 0x01, 0x14, 0x33, 0x37, 0x15, 0x06, 0x23, 0x22, 0x2E, 0x03, 0x7A, 0x2B, 0x2A, + 0x28, 0x2D, 0x1B, 0x25, 0x35, 0x27, 0x15, 0x1F, 0x08, 0x0A, 0x0D, 0x17, 0x1C, 0x11, 0x2D, 0x26, + 0x53, 0x51, 0x12, 0x0D, 0x12, 0x15, 0x27, 0x35, 0x25, 0x1B, 0x47, 0x61, 0x2B, 0x37, 0x06, 0x6F, + 0x06, 0x37, 0x2D, 0x56, 0x2B, 0x41, 0x23, 0x14, 0x06, 0x01, 0x5E, 0x01, 0x06, 0x10, 0x24, 0x1B, + 0x6D, 0x2D, 0x44, 0x0E, 0x02, 0x1F, 0x5F, 0x78, 0x55, 0x01, 0x5E, 0x02, 0x06, 0x14, 0x23, 0x41, + 0x00, 0x01, 0x00, 0x4E, 0xFF, 0x5F, 0x00, 0xBA, 0x03, 0x1C, 0x00, 0x03, 0x00, 0x00, 0x17, 0x11, + 0x33, 0x11, 0x4E, 0x6C, 0xA1, 0x03, 0xBD, 0xFC, 0x43, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x29, + 0xFF, 0x9D, 0x01, 0x4D, 0x02, 0xE8, 0x00, 0x2B, 0x00, 0x00, 0x17, 0x16, 0x33, 0x32, 0x3D, 0x01, + 0x34, 0x36, 0x37, 0x35, 0x2E, 0x01, 0x3D, 0x01, 0x34, 0x2E, 0x02, 0x23, 0x07, 0x35, 0x36, 0x33, + 0x32, 0x1E, 0x02, 0x1D, 0x01, 0x14, 0x16, 0x17, 0x15, 0x0E, 0x01, 0x1D, 0x01, 0x14, 0x0E, 0x03, + 0x23, 0x27, 0x29, 0x07, 0x0B, 0x51, 0x2B, 0x27, 0x22, 0x30, 0x11, 0x1C, 0x17, 0x0D, 0x12, 0x0C, + 0x13, 0x1B, 0x32, 0x3E, 0x25, 0x2C, 0x29, 0x27, 0x2E, 0x1B, 0x25, 0x34, 0x27, 0x15, 0x1F, 0x03, + 0x01, 0x55, 0x78, 0x2C, 0x46, 0x0C, 0x02, 0x0C, 0x45, 0x2E, 0x6D, 0x1B, 0x24, 0x10, 0x06, 0x01, + 0x5E, 0x01, 0x0B, 0x20, 0x49, 0x35, 0x56, 0x2A, 0x3B, 0x05, 0x6F, 0x04, 0x3A, 0x2A, 0x61, 0x2C, + 0x41, 0x22, 0x15, 0x06, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x3E, 0x00, 0xC3, 0x02, 0x32, + 0x01, 0x7D, 0x00, 0x16, 0x00, 0x00, 0x37, 0x34, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x35, + 0x33, 0x14, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x15, 0x3E, 0x99, 0x22, 0x38, 0x1F, + 0x29, 0x16, 0x20, 0x1E, 0x65, 0x4F, 0x4A, 0x22, 0x37, 0x1F, 0x2B, 0x16, 0x1E, 0x1F, 0xC7, 0xB6, + 0x1C, 0x23, 0x1C, 0x32, 0x25, 0x5B, 0x5B, 0x1C, 0x22, 0x1C, 0x31, 0x25, 0x00, 0x02, 0x00, 0x44, + 0xFF, 0x37, 0x00, 0xC7, 0x01, 0xFD, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x1B, 0x01, 0x23, 0x13, + 0x37, 0x15, 0x23, 0x35, 0xBD, 0x0A, 0x83, 0x0A, 0x75, 0x7B, 0x01, 0x30, 0xFE, 0x07, 0x01, 0xF9, + 0xCD, 0x77, 0x77, 0x00, 0x00, 0x01, 0x00, 0x31, 0xFF, 0xF4, 0x02, 0x19, 0x02, 0xD1, 0x00, 0x1C, + 0x00, 0x00, 0x05, 0x35, 0x2E, 0x01, 0x34, 0x36, 0x37, 0x35, 0x33, 0x15, 0x1E, 0x01, 0x17, 0x07, + 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x07, 0x15, 0x01, + 0x05, 0x5F, 0x75, 0x75, 0x5F, 0x56, 0x42, 0x64, 0x18, 0x72, 0x24, 0x50, 0x3A, 0x48, 0x46, 0x3C, + 0x50, 0x24, 0x72, 0x19, 0x61, 0x44, 0x0C, 0x56, 0x10, 0x9C, 0xDA, 0x9D, 0x10, 0x54, 0x54, 0x0C, + 0x56, 0x40, 0x2C, 0x59, 0x5D, 0x48, 0x4B, 0x5A, 0x59, 0x2C, 0x3D, 0x5C, 0x08, 0x56, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x2F, 0x00, 0x00, 0x02, 0x24, 0x02, 0xD2, 0x00, 0x19, 0x00, 0x00, 0x33, 0x35, + 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x26, 0x23, 0x22, 0x06, + 0x1D, 0x01, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x2F, 0x3A, 0x2B, 0x2B, 0x81, 0x63, 0x65, 0x4D, + 0x49, 0x2D, 0x39, 0x2C, 0x38, 0xB1, 0xB1, 0x01, 0x38, 0x6F, 0xC8, 0x57, 0x79, 0x58, 0x73, 0x48, + 0x58, 0x2B, 0x33, 0x27, 0x75, 0x57, 0xC8, 0x6F, 0x00, 0x02, 0x00, 0x33, 0x00, 0x00, 0x02, 0x53, + 0x02, 0xC6, 0x00, 0x16, 0x00, 0x1E, 0x00, 0x00, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, + 0x33, 0x11, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x2B, 0x01, 0x15, 0x33, 0x15, 0x23, 0x15, 0x11, + 0x33, 0x32, 0x36, 0x34, 0x26, 0x2B, 0x01, 0x77, 0x44, 0x44, 0x44, 0x44, 0xFC, 0x6C, 0x74, 0x80, + 0x66, 0x75, 0xF8, 0xF8, 0x63, 0x38, 0x3C, 0x3B, 0x37, 0x65, 0x9F, 0x56, 0x41, 0x65, 0x01, 0x2B, + 0x6E, 0x60, 0x5B, 0x68, 0x40, 0x56, 0x9F, 0x01, 0x9B, 0x38, 0x58, 0x35, 0x00, 0x01, 0x00, 0x09, + 0x00, 0x00, 0x02, 0x41, 0x02, 0xC6, 0x00, 0x1C, 0x00, 0x00, 0x37, 0x35, 0x33, 0x35, 0x27, 0x23, + 0x35, 0x33, 0x03, 0x33, 0x1F, 0x01, 0x33, 0x36, 0x3F, 0x01, 0x33, 0x03, 0x33, 0x15, 0x23, 0x07, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x40, 0xA3, 0x19, 0x8A, 0x63, 0x9A, 0x93, 0x5D, 0x2B, + 0x02, 0x14, 0x17, 0x5D, 0x93, 0x9A, 0x62, 0x89, 0x1A, 0xA3, 0xA3, 0x83, 0xBA, 0x4D, 0x21, 0x30, + 0x4C, 0x01, 0x22, 0xBE, 0x72, 0x3B, 0x37, 0xBE, 0xFE, 0xDE, 0x4C, 0x30, 0x21, 0x4D, 0xBA, 0xBA, + 0x00, 0x02, 0x00, 0x2C, 0xFF, 0xC2, 0x01, 0xB3, 0x02, 0xD2, 0x00, 0x11, 0x00, 0x23, 0x00, 0x00, + 0x37, 0x03, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, + 0x17, 0x13, 0x07, 0x37, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x27, 0x03, 0x33, 0x13, 0x16, 0x15, + 0x14, 0x06, 0x23, 0x22, 0x8F, 0x49, 0x07, 0x6D, 0x60, 0x64, 0x43, 0x39, 0x2F, 0x3E, 0x2E, 0x39, + 0x07, 0x45, 0xC6, 0x36, 0x32, 0x3F, 0x2D, 0x3A, 0x09, 0x43, 0x64, 0x47, 0x07, 0x6D, 0x60, 0x64, + 0x8A, 0x01, 0x58, 0x1B, 0x1E, 0x51, 0x66, 0x3E, 0x51, 0x27, 0x2E, 0x30, 0x17, 0x1B, 0xFE, 0xB0, + 0x8B, 0x56, 0x2C, 0x33, 0x32, 0x18, 0x21, 0x01, 0x43, 0xFE, 0xA8, 0x1C, 0x1D, 0x51, 0x66, 0x00, + 0x00, 0x02, 0x00, 0x6A, 0x03, 0x09, 0x01, 0x83, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x01, 0x22, 0x61, 0xFE, 0xE7, 0x62, 0x03, 0x09, + 0x74, 0x74, 0x74, 0x74, 0x00, 0x03, 0x00, 0x32, 0xFF, 0xF4, 0x02, 0xFF, 0x02, 0xD1, 0x00, 0x0A, + 0x00, 0x14, 0x00, 0x2D, 0x00, 0x00, 0x36, 0x10, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, + 0x22, 0x02, 0x14, 0x16, 0x33, 0x32, 0x36, 0x34, 0x26, 0x23, 0x22, 0x02, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, + 0x0E, 0x01, 0x23, 0x22, 0x32, 0xD1, 0x94, 0x97, 0xD1, 0xD2, 0x96, 0x94, 0x78, 0x9B, 0x71, 0x73, + 0x9D, 0x9D, 0x73, 0x71, 0x45, 0x6B, 0x50, 0x36, 0x57, 0x16, 0x4D, 0x0A, 0x2E, 0x1B, 0x2B, 0x37, + 0x35, 0x2D, 0x1B, 0x2C, 0x0C, 0x4D, 0x12, 0x58, 0x39, 0x51, 0xCB, 0x01, 0x30, 0xD6, 0xD6, 0x98, + 0x99, 0xD6, 0x01, 0xE7, 0xF0, 0xA6, 0xA6, 0xF0, 0xA5, 0xFE, 0x90, 0xA2, 0x72, 0x39, 0x30, 0x24, + 0x18, 0x22, 0x41, 0x2F, 0x31, 0x3F, 0x21, 0x19, 0x23, 0x2C, 0x3E, 0x00, 0x00, 0x03, 0x00, 0x44, + 0x01, 0x0A, 0x01, 0x63, 0x02, 0xD0, 0x00, 0x17, 0x00, 0x21, 0x00, 0x25, 0x00, 0x00, 0x13, 0x22, + 0x26, 0x35, 0x34, 0x3B, 0x01, 0x35, 0x34, 0x23, 0x22, 0x07, 0x27, 0x36, 0x33, 0x32, 0x16, 0x1D, + 0x01, 0x23, 0x35, 0x23, 0x0E, 0x01, 0x27, 0x32, 0x36, 0x3D, 0x01, 0x23, 0x22, 0x15, 0x14, 0x16, + 0x07, 0x35, 0x21, 0x15, 0xAF, 0x2B, 0x40, 0xB9, 0x09, 0x3A, 0x27, 0x2B, 0x20, 0x32, 0x4E, 0x41, + 0x45, 0x54, 0x02, 0x0B, 0x31, 0x08, 0x1B, 0x24, 0x0B, 0x5C, 0x16, 0x6F, 0x01, 0x1E, 0x01, 0x7F, + 0x35, 0x2D, 0x6E, 0x07, 0x34, 0x1B, 0x3B, 0x26, 0x45, 0x3D, 0xC9, 0x2C, 0x16, 0x1C, 0x46, 0x2C, + 0x1C, 0x07, 0x2D, 0x0F, 0x13, 0xBB, 0x44, 0x44, 0x00, 0x02, 0x00, 0x28, 0x00, 0x4D, 0x02, 0x26, + 0x01, 0xE8, 0x00, 0x05, 0x00, 0x0B, 0x00, 0x00, 0x01, 0x37, 0x33, 0x07, 0x17, 0x2B, 0x01, 0x27, + 0x37, 0x33, 0x07, 0x17, 0x01, 0x09, 0xA4, 0x79, 0xA4, 0xA4, 0x79, 0xE1, 0xA4, 0xA4, 0x79, 0xA4, + 0xA4, 0x01, 0x1A, 0xCE, 0xCE, 0xCD, 0xCD, 0xCE, 0xCE, 0xCD, 0x00, 0x00, 0x00, 0x01, 0x00, 0x3E, + 0x00, 0x8F, 0x02, 0x27, 0x01, 0xB5, 0x00, 0x05, 0x00, 0x00, 0x13, 0x35, 0x21, 0x11, 0x23, 0x35, + 0x3E, 0x01, 0xE9, 0x67, 0x01, 0x53, 0x62, 0xFE, 0xDA, 0xC4, 0x00, 0x00, 0x00, 0x01, 0x00, 0x42, + 0x00, 0xE6, 0x01, 0x6E, 0x01, 0x55, 0x00, 0x03, 0x00, 0x00, 0x37, 0x35, 0x21, 0x15, 0x42, 0x01, + 0x2C, 0xE6, 0x6F, 0x6F, 0x00, 0x04, 0x00, 0x32, 0xFF, 0xF4, 0x02, 0xFF, 0x02, 0xD1, 0x00, 0x0A, + 0x00, 0x14, 0x00, 0x25, 0x00, 0x2D, 0x00, 0x00, 0x36, 0x10, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x23, 0x22, 0x02, 0x14, 0x16, 0x33, 0x32, 0x36, 0x34, 0x26, 0x23, 0x22, 0x03, 0x11, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x16, 0x1F, 0x01, 0x23, 0x27, 0x23, 0x15, 0x35, 0x33, + 0x32, 0x36, 0x34, 0x26, 0x2B, 0x01, 0x32, 0xD1, 0x94, 0x97, 0xD1, 0xD2, 0x96, 0x94, 0x78, 0x9B, + 0x71, 0x73, 0x9D, 0x9D, 0x73, 0x71, 0x0C, 0x98, 0x37, 0x41, 0x29, 0x18, 0x04, 0x09, 0x45, 0x5E, + 0x3D, 0x31, 0x2F, 0x19, 0x1C, 0x1B, 0x18, 0x31, 0xCB, 0x01, 0x30, 0xD6, 0xD6, 0x98, 0x99, 0xD6, + 0x01, 0xE7, 0xF0, 0xA6, 0xA6, 0xF0, 0xA5, 0xFE, 0x2E, 0x01, 0x6E, 0x3F, 0x35, 0x27, 0x32, 0x06, + 0x02, 0x04, 0x11, 0x84, 0x87, 0x87, 0xC3, 0x1D, 0x34, 0x1C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x74, + 0x03, 0x0F, 0x01, 0x7A, 0x03, 0x66, 0x00, 0x03, 0x00, 0x00, 0x13, 0x35, 0x21, 0x15, 0x74, 0x01, + 0x06, 0x03, 0x0F, 0x57, 0x57, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x2F, 0x01, 0x98, 0x01, 0x76, + 0x02, 0xD3, 0x00, 0x0A, 0x00, 0x14, 0x00, 0x00, 0x00, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x22, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x15, 0x14, 0x01, 0x16, 0x88, + 0x5F, 0x5F, 0x44, 0x43, 0x61, 0xC0, 0x38, 0x27, 0x27, 0x38, 0x26, 0x01, 0x98, 0x5B, 0x42, 0x41, + 0x5D, 0x5D, 0x41, 0x42, 0x26, 0x1C, 0x1B, 0x27, 0x27, 0x1B, 0x1C, 0x00, 0x00, 0x02, 0x00, 0x19, + 0xFF, 0x49, 0x02, 0x31, 0x02, 0x3C, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, 0x37, 0x35, 0x33, 0x35, + 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x03, 0x21, 0x15, 0x21, 0x19, 0xD9, 0x67, 0xD8, + 0xD8, 0x67, 0xCB, 0x01, 0xFC, 0xFE, 0x04, 0xEC, 0x63, 0xED, 0xED, 0x63, 0xEC, 0xEC, 0xFE, 0xBF, + 0x62, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x27, 0x01, 0xA7, 0x01, 0x5C, 0x03, 0x68, 0x00, 0x1D, + 0x00, 0x00, 0x13, 0x26, 0x35, 0x34, 0x3E, 0x04, 0x35, 0x34, 0x26, 0x23, 0x22, 0x07, 0x27, 0x3E, + 0x01, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x03, 0x07, 0x33, 0x15, 0x2B, 0x04, 0x1F, 0x2E, 0x35, + 0x2E, 0x1F, 0x23, 0x1A, 0x28, 0x28, 0x3E, 0x16, 0x50, 0x2D, 0x3F, 0x59, 0x27, 0x39, 0x39, 0x2B, + 0x02, 0xCC, 0x01, 0xA7, 0x1C, 0x0D, 0x29, 0x42, 0x28, 0x26, 0x1B, 0x24, 0x14, 0x17, 0x1D, 0x2E, + 0x37, 0x23, 0x2C, 0x49, 0x3F, 0x28, 0x3F, 0x27, 0x20, 0x24, 0x14, 0x53, 0x00, 0x01, 0x00, 0x20, + 0x01, 0x9D, 0x01, 0x5B, 0x03, 0x5E, 0x00, 0x1D, 0x00, 0x00, 0x13, 0x22, 0x26, 0x27, 0x37, 0x1E, + 0x01, 0x33, 0x32, 0x36, 0x34, 0x26, 0x2B, 0x01, 0x27, 0x3F, 0x01, 0x35, 0x06, 0x2B, 0x01, 0x35, + 0x21, 0x15, 0x07, 0x1E, 0x01, 0x15, 0x14, 0x06, 0xB8, 0x2B, 0x53, 0x1A, 0x31, 0x10, 0x35, 0x1D, + 0x1E, 0x2A, 0x2E, 0x20, 0x23, 0x14, 0x4E, 0x19, 0x14, 0x10, 0x81, 0x01, 0x18, 0x62, 0x31, 0x3C, + 0x5A, 0x01, 0x9D, 0x23, 0x20, 0x43, 0x14, 0x1B, 0x24, 0x36, 0x1E, 0x2D, 0x5A, 0x18, 0x02, 0x03, + 0x54, 0x3D, 0x70, 0x09, 0x42, 0x34, 0x3D, 0x58, 0x00, 0x01, 0x00, 0x8F, 0x02, 0xF5, 0x01, 0x5E, + 0x03, 0x7D, 0x00, 0x03, 0x00, 0x00, 0x13, 0x37, 0x33, 0x07, 0x8F, 0x4C, 0x83, 0x69, 0x02, 0xF5, + 0x88, 0x88, 0x00, 0x00, 0x00, 0x01, 0x00, 0x4E, 0xFF, 0x38, 0x02, 0x29, 0x01, 0xFE, 0x00, 0x1C, + 0x00, 0x00, 0x37, 0x16, 0x1D, 0x01, 0x23, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, + 0x01, 0x33, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x04, 0x23, 0x22, 0x27, 0xB4, 0x08, 0x6E, 0x7F, + 0x22, 0x2C, 0x43, 0x4C, 0x7F, 0x7A, 0x02, 0x03, 0x02, 0x07, 0x1E, 0x24, 0x40, 0x25, 0x2F, 0x19, + 0x09, 0x31, 0x22, 0x7E, 0x02, 0xC6, 0xFE, 0xD2, 0x33, 0x35, 0x64, 0x48, 0xEA, 0xFE, 0x02, 0x3E, + 0x20, 0x04, 0x0F, 0x24, 0x1C, 0x17, 0x15, 0x00, 0x00, 0x02, 0x00, 0x24, 0xFF, 0xCE, 0x02, 0x40, + 0x02, 0xC6, 0x00, 0x0A, 0x00, 0x0E, 0x00, 0x00, 0x05, 0x11, 0x22, 0x26, 0x34, 0x36, 0x33, 0x21, + 0x15, 0x23, 0x11, 0x33, 0x11, 0x33, 0x11, 0x01, 0x0F, 0x61, 0x8A, 0x8A, 0x61, 0x01, 0x31, 0xD5, + 0x3E, 0x5D, 0x32, 0x01, 0x23, 0x89, 0xC4, 0x88, 0x6F, 0xFD, 0x77, 0x02, 0x52, 0xFD, 0xAE, 0x00, + 0x00, 0x01, 0x00, 0x42, 0x00, 0xE4, 0x00, 0xBD, 0x01, 0x64, 0x00, 0x03, 0x00, 0x00, 0x37, 0x35, + 0x33, 0x15, 0x42, 0x7B, 0xE4, 0x80, 0x80, 0x00, 0x00, 0x01, 0x00, 0xA2, 0xFF, 0x30, 0x01, 0x4B, + 0x00, 0x19, 0x00, 0x13, 0x00, 0x00, 0x17, 0x37, 0x17, 0x15, 0x07, 0x1E, 0x01, 0x15, 0x14, 0x06, + 0x23, 0x22, 0x27, 0x35, 0x16, 0x33, 0x32, 0x35, 0x34, 0x23, 0xB4, 0x1F, 0x3A, 0x0B, 0x21, 0x28, + 0x3E, 0x2E, 0x21, 0x1C, 0x10, 0x1B, 0x2C, 0x30, 0x56, 0x6F, 0x0D, 0x07, 0x31, 0x04, 0x26, 0x22, + 0x2E, 0x2A, 0x07, 0x46, 0x08, 0x1C, 0x1B, 0x00, 0x00, 0x01, 0x00, 0x38, 0x01, 0xA7, 0x01, 0x58, + 0x03, 0x5E, 0x00, 0x0E, 0x00, 0x00, 0x13, 0x35, 0x33, 0x35, 0x37, 0x23, 0x06, 0x0F, 0x01, 0x27, + 0x37, 0x33, 0x11, 0x33, 0x15, 0x42, 0x5C, 0x02, 0x02, 0x04, 0x0B, 0x1F, 0x38, 0x71, 0x54, 0x5B, + 0x01, 0xA7, 0x53, 0xCF, 0x1C, 0x09, 0x0A, 0x1D, 0x3C, 0x6D, 0xFE, 0x9C, 0x53, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x40, 0x01, 0x0A, 0x01, 0xA0, 0x02, 0xD0, 0x00, 0x09, 0x00, 0x15, 0x00, 0x19, + 0x00, 0x00, 0x00, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x14, 0x07, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x07, 0x35, 0x21, 0x15, 0x01, 0x3A, 0x94, 0x66, + 0x66, 0x49, 0x4B, 0x66, 0xB0, 0x23, 0x31, 0x31, 0x23, 0x24, 0x31, 0x31, 0x7D, 0x01, 0x43, 0x01, + 0x80, 0x60, 0x49, 0x48, 0x5F, 0x5E, 0x92, 0x10, 0x32, 0x27, 0x26, 0x32, 0x32, 0x26, 0x27, 0x32, + 0xC6, 0x44, 0x44, 0x00, 0x00, 0x02, 0x00, 0x30, 0x00, 0x4D, 0x02, 0x2D, 0x01, 0xE8, 0x00, 0x05, + 0x00, 0x0B, 0x00, 0x00, 0x25, 0x37, 0x27, 0x33, 0x17, 0x07, 0x21, 0x37, 0x27, 0x33, 0x17, 0x07, + 0x01, 0x10, 0xA4, 0xA4, 0x79, 0xA4, 0xA4, 0xFE, 0xA7, 0xA4, 0xA4, 0x79, 0xA4, 0xA4, 0x4D, 0xCD, + 0xCE, 0xCE, 0xCD, 0xCD, 0xCE, 0xCE, 0xCD, 0x00, 0x00, 0x04, 0x00, 0x2F, 0x00, 0x00, 0x03, 0xAB, + 0x02, 0xC7, 0x00, 0x0A, 0x00, 0x12, 0x00, 0x16, 0x00, 0x25, 0x00, 0x00, 0x21, 0x35, 0x23, 0x35, + 0x13, 0x33, 0x11, 0x33, 0x15, 0x23, 0x15, 0x27, 0x33, 0x35, 0x37, 0x23, 0x06, 0x0F, 0x01, 0x05, + 0x23, 0x01, 0x33, 0x01, 0x35, 0x33, 0x35, 0x37, 0x23, 0x06, 0x0F, 0x01, 0x27, 0x37, 0x33, 0x11, + 0x33, 0x15, 0x03, 0x13, 0xCB, 0xBD, 0x6C, 0x3A, 0x3A, 0xC9, 0x6B, 0x04, 0x02, 0x0C, 0x0E, 0x53, + 0xFE, 0xBF, 0x5D, 0x01, 0x50, 0x5C, 0xFD, 0x83, 0x5C, 0x02, 0x02, 0x04, 0x0B, 0x1F, 0x38, 0x71, + 0x54, 0x5B, 0x63, 0x40, 0x01, 0x14, 0xFE, 0xFE, 0x52, 0x63, 0xB5, 0x6E, 0x37, 0x1B, 0x14, 0x74, + 0xB7, 0x02, 0xC6, 0xFE, 0x4A, 0x53, 0xCF, 0x1C, 0x09, 0x0A, 0x1D, 0x3C, 0x6D, 0xFE, 0x9C, 0x53, + 0x00, 0x03, 0x00, 0x2E, 0x00, 0x00, 0x03, 0x9A, 0x02, 0xC7, 0x00, 0x1D, 0x00, 0x21, 0x00, 0x30, + 0x00, 0x00, 0x21, 0x26, 0x35, 0x34, 0x3E, 0x04, 0x35, 0x34, 0x26, 0x23, 0x22, 0x07, 0x27, 0x3E, + 0x01, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x03, 0x07, 0x33, 0x15, 0x21, 0x23, 0x01, 0x33, 0x01, + 0x35, 0x33, 0x35, 0x37, 0x23, 0x06, 0x0F, 0x01, 0x27, 0x37, 0x33, 0x11, 0x33, 0x15, 0x02, 0x69, + 0x04, 0x1F, 0x2E, 0x35, 0x2E, 0x1F, 0x23, 0x1A, 0x28, 0x28, 0x3E, 0x16, 0x50, 0x2D, 0x3F, 0x59, + 0x27, 0x39, 0x39, 0x2B, 0x02, 0xCC, 0xFD, 0xCE, 0x5D, 0x01, 0x50, 0x5C, 0xFD, 0x81, 0x5C, 0x02, + 0x02, 0x04, 0x0B, 0x1F, 0x38, 0x71, 0x54, 0x5B, 0x1C, 0x0D, 0x29, 0x42, 0x28, 0x26, 0x1B, 0x24, + 0x14, 0x17, 0x1D, 0x2E, 0x37, 0x23, 0x2C, 0x49, 0x3F, 0x28, 0x3F, 0x27, 0x20, 0x24, 0x14, 0x53, + 0x02, 0xC6, 0xFE, 0x4A, 0x53, 0xCF, 0x1C, 0x09, 0x0A, 0x1D, 0x3C, 0x6D, 0xFE, 0x9C, 0x53, 0x00, + 0x00, 0x04, 0x00, 0x27, 0x00, 0x00, 0x03, 0xB6, 0x02, 0xC7, 0x00, 0x0A, 0x00, 0x12, 0x00, 0x30, + 0x00, 0x34, 0x00, 0x00, 0x21, 0x35, 0x23, 0x35, 0x13, 0x33, 0x11, 0x33, 0x15, 0x23, 0x15, 0x27, + 0x33, 0x35, 0x37, 0x23, 0x06, 0x0F, 0x01, 0x25, 0x22, 0x26, 0x27, 0x37, 0x1E, 0x01, 0x33, 0x32, + 0x36, 0x34, 0x26, 0x2B, 0x01, 0x27, 0x3F, 0x01, 0x35, 0x06, 0x2B, 0x01, 0x35, 0x21, 0x15, 0x07, + 0x1E, 0x01, 0x15, 0x14, 0x06, 0x13, 0x23, 0x01, 0x33, 0x03, 0x1E, 0xCB, 0xBD, 0x6C, 0x3A, 0x3A, + 0xC9, 0x6B, 0x04, 0x02, 0x0C, 0x0E, 0x53, 0xFE, 0x0C, 0x2B, 0x53, 0x1A, 0x31, 0x10, 0x35, 0x1D, + 0x1E, 0x2A, 0x2E, 0x20, 0x23, 0x14, 0x4E, 0x19, 0x14, 0x10, 0x81, 0x01, 0x18, 0x62, 0x31, 0x3C, + 0x5A, 0x6A, 0x5D, 0x01, 0x50, 0x5C, 0x63, 0x40, 0x01, 0x14, 0xFE, 0xFE, 0x52, 0x63, 0xB5, 0x6E, + 0x37, 0x1B, 0x14, 0x74, 0x4F, 0x23, 0x20, 0x43, 0x14, 0x1B, 0x24, 0x36, 0x1E, 0x2D, 0x5A, 0x18, + 0x02, 0x03, 0x54, 0x3D, 0x70, 0x09, 0x42, 0x34, 0x3D, 0x58, 0xFE, 0xFA, 0x02, 0xC6, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x24, 0xFF, 0x29, 0x01, 0xBB, 0x01, 0xFD, 0x00, 0x19, 0x00, 0x1D, 0x00, 0x00, + 0x01, 0x15, 0x14, 0x0E, 0x03, 0x15, 0x14, 0x16, 0x33, 0x32, 0x37, 0x17, 0x06, 0x23, 0x22, 0x26, + 0x35, 0x34, 0x3E, 0x03, 0x3D, 0x01, 0x37, 0x15, 0x23, 0x35, 0x01, 0x4D, 0x22, 0x30, 0x30, 0x22, + 0x38, 0x29, 0x37, 0x33, 0x47, 0x4C, 0x70, 0x59, 0x82, 0x24, 0x33, 0x34, 0x24, 0x7B, 0x7B, 0x01, + 0x30, 0x30, 0x28, 0x42, 0x2C, 0x29, 0x33, 0x1D, 0x23, 0x30, 0x2A, 0x57, 0x48, 0x67, 0x55, 0x2E, + 0x4A, 0x30, 0x2B, 0x34, 0x1D, 0x27, 0xCD, 0x77, 0x77, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x08, + 0x00, 0x00, 0x02, 0x82, 0x03, 0x7D, 0x00, 0x07, 0x00, 0x0E, 0x00, 0x12, 0x00, 0x00, 0x33, 0x13, + 0x33, 0x13, 0x23, 0x27, 0x23, 0x07, 0x13, 0x33, 0x2F, 0x01, 0x23, 0x06, 0x07, 0x03, 0x27, 0x33, + 0x17, 0x08, 0xF9, 0x88, 0xF9, 0x84, 0x3D, 0xF9, 0x3C, 0x5C, 0xB9, 0x3F, 0x1C, 0x02, 0x10, 0x0C, + 0x14, 0x68, 0x83, 0x4C, 0x02, 0xC6, 0xFD, 0x3A, 0xB6, 0xB6, 0x01, 0x1F, 0xBE, 0x6E, 0x46, 0x28, + 0x01, 0x18, 0x88, 0x88, 0x00, 0x03, 0x00, 0x08, 0x00, 0x00, 0x02, 0x82, 0x03, 0x7D, 0x00, 0x07, + 0x00, 0x0E, 0x00, 0x12, 0x00, 0x00, 0x33, 0x13, 0x33, 0x13, 0x23, 0x27, 0x23, 0x07, 0x13, 0x33, + 0x2F, 0x01, 0x23, 0x06, 0x07, 0x03, 0x37, 0x33, 0x07, 0x08, 0xF9, 0x88, 0xF9, 0x84, 0x3D, 0xF9, + 0x3C, 0x5C, 0xB9, 0x3F, 0x1C, 0x02, 0x10, 0x0C, 0x1A, 0x4C, 0x83, 0x69, 0x02, 0xC6, 0xFD, 0x3A, + 0xB6, 0xB6, 0x01, 0x1F, 0xBE, 0x6E, 0x46, 0x28, 0x01, 0x18, 0x88, 0x88, 0x00, 0x03, 0x00, 0x08, + 0x00, 0x00, 0x02, 0x82, 0x03, 0x7D, 0x00, 0x07, 0x00, 0x0E, 0x00, 0x16, 0x00, 0x00, 0x33, 0x13, + 0x33, 0x13, 0x23, 0x27, 0x23, 0x07, 0x13, 0x33, 0x2F, 0x01, 0x23, 0x06, 0x07, 0x03, 0x37, 0x33, + 0x17, 0x23, 0x27, 0x23, 0x07, 0x08, 0xF9, 0x88, 0xF9, 0x84, 0x3D, 0xF9, 0x3C, 0x5C, 0xB9, 0x3F, + 0x1C, 0x02, 0x10, 0x0C, 0x7F, 0x5C, 0x7F, 0x5D, 0x69, 0x32, 0x02, 0x32, 0x02, 0xC6, 0xFD, 0x3A, + 0xB6, 0xB6, 0x01, 0x1F, 0xBE, 0x6E, 0x46, 0x28, 0x01, 0x18, 0x88, 0x88, 0x51, 0x51, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x08, 0x00, 0x00, 0x02, 0x82, 0x03, 0x7F, 0x00, 0x07, 0x00, 0x0E, 0x00, 0x20, + 0x00, 0x00, 0x33, 0x13, 0x33, 0x13, 0x23, 0x27, 0x23, 0x07, 0x13, 0x33, 0x2F, 0x01, 0x23, 0x06, + 0x07, 0x03, 0x34, 0x33, 0x32, 0x1E, 0x01, 0x33, 0x32, 0x35, 0x33, 0x14, 0x23, 0x22, 0x2E, 0x01, + 0x23, 0x22, 0x15, 0x08, 0xF9, 0x88, 0xF9, 0x84, 0x3D, 0xF9, 0x3C, 0x5C, 0xB9, 0x3F, 0x1C, 0x02, + 0x10, 0x0C, 0x99, 0x70, 0x1D, 0x2D, 0x24, 0x10, 0x27, 0x56, 0x70, 0x1D, 0x2D, 0x24, 0x10, 0x26, + 0x02, 0xC6, 0xFD, 0x3A, 0xB6, 0xB6, 0x01, 0x1F, 0xBE, 0x6E, 0x46, 0x28, 0x01, 0x19, 0x89, 0x21, + 0x20, 0x3E, 0x89, 0x21, 0x20, 0x3E, 0x00, 0x00, 0x00, 0x04, 0x00, 0x08, 0x00, 0x00, 0x02, 0x82, + 0x03, 0x7D, 0x00, 0x07, 0x00, 0x0E, 0x00, 0x12, 0x00, 0x16, 0x00, 0x00, 0x33, 0x13, 0x33, 0x13, + 0x23, 0x27, 0x23, 0x07, 0x13, 0x33, 0x2F, 0x01, 0x23, 0x06, 0x07, 0x13, 0x35, 0x33, 0x15, 0x21, + 0x35, 0x33, 0x15, 0x08, 0xF9, 0x88, 0xF9, 0x84, 0x3D, 0xF9, 0x3C, 0x5C, 0xB9, 0x3F, 0x1C, 0x02, + 0x10, 0x0C, 0x48, 0x61, 0xFE, 0xE7, 0x62, 0x02, 0xC6, 0xFD, 0x3A, 0xB6, 0xB6, 0x01, 0x1F, 0xBE, + 0x6E, 0x46, 0x28, 0x01, 0x2C, 0x74, 0x74, 0x74, 0x74, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x08, + 0x00, 0x00, 0x02, 0x82, 0x03, 0x86, 0x00, 0x07, 0x00, 0x0E, 0x00, 0x1A, 0x00, 0x25, 0x00, 0x00, + 0x33, 0x13, 0x33, 0x13, 0x23, 0x27, 0x23, 0x07, 0x13, 0x33, 0x2F, 0x01, 0x23, 0x06, 0x07, 0x13, + 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, + 0x26, 0x22, 0x06, 0x15, 0x14, 0x16, 0x08, 0xF9, 0x88, 0xF9, 0x84, 0x3D, 0xF9, 0x3C, 0x5C, 0xB9, + 0x3F, 0x1C, 0x02, 0x10, 0x0C, 0x1D, 0x27, 0x38, 0x38, 0x27, 0x26, 0x38, 0x38, 0x26, 0x0F, 0x13, + 0x13, 0x1E, 0x13, 0x12, 0x02, 0xC6, 0xFD, 0x3A, 0xB6, 0xB6, 0x01, 0x1F, 0xBE, 0x6E, 0x46, 0x28, + 0x01, 0x0C, 0x2A, 0x24, 0x25, 0x2A, 0x2A, 0x25, 0x24, 0x2A, 0x2C, 0x13, 0x0F, 0x10, 0x13, 0x13, + 0x10, 0x0F, 0x13, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x03, 0x61, 0x02, 0xC6, 0x00, 0x0F, + 0x00, 0x13, 0x00, 0x00, 0x33, 0x01, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, + 0x21, 0x11, 0x23, 0x03, 0x13, 0x33, 0x35, 0x23, 0x02, 0x01, 0x26, 0x02, 0x2A, 0xFE, 0xD7, 0xEF, + 0xEF, 0x01, 0x38, 0xFE, 0x48, 0xAA, 0x77, 0xA0, 0x81, 0x35, 0x02, 0xC6, 0x6F, 0xBA, 0x6F, 0xBF, + 0x6F, 0x01, 0x30, 0xFE, 0xD0, 0x01, 0x99, 0xBE, 0x00, 0x01, 0x00, 0x2D, 0xFF, 0x30, 0x02, 0xB3, + 0x02, 0xD2, 0x00, 0x28, 0x00, 0x00, 0x05, 0x37, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, + 0x07, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x37, 0x17, 0x06, 0x0F, 0x01, + 0x1E, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, 0x27, 0x35, 0x16, 0x33, 0x32, 0x35, 0x34, 0x23, 0x01, + 0x59, 0x15, 0x92, 0xAF, 0xCE, 0x9F, 0xA2, 0x64, 0x3E, 0x27, 0x69, 0x32, 0x70, 0x7E, 0x80, 0x6F, + 0x72, 0x5C, 0x44, 0x6A, 0x9B, 0x07, 0x21, 0x28, 0x3E, 0x2E, 0x21, 0x1C, 0x10, 0x1B, 0x2C, 0x30, + 0x56, 0x4C, 0x0F, 0xCD, 0x94, 0x9C, 0xD0, 0x61, 0x60, 0x21, 0x2A, 0x8C, 0x68, 0x69, 0x95, 0x5A, + 0x5D, 0x6B, 0x07, 0x21, 0x04, 0x26, 0x22, 0x2E, 0x2A, 0x07, 0x46, 0x08, 0x1C, 0x1B, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0x0F, 0x03, 0x7D, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, + 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x01, 0x27, 0x33, 0x17, + 0x56, 0x01, 0xA9, 0xFE, 0xD8, 0xEF, 0xEF, 0x01, 0x38, 0xFE, 0xF5, 0x68, 0x83, 0x4C, 0x02, 0xC6, + 0x6F, 0xBA, 0x6F, 0xBF, 0x6F, 0x02, 0xF5, 0x88, 0x88, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x56, + 0x00, 0x00, 0x02, 0x0F, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x13, 0x37, 0x33, 0x07, + 0x01, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0xFD, 0x4C, 0x83, 0x69, + 0xFE, 0xF3, 0x01, 0xA9, 0xFE, 0xD8, 0xEF, 0xEF, 0x01, 0x38, 0x02, 0xF5, 0x88, 0x88, 0xFD, 0x0B, + 0x02, 0xC6, 0x6F, 0xBA, 0x6F, 0xBF, 0x6F, 0x00, 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0x0F, + 0x03, 0x7D, 0x00, 0x07, 0x00, 0x13, 0x00, 0x00, 0x13, 0x37, 0x33, 0x17, 0x23, 0x27, 0x23, 0x07, + 0x03, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x98, 0x5C, 0x7F, 0x5D, + 0x69, 0x32, 0x02, 0x32, 0xAB, 0x01, 0xA9, 0xFE, 0xD8, 0xEF, 0xEF, 0x01, 0x38, 0x02, 0xF5, 0x88, + 0x88, 0x51, 0x51, 0xFD, 0x0B, 0x02, 0xC6, 0x6F, 0xBA, 0x6F, 0xBF, 0x6F, 0x00, 0x03, 0x00, 0x56, + 0x00, 0x00, 0x02, 0x0F, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x07, 0x00, 0x13, 0x00, 0x00, 0x01, 0x35, + 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x03, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x21, 0x15, 0x01, 0x60, 0x61, 0xFE, 0xE7, 0x62, 0xB4, 0x01, 0xA9, 0xFE, 0xD8, 0xEF, 0xEF, 0x01, + 0x38, 0x03, 0x09, 0x74, 0x74, 0x74, 0x74, 0xFC, 0xF7, 0x02, 0xC6, 0x6F, 0xBA, 0x6F, 0xBF, 0x6F, + 0x00, 0x02, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0xD7, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x33, 0x11, 0x33, 0x11, 0x03, 0x27, 0x33, 0x17, 0x56, 0x81, 0x70, 0x68, 0x83, 0x4C, 0x02, 0xC6, + 0xFD, 0x3A, 0x02, 0xF5, 0x88, 0x88, 0x00, 0x00, 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x01, 0x30, + 0x03, 0x7D, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x03, 0x37, 0x33, 0x07, + 0x56, 0x81, 0x76, 0x4C, 0x83, 0x69, 0x02, 0xC6, 0xFD, 0x3A, 0x02, 0xF5, 0x88, 0x88, 0x00, 0x00, + 0x00, 0x02, 0xFF, 0xFC, 0x00, 0x00, 0x01, 0x34, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x0B, 0x00, 0x00, + 0x33, 0x11, 0x33, 0x11, 0x03, 0x37, 0x33, 0x17, 0x23, 0x27, 0x23, 0x07, 0x56, 0x81, 0xDB, 0x5C, + 0x7F, 0x5D, 0x69, 0x32, 0x02, 0x32, 0x02, 0xC6, 0xFD, 0x3A, 0x02, 0xF5, 0x88, 0x88, 0x51, 0x51, + 0x00, 0x03, 0x00, 0x0B, 0x00, 0x00, 0x01, 0x24, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, + 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x03, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x56, 0x81, + 0x14, 0x61, 0xFE, 0xE7, 0x62, 0x02, 0xC6, 0xFD, 0x3A, 0x03, 0x09, 0x74, 0x74, 0x74, 0x74, 0x00, + 0x00, 0x02, 0x00, 0x22, 0x00, 0x00, 0x02, 0xB8, 0x02, 0xC6, 0x00, 0x0B, 0x00, 0x18, 0x00, 0x00, + 0x33, 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x32, 0x16, 0x10, 0x06, 0x23, 0x27, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x2B, 0x01, 0x15, 0x33, 0x15, 0x23, 0x5C, 0x3A, 0x3A, 0xF2, 0xA6, 0xC4, 0xC4, + 0xA6, 0x72, 0x6B, 0x6E, 0x7E, 0x7F, 0x6D, 0x6B, 0x84, 0x84, 0x01, 0x2D, 0x69, 0x01, 0x30, 0xBC, + 0xFE, 0xB4, 0xBE, 0x6F, 0x7F, 0x76, 0x74, 0x7F, 0xC1, 0x69, 0x00, 0x00, 0x00, 0x02, 0x00, 0x56, + 0x00, 0x00, 0x02, 0x9A, 0x03, 0x7F, 0x00, 0x17, 0x00, 0x29, 0x00, 0x00, 0x33, 0x11, 0x33, 0x01, + 0x1E, 0x01, 0x1F, 0x01, 0x33, 0x26, 0x35, 0x11, 0x33, 0x11, 0x23, 0x01, 0x2E, 0x01, 0x2F, 0x01, + 0x23, 0x16, 0x15, 0x11, 0x03, 0x34, 0x33, 0x32, 0x1E, 0x01, 0x33, 0x32, 0x35, 0x33, 0x14, 0x23, + 0x22, 0x2E, 0x01, 0x23, 0x22, 0x15, 0x56, 0x81, 0x01, 0x0D, 0x0C, 0x1D, 0x09, 0x09, 0x02, 0x07, + 0x80, 0x80, 0xFE, 0xF3, 0x0C, 0x1D, 0x09, 0x09, 0x02, 0x07, 0x14, 0x70, 0x1D, 0x2D, 0x24, 0x10, + 0x27, 0x56, 0x70, 0x1D, 0x2D, 0x24, 0x10, 0x26, 0x02, 0xC6, 0xFE, 0x66, 0x13, 0x37, 0x12, 0x12, + 0x44, 0x2A, 0x01, 0x9A, 0xFD, 0x3A, 0x01, 0x99, 0x13, 0x37, 0x12, 0x12, 0x44, 0x2A, 0xFE, 0x67, + 0x02, 0xF6, 0x89, 0x21, 0x20, 0x3E, 0x89, 0x21, 0x20, 0x3E, 0x00, 0x00, 0x00, 0x03, 0x00, 0x2C, + 0xFF, 0xF4, 0x03, 0x0A, 0x03, 0x7D, 0x00, 0x09, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, 0x13, 0x34, + 0x36, 0x20, 0x16, 0x15, 0x14, 0x06, 0x20, 0x26, 0x37, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x22, 0x06, 0x13, 0x27, 0x33, 0x17, 0x2C, 0xCF, 0x01, 0x40, 0xCF, 0xCF, 0xFE, 0xC0, 0xCF, 0x85, + 0x85, 0xCA, 0x85, 0x85, 0xCA, 0x85, 0xB9, 0x68, 0x83, 0x4C, 0x01, 0x68, 0x9A, 0xD0, 0xD0, 0x9A, + 0x9E, 0xD6, 0xD6, 0x9E, 0x6D, 0x91, 0x91, 0x6D, 0x68, 0x8C, 0x8C, 0x01, 0x25, 0x88, 0x88, 0x00, + 0x00, 0x03, 0x00, 0x2C, 0xFF, 0xF4, 0x03, 0x0A, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x0D, 0x00, 0x17, + 0x00, 0x00, 0x01, 0x37, 0x33, 0x07, 0x01, 0x34, 0x36, 0x20, 0x16, 0x15, 0x14, 0x06, 0x20, 0x26, + 0x37, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x01, 0x64, 0x4C, 0x83, 0x69, 0xFE, + 0x62, 0xCF, 0x01, 0x40, 0xCF, 0xCF, 0xFE, 0xC0, 0xCF, 0x85, 0x85, 0xCA, 0x85, 0x85, 0xCA, 0x85, + 0x02, 0xF5, 0x88, 0x88, 0xFE, 0x73, 0x9A, 0xD0, 0xD0, 0x9A, 0x9E, 0xD6, 0xD6, 0x9E, 0x6D, 0x91, + 0x91, 0x6D, 0x68, 0x8C, 0x8C, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x2C, 0xFF, 0xF4, 0x03, 0x0A, + 0x03, 0x7D, 0x00, 0x07, 0x00, 0x11, 0x00, 0x1B, 0x00, 0x00, 0x01, 0x37, 0x33, 0x17, 0x23, 0x27, + 0x23, 0x07, 0x01, 0x34, 0x36, 0x20, 0x16, 0x15, 0x14, 0x06, 0x20, 0x26, 0x37, 0x14, 0x16, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x00, 0xFF, 0x5C, 0x7F, 0x5D, 0x69, 0x32, 0x02, 0x32, 0xFE, + 0xC4, 0xCF, 0x01, 0x40, 0xCF, 0xCF, 0xFE, 0xC0, 0xCF, 0x85, 0x85, 0xCA, 0x85, 0x85, 0xCA, 0x85, + 0x02, 0xF5, 0x88, 0x88, 0x51, 0x51, 0xFE, 0x73, 0x9A, 0xD0, 0xD0, 0x9A, 0x9E, 0xD6, 0xD6, 0x9E, + 0x6D, 0x91, 0x91, 0x6D, 0x68, 0x8C, 0x8C, 0x00, 0x00, 0x03, 0x00, 0x2C, 0xFF, 0xF4, 0x03, 0x0A, + 0x03, 0x7F, 0x00, 0x09, 0x00, 0x13, 0x00, 0x25, 0x00, 0x00, 0x13, 0x34, 0x36, 0x20, 0x16, 0x15, + 0x14, 0x06, 0x20, 0x26, 0x37, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x13, 0x34, + 0x33, 0x32, 0x1E, 0x01, 0x33, 0x32, 0x35, 0x33, 0x14, 0x23, 0x22, 0x2E, 0x01, 0x23, 0x22, 0x15, + 0x2C, 0xCF, 0x01, 0x40, 0xCF, 0xCF, 0xFE, 0xC0, 0xCF, 0x85, 0x85, 0xCA, 0x85, 0x85, 0xCA, 0x85, + 0x34, 0x70, 0x1D, 0x2D, 0x24, 0x10, 0x27, 0x56, 0x70, 0x1D, 0x2D, 0x24, 0x10, 0x26, 0x01, 0x68, + 0x9A, 0xD0, 0xD0, 0x9A, 0x9E, 0xD6, 0xD6, 0x9E, 0x6D, 0x91, 0x91, 0x6D, 0x68, 0x8C, 0x8C, 0x01, + 0x26, 0x89, 0x21, 0x20, 0x3E, 0x89, 0x21, 0x20, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x2C, + 0xFF, 0xF4, 0x03, 0x0A, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x07, 0x00, 0x11, 0x00, 0x1B, 0x00, 0x00, + 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x01, 0x34, 0x36, 0x20, 0x16, 0x15, 0x14, 0x06, + 0x20, 0x26, 0x37, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x01, 0xC6, 0x61, 0xFE, + 0xE7, 0x62, 0xFE, 0xBC, 0xCF, 0x01, 0x40, 0xCF, 0xCF, 0xFE, 0xC0, 0xCF, 0x85, 0x85, 0xCA, 0x85, + 0x85, 0xCA, 0x85, 0x03, 0x09, 0x74, 0x74, 0x74, 0x74, 0xFE, 0x5F, 0x9A, 0xD0, 0xD0, 0x9A, 0x9E, + 0xD6, 0xD6, 0x9E, 0x6D, 0x91, 0x91, 0x6D, 0x68, 0x8C, 0x8C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x1C, + 0x00, 0x00, 0x02, 0x2D, 0x02, 0x3C, 0x00, 0x0B, 0x00, 0x00, 0x3F, 0x01, 0x27, 0x37, 0x17, 0x37, + 0x17, 0x07, 0x17, 0x07, 0x27, 0x07, 0x1C, 0xC5, 0xC5, 0x46, 0xC2, 0xC3, 0x46, 0xC6, 0xC6, 0x46, + 0xC3, 0xC2, 0x45, 0xD9, 0xD8, 0x46, 0xD5, 0xD5, 0x46, 0xD8, 0xD9, 0x45, 0xD5, 0xD5, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x2C, 0xFF, 0xE6, 0x03, 0x0A, 0x02, 0xE0, 0x00, 0x14, 0x00, 0x1C, 0x00, 0x24, + 0x00, 0x00, 0x3F, 0x01, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, 0x37, 0x17, 0x07, 0x1E, 0x01, + 0x15, 0x14, 0x06, 0x23, 0x22, 0x27, 0x07, 0x37, 0x01, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x17, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x27, 0x74, 0x30, 0x78, 0xD3, 0x9C, 0x62, 0x54, 0x2C, 0x39, + 0x2B, 0x3C, 0x43, 0xD3, 0x9C, 0x69, 0x56, 0x2F, 0x43, 0x01, 0x18, 0x34, 0x39, 0x62, 0x88, 0x73, + 0x36, 0x41, 0x62, 0x88, 0x45, 0x0D, 0x44, 0x6D, 0xA9, 0x99, 0xD2, 0x2E, 0x3C, 0x27, 0x3C, 0x33, + 0x8F, 0x54, 0x9D, 0xD6, 0x34, 0x42, 0xD4, 0x01, 0x85, 0x1D, 0x8C, 0x69, 0x66, 0x75, 0x22, 0x91, + 0x6C, 0x69, 0x45, 0x00, 0x00, 0x02, 0x00, 0x4E, 0xFF, 0xF4, 0x02, 0x8A, 0x03, 0x7D, 0x00, 0x10, + 0x00, 0x14, 0x00, 0x00, 0x13, 0x11, 0x33, 0x11, 0x14, 0x16, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, + 0x14, 0x06, 0x23, 0x22, 0x26, 0x13, 0x27, 0x33, 0x17, 0x4E, 0x81, 0x55, 0x90, 0x55, 0x81, 0x9D, + 0x80, 0x81, 0x9E, 0xED, 0x68, 0x83, 0x4C, 0x00, 0xFF, 0x01, 0xC7, 0xFE, 0x3A, 0x47, 0x4F, 0x4F, + 0x47, 0x01, 0xC6, 0xFE, 0x39, 0x77, 0x94, 0x94, 0x02, 0x6D, 0x88, 0x88, 0x00, 0x02, 0x00, 0x4E, + 0xFF, 0xF4, 0x02, 0x8A, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x14, 0x00, 0x00, 0x01, 0x37, 0x33, 0x07, + 0x01, 0x11, 0x33, 0x11, 0x14, 0x16, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x23, 0x22, + 0x26, 0x01, 0x35, 0x4C, 0x83, 0x69, 0xFE, 0xB3, 0x81, 0x55, 0x90, 0x55, 0x81, 0x9D, 0x80, 0x81, + 0x9E, 0x02, 0xF5, 0x88, 0x88, 0xFE, 0x0A, 0x01, 0xC7, 0xFE, 0x3A, 0x47, 0x4F, 0x4F, 0x47, 0x01, + 0xC6, 0xFE, 0x39, 0x77, 0x94, 0x94, 0x00, 0x00, 0x00, 0x02, 0x00, 0x4E, 0xFF, 0xF4, 0x02, 0x8A, + 0x03, 0x7D, 0x00, 0x07, 0x00, 0x18, 0x00, 0x00, 0x13, 0x37, 0x33, 0x17, 0x23, 0x27, 0x23, 0x07, + 0x03, 0x11, 0x33, 0x11, 0x14, 0x16, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x23, 0x22, + 0x26, 0xD0, 0x5C, 0x7F, 0x5D, 0x69, 0x32, 0x02, 0x32, 0xEB, 0x81, 0x55, 0x90, 0x55, 0x81, 0x9D, + 0x80, 0x81, 0x9E, 0x02, 0xF5, 0x88, 0x88, 0x51, 0x51, 0xFE, 0x0A, 0x01, 0xC7, 0xFE, 0x3A, 0x47, + 0x4F, 0x4F, 0x47, 0x01, 0xC6, 0xFE, 0x39, 0x77, 0x94, 0x94, 0x00, 0x00, 0x00, 0x03, 0x00, 0x4E, + 0xFF, 0xF4, 0x02, 0x8A, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x07, 0x00, 0x18, 0x00, 0x00, 0x01, 0x35, + 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x03, 0x11, 0x33, 0x11, 0x14, 0x16, 0x32, 0x36, 0x35, 0x11, + 0x33, 0x11, 0x14, 0x06, 0x23, 0x22, 0x26, 0x01, 0x97, 0x61, 0xFE, 0xE7, 0x62, 0xF3, 0x81, 0x55, + 0x90, 0x55, 0x81, 0x9D, 0x80, 0x81, 0x9E, 0x03, 0x09, 0x74, 0x74, 0x74, 0x74, 0xFD, 0xF6, 0x01, + 0xC7, 0xFE, 0x3A, 0x47, 0x4F, 0x4F, 0x47, 0x01, 0xC6, 0xFE, 0x39, 0x77, 0x94, 0x94, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x02, 0x5B, 0x03, 0x7D, 0x00, 0x0C, 0x00, 0x10, 0x00, 0x00, + 0x33, 0x11, 0x03, 0x33, 0x1F, 0x01, 0x33, 0x36, 0x3F, 0x01, 0x33, 0x03, 0x11, 0x03, 0x37, 0x33, + 0x07, 0xEF, 0xED, 0x92, 0x6F, 0x2B, 0x02, 0x15, 0x16, 0x6E, 0x92, 0xEC, 0x77, 0x4C, 0x83, 0x69, + 0x01, 0x29, 0x01, 0x9D, 0xD1, 0x5F, 0x33, 0x2C, 0xD1, 0xFE, 0x63, 0xFE, 0xD7, 0x02, 0xF5, 0x88, + 0x88, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0x4A, 0x02, 0xC6, 0x00, 0x0B, + 0x00, 0x13, 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, 0x33, 0x32, 0x16, 0x14, 0x06, 0x2B, 0x01, 0x15, + 0x35, 0x33, 0x32, 0x36, 0x34, 0x26, 0x2B, 0x01, 0x56, 0x81, 0x91, 0x64, 0x7E, 0x7E, 0x65, 0x90, + 0x79, 0x38, 0x3F, 0x3E, 0x37, 0x7B, 0x02, 0xC6, 0x73, 0x80, 0xCE, 0x82, 0x83, 0xF2, 0x42, 0x70, + 0x40, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x44, 0xFF, 0xF9, 0x02, 0x42, 0x02, 0xD2, 0x00, 0x2C, + 0x00, 0x00, 0x33, 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x14, 0x1E, 0x02, + 0x15, 0x14, 0x06, 0x23, 0x22, 0x27, 0x35, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x02, 0x35, + 0x34, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x44, 0x8A, 0x5E, 0x57, 0x77, + 0x1C, 0x21, 0x1C, 0x32, 0x3D, 0x32, 0x68, 0x4C, 0x53, 0x34, 0x37, 0x3D, 0x1F, 0x28, 0x33, 0x3C, + 0x33, 0x1C, 0x22, 0x1C, 0x2C, 0x26, 0x2B, 0x3A, 0x02, 0x11, 0x5A, 0x67, 0x63, 0x4B, 0x1F, 0x36, + 0x1F, 0x29, 0x26, 0x2C, 0x28, 0x48, 0x2B, 0x4D, 0x54, 0x1A, 0x6C, 0x1A, 0x1D, 0x1F, 0x16, 0x2F, + 0x26, 0x40, 0x25, 0x1A, 0x33, 0x21, 0x2D, 0x16, 0x1C, 0x28, 0x2F, 0x2F, 0xFD, 0xF8, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x1D, 0xFF, 0xF4, 0x01, 0xDB, 0x02, 0xC6, 0x00, 0x1C, 0x00, 0x26, 0x00, 0x2A, + 0x00, 0x00, 0x37, 0x34, 0x3E, 0x02, 0x3B, 0x01, 0x35, 0x34, 0x23, 0x22, 0x07, 0x27, 0x3E, 0x01, + 0x33, 0x32, 0x16, 0x15, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x23, 0x22, 0x13, 0x27, 0x33, 0x17, 0x1D, 0x3B, 0x61, 0x5B, + 0x32, 0x16, 0x60, 0x46, 0x48, 0x2F, 0x21, 0x70, 0x37, 0x64, 0x70, 0x76, 0x03, 0x02, 0x18, 0x56, + 0x33, 0x47, 0x61, 0x7E, 0x29, 0x24, 0x33, 0x42, 0x16, 0xAC, 0x40, 0x68, 0x83, 0x4C, 0x8D, 0x36, + 0x4C, 0x23, 0x0E, 0x07, 0x5A, 0x31, 0x5B, 0x1A, 0x25, 0x6B, 0x60, 0xFE, 0xC1, 0x2B, 0x25, 0x29, + 0x33, 0x55, 0x4F, 0x1B, 0x28, 0x54, 0x32, 0x0E, 0x01, 0x55, 0x88, 0x88, 0x00, 0x03, 0x00, 0x1D, + 0xFF, 0xF4, 0x01, 0xDB, 0x02, 0xC6, 0x00, 0x1C, 0x00, 0x26, 0x00, 0x2A, 0x00, 0x00, 0x37, 0x34, + 0x3E, 0x02, 0x3B, 0x01, 0x35, 0x34, 0x23, 0x22, 0x07, 0x27, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, + 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x3D, 0x01, 0x23, 0x22, 0x13, 0x37, 0x33, 0x07, 0x1D, 0x3B, 0x61, 0x5B, 0x32, 0x16, 0x60, 0x46, + 0x48, 0x2F, 0x21, 0x70, 0x37, 0x64, 0x70, 0x76, 0x03, 0x02, 0x18, 0x56, 0x33, 0x47, 0x61, 0x7E, + 0x29, 0x24, 0x33, 0x42, 0x16, 0xAC, 0x38, 0x4C, 0x83, 0x69, 0x8D, 0x36, 0x4C, 0x23, 0x0E, 0x07, + 0x5A, 0x31, 0x5B, 0x1A, 0x25, 0x6B, 0x60, 0xFE, 0xC1, 0x2B, 0x25, 0x29, 0x33, 0x55, 0x4F, 0x1B, + 0x28, 0x54, 0x32, 0x0E, 0x01, 0x55, 0x88, 0x88, 0x00, 0x03, 0x00, 0x1D, 0xFF, 0xF4, 0x01, 0xDB, + 0x02, 0xC6, 0x00, 0x1C, 0x00, 0x26, 0x00, 0x2E, 0x00, 0x00, 0x37, 0x34, 0x3E, 0x02, 0x3B, 0x01, + 0x35, 0x34, 0x23, 0x22, 0x07, 0x27, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x11, 0x23, 0x35, 0x37, + 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x23, 0x22, + 0x03, 0x37, 0x33, 0x17, 0x23, 0x27, 0x23, 0x07, 0x1D, 0x3B, 0x61, 0x5B, 0x32, 0x16, 0x60, 0x46, + 0x48, 0x2F, 0x21, 0x70, 0x37, 0x64, 0x70, 0x76, 0x03, 0x02, 0x18, 0x56, 0x33, 0x47, 0x61, 0x7E, + 0x29, 0x24, 0x33, 0x42, 0x16, 0xAC, 0x2D, 0x5C, 0x7F, 0x5D, 0x69, 0x32, 0x02, 0x32, 0x8D, 0x36, + 0x4C, 0x23, 0x0E, 0x07, 0x5A, 0x31, 0x5B, 0x1A, 0x25, 0x6B, 0x60, 0xFE, 0xC1, 0x2B, 0x25, 0x29, + 0x33, 0x55, 0x4F, 0x1B, 0x28, 0x54, 0x32, 0x0E, 0x01, 0x55, 0x88, 0x88, 0x51, 0x51, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x1D, 0xFF, 0xF4, 0x01, 0xDB, 0x02, 0xC8, 0x00, 0x1C, 0x00, 0x26, 0x00, 0x3A, + 0x00, 0x00, 0x37, 0x34, 0x3E, 0x02, 0x3B, 0x01, 0x35, 0x34, 0x23, 0x22, 0x07, 0x27, 0x3E, 0x01, + 0x33, 0x32, 0x16, 0x15, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x23, 0x22, 0x03, 0x34, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, + 0x35, 0x33, 0x14, 0x23, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x15, 0x1D, 0x3B, 0x61, 0x5B, 0x32, 0x16, + 0x60, 0x46, 0x48, 0x2F, 0x21, 0x70, 0x37, 0x64, 0x70, 0x76, 0x03, 0x02, 0x18, 0x56, 0x33, 0x47, + 0x61, 0x7E, 0x29, 0x24, 0x33, 0x42, 0x16, 0xAC, 0x46, 0x70, 0x17, 0x27, 0x16, 0x1D, 0x0D, 0x27, + 0x56, 0x70, 0x17, 0x27, 0x16, 0x1D, 0x0D, 0x26, 0x8D, 0x36, 0x4C, 0x23, 0x0E, 0x07, 0x5A, 0x31, + 0x5B, 0x1A, 0x25, 0x6B, 0x60, 0xFE, 0xC1, 0x2B, 0x25, 0x29, 0x33, 0x55, 0x4F, 0x1B, 0x28, 0x54, + 0x32, 0x0E, 0x01, 0x56, 0x89, 0x14, 0x19, 0x14, 0x3E, 0x89, 0x14, 0x19, 0x14, 0x3E, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x1D, 0xFF, 0xF4, 0x01, 0xDB, 0x02, 0xC6, 0x00, 0x1C, 0x00, 0x26, 0x00, 0x2A, + 0x00, 0x2E, 0x00, 0x00, 0x37, 0x34, 0x3E, 0x02, 0x3B, 0x01, 0x35, 0x34, 0x23, 0x22, 0x07, 0x27, + 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, + 0x37, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x23, 0x22, 0x13, 0x35, 0x33, 0x15, 0x21, 0x35, + 0x33, 0x15, 0x1D, 0x3B, 0x61, 0x5B, 0x32, 0x16, 0x60, 0x46, 0x48, 0x2F, 0x21, 0x70, 0x37, 0x64, + 0x70, 0x76, 0x03, 0x02, 0x18, 0x56, 0x33, 0x47, 0x61, 0x7E, 0x29, 0x24, 0x33, 0x42, 0x16, 0xAC, + 0x9B, 0x61, 0xFE, 0xE7, 0x62, 0x8D, 0x36, 0x4C, 0x23, 0x0E, 0x07, 0x5A, 0x31, 0x5B, 0x1A, 0x25, + 0x6B, 0x60, 0xFE, 0xC1, 0x2B, 0x25, 0x29, 0x33, 0x55, 0x4F, 0x1B, 0x28, 0x54, 0x32, 0x0E, 0x01, + 0x69, 0x74, 0x74, 0x74, 0x74, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x1D, 0xFF, 0xF4, 0x01, 0xDB, + 0x02, 0xCF, 0x00, 0x1C, 0x00, 0x26, 0x00, 0x32, 0x00, 0x3D, 0x00, 0x00, 0x37, 0x34, 0x3E, 0x02, + 0x3B, 0x01, 0x35, 0x34, 0x23, 0x22, 0x07, 0x27, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x11, 0x23, + 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, + 0x23, 0x22, 0x13, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x27, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x15, 0x14, 0x16, 0x1D, 0x3B, 0x61, 0x5B, 0x32, 0x16, 0x60, + 0x46, 0x48, 0x2F, 0x21, 0x70, 0x37, 0x64, 0x70, 0x76, 0x03, 0x02, 0x18, 0x56, 0x33, 0x47, 0x61, + 0x7E, 0x29, 0x24, 0x33, 0x42, 0x16, 0xAC, 0x6F, 0x27, 0x38, 0x38, 0x27, 0x26, 0x38, 0x38, 0x26, + 0x0F, 0x13, 0x13, 0x1E, 0x13, 0x12, 0x8D, 0x36, 0x4C, 0x23, 0x0E, 0x07, 0x5A, 0x31, 0x5B, 0x1A, + 0x25, 0x6B, 0x60, 0xFE, 0xC1, 0x2B, 0x25, 0x29, 0x33, 0x55, 0x4F, 0x1B, 0x28, 0x54, 0x32, 0x0E, + 0x01, 0x49, 0x2A, 0x24, 0x25, 0x2A, 0x2A, 0x25, 0x24, 0x2A, 0x2C, 0x13, 0x0F, 0x10, 0x13, 0x13, + 0x10, 0x0F, 0x13, 0x00, 0x00, 0x03, 0x00, 0x1D, 0xFF, 0xF4, 0x03, 0x35, 0x02, 0x0A, 0x00, 0x2B, + 0x00, 0x32, 0x00, 0x3E, 0x00, 0x00, 0x37, 0x34, 0x21, 0x33, 0x35, 0x34, 0x23, 0x22, 0x07, 0x27, + 0x3E, 0x01, 0x33, 0x32, 0x17, 0x33, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x15, 0x21, 0x1E, + 0x01, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x23, 0x22, 0x27, 0x23, 0x0E, 0x03, 0x23, 0x22, 0x26, + 0x25, 0x33, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x05, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x23, + 0x22, 0x0E, 0x01, 0x1D, 0x01, 0x2E, 0x11, 0x63, 0x46, 0x46, 0x2F, 0x21, 0x6D, 0x36, 0x77, 0x2F, + 0x02, 0x3D, 0x6D, 0x68, 0x79, 0x03, 0xFE, 0xA3, 0x06, 0x53, 0x3D, 0x50, 0x43, 0x31, 0x24, 0x72, + 0x37, 0x92, 0x43, 0x02, 0x06, 0x17, 0x2D, 0x4A, 0x2C, 0x49, 0x65, 0x01, 0xBC, 0xDC, 0x01, 0x39, + 0x28, 0x31, 0x3F, 0xFE, 0xBA, 0x28, 0x26, 0x31, 0x42, 0x24, 0x28, 0x40, 0x35, 0x93, 0xAD, 0x07, + 0x5A, 0x31, 0x5A, 0x1C, 0x24, 0x4B, 0x4B, 0x8A, 0x69, 0x09, 0x22, 0x04, 0x42, 0x46, 0x37, 0x5A, + 0x21, 0x28, 0x70, 0x0D, 0x1E, 0x29, 0x1B, 0x56, 0xF5, 0x2F, 0x38, 0x36, 0xD8, 0x1C, 0x26, 0x55, + 0x32, 0x0A, 0x0B, 0x26, 0x00, 0x01, 0x00, 0x25, 0xFF, 0x30, 0x02, 0x0C, 0x02, 0x0A, 0x00, 0x28, + 0x00, 0x00, 0x17, 0x37, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x23, + 0x22, 0x06, 0x14, 0x16, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x0F, 0x01, 0x1E, 0x01, 0x15, 0x14, + 0x06, 0x23, 0x22, 0x27, 0x35, 0x16, 0x33, 0x32, 0x35, 0x34, 0x23, 0xF5, 0x15, 0x68, 0x7D, 0x99, + 0x7C, 0x37, 0x6A, 0x23, 0x39, 0x37, 0x4D, 0x45, 0x56, 0x58, 0x47, 0x53, 0x43, 0x31, 0x22, 0x67, + 0x39, 0x07, 0x21, 0x28, 0x3E, 0x2E, 0x21, 0x1C, 0x10, 0x1B, 0x2C, 0x30, 0x56, 0x4E, 0x0E, 0x93, + 0x66, 0x70, 0x9B, 0x26, 0x26, 0x57, 0x37, 0x5B, 0x86, 0x5D, 0x41, 0x5A, 0x24, 0x2B, 0x03, 0x21, + 0x04, 0x26, 0x22, 0x2E, 0x2A, 0x07, 0x46, 0x08, 0x1C, 0x1B, 0x00, 0x00, 0x00, 0x03, 0x00, 0x25, + 0xFF, 0xF4, 0x02, 0x0B, 0x02, 0xC6, 0x00, 0x14, 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x00, 0x13, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x21, 0x1E, 0x01, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, + 0x23, 0x22, 0x26, 0x37, 0x33, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x37, 0x27, 0x33, 0x17, 0x25, 0x91, + 0x73, 0x6A, 0x78, 0x04, 0xFE, 0xA1, 0x06, 0x56, 0x3D, 0x4C, 0x46, 0x32, 0x26, 0x6F, 0x38, 0x7B, + 0x98, 0x86, 0xE1, 0x01, 0x39, 0x2C, 0x30, 0x42, 0x43, 0x68, 0x83, 0x4C, 0x00, 0xFF, 0x76, 0x95, + 0x89, 0x69, 0x11, 0x20, 0x40, 0x47, 0x38, 0x5B, 0x22, 0x27, 0x9B, 0xAF, 0x32, 0x3A, 0x3B, 0xCF, + 0x88, 0x88, 0x00, 0x00, 0x00, 0x03, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x0B, 0x02, 0xC6, 0x00, 0x03, + 0x00, 0x18, 0x00, 0x1F, 0x00, 0x00, 0x13, 0x37, 0x33, 0x07, 0x01, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x07, 0x21, 0x1E, 0x01, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, + 0x33, 0x2E, 0x01, 0x23, 0x22, 0x06, 0xEF, 0x4C, 0x83, 0x69, 0xFE, 0xD0, 0x91, 0x73, 0x6A, 0x78, + 0x04, 0xFE, 0xA1, 0x06, 0x56, 0x3D, 0x4C, 0x46, 0x32, 0x26, 0x6F, 0x38, 0x7B, 0x98, 0x86, 0xE1, + 0x01, 0x39, 0x2C, 0x30, 0x42, 0x02, 0x3E, 0x88, 0x88, 0xFE, 0xC1, 0x76, 0x95, 0x89, 0x69, 0x11, + 0x20, 0x40, 0x47, 0x38, 0x5B, 0x22, 0x27, 0x9B, 0xAF, 0x32, 0x3A, 0x3B, 0x00, 0x03, 0x00, 0x25, + 0xFF, 0xF4, 0x02, 0x0B, 0x02, 0xC6, 0x00, 0x07, 0x00, 0x1C, 0x00, 0x23, 0x00, 0x00, 0x13, 0x37, + 0x33, 0x17, 0x23, 0x27, 0x23, 0x07, 0x03, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x21, + 0x1E, 0x01, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, 0x33, 0x2E, 0x01, 0x23, + 0x22, 0x06, 0x8A, 0x5C, 0x7F, 0x5D, 0x69, 0x32, 0x02, 0x32, 0xCE, 0x91, 0x73, 0x6A, 0x78, 0x04, + 0xFE, 0xA1, 0x06, 0x56, 0x3D, 0x4C, 0x46, 0x32, 0x26, 0x6F, 0x38, 0x7B, 0x98, 0x86, 0xE1, 0x01, + 0x39, 0x2C, 0x30, 0x42, 0x02, 0x3E, 0x88, 0x88, 0x51, 0x51, 0xFE, 0xC1, 0x76, 0x95, 0x89, 0x69, + 0x11, 0x20, 0x40, 0x47, 0x38, 0x5B, 0x22, 0x27, 0x9B, 0xAF, 0x32, 0x3A, 0x3B, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x0B, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x1C, + 0x00, 0x23, 0x00, 0x00, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x03, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x07, 0x21, 0x1E, 0x01, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x23, 0x22, + 0x26, 0x37, 0x33, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x01, 0x52, 0x61, 0xFE, 0xE7, 0x62, 0xD7, 0x91, + 0x73, 0x6A, 0x78, 0x04, 0xFE, 0xA1, 0x06, 0x56, 0x3D, 0x4C, 0x46, 0x32, 0x26, 0x6F, 0x38, 0x7B, + 0x98, 0x86, 0xE1, 0x01, 0x39, 0x2C, 0x30, 0x42, 0x02, 0x52, 0x74, 0x74, 0x74, 0x74, 0xFE, 0xAD, + 0x76, 0x95, 0x89, 0x69, 0x11, 0x20, 0x40, 0x47, 0x38, 0x5B, 0x22, 0x27, 0x9B, 0xAF, 0x32, 0x3A, + 0x3B, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0xC3, 0x02, 0xC6, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x03, 0x27, 0x33, 0x17, 0x44, 0x7F, 0x6F, 0x68, + 0x83, 0x4C, 0x01, 0xFE, 0xFE, 0x02, 0x02, 0x3E, 0x88, 0x88, 0x00, 0x00, 0x00, 0x02, 0x00, 0x44, + 0x00, 0x00, 0x01, 0x1C, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x13, 0x37, 0x33, 0x07, + 0x03, 0x11, 0x33, 0x11, 0x4D, 0x4C, 0x83, 0x69, 0x6F, 0x7F, 0x02, 0x3E, 0x88, 0x88, 0xFD, 0xC2, + 0x01, 0xFE, 0xFE, 0x02, 0x00, 0x02, 0xFF, 0xE8, 0x00, 0x00, 0x01, 0x20, 0x02, 0xC6, 0x00, 0x07, + 0x00, 0x0B, 0x00, 0x00, 0x03, 0x37, 0x33, 0x17, 0x23, 0x27, 0x23, 0x07, 0x03, 0x11, 0x33, 0x11, + 0x18, 0x5C, 0x7F, 0x5D, 0x69, 0x32, 0x02, 0x32, 0x0D, 0x7F, 0x02, 0x3E, 0x88, 0x88, 0x51, 0x51, + 0xFD, 0xC2, 0x01, 0xFE, 0xFE, 0x02, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xF8, 0x00, 0x00, 0x01, 0x11, + 0x02, 0xC6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x13, 0x35, 0x33, 0x15, 0x21, 0x35, + 0x33, 0x15, 0x03, 0x11, 0x33, 0x11, 0xB0, 0x61, 0xFE, 0xE7, 0x62, 0x16, 0x7F, 0x02, 0x52, 0x74, + 0x74, 0x74, 0x74, 0xFD, 0xAE, 0x01, 0xFE, 0xFE, 0x02, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x26, + 0xFF, 0xF4, 0x02, 0x1E, 0x02, 0xD6, 0x00, 0x1E, 0x00, 0x2A, 0x00, 0x00, 0x37, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x1F, 0x01, 0x33, 0x26, 0x27, 0x07, 0x27, 0x37, 0x26, 0x27, 0x37, 0x16, 0x17, 0x37, + 0x17, 0x07, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x26, 0x7F, 0x6C, 0x1C, 0x33, 0x0C, 0x0B, 0x02, 0x1B, 0x43, + 0xB9, 0x06, 0x6F, 0x31, 0x42, 0x23, 0x7C, 0x5D, 0x93, 0x06, 0x58, 0x89, 0x1D, 0x3B, 0x68, 0x44, + 0x6F, 0x85, 0x81, 0x3D, 0x39, 0x40, 0x41, 0x40, 0x36, 0x3E, 0x43, 0xED, 0x5E, 0x86, 0x0F, 0x07, + 0x07, 0x3F, 0x2B, 0x50, 0x4B, 0x31, 0x18, 0x10, 0x64, 0x1B, 0x38, 0x3F, 0x4A, 0x27, 0x78, 0xC3, + 0x36, 0x63, 0x56, 0x33, 0x94, 0x62, 0x39, 0x52, 0x60, 0x40, 0x31, 0x3E, 0x4D, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x44, 0x00, 0x00, 0x02, 0x25, 0x02, 0xC8, 0x00, 0x14, 0x00, 0x28, 0x00, 0x00, + 0x33, 0x11, 0x33, 0x15, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x1D, 0x01, 0x03, 0x34, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x35, 0x33, 0x14, + 0x23, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x15, 0x44, 0x7A, 0x02, 0x02, 0x14, 0x5C, 0x45, 0xB2, 0x7F, + 0x23, 0x2D, 0x42, 0x51, 0x3E, 0x70, 0x17, 0x27, 0x16, 0x1D, 0x0D, 0x27, 0x56, 0x70, 0x17, 0x27, + 0x16, 0x1D, 0x0D, 0x26, 0x01, 0xFE, 0x3C, 0x24, 0x29, 0x43, 0xC2, 0xFE, 0xB8, 0x01, 0x2E, 0x33, + 0x35, 0x60, 0x47, 0xEF, 0x02, 0x3F, 0x89, 0x14, 0x19, 0x14, 0x3E, 0x89, 0x14, 0x19, 0x14, 0x3E, + 0x00, 0x03, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x55, 0x02, 0xC6, 0x00, 0x08, 0x00, 0x12, 0x00, 0x16, + 0x00, 0x00, 0x36, 0x34, 0x36, 0x33, 0x32, 0x16, 0x14, 0x06, 0x22, 0x03, 0x14, 0x16, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x22, 0x06, 0x37, 0x27, 0x33, 0x17, 0x25, 0xA2, 0x75, 0x76, 0xA3, 0xA2, 0xEC, + 0x21, 0x57, 0x80, 0x58, 0x59, 0x7E, 0x58, 0x66, 0x68, 0x83, 0x4C, 0x8B, 0xE8, 0x97, 0x97, 0xE8, + 0x97, 0x01, 0x0B, 0x46, 0x59, 0x59, 0x46, 0x45, 0x5A, 0x5A, 0xFA, 0x88, 0x88, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x55, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x0C, 0x00, 0x16, + 0x00, 0x00, 0x01, 0x37, 0x33, 0x07, 0x00, 0x34, 0x36, 0x33, 0x32, 0x16, 0x14, 0x06, 0x22, 0x03, + 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x01, 0x06, 0x4C, 0x83, 0x69, 0xFE, 0xB9, + 0xA2, 0x75, 0x76, 0xA3, 0xA2, 0xEC, 0x21, 0x57, 0x80, 0x58, 0x59, 0x7E, 0x58, 0x02, 0x3E, 0x88, + 0x88, 0xFE, 0x4D, 0xE8, 0x97, 0x97, 0xE8, 0x97, 0x01, 0x0B, 0x46, 0x59, 0x59, 0x46, 0x45, 0x5A, + 0x5A, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x55, 0x02, 0xC6, 0x00, 0x07, + 0x00, 0x10, 0x00, 0x1A, 0x00, 0x00, 0x13, 0x37, 0x33, 0x17, 0x23, 0x27, 0x23, 0x07, 0x02, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x14, 0x06, 0x22, 0x03, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, + 0x06, 0xA1, 0x5C, 0x7F, 0x5D, 0x69, 0x32, 0x02, 0x32, 0xE5, 0xA2, 0x75, 0x76, 0xA3, 0xA2, 0xEC, + 0x21, 0x57, 0x80, 0x58, 0x59, 0x7E, 0x58, 0x02, 0x3E, 0x88, 0x88, 0x51, 0x51, 0xFE, 0x4D, 0xE8, + 0x97, 0x97, 0xE8, 0x97, 0x01, 0x0B, 0x46, 0x59, 0x59, 0x46, 0x45, 0x5A, 0x5A, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x55, 0x02, 0xC8, 0x00, 0x08, 0x00, 0x12, 0x00, 0x26, + 0x00, 0x00, 0x36, 0x34, 0x36, 0x33, 0x32, 0x16, 0x14, 0x06, 0x22, 0x03, 0x14, 0x16, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x22, 0x06, 0x27, 0x34, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x35, 0x33, 0x14, + 0x23, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x15, 0x25, 0xA2, 0x75, 0x76, 0xA3, 0xA2, 0xEC, 0x21, 0x57, + 0x80, 0x58, 0x59, 0x7E, 0x58, 0x1F, 0x70, 0x17, 0x27, 0x16, 0x1D, 0x0D, 0x27, 0x56, 0x70, 0x17, + 0x27, 0x16, 0x1D, 0x0D, 0x26, 0x8B, 0xE8, 0x97, 0x97, 0xE8, 0x97, 0x01, 0x0B, 0x46, 0x59, 0x59, + 0x46, 0x45, 0x5A, 0x5A, 0xFB, 0x89, 0x14, 0x19, 0x14, 0x3E, 0x89, 0x14, 0x19, 0x14, 0x3E, 0x00, + 0x00, 0x04, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x55, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x10, + 0x00, 0x1A, 0x00, 0x00, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x02, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x14, 0x06, 0x22, 0x03, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x01, + 0x68, 0x61, 0xFE, 0xE7, 0x62, 0xED, 0xA2, 0x75, 0x76, 0xA3, 0xA2, 0xEC, 0x21, 0x57, 0x80, 0x58, + 0x59, 0x7E, 0x58, 0x02, 0x52, 0x74, 0x74, 0x74, 0x74, 0xFE, 0x39, 0xE8, 0x97, 0x97, 0xE8, 0x97, + 0x01, 0x0B, 0x46, 0x59, 0x59, 0x46, 0x45, 0x5A, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x20, + 0x00, 0x1B, 0x02, 0x2A, 0x02, 0x21, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x13, 0x35, + 0x33, 0x15, 0x05, 0x35, 0x21, 0x15, 0x05, 0x35, 0x33, 0x15, 0xEB, 0x73, 0xFE, 0xC2, 0x02, 0x0A, + 0xFE, 0xC1, 0x73, 0x01, 0xB5, 0x6C, 0x6C, 0xC9, 0x63, 0x63, 0xD1, 0x6C, 0x6C, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x25, 0xFF, 0xD5, 0x02, 0x56, 0x02, 0x23, 0x00, 0x13, 0x00, 0x1B, 0x00, 0x23, + 0x00, 0x00, 0x17, 0x37, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, 0x37, 0x17, 0x07, 0x16, 0x15, + 0x14, 0x06, 0x23, 0x22, 0x27, 0x07, 0x3F, 0x01, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x17, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x27, 0x5F, 0x26, 0x60, 0xA2, 0x76, 0x47, 0x3E, 0x29, 0x37, 0x28, + 0x5C, 0xA2, 0x77, 0x45, 0x39, 0x29, 0x36, 0xB4, 0x20, 0x23, 0x3F, 0x58, 0x5C, 0x1B, 0x20, 0x40, + 0x58, 0x22, 0x04, 0x36, 0x4C, 0x81, 0x74, 0x97, 0x1F, 0x38, 0x26, 0x36, 0x4D, 0x7B, 0x74, 0x97, + 0x1B, 0x3A, 0xC0, 0xF9, 0x10, 0x5A, 0x45, 0x3F, 0x54, 0x0C, 0x59, 0x46, 0x39, 0x2A, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x3F, 0xFF, 0xF4, 0x02, 0x1A, 0x02, 0xC6, 0x00, 0x14, 0x00, 0x18, 0x00, 0x00, + 0x37, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x11, 0x23, 0x35, 0x37, + 0x23, 0x0E, 0x01, 0x23, 0x22, 0x13, 0x27, 0x33, 0x17, 0x3F, 0x7F, 0x23, 0x2C, 0x42, 0x4D, 0x7E, + 0x7A, 0x03, 0x02, 0x14, 0x60, 0x3D, 0xB1, 0xBD, 0x68, 0x83, 0x4C, 0xB6, 0x01, 0x48, 0xFE, 0xD2, + 0x33, 0x35, 0x64, 0x48, 0xEA, 0xFE, 0x02, 0x3C, 0x23, 0x2B, 0x40, 0x02, 0x4A, 0x88, 0x88, 0x00, + 0x00, 0x02, 0x00, 0x3F, 0xFF, 0xF4, 0x02, 0x1A, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x18, 0x00, 0x00, + 0x13, 0x37, 0x33, 0x07, 0x01, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, + 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0xF5, 0x4C, 0x83, 0x69, 0xFE, 0xE4, 0x7F, + 0x23, 0x2C, 0x42, 0x4D, 0x7E, 0x7A, 0x03, 0x02, 0x14, 0x60, 0x3D, 0xB1, 0x02, 0x3E, 0x88, 0x88, + 0xFE, 0x78, 0x01, 0x48, 0xFE, 0xD2, 0x33, 0x35, 0x64, 0x48, 0xEA, 0xFE, 0x02, 0x3C, 0x23, 0x2B, + 0x40, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x3F, 0xFF, 0xF4, 0x02, 0x1A, 0x02, 0xC6, 0x00, 0x07, + 0x00, 0x1C, 0x00, 0x00, 0x13, 0x37, 0x33, 0x17, 0x23, 0x27, 0x23, 0x07, 0x03, 0x11, 0x33, 0x11, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, + 0x22, 0x90, 0x5C, 0x7F, 0x5D, 0x69, 0x32, 0x02, 0x32, 0xBA, 0x7F, 0x23, 0x2C, 0x42, 0x4D, 0x7E, + 0x7A, 0x03, 0x02, 0x14, 0x60, 0x3D, 0xB1, 0x02, 0x3E, 0x88, 0x88, 0x51, 0x51, 0xFE, 0x78, 0x01, + 0x48, 0xFE, 0xD2, 0x33, 0x35, 0x64, 0x48, 0xEA, 0xFE, 0x02, 0x3C, 0x23, 0x2B, 0x40, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x3F, 0xFF, 0xF4, 0x02, 0x1A, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x1C, + 0x00, 0x00, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x03, 0x11, 0x33, 0x11, 0x14, 0x16, + 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x01, + 0x58, 0x61, 0xFE, 0xE7, 0x62, 0xC3, 0x7F, 0x23, 0x2C, 0x42, 0x4D, 0x7E, 0x7A, 0x03, 0x02, 0x14, + 0x60, 0x3D, 0xB1, 0x02, 0x52, 0x74, 0x74, 0x74, 0x74, 0xFE, 0x64, 0x01, 0x48, 0xFE, 0xD2, 0x33, + 0x35, 0x64, 0x48, 0xEA, 0xFE, 0x02, 0x3C, 0x23, 0x2B, 0x40, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, + 0xFF, 0x2E, 0x02, 0x12, 0x02, 0xC5, 0x00, 0x16, 0x00, 0x1A, 0x00, 0x00, 0x17, 0x16, 0x33, 0x32, + 0x3F, 0x01, 0x03, 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, 0x03, 0x0E, 0x01, 0x23, 0x22, + 0x26, 0x2F, 0x01, 0x13, 0x37, 0x33, 0x07, 0x37, 0x1C, 0x1C, 0x3D, 0x1C, 0x13, 0xD7, 0x8F, 0x6B, + 0x13, 0x02, 0x09, 0x08, 0x64, 0x8A, 0xE3, 0x19, 0x63, 0x3C, 0x1B, 0x35, 0x0D, 0x0D, 0xCE, 0x4C, + 0x83, 0x69, 0x52, 0x15, 0x42, 0x2D, 0x01, 0xF6, 0xFE, 0xDA, 0x45, 0x28, 0x1B, 0x01, 0x28, 0xFD, + 0xB5, 0x43, 0x42, 0x10, 0x08, 0x09, 0x02, 0xEE, 0x88, 0x88, 0x00, 0x00, 0x00, 0x02, 0x00, 0x44, + 0xFF, 0x38, 0x02, 0x3E, 0x02, 0xC6, 0x00, 0x13, 0x00, 0x1E, 0x00, 0x00, 0x17, 0x11, 0x33, 0x15, + 0x07, 0x33, 0x36, 0x33, 0x32, 0x16, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x23, 0x16, 0x1D, 0x01, + 0x03, 0x14, 0x16, 0x33, 0x32, 0x36, 0x34, 0x26, 0x23, 0x22, 0x06, 0x44, 0x7F, 0x02, 0x02, 0x32, + 0x64, 0x67, 0x7E, 0x81, 0x66, 0x2C, 0x51, 0x17, 0x02, 0x02, 0x04, 0x46, 0x3B, 0x37, 0x47, 0x45, + 0x37, 0x3A, 0x49, 0xC8, 0x03, 0x8E, 0xDA, 0x2A, 0x48, 0x97, 0xE8, 0x97, 0x23, 0x22, 0x12, 0x1A, + 0xD5, 0x01, 0xC6, 0x4A, 0x55, 0x5A, 0x8C, 0x59, 0x4E, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x04, + 0xFF, 0x2E, 0x02, 0x12, 0x02, 0xC5, 0x00, 0x16, 0x00, 0x1A, 0x00, 0x1E, 0x00, 0x00, 0x17, 0x16, + 0x33, 0x32, 0x3F, 0x01, 0x03, 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, 0x03, 0x0E, 0x01, + 0x23, 0x22, 0x26, 0x2F, 0x01, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x37, 0x1C, 0x1C, + 0x3D, 0x1C, 0x13, 0xD7, 0x8F, 0x6B, 0x13, 0x02, 0x09, 0x08, 0x64, 0x8A, 0xE3, 0x19, 0x63, 0x3C, + 0x1B, 0x35, 0x0D, 0x0D, 0x01, 0x30, 0x61, 0xFE, 0xE7, 0x62, 0x52, 0x15, 0x42, 0x2D, 0x01, 0xF6, + 0xFE, 0xDA, 0x45, 0x28, 0x1B, 0x01, 0x28, 0xFD, 0xB5, 0x43, 0x42, 0x10, 0x08, 0x09, 0x03, 0x02, + 0x74, 0x74, 0x74, 0x74, 0x00, 0x03, 0x00, 0x08, 0x00, 0x00, 0x02, 0x82, 0x03, 0x66, 0x00, 0x07, + 0x00, 0x0E, 0x00, 0x12, 0x00, 0x00, 0x33, 0x13, 0x33, 0x13, 0x23, 0x27, 0x23, 0x07, 0x13, 0x33, + 0x2F, 0x01, 0x23, 0x06, 0x07, 0x03, 0x35, 0x21, 0x15, 0x08, 0xF9, 0x88, 0xF9, 0x84, 0x3D, 0xF9, + 0x3C, 0x5C, 0xB9, 0x3F, 0x1C, 0x02, 0x10, 0x0C, 0x66, 0x01, 0x06, 0x02, 0xC6, 0xFD, 0x3A, 0xB6, + 0xB6, 0x01, 0x1F, 0xBE, 0x6E, 0x46, 0x28, 0x01, 0x32, 0x57, 0x57, 0x00, 0x00, 0x03, 0x00, 0x1D, + 0xFF, 0xF4, 0x01, 0xDB, 0x02, 0xAF, 0x00, 0x1C, 0x00, 0x26, 0x00, 0x2A, 0x00, 0x00, 0x37, 0x34, + 0x3E, 0x02, 0x3B, 0x01, 0x35, 0x34, 0x23, 0x22, 0x07, 0x27, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, + 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x3D, 0x01, 0x23, 0x22, 0x03, 0x35, 0x21, 0x15, 0x1D, 0x3B, 0x61, 0x5B, 0x32, 0x16, 0x60, 0x46, + 0x48, 0x2F, 0x21, 0x70, 0x37, 0x64, 0x70, 0x76, 0x03, 0x02, 0x18, 0x56, 0x33, 0x47, 0x61, 0x7E, + 0x29, 0x24, 0x33, 0x42, 0x16, 0xAC, 0x13, 0x01, 0x06, 0x8D, 0x36, 0x4C, 0x23, 0x0E, 0x07, 0x5A, + 0x31, 0x5B, 0x1A, 0x25, 0x6B, 0x60, 0xFE, 0xC1, 0x2B, 0x25, 0x29, 0x33, 0x55, 0x4F, 0x1B, 0x28, + 0x54, 0x32, 0x0E, 0x01, 0x6F, 0x57, 0x57, 0x00, 0x00, 0x03, 0x00, 0x08, 0x00, 0x00, 0x02, 0x82, + 0x03, 0x7D, 0x00, 0x07, 0x00, 0x0E, 0x00, 0x20, 0x00, 0x00, 0x33, 0x13, 0x33, 0x13, 0x23, 0x27, + 0x23, 0x07, 0x13, 0x33, 0x2F, 0x01, 0x23, 0x06, 0x07, 0x13, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x06, 0x08, 0xF9, 0x88, 0xF9, 0x84, + 0x3D, 0xF9, 0x3C, 0x5C, 0xB9, 0x3F, 0x1C, 0x02, 0x10, 0x0C, 0x1D, 0x3F, 0x56, 0x5A, 0x22, 0x19, + 0x17, 0x23, 0x5A, 0x56, 0x02, 0xC6, 0xFD, 0x3A, 0xB6, 0xB6, 0x01, 0x1F, 0xBE, 0x6E, 0x46, 0x28, + 0x01, 0x14, 0x44, 0x3C, 0x0C, 0x0C, 0x1D, 0x1E, 0x1F, 0x1D, 0x0B, 0x0C, 0x3C, 0x44, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x1D, 0xFF, 0xF4, 0x01, 0xDB, 0x02, 0xC6, 0x00, 0x1C, 0x00, 0x26, 0x00, 0x38, + 0x00, 0x00, 0x37, 0x34, 0x3E, 0x02, 0x3B, 0x01, 0x35, 0x34, 0x23, 0x22, 0x07, 0x27, 0x3E, 0x01, + 0x33, 0x32, 0x16, 0x15, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x23, 0x22, 0x13, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x06, 0x1D, 0x3B, 0x61, 0x5B, 0x32, 0x16, + 0x60, 0x46, 0x48, 0x2F, 0x21, 0x70, 0x37, 0x64, 0x70, 0x76, 0x03, 0x02, 0x18, 0x56, 0x33, 0x47, + 0x61, 0x7E, 0x29, 0x24, 0x33, 0x42, 0x16, 0xAC, 0x6F, 0x3F, 0x56, 0x5A, 0x22, 0x19, 0x17, 0x23, + 0x5A, 0x56, 0x8D, 0x36, 0x4C, 0x23, 0x0E, 0x07, 0x5A, 0x31, 0x5B, 0x1A, 0x25, 0x6B, 0x60, 0xFE, + 0xC1, 0x2B, 0x25, 0x29, 0x33, 0x55, 0x4F, 0x1B, 0x28, 0x54, 0x32, 0x0E, 0x01, 0x51, 0x44, 0x3C, + 0x0C, 0x0C, 0x1D, 0x1E, 0x1F, 0x1D, 0x0B, 0x0C, 0x3C, 0x44, 0x00, 0x00, 0x00, 0x02, 0x00, 0x08, + 0xFF, 0x30, 0x02, 0x82, 0x02, 0xC6, 0x00, 0x16, 0x00, 0x1D, 0x00, 0x00, 0x33, 0x13, 0x33, 0x13, + 0x06, 0x15, 0x14, 0x16, 0x1F, 0x01, 0x07, 0x22, 0x2E, 0x03, 0x35, 0x34, 0x37, 0x23, 0x27, 0x23, + 0x07, 0x13, 0x33, 0x2F, 0x01, 0x23, 0x06, 0x07, 0x08, 0xF9, 0x88, 0xF9, 0x38, 0x18, 0x0C, 0x0D, + 0x1F, 0x05, 0x10, 0x2A, 0x21, 0x1A, 0x41, 0x25, 0x3D, 0xF9, 0x3C, 0x5C, 0xB9, 0x3F, 0x1C, 0x02, + 0x10, 0x0C, 0x02, 0xC6, 0xFD, 0x3A, 0x2F, 0x1F, 0x0E, 0x12, 0x02, 0x02, 0x5E, 0x03, 0x0D, 0x13, + 0x25, 0x18, 0x3C, 0x34, 0xB6, 0xB6, 0x01, 0x1F, 0xBE, 0x6E, 0x46, 0x28, 0x00, 0x02, 0x00, 0x1D, + 0xFF, 0x30, 0x01, 0xDB, 0x02, 0x0A, 0x00, 0x2B, 0x00, 0x35, 0x00, 0x00, 0x37, 0x34, 0x3E, 0x02, + 0x3B, 0x01, 0x35, 0x34, 0x23, 0x22, 0x07, 0x27, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x11, 0x06, + 0x15, 0x14, 0x16, 0x1F, 0x01, 0x07, 0x22, 0x2E, 0x03, 0x35, 0x34, 0x37, 0x23, 0x35, 0x37, 0x23, + 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x23, 0x22, 0x1D, + 0x3B, 0x61, 0x5B, 0x32, 0x16, 0x60, 0x46, 0x48, 0x2F, 0x21, 0x70, 0x37, 0x64, 0x70, 0x39, 0x18, + 0x0C, 0x0D, 0x1E, 0x05, 0x11, 0x2A, 0x20, 0x1B, 0x43, 0x18, 0x03, 0x02, 0x18, 0x56, 0x33, 0x47, + 0x61, 0x7E, 0x29, 0x24, 0x33, 0x42, 0x16, 0xAC, 0x8D, 0x36, 0x4C, 0x23, 0x0E, 0x07, 0x5A, 0x31, + 0x5B, 0x1A, 0x25, 0x6B, 0x60, 0xFE, 0xC1, 0x2E, 0x20, 0x0E, 0x12, 0x02, 0x02, 0x5E, 0x03, 0x0D, + 0x13, 0x25, 0x18, 0x3B, 0x35, 0x2B, 0x25, 0x29, 0x33, 0x55, 0x4F, 0x1B, 0x28, 0x54, 0x32, 0x0E, + 0x00, 0x02, 0x00, 0x2D, 0xFF, 0xF4, 0x02, 0xB3, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x1A, 0x00, 0x00, + 0x01, 0x37, 0x33, 0x07, 0x01, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x06, + 0x15, 0x14, 0x16, 0x33, 0x32, 0x37, 0x17, 0x06, 0x23, 0x22, 0x26, 0x01, 0x5B, 0x4C, 0x83, 0x69, + 0xFE, 0x6C, 0xCE, 0x9F, 0xA2, 0x64, 0x3E, 0x27, 0x69, 0x32, 0x70, 0x7E, 0x80, 0x6F, 0x72, 0x5C, + 0x44, 0x71, 0xA6, 0xA5, 0xCA, 0x02, 0xF5, 0x88, 0x88, 0xFE, 0x71, 0x9C, 0xD0, 0x61, 0x60, 0x21, + 0x2A, 0x8C, 0x68, 0x69, 0x95, 0x5A, 0x5D, 0x73, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x25, + 0xFF, 0xF4, 0x02, 0x0C, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x1A, 0x00, 0x00, 0x13, 0x37, 0x33, 0x07, + 0x01, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x23, 0x22, 0x06, 0x14, 0x16, 0x33, 0x32, + 0x37, 0x17, 0x0E, 0x01, 0x23, 0x22, 0x26, 0xEF, 0x4C, 0x83, 0x69, 0xFE, 0xD0, 0x99, 0x7C, 0x37, + 0x6A, 0x23, 0x39, 0x37, 0x4D, 0x45, 0x56, 0x58, 0x47, 0x53, 0x43, 0x31, 0x24, 0x71, 0x3D, 0x7C, + 0x99, 0x02, 0x3E, 0x88, 0x88, 0xFE, 0xC1, 0x70, 0x9B, 0x26, 0x26, 0x57, 0x37, 0x5B, 0x86, 0x5D, + 0x41, 0x5A, 0x26, 0x2D, 0x99, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x2D, 0xFF, 0xF4, 0x02, 0xB3, + 0x03, 0x7D, 0x00, 0x07, 0x00, 0x1E, 0x00, 0x00, 0x13, 0x37, 0x33, 0x17, 0x23, 0x27, 0x23, 0x07, + 0x01, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, + 0x32, 0x37, 0x17, 0x06, 0x23, 0x22, 0x26, 0xF6, 0x5C, 0x7F, 0x5D, 0x69, 0x32, 0x02, 0x32, 0xFE, + 0xCE, 0xCE, 0x9F, 0xA2, 0x64, 0x3E, 0x27, 0x69, 0x32, 0x70, 0x7E, 0x80, 0x6F, 0x72, 0x5C, 0x44, + 0x71, 0xA6, 0xA5, 0xCA, 0x02, 0xF5, 0x88, 0x88, 0x51, 0x51, 0xFE, 0x71, 0x9C, 0xD0, 0x61, 0x60, + 0x21, 0x2A, 0x8C, 0x68, 0x69, 0x95, 0x5A, 0x5D, 0x73, 0xD2, 0x00, 0x00, 0x00, 0x02, 0x00, 0x25, + 0xFF, 0xF4, 0x02, 0x0C, 0x02, 0xC6, 0x00, 0x07, 0x00, 0x1E, 0x00, 0x00, 0x13, 0x37, 0x33, 0x17, + 0x23, 0x27, 0x23, 0x07, 0x03, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x23, 0x22, 0x06, + 0x14, 0x16, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x8A, 0x5C, 0x7F, 0x5D, 0x69, + 0x32, 0x02, 0x32, 0xCE, 0x99, 0x7C, 0x37, 0x6A, 0x23, 0x39, 0x37, 0x4D, 0x45, 0x56, 0x58, 0x47, + 0x53, 0x43, 0x31, 0x24, 0x71, 0x3D, 0x7C, 0x99, 0x02, 0x3E, 0x88, 0x88, 0x51, 0x51, 0xFE, 0xC1, + 0x70, 0x9B, 0x26, 0x26, 0x57, 0x37, 0x5B, 0x86, 0x5D, 0x41, 0x5A, 0x26, 0x2D, 0x99, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x2D, 0xFF, 0xF4, 0x02, 0xB3, 0x03, 0x7D, 0x00, 0x16, 0x00, 0x1A, 0x00, 0x00, + 0x13, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, + 0x32, 0x37, 0x17, 0x06, 0x23, 0x22, 0x26, 0x01, 0x35, 0x33, 0x15, 0x2D, 0xCE, 0x9F, 0xA2, 0x64, + 0x3E, 0x27, 0x69, 0x32, 0x70, 0x7E, 0x80, 0x6F, 0x72, 0x5C, 0x44, 0x71, 0xA6, 0xA5, 0xCA, 0x01, + 0x2F, 0x6C, 0x01, 0x66, 0x9C, 0xD0, 0x61, 0x60, 0x21, 0x2A, 0x8C, 0x68, 0x69, 0x95, 0x5A, 0x5D, + 0x73, 0xD2, 0x02, 0x48, 0x6F, 0x6F, 0x00, 0x00, 0x00, 0x02, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x0C, + 0x02, 0xC6, 0x00, 0x16, 0x00, 0x1A, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, + 0x26, 0x23, 0x22, 0x06, 0x14, 0x16, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x13, + 0x35, 0x33, 0x15, 0x25, 0x99, 0x7C, 0x37, 0x6A, 0x23, 0x39, 0x37, 0x4D, 0x45, 0x56, 0x58, 0x47, + 0x53, 0x43, 0x31, 0x24, 0x71, 0x3D, 0x7C, 0x99, 0xCC, 0x6C, 0x00, 0xFF, 0x70, 0x9B, 0x26, 0x26, + 0x57, 0x37, 0x5B, 0x86, 0x5D, 0x41, 0x5A, 0x26, 0x2D, 0x99, 0x01, 0xCA, 0x6F, 0x6F, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x2D, 0xFF, 0xF4, 0x02, 0xB3, 0x03, 0x7D, 0x00, 0x07, 0x00, 0x1E, 0x00, 0x00, + 0x01, 0x27, 0x33, 0x17, 0x33, 0x37, 0x33, 0x07, 0x01, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x2E, + 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x37, 0x17, 0x06, 0x23, 0x22, 0x26, 0x01, + 0x52, 0x5C, 0x69, 0x32, 0x02, 0x32, 0x69, 0x5D, 0xFE, 0x5C, 0xCE, 0x9F, 0xA2, 0x64, 0x3E, 0x27, + 0x69, 0x32, 0x70, 0x7E, 0x80, 0x6F, 0x72, 0x5C, 0x44, 0x71, 0xA6, 0xA5, 0xCA, 0x02, 0xF5, 0x88, + 0x51, 0x51, 0x88, 0xFE, 0x71, 0x9C, 0xD0, 0x61, 0x60, 0x21, 0x2A, 0x8C, 0x68, 0x69, 0x95, 0x5A, + 0x5D, 0x73, 0xD2, 0x00, 0x00, 0x02, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x0C, 0x02, 0xC6, 0x00, 0x07, + 0x00, 0x1E, 0x00, 0x00, 0x13, 0x27, 0x33, 0x17, 0x33, 0x37, 0x33, 0x07, 0x01, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x17, 0x07, 0x26, 0x23, 0x22, 0x06, 0x14, 0x16, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, + 0x23, 0x22, 0x26, 0xE6, 0x5C, 0x69, 0x32, 0x02, 0x32, 0x69, 0x5D, 0xFE, 0xC0, 0x99, 0x7C, 0x37, + 0x6A, 0x23, 0x39, 0x37, 0x4D, 0x45, 0x56, 0x58, 0x47, 0x53, 0x43, 0x31, 0x24, 0x71, 0x3D, 0x7C, + 0x99, 0x02, 0x3E, 0x88, 0x51, 0x51, 0x88, 0xFE, 0xC1, 0x70, 0x9B, 0x26, 0x26, 0x57, 0x37, 0x5B, + 0x86, 0x5D, 0x41, 0x5A, 0x26, 0x2D, 0x99, 0x00, 0x00, 0x03, 0x00, 0x56, 0x00, 0x00, 0x02, 0xB2, + 0x03, 0x7D, 0x00, 0x07, 0x00, 0x0F, 0x00, 0x18, 0x00, 0x00, 0x01, 0x27, 0x33, 0x17, 0x33, 0x37, + 0x33, 0x07, 0x01, 0x11, 0x33, 0x32, 0x16, 0x10, 0x06, 0x23, 0x27, 0x33, 0x32, 0x36, 0x35, 0x34, + 0x26, 0x2B, 0x01, 0x01, 0x16, 0x5C, 0x69, 0x32, 0x02, 0x32, 0x69, 0x5D, 0xFE, 0xC1, 0xF2, 0xA6, + 0xC4, 0xC4, 0xA6, 0x71, 0x6A, 0x6E, 0x7E, 0x7F, 0x6D, 0x6A, 0x02, 0xF5, 0x88, 0x51, 0x51, 0x88, + 0xFD, 0x0B, 0x02, 0xC6, 0xBC, 0xFE, 0xB4, 0xBE, 0x6F, 0x7F, 0x76, 0x74, 0x7F, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x27, 0xFF, 0xF4, 0x02, 0xC6, 0x02, 0xC6, 0x00, 0x09, 0x00, 0x1E, 0x00, 0x2A, + 0x00, 0x00, 0x01, 0x33, 0x16, 0x15, 0x14, 0x07, 0x23, 0x36, 0x35, 0x34, 0x01, 0x34, 0x36, 0x33, + 0x32, 0x17, 0x33, 0x26, 0x3D, 0x01, 0x33, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, + 0x26, 0x37, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x02, 0x56, 0x69, + 0x07, 0x1A, 0x5E, 0x14, 0xFD, 0xC5, 0x81, 0x66, 0x65, 0x30, 0x02, 0x02, 0x7E, 0x77, 0x02, 0x02, + 0x17, 0x55, 0x35, 0x66, 0x7C, 0x80, 0x46, 0x39, 0x36, 0x4A, 0x42, 0x3D, 0x36, 0x4A, 0x02, 0xC5, + 0x1C, 0x1A, 0x2B, 0x36, 0x35, 0x22, 0x20, 0xFE, 0x5A, 0x78, 0x93, 0x43, 0x0D, 0x11, 0xE1, 0xFD, + 0x3A, 0x2C, 0x20, 0x28, 0x30, 0x94, 0x77, 0x48, 0x58, 0x51, 0x50, 0x40, 0x5D, 0x55, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x22, 0x00, 0x00, 0x02, 0xB8, 0x02, 0xC6, 0x00, 0x0B, 0x00, 0x18, 0x00, 0x00, + 0x33, 0x11, 0x23, 0x35, 0x33, 0x11, 0x33, 0x32, 0x16, 0x10, 0x06, 0x23, 0x27, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x2B, 0x01, 0x15, 0x33, 0x15, 0x23, 0x5C, 0x3A, 0x3A, 0xF2, 0xA6, 0xC4, 0xC4, + 0xA6, 0x72, 0x6B, 0x6E, 0x7E, 0x7F, 0x6D, 0x6B, 0x84, 0x84, 0x01, 0x2D, 0x69, 0x01, 0x30, 0xBC, + 0xFE, 0xB4, 0xBE, 0x6F, 0x7F, 0x76, 0x74, 0x7F, 0xC1, 0x69, 0x00, 0x00, 0x00, 0x02, 0x00, 0x27, + 0xFF, 0xF4, 0x02, 0x69, 0x02, 0xC6, 0x00, 0x1C, 0x00, 0x28, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x17, 0x33, 0x26, 0x3D, 0x01, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, + 0x11, 0x23, 0x35, 0x37, 0x23, 0x06, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x27, 0x81, 0x66, 0x2C, 0x51, 0x17, 0x02, 0x01, 0x81, 0x81, 0x7E, + 0x48, 0x48, 0x77, 0x01, 0x02, 0x34, 0x6C, 0x66, 0x7C, 0x80, 0x46, 0x39, 0x36, 0x4A, 0x42, 0x3D, + 0x36, 0x4A, 0x00, 0xFF, 0x78, 0x93, 0x21, 0x20, 0x0D, 0x10, 0x49, 0x4C, 0x4B, 0x4B, 0x4C, 0xFD, + 0xD1, 0x2A, 0x21, 0x57, 0x94, 0x77, 0x48, 0x58, 0x51, 0x50, 0x40, 0x5D, 0x55, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0x0F, 0x03, 0x66, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, + 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, + 0x56, 0x01, 0xA9, 0xFE, 0xD8, 0xEF, 0xEF, 0x01, 0x38, 0xFE, 0xA3, 0x01, 0x06, 0x02, 0xC6, 0x6F, + 0xBA, 0x6F, 0xBF, 0x6F, 0x03, 0x0F, 0x57, 0x57, 0x00, 0x03, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x0B, + 0x02, 0xAF, 0x00, 0x14, 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x07, 0x21, 0x1E, 0x01, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, + 0x33, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x27, 0x35, 0x21, 0x15, 0x25, 0x91, 0x73, 0x6A, 0x78, 0x04, + 0xFE, 0xA1, 0x06, 0x56, 0x3D, 0x4C, 0x46, 0x32, 0x26, 0x6F, 0x38, 0x7B, 0x98, 0x86, 0xE1, 0x01, + 0x39, 0x2C, 0x30, 0x42, 0x10, 0x01, 0x06, 0x00, 0xFF, 0x76, 0x95, 0x89, 0x69, 0x11, 0x20, 0x40, + 0x47, 0x38, 0x5B, 0x22, 0x27, 0x9B, 0xAF, 0x32, 0x3A, 0x3B, 0xE9, 0x57, 0x57, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0x0F, 0x03, 0x7D, 0x00, 0x0B, 0x00, 0x1D, 0x00, 0x00, + 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x03, 0x22, 0x26, 0x3D, + 0x01, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x06, 0x56, 0x01, + 0xA9, 0xFE, 0xD8, 0xEF, 0xEF, 0x01, 0x38, 0xDB, 0x3F, 0x56, 0x5A, 0x22, 0x19, 0x17, 0x23, 0x5A, + 0x56, 0x02, 0xC6, 0x6F, 0xBA, 0x6F, 0xBF, 0x6F, 0x02, 0xF1, 0x44, 0x3C, 0x0C, 0x0C, 0x1D, 0x1E, + 0x1F, 0x1D, 0x0B, 0x0C, 0x3C, 0x44, 0x00, 0x00, 0x00, 0x03, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x0B, + 0x02, 0xC6, 0x00, 0x14, 0x00, 0x1B, 0x00, 0x2D, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x07, 0x21, 0x1E, 0x01, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, + 0x33, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x37, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x06, 0x25, 0x91, 0x73, 0x6A, 0x78, 0x04, 0xFE, 0xA1, + 0x06, 0x56, 0x3D, 0x4C, 0x46, 0x32, 0x26, 0x6F, 0x38, 0x7B, 0x98, 0x86, 0xE1, 0x01, 0x39, 0x2C, + 0x30, 0x42, 0x72, 0x3F, 0x56, 0x5A, 0x22, 0x19, 0x17, 0x23, 0x5A, 0x56, 0x00, 0xFF, 0x76, 0x95, + 0x89, 0x69, 0x11, 0x20, 0x40, 0x47, 0x38, 0x5B, 0x22, 0x27, 0x9B, 0xAF, 0x32, 0x3A, 0x3B, 0xCB, + 0x44, 0x3C, 0x0C, 0x0C, 0x1D, 0x1E, 0x1F, 0x1D, 0x0B, 0x0C, 0x3C, 0x44, 0x00, 0x02, 0x00, 0x56, + 0x00, 0x00, 0x02, 0x0F, 0x03, 0x7D, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, 0x33, 0x11, 0x21, 0x15, + 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x01, 0x35, 0x33, 0x15, 0x56, 0x01, 0xA9, 0xFE, + 0xD8, 0xEF, 0xEF, 0x01, 0x38, 0xFE, 0xEF, 0x6C, 0x02, 0xC6, 0x6F, 0xBA, 0x6F, 0xBF, 0x6F, 0x03, + 0x0E, 0x6F, 0x6F, 0x00, 0x00, 0x03, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x0B, 0x02, 0xC6, 0x00, 0x14, + 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x21, + 0x1E, 0x01, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, 0x33, 0x2E, 0x01, 0x23, + 0x22, 0x06, 0x37, 0x35, 0x33, 0x15, 0x25, 0x91, 0x73, 0x6A, 0x78, 0x04, 0xFE, 0xA1, 0x06, 0x56, + 0x3D, 0x4C, 0x46, 0x32, 0x26, 0x6F, 0x38, 0x7B, 0x98, 0x86, 0xE1, 0x01, 0x39, 0x2C, 0x30, 0x42, + 0x3C, 0x6C, 0x00, 0xFF, 0x76, 0x95, 0x89, 0x69, 0x11, 0x20, 0x40, 0x47, 0x38, 0x5B, 0x22, 0x27, + 0x9B, 0xAF, 0x32, 0x3A, 0x3B, 0xE8, 0x6F, 0x6F, 0x00, 0x01, 0x00, 0x56, 0xFF, 0x30, 0x02, 0x0F, + 0x02, 0xC6, 0x00, 0x1A, 0x00, 0x00, 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x21, 0x15, 0x06, 0x15, 0x14, 0x16, 0x1F, 0x01, 0x07, 0x22, 0x2E, 0x03, 0x35, 0x34, 0x37, 0x56, + 0x01, 0xA9, 0xFE, 0xD8, 0xEF, 0xEF, 0x01, 0x38, 0x38, 0x19, 0x0C, 0x0C, 0x1F, 0x05, 0x10, 0x2A, + 0x21, 0x1A, 0x46, 0x02, 0xC6, 0x6F, 0xBA, 0x6F, 0xBF, 0x6F, 0x2F, 0x1F, 0x0E, 0x12, 0x02, 0x02, + 0x5E, 0x03, 0x0D, 0x13, 0x25, 0x18, 0x3C, 0x34, 0x00, 0x02, 0x00, 0x25, 0xFF, 0x30, 0x02, 0x0B, + 0x02, 0x0A, 0x00, 0x23, 0x00, 0x2A, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x07, + 0x21, 0x1E, 0x01, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x1F, 0x01, 0x07, 0x22, + 0x2E, 0x03, 0x35, 0x34, 0x37, 0x06, 0x23, 0x22, 0x26, 0x37, 0x33, 0x2E, 0x01, 0x23, 0x22, 0x06, + 0x25, 0x91, 0x73, 0x6A, 0x78, 0x04, 0xFE, 0xA1, 0x06, 0x56, 0x3D, 0x4C, 0x46, 0x31, 0x09, 0x47, + 0x2B, 0x18, 0x0C, 0x0C, 0x1E, 0x05, 0x11, 0x2A, 0x20, 0x1B, 0x3F, 0x18, 0x0F, 0x7B, 0x98, 0x86, + 0xE1, 0x01, 0x38, 0x2D, 0x30, 0x42, 0x00, 0xFF, 0x76, 0x95, 0x89, 0x69, 0x31, 0x40, 0x47, 0x38, + 0x5A, 0x09, 0x35, 0x32, 0x1C, 0x0E, 0x12, 0x02, 0x02, 0x5E, 0x03, 0x0D, 0x13, 0x25, 0x18, 0x36, + 0x32, 0x04, 0x9B, 0xAF, 0x31, 0x3B, 0x3C, 0x00, 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0x0F, + 0x03, 0x7D, 0x00, 0x07, 0x00, 0x13, 0x00, 0x00, 0x13, 0x27, 0x33, 0x17, 0x33, 0x37, 0x33, 0x07, + 0x01, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0xF4, 0x5C, 0x69, 0x32, + 0x02, 0x32, 0x69, 0x5D, 0xFE, 0xE3, 0x01, 0xA9, 0xFE, 0xD8, 0xEF, 0xEF, 0x01, 0x38, 0x02, 0xF5, + 0x88, 0x51, 0x51, 0x88, 0xFD, 0x0B, 0x02, 0xC6, 0x6F, 0xBA, 0x6F, 0xBF, 0x6F, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x0B, 0x02, 0xC6, 0x00, 0x07, 0x00, 0x1C, 0x00, 0x23, + 0x00, 0x00, 0x13, 0x27, 0x33, 0x17, 0x33, 0x37, 0x33, 0x07, 0x01, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x07, 0x21, 0x1E, 0x01, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, + 0x33, 0x2E, 0x01, 0x23, 0x22, 0x06, 0xE6, 0x5C, 0x69, 0x32, 0x02, 0x32, 0x69, 0x5D, 0xFE, 0xC0, + 0x91, 0x73, 0x6A, 0x78, 0x04, 0xFE, 0xA1, 0x06, 0x56, 0x3D, 0x4C, 0x46, 0x32, 0x26, 0x6F, 0x38, + 0x7B, 0x98, 0x86, 0xE1, 0x01, 0x39, 0x2C, 0x30, 0x42, 0x02, 0x3E, 0x88, 0x51, 0x51, 0x88, 0xFE, + 0xC1, 0x76, 0x95, 0x89, 0x69, 0x11, 0x20, 0x40, 0x47, 0x38, 0x5B, 0x22, 0x27, 0x9B, 0xAF, 0x32, + 0x3A, 0x3B, 0x00, 0x00, 0x00, 0x02, 0x00, 0x2D, 0xFF, 0xF4, 0x02, 0xC6, 0x03, 0x7D, 0x00, 0x07, + 0x00, 0x27, 0x00, 0x00, 0x13, 0x37, 0x33, 0x17, 0x23, 0x27, 0x23, 0x07, 0x01, 0x34, 0x36, 0x33, + 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x37, 0x35, 0x23, + 0x35, 0x33, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, 0xF4, 0x5C, 0x7F, 0x5D, + 0x69, 0x32, 0x02, 0x32, 0xFE, 0xD0, 0xD1, 0x9D, 0xA0, 0x68, 0x40, 0x21, 0x6A, 0x32, 0x73, 0x81, + 0x88, 0x66, 0x65, 0x4D, 0x6D, 0xE1, 0x6E, 0x01, 0x02, 0x23, 0x6F, 0x3C, 0x91, 0xCB, 0x02, 0xF5, + 0x88, 0x88, 0x51, 0x51, 0xFE, 0x6F, 0x9B, 0xD3, 0x5A, 0x60, 0x1E, 0x26, 0x8C, 0x68, 0x71, 0x8D, + 0x4A, 0x53, 0x6F, 0xFE, 0x8A, 0x22, 0x1E, 0x22, 0x2A, 0xCD, 0x00, 0x00, 0x00, 0x03, 0x00, 0x28, + 0xFF, 0x2E, 0x02, 0x1A, 0x02, 0xC6, 0x00, 0x07, 0x00, 0x26, 0x00, 0x31, 0x00, 0x00, 0x13, 0x37, + 0x33, 0x17, 0x23, 0x27, 0x23, 0x07, 0x03, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x37, 0x23, 0x06, + 0x23, 0x22, 0x26, 0x34, 0x36, 0x33, 0x32, 0x17, 0x33, 0x26, 0x3D, 0x01, 0x33, 0x11, 0x14, 0x0E, + 0x02, 0x23, 0x22, 0x27, 0x13, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x23, 0x22, 0x06, 0x8B, + 0x5C, 0x7F, 0x5D, 0x69, 0x32, 0x02, 0x32, 0x76, 0x44, 0x49, 0x40, 0x50, 0x02, 0x02, 0x2F, 0x60, + 0x6A, 0x7A, 0x77, 0x6A, 0x68, 0x30, 0x03, 0x02, 0x78, 0x2E, 0x4E, 0x5D, 0x34, 0x61, 0x55, 0x51, + 0x43, 0x3D, 0x33, 0x43, 0x7E, 0x39, 0x3F, 0x02, 0x3E, 0x88, 0x88, 0x51, 0x51, 0xFD, 0x7D, 0x21, + 0x3C, 0x40, 0x20, 0x1B, 0x47, 0x94, 0xDC, 0x90, 0x43, 0x06, 0x08, 0x29, 0xFE, 0x21, 0x3F, 0x60, + 0x37, 0x1B, 0x2C, 0x01, 0xB6, 0x45, 0x56, 0x46, 0x50, 0x93, 0x4D, 0x00, 0x00, 0x02, 0x00, 0x2D, + 0xFF, 0xF4, 0x02, 0xC6, 0x03, 0x7D, 0x00, 0x1F, 0x00, 0x31, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, + 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x37, 0x35, 0x23, + 0x35, 0x33, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x01, 0x22, 0x26, 0x3D, + 0x01, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x06, 0x2D, 0xD1, + 0x9D, 0xA0, 0x68, 0x40, 0x21, 0x6A, 0x32, 0x73, 0x81, 0x88, 0x66, 0x65, 0x4D, 0x6D, 0xE1, 0x6E, + 0x01, 0x02, 0x23, 0x6F, 0x3C, 0x91, 0xCB, 0x01, 0x64, 0x3F, 0x56, 0x5A, 0x22, 0x19, 0x17, 0x23, + 0x5A, 0x56, 0x01, 0x64, 0x9B, 0xD3, 0x5A, 0x60, 0x1E, 0x26, 0x8C, 0x68, 0x71, 0x8D, 0x4A, 0x53, + 0x6F, 0xFE, 0x8A, 0x22, 0x1E, 0x22, 0x2A, 0xCD, 0x02, 0x30, 0x44, 0x3C, 0x0C, 0x0C, 0x1D, 0x1E, + 0x1F, 0x1D, 0x0B, 0x0C, 0x3C, 0x44, 0x00, 0x00, 0x00, 0x03, 0x00, 0x28, 0xFF, 0x2E, 0x02, 0x1A, + 0x02, 0xC6, 0x00, 0x1E, 0x00, 0x29, 0x00, 0x3B, 0x00, 0x00, 0x17, 0x16, 0x33, 0x32, 0x36, 0x3D, + 0x01, 0x37, 0x23, 0x06, 0x23, 0x22, 0x26, 0x34, 0x36, 0x33, 0x32, 0x17, 0x33, 0x26, 0x3D, 0x01, + 0x33, 0x11, 0x14, 0x0E, 0x02, 0x23, 0x22, 0x27, 0x13, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, + 0x23, 0x22, 0x06, 0x37, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, + 0x01, 0x33, 0x15, 0x14, 0x06, 0x7E, 0x44, 0x49, 0x40, 0x50, 0x02, 0x02, 0x2F, 0x60, 0x6A, 0x7A, + 0x77, 0x6A, 0x68, 0x30, 0x03, 0x02, 0x78, 0x2E, 0x4E, 0x5D, 0x34, 0x61, 0x55, 0x51, 0x43, 0x3D, + 0x33, 0x43, 0x7E, 0x39, 0x3F, 0x7F, 0x3F, 0x56, 0x5A, 0x22, 0x19, 0x17, 0x23, 0x5A, 0x56, 0x45, + 0x21, 0x3C, 0x40, 0x20, 0x1B, 0x47, 0x94, 0xDC, 0x90, 0x43, 0x06, 0x08, 0x29, 0xFE, 0x21, 0x3F, + 0x60, 0x37, 0x1B, 0x2C, 0x01, 0xB6, 0x45, 0x56, 0x46, 0x50, 0x93, 0x4D, 0xE9, 0x44, 0x3C, 0x0C, + 0x0C, 0x1D, 0x1E, 0x1F, 0x1D, 0x0B, 0x0C, 0x3C, 0x44, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x2D, + 0xFF, 0xF4, 0x02, 0xC6, 0x03, 0x7D, 0x00, 0x1F, 0x00, 0x23, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, + 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x37, 0x35, 0x23, + 0x35, 0x33, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x01, 0x35, 0x33, 0x15, + 0x2D, 0xD1, 0x9D, 0xA0, 0x68, 0x40, 0x21, 0x6A, 0x32, 0x73, 0x81, 0x88, 0x66, 0x65, 0x4D, 0x6D, + 0xE1, 0x6E, 0x01, 0x02, 0x23, 0x6F, 0x3C, 0x91, 0xCB, 0x01, 0x2E, 0x6C, 0x01, 0x64, 0x9B, 0xD3, + 0x5A, 0x60, 0x1E, 0x26, 0x8C, 0x68, 0x71, 0x8D, 0x4A, 0x53, 0x6F, 0xFE, 0x8A, 0x22, 0x1E, 0x22, + 0x2A, 0xCD, 0x02, 0x4D, 0x6F, 0x6F, 0x00, 0x00, 0x00, 0x03, 0x00, 0x28, 0xFF, 0x2E, 0x02, 0x1A, + 0x02, 0xC6, 0x00, 0x1E, 0x00, 0x29, 0x00, 0x2D, 0x00, 0x00, 0x17, 0x16, 0x33, 0x32, 0x36, 0x3D, + 0x01, 0x37, 0x23, 0x06, 0x23, 0x22, 0x26, 0x34, 0x36, 0x33, 0x32, 0x17, 0x33, 0x26, 0x3D, 0x01, + 0x33, 0x11, 0x14, 0x0E, 0x02, 0x23, 0x22, 0x27, 0x13, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, + 0x23, 0x22, 0x06, 0x13, 0x35, 0x33, 0x15, 0x7E, 0x44, 0x49, 0x40, 0x50, 0x02, 0x02, 0x2F, 0x60, + 0x6A, 0x7A, 0x77, 0x6A, 0x68, 0x30, 0x03, 0x02, 0x78, 0x2E, 0x4E, 0x5D, 0x34, 0x61, 0x55, 0x51, + 0x43, 0x3D, 0x33, 0x43, 0x7E, 0x39, 0x3F, 0x49, 0x6C, 0x45, 0x21, 0x3C, 0x40, 0x20, 0x1B, 0x47, + 0x94, 0xDC, 0x90, 0x43, 0x06, 0x08, 0x29, 0xFE, 0x21, 0x3F, 0x60, 0x37, 0x1B, 0x2C, 0x01, 0xB6, + 0x45, 0x56, 0x46, 0x50, 0x93, 0x4D, 0x01, 0x06, 0x6F, 0x6F, 0x00, 0x00, 0x00, 0x02, 0x00, 0x2D, + 0xFF, 0x32, 0x02, 0xC6, 0x02, 0xD2, 0x00, 0x09, 0x00, 0x29, 0x00, 0x00, 0x05, 0x33, 0x16, 0x15, + 0x14, 0x07, 0x23, 0x36, 0x35, 0x34, 0x01, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, + 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x37, 0x35, 0x23, 0x35, 0x33, 0x11, 0x23, 0x35, 0x37, + 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x01, 0x52, 0x69, 0x07, 0x1A, 0x5E, 0x14, 0xFE, 0xCF, 0xD1, + 0x9D, 0xA0, 0x68, 0x40, 0x21, 0x6A, 0x32, 0x73, 0x81, 0x88, 0x66, 0x65, 0x4D, 0x6D, 0xE1, 0x6E, + 0x01, 0x02, 0x23, 0x6F, 0x3C, 0x91, 0xCB, 0x37, 0x1C, 0x1A, 0x2B, 0x36, 0x35, 0x22, 0x20, 0x01, + 0xBB, 0x9B, 0xD3, 0x5A, 0x60, 0x1E, 0x26, 0x8C, 0x68, 0x71, 0x8D, 0x4A, 0x53, 0x6F, 0xFE, 0x8A, + 0x22, 0x1E, 0x22, 0x2A, 0xCD, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x28, 0xFF, 0x2E, 0x02, 0x1A, + 0x02, 0xC5, 0x00, 0x08, 0x00, 0x27, 0x00, 0x32, 0x00, 0x00, 0x01, 0x23, 0x26, 0x35, 0x34, 0x37, + 0x33, 0x06, 0x14, 0x03, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x37, 0x23, 0x06, 0x23, 0x22, 0x26, + 0x34, 0x36, 0x33, 0x32, 0x17, 0x33, 0x26, 0x3D, 0x01, 0x33, 0x11, 0x14, 0x0E, 0x02, 0x23, 0x22, + 0x27, 0x13, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x23, 0x22, 0x06, 0x01, 0x5E, 0x69, 0x07, + 0x1A, 0x5D, 0x13, 0xD4, 0x44, 0x49, 0x40, 0x50, 0x02, 0x02, 0x2F, 0x60, 0x6A, 0x7A, 0x77, 0x6A, + 0x68, 0x30, 0x03, 0x02, 0x78, 0x2E, 0x4E, 0x5D, 0x34, 0x61, 0x55, 0x51, 0x43, 0x3D, 0x33, 0x43, + 0x7E, 0x39, 0x3F, 0x02, 0x32, 0x1B, 0x19, 0x2B, 0x34, 0x36, 0x3E, 0xFD, 0x6A, 0x21, 0x3C, 0x40, + 0x20, 0x1B, 0x47, 0x94, 0xDC, 0x90, 0x43, 0x06, 0x08, 0x29, 0xFE, 0x21, 0x3F, 0x60, 0x37, 0x1B, + 0x2C, 0x01, 0xB6, 0x45, 0x56, 0x46, 0x50, 0x93, 0x4D, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x56, + 0x00, 0x00, 0x02, 0x9C, 0x03, 0x7D, 0x00, 0x07, 0x00, 0x13, 0x00, 0x00, 0x13, 0x37, 0x33, 0x17, + 0x23, 0x27, 0x23, 0x07, 0x03, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x23, 0x11, 0x21, 0x11, + 0xDD, 0x5C, 0x7F, 0x5D, 0x69, 0x32, 0x02, 0x32, 0xF0, 0x81, 0x01, 0x45, 0x80, 0x80, 0xFE, 0xBB, + 0x02, 0xF5, 0x88, 0x88, 0x51, 0x51, 0xFD, 0x0B, 0x02, 0xC6, 0xFE, 0xD3, 0x01, 0x2D, 0xFD, 0x3A, + 0x01, 0x2A, 0xFE, 0xD6, 0x00, 0x02, 0xFF, 0xE9, 0x00, 0x00, 0x02, 0x25, 0x03, 0x7D, 0x00, 0x07, + 0x00, 0x1C, 0x00, 0x00, 0x03, 0x37, 0x33, 0x17, 0x23, 0x27, 0x23, 0x07, 0x03, 0x11, 0x33, 0x15, + 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x1D, + 0x01, 0x17, 0x5C, 0x7F, 0x5D, 0x69, 0x32, 0x02, 0x32, 0x0E, 0x7F, 0x03, 0x02, 0x15, 0x5F, 0x3D, + 0xB2, 0x7F, 0x23, 0x2D, 0x42, 0x51, 0x02, 0xF5, 0x88, 0x88, 0x51, 0x51, 0xFD, 0x0B, 0x02, 0xC6, + 0xF8, 0x2B, 0x29, 0x3E, 0xC2, 0xFE, 0xB8, 0x01, 0x2E, 0x33, 0x35, 0x5F, 0x4A, 0xED, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x1B, 0x00, 0x00, 0x02, 0xDD, 0x02, 0xC6, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, + 0x33, 0x11, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x11, + 0x23, 0x11, 0x21, 0x19, 0x01, 0x21, 0x35, 0x21, 0x5D, 0x42, 0x42, 0x83, 0x01, 0x39, 0x83, 0x41, + 0x41, 0x83, 0xFE, 0xC7, 0x01, 0x39, 0xFE, 0xC7, 0x02, 0x03, 0x53, 0x70, 0x70, 0x70, 0x70, 0x53, + 0xFD, 0xFD, 0x01, 0x2A, 0xFE, 0xD6, 0x01, 0x99, 0x6A, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, + 0x00, 0x00, 0x02, 0x25, 0x02, 0xC6, 0x00, 0x1C, 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, 0x33, 0x35, + 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x15, 0x11, 0x23, 0x11, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x1D, 0x01, 0x44, 0x42, 0x42, 0x7F, 0x86, 0x86, 0x02, 0x02, 0x15, + 0x5E, 0x3D, 0xB2, 0x7F, 0x23, 0x2D, 0x43, 0x50, 0x02, 0x2F, 0x4C, 0x4B, 0x4B, 0x4C, 0x5F, 0x2B, + 0x29, 0x3C, 0xC2, 0xFE, 0xB8, 0x01, 0x2E, 0x33, 0x35, 0x61, 0x46, 0xEF, 0x00, 0x02, 0xFF, 0xE2, + 0x00, 0x00, 0x01, 0x4D, 0x03, 0x7F, 0x00, 0x03, 0x00, 0x15, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, + 0x03, 0x34, 0x33, 0x32, 0x1E, 0x01, 0x33, 0x32, 0x35, 0x33, 0x14, 0x23, 0x22, 0x2E, 0x01, 0x23, + 0x22, 0x15, 0x56, 0x81, 0xF5, 0x70, 0x1D, 0x2D, 0x24, 0x10, 0x27, 0x56, 0x70, 0x1D, 0x2D, 0x24, + 0x10, 0x26, 0x02, 0xC6, 0xFD, 0x3A, 0x02, 0xF6, 0x89, 0x21, 0x20, 0x3E, 0x89, 0x21, 0x20, 0x3E, + 0x00, 0x02, 0xFF, 0xCF, 0x00, 0x00, 0x01, 0x3A, 0x02, 0xC8, 0x00, 0x03, 0x00, 0x17, 0x00, 0x00, + 0x33, 0x11, 0x33, 0x11, 0x03, 0x34, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x35, 0x33, 0x14, 0x23, + 0x22, 0x2E, 0x02, 0x23, 0x22, 0x15, 0x44, 0x7F, 0xF4, 0x70, 0x17, 0x27, 0x16, 0x1D, 0x0D, 0x27, + 0x56, 0x70, 0x17, 0x27, 0x16, 0x1D, 0x0D, 0x26, 0x01, 0xFE, 0xFE, 0x02, 0x02, 0x3F, 0x89, 0x14, + 0x19, 0x14, 0x3E, 0x89, 0x14, 0x19, 0x14, 0x3E, 0x00, 0x02, 0x00, 0x15, 0x00, 0x00, 0x01, 0x1B, + 0x03, 0x66, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, + 0x56, 0x81, 0xC2, 0x01, 0x06, 0x02, 0xC6, 0xFD, 0x3A, 0x03, 0x0F, 0x57, 0x57, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x01, 0x08, 0x02, 0xAF, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x33, 0x11, 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x44, 0x7F, 0xC1, 0x01, 0x06, 0x01, 0xFE, 0xFE, + 0x02, 0x02, 0x58, 0x57, 0x57, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x01, 0x2C, + 0x03, 0x7D, 0x00, 0x03, 0x00, 0x15, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x03, 0x22, 0x26, 0x3D, + 0x01, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x06, 0x56, 0x81, + 0x3F, 0x3F, 0x56, 0x5A, 0x22, 0x19, 0x17, 0x23, 0x5A, 0x56, 0x02, 0xC6, 0xFD, 0x3A, 0x02, 0xF1, + 0x44, 0x3C, 0x0C, 0x0C, 0x1D, 0x1E, 0x1F, 0x1D, 0x0B, 0x0C, 0x3C, 0x44, 0x00, 0x02, 0xFF, 0xF0, + 0x00, 0x00, 0x01, 0x19, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x15, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, + 0x03, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, + 0x14, 0x06, 0x44, 0x7F, 0x3E, 0x3F, 0x56, 0x5A, 0x22, 0x19, 0x17, 0x23, 0x5A, 0x56, 0x01, 0xFE, + 0xFE, 0x02, 0x02, 0x3A, 0x44, 0x3C, 0x0C, 0x0C, 0x1D, 0x1E, 0x1F, 0x1D, 0x0B, 0x0C, 0x3C, 0x44, + 0x00, 0x01, 0x00, 0x36, 0xFF, 0x30, 0x00, 0xD7, 0x02, 0xC6, 0x00, 0x12, 0x00, 0x00, 0x33, 0x11, + 0x33, 0x11, 0x06, 0x15, 0x14, 0x16, 0x1F, 0x01, 0x07, 0x22, 0x2E, 0x03, 0x35, 0x34, 0x37, 0x56, + 0x81, 0x38, 0x18, 0x0C, 0x0C, 0x1E, 0x05, 0x11, 0x2A, 0x20, 0x1B, 0x43, 0x02, 0xC6, 0xFD, 0x3A, + 0x2F, 0x1F, 0x0E, 0x12, 0x02, 0x02, 0x5E, 0x03, 0x0D, 0x13, 0x25, 0x18, 0x3A, 0x36, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x23, 0xFF, 0x30, 0x00, 0xC3, 0x02, 0xC6, 0x00, 0x14, 0x00, 0x18, 0x00, 0x00, + 0x33, 0x11, 0x33, 0x11, 0x06, 0x15, 0x14, 0x16, 0x1F, 0x01, 0x07, 0x22, 0x2E, 0x05, 0x35, 0x34, + 0x37, 0x03, 0x35, 0x33, 0x15, 0x44, 0x7F, 0x38, 0x19, 0x0C, 0x0C, 0x1E, 0x03, 0x08, 0x1A, 0x17, + 0x1D, 0x14, 0x0E, 0x43, 0x22, 0x7F, 0x01, 0xFE, 0xFE, 0x02, 0x2F, 0x1F, 0x0E, 0x12, 0x02, 0x02, + 0x5E, 0x01, 0x06, 0x08, 0x0F, 0x13, 0x1E, 0x12, 0x38, 0x37, 0x02, 0x55, 0x71, 0x71, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x00, 0xD7, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x33, 0x11, 0x33, 0x11, 0x03, 0x35, 0x33, 0x15, 0x56, 0x81, 0x75, 0x6C, 0x02, 0xC6, 0xFD, 0x3A, + 0x03, 0x0E, 0x6F, 0x6F, 0x00, 0x01, 0x00, 0x44, 0x00, 0x00, 0x00, 0xC3, 0x01, 0xFE, 0x00, 0x03, + 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x44, 0x7F, 0x01, 0xFE, 0xFE, 0x02, 0x00, 0x02, 0x00, 0x56, + 0xFF, 0xFC, 0x02, 0x2E, 0x02, 0xC6, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x00, 0x05, 0x35, 0x32, 0x3E, + 0x02, 0x35, 0x11, 0x33, 0x11, 0x14, 0x0E, 0x02, 0x25, 0x11, 0x33, 0x11, 0x01, 0x29, 0x16, 0x29, + 0x2A, 0x19, 0x83, 0x2F, 0x51, 0x53, 0xFE, 0xFB, 0x81, 0x04, 0x75, 0x0C, 0x1C, 0x3A, 0x29, 0x01, + 0xCA, 0xFE, 0x34, 0x4C, 0x6A, 0x33, 0x15, 0x04, 0x02, 0xC6, 0xFD, 0x3A, 0x00, 0x04, 0x00, 0x44, + 0xFF, 0x31, 0x01, 0xCA, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x1E, 0x00, 0x00, + 0x13, 0x35, 0x33, 0x15, 0x03, 0x11, 0x33, 0x11, 0x13, 0x35, 0x33, 0x15, 0x03, 0x11, 0x33, 0x11, + 0x14, 0x0E, 0x03, 0x23, 0x22, 0x27, 0x35, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x44, 0x7F, 0x7F, 0x7F, + 0x88, 0x7F, 0x7F, 0x7F, 0x20, 0x2D, 0x3E, 0x31, 0x19, 0x13, 0x13, 0x0C, 0x0A, 0x11, 0x1E, 0x22, + 0x15, 0x02, 0x55, 0x71, 0x71, 0xFD, 0xAB, 0x01, 0xFE, 0xFE, 0x02, 0x02, 0x55, 0x71, 0x71, 0xFD, + 0xA6, 0x02, 0x03, 0xFD, 0xF3, 0x31, 0x49, 0x27, 0x18, 0x07, 0x03, 0x6B, 0x02, 0x07, 0x11, 0x29, + 0x00, 0x02, 0x00, 0x18, 0xFF, 0xF4, 0x01, 0xD2, 0x03, 0x7D, 0x00, 0x07, 0x00, 0x1B, 0x00, 0x00, + 0x13, 0x37, 0x33, 0x17, 0x23, 0x27, 0x23, 0x07, 0x03, 0x35, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x35, 0x11, 0x23, 0x35, 0x21, 0x11, 0x14, 0x06, 0x23, 0x22, 0x26, 0x97, 0x5C, 0x7F, 0x5D, + 0x69, 0x32, 0x02, 0x32, 0xE8, 0x80, 0x2E, 0x2F, 0x29, 0x34, 0xB8, 0x01, 0x38, 0x83, 0x5A, 0x5B, + 0x82, 0x02, 0xF5, 0x88, 0x88, 0x51, 0x51, 0xFD, 0xDD, 0x29, 0x21, 0x30, 0x40, 0x34, 0x36, 0x01, + 0x83, 0x6F, 0xFE, 0x0C, 0x6D, 0x71, 0x72, 0x00, 0x00, 0x02, 0xFF, 0xC8, 0xFF, 0x31, 0x01, 0x19, + 0x02, 0xC6, 0x00, 0x07, 0x00, 0x1A, 0x00, 0x00, 0x03, 0x37, 0x33, 0x17, 0x23, 0x27, 0x23, 0x07, + 0x03, 0x11, 0x33, 0x11, 0x14, 0x0E, 0x03, 0x23, 0x22, 0x27, 0x35, 0x16, 0x33, 0x32, 0x3E, 0x02, + 0x14, 0x5C, 0x75, 0x5C, 0x63, 0x32, 0x02, 0x33, 0x0B, 0x7F, 0x20, 0x2D, 0x3E, 0x31, 0x19, 0x12, + 0x14, 0x0C, 0x0A, 0x11, 0x1E, 0x22, 0x15, 0x02, 0x3D, 0x89, 0x89, 0x52, 0x52, 0xFD, 0xBE, 0x02, + 0x03, 0xFD, 0xF3, 0x31, 0x49, 0x27, 0x18, 0x07, 0x03, 0x6B, 0x02, 0x07, 0x11, 0x29, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x56, 0xFF, 0x32, 0x02, 0x72, 0x02, 0xC6, 0x00, 0x09, 0x00, 0x17, 0x00, 0x00, + 0x05, 0x33, 0x16, 0x15, 0x14, 0x07, 0x23, 0x36, 0x35, 0x34, 0x27, 0x11, 0x33, 0x11, 0x33, 0x13, + 0x33, 0x03, 0x15, 0x13, 0x23, 0x03, 0x23, 0x11, 0x01, 0x10, 0x69, 0x07, 0x1A, 0x5E, 0x14, 0xC6, + 0x81, 0x5C, 0xA7, 0x8C, 0xC9, 0xD5, 0x92, 0xAD, 0x5C, 0x37, 0x1C, 0x1A, 0x2B, 0x36, 0x35, 0x22, + 0x20, 0x57, 0x02, 0xC6, 0xFE, 0xDF, 0x01, 0x21, 0xFE, 0xAE, 0x02, 0xFE, 0x8E, 0x01, 0x36, 0xFE, + 0xCA, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x44, 0xFF, 0x32, 0x02, 0x1E, 0x02, 0xC6, 0x00, 0x09, + 0x00, 0x17, 0x00, 0x00, 0x17, 0x33, 0x16, 0x15, 0x14, 0x07, 0x23, 0x36, 0x35, 0x34, 0x27, 0x11, + 0x33, 0x11, 0x33, 0x37, 0x33, 0x07, 0x15, 0x13, 0x23, 0x27, 0x23, 0x15, 0xE6, 0x69, 0x07, 0x1A, + 0x5E, 0x14, 0xAE, 0x7F, 0x3F, 0x7B, 0x8D, 0xA1, 0xB5, 0x92, 0x87, 0x42, 0x37, 0x1C, 0x1A, 0x2B, + 0x36, 0x35, 0x22, 0x20, 0x57, 0x02, 0xC6, 0xFE, 0x84, 0xB4, 0xE4, 0x02, 0xFE, 0xE8, 0xDF, 0xDF, + 0x00, 0x01, 0x00, 0x44, 0x00, 0x00, 0x02, 0x17, 0x01, 0xFE, 0x00, 0x0D, 0x00, 0x00, 0x33, 0x11, + 0x33, 0x15, 0x33, 0x37, 0x33, 0x07, 0x15, 0x13, 0x23, 0x27, 0x23, 0x15, 0x44, 0x7F, 0x3E, 0x81, + 0x8E, 0xA7, 0xAE, 0x95, 0x7E, 0x41, 0x01, 0xFE, 0xC0, 0xC0, 0xEF, 0x02, 0xFE, 0xF3, 0xD3, 0xD3, + 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0x0A, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, + 0x13, 0x37, 0x33, 0x07, 0x03, 0x11, 0x33, 0x11, 0x21, 0x15, 0x61, 0x4C, 0x83, 0x69, 0x71, 0x81, + 0x01, 0x33, 0x02, 0xF5, 0x88, 0x88, 0xFD, 0x0B, 0x02, 0xC6, 0xFD, 0xA9, 0x6F, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x44, 0xFF, 0xFB, 0x01, 0x1D, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x13, 0x00, 0x00, + 0x13, 0x37, 0x33, 0x07, 0x03, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x37, 0x15, 0x06, 0x23, + 0x22, 0x2E, 0x02, 0x4E, 0x4C, 0x83, 0x69, 0x70, 0x7E, 0x19, 0x1B, 0x0C, 0x07, 0x1B, 0x0D, 0x1F, + 0x30, 0x32, 0x1C, 0x02, 0xF5, 0x88, 0x88, 0xFD, 0xAA, 0x02, 0x27, 0xFD, 0xEC, 0x28, 0x1E, 0x01, + 0x6F, 0x03, 0x0B, 0x1F, 0x46, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x56, 0xFF, 0x32, 0x02, 0x0A, + 0x02, 0xC6, 0x00, 0x09, 0x00, 0x0F, 0x00, 0x00, 0x17, 0x33, 0x16, 0x15, 0x14, 0x07, 0x23, 0x36, + 0x35, 0x34, 0x27, 0x11, 0x33, 0x11, 0x21, 0x15, 0xFE, 0x69, 0x07, 0x1A, 0x5E, 0x14, 0xB4, 0x81, + 0x01, 0x33, 0x37, 0x1C, 0x1A, 0x2B, 0x36, 0x35, 0x22, 0x20, 0x57, 0x02, 0xC6, 0xFD, 0xA9, 0x6F, + 0x00, 0x02, 0x00, 0x44, 0xFF, 0x32, 0x01, 0x09, 0x02, 0xC6, 0x00, 0x09, 0x00, 0x19, 0x00, 0x00, + 0x17, 0x33, 0x16, 0x15, 0x14, 0x07, 0x23, 0x36, 0x35, 0x34, 0x27, 0x11, 0x33, 0x11, 0x14, 0x16, + 0x33, 0x32, 0x37, 0x15, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x72, 0x69, 0x07, 0x1A, 0x5E, 0x14, 0x3A, + 0x7E, 0x19, 0x1B, 0x0C, 0x07, 0x1B, 0x0D, 0x1F, 0x30, 0x32, 0x1C, 0x37, 0x1C, 0x1A, 0x2B, 0x36, + 0x35, 0x22, 0x20, 0xF6, 0x02, 0x27, 0xFD, 0xEC, 0x28, 0x1E, 0x01, 0x6F, 0x03, 0x0B, 0x1F, 0x46, + 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0x0A, 0x02, 0xC6, 0x00, 0x09, 0x00, 0x0F, 0x00, 0x00, + 0x01, 0x33, 0x16, 0x15, 0x14, 0x07, 0x23, 0x36, 0x35, 0x34, 0x03, 0x11, 0x33, 0x11, 0x21, 0x15, + 0x01, 0x26, 0x69, 0x07, 0x1A, 0x5E, 0x14, 0xDC, 0x81, 0x01, 0x33, 0x02, 0xC5, 0x1C, 0x1A, 0x2B, + 0x36, 0x35, 0x22, 0x20, 0xFD, 0x5B, 0x02, 0xC6, 0xFD, 0xA9, 0x6F, 0x00, 0x00, 0x02, 0x00, 0x44, + 0xFF, 0xFB, 0x01, 0x68, 0x02, 0xC6, 0x00, 0x09, 0x00, 0x19, 0x00, 0x00, 0x13, 0x33, 0x16, 0x15, + 0x14, 0x07, 0x23, 0x36, 0x35, 0x34, 0x03, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x37, 0x15, + 0x06, 0x23, 0x22, 0x2E, 0x02, 0xF8, 0x69, 0x07, 0x1A, 0x5E, 0x14, 0xC0, 0x7E, 0x19, 0x1B, 0x0C, + 0x07, 0x1B, 0x0D, 0x1F, 0x30, 0x32, 0x1C, 0x02, 0xC5, 0x1C, 0x1A, 0x2B, 0x36, 0x35, 0x22, 0x20, + 0xFD, 0xFA, 0x02, 0x27, 0xFD, 0xEC, 0x28, 0x1E, 0x01, 0x6F, 0x03, 0x0B, 0x1F, 0x46, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0x0A, 0x02, 0xC6, 0x00, 0x05, 0x00, 0x09, 0x00, 0x00, + 0x33, 0x11, 0x33, 0x11, 0x21, 0x15, 0x03, 0x35, 0x33, 0x15, 0x56, 0x81, 0x01, 0x33, 0xC8, 0x7B, + 0x02, 0xC6, 0xFD, 0xA9, 0x6F, 0x01, 0x41, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x44, + 0xFF, 0xFB, 0x01, 0x89, 0x02, 0xC6, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x37, 0x11, 0x33, 0x11, + 0x14, 0x16, 0x33, 0x32, 0x37, 0x15, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x37, 0x35, 0x33, 0x15, 0x44, + 0x7E, 0x19, 0x1B, 0x0C, 0x07, 0x1B, 0x0D, 0x1F, 0x30, 0x32, 0x1C, 0xCA, 0x7B, 0x9F, 0x02, 0x27, + 0xFD, 0xEC, 0x28, 0x1E, 0x01, 0x6F, 0x03, 0x0B, 0x1F, 0x46, 0xD6, 0x80, 0x80, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x22, 0x00, 0x00, 0x02, 0x0E, 0x02, 0xC6, 0x00, 0x0D, 0x00, 0x00, 0x33, 0x11, + 0x07, 0x35, 0x37, 0x11, 0x33, 0x15, 0x37, 0x15, 0x07, 0x15, 0x21, 0x15, 0x5B, 0x39, 0x39, 0x80, + 0x6A, 0x6A, 0x01, 0x33, 0x01, 0x07, 0x20, 0x7C, 0x20, 0x01, 0x43, 0xF9, 0x3D, 0x7C, 0x3D, 0xE2, + 0x6F, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x11, 0xFF, 0xFB, 0x01, 0x1D, 0x02, 0xC6, 0x00, 0x16, + 0x00, 0x00, 0x37, 0x35, 0x37, 0x11, 0x33, 0x15, 0x37, 0x15, 0x07, 0x15, 0x14, 0x16, 0x33, 0x37, + 0x15, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x3D, 0x01, 0x11, 0x40, 0x7E, 0x4E, 0x4E, 0x19, 0x1B, 0x13, + 0x12, 0x16, 0x1F, 0x30, 0x32, 0x1C, 0xF4, 0x7C, 0x24, 0x01, 0x32, 0xE9, 0x2D, 0x7C, 0x2D, 0xAF, + 0x28, 0x1E, 0x01, 0x6F, 0x03, 0x0B, 0x1F, 0x46, 0x34, 0x79, 0x00, 0x00, 0x00, 0x02, 0x00, 0x56, + 0x00, 0x00, 0x02, 0x9A, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x1B, 0x00, 0x00, 0x01, 0x37, 0x33, 0x07, + 0x01, 0x11, 0x33, 0x01, 0x1E, 0x01, 0x1F, 0x01, 0x33, 0x26, 0x35, 0x11, 0x33, 0x11, 0x23, 0x01, + 0x2E, 0x01, 0x2F, 0x01, 0x23, 0x16, 0x15, 0x11, 0x01, 0x41, 0x4C, 0x83, 0x69, 0xFE, 0xAF, 0x81, + 0x01, 0x0D, 0x0C, 0x1D, 0x09, 0x09, 0x02, 0x07, 0x80, 0x80, 0xFE, 0xF3, 0x0C, 0x1D, 0x09, 0x09, + 0x02, 0x07, 0x02, 0xF5, 0x88, 0x88, 0xFD, 0x0B, 0x02, 0xC6, 0xFE, 0x66, 0x13, 0x37, 0x12, 0x12, + 0x44, 0x2A, 0x01, 0x9A, 0xFD, 0x3A, 0x01, 0x99, 0x13, 0x37, 0x12, 0x12, 0x44, 0x2A, 0xFE, 0x67, + 0x00, 0x02, 0x00, 0x44, 0x00, 0x00, 0x02, 0x25, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x18, 0x00, 0x00, + 0x01, 0x37, 0x33, 0x07, 0x01, 0x11, 0x33, 0x15, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x15, 0x11, + 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x1D, 0x01, 0x01, 0x03, 0x4C, 0x83, 0x69, 0xFE, 0xDB, + 0x7A, 0x02, 0x02, 0x14, 0x5C, 0x45, 0xB2, 0x7F, 0x23, 0x2D, 0x42, 0x51, 0x02, 0x3E, 0x88, 0x88, + 0xFD, 0xC2, 0x01, 0xFE, 0x3C, 0x24, 0x29, 0x43, 0xC2, 0xFE, 0xB8, 0x01, 0x2E, 0x33, 0x35, 0x60, + 0x47, 0xEF, 0x00, 0x00, 0x00, 0x02, 0x00, 0x56, 0xFF, 0x32, 0x02, 0x9A, 0x02, 0xC6, 0x00, 0x09, + 0x00, 0x21, 0x00, 0x00, 0x05, 0x33, 0x16, 0x15, 0x14, 0x07, 0x23, 0x36, 0x35, 0x34, 0x27, 0x11, + 0x33, 0x01, 0x1E, 0x01, 0x1F, 0x01, 0x33, 0x26, 0x35, 0x11, 0x33, 0x11, 0x23, 0x01, 0x2E, 0x01, + 0x2F, 0x01, 0x23, 0x16, 0x15, 0x11, 0x01, 0x41, 0x69, 0x07, 0x1A, 0x5E, 0x14, 0xF7, 0x81, 0x01, + 0x0D, 0x0C, 0x1D, 0x09, 0x09, 0x02, 0x07, 0x80, 0x80, 0xFE, 0xF3, 0x0C, 0x1D, 0x09, 0x09, 0x02, + 0x07, 0x37, 0x1C, 0x1A, 0x2B, 0x36, 0x35, 0x22, 0x20, 0x57, 0x02, 0xC6, 0xFE, 0x66, 0x13, 0x37, + 0x12, 0x12, 0x44, 0x2A, 0x01, 0x9A, 0xFD, 0x3A, 0x01, 0x99, 0x13, 0x37, 0x12, 0x12, 0x44, 0x2A, + 0xFE, 0x67, 0x00, 0x00, 0x00, 0x02, 0x00, 0x44, 0xFF, 0x32, 0x02, 0x25, 0x02, 0x0A, 0x00, 0x09, + 0x00, 0x1E, 0x00, 0x00, 0x17, 0x33, 0x16, 0x15, 0x14, 0x07, 0x23, 0x36, 0x35, 0x34, 0x27, 0x11, + 0x33, 0x15, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x1D, 0x01, 0xFB, 0x69, 0x07, 0x1A, 0x5E, 0x14, 0xC3, 0x7A, 0x02, 0x02, 0x14, 0x5C, 0x45, + 0xB2, 0x7F, 0x23, 0x2D, 0x42, 0x51, 0x37, 0x1C, 0x1A, 0x2B, 0x36, 0x35, 0x22, 0x20, 0x57, 0x01, + 0xFE, 0x3C, 0x24, 0x29, 0x43, 0xC2, 0xFE, 0xB8, 0x01, 0x2E, 0x33, 0x35, 0x60, 0x47, 0xEF, 0x00, + 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0x9A, 0x03, 0x7D, 0x00, 0x07, 0x00, 0x1F, 0x00, 0x00, + 0x01, 0x27, 0x33, 0x17, 0x33, 0x37, 0x33, 0x07, 0x01, 0x11, 0x33, 0x01, 0x1E, 0x01, 0x1F, 0x01, + 0x33, 0x26, 0x35, 0x11, 0x33, 0x11, 0x23, 0x01, 0x2E, 0x01, 0x2F, 0x01, 0x23, 0x16, 0x15, 0x11, + 0x01, 0x38, 0x5C, 0x69, 0x32, 0x02, 0x32, 0x69, 0x5D, 0xFE, 0x9F, 0x81, 0x01, 0x0D, 0x0C, 0x1D, + 0x09, 0x09, 0x02, 0x07, 0x80, 0x80, 0xFE, 0xF3, 0x0C, 0x1D, 0x09, 0x09, 0x02, 0x07, 0x02, 0xF5, + 0x88, 0x51, 0x51, 0x88, 0xFD, 0x0B, 0x02, 0xC6, 0xFE, 0x66, 0x13, 0x37, 0x12, 0x12, 0x44, 0x2A, + 0x01, 0x9A, 0xFD, 0x3A, 0x01, 0x99, 0x13, 0x37, 0x12, 0x12, 0x44, 0x2A, 0xFE, 0x67, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x44, 0x00, 0x00, 0x02, 0x25, 0x02, 0xC6, 0x00, 0x07, 0x00, 0x1C, 0x00, 0x00, + 0x13, 0x27, 0x33, 0x17, 0x33, 0x37, 0x33, 0x07, 0x01, 0x11, 0x33, 0x15, 0x07, 0x33, 0x3E, 0x01, + 0x33, 0x32, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x1D, 0x01, 0xFA, 0x5C, 0x69, + 0x32, 0x02, 0x32, 0x69, 0x5D, 0xFE, 0xCB, 0x7A, 0x02, 0x02, 0x14, 0x5C, 0x45, 0xB2, 0x7F, 0x23, + 0x2D, 0x42, 0x51, 0x02, 0x3E, 0x88, 0x51, 0x51, 0x88, 0xFD, 0xC2, 0x01, 0xFE, 0x3C, 0x24, 0x29, + 0x43, 0xC2, 0xFE, 0xB8, 0x01, 0x2E, 0x33, 0x35, 0x60, 0x47, 0xEF, 0x00, 0x00, 0x02, 0xFF, 0xEC, + 0x00, 0x00, 0x02, 0x25, 0x02, 0xC5, 0x00, 0x09, 0x00, 0x1E, 0x00, 0x00, 0x03, 0x33, 0x16, 0x15, + 0x14, 0x07, 0x23, 0x36, 0x35, 0x34, 0x13, 0x11, 0x33, 0x15, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, + 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x1D, 0x01, 0x0C, 0x69, 0x07, 0x1A, 0x5E, + 0x14, 0x44, 0x7A, 0x02, 0x02, 0x14, 0x5C, 0x45, 0xB2, 0x7F, 0x23, 0x2D, 0x42, 0x51, 0x02, 0xC5, + 0x1C, 0x1A, 0x2B, 0x36, 0x35, 0x22, 0x20, 0xFD, 0x5B, 0x01, 0xFE, 0x3C, 0x24, 0x29, 0x43, 0xC2, + 0xFE, 0xB8, 0x01, 0x2E, 0x33, 0x35, 0x60, 0x47, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x56, + 0xFF, 0x33, 0x02, 0x9A, 0x02, 0xC6, 0x00, 0x1F, 0x00, 0x00, 0x33, 0x11, 0x33, 0x01, 0x1E, 0x01, + 0x1F, 0x01, 0x33, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x0E, 0x02, 0x23, 0x35, 0x32, 0x36, 0x37, + 0x01, 0x2E, 0x01, 0x2F, 0x01, 0x23, 0x16, 0x15, 0x11, 0x56, 0x81, 0x01, 0x0D, 0x0C, 0x1D, 0x09, + 0x09, 0x02, 0x07, 0x80, 0x2E, 0x4E, 0x54, 0x31, 0x28, 0x4E, 0x06, 0xFE, 0xF8, 0x0C, 0x1D, 0x09, + 0x09, 0x02, 0x07, 0x02, 0xC6, 0xFE, 0x66, 0x13, 0x37, 0x12, 0x12, 0x44, 0x2A, 0x01, 0x9A, 0xFD, + 0x65, 0x47, 0x67, 0x34, 0x16, 0x75, 0x31, 0x2F, 0x01, 0x91, 0x13, 0x37, 0x12, 0x12, 0x44, 0x2A, + 0xFE, 0x67, 0x00, 0x00, 0x00, 0x01, 0x00, 0x44, 0xFF, 0x2F, 0x02, 0x25, 0x02, 0x0A, 0x00, 0x1F, + 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x15, 0x11, 0x14, 0x0E, + 0x03, 0x23, 0x27, 0x35, 0x16, 0x33, 0x32, 0x35, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x1D, 0x01, + 0x44, 0x7A, 0x01, 0x02, 0x15, 0x5A, 0x45, 0xB2, 0x20, 0x2D, 0x3E, 0x31, 0x19, 0x27, 0x09, 0x0D, + 0x67, 0x23, 0x2D, 0x43, 0x50, 0x01, 0xFE, 0x48, 0x16, 0x2A, 0x40, 0xC2, 0xFE, 0xA7, 0x31, 0x49, + 0x27, 0x18, 0x07, 0x03, 0x6B, 0x01, 0x5D, 0x01, 0x35, 0x33, 0x35, 0x61, 0x46, 0xEF, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x2C, 0xFF, 0xF4, 0x03, 0x0A, 0x03, 0x66, 0x00, 0x03, 0x00, 0x0D, 0x00, 0x17, + 0x00, 0x00, 0x01, 0x35, 0x21, 0x15, 0x01, 0x34, 0x36, 0x20, 0x16, 0x15, 0x14, 0x06, 0x20, 0x26, + 0x37, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x01, 0x18, 0x01, 0x06, 0xFE, 0x0E, + 0xCF, 0x01, 0x40, 0xCF, 0xCF, 0xFE, 0xC0, 0xCF, 0x85, 0x85, 0xCA, 0x85, 0x85, 0xCA, 0x85, 0x03, + 0x0F, 0x57, 0x57, 0xFE, 0x59, 0x9A, 0xD0, 0xD0, 0x9A, 0x9E, 0xD6, 0xD6, 0x9E, 0x6D, 0x91, 0x91, + 0x6D, 0x68, 0x8C, 0x8C, 0x00, 0x03, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x55, 0x02, 0xAF, 0x00, 0x03, + 0x00, 0x0C, 0x00, 0x16, 0x00, 0x00, 0x13, 0x35, 0x21, 0x15, 0x00, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x14, 0x06, 0x22, 0x03, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0xBA, 0x01, 0x06, + 0xFE, 0x65, 0xA2, 0x75, 0x76, 0xA3, 0xA2, 0xEC, 0x21, 0x57, 0x80, 0x58, 0x59, 0x7E, 0x58, 0x02, + 0x58, 0x57, 0x57, 0xFE, 0x33, 0xE8, 0x97, 0x97, 0xE8, 0x97, 0x01, 0x0B, 0x46, 0x59, 0x59, 0x46, + 0x45, 0x5A, 0x5A, 0x00, 0x00, 0x03, 0x00, 0x2C, 0xFF, 0xF4, 0x03, 0x0A, 0x03, 0x7D, 0x00, 0x09, + 0x00, 0x13, 0x00, 0x25, 0x00, 0x00, 0x13, 0x34, 0x36, 0x20, 0x16, 0x15, 0x14, 0x06, 0x20, 0x26, + 0x37, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x13, 0x22, 0x26, 0x3D, 0x01, 0x33, + 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x06, 0x2C, 0xCF, 0x01, 0x40, + 0xCF, 0xCF, 0xFE, 0xC0, 0xCF, 0x85, 0x85, 0xCA, 0x85, 0x85, 0xCA, 0x85, 0xEA, 0x3F, 0x56, 0x5A, + 0x22, 0x19, 0x17, 0x23, 0x5A, 0x56, 0x01, 0x68, 0x9A, 0xD0, 0xD0, 0x9A, 0x9E, 0xD6, 0xD6, 0x9E, + 0x6D, 0x91, 0x91, 0x6D, 0x68, 0x8C, 0x8C, 0x01, 0x21, 0x44, 0x3C, 0x0C, 0x0C, 0x1D, 0x1E, 0x1F, + 0x1D, 0x0B, 0x0C, 0x3C, 0x44, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x55, + 0x02, 0xC6, 0x00, 0x08, 0x00, 0x12, 0x00, 0x24, 0x00, 0x00, 0x36, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x14, 0x06, 0x22, 0x03, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x37, 0x22, 0x26, + 0x3D, 0x01, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x06, 0x25, + 0xA2, 0x75, 0x76, 0xA3, 0xA2, 0xEC, 0x21, 0x57, 0x80, 0x58, 0x59, 0x7E, 0x58, 0x97, 0x3F, 0x56, + 0x5A, 0x22, 0x19, 0x17, 0x23, 0x5A, 0x56, 0x8B, 0xE8, 0x97, 0x97, 0xE8, 0x97, 0x01, 0x0B, 0x46, + 0x59, 0x59, 0x46, 0x45, 0x5A, 0x5A, 0xF6, 0x44, 0x3C, 0x0C, 0x0C, 0x1D, 0x1E, 0x1F, 0x1D, 0x0B, + 0x0C, 0x3C, 0x44, 0x00, 0x00, 0x04, 0x00, 0x2C, 0xFF, 0xF4, 0x03, 0x0A, 0x03, 0x7D, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x11, 0x00, 0x1B, 0x00, 0x00, 0x01, 0x37, 0x33, 0x07, 0x21, 0x37, 0x33, 0x07, + 0x01, 0x34, 0x36, 0x20, 0x16, 0x15, 0x14, 0x06, 0x20, 0x26, 0x37, 0x14, 0x16, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x22, 0x06, 0x01, 0xB2, 0x4C, 0x7D, 0x68, 0xFE, 0xF0, 0x47, 0x6C, 0x4A, 0xFE, 0xC0, + 0xCF, 0x01, 0x40, 0xCF, 0xCF, 0xFE, 0xC0, 0xCF, 0x85, 0x85, 0xCA, 0x85, 0x85, 0xCA, 0x85, 0x02, + 0xF5, 0x88, 0x88, 0x88, 0x88, 0xFE, 0x73, 0x9A, 0xD0, 0xD0, 0x9A, 0x9E, 0xD6, 0xD6, 0x9E, 0x6D, + 0x91, 0x91, 0x6D, 0x68, 0x8C, 0x8C, 0x00, 0x00, 0x00, 0x04, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x55, + 0x02, 0xC6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x10, 0x00, 0x1A, 0x00, 0x00, 0x01, 0x37, 0x33, 0x07, + 0x21, 0x37, 0x33, 0x07, 0x02, 0x34, 0x36, 0x33, 0x32, 0x16, 0x14, 0x06, 0x22, 0x03, 0x14, 0x16, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x01, 0x54, 0x4C, 0x7D, 0x68, 0xFE, 0xF0, 0x47, 0x6C, + 0x4A, 0xE9, 0xA2, 0x75, 0x76, 0xA3, 0xA2, 0xEC, 0x21, 0x57, 0x80, 0x58, 0x59, 0x7E, 0x58, 0x02, + 0x3E, 0x88, 0x88, 0x88, 0x88, 0xFE, 0x4D, 0xE8, 0x97, 0x97, 0xE8, 0x97, 0x01, 0x0B, 0x46, 0x59, + 0x59, 0x46, 0x45, 0x5A, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x2C, 0xFF, 0xF7, 0x03, 0xA1, + 0x02, 0xCE, 0x00, 0x15, 0x00, 0x22, 0x00, 0x00, 0x36, 0x10, 0x36, 0x33, 0x32, 0x16, 0x33, 0x21, + 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, 0x22, 0x06, 0x23, 0x22, 0x03, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x3F, 0x01, 0x11, 0x26, 0x23, 0x22, 0x06, 0x2C, 0xD7, 0x9E, 0x1E, 0x4F, + 0x11, 0x01, 0x72, 0xFE, 0xD7, 0xF0, 0xF0, 0x01, 0x39, 0xFE, 0x7E, 0x11, 0x4F, 0x1E, 0x9D, 0x53, + 0x88, 0x68, 0x12, 0x24, 0x09, 0x08, 0x1E, 0x29, 0x68, 0x88, 0xCB, 0x01, 0x32, 0xD1, 0x08, 0x6F, + 0xBA, 0x6F, 0xBF, 0x6F, 0x09, 0x01, 0x6D, 0x6C, 0x92, 0x04, 0x02, 0x02, 0x01, 0xEA, 0x08, 0x92, + 0x00, 0x03, 0x00, 0x25, 0xFF, 0xF4, 0x03, 0xB9, 0x02, 0x0A, 0x00, 0x1C, 0x00, 0x23, 0x00, 0x2D, + 0x00, 0x00, 0x36, 0x34, 0x36, 0x33, 0x32, 0x17, 0x33, 0x36, 0x33, 0x32, 0x16, 0x15, 0x07, 0x21, + 0x1E, 0x01, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x23, 0x22, 0x27, 0x23, 0x06, 0x23, 0x22, 0x01, + 0x33, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x04, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, + 0x25, 0xA0, 0x74, 0x88, 0x4B, 0x02, 0x42, 0x87, 0x6B, 0x77, 0x03, 0xFE, 0xA1, 0x07, 0x56, 0x3B, + 0x4D, 0x46, 0x31, 0x27, 0x6E, 0x38, 0x8F, 0x46, 0x02, 0x4C, 0x8A, 0x75, 0x01, 0x96, 0xDF, 0x01, + 0x38, 0x2A, 0x31, 0x42, 0xFE, 0x42, 0x58, 0x3F, 0x40, 0x58, 0x59, 0x7E, 0x88, 0xEC, 0x96, 0x69, + 0x69, 0x89, 0x69, 0x31, 0x40, 0x47, 0x38, 0x5B, 0x22, 0x27, 0x6C, 0x6C, 0x01, 0x4A, 0x2F, 0x3B, + 0x3A, 0x29, 0x8E, 0x57, 0x57, 0x48, 0x47, 0x58, 0x00, 0x03, 0x00, 0x56, 0x00, 0x00, 0x02, 0x70, + 0x03, 0x7D, 0x00, 0x03, 0x00, 0x16, 0x00, 0x20, 0x00, 0x00, 0x01, 0x37, 0x33, 0x07, 0x01, 0x11, + 0x33, 0x32, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x07, 0x15, 0x16, 0x17, 0x13, 0x23, 0x03, 0x23, + 0x19, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x27, 0x26, 0x2B, 0x01, 0x00, 0xFF, 0x4C, 0x83, 0x69, + 0xFE, 0xF1, 0xEA, 0x5A, 0x2C, 0x38, 0x40, 0x40, 0x37, 0x09, 0x0E, 0x92, 0x91, 0x8C, 0x7C, 0x74, + 0x34, 0x3C, 0x38, 0x1B, 0x33, 0x5E, 0x02, 0xF5, 0x88, 0x88, 0xFD, 0x0B, 0x02, 0xC6, 0x13, 0x17, + 0x64, 0x47, 0x41, 0x6B, 0x16, 0x02, 0x0B, 0x1A, 0xFE, 0xF8, 0x01, 0x09, 0xFE, 0xF7, 0x01, 0x79, + 0x3D, 0x34, 0x4A, 0x17, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x44, 0x00, 0x00, 0x01, 0x82, + 0x02, 0xC5, 0x00, 0x03, 0x00, 0x15, 0x00, 0x00, 0x13, 0x37, 0x33, 0x07, 0x03, 0x11, 0x33, 0x15, + 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x17, 0x15, 0x26, 0x23, 0x22, 0x06, 0x1D, 0x01, 0xB3, 0x4C, + 0x83, 0x69, 0xD5, 0x7A, 0x02, 0x02, 0x12, 0x58, 0x38, 0x08, 0x10, 0x0A, 0x15, 0x4A, 0x4C, 0x02, + 0x3D, 0x88, 0x88, 0xFD, 0xC3, 0x01, 0xFE, 0x5A, 0x23, 0x38, 0x4C, 0x02, 0x7D, 0x02, 0x6C, 0x4E, + 0xCE, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x56, 0xFF, 0x32, 0x02, 0x70, 0x02, 0xC6, 0x00, 0x09, + 0x00, 0x1C, 0x00, 0x26, 0x00, 0x00, 0x05, 0x33, 0x16, 0x15, 0x14, 0x07, 0x23, 0x36, 0x35, 0x34, + 0x27, 0x11, 0x33, 0x32, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x07, 0x15, 0x16, 0x17, 0x13, 0x23, + 0x03, 0x23, 0x19, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x27, 0x26, 0x2B, 0x01, 0x01, 0x13, 0x69, + 0x07, 0x1A, 0x5E, 0x14, 0xC9, 0xEA, 0x5A, 0x2C, 0x38, 0x40, 0x40, 0x37, 0x09, 0x0E, 0x92, 0x91, + 0x8C, 0x7C, 0x74, 0x34, 0x3C, 0x38, 0x1B, 0x33, 0x5E, 0x37, 0x1C, 0x1A, 0x2B, 0x36, 0x35, 0x22, + 0x20, 0x57, 0x02, 0xC6, 0x13, 0x17, 0x64, 0x47, 0x41, 0x6B, 0x16, 0x02, 0x0B, 0x1A, 0xFE, 0xF8, + 0x01, 0x09, 0xFE, 0xF7, 0x01, 0x79, 0x3D, 0x34, 0x4A, 0x17, 0x0C, 0x00, 0x00, 0x02, 0x00, 0x44, + 0xFF, 0x32, 0x01, 0x78, 0x02, 0x05, 0x00, 0x09, 0x00, 0x1B, 0x00, 0x00, 0x17, 0x33, 0x16, 0x15, + 0x14, 0x07, 0x23, 0x36, 0x35, 0x34, 0x27, 0x11, 0x33, 0x15, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, + 0x17, 0x15, 0x26, 0x23, 0x22, 0x06, 0x1D, 0x01, 0x4E, 0x69, 0x07, 0x1A, 0x5E, 0x14, 0x16, 0x7A, + 0x02, 0x02, 0x12, 0x58, 0x38, 0x08, 0x10, 0x0A, 0x15, 0x4A, 0x4C, 0x37, 0x1C, 0x1A, 0x2B, 0x36, + 0x35, 0x22, 0x20, 0x57, 0x01, 0xFE, 0x5A, 0x23, 0x38, 0x4C, 0x02, 0x7D, 0x02, 0x6C, 0x4E, 0xCE, + 0x00, 0x03, 0x00, 0x56, 0x00, 0x00, 0x02, 0x70, 0x03, 0x7D, 0x00, 0x07, 0x00, 0x1A, 0x00, 0x24, + 0x00, 0x00, 0x13, 0x27, 0x33, 0x17, 0x33, 0x37, 0x33, 0x07, 0x01, 0x11, 0x33, 0x32, 0x17, 0x1E, + 0x01, 0x15, 0x14, 0x06, 0x07, 0x15, 0x16, 0x17, 0x13, 0x23, 0x03, 0x23, 0x19, 0x01, 0x33, 0x32, + 0x36, 0x35, 0x34, 0x27, 0x26, 0x2B, 0x01, 0xF6, 0x5C, 0x69, 0x32, 0x02, 0x32, 0x69, 0x5D, 0xFE, + 0xE1, 0xEA, 0x5A, 0x2C, 0x38, 0x40, 0x40, 0x37, 0x09, 0x0E, 0x92, 0x91, 0x8C, 0x7C, 0x74, 0x34, + 0x3C, 0x38, 0x1B, 0x33, 0x5E, 0x02, 0xF5, 0x88, 0x51, 0x51, 0x88, 0xFD, 0x0B, 0x02, 0xC6, 0x13, + 0x17, 0x64, 0x47, 0x41, 0x6B, 0x16, 0x02, 0x0B, 0x1A, 0xFE, 0xF8, 0x01, 0x09, 0xFE, 0xF7, 0x01, + 0x79, 0x3D, 0x34, 0x4A, 0x17, 0x0C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x44, 0x00, 0x00, 0x01, 0x87, + 0x02, 0xC5, 0x00, 0x07, 0x00, 0x19, 0x00, 0x00, 0x13, 0x27, 0x33, 0x17, 0x33, 0x37, 0x33, 0x07, + 0x03, 0x11, 0x33, 0x15, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x17, 0x15, 0x26, 0x23, 0x22, 0x06, + 0x1D, 0x01, 0xAB, 0x5C, 0x69, 0x32, 0x02, 0x32, 0x69, 0x5D, 0xE6, 0x7A, 0x02, 0x02, 0x12, 0x58, + 0x38, 0x08, 0x10, 0x0A, 0x15, 0x4A, 0x4C, 0x02, 0x3D, 0x88, 0x51, 0x51, 0x88, 0xFD, 0xC3, 0x01, + 0xFE, 0x5A, 0x23, 0x38, 0x4C, 0x02, 0x7D, 0x02, 0x6C, 0x4E, 0xCE, 0x00, 0x00, 0x02, 0x00, 0x23, + 0xFF, 0xF4, 0x02, 0x02, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x28, 0x00, 0x00, 0x13, 0x37, 0x33, 0x07, + 0x01, 0x37, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x03, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x23, 0x22, + 0x26, 0xE0, 0x4C, 0x83, 0x69, 0xFE, 0xDD, 0x46, 0x23, 0x5F, 0x2E, 0x30, 0x38, 0x44, 0x61, 0x62, + 0x44, 0x89, 0x69, 0x7D, 0x53, 0x39, 0x1E, 0x55, 0x29, 0x31, 0x3B, 0x44, 0x61, 0x62, 0x44, 0x7E, + 0x6E, 0x44, 0x80, 0x02, 0xF5, 0x88, 0x88, 0xFD, 0x60, 0x61, 0x1F, 0x2C, 0x2D, 0x24, 0x25, 0x36, + 0x28, 0x30, 0x58, 0x3D, 0x5C, 0x72, 0x4C, 0x69, 0x1B, 0x23, 0x2C, 0x25, 0x24, 0x34, 0x26, 0x2F, + 0x58, 0x3F, 0x5A, 0x78, 0x32, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1B, 0xFF, 0xF4, 0x01, 0xA4, + 0x02, 0xC6, 0x00, 0x03, 0x00, 0x25, 0x00, 0x00, 0x13, 0x37, 0x33, 0x07, 0x03, 0x37, 0x16, 0x33, + 0x32, 0x36, 0x35, 0x34, 0x2E, 0x03, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, + 0x22, 0x15, 0x14, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x23, 0x22, 0xAA, 0x4C, 0x83, 0x69, 0xF5, 0x39, + 0x3D, 0x54, 0x22, 0x25, 0x34, 0x4A, 0x4B, 0x34, 0x6F, 0x54, 0x6A, 0x42, 0x2F, 0x16, 0x49, 0x22, + 0x47, 0x34, 0x4B, 0x4A, 0x34, 0x6A, 0x57, 0x7A, 0x02, 0x3E, 0x88, 0x88, 0xFE, 0x01, 0x54, 0x38, + 0x1B, 0x18, 0x16, 0x20, 0x1A, 0x23, 0x42, 0x2E, 0x48, 0x51, 0x3A, 0x59, 0x13, 0x19, 0x31, 0x16, + 0x20, 0x1A, 0x21, 0x42, 0x2E, 0x44, 0x59, 0x00, 0x00, 0x02, 0x00, 0x23, 0xFF, 0xF4, 0x02, 0x02, + 0x03, 0x7D, 0x00, 0x07, 0x00, 0x2C, 0x00, 0x00, 0x13, 0x37, 0x33, 0x17, 0x23, 0x27, 0x23, 0x07, + 0x03, 0x37, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x03, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x23, 0x22, + 0x26, 0x7C, 0x5C, 0x7F, 0x5D, 0x69, 0x32, 0x02, 0x32, 0xC2, 0x46, 0x23, 0x5F, 0x2E, 0x30, 0x38, + 0x44, 0x61, 0x62, 0x44, 0x89, 0x69, 0x7D, 0x53, 0x39, 0x1E, 0x55, 0x29, 0x31, 0x3B, 0x44, 0x61, + 0x62, 0x44, 0x7E, 0x6E, 0x44, 0x80, 0x02, 0xF5, 0x88, 0x88, 0x51, 0x51, 0xFD, 0x60, 0x61, 0x1F, + 0x2C, 0x2D, 0x24, 0x25, 0x36, 0x28, 0x30, 0x58, 0x3D, 0x5C, 0x72, 0x4C, 0x69, 0x1B, 0x23, 0x2C, + 0x25, 0x24, 0x34, 0x26, 0x2F, 0x58, 0x3F, 0x5A, 0x78, 0x32, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1B, + 0xFF, 0xF4, 0x01, 0xA4, 0x02, 0xC6, 0x00, 0x07, 0x00, 0x29, 0x00, 0x00, 0x13, 0x37, 0x33, 0x17, + 0x23, 0x27, 0x23, 0x07, 0x03, 0x37, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x03, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x15, 0x14, 0x1E, 0x03, 0x15, 0x14, 0x06, + 0x23, 0x22, 0x47, 0x5C, 0x7F, 0x5D, 0x69, 0x32, 0x02, 0x32, 0x95, 0x39, 0x3D, 0x54, 0x22, 0x25, + 0x34, 0x4A, 0x4B, 0x34, 0x6F, 0x54, 0x6A, 0x42, 0x2F, 0x16, 0x49, 0x22, 0x47, 0x34, 0x4B, 0x4A, + 0x34, 0x6A, 0x57, 0x7A, 0x02, 0x3E, 0x88, 0x88, 0x51, 0x51, 0xFE, 0x01, 0x54, 0x38, 0x1B, 0x18, + 0x16, 0x20, 0x1A, 0x23, 0x42, 0x2E, 0x48, 0x51, 0x3A, 0x59, 0x13, 0x19, 0x31, 0x16, 0x20, 0x1A, + 0x21, 0x42, 0x2E, 0x44, 0x59, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x23, 0xFF, 0x30, 0x02, 0x02, + 0x02, 0xD2, 0x00, 0x35, 0x00, 0x00, 0x17, 0x37, 0x26, 0x27, 0x37, 0x1E, 0x01, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x2E, 0x03, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x06, + 0x15, 0x14, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x0F, 0x01, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, + 0x27, 0x35, 0x16, 0x33, 0x32, 0x35, 0x34, 0x23, 0xE2, 0x15, 0x82, 0x52, 0x46, 0x23, 0x5F, 0x2E, + 0x30, 0x38, 0x44, 0x61, 0x62, 0x44, 0x89, 0x69, 0x7D, 0x53, 0x39, 0x1E, 0x55, 0x29, 0x31, 0x3B, + 0x44, 0x61, 0x62, 0x44, 0x6C, 0x5F, 0x07, 0x21, 0x28, 0x3E, 0x2E, 0x21, 0x1C, 0x10, 0x1B, 0x2C, + 0x30, 0x56, 0x4C, 0x0C, 0x53, 0x61, 0x1F, 0x2C, 0x2D, 0x24, 0x25, 0x36, 0x28, 0x30, 0x58, 0x3D, + 0x5C, 0x72, 0x4C, 0x69, 0x1B, 0x23, 0x2C, 0x25, 0x24, 0x34, 0x26, 0x2F, 0x58, 0x3F, 0x52, 0x75, + 0x09, 0x22, 0x04, 0x26, 0x22, 0x2E, 0x2A, 0x07, 0x46, 0x08, 0x1C, 0x1B, 0x00, 0x01, 0x00, 0x1C, + 0xFF, 0x30, 0x01, 0xA5, 0x02, 0x0A, 0x00, 0x33, 0x00, 0x00, 0x17, 0x37, 0x26, 0x27, 0x37, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x03, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x2E, 0x01, + 0x23, 0x22, 0x15, 0x14, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x0F, 0x01, 0x1E, 0x01, 0x15, 0x14, 0x06, + 0x23, 0x22, 0x27, 0x35, 0x16, 0x33, 0x32, 0x35, 0x34, 0x23, 0xA9, 0x15, 0x63, 0x3F, 0x39, 0x3D, + 0x54, 0x22, 0x25, 0x34, 0x4A, 0x4B, 0x34, 0x6F, 0x54, 0x6A, 0x42, 0x2F, 0x16, 0x49, 0x22, 0x47, + 0x34, 0x4A, 0x4B, 0x34, 0x5B, 0x4C, 0x07, 0x21, 0x28, 0x3E, 0x2E, 0x21, 0x1C, 0x10, 0x1B, 0x2C, + 0x30, 0x56, 0x4C, 0x0C, 0x3D, 0x54, 0x38, 0x1B, 0x18, 0x16, 0x20, 0x1A, 0x23, 0x42, 0x2E, 0x48, + 0x51, 0x3A, 0x59, 0x13, 0x19, 0x31, 0x16, 0x20, 0x1A, 0x21, 0x42, 0x2E, 0x3F, 0x56, 0x07, 0x21, + 0x04, 0x26, 0x22, 0x2E, 0x2A, 0x07, 0x46, 0x08, 0x1C, 0x1B, 0x00, 0x00, 0x00, 0x02, 0x00, 0x23, + 0xFF, 0xF4, 0x02, 0x02, 0x03, 0x7D, 0x00, 0x07, 0x00, 0x2C, 0x00, 0x00, 0x13, 0x27, 0x33, 0x17, + 0x33, 0x37, 0x33, 0x07, 0x01, 0x37, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x03, 0x35, + 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x1E, 0x03, 0x15, + 0x14, 0x06, 0x23, 0x22, 0x26, 0xD8, 0x5C, 0x69, 0x32, 0x02, 0x32, 0x69, 0x5D, 0xFE, 0xCC, 0x46, + 0x23, 0x5F, 0x2E, 0x30, 0x38, 0x44, 0x61, 0x62, 0x44, 0x89, 0x69, 0x7D, 0x53, 0x39, 0x1E, 0x55, + 0x29, 0x31, 0x3B, 0x44, 0x61, 0x62, 0x44, 0x7E, 0x6E, 0x44, 0x80, 0x02, 0xF5, 0x88, 0x51, 0x51, + 0x88, 0xFD, 0x60, 0x61, 0x1F, 0x2C, 0x2D, 0x24, 0x25, 0x36, 0x28, 0x30, 0x58, 0x3D, 0x5C, 0x72, + 0x4C, 0x69, 0x1B, 0x23, 0x2C, 0x25, 0x24, 0x34, 0x26, 0x2F, 0x58, 0x3F, 0x5A, 0x78, 0x32, 0x00, + 0x00, 0x02, 0x00, 0x1B, 0xFF, 0xF4, 0x01, 0xA4, 0x02, 0xC6, 0x00, 0x07, 0x00, 0x29, 0x00, 0x00, + 0x13, 0x27, 0x33, 0x17, 0x33, 0x37, 0x33, 0x07, 0x01, 0x37, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, + 0x2E, 0x03, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x15, 0x14, 0x1E, + 0x03, 0x15, 0x14, 0x06, 0x23, 0x22, 0xA3, 0x5C, 0x69, 0x32, 0x02, 0x32, 0x69, 0x5D, 0xFE, 0xF9, + 0x39, 0x3D, 0x54, 0x22, 0x25, 0x34, 0x4A, 0x4B, 0x34, 0x6F, 0x54, 0x6A, 0x42, 0x2F, 0x16, 0x49, + 0x22, 0x47, 0x34, 0x4B, 0x4A, 0x34, 0x6A, 0x57, 0x7A, 0x02, 0x3E, 0x88, 0x51, 0x51, 0x88, 0xFE, + 0x01, 0x54, 0x38, 0x1B, 0x18, 0x16, 0x20, 0x1A, 0x23, 0x42, 0x2E, 0x48, 0x51, 0x3A, 0x59, 0x13, + 0x19, 0x31, 0x16, 0x20, 0x1A, 0x21, 0x42, 0x2E, 0x44, 0x59, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0E, + 0xFF, 0x30, 0x02, 0x60, 0x02, 0xC6, 0x00, 0x1A, 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, + 0x23, 0x11, 0x23, 0x07, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, 0x27, 0x35, 0x16, 0x33, 0x32, + 0x35, 0x34, 0x23, 0x07, 0x37, 0xF7, 0xE9, 0x02, 0x52, 0xE9, 0x22, 0x0A, 0x21, 0x28, 0x3E, 0x2E, + 0x21, 0x1C, 0x10, 0x1B, 0x2C, 0x30, 0x15, 0x18, 0x02, 0x57, 0x6F, 0x6F, 0xFD, 0xA9, 0x2C, 0x04, + 0x26, 0x22, 0x2E, 0x2A, 0x07, 0x46, 0x08, 0x1C, 0x1B, 0x02, 0x56, 0x00, 0x00, 0x01, 0x00, 0x1B, + 0xFF, 0x30, 0x01, 0x58, 0x02, 0x89, 0x00, 0x28, 0x00, 0x00, 0x17, 0x37, 0x26, 0x3D, 0x01, 0x23, + 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x14, 0x16, 0x33, 0x32, 0x37, 0x15, 0x06, + 0x23, 0x22, 0x27, 0x07, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, 0x27, 0x35, 0x16, 0x33, 0x32, + 0x35, 0x34, 0x23, 0x9B, 0x1D, 0x5B, 0x42, 0x45, 0x7C, 0x74, 0x74, 0x3F, 0x26, 0x0D, 0x0A, 0x1E, + 0x09, 0x1B, 0x23, 0x0A, 0x21, 0x28, 0x3E, 0x2E, 0x21, 0x1C, 0x10, 0x1B, 0x2C, 0x30, 0x56, 0x6A, + 0x2E, 0x79, 0xD7, 0x65, 0x92, 0x92, 0x65, 0xC7, 0x37, 0x29, 0x02, 0x6F, 0x03, 0x06, 0x2D, 0x04, + 0x26, 0x22, 0x2E, 0x2A, 0x07, 0x46, 0x08, 0x1C, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0E, + 0x00, 0x00, 0x02, 0x60, 0x03, 0x7D, 0x00, 0x07, 0x00, 0x0F, 0x00, 0x00, 0x13, 0x27, 0x33, 0x17, + 0x33, 0x37, 0x33, 0x07, 0x03, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0xF6, 0x5C, 0x69, 0x32, + 0x02, 0x32, 0x69, 0x5D, 0x7E, 0xE9, 0x02, 0x52, 0xE9, 0x02, 0xF5, 0x88, 0x51, 0x51, 0x88, 0xFD, + 0x0B, 0x02, 0x57, 0x6F, 0x6F, 0xFD, 0xA9, 0x00, 0x00, 0x02, 0x00, 0x1B, 0xFF, 0xFB, 0x01, 0x80, + 0x02, 0xC5, 0x00, 0x09, 0x00, 0x22, 0x00, 0x00, 0x01, 0x33, 0x16, 0x15, 0x14, 0x07, 0x23, 0x36, + 0x35, 0x34, 0x03, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x14, 0x16, + 0x33, 0x32, 0x37, 0x15, 0x06, 0x23, 0x22, 0x2E, 0x03, 0x01, 0x10, 0x69, 0x07, 0x1A, 0x5E, 0x14, + 0xBF, 0x42, 0x45, 0x7C, 0x74, 0x74, 0x3F, 0x26, 0x0D, 0x0A, 0x1E, 0x09, 0x1A, 0x30, 0x3E, 0x2D, + 0x1F, 0x02, 0xC5, 0x1B, 0x19, 0x29, 0x34, 0x34, 0x20, 0x1E, 0xFE, 0x15, 0xD7, 0x65, 0x92, 0x92, + 0x65, 0xC7, 0x37, 0x29, 0x02, 0x6F, 0x03, 0x07, 0x18, 0x27, 0x49, 0x00, 0x00, 0x01, 0x00, 0x13, + 0x00, 0x00, 0x02, 0x65, 0x02, 0xC6, 0x00, 0x0F, 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, 0x33, 0x35, + 0x23, 0x35, 0x21, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x11, 0xFC, 0x97, 0x97, 0xE9, 0x02, 0x52, + 0xE9, 0x9C, 0x9C, 0x01, 0x27, 0x60, 0xD0, 0x6F, 0x6F, 0xD0, 0x60, 0xFE, 0xD9, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x16, 0xFF, 0xFB, 0x01, 0x5B, 0x02, 0x89, 0x00, 0x21, 0x00, 0x00, 0x37, 0x35, + 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x14, 0x1E, 0x02, 0x33, 0x37, 0x15, 0x06, 0x23, 0x22, 0x2E, 0x03, 0x3D, 0x01, 0x16, 0x4A, 0x42, + 0x45, 0x7B, 0x74, 0x74, 0x6D, 0x6D, 0x15, 0x22, 0x1F, 0x10, 0x17, 0x10, 0x17, 0x1A, 0x30, 0x3E, + 0x2D, 0x1F, 0xEF, 0x54, 0x4F, 0x65, 0x92, 0x92, 0x65, 0x4F, 0x54, 0x2A, 0x1B, 0x27, 0x11, 0x07, + 0x02, 0x6F, 0x03, 0x07, 0x18, 0x27, 0x49, 0x31, 0x34, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x4E, + 0xFF, 0xF4, 0x02, 0x8A, 0x03, 0x7F, 0x00, 0x10, 0x00, 0x22, 0x00, 0x00, 0x13, 0x11, 0x33, 0x11, + 0x14, 0x16, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x23, 0x22, 0x26, 0x13, 0x34, 0x33, + 0x32, 0x1E, 0x01, 0x33, 0x32, 0x35, 0x33, 0x14, 0x23, 0x22, 0x2E, 0x01, 0x23, 0x22, 0x15, 0x4E, + 0x81, 0x55, 0x90, 0x55, 0x81, 0x9D, 0x80, 0x81, 0x9E, 0x68, 0x70, 0x1D, 0x2D, 0x24, 0x10, 0x27, + 0x56, 0x70, 0x1D, 0x2D, 0x24, 0x10, 0x26, 0x00, 0xFF, 0x01, 0xC7, 0xFE, 0x3A, 0x47, 0x4F, 0x4F, + 0x47, 0x01, 0xC6, 0xFE, 0x39, 0x77, 0x94, 0x94, 0x02, 0x6E, 0x89, 0x21, 0x20, 0x3E, 0x89, 0x21, + 0x20, 0x3E, 0x00, 0x00, 0x00, 0x02, 0x00, 0x3F, 0xFF, 0xF4, 0x02, 0x1A, 0x02, 0xC8, 0x00, 0x14, + 0x00, 0x28, 0x00, 0x00, 0x37, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, + 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x13, 0x34, 0x33, 0x32, 0x1E, 0x02, 0x33, + 0x32, 0x35, 0x33, 0x14, 0x23, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x15, 0x3F, 0x7F, 0x23, 0x2C, 0x42, + 0x4D, 0x7E, 0x7A, 0x03, 0x02, 0x14, 0x60, 0x3D, 0xB1, 0x38, 0x70, 0x17, 0x27, 0x16, 0x1D, 0x0D, + 0x27, 0x56, 0x70, 0x17, 0x27, 0x16, 0x1D, 0x0D, 0x26, 0xB6, 0x01, 0x48, 0xFE, 0xD2, 0x33, 0x35, + 0x64, 0x48, 0xEA, 0xFE, 0x02, 0x3C, 0x23, 0x2B, 0x40, 0x02, 0x4B, 0x89, 0x14, 0x19, 0x14, 0x3E, + 0x89, 0x14, 0x19, 0x14, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x4E, 0xFF, 0xF4, 0x02, 0x8A, + 0x03, 0x66, 0x00, 0x10, 0x00, 0x14, 0x00, 0x00, 0x13, 0x11, 0x33, 0x11, 0x14, 0x16, 0x32, 0x36, + 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x23, 0x22, 0x26, 0x13, 0x35, 0x21, 0x15, 0x4E, 0x81, 0x55, + 0x90, 0x55, 0x81, 0x9D, 0x80, 0x81, 0x9E, 0x9B, 0x01, 0x06, 0x00, 0xFF, 0x01, 0xC7, 0xFE, 0x3A, + 0x47, 0x4F, 0x4F, 0x47, 0x01, 0xC6, 0xFE, 0x39, 0x77, 0x94, 0x94, 0x02, 0x87, 0x57, 0x57, 0x00, + 0x00, 0x02, 0x00, 0x3F, 0xFF, 0xF4, 0x02, 0x1A, 0x02, 0xAF, 0x00, 0x14, 0x00, 0x18, 0x00, 0x00, + 0x37, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x11, 0x23, 0x35, 0x37, + 0x23, 0x0E, 0x01, 0x23, 0x22, 0x13, 0x35, 0x21, 0x15, 0x3F, 0x7F, 0x23, 0x2C, 0x42, 0x4D, 0x7E, + 0x7A, 0x03, 0x02, 0x14, 0x60, 0x3D, 0xB1, 0x6B, 0x01, 0x06, 0xB6, 0x01, 0x48, 0xFE, 0xD2, 0x33, + 0x35, 0x64, 0x48, 0xEA, 0xFE, 0x02, 0x3C, 0x23, 0x2B, 0x40, 0x02, 0x64, 0x57, 0x57, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x4E, 0xFF, 0xF4, 0x02, 0x8A, 0x03, 0x7D, 0x00, 0x10, 0x00, 0x22, 0x00, 0x00, + 0x13, 0x11, 0x33, 0x11, 0x14, 0x16, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x23, 0x22, + 0x26, 0x01, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, + 0x15, 0x14, 0x06, 0x4E, 0x81, 0x55, 0x90, 0x55, 0x81, 0x9D, 0x80, 0x81, 0x9E, 0x01, 0x1E, 0x3F, + 0x56, 0x5A, 0x22, 0x19, 0x17, 0x23, 0x5A, 0x56, 0x00, 0xFF, 0x01, 0xC7, 0xFE, 0x3A, 0x47, 0x4F, + 0x4F, 0x47, 0x01, 0xC6, 0xFE, 0x39, 0x77, 0x94, 0x94, 0x02, 0x69, 0x44, 0x3C, 0x0C, 0x0C, 0x1D, + 0x1E, 0x1F, 0x1D, 0x0B, 0x0C, 0x3C, 0x44, 0x00, 0x00, 0x02, 0x00, 0x3F, 0xFF, 0xF4, 0x02, 0x1A, + 0x02, 0xC6, 0x00, 0x14, 0x00, 0x26, 0x00, 0x00, 0x37, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x3D, 0x01, 0x33, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x13, 0x22, 0x26, + 0x3D, 0x01, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x06, 0x3F, + 0x7F, 0x23, 0x2C, 0x42, 0x4D, 0x7E, 0x7A, 0x03, 0x02, 0x14, 0x60, 0x3D, 0xB1, 0xEE, 0x3F, 0x56, + 0x5A, 0x22, 0x19, 0x17, 0x23, 0x5A, 0x56, 0xB6, 0x01, 0x48, 0xFE, 0xD2, 0x33, 0x35, 0x64, 0x48, + 0xEA, 0xFE, 0x02, 0x3C, 0x23, 0x2B, 0x40, 0x02, 0x46, 0x44, 0x3C, 0x0C, 0x0C, 0x1D, 0x1E, 0x1F, + 0x1D, 0x0B, 0x0C, 0x3C, 0x44, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x4E, 0xFF, 0xF4, 0x02, 0x8A, + 0x03, 0x86, 0x00, 0x0B, 0x00, 0x16, 0x00, 0x27, 0x00, 0x00, 0x01, 0x22, 0x26, 0x35, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x15, 0x14, + 0x16, 0x01, 0x11, 0x33, 0x11, 0x14, 0x16, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x23, + 0x22, 0x26, 0x01, 0x6C, 0x27, 0x38, 0x38, 0x27, 0x26, 0x38, 0x38, 0x26, 0x0F, 0x13, 0x13, 0x1E, + 0x13, 0x12, 0xFE, 0xF2, 0x81, 0x55, 0x90, 0x55, 0x81, 0x9D, 0x80, 0x81, 0x9E, 0x02, 0xE9, 0x2A, + 0x24, 0x25, 0x2A, 0x2A, 0x25, 0x24, 0x2A, 0x2C, 0x13, 0x0F, 0x10, 0x13, 0x13, 0x10, 0x0F, 0x13, + 0xFD, 0xEA, 0x01, 0xC7, 0xFE, 0x3A, 0x47, 0x4F, 0x4F, 0x47, 0x01, 0xC6, 0xFE, 0x39, 0x77, 0x94, + 0x94, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x3F, 0xFF, 0xF4, 0x02, 0x1A, 0x02, 0xCF, 0x00, 0x0B, + 0x00, 0x16, 0x00, 0x2B, 0x00, 0x00, 0x01, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x15, 0x14, 0x16, 0x03, 0x11, 0x33, + 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, + 0x23, 0x22, 0x01, 0x2D, 0x27, 0x38, 0x38, 0x27, 0x26, 0x38, 0x38, 0x26, 0x0F, 0x13, 0x13, 0x1E, + 0x13, 0x12, 0xDE, 0x7F, 0x23, 0x2C, 0x42, 0x4D, 0x7E, 0x7A, 0x03, 0x02, 0x14, 0x60, 0x3D, 0xB1, + 0x02, 0x32, 0x2A, 0x24, 0x25, 0x2A, 0x2A, 0x25, 0x24, 0x2A, 0x2C, 0x13, 0x0F, 0x10, 0x13, 0x13, + 0x10, 0x0F, 0x13, 0xFE, 0x58, 0x01, 0x48, 0xFE, 0xD2, 0x33, 0x35, 0x64, 0x48, 0xEA, 0xFE, 0x02, + 0x3C, 0x23, 0x2B, 0x40, 0x00, 0x03, 0x00, 0x4E, 0xFF, 0xF4, 0x02, 0x8A, 0x03, 0x7D, 0x00, 0x10, + 0x00, 0x14, 0x00, 0x18, 0x00, 0x00, 0x13, 0x11, 0x33, 0x11, 0x14, 0x16, 0x32, 0x36, 0x35, 0x11, + 0x33, 0x11, 0x14, 0x06, 0x23, 0x22, 0x26, 0x01, 0x37, 0x33, 0x07, 0x21, 0x37, 0x33, 0x07, 0x4E, + 0x81, 0x55, 0x90, 0x55, 0x81, 0x9D, 0x80, 0x81, 0x9E, 0x01, 0x35, 0x4C, 0x7D, 0x68, 0xFE, 0xF0, + 0x47, 0x6C, 0x4A, 0x00, 0xFF, 0x01, 0xC7, 0xFE, 0x3A, 0x47, 0x4F, 0x4F, 0x47, 0x01, 0xC6, 0xFE, + 0x39, 0x77, 0x94, 0x94, 0x02, 0x6D, 0x88, 0x88, 0x88, 0x88, 0x00, 0x00, 0x00, 0x03, 0x00, 0x3F, + 0xFF, 0xF4, 0x02, 0x1A, 0x02, 0xC6, 0x00, 0x14, 0x00, 0x18, 0x00, 0x1C, 0x00, 0x00, 0x37, 0x11, + 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, + 0x01, 0x23, 0x22, 0x01, 0x37, 0x33, 0x07, 0x21, 0x37, 0x33, 0x07, 0x3F, 0x7F, 0x23, 0x2C, 0x42, + 0x4D, 0x7E, 0x7A, 0x03, 0x02, 0x14, 0x60, 0x3D, 0xB1, 0x01, 0x05, 0x4C, 0x7D, 0x68, 0xFE, 0xF0, + 0x47, 0x6C, 0x4A, 0xB6, 0x01, 0x48, 0xFE, 0xD2, 0x33, 0x35, 0x64, 0x48, 0xEA, 0xFE, 0x02, 0x3C, + 0x23, 0x2B, 0x40, 0x02, 0x4A, 0x88, 0x88, 0x88, 0x88, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x4F, + 0xFF, 0x30, 0x02, 0x8A, 0x02, 0xC6, 0x00, 0x25, 0x00, 0x00, 0x13, 0x11, 0x33, 0x11, 0x14, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x15, 0x14, + 0x16, 0x1F, 0x01, 0x07, 0x22, 0x2E, 0x03, 0x35, 0x34, 0x37, 0x06, 0x23, 0x22, 0x26, 0x4F, 0x80, + 0x55, 0x49, 0x48, 0x55, 0x80, 0x2C, 0x31, 0x27, 0x41, 0x0F, 0x0E, 0x18, 0x0C, 0x0D, 0x1F, 0x05, + 0x11, 0x2A, 0x20, 0x1B, 0x39, 0x0B, 0x08, 0x71, 0xA5, 0x00, 0xFF, 0x01, 0xC7, 0xFE, 0x3A, 0x47, + 0x4F, 0x4F, 0x47, 0x01, 0xC6, 0xFE, 0x39, 0x3D, 0x61, 0x2F, 0x1C, 0x2F, 0x12, 0x12, 0x11, 0x0E, + 0x12, 0x02, 0x02, 0x5E, 0x03, 0x0D, 0x13, 0x25, 0x18, 0x3B, 0x2A, 0x01, 0x8D, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x3F, 0xFF, 0x30, 0x02, 0x1A, 0x01, 0xFE, 0x00, 0x23, 0x00, 0x00, 0x37, 0x11, + 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x11, 0x06, 0x15, 0x14, 0x16, 0x1F, + 0x01, 0x07, 0x22, 0x2E, 0x03, 0x35, 0x34, 0x37, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, + 0x3F, 0x7F, 0x23, 0x2C, 0x42, 0x4D, 0x7E, 0x38, 0x19, 0x0C, 0x0C, 0x1F, 0x05, 0x10, 0x2A, 0x21, + 0x1A, 0x43, 0x1D, 0x03, 0x02, 0x14, 0x60, 0x3D, 0xB1, 0xB6, 0x01, 0x48, 0xFE, 0xD2, 0x33, 0x35, + 0x64, 0x48, 0xEA, 0xFE, 0x02, 0x2F, 0x1F, 0x0E, 0x12, 0x02, 0x02, 0x5E, 0x03, 0x0D, 0x13, 0x25, + 0x18, 0x3B, 0x35, 0x3C, 0x23, 0x2B, 0x40, 0x00, 0x00, 0x02, 0x00, 0x17, 0x00, 0x00, 0x03, 0xA9, + 0x03, 0x7D, 0x00, 0x07, 0x00, 0x20, 0x00, 0x00, 0x01, 0x37, 0x33, 0x17, 0x23, 0x27, 0x23, 0x07, + 0x0B, 0x01, 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, + 0x33, 0x03, 0x23, 0x03, 0x27, 0x23, 0x06, 0x07, 0x03, 0x01, 0x44, 0x5C, 0x7F, 0x5D, 0x69, 0x32, + 0x02, 0x32, 0xE5, 0xB1, 0x87, 0x6E, 0x0C, 0x02, 0x04, 0x0B, 0x7F, 0x6C, 0x7E, 0x0F, 0x02, 0x02, + 0x09, 0x76, 0x85, 0xB8, 0x91, 0x6F, 0x12, 0x03, 0x07, 0x0C, 0x6E, 0x02, 0xF5, 0x88, 0x88, 0x51, + 0x51, 0xFD, 0x0B, 0x02, 0xC6, 0xFE, 0x15, 0x4B, 0x22, 0x29, 0x01, 0xEB, 0xFE, 0x15, 0x4B, 0x23, + 0x28, 0x01, 0xEB, 0xFD, 0x3A, 0x01, 0xA4, 0x5D, 0x2F, 0x2E, 0xFE, 0x5C, 0x00, 0x02, 0x00, 0x13, + 0x00, 0x00, 0x03, 0x2C, 0x02, 0xC6, 0x00, 0x07, 0x00, 0x20, 0x00, 0x00, 0x01, 0x37, 0x33, 0x17, + 0x23, 0x27, 0x23, 0x07, 0x0B, 0x01, 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, 0x13, 0x17, + 0x33, 0x36, 0x37, 0x13, 0x33, 0x03, 0x23, 0x03, 0x27, 0x23, 0x06, 0x07, 0x03, 0x01, 0x04, 0x5C, + 0x7F, 0x5D, 0x69, 0x32, 0x02, 0x32, 0xBF, 0x9B, 0x86, 0x59, 0x0A, 0x02, 0x05, 0x07, 0x5E, 0x71, + 0x5E, 0x0B, 0x02, 0x03, 0x08, 0x59, 0x84, 0x9B, 0x8D, 0x56, 0x0D, 0x02, 0x05, 0x07, 0x57, 0x02, + 0x3E, 0x88, 0x88, 0x51, 0x51, 0xFD, 0xC2, 0x01, 0xFE, 0xFE, 0xB1, 0x36, 0x1B, 0x1B, 0x01, 0x4E, + 0xFE, 0xB2, 0x36, 0x1B, 0x1B, 0x01, 0x4F, 0xFE, 0x02, 0x01, 0x23, 0x37, 0x1C, 0x1B, 0xFE, 0xDD, + 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x02, 0x5B, 0x03, 0x7D, 0x00, 0x0C, 0x00, 0x14, 0x00, 0x00, + 0x33, 0x11, 0x03, 0x33, 0x1F, 0x01, 0x33, 0x36, 0x3F, 0x01, 0x33, 0x03, 0x11, 0x03, 0x37, 0x33, + 0x17, 0x23, 0x27, 0x23, 0x07, 0xEF, 0xED, 0x92, 0x6F, 0x2B, 0x02, 0x15, 0x16, 0x6E, 0x92, 0xEC, + 0xDC, 0x5C, 0x7F, 0x5D, 0x69, 0x32, 0x02, 0x32, 0x01, 0x29, 0x01, 0x9D, 0xD1, 0x5F, 0x33, 0x2C, + 0xD1, 0xFE, 0x63, 0xFE, 0xD7, 0x02, 0xF5, 0x88, 0x88, 0x51, 0x51, 0x00, 0x00, 0x02, 0x00, 0x04, + 0xFF, 0x2E, 0x02, 0x12, 0x02, 0xC5, 0x00, 0x16, 0x00, 0x1E, 0x00, 0x00, 0x17, 0x16, 0x33, 0x32, + 0x3F, 0x01, 0x03, 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, 0x03, 0x0E, 0x01, 0x23, 0x22, + 0x26, 0x2F, 0x01, 0x13, 0x37, 0x33, 0x17, 0x23, 0x27, 0x23, 0x07, 0x37, 0x1C, 0x1C, 0x3D, 0x1C, + 0x13, 0xD7, 0x8F, 0x6B, 0x13, 0x02, 0x09, 0x08, 0x64, 0x8A, 0xE3, 0x19, 0x63, 0x3C, 0x1B, 0x35, + 0x0D, 0x0D, 0x69, 0x5C, 0x7F, 0x5D, 0x69, 0x32, 0x02, 0x32, 0x52, 0x15, 0x42, 0x2D, 0x01, 0xF6, + 0xFE, 0xDA, 0x45, 0x28, 0x1B, 0x01, 0x28, 0xFD, 0xB5, 0x43, 0x42, 0x10, 0x08, 0x09, 0x02, 0xEE, + 0x88, 0x88, 0x51, 0x51, 0x00, 0x03, 0x00, 0x02, 0x00, 0x00, 0x02, 0x5B, 0x03, 0x7D, 0x00, 0x0C, + 0x00, 0x10, 0x00, 0x14, 0x00, 0x00, 0x33, 0x11, 0x03, 0x33, 0x1F, 0x01, 0x33, 0x36, 0x3F, 0x01, + 0x33, 0x03, 0x11, 0x03, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0xEF, 0xED, 0x92, 0x6F, 0x2B, + 0x02, 0x15, 0x16, 0x6E, 0x92, 0xEC, 0x17, 0x61, 0xFE, 0xE7, 0x62, 0x01, 0x29, 0x01, 0x9D, 0xD1, + 0x5F, 0x33, 0x2C, 0xD1, 0xFE, 0x63, 0xFE, 0xD7, 0x03, 0x09, 0x74, 0x74, 0x74, 0x74, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x24, 0x00, 0x00, 0x02, 0x3A, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x1B, 0x00, 0x00, + 0x01, 0x37, 0x33, 0x07, 0x01, 0x35, 0x01, 0x3E, 0x01, 0x3F, 0x01, 0x35, 0x06, 0x23, 0x21, 0x35, + 0x21, 0x15, 0x01, 0x0E, 0x01, 0x0F, 0x01, 0x15, 0x36, 0x33, 0x21, 0x15, 0x01, 0x05, 0x4C, 0x83, + 0x69, 0xFE, 0xB9, 0x01, 0x3B, 0x0C, 0x1A, 0x07, 0x07, 0x14, 0x21, 0xFE, 0xD6, 0x02, 0x01, 0xFE, + 0xC5, 0x0C, 0x1A, 0x07, 0x07, 0x14, 0x21, 0x01, 0x3F, 0x02, 0xF5, 0x88, 0x88, 0xFD, 0x0B, 0x53, + 0x01, 0xC4, 0x12, 0x20, 0x07, 0x07, 0x02, 0x02, 0x6F, 0x52, 0xFE, 0x3B, 0x12, 0x20, 0x07, 0x07, + 0x02, 0x02, 0x6F, 0x00, 0x00, 0x02, 0x00, 0x23, 0x00, 0x00, 0x01, 0xE6, 0x02, 0xC6, 0x00, 0x03, + 0x00, 0x1B, 0x00, 0x00, 0x13, 0x37, 0x33, 0x07, 0x01, 0x35, 0x13, 0x3E, 0x01, 0x3F, 0x01, 0x35, + 0x06, 0x2B, 0x01, 0x35, 0x21, 0x15, 0x03, 0x0E, 0x01, 0x0F, 0x01, 0x15, 0x36, 0x3B, 0x01, 0x15, + 0xCA, 0x4C, 0x83, 0x69, 0xFE, 0xF3, 0xE6, 0x0A, 0x16, 0x05, 0x06, 0x0F, 0x21, 0xD7, 0x01, 0xB2, + 0xE5, 0x0A, 0x16, 0x06, 0x06, 0x0F, 0x21, 0xE8, 0x02, 0x3E, 0x88, 0x88, 0xFD, 0xC2, 0x44, 0x01, + 0x1F, 0x0D, 0x17, 0x05, 0x06, 0x02, 0x02, 0x6C, 0x45, 0xFE, 0xE1, 0x0D, 0x17, 0x06, 0x05, 0x02, + 0x03, 0x6C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x24, 0x00, 0x00, 0x02, 0x3A, 0x03, 0x7D, 0x00, 0x17, + 0x00, 0x1B, 0x00, 0x00, 0x33, 0x35, 0x01, 0x3E, 0x01, 0x3F, 0x01, 0x35, 0x06, 0x23, 0x21, 0x35, + 0x21, 0x15, 0x01, 0x0E, 0x01, 0x0F, 0x01, 0x15, 0x36, 0x33, 0x21, 0x15, 0x01, 0x35, 0x33, 0x15, + 0x24, 0x01, 0x3B, 0x0C, 0x1A, 0x07, 0x07, 0x14, 0x21, 0xFE, 0xD6, 0x02, 0x01, 0xFE, 0xC5, 0x0C, + 0x1A, 0x07, 0x07, 0x14, 0x21, 0x01, 0x3F, 0xFE, 0xCC, 0x6C, 0x53, 0x01, 0xC4, 0x12, 0x20, 0x07, + 0x07, 0x02, 0x02, 0x6F, 0x52, 0xFE, 0x3B, 0x12, 0x20, 0x07, 0x07, 0x02, 0x02, 0x6F, 0x03, 0x0E, + 0x6F, 0x6F, 0x00, 0x00, 0x00, 0x02, 0x00, 0x23, 0x00, 0x00, 0x01, 0xE6, 0x02, 0xC6, 0x00, 0x17, + 0x00, 0x1B, 0x00, 0x00, 0x33, 0x35, 0x13, 0x3E, 0x01, 0x3F, 0x01, 0x35, 0x06, 0x2B, 0x01, 0x35, + 0x21, 0x15, 0x03, 0x0E, 0x01, 0x0F, 0x01, 0x15, 0x36, 0x3B, 0x01, 0x15, 0x01, 0x35, 0x33, 0x15, + 0x23, 0xE6, 0x0A, 0x16, 0x05, 0x06, 0x0F, 0x21, 0xD7, 0x01, 0xB2, 0xE5, 0x0A, 0x16, 0x06, 0x06, + 0x0F, 0x21, 0xE8, 0xFE, 0xE6, 0x6C, 0x44, 0x01, 0x1F, 0x0D, 0x17, 0x05, 0x06, 0x02, 0x02, 0x6C, + 0x45, 0xFE, 0xE1, 0x0D, 0x17, 0x06, 0x05, 0x02, 0x03, 0x6C, 0x02, 0x57, 0x6F, 0x6F, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x24, 0x00, 0x00, 0x02, 0x3A, 0x03, 0x7D, 0x00, 0x07, 0x00, 0x1F, 0x00, 0x00, + 0x13, 0x27, 0x33, 0x17, 0x33, 0x37, 0x33, 0x07, 0x01, 0x35, 0x01, 0x3E, 0x01, 0x3F, 0x01, 0x35, + 0x06, 0x23, 0x21, 0x35, 0x21, 0x15, 0x01, 0x0E, 0x01, 0x0F, 0x01, 0x15, 0x36, 0x33, 0x21, 0x15, + 0xFC, 0x5C, 0x69, 0x32, 0x02, 0x32, 0x69, 0x5D, 0xFE, 0xA9, 0x01, 0x3B, 0x0C, 0x1A, 0x07, 0x07, + 0x14, 0x21, 0xFE, 0xD6, 0x02, 0x01, 0xFE, 0xC5, 0x0C, 0x1A, 0x07, 0x07, 0x14, 0x21, 0x01, 0x3F, + 0x02, 0xF5, 0x88, 0x51, 0x51, 0x88, 0xFD, 0x0B, 0x53, 0x01, 0xC4, 0x12, 0x20, 0x07, 0x07, 0x02, + 0x02, 0x6F, 0x52, 0xFE, 0x3B, 0x12, 0x20, 0x07, 0x07, 0x02, 0x02, 0x6F, 0x00, 0x02, 0x00, 0x23, + 0x00, 0x00, 0x01, 0xE6, 0x02, 0xC6, 0x00, 0x07, 0x00, 0x1F, 0x00, 0x00, 0x13, 0x27, 0x33, 0x17, + 0x33, 0x37, 0x33, 0x07, 0x01, 0x35, 0x13, 0x3E, 0x01, 0x3F, 0x01, 0x35, 0x06, 0x2B, 0x01, 0x35, + 0x21, 0x15, 0x03, 0x0E, 0x01, 0x0F, 0x01, 0x15, 0x36, 0x3B, 0x01, 0x15, 0xC2, 0x5C, 0x69, 0x32, + 0x02, 0x32, 0x69, 0x5D, 0xFE, 0xE2, 0xE6, 0x0A, 0x16, 0x05, 0x06, 0x0F, 0x21, 0xD7, 0x01, 0xB2, + 0xE5, 0x0A, 0x16, 0x06, 0x06, 0x0F, 0x21, 0xE8, 0x02, 0x3E, 0x88, 0x51, 0x51, 0x88, 0xFD, 0xC2, + 0x44, 0x01, 0x1F, 0x0D, 0x17, 0x05, 0x06, 0x02, 0x02, 0x6C, 0x45, 0xFE, 0xE1, 0x0D, 0x17, 0x06, + 0x05, 0x02, 0x03, 0x6C, 0x00, 0x01, 0x00, 0x22, 0x00, 0x00, 0x01, 0x5D, 0x02, 0xCA, 0x00, 0x12, + 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, 0x33, 0x35, 0x34, 0x3E, 0x03, 0x33, 0x17, 0x15, 0x26, 0x23, + 0x22, 0x15, 0x11, 0x61, 0x3F, 0x3F, 0x1F, 0x2C, 0x3D, 0x30, 0x19, 0x2B, 0x0B, 0x0F, 0x63, 0x01, + 0x92, 0x65, 0x16, 0x30, 0x47, 0x27, 0x18, 0x07, 0x03, 0x6C, 0x02, 0x55, 0xFD, 0xF8, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x1F, 0xFF, 0x8B, 0x02, 0x2A, 0x02, 0xD2, 0x00, 0x21, 0x00, 0x00, 0x17, 0x16, + 0x33, 0x32, 0x3F, 0x01, 0x23, 0x35, 0x33, 0x37, 0x3E, 0x04, 0x33, 0x17, 0x15, 0x26, 0x23, 0x22, + 0x06, 0x0F, 0x01, 0x33, 0x15, 0x23, 0x03, 0x0E, 0x03, 0x23, 0x27, 0x1F, 0x2D, 0x17, 0x61, 0x08, + 0x16, 0x4A, 0x52, 0x0A, 0x04, 0x25, 0x2F, 0x3E, 0x31, 0x1A, 0x55, 0x35, 0x19, 0x26, 0x3F, 0x05, + 0x09, 0x6D, 0x75, 0x17, 0x05, 0x32, 0x4A, 0x3E, 0x21, 0x4B, 0x02, 0x06, 0x5C, 0xFA, 0x65, 0x61, + 0x30, 0x48, 0x27, 0x18, 0x07, 0x08, 0x6C, 0x07, 0x27, 0x36, 0x55, 0x65, 0xFE, 0xFA, 0x3B, 0x51, + 0x24, 0x0D, 0x07, 0x00, 0x00, 0x02, 0x00, 0x23, 0xFF, 0x32, 0x02, 0x02, 0x02, 0xD2, 0x00, 0x09, + 0x00, 0x2E, 0x00, 0x00, 0x17, 0x33, 0x16, 0x15, 0x14, 0x07, 0x23, 0x36, 0x35, 0x34, 0x27, 0x37, + 0x1E, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x03, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, + 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0xDA, + 0x69, 0x07, 0x1A, 0x5E, 0x14, 0xC3, 0x46, 0x23, 0x5F, 0x2E, 0x30, 0x38, 0x44, 0x61, 0x62, 0x44, + 0x89, 0x69, 0x7D, 0x53, 0x39, 0x1E, 0x55, 0x29, 0x31, 0x3B, 0x44, 0x61, 0x62, 0x44, 0x7E, 0x6E, + 0x44, 0x80, 0x37, 0x1C, 0x1A, 0x2B, 0x36, 0x35, 0x22, 0x20, 0xAC, 0x61, 0x1F, 0x2C, 0x2D, 0x24, + 0x25, 0x36, 0x28, 0x30, 0x58, 0x3D, 0x5C, 0x72, 0x4C, 0x69, 0x1B, 0x23, 0x2C, 0x25, 0x24, 0x34, + 0x26, 0x2F, 0x58, 0x3F, 0x5A, 0x78, 0x32, 0x00, 0x00, 0x02, 0x00, 0x1B, 0xFF, 0x32, 0x01, 0xA4, + 0x02, 0x0A, 0x00, 0x09, 0x00, 0x2B, 0x00, 0x00, 0x17, 0x33, 0x16, 0x15, 0x14, 0x07, 0x23, 0x36, + 0x35, 0x34, 0x27, 0x37, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x03, 0x35, 0x34, 0x36, 0x33, + 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x15, 0x14, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x23, 0x22, + 0xA8, 0x69, 0x07, 0x1A, 0x5E, 0x14, 0x99, 0x39, 0x3D, 0x54, 0x22, 0x25, 0x34, 0x4A, 0x4B, 0x34, + 0x6F, 0x54, 0x6A, 0x42, 0x2F, 0x16, 0x49, 0x22, 0x47, 0x34, 0x4B, 0x4A, 0x34, 0x6A, 0x57, 0x7A, + 0x37, 0x1C, 0x1A, 0x2B, 0x36, 0x35, 0x22, 0x20, 0x96, 0x54, 0x38, 0x1B, 0x18, 0x16, 0x20, 0x1A, + 0x23, 0x42, 0x2E, 0x48, 0x51, 0x3A, 0x59, 0x13, 0x19, 0x31, 0x16, 0x20, 0x1A, 0x21, 0x42, 0x2E, + 0x44, 0x59, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0E, 0xFF, 0x32, 0x02, 0x60, 0x02, 0xC6, 0x00, 0x09, + 0x00, 0x11, 0x00, 0x00, 0x17, 0x33, 0x16, 0x15, 0x14, 0x07, 0x23, 0x36, 0x35, 0x34, 0x27, 0x11, + 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0xFC, 0x69, 0x07, 0x1A, 0x5E, 0x14, 0x11, 0xE9, 0x02, 0x52, + 0xE9, 0x37, 0x1C, 0x1A, 0x2B, 0x36, 0x35, 0x22, 0x20, 0x57, 0x02, 0x57, 0x6F, 0x6F, 0xFD, 0xA9, + 0x00, 0x02, 0x00, 0x1B, 0xFF, 0x32, 0x01, 0x58, 0x02, 0x89, 0x00, 0x09, 0x00, 0x22, 0x00, 0x00, + 0x17, 0x33, 0x16, 0x15, 0x14, 0x07, 0x23, 0x36, 0x35, 0x34, 0x03, 0x35, 0x23, 0x35, 0x33, 0x35, + 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x14, 0x16, 0x33, 0x32, 0x37, 0x15, 0x06, 0x23, 0x22, 0x2E, + 0x03, 0xA4, 0x69, 0x07, 0x1A, 0x5E, 0x14, 0x53, 0x42, 0x45, 0x7C, 0x74, 0x74, 0x3F, 0x26, 0x0D, + 0x0A, 0x1E, 0x09, 0x1A, 0x30, 0x3E, 0x2D, 0x1F, 0x37, 0x1C, 0x1A, 0x2B, 0x36, 0x35, 0x22, 0x20, + 0x01, 0x12, 0xD7, 0x65, 0x92, 0x92, 0x65, 0xC7, 0x37, 0x29, 0x02, 0x6F, 0x03, 0x07, 0x18, 0x27, + 0x49, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x5B, 0x02, 0xF5, 0x01, 0x93, 0x03, 0x7D, 0x00, 0x07, + 0x00, 0x00, 0x13, 0x37, 0x33, 0x17, 0x23, 0x27, 0x23, 0x07, 0x5B, 0x5C, 0x7F, 0x5D, 0x69, 0x32, + 0x02, 0x32, 0x02, 0xF5, 0x88, 0x88, 0x51, 0x51, 0x00, 0x01, 0x00, 0x5B, 0x02, 0xF5, 0x01, 0x93, + 0x03, 0x7D, 0x00, 0x07, 0x00, 0x00, 0x13, 0x27, 0x33, 0x17, 0x33, 0x37, 0x33, 0x07, 0xB7, 0x5C, + 0x69, 0x32, 0x02, 0x32, 0x69, 0x5D, 0x02, 0xF5, 0x88, 0x51, 0x51, 0x88, 0x00, 0x01, 0x00, 0x62, + 0x02, 0xF1, 0x01, 0x8B, 0x03, 0x7D, 0x00, 0x11, 0x00, 0x00, 0x13, 0x22, 0x26, 0x3D, 0x01, 0x33, + 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x06, 0xF7, 0x3F, 0x56, 0x5A, + 0x22, 0x19, 0x17, 0x23, 0x5A, 0x56, 0x02, 0xF1, 0x44, 0x3C, 0x0C, 0x0C, 0x1D, 0x1E, 0x1F, 0x1D, + 0x0B, 0x0C, 0x3C, 0x44, 0x00, 0x01, 0x00, 0xC1, 0x03, 0x0E, 0x01, 0x2D, 0x03, 0x7D, 0x00, 0x03, + 0x00, 0x00, 0x13, 0x35, 0x33, 0x15, 0xC1, 0x6C, 0x03, 0x0E, 0x6F, 0x6F, 0x00, 0x02, 0x00, 0x98, + 0x02, 0xE9, 0x01, 0x55, 0x03, 0x86, 0x00, 0x0B, 0x00, 0x16, 0x00, 0x00, 0x13, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, + 0x15, 0x14, 0x16, 0xF7, 0x27, 0x38, 0x38, 0x27, 0x26, 0x38, 0x38, 0x26, 0x0F, 0x13, 0x13, 0x1E, + 0x13, 0x12, 0x02, 0xE9, 0x2A, 0x24, 0x25, 0x2A, 0x2A, 0x25, 0x24, 0x2A, 0x2C, 0x13, 0x0F, 0x10, + 0x13, 0x13, 0x10, 0x0F, 0x13, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0xA0, 0xFF, 0x30, 0x01, 0x4E, + 0x00, 0x19, 0x00, 0x13, 0x00, 0x00, 0x17, 0x34, 0x36, 0x3F, 0x01, 0x17, 0x0E, 0x02, 0x15, 0x14, + 0x16, 0x1F, 0x01, 0x07, 0x22, 0x2E, 0x03, 0xA0, 0x33, 0x19, 0x1A, 0x48, 0x08, 0x17, 0x26, 0x19, + 0x0C, 0x0C, 0x1F, 0x05, 0x11, 0x2A, 0x20, 0x1B, 0x70, 0x24, 0x44, 0x10, 0x11, 0x0D, 0x06, 0x14, + 0x30, 0x10, 0x0E, 0x12, 0x02, 0x02, 0x5E, 0x03, 0x0D, 0x13, 0x25, 0x00, 0x00, 0x01, 0x00, 0x41, + 0x02, 0xF3, 0x01, 0xAC, 0x03, 0x7F, 0x00, 0x11, 0x00, 0x00, 0x13, 0x34, 0x33, 0x32, 0x1E, 0x01, + 0x33, 0x32, 0x35, 0x33, 0x14, 0x23, 0x22, 0x2E, 0x01, 0x23, 0x22, 0x15, 0x41, 0x70, 0x1D, 0x2D, + 0x24, 0x10, 0x27, 0x56, 0x70, 0x1D, 0x2D, 0x24, 0x10, 0x26, 0x02, 0xF6, 0x89, 0x21, 0x20, 0x3E, + 0x89, 0x21, 0x20, 0x3E, 0x00, 0x02, 0x00, 0x3B, 0x02, 0xF5, 0x01, 0xB3, 0x03, 0x7D, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x00, 0x13, 0x37, 0x33, 0x07, 0x21, 0x37, 0x33, 0x07, 0xEA, 0x4C, 0x7D, 0x68, + 0xFE, 0xF0, 0x47, 0x6C, 0x4A, 0x02, 0xF5, 0x88, 0x88, 0x88, 0x88, 0x00, 0x00, 0x02, 0x00, 0x56, + 0x00, 0x00, 0x02, 0x0F, 0x03, 0x7D, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, 0x33, 0x11, 0x21, 0x15, + 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x03, 0x27, 0x33, 0x17, 0x56, 0x01, 0xA9, 0xFE, + 0xD8, 0xEF, 0xEF, 0x01, 0x38, 0xFA, 0x68, 0x83, 0x4C, 0x02, 0xC6, 0x6F, 0xBA, 0x6F, 0xBF, 0x6F, + 0x02, 0xF5, 0x88, 0x88, 0x00, 0x03, 0x00, 0x56, 0x00, 0x00, 0x02, 0x0F, 0x03, 0x7D, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x13, 0x00, 0x00, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x03, 0x11, + 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x01, 0x5C, 0x61, 0xFE, 0xE7, 0x62, + 0xB0, 0x01, 0xA9, 0xFE, 0xD8, 0xEF, 0xEF, 0x01, 0x38, 0x03, 0x09, 0x74, 0x74, 0x74, 0x74, 0xFC, + 0xF7, 0x02, 0xC6, 0x6F, 0xBA, 0x6F, 0xBF, 0x6F, 0x00, 0x01, 0x00, 0x0E, 0xFF, 0xF4, 0x02, 0xCF, + 0x02, 0xC6, 0x00, 0x21, 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x15, 0x07, 0x33, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x27, 0x35, 0x16, 0x33, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x0F, 0x01, 0x11, 0xC8, 0xBA, 0x02, 0x1D, 0xE2, 0x02, 0x02, 0x4F, + 0x5E, 0x64, 0x75, 0x7B, 0x65, 0x18, 0x18, 0x10, 0x0F, 0x2B, 0x45, 0x3D, 0x39, 0x25, 0x47, 0x12, + 0x11, 0x02, 0x57, 0x6F, 0x6F, 0xA4, 0x1F, 0x26, 0x79, 0x60, 0x6A, 0x83, 0x03, 0x6B, 0x02, 0x39, + 0x3E, 0x34, 0x3D, 0x12, 0x08, 0x09, 0xFE, 0xDB, 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x01, 0xEE, + 0x03, 0x7D, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x13, 0x37, 0x33, 0x07, 0x03, 0x11, 0x21, 0x15, + 0x21, 0x11, 0xD8, 0x4C, 0x83, 0x69, 0xE8, 0x01, 0x98, 0xFE, 0xE9, 0x02, 0xF5, 0x88, 0x88, 0xFD, + 0x0B, 0x02, 0xC6, 0x6F, 0xFD, 0xA9, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2D, 0xFF, 0xF4, 0x02, 0xB4, + 0x02, 0xD2, 0x00, 0x26, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x1F, 0x01, 0x07, + 0x2E, 0x04, 0x23, 0x22, 0x06, 0x07, 0x21, 0x15, 0x21, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x3F, 0x01, + 0x17, 0x0E, 0x04, 0x23, 0x22, 0x26, 0x2D, 0xCA, 0xA3, 0x30, 0x5A, 0x3B, 0x2D, 0x0A, 0x0A, 0x3E, + 0x03, 0x0D, 0x28, 0x2A, 0x40, 0x20, 0x5F, 0x7E, 0x0D, 0x01, 0x54, 0xFE, 0xAC, 0x0D, 0x7C, 0x62, + 0x37, 0x69, 0x19, 0x19, 0x41, 0x04, 0x10, 0x35, 0x3C, 0x60, 0x33, 0xA1, 0xCE, 0x01, 0x66, 0x9C, + 0xD0, 0x14, 0x1C, 0x1D, 0x0A, 0x0A, 0x60, 0x03, 0x0A, 0x1B, 0x14, 0x10, 0x6F, 0x56, 0x69, 0x58, + 0x6E, 0x2B, 0x16, 0x15, 0x5B, 0x05, 0x0F, 0x26, 0x1E, 0x18, 0xD4, 0x00, 0x00, 0x01, 0x00, 0x23, + 0xFF, 0xF4, 0x02, 0x02, 0x02, 0xD2, 0x00, 0x24, 0x00, 0x00, 0x3F, 0x01, 0x1E, 0x01, 0x33, 0x32, + 0x36, 0x35, 0x34, 0x2E, 0x03, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, + 0x06, 0x15, 0x14, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x23, 0x46, 0x23, 0x5F, 0x2E, + 0x30, 0x38, 0x44, 0x61, 0x62, 0x44, 0x89, 0x69, 0x7D, 0x53, 0x39, 0x1E, 0x55, 0x29, 0x31, 0x3B, + 0x44, 0x61, 0x62, 0x44, 0x7E, 0x6E, 0x44, 0x80, 0x55, 0x61, 0x1F, 0x2C, 0x2D, 0x24, 0x25, 0x36, + 0x28, 0x30, 0x58, 0x3D, 0x5C, 0x72, 0x4C, 0x69, 0x1B, 0x23, 0x2C, 0x25, 0x24, 0x34, 0x26, 0x2F, + 0x58, 0x3F, 0x5A, 0x78, 0x32, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x56, 0x00, 0x00, 0x00, 0xD7, + 0x02, 0xC6, 0x00, 0x03, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x56, 0x81, 0x02, 0xC6, 0xFD, 0x3A, + 0x00, 0x03, 0x00, 0x0B, 0x00, 0x00, 0x01, 0x24, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, + 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x03, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x56, 0x81, + 0x14, 0x61, 0xFE, 0xE7, 0x62, 0x02, 0xC6, 0xFD, 0x3A, 0x03, 0x09, 0x74, 0x74, 0x74, 0x74, 0x00, + 0x00, 0x01, 0x00, 0x18, 0xFF, 0xF4, 0x01, 0xD2, 0x02, 0xC6, 0x00, 0x13, 0x00, 0x00, 0x37, 0x35, + 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x23, 0x35, 0x21, 0x11, 0x14, 0x06, 0x23, + 0x22, 0x26, 0x18, 0x80, 0x2E, 0x2F, 0x29, 0x34, 0xB8, 0x01, 0x38, 0x83, 0x5A, 0x5B, 0x82, 0xD2, + 0x29, 0x21, 0x30, 0x40, 0x34, 0x36, 0x01, 0x83, 0x6F, 0xFE, 0x0C, 0x6D, 0x71, 0x72, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x13, 0xFF, 0xFA, 0x03, 0xB2, 0x02, 0xC6, 0x00, 0x16, 0x00, 0x1E, 0x00, 0x00, + 0x17, 0x35, 0x3E, 0x01, 0x3D, 0x01, 0x21, 0x11, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x21, + 0x11, 0x23, 0x15, 0x14, 0x0E, 0x02, 0x25, 0x33, 0x32, 0x36, 0x34, 0x26, 0x2B, 0x01, 0x13, 0x50, + 0x45, 0x01, 0xA5, 0x83, 0x65, 0x7D, 0x7E, 0x62, 0xFE, 0xFB, 0xA3, 0x17, 0x3C, 0x70, 0x01, 0xE6, + 0x6F, 0x35, 0x3E, 0x3F, 0x36, 0x6D, 0x06, 0x76, 0x07, 0xAF, 0xC1, 0xDF, 0xFE, 0xE9, 0x77, 0x61, + 0x60, 0x77, 0x02, 0x57, 0x70, 0x77, 0xA6, 0x87, 0x45, 0x71, 0x38, 0x60, 0x39, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x03, 0xE3, 0x02, 0xC6, 0x00, 0x12, 0x00, 0x1B, 0x00, 0x00, + 0x33, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x21, + 0x11, 0x21, 0x11, 0x25, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x56, 0x81, 0x01, 0x26, + 0x80, 0x87, 0x63, 0x7C, 0x7D, 0x62, 0xFE, 0xF9, 0xFE, 0xDA, 0x01, 0xA6, 0x70, 0x35, 0x3E, 0x3F, + 0x36, 0x6E, 0x02, 0xC6, 0xFE, 0xE6, 0x01, 0x1A, 0xFE, 0xE6, 0x76, 0x60, 0x5F, 0x77, 0x01, 0x3D, + 0xFE, 0xC3, 0x6F, 0x37, 0x30, 0x2F, 0x38, 0x00, 0x00, 0x01, 0x00, 0x0E, 0x00, 0x00, 0x02, 0xC2, + 0x02, 0xC6, 0x00, 0x16, 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x15, 0x07, 0x33, + 0x36, 0x33, 0x32, 0x16, 0x1D, 0x01, 0x23, 0x35, 0x34, 0x23, 0x22, 0x07, 0x11, 0xC8, 0xBA, 0x02, + 0x1C, 0xE1, 0x02, 0x02, 0x54, 0x5B, 0x66, 0x64, 0x83, 0x70, 0x4A, 0x3C, 0x02, 0x57, 0x6F, 0x6F, + 0xA5, 0x21, 0x29, 0x75, 0x66, 0xDF, 0xCC, 0x7C, 0x26, 0xFE, 0xDE, 0x00, 0x00, 0x02, 0x00, 0x56, + 0x00, 0x00, 0x02, 0x72, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x11, 0x00, 0x00, 0x01, 0x37, 0x33, 0x07, + 0x01, 0x11, 0x33, 0x11, 0x33, 0x13, 0x33, 0x03, 0x15, 0x13, 0x23, 0x03, 0x23, 0x11, 0x01, 0x15, + 0x4C, 0x83, 0x69, 0xFE, 0xDB, 0x81, 0x5C, 0xA7, 0x8C, 0xC9, 0xD5, 0x92, 0xAD, 0x5C, 0x02, 0xF5, + 0x88, 0x88, 0xFD, 0x0B, 0x02, 0xC6, 0xFE, 0xDF, 0x01, 0x21, 0xFE, 0xAE, 0x02, 0xFE, 0x8E, 0x01, + 0x36, 0xFE, 0xCA, 0x00, 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0x9A, 0x03, 0x7D, 0x00, 0x11, + 0x00, 0x15, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x07, 0x33, 0x36, 0x37, 0x01, 0x33, 0x11, 0x23, + 0x11, 0x37, 0x23, 0x06, 0x07, 0x01, 0x13, 0x27, 0x33, 0x17, 0x56, 0x81, 0x07, 0x02, 0x22, 0x1A, + 0x01, 0x0C, 0x80, 0x80, 0x07, 0x02, 0x21, 0x1A, 0xFE, 0xF2, 0x7A, 0x68, 0x83, 0x4C, 0x02, 0xC6, + 0xFE, 0x66, 0x6E, 0x45, 0x2A, 0x01, 0x99, 0xFD, 0x3A, 0x01, 0x99, 0x6E, 0x44, 0x2A, 0xFE, 0x67, + 0x02, 0xF5, 0x88, 0x88, 0x00, 0x02, 0xFF, 0xFD, 0xFF, 0xF4, 0x02, 0x62, 0x03, 0x7D, 0x00, 0x15, + 0x00, 0x25, 0x00, 0x00, 0x3F, 0x01, 0x16, 0x33, 0x32, 0x37, 0x01, 0x33, 0x13, 0x17, 0x33, 0x36, + 0x37, 0x13, 0x33, 0x03, 0x0E, 0x03, 0x23, 0x22, 0x12, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, + 0x16, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x43, 0x39, 0x2D, 0x23, 0x2F, 0x18, 0xFE, 0xEA, + 0x8E, 0x97, 0x28, 0x02, 0x0D, 0x10, 0x72, 0x87, 0xDB, 0x0D, 0x1C, 0x2C, 0x3C, 0x25, 0x48, 0xF1, + 0x88, 0x60, 0x61, 0x28, 0x36, 0x29, 0x60, 0x25, 0x61, 0x23, 0x3E, 0x02, 0x25, 0xFE, 0xC3, 0x5E, + 0x2F, 0x2E, 0x01, 0x3E, 0xFD, 0xCF, 0x21, 0x32, 0x32, 0x1C, 0x02, 0xF2, 0x4B, 0x3F, 0x0D, 0x0D, + 0x1E, 0x21, 0x21, 0x1F, 0x0C, 0x0D, 0x3F, 0x00, 0x00, 0x01, 0x00, 0x56, 0xFF, 0x74, 0x02, 0x8B, + 0x02, 0xC6, 0x00, 0x0B, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x23, 0x15, + 0x23, 0x35, 0x56, 0x81, 0x01, 0x33, 0x81, 0xE0, 0x74, 0x02, 0xC6, 0xFD, 0xA9, 0x02, 0x57, 0xFD, + 0x3A, 0x8C, 0x8C, 0x00, 0x00, 0x02, 0x00, 0x08, 0x00, 0x00, 0x02, 0x82, 0x02, 0xC6, 0x00, 0x07, + 0x00, 0x0E, 0x00, 0x00, 0x33, 0x13, 0x33, 0x13, 0x23, 0x27, 0x23, 0x07, 0x13, 0x33, 0x2F, 0x01, + 0x23, 0x06, 0x07, 0x08, 0xF9, 0x88, 0xF9, 0x84, 0x3D, 0xF9, 0x3C, 0x5C, 0xB9, 0x3F, 0x1C, 0x02, + 0x10, 0x0C, 0x02, 0xC6, 0xFD, 0x3A, 0xB6, 0xB6, 0x01, 0x1F, 0xBE, 0x6E, 0x46, 0x28, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0x43, 0x02, 0xC6, 0x00, 0x0C, 0x00, 0x14, 0x00, 0x00, + 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x27, 0x33, 0x32, + 0x36, 0x34, 0x26, 0x2B, 0x01, 0x56, 0x01, 0xB4, 0xFE, 0xCD, 0x8E, 0x63, 0x7B, 0x7A, 0x61, 0x91, + 0x7A, 0x35, 0x3A, 0x3C, 0x35, 0x78, 0x02, 0xC6, 0x6F, 0xA4, 0x77, 0x64, 0x60, 0x78, 0x6F, 0x38, + 0x62, 0x3B, 0x00, 0x00, 0x00, 0x03, 0x00, 0x56, 0x00, 0x00, 0x02, 0x4C, 0x02, 0xC6, 0x00, 0x0F, + 0x00, 0x18, 0x00, 0x21, 0x00, 0x00, 0x33, 0x11, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, + 0x1E, 0x01, 0x15, 0x14, 0x06, 0x23, 0x03, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x11, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x56, 0xFD, 0x63, 0x79, 0x2E, 0x28, 0x38, 0x3B, + 0x8C, 0x69, 0x80, 0x7D, 0x29, 0x2F, 0x2F, 0x2B, 0x7B, 0x8A, 0x30, 0x37, 0x37, 0x30, 0x8A, 0x02, + 0xC6, 0x61, 0x56, 0x32, 0x50, 0x16, 0x02, 0x10, 0x5E, 0x39, 0x65, 0x69, 0x01, 0xA4, 0x33, 0x28, + 0x27, 0x31, 0xFE, 0x18, 0x39, 0x2E, 0x2D, 0x39, 0x00, 0x01, 0x00, 0x56, 0x00, 0x00, 0x01, 0xEE, + 0x02, 0xC6, 0x00, 0x05, 0x00, 0x00, 0x33, 0x11, 0x21, 0x15, 0x21, 0x11, 0x56, 0x01, 0x98, 0xFE, + 0xE9, 0x02, 0xC6, 0x6F, 0xFD, 0xA9, 0x00, 0x00, 0x00, 0x02, 0x00, 0x07, 0xFF, 0x74, 0x02, 0xBE, + 0x02, 0xC6, 0x00, 0x05, 0x00, 0x13, 0x00, 0x00, 0x37, 0x21, 0x11, 0x23, 0x15, 0x10, 0x05, 0x33, + 0x36, 0x11, 0x35, 0x21, 0x11, 0x33, 0x15, 0x23, 0x35, 0x21, 0x15, 0x23, 0xD4, 0x01, 0x1A, 0xBE, + 0xFE, 0xD7, 0x48, 0x67, 0x01, 0xB9, 0x4F, 0x73, 0xFE, 0x33, 0x77, 0x6F, 0x01, 0xE8, 0x35, 0xFE, + 0xE2, 0x95, 0x9C, 0x01, 0x20, 0x9B, 0xFD, 0xA9, 0xFB, 0x8C, 0x8C, 0x00, 0x00, 0x01, 0x00, 0x56, + 0x00, 0x00, 0x02, 0x0F, 0x02, 0xC6, 0x00, 0x0B, 0x00, 0x00, 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, + 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x56, 0x01, 0xA9, 0xFE, 0xD8, 0xEF, 0xEF, 0x01, 0x38, 0x02, + 0xC6, 0x6F, 0xBA, 0x6F, 0xBF, 0x6F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0D, 0x00, 0x00, 0x03, 0x97, + 0x02, 0xC6, 0x00, 0x17, 0x00, 0x00, 0x33, 0x13, 0x35, 0x03, 0x33, 0x13, 0x33, 0x11, 0x33, 0x11, + 0x33, 0x13, 0x33, 0x03, 0x15, 0x13, 0x23, 0x03, 0x23, 0x11, 0x23, 0x11, 0x23, 0x03, 0x0D, 0xC8, + 0xB9, 0x8B, 0x98, 0x53, 0x80, 0x53, 0x98, 0x8B, 0xBA, 0xC9, 0x91, 0xA1, 0x53, 0x80, 0x53, 0xA1, + 0x01, 0x72, 0x02, 0x01, 0x52, 0xFE, 0xDF, 0x01, 0x21, 0xFE, 0xDF, 0x01, 0x21, 0xFE, 0xAE, 0x02, + 0xFE, 0x8E, 0x01, 0x36, 0xFE, 0xCA, 0x01, 0x36, 0xFE, 0xCA, 0x00, 0x00, 0x00, 0x01, 0x00, 0x16, + 0xFF, 0xF4, 0x01, 0xFE, 0x02, 0xD2, 0x00, 0x26, 0x00, 0x00, 0x3F, 0x01, 0x1E, 0x01, 0x33, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x07, + 0x27, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x15, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, + 0x26, 0x16, 0x46, 0x1D, 0x56, 0x2D, 0x3A, 0x44, 0x3D, 0x34, 0x57, 0x46, 0x30, 0x3E, 0x38, 0x35, + 0x51, 0x49, 0x34, 0x5E, 0x86, 0x5B, 0x7F, 0x62, 0x37, 0x40, 0x8D, 0x69, 0x44, 0x81, 0x59, 0x56, + 0x1F, 0x2A, 0x3A, 0x33, 0x2E, 0x35, 0x68, 0x38, 0x2A, 0x2B, 0x37, 0x3C, 0x5E, 0x4E, 0x68, 0x5A, + 0x69, 0x35, 0x02, 0x11, 0x56, 0x3E, 0x62, 0x75, 0x35, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x56, + 0x00, 0x00, 0x02, 0x9A, 0x02, 0xC6, 0x00, 0x11, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x07, 0x33, + 0x36, 0x37, 0x01, 0x33, 0x11, 0x23, 0x11, 0x37, 0x23, 0x06, 0x07, 0x01, 0x56, 0x81, 0x07, 0x02, + 0x22, 0x1A, 0x01, 0x0C, 0x80, 0x80, 0x07, 0x02, 0x21, 0x1A, 0xFE, 0xF2, 0x02, 0xC6, 0xFE, 0x66, + 0x6E, 0x45, 0x2A, 0x01, 0x99, 0xFD, 0x3A, 0x01, 0x99, 0x6E, 0x44, 0x2A, 0xFE, 0x67, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0x9A, 0x03, 0x7D, 0x00, 0x0F, 0x00, 0x21, 0x00, 0x00, + 0x00, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x16, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, + 0x01, 0x11, 0x33, 0x11, 0x07, 0x33, 0x36, 0x37, 0x01, 0x33, 0x11, 0x23, 0x11, 0x37, 0x23, 0x06, + 0x07, 0x01, 0x01, 0xC2, 0x88, 0x60, 0x61, 0x28, 0x36, 0x29, 0x60, 0xFE, 0x34, 0x81, 0x07, 0x02, + 0x22, 0x1A, 0x01, 0x0C, 0x80, 0x80, 0x07, 0x02, 0x21, 0x1A, 0xFE, 0xF2, 0x02, 0xE6, 0x4B, 0x3F, + 0x0D, 0x0D, 0x1E, 0x21, 0x21, 0x1F, 0x0C, 0x0D, 0x3F, 0xFC, 0xCF, 0x02, 0xC6, 0xFE, 0x66, 0x6E, + 0x45, 0x2A, 0x01, 0x99, 0xFD, 0x3A, 0x01, 0x99, 0x6E, 0x44, 0x2A, 0xFE, 0x67, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x56, 0x00, 0x00, 0x02, 0x72, 0x02, 0xC6, 0x00, 0x0D, 0x00, 0x00, 0x33, 0x11, + 0x33, 0x11, 0x33, 0x13, 0x33, 0x03, 0x15, 0x13, 0x23, 0x03, 0x23, 0x11, 0x56, 0x81, 0x5C, 0xA7, + 0x8C, 0xC9, 0xD5, 0x92, 0xAD, 0x5C, 0x02, 0xC6, 0xFE, 0xDF, 0x01, 0x21, 0xFE, 0xAE, 0x02, 0xFE, + 0x8E, 0x01, 0x36, 0xFE, 0xCA, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0E, 0xFF, 0xF8, 0x02, 0x5E, + 0x02, 0xC6, 0x00, 0x0D, 0x00, 0x00, 0x37, 0x3E, 0x01, 0x3D, 0x01, 0x21, 0x11, 0x23, 0x11, 0x23, + 0x15, 0x10, 0x06, 0x07, 0x0E, 0x50, 0x49, 0x01, 0xB7, 0x81, 0xBB, 0x82, 0x92, 0x6E, 0x0B, 0xBF, + 0xCC, 0xC2, 0xFD, 0x3A, 0x02, 0x57, 0x55, 0xFE, 0xFA, 0xFF, 0x05, 0x00, 0x00, 0x01, 0x00, 0x3B, + 0x00, 0x00, 0x03, 0x21, 0x02, 0xC6, 0x00, 0x1B, 0x00, 0x00, 0x33, 0x13, 0x33, 0x13, 0x17, 0x33, + 0x36, 0x37, 0x13, 0x33, 0x13, 0x23, 0x03, 0x26, 0x34, 0x37, 0x35, 0x23, 0x06, 0x07, 0x03, 0x23, + 0x03, 0x27, 0x23, 0x16, 0x07, 0x03, 0x3B, 0x3A, 0x89, 0x8C, 0x23, 0x02, 0x13, 0x10, 0x8C, 0x89, + 0x3A, 0x81, 0x1D, 0x02, 0x01, 0x02, 0x17, 0x10, 0x73, 0x70, 0x73, 0x27, 0x02, 0x03, 0x04, 0x1D, + 0x02, 0xC6, 0xFE, 0xA1, 0x68, 0x3E, 0x2A, 0x01, 0x5F, 0xFD, 0x3A, 0x01, 0x8D, 0x15, 0x37, 0x11, + 0x11, 0x45, 0x29, 0xFE, 0xED, 0x01, 0x13, 0x6F, 0x40, 0x2F, 0xFE, 0x73, 0x00, 0x01, 0x00, 0x56, + 0x00, 0x00, 0x02, 0x9C, 0x02, 0xC6, 0x00, 0x0B, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x21, 0x11, + 0x33, 0x11, 0x23, 0x11, 0x21, 0x11, 0x56, 0x81, 0x01, 0x45, 0x80, 0x80, 0xFE, 0xBB, 0x02, 0xC6, + 0xFE, 0xD3, 0x01, 0x2D, 0xFD, 0x3A, 0x01, 0x2A, 0xFE, 0xD6, 0x00, 0x00, 0x00, 0x02, 0x00, 0x2C, + 0xFF, 0xF4, 0x03, 0x0A, 0x02, 0xD2, 0x00, 0x09, 0x00, 0x13, 0x00, 0x00, 0x13, 0x34, 0x36, 0x20, + 0x16, 0x15, 0x14, 0x06, 0x20, 0x26, 0x37, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, + 0x2C, 0xD3, 0x01, 0x38, 0xD3, 0xD3, 0xFE, 0xC8, 0xD3, 0x85, 0x88, 0xC4, 0x88, 0x88, 0xC4, 0x88, + 0x01, 0x68, 0x99, 0xD1, 0xD1, 0x99, 0x9D, 0xD7, 0xD7, 0x9D, 0x6C, 0x92, 0x92, 0x6C, 0x67, 0x8D, + 0x8D, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x56, 0x00, 0x00, 0x02, 0x95, 0x02, 0xC6, 0x00, 0x07, + 0x00, 0x00, 0x33, 0x11, 0x21, 0x11, 0x23, 0x11, 0x21, 0x11, 0x56, 0x02, 0x3F, 0x81, 0xFE, 0xC3, + 0x02, 0xC6, 0xFD, 0x3A, 0x02, 0x57, 0xFD, 0xA9, 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0x4A, + 0x02, 0xC6, 0x00, 0x09, 0x00, 0x12, 0x00, 0x00, 0x33, 0x11, 0x21, 0x32, 0x16, 0x14, 0x06, 0x2B, + 0x01, 0x15, 0x11, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x56, 0x01, 0x12, 0x64, 0x7E, + 0x7E, 0x64, 0x91, 0x79, 0x38, 0x3F, 0x3F, 0x36, 0x7B, 0x02, 0xC6, 0x80, 0xCE, 0x83, 0xF5, 0x01, + 0x65, 0x42, 0x38, 0x37, 0x41, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2D, 0xFF, 0xF4, 0x02, 0xB3, + 0x02, 0xD2, 0x00, 0x16, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, + 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x37, 0x17, 0x06, 0x23, 0x22, 0x26, 0x2D, 0xCE, 0x9F, + 0xA2, 0x64, 0x3E, 0x27, 0x69, 0x32, 0x70, 0x7E, 0x80, 0x6F, 0x72, 0x5C, 0x44, 0x71, 0xA6, 0xA5, + 0xCA, 0x01, 0x66, 0x9C, 0xD0, 0x61, 0x60, 0x21, 0x2A, 0x8C, 0x68, 0x69, 0x95, 0x5A, 0x5D, 0x73, + 0xD2, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0E, 0x00, 0x00, 0x02, 0x60, 0x02, 0xC6, 0x00, 0x07, + 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0xF7, 0xE9, 0x02, 0x52, 0xE9, 0x02, + 0x57, 0x6F, 0x6F, 0xFD, 0xA9, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFD, 0xFF, 0xF4, 0x02, 0x62, + 0x02, 0xC6, 0x00, 0x15, 0x00, 0x00, 0x3F, 0x01, 0x16, 0x33, 0x32, 0x37, 0x01, 0x33, 0x13, 0x17, + 0x33, 0x36, 0x37, 0x13, 0x33, 0x03, 0x0E, 0x03, 0x23, 0x22, 0x43, 0x39, 0x2D, 0x23, 0x2F, 0x18, + 0xFE, 0xEA, 0x8E, 0x97, 0x28, 0x02, 0x0D, 0x10, 0x72, 0x87, 0xDB, 0x0D, 0x1C, 0x2C, 0x3C, 0x25, + 0x48, 0x25, 0x61, 0x23, 0x3E, 0x02, 0x25, 0xFE, 0xC3, 0x5E, 0x2F, 0x2E, 0x01, 0x3E, 0xFD, 0xCF, + 0x21, 0x32, 0x32, 0x1C, 0x00, 0x03, 0x00, 0x21, 0xFF, 0xF4, 0x03, 0x2C, 0x02, 0xEE, 0x00, 0x11, + 0x00, 0x18, 0x00, 0x1F, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x35, 0x33, 0x15, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x23, 0x15, 0x23, 0x35, 0x22, 0x26, 0x05, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x05, + 0x14, 0x16, 0x33, 0x11, 0x22, 0x06, 0x21, 0xB5, 0x90, 0x81, 0x90, 0xB5, 0xB4, 0x91, 0x81, 0x90, + 0xB5, 0x01, 0xC6, 0x56, 0x6C, 0x6C, 0x56, 0xFE, 0xBE, 0x6B, 0x56, 0x56, 0x6B, 0x01, 0x7A, 0x82, + 0xA4, 0x4E, 0x4E, 0xA4, 0x82, 0x85, 0xA7, 0x5A, 0x5A, 0xA8, 0x3C, 0x6B, 0x55, 0x53, 0x67, 0xBA, + 0x55, 0x6B, 0x01, 0x7A, 0x67, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0D, 0x00, 0x00, 0x02, 0x62, + 0x02, 0xC6, 0x00, 0x13, 0x00, 0x00, 0x33, 0x13, 0x03, 0x33, 0x1F, 0x01, 0x33, 0x36, 0x3F, 0x01, + 0x33, 0x03, 0x13, 0x23, 0x2F, 0x01, 0x23, 0x06, 0x0F, 0x01, 0x0D, 0xDC, 0xD4, 0x93, 0x62, 0x2C, + 0x02, 0x14, 0x18, 0x63, 0x93, 0xD5, 0xDD, 0x90, 0x6F, 0x2C, 0x02, 0x14, 0x17, 0x6E, 0x01, 0x68, + 0x01, 0x5E, 0xAE, 0x56, 0x2C, 0x2A, 0xAE, 0xFE, 0xA2, 0xFE, 0x98, 0xBF, 0x54, 0x2B, 0x29, 0xBF, + 0x00, 0x01, 0x00, 0x56, 0xFF, 0x74, 0x02, 0xDF, 0x02, 0xC6, 0x00, 0x0B, 0x00, 0x00, 0x33, 0x11, + 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x33, 0x15, 0x23, 0x35, 0x56, 0x81, 0x01, 0x33, 0x81, 0x54, + 0x73, 0x02, 0xC6, 0xFD, 0xA9, 0x02, 0x57, 0xFD, 0xA9, 0xFB, 0x8C, 0x00, 0x00, 0x01, 0x00, 0x2E, + 0x00, 0x00, 0x02, 0x3D, 0x02, 0xC6, 0x00, 0x12, 0x00, 0x00, 0x01, 0x22, 0x26, 0x3D, 0x01, 0x33, + 0x15, 0x14, 0x33, 0x32, 0x37, 0x11, 0x33, 0x11, 0x23, 0x11, 0x37, 0x23, 0x06, 0x01, 0x07, 0x6D, + 0x6C, 0x83, 0x77, 0x51, 0x41, 0x83, 0x83, 0x02, 0x02, 0x56, 0x01, 0x08, 0x6F, 0x66, 0xE9, 0xCC, + 0x7D, 0x2A, 0x01, 0x1F, 0xFD, 0x3A, 0x01, 0x13, 0x21, 0x2C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x56, + 0x00, 0x00, 0x03, 0xA2, 0x02, 0xC6, 0x00, 0x0B, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, + 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x56, 0x81, 0xE5, 0x81, 0xE5, 0x80, 0x02, 0xC6, 0xFD, 0xA9, + 0x02, 0x57, 0xFD, 0xA9, 0x02, 0x57, 0xFD, 0x3A, 0x00, 0x01, 0x00, 0x56, 0xFF, 0x74, 0x03, 0xFA, + 0x02, 0xC6, 0x00, 0x0F, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, + 0x33, 0x11, 0x33, 0x15, 0x23, 0x35, 0x56, 0x81, 0xE5, 0x81, 0xE5, 0x80, 0x58, 0x74, 0x02, 0xC6, + 0xFD, 0xA9, 0x02, 0x57, 0xFD, 0xA9, 0x02, 0x57, 0xFD, 0xA9, 0xFB, 0x8C, 0x00, 0x02, 0x00, 0x07, + 0x00, 0x00, 0x02, 0xA7, 0x02, 0xC6, 0x00, 0x0C, 0x00, 0x14, 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, + 0x21, 0x15, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x27, 0x33, 0x32, 0x36, 0x34, 0x26, 0x2B, + 0x01, 0xBD, 0xB6, 0x01, 0x37, 0x8B, 0x62, 0x7C, 0x7A, 0x62, 0x8D, 0x76, 0x35, 0x3B, 0x3D, 0x35, + 0x74, 0x02, 0x57, 0x6F, 0xF9, 0x7F, 0x69, 0x66, 0x7F, 0x6F, 0x3F, 0x6E, 0x42, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x56, 0x00, 0x00, 0x03, 0x15, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x0E, 0x00, 0x16, + 0x00, 0x00, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x15, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x23, 0x27, 0x33, 0x32, 0x36, 0x34, 0x26, 0x2B, 0x01, 0x02, 0x95, 0x80, 0xFD, 0x41, 0x81, 0x84, + 0x63, 0x7B, 0x7A, 0x61, 0x87, 0x70, 0x35, 0x3A, 0x3C, 0x35, 0x6E, 0x02, 0xC6, 0xFD, 0x3A, 0x02, + 0xC6, 0xF9, 0x7F, 0x69, 0x66, 0x7F, 0x6F, 0x3F, 0x6E, 0x42, 0x00, 0x00, 0x00, 0x02, 0x00, 0x56, + 0x00, 0x00, 0x02, 0x40, 0x02, 0xC6, 0x00, 0x0A, 0x00, 0x12, 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x27, 0x33, 0x32, 0x36, 0x34, 0x26, 0x2B, 0x01, 0x56, + 0x81, 0x8B, 0x62, 0x7C, 0x7A, 0x62, 0x8D, 0x76, 0x35, 0x3B, 0x3D, 0x35, 0x74, 0x02, 0xC6, 0xF9, + 0x7F, 0x69, 0x66, 0x7F, 0x6F, 0x3F, 0x6E, 0x42, 0x00, 0x01, 0x00, 0x1C, 0xFF, 0xF4, 0x02, 0xA0, + 0x02, 0xD2, 0x00, 0x1A, 0x00, 0x00, 0x3F, 0x01, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x21, 0x35, + 0x21, 0x2E, 0x01, 0x23, 0x22, 0x07, 0x27, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, + 0x22, 0x1C, 0x41, 0x27, 0x70, 0x3C, 0x5E, 0x7C, 0x0D, 0xFE, 0xAC, 0x01, 0x55, 0x0B, 0x7E, 0x5E, + 0x6E, 0x5C, 0x3E, 0x30, 0x8E, 0x4E, 0xA3, 0xC8, 0xD0, 0xA0, 0xA2, 0x61, 0x5B, 0x25, 0x2E, 0x70, + 0x56, 0x69, 0x56, 0x6F, 0x50, 0x61, 0x31, 0x33, 0xD0, 0x9B, 0x9F, 0xD4, 0x00, 0x02, 0x00, 0x56, + 0xFF, 0xF4, 0x04, 0x0F, 0x02, 0xD2, 0x00, 0x12, 0x00, 0x1C, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, + 0x33, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x23, 0x11, 0x13, + 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x56, 0x81, 0x6E, 0x10, 0xC6, 0x8C, 0x99, + 0xCF, 0xCF, 0x99, 0x89, 0xC3, 0x14, 0x70, 0xEE, 0x83, 0xBE, 0x84, 0x84, 0xBE, 0x83, 0x02, 0xC6, + 0xFE, 0xD3, 0x87, 0xB2, 0xD1, 0x99, 0x9D, 0xD7, 0xAF, 0x87, 0xFE, 0xD6, 0x01, 0x68, 0x6C, 0x92, + 0x93, 0x6B, 0x67, 0x8C, 0x8C, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x11, 0x00, 0x00, 0x02, 0x24, + 0x02, 0xC6, 0x00, 0x11, 0x00, 0x1B, 0x00, 0x00, 0x33, 0x3F, 0x01, 0x35, 0x2E, 0x01, 0x35, 0x34, + 0x36, 0x37, 0x36, 0x3B, 0x01, 0x11, 0x23, 0x11, 0x23, 0x03, 0x13, 0x33, 0x35, 0x23, 0x22, 0x07, + 0x06, 0x15, 0x14, 0x16, 0x11, 0x96, 0x17, 0x3F, 0x3F, 0x41, 0x36, 0x2C, 0x5B, 0xE6, 0x81, 0x68, + 0x9A, 0x92, 0x70, 0x5B, 0x3C, 0x1D, 0x2C, 0x3C, 0xFA, 0x25, 0x02, 0x1C, 0x6C, 0x46, 0x48, 0x65, + 0x17, 0x13, 0xFD, 0x3A, 0x01, 0x09, 0xFE, 0xF7, 0x01, 0x75, 0xE2, 0x12, 0x1B, 0x40, 0x38, 0x3D, + 0x00, 0x02, 0x00, 0x1D, 0xFF, 0xF4, 0x01, 0xDB, 0x02, 0x0A, 0x00, 0x1C, 0x00, 0x26, 0x00, 0x00, + 0x37, 0x34, 0x3E, 0x02, 0x3B, 0x01, 0x35, 0x34, 0x23, 0x22, 0x07, 0x27, 0x3E, 0x01, 0x33, 0x32, + 0x16, 0x15, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x3D, 0x01, 0x23, 0x22, 0x1D, 0x3B, 0x61, 0x5B, 0x32, 0x16, 0x60, 0x46, 0x48, 0x2F, + 0x21, 0x70, 0x37, 0x64, 0x70, 0x76, 0x03, 0x02, 0x18, 0x56, 0x33, 0x47, 0x61, 0x7E, 0x29, 0x24, + 0x33, 0x42, 0x16, 0xAC, 0x8D, 0x36, 0x4C, 0x23, 0x0E, 0x07, 0x5A, 0x31, 0x5B, 0x1A, 0x25, 0x6B, + 0x60, 0xFE, 0xC1, 0x2B, 0x25, 0x29, 0x33, 0x55, 0x4F, 0x1B, 0x28, 0x54, 0x32, 0x0E, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x2E, 0xFF, 0xF4, 0x02, 0x2C, 0x02, 0xE4, 0x00, 0x14, 0x00, 0x1E, 0x00, 0x00, + 0x13, 0x34, 0x36, 0x3F, 0x01, 0x17, 0x07, 0x0E, 0x01, 0x07, 0x33, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x32, 0x36, 0x34, 0x26, 0x23, 0x22, 0x06, 0x2E, + 0x72, 0x89, 0xB0, 0x26, 0xC2, 0x46, 0x4B, 0x04, 0x02, 0x3B, 0x6D, 0x62, 0x78, 0x8A, 0x70, 0x80, + 0x84, 0x81, 0x48, 0x6C, 0x49, 0x48, 0x35, 0x37, 0x49, 0x01, 0x2A, 0x92, 0xAE, 0x35, 0x45, 0x67, + 0x4A, 0x1D, 0x50, 0x3E, 0x4A, 0x80, 0x6A, 0x6B, 0x89, 0xA9, 0x4A, 0x3F, 0x4B, 0x4A, 0x7E, 0x4B, + 0x4D, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x44, 0x00, 0x00, 0x01, 0xF4, 0x01, 0xFE, 0x00, 0x0F, + 0x00, 0x17, 0x00, 0x20, 0x00, 0x00, 0x33, 0x11, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, + 0x1E, 0x01, 0x15, 0x14, 0x06, 0x23, 0x03, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2B, 0x01, 0x11, 0x33, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x44, 0xED, 0x4F, 0x5D, 0x23, 0x20, 0x2C, 0x2E, 0x69, + 0x55, 0x73, 0x53, 0x23, 0x24, 0x49, 0x51, 0x5D, 0x29, 0x2B, 0x2C, 0x28, 0x5D, 0x01, 0xFE, 0x45, + 0x3F, 0x24, 0x3D, 0x0F, 0x01, 0x0B, 0x41, 0x29, 0x49, 0x4B, 0x01, 0x2C, 0x25, 0x1E, 0x3C, 0xFE, + 0xA9, 0x25, 0x1F, 0x20, 0x25, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x44, 0x00, 0x00, 0x01, 0x93, + 0x01, 0xFE, 0x00, 0x05, 0x00, 0x00, 0x33, 0x11, 0x21, 0x15, 0x23, 0x11, 0x44, 0x01, 0x4F, 0xD0, + 0x01, 0xFE, 0x6C, 0xFE, 0x6E, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0D, 0xFF, 0x88, 0x02, 0x50, + 0x01, 0xFE, 0x00, 0x05, 0x00, 0x13, 0x00, 0x00, 0x37, 0x33, 0x11, 0x23, 0x15, 0x14, 0x07, 0x33, + 0x36, 0x3D, 0x01, 0x21, 0x11, 0x33, 0x15, 0x23, 0x35, 0x21, 0x15, 0x23, 0xCB, 0xBD, 0x7F, 0xFC, + 0x3F, 0x44, 0x01, 0x77, 0x49, 0x73, 0xFE, 0xA6, 0x76, 0x66, 0x01, 0x32, 0x18, 0xB3, 0x67, 0x64, + 0xCA, 0x6A, 0xFE, 0x68, 0xDE, 0x78, 0x78, 0x00, 0x00, 0x02, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x0B, + 0x02, 0x0A, 0x00, 0x14, 0x00, 0x1B, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x07, 0x21, 0x1E, 0x01, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, 0x33, 0x2E, + 0x01, 0x23, 0x22, 0x06, 0x25, 0x91, 0x73, 0x6A, 0x78, 0x04, 0xFE, 0xA1, 0x06, 0x56, 0x3D, 0x4C, + 0x46, 0x32, 0x26, 0x6F, 0x38, 0x7B, 0x98, 0x86, 0xE1, 0x01, 0x39, 0x2C, 0x30, 0x42, 0x00, 0xFF, + 0x76, 0x95, 0x89, 0x69, 0x11, 0x20, 0x40, 0x47, 0x38, 0x5B, 0x22, 0x27, 0x9B, 0xAF, 0x32, 0x3A, + 0x3B, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0D, 0x00, 0x00, 0x03, 0x05, 0x01, 0xFE, 0x00, 0x17, + 0x00, 0x00, 0x33, 0x13, 0x35, 0x27, 0x33, 0x17, 0x33, 0x35, 0x33, 0x15, 0x33, 0x37, 0x33, 0x07, + 0x15, 0x13, 0x23, 0x27, 0x23, 0x15, 0x23, 0x35, 0x23, 0x07, 0x0D, 0x9C, 0x8F, 0x84, 0x71, 0x3E, + 0x77, 0x3E, 0x71, 0x84, 0x8E, 0x9C, 0x8C, 0x75, 0x40, 0x77, 0x40, 0x75, 0x01, 0x06, 0x02, 0xF6, + 0xC6, 0xC6, 0xC6, 0xC6, 0xF6, 0x02, 0xFE, 0xFA, 0xCD, 0xCD, 0xCD, 0xCD, 0x00, 0x01, 0x00, 0x16, + 0xFF, 0xF4, 0x01, 0xA4, 0x02, 0x0A, 0x00, 0x20, 0x00, 0x00, 0x3F, 0x01, 0x16, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x2B, 0x01, 0x35, 0x33, 0x32, 0x35, 0x34, 0x23, 0x22, 0x07, 0x27, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x07, 0x15, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x16, 0x36, 0x3C, 0x45, 0x29, + 0x2F, 0x55, 0x3E, 0x34, 0x4F, 0x4C, 0x3C, 0x3F, 0x29, 0x4D, 0x6F, 0x4E, 0x65, 0x46, 0x56, 0x72, + 0x57, 0x75, 0x3F, 0x51, 0x3A, 0x25, 0x20, 0x3F, 0x58, 0x3B, 0x3D, 0x2A, 0x51, 0x39, 0x4B, 0x41, + 0x52, 0x21, 0x02, 0x20, 0x55, 0x4C, 0x54, 0x00, 0x00, 0x01, 0x00, 0x44, 0x00, 0x00, 0x02, 0x1A, + 0x01, 0xFE, 0x00, 0x13, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x14, 0x07, 0x33, 0x36, 0x37, 0x13, + 0x33, 0x11, 0x23, 0x11, 0x34, 0x37, 0x23, 0x06, 0x07, 0x03, 0x44, 0x79, 0x03, 0x02, 0x04, 0x22, + 0xBD, 0x7B, 0x79, 0x03, 0x02, 0x03, 0x23, 0xBD, 0x01, 0xFE, 0xFE, 0xEF, 0x25, 0x18, 0x09, 0x34, + 0x01, 0x11, 0xFE, 0x02, 0x01, 0x10, 0x16, 0x27, 0x07, 0x36, 0xFE, 0xF0, 0x00, 0x02, 0x00, 0x44, + 0x00, 0x00, 0x02, 0x1A, 0x02, 0xC6, 0x00, 0x0F, 0x00, 0x23, 0x00, 0x00, 0x00, 0x22, 0x26, 0x3D, + 0x01, 0x33, 0x15, 0x14, 0x16, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x01, 0x11, 0x33, 0x11, + 0x14, 0x07, 0x33, 0x36, 0x37, 0x13, 0x33, 0x11, 0x23, 0x11, 0x34, 0x37, 0x23, 0x06, 0x07, 0x03, + 0x01, 0x73, 0x88, 0x60, 0x61, 0x28, 0x36, 0x29, 0x60, 0xFE, 0x71, 0x79, 0x03, 0x02, 0x04, 0x22, + 0xBD, 0x7B, 0x79, 0x03, 0x02, 0x03, 0x23, 0xBD, 0x02, 0x2F, 0x4B, 0x3F, 0x0D, 0x0D, 0x1E, 0x21, + 0x21, 0x1F, 0x0C, 0x0D, 0x3F, 0xFD, 0x86, 0x01, 0xFE, 0xFE, 0xEF, 0x25, 0x18, 0x09, 0x34, 0x01, + 0x11, 0xFE, 0x02, 0x01, 0x10, 0x16, 0x27, 0x07, 0x36, 0xFE, 0xF0, 0x00, 0x00, 0x01, 0x00, 0x44, + 0x00, 0x00, 0x02, 0x1E, 0x01, 0xFE, 0x00, 0x0D, 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, 0x33, 0x37, + 0x33, 0x07, 0x15, 0x13, 0x23, 0x27, 0x23, 0x15, 0x44, 0x7F, 0x3E, 0x7C, 0x8D, 0xA2, 0xB6, 0x93, + 0x86, 0x42, 0x01, 0xFE, 0xC3, 0xC3, 0xF3, 0x02, 0xFE, 0xF7, 0xCF, 0xCF, 0x00, 0x01, 0x00, 0x14, + 0xFF, 0xFB, 0x01, 0xF3, 0x01, 0xFE, 0x00, 0x0D, 0x00, 0x00, 0x17, 0x35, 0x3E, 0x01, 0x3D, 0x01, + 0x21, 0x11, 0x23, 0x11, 0x23, 0x15, 0x14, 0x06, 0x14, 0x34, 0x37, 0x01, 0x74, 0x7F, 0x7C, 0x6A, + 0x05, 0x70, 0x07, 0x6D, 0x7F, 0xA0, 0xFE, 0x02, 0x01, 0x97, 0x39, 0xAE, 0xB1, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x2F, 0x00, 0x00, 0x02, 0xB7, 0x01, 0xFE, 0x00, 0x17, 0x00, 0x00, 0x33, 0x13, + 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, 0x13, 0x23, 0x03, 0x37, 0x23, 0x06, 0x0F, 0x01, + 0x23, 0x2F, 0x01, 0x23, 0x17, 0x03, 0x2F, 0x2E, 0x90, 0x6C, 0x19, 0x02, 0x0E, 0x0B, 0x6E, 0x8E, + 0x2E, 0x7A, 0x12, 0x01, 0x02, 0x0E, 0x10, 0x64, 0x69, 0x64, 0x1F, 0x02, 0x01, 0x12, 0x01, 0xFE, + 0xFE, 0xF9, 0x41, 0x24, 0x1D, 0x01, 0x07, 0xFE, 0x02, 0x01, 0x14, 0x57, 0x26, 0x24, 0xE1, 0xE0, + 0x4B, 0x57, 0xFE, 0xEC, 0x00, 0x01, 0x00, 0x44, 0x00, 0x00, 0x02, 0x1C, 0x01, 0xFE, 0x00, 0x0B, + 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, 0x15, 0x44, 0x7F, + 0xDA, 0x7F, 0x7F, 0xDA, 0x01, 0xFE, 0xC5, 0xC5, 0xFE, 0x02, 0xCE, 0xCE, 0x00, 0x02, 0x00, 0x25, + 0xFF, 0xF4, 0x02, 0x55, 0x02, 0x0A, 0x00, 0x08, 0x00, 0x12, 0x00, 0x00, 0x36, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x14, 0x06, 0x22, 0x03, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x25, + 0xA2, 0x75, 0x76, 0xA3, 0xA2, 0xEC, 0x21, 0x57, 0x80, 0x58, 0x59, 0x7E, 0x58, 0x8B, 0xE8, 0x97, + 0x97, 0xE8, 0x97, 0x01, 0x0B, 0x46, 0x59, 0x59, 0x46, 0x45, 0x5A, 0x5A, 0x00, 0x01, 0x00, 0x44, + 0x00, 0x00, 0x02, 0x15, 0x01, 0xFE, 0x00, 0x07, 0x00, 0x00, 0x33, 0x11, 0x21, 0x11, 0x23, 0x11, + 0x23, 0x11, 0x44, 0x01, 0xD1, 0x7F, 0xD3, 0x01, 0xFE, 0xFE, 0x02, 0x01, 0x92, 0xFE, 0x6E, 0x00, + 0x00, 0x02, 0x00, 0x44, 0xFF, 0x38, 0x02, 0x3E, 0x02, 0x0A, 0x00, 0x14, 0x00, 0x20, 0x00, 0x00, + 0x17, 0x11, 0x33, 0x15, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, + 0x27, 0x23, 0x16, 0x1D, 0x01, 0x03, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x44, 0x74, 0x02, 0x02, 0x19, 0x57, 0x34, 0x67, 0x7B, 0x83, 0x66, 0x5B, 0x38, 0x02, 0x03, + 0x04, 0x44, 0x3B, 0x37, 0x49, 0x46, 0x38, 0x37, 0x4A, 0xC8, 0x02, 0xC6, 0x26, 0x24, 0x29, 0x2D, + 0x94, 0x77, 0x78, 0x93, 0x48, 0x12, 0x1A, 0xD8, 0x01, 0xC4, 0x40, 0x5D, 0x55, 0x49, 0x48, 0x58, + 0x51, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x0C, 0x02, 0x0A, 0x00, 0x16, + 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x23, 0x22, 0x06, 0x14, 0x16, + 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x25, 0x99, 0x7C, 0x37, 0x6A, 0x23, 0x39, + 0x37, 0x4D, 0x45, 0x56, 0x58, 0x47, 0x53, 0x43, 0x31, 0x24, 0x71, 0x3D, 0x7C, 0x99, 0x00, 0xFF, + 0x70, 0x9B, 0x26, 0x26, 0x57, 0x37, 0x5B, 0x86, 0x5D, 0x41, 0x5A, 0x26, 0x2D, 0x99, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x13, 0x00, 0x00, 0x01, 0xE2, 0x01, 0xFE, 0x00, 0x07, 0x00, 0x00, 0x33, 0x11, + 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0xBB, 0xA8, 0x01, 0xCF, 0xA9, 0x01, 0x92, 0x6C, 0x6C, 0xFE, + 0x6E, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0xFF, 0x2E, 0x02, 0x12, 0x01, 0xFE, 0x00, 0x16, + 0x00, 0x00, 0x17, 0x16, 0x33, 0x32, 0x3F, 0x01, 0x03, 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, + 0x33, 0x03, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x2F, 0x01, 0x37, 0x1C, 0x1C, 0x3D, 0x1C, 0x13, 0xD7, + 0x8F, 0x6B, 0x13, 0x02, 0x09, 0x08, 0x64, 0x8A, 0xE3, 0x19, 0x63, 0x3C, 0x1B, 0x35, 0x0D, 0x0D, + 0x52, 0x15, 0x42, 0x2D, 0x01, 0xF6, 0xFE, 0xDA, 0x45, 0x28, 0x1B, 0x01, 0x28, 0xFD, 0xB5, 0x43, + 0x42, 0x10, 0x08, 0x09, 0x00, 0x03, 0x00, 0x26, 0xFF, 0x38, 0x02, 0xC7, 0x02, 0xBC, 0x00, 0x11, + 0x00, 0x18, 0x00, 0x1F, 0x00, 0x00, 0x13, 0x34, 0x36, 0x37, 0x35, 0x33, 0x15, 0x1E, 0x01, 0x15, + 0x14, 0x06, 0x07, 0x15, 0x23, 0x35, 0x2E, 0x01, 0x05, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x05, + 0x14, 0x16, 0x17, 0x11, 0x0E, 0x01, 0x26, 0x9D, 0x78, 0x78, 0x78, 0x9C, 0x9C, 0x78, 0x78, 0x78, + 0x9D, 0x01, 0x8D, 0x44, 0x55, 0x55, 0x44, 0xFE, 0xEF, 0x55, 0x44, 0x44, 0x55, 0x00, 0xFF, 0x73, + 0x93, 0x04, 0xB3, 0xB3, 0x04, 0x93, 0x73, 0x74, 0x92, 0x05, 0xBC, 0xBC, 0x05, 0x92, 0x31, 0x05, + 0x59, 0x47, 0x48, 0x57, 0x05, 0xA4, 0x47, 0x59, 0x05, 0x01, 0x49, 0x05, 0x57, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x0F, 0x00, 0x00, 0x01, 0xF9, 0x01, 0xFE, 0x00, 0x13, 0x00, 0x00, 0x33, 0x13, + 0x27, 0x33, 0x1F, 0x01, 0x33, 0x36, 0x3F, 0x01, 0x33, 0x07, 0x13, 0x23, 0x2F, 0x01, 0x23, 0x06, + 0x0F, 0x01, 0x0F, 0xA8, 0xA4, 0x90, 0x4F, 0x10, 0x02, 0x0A, 0x07, 0x4F, 0x90, 0xA4, 0xA9, 0x8E, + 0x58, 0x0F, 0x02, 0x07, 0x07, 0x58, 0x01, 0x02, 0xFC, 0x8B, 0x20, 0x13, 0x0D, 0x8B, 0xFC, 0xFE, + 0xFE, 0x94, 0x1B, 0x10, 0x0B, 0x94, 0x00, 0x00, 0x00, 0x01, 0x00, 0x44, 0xFF, 0x88, 0x02, 0x57, + 0x01, 0xFE, 0x00, 0x0B, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, + 0x23, 0x35, 0x44, 0x7F, 0xCC, 0x7F, 0x49, 0x73, 0x01, 0xFE, 0xFE, 0x6E, 0x01, 0x92, 0xFE, 0x6E, + 0xE4, 0x78, 0x00, 0x00, 0x00, 0x01, 0x00, 0x26, 0x00, 0x00, 0x01, 0xDB, 0x01, 0xFE, 0x00, 0x11, + 0x00, 0x00, 0x24, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x33, 0x32, 0x37, 0x35, 0x33, 0x11, + 0x23, 0x35, 0x37, 0x23, 0x01, 0x20, 0x9C, 0x5E, 0x7D, 0x57, 0x35, 0x2E, 0x7E, 0x7E, 0x01, 0x02, + 0xA9, 0x55, 0x55, 0xAB, 0x96, 0x55, 0x20, 0xCB, 0xFE, 0x02, 0xAE, 0x1C, 0x00, 0x01, 0x00, 0x44, + 0x00, 0x00, 0x02, 0xED, 0x01, 0xFE, 0x00, 0x0B, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, + 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x44, 0x79, 0x9F, 0x79, 0x9F, 0x79, 0x01, 0xFE, 0xFE, 0x6E, + 0x01, 0x92, 0xFE, 0x6E, 0x01, 0x92, 0xFE, 0x02, 0x00, 0x01, 0x00, 0x44, 0xFF, 0x88, 0x03, 0x35, + 0x01, 0xFE, 0x00, 0x0F, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, + 0x33, 0x11, 0x33, 0x15, 0x23, 0x35, 0x44, 0x79, 0x9F, 0x79, 0x9F, 0x79, 0x48, 0x72, 0x01, 0xFE, + 0xFE, 0x6E, 0x01, 0x92, 0xFE, 0x6E, 0x01, 0x92, 0xFE, 0x6E, 0xE4, 0x78, 0x00, 0x02, 0x00, 0x09, + 0x00, 0x00, 0x02, 0x2C, 0x01, 0xFE, 0x00, 0x0C, 0x00, 0x15, 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, + 0x21, 0x15, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x27, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x2B, 0x01, 0x8F, 0x86, 0x01, 0x05, 0x5F, 0x5B, 0x64, 0x5F, 0x61, 0x5E, 0x49, 0x2B, 0x2B, 0x2C, + 0x2B, 0x48, 0x01, 0x92, 0x6C, 0xAF, 0x57, 0x52, 0x4D, 0x59, 0x57, 0x2C, 0x24, 0x25, 0x2D, 0x00, + 0x00, 0x03, 0x00, 0x44, 0x00, 0x00, 0x02, 0xA3, 0x01, 0xFE, 0x00, 0x03, 0x00, 0x0E, 0x00, 0x17, + 0x00, 0x00, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x15, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x23, 0x27, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x02, 0x24, 0x7F, 0xFD, 0xA1, 0x7F, + 0x5B, 0x5B, 0x65, 0x60, 0x61, 0x5A, 0x46, 0x2A, 0x2B, 0x2C, 0x2B, 0x44, 0x01, 0xFE, 0xFE, 0x02, + 0x01, 0xFE, 0xAF, 0x57, 0x52, 0x4D, 0x59, 0x57, 0x2C, 0x24, 0x25, 0x2D, 0x00, 0x02, 0x00, 0x44, + 0x00, 0x00, 0x01, 0xE2, 0x01, 0xFE, 0x00, 0x0A, 0x00, 0x13, 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x27, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, + 0x44, 0x7F, 0x5F, 0x5B, 0x65, 0x60, 0x61, 0x5E, 0x4A, 0x2A, 0x2B, 0x2C, 0x2B, 0x48, 0x01, 0xFE, + 0xAF, 0x57, 0x52, 0x4D, 0x59, 0x57, 0x2C, 0x24, 0x25, 0x2D, 0x00, 0x00, 0x00, 0x01, 0x00, 0x18, + 0xFF, 0xF4, 0x01, 0xFD, 0x02, 0x0A, 0x00, 0x18, 0x00, 0x00, 0x3F, 0x01, 0x16, 0x33, 0x32, 0x36, + 0x37, 0x23, 0x35, 0x33, 0x2E, 0x01, 0x23, 0x22, 0x07, 0x27, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x22, 0x18, 0x2F, 0x41, 0x59, 0x3F, 0x57, 0x0B, 0xDF, 0xDF, 0x0A, 0x56, 0x3C, 0x51, + 0x3D, 0x36, 0x23, 0x6C, 0x3A, 0x7B, 0x97, 0x99, 0xF8, 0x3F, 0x58, 0x3E, 0x44, 0x37, 0x57, 0x37, + 0x43, 0x37, 0x55, 0x23, 0x24, 0x9B, 0x70, 0x72, 0x99, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x44, + 0xFF, 0xF4, 0x03, 0x2E, 0x02, 0x0A, 0x00, 0x11, 0x00, 0x1B, 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, + 0x33, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x23, 0x15, 0x12, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x34, 0x26, 0x23, 0x22, 0x44, 0x7F, 0x54, 0x11, 0x92, 0x64, 0x73, 0x9D, + 0x9C, 0x73, 0x66, 0x92, 0x11, 0x53, 0xCD, 0x52, 0x3D, 0x3C, 0x52, 0x52, 0x3C, 0x3D, 0x01, 0xFE, + 0xCA, 0x5F, 0x77, 0x97, 0xE8, 0x97, 0x78, 0x61, 0xCD, 0x01, 0x45, 0x8C, 0x59, 0x59, 0x8C, 0x59, + 0x00, 0x02, 0x00, 0x12, 0x00, 0x00, 0x01, 0xCE, 0x01, 0xFE, 0x00, 0x0F, 0x00, 0x17, 0x00, 0x00, + 0x33, 0x3F, 0x01, 0x35, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x3B, 0x01, 0x11, 0x23, 0x35, 0x23, 0x07, + 0x13, 0x33, 0x35, 0x23, 0x22, 0x15, 0x14, 0x16, 0x12, 0x70, 0x17, 0x2D, 0x3A, 0x63, 0x54, 0xE5, + 0x7F, 0x42, 0x72, 0x71, 0x43, 0x42, 0x5C, 0x32, 0xA3, 0x1F, 0x01, 0x10, 0x51, 0x35, 0x4E, 0x57, + 0xFE, 0x02, 0xAD, 0xAD, 0x01, 0x05, 0xA6, 0x51, 0x2A, 0x2B, 0x00, 0x00, 0x00, 0x03, 0x00, 0x25, + 0xFF, 0xF4, 0x02, 0x0B, 0x02, 0xC6, 0x00, 0x14, 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x00, 0x13, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x21, 0x1E, 0x01, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, + 0x23, 0x22, 0x26, 0x37, 0x33, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x37, 0x27, 0x33, 0x17, 0x25, 0x91, + 0x73, 0x6A, 0x78, 0x04, 0xFE, 0xA1, 0x06, 0x56, 0x3D, 0x4C, 0x46, 0x32, 0x26, 0x6F, 0x38, 0x7B, + 0x98, 0x86, 0xE1, 0x01, 0x39, 0x2C, 0x30, 0x42, 0x4E, 0x68, 0x83, 0x4C, 0x00, 0xFF, 0x76, 0x95, + 0x89, 0x69, 0x11, 0x20, 0x40, 0x47, 0x38, 0x5B, 0x22, 0x27, 0x9B, 0xAF, 0x32, 0x3A, 0x3B, 0xCF, + 0x88, 0x88, 0x00, 0x00, 0x00, 0x04, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x0B, 0x02, 0xC6, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x1C, 0x00, 0x23, 0x00, 0x00, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, + 0x03, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x21, 0x1E, 0x01, 0x33, 0x32, 0x37, 0x17, + 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, 0x33, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x01, 0x4F, 0x61, 0xFE, + 0xE7, 0x62, 0xD4, 0x91, 0x73, 0x6A, 0x78, 0x04, 0xFE, 0xA1, 0x06, 0x56, 0x3D, 0x4C, 0x46, 0x32, + 0x26, 0x6F, 0x38, 0x7B, 0x98, 0x86, 0xE1, 0x01, 0x39, 0x2C, 0x30, 0x42, 0x02, 0x52, 0x74, 0x74, + 0x74, 0x74, 0xFE, 0xAD, 0x76, 0x95, 0x89, 0x69, 0x11, 0x20, 0x40, 0x47, 0x38, 0x5B, 0x22, 0x27, + 0x9B, 0xAF, 0x32, 0x3A, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x07, 0xFF, 0x2F, 0x02, 0x25, + 0x02, 0xC6, 0x00, 0x29, 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, + 0x23, 0x15, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x15, 0x11, 0x14, 0x0E, 0x03, 0x23, 0x27, 0x35, + 0x16, 0x33, 0x32, 0x3D, 0x01, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x1D, 0x01, 0x44, 0x3D, + 0x3D, 0x7F, 0xBD, 0xBD, 0x02, 0x02, 0x15, 0x5E, 0x3D, 0xB2, 0x1E, 0x2B, 0x3A, 0x30, 0x18, 0x31, + 0x0F, 0x11, 0x5D, 0x23, 0x2D, 0x32, 0x4A, 0x0E, 0x09, 0x02, 0x1D, 0x58, 0x51, 0x51, 0x58, 0x8A, + 0x2B, 0x29, 0x3C, 0xC2, 0xFE, 0xFD, 0x34, 0x51, 0x2E, 0x1D, 0x09, 0x03, 0x6B, 0x02, 0x6E, 0xE8, + 0x33, 0x35, 0x3B, 0x2F, 0x1A, 0x28, 0xAD, 0x00, 0x00, 0x02, 0x00, 0x44, 0x00, 0x00, 0x01, 0x93, + 0x02, 0xC6, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x13, 0x37, 0x33, 0x07, 0x03, 0x11, 0x21, 0x15, + 0x23, 0x11, 0xA2, 0x4C, 0x83, 0x69, 0xC4, 0x01, 0x4F, 0xD0, 0x02, 0x3E, 0x88, 0x88, 0xFD, 0xC2, + 0x01, 0xFE, 0x6C, 0xFE, 0x6E, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x0E, + 0x02, 0x0A, 0x00, 0x22, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x16, 0x1F, 0x01, 0x07, 0x2E, + 0x02, 0x23, 0x22, 0x06, 0x07, 0x33, 0x15, 0x23, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x3F, 0x01, 0x17, + 0x0E, 0x04, 0x23, 0x22, 0x26, 0x25, 0x99, 0x7C, 0x3C, 0x63, 0x13, 0x14, 0x37, 0x06, 0x17, 0x48, + 0x25, 0x3E, 0x56, 0x0B, 0xDF, 0xDF, 0x0B, 0x57, 0x42, 0x29, 0x4D, 0x12, 0x12, 0x30, 0x03, 0x0C, + 0x28, 0x2E, 0x49, 0x26, 0x7C, 0x99, 0x00, 0xFF, 0x70, 0x9B, 0x24, 0x12, 0x11, 0x57, 0x06, 0x12, + 0x1F, 0x3F, 0x36, 0x58, 0x39, 0x44, 0x21, 0x11, 0x11, 0x59, 0x03, 0x0B, 0x1B, 0x15, 0x11, 0x99, + 0x00, 0x01, 0x00, 0x1B, 0xFF, 0xF4, 0x01, 0xA4, 0x02, 0x0A, 0x00, 0x21, 0x00, 0x00, 0x3F, 0x01, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x03, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x2E, + 0x01, 0x23, 0x22, 0x15, 0x14, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x23, 0x22, 0x1B, 0x39, 0x3D, 0x54, + 0x22, 0x25, 0x34, 0x4A, 0x4B, 0x34, 0x6F, 0x54, 0x6A, 0x42, 0x2F, 0x16, 0x49, 0x22, 0x47, 0x34, + 0x4B, 0x4A, 0x34, 0x6A, 0x57, 0x7A, 0x3F, 0x54, 0x38, 0x1B, 0x18, 0x16, 0x20, 0x1A, 0x23, 0x42, + 0x2E, 0x48, 0x51, 0x3A, 0x59, 0x13, 0x19, 0x31, 0x16, 0x20, 0x1A, 0x21, 0x42, 0x2E, 0x44, 0x59, + 0x00, 0x02, 0x00, 0x44, 0x00, 0x00, 0x00, 0xC3, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x13, 0x35, 0x33, 0x15, 0x03, 0x11, 0x33, 0x11, 0x44, 0x7F, 0x7F, 0x7F, 0x02, 0x55, 0x71, 0x71, + 0xFD, 0xAB, 0x01, 0xFE, 0xFE, 0x02, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xF8, 0x00, 0x00, 0x01, 0x11, + 0x02, 0xC6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x13, 0x35, 0x33, 0x15, 0x21, 0x35, + 0x33, 0x15, 0x03, 0x11, 0x33, 0x11, 0xB0, 0x61, 0xFE, 0xE7, 0x62, 0x16, 0x7F, 0x02, 0x52, 0x74, + 0x74, 0x74, 0x74, 0xFD, 0xAE, 0x01, 0xFE, 0xFE, 0x02, 0x00, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xC8, + 0xFF, 0x31, 0x00, 0xC3, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x16, 0x00, 0x00, 0x13, 0x35, 0x33, 0x15, + 0x03, 0x11, 0x33, 0x11, 0x14, 0x0E, 0x03, 0x23, 0x22, 0x27, 0x35, 0x16, 0x33, 0x32, 0x3E, 0x02, + 0x44, 0x7F, 0x7F, 0x7F, 0x20, 0x2D, 0x3E, 0x31, 0x19, 0x12, 0x14, 0x0C, 0x0A, 0x11, 0x1E, 0x22, + 0x15, 0x02, 0x55, 0x71, 0x71, 0xFD, 0xA6, 0x02, 0x03, 0xFD, 0xF3, 0x31, 0x49, 0x27, 0x18, 0x07, + 0x03, 0x6B, 0x02, 0x07, 0x11, 0x29, 0x00, 0x00, 0x00, 0x02, 0x00, 0x18, 0xFF, 0xFB, 0x02, 0xF4, + 0x01, 0xFE, 0x00, 0x14, 0x00, 0x1D, 0x00, 0x00, 0x17, 0x35, 0x3E, 0x01, 0x3D, 0x01, 0x21, 0x15, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x2B, 0x01, 0x11, 0x23, 0x15, 0x14, 0x06, 0x25, 0x33, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x18, 0x35, 0x38, 0x01, 0x53, 0x5C, 0x5B, 0x65, 0x60, 0x61, + 0xDA, 0x5C, 0x68, 0x01, 0x43, 0x4C, 0x2A, 0x2B, 0x2B, 0x2B, 0x4B, 0x05, 0x70, 0x07, 0x6A, 0x7C, + 0xA6, 0xB9, 0x55, 0x50, 0x4B, 0x55, 0x01, 0x97, 0x3B, 0xB4, 0xA9, 0x58, 0x27, 0x22, 0x23, 0x2A, + 0x00, 0x02, 0x00, 0x44, 0x00, 0x00, 0x03, 0x2E, 0x01, 0xFE, 0x00, 0x12, 0x00, 0x1A, 0x00, 0x00, + 0x33, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x2B, 0x01, + 0x35, 0x23, 0x15, 0x25, 0x33, 0x32, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x44, 0x7F, 0xD0, 0x7F, 0x5A, + 0x5B, 0x67, 0x60, 0x61, 0xDA, 0xD0, 0x01, 0x4F, 0x4C, 0x56, 0x2E, 0x2B, 0x49, 0x01, 0xFE, 0xBA, + 0xBA, 0xBC, 0x53, 0x4E, 0x4B, 0x56, 0xE0, 0xE0, 0x57, 0x4A, 0x23, 0x27, 0x00, 0x01, 0x00, 0x07, + 0x00, 0x00, 0x02, 0x25, 0x02, 0xC6, 0x00, 0x1E, 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, 0x33, 0x35, + 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x15, 0x11, 0x23, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x1D, 0x01, 0x44, 0x3D, 0x3D, 0x7F, 0xBD, 0xBD, 0x02, + 0x02, 0x15, 0x5D, 0x3E, 0xB2, 0x7F, 0x23, 0x2D, 0x32, 0x4A, 0x0E, 0x09, 0x02, 0x1D, 0x58, 0x51, + 0x51, 0x58, 0x8A, 0x2B, 0x2A, 0x3B, 0xC1, 0xFE, 0xF4, 0xF2, 0x32, 0x35, 0x3A, 0x2F, 0x1A, 0x29, + 0xAD, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x44, 0x00, 0x00, 0x02, 0x1E, 0x02, 0xC6, 0x00, 0x03, + 0x00, 0x11, 0x00, 0x00, 0x13, 0x37, 0x33, 0x07, 0x03, 0x11, 0x33, 0x15, 0x33, 0x37, 0x33, 0x07, + 0x15, 0x13, 0x23, 0x27, 0x23, 0x15, 0xDB, 0x4C, 0x83, 0x69, 0xFD, 0x7F, 0x3E, 0x7C, 0x8D, 0xA2, + 0xB6, 0x93, 0x86, 0x42, 0x02, 0x3E, 0x88, 0x88, 0xFD, 0xC2, 0x01, 0xFE, 0xC3, 0xC3, 0xF3, 0x02, + 0xFE, 0xF7, 0xCF, 0xCF, 0x00, 0x02, 0x00, 0x44, 0x00, 0x00, 0x02, 0x1A, 0x02, 0xC6, 0x00, 0x13, + 0x00, 0x17, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x14, 0x07, 0x33, 0x36, 0x37, 0x13, 0x33, 0x11, + 0x23, 0x11, 0x34, 0x37, 0x23, 0x06, 0x07, 0x03, 0x13, 0x27, 0x33, 0x17, 0x44, 0x79, 0x03, 0x02, + 0x04, 0x22, 0xBD, 0x7B, 0x79, 0x03, 0x02, 0x03, 0x23, 0xBD, 0x4F, 0x68, 0x83, 0x4C, 0x01, 0xFE, + 0xFE, 0xEF, 0x25, 0x18, 0x09, 0x34, 0x01, 0x11, 0xFE, 0x02, 0x01, 0x10, 0x16, 0x27, 0x07, 0x36, + 0xFE, 0xF0, 0x02, 0x3E, 0x88, 0x88, 0x00, 0x00, 0x00, 0x02, 0x00, 0x04, 0xFF, 0x2E, 0x02, 0x12, + 0x02, 0xC6, 0x00, 0x16, 0x00, 0x26, 0x00, 0x00, 0x17, 0x16, 0x33, 0x32, 0x3F, 0x01, 0x03, 0x33, + 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, 0x03, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x2F, 0x01, 0x00, + 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x16, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x37, + 0x1C, 0x1C, 0x3D, 0x1C, 0x13, 0xD7, 0x8F, 0x6B, 0x13, 0x02, 0x09, 0x08, 0x64, 0x8A, 0xE3, 0x19, + 0x63, 0x3C, 0x1B, 0x35, 0x0D, 0x0D, 0x01, 0x49, 0x88, 0x60, 0x61, 0x28, 0x36, 0x29, 0x60, 0x52, + 0x15, 0x42, 0x2D, 0x01, 0xF6, 0xFE, 0xDA, 0x45, 0x28, 0x1B, 0x01, 0x28, 0xFD, 0xB5, 0x43, 0x42, + 0x10, 0x08, 0x09, 0x02, 0xE0, 0x4B, 0x3F, 0x0D, 0x0D, 0x1E, 0x21, 0x21, 0x1F, 0x0C, 0x0D, 0x3F, + 0x00, 0x01, 0x00, 0x44, 0xFF, 0x88, 0x02, 0x07, 0x01, 0xFE, 0x00, 0x0B, 0x00, 0x00, 0x33, 0x11, + 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x44, 0x7F, 0xC6, 0x7E, 0xA8, 0x72, + 0x01, 0xFE, 0xFE, 0x6E, 0x01, 0x92, 0xFE, 0x02, 0x78, 0x78, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0A, + 0x00, 0x00, 0x02, 0xA1, 0x02, 0xDC, 0x00, 0x12, 0x00, 0x1B, 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, + 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x27, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0xB5, 0xAB, 0xAD, 0x7E, 0xCC, 0xCC, 0x8C, 0x63, + 0x7D, 0x7D, 0x62, 0x8D, 0x76, 0x35, 0x3E, 0x3F, 0x36, 0x74, 0x02, 0x1B, 0x63, 0x5E, 0x5E, 0x63, + 0x68, 0x78, 0x60, 0x61, 0x7A, 0x6F, 0x3A, 0x32, 0x30, 0x39, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, + 0x00, 0x00, 0x02, 0x18, 0x02, 0xC6, 0x00, 0x12, 0x00, 0x1B, 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, + 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x27, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x77, 0x7A, 0x79, 0x7F, 0xA4, 0xA3, 0x63, 0x5B, + 0x64, 0x5F, 0x61, 0x62, 0x4D, 0x2B, 0x2B, 0x2C, 0x2B, 0x4C, 0x01, 0xCA, 0x5C, 0xA0, 0xA0, 0x5C, + 0x7B, 0x57, 0x52, 0x4D, 0x59, 0x57, 0x2C, 0x24, 0x25, 0x2D, 0x00, 0x00, 0x00, 0x03, 0x00, 0x2C, + 0xFF, 0xF4, 0x03, 0x0A, 0x02, 0xD2, 0x00, 0x09, 0x00, 0x10, 0x00, 0x17, 0x00, 0x00, 0x13, 0x34, + 0x36, 0x20, 0x16, 0x15, 0x14, 0x06, 0x20, 0x26, 0x05, 0x32, 0x36, 0x37, 0x21, 0x1E, 0x01, 0x13, + 0x22, 0x06, 0x07, 0x21, 0x2E, 0x01, 0x2C, 0xD2, 0x01, 0x3A, 0xD2, 0xD2, 0xFE, 0xC6, 0xD2, 0x01, + 0x70, 0x57, 0x81, 0x10, 0xFE, 0x2E, 0x11, 0x81, 0x58, 0x59, 0x82, 0x0F, 0x01, 0xD3, 0x10, 0x82, + 0x01, 0x68, 0x99, 0xD1, 0xD1, 0x99, 0x9E, 0xD6, 0xD6, 0x65, 0x74, 0x5A, 0x5B, 0x73, 0x01, 0xFA, + 0x70, 0x58, 0x58, 0x70, 0x00, 0x03, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x55, 0x02, 0x0A, 0x00, 0x08, + 0x00, 0x0F, 0x00, 0x16, 0x00, 0x00, 0x36, 0x34, 0x36, 0x33, 0x32, 0x16, 0x14, 0x06, 0x22, 0x37, + 0x32, 0x36, 0x37, 0x21, 0x1E, 0x01, 0x13, 0x22, 0x06, 0x07, 0x21, 0x2E, 0x01, 0x25, 0xA2, 0x75, + 0x76, 0xA3, 0xA2, 0xEC, 0x77, 0x3B, 0x5B, 0x0B, 0xFE, 0xBD, 0x0A, 0x5B, 0x3D, 0x3C, 0x59, 0x0C, + 0x01, 0x41, 0x0D, 0x59, 0x8B, 0xE8, 0x97, 0x97, 0xE8, 0x97, 0x5E, 0x4C, 0x3E, 0x3E, 0x4C, 0x01, + 0x59, 0x48, 0x3C, 0x3B, 0x49, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x02, 0xA7, + 0x02, 0xC6, 0x00, 0x12, 0x00, 0x00, 0x21, 0x01, 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x3E, + 0x01, 0x3B, 0x01, 0x15, 0x23, 0x22, 0x06, 0x07, 0x03, 0x01, 0x05, 0xFF, 0x00, 0x8B, 0x9C, 0x1B, + 0x02, 0x0E, 0x0D, 0x81, 0x0F, 0x2A, 0x30, 0x59, 0x18, 0x1E, 0x1A, 0x0B, 0xC1, 0x02, 0xC6, 0xFE, + 0x31, 0x68, 0x3F, 0x29, 0x01, 0x88, 0x2C, 0x1B, 0x70, 0x10, 0x20, 0xFD, 0xDA, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x0C, 0x00, 0x00, 0x02, 0x30, 0x01, 0xFE, 0x00, 0x12, 0x00, 0x00, 0x33, 0x03, + 0x33, 0x13, 0x17, 0x33, 0x36, 0x3F, 0x01, 0x3E, 0x01, 0x3B, 0x01, 0x15, 0x23, 0x22, 0x06, 0x07, + 0x03, 0xC5, 0xB9, 0x86, 0x6A, 0x12, 0x02, 0x09, 0x0A, 0x47, 0x10, 0x35, 0x34, 0x4D, 0x17, 0x1E, + 0x1B, 0x0B, 0x79, 0x01, 0xFE, 0xFE, 0xC4, 0x4D, 0x2F, 0x1E, 0xDE, 0x34, 0x2A, 0x6D, 0x14, 0x20, + 0xFE, 0xA3, 0x00, 0x00, 0x00, 0x02, 0x00, 0x56, 0xFF, 0x74, 0x03, 0x12, 0x03, 0x7D, 0x00, 0x16, + 0x00, 0x26, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x07, 0x33, 0x36, 0x37, 0x01, 0x33, 0x11, 0x33, + 0x15, 0x07, 0x23, 0x37, 0x23, 0x11, 0x37, 0x23, 0x06, 0x07, 0x01, 0x12, 0x22, 0x26, 0x3D, 0x01, + 0x33, 0x15, 0x14, 0x16, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x56, 0x81, 0x07, 0x02, 0x22, + 0x1A, 0x01, 0x0C, 0x80, 0x78, 0x4F, 0x5A, 0x27, 0x76, 0x07, 0x02, 0x21, 0x1A, 0xFE, 0xF2, 0xEE, + 0x88, 0x60, 0x61, 0x28, 0x36, 0x29, 0x60, 0x02, 0xC6, 0xFE, 0x66, 0x6E, 0x45, 0x2A, 0x01, 0x99, + 0xFD, 0xA9, 0x46, 0xB5, 0x8C, 0x01, 0x99, 0x6E, 0x44, 0x2A, 0xFE, 0x67, 0x02, 0xE6, 0x4B, 0x3F, + 0x0D, 0x0D, 0x1E, 0x21, 0x21, 0x1F, 0x0C, 0x0D, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x44, + 0xFF, 0x88, 0x02, 0x83, 0x02, 0xC6, 0x00, 0x18, 0x00, 0x28, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, + 0x14, 0x07, 0x33, 0x36, 0x37, 0x13, 0x33, 0x11, 0x33, 0x15, 0x07, 0x23, 0x37, 0x23, 0x11, 0x34, + 0x37, 0x23, 0x06, 0x07, 0x03, 0x12, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x16, 0x32, 0x36, + 0x3D, 0x01, 0x33, 0x15, 0x14, 0x44, 0x79, 0x03, 0x02, 0x04, 0x22, 0xBD, 0x7B, 0x69, 0x45, 0x55, + 0x21, 0x69, 0x03, 0x02, 0x03, 0x23, 0xBD, 0xB9, 0x88, 0x60, 0x61, 0x28, 0x36, 0x29, 0x60, 0x01, + 0xFE, 0xFE, 0xEF, 0x25, 0x18, 0x09, 0x34, 0x01, 0x11, 0xFE, 0x6D, 0x43, 0xA0, 0x78, 0x01, 0x10, + 0x16, 0x27, 0x07, 0x36, 0xFE, 0xF0, 0x02, 0x2F, 0x4B, 0x3F, 0x0D, 0x0D, 0x1E, 0x21, 0x21, 0x1F, + 0x0C, 0x0D, 0x3F, 0x00, 0x00, 0x02, 0x00, 0x09, 0x00, 0x00, 0x02, 0x9A, 0x02, 0xEE, 0x00, 0x12, + 0x00, 0x1A, 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x27, 0x33, 0x32, 0x36, 0x34, 0x26, 0x2B, 0x01, 0xAA, + 0xA1, 0xA4, 0x7E, 0xC0, 0xC0, 0x8F, 0x63, 0x7D, 0x7D, 0x62, 0x90, 0x79, 0x35, 0x3E, 0x3F, 0x36, + 0x77, 0x02, 0x31, 0x62, 0x5B, 0x5B, 0x62, 0x7B, 0x79, 0x62, 0x61, 0x7A, 0x6F, 0x3A, 0x64, 0x3A, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x02, 0x1B, 0x02, 0xC6, 0x00, 0x12, 0x00, 0x1B, 0x00, 0x00, + 0x33, 0x11, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x23, 0x27, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x7A, 0x7A, 0x79, 0x7F, + 0xA4, 0xA3, 0x63, 0x5B, 0x64, 0x5F, 0x61, 0x62, 0x4D, 0x2B, 0x2B, 0x2C, 0x2B, 0x4C, 0x01, 0xCA, + 0x5C, 0xA0, 0xA0, 0x5C, 0x7B, 0x57, 0x52, 0x4D, 0x59, 0x57, 0x2C, 0x24, 0x25, 0x2D, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0x4A, 0x02, 0xC6, 0x00, 0x0E, 0x00, 0x1B, 0x00, 0x00, + 0x33, 0x11, 0x21, 0x32, 0x16, 0x15, 0x14, 0x07, 0x17, 0x07, 0x27, 0x06, 0x2B, 0x01, 0x15, 0x13, + 0x37, 0x17, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x15, 0x33, 0x32, 0x37, 0x56, 0x01, 0x12, 0x64, + 0x7E, 0x3F, 0x39, 0x43, 0x3F, 0x27, 0x33, 0x91, 0x65, 0x44, 0x42, 0x10, 0x41, 0x3A, 0x80, 0x7E, + 0x13, 0x14, 0x02, 0xC6, 0x80, 0x67, 0x68, 0x41, 0x48, 0x38, 0x4F, 0x10, 0xF5, 0x01, 0xAE, 0x38, + 0x54, 0x20, 0x26, 0x3C, 0x43, 0xFF, 0x05, 0x00, 0x00, 0x02, 0x00, 0x44, 0xFF, 0x38, 0x02, 0x3E, + 0x02, 0x0A, 0x00, 0x1D, 0x00, 0x2D, 0x00, 0x00, 0x17, 0x11, 0x33, 0x15, 0x07, 0x33, 0x3E, 0x04, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x17, 0x07, 0x27, 0x06, 0x23, 0x22, 0x26, 0x2F, 0x01, 0x23, + 0x16, 0x1D, 0x01, 0x13, 0x37, 0x17, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, + 0x33, 0x32, 0x37, 0x44, 0x74, 0x02, 0x02, 0x02, 0x07, 0x1D, 0x22, 0x3B, 0x21, 0x67, 0x7B, 0x39, + 0x36, 0x43, 0x37, 0x31, 0x3B, 0x2C, 0x4A, 0x0F, 0x0E, 0x02, 0x03, 0x73, 0x43, 0x3E, 0x12, 0x49, + 0x3B, 0x3A, 0x4C, 0x46, 0x3E, 0x1C, 0x19, 0xC8, 0x02, 0xC6, 0x26, 0x24, 0x03, 0x0C, 0x1E, 0x16, + 0x13, 0x94, 0x77, 0x6E, 0x49, 0x41, 0x3A, 0x41, 0x1A, 0x24, 0x12, 0x12, 0x12, 0x1A, 0xD8, 0x01, + 0x7D, 0x3A, 0x4B, 0x26, 0x2F, 0x4A, 0x5A, 0x52, 0x53, 0x41, 0x5D, 0x0B, 0x00, 0x01, 0x00, 0x56, + 0x00, 0x00, 0x01, 0xF9, 0x03, 0x30, 0x00, 0x07, 0x00, 0x00, 0x33, 0x11, 0x21, 0x35, 0x33, 0x15, + 0x21, 0x11, 0x56, 0x01, 0x3A, 0x69, 0xFE, 0xDE, 0x02, 0xC6, 0x6A, 0xD9, 0xFD, 0xA9, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x44, 0x00, 0x00, 0x01, 0x9A, 0x02, 0x64, 0x00, 0x07, 0x00, 0x00, 0x33, 0x11, + 0x33, 0x35, 0x33, 0x15, 0x23, 0x11, 0x44, 0xF3, 0x63, 0xD7, 0x01, 0xFE, 0x66, 0xD2, 0xFE, 0x6E, + 0x00, 0x01, 0x00, 0x20, 0x00, 0x00, 0x01, 0xF3, 0x02, 0xC6, 0x00, 0x0D, 0x00, 0x00, 0x33, 0x11, + 0x23, 0x35, 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x11, 0x5B, 0x3B, 0x3B, 0x01, + 0x98, 0xFE, 0xE8, 0x9E, 0x9E, 0x01, 0x2A, 0x5B, 0x01, 0x41, 0x6F, 0xD2, 0x5B, 0xFE, 0xD6, 0x00, + 0x00, 0x01, 0x00, 0x0C, 0x00, 0x00, 0x01, 0x99, 0x01, 0xFE, 0x00, 0x0D, 0x00, 0x00, 0x33, 0x35, + 0x23, 0x35, 0x33, 0x35, 0x21, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x49, 0x3D, 0x3D, 0x01, + 0x50, 0xD1, 0x7E, 0x7E, 0xC4, 0x51, 0xE9, 0x6C, 0x7D, 0x51, 0xC4, 0x00, 0x00, 0x01, 0x00, 0x56, + 0xFF, 0x49, 0x02, 0x50, 0x02, 0xC6, 0x00, 0x17, 0x00, 0x00, 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x35, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, + 0x07, 0x11, 0x56, 0x01, 0x99, 0xFE, 0xE8, 0x3A, 0x46, 0x77, 0x82, 0x8D, 0x82, 0x3F, 0x49, 0x44, + 0x4C, 0x2D, 0x35, 0x02, 0xC6, 0x6F, 0xC8, 0x18, 0x92, 0x8D, 0xA2, 0x9D, 0x68, 0x5F, 0x78, 0x5A, + 0x56, 0x15, 0xFE, 0xDD, 0x00, 0x01, 0x00, 0x44, 0xFF, 0x30, 0x01, 0xEC, 0x01, 0xFE, 0x00, 0x14, + 0x00, 0x00, 0x33, 0x11, 0x21, 0x15, 0x23, 0x15, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x27, + 0x36, 0x35, 0x34, 0x23, 0x22, 0x07, 0x15, 0x44, 0x01, 0x5B, 0xDC, 0x2F, 0x39, 0x61, 0x60, 0x9E, + 0x3C, 0x61, 0x65, 0x2A, 0x21, 0x01, 0xFE, 0x66, 0x89, 0x15, 0x7B, 0x5F, 0xB6, 0x64, 0x57, 0x3F, + 0x7B, 0x7C, 0x15, 0xA8, 0x00, 0x01, 0x00, 0x0D, 0xFF, 0x74, 0x03, 0xC3, 0x02, 0xC6, 0x00, 0x1B, + 0x00, 0x00, 0x33, 0x13, 0x35, 0x03, 0x33, 0x13, 0x33, 0x11, 0x33, 0x11, 0x33, 0x13, 0x33, 0x03, + 0x15, 0x13, 0x33, 0x15, 0x23, 0x35, 0x23, 0x03, 0x23, 0x11, 0x23, 0x11, 0x23, 0x03, 0x0D, 0xC8, + 0xB9, 0x8B, 0x98, 0x53, 0x80, 0x53, 0x98, 0x8B, 0xBA, 0x8C, 0x69, 0x73, 0x4A, 0xA1, 0x53, 0x80, + 0x53, 0xA1, 0x01, 0x72, 0x02, 0x01, 0x52, 0xFE, 0xDF, 0x01, 0x21, 0xFE, 0xDF, 0x01, 0x21, 0xFE, + 0xAE, 0x02, 0xFE, 0xFD, 0xFB, 0x8C, 0x01, 0x36, 0xFE, 0xCA, 0x01, 0x36, 0xFE, 0xCA, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x0D, 0xFF, 0x88, 0x03, 0x2A, 0x01, 0xFE, 0x00, 0x1B, 0x00, 0x00, 0x33, 0x13, + 0x35, 0x27, 0x33, 0x17, 0x33, 0x35, 0x33, 0x15, 0x33, 0x37, 0x33, 0x07, 0x15, 0x17, 0x33, 0x15, + 0x23, 0x35, 0x23, 0x27, 0x23, 0x15, 0x23, 0x35, 0x23, 0x07, 0x0D, 0x9C, 0x8F, 0x84, 0x71, 0x3E, + 0x77, 0x3E, 0x71, 0x84, 0x8E, 0x5B, 0x66, 0x72, 0x3F, 0x75, 0x40, 0x77, 0x40, 0x75, 0x01, 0x06, + 0x02, 0xF6, 0xC6, 0xC6, 0xC6, 0xC6, 0xF6, 0x02, 0x9A, 0xE4, 0x78, 0xCD, 0xCD, 0xCD, 0xCD, 0x00, + 0x00, 0x01, 0x00, 0x16, 0xFF, 0x74, 0x01, 0xFE, 0x02, 0xD2, 0x00, 0x28, 0x00, 0x00, 0x3F, 0x01, + 0x1E, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, + 0x26, 0x23, 0x22, 0x07, 0x27, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x15, 0x1E, 0x01, 0x15, + 0x14, 0x06, 0x07, 0x15, 0x23, 0x35, 0x26, 0x16, 0x46, 0x1D, 0x56, 0x2D, 0x3A, 0x44, 0x3D, 0x34, + 0x57, 0x46, 0x30, 0x3E, 0x38, 0x35, 0x51, 0x49, 0x34, 0x5E, 0x86, 0x5B, 0x7F, 0x62, 0x37, 0x40, + 0x66, 0x52, 0x74, 0x72, 0x59, 0x56, 0x1F, 0x2A, 0x3A, 0x33, 0x2E, 0x35, 0x68, 0x38, 0x2A, 0x2B, + 0x37, 0x3C, 0x5E, 0x4E, 0x68, 0x5A, 0x69, 0x35, 0x02, 0x11, 0x56, 0x3E, 0x52, 0x6F, 0x10, 0x86, + 0x85, 0x11, 0x00, 0x00, 0x00, 0x01, 0x00, 0x16, 0xFF, 0x88, 0x01, 0xA4, 0x02, 0x0A, 0x00, 0x23, + 0x00, 0x00, 0x3F, 0x01, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2B, 0x01, 0x35, 0x33, 0x32, 0x35, + 0x34, 0x23, 0x22, 0x07, 0x27, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x15, 0x16, 0x15, 0x14, + 0x06, 0x07, 0x15, 0x23, 0x35, 0x26, 0x16, 0x36, 0x3C, 0x45, 0x29, 0x2F, 0x55, 0x3E, 0x34, 0x4F, + 0x4C, 0x3C, 0x3F, 0x29, 0x4D, 0x6F, 0x4E, 0x65, 0x46, 0x56, 0x4B, 0x3E, 0x6F, 0x59, 0x3F, 0x51, + 0x3A, 0x25, 0x20, 0x3F, 0x58, 0x3B, 0x3D, 0x2A, 0x51, 0x39, 0x4B, 0x41, 0x52, 0x21, 0x02, 0x20, + 0x55, 0x3D, 0x4F, 0x0D, 0x73, 0x70, 0x0E, 0x00, 0x00, 0x01, 0x00, 0x56, 0xFF, 0x74, 0x02, 0x9A, + 0x02, 0xC6, 0x00, 0x11, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x33, 0x13, 0x33, 0x03, 0x15, 0x13, + 0x33, 0x15, 0x23, 0x35, 0x23, 0x03, 0x23, 0x11, 0x56, 0x81, 0x5C, 0xA7, 0x8C, 0xC9, 0x95, 0x68, + 0x73, 0x47, 0xAD, 0x5C, 0x02, 0xC6, 0xFE, 0xDF, 0x01, 0x21, 0xFE, 0xAE, 0x02, 0xFE, 0xFD, 0xFB, + 0x8C, 0x01, 0x36, 0xFE, 0xCA, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x44, 0xFF, 0x88, 0x02, 0x39, + 0x01, 0xFE, 0x00, 0x11, 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, 0x33, 0x37, 0x33, 0x07, 0x15, 0x17, + 0x33, 0x15, 0x23, 0x35, 0x23, 0x27, 0x23, 0x15, 0x44, 0x7F, 0x3E, 0x7C, 0x8D, 0xA2, 0x6C, 0x65, + 0x72, 0x3C, 0x86, 0x42, 0x01, 0xFE, 0xC3, 0xC3, 0xF3, 0x02, 0x9D, 0xE4, 0x78, 0xCF, 0xCF, 0x00, + 0x00, 0x01, 0x00, 0x56, 0x00, 0x00, 0x02, 0xDA, 0x02, 0xC6, 0x00, 0x15, 0x00, 0x00, 0x33, 0x11, + 0x33, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x13, 0x33, 0x03, 0x15, 0x13, 0x23, 0x03, 0x23, 0x15, + 0x23, 0x35, 0x23, 0x11, 0x56, 0x81, 0x3F, 0x5C, 0x29, 0xA6, 0x8C, 0xC8, 0xD5, 0x92, 0xAD, 0x29, + 0x5C, 0x3F, 0x02, 0xC6, 0xFE, 0xDF, 0x72, 0x72, 0x01, 0x21, 0xFE, 0xAE, 0x02, 0xFE, 0x8E, 0x01, + 0x36, 0x74, 0x74, 0xFE, 0xCA, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x44, 0x00, 0x00, 0x02, 0x74, + 0x01, 0xFE, 0x00, 0x15, 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x37, + 0x33, 0x07, 0x15, 0x13, 0x23, 0x27, 0x23, 0x15, 0x23, 0x35, 0x23, 0x15, 0x44, 0x7F, 0x2D, 0x58, + 0x0F, 0x7C, 0x8D, 0xA2, 0xB6, 0x93, 0x86, 0x13, 0x58, 0x2D, 0x01, 0xFE, 0xC3, 0x62, 0x62, 0xC3, + 0xF3, 0x02, 0xFE, 0xF7, 0xCF, 0x64, 0x64, 0xCF, 0x00, 0x01, 0x00, 0x16, 0x00, 0x00, 0x02, 0x75, + 0x02, 0xC6, 0x00, 0x15, 0x00, 0x00, 0x13, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x33, 0x13, 0x33, 0x03, 0x15, 0x13, 0x23, 0x03, 0x23, 0x11, 0x23, 0x11, 0x16, 0x43, 0x81, 0x55, + 0x55, 0x5C, 0xA7, 0x8C, 0xC9, 0xD5, 0x92, 0xAD, 0x5C, 0x81, 0x02, 0x09, 0x57, 0x66, 0x66, 0x57, + 0x64, 0x01, 0x21, 0xFE, 0xAE, 0x02, 0xFE, 0x8E, 0x01, 0x36, 0xFE, 0xCA, 0x02, 0x09, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x07, 0x00, 0x00, 0x02, 0x1E, 0x02, 0xC6, 0x00, 0x15, 0x00, 0x00, 0x33, 0x11, + 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x37, 0x33, 0x07, 0x15, 0x13, + 0x23, 0x27, 0x23, 0x15, 0x44, 0x3D, 0x3D, 0x7F, 0x65, 0x65, 0x3F, 0x7B, 0x8D, 0xA1, 0xB5, 0x92, + 0x87, 0x42, 0x02, 0x10, 0x55, 0x61, 0x61, 0x55, 0xCD, 0xBB, 0xEB, 0x02, 0xFE, 0xEF, 0xD7, 0xD7, + 0x00, 0x01, 0x00, 0x10, 0x00, 0x00, 0x02, 0xF5, 0x02, 0xC6, 0x00, 0x0F, 0x00, 0x00, 0x33, 0x11, + 0x23, 0x35, 0x21, 0x11, 0x33, 0x13, 0x33, 0x03, 0x15, 0x13, 0x23, 0x03, 0x23, 0x11, 0xDA, 0xCA, + 0x01, 0x4A, 0x5D, 0xA6, 0x8C, 0xC9, 0xD5, 0x91, 0xAD, 0x5D, 0x02, 0x57, 0x6F, 0xFE, 0xDF, 0x01, + 0x21, 0xFE, 0xAE, 0x02, 0xFE, 0x8E, 0x01, 0x36, 0xFE, 0xCA, 0x00, 0x00, 0x00, 0x01, 0x00, 0x09, + 0x00, 0x00, 0x02, 0x69, 0x01, 0xFE, 0x00, 0x0F, 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, + 0x33, 0x37, 0x33, 0x07, 0x15, 0x13, 0x23, 0x27, 0x23, 0x15, 0x8F, 0x86, 0x01, 0x05, 0x3E, 0x7C, + 0x8C, 0xA1, 0xB6, 0x93, 0x87, 0x41, 0x01, 0x92, 0x6C, 0xC3, 0xC3, 0xF3, 0x02, 0xFE, 0xF7, 0xCF, + 0xCF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x56, 0xFF, 0x74, 0x03, 0x04, 0x02, 0xC6, 0x00, 0x0F, + 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x33, 0x15, 0x23, 0x35, 0x23, 0x11, + 0x21, 0x11, 0x56, 0x81, 0x01, 0x45, 0x80, 0x68, 0x73, 0x75, 0xFE, 0xBB, 0x02, 0xC6, 0xFE, 0xD3, + 0x01, 0x2D, 0xFD, 0xA9, 0xFB, 0x8C, 0x01, 0x2A, 0xFE, 0xD6, 0x00, 0x00, 0x00, 0x01, 0x00, 0x44, + 0xFF, 0x88, 0x02, 0x76, 0x01, 0xFE, 0x00, 0x0F, 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, 0x33, 0x35, + 0x33, 0x11, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x15, 0x44, 0x7F, 0xDA, 0x7F, 0x5A, 0x72, + 0x67, 0xDA, 0x01, 0xFE, 0xC5, 0xC5, 0xFE, 0x6E, 0xE4, 0x78, 0xCE, 0xCE, 0x00, 0x01, 0x00, 0x56, + 0x00, 0x00, 0x03, 0xA2, 0x02, 0xC6, 0x00, 0x0D, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x21, 0x11, + 0x21, 0x15, 0x21, 0x11, 0x23, 0x11, 0x21, 0x11, 0x56, 0x81, 0x01, 0x33, 0x01, 0x98, 0xFE, 0xE8, + 0x80, 0xFE, 0xCD, 0x02, 0xC6, 0xFE, 0xD3, 0x01, 0x2D, 0x6F, 0xFD, 0xA9, 0x01, 0x2A, 0xFE, 0xD6, + 0x00, 0x01, 0x00, 0x44, 0x00, 0x00, 0x02, 0xD2, 0x01, 0xFE, 0x00, 0x0D, 0x00, 0x00, 0x33, 0x11, + 0x33, 0x15, 0x33, 0x35, 0x21, 0x15, 0x23, 0x11, 0x23, 0x35, 0x23, 0x15, 0x44, 0x7F, 0xCC, 0x01, + 0x43, 0xC4, 0x7F, 0xCC, 0x01, 0xFE, 0xC5, 0xC5, 0x6C, 0xFE, 0x6E, 0xCE, 0xCE, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x56, 0xFF, 0x49, 0x03, 0xCA, 0x02, 0xC6, 0x00, 0x18, 0x00, 0x00, 0x33, 0x11, + 0x21, 0x11, 0x36, 0x33, 0x32, 0x16, 0x15, 0x10, 0x21, 0x35, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x22, 0x07, 0x11, 0x23, 0x11, 0x23, 0x11, 0x56, 0x01, 0xFB, 0x3A, 0x46, 0x77, 0x82, 0xFE, 0xF1, + 0x3F, 0x49, 0x44, 0x4B, 0x23, 0x40, 0x80, 0xFA, 0x02, 0xC6, 0xFE, 0xD3, 0x18, 0x96, 0x93, 0xFE, + 0xC1, 0x68, 0x5F, 0x78, 0x63, 0x5E, 0x16, 0xFE, 0xCD, 0x02, 0x58, 0xFD, 0xA8, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x44, 0xFF, 0x30, 0x03, 0x29, 0x01, 0xFE, 0x00, 0x17, 0x00, 0x00, 0x33, 0x11, + 0x21, 0x15, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x27, 0x36, 0x35, 0x34, 0x23, 0x22, + 0x07, 0x15, 0x23, 0x11, 0x23, 0x11, 0x44, 0x01, 0xAC, 0x31, 0x38, 0x60, 0x70, 0x56, 0x48, 0x3D, + 0x61, 0x6E, 0x2D, 0x24, 0x7F, 0xAE, 0x01, 0xFE, 0xCD, 0x17, 0x83, 0x69, 0x63, 0x99, 0x30, 0x57, + 0x42, 0x8D, 0x88, 0x15, 0xC9, 0x01, 0x92, 0xFE, 0x6E, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x2D, + 0xFF, 0xF4, 0x03, 0x76, 0x02, 0xD2, 0x00, 0x24, 0x00, 0x2F, 0x00, 0x00, 0x13, 0x34, 0x3E, 0x02, + 0x37, 0x17, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x33, 0x32, 0x37, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x07, 0x16, 0x3B, 0x01, 0x15, 0x23, 0x22, 0x27, 0x06, 0x23, 0x22, 0x26, + 0x25, 0x14, 0x17, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x2D, 0x2D, 0x4A, 0x4D, 0x28, + 0x35, 0x41, 0x5E, 0x7E, 0x75, 0x27, 0x2B, 0x8A, 0x98, 0x71, 0x75, 0x8E, 0x50, 0x46, 0x2A, 0x31, + 0x33, 0x35, 0x69, 0x5E, 0x66, 0x6C, 0xA2, 0xD1, 0x01, 0xC2, 0x76, 0x40, 0x4C, 0x46, 0x39, 0x36, + 0x4D, 0x01, 0x70, 0x4A, 0x7F, 0x54, 0x36, 0x0F, 0x74, 0x1C, 0x7B, 0x5C, 0x6B, 0x96, 0x0A, 0x76, + 0xB1, 0x86, 0xA5, 0xA1, 0x7F, 0x54, 0xA1, 0x3F, 0x09, 0x69, 0x27, 0x33, 0xD1, 0xD8, 0xA0, 0x55, + 0x2D, 0x87, 0x49, 0x4F, 0x5C, 0x5C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0xF2, + 0x02, 0x0A, 0x00, 0x21, 0x00, 0x2B, 0x00, 0x00, 0x13, 0x34, 0x36, 0x37, 0x17, 0x0E, 0x01, 0x15, + 0x14, 0x16, 0x33, 0x32, 0x37, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x16, + 0x3B, 0x01, 0x15, 0x23, 0x22, 0x27, 0x06, 0x23, 0x22, 0x26, 0x25, 0x14, 0x17, 0x36, 0x35, 0x34, + 0x26, 0x23, 0x22, 0x06, 0x25, 0x6D, 0x49, 0x2C, 0x2E, 0x3E, 0x5D, 0x5C, 0x22, 0x20, 0x67, 0x7E, + 0x64, 0x63, 0x75, 0x71, 0x1B, 0x23, 0x3C, 0x36, 0x5B, 0x53, 0x5B, 0x60, 0x8B, 0xA3, 0x01, 0x81, + 0x5F, 0x6D, 0x35, 0x2F, 0x30, 0x38, 0x01, 0x08, 0x64, 0x83, 0x1B, 0x66, 0x15, 0x52, 0x38, 0x46, + 0x66, 0x07, 0x51, 0x7D, 0x5D, 0x7F, 0x74, 0x56, 0x76, 0x66, 0x04, 0x60, 0x1F, 0x2B, 0x9A, 0xA3, + 0x6A, 0x3A, 0x43, 0x68, 0x33, 0x3D, 0x43, 0x00, 0x00, 0x01, 0x00, 0x2D, 0xFF, 0x74, 0x02, 0xB3, + 0x02, 0xD2, 0x00, 0x19, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x2E, 0x01, 0x23, + 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x37, 0x17, 0x06, 0x07, 0x15, 0x23, 0x35, 0x2E, 0x01, + 0x2D, 0xCE, 0x9F, 0xA2, 0x64, 0x3E, 0x27, 0x69, 0x32, 0x70, 0x7E, 0x80, 0x6F, 0x72, 0x5C, 0x44, + 0x62, 0x8A, 0x74, 0x86, 0xA0, 0x01, 0x66, 0x9C, 0xD0, 0x61, 0x60, 0x21, 0x2A, 0x8C, 0x68, 0x69, + 0x95, 0x5A, 0x5D, 0x64, 0x0D, 0x82, 0x86, 0x17, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x25, + 0xFF, 0x88, 0x02, 0x0C, 0x02, 0x0A, 0x00, 0x18, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x17, 0x07, 0x26, 0x23, 0x22, 0x06, 0x14, 0x16, 0x33, 0x32, 0x37, 0x17, 0x06, 0x07, 0x15, 0x23, + 0x35, 0x2E, 0x01, 0x25, 0x99, 0x7C, 0x37, 0x6A, 0x23, 0x39, 0x37, 0x4D, 0x45, 0x56, 0x58, 0x47, + 0x53, 0x43, 0x31, 0x3D, 0x68, 0x70, 0x60, 0x72, 0x00, 0xFF, 0x70, 0x9B, 0x26, 0x26, 0x57, 0x37, + 0x5B, 0x86, 0x5D, 0x41, 0x5A, 0x42, 0x0E, 0x6F, 0x73, 0x13, 0x90, 0x00, 0x00, 0x01, 0x00, 0x0D, + 0xFF, 0x74, 0x02, 0x5F, 0x02, 0xC6, 0x00, 0x0C, 0x00, 0x00, 0x33, 0x37, 0x11, 0x23, 0x35, 0x21, + 0x15, 0x23, 0x11, 0x33, 0x15, 0x23, 0x35, 0xF5, 0x01, 0xE9, 0x02, 0x52, 0xE9, 0x68, 0x73, 0x02, + 0x02, 0x55, 0x6F, 0x6F, 0xFE, 0x18, 0xFB, 0x8C, 0x00, 0x01, 0x00, 0x13, 0xFF, 0x88, 0x01, 0xE2, + 0x01, 0xFE, 0x00, 0x0B, 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15, + 0x23, 0x35, 0xBB, 0xA8, 0x01, 0xCF, 0xA9, 0x5A, 0x72, 0x01, 0x92, 0x6C, 0x6C, 0xFE, 0xDA, 0xE4, + 0x78, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFC, 0x00, 0x00, 0x02, 0x55, 0x02, 0xC6, 0x00, 0x0C, + 0x00, 0x00, 0x33, 0x11, 0x03, 0x33, 0x1F, 0x01, 0x33, 0x36, 0x3F, 0x01, 0x33, 0x03, 0x11, 0xE9, + 0xED, 0x92, 0x6F, 0x2B, 0x02, 0x15, 0x16, 0x6E, 0x92, 0xEC, 0x01, 0x29, 0x01, 0x9D, 0xD1, 0x5F, + 0x33, 0x2C, 0xD1, 0xFE, 0x63, 0xFE, 0xD7, 0x00, 0x00, 0x01, 0x00, 0x0B, 0xFF, 0x38, 0x02, 0x12, + 0x01, 0xFE, 0x00, 0x0C, 0x00, 0x00, 0x37, 0x03, 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, + 0x03, 0x15, 0x23, 0xD0, 0xC5, 0x85, 0x6A, 0x13, 0x02, 0x09, 0x0A, 0x6A, 0x86, 0xC4, 0x7E, 0x0E, + 0x01, 0xF0, 0xFE, 0xDD, 0x4B, 0x2C, 0x1F, 0x01, 0x23, 0xFE, 0x10, 0xD6, 0x00, 0x01, 0xFF, 0xFC, + 0x00, 0x00, 0x02, 0x55, 0x02, 0xC6, 0x00, 0x12, 0x00, 0x00, 0x37, 0x35, 0x33, 0x03, 0x33, 0x1F, + 0x01, 0x33, 0x36, 0x3F, 0x01, 0x33, 0x03, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x76, 0x6D, 0xE7, + 0x92, 0x6F, 0x2B, 0x02, 0x15, 0x16, 0x6E, 0x92, 0xE7, 0x74, 0x79, 0x80, 0xD7, 0x5C, 0x01, 0x93, + 0xD1, 0x5F, 0x33, 0x2C, 0xD1, 0xFE, 0x6D, 0x5C, 0xD7, 0xD7, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0B, + 0xFF, 0x38, 0x02, 0x11, 0x01, 0xFE, 0x00, 0x12, 0x00, 0x00, 0x33, 0x35, 0x33, 0x03, 0x33, 0x13, + 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, 0x03, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x5A, 0x58, 0xA7, + 0x86, 0x69, 0x13, 0x02, 0x09, 0x0A, 0x69, 0x86, 0xA6, 0x59, 0x76, 0x7E, 0x58, 0x01, 0xA6, 0xFE, + 0xDD, 0x4B, 0x2C, 0x1F, 0x01, 0x23, 0xFE, 0x5A, 0x58, 0xC8, 0xC8, 0x00, 0x00, 0x01, 0x00, 0x0D, + 0xFF, 0x74, 0x02, 0x8A, 0x02, 0xC6, 0x00, 0x17, 0x00, 0x00, 0x33, 0x13, 0x03, 0x33, 0x1F, 0x01, + 0x33, 0x36, 0x3F, 0x01, 0x33, 0x03, 0x17, 0x33, 0x15, 0x23, 0x35, 0x23, 0x2F, 0x01, 0x23, 0x06, + 0x0F, 0x01, 0x0D, 0xDC, 0xD4, 0x93, 0x62, 0x2C, 0x02, 0x14, 0x18, 0x63, 0x93, 0xD5, 0x99, 0x6C, + 0x74, 0x44, 0x6F, 0x2C, 0x02, 0x14, 0x17, 0x6E, 0x01, 0x68, 0x01, 0x5E, 0xAE, 0x57, 0x2D, 0x2A, + 0xAE, 0xFE, 0xA2, 0xF9, 0xFB, 0x8C, 0xBF, 0x54, 0x2B, 0x29, 0xBF, 0x00, 0x00, 0x01, 0x00, 0x0F, + 0xFF, 0x88, 0x02, 0x15, 0x01, 0xFE, 0x00, 0x17, 0x00, 0x00, 0x33, 0x13, 0x27, 0x33, 0x1F, 0x01, + 0x33, 0x36, 0x3F, 0x01, 0x33, 0x07, 0x17, 0x33, 0x15, 0x23, 0x35, 0x23, 0x2F, 0x01, 0x23, 0x06, + 0x0F, 0x01, 0x0F, 0xA8, 0xA4, 0x90, 0x4F, 0x10, 0x02, 0x0A, 0x07, 0x4F, 0x90, 0xA4, 0x62, 0x63, + 0x72, 0x38, 0x58, 0x0F, 0x02, 0x07, 0x07, 0x58, 0x01, 0x02, 0xFC, 0x8B, 0x20, 0x13, 0x0D, 0x8B, + 0xFC, 0x96, 0xE4, 0x78, 0x94, 0x1B, 0x10, 0x0B, 0x94, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x10, + 0xFF, 0x74, 0x03, 0x76, 0x02, 0xC6, 0x00, 0x0F, 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, + 0x23, 0x11, 0x21, 0x11, 0x33, 0x11, 0x33, 0x15, 0x23, 0x35, 0xDA, 0xCA, 0x02, 0x13, 0xC9, 0x01, + 0x3E, 0x80, 0x5E, 0x73, 0x02, 0x57, 0x6F, 0x6F, 0xFE, 0x18, 0x02, 0x57, 0xFD, 0xA9, 0xFB, 0x8C, + 0x00, 0x01, 0x00, 0x14, 0xFF, 0x89, 0x02, 0xD1, 0x01, 0xFE, 0x00, 0x0F, 0x00, 0x00, 0x33, 0x11, + 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x23, 0x35, 0x9F, 0x8B, + 0x01, 0x96, 0x8C, 0xE6, 0x7F, 0x4E, 0x73, 0x01, 0x92, 0x6C, 0x6C, 0xFE, 0xDA, 0x01, 0x92, 0xFE, + 0x6E, 0xE3, 0x77, 0x00, 0x00, 0x01, 0x00, 0x2E, 0xFF, 0x74, 0x02, 0xA5, 0x02, 0xC6, 0x00, 0x16, + 0x00, 0x00, 0x01, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x33, 0x32, 0x37, 0x11, 0x33, 0x11, + 0x33, 0x15, 0x23, 0x35, 0x23, 0x11, 0x37, 0x23, 0x06, 0x01, 0x07, 0x6D, 0x6C, 0x83, 0x77, 0x51, + 0x41, 0x83, 0x68, 0x73, 0x78, 0x02, 0x02, 0x56, 0x01, 0x08, 0x6F, 0x66, 0xE9, 0xCC, 0x7D, 0x2A, + 0x01, 0x1F, 0xFD, 0xA9, 0xFB, 0x8C, 0x01, 0x13, 0x21, 0x2C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x26, + 0xFF, 0x88, 0x02, 0x37, 0x01, 0xFE, 0x00, 0x15, 0x00, 0x00, 0x24, 0x22, 0x26, 0x3D, 0x01, 0x33, + 0x15, 0x14, 0x33, 0x32, 0x37, 0x35, 0x33, 0x11, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x37, 0x23, + 0x01, 0x20, 0x9C, 0x5E, 0x7D, 0x57, 0x35, 0x2E, 0x7E, 0x5C, 0x71, 0x69, 0x01, 0x02, 0xA9, 0x55, + 0x55, 0xAB, 0x96, 0x55, 0x20, 0xCB, 0xFE, 0x6E, 0xE4, 0x78, 0xAE, 0x1C, 0x00, 0x01, 0x00, 0x2C, + 0x00, 0x00, 0x02, 0x55, 0x02, 0xC6, 0x00, 0x19, 0x00, 0x00, 0x01, 0x22, 0x26, 0x3D, 0x01, 0x33, + 0x15, 0x14, 0x17, 0x35, 0x33, 0x15, 0x36, 0x37, 0x11, 0x33, 0x11, 0x23, 0x11, 0x37, 0x23, 0x06, + 0x07, 0x15, 0x23, 0x35, 0x01, 0x13, 0x74, 0x73, 0x83, 0x66, 0x5C, 0x39, 0x28, 0x83, 0x83, 0x02, + 0x02, 0x2B, 0x36, 0x5C, 0x01, 0x0D, 0x6F, 0x66, 0xE4, 0xCC, 0x72, 0x0A, 0x89, 0x83, 0x0B, 0x18, + 0x01, 0x1F, 0xFD, 0x3A, 0x01, 0x18, 0x21, 0x13, 0x0E, 0x71, 0x66, 0x00, 0x00, 0x01, 0x00, 0x26, + 0x00, 0x00, 0x02, 0x02, 0x01, 0xFE, 0x00, 0x19, 0x00, 0x00, 0x37, 0x22, 0x26, 0x3D, 0x01, 0x33, + 0x15, 0x14, 0x17, 0x35, 0x33, 0x15, 0x36, 0x37, 0x35, 0x33, 0x11, 0x23, 0x35, 0x37, 0x23, 0x06, + 0x07, 0x15, 0x23, 0x35, 0xDF, 0x53, 0x66, 0x7D, 0x43, 0x58, 0x27, 0x1E, 0x7F, 0x7F, 0x02, 0x02, + 0x1F, 0x26, 0x58, 0xAC, 0x53, 0x54, 0xAB, 0x96, 0x43, 0x0F, 0x76, 0x74, 0x08, 0x13, 0xCB, 0xFE, + 0x02, 0xB5, 0x1B, 0x10, 0x08, 0x5B, 0x4F, 0x00, 0x00, 0x01, 0x00, 0x56, 0x00, 0x00, 0x02, 0x50, + 0x02, 0xC6, 0x00, 0x12, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x07, 0x33, 0x36, 0x33, 0x32, 0x16, + 0x1D, 0x01, 0x23, 0x35, 0x34, 0x23, 0x22, 0x07, 0x11, 0x56, 0x81, 0x02, 0x02, 0x54, 0x5B, 0x66, + 0x64, 0x83, 0x70, 0x4A, 0x3C, 0x02, 0xC6, 0xFE, 0xFB, 0x21, 0x29, 0x75, 0x65, 0xEF, 0xDB, 0x7C, + 0x26, 0xFE, 0xCF, 0x00, 0x00, 0x01, 0x00, 0x44, 0x00, 0x00, 0x02, 0x25, 0x02, 0xC6, 0x00, 0x14, + 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x15, 0x11, 0x23, 0x11, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x1D, 0x01, 0x44, 0x7F, 0x03, 0x02, 0x15, 0x5F, 0x3D, 0xB2, 0x7F, + 0x23, 0x2D, 0x42, 0x51, 0x02, 0xC6, 0xF8, 0x2B, 0x29, 0x3E, 0xC2, 0xFE, 0xB8, 0x01, 0x2E, 0x33, + 0x35, 0x5F, 0x4A, 0xED, 0x00, 0x02, 0x00, 0x20, 0xFF, 0xF4, 0x03, 0x4E, 0x02, 0xD2, 0x00, 0x1F, + 0x00, 0x26, 0x00, 0x00, 0x13, 0x34, 0x3F, 0x01, 0x33, 0x07, 0x06, 0x15, 0x14, 0x33, 0x3E, 0x01, + 0x33, 0x32, 0x16, 0x15, 0x07, 0x21, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x23, 0x22, + 0x26, 0x27, 0x22, 0x26, 0x25, 0x21, 0x34, 0x26, 0x23, 0x22, 0x06, 0x20, 0x08, 0x08, 0x73, 0x08, + 0x08, 0x4B, 0x15, 0xB4, 0x7A, 0x8D, 0xA0, 0x04, 0xFE, 0x15, 0x06, 0x7D, 0x5D, 0x42, 0x6E, 0x1C, + 0x3D, 0x6B, 0xAE, 0x8E, 0xC2, 0x07, 0x55, 0x63, 0x01, 0x40, 0x01, 0x6C, 0x58, 0x53, 0x50, 0x69, + 0x02, 0x07, 0x36, 0x20, 0x24, 0x25, 0x25, 0x22, 0x67, 0x86, 0x9E, 0xB7, 0x98, 0x39, 0x65, 0x7B, + 0x35, 0x1A, 0x62, 0x63, 0xC0, 0x97, 0x5F, 0x04, 0x4D, 0x65, 0x6C, 0x00, 0x00, 0x02, 0x00, 0x1B, + 0xFF, 0xF4, 0x02, 0x90, 0x02, 0x0A, 0x00, 0x21, 0x00, 0x28, 0x00, 0x00, 0x13, 0x34, 0x37, 0x33, + 0x06, 0x15, 0x14, 0x17, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x07, 0x21, 0x1E, 0x01, 0x33, 0x32, + 0x36, 0x3F, 0x01, 0x17, 0x0E, 0x04, 0x23, 0x22, 0x26, 0x27, 0x26, 0x25, 0x33, 0x2E, 0x01, 0x23, + 0x22, 0x06, 0x1B, 0x0A, 0x65, 0x0B, 0x32, 0x13, 0x88, 0x62, 0x6A, 0x78, 0x04, 0xFE, 0xA1, 0x06, + 0x56, 0x3D, 0x24, 0x49, 0x13, 0x12, 0x32, 0x03, 0x0C, 0x29, 0x2D, 0x45, 0x23, 0x74, 0x94, 0x09, + 0x91, 0x01, 0x15, 0xE0, 0x01, 0x39, 0x2B, 0x30, 0x42, 0x01, 0x8D, 0x23, 0x25, 0x21, 0x20, 0x4E, + 0x08, 0x5D, 0x6F, 0x89, 0x69, 0x31, 0x40, 0x47, 0x1C, 0x0E, 0x0E, 0x5B, 0x03, 0x0A, 0x19, 0x13, + 0x10, 0x8B, 0x68, 0x03, 0x54, 0x31, 0x39, 0x3A, 0x00, 0x02, 0x00, 0x20, 0xFF, 0x74, 0x03, 0x4E, + 0x02, 0xD2, 0x00, 0x22, 0x00, 0x29, 0x00, 0x00, 0x13, 0x34, 0x3F, 0x01, 0x33, 0x07, 0x06, 0x15, + 0x14, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x07, 0x21, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, + 0x17, 0x06, 0x07, 0x15, 0x23, 0x35, 0x2E, 0x01, 0x27, 0x22, 0x26, 0x25, 0x21, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x20, 0x08, 0x08, 0x73, 0x08, 0x08, 0x4B, 0x15, 0xB4, 0x7A, 0x8D, 0xA0, 0x04, 0xFE, + 0x15, 0x06, 0x7D, 0x5D, 0x42, 0x6E, 0x1C, 0x3D, 0x5D, 0x90, 0x73, 0x73, 0x96, 0x07, 0x55, 0x63, + 0x01, 0x40, 0x01, 0x6C, 0x58, 0x53, 0x50, 0x69, 0x02, 0x07, 0x36, 0x20, 0x24, 0x25, 0x25, 0x22, + 0x67, 0x86, 0x9E, 0xB7, 0x98, 0x39, 0x65, 0x7B, 0x35, 0x1A, 0x62, 0x55, 0x0C, 0x82, 0x87, 0x18, + 0xB6, 0x82, 0x5F, 0x04, 0x4D, 0x65, 0x6C, 0x00, 0x00, 0x02, 0x00, 0x1B, 0xFF, 0x88, 0x02, 0x90, + 0x02, 0x0A, 0x00, 0x22, 0x00, 0x29, 0x00, 0x00, 0x13, 0x34, 0x37, 0x33, 0x06, 0x15, 0x14, 0x17, + 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x07, 0x21, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x3F, 0x01, 0x17, + 0x0E, 0x02, 0x07, 0x15, 0x23, 0x35, 0x2E, 0x01, 0x27, 0x26, 0x25, 0x33, 0x2E, 0x01, 0x23, 0x22, + 0x06, 0x1B, 0x0A, 0x65, 0x0B, 0x32, 0x13, 0x88, 0x62, 0x6A, 0x78, 0x04, 0xFE, 0xA1, 0x06, 0x56, + 0x3D, 0x24, 0x49, 0x13, 0x12, 0x32, 0x07, 0x1C, 0x5A, 0x30, 0x70, 0x53, 0x67, 0x07, 0x91, 0x01, + 0x15, 0xE0, 0x01, 0x39, 0x2B, 0x30, 0x42, 0x01, 0x8D, 0x23, 0x25, 0x21, 0x20, 0x4E, 0x08, 0x5D, + 0x6F, 0x89, 0x69, 0x31, 0x40, 0x47, 0x1C, 0x0E, 0x0E, 0x5B, 0x07, 0x15, 0x27, 0x04, 0x6E, 0x76, + 0x16, 0x7F, 0x54, 0x03, 0x54, 0x31, 0x39, 0x3A, 0x00, 0x01, 0x00, 0x56, 0x00, 0x00, 0x00, 0xD5, + 0x02, 0xC6, 0x00, 0x03, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x56, 0x7F, 0x02, 0xC6, 0xFD, 0x3A, + 0x00, 0x02, 0x00, 0x0D, 0x00, 0x00, 0x03, 0x97, 0x03, 0x7D, 0x00, 0x17, 0x00, 0x27, 0x00, 0x00, + 0x33, 0x13, 0x35, 0x03, 0x33, 0x13, 0x33, 0x11, 0x33, 0x11, 0x33, 0x13, 0x33, 0x03, 0x15, 0x13, + 0x23, 0x03, 0x23, 0x11, 0x23, 0x11, 0x23, 0x03, 0x00, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, + 0x16, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x0D, 0xC8, 0xB9, 0x8B, 0x98, 0x53, 0x80, 0x53, + 0x98, 0x8B, 0xBA, 0xC9, 0x91, 0xA1, 0x53, 0x80, 0x53, 0xA1, 0x01, 0x7C, 0x88, 0x60, 0x61, 0x28, + 0x36, 0x29, 0x60, 0x01, 0x72, 0x02, 0x01, 0x52, 0xFE, 0xDF, 0x01, 0x21, 0xFE, 0xDF, 0x01, 0x21, + 0xFE, 0xAE, 0x02, 0xFE, 0x8E, 0x01, 0x36, 0xFE, 0xCA, 0x01, 0x36, 0xFE, 0xCA, 0x02, 0xE6, 0x4B, + 0x3F, 0x0D, 0x0D, 0x1E, 0x21, 0x21, 0x1F, 0x0C, 0x0D, 0x3F, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0D, + 0x00, 0x00, 0x03, 0x05, 0x02, 0xC6, 0x00, 0x17, 0x00, 0x27, 0x00, 0x00, 0x33, 0x13, 0x35, 0x27, + 0x33, 0x17, 0x33, 0x35, 0x33, 0x15, 0x33, 0x37, 0x33, 0x07, 0x15, 0x13, 0x23, 0x27, 0x23, 0x15, + 0x23, 0x35, 0x23, 0x07, 0x00, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x16, 0x32, 0x36, 0x3D, + 0x01, 0x33, 0x15, 0x14, 0x0D, 0x9C, 0x8F, 0x84, 0x71, 0x3E, 0x77, 0x3E, 0x71, 0x84, 0x8E, 0x9C, + 0x8C, 0x75, 0x40, 0x77, 0x40, 0x75, 0x01, 0x34, 0x88, 0x60, 0x61, 0x28, 0x36, 0x29, 0x60, 0x01, + 0x06, 0x02, 0xF6, 0xC6, 0xC6, 0xC6, 0xC6, 0xF6, 0x02, 0xFE, 0xFA, 0xCD, 0xCD, 0xCD, 0xCD, 0x02, + 0x2F, 0x4B, 0x3F, 0x0D, 0x0D, 0x1E, 0x21, 0x21, 0x1F, 0x0C, 0x0D, 0x3F, 0x00, 0x01, 0x00, 0x56, + 0xFF, 0x49, 0x02, 0x66, 0x02, 0xC6, 0x00, 0x16, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x33, 0x13, + 0x33, 0x03, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x23, 0x35, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, + 0x11, 0x56, 0x81, 0x5C, 0xA7, 0x8C, 0xB9, 0x53, 0x63, 0x87, 0x7A, 0x34, 0x46, 0x62, 0x61, 0x42, + 0x02, 0xC6, 0xFE, 0xDF, 0x01, 0x21, 0xFE, 0xC8, 0x16, 0x91, 0x68, 0x8B, 0xAB, 0x6C, 0x5A, 0x66, + 0x5F, 0x65, 0xFE, 0xC7, 0x00, 0x01, 0x00, 0x44, 0xFF, 0x30, 0x02, 0x0A, 0x01, 0xFE, 0x00, 0x16, + 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, 0x33, 0x37, 0x33, 0x07, 0x15, 0x1E, 0x01, 0x15, 0x14, 0x06, + 0x07, 0x27, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x15, 0x44, 0x7F, 0x3E, 0x7C, 0x8D, 0x97, 0x4D, + 0x43, 0x5E, 0x42, 0x3B, 0x62, 0x4E, 0x4B, 0x2E, 0x01, 0xFE, 0xC4, 0xC4, 0xE3, 0x02, 0x1A, 0x7A, + 0x4A, 0x5E, 0x88, 0x25, 0x58, 0x32, 0x81, 0x44, 0x4F, 0xCE, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0E, + 0xFF, 0x74, 0x02, 0xD6, 0x02, 0xC6, 0x00, 0x12, 0x00, 0x00, 0x37, 0x3E, 0x01, 0x3D, 0x01, 0x21, + 0x11, 0x33, 0x15, 0x07, 0x23, 0x37, 0x23, 0x11, 0x23, 0x15, 0x10, 0x06, 0x07, 0x0E, 0x50, 0x49, + 0x01, 0xB7, 0x78, 0x4F, 0x5A, 0x27, 0x77, 0xBB, 0x82, 0x92, 0x6E, 0x0B, 0xBF, 0xCC, 0xC2, 0xFD, + 0xA9, 0x46, 0xB5, 0x8C, 0x02, 0x57, 0x55, 0xFE, 0xFA, 0xFF, 0x05, 0x00, 0x00, 0x01, 0x00, 0x14, + 0xFF, 0x88, 0x02, 0x56, 0x01, 0xFE, 0x00, 0x12, 0x00, 0x00, 0x17, 0x35, 0x3E, 0x01, 0x3D, 0x01, + 0x21, 0x11, 0x33, 0x15, 0x07, 0x23, 0x37, 0x23, 0x11, 0x23, 0x15, 0x14, 0x06, 0x14, 0x34, 0x37, + 0x01, 0x74, 0x63, 0x45, 0x55, 0x21, 0x69, 0x7C, 0x6A, 0x05, 0x70, 0x07, 0x6D, 0x7F, 0xA0, 0xFE, + 0x6D, 0x43, 0xA0, 0x78, 0x01, 0x97, 0x39, 0xAE, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x56, + 0xFF, 0x48, 0x02, 0x9D, 0x02, 0xC6, 0x00, 0x12, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x21, 0x11, + 0x33, 0x13, 0x14, 0x0E, 0x02, 0x27, 0x35, 0x32, 0x3D, 0x01, 0x21, 0x11, 0x56, 0x81, 0x01, 0x45, + 0x80, 0x01, 0x29, 0x48, 0x4A, 0x2C, 0x66, 0xFE, 0xBB, 0x02, 0xC6, 0xFE, 0xD3, 0x01, 0x2D, 0xFD, + 0x80, 0x4F, 0x6D, 0x32, 0x13, 0x03, 0x6D, 0x8E, 0xE7, 0xFE, 0xD6, 0x00, 0x00, 0x01, 0x00, 0x44, + 0xFF, 0x30, 0x02, 0x1C, 0x01, 0xFE, 0x00, 0x11, 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, 0x33, 0x35, + 0x33, 0x11, 0x14, 0x06, 0x07, 0x27, 0x3E, 0x01, 0x3D, 0x01, 0x23, 0x15, 0x44, 0x7F, 0xDA, 0x7F, + 0x4D, 0x4F, 0x42, 0x30, 0x2F, 0xDA, 0x01, 0xFE, 0xC5, 0xC5, 0xFE, 0x3A, 0x63, 0x75, 0x30, 0x5A, + 0x1C, 0x4C, 0x45, 0x97, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x56, 0xFF, 0x74, 0x03, 0x14, + 0x02, 0xC6, 0x00, 0x10, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x33, 0x15, + 0x07, 0x23, 0x37, 0x23, 0x11, 0x21, 0x11, 0x56, 0x81, 0x01, 0x45, 0x80, 0x78, 0x4F, 0x5A, 0x27, + 0x76, 0xFE, 0xBB, 0x02, 0xC6, 0xFE, 0xD3, 0x01, 0x2D, 0xFD, 0xA9, 0x46, 0xB5, 0x8C, 0x01, 0x2A, + 0xFE, 0xD6, 0x00, 0x00, 0x00, 0x01, 0x00, 0x44, 0xFF, 0x88, 0x02, 0x7F, 0x01, 0xFE, 0x00, 0x10, + 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, 0x11, 0x33, 0x15, 0x07, 0x23, 0x37, 0x23, + 0x35, 0x23, 0x15, 0x44, 0x7F, 0xDA, 0x7F, 0x63, 0x45, 0x55, 0x21, 0x69, 0xDA, 0x01, 0xFE, 0xC5, + 0xC5, 0xFE, 0x6D, 0x43, 0xA0, 0x78, 0xCE, 0xCE, 0x00, 0x01, 0x00, 0x2E, 0xFF, 0x74, 0x02, 0x3D, + 0x02, 0xC6, 0x00, 0x16, 0x00, 0x00, 0x01, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x33, 0x32, + 0x37, 0x11, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x33, 0x35, 0x37, 0x23, 0x06, 0x01, 0x07, 0x6D, + 0x6C, 0x83, 0x77, 0x51, 0x41, 0x83, 0x78, 0x74, 0x69, 0x02, 0x02, 0x56, 0x01, 0x08, 0x6F, 0x66, + 0xE9, 0xCC, 0x7D, 0x2A, 0x01, 0x1F, 0xFD, 0x3A, 0x8C, 0xFB, 0xA4, 0x21, 0x2C, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x25, 0xFF, 0x88, 0x01, 0xDD, 0x01, 0xFE, 0x00, 0x16, 0x00, 0x00, 0x25, 0x33, + 0x35, 0x37, 0x23, 0x06, 0x23, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x33, 0x32, 0x37, 0x35, + 0x33, 0x11, 0x23, 0x15, 0x23, 0x01, 0x04, 0x5A, 0x01, 0x01, 0x42, 0x54, 0x4A, 0x59, 0x7D, 0x54, + 0x37, 0x31, 0x7F, 0x67, 0x72, 0x52, 0x6D, 0x1B, 0x24, 0x54, 0x53, 0xA1, 0x8C, 0x55, 0x20, 0xC1, + 0xFE, 0x02, 0x78, 0x00, 0x00, 0x01, 0x00, 0x3B, 0xFF, 0x74, 0x03, 0x90, 0x02, 0xC6, 0x00, 0x20, + 0x00, 0x00, 0x33, 0x13, 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, 0x13, 0x33, 0x15, 0x07, + 0x23, 0x37, 0x23, 0x03, 0x26, 0x34, 0x37, 0x35, 0x23, 0x06, 0x07, 0x03, 0x23, 0x03, 0x27, 0x23, + 0x16, 0x07, 0x03, 0x3B, 0x3A, 0x89, 0x8C, 0x23, 0x02, 0x13, 0x10, 0x8C, 0x89, 0x31, 0x78, 0x4F, + 0x59, 0x26, 0x6E, 0x1D, 0x02, 0x01, 0x02, 0x17, 0x10, 0x73, 0x70, 0x73, 0x27, 0x02, 0x03, 0x04, + 0x1D, 0x02, 0xC6, 0xFE, 0xA1, 0x68, 0x3E, 0x2A, 0x01, 0x5F, 0xFD, 0xA9, 0x46, 0xB5, 0x8C, 0x01, + 0x8D, 0x15, 0x37, 0x11, 0x11, 0x45, 0x29, 0xFE, 0xED, 0x01, 0x13, 0x6F, 0x40, 0x2F, 0xFE, 0x73, + 0x00, 0x01, 0x00, 0x2F, 0xFF, 0x88, 0x03, 0x17, 0x01, 0xFE, 0x00, 0x1C, 0x00, 0x00, 0x33, 0x13, + 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, 0x13, 0x33, 0x15, 0x07, 0x23, 0x37, 0x23, 0x03, + 0x37, 0x23, 0x06, 0x0F, 0x01, 0x23, 0x2F, 0x01, 0x23, 0x17, 0x03, 0x2F, 0x2E, 0x90, 0x6C, 0x19, + 0x02, 0x0E, 0x0B, 0x6E, 0x8E, 0x24, 0x6A, 0x45, 0x56, 0x21, 0x60, 0x12, 0x01, 0x02, 0x0E, 0x10, + 0x64, 0x69, 0x64, 0x1F, 0x02, 0x01, 0x12, 0x01, 0xFE, 0xFE, 0xF9, 0x41, 0x24, 0x1D, 0x01, 0x07, + 0xFE, 0x6D, 0x43, 0xA0, 0x78, 0x01, 0x14, 0x57, 0x26, 0x24, 0xE1, 0xE0, 0x4B, 0x57, 0xFE, 0xEC, + 0x00, 0x01, 0x00, 0x44, 0x00, 0x00, 0x00, 0xC3, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x00, 0x33, 0x11, + 0x33, 0x11, 0x44, 0x7F, 0x02, 0xC6, 0xFD, 0x3A, 0x00, 0x03, 0x00, 0x08, 0x00, 0x00, 0x02, 0x82, + 0x03, 0x7D, 0x00, 0x07, 0x00, 0x0E, 0x00, 0x1E, 0x00, 0x00, 0x33, 0x13, 0x33, 0x13, 0x23, 0x27, + 0x23, 0x07, 0x13, 0x33, 0x2F, 0x01, 0x23, 0x06, 0x07, 0x12, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, + 0x14, 0x16, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x08, 0xF9, 0x88, 0xF9, 0x84, 0x3D, 0xF9, + 0x3C, 0x5C, 0xB9, 0x3F, 0x1C, 0x02, 0x10, 0x0C, 0x5F, 0x88, 0x60, 0x61, 0x28, 0x36, 0x29, 0x60, + 0x02, 0xC6, 0xFD, 0x3A, 0xB6, 0xB6, 0x01, 0x1F, 0xBE, 0x6E, 0x46, 0x28, 0x01, 0x09, 0x4B, 0x3F, + 0x0D, 0x0D, 0x1E, 0x21, 0x21, 0x1F, 0x0C, 0x0D, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x1D, + 0xFF, 0xF4, 0x01, 0xDB, 0x02, 0xC6, 0x00, 0x1C, 0x00, 0x26, 0x00, 0x36, 0x00, 0x00, 0x37, 0x34, + 0x3E, 0x02, 0x3B, 0x01, 0x35, 0x34, 0x23, 0x22, 0x07, 0x27, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, + 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x3D, 0x01, 0x23, 0x22, 0x12, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x16, 0x32, 0x36, 0x3D, + 0x01, 0x33, 0x15, 0x14, 0x1D, 0x3B, 0x61, 0x5B, 0x32, 0x16, 0x60, 0x46, 0x48, 0x2F, 0x21, 0x70, + 0x37, 0x64, 0x70, 0x76, 0x03, 0x02, 0x18, 0x56, 0x33, 0x47, 0x61, 0x7E, 0x29, 0x24, 0x33, 0x42, + 0x16, 0xAC, 0xBF, 0x88, 0x60, 0x61, 0x28, 0x36, 0x29, 0x60, 0x8D, 0x36, 0x4C, 0x23, 0x0E, 0x07, + 0x5A, 0x31, 0x5B, 0x1A, 0x25, 0x6B, 0x60, 0xFE, 0xC1, 0x2B, 0x25, 0x29, 0x33, 0x55, 0x4F, 0x1B, + 0x28, 0x54, 0x32, 0x0E, 0x01, 0x46, 0x4B, 0x3F, 0x0D, 0x0D, 0x1E, 0x21, 0x21, 0x1F, 0x0C, 0x0D, + 0x3F, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x08, 0x00, 0x00, 0x02, 0x82, 0x03, 0x7D, 0x00, 0x07, + 0x00, 0x0E, 0x00, 0x12, 0x00, 0x16, 0x00, 0x00, 0x33, 0x13, 0x33, 0x13, 0x23, 0x27, 0x23, 0x07, + 0x13, 0x33, 0x2F, 0x01, 0x23, 0x06, 0x07, 0x13, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x08, + 0xF9, 0x88, 0xF9, 0x84, 0x3D, 0xF9, 0x3C, 0x5C, 0xB9, 0x3F, 0x1C, 0x02, 0x10, 0x0C, 0x48, 0x61, + 0xFE, 0xE7, 0x62, 0x02, 0xC6, 0xFD, 0x3A, 0xB6, 0xB6, 0x01, 0x1F, 0xBE, 0x6E, 0x46, 0x28, 0x01, + 0x2C, 0x74, 0x74, 0x74, 0x74, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x1D, 0xFF, 0xF4, 0x01, 0xDB, + 0x02, 0xC6, 0x00, 0x1C, 0x00, 0x26, 0x00, 0x2A, 0x00, 0x2E, 0x00, 0x00, 0x37, 0x34, 0x3E, 0x02, + 0x3B, 0x01, 0x35, 0x34, 0x23, 0x22, 0x07, 0x27, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x11, 0x23, + 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, + 0x23, 0x22, 0x13, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x1D, 0x3B, 0x61, 0x5B, 0x32, 0x16, + 0x60, 0x46, 0x48, 0x2F, 0x21, 0x70, 0x37, 0x64, 0x70, 0x76, 0x03, 0x02, 0x18, 0x56, 0x33, 0x47, + 0x61, 0x7E, 0x29, 0x24, 0x33, 0x42, 0x16, 0xAC, 0x9B, 0x61, 0xFE, 0xE7, 0x62, 0x8D, 0x36, 0x4C, + 0x23, 0x0E, 0x07, 0x5A, 0x31, 0x5B, 0x1A, 0x25, 0x6B, 0x60, 0xFE, 0xC1, 0x2B, 0x25, 0x29, 0x33, + 0x55, 0x4F, 0x1B, 0x28, 0x54, 0x32, 0x0E, 0x01, 0x69, 0x74, 0x74, 0x74, 0x74, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x03, 0x60, 0x02, 0xC6, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, + 0x33, 0x01, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, 0x11, 0x23, 0x03, + 0x13, 0x33, 0x35, 0x23, 0x01, 0x01, 0x26, 0x02, 0x2A, 0xFE, 0xD7, 0xEF, 0xEF, 0x01, 0x38, 0xFE, + 0x48, 0xAA, 0x77, 0xA0, 0x81, 0x35, 0x02, 0xC6, 0x6F, 0xBA, 0x6F, 0xBF, 0x6F, 0x01, 0x30, 0xFE, + 0xD0, 0x01, 0x99, 0xBE, 0x00, 0x03, 0x00, 0x1D, 0xFF, 0xF4, 0x03, 0x35, 0x02, 0x0A, 0x00, 0x2B, + 0x00, 0x32, 0x00, 0x3E, 0x00, 0x00, 0x37, 0x34, 0x21, 0x33, 0x35, 0x34, 0x23, 0x22, 0x07, 0x27, + 0x3E, 0x01, 0x33, 0x32, 0x17, 0x33, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x15, 0x21, 0x1E, + 0x01, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x23, 0x22, 0x27, 0x23, 0x0E, 0x03, 0x23, 0x22, 0x26, + 0x25, 0x33, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x05, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x23, + 0x22, 0x0E, 0x01, 0x1D, 0x01, 0x2E, 0x11, 0x63, 0x46, 0x46, 0x2F, 0x21, 0x6D, 0x36, 0x77, 0x2F, + 0x02, 0x3D, 0x6D, 0x68, 0x79, 0x03, 0xFE, 0xA3, 0x06, 0x53, 0x3D, 0x50, 0x43, 0x31, 0x24, 0x72, + 0x37, 0x92, 0x43, 0x02, 0x06, 0x17, 0x2D, 0x4A, 0x2C, 0x49, 0x65, 0x01, 0xBC, 0xDC, 0x01, 0x39, + 0x28, 0x31, 0x3F, 0xFE, 0xBA, 0x28, 0x26, 0x31, 0x42, 0x24, 0x28, 0x40, 0x35, 0x93, 0xAD, 0x07, + 0x5A, 0x31, 0x5A, 0x1C, 0x24, 0x4B, 0x4B, 0x8A, 0x69, 0x09, 0x22, 0x04, 0x42, 0x46, 0x37, 0x5A, + 0x21, 0x28, 0x70, 0x0D, 0x1E, 0x29, 0x1B, 0x56, 0xF5, 0x2F, 0x38, 0x36, 0xD8, 0x1C, 0x26, 0x55, + 0x32, 0x0A, 0x0B, 0x26, 0x00, 0x02, 0x00, 0x56, 0x00, 0x00, 0x02, 0x0F, 0x03, 0x7D, 0x00, 0x0B, + 0x00, 0x1B, 0x00, 0x00, 0x33, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, + 0x02, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x16, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, + 0x56, 0x01, 0xA9, 0xFE, 0xD8, 0xEF, 0xEF, 0x01, 0x38, 0x9B, 0x88, 0x60, 0x61, 0x28, 0x36, 0x29, + 0x60, 0x02, 0xC6, 0x6F, 0xBA, 0x6F, 0xBF, 0x6F, 0x02, 0xE6, 0x4B, 0x3F, 0x0D, 0x0D, 0x1E, 0x21, + 0x21, 0x1F, 0x0C, 0x0D, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x0B, + 0x02, 0xC6, 0x00, 0x14, 0x00, 0x1B, 0x00, 0x2B, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x07, 0x21, 0x1E, 0x01, 0x33, 0x32, 0x37, 0x17, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x37, + 0x33, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x36, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x16, 0x32, + 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x25, 0x91, 0x73, 0x6A, 0x78, 0x04, 0xFE, 0xA1, 0x06, 0x56, + 0x3D, 0x4C, 0x46, 0x32, 0x26, 0x6F, 0x38, 0x7B, 0x98, 0x86, 0xE1, 0x01, 0x39, 0x2C, 0x30, 0x42, + 0xB4, 0x88, 0x60, 0x61, 0x28, 0x36, 0x29, 0x60, 0x00, 0xFF, 0x76, 0x95, 0x89, 0x69, 0x11, 0x20, + 0x40, 0x47, 0x38, 0x5B, 0x22, 0x27, 0x9B, 0xAF, 0x32, 0x3A, 0x3B, 0xC0, 0x4B, 0x3F, 0x0D, 0x0D, + 0x1E, 0x21, 0x21, 0x1F, 0x0C, 0x0D, 0x3F, 0x00, 0x00, 0x02, 0x00, 0x2E, 0xFF, 0xF4, 0x02, 0xA7, + 0x02, 0xD2, 0x00, 0x13, 0x00, 0x1A, 0x00, 0x00, 0x13, 0x37, 0x21, 0x2E, 0x01, 0x23, 0x22, 0x06, + 0x07, 0x27, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x2E, 0x04, 0x01, 0xED, 0x08, 0x74, 0x5B, 0x44, 0x70, 0x1C, 0x3E, 0x71, 0xAD, + 0x95, 0xBA, 0xB5, 0x92, 0x90, 0xA2, 0x82, 0x5A, 0x59, 0x54, 0x65, 0x02, 0x01, 0x51, 0x3E, 0x5C, + 0x71, 0x32, 0x19, 0x60, 0x61, 0xD5, 0x99, 0xA1, 0xCF, 0xBA, 0x7D, 0x5D, 0x68, 0x6C, 0x59, 0x00, + 0x00, 0x02, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x0C, 0x02, 0x0A, 0x00, 0x14, 0x00, 0x1B, 0x00, 0x00, + 0x3F, 0x01, 0x21, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x0F, 0x01, 0x27, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x23, 0x22, 0x26, 0x37, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x25, 0x04, 0x01, 0x61, + 0x07, 0x52, 0x39, 0x26, 0x4D, 0x13, 0x14, 0x2F, 0x66, 0x73, 0x77, 0x8D, 0x8E, 0x72, 0x6E, 0x79, + 0x84, 0x01, 0x39, 0x2C, 0x32, 0x44, 0x01, 0xEC, 0x37, 0x3C, 0x45, 0x1B, 0x0D, 0x0E, 0x58, 0x44, + 0x98, 0x73, 0x78, 0x93, 0x89, 0x50, 0x3C, 0x3B, 0x3E, 0x39, 0x00, 0x00, 0x00, 0x04, 0x00, 0x2E, + 0xFF, 0xF4, 0x02, 0xA7, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x07, 0x00, 0x1B, 0x00, 0x22, 0x00, 0x00, + 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x01, 0x37, 0x21, 0x2E, 0x01, 0x23, 0x22, 0x06, + 0x07, 0x27, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x01, 0x8B, 0x61, 0xFE, 0xE7, 0x62, 0xFE, 0xF9, 0x04, 0x01, 0xED, 0x08, 0x74, + 0x5B, 0x44, 0x70, 0x1C, 0x3E, 0x71, 0xAD, 0x95, 0xBA, 0xB5, 0x92, 0x90, 0xA2, 0x82, 0x5A, 0x59, + 0x54, 0x65, 0x02, 0x03, 0x09, 0x74, 0x74, 0x74, 0x74, 0xFE, 0x48, 0x3E, 0x5C, 0x71, 0x32, 0x19, + 0x60, 0x61, 0xD5, 0x99, 0xA1, 0xCF, 0xBA, 0x7D, 0x5D, 0x68, 0x6C, 0x59, 0x00, 0x04, 0x00, 0x25, + 0xFF, 0xF4, 0x02, 0x0C, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x1C, 0x00, 0x23, 0x00, 0x00, + 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x03, 0x37, 0x21, 0x2E, 0x01, 0x23, 0x22, 0x06, + 0x0F, 0x01, 0x27, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x37, 0x1E, 0x01, + 0x33, 0x32, 0x36, 0x37, 0x01, 0x33, 0x61, 0xFE, 0xE7, 0x62, 0xB8, 0x04, 0x01, 0x61, 0x07, 0x52, + 0x39, 0x26, 0x4D, 0x13, 0x14, 0x2F, 0x66, 0x73, 0x77, 0x8D, 0x8E, 0x72, 0x6E, 0x79, 0x84, 0x01, + 0x39, 0x2C, 0x32, 0x44, 0x01, 0x02, 0x52, 0x74, 0x74, 0x74, 0x74, 0xFE, 0x9A, 0x37, 0x3C, 0x45, + 0x1B, 0x0D, 0x0E, 0x58, 0x44, 0x98, 0x73, 0x78, 0x93, 0x89, 0x50, 0x3C, 0x3B, 0x3E, 0x39, 0x00, + 0x00, 0x03, 0x00, 0x0D, 0x00, 0x00, 0x03, 0x97, 0x03, 0x7D, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x1F, + 0x00, 0x00, 0x33, 0x13, 0x35, 0x03, 0x33, 0x13, 0x33, 0x11, 0x33, 0x11, 0x33, 0x13, 0x33, 0x03, + 0x15, 0x13, 0x23, 0x03, 0x23, 0x11, 0x23, 0x11, 0x23, 0x03, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, + 0x33, 0x15, 0x0D, 0xC8, 0xB9, 0x8B, 0x98, 0x53, 0x80, 0x53, 0x98, 0x8B, 0xBA, 0xC9, 0x91, 0xA1, + 0x53, 0x80, 0x53, 0xA1, 0x01, 0x63, 0x61, 0xFE, 0xE7, 0x62, 0x01, 0x72, 0x02, 0x01, 0x52, 0xFE, + 0xDF, 0x01, 0x21, 0xFE, 0xDF, 0x01, 0x21, 0xFE, 0xAE, 0x02, 0xFE, 0x8E, 0x01, 0x36, 0xFE, 0xCA, + 0x01, 0x36, 0xFE, 0xCA, 0x03, 0x09, 0x74, 0x74, 0x74, 0x74, 0x00, 0x00, 0x00, 0x03, 0x00, 0x0D, + 0x00, 0x00, 0x03, 0x05, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x1F, 0x00, 0x00, 0x01, 0x35, + 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x01, 0x13, 0x35, 0x27, 0x33, 0x17, 0x33, 0x35, 0x33, 0x15, + 0x33, 0x37, 0x33, 0x07, 0x15, 0x13, 0x23, 0x27, 0x23, 0x15, 0x23, 0x35, 0x23, 0x07, 0x01, 0xB4, + 0x61, 0xFE, 0xE7, 0x62, 0xFE, 0xAF, 0x9C, 0x8F, 0x84, 0x71, 0x3E, 0x77, 0x3E, 0x71, 0x84, 0x8E, + 0x9C, 0x8C, 0x75, 0x40, 0x77, 0x40, 0x75, 0x02, 0x52, 0x74, 0x74, 0x74, 0x74, 0xFD, 0xAE, 0x01, + 0x06, 0x02, 0xF6, 0xC6, 0xC6, 0xC6, 0xC6, 0xF6, 0x02, 0xFE, 0xFA, 0xCD, 0xCD, 0xCD, 0xCD, 0x00, + 0x00, 0x03, 0x00, 0x16, 0xFF, 0xF4, 0x01, 0xFE, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x07, 0x00, 0x2E, + 0x00, 0x00, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x03, 0x37, 0x1E, 0x01, 0x33, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x07, + 0x27, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x15, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, + 0x26, 0x01, 0x3A, 0x61, 0xFE, 0xE7, 0x62, 0xCE, 0x46, 0x1D, 0x56, 0x2D, 0x3A, 0x44, 0x3D, 0x34, + 0x57, 0x46, 0x30, 0x3E, 0x38, 0x35, 0x51, 0x49, 0x34, 0x5E, 0x86, 0x5B, 0x7F, 0x62, 0x37, 0x40, + 0x8D, 0x69, 0x44, 0x81, 0x03, 0x09, 0x74, 0x74, 0x74, 0x74, 0xFD, 0x50, 0x56, 0x1F, 0x2A, 0x3A, + 0x33, 0x2E, 0x35, 0x68, 0x38, 0x2A, 0x2B, 0x37, 0x3C, 0x5E, 0x4E, 0x68, 0x5A, 0x69, 0x35, 0x02, + 0x11, 0x56, 0x3E, 0x62, 0x75, 0x35, 0x00, 0x00, 0x00, 0x03, 0x00, 0x16, 0xFF, 0xF4, 0x01, 0xA4, + 0x02, 0xC6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x28, 0x00, 0x00, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, + 0x33, 0x15, 0x03, 0x37, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2B, 0x01, 0x35, 0x33, 0x32, 0x35, + 0x34, 0x23, 0x22, 0x07, 0x27, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x15, 0x16, 0x15, 0x14, + 0x06, 0x23, 0x22, 0x01, 0x06, 0x61, 0xFE, 0xE7, 0x62, 0x9A, 0x36, 0x3C, 0x45, 0x29, 0x2F, 0x55, + 0x3E, 0x34, 0x4F, 0x4C, 0x3C, 0x3F, 0x29, 0x4D, 0x6F, 0x4E, 0x65, 0x46, 0x56, 0x72, 0x57, 0x75, + 0x02, 0x52, 0x74, 0x74, 0x74, 0x74, 0xFD, 0xED, 0x51, 0x3A, 0x25, 0x20, 0x3F, 0x58, 0x3B, 0x3D, + 0x2A, 0x51, 0x39, 0x4B, 0x41, 0x52, 0x21, 0x02, 0x20, 0x55, 0x4C, 0x54, 0x00, 0x01, 0x00, 0x1F, + 0xFF, 0xF6, 0x01, 0xE9, 0x02, 0xC6, 0x00, 0x24, 0x00, 0x00, 0x37, 0x1E, 0x01, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x27, 0x26, 0x23, 0x35, 0x37, 0x3E, 0x01, 0x3F, 0x01, 0x35, 0x06, 0x2B, 0x01, + 0x35, 0x21, 0x15, 0x0F, 0x01, 0x15, 0x16, 0x17, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x27, 0x48, + 0x1D, 0x57, 0x28, 0x3E, 0x4A, 0x2E, 0x32, 0x12, 0x8A, 0xA8, 0x09, 0x15, 0x06, 0x07, 0x1B, 0x22, + 0xD7, 0x01, 0xA3, 0xB2, 0x1D, 0x38, 0x1E, 0x90, 0x91, 0x6D, 0x73, 0x59, 0x8E, 0x14, 0x1B, 0x3E, + 0x32, 0x2A, 0x2E, 0x07, 0x02, 0x53, 0xB4, 0x09, 0x12, 0x04, 0x05, 0x02, 0x03, 0x6C, 0x64, 0xB7, + 0x18, 0x02, 0x03, 0x07, 0x1F, 0x96, 0x67, 0x75, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x07, + 0xFF, 0x2E, 0x01, 0xD1, 0x01, 0xFE, 0x00, 0x24, 0x00, 0x00, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x27, 0x26, 0x23, 0x35, 0x37, 0x3E, 0x01, 0x3F, 0x01, 0x35, 0x06, 0x2B, 0x01, + 0x35, 0x21, 0x15, 0x0F, 0x01, 0x15, 0x16, 0x17, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x27, 0x30, + 0x1D, 0x57, 0x28, 0x3E, 0x4A, 0x2E, 0x32, 0x12, 0x8A, 0xA8, 0x09, 0x15, 0x06, 0x07, 0x1B, 0x22, + 0xD7, 0x01, 0xA3, 0xB2, 0x1D, 0x38, 0x1E, 0x90, 0x91, 0x6D, 0x73, 0x59, 0x3A, 0x14, 0x1B, 0x3E, + 0x32, 0x2A, 0x2E, 0x07, 0x02, 0x53, 0xB4, 0x09, 0x12, 0x04, 0x05, 0x02, 0x03, 0x6C, 0x64, 0xB7, + 0x18, 0x02, 0x03, 0x07, 0x1F, 0x96, 0x67, 0x75, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x56, + 0x00, 0x00, 0x02, 0x9A, 0x03, 0x66, 0x00, 0x03, 0x00, 0x15, 0x00, 0x00, 0x01, 0x35, 0x21, 0x15, + 0x01, 0x11, 0x33, 0x11, 0x07, 0x33, 0x36, 0x37, 0x01, 0x33, 0x11, 0x23, 0x11, 0x37, 0x23, 0x06, + 0x07, 0x01, 0x01, 0x02, 0x01, 0x06, 0xFE, 0x4E, 0x81, 0x07, 0x02, 0x22, 0x1A, 0x01, 0x0C, 0x80, + 0x80, 0x07, 0x02, 0x21, 0x1A, 0xFE, 0xF2, 0x03, 0x0F, 0x57, 0x57, 0xFC, 0xF1, 0x02, 0xC6, 0xFE, + 0x66, 0x6E, 0x45, 0x2A, 0x01, 0x99, 0xFD, 0x3A, 0x01, 0x99, 0x6E, 0x44, 0x2A, 0xFE, 0x67, 0x00, + 0x00, 0x02, 0x00, 0x44, 0x00, 0x00, 0x02, 0x1A, 0x02, 0xAF, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, + 0x33, 0x11, 0x33, 0x11, 0x14, 0x07, 0x33, 0x36, 0x37, 0x13, 0x33, 0x11, 0x23, 0x11, 0x34, 0x37, + 0x23, 0x06, 0x07, 0x0B, 0x01, 0x35, 0x21, 0x15, 0x44, 0x79, 0x03, 0x02, 0x04, 0x22, 0xBD, 0x7B, + 0x79, 0x03, 0x02, 0x03, 0x23, 0xBD, 0x0E, 0x01, 0x06, 0x01, 0xFE, 0xFE, 0xEF, 0x25, 0x18, 0x09, + 0x34, 0x01, 0x11, 0xFE, 0x02, 0x01, 0x10, 0x16, 0x27, 0x07, 0x36, 0xFE, 0xF0, 0x02, 0x58, 0x57, + 0x57, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x56, 0x00, 0x00, 0x02, 0x9A, 0x03, 0x7D, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x19, 0x00, 0x00, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x03, 0x11, + 0x33, 0x11, 0x07, 0x33, 0x36, 0x37, 0x01, 0x33, 0x11, 0x23, 0x11, 0x37, 0x23, 0x06, 0x07, 0x01, + 0x01, 0xA5, 0x61, 0xFE, 0xE7, 0x62, 0xF9, 0x81, 0x07, 0x02, 0x22, 0x1A, 0x01, 0x0C, 0x80, 0x80, + 0x07, 0x02, 0x21, 0x1A, 0xFE, 0xF2, 0x03, 0x09, 0x74, 0x74, 0x74, 0x74, 0xFC, 0xF7, 0x02, 0xC6, + 0xFE, 0x66, 0x6E, 0x45, 0x2A, 0x01, 0x99, 0xFD, 0x3A, 0x01, 0x99, 0x6E, 0x44, 0x2A, 0xFE, 0x67, + 0x00, 0x03, 0x00, 0x44, 0x00, 0x00, 0x02, 0x1A, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x1B, + 0x00, 0x00, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x03, 0x11, 0x33, 0x11, 0x14, 0x07, + 0x33, 0x36, 0x37, 0x13, 0x33, 0x11, 0x23, 0x11, 0x34, 0x37, 0x23, 0x06, 0x07, 0x03, 0x01, 0x5D, + 0x61, 0xFE, 0xE7, 0x62, 0xC3, 0x79, 0x03, 0x02, 0x04, 0x22, 0xBD, 0x7B, 0x79, 0x03, 0x02, 0x03, + 0x23, 0xBD, 0x02, 0x52, 0x74, 0x74, 0x74, 0x74, 0xFD, 0xAE, 0x01, 0xFE, 0xFE, 0xEF, 0x25, 0x18, + 0x09, 0x34, 0x01, 0x11, 0xFE, 0x02, 0x01, 0x10, 0x16, 0x27, 0x07, 0x36, 0xFE, 0xF0, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x2C, 0xFF, 0xF4, 0x03, 0x0A, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x07, 0x00, 0x11, + 0x00, 0x1B, 0x00, 0x00, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x01, 0x34, 0x36, 0x20, + 0x16, 0x15, 0x14, 0x06, 0x20, 0x26, 0x37, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, + 0x01, 0xC5, 0x61, 0xFE, 0xE7, 0x62, 0xFE, 0xBD, 0xCF, 0x01, 0x40, 0xCF, 0xCF, 0xFE, 0xC0, 0xCF, + 0x85, 0x85, 0xCA, 0x85, 0x85, 0xCA, 0x85, 0x03, 0x09, 0x74, 0x74, 0x74, 0x74, 0xFE, 0x5F, 0x9A, + 0xD0, 0xD0, 0x9A, 0x9E, 0xD6, 0xD6, 0x9E, 0x6D, 0x91, 0x91, 0x6D, 0x68, 0x8C, 0x8C, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x55, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x10, + 0x00, 0x1A, 0x00, 0x00, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x02, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x14, 0x06, 0x22, 0x03, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x01, + 0x69, 0x61, 0xFE, 0xE7, 0x62, 0xEE, 0xA2, 0x75, 0x76, 0xA3, 0xA2, 0xEC, 0x21, 0x57, 0x80, 0x58, + 0x59, 0x7E, 0x58, 0x02, 0x52, 0x74, 0x74, 0x74, 0x74, 0xFE, 0x39, 0xE8, 0x97, 0x97, 0xE8, 0x97, + 0x01, 0x0B, 0x46, 0x59, 0x59, 0x46, 0x45, 0x5A, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x2C, + 0xFF, 0xF4, 0x03, 0x0A, 0x02, 0xD2, 0x00, 0x09, 0x00, 0x10, 0x00, 0x17, 0x00, 0x00, 0x13, 0x34, + 0x36, 0x20, 0x16, 0x15, 0x14, 0x06, 0x20, 0x26, 0x05, 0x32, 0x36, 0x37, 0x21, 0x1E, 0x01, 0x13, + 0x22, 0x06, 0x07, 0x21, 0x2E, 0x01, 0x2C, 0xD2, 0x01, 0x3A, 0xD2, 0xD2, 0xFE, 0xC6, 0xD2, 0x01, + 0x70, 0x57, 0x81, 0x10, 0xFE, 0x2E, 0x11, 0x81, 0x58, 0x59, 0x82, 0x0F, 0x01, 0xD3, 0x10, 0x82, + 0x01, 0x68, 0x99, 0xD1, 0xD1, 0x99, 0x9E, 0xD6, 0xD6, 0x65, 0x74, 0x5A, 0x5B, 0x73, 0x01, 0xFA, + 0x70, 0x58, 0x58, 0x70, 0x00, 0x03, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x55, 0x02, 0x0A, 0x00, 0x08, + 0x00, 0x0F, 0x00, 0x16, 0x00, 0x00, 0x36, 0x34, 0x36, 0x33, 0x32, 0x16, 0x14, 0x06, 0x22, 0x37, + 0x32, 0x36, 0x37, 0x21, 0x1E, 0x01, 0x13, 0x22, 0x06, 0x07, 0x21, 0x2E, 0x01, 0x25, 0xA2, 0x75, + 0x76, 0xA3, 0xA2, 0xEC, 0x77, 0x3B, 0x5B, 0x0B, 0xFE, 0xBD, 0x0A, 0x5B, 0x3D, 0x3C, 0x59, 0x0C, + 0x01, 0x41, 0x0D, 0x59, 0x8B, 0xE8, 0x97, 0x97, 0xE8, 0x97, 0x5E, 0x4C, 0x3E, 0x3E, 0x4C, 0x01, + 0x59, 0x48, 0x3C, 0x3B, 0x49, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x2C, 0xFF, 0xF4, 0x03, 0x0A, + 0x03, 0x7D, 0x00, 0x09, 0x00, 0x10, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x00, 0x13, 0x34, + 0x36, 0x20, 0x16, 0x15, 0x14, 0x06, 0x20, 0x26, 0x05, 0x32, 0x36, 0x37, 0x21, 0x1E, 0x01, 0x13, + 0x22, 0x06, 0x07, 0x21, 0x2E, 0x01, 0x27, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x2C, 0xD2, + 0x01, 0x3A, 0xD2, 0xD2, 0xFE, 0xC6, 0xD2, 0x01, 0x70, 0x57, 0x81, 0x10, 0xFE, 0x2E, 0x11, 0x81, + 0x58, 0x59, 0x82, 0x0F, 0x01, 0xD3, 0x10, 0x82, 0xE5, 0x62, 0x56, 0x61, 0x01, 0x68, 0x99, 0xD1, + 0xD1, 0x99, 0x9E, 0xD6, 0xD6, 0x65, 0x74, 0x5A, 0x5B, 0x73, 0x01, 0xFA, 0x70, 0x58, 0x58, 0x70, + 0xAA, 0x74, 0x74, 0x74, 0x74, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x25, 0xFF, 0xF4, 0x02, 0x55, + 0x02, 0xC6, 0x00, 0x08, 0x00, 0x0F, 0x00, 0x16, 0x00, 0x1A, 0x00, 0x1E, 0x00, 0x00, 0x36, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x14, 0x06, 0x22, 0x37, 0x32, 0x36, 0x37, 0x21, 0x1E, 0x01, 0x13, 0x22, + 0x06, 0x07, 0x21, 0x2E, 0x01, 0x27, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x25, 0xA2, 0x75, + 0x76, 0xA3, 0xA2, 0xEC, 0x77, 0x3B, 0x5B, 0x0B, 0xFE, 0xBD, 0x0A, 0x5B, 0x3D, 0x3C, 0x59, 0x0C, + 0x01, 0x41, 0x0D, 0x59, 0xC9, 0x62, 0x56, 0x61, 0x8B, 0xE8, 0x97, 0x97, 0xE8, 0x97, 0x5E, 0x4C, + 0x3E, 0x3E, 0x4C, 0x01, 0x59, 0x48, 0x3C, 0x3B, 0x49, 0xA7, 0x74, 0x74, 0x74, 0x74, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x1C, 0xFF, 0xF4, 0x02, 0xA0, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x07, 0x00, 0x22, + 0x00, 0x00, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x03, 0x37, 0x1E, 0x01, 0x33, 0x32, + 0x36, 0x37, 0x21, 0x35, 0x21, 0x2E, 0x01, 0x23, 0x22, 0x07, 0x27, 0x3E, 0x01, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x06, 0x23, 0x22, 0x01, 0x71, 0x61, 0xFE, 0xE7, 0x62, 0xFF, 0x41, 0x27, 0x70, 0x3C, + 0x5E, 0x7C, 0x0D, 0xFE, 0xAC, 0x01, 0x55, 0x0B, 0x7E, 0x5E, 0x6E, 0x5C, 0x3E, 0x30, 0x8E, 0x4E, + 0xA3, 0xC8, 0xD0, 0xA0, 0xA2, 0x03, 0x09, 0x74, 0x74, 0x74, 0x74, 0xFD, 0x58, 0x5B, 0x25, 0x2E, + 0x70, 0x56, 0x69, 0x56, 0x6F, 0x50, 0x61, 0x31, 0x33, 0xD0, 0x9B, 0x9F, 0xD4, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x18, 0xFF, 0xF4, 0x01, 0xFD, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x20, + 0x00, 0x00, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x03, 0x37, 0x16, 0x33, 0x32, 0x36, + 0x37, 0x23, 0x35, 0x33, 0x2E, 0x01, 0x23, 0x22, 0x07, 0x27, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x22, 0x01, 0x2A, 0x61, 0xFE, 0xE7, 0x62, 0xBC, 0x2F, 0x41, 0x59, 0x3F, 0x57, 0x0B, + 0xDF, 0xDF, 0x0A, 0x56, 0x3C, 0x51, 0x3D, 0x36, 0x23, 0x6C, 0x3A, 0x7B, 0x97, 0x99, 0xF8, 0x02, + 0x52, 0x74, 0x74, 0x74, 0x74, 0xFD, 0xED, 0x58, 0x3E, 0x44, 0x37, 0x57, 0x37, 0x43, 0x37, 0x55, + 0x23, 0x24, 0x9B, 0x70, 0x72, 0x99, 0x00, 0x00, 0x00, 0x02, 0xFF, 0xFD, 0xFF, 0xF4, 0x02, 0x62, + 0x03, 0x66, 0x00, 0x03, 0x00, 0x19, 0x00, 0x00, 0x13, 0x35, 0x21, 0x15, 0x01, 0x37, 0x16, 0x33, + 0x32, 0x37, 0x01, 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, 0x03, 0x0E, 0x03, 0x23, 0x22, + 0xB1, 0x01, 0x06, 0xFE, 0x8C, 0x39, 0x2D, 0x23, 0x2F, 0x18, 0xFE, 0xEA, 0x8E, 0x97, 0x28, 0x02, + 0x0D, 0x10, 0x72, 0x87, 0xDB, 0x0D, 0x1C, 0x2C, 0x3C, 0x25, 0x48, 0x03, 0x0F, 0x57, 0x57, 0xFD, + 0x16, 0x61, 0x23, 0x3E, 0x02, 0x25, 0xFE, 0xC3, 0x5E, 0x2F, 0x2E, 0x01, 0x3E, 0xFD, 0xCF, 0x21, + 0x32, 0x32, 0x1C, 0x00, 0x00, 0x02, 0x00, 0x04, 0xFF, 0x2E, 0x02, 0x12, 0x02, 0xAF, 0x00, 0x16, + 0x00, 0x1A, 0x00, 0x00, 0x17, 0x16, 0x33, 0x32, 0x3F, 0x01, 0x03, 0x33, 0x13, 0x17, 0x33, 0x36, + 0x37, 0x13, 0x33, 0x03, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x2F, 0x01, 0x13, 0x35, 0x21, 0x15, 0x37, + 0x1C, 0x1C, 0x3D, 0x1C, 0x13, 0xD7, 0x8F, 0x6B, 0x13, 0x02, 0x09, 0x08, 0x64, 0x8A, 0xE3, 0x19, + 0x63, 0x3C, 0x1B, 0x35, 0x0D, 0x0D, 0x81, 0x01, 0x06, 0x52, 0x15, 0x42, 0x2D, 0x01, 0xF6, 0xFE, + 0xDA, 0x45, 0x28, 0x1B, 0x01, 0x28, 0xFD, 0xB5, 0x43, 0x42, 0x10, 0x08, 0x09, 0x03, 0x09, 0x57, + 0x57, 0x00, 0x00, 0x00, 0x00, 0x03, 0xFF, 0xFD, 0xFF, 0xF4, 0x02, 0x62, 0x03, 0x7D, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x1D, 0x00, 0x00, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x03, 0x37, + 0x16, 0x33, 0x32, 0x37, 0x01, 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, 0x03, 0x0E, 0x03, + 0x23, 0x22, 0x01, 0x65, 0x61, 0xFE, 0xE7, 0x62, 0xCC, 0x39, 0x2D, 0x23, 0x2F, 0x18, 0xFE, 0xEA, + 0x8E, 0x97, 0x28, 0x02, 0x0D, 0x10, 0x72, 0x87, 0xDB, 0x0D, 0x1C, 0x2C, 0x3C, 0x25, 0x48, 0x03, + 0x09, 0x74, 0x74, 0x74, 0x74, 0xFD, 0x1C, 0x61, 0x23, 0x3E, 0x02, 0x25, 0xFE, 0xC3, 0x5E, 0x2F, + 0x2E, 0x01, 0x3E, 0xFD, 0xCF, 0x21, 0x32, 0x32, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x04, + 0xFF, 0x2E, 0x02, 0x12, 0x02, 0xC6, 0x00, 0x16, 0x00, 0x1A, 0x00, 0x1E, 0x00, 0x00, 0x17, 0x16, + 0x33, 0x32, 0x3F, 0x01, 0x03, 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, 0x03, 0x0E, 0x01, + 0x23, 0x22, 0x26, 0x2F, 0x01, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x37, 0x1C, 0x1C, + 0x3D, 0x1C, 0x13, 0xD7, 0x8F, 0x6B, 0x13, 0x02, 0x09, 0x08, 0x64, 0x8A, 0xE3, 0x19, 0x63, 0x3C, + 0x1B, 0x35, 0x0D, 0x0D, 0x01, 0x2F, 0x61, 0xFE, 0xE7, 0x62, 0x52, 0x15, 0x42, 0x2D, 0x01, 0xF6, + 0xFE, 0xDA, 0x45, 0x28, 0x1B, 0x01, 0x28, 0xFD, 0xB5, 0x43, 0x42, 0x10, 0x08, 0x09, 0x03, 0x03, + 0x74, 0x74, 0x74, 0x74, 0x00, 0x03, 0xFF, 0xFD, 0xFF, 0xF4, 0x02, 0x62, 0x03, 0x7D, 0x00, 0x15, + 0x00, 0x19, 0x00, 0x1D, 0x00, 0x00, 0x3F, 0x01, 0x16, 0x33, 0x32, 0x37, 0x01, 0x33, 0x13, 0x17, + 0x33, 0x36, 0x37, 0x13, 0x33, 0x03, 0x0E, 0x03, 0x23, 0x22, 0x13, 0x37, 0x33, 0x07, 0x21, 0x37, + 0x33, 0x07, 0x43, 0x39, 0x2D, 0x23, 0x2F, 0x18, 0xFE, 0xEA, 0x8E, 0x97, 0x28, 0x02, 0x0D, 0x10, + 0x72, 0x87, 0xDB, 0x0D, 0x1C, 0x2C, 0x3C, 0x25, 0x48, 0xD1, 0x4C, 0x7D, 0x68, 0xFE, 0xF0, 0x47, + 0x6C, 0x4A, 0x25, 0x61, 0x23, 0x3E, 0x02, 0x25, 0xFE, 0xC3, 0x5E, 0x2F, 0x2E, 0x01, 0x3E, 0xFD, + 0xCF, 0x21, 0x32, 0x32, 0x1C, 0x03, 0x01, 0x88, 0x88, 0x88, 0x88, 0x00, 0x00, 0x03, 0x00, 0x04, + 0xFF, 0x2E, 0x02, 0x12, 0x02, 0xC6, 0x00, 0x16, 0x00, 0x1A, 0x00, 0x1E, 0x00, 0x00, 0x17, 0x16, + 0x33, 0x32, 0x3F, 0x01, 0x03, 0x33, 0x13, 0x17, 0x33, 0x36, 0x37, 0x13, 0x33, 0x03, 0x0E, 0x01, + 0x23, 0x22, 0x26, 0x2F, 0x01, 0x01, 0x37, 0x33, 0x07, 0x21, 0x37, 0x33, 0x07, 0x37, 0x1C, 0x1C, + 0x3D, 0x1C, 0x13, 0xD7, 0x8F, 0x6B, 0x13, 0x02, 0x09, 0x08, 0x64, 0x8A, 0xE3, 0x19, 0x63, 0x3C, + 0x1B, 0x35, 0x0D, 0x0D, 0x01, 0x20, 0x4C, 0x7D, 0x68, 0xFE, 0xF0, 0x47, 0x6C, 0x4A, 0x52, 0x15, + 0x42, 0x2D, 0x01, 0xF6, 0xFE, 0xDA, 0x45, 0x28, 0x1B, 0x01, 0x28, 0xFD, 0xB5, 0x43, 0x42, 0x10, + 0x08, 0x09, 0x02, 0xEF, 0x88, 0x88, 0x88, 0x88, 0x00, 0x03, 0x00, 0x2E, 0x00, 0x00, 0x02, 0x3D, + 0x03, 0x7D, 0x00, 0x12, 0x00, 0x16, 0x00, 0x1A, 0x00, 0x00, 0x01, 0x22, 0x26, 0x3D, 0x01, 0x33, + 0x15, 0x14, 0x33, 0x32, 0x37, 0x11, 0x33, 0x11, 0x23, 0x11, 0x37, 0x23, 0x06, 0x13, 0x35, 0x33, + 0x15, 0x21, 0x35, 0x33, 0x15, 0x01, 0x07, 0x6D, 0x6C, 0x83, 0x77, 0x51, 0x41, 0x83, 0x83, 0x02, + 0x02, 0x56, 0x04, 0x61, 0xFE, 0xE7, 0x62, 0x01, 0x08, 0x6F, 0x66, 0xE9, 0xCC, 0x7D, 0x2A, 0x01, + 0x1F, 0xFD, 0x3A, 0x01, 0x13, 0x21, 0x2C, 0x02, 0x01, 0x74, 0x74, 0x74, 0x74, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x26, 0x00, 0x00, 0x01, 0xDB, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x19, + 0x00, 0x00, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x12, 0x22, 0x26, 0x3D, 0x01, 0x33, + 0x15, 0x14, 0x33, 0x32, 0x37, 0x35, 0x33, 0x11, 0x23, 0x35, 0x37, 0x23, 0x01, 0x30, 0x61, 0xFE, + 0xE7, 0x62, 0x46, 0x9C, 0x5E, 0x7D, 0x57, 0x35, 0x2E, 0x7E, 0x7E, 0x01, 0x02, 0x02, 0x52, 0x74, + 0x74, 0x74, 0x74, 0xFE, 0x57, 0x55, 0x55, 0xAB, 0x96, 0x55, 0x20, 0xCB, 0xFE, 0x02, 0xAE, 0x1C, + 0x00, 0x01, 0x00, 0x56, 0xFF, 0x74, 0x01, 0xEE, 0x02, 0xC6, 0x00, 0x09, 0x00, 0x00, 0x33, 0x11, + 0x21, 0x15, 0x21, 0x11, 0x33, 0x15, 0x23, 0x35, 0x56, 0x01, 0x98, 0xFE, 0xE9, 0x68, 0x73, 0x02, + 0xC6, 0x6F, 0xFE, 0x18, 0xFB, 0x8C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x44, 0xFF, 0x88, 0x01, 0x93, + 0x01, 0xFE, 0x00, 0x09, 0x00, 0x00, 0x33, 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15, 0x23, 0x35, + 0x44, 0x01, 0x4F, 0xD0, 0x5A, 0x72, 0x01, 0xFE, 0x6C, 0xFE, 0xDA, 0xE4, 0x78, 0x00, 0x00, 0x00, + 0x00, 0x05, 0x00, 0x56, 0x00, 0x00, 0x03, 0x15, 0x03, 0x7D, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, + 0x00, 0x16, 0x00, 0x1E, 0x00, 0x00, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x01, 0x11, + 0x33, 0x11, 0x21, 0x11, 0x33, 0x15, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x27, 0x33, 0x32, + 0x36, 0x34, 0x26, 0x2B, 0x01, 0x01, 0xE1, 0x61, 0xFE, 0xE7, 0x62, 0x01, 0x0A, 0x80, 0xFD, 0x41, + 0x81, 0x84, 0x63, 0x7B, 0x7A, 0x61, 0x87, 0x70, 0x35, 0x3A, 0x3C, 0x35, 0x6E, 0x03, 0x09, 0x74, + 0x74, 0x74, 0x74, 0xFC, 0xF7, 0x02, 0xC6, 0xFD, 0x3A, 0x02, 0xC6, 0xF9, 0x7F, 0x69, 0x66, 0x7F, + 0x6F, 0x3F, 0x6E, 0x42, 0x00, 0x05, 0x00, 0x44, 0x00, 0x00, 0x02, 0xA3, 0x02, 0xC6, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x0B, 0x00, 0x16, 0x00, 0x1F, 0x00, 0x00, 0x01, 0x35, 0x33, 0x15, 0x21, 0x35, + 0x33, 0x15, 0x13, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x15, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x23, 0x27, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x01, 0x9E, 0x61, 0xFE, 0xE7, 0x62, + 0xDC, 0x7F, 0xFD, 0xA1, 0x7F, 0x5B, 0x5B, 0x65, 0x60, 0x61, 0x5A, 0x46, 0x2A, 0x2B, 0x2C, 0x2B, + 0x44, 0x02, 0x52, 0x74, 0x74, 0x74, 0x74, 0xFD, 0xAE, 0x01, 0xFE, 0xFE, 0x02, 0x01, 0xFE, 0xAF, + 0x57, 0x52, 0x4D, 0x59, 0x57, 0x2C, 0x24, 0x25, 0x2D, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x56, + 0xFF, 0x74, 0x02, 0xFD, 0x02, 0xC6, 0x00, 0x0B, 0x00, 0x00, 0x33, 0x11, 0x21, 0x11, 0x33, 0x15, + 0x23, 0x35, 0x23, 0x11, 0x21, 0x11, 0x56, 0x02, 0x3F, 0x68, 0x73, 0x76, 0xFE, 0xC3, 0x02, 0xC6, + 0xFD, 0xA9, 0xFB, 0x8C, 0x02, 0x57, 0xFD, 0xA9, 0x00, 0x01, 0x00, 0x44, 0xFF, 0x88, 0x02, 0x6F, + 0x01, 0xFE, 0x00, 0x0B, 0x00, 0x00, 0x33, 0x11, 0x21, 0x11, 0x33, 0x15, 0x23, 0x35, 0x23, 0x11, + 0x23, 0x11, 0x44, 0x01, 0xD1, 0x5A, 0x73, 0x66, 0xD3, 0x01, 0xFE, 0xFE, 0x6E, 0xE4, 0x78, 0x01, + 0x92, 0xFE, 0x6E, 0x00, 0x00, 0x01, 0x00, 0x50, 0x00, 0x00, 0x02, 0x84, 0x02, 0xC6, 0x00, 0x27, + 0x00, 0x00, 0x33, 0x11, 0x34, 0x36, 0x33, 0x21, 0x15, 0x0F, 0x01, 0x15, 0x17, 0x1E, 0x01, 0x15, + 0x14, 0x06, 0x2B, 0x01, 0x35, 0x33, 0x32, 0x36, 0x34, 0x26, 0x2B, 0x01, 0x35, 0x37, 0x3E, 0x01, + 0x3F, 0x01, 0x35, 0x06, 0x2B, 0x01, 0x22, 0x06, 0x15, 0x11, 0x50, 0x7A, 0x60, 0x01, 0x3C, 0x78, + 0x17, 0x13, 0x45, 0x55, 0x7F, 0x5A, 0x89, 0x7F, 0x2B, 0x34, 0x33, 0x2B, 0x54, 0x59, 0x0C, 0x17, + 0x05, 0x05, 0x08, 0x24, 0x7B, 0x27, 0x33, 0x01, 0xF0, 0x5E, 0x78, 0x59, 0xB5, 0x1F, 0x02, 0x01, + 0x09, 0x74, 0x47, 0x58, 0x7A, 0x6F, 0x3A, 0x52, 0x38, 0x59, 0x8D, 0x14, 0x1F, 0x06, 0x05, 0x02, + 0x02, 0x3A, 0x2B, 0xFE, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x44, 0x00, 0xEC, 0x02, 0x6D, + 0x01, 0x4F, 0x00, 0x03, 0x00, 0x00, 0x37, 0x35, 0x21, 0x15, 0x44, 0x02, 0x29, 0xEC, 0x63, 0x63, + 0x00, 0x01, 0x00, 0x44, 0x00, 0xEC, 0x03, 0x35, 0x01, 0x4F, 0x00, 0x03, 0x00, 0x00, 0x37, 0x35, + 0x21, 0x15, 0x44, 0x02, 0xF1, 0xEC, 0x63, 0x63, 0x00, 0x01, 0x00, 0x34, 0x01, 0xF8, 0x00, 0xD8, + 0x02, 0xD2, 0x00, 0x03, 0x00, 0x00, 0x13, 0x37, 0x33, 0x07, 0x34, 0x4B, 0x59, 0x2F, 0x01, 0xF8, + 0xDA, 0xDA, 0x00, 0x00, 0x00, 0x01, 0x00, 0x39, 0x01, 0xF8, 0x00, 0xDD, 0x02, 0xD2, 0x00, 0x03, + 0x00, 0x00, 0x13, 0x37, 0x33, 0x07, 0x39, 0x2F, 0x75, 0x4B, 0x01, 0xF8, 0xDA, 0xDA, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x28, 0xFF, 0xA7, 0x00, 0xC9, 0x00, 0x81, 0x00, 0x03, 0x00, 0x00, 0x17, 0x37, + 0x33, 0x07, 0x28, 0x30, 0x71, 0x4A, 0x59, 0xDA, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x34, + 0x01, 0xF8, 0x01, 0x7C, 0x02, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x13, 0x37, 0x33, 0x07, + 0x21, 0x37, 0x33, 0x07, 0xD7, 0x4B, 0x5A, 0x2F, 0xFE, 0xE7, 0x4B, 0x5A, 0x30, 0x01, 0xF8, 0xDA, + 0xDA, 0xDA, 0xDA, 0x00, 0x00, 0x02, 0x00, 0x39, 0x01, 0xF8, 0x01, 0x81, 0x02, 0xD2, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x00, 0x13, 0x37, 0x33, 0x07, 0x23, 0x37, 0x33, 0x07, 0xDC, 0x2F, 0x76, 0x4B, + 0xFD, 0x2F, 0x75, 0x4A, 0x01, 0xF8, 0xDA, 0xDA, 0xDA, 0xDA, 0x00, 0x00, 0x00, 0x02, 0x00, 0x28, + 0xFF, 0xA7, 0x01, 0x69, 0x00, 0x81, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x17, 0x37, 0x33, 0x07, + 0x23, 0x37, 0x33, 0x07, 0xC8, 0x2F, 0x72, 0x4B, 0xF6, 0x30, 0x71, 0x4A, 0x59, 0xDA, 0xDA, 0xDA, + 0xDA, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x28, 0xFF, 0xCE, 0x01, 0x9C, 0x02, 0xC6, 0x00, 0x0B, + 0x00, 0x00, 0x17, 0x11, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x11, 0xA4, 0x7C, + 0x7C, 0x7A, 0x7E, 0x7E, 0x32, 0x01, 0xCD, 0x63, 0xC8, 0xC8, 0x63, 0xFE, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x36, 0xFF, 0xCE, 0x01, 0xAA, 0x02, 0xC6, 0x00, 0x13, 0x00, 0x00, 0x37, 0x35, + 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x23, 0x35, 0x36, 0x7C, 0x7C, 0x7C, 0x7A, 0x7E, 0x7E, 0x7E, 0x7E, 0x7A, 0xA3, 0x62, 0x96, 0x63, + 0xC8, 0xC8, 0x63, 0x96, 0x62, 0xD5, 0xD5, 0x00, 0x00, 0x01, 0x00, 0x50, 0x00, 0x7C, 0x01, 0x9E, + 0x01, 0xCA, 0x00, 0x09, 0x00, 0x00, 0x37, 0x22, 0x26, 0x34, 0x36, 0x33, 0x32, 0x16, 0x14, 0x06, + 0xF7, 0x45, 0x62, 0x62, 0x45, 0x46, 0x61, 0x61, 0x7C, 0x62, 0x8A, 0x62, 0x62, 0x8A, 0x62, 0x00, + 0x00, 0x03, 0x00, 0x42, 0x00, 0x00, 0x02, 0xF7, 0x00, 0x80, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, + 0x00, 0x00, 0x21, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, 0x15, 0x02, 0x7B, + 0x7C, 0xFE, 0x68, 0x7B, 0xFE, 0x68, 0x7B, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x00, 0x00, 0x00, + 0x00, 0x07, 0x00, 0x2E, 0xFF, 0xF4, 0x04, 0x6E, 0x02, 0xD2, 0x00, 0x0A, 0x00, 0x0E, 0x00, 0x18, + 0x00, 0x20, 0x00, 0x29, 0x00, 0x33, 0x00, 0x3D, 0x00, 0x00, 0x00, 0x22, 0x26, 0x35, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x09, 0x01, 0x33, 0x01, 0x02, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, + 0x06, 0x15, 0x14, 0x00, 0x34, 0x36, 0x32, 0x16, 0x14, 0x06, 0x22, 0x24, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x14, 0x06, 0x22, 0x25, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x05, 0x14, + 0x16, 0x32, 0x36, 0x35, 0x34, 0x26, 0x22, 0x06, 0x01, 0x15, 0x88, 0x5F, 0x60, 0x43, 0x44, 0x60, + 0xFE, 0xD3, 0x02, 0x20, 0x75, 0xFD, 0xDF, 0x07, 0x38, 0x27, 0x27, 0x38, 0x26, 0x02, 0x98, 0x60, + 0x86, 0x61, 0x60, 0x88, 0xFE, 0x2C, 0x5F, 0x44, 0x43, 0x61, 0x60, 0x88, 0x01, 0x77, 0x26, 0x38, + 0x27, 0x27, 0x38, 0x26, 0xFE, 0x8B, 0x26, 0x38, 0x27, 0x27, 0x38, 0x26, 0x01, 0x96, 0x5C, 0x42, + 0x41, 0x5D, 0x5D, 0x41, 0x42, 0xFE, 0x0E, 0x02, 0xC6, 0xFD, 0x3A, 0x01, 0xF2, 0x26, 0x1C, 0x1B, + 0x27, 0x27, 0x1B, 0x1C, 0xFE, 0x38, 0x82, 0x5D, 0x5D, 0x82, 0x5C, 0x5C, 0x82, 0x5D, 0x5D, 0x82, + 0x5C, 0x9E, 0x1C, 0x26, 0x26, 0x1C, 0x1B, 0x27, 0x27, 0x1B, 0x1C, 0x26, 0x26, 0x1C, 0x1B, 0x27, + 0x27, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x28, 0x00, 0x4D, 0x01, 0x45, 0x01, 0xE8, 0x00, 0x05, + 0x00, 0x00, 0x37, 0x27, 0x37, 0x33, 0x07, 0x17, 0xCC, 0xA4, 0xA4, 0x79, 0xA4, 0xA4, 0x4D, 0xCD, + 0xCE, 0xCE, 0xCD, 0x00, 0x00, 0x01, 0x00, 0x30, 0x00, 0x4D, 0x01, 0x4D, 0x01, 0xE8, 0x00, 0x05, + 0x00, 0x00, 0x3F, 0x01, 0x27, 0x33, 0x17, 0x07, 0x30, 0xA4, 0xA4, 0x79, 0xA4, 0xA4, 0x4D, 0xCD, + 0xCE, 0xCE, 0xCD, 0x00, 0x00, 0x01, 0xFF, 0x84, 0x00, 0x00, 0x01, 0x30, 0x02, 0xC6, 0x00, 0x03, + 0x00, 0x00, 0x2B, 0x01, 0x01, 0x33, 0x1F, 0x5D, 0x01, 0x50, 0x5C, 0x02, 0xC6, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x22, 0x01, 0x9D, 0x01, 0x66, 0x03, 0x68, 0x00, 0x05, 0x00, 0x0D, 0x00, 0x00, + 0x00, 0x20, 0x35, 0x34, 0x20, 0x15, 0x07, 0x32, 0x35, 0x34, 0x23, 0x22, 0x15, 0x14, 0x01, 0x66, + 0xFE, 0xBC, 0x01, 0x44, 0xA2, 0x42, 0x42, 0x43, 0x01, 0x9D, 0xE6, 0xE5, 0xE5, 0x8F, 0x8F, 0x8D, + 0x8D, 0x8F, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0F, 0x01, 0xA7, 0x01, 0x72, 0x03, 0x5E, 0x00, 0x0A, + 0x00, 0x12, 0x00, 0x00, 0x13, 0x35, 0x23, 0x35, 0x13, 0x33, 0x11, 0x33, 0x15, 0x23, 0x15, 0x27, + 0x33, 0x35, 0x37, 0x23, 0x06, 0x0F, 0x01, 0xDA, 0xCB, 0xBD, 0x6C, 0x3A, 0x3A, 0xC9, 0x6B, 0x04, + 0x02, 0x0C, 0x0E, 0x53, 0x01, 0xA7, 0x63, 0x40, 0x01, 0x14, 0xFE, 0xFE, 0x52, 0x63, 0xB5, 0x6E, + 0x37, 0x1B, 0x14, 0x74, 0x00, 0x01, 0x00, 0x24, 0x01, 0x9D, 0x01, 0x61, 0x03, 0x5E, 0x00, 0x1C, + 0x00, 0x00, 0x13, 0x22, 0x27, 0x37, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x34, 0x26, 0x23, 0x22, 0x07, + 0x27, 0x37, 0x33, 0x15, 0x23, 0x0F, 0x01, 0x17, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xBB, + 0x5C, 0x3B, 0x34, 0x0E, 0x34, 0x1A, 0x1F, 0x2E, 0x2E, 0x21, 0x26, 0x21, 0x33, 0x16, 0xF5, 0xA8, + 0x05, 0x04, 0x02, 0x16, 0x1D, 0x43, 0x57, 0x5C, 0x01, 0x9D, 0x43, 0x43, 0x14, 0x1B, 0x26, 0x3C, + 0x27, 0x12, 0x13, 0xE0, 0x54, 0x2F, 0x19, 0x01, 0x08, 0x55, 0x3D, 0x3E, 0x5C, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x24, 0x01, 0x9D, 0x01, 0x67, 0x03, 0x68, 0x00, 0x16, 0x00, 0x22, 0x00, 0x00, + 0x13, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x26, 0x23, 0x22, 0x06, 0x07, 0x33, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x14, 0x16, 0xD0, 0x49, 0x63, 0x6C, 0x60, 0x36, 0x2C, 0x1C, 0x1E, 0x23, 0x26, 0x35, 0x0A, + 0x02, 0x1A, 0x25, 0x45, 0x51, 0x53, 0x44, 0x1B, 0x1E, 0x26, 0x21, 0x18, 0x24, 0x2B, 0x01, 0x9D, + 0x6E, 0x5F, 0x63, 0x9B, 0x17, 0x51, 0x10, 0x35, 0x2C, 0x15, 0x52, 0x3E, 0x40, 0x57, 0x57, 0x25, + 0x1C, 0x1F, 0x2B, 0x18, 0x10, 0x27, 0x3C, 0x00, 0x00, 0x01, 0x00, 0x2D, 0x01, 0xA7, 0x01, 0x68, + 0x03, 0x5E, 0x00, 0x0A, 0x00, 0x00, 0x1B, 0x01, 0x37, 0x35, 0x06, 0x2B, 0x01, 0x35, 0x21, 0x15, + 0x03, 0x34, 0xAF, 0x18, 0x12, 0x15, 0xA7, 0x01, 0x3B, 0xCC, 0x01, 0xA7, 0x01, 0x3D, 0x26, 0x02, + 0x02, 0x54, 0x41, 0xFE, 0x8A, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x1F, 0x01, 0x9D, 0x01, 0x65, + 0x03, 0x68, 0x00, 0x13, 0x00, 0x20, 0x00, 0x2E, 0x00, 0x00, 0x13, 0x22, 0x26, 0x35, 0x34, 0x37, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x16, 0x15, 0x14, 0x06, 0x03, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x1E, 0x02, 0x07, 0x32, 0x36, 0x35, 0x34, 0x2E, + 0x03, 0x27, 0x06, 0x15, 0x14, 0x16, 0xC4, 0x43, 0x62, 0x45, 0x2F, 0x56, 0x3C, 0x3B, 0x5A, 0x35, + 0x3E, 0x5F, 0x20, 0x1D, 0x25, 0x18, 0x17, 0x1F, 0x0C, 0x1F, 0x13, 0x0A, 0x1A, 0x28, 0x09, 0x1A, + 0x0F, 0x2B, 0x07, 0x27, 0x2B, 0x01, 0x9D, 0x49, 0x40, 0x3D, 0x31, 0x23, 0x37, 0x3A, 0x40, 0x42, + 0x39, 0x31, 0x3B, 0x26, 0x3D, 0x3A, 0x47, 0x01, 0x03, 0x24, 0x23, 0x16, 0x19, 0x16, 0x16, 0x0D, + 0x15, 0x14, 0x09, 0xBD, 0x1D, 0x18, 0x0B, 0x12, 0x12, 0x09, 0x14, 0x03, 0x22, 0x25, 0x1C, 0x21, + 0x00, 0x02, 0x00, 0x20, 0x01, 0x9D, 0x01, 0x63, 0x03, 0x68, 0x00, 0x16, 0x00, 0x22, 0x00, 0x00, + 0x13, 0x37, 0x16, 0x33, 0x32, 0x36, 0x37, 0x23, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x37, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x14, 0x16, 0x35, 0x1C, 0x22, 0x1F, 0x26, 0x35, 0x0A, 0x02, 0x1C, 0x23, 0x45, 0x51, 0x53, + 0x44, 0x49, 0x63, 0x6C, 0x60, 0x39, 0x66, 0x19, 0x24, 0x2B, 0x1F, 0x1B, 0x1E, 0x26, 0x01, 0xB4, + 0x51, 0x10, 0x35, 0x2B, 0x15, 0x52, 0x3F, 0x40, 0x57, 0x6F, 0x5F, 0x62, 0x9B, 0xE8, 0x19, 0x0F, + 0x27, 0x3C, 0x25, 0x1B, 0x1F, 0x2C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x22, 0xFF, 0x59, 0x01, 0x66, + 0x01, 0x24, 0x00, 0x05, 0x00, 0x0D, 0x00, 0x00, 0x04, 0x20, 0x35, 0x34, 0x20, 0x15, 0x07, 0x32, + 0x35, 0x34, 0x23, 0x22, 0x15, 0x14, 0x01, 0x66, 0xFE, 0xBC, 0x01, 0x44, 0xA2, 0x42, 0x42, 0x43, + 0xA7, 0xE6, 0xE5, 0xE5, 0x8F, 0x8F, 0x8D, 0x8D, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x38, + 0xFF, 0x63, 0x01, 0x58, 0x01, 0x1A, 0x00, 0x0E, 0x00, 0x00, 0x17, 0x35, 0x33, 0x35, 0x37, 0x23, + 0x06, 0x0F, 0x01, 0x27, 0x37, 0x33, 0x11, 0x33, 0x15, 0x42, 0x5C, 0x02, 0x02, 0x04, 0x0B, 0x1F, + 0x38, 0x71, 0x54, 0x5B, 0x9D, 0x53, 0xCF, 0x1C, 0x09, 0x0A, 0x1D, 0x3C, 0x6D, 0xFE, 0x9C, 0x53, + 0x00, 0x01, 0x00, 0x27, 0xFF, 0x63, 0x01, 0x5C, 0x01, 0x24, 0x00, 0x1D, 0x00, 0x00, 0x17, 0x26, + 0x35, 0x34, 0x3E, 0x04, 0x35, 0x34, 0x26, 0x23, 0x22, 0x07, 0x27, 0x3E, 0x01, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x0E, 0x03, 0x07, 0x33, 0x15, 0x2B, 0x04, 0x1F, 0x2E, 0x35, 0x2E, 0x1F, 0x23, 0x1A, + 0x28, 0x28, 0x3E, 0x16, 0x50, 0x2D, 0x3F, 0x59, 0x27, 0x39, 0x39, 0x2B, 0x02, 0xCC, 0x9D, 0x1C, + 0x0D, 0x29, 0x42, 0x28, 0x26, 0x1B, 0x24, 0x14, 0x17, 0x1D, 0x2E, 0x37, 0x23, 0x2C, 0x49, 0x3F, + 0x28, 0x3F, 0x27, 0x20, 0x24, 0x14, 0x53, 0x00, 0x00, 0x01, 0x00, 0x20, 0xFF, 0x59, 0x01, 0x5B, + 0x01, 0x1A, 0x00, 0x1D, 0x00, 0x00, 0x17, 0x22, 0x26, 0x27, 0x37, 0x1E, 0x01, 0x33, 0x32, 0x36, + 0x34, 0x26, 0x2B, 0x01, 0x27, 0x3F, 0x01, 0x35, 0x06, 0x2B, 0x01, 0x35, 0x21, 0x15, 0x07, 0x1E, + 0x01, 0x15, 0x14, 0x06, 0xB8, 0x2B, 0x53, 0x1A, 0x31, 0x10, 0x35, 0x1D, 0x1E, 0x2A, 0x2E, 0x20, + 0x23, 0x14, 0x4E, 0x19, 0x14, 0x10, 0x81, 0x01, 0x18, 0x62, 0x31, 0x3C, 0x5A, 0xA7, 0x23, 0x20, + 0x43, 0x14, 0x1B, 0x24, 0x36, 0x1E, 0x2D, 0x5A, 0x18, 0x02, 0x03, 0x54, 0x3D, 0x70, 0x09, 0x42, + 0x34, 0x3D, 0x58, 0x00, 0x00, 0x02, 0x00, 0x0F, 0xFF, 0x63, 0x01, 0x72, 0x01, 0x1A, 0x00, 0x0A, + 0x00, 0x12, 0x00, 0x00, 0x17, 0x35, 0x23, 0x35, 0x13, 0x33, 0x11, 0x33, 0x15, 0x23, 0x15, 0x27, + 0x33, 0x35, 0x37, 0x23, 0x06, 0x0F, 0x01, 0xDA, 0xCB, 0xBD, 0x6C, 0x3A, 0x3A, 0xC9, 0x6B, 0x04, + 0x02, 0x0C, 0x0E, 0x53, 0x9D, 0x63, 0x40, 0x01, 0x14, 0xFE, 0xFE, 0x52, 0x63, 0xB5, 0x6E, 0x37, + 0x1B, 0x14, 0x74, 0x00, 0x00, 0x01, 0x00, 0x24, 0xFF, 0x59, 0x01, 0x61, 0x01, 0x1A, 0x00, 0x1C, + 0x00, 0x00, 0x17, 0x22, 0x27, 0x37, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x34, 0x26, 0x23, 0x22, 0x07, + 0x27, 0x37, 0x33, 0x15, 0x23, 0x0F, 0x01, 0x17, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xBB, + 0x5C, 0x3B, 0x34, 0x0E, 0x34, 0x1A, 0x1F, 0x2E, 0x2E, 0x21, 0x26, 0x21, 0x33, 0x16, 0xF5, 0xA8, + 0x05, 0x04, 0x02, 0x16, 0x1D, 0x43, 0x57, 0x5C, 0xA7, 0x43, 0x43, 0x14, 0x1B, 0x26, 0x3C, 0x27, + 0x12, 0x13, 0xE0, 0x54, 0x2F, 0x19, 0x01, 0x08, 0x55, 0x3D, 0x3E, 0x5C, 0x00, 0x02, 0x00, 0x24, + 0xFF, 0x59, 0x01, 0x67, 0x01, 0x24, 0x00, 0x16, 0x00, 0x22, 0x00, 0x00, 0x17, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x26, 0x23, 0x22, 0x06, 0x07, 0x33, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0xD0, + 0x49, 0x63, 0x6C, 0x60, 0x36, 0x2C, 0x1C, 0x1E, 0x23, 0x26, 0x35, 0x0A, 0x02, 0x1A, 0x25, 0x45, + 0x51, 0x53, 0x44, 0x1B, 0x1E, 0x26, 0x21, 0x18, 0x24, 0x2B, 0xA7, 0x6E, 0x5F, 0x63, 0x9B, 0x17, + 0x51, 0x10, 0x35, 0x2C, 0x15, 0x52, 0x3E, 0x40, 0x57, 0x57, 0x25, 0x1C, 0x1F, 0x2B, 0x18, 0x10, + 0x27, 0x3C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2D, 0xFF, 0x63, 0x01, 0x68, 0x01, 0x1A, 0x00, 0x0A, + 0x00, 0x00, 0x17, 0x13, 0x37, 0x35, 0x06, 0x2B, 0x01, 0x35, 0x21, 0x15, 0x03, 0x34, 0xAF, 0x18, + 0x12, 0x15, 0xA7, 0x01, 0x3B, 0xCC, 0x9D, 0x01, 0x3D, 0x26, 0x02, 0x02, 0x54, 0x41, 0xFE, 0x8A, + 0x00, 0x03, 0x00, 0x1F, 0xFF, 0x5A, 0x01, 0x65, 0x01, 0x25, 0x00, 0x13, 0x00, 0x20, 0x00, 0x2E, + 0x00, 0x00, 0x17, 0x22, 0x26, 0x35, 0x34, 0x37, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x07, 0x16, 0x15, 0x14, 0x06, 0x03, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, + 0x1E, 0x02, 0x07, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x03, 0x27, 0x06, 0x15, 0x14, 0x16, 0xC4, 0x43, + 0x62, 0x45, 0x2F, 0x56, 0x3C, 0x3B, 0x5A, 0x35, 0x3E, 0x5F, 0x20, 0x1D, 0x25, 0x18, 0x17, 0x1F, + 0x0C, 0x1F, 0x13, 0x0A, 0x1A, 0x28, 0x09, 0x1A, 0x0F, 0x2B, 0x07, 0x27, 0x2B, 0xA6, 0x49, 0x40, + 0x3D, 0x31, 0x23, 0x37, 0x3A, 0x40, 0x42, 0x39, 0x31, 0x3B, 0x26, 0x3D, 0x3A, 0x47, 0x01, 0x03, + 0x24, 0x23, 0x16, 0x19, 0x16, 0x16, 0x0D, 0x15, 0x14, 0x09, 0xBD, 0x1D, 0x18, 0x0B, 0x12, 0x12, + 0x09, 0x14, 0x03, 0x22, 0x25, 0x1C, 0x21, 0x00, 0x00, 0x02, 0x00, 0x20, 0xFF, 0x59, 0x01, 0x63, + 0x01, 0x24, 0x00, 0x16, 0x00, 0x22, 0x00, 0x00, 0x17, 0x37, 0x16, 0x33, 0x32, 0x36, 0x37, 0x23, + 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x37, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x35, 0x1C, 0x22, 0x1F, 0x26, + 0x35, 0x0A, 0x02, 0x1C, 0x23, 0x45, 0x51, 0x53, 0x44, 0x49, 0x63, 0x6C, 0x60, 0x39, 0x66, 0x19, + 0x24, 0x2B, 0x1F, 0x1B, 0x1E, 0x26, 0x90, 0x51, 0x10, 0x35, 0x2B, 0x15, 0x52, 0x3F, 0x40, 0x57, + 0x6F, 0x5F, 0x62, 0x9B, 0xE8, 0x19, 0x0F, 0x27, 0x3C, 0x25, 0x1B, 0x1F, 0x2C, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x1A, 0xFF, 0xF4, 0x02, 0x2B, 0x02, 0xD2, 0x00, 0x25, 0x00, 0x00, 0x37, 0x35, + 0x33, 0x26, 0x37, 0x23, 0x35, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x17, 0x07, 0x26, 0x23, 0x22, 0x06, + 0x07, 0x21, 0x07, 0x21, 0x06, 0x17, 0x33, 0x07, 0x23, 0x1E, 0x01, 0x33, 0x32, 0x37, 0x17, 0x06, + 0x23, 0x22, 0x26, 0x27, 0x1A, 0x38, 0x05, 0x04, 0x37, 0x45, 0x21, 0xBB, 0x7A, 0x32, 0x39, 0x1F, + 0x1F, 0x30, 0x47, 0x6B, 0x17, 0x00, 0xFF, 0x10, 0xFE, 0xFF, 0x04, 0x05, 0xF4, 0x0F, 0xCF, 0x18, + 0x6C, 0x45, 0x2F, 0x2D, 0x18, 0x34, 0x42, 0x7F, 0xB8, 0x1F, 0xFA, 0x4C, 0x19, 0x25, 0x4D, 0x72, + 0x8F, 0x0D, 0x75, 0x0A, 0x4A, 0x3F, 0x4D, 0x1B, 0x23, 0x4C, 0x40, 0x4C, 0x0E, 0x76, 0x12, 0x90, + 0x76, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x52, 0x00, 0x00, 0x04, 0x0F, 0x02, 0xC6, 0x00, 0x17, + 0x00, 0x22, 0x00, 0x2C, 0x00, 0x30, 0x00, 0x00, 0x33, 0x11, 0x33, 0x01, 0x1E, 0x01, 0x1F, 0x01, + 0x33, 0x26, 0x35, 0x11, 0x33, 0x11, 0x23, 0x01, 0x2E, 0x01, 0x2F, 0x01, 0x23, 0x16, 0x15, 0x11, + 0x00, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x37, 0x14, 0x16, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x22, 0x06, 0x03, 0x35, 0x21, 0x15, 0x52, 0x81, 0x01, 0x0C, 0x0C, 0x1D, 0x09, + 0x09, 0x02, 0x07, 0x81, 0x80, 0xFE, 0xF2, 0x0C, 0x1D, 0x09, 0x09, 0x02, 0x07, 0x02, 0x0A, 0x58, + 0x42, 0x40, 0x59, 0x58, 0x41, 0x42, 0x05, 0x23, 0x34, 0x23, 0x23, 0x34, 0x23, 0x54, 0x01, 0x1E, + 0x02, 0xC6, 0xFE, 0x66, 0x13, 0x37, 0x12, 0x12, 0x44, 0x2A, 0x01, 0x9A, 0xFD, 0x3A, 0x01, 0x99, + 0x13, 0x37, 0x12, 0x12, 0x44, 0x2A, 0xFE, 0x67, 0x01, 0x90, 0x80, 0x58, 0x59, 0x3F, 0x40, 0x57, + 0x98, 0x1B, 0x25, 0x25, 0x1B, 0x1A, 0x24, 0x24, 0xFE, 0xC0, 0x58, 0x58, 0x00, 0x02, 0x00, 0x3A, + 0x01, 0x0B, 0x03, 0xA6, 0x02, 0xC6, 0x00, 0x14, 0x00, 0x1C, 0x00, 0x00, 0x01, 0x13, 0x33, 0x1F, + 0x01, 0x33, 0x36, 0x3F, 0x01, 0x33, 0x13, 0x23, 0x27, 0x37, 0x23, 0x07, 0x23, 0x27, 0x23, 0x17, + 0x07, 0x21, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x01, 0xDC, 0x23, 0x59, 0x5B, 0x0E, 0x02, + 0x06, 0x07, 0x5C, 0x59, 0x21, 0x5F, 0x11, 0x01, 0x02, 0x4D, 0x4C, 0x4E, 0x02, 0x01, 0x11, 0xFE, + 0x93, 0x95, 0x01, 0x87, 0x93, 0x01, 0x0B, 0x01, 0xBB, 0xD1, 0x2A, 0x19, 0x11, 0xD1, 0xFE, 0x45, + 0xE4, 0x1F, 0xB2, 0xB2, 0x1F, 0xE4, 0x01, 0x67, 0x54, 0x54, 0xFE, 0x99, 0x00, 0x01, 0x00, 0x1D, + 0x00, 0xEC, 0x02, 0x2D, 0x01, 0x4F, 0x00, 0x03, 0x00, 0x00, 0x37, 0x35, 0x21, 0x15, 0x1D, 0x02, + 0x10, 0xEC, 0x63, 0x63, 0x00, 0x01, 0x00, 0x38, 0x00, 0x9D, 0x01, 0xB6, 0x02, 0x1C, 0x00, 0x07, + 0x00, 0x00, 0x24, 0x22, 0x26, 0x34, 0x36, 0x32, 0x16, 0x14, 0x01, 0x46, 0x9E, 0x70, 0x70, 0x9E, + 0x70, 0x9D, 0x71, 0x9E, 0x70, 0x70, 0x9E, 0x00, 0x00, 0x02, 0x00, 0x25, 0x00, 0x66, 0x02, 0x24, + 0x01, 0xD8, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, 0x13, 0x27, 0x36, 0x33, 0x32, 0x16, 0x33, 0x32, + 0x37, 0x17, 0x06, 0x23, 0x22, 0x26, 0x23, 0x22, 0x03, 0x27, 0x36, 0x33, 0x32, 0x16, 0x33, 0x32, + 0x37, 0x17, 0x06, 0x23, 0x22, 0x26, 0x23, 0x22, 0x57, 0x32, 0x4C, 0x51, 0x32, 0x73, 0x21, 0x3A, + 0x31, 0x31, 0x4A, 0x52, 0x32, 0x73, 0x21, 0x37, 0x34, 0x32, 0x4D, 0x50, 0x32, 0x73, 0x21, 0x3A, + 0x31, 0x31, 0x4B, 0x51, 0x32, 0x73, 0x21, 0x36, 0x01, 0x42, 0x4A, 0x4C, 0x46, 0x37, 0x4B, 0x4C, + 0x46, 0xFE, 0xFD, 0x4B, 0x4B, 0x46, 0x37, 0x4B, 0x4B, 0x46, 0x00, 0x00, 0x00, 0x01, 0x00, 0x30, + 0x00, 0x18, 0x02, 0x19, 0x02, 0x25, 0x00, 0x13, 0x00, 0x00, 0x3F, 0x01, 0x23, 0x35, 0x33, 0x37, + 0x23, 0x35, 0x21, 0x37, 0x17, 0x07, 0x33, 0x15, 0x23, 0x07, 0x33, 0x15, 0x21, 0x07, 0x65, 0x31, + 0x66, 0xA6, 0x4A, 0xF0, 0x01, 0x31, 0x4C, 0x3D, 0x32, 0x61, 0xA1, 0x4A, 0xEB, 0xFE, 0xD5, 0x4B, + 0x3F, 0x47, 0x62, 0x6B, 0x62, 0x70, 0x28, 0x48, 0x62, 0x6B, 0x62, 0x6E, 0x00, 0x02, 0x00, 0x2D, + 0xFF, 0x49, 0x02, 0x0E, 0x02, 0x1D, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x37, 0x35, 0x25, 0x15, + 0x05, 0x15, 0x05, 0x15, 0x05, 0x21, 0x15, 0x21, 0x2D, 0x01, 0xE1, 0xFE, 0xA5, 0x01, 0x5B, 0xFE, + 0x21, 0x01, 0xDF, 0xFE, 0x21, 0xF5, 0x52, 0xD6, 0x6F, 0x8F, 0x02, 0x8F, 0x6F, 0x74, 0x62, 0x00, + 0x00, 0x02, 0x00, 0x3C, 0xFF, 0x49, 0x02, 0x1D, 0x02, 0x1D, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, + 0x37, 0x35, 0x25, 0x35, 0x25, 0x35, 0x05, 0x15, 0x01, 0x21, 0x15, 0x21, 0x3C, 0x01, 0x5A, 0xFE, + 0xA6, 0x01, 0xE1, 0xFE, 0x1F, 0x01, 0xDF, 0xFE, 0x21, 0x1F, 0x6F, 0x8F, 0x02, 0x8F, 0x6F, 0xD6, + 0x52, 0xFE, 0xB6, 0x62, 0x00, 0x01, 0x00, 0x6E, 0xFF, 0x32, 0x00, 0xE6, 0xFF, 0xC9, 0x00, 0x09, + 0x00, 0x00, 0x17, 0x33, 0x16, 0x15, 0x14, 0x07, 0x23, 0x36, 0x35, 0x34, 0x76, 0x69, 0x07, 0x1A, + 0x5E, 0x14, 0x37, 0x1C, 0x1A, 0x2B, 0x36, 0x35, 0x22, 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x13, + 0x02, 0xE6, 0x01, 0x5B, 0x03, 0x7D, 0x00, 0x0F, 0x00, 0x00, 0x12, 0x22, 0x26, 0x3D, 0x01, 0x33, + 0x15, 0x14, 0x16, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0xFB, 0x88, 0x60, 0x61, 0x28, 0x36, + 0x29, 0x60, 0x02, 0xE6, 0x4B, 0x3F, 0x0D, 0x0D, 0x1E, 0x21, 0x21, 0x1F, 0x0C, 0x0D, 0x3F, 0x00, + 0x00, 0x04, 0x00, 0x2A, 0xFF, 0x6E, 0x04, 0x40, 0x03, 0x5D, 0x00, 0x11, 0x00, 0x23, 0x00, 0x35, + 0x00, 0x49, 0x00, 0x00, 0x17, 0x35, 0x27, 0x11, 0x37, 0x35, 0x25, 0x17, 0x37, 0x05, 0x15, 0x17, + 0x11, 0x07, 0x15, 0x05, 0x27, 0x07, 0x27, 0x17, 0x37, 0x17, 0x37, 0x35, 0x37, 0x35, 0x27, 0x35, + 0x27, 0x07, 0x27, 0x07, 0x15, 0x07, 0x15, 0x1F, 0x01, 0x35, 0x27, 0x35, 0x37, 0x35, 0x37, 0x17, + 0x37, 0x17, 0x15, 0x17, 0x15, 0x07, 0x15, 0x07, 0x27, 0x07, 0x27, 0x33, 0x35, 0x33, 0x35, 0x23, + 0x35, 0x33, 0x32, 0x16, 0x1D, 0x01, 0x33, 0x35, 0x34, 0x26, 0x23, 0x21, 0x15, 0x33, 0xA8, 0x7E, + 0x7E, 0x01, 0x09, 0x86, 0x84, 0x01, 0x09, 0x7C, 0x7C, 0xFE, 0xF7, 0x84, 0x86, 0xE1, 0xEE, 0x79, + 0x76, 0xEE, 0x72, 0x72, 0xEE, 0x76, 0x79, 0xEE, 0x72, 0x72, 0x22, 0x63, 0x63, 0xD7, 0x6E, 0x6B, + 0xD6, 0x64, 0x64, 0xD6, 0x6B, 0x6E, 0x0A, 0x2B, 0xE4, 0xE4, 0xC7, 0x11, 0x0C, 0x2A, 0x1A, 0x20, + 0xFE, 0xC0, 0x41, 0x05, 0x98, 0x48, 0x01, 0x16, 0x47, 0x97, 0x8E, 0x47, 0x47, 0x8E, 0x97, 0x47, + 0xFE, 0xEA, 0x48, 0x98, 0x8D, 0x47, 0x47, 0xB0, 0x7E, 0x42, 0x42, 0x7E, 0x8B, 0x40, 0xF9, 0x42, + 0x88, 0x7E, 0x40, 0x40, 0x7E, 0x88, 0x42, 0xF9, 0x40, 0x69, 0x79, 0x3C, 0xE1, 0x3A, 0x7B, 0x72, + 0x3B, 0x3B, 0x72, 0x7B, 0x3A, 0xE1, 0x3C, 0x79, 0x72, 0x3A, 0x3A, 0x8D, 0xE4, 0x28, 0xC0, 0x0D, + 0x10, 0x2A, 0x36, 0x1E, 0x1B, 0x28, 0x00, 0x00, 0x00, 0x01, 0x00, 0x21, 0x00, 0x00, 0x02, 0xBF, + 0x02, 0xCA, 0x00, 0x2B, 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, 0x33, 0x35, 0x34, 0x3E, 0x03, 0x33, + 0x32, 0x17, 0x15, 0x26, 0x23, 0x22, 0x1D, 0x01, 0x33, 0x35, 0x34, 0x3E, 0x03, 0x33, 0x32, 0x17, + 0x15, 0x26, 0x23, 0x22, 0x1D, 0x01, 0x33, 0x15, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x60, 0x3F, + 0x3F, 0x1E, 0x2C, 0x3D, 0x30, 0x19, 0x1C, 0x0F, 0x08, 0x12, 0x63, 0xE6, 0x1E, 0x2C, 0x3D, 0x30, + 0x19, 0x1C, 0x0F, 0x08, 0x12, 0x63, 0x6E, 0x6E, 0x7E, 0xE6, 0x01, 0x99, 0x65, 0x0F, 0x30, 0x47, + 0x27, 0x18, 0x07, 0x03, 0x6C, 0x02, 0x53, 0x0C, 0x0F, 0x30, 0x47, 0x27, 0x18, 0x07, 0x03, 0x6C, + 0x02, 0x53, 0x0C, 0x65, 0xFE, 0x67, 0x01, 0x99, 0xFE, 0x67, 0x00, 0x00, 0x00, 0x02, 0x00, 0x21, + 0x00, 0x00, 0x02, 0x26, 0x02, 0xCA, 0x00, 0x19, 0x00, 0x1D, 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, + 0x33, 0x35, 0x34, 0x3E, 0x03, 0x33, 0x32, 0x17, 0x15, 0x26, 0x23, 0x22, 0x1D, 0x01, 0x21, 0x11, + 0x23, 0x11, 0x23, 0x11, 0x13, 0x35, 0x33, 0x15, 0x60, 0x3F, 0x3F, 0x1E, 0x2C, 0x3D, 0x30, 0x19, + 0x1C, 0x0F, 0x08, 0x12, 0x63, 0x01, 0x48, 0x7E, 0xCA, 0xC9, 0x7F, 0x01, 0x99, 0x65, 0x0F, 0x30, + 0x47, 0x27, 0x18, 0x07, 0x03, 0x6C, 0x02, 0x53, 0x0C, 0xFE, 0x02, 0x01, 0x99, 0xFE, 0x67, 0x02, + 0x55, 0x71, 0x71, 0x00, 0x00, 0x02, 0x00, 0x22, 0xFF, 0xFB, 0x02, 0x68, 0x02, 0xCA, 0x00, 0x0F, + 0x00, 0x27, 0x00, 0x00, 0x25, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x37, 0x15, 0x06, 0x23, + 0x22, 0x2E, 0x02, 0x05, 0x11, 0x23, 0x35, 0x33, 0x35, 0x34, 0x3E, 0x03, 0x33, 0x32, 0x17, 0x15, + 0x26, 0x23, 0x22, 0x1D, 0x01, 0x33, 0x15, 0x23, 0x11, 0x01, 0xA3, 0x7E, 0x19, 0x1B, 0x0C, 0x07, + 0x1B, 0x0D, 0x1F, 0x30, 0x32, 0x1C, 0xFE, 0xBE, 0x3F, 0x3F, 0x1F, 0x2C, 0x3D, 0x30, 0x19, 0x1C, + 0x0F, 0x08, 0x12, 0x63, 0x6E, 0x6E, 0x9F, 0x02, 0x27, 0xFD, 0xEC, 0x28, 0x1E, 0x01, 0x6F, 0x03, + 0x0B, 0x1F, 0x46, 0x6B, 0x01, 0x92, 0x65, 0x16, 0x30, 0x47, 0x27, 0x18, 0x07, 0x03, 0x6C, 0x02, + 0x53, 0x13, 0x65, 0xFE, 0x6E, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x21, 0x00, 0x00, 0x03, 0x8B, + 0x02, 0xCA, 0x00, 0x2D, 0x00, 0x31, 0x00, 0x00, 0x33, 0x11, 0x23, 0x35, 0x33, 0x35, 0x34, 0x3E, + 0x03, 0x33, 0x32, 0x17, 0x15, 0x26, 0x23, 0x22, 0x1D, 0x01, 0x33, 0x35, 0x34, 0x3E, 0x03, 0x33, + 0x32, 0x17, 0x15, 0x26, 0x23, 0x22, 0x1D, 0x01, 0x21, 0x11, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, + 0x23, 0x11, 0x01, 0x35, 0x33, 0x15, 0x60, 0x3F, 0x3F, 0x1E, 0x2C, 0x3D, 0x30, 0x19, 0x1C, 0x0F, + 0x08, 0x12, 0x63, 0xE6, 0x1E, 0x2C, 0x3D, 0x30, 0x19, 0x1C, 0x0F, 0x08, 0x12, 0x63, 0x01, 0x48, + 0x7E, 0xCA, 0x7E, 0xE6, 0x02, 0x2E, 0x7F, 0x01, 0x99, 0x65, 0x0F, 0x30, 0x47, 0x27, 0x18, 0x07, + 0x03, 0x6C, 0x02, 0x53, 0x0C, 0x0F, 0x30, 0x47, 0x27, 0x18, 0x07, 0x03, 0x6C, 0x02, 0x53, 0x0C, + 0xFE, 0x02, 0x01, 0x99, 0xFE, 0x67, 0x01, 0x99, 0xFE, 0x67, 0x02, 0x55, 0x71, 0x71, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x21, 0xFF, 0xFB, 0x03, 0xCB, 0x02, 0xCA, 0x00, 0x2B, 0x00, 0x3C, 0x00, 0x00, + 0x33, 0x11, 0x23, 0x35, 0x33, 0x35, 0x34, 0x3E, 0x03, 0x33, 0x32, 0x17, 0x15, 0x26, 0x23, 0x22, + 0x1D, 0x01, 0x33, 0x35, 0x34, 0x3E, 0x03, 0x33, 0x32, 0x17, 0x15, 0x26, 0x23, 0x22, 0x1D, 0x01, + 0x33, 0x15, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x25, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, + 0x37, 0x15, 0x06, 0x23, 0x22, 0x2E, 0x03, 0x60, 0x3F, 0x3F, 0x1E, 0x2C, 0x3D, 0x30, 0x19, 0x1C, + 0x0F, 0x08, 0x12, 0x63, 0xE6, 0x1E, 0x2C, 0x3D, 0x30, 0x19, 0x1C, 0x0F, 0x08, 0x12, 0x63, 0x6E, + 0x6E, 0x7E, 0xE6, 0x02, 0x27, 0x7F, 0x19, 0x1B, 0x0C, 0x07, 0x1B, 0x0D, 0x18, 0x27, 0x2D, 0x1E, + 0x14, 0x01, 0x99, 0x65, 0x0F, 0x30, 0x47, 0x27, 0x18, 0x07, 0x03, 0x6C, 0x02, 0x53, 0x0C, 0x0F, + 0x30, 0x47, 0x27, 0x18, 0x07, 0x03, 0x6C, 0x02, 0x53, 0x0C, 0x65, 0xFE, 0x67, 0x01, 0x99, 0xFE, + 0x67, 0x9F, 0x02, 0x27, 0xFD, 0xEC, 0x28, 0x1E, 0x01, 0x6F, 0x03, 0x06, 0x14, 0x22, 0x3E, 0x00, + 0x00, 0x02, 0x00, 0x21, 0xFF, 0x31, 0x02, 0x26, 0x02, 0xCA, 0x00, 0x28, 0x00, 0x2C, 0x00, 0x00, + 0x33, 0x11, 0x23, 0x35, 0x33, 0x35, 0x34, 0x3E, 0x03, 0x33, 0x32, 0x17, 0x15, 0x26, 0x23, 0x22, + 0x1D, 0x01, 0x21, 0x11, 0x14, 0x0E, 0x03, 0x23, 0x22, 0x27, 0x35, 0x16, 0x33, 0x32, 0x3E, 0x02, + 0x35, 0x11, 0x23, 0x11, 0x13, 0x35, 0x33, 0x15, 0x60, 0x3F, 0x3F, 0x1E, 0x2C, 0x3D, 0x30, 0x19, + 0x1C, 0x0F, 0x08, 0x12, 0x63, 0x01, 0x48, 0x20, 0x2D, 0x3E, 0x30, 0x19, 0x14, 0x13, 0x0C, 0x0A, + 0x11, 0x1E, 0x23, 0x15, 0xCA, 0xC9, 0x7F, 0x01, 0x99, 0x65, 0x0F, 0x30, 0x47, 0x27, 0x18, 0x07, + 0x03, 0x6C, 0x02, 0x53, 0x0C, 0xFD, 0xF3, 0x31, 0x49, 0x27, 0x18, 0x07, 0x03, 0x6B, 0x02, 0x07, + 0x11, 0x29, 0x1D, 0x01, 0x9E, 0xFE, 0x67, 0x02, 0x55, 0x71, 0x71, 0x00, 0x00, 0x02, 0x00, 0x24, + 0xFF, 0xF4, 0x02, 0x27, 0x02, 0xD2, 0x00, 0x0E, 0x00, 0x14, 0x00, 0x00, 0x04, 0x22, 0x2E, 0x02, + 0x34, 0x3E, 0x02, 0x33, 0x20, 0x11, 0x14, 0x0E, 0x01, 0x24, 0x32, 0x35, 0x34, 0x22, 0x15, 0x01, + 0x6C, 0x8C, 0x67, 0x3A, 0x1B, 0x1B, 0x3A, 0x66, 0x47, 0x01, 0x01, 0x1B, 0x39, 0xFE, 0xD6, 0xFA, + 0xFA, 0x0C, 0x38, 0x68, 0x80, 0xA0, 0x80, 0x66, 0x38, 0xFE, 0x92, 0x50, 0x80, 0x68, 0x3E, 0xFA, + 0xF7, 0xF7, 0x00, 0x00, 0x00, 0x01, 0x00, 0x4F, 0x00, 0x00, 0x02, 0x0C, 0x02, 0xC6, 0x00, 0x0E, + 0x00, 0x00, 0x33, 0x35, 0x33, 0x11, 0x37, 0x23, 0x06, 0x0F, 0x01, 0x27, 0x37, 0x33, 0x11, 0x33, + 0x15, 0x5A, 0x9B, 0x01, 0x02, 0x09, 0x17, 0x39, 0x4C, 0xB2, 0x71, 0x9A, 0x6F, 0x01, 0x8A, 0x30, + 0x11, 0x17, 0x36, 0x50, 0xAB, 0xFD, 0xA9, 0x6F, 0x00, 0x01, 0x00, 0x35, 0x00, 0x00, 0x02, 0x12, + 0x02, 0xD2, 0x00, 0x21, 0x00, 0x00, 0x33, 0x26, 0x35, 0x34, 0x3E, 0x05, 0x35, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x07, 0x27, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x05, 0x07, 0x21, 0x15, + 0x3B, 0x06, 0x25, 0x3A, 0x47, 0x47, 0x3A, 0x25, 0x3E, 0x2E, 0x27, 0x44, 0x15, 0x60, 0x22, 0x78, + 0x51, 0x61, 0x86, 0x23, 0x38, 0x45, 0x44, 0x3A, 0x25, 0x01, 0x01, 0x4F, 0x22, 0x1D, 0x34, 0x5A, + 0x41, 0x38, 0x30, 0x2E, 0x35, 0x1C, 0x2D, 0x36, 0x30, 0x24, 0x40, 0x3E, 0x50, 0x71, 0x61, 0x2E, + 0x51, 0x3A, 0x34, 0x2C, 0x2B, 0x32, 0x1B, 0x6F, 0x00, 0x01, 0x00, 0x2C, 0xFF, 0xF4, 0x02, 0x11, + 0x02, 0xC6, 0x00, 0x21, 0x00, 0x00, 0x3F, 0x01, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x2B, 0x01, 0x27, 0x37, 0x3E, 0x01, 0x3F, 0x01, 0x35, 0x06, 0x2B, 0x01, 0x35, 0x21, 0x15, 0x07, + 0x1E, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x2C, 0x42, 0x1E, 0x57, 0x2D, 0x37, 0x48, 0x55, + 0x43, 0x31, 0x1C, 0x82, 0x0C, 0x1A, 0x06, 0x07, 0x16, 0x29, 0xD4, 0x01, 0xB1, 0xAD, 0x50, 0x71, + 0x88, 0x72, 0x41, 0x7D, 0x53, 0x63, 0x1F, 0x29, 0x3C, 0x2E, 0x36, 0x38, 0x42, 0x9A, 0x0F, 0x1B, + 0x06, 0x06, 0x02, 0x03, 0x6F, 0x51, 0xC9, 0x0B, 0x6D, 0x57, 0x60, 0x89, 0x31, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x0D, 0x00, 0x00, 0x02, 0x34, 0x02, 0xC6, 0x00, 0x0A, 0x00, 0x12, 0x00, 0x00, + 0x37, 0x35, 0x01, 0x33, 0x11, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x27, 0x33, 0x35, 0x37, 0x23, + 0x06, 0x0F, 0x01, 0x0D, 0x01, 0x33, 0x98, 0x5C, 0x5C, 0x7F, 0xC4, 0xC4, 0x05, 0x02, 0x10, 0x13, + 0xA4, 0xB7, 0x4F, 0x01, 0xC0, 0xFE, 0x5C, 0x6B, 0xB7, 0xB7, 0x6B, 0xDC, 0x4A, 0x26, 0x1B, 0xE3, + 0x00, 0x01, 0x00, 0x33, 0xFF, 0xF4, 0x02, 0x17, 0x02, 0xC6, 0x00, 0x1D, 0x00, 0x00, 0x3F, 0x01, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x07, 0x27, 0x13, 0x21, 0x15, 0x21, 0x0F, + 0x01, 0x33, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x33, 0x43, 0x41, 0x56, + 0x36, 0x4F, 0x50, 0x3E, 0x3B, 0x33, 0x48, 0x21, 0x01, 0x76, 0xFE, 0xFA, 0x0B, 0x05, 0x02, 0x1E, + 0x2E, 0x72, 0x88, 0x92, 0x6E, 0x41, 0x78, 0x54, 0x61, 0x47, 0x43, 0x36, 0x37, 0x44, 0x1E, 0x1A, + 0x01, 0x68, 0x6F, 0x75, 0x21, 0x10, 0x86, 0x63, 0x69, 0x8B, 0x32, 0x00, 0x00, 0x02, 0x00, 0x2B, + 0xFF, 0xF4, 0x02, 0x27, 0x02, 0xD2, 0x00, 0x19, 0x00, 0x25, 0x00, 0x00, 0x13, 0x34, 0x3E, 0x03, + 0x33, 0x32, 0x17, 0x07, 0x26, 0x23, 0x22, 0x06, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x14, + 0x06, 0x23, 0x22, 0x26, 0x05, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, + 0x2B, 0x19, 0x36, 0x4B, 0x6D, 0x40, 0x53, 0x3F, 0x26, 0x28, 0x3D, 0x4E, 0x60, 0x0E, 0x02, 0x12, + 0x4C, 0x27, 0x66, 0x7D, 0x82, 0x67, 0x74, 0x9F, 0x01, 0x14, 0x2F, 0x3A, 0x45, 0x3D, 0x31, 0x44, + 0x54, 0x01, 0x44, 0x39, 0x70, 0x67, 0x4F, 0x2F, 0x1E, 0x6F, 0x16, 0x6E, 0x50, 0x16, 0x1C, 0x8A, + 0xC8, 0x89, 0xB6, 0x40, 0x44, 0x33, 0x39, 0x4B, 0x2B, 0x25, 0x3E, 0x6D, 0x00, 0x01, 0x00, 0x39, + 0x00, 0x00, 0x02, 0x21, 0x02, 0xC6, 0x00, 0x0D, 0x00, 0x00, 0x33, 0x01, 0x3E, 0x01, 0x3F, 0x01, + 0x35, 0x06, 0x23, 0x21, 0x35, 0x21, 0x15, 0x01, 0x64, 0x01, 0x0A, 0x0A, 0x15, 0x05, 0x05, 0x0B, + 0x24, 0xFE, 0xD1, 0x01, 0xE8, 0xFE, 0xC9, 0x02, 0x16, 0x14, 0x20, 0x06, 0x07, 0x02, 0x02, 0x6F, + 0x5A, 0xFD, 0x94, 0x00, 0x00, 0x03, 0x00, 0x26, 0xFF, 0xF4, 0x02, 0x1E, 0x02, 0xD2, 0x00, 0x14, + 0x00, 0x26, 0x00, 0x34, 0x00, 0x00, 0x37, 0x34, 0x3E, 0x02, 0x37, 0x26, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x14, 0x07, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x01, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x14, 0x1E, 0x07, 0x07, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x03, + 0x27, 0x06, 0x26, 0x18, 0x28, 0x1D, 0x0F, 0x4A, 0x76, 0x6E, 0x65, 0x81, 0x4F, 0x5B, 0x89, 0x72, + 0x70, 0x8D, 0x01, 0x3D, 0x31, 0x3B, 0x30, 0x2E, 0x34, 0x05, 0x0D, 0x09, 0x19, 0x0D, 0x21, 0x0D, + 0x28, 0xB4, 0x48, 0x31, 0x33, 0x45, 0x11, 0x2B, 0x1E, 0x46, 0x0E, 0x43, 0xCD, 0x23, 0x40, 0x2F, + 0x1B, 0x0B, 0x39, 0xA2, 0x72, 0x6A, 0xB4, 0x57, 0x3A, 0x5C, 0x56, 0x7D, 0x7D, 0x01, 0x1C, 0x3C, + 0x3B, 0x2A, 0x31, 0x2E, 0x24, 0x0B, 0x13, 0x13, 0x0D, 0x10, 0x09, 0x10, 0x05, 0x12, 0xB8, 0x30, + 0x41, 0x39, 0x2D, 0x13, 0x1E, 0x1D, 0x10, 0x1E, 0x07, 0x39, 0x00, 0x00, 0x00, 0x02, 0x00, 0x22, + 0xFF, 0xF4, 0x02, 0x1E, 0x02, 0xD2, 0x00, 0x1A, 0x00, 0x26, 0x00, 0x00, 0x3F, 0x01, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x0E, 0x03, 0x23, 0x22, 0x13, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, + 0x16, 0x46, 0x26, 0x30, 0x34, 0x4E, 0x60, 0x0F, 0x02, 0x12, 0x4C, 0x27, 0x66, 0x7E, 0x82, 0x68, + 0x74, 0x9E, 0x19, 0x36, 0x4B, 0x6D, 0x40, 0x54, 0xA1, 0x30, 0x45, 0x55, 0x37, 0x31, 0x3A, 0x45, + 0x12, 0x6F, 0x17, 0x6D, 0x51, 0x16, 0x1C, 0x8B, 0x63, 0x64, 0x8A, 0xB6, 0x9B, 0x39, 0x70, 0x67, + 0x4E, 0x2F, 0x01, 0x6C, 0x2D, 0x20, 0x43, 0x6B, 0x43, 0x34, 0x39, 0x4B, 0x00, 0x01, 0x00, 0x42, + 0x01, 0x24, 0x01, 0x6E, 0x01, 0x93, 0x00, 0x03, 0x00, 0x00, 0x13, 0x35, 0x21, 0x15, 0x42, 0x01, + 0x2C, 0x01, 0x24, 0x6F, 0x6F, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x30, 0xFF, 0xBF, 0x01, 0x12, + 0x03, 0x03, 0x00, 0x09, 0x00, 0x00, 0x17, 0x26, 0x35, 0x34, 0x37, 0x33, 0x06, 0x15, 0x14, 0x17, + 0xA7, 0x77, 0x77, 0x6B, 0x71, 0x71, 0x41, 0xC3, 0xF3, 0xD2, 0xBC, 0xBE, 0xD1, 0xE2, 0xD3, 0x00, + 0x00, 0x01, 0x00, 0x22, 0xFF, 0xBF, 0x01, 0x04, 0x03, 0x03, 0x00, 0x09, 0x00, 0x00, 0x17, 0x36, + 0x35, 0x34, 0x27, 0x33, 0x16, 0x15, 0x14, 0x07, 0x22, 0x71, 0x71, 0x6B, 0x77, 0x77, 0x41, 0xD3, + 0xE2, 0xD1, 0xBE, 0xBC, 0xD2, 0xF3, 0xC3, 0x00, 0x00, 0x01, 0x00, 0x50, 0xFF, 0xBF, 0x01, 0x15, + 0x03, 0x03, 0x00, 0x07, 0x00, 0x00, 0x17, 0x11, 0x33, 0x15, 0x23, 0x11, 0x33, 0x15, 0x50, 0xC5, + 0x59, 0x59, 0x41, 0x03, 0x44, 0x5C, 0xFD, 0x74, 0x5C, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2C, + 0xFF, 0xBF, 0x00, 0xF1, 0x03, 0x03, 0x00, 0x07, 0x00, 0x00, 0x37, 0x33, 0x11, 0x23, 0x35, 0x33, + 0x11, 0x23, 0x2C, 0x59, 0x59, 0xC5, 0xC5, 0x1B, 0x02, 0x8C, 0x5C, 0xFC, 0xBC, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x25, 0xFF, 0xBB, 0x01, 0x4A, 0x03, 0x06, 0x00, 0x2B, 0x00, 0x00, 0x37, 0x35, + 0x34, 0x26, 0x27, 0x35, 0x3E, 0x01, 0x3D, 0x01, 0x34, 0x3E, 0x03, 0x33, 0x17, 0x15, 0x26, 0x23, + 0x22, 0x0E, 0x02, 0x1D, 0x01, 0x14, 0x06, 0x07, 0x15, 0x16, 0x1D, 0x01, 0x14, 0x33, 0x37, 0x15, + 0x06, 0x23, 0x22, 0x2E, 0x03, 0x7A, 0x2B, 0x2A, 0x28, 0x2D, 0x1B, 0x25, 0x35, 0x27, 0x15, 0x1F, + 0x08, 0x0A, 0x0D, 0x17, 0x1C, 0x11, 0x2D, 0x26, 0x53, 0x51, 0x12, 0x0D, 0x12, 0x15, 0x27, 0x35, + 0x25, 0x1B, 0x65, 0x61, 0x2B, 0x37, 0x06, 0x6F, 0x06, 0x37, 0x2D, 0x56, 0x2B, 0x41, 0x23, 0x14, + 0x06, 0x01, 0x5E, 0x01, 0x06, 0x10, 0x24, 0x1B, 0x6D, 0x2D, 0x44, 0x0E, 0x02, 0x1F, 0x5F, 0x78, + 0x55, 0x01, 0x5E, 0x02, 0x06, 0x14, 0x23, 0x41, 0x00, 0x01, 0x00, 0x29, 0xFF, 0xBB, 0x01, 0x4D, + 0x03, 0x06, 0x00, 0x2B, 0x00, 0x00, 0x37, 0x16, 0x33, 0x32, 0x3D, 0x01, 0x34, 0x36, 0x37, 0x35, + 0x2E, 0x01, 0x3D, 0x01, 0x34, 0x2E, 0x02, 0x23, 0x07, 0x35, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x1D, + 0x01, 0x14, 0x16, 0x17, 0x15, 0x0E, 0x01, 0x1D, 0x01, 0x14, 0x0E, 0x03, 0x23, 0x27, 0x29, 0x07, + 0x0B, 0x51, 0x2B, 0x27, 0x22, 0x30, 0x11, 0x1C, 0x17, 0x0D, 0x12, 0x0C, 0x13, 0x1B, 0x32, 0x3E, + 0x25, 0x2C, 0x29, 0x27, 0x2E, 0x1B, 0x25, 0x34, 0x27, 0x15, 0x1F, 0x1B, 0x01, 0x55, 0x78, 0x2C, + 0x46, 0x0C, 0x02, 0x0C, 0x45, 0x2E, 0x6D, 0x1B, 0x24, 0x10, 0x06, 0x01, 0x5E, 0x01, 0x0B, 0x20, + 0x49, 0x35, 0x56, 0x2A, 0x3B, 0x05, 0x6F, 0x04, 0x3A, 0x2A, 0x61, 0x2C, 0x41, 0x22, 0x15, 0x06, + 0x02, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x34, 0xFF, 0xF1, 0x03, 0x08, 0x02, 0xD5, 0x00, 0x1D, + 0x00, 0x25, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x16, 0x1D, 0x01, 0x33, 0x15, 0x21, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x3B, 0x01, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x15, + 0x22, 0x26, 0x24, 0x14, 0x16, 0x3B, 0x01, 0x35, 0x23, 0x22, 0x34, 0xD9, 0x9F, 0x8F, 0x84, 0x49, + 0xFE, 0xEB, 0x61, 0x76, 0x75, 0x62, 0x55, 0x01, 0x55, 0x42, 0x6B, 0x94, 0x95, 0x7B, 0xB0, 0xDD, + 0x01, 0x67, 0x35, 0x2B, 0x4D, 0x4B, 0x2C, 0x01, 0x60, 0x9C, 0xD9, 0x7A, 0x60, 0xFA, 0x5B, 0x6E, + 0x4C, 0x4B, 0x6C, 0x27, 0x31, 0xA2, 0x6D, 0x71, 0x9B, 0x63, 0xD2, 0xC9, 0x52, 0x39, 0xC4, 0x00, + 0x00, 0x02, 0x00, 0x28, 0x00, 0x89, 0x02, 0x26, 0x02, 0x24, 0x00, 0x05, 0x00, 0x0B, 0x00, 0x00, + 0x25, 0x27, 0x37, 0x33, 0x07, 0x17, 0x21, 0x27, 0x37, 0x33, 0x07, 0x17, 0x01, 0xAD, 0xA4, 0xA4, + 0x79, 0xA4, 0xA4, 0xFE, 0xA6, 0xA4, 0xA4, 0x79, 0xA4, 0xA4, 0x89, 0xCD, 0xCE, 0xCE, 0xCD, 0xCD, + 0xCE, 0xCE, 0xCD, 0x00, 0x00, 0x02, 0x00, 0x2F, 0x00, 0x89, 0x02, 0x2D, 0x02, 0x24, 0x00, 0x05, + 0x00, 0x0B, 0x00, 0x00, 0x25, 0x37, 0x27, 0x33, 0x17, 0x07, 0x21, 0x37, 0x27, 0x33, 0x17, 0x07, + 0x01, 0x10, 0xA4, 0xA4, 0x79, 0xA4, 0xA4, 0xFE, 0xA6, 0xA4, 0xA4, 0x79, 0xA4, 0xA4, 0x89, 0xCD, + 0xCE, 0xCE, 0xCD, 0xCD, 0xCE, 0xCE, 0xCD, 0x00, 0x00, 0x01, 0x00, 0x28, 0x00, 0x89, 0x01, 0x45, + 0x02, 0x24, 0x00, 0x05, 0x00, 0x00, 0x37, 0x27, 0x37, 0x33, 0x07, 0x17, 0xCC, 0xA4, 0xA4, 0x79, + 0xA4, 0xA4, 0x89, 0xCD, 0xCE, 0xCE, 0xCD, 0x00, 0x00, 0x01, 0x00, 0x2F, 0x00, 0x89, 0x01, 0x4C, + 0x02, 0x24, 0x00, 0x05, 0x00, 0x00, 0x3F, 0x01, 0x27, 0x33, 0x17, 0x07, 0x2F, 0xA4, 0xA4, 0x79, + 0xA4, 0xA4, 0x89, 0xCD, 0xCE, 0xCE, 0xCD, 0x00, 0x00, 0x01, 0x00, 0x42, 0x01, 0x28, 0x02, 0x6B, + 0x01, 0x8B, 0x00, 0x03, 0x00, 0x00, 0x13, 0x35, 0x21, 0x15, 0x42, 0x02, 0x29, 0x01, 0x28, 0x63, + 0x63, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x42, 0x01, 0x28, 0x03, 0x33, 0x01, 0x8B, 0x00, 0x03, + 0x00, 0x00, 0x13, 0x35, 0x21, 0x15, 0x42, 0x02, 0xF1, 0x01, 0x28, 0x63, 0x63, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x42, 0x01, 0x1A, 0x00, 0xBC, 0x01, 0x99, 0x00, 0x03, 0x00, 0x00, 0x13, 0x35, + 0x33, 0x15, 0x42, 0x7A, 0x01, 0x1A, 0x7F, 0x7F, 0x00, 0x02, 0x00, 0x28, 0xFF, 0xF1, 0x01, 0xBF, + 0x02, 0xC5, 0x00, 0x19, 0x00, 0x1D, 0x00, 0x00, 0x01, 0x15, 0x14, 0x0E, 0x03, 0x15, 0x14, 0x16, + 0x33, 0x32, 0x37, 0x17, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x3E, 0x03, 0x3D, 0x01, 0x37, 0x15, + 0x23, 0x35, 0x01, 0x51, 0x22, 0x30, 0x30, 0x22, 0x38, 0x29, 0x37, 0x33, 0x47, 0x4C, 0x70, 0x59, + 0x82, 0x24, 0x33, 0x34, 0x24, 0x7B, 0x7B, 0x01, 0xF8, 0x30, 0x28, 0x42, 0x2C, 0x29, 0x33, 0x1D, + 0x23, 0x30, 0x2A, 0x57, 0x48, 0x67, 0x55, 0x2E, 0x4A, 0x30, 0x2B, 0x34, 0x1D, 0x27, 0xCD, 0x77, + 0x77, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x4E, 0xFF, 0xFF, 0x00, 0xD1, 0x02, 0xC5, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x00, 0x1B, 0x01, 0x23, 0x13, 0x37, 0x15, 0x23, 0x35, 0xC7, 0x0A, 0x83, 0x0A, + 0x75, 0x7B, 0x01, 0xF8, 0xFE, 0x07, 0x01, 0xF9, 0xCD, 0x77, 0x77, 0x00, 0x00, 0x01, 0x00, 0x4F, + 0x00, 0xBB, 0x01, 0x9D, 0x02, 0x09, 0x00, 0x09, 0x00, 0x00, 0x37, 0x22, 0x26, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x14, 0x06, 0xF6, 0x45, 0x62, 0x62, 0x45, 0x46, 0x61, 0x61, 0xBB, 0x62, 0x8A, 0x62, + 0x62, 0x8A, 0x62, 0x00, 0x00, 0x02, 0x00, 0x2E, 0xFF, 0xF4, 0x02, 0x1B, 0x02, 0x32, 0x00, 0x0E, + 0x00, 0x19, 0x00, 0x00, 0x13, 0x34, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x14, 0x0E, 0x02, 0x23, 0x22, + 0x26, 0x36, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x2E, 0x7E, 0x79, 0x3E, + 0x61, 0x3A, 0x1D, 0x1D, 0x3A, 0x61, 0x3E, 0x79, 0x7E, 0x80, 0x3B, 0x3C, 0x3B, 0x3B, 0x3B, 0x3B, + 0x3C, 0x01, 0x12, 0x77, 0xA9, 0x31, 0x53, 0x65, 0x70, 0x63, 0x52, 0x30, 0xA8, 0xC2, 0x96, 0x68, + 0x68, 0x4A, 0x4B, 0x69, 0x00, 0x01, 0x00, 0x25, 0x00, 0x00, 0x01, 0xD6, 0x02, 0x26, 0x00, 0x0E, + 0x00, 0x00, 0x33, 0x35, 0x33, 0x35, 0x37, 0x23, 0x06, 0x0F, 0x01, 0x27, 0x37, 0x33, 0x11, 0x33, + 0x15, 0x3F, 0x94, 0x01, 0x02, 0x0F, 0x17, 0x4D, 0x3A, 0xBB, 0x6E, 0x88, 0x6C, 0xF9, 0x41, 0x10, + 0x0E, 0x2D, 0x57, 0x74, 0xFE, 0x46, 0x6C, 0x00, 0x00, 0x01, 0x00, 0x29, 0x00, 0x00, 0x01, 0xF6, + 0x02, 0x32, 0x00, 0x1A, 0x00, 0x00, 0x33, 0x35, 0x3E, 0x03, 0x35, 0x34, 0x26, 0x23, 0x22, 0x07, + 0x27, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x36, 0x3B, 0x01, 0x15, 0x37, + 0x3D, 0x58, 0x5E, 0x31, 0x37, 0x29, 0x49, 0x47, 0x42, 0x25, 0x7B, 0x43, 0x58, 0x78, 0x79, 0x72, + 0x16, 0x29, 0xC6, 0x56, 0x27, 0x3E, 0x4F, 0x49, 0x1F, 0x29, 0x28, 0x49, 0x53, 0x2B, 0x3A, 0x60, + 0x4F, 0x53, 0x82, 0x44, 0x02, 0x04, 0x6C, 0x00, 0x00, 0x01, 0x00, 0x1C, 0xFF, 0x80, 0x01, 0xF3, + 0x02, 0x26, 0x00, 0x1F, 0x00, 0x00, 0x17, 0x37, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, + 0x01, 0x27, 0x37, 0x3E, 0x01, 0x3F, 0x01, 0x35, 0x06, 0x2B, 0x01, 0x35, 0x21, 0x15, 0x07, 0x1E, + 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, 0x1C, 0x3C, 0x45, 0x56, 0x38, 0x48, 0x5A, 0x3B, 0x37, 0x1C, + 0x7E, 0x0A, 0x16, 0x06, 0x06, 0x16, 0x29, 0xB4, 0x01, 0x9B, 0xAF, 0x51, 0x74, 0x89, 0x73, 0x86, + 0x28, 0x59, 0x45, 0x38, 0x2F, 0x35, 0x38, 0x3E, 0x93, 0x0C, 0x15, 0x04, 0x05, 0x02, 0x04, 0x6D, + 0x4A, 0xC1, 0x0A, 0x63, 0x53, 0x5D, 0x7E, 0x00, 0x00, 0x02, 0x00, 0x18, 0xFF, 0x8C, 0x02, 0x36, + 0x02, 0x26, 0x00, 0x0A, 0x00, 0x11, 0x00, 0x00, 0x37, 0x35, 0x01, 0x33, 0x11, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x35, 0x27, 0x33, 0x35, 0x37, 0x23, 0x06, 0x07, 0x18, 0x01, 0x22, 0x9D, 0x5F, 0x5F, + 0x7F, 0xB8, 0xB8, 0x05, 0x02, 0x10, 0x13, 0x1D, 0x4F, 0x01, 0xBA, 0xFE, 0x63, 0x6C, 0x91, 0x91, + 0x6C, 0xD9, 0x4A, 0x27, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x24, 0xFF, 0x84, 0x01, 0xFD, + 0x02, 0x26, 0x00, 0x1F, 0x00, 0x00, 0x17, 0x37, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x0F, 0x01, 0x27, 0x13, 0x21, 0x15, 0x23, 0x0F, 0x01, 0x33, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x24, 0x3B, 0x1B, 0x51, 0x2A, 0x36, 0x52, 0x50, 0x3A, 0x1D, + 0x38, 0x0E, 0x0E, 0x44, 0x21, 0x01, 0x68, 0xFC, 0x0B, 0x05, 0x02, 0x22, 0x2B, 0x6E, 0x85, 0x8F, + 0x70, 0x86, 0x24, 0x58, 0x1E, 0x26, 0x3C, 0x36, 0x37, 0x3F, 0x0E, 0x06, 0x07, 0x19, 0x01, 0x50, + 0x6D, 0x6C, 0x1F, 0x0E, 0x77, 0x5D, 0x67, 0x7D, 0x00, 0x02, 0x00, 0x32, 0xFF, 0xF4, 0x02, 0x27, + 0x02, 0xA6, 0x00, 0x19, 0x00, 0x24, 0x00, 0x00, 0x13, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x17, 0x07, + 0x26, 0x23, 0x22, 0x06, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, + 0x26, 0x37, 0x14, 0x16, 0x33, 0x32, 0x36, 0x34, 0x26, 0x23, 0x22, 0x06, 0x32, 0x28, 0x4C, 0x7E, + 0x4E, 0x51, 0x40, 0x26, 0x2D, 0x37, 0x4C, 0x61, 0x0E, 0x02, 0x12, 0x4E, 0x27, 0x64, 0x7C, 0x81, + 0x66, 0x73, 0x9B, 0x83, 0x50, 0x3B, 0x30, 0x38, 0x44, 0x3C, 0x30, 0x43, 0x01, 0x2A, 0x45, 0x83, + 0x70, 0x44, 0x1C, 0x65, 0x15, 0x6D, 0x4C, 0x16, 0x1B, 0x80, 0x5D, 0x5E, 0x83, 0xA5, 0x6C, 0x3F, + 0x66, 0x40, 0x68, 0x46, 0x2A, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x1E, 0xFF, 0x8C, 0x01, 0xFB, + 0x02, 0x26, 0x00, 0x0D, 0x00, 0x00, 0x17, 0x13, 0x3E, 0x01, 0x3F, 0x01, 0x35, 0x06, 0x23, 0x21, + 0x35, 0x21, 0x15, 0x01, 0x4C, 0xFD, 0x09, 0x12, 0x04, 0x05, 0x0A, 0x24, 0xFE, 0xDF, 0x01, 0xDD, + 0xFE, 0xD6, 0x74, 0x01, 0xF2, 0x13, 0x1E, 0x06, 0x06, 0x02, 0x03, 0x6C, 0x55, 0xFD, 0xBB, 0x00, + 0x00, 0x03, 0x00, 0x30, 0xFF, 0xF4, 0x02, 0x1D, 0x02, 0xA5, 0x00, 0x15, 0x00, 0x23, 0x00, 0x31, + 0x00, 0x00, 0x37, 0x34, 0x37, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x01, + 0x07, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x01, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x14, 0x1E, 0x01, 0x17, 0x16, 0x07, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x04, 0x27, + 0x06, 0x30, 0x69, 0x49, 0x73, 0x6A, 0x62, 0x7E, 0x20, 0x1C, 0x0D, 0x59, 0x86, 0x70, 0x6E, 0x89, + 0x01, 0x33, 0x30, 0x39, 0x2F, 0x2E, 0x33, 0x2A, 0x33, 0x2A, 0x0C, 0xAF, 0x47, 0x64, 0x44, 0x0F, + 0x14, 0x27, 0x1C, 0x36, 0x0D, 0x46, 0xC1, 0x5D, 0x4F, 0x35, 0x4D, 0x4C, 0x6A, 0x64, 0x54, 0x23, + 0x4D, 0x27, 0x0F, 0x39, 0x53, 0x51, 0x76, 0x76, 0x01, 0x0B, 0x39, 0x37, 0x27, 0x2E, 0x2B, 0x22, + 0x1B, 0x2B, 0x1A, 0x11, 0x05, 0xAC, 0x2F, 0x3D, 0x35, 0x2B, 0x0E, 0x1B, 0x12, 0x16, 0x0C, 0x17, + 0x06, 0x34, 0x00, 0x00, 0x00, 0x02, 0x00, 0x24, 0xFF, 0x80, 0x02, 0x19, 0x02, 0x32, 0x00, 0x19, + 0x00, 0x24, 0x00, 0x00, 0x37, 0x16, 0x33, 0x32, 0x36, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x23, 0x22, 0x27, 0x13, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x14, 0x16, 0x6E, 0x2C, 0x38, 0x4C, 0x61, 0x0E, 0x02, 0x12, + 0x4D, 0x27, 0x65, 0x7C, 0x81, 0x66, 0x74, 0x9A, 0x28, 0x4C, 0x7E, 0x4E, 0x52, 0x3F, 0xDB, 0x30, + 0x43, 0x50, 0x3B, 0x30, 0x38, 0x44, 0x01, 0x15, 0x6C, 0x4C, 0x15, 0x1B, 0x7F, 0x5D, 0x5F, 0x83, + 0xA5, 0x92, 0x45, 0x83, 0x6F, 0x44, 0x1C, 0x01, 0x3C, 0x2A, 0x1E, 0x40, 0x66, 0x40, 0x68, 0x46, + 0x00, 0x02, 0x00, 0x2E, 0xFF, 0xF4, 0x02, 0x1B, 0x02, 0x32, 0x00, 0x0E, 0x00, 0x19, 0x00, 0x00, + 0x13, 0x34, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x14, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x36, 0x14, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x2E, 0x7E, 0x79, 0x3E, 0x61, 0x3A, 0x1D, 0x1D, + 0x3A, 0x61, 0x3E, 0x79, 0x7E, 0x80, 0x3B, 0x3C, 0x3B, 0x3B, 0x3B, 0x3B, 0x3C, 0x01, 0x12, 0x77, + 0xA9, 0x31, 0x53, 0x65, 0x70, 0x63, 0x52, 0x30, 0xA8, 0xC2, 0x96, 0x68, 0x68, 0x4A, 0x4B, 0x69, + 0x00, 0x01, 0x00, 0x51, 0x00, 0x00, 0x02, 0x02, 0x02, 0x26, 0x00, 0x0E, 0x00, 0x00, 0x33, 0x35, + 0x33, 0x35, 0x37, 0x23, 0x06, 0x0F, 0x01, 0x27, 0x37, 0x33, 0x11, 0x33, 0x15, 0x6B, 0x94, 0x01, + 0x02, 0x0F, 0x17, 0x4D, 0x3A, 0xBB, 0x6E, 0x88, 0x6C, 0xF9, 0x41, 0x10, 0x0E, 0x2D, 0x57, 0x74, + 0xFE, 0x46, 0x6C, 0x00, 0x00, 0x01, 0x00, 0x3D, 0x00, 0x00, 0x02, 0x0A, 0x02, 0x32, 0x00, 0x1A, + 0x00, 0x00, 0x33, 0x35, 0x3E, 0x03, 0x35, 0x34, 0x26, 0x23, 0x22, 0x07, 0x27, 0x3E, 0x01, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x36, 0x3B, 0x01, 0x15, 0x4B, 0x3D, 0x58, 0x5E, 0x31, + 0x37, 0x29, 0x49, 0x47, 0x42, 0x25, 0x7B, 0x43, 0x58, 0x78, 0x79, 0x72, 0x16, 0x29, 0xC6, 0x56, + 0x27, 0x3E, 0x4F, 0x49, 0x1F, 0x29, 0x28, 0x49, 0x53, 0x2B, 0x3A, 0x60, 0x4F, 0x53, 0x82, 0x44, + 0x02, 0x04, 0x6C, 0x00, 0x00, 0x01, 0x00, 0x34, 0xFF, 0x81, 0x02, 0x0A, 0x02, 0x26, 0x00, 0x20, + 0x00, 0x00, 0x17, 0x37, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x27, 0x37, 0x3E, + 0x01, 0x3F, 0x01, 0x35, 0x06, 0x2B, 0x01, 0x35, 0x21, 0x15, 0x07, 0x1E, 0x01, 0x15, 0x14, 0x06, + 0x23, 0x22, 0x26, 0x34, 0x3C, 0x45, 0x55, 0x38, 0x48, 0x5A, 0x3B, 0x36, 0x1C, 0x7D, 0x0A, 0x16, + 0x06, 0x06, 0x16, 0x29, 0xB3, 0x01, 0x9A, 0xAF, 0x50, 0x75, 0x89, 0x73, 0x3D, 0x74, 0x27, 0x59, + 0x45, 0x38, 0x2F, 0x35, 0x37, 0x3E, 0x93, 0x0C, 0x15, 0x04, 0x05, 0x02, 0x04, 0x6D, 0x4A, 0xC1, + 0x0A, 0x63, 0x52, 0x5D, 0x7E, 0x2D, 0x00, 0x00, 0x00, 0x02, 0x00, 0x12, 0xFF, 0x8C, 0x02, 0x30, + 0x02, 0x26, 0x00, 0x0A, 0x00, 0x11, 0x00, 0x00, 0x37, 0x35, 0x01, 0x33, 0x11, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x35, 0x27, 0x33, 0x35, 0x37, 0x23, 0x06, 0x07, 0x12, 0x01, 0x22, 0x9D, 0x5F, 0x5F, + 0x7F, 0xB8, 0xB8, 0x05, 0x02, 0x10, 0x13, 0x1D, 0x4F, 0x01, 0xBA, 0xFE, 0x63, 0x6C, 0x91, 0x91, + 0x6C, 0xD9, 0x4A, 0x27, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x39, 0xFF, 0x84, 0x02, 0x12, + 0x02, 0x26, 0x00, 0x1F, 0x00, 0x00, 0x17, 0x37, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x0F, 0x01, 0x27, 0x13, 0x21, 0x15, 0x23, 0x0F, 0x01, 0x33, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x39, 0x3B, 0x1B, 0x51, 0x2A, 0x36, 0x52, 0x50, 0x3A, 0x1D, + 0x38, 0x0E, 0x0E, 0x44, 0x21, 0x01, 0x68, 0xFC, 0x0B, 0x05, 0x02, 0x22, 0x2B, 0x6E, 0x85, 0x8F, + 0x70, 0x86, 0x24, 0x58, 0x1E, 0x26, 0x3C, 0x36, 0x37, 0x3F, 0x0E, 0x06, 0x07, 0x19, 0x01, 0x50, + 0x6D, 0x6C, 0x1F, 0x0E, 0x77, 0x5D, 0x67, 0x7D, 0x00, 0x02, 0x00, 0x2F, 0xFF, 0xF4, 0x02, 0x24, + 0x02, 0xA6, 0x00, 0x19, 0x00, 0x24, 0x00, 0x00, 0x13, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x17, 0x07, + 0x26, 0x23, 0x22, 0x06, 0x07, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, + 0x26, 0x37, 0x14, 0x16, 0x33, 0x32, 0x36, 0x34, 0x26, 0x23, 0x22, 0x06, 0x2F, 0x28, 0x4C, 0x7E, + 0x4E, 0x51, 0x40, 0x26, 0x2E, 0x36, 0x4C, 0x61, 0x0E, 0x02, 0x12, 0x4E, 0x27, 0x64, 0x7C, 0x81, + 0x66, 0x73, 0x9B, 0x83, 0x50, 0x3B, 0x30, 0x38, 0x44, 0x3C, 0x30, 0x43, 0x01, 0x2A, 0x45, 0x83, + 0x70, 0x44, 0x1C, 0x65, 0x15, 0x6D, 0x4C, 0x16, 0x1B, 0x80, 0x5D, 0x5E, 0x83, 0xA5, 0x6C, 0x3F, + 0x66, 0x40, 0x68, 0x46, 0x2A, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x3D, 0xFF, 0x8C, 0x02, 0x1A, + 0x02, 0x26, 0x00, 0x0D, 0x00, 0x00, 0x17, 0x13, 0x3E, 0x01, 0x3F, 0x01, 0x35, 0x06, 0x23, 0x21, + 0x35, 0x21, 0x15, 0x01, 0x6B, 0xFD, 0x09, 0x12, 0x05, 0x04, 0x0A, 0x24, 0xFE, 0xDF, 0x01, 0xDD, + 0xFE, 0xD6, 0x74, 0x01, 0xF2, 0x13, 0x1E, 0x06, 0x06, 0x02, 0x03, 0x6C, 0x55, 0xFD, 0xBB, 0x00, + 0x00, 0x03, 0x00, 0x2D, 0xFF, 0xF4, 0x02, 0x1A, 0x02, 0xA5, 0x00, 0x15, 0x00, 0x23, 0x00, 0x31, + 0x00, 0x00, 0x37, 0x34, 0x37, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x01, + 0x07, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x01, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x14, 0x1E, 0x01, 0x17, 0x16, 0x07, 0x14, 0x16, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x04, 0x27, + 0x06, 0x2D, 0x69, 0x49, 0x73, 0x6A, 0x62, 0x7E, 0x20, 0x1C, 0x0D, 0x59, 0x86, 0x70, 0x6E, 0x89, + 0x01, 0x33, 0x30, 0x39, 0x2F, 0x2E, 0x33, 0x2A, 0x33, 0x2A, 0x0C, 0xAF, 0x47, 0x64, 0x44, 0x0F, + 0x14, 0x27, 0x1C, 0x36, 0x0D, 0x46, 0xC1, 0x5D, 0x4F, 0x35, 0x4D, 0x4C, 0x6A, 0x64, 0x54, 0x23, + 0x4D, 0x27, 0x0F, 0x39, 0x53, 0x51, 0x76, 0x76, 0x01, 0x0B, 0x39, 0x37, 0x27, 0x2E, 0x2B, 0x22, + 0x1B, 0x2B, 0x1A, 0x11, 0x05, 0xAC, 0x2F, 0x3D, 0x35, 0x2B, 0x0E, 0x1B, 0x12, 0x16, 0x0C, 0x17, + 0x06, 0x34, 0x00, 0x00, 0x00, 0x02, 0x00, 0x27, 0xFF, 0x80, 0x02, 0x1C, 0x02, 0x32, 0x00, 0x19, + 0x00, 0x24, 0x00, 0x00, 0x37, 0x16, 0x33, 0x32, 0x36, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x23, 0x22, 0x27, 0x13, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x14, 0x16, 0x71, 0x2C, 0x38, 0x4C, 0x61, 0x0E, 0x02, 0x12, + 0x4D, 0x27, 0x65, 0x7C, 0x81, 0x66, 0x74, 0x9A, 0x28, 0x4C, 0x7E, 0x4E, 0x52, 0x3F, 0xDB, 0x30, + 0x43, 0x50, 0x3B, 0x30, 0x38, 0x44, 0x01, 0x15, 0x6C, 0x4C, 0x15, 0x1B, 0x7F, 0x5D, 0x5F, 0x83, + 0xA5, 0x92, 0x45, 0x83, 0x6F, 0x44, 0x1C, 0x01, 0x3C, 0x2A, 0x1E, 0x40, 0x66, 0x40, 0x68, 0x46, + 0x00, 0x01, 0x00, 0x27, 0xFF, 0x9B, 0x01, 0xE2, 0x02, 0xA6, 0x00, 0x29, 0x00, 0x00, 0x3F, 0x01, + 0x1E, 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x04, 0x35, 0x34, 0x36, 0x37, 0x35, 0x33, 0x15, + 0x16, 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x15, 0x14, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x07, 0x15, + 0x23, 0x35, 0x26, 0x27, 0x3E, 0x1D, 0x56, 0x2B, 0x29, 0x32, 0x2B, 0x40, 0x4C, 0x40, 0x2B, 0x5D, + 0x4B, 0x56, 0x5F, 0x3B, 0x31, 0x19, 0x4B, 0x24, 0x5B, 0x3C, 0x55, 0x55, 0x3C, 0x5D, 0x4F, 0x56, + 0x71, 0x54, 0x5E, 0x20, 0x2D, 0x21, 0x1D, 0x14, 0x22, 0x18, 0x22, 0x27, 0x43, 0x2B, 0x43, 0x56, + 0x0C, 0x59, 0x58, 0x0A, 0x34, 0x65, 0x18, 0x1D, 0x3E, 0x17, 0x23, 0x1F, 0x29, 0x4B, 0x34, 0x41, + 0x5D, 0x0B, 0x5D, 0x5C, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2B, 0xFF, 0xE4, 0x01, 0xF9, + 0x02, 0x73, 0x00, 0x1C, 0x00, 0x00, 0x17, 0x35, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x37, 0x35, 0x33, + 0x15, 0x16, 0x17, 0x07, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x37, 0x17, + 0x06, 0x07, 0x15, 0xF8, 0x5E, 0x6F, 0x6F, 0x5E, 0x59, 0x60, 0x48, 0x3B, 0x16, 0x46, 0x23, 0x44, + 0x52, 0x52, 0x44, 0x47, 0x38, 0x3A, 0x3C, 0x6B, 0x1C, 0x53, 0x12, 0x86, 0x5C, 0x5B, 0x87, 0x12, + 0x54, 0x4F, 0x09, 0x45, 0x5D, 0x1B, 0x21, 0x4F, 0x39, 0x3B, 0x50, 0x3B, 0x5C, 0x42, 0x0C, 0x4F, + 0x00, 0x01, 0x00, 0x34, 0x00, 0x00, 0x02, 0x26, 0x02, 0x51, 0x00, 0x19, 0x00, 0x00, 0x33, 0x35, + 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x26, 0x23, 0x22, 0x06, + 0x1D, 0x01, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x34, 0x3B, 0x2C, 0x2C, 0x88, 0x64, 0x68, 0x4E, + 0x3A, 0x35, 0x45, 0x2F, 0x3F, 0xCB, 0xCB, 0x01, 0x37, 0x6C, 0x81, 0x54, 0x46, 0x57, 0x73, 0x39, + 0x5E, 0x26, 0x35, 0x26, 0x44, 0x54, 0x81, 0x6C, 0x00, 0x01, 0x00, 0x2E, 0x00, 0x00, 0x02, 0x52, + 0x02, 0x45, 0x00, 0x1C, 0x00, 0x00, 0x37, 0x35, 0x33, 0x35, 0x27, 0x23, 0x35, 0x33, 0x27, 0x33, + 0x1F, 0x01, 0x33, 0x36, 0x3F, 0x01, 0x33, 0x07, 0x33, 0x15, 0x23, 0x07, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x35, 0x5C, 0xA4, 0x25, 0x7F, 0x53, 0x81, 0x92, 0x54, 0x2B, 0x02, 0x16, 0x15, 0x54, + 0x92, 0x81, 0x57, 0x83, 0x25, 0xA8, 0xA8, 0x80, 0x84, 0x4C, 0x10, 0x3F, 0x4C, 0xDA, 0x9E, 0x62, + 0x37, 0x2B, 0x9E, 0xDA, 0x4C, 0x3F, 0x10, 0x4C, 0x84, 0x84, 0x00, 0x00, 0x00, 0x01, 0x00, 0x12, + 0xFF, 0x81, 0x02, 0x1A, 0x02, 0xA6, 0x00, 0x20, 0x00, 0x00, 0x17, 0x16, 0x33, 0x32, 0x3F, 0x01, + 0x23, 0x35, 0x33, 0x37, 0x3E, 0x04, 0x33, 0x17, 0x15, 0x26, 0x23, 0x22, 0x0F, 0x01, 0x33, 0x15, + 0x23, 0x07, 0x0E, 0x03, 0x23, 0x27, 0x12, 0x2D, 0x16, 0x63, 0x08, 0x13, 0x4C, 0x54, 0x09, 0x04, + 0x25, 0x2F, 0x3E, 0x30, 0x1A, 0x56, 0x36, 0x18, 0x63, 0x08, 0x09, 0x6D, 0x76, 0x13, 0x05, 0x32, + 0x49, 0x3E, 0x21, 0x4B, 0x0C, 0x06, 0x5C, 0xD7, 0x65, 0x63, 0x30, 0x47, 0x27, 0x18, 0x07, 0x08, + 0x6C, 0x07, 0x5C, 0x57, 0x65, 0xE3, 0x3B, 0x51, 0x24, 0x0D, 0x07, 0x00, 0x00, 0x01, 0x00, 0x2F, + 0xFF, 0xF4, 0x02, 0x1D, 0x02, 0x51, 0x00, 0x24, 0x00, 0x00, 0x37, 0x35, 0x33, 0x26, 0x37, 0x23, + 0x35, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x17, 0x07, 0x26, 0x23, 0x22, 0x07, 0x33, 0x07, 0x23, 0x06, + 0x17, 0x33, 0x07, 0x23, 0x1E, 0x01, 0x33, 0x32, 0x37, 0x17, 0x06, 0x23, 0x22, 0x26, 0x27, 0x2F, + 0x41, 0x03, 0x02, 0x40, 0x4C, 0x1C, 0x9E, 0x7A, 0x33, 0x30, 0x1C, 0x21, 0x29, 0x7B, 0x2F, 0xE1, + 0x0F, 0xE6, 0x03, 0x05, 0xDB, 0x0D, 0xB5, 0x16, 0x55, 0x3D, 0x30, 0x27, 0x15, 0x31, 0x3D, 0x76, + 0x9D, 0x1F, 0xC0, 0x46, 0x14, 0x23, 0x46, 0x5A, 0x74, 0x0C, 0x66, 0x0A, 0x66, 0x46, 0x1D, 0x1A, + 0x46, 0x2C, 0x36, 0x0E, 0x67, 0x11, 0x72, 0x5A, 0x00, 0x02, 0x00, 0x22, 0x01, 0x06, 0x01, 0x66, + 0x02, 0xD1, 0x00, 0x05, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x20, 0x35, 0x34, 0x20, 0x15, 0x07, 0x32, + 0x35, 0x34, 0x23, 0x22, 0x15, 0x14, 0x01, 0x66, 0xFE, 0xBC, 0x01, 0x44, 0xA2, 0x42, 0x42, 0x43, + 0x01, 0x06, 0xE6, 0xE5, 0xE5, 0x8F, 0x8F, 0x8D, 0x8D, 0x8F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x38, + 0x01, 0x10, 0x01, 0x58, 0x02, 0xC7, 0x00, 0x0E, 0x00, 0x00, 0x13, 0x35, 0x33, 0x35, 0x37, 0x23, + 0x06, 0x0F, 0x01, 0x27, 0x37, 0x33, 0x11, 0x33, 0x15, 0x42, 0x5C, 0x02, 0x02, 0x04, 0x0B, 0x1F, + 0x38, 0x71, 0x54, 0x5B, 0x01, 0x10, 0x53, 0xCF, 0x1C, 0x09, 0x0A, 0x1D, 0x3C, 0x6D, 0xFE, 0x9C, + 0x53, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x27, 0x01, 0x10, 0x01, 0x5C, 0x02, 0xD1, 0x00, 0x1D, + 0x00, 0x00, 0x13, 0x26, 0x35, 0x34, 0x3E, 0x04, 0x35, 0x34, 0x26, 0x23, 0x22, 0x07, 0x27, 0x3E, + 0x01, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x03, 0x07, 0x33, 0x15, 0x2B, 0x04, 0x1F, 0x2E, 0x35, + 0x2E, 0x1F, 0x23, 0x1A, 0x28, 0x28, 0x3E, 0x16, 0x50, 0x2D, 0x3F, 0x59, 0x27, 0x39, 0x39, 0x2B, + 0x02, 0xCC, 0x01, 0x10, 0x1C, 0x0D, 0x29, 0x42, 0x28, 0x26, 0x1B, 0x24, 0x14, 0x17, 0x1D, 0x2E, + 0x37, 0x23, 0x2C, 0x49, 0x3F, 0x28, 0x3F, 0x27, 0x20, 0x24, 0x14, 0x53, 0x00, 0x01, 0x00, 0x20, + 0x01, 0x06, 0x01, 0x5B, 0x02, 0xC7, 0x00, 0x1D, 0x00, 0x00, 0x13, 0x22, 0x26, 0x27, 0x37, 0x1E, + 0x01, 0x33, 0x32, 0x36, 0x34, 0x26, 0x2B, 0x01, 0x27, 0x3F, 0x01, 0x35, 0x06, 0x2B, 0x01, 0x35, + 0x21, 0x15, 0x07, 0x1E, 0x01, 0x15, 0x14, 0x06, 0xB8, 0x2B, 0x53, 0x1A, 0x31, 0x10, 0x35, 0x1D, + 0x1E, 0x2A, 0x2E, 0x20, 0x23, 0x14, 0x4E, 0x19, 0x14, 0x10, 0x81, 0x01, 0x18, 0x62, 0x31, 0x3C, + 0x5A, 0x01, 0x06, 0x23, 0x20, 0x43, 0x14, 0x1B, 0x24, 0x36, 0x1E, 0x2D, 0x5A, 0x18, 0x02, 0x03, + 0x54, 0x3D, 0x70, 0x09, 0x42, 0x34, 0x3D, 0x58, 0x00, 0x02, 0x00, 0x0F, 0x01, 0x10, 0x01, 0x72, + 0x02, 0xC7, 0x00, 0x0A, 0x00, 0x12, 0x00, 0x00, 0x13, 0x35, 0x23, 0x35, 0x13, 0x33, 0x11, 0x33, + 0x15, 0x23, 0x15, 0x27, 0x33, 0x35, 0x37, 0x23, 0x06, 0x0F, 0x01, 0xDA, 0xCB, 0xBD, 0x6C, 0x3A, + 0x3A, 0xC9, 0x6B, 0x04, 0x02, 0x0C, 0x0E, 0x53, 0x01, 0x10, 0x63, 0x40, 0x01, 0x14, 0xFE, 0xFE, + 0x52, 0x63, 0xB5, 0x6E, 0x37, 0x1B, 0x14, 0x74, 0x00, 0x01, 0x00, 0x24, 0x01, 0x06, 0x01, 0x61, + 0x02, 0xC7, 0x00, 0x1C, 0x00, 0x00, 0x13, 0x22, 0x27, 0x37, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x34, + 0x26, 0x23, 0x22, 0x07, 0x27, 0x37, 0x33, 0x15, 0x23, 0x0F, 0x01, 0x17, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x06, 0xBB, 0x5C, 0x3B, 0x34, 0x0E, 0x34, 0x1A, 0x1F, 0x2E, 0x2E, 0x21, 0x26, 0x21, + 0x33, 0x16, 0xF5, 0xA8, 0x05, 0x04, 0x02, 0x16, 0x1D, 0x43, 0x57, 0x5C, 0x01, 0x06, 0x43, 0x43, + 0x14, 0x1B, 0x26, 0x3C, 0x27, 0x12, 0x13, 0xE0, 0x54, 0x2F, 0x19, 0x01, 0x08, 0x55, 0x3D, 0x3E, + 0x5C, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x24, 0x01, 0x06, 0x01, 0x67, 0x02, 0xD1, 0x00, 0x16, + 0x00, 0x22, 0x00, 0x00, 0x13, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x26, 0x23, + 0x22, 0x06, 0x07, 0x33, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, + 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0xD0, 0x49, 0x63, 0x6C, 0x60, 0x36, 0x2C, 0x1C, 0x1E, + 0x23, 0x26, 0x35, 0x0A, 0x02, 0x1A, 0x25, 0x45, 0x51, 0x53, 0x44, 0x1B, 0x1E, 0x26, 0x21, 0x18, + 0x24, 0x2B, 0x01, 0x06, 0x6E, 0x5F, 0x63, 0x9B, 0x17, 0x51, 0x10, 0x35, 0x2C, 0x15, 0x52, 0x3E, + 0x40, 0x57, 0x57, 0x25, 0x1C, 0x1F, 0x2B, 0x18, 0x10, 0x27, 0x3C, 0x00, 0x00, 0x01, 0x00, 0x2D, + 0x01, 0x10, 0x01, 0x68, 0x02, 0xC7, 0x00, 0x0A, 0x00, 0x00, 0x1B, 0x01, 0x37, 0x35, 0x06, 0x2B, + 0x01, 0x35, 0x21, 0x15, 0x03, 0x34, 0xAF, 0x18, 0x12, 0x15, 0xA7, 0x01, 0x3B, 0xCC, 0x01, 0x10, + 0x01, 0x3D, 0x26, 0x02, 0x02, 0x54, 0x41, 0xFE, 0x8A, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x1F, + 0x01, 0x05, 0x01, 0x65, 0x02, 0xD0, 0x00, 0x13, 0x00, 0x20, 0x00, 0x2E, 0x00, 0x00, 0x13, 0x22, + 0x26, 0x35, 0x34, 0x37, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x16, 0x15, + 0x14, 0x06, 0x03, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x1E, 0x02, 0x07, 0x32, + 0x36, 0x35, 0x34, 0x2E, 0x03, 0x27, 0x06, 0x15, 0x14, 0x16, 0xC4, 0x43, 0x62, 0x45, 0x2F, 0x56, + 0x3C, 0x3B, 0x5A, 0x35, 0x3E, 0x5F, 0x20, 0x1D, 0x25, 0x18, 0x17, 0x1F, 0x0C, 0x1F, 0x13, 0x0A, + 0x1A, 0x28, 0x09, 0x1A, 0x0F, 0x2B, 0x07, 0x27, 0x2B, 0x01, 0x05, 0x49, 0x40, 0x3D, 0x31, 0x23, + 0x37, 0x3A, 0x40, 0x42, 0x39, 0x31, 0x3B, 0x26, 0x3D, 0x3A, 0x47, 0x01, 0x03, 0x24, 0x23, 0x16, + 0x19, 0x16, 0x16, 0x0D, 0x15, 0x14, 0x09, 0xBD, 0x1D, 0x18, 0x0B, 0x12, 0x12, 0x09, 0x14, 0x03, + 0x22, 0x25, 0x1C, 0x21, 0x00, 0x02, 0x00, 0x20, 0x01, 0x06, 0x01, 0x63, 0x02, 0xD1, 0x00, 0x16, + 0x00, 0x22, 0x00, 0x00, 0x13, 0x37, 0x16, 0x33, 0x32, 0x36, 0x37, 0x23, 0x06, 0x23, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x37, 0x32, 0x36, 0x35, 0x34, + 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x35, 0x1C, 0x22, 0x1F, 0x26, 0x35, 0x0A, 0x02, 0x1C, + 0x23, 0x45, 0x51, 0x53, 0x44, 0x49, 0x63, 0x6C, 0x60, 0x39, 0x66, 0x19, 0x24, 0x2B, 0x1F, 0x1B, + 0x1E, 0x26, 0x01, 0x1D, 0x51, 0x10, 0x35, 0x2B, 0x15, 0x52, 0x3F, 0x40, 0x57, 0x6F, 0x5F, 0x62, + 0x9B, 0xE8, 0x19, 0x0F, 0x27, 0x3C, 0x25, 0x1B, 0x1F, 0x2C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x22, + 0xFF, 0xF6, 0x01, 0x66, 0x01, 0xC1, 0x00, 0x05, 0x00, 0x0D, 0x00, 0x00, 0x04, 0x20, 0x35, 0x34, + 0x20, 0x15, 0x07, 0x32, 0x35, 0x34, 0x23, 0x22, 0x15, 0x14, 0x01, 0x66, 0xFE, 0xBC, 0x01, 0x44, + 0xA2, 0x42, 0x42, 0x43, 0x0A, 0xE6, 0xE5, 0xE5, 0x8F, 0x8F, 0x8D, 0x8D, 0x8F, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x38, 0x00, 0x00, 0x01, 0x58, 0x01, 0xB7, 0x00, 0x0E, 0x00, 0x00, 0x33, 0x35, + 0x33, 0x35, 0x37, 0x23, 0x06, 0x0F, 0x01, 0x27, 0x37, 0x33, 0x11, 0x33, 0x15, 0x42, 0x5C, 0x02, + 0x02, 0x04, 0x0B, 0x1F, 0x38, 0x71, 0x54, 0x5B, 0x53, 0xCF, 0x1C, 0x09, 0x0A, 0x1D, 0x3C, 0x6D, + 0xFE, 0x9C, 0x53, 0x00, 0x00, 0x01, 0x00, 0x27, 0x00, 0x00, 0x01, 0x5C, 0x01, 0xC1, 0x00, 0x1D, + 0x00, 0x00, 0x33, 0x26, 0x35, 0x34, 0x3E, 0x04, 0x35, 0x34, 0x26, 0x23, 0x22, 0x07, 0x27, 0x3E, + 0x01, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x03, 0x07, 0x33, 0x15, 0x2B, 0x04, 0x1F, 0x2E, 0x35, + 0x2E, 0x1F, 0x23, 0x1A, 0x28, 0x28, 0x3E, 0x16, 0x50, 0x2D, 0x3F, 0x59, 0x27, 0x39, 0x39, 0x2B, + 0x02, 0xCC, 0x1C, 0x0D, 0x29, 0x42, 0x28, 0x26, 0x1B, 0x24, 0x14, 0x17, 0x1D, 0x2E, 0x37, 0x23, + 0x2C, 0x49, 0x3F, 0x28, 0x3F, 0x27, 0x20, 0x24, 0x14, 0x53, 0x00, 0x00, 0x00, 0x01, 0x00, 0x20, + 0xFF, 0xF6, 0x01, 0x5B, 0x01, 0xB7, 0x00, 0x1D, 0x00, 0x00, 0x17, 0x22, 0x26, 0x27, 0x37, 0x1E, + 0x01, 0x33, 0x32, 0x36, 0x34, 0x26, 0x2B, 0x01, 0x27, 0x3F, 0x01, 0x35, 0x06, 0x2B, 0x01, 0x35, + 0x21, 0x15, 0x07, 0x1E, 0x01, 0x15, 0x14, 0x06, 0xB8, 0x2B, 0x53, 0x1A, 0x31, 0x10, 0x35, 0x1D, + 0x1E, 0x2A, 0x2E, 0x20, 0x23, 0x14, 0x4E, 0x19, 0x14, 0x10, 0x81, 0x01, 0x18, 0x62, 0x31, 0x3C, + 0x5A, 0x0A, 0x23, 0x20, 0x43, 0x14, 0x1B, 0x24, 0x36, 0x1E, 0x2D, 0x5A, 0x18, 0x02, 0x03, 0x54, + 0x3D, 0x70, 0x09, 0x42, 0x34, 0x3D, 0x58, 0x00, 0x00, 0x02, 0x00, 0x0F, 0x00, 0x00, 0x01, 0x72, + 0x01, 0xB7, 0x00, 0x0A, 0x00, 0x12, 0x00, 0x00, 0x33, 0x35, 0x23, 0x35, 0x13, 0x33, 0x11, 0x33, + 0x15, 0x23, 0x15, 0x27, 0x33, 0x35, 0x37, 0x23, 0x06, 0x0F, 0x01, 0xDA, 0xCB, 0xBD, 0x6C, 0x3A, + 0x3A, 0xC9, 0x6B, 0x04, 0x02, 0x0C, 0x0E, 0x53, 0x63, 0x40, 0x01, 0x14, 0xFE, 0xFE, 0x52, 0x63, + 0xB5, 0x6E, 0x37, 0x1B, 0x14, 0x74, 0x00, 0x00, 0x00, 0x01, 0x00, 0x24, 0xFF, 0xF6, 0x01, 0x61, + 0x01, 0xB7, 0x00, 0x1C, 0x00, 0x00, 0x17, 0x22, 0x27, 0x37, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x34, + 0x26, 0x23, 0x22, 0x07, 0x27, 0x37, 0x33, 0x15, 0x23, 0x0F, 0x01, 0x17, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x06, 0xBB, 0x5C, 0x3B, 0x34, 0x0E, 0x34, 0x1A, 0x1F, 0x2E, 0x2E, 0x21, 0x26, 0x21, + 0x33, 0x16, 0xF5, 0xA8, 0x05, 0x04, 0x02, 0x16, 0x1D, 0x43, 0x57, 0x5C, 0x0A, 0x43, 0x43, 0x14, + 0x1B, 0x26, 0x3C, 0x27, 0x12, 0x13, 0xE0, 0x54, 0x2F, 0x19, 0x01, 0x08, 0x55, 0x3D, 0x3E, 0x5C, + 0x00, 0x02, 0x00, 0x24, 0xFF, 0xF6, 0x01, 0x67, 0x01, 0xC1, 0x00, 0x16, 0x00, 0x22, 0x00, 0x00, + 0x17, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x17, 0x07, 0x26, 0x23, 0x22, 0x06, 0x07, 0x33, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x14, 0x16, 0xD0, 0x49, 0x63, 0x6C, 0x60, 0x36, 0x2C, 0x1C, 0x1E, 0x23, 0x26, 0x35, 0x0A, + 0x02, 0x1A, 0x25, 0x45, 0x51, 0x53, 0x44, 0x1B, 0x1E, 0x26, 0x21, 0x18, 0x24, 0x2B, 0x0A, 0x6E, + 0x5F, 0x63, 0x9B, 0x17, 0x51, 0x10, 0x35, 0x2C, 0x15, 0x52, 0x3E, 0x40, 0x57, 0x57, 0x25, 0x1C, + 0x1F, 0x2B, 0x18, 0x10, 0x27, 0x3C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2D, 0x00, 0x00, 0x01, 0x68, + 0x01, 0xB7, 0x00, 0x0A, 0x00, 0x00, 0x33, 0x13, 0x37, 0x35, 0x06, 0x2B, 0x01, 0x35, 0x21, 0x15, + 0x03, 0x34, 0xAF, 0x18, 0x12, 0x15, 0xA7, 0x01, 0x3B, 0xCC, 0x01, 0x3D, 0x26, 0x02, 0x02, 0x54, + 0x41, 0xFE, 0x8A, 0x00, 0x00, 0x03, 0x00, 0x1F, 0xFF, 0xF6, 0x01, 0x65, 0x01, 0xC1, 0x00, 0x13, + 0x00, 0x20, 0x00, 0x2E, 0x00, 0x00, 0x17, 0x22, 0x26, 0x35, 0x34, 0x37, 0x26, 0x35, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x16, 0x15, 0x14, 0x06, 0x03, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x14, 0x1E, 0x02, 0x07, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x03, 0x27, 0x06, 0x15, + 0x14, 0x16, 0xC4, 0x43, 0x62, 0x45, 0x2F, 0x56, 0x3C, 0x3B, 0x5A, 0x35, 0x3E, 0x5F, 0x20, 0x1D, + 0x25, 0x18, 0x17, 0x1F, 0x0C, 0x1F, 0x13, 0x0A, 0x1A, 0x28, 0x09, 0x1A, 0x0F, 0x2B, 0x07, 0x27, + 0x2B, 0x0A, 0x49, 0x40, 0x3D, 0x31, 0x23, 0x37, 0x3A, 0x40, 0x42, 0x39, 0x31, 0x3B, 0x26, 0x3D, + 0x3A, 0x47, 0x01, 0x03, 0x24, 0x23, 0x16, 0x19, 0x16, 0x16, 0x0D, 0x15, 0x14, 0x09, 0xBD, 0x1D, + 0x18, 0x0B, 0x12, 0x12, 0x09, 0x14, 0x03, 0x22, 0x25, 0x1C, 0x21, 0x00, 0x00, 0x02, 0x00, 0x20, + 0xFF, 0xF6, 0x01, 0x63, 0x01, 0xC1, 0x00, 0x16, 0x00, 0x22, 0x00, 0x00, 0x3F, 0x01, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x23, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x23, 0x22, 0x37, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x35, + 0x1C, 0x22, 0x1F, 0x26, 0x35, 0x0A, 0x02, 0x1C, 0x23, 0x45, 0x51, 0x53, 0x44, 0x49, 0x63, 0x6C, + 0x60, 0x39, 0x66, 0x19, 0x24, 0x2B, 0x1F, 0x1B, 0x1E, 0x26, 0x0D, 0x51, 0x10, 0x35, 0x2B, 0x15, + 0x52, 0x3F, 0x40, 0x57, 0x6F, 0x5F, 0x62, 0x9B, 0xE8, 0x19, 0x0F, 0x27, 0x3C, 0x25, 0x1B, 0x1F, + 0x2C, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x23, 0xFF, 0xF4, 0x01, 0xA9, 0x02, 0x0A, 0x00, 0x20, + 0x00, 0x00, 0x37, 0x34, 0x3E, 0x03, 0x35, 0x34, 0x23, 0x22, 0x07, 0x27, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x0E, 0x03, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x23, 0x22, 0x26, 0x23, + 0x34, 0x4B, 0x4B, 0x34, 0x40, 0x45, 0x3F, 0x2F, 0x53, 0x65, 0x50, 0x63, 0x35, 0x4B, 0x4A, 0x35, + 0x27, 0x1F, 0x2C, 0x4F, 0x14, 0x3A, 0x56, 0x76, 0x57, 0x63, 0x80, 0x2E, 0x44, 0x28, 0x20, 0x26, + 0x16, 0x2B, 0x2C, 0x5B, 0x3A, 0x48, 0x44, 0x2E, 0x47, 0x28, 0x21, 0x23, 0x2A, 0x16, 0x25, 0x13, + 0x56, 0x4B, 0x4D, 0x00, 0x00, 0x02, 0x00, 0x28, 0xFF, 0x2E, 0x02, 0x1A, 0x02, 0x0A, 0x00, 0x1E, + 0x00, 0x29, 0x00, 0x00, 0x17, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x37, 0x23, 0x06, 0x23, 0x22, + 0x26, 0x34, 0x36, 0x33, 0x32, 0x17, 0x33, 0x26, 0x3D, 0x01, 0x33, 0x11, 0x14, 0x0E, 0x02, 0x23, + 0x22, 0x27, 0x13, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x23, 0x22, 0x06, 0x7E, 0x44, 0x49, + 0x40, 0x50, 0x02, 0x02, 0x2F, 0x60, 0x6A, 0x7A, 0x77, 0x6A, 0x68, 0x30, 0x03, 0x02, 0x78, 0x2E, + 0x4E, 0x5D, 0x34, 0x61, 0x55, 0x51, 0x43, 0x3D, 0x33, 0x43, 0x7E, 0x39, 0x3F, 0x45, 0x21, 0x3C, + 0x40, 0x20, 0x1B, 0x47, 0x94, 0xDC, 0x90, 0x43, 0x06, 0x08, 0x29, 0xFE, 0x21, 0x3F, 0x60, 0x37, + 0x1B, 0x2C, 0x01, 0xB6, 0x45, 0x56, 0x46, 0x50, 0x93, 0x4D, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0D, + 0x00, 0x00, 0x03, 0x05, 0x02, 0xC6, 0x00, 0x17, 0x00, 0x00, 0x33, 0x13, 0x35, 0x27, 0x33, 0x17, + 0x33, 0x11, 0x33, 0x11, 0x33, 0x37, 0x33, 0x07, 0x15, 0x13, 0x23, 0x27, 0x23, 0x15, 0x23, 0x35, + 0x23, 0x07, 0x0D, 0x9C, 0x8F, 0x84, 0x71, 0x3E, 0x77, 0x3E, 0x71, 0x84, 0x8E, 0x9C, 0x8C, 0x75, + 0x40, 0x77, 0x40, 0x75, 0x01, 0x06, 0x02, 0xF6, 0xC6, 0x01, 0x8E, 0xFE, 0x72, 0xC6, 0xF6, 0x02, + 0xFE, 0xFA, 0xCD, 0xCD, 0xCD, 0xCD, 0x00, 0x00, 0x00, 0x01, 0x00, 0x3F, 0xFF, 0xF4, 0x02, 0x1A, + 0x01, 0xFE, 0x00, 0x14, 0x00, 0x00, 0x37, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, + 0x01, 0x33, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x3F, 0x7F, 0x23, 0x2C, 0x42, + 0x4D, 0x7E, 0x7A, 0x03, 0x02, 0x14, 0x60, 0x3D, 0xB1, 0xB6, 0x01, 0x48, 0xFE, 0xD2, 0x33, 0x35, + 0x64, 0x48, 0xEA, 0xFE, 0x02, 0x3C, 0x23, 0x2B, 0x40, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x3F, + 0xFF, 0xF4, 0x02, 0x1A, 0x02, 0xC6, 0x00, 0x14, 0x00, 0x24, 0x00, 0x00, 0x37, 0x11, 0x33, 0x11, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x11, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, + 0x22, 0x00, 0x22, 0x26, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x16, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, + 0x14, 0x3F, 0x7F, 0x23, 0x2C, 0x42, 0x4D, 0x7E, 0x7A, 0x03, 0x02, 0x14, 0x60, 0x3D, 0xB1, 0x01, + 0x30, 0x88, 0x60, 0x61, 0x28, 0x36, 0x29, 0x60, 0xB6, 0x01, 0x48, 0xFE, 0xD2, 0x33, 0x35, 0x64, + 0x48, 0xEA, 0xFE, 0x02, 0x3C, 0x23, 0x2B, 0x40, 0x02, 0x3B, 0x4B, 0x3F, 0x0D, 0x0D, 0x1E, 0x21, + 0x21, 0x1F, 0x0C, 0x0D, 0x3F, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x44, 0x00, 0x00, 0x02, 0x1E, + 0x02, 0xC6, 0x00, 0x0D, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x33, 0x37, 0x33, 0x07, 0x15, 0x13, + 0x23, 0x27, 0x23, 0x15, 0x44, 0x7F, 0x3F, 0x7B, 0x8D, 0xA1, 0xB5, 0x92, 0x87, 0x42, 0x02, 0xC6, + 0xFE, 0x84, 0xB4, 0xE4, 0x02, 0xFE, 0xE8, 0xDF, 0xDF, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0A, + 0x00, 0x00, 0x02, 0x0F, 0x01, 0xFE, 0x00, 0x0A, 0x00, 0x00, 0x33, 0x13, 0x33, 0x13, 0x23, 0x03, + 0x27, 0x23, 0x06, 0x07, 0x03, 0x0A, 0xB8, 0x97, 0xB6, 0x86, 0x69, 0x12, 0x02, 0x09, 0x0A, 0x6A, + 0x01, 0xFE, 0xFE, 0x02, 0x01, 0x3C, 0x4C, 0x2F, 0x1D, 0xFE, 0xC4, 0x00, 0x00, 0x01, 0x00, 0x44, + 0x00, 0x00, 0x02, 0x25, 0x02, 0x0A, 0x00, 0x14, 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, 0x07, 0x33, + 0x3E, 0x01, 0x33, 0x32, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x1D, 0x01, 0x44, + 0x7A, 0x02, 0x02, 0x14, 0x5C, 0x45, 0xB2, 0x7F, 0x23, 0x2D, 0x42, 0x51, 0x01, 0xFE, 0x3C, 0x24, + 0x29, 0x43, 0xC2, 0xFE, 0xB8, 0x01, 0x2E, 0x33, 0x35, 0x60, 0x47, 0xEF, 0x00, 0x01, 0x00, 0x44, + 0x00, 0x00, 0x03, 0x50, 0x02, 0x0A, 0x00, 0x23, 0x00, 0x00, 0x33, 0x11, 0x33, 0x15, 0x07, 0x33, + 0x3E, 0x01, 0x33, 0x32, 0x17, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x1D, 0x01, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x1D, 0x01, 0x44, 0x7A, + 0x02, 0x02, 0x14, 0x5B, 0x38, 0x74, 0x20, 0x02, 0x17, 0x5E, 0x39, 0xA7, 0x7E, 0x1E, 0x28, 0x3E, + 0x44, 0x7F, 0x1C, 0x29, 0x3E, 0x45, 0x01, 0xFE, 0x3C, 0x24, 0x2A, 0x42, 0x69, 0x2B, 0x3E, 0xC2, + 0xFE, 0xB8, 0x01, 0x30, 0x31, 0x35, 0x69, 0x48, 0xE5, 0x01, 0x30, 0x31, 0x35, 0x6B, 0x46, 0xE5, + 0x00, 0x01, 0x00, 0x3F, 0xFF, 0x88, 0x02, 0x6D, 0x01, 0xFE, 0x00, 0x18, 0x00, 0x00, 0x37, 0x11, + 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x11, 0x33, 0x15, 0x23, 0x35, 0x23, + 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x3F, 0x7F, 0x23, 0x2C, 0x42, 0x4D, 0x7E, 0x53, 0x72, + 0x5B, 0x03, 0x02, 0x14, 0x60, 0x3D, 0xB1, 0xB6, 0x01, 0x48, 0xFE, 0xD2, 0x33, 0x35, 0x64, 0x48, + 0xEA, 0xFE, 0x6E, 0xE4, 0x78, 0x3C, 0x23, 0x2B, 0x40, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x3F, + 0xFF, 0xF3, 0x03, 0x4B, 0x01, 0xFD, 0x00, 0x23, 0x00, 0x00, 0x01, 0x11, 0x23, 0x35, 0x37, 0x23, + 0x0E, 0x01, 0x23, 0x22, 0x27, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, + 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x03, 0x4B, + 0x7A, 0x02, 0x02, 0x14, 0x5B, 0x38, 0x74, 0x20, 0x02, 0x17, 0x5E, 0x39, 0xA7, 0x7E, 0x1E, 0x28, + 0x3E, 0x44, 0x7F, 0x1C, 0x29, 0x3E, 0x45, 0x01, 0xFD, 0xFE, 0x02, 0x3C, 0x24, 0x2A, 0x42, 0x69, + 0x2B, 0x3E, 0xC2, 0x01, 0x48, 0xFE, 0xD0, 0x31, 0x35, 0x69, 0x48, 0xE5, 0xFE, 0xD0, 0x31, 0x35, + 0x6B, 0x46, 0xE5, 0x00, 0x00, 0x01, 0x00, 0x3F, 0xFF, 0x88, 0x03, 0x97, 0x01, 0xFD, 0x00, 0x27, + 0x00, 0x00, 0x01, 0x11, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x37, 0x23, 0x0E, 0x01, 0x23, 0x22, + 0x27, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, + 0x01, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x03, 0x4B, 0x4C, 0x72, 0x54, 0x02, + 0x02, 0x14, 0x5B, 0x38, 0x74, 0x20, 0x02, 0x17, 0x5E, 0x39, 0xA7, 0x7E, 0x1E, 0x28, 0x3E, 0x44, + 0x7F, 0x1C, 0x29, 0x3E, 0x45, 0x01, 0xFD, 0xFE, 0x6F, 0xE4, 0x77, 0x3C, 0x24, 0x2A, 0x42, 0x69, + 0x2B, 0x3E, 0xC2, 0x01, 0x48, 0xFE, 0xD0, 0x31, 0x35, 0x69, 0x48, 0xE5, 0xFE, 0xD0, 0x31, 0x35, + 0x6B, 0x46, 0xE5, 0x00, 0x00, 0x02, 0x00, 0x17, 0xFF, 0xF4, 0x02, 0x32, 0x01, 0xFE, 0x00, 0x11, + 0x00, 0x1B, 0x00, 0x00, 0x37, 0x35, 0x23, 0x35, 0x33, 0x15, 0x14, 0x07, 0x33, 0x36, 0x32, 0x16, + 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x36, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x23, 0x22, + 0x7D, 0x66, 0xE5, 0x01, 0x02, 0x2F, 0x9E, 0x68, 0x78, 0x63, 0x6E, 0x6C, 0x7E, 0x31, 0x2B, 0x28, + 0x33, 0x59, 0x2C, 0xBE, 0xD4, 0x6C, 0x84, 0x1F, 0x0B, 0x2B, 0x69, 0x59, 0x5B, 0x6A, 0x6D, 0x82, + 0x56, 0x39, 0x31, 0x30, 0x62, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x3F, 0xFF, 0xF4, 0x01, 0xF3, + 0x01, 0xFE, 0x00, 0x10, 0x00, 0x1A, 0x00, 0x00, 0x37, 0x11, 0x33, 0x15, 0x14, 0x07, 0x33, 0x36, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x36, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, + 0x34, 0x23, 0x22, 0x3F, 0x7F, 0x02, 0x02, 0x31, 0x4D, 0x50, 0x67, 0x78, 0x63, 0x6E, 0x6B, 0x7E, + 0x30, 0x2B, 0x28, 0x34, 0x5A, 0x2C, 0xBE, 0x01, 0x40, 0x84, 0x14, 0x16, 0x2B, 0x69, 0x59, 0x5B, + 0x6A, 0x6C, 0x83, 0x56, 0x39, 0x31, 0x30, 0x62, 0x00, 0x02, 0x00, 0x44, 0xFF, 0xF4, 0x03, 0x2E, + 0x02, 0xC6, 0x00, 0x11, 0x00, 0x1B, 0x00, 0x00, 0x33, 0x11, 0x33, 0x11, 0x33, 0x3E, 0x01, 0x33, + 0x32, 0x16, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x23, 0x15, 0x12, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x34, 0x26, 0x23, 0x22, 0x44, 0x7F, 0x54, 0x11, 0x92, 0x64, 0x73, 0x9D, 0x9C, 0x73, 0x66, 0x92, + 0x11, 0x53, 0xCD, 0x52, 0x3D, 0x3C, 0x52, 0x52, 0x3C, 0x3D, 0x02, 0xC6, 0xFE, 0x6E, 0x5F, 0x77, + 0x97, 0xE8, 0x97, 0x78, 0x61, 0xCD, 0x01, 0x45, 0x8C, 0x59, 0x59, 0x8C, 0x59, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x3B, 0xFF, 0xF4, 0x02, 0x38, 0x02, 0xD2, 0x00, 0x14, 0x00, 0x22, 0x00, 0x2E, + 0x00, 0x00, 0x37, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x07, 0x15, 0x1E, 0x01, 0x15, + 0x14, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x37, 0x33, 0x36, 0x3F, 0x01, 0x3E, 0x01, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x07, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x3B, 0x8B, 0x78, 0x5A, 0x65, 0x6F, 0x44, 0x66, 0x91, 0x72, 0x42, 0x64, 0x38, 0x1C, 0x7E, 0x02, + 0x12, 0x2F, 0x2E, 0x2D, 0x28, 0x2D, 0x23, 0x35, 0x41, 0x01, 0x45, 0x36, 0x39, 0x4A, 0x4A, 0x36, + 0x31, 0x4D, 0xF5, 0xBE, 0x80, 0x9F, 0x58, 0x3C, 0x5B, 0x3C, 0x02, 0x08, 0x62, 0x53, 0x6E, 0x86, + 0x2E, 0x4C, 0x58, 0xC1, 0x1D, 0x19, 0x17, 0x16, 0x2D, 0x1E, 0x1C, 0x25, 0x50, 0x46, 0xFF, 0x41, + 0x44, 0x46, 0x42, 0x3D, 0x39, 0x3E, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFD, 0xFF, 0x2E, 0x01, 0xA2, + 0x02, 0x0A, 0x00, 0x24, 0x00, 0x00, 0x17, 0x16, 0x33, 0x32, 0x36, 0x34, 0x26, 0x2B, 0x01, 0x35, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x07, 0x27, 0x36, 0x33, 0x32, 0x16, 0x17, 0x14, + 0x06, 0x07, 0x15, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x30, 0x33, 0x40, 0x3D, 0x43, + 0x41, 0x3F, 0x41, 0x43, 0x2D, 0x41, 0x37, 0x2D, 0x41, 0x2D, 0x38, 0x4F, 0x6D, 0x5D, 0x70, 0x01, + 0x3B, 0x2F, 0x79, 0x84, 0x6F, 0x2F, 0x64, 0x1F, 0x3F, 0x26, 0x42, 0x66, 0x39, 0x65, 0x34, 0x2F, + 0x2B, 0x30, 0x2B, 0x50, 0x46, 0x64, 0x4B, 0x3B, 0x53, 0x15, 0x02, 0x2F, 0x7E, 0x5D, 0x7E, 0x1B, + 0x16, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0B, 0xFF, 0x74, 0x02, 0xCD, 0x02, 0xC6, 0x00, 0x0B, + 0x00, 0x12, 0x00, 0x00, 0x37, 0x33, 0x13, 0x33, 0x13, 0x33, 0x15, 0x23, 0x35, 0x21, 0x15, 0x23, + 0x37, 0x21, 0x03, 0x27, 0x23, 0x06, 0x07, 0x0B, 0x4A, 0xD3, 0x86, 0xD3, 0x4C, 0x73, 0xFE, 0x24, + 0x73, 0xD0, 0x01, 0x20, 0x75, 0x1A, 0x02, 0x0E, 0x0C, 0x6F, 0x02, 0x57, 0xFD, 0xA9, 0xFB, 0x8C, + 0x8C, 0xFB, 0x01, 0x5E, 0x68, 0x40, 0x28, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0x00, 0x02, 0x85, + 0x02, 0xC6, 0x00, 0x0A, 0x00, 0x00, 0x33, 0x13, 0x33, 0x13, 0x23, 0x03, 0x27, 0x23, 0x06, 0x07, + 0x03, 0x07, 0xFC, 0x86, 0xFC, 0x89, 0x9A, 0x1B, 0x02, 0x0D, 0x0D, 0x99, 0x02, 0xC6, 0xFD, 0x3A, + 0x01, 0xCD, 0x68, 0x40, 0x28, 0xFE, 0x33, 0x00, 0x00, 0x02, 0x00, 0x11, 0xFF, 0x88, 0x02, 0x5E, + 0x01, 0xFE, 0x00, 0x0B, 0x00, 0x12, 0x00, 0x00, 0x37, 0x33, 0x13, 0x33, 0x13, 0x33, 0x15, 0x23, + 0x35, 0x21, 0x15, 0x23, 0x37, 0x33, 0x2F, 0x01, 0x23, 0x06, 0x07, 0x11, 0x3F, 0x99, 0x9D, 0x97, + 0x41, 0x72, 0xFE, 0x98, 0x73, 0xBD, 0xD0, 0x52, 0x15, 0x02, 0x0A, 0x0A, 0x66, 0x01, 0x98, 0xFE, + 0x68, 0xDE, 0x78, 0x78, 0xDE, 0xE3, 0x4C, 0x2F, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0A, + 0x00, 0x00, 0x02, 0x0F, 0x01, 0xFE, 0x00, 0x0A, 0x00, 0x00, 0x33, 0x13, 0x33, 0x13, 0x23, 0x03, + 0x27, 0x23, 0x06, 0x07, 0x03, 0x0A, 0xB8, 0x97, 0xB6, 0x86, 0x69, 0x12, 0x02, 0x09, 0x0A, 0x6A, + 0x01, 0xFE, 0xFE, 0x02, 0x01, 0x3C, 0x4C, 0x2F, 0x1D, 0xFE, 0xC4, 0x00, 0x00, 0x02, 0x00, 0x06, + 0x00, 0x00, 0x03, 0x76, 0x02, 0xC6, 0x00, 0x0E, 0x00, 0x16, 0x00, 0x00, 0x33, 0x01, 0x33, 0x11, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x21, 0x11, 0x23, 0x03, 0x25, 0x33, 0x32, 0x36, 0x34, + 0x26, 0x2B, 0x01, 0x06, 0x01, 0x0D, 0xFE, 0x83, 0x65, 0x7D, 0x7D, 0x62, 0xFE, 0xFA, 0x27, 0xE0, + 0x01, 0x87, 0x6F, 0x35, 0x3E, 0x3F, 0x36, 0x6D, 0x02, 0xC6, 0xFE, 0xE9, 0x77, 0x61, 0x60, 0x77, + 0x02, 0x57, 0xFD, 0xA9, 0x6F, 0x38, 0x60, 0x39, 0x00, 0x02, 0x00, 0x0A, 0x00, 0x00, 0x02, 0xEF, + 0x01, 0xFE, 0x00, 0x0E, 0x00, 0x17, 0x00, 0x00, 0x33, 0x13, 0x33, 0x15, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x2B, 0x01, 0x11, 0x23, 0x03, 0x25, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, + 0x0A, 0xD3, 0xF6, 0x5D, 0x5B, 0x64, 0x5F, 0x61, 0xDA, 0x28, 0xA7, 0x01, 0x4D, 0x4D, 0x2A, 0x2B, + 0x2C, 0x2B, 0x4B, 0x01, 0xFE, 0xB9, 0x55, 0x50, 0x4B, 0x55, 0x01, 0x9F, 0xFE, 0x61, 0x57, 0x27, + 0x22, 0x23, 0x2A, 0x00, 0x00, 0x01, 0x00, 0x07, 0xFF, 0x74, 0x02, 0xE7, 0x02, 0xC6, 0x00, 0x0F, + 0x00, 0x00, 0x33, 0x13, 0x33, 0x13, 0x33, 0x15, 0x07, 0x23, 0x37, 0x23, 0x03, 0x27, 0x23, 0x06, + 0x07, 0x03, 0x07, 0xFC, 0x86, 0xD4, 0x8A, 0x4E, 0x5A, 0x26, 0x69, 0x9A, 0x1B, 0x02, 0x0D, 0x0D, + 0x99, 0x02, 0xC6, 0xFD, 0xA9, 0x46, 0xB5, 0x8C, 0x01, 0xCD, 0x68, 0x40, 0x28, 0xFE, 0x33, 0x00, + 0x00, 0x01, 0x00, 0x0A, 0xFF, 0x88, 0x02, 0x63, 0x01, 0xFE, 0x00, 0x0F, 0x00, 0x00, 0x21, 0x03, + 0x27, 0x23, 0x06, 0x07, 0x03, 0x23, 0x13, 0x33, 0x13, 0x33, 0x15, 0x07, 0x23, 0x37, 0x01, 0x89, + 0x69, 0x12, 0x02, 0x09, 0x0A, 0x6A, 0x85, 0xB8, 0x97, 0x90, 0x7A, 0x45, 0x55, 0x21, 0x01, 0x3C, + 0x4C, 0x2F, 0x1D, 0xFE, 0xC4, 0x01, 0xFE, 0xFE, 0x6D, 0x43, 0xA0, 0x78, 0x00, 0x00, 0x00, 0x1E, + 0x01, 0x6E, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x72, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x13, 0x00, 0xD3, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x07, 0x00, 0xF7, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x26, + 0x01, 0x4D, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x11, 0x01, 0x98, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0D, 0x01, 0xC6, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x06, 0x00, 0x11, 0x01, 0xF8, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x2A, + 0x02, 0x60, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x0C, 0x02, 0xA5, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x0C, 0x02, 0xCC, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x0A, 0x00, 0x1D, 0x03, 0x15, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0B, 0x00, 0x17, + 0x03, 0x63, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x17, 0x03, 0xAB, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x0F, 0x03, 0xE3, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x11, 0x00, 0x03, 0x03, 0xFB, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x00, 0x00, 0x70, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x01, 0x00, 0x26, 0x00, 0xAB, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x02, 0x00, 0x0E, 0x00, 0xE7, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x03, 0x00, 0x4C, 0x00, 0xFF, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x04, 0x00, 0x22, + 0x01, 0x74, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x05, 0x00, 0x1A, 0x01, 0xAA, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x06, 0x00, 0x22, 0x01, 0xD4, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x07, 0x00, 0x54, 0x02, 0x0A, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x08, 0x00, 0x18, + 0x02, 0x8B, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x09, 0x00, 0x18, 0x02, 0xB2, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x0A, 0x00, 0x3A, 0x02, 0xD9, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x0B, 0x00, 0x2E, 0x03, 0x33, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x0C, 0x00, 0x2E, + 0x03, 0x7B, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x10, 0x00, 0x1E, 0x03, 0xC3, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x11, 0x00, 0x06, 0x03, 0xF3, 0x00, 0x43, 0x00, 0x6F, 0x00, 0x70, + 0x00, 0x79, 0x00, 0x72, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x20, 0x00, 0x28, + 0x00, 0x63, 0x00, 0x29, 0x00, 0x20, 0x00, 0x32, 0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x20, + 0x00, 0x62, 0x00, 0x79, 0x00, 0x20, 0x00, 0x4A, 0x00, 0x6F, 0x00, 0x73, 0x00, 0x20, 0x00, 0x42, + 0x00, 0x75, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x61, 0x00, 0x2E, + 0x00, 0x20, 0x00, 0x41, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x72, 0x00, 0x69, 0x00, 0x67, + 0x00, 0x68, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, + 0x00, 0x72, 0x00, 0x76, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x00, 0x43, 0x6F, 0x70, 0x79, + 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x31, 0x32, 0x20, 0x62, + 0x79, 0x20, 0x4A, 0x6F, 0x73, 0x20, 0x42, 0x75, 0x69, 0x76, 0x65, 0x6E, 0x67, 0x61, 0x2E, 0x20, + 0x41, 0x6C, 0x6C, 0x20, 0x72, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x72, 0x65, 0x73, 0x65, 0x72, + 0x76, 0x65, 0x64, 0x2E, 0x00, 0x00, 0x4D, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6F, 0x00, + 0x20, 0x00, 0x53, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x20, 0x00, 0x43, 0x00, 0x79, 0x00, + 0x72, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x37, 0x00, 0x30, 0x00, 0x30, 0x00, 0x00, 0x4D, 0x75, 0x73, + 0x65, 0x6F, 0x20, 0x53, 0x61, 0x6E, 0x73, 0x20, 0x43, 0x79, 0x72, 0x6C, 0x20, 0x37, 0x30, 0x30, + 0x00, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, 0x00, + 0x00, 0x52, 0x65, 0x67, 0x75, 0x6C, 0x61, 0x72, 0x00, 0x00, 0x4A, 0x00, 0x6F, 0x00, 0x73, 0x00, + 0x42, 0x00, 0x75, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x61, 0x00, + 0x3A, 0x00, 0x20, 0x00, 0x4D, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6F, 0x00, 0x20, 0x00, + 0x53, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x20, 0x00, 0x43, 0x00, 0x79, 0x00, 0x72, 0x00, + 0x6C, 0x00, 0x20, 0x00, 0x37, 0x00, 0x30, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x32, 0x00, + 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x00, 0x4A, 0x6F, 0x73, 0x42, 0x75, 0x69, 0x76, 0x65, 0x6E, + 0x67, 0x61, 0x3A, 0x20, 0x4D, 0x75, 0x73, 0x65, 0x6F, 0x20, 0x53, 0x61, 0x6E, 0x73, 0x20, 0x43, + 0x79, 0x72, 0x6C, 0x20, 0x37, 0x30, 0x30, 0x3A, 0x20, 0x32, 0x30, 0x31, 0x32, 0x00, 0x00, 0x4D, + 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6F, 0x00, 0x53, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x73, + 0x00, 0x43, 0x00, 0x79, 0x00, 0x72, 0x00, 0x6C, 0x00, 0x2D, 0x00, 0x37, 0x00, 0x30, 0x00, 0x30, + 0x00, 0x00, 0x4D, 0x75, 0x73, 0x65, 0x6F, 0x53, 0x61, 0x6E, 0x73, 0x43, 0x79, 0x72, 0x6C, 0x2D, + 0x37, 0x30, 0x30, 0x00, 0x00, 0x56, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6F, + 0x00, 0x6E, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x32, 0x00, 0x33, 0x00, 0x00, + 0x56, 0x65, 0x72, 0x73, 0x69, 0x6F, 0x6E, 0x20, 0x31, 0x2E, 0x30, 0x32, 0x33, 0x00, 0x00, 0x4D, + 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6F, 0x00, 0x53, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x73, + 0x00, 0x43, 0x00, 0x79, 0x00, 0x72, 0x00, 0x6C, 0x00, 0x2D, 0x00, 0x37, 0x00, 0x30, 0x00, 0x30, + 0x00, 0x00, 0x4D, 0x75, 0x73, 0x65, 0x6F, 0x53, 0x61, 0x6E, 0x73, 0x43, 0x79, 0x72, 0x6C, 0x2D, + 0x37, 0x30, 0x30, 0x00, 0x00, 0x4D, 0x00, 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6F, 0x00, 0x20, + 0x00, 0x53, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, + 0x00, 0x61, 0x00, 0x20, 0x00, 0x74, 0x00, 0x72, 0x00, 0x61, 0x00, 0x64, 0x00, 0x65, 0x00, 0x6D, + 0x00, 0x61, 0x00, 0x72, 0x00, 0x6B, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x4A, + 0x00, 0x6F, 0x00, 0x73, 0x00, 0x20, 0x00, 0x42, 0x00, 0x75, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, + 0x00, 0x6E, 0x00, 0x67, 0x00, 0x61, 0x00, 0x2E, 0x00, 0x00, 0x4D, 0x75, 0x73, 0x65, 0x6F, 0x20, + 0x53, 0x61, 0x6E, 0x73, 0x20, 0x69, 0x73, 0x20, 0x61, 0x20, 0x74, 0x72, 0x61, 0x64, 0x65, 0x6D, + 0x61, 0x72, 0x6B, 0x20, 0x6F, 0x66, 0x20, 0x4A, 0x6F, 0x73, 0x20, 0x42, 0x75, 0x69, 0x76, 0x65, + 0x6E, 0x67, 0x61, 0x2E, 0x00, 0x00, 0x4A, 0x00, 0x6F, 0x00, 0x73, 0x00, 0x20, 0x00, 0x42, 0x00, + 0x75, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x61, 0x00, 0x00, 0x4A, + 0x6F, 0x73, 0x20, 0x42, 0x75, 0x69, 0x76, 0x65, 0x6E, 0x67, 0x61, 0x00, 0x00, 0x4A, 0x00, 0x6F, + 0x00, 0x73, 0x00, 0x20, 0x00, 0x42, 0x00, 0x75, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 0x6E, + 0x00, 0x67, 0x00, 0x61, 0x00, 0x00, 0x4A, 0x6F, 0x73, 0x20, 0x42, 0x75, 0x69, 0x76, 0x65, 0x6E, + 0x67, 0x61, 0x00, 0x00, 0x53, 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65, 0x00, 0x64, 0x00, + 0x20, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x6B, 0x00, 0x65, 0x00, 0x72, 0x00, + 0x6E, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, + 0x20, 0x00, 0x69, 0x00, 0x4B, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x00, 0x53, + 0x70, 0x61, 0x63, 0x65, 0x64, 0x20, 0x61, 0x6E, 0x64, 0x20, 0x6B, 0x65, 0x72, 0x6E, 0x65, 0x64, + 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x69, 0x4B, 0x65, 0x72, 0x6E, 0x2E, 0x00, 0x00, 0x68, 0x00, + 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3A, 0x00, 0x2F, 0x00, 0x2F, 0x00, 0x77, 0x00, 0x77, 0x00, + 0x77, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x78, 0x00, 0x6C, 0x00, 0x6A, 0x00, 0x62, 0x00, 0x72, 0x00, + 0x69, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x00, 0x68, 0x74, 0x74, + 0x70, 0x3A, 0x2F, 0x2F, 0x77, 0x77, 0x77, 0x2E, 0x65, 0x78, 0x6C, 0x6A, 0x62, 0x72, 0x69, 0x73, + 0x2E, 0x63, 0x6F, 0x6D, 0x00, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3A, 0x00, + 0x2F, 0x00, 0x2F, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, 0x00, 0x2E, 0x00, 0x65, 0x00, 0x78, 0x00, + 0x6C, 0x00, 0x6A, 0x00, 0x62, 0x00, 0x72, 0x00, 0x69, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x63, 0x00, + 0x6F, 0x00, 0x6D, 0x00, 0x00, 0x68, 0x74, 0x74, 0x70, 0x3A, 0x2F, 0x2F, 0x77, 0x77, 0x77, 0x2E, + 0x65, 0x78, 0x6C, 0x6A, 0x62, 0x72, 0x69, 0x73, 0x2E, 0x63, 0x6F, 0x6D, 0x00, 0x00, 0x4D, 0x00, + 0x75, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x53, 0x00, 0x61, 0x00, 0x6E, 0x00, + 0x73, 0x00, 0x20, 0x00, 0x43, 0x00, 0x79, 0x00, 0x72, 0x00, 0x6C, 0x00, 0x00, 0x4D, 0x75, 0x73, + 0x65, 0x6F, 0x20, 0x53, 0x61, 0x6E, 0x73, 0x20, 0x43, 0x79, 0x72, 0x6C, 0x00, 0x00, 0x37, 0x00, + 0x30, 0x00, 0x30, 0x00, 0x00, 0x37, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB5, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xBE, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, + 0x00, 0x09, 0x00, 0x0A, 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x0D, 0x00, 0x0E, 0x00, 0x0F, 0x00, 0x10, + 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x18, + 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, 0x00, 0x1C, 0x00, 0x1D, 0x00, 0x1E, 0x00, 0x1F, 0x00, 0x20, + 0x00, 0x21, 0x00, 0x22, 0x00, 0x23, 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, + 0x00, 0x29, 0x00, 0x2A, 0x00, 0x2B, 0x00, 0x2C, 0x00, 0x2D, 0x00, 0x2E, 0x00, 0x2F, 0x00, 0x30, + 0x00, 0x31, 0x00, 0x32, 0x00, 0x33, 0x00, 0x34, 0x00, 0x35, 0x00, 0x36, 0x00, 0x37, 0x00, 0x38, + 0x00, 0x39, 0x00, 0x3A, 0x00, 0x3B, 0x00, 0x3C, 0x00, 0x3D, 0x00, 0x3E, 0x00, 0x3F, 0x00, 0x40, + 0x00, 0x41, 0x00, 0x42, 0x00, 0x43, 0x00, 0x44, 0x00, 0x45, 0x00, 0x46, 0x00, 0x47, 0x00, 0x48, + 0x00, 0x49, 0x00, 0x4A, 0x00, 0x4B, 0x00, 0x4C, 0x00, 0x4D, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, + 0x00, 0x51, 0x00, 0x52, 0x00, 0x53, 0x00, 0x54, 0x00, 0x55, 0x00, 0x56, 0x00, 0x57, 0x00, 0x58, + 0x00, 0x59, 0x00, 0x5A, 0x00, 0x5B, 0x00, 0x5C, 0x00, 0x5D, 0x00, 0x5E, 0x00, 0x5F, 0x00, 0x60, + 0x00, 0x61, 0x01, 0x02, 0x00, 0xA3, 0x00, 0x84, 0x00, 0x85, 0x00, 0xBD, 0x00, 0x96, 0x00, 0x86, + 0x00, 0x8E, 0x00, 0x8B, 0x00, 0x9D, 0x00, 0xA9, 0x00, 0xA4, 0x01, 0x03, 0x00, 0x8A, 0x00, 0xDA, + 0x00, 0x83, 0x00, 0x93, 0x00, 0xF2, 0x00, 0xF3, 0x00, 0x8D, 0x00, 0x97, 0x00, 0x88, 0x00, 0xC3, + 0x00, 0xDE, 0x00, 0xF1, 0x00, 0x9E, 0x00, 0xAA, 0x00, 0xF5, 0x00, 0xF4, 0x00, 0xF6, 0x00, 0xA2, + 0x00, 0xAD, 0x00, 0xC9, 0x00, 0xC7, 0x00, 0xAE, 0x00, 0x62, 0x00, 0x63, 0x00, 0x90, 0x00, 0x64, + 0x00, 0xCB, 0x00, 0x65, 0x00, 0xC8, 0x00, 0xCA, 0x00, 0xCF, 0x00, 0xCC, 0x00, 0xCD, 0x00, 0xCE, + 0x00, 0xE9, 0x00, 0x66, 0x00, 0xD3, 0x00, 0xD0, 0x00, 0xD1, 0x00, 0xAF, 0x00, 0x67, 0x00, 0xF0, + 0x00, 0x91, 0x00, 0xD6, 0x00, 0xD4, 0x00, 0xD5, 0x00, 0x68, 0x00, 0xEB, 0x00, 0xED, 0x00, 0x89, + 0x00, 0x6A, 0x00, 0x69, 0x00, 0x6B, 0x00, 0x6D, 0x00, 0x6C, 0x00, 0x6E, 0x00, 0xA0, 0x00, 0x6F, + 0x00, 0x71, 0x00, 0x70, 0x00, 0x72, 0x00, 0x73, 0x00, 0x75, 0x00, 0x74, 0x00, 0x76, 0x00, 0x77, + 0x00, 0xEA, 0x00, 0x78, 0x00, 0x7A, 0x00, 0x79, 0x00, 0x7B, 0x00, 0x7D, 0x00, 0x7C, 0x00, 0xB8, + 0x00, 0xA1, 0x00, 0x7F, 0x00, 0x7E, 0x00, 0x80, 0x00, 0x81, 0x00, 0xEC, 0x00, 0xEE, 0x00, 0xBA, + 0x01, 0x04, 0x01, 0x05, 0x01, 0x06, 0x01, 0x07, 0x01, 0x08, 0x01, 0x09, 0x00, 0xFD, 0x00, 0xFE, + 0x01, 0x0A, 0x01, 0x0B, 0x01, 0x0C, 0x01, 0x0D, 0x00, 0xFF, 0x01, 0x00, 0x01, 0x0E, 0x01, 0x0F, + 0x01, 0x10, 0x01, 0x01, 0x01, 0x11, 0x01, 0x12, 0x01, 0x13, 0x01, 0x14, 0x01, 0x15, 0x01, 0x16, + 0x01, 0x17, 0x01, 0x18, 0x01, 0x19, 0x01, 0x1A, 0x01, 0x1B, 0x01, 0x1C, 0x00, 0xF8, 0x00, 0xF9, + 0x01, 0x1D, 0x01, 0x1E, 0x01, 0x1F, 0x01, 0x20, 0x01, 0x21, 0x01, 0x22, 0x01, 0x23, 0x01, 0x24, + 0x01, 0x25, 0x01, 0x26, 0x01, 0x27, 0x01, 0x28, 0x01, 0x29, 0x01, 0x2A, 0x01, 0x2B, 0x01, 0x2C, + 0x00, 0xFA, 0x00, 0xD7, 0x01, 0x2D, 0x01, 0x2E, 0x01, 0x2F, 0x01, 0x30, 0x01, 0x31, 0x01, 0x32, + 0x01, 0x33, 0x01, 0x34, 0x01, 0x35, 0x01, 0x36, 0x01, 0x37, 0x01, 0x38, 0x01, 0x39, 0x01, 0x3A, + 0x01, 0x3B, 0x00, 0xE2, 0x00, 0xE3, 0x01, 0x3C, 0x01, 0x3D, 0x01, 0x3E, 0x01, 0x3F, 0x01, 0x40, + 0x01, 0x41, 0x01, 0x42, 0x01, 0x43, 0x01, 0x44, 0x01, 0x45, 0x01, 0x46, 0x01, 0x47, 0x01, 0x48, + 0x01, 0x49, 0x01, 0x4A, 0x00, 0xB0, 0x00, 0xB1, 0x01, 0x4B, 0x01, 0x4C, 0x01, 0x4D, 0x01, 0x4E, + 0x01, 0x4F, 0x01, 0x50, 0x01, 0x51, 0x01, 0x52, 0x01, 0x53, 0x01, 0x54, 0x00, 0xFB, 0x00, 0xFC, + 0x00, 0xE4, 0x00, 0xE5, 0x01, 0x55, 0x01, 0x56, 0x01, 0x57, 0x01, 0x58, 0x01, 0x59, 0x01, 0x5A, + 0x01, 0x5B, 0x01, 0x5C, 0x01, 0x5D, 0x01, 0x5E, 0x01, 0x5F, 0x01, 0x60, 0x01, 0x61, 0x01, 0x62, + 0x01, 0x63, 0x01, 0x64, 0x01, 0x65, 0x01, 0x66, 0x01, 0x67, 0x01, 0x68, 0x01, 0x69, 0x01, 0x6A, + 0x00, 0xBB, 0x01, 0x6B, 0x01, 0x6C, 0x01, 0x6D, 0x01, 0x6E, 0x00, 0xE6, 0x00, 0xE7, 0x01, 0x6F, + 0x00, 0xA6, 0x01, 0x70, 0x01, 0x71, 0x01, 0x72, 0x01, 0x73, 0x00, 0xD8, 0x00, 0xE1, 0x00, 0xDB, + 0x00, 0xDC, 0x00, 0xDD, 0x00, 0xE0, 0x00, 0xD9, 0x00, 0xDF, 0x01, 0x74, 0x01, 0x75, 0x01, 0x76, + 0x01, 0x77, 0x01, 0x78, 0x01, 0x79, 0x01, 0x7A, 0x01, 0x7B, 0x01, 0x7C, 0x01, 0x7D, 0x01, 0x7E, + 0x01, 0x7F, 0x01, 0x80, 0x01, 0x81, 0x01, 0x82, 0x01, 0x83, 0x01, 0x84, 0x01, 0x85, 0x01, 0x86, + 0x01, 0x87, 0x01, 0x88, 0x01, 0x89, 0x01, 0x8A, 0x01, 0x8B, 0x01, 0x8C, 0x01, 0x8D, 0x01, 0x8E, + 0x01, 0x8F, 0x01, 0x90, 0x01, 0x91, 0x01, 0x92, 0x01, 0x93, 0x01, 0x94, 0x01, 0x95, 0x01, 0x96, + 0x01, 0x97, 0x01, 0x98, 0x01, 0x99, 0x01, 0x9A, 0x01, 0x9B, 0x01, 0x9C, 0x01, 0x9D, 0x01, 0x9E, + 0x01, 0x9F, 0x01, 0xA0, 0x01, 0xA1, 0x01, 0xA2, 0x01, 0xA3, 0x01, 0xA4, 0x01, 0xA5, 0x01, 0xA6, + 0x01, 0xA7, 0x01, 0xA8, 0x01, 0xA9, 0x01, 0xAA, 0x01, 0xAB, 0x01, 0xAC, 0x01, 0xAD, 0x01, 0xAE, + 0x01, 0xAF, 0x01, 0xB0, 0x01, 0xB1, 0x01, 0xB2, 0x01, 0xB3, 0x01, 0xB4, 0x01, 0xB5, 0x01, 0xB6, + 0x01, 0xB7, 0x01, 0xB8, 0x01, 0xB9, 0x01, 0xBA, 0x01, 0xBB, 0x01, 0xBC, 0x01, 0xBD, 0x01, 0xBE, + 0x01, 0xBF, 0x01, 0xC0, 0x01, 0xC1, 0x01, 0xC2, 0x01, 0xC3, 0x01, 0xC4, 0x01, 0xC5, 0x01, 0xC6, + 0x01, 0xC7, 0x01, 0xC8, 0x01, 0xC9, 0x01, 0xCA, 0x01, 0xCB, 0x01, 0xCC, 0x01, 0xCD, 0x01, 0xCE, + 0x01, 0xCF, 0x01, 0xD0, 0x01, 0xD1, 0x01, 0xD2, 0x01, 0xD3, 0x01, 0xD4, 0x01, 0xD5, 0x01, 0xD6, + 0x01, 0xD7, 0x01, 0xD8, 0x01, 0xD9, 0x01, 0xDA, 0x01, 0xDB, 0x01, 0xDC, 0x01, 0xDD, 0x01, 0xDE, + 0x01, 0xDF, 0x01, 0xE0, 0x01, 0xE1, 0x01, 0xE2, 0x01, 0xE3, 0x01, 0xE4, 0x01, 0xE5, 0x01, 0xE6, + 0x01, 0xE7, 0x01, 0xE8, 0x01, 0xE9, 0x01, 0xEA, 0x01, 0xEB, 0x01, 0xEC, 0x01, 0xED, 0x01, 0xEE, + 0x01, 0xEF, 0x01, 0xF0, 0x01, 0xF1, 0x01, 0xF2, 0x01, 0xF3, 0x01, 0xF4, 0x01, 0xF5, 0x01, 0xF6, + 0x01, 0xF7, 0x01, 0xF8, 0x01, 0xF9, 0x01, 0xFA, 0x01, 0xFB, 0x01, 0xFC, 0x01, 0xFD, 0x01, 0xFE, + 0x01, 0xFF, 0x02, 0x00, 0x02, 0x01, 0x02, 0x02, 0x02, 0x03, 0x02, 0x04, 0x02, 0x05, 0x02, 0x06, + 0x02, 0x07, 0x02, 0x08, 0x02, 0x09, 0x02, 0x0A, 0x02, 0x0B, 0x02, 0x0C, 0x02, 0x0D, 0x02, 0x0E, + 0x02, 0x0F, 0x02, 0x10, 0x02, 0x11, 0x02, 0x12, 0x02, 0x13, 0x02, 0x14, 0x02, 0x15, 0x02, 0x16, + 0x02, 0x17, 0x02, 0x18, 0x02, 0x19, 0x02, 0x1A, 0x02, 0x1B, 0x02, 0x1C, 0x02, 0x1D, 0x02, 0x1E, + 0x02, 0x1F, 0x02, 0x20, 0x02, 0x21, 0x02, 0x22, 0x02, 0x23, 0x02, 0x24, 0x02, 0x25, 0x02, 0x26, + 0x02, 0x27, 0x02, 0x28, 0x02, 0x29, 0x02, 0x2A, 0x02, 0x2B, 0x02, 0x2C, 0x02, 0x2D, 0x02, 0x2E, + 0x02, 0x2F, 0x02, 0x30, 0x02, 0x31, 0x02, 0x32, 0x02, 0x33, 0x02, 0x34, 0x02, 0x35, 0x02, 0x36, + 0x02, 0x37, 0x02, 0x38, 0x02, 0x39, 0x02, 0x3A, 0x02, 0x3B, 0x02, 0x3C, 0x02, 0x3D, 0x02, 0x3E, + 0x02, 0x3F, 0x02, 0x40, 0x02, 0x41, 0x02, 0x42, 0x02, 0x43, 0x02, 0x44, 0x02, 0x45, 0x02, 0x46, + 0x02, 0x47, 0x02, 0x48, 0x02, 0x49, 0x02, 0x4A, 0x02, 0x4B, 0x02, 0x4C, 0x02, 0x4D, 0x00, 0xB2, + 0x00, 0xB3, 0x00, 0xB6, 0x00, 0xB7, 0x00, 0xC4, 0x00, 0xB4, 0x00, 0xB5, 0x00, 0xC5, 0x00, 0x82, + 0x00, 0xC2, 0x00, 0x87, 0x00, 0xAB, 0x00, 0xC6, 0x00, 0xBE, 0x00, 0xBF, 0x00, 0xBC, 0x02, 0x4E, + 0x02, 0x4F, 0x02, 0x50, 0x02, 0x51, 0x02, 0x52, 0x02, 0x53, 0x02, 0x54, 0x02, 0x55, 0x02, 0x56, + 0x02, 0x57, 0x02, 0x58, 0x02, 0x59, 0x02, 0x5A, 0x02, 0x5B, 0x02, 0x5C, 0x02, 0x5D, 0x02, 0x5E, + 0x02, 0x5F, 0x02, 0x60, 0x00, 0x8C, 0x00, 0xEF, 0x00, 0x92, 0x00, 0xA7, 0x00, 0x8F, 0x00, 0x94, + 0x00, 0x95, 0x02, 0x61, 0x02, 0x62, 0x00, 0xD2, 0x02, 0x63, 0x00, 0xC0, 0x00, 0xC1, 0x02, 0x64, + 0x02, 0x65, 0x02, 0x66, 0x02, 0x67, 0x02, 0x68, 0x02, 0x69, 0x02, 0x6A, 0x02, 0x6B, 0x02, 0x6C, + 0x02, 0x6D, 0x02, 0x6E, 0x02, 0x6F, 0x02, 0x70, 0x02, 0x71, 0x02, 0x72, 0x02, 0x73, 0x02, 0x74, + 0x02, 0x75, 0x02, 0x76, 0x02, 0x77, 0x02, 0x78, 0x02, 0x79, 0x02, 0x7A, 0x02, 0x7B, 0x02, 0x7C, + 0x02, 0x7D, 0x02, 0x7E, 0x02, 0x7F, 0x02, 0x80, 0x02, 0x81, 0x02, 0x82, 0x02, 0x83, 0x02, 0x84, + 0x02, 0x85, 0x02, 0x86, 0x02, 0x87, 0x02, 0x88, 0x02, 0x89, 0x02, 0x8A, 0x02, 0x8B, 0x02, 0x8C, + 0x02, 0x8D, 0x02, 0x8E, 0x02, 0x8F, 0x02, 0x90, 0x02, 0x91, 0x02, 0x92, 0x02, 0x93, 0x02, 0x94, + 0x02, 0x95, 0x02, 0x96, 0x02, 0x97, 0x02, 0x98, 0x02, 0x99, 0x02, 0x9A, 0x02, 0x9B, 0x02, 0x9C, + 0x02, 0x9D, 0x02, 0x9E, 0x02, 0x9F, 0x02, 0xA0, 0x02, 0xA1, 0x02, 0xA2, 0x02, 0xA3, 0x02, 0xA4, + 0x02, 0xA5, 0x02, 0xA6, 0x02, 0xA7, 0x02, 0xA8, 0x02, 0xA9, 0x02, 0xAA, 0x02, 0xAB, 0x02, 0xAC, + 0x02, 0xAD, 0x02, 0xAE, 0x02, 0xAF, 0x02, 0xB0, 0x02, 0xB1, 0x02, 0xB2, 0x02, 0xB3, 0x02, 0xB4, + 0x02, 0xB5, 0x02, 0xB6, 0x02, 0xB7, 0x02, 0xB8, 0x02, 0xB9, 0x02, 0xBA, 0x02, 0xBB, 0x02, 0xBC, + 0x02, 0xBD, 0x02, 0xBE, 0x02, 0xBF, 0x02, 0xC0, 0x02, 0xC1, 0x02, 0xC2, 0x02, 0xC3, 0x02, 0xC4, + 0x02, 0xC5, 0x02, 0xC6, 0x02, 0xC7, 0x02, 0xC8, 0x02, 0xC9, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x30, + 0x41, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x41, 0x44, 0x07, 0x41, 0x6D, 0x61, 0x63, 0x72, + 0x6F, 0x6E, 0x07, 0x61, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x06, 0x41, 0x62, 0x72, 0x65, 0x76, + 0x65, 0x06, 0x61, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07, 0x41, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, + 0x07, 0x61, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x0B, 0x43, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, + 0x66, 0x6C, 0x65, 0x78, 0x0B, 0x63, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, + 0x0A, 0x43, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x0A, 0x63, 0x64, 0x6F, 0x74, + 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x06, 0x44, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x06, 0x64, 0x63, + 0x61, 0x72, 0x6F, 0x6E, 0x06, 0x44, 0x63, 0x72, 0x6F, 0x61, 0x74, 0x07, 0x45, 0x6D, 0x61, 0x63, + 0x72, 0x6F, 0x6E, 0x07, 0x65, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x06, 0x45, 0x62, 0x72, 0x65, + 0x76, 0x65, 0x06, 0x65, 0x62, 0x72, 0x65, 0x76, 0x65, 0x0A, 0x45, 0x64, 0x6F, 0x74, 0x61, 0x63, + 0x63, 0x65, 0x6E, 0x74, 0x0A, 0x65, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, + 0x45, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x07, 0x65, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x06, + 0x45, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x06, 0x65, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x0B, 0x47, 0x63, + 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x0B, 0x67, 0x63, 0x69, 0x72, 0x63, 0x75, + 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x0A, 0x47, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, + 0x0A, 0x67, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x0C, 0x47, 0x63, 0x6F, 0x6D, + 0x6D, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x0C, 0x67, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x61, + 0x63, 0x63, 0x65, 0x6E, 0x74, 0x0B, 0x48, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, + 0x78, 0x0B, 0x68, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x04, 0x48, 0x62, + 0x61, 0x72, 0x04, 0x68, 0x62, 0x61, 0x72, 0x06, 0x49, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x06, 0x69, + 0x74, 0x69, 0x6C, 0x64, 0x65, 0x07, 0x49, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x07, 0x69, 0x6D, + 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x06, 0x49, 0x62, 0x72, 0x65, 0x76, 0x65, 0x06, 0x69, 0x62, 0x72, + 0x65, 0x76, 0x65, 0x07, 0x49, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x07, 0x69, 0x6F, 0x67, 0x6F, + 0x6E, 0x65, 0x6B, 0x02, 0x49, 0x4A, 0x02, 0x69, 0x6A, 0x0B, 0x4A, 0x63, 0x69, 0x72, 0x63, 0x75, + 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x0B, 0x6A, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, + 0x78, 0x0C, 0x4B, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x0C, 0x6B, + 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x0C, 0x6B, 0x67, 0x72, 0x65, + 0x65, 0x6E, 0x6C, 0x61, 0x6E, 0x64, 0x69, 0x63, 0x06, 0x4C, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, + 0x6C, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0C, 0x4C, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x61, 0x63, 0x63, + 0x65, 0x6E, 0x74, 0x0C, 0x6C, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, + 0x06, 0x4C, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x06, 0x6C, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x04, 0x4C, + 0x64, 0x6F, 0x74, 0x04, 0x6C, 0x64, 0x6F, 0x74, 0x06, 0x4E, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, + 0x6E, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0C, 0x4E, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x61, 0x63, 0x63, + 0x65, 0x6E, 0x74, 0x0C, 0x6E, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, + 0x06, 0x4E, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x06, 0x6E, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x0B, 0x6E, + 0x61, 0x70, 0x6F, 0x73, 0x74, 0x72, 0x6F, 0x70, 0x68, 0x65, 0x03, 0x45, 0x6E, 0x67, 0x03, 0x65, + 0x6E, 0x67, 0x07, 0x4F, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x07, 0x6F, 0x6D, 0x61, 0x63, 0x72, + 0x6F, 0x6E, 0x06, 0x4F, 0x62, 0x72, 0x65, 0x76, 0x65, 0x06, 0x6F, 0x62, 0x72, 0x65, 0x76, 0x65, + 0x0D, 0x4F, 0x68, 0x75, 0x6E, 0x67, 0x61, 0x72, 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, 0x0D, 0x6F, + 0x68, 0x75, 0x6E, 0x67, 0x61, 0x72, 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, 0x06, 0x52, 0x61, 0x63, + 0x75, 0x74, 0x65, 0x06, 0x72, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0C, 0x52, 0x63, 0x6F, 0x6D, 0x6D, + 0x61, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x0C, 0x72, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x61, 0x63, + 0x63, 0x65, 0x6E, 0x74, 0x06, 0x52, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x06, 0x72, 0x63, 0x61, 0x72, + 0x6F, 0x6E, 0x06, 0x53, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x73, 0x61, 0x63, 0x75, 0x74, 0x65, + 0x0B, 0x53, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x0B, 0x73, 0x63, 0x69, + 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x0C, 0x54, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x61, + 0x63, 0x63, 0x65, 0x6E, 0x74, 0x0C, 0x74, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x61, 0x63, 0x63, 0x65, + 0x6E, 0x74, 0x06, 0x54, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x06, 0x74, 0x63, 0x61, 0x72, 0x6F, 0x6E, + 0x04, 0x54, 0x62, 0x61, 0x72, 0x04, 0x74, 0x62, 0x61, 0x72, 0x06, 0x55, 0x74, 0x69, 0x6C, 0x64, + 0x65, 0x06, 0x75, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x07, 0x55, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, + 0x07, 0x75, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x06, 0x55, 0x62, 0x72, 0x65, 0x76, 0x65, 0x06, + 0x75, 0x62, 0x72, 0x65, 0x76, 0x65, 0x05, 0x55, 0x72, 0x69, 0x6E, 0x67, 0x05, 0x75, 0x72, 0x69, + 0x6E, 0x67, 0x0D, 0x55, 0x68, 0x75, 0x6E, 0x67, 0x61, 0x72, 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, + 0x0D, 0x75, 0x68, 0x75, 0x6E, 0x67, 0x61, 0x72, 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, 0x07, 0x55, + 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x07, 0x75, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x0B, 0x57, + 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x0B, 0x77, 0x63, 0x69, 0x72, 0x63, + 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x0B, 0x59, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, + 0x65, 0x78, 0x0B, 0x79, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x06, 0x5A, + 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x7A, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0A, 0x5A, 0x64, 0x6F, + 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x0A, 0x7A, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, + 0x6E, 0x74, 0x05, 0x6C, 0x6F, 0x6E, 0x67, 0x73, 0x0C, 0x53, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x61, + 0x63, 0x63, 0x65, 0x6E, 0x74, 0x0C, 0x73, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x61, 0x63, 0x63, 0x65, + 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x31, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x30, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x30, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x30, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x30, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x30, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x30, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x30, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x30, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x31, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x31, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x31, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x31, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x31, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x31, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x31, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x31, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x32, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x32, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x32, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x32, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x32, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x32, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x32, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x32, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x32, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x32, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x32, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x32, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x32, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x32, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x32, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x32, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x33, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x33, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x33, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x33, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x33, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x33, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x33, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x33, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x34, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x34, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x34, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x34, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x34, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x34, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x34, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x34, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x35, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x35, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x35, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x35, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x35, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x35, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x35, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x35, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x36, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x36, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x37, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x37, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x37, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x37, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x38, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x38, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x38, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x39, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x39, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x39, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x39, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x39, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x39, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x39, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x39, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x41, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x41, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x41, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x41, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x41, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x41, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x41, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x41, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x42, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x42, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x42, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x42, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x42, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x42, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x42, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x42, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x43, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x43, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x43, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x43, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x43, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x43, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x43, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x43, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x44, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x44, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x44, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x44, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x44, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x44, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x44, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x44, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x46, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x46, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x46, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x46, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x46, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x35, 0x32, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x35, + 0x32, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x45, 0x09, 0x74, 0x68, 0x69, 0x6E, 0x73, + 0x70, 0x61, 0x63, 0x65, 0x0C, 0x7A, 0x65, 0x72, 0x6F, 0x73, 0x75, 0x70, 0x65, 0x72, 0x69, 0x6F, + 0x72, 0x0C, 0x66, 0x6F, 0x75, 0x72, 0x73, 0x75, 0x70, 0x65, 0x72, 0x69, 0x6F, 0x72, 0x0C, 0x66, + 0x69, 0x76, 0x65, 0x73, 0x75, 0x70, 0x65, 0x72, 0x69, 0x6F, 0x72, 0x0B, 0x73, 0x69, 0x78, 0x73, + 0x75, 0x70, 0x65, 0x72, 0x69, 0x6F, 0x72, 0x0D, 0x73, 0x65, 0x76, 0x65, 0x6E, 0x73, 0x75, 0x70, + 0x65, 0x72, 0x69, 0x6F, 0x72, 0x0D, 0x65, 0x69, 0x67, 0x68, 0x74, 0x73, 0x75, 0x70, 0x65, 0x72, + 0x69, 0x6F, 0x72, 0x0C, 0x6E, 0x69, 0x6E, 0x65, 0x73, 0x75, 0x70, 0x65, 0x72, 0x69, 0x6F, 0x72, + 0x0C, 0x7A, 0x65, 0x72, 0x6F, 0x69, 0x6E, 0x66, 0x65, 0x72, 0x69, 0x6F, 0x72, 0x0B, 0x6F, 0x6E, + 0x65, 0x69, 0x6E, 0x66, 0x65, 0x72, 0x69, 0x6F, 0x72, 0x0B, 0x74, 0x77, 0x6F, 0x69, 0x6E, 0x66, + 0x65, 0x72, 0x69, 0x6F, 0x72, 0x0D, 0x74, 0x68, 0x72, 0x65, 0x65, 0x69, 0x6E, 0x66, 0x65, 0x72, + 0x69, 0x6F, 0x72, 0x0C, 0x66, 0x6F, 0x75, 0x72, 0x69, 0x6E, 0x66, 0x65, 0x72, 0x69, 0x6F, 0x72, + 0x0C, 0x66, 0x69, 0x76, 0x65, 0x69, 0x6E, 0x66, 0x65, 0x72, 0x69, 0x6F, 0x72, 0x0B, 0x73, 0x69, + 0x78, 0x69, 0x6E, 0x66, 0x65, 0x72, 0x69, 0x6F, 0x72, 0x0D, 0x73, 0x65, 0x76, 0x65, 0x6E, 0x69, + 0x6E, 0x66, 0x65, 0x72, 0x69, 0x6F, 0x72, 0x0D, 0x65, 0x69, 0x67, 0x68, 0x74, 0x69, 0x6E, 0x66, + 0x65, 0x72, 0x69, 0x6F, 0x72, 0x0C, 0x6E, 0x69, 0x6E, 0x65, 0x69, 0x6E, 0x66, 0x65, 0x72, 0x69, + 0x6F, 0x72, 0x04, 0x45, 0x75, 0x72, 0x6F, 0x06, 0x6E, 0x75, 0x6D, 0x65, 0x72, 0x6F, 0x0B, 0x63, + 0x6F, 0x6D, 0x6D, 0x61, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x08, 0x63, 0x79, 0x72, 0x62, 0x72, + 0x65, 0x76, 0x65, 0x03, 0x66, 0x5F, 0x66, 0x05, 0x66, 0x5F, 0x66, 0x5F, 0x69, 0x05, 0x66, 0x5F, + 0x66, 0x5F, 0x6C, 0x03, 0x66, 0x5F, 0x6A, 0x09, 0x7A, 0x65, 0x72, 0x6F, 0x2E, 0x74, 0x6E, 0x75, + 0x6D, 0x08, 0x6F, 0x6E, 0x65, 0x2E, 0x74, 0x6E, 0x75, 0x6D, 0x08, 0x74, 0x77, 0x6F, 0x2E, 0x74, + 0x6E, 0x75, 0x6D, 0x0A, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, 0x74, 0x6E, 0x75, 0x6D, 0x09, 0x66, + 0x6F, 0x75, 0x72, 0x2E, 0x74, 0x6E, 0x75, 0x6D, 0x09, 0x66, 0x69, 0x76, 0x65, 0x2E, 0x74, 0x6E, + 0x75, 0x6D, 0x08, 0x73, 0x69, 0x78, 0x2E, 0x74, 0x6E, 0x75, 0x6D, 0x0A, 0x73, 0x65, 0x76, 0x65, + 0x6E, 0x2E, 0x74, 0x6E, 0x75, 0x6D, 0x0A, 0x65, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x74, 0x6E, 0x75, + 0x6D, 0x09, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x74, 0x6E, 0x75, 0x6D, 0x0B, 0x68, 0x79, 0x70, 0x68, + 0x65, 0x6E, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0E, 0x70, 0x61, 0x72, 0x65, 0x6E, 0x6C, 0x65, 0x66, + 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0F, 0x70, 0x61, 0x72, 0x65, 0x6E, 0x72, 0x69, 0x67, 0x68, + 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x62, 0x72, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x6C, 0x65, + 0x66, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x11, 0x62, 0x72, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x72, + 0x69, 0x67, 0x68, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0E, 0x62, 0x72, 0x61, 0x63, 0x65, 0x6C, + 0x65, 0x66, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0F, 0x62, 0x72, 0x61, 0x63, 0x65, 0x72, 0x69, + 0x67, 0x68, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x07, 0x61, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, + 0x12, 0x67, 0x75, 0x69, 0x6C, 0x6C, 0x65, 0x6D, 0x6F, 0x74, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, + 0x61, 0x73, 0x65, 0x13, 0x67, 0x75, 0x69, 0x6C, 0x6C, 0x65, 0x6D, 0x6F, 0x74, 0x72, 0x69, 0x67, + 0x68, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x12, 0x67, 0x75, 0x69, 0x6C, 0x73, 0x69, 0x6E, 0x67, + 0x6C, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x13, 0x67, 0x75, 0x69, 0x6C, 0x73, + 0x69, 0x6E, 0x67, 0x6C, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0B, 0x65, + 0x6E, 0x64, 0x61, 0x73, 0x68, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0B, 0x65, 0x6D, 0x64, 0x61, 0x73, + 0x68, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x13, 0x70, 0x65, 0x72, 0x69, 0x6F, 0x64, 0x63, 0x65, 0x6E, + 0x74, 0x65, 0x72, 0x65, 0x64, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x11, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x69, 0x6F, 0x6E, 0x64, 0x6F, 0x77, 0x6E, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0F, 0x65, 0x78, 0x63, + 0x6C, 0x61, 0x6D, 0x64, 0x6F, 0x77, 0x6E, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0B, 0x62, 0x75, 0x6C, + 0x6C, 0x65, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0A, 0x7A, 0x65, 0x72, 0x6F, 0x2E, 0x70, 0x5F, + 0x6F, 0x73, 0x66, 0x09, 0x6F, 0x6E, 0x65, 0x2E, 0x70, 0x5F, 0x6F, 0x73, 0x66, 0x09, 0x74, 0x77, + 0x6F, 0x2E, 0x70, 0x5F, 0x6F, 0x73, 0x66, 0x0B, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, 0x70, 0x5F, + 0x6F, 0x73, 0x66, 0x0A, 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x70, 0x5F, 0x6F, 0x73, 0x66, 0x0A, 0x66, + 0x69, 0x76, 0x65, 0x2E, 0x70, 0x5F, 0x6F, 0x73, 0x66, 0x09, 0x73, 0x69, 0x78, 0x2E, 0x70, 0x5F, + 0x6F, 0x73, 0x66, 0x0B, 0x73, 0x65, 0x76, 0x65, 0x6E, 0x2E, 0x70, 0x5F, 0x6F, 0x73, 0x66, 0x0B, + 0x65, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x70, 0x5F, 0x6F, 0x73, 0x66, 0x0A, 0x6E, 0x69, 0x6E, 0x65, + 0x2E, 0x70, 0x5F, 0x6F, 0x73, 0x66, 0x0A, 0x7A, 0x65, 0x72, 0x6F, 0x2E, 0x74, 0x5F, 0x6F, 0x73, + 0x66, 0x09, 0x6F, 0x6E, 0x65, 0x2E, 0x74, 0x5F, 0x6F, 0x73, 0x66, 0x09, 0x74, 0x77, 0x6F, 0x2E, + 0x74, 0x5F, 0x6F, 0x73, 0x66, 0x0B, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, 0x74, 0x5F, 0x6F, 0x73, + 0x66, 0x0A, 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x74, 0x5F, 0x6F, 0x73, 0x66, 0x0A, 0x66, 0x69, 0x76, + 0x65, 0x2E, 0x74, 0x5F, 0x6F, 0x73, 0x66, 0x09, 0x73, 0x69, 0x78, 0x2E, 0x74, 0x5F, 0x6F, 0x73, + 0x66, 0x0B, 0x73, 0x65, 0x76, 0x65, 0x6E, 0x2E, 0x74, 0x5F, 0x6F, 0x73, 0x66, 0x0B, 0x65, 0x69, + 0x67, 0x68, 0x74, 0x2E, 0x74, 0x5F, 0x6F, 0x73, 0x66, 0x0A, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x74, + 0x5F, 0x6F, 0x73, 0x66, 0x0A, 0x64, 0x6F, 0x6C, 0x6C, 0x61, 0x72, 0x2E, 0x6F, 0x73, 0x66, 0x08, + 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x6F, 0x73, 0x66, 0x0C, 0x73, 0x74, 0x65, 0x72, 0x6C, 0x69, 0x6E, + 0x67, 0x2E, 0x6F, 0x73, 0x66, 0x07, 0x79, 0x65, 0x6E, 0x2E, 0x6F, 0x73, 0x66, 0x0A, 0x66, 0x6C, + 0x6F, 0x72, 0x69, 0x6E, 0x2E, 0x6F, 0x73, 0x66, 0x08, 0x45, 0x75, 0x72, 0x6F, 0x2E, 0x6F, 0x73, + 0x66, 0x0E, 0x7A, 0x65, 0x72, 0x6F, 0x2E, 0x6E, 0x75, 0x6D, 0x65, 0x72, 0x61, 0x74, 0x6F, 0x72, + 0x0D, 0x6F, 0x6E, 0x65, 0x2E, 0x6E, 0x75, 0x6D, 0x65, 0x72, 0x61, 0x74, 0x6F, 0x72, 0x0D, 0x74, + 0x77, 0x6F, 0x2E, 0x6E, 0x75, 0x6D, 0x65, 0x72, 0x61, 0x74, 0x6F, 0x72, 0x0F, 0x74, 0x68, 0x72, + 0x65, 0x65, 0x2E, 0x6E, 0x75, 0x6D, 0x65, 0x72, 0x61, 0x74, 0x6F, 0x72, 0x0E, 0x66, 0x6F, 0x75, + 0x72, 0x2E, 0x6E, 0x75, 0x6D, 0x65, 0x72, 0x61, 0x74, 0x6F, 0x72, 0x0E, 0x66, 0x69, 0x76, 0x65, + 0x2E, 0x6E, 0x75, 0x6D, 0x65, 0x72, 0x61, 0x74, 0x6F, 0x72, 0x0D, 0x73, 0x69, 0x78, 0x2E, 0x6E, + 0x75, 0x6D, 0x65, 0x72, 0x61, 0x74, 0x6F, 0x72, 0x0F, 0x73, 0x65, 0x76, 0x65, 0x6E, 0x2E, 0x6E, + 0x75, 0x6D, 0x65, 0x72, 0x61, 0x74, 0x6F, 0x72, 0x0F, 0x65, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x6E, + 0x75, 0x6D, 0x65, 0x72, 0x61, 0x74, 0x6F, 0x72, 0x0E, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x6E, 0x75, + 0x6D, 0x65, 0x72, 0x61, 0x74, 0x6F, 0x72, 0x10, 0x7A, 0x65, 0x72, 0x6F, 0x2E, 0x64, 0x65, 0x6E, + 0x6F, 0x6D, 0x69, 0x6E, 0x61, 0x74, 0x6F, 0x72, 0x0F, 0x6F, 0x6E, 0x65, 0x2E, 0x64, 0x65, 0x6E, + 0x6F, 0x6D, 0x69, 0x6E, 0x61, 0x74, 0x6F, 0x72, 0x0F, 0x74, 0x77, 0x6F, 0x2E, 0x64, 0x65, 0x6E, + 0x6F, 0x6D, 0x69, 0x6E, 0x61, 0x74, 0x6F, 0x72, 0x11, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, 0x64, + 0x65, 0x6E, 0x6F, 0x6D, 0x69, 0x6E, 0x61, 0x74, 0x6F, 0x72, 0x10, 0x66, 0x6F, 0x75, 0x72, 0x2E, + 0x64, 0x65, 0x6E, 0x6F, 0x6D, 0x69, 0x6E, 0x61, 0x74, 0x6F, 0x72, 0x10, 0x66, 0x69, 0x76, 0x65, + 0x2E, 0x64, 0x65, 0x6E, 0x6F, 0x6D, 0x69, 0x6E, 0x61, 0x74, 0x6F, 0x72, 0x0F, 0x73, 0x69, 0x78, + 0x2E, 0x64, 0x65, 0x6E, 0x6F, 0x6D, 0x69, 0x6E, 0x61, 0x74, 0x6F, 0x72, 0x11, 0x73, 0x65, 0x76, + 0x65, 0x6E, 0x2E, 0x64, 0x65, 0x6E, 0x6F, 0x6D, 0x69, 0x6E, 0x61, 0x74, 0x6F, 0x72, 0x11, 0x65, + 0x69, 0x67, 0x68, 0x74, 0x2E, 0x64, 0x65, 0x6E, 0x6F, 0x6D, 0x69, 0x6E, 0x61, 0x74, 0x6F, 0x72, + 0x10, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x64, 0x65, 0x6E, 0x6F, 0x6D, 0x69, 0x6E, 0x61, 0x74, 0x6F, + 0x72, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x33, 0x2E, 0x42, 0x55, 0x4C, 0x0B, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x33, 0x34, 0x2E, 0x42, 0x55, 0x4C, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, + 0x36, 0x2E, 0x42, 0x55, 0x4C, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x38, 0x2E, 0x42, 0x55, + 0x4C, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x39, 0x2E, 0x42, 0x55, 0x4C, 0x0B, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x33, 0x41, 0x2E, 0x42, 0x55, 0x4C, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, + 0x42, 0x2E, 0x42, 0x55, 0x4C, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x46, 0x2E, 0x42, 0x55, + 0x4C, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x32, 0x2E, 0x42, 0x55, 0x4C, 0x0B, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x34, 0x36, 0x2E, 0x42, 0x55, 0x4C, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, + 0x38, 0x2E, 0x42, 0x55, 0x4C, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x39, 0x2E, 0x42, 0x55, + 0x4C, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x41, 0x2E, 0x42, 0x55, 0x4C, 0x0B, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x34, 0x43, 0x2E, 0x42, 0x55, 0x4C, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, + 0x45, 0x2E, 0x42, 0x55, 0x4C, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x32, 0x2E, 0x42, 0x55, + 0x4C, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x37, 0x2E, 0x42, 0x55, 0x4C, 0x0B, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x31, 0x34, 0x2E, 0x41, 0x4C, 0x54, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, + 0x42, 0x2E, 0x41, 0x4C, 0x54, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x34, 0x2E, 0x41, 0x4C, + 0x54, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x42, 0x2E, 0x41, 0x4C, 0x54, 0x0B, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x30, 0x39, 0x2E, 0x41, 0x4C, 0x54, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, + 0x39, 0x2E, 0x41, 0x4C, 0x54, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x35, 0x2E, 0x41, 0x4C, + 0x54, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x36, 0x2E, 0x41, 0x4C, 0x54, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, + 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00, 0x03, 0x02, 0x54, 0x00, 0x01, + 0x02, 0x55, 0x02, 0x5A, 0x00, 0x02, 0x02, 0x5B, 0x02, 0xBD, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0A, 0x00, 0xB2, 0x01, 0x74, 0x00, 0x03, + 0x44, 0x46, 0x4C, 0x54, 0x00, 0x14, 0x63, 0x79, 0x72, 0x6C, 0x00, 0x38, 0x6C, 0x61, 0x74, 0x6E, + 0x00, 0x84, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0A, + 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x0D, 0x00, 0x0A, 0x00, 0x01, 0x42, 0x47, 0x52, 0x20, 0x00, 0x2A, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, + 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0A, 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x0D, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, + 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0A, 0x00, 0x0B, 0x00, 0x0C, + 0x00, 0x0D, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0A, + 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x0D, 0x00, 0x0E, 0x63, 0x61, 0x73, 0x65, 0x00, 0x56, 0x64, 0x6E, + 0x6F, 0x6D, 0x00, 0x5C, 0x66, 0x72, 0x61, 0x63, 0x00, 0x62, 0x6C, 0x69, 0x67, 0x61, 0x00, 0x80, + 0x6C, 0x6E, 0x75, 0x6D, 0x00, 0x86, 0x6C, 0x6F, 0x63, 0x6C, 0x00, 0x8C, 0x6E, 0x75, 0x6D, 0x72, + 0x00, 0x92, 0x6F, 0x6E, 0x75, 0x6D, 0x00, 0x98, 0x70, 0x6E, 0x75, 0x6D, 0x00, 0x9E, 0x73, 0x69, + 0x6E, 0x66, 0x00, 0xA4, 0x73, 0x73, 0x30, 0x34, 0x00, 0xAA, 0x73, 0x73, 0x30, 0x35, 0x00, 0xB0, + 0x73, 0x75, 0x70, 0x73, 0x00, 0xB6, 0x74, 0x6E, 0x75, 0x6D, 0x00, 0xBC, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x15, 0x00, 0x00, 0x00, 0x0D, 0x00, 0x03, 0x00, 0x04, + 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0A, 0x00, 0x0B, 0x00, 0x0C, + 0x00, 0x0D, 0x00, 0x0E, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x11, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x14, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x17, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x18, 0x00, 0x00, 0x00, 0x01, 0x00, 0x19, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x16, 0x00, 0x00, 0x00, 0x01, 0x00, 0x13, 0x00, 0x1C, 0x00, 0x3A, 0x00, 0x42, 0x00, 0x4A, + 0x00, 0x52, 0x00, 0x5A, 0x00, 0x62, 0x00, 0x6A, 0x00, 0x72, 0x00, 0x7A, 0x00, 0x82, 0x00, 0x8A, + 0x00, 0x92, 0x00, 0x9A, 0x00, 0xA2, 0x00, 0xAA, 0x00, 0xB2, 0x00, 0xBA, 0x00, 0xC2, 0x00, 0xCA, + 0x00, 0xD2, 0x00, 0xDA, 0x00, 0xE2, 0x00, 0xEA, 0x00, 0xF2, 0x00, 0xFA, 0x01, 0x02, 0x01, 0x0A, + 0x01, 0x12, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0xE0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x01, 0x2E, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x01, 0x78, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, + 0x01, 0xB4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x01, 0xDA, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, + 0x01, 0xF4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x02, 0x1A, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, + 0x02, 0x4C, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x02, 0x8A, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, + 0x02, 0xD4, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x03, 0x2A, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, + 0x03, 0x8C, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x03, 0xFA, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, + 0x04, 0x74, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x04, 0xFA, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, + 0x05, 0x1E, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x05, 0x44, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x05, 0xA4, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x05, 0xE0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x06, 0x16, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x06, 0x4C, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x06, 0xB0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x07, 0x14, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x07, 0x78, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x07, 0xDC, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x08, 0x2A, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x08, 0x4C, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x08, 0x6A, 0x00, 0x02, 0x00, 0x2C, 0x00, 0x13, 0x02, 0xB6, 0x02, 0xB7, 0x02, 0xB4, 0x02, 0xA5, + 0x02, 0xA6, 0x02, 0xA7, 0x02, 0xB5, 0x02, 0xA8, 0x02, 0xA9, 0x02, 0xAA, 0x02, 0xAB, 0x02, 0xAC, + 0x02, 0xAD, 0x02, 0xAE, 0x02, 0xAF, 0x02, 0xB0, 0x02, 0xB1, 0x02, 0xB2, 0x02, 0xB3, 0x00, 0x01, + 0x00, 0x13, 0x01, 0x62, 0x01, 0x69, 0x01, 0x80, 0x01, 0x81, 0x01, 0x82, 0x01, 0x84, 0x01, 0x85, + 0x01, 0x86, 0x01, 0x87, 0x01, 0x88, 0x01, 0x89, 0x01, 0x8D, 0x01, 0x90, 0x01, 0x94, 0x01, 0x96, + 0x01, 0x97, 0x01, 0x98, 0x01, 0x9A, 0x01, 0x9C, 0x00, 0x02, 0x00, 0x2A, 0x00, 0x12, 0x02, 0x66, + 0x02, 0x67, 0x02, 0x65, 0x02, 0x6C, 0x02, 0x68, 0x02, 0x69, 0x02, 0x6A, 0x02, 0x6B, 0x02, 0x75, + 0x02, 0x6D, 0x02, 0x73, 0x02, 0x6E, 0x02, 0x74, 0x02, 0x71, 0x02, 0x72, 0x02, 0x76, 0x02, 0x6F, + 0x02, 0x70, 0x00, 0x01, 0x00, 0x12, 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x10, 0x00, 0x23, 0x00, 0x3E, + 0x00, 0x40, 0x00, 0x5E, 0x00, 0x60, 0x00, 0x63, 0x00, 0x6C, 0x00, 0x78, 0x00, 0x7C, 0x00, 0x80, + 0x02, 0x28, 0x02, 0x29, 0x02, 0x32, 0x02, 0x35, 0x02, 0x36, 0x00, 0x01, 0x00, 0x3E, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x06, 0x00, 0x0E, 0x00, 0x16, 0x00, 0x1E, 0x00, 0x24, 0x00, 0x2A, 0x00, 0x30, + 0x02, 0x59, 0x00, 0x03, 0x00, 0x49, 0x00, 0x4F, 0x02, 0x58, 0x00, 0x03, 0x00, 0x49, 0x00, 0x4C, + 0x02, 0x5A, 0x00, 0x02, 0x00, 0x4D, 0x02, 0x57, 0x00, 0x02, 0x00, 0x4F, 0x02, 0x56, 0x00, 0x02, + 0x00, 0x4C, 0x02, 0x55, 0x00, 0x02, 0x00, 0x49, 0x00, 0x01, 0x00, 0x01, 0x00, 0x49, 0x00, 0x03, + 0x00, 0x01, 0x00, 0x1A, 0x00, 0x01, 0x00, 0x14, 0x00, 0x01, 0x00, 0x24, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x1A, 0x00, 0x01, 0x00, 0x01, 0x00, 0x12, 0x00, 0x02, 0x00, 0x01, 0x00, 0x13, 0x00, 0x1C, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x13, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x00, 0x1C, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1A, 0x00, 0x02, + 0x00, 0x01, 0x00, 0x13, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x02, 0x37, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x14, 0x00, 0x02, 0x00, 0x1E, 0x00, 0x28, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x1A, 0x00, 0x02, 0x00, 0x01, 0x00, 0x13, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, + 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x02, 0x37, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x16, 0x00, 0x03, 0x00, 0x20, 0x00, 0x2A, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x1A, 0x00, 0x02, 0x00, 0x01, 0x00, 0x13, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, + 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x01, 0x02, 0x37, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x18, 0x00, 0x04, + 0x00, 0x22, 0x00, 0x2C, 0x00, 0x36, 0x00, 0x40, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1A, 0x00, 0x02, + 0x00, 0x01, 0x00, 0x13, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, + 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x02, 0x37, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x1A, 0x00, 0x05, 0x00, 0x24, 0x00, 0x2E, 0x00, 0x38, 0x00, 0x42, 0x00, 0x4C, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x1A, 0x00, 0x02, 0x00, 0x01, 0x00, 0x13, 0x00, 0x1C, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, + 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x02, 0x37, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x1C, 0x00, 0x06, 0x00, 0x26, 0x00, 0x30, 0x00, 0x3A, 0x00, 0x44, + 0x00, 0x4E, 0x00, 0x58, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1A, 0x00, 0x02, 0x00, 0x01, 0x00, 0x13, + 0x00, 0x1C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, + 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x02, 0x37, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x1E, 0x00, 0x07, 0x00, 0x28, 0x00, 0x32, 0x00, 0x3C, 0x00, 0x46, 0x00, 0x50, + 0x00, 0x5A, 0x00, 0x64, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1A, 0x00, 0x02, 0x00, 0x01, 0x00, 0x13, + 0x00, 0x1C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, + 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x01, 0x02, 0x37, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x20, 0x00, 0x08, + 0x00, 0x2A, 0x00, 0x34, 0x00, 0x3E, 0x00, 0x48, 0x00, 0x52, 0x00, 0x5C, 0x00, 0x66, 0x00, 0x70, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x1A, 0x00, 0x02, 0x00, 0x01, 0x00, 0x13, 0x00, 0x1C, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, + 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, + 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x02, 0x37, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x22, 0x00, 0x09, 0x00, 0x2C, 0x00, 0x36, 0x00, 0x40, 0x00, 0x4A, 0x00, 0x54, + 0x00, 0x5E, 0x00, 0x68, 0x00, 0x72, 0x00, 0x7C, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1A, 0x00, 0x02, + 0x00, 0x01, 0x00, 0x13, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, + 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, + 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x02, 0x37, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x24, 0x00, 0x0A, 0x00, 0x2E, 0x00, 0x38, 0x00, 0x42, 0x00, 0x4C, + 0x00, 0x56, 0x00, 0x60, 0x00, 0x6A, 0x00, 0x74, 0x00, 0x7E, 0x00, 0x88, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x1A, 0x00, 0x02, 0x00, 0x01, 0x00, 0x13, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, + 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, + 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, + 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x02, 0x37, 0x00, 0x03, 0x00, 0x01, + 0x00, 0x1C, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1B, 0x00, 0x02, + 0x00, 0x01, 0x00, 0x13, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x02, 0x37, 0x02, 0x37, + 0x00, 0x00, 0x02, 0x9B, 0x02, 0xA4, 0x00, 0x01, 0x00, 0x03, 0x00, 0x01, 0x00, 0x1A, 0x00, 0x01, + 0x00, 0x14, 0x00, 0x01, 0x00, 0x24, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1B, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x00, 0x13, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, + 0x02, 0x91, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x3A, 0x00, 0x1A, 0x02, 0x8B, 0x02, 0x77, + 0x02, 0x78, 0x02, 0x79, 0x02, 0x7A, 0x02, 0x7B, 0x02, 0x7C, 0x02, 0x7D, 0x02, 0x7E, 0x02, 0x7F, + 0x02, 0x80, 0x02, 0x8C, 0x02, 0x8D, 0x02, 0x8E, 0x02, 0x8F, 0x02, 0x90, 0x02, 0x81, 0x02, 0x82, + 0x02, 0x83, 0x02, 0x84, 0x02, 0x85, 0x02, 0x86, 0x02, 0x87, 0x02, 0x88, 0x02, 0x89, 0x02, 0x8A, + 0x00, 0x02, 0x00, 0x07, 0x00, 0x07, 0x00, 0x07, 0x00, 0x00, 0x00, 0x13, 0x00, 0x1C, 0x00, 0x01, + 0x00, 0x64, 0x00, 0x65, 0x00, 0x0B, 0x00, 0x67, 0x00, 0x67, 0x00, 0x0D, 0x01, 0x41, 0x01, 0x41, + 0x00, 0x0E, 0x02, 0x49, 0x02, 0x49, 0x00, 0x0F, 0x02, 0x5B, 0x02, 0x64, 0x00, 0x10, 0x00, 0x02, + 0x00, 0x3A, 0x00, 0x1A, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x18, + 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, 0x00, 0x1C, 0x02, 0x5B, 0x02, 0x5C, 0x02, 0x5D, 0x02, 0x5E, + 0x02, 0x5F, 0x02, 0x60, 0x02, 0x61, 0x02, 0x62, 0x02, 0x63, 0x02, 0x64, 0x00, 0x07, 0x00, 0x64, + 0x00, 0x65, 0x00, 0x67, 0x01, 0x41, 0x02, 0x49, 0x00, 0x02, 0x00, 0x01, 0x02, 0x77, 0x02, 0x90, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x2E, 0x00, 0x14, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, + 0x00, 0x17, 0x00, 0x18, 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, 0x00, 0x1C, 0x02, 0x77, 0x02, 0x78, + 0x02, 0x79, 0x02, 0x7A, 0x02, 0x7B, 0x02, 0x7C, 0x02, 0x7D, 0x02, 0x7E, 0x02, 0x7F, 0x02, 0x80, + 0x00, 0x02, 0x00, 0x02, 0x02, 0x5B, 0x02, 0x64, 0x00, 0x00, 0x02, 0x81, 0x02, 0x8A, 0x00, 0x0A, + 0x00, 0x02, 0x00, 0x2E, 0x00, 0x14, 0x02, 0x5B, 0x02, 0x5C, 0x02, 0x5D, 0x02, 0x5E, 0x02, 0x5F, + 0x02, 0x60, 0x02, 0x61, 0x02, 0x62, 0x02, 0x63, 0x02, 0x64, 0x02, 0x81, 0x02, 0x82, 0x02, 0x83, + 0x02, 0x84, 0x02, 0x85, 0x02, 0x86, 0x02, 0x87, 0x02, 0x88, 0x02, 0x89, 0x02, 0x8A, 0x00, 0x02, + 0x00, 0x02, 0x00, 0x13, 0x00, 0x1C, 0x00, 0x00, 0x02, 0x77, 0x02, 0x80, 0x00, 0x0A, 0x00, 0x02, + 0x00, 0x56, 0x00, 0x28, 0x02, 0x91, 0x02, 0x92, 0x02, 0x93, 0x02, 0x94, 0x02, 0x95, 0x02, 0x96, + 0x02, 0x97, 0x02, 0x98, 0x02, 0x99, 0x02, 0x9A, 0x02, 0x91, 0x02, 0x92, 0x02, 0x93, 0x02, 0x94, + 0x02, 0x95, 0x02, 0x96, 0x02, 0x97, 0x02, 0x98, 0x02, 0x99, 0x02, 0x9A, 0x02, 0x91, 0x02, 0x92, + 0x02, 0x93, 0x02, 0x94, 0x02, 0x95, 0x02, 0x96, 0x02, 0x97, 0x02, 0x98, 0x02, 0x99, 0x02, 0x9A, + 0x02, 0x91, 0x02, 0x92, 0x02, 0x93, 0x02, 0x94, 0x02, 0x95, 0x02, 0x96, 0x02, 0x97, 0x02, 0x98, + 0x02, 0x99, 0x02, 0x9A, 0x00, 0x02, 0x00, 0x03, 0x00, 0x13, 0x00, 0x1C, 0x00, 0x00, 0x02, 0x5B, + 0x02, 0x64, 0x00, 0x0A, 0x02, 0x77, 0x02, 0x8A, 0x00, 0x14, 0x00, 0x02, 0x00, 0x56, 0x00, 0x28, + 0x02, 0x9B, 0x02, 0x9C, 0x02, 0x9D, 0x02, 0x9E, 0x02, 0x9F, 0x02, 0xA0, 0x02, 0xA1, 0x02, 0xA2, + 0x02, 0xA3, 0x02, 0xA4, 0x02, 0x9B, 0x02, 0x9C, 0x02, 0x9D, 0x02, 0x9E, 0x02, 0x9F, 0x02, 0xA0, + 0x02, 0xA1, 0x02, 0xA2, 0x02, 0xA3, 0x02, 0xA4, 0x02, 0x9B, 0x02, 0x9C, 0x02, 0x9D, 0x02, 0x9E, + 0x02, 0x9F, 0x02, 0xA0, 0x02, 0xA1, 0x02, 0xA2, 0x02, 0xA3, 0x02, 0xA4, 0x02, 0x9B, 0x02, 0x9C, + 0x02, 0x9D, 0x02, 0x9E, 0x02, 0x9F, 0x02, 0xA0, 0x02, 0xA1, 0x02, 0xA2, 0x02, 0xA3, 0x02, 0xA4, + 0x00, 0x02, 0x00, 0x03, 0x00, 0x13, 0x00, 0x1C, 0x00, 0x00, 0x02, 0x5B, 0x02, 0x64, 0x00, 0x0A, + 0x02, 0x77, 0x02, 0x8A, 0x00, 0x14, 0x00, 0x02, 0x00, 0x56, 0x00, 0x28, 0x02, 0x38, 0x00, 0x7A, + 0x00, 0x73, 0x00, 0x74, 0x02, 0x39, 0x02, 0x3A, 0x02, 0x3B, 0x02, 0x3C, 0x02, 0x3D, 0x02, 0x3E, + 0x02, 0x38, 0x00, 0x7A, 0x00, 0x73, 0x00, 0x74, 0x02, 0x39, 0x02, 0x3A, 0x02, 0x3B, 0x02, 0x3C, + 0x02, 0x3D, 0x02, 0x3E, 0x02, 0x38, 0x00, 0x7A, 0x00, 0x73, 0x00, 0x74, 0x02, 0x39, 0x02, 0x3A, + 0x02, 0x3B, 0x02, 0x3C, 0x02, 0x3D, 0x02, 0x3E, 0x02, 0x38, 0x00, 0x7A, 0x00, 0x73, 0x00, 0x74, + 0x02, 0x39, 0x02, 0x3A, 0x02, 0x3B, 0x02, 0x3C, 0x02, 0x3D, 0x02, 0x3E, 0x00, 0x02, 0x00, 0x03, + 0x00, 0x13, 0x00, 0x1C, 0x00, 0x00, 0x02, 0x5B, 0x02, 0x64, 0x00, 0x0A, 0x02, 0x77, 0x02, 0x8A, + 0x00, 0x14, 0x00, 0x02, 0x00, 0x56, 0x00, 0x28, 0x02, 0x3F, 0x02, 0x40, 0x02, 0x41, 0x02, 0x42, + 0x02, 0x43, 0x02, 0x44, 0x02, 0x45, 0x02, 0x46, 0x02, 0x47, 0x02, 0x48, 0x02, 0x3F, 0x02, 0x40, + 0x02, 0x41, 0x02, 0x42, 0x02, 0x43, 0x02, 0x44, 0x02, 0x45, 0x02, 0x46, 0x02, 0x47, 0x02, 0x48, + 0x02, 0x3F, 0x02, 0x40, 0x02, 0x41, 0x02, 0x42, 0x02, 0x43, 0x02, 0x44, 0x02, 0x45, 0x02, 0x46, + 0x02, 0x47, 0x02, 0x48, 0x02, 0x3F, 0x02, 0x40, 0x02, 0x41, 0x02, 0x42, 0x02, 0x43, 0x02, 0x44, + 0x02, 0x45, 0x02, 0x46, 0x02, 0x47, 0x02, 0x48, 0x00, 0x02, 0x00, 0x03, 0x00, 0x13, 0x00, 0x1C, + 0x00, 0x00, 0x02, 0x5B, 0x02, 0x64, 0x00, 0x0A, 0x02, 0x77, 0x02, 0x8A, 0x00, 0x14, 0x00, 0x02, + 0x00, 0x2C, 0x00, 0x13, 0x02, 0xB6, 0x02, 0xB7, 0x02, 0xB4, 0x02, 0xA5, 0x02, 0xA6, 0x02, 0xA7, + 0x02, 0xB5, 0x02, 0xA8, 0x02, 0xA9, 0x02, 0xAA, 0x02, 0xAB, 0x02, 0xAC, 0x02, 0xAD, 0x02, 0xAE, + 0x02, 0xAF, 0x02, 0xB0, 0x02, 0xB1, 0x02, 0xB2, 0x02, 0xB3, 0x00, 0x01, 0x00, 0x13, 0x01, 0x62, + 0x01, 0x69, 0x01, 0x80, 0x01, 0x81, 0x01, 0x82, 0x01, 0x84, 0x01, 0x85, 0x01, 0x86, 0x01, 0x87, + 0x01, 0x88, 0x01, 0x89, 0x01, 0x8D, 0x01, 0x90, 0x01, 0x94, 0x01, 0x96, 0x01, 0x97, 0x01, 0x98, + 0x01, 0x9A, 0x01, 0x9C, 0x00, 0x02, 0x00, 0x16, 0x00, 0x08, 0x02, 0xBA, 0x02, 0xB6, 0x02, 0xB7, + 0x02, 0xB8, 0x02, 0xB9, 0x02, 0xBB, 0x02, 0xBC, 0x02, 0xBD, 0x00, 0x01, 0x00, 0x08, 0x01, 0x57, + 0x01, 0x62, 0x01, 0x69, 0x01, 0x82, 0x01, 0x89, 0x01, 0xA7, 0x01, 0xEF, 0x01, 0xF0, 0x00, 0x02, + 0x00, 0x1C, 0x00, 0x0B, 0x02, 0x37, 0x02, 0x91, 0x02, 0x92, 0x02, 0x93, 0x02, 0x94, 0x02, 0x95, + 0x02, 0x96, 0x02, 0x97, 0x02, 0x98, 0x02, 0x99, 0x02, 0x9A, 0x00, 0x02, 0x00, 0x01, 0x00, 0x12, + 0x00, 0x1C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1C, 0x00, 0x0B, 0x02, 0x27, 0x02, 0x9B, 0x02, 0x9C, + 0x02, 0x9D, 0x02, 0x9E, 0x02, 0x9F, 0x02, 0xA0, 0x02, 0xA1, 0x02, 0xA2, 0x02, 0xA3, 0x02, 0xA4, + 0x00, 0x02, 0x00, 0x02, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x13, 0x00, 0x1C, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x48, 0x00, 0x56, 0x00, 0x03, 0x44, 0x46, 0x4C, 0x54, + 0x00, 0x14, 0x63, 0x79, 0x72, 0x6C, 0x00, 0x20, 0x6C, 0x61, 0x74, 0x6E, 0x00, 0x32, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x01, 0x42, 0x47, + 0x52, 0x20, 0x00, 0x0A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x6B, 0x65, 0x72, 0x6E, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x0A, 0x18, 0xAE, 0x00, 0x01, 0x16, 0x6C, 0x00, 0x04, 0x00, 0x00, 0x01, 0x1A, 0x02, 0x3E, + 0x02, 0x50, 0x02, 0x5E, 0x02, 0x64, 0x02, 0x50, 0x02, 0x76, 0x02, 0xBC, 0x03, 0x1E, 0x03, 0x2C, + 0x03, 0xAE, 0x03, 0xBC, 0x03, 0xD6, 0x03, 0xE4, 0x04, 0x06, 0x04, 0x0C, 0x04, 0x2E, 0x04, 0x34, + 0x04, 0x3A, 0x04, 0x60, 0x04, 0x6A, 0x04, 0x7C, 0x04, 0x8A, 0x04, 0xC8, 0x04, 0xC8, 0x04, 0xCE, + 0x04, 0xD4, 0x04, 0xEE, 0x04, 0xC8, 0x04, 0x6A, 0x04, 0xFC, 0x04, 0x6A, 0x05, 0x3A, 0x05, 0x40, + 0x05, 0x4A, 0x05, 0x7C, 0x05, 0x82, 0x05, 0xF0, 0x06, 0x12, 0x06, 0x4C, 0x06, 0x76, 0x06, 0x84, + 0x06, 0xBE, 0x06, 0xD0, 0x06, 0xD6, 0x06, 0xDC, 0x06, 0xFA, 0x07, 0x00, 0x07, 0x0E, 0x07, 0x0E, + 0x07, 0x14, 0x07, 0x1A, 0x07, 0x50, 0x07, 0x6A, 0x07, 0x70, 0x07, 0xB2, 0x07, 0xBC, 0x07, 0xCA, + 0x07, 0xD8, 0x07, 0xDE, 0x07, 0xF4, 0x08, 0x02, 0x08, 0x28, 0x08, 0x36, 0x04, 0x34, 0x04, 0x34, + 0x04, 0x34, 0x04, 0x34, 0x04, 0x34, 0x04, 0x34, 0x04, 0x6A, 0x04, 0x6A, 0x04, 0x6A, 0x04, 0x6A, + 0x04, 0x6A, 0x04, 0x6A, 0x08, 0x60, 0x08, 0x76, 0x08, 0x7C, 0x08, 0xBA, 0x08, 0xE0, 0x08, 0xFA, + 0x09, 0x08, 0x09, 0x22, 0x04, 0x34, 0x04, 0x34, 0x09, 0x44, 0x07, 0x14, 0x04, 0x6A, 0x09, 0x56, + 0x04, 0x6A, 0x0A, 0x34, 0x0A, 0x3E, 0x0A, 0x44, 0x0A, 0xD2, 0x0B, 0x20, 0x0B, 0x3A, 0x0B, 0x40, + 0x0B, 0x46, 0x0B, 0x54, 0x0B, 0x5E, 0x0B, 0x6C, 0x0B, 0x72, 0x0B, 0x9C, 0x0C, 0x2E, 0x0B, 0x6C, + 0x04, 0x6A, 0x04, 0x6A, 0x04, 0x6A, 0x0C, 0x38, 0x0C, 0x46, 0x0C, 0x58, 0x0B, 0x40, 0x0C, 0x62, + 0x0C, 0x68, 0x0C, 0xAA, 0x0B, 0x40, 0x0D, 0xE0, 0x08, 0x76, 0x08, 0x76, 0x0D, 0xE6, 0x0C, 0x58, + 0x0E, 0x08, 0x0E, 0x2E, 0x0E, 0x34, 0x0E, 0x5A, 0x0E, 0x90, 0x0E, 0xD2, 0x0E, 0xEC, 0x0E, 0xF2, + 0x0F, 0x28, 0x0F, 0x8A, 0x0F, 0xAC, 0x0F, 0xB2, 0x0F, 0xB2, 0x0F, 0xB8, 0x0F, 0xAC, 0x0F, 0xE2, + 0x10, 0x4C, 0x10, 0x52, 0x10, 0x64, 0x10, 0x7A, 0x10, 0xD4, 0x0F, 0xAC, 0x0F, 0xAC, 0x0F, 0xAC, + 0x0F, 0xAC, 0x10, 0xDA, 0x10, 0xE4, 0x11, 0x1A, 0x11, 0x48, 0x11, 0x56, 0x11, 0x60, 0x11, 0x66, + 0x11, 0x6C, 0x11, 0x7E, 0x11, 0x7E, 0x11, 0x88, 0x11, 0x7E, 0x11, 0x8E, 0x11, 0x7E, 0x11, 0xA4, + 0x11, 0x7E, 0x11, 0xAE, 0x11, 0x66, 0x11, 0xE8, 0x11, 0xF6, 0x11, 0xA4, 0x11, 0xFC, 0x11, 0x56, + 0x11, 0x7E, 0x11, 0x7E, 0x11, 0x56, 0x12, 0x02, 0x11, 0x7E, 0x12, 0x02, 0x11, 0xA4, 0x11, 0xA4, + 0x11, 0x7E, 0x11, 0x60, 0x12, 0x0C, 0x12, 0x1A, 0x12, 0x2C, 0x12, 0x36, 0x12, 0x4C, 0x12, 0x4C, + 0x12, 0x56, 0x11, 0x7E, 0x0E, 0x2E, 0x12, 0x0C, 0x0E, 0x2E, 0x12, 0x0C, 0x12, 0x60, 0x12, 0x7A, + 0x12, 0x98, 0x12, 0x9E, 0x12, 0xA8, 0x12, 0xBA, 0x12, 0x56, 0x12, 0x56, 0x12, 0x56, 0x12, 0x56, + 0x0F, 0xAC, 0x12, 0xC4, 0x0E, 0x2E, 0x12, 0x0C, 0x12, 0xD6, 0x12, 0xF0, 0x13, 0x0A, 0x13, 0x34, + 0x13, 0x3E, 0x13, 0x44, 0x13, 0x56, 0x13, 0x5C, 0x12, 0xBA, 0x13, 0x66, 0x12, 0xC4, 0x0F, 0xAC, + 0x12, 0xC4, 0x13, 0x6C, 0x13, 0x8A, 0x13, 0x9C, 0x13, 0xCA, 0x12, 0xC4, 0x0F, 0xAC, 0x12, 0x9E, + 0x12, 0xA8, 0x13, 0xD4, 0x14, 0x0A, 0x0F, 0xAC, 0x0F, 0xAC, 0x0E, 0xEC, 0x0E, 0xEC, 0x0E, 0xEC, + 0x0E, 0x2E, 0x12, 0x0C, 0x0F, 0xAC, 0x14, 0x18, 0x14, 0x32, 0x03, 0x1E, 0x03, 0x1E, 0x14, 0x44, + 0x14, 0x62, 0x14, 0x44, 0x14, 0x62, 0x07, 0xD8, 0x08, 0x28, 0x14, 0x80, 0x06, 0xFA, 0x06, 0xFA, + 0x0B, 0x54, 0x14, 0xB2, 0x14, 0xB8, 0x14, 0xBE, 0x14, 0xB8, 0x14, 0xC4, 0x14, 0xCA, 0x14, 0xCA, + 0x14, 0xB2, 0x14, 0xB2, 0x14, 0xC4, 0x14, 0xD0, 0x14, 0xEA, 0x14, 0xFC, 0x15, 0x02, 0x15, 0x08, + 0x15, 0x1A, 0x15, 0x20, 0x15, 0x2E, 0x15, 0x38, 0x15, 0x4A, 0x12, 0x9E, 0x12, 0x56, 0x15, 0x50, + 0x15, 0x62, 0x15, 0x62, 0x15, 0x70, 0x15, 0x70, 0x15, 0x92, 0x15, 0xD4, 0x15, 0xEA, 0x16, 0x08, + 0x16, 0x12, 0x00, 0x04, 0x00, 0x39, 0xFF, 0xE0, 0x00, 0x59, 0xFF, 0xE7, 0x00, 0x87, 0xFF, 0xE0, + 0x01, 0x03, 0xFF, 0xF3, 0x00, 0x03, 0x00, 0xEA, 0x00, 0x11, 0x02, 0xB9, 0xFF, 0xE7, 0x02, 0xBD, + 0xFF, 0xE7, 0x00, 0x01, 0x02, 0x7B, 0xFF, 0xF3, 0x00, 0x04, 0x00, 0x39, 0xFF, 0xF5, 0x00, 0x3B, + 0xFF, 0xEA, 0x00, 0x87, 0xFF, 0xEA, 0x01, 0x27, 0xFF, 0xEB, 0x00, 0x11, 0x00, 0x13, 0xFF, 0xF1, + 0x00, 0x17, 0xFF, 0xED, 0x00, 0x19, 0xFF, 0xEC, 0x00, 0x1B, 0xFF, 0xF4, 0x00, 0x4D, 0x00, 0x27, + 0x00, 0x59, 0xFF, 0xEF, 0x00, 0x5E, 0xFF, 0xEE, 0x00, 0xAD, 0x00, 0x0B, 0x00, 0xB1, 0xFF, 0xF3, + 0x00, 0xEE, 0x00, 0x08, 0x01, 0x56, 0xFF, 0xF6, 0x01, 0x72, 0xFF, 0xED, 0x01, 0x7F, 0xFF, 0xE9, + 0x01, 0xA3, 0xFF, 0xF6, 0x02, 0x77, 0xFF, 0xE8, 0x02, 0x7D, 0xFF, 0xE9, 0x02, 0x7F, 0xFF, 0xF1, + 0x00, 0x18, 0x00, 0x59, 0x00, 0x0F, 0x00, 0x5B, 0x00, 0x0C, 0x00, 0x87, 0xFF, 0xD6, 0x00, 0xAF, + 0x00, 0x1D, 0x00, 0xB0, 0x00, 0x12, 0x00, 0xE7, 0x00, 0x0E, 0x00, 0xE8, 0x00, 0x08, 0x00, 0xEA, + 0x00, 0x31, 0x00, 0xF6, 0x00, 0x17, 0x01, 0x56, 0xFF, 0xE9, 0x01, 0x57, 0xFF, 0xE4, 0x01, 0x62, + 0xFF, 0xDE, 0x01, 0x78, 0x00, 0x08, 0x01, 0x82, 0xFF, 0xED, 0x01, 0xA5, 0x00, 0x12, 0x01, 0xA7, + 0xFF, 0xF0, 0x01, 0xC9, 0x00, 0x0F, 0x02, 0x0B, 0x00, 0x06, 0x02, 0xB6, 0xFF, 0xD2, 0x02, 0xB8, + 0xFF, 0xE1, 0x02, 0xB9, 0xFF, 0xEA, 0x02, 0xBA, 0xFF, 0xDC, 0x02, 0xBB, 0xFF, 0xE4, 0x02, 0xBD, + 0xFF, 0xEA, 0x00, 0x03, 0x01, 0x27, 0xFF, 0xDB, 0x02, 0xB9, 0xFF, 0xF5, 0x02, 0xBD, 0xFF, 0xF5, + 0x00, 0x20, 0x00, 0x12, 0xFF, 0x84, 0x00, 0x17, 0xFF, 0xE6, 0x00, 0x87, 0xFF, 0xD2, 0x00, 0xAD, + 0x00, 0x12, 0x00, 0xB0, 0x00, 0x0B, 0x00, 0xEA, 0x00, 0x0B, 0x00, 0xEE, 0x00, 0x10, 0x01, 0x56, + 0xFF, 0xF0, 0x01, 0x57, 0xFF, 0xE5, 0x01, 0x62, 0xFF, 0xE0, 0x01, 0x7F, 0xFF, 0xF0, 0x01, 0x82, + 0xFF, 0xD6, 0x01, 0x8A, 0xFF, 0xE9, 0x01, 0x9B, 0xFF, 0xF2, 0x01, 0x9D, 0xFF, 0xE6, 0x01, 0xA3, + 0xFF, 0xE9, 0x01, 0xA5, 0x00, 0x0A, 0x01, 0xA7, 0xFF, 0xD8, 0x02, 0x77, 0xFF, 0xE8, 0x02, 0x78, + 0xFF, 0xF1, 0x02, 0x79, 0xFF, 0xF5, 0x02, 0x7B, 0xFF, 0xCC, 0x02, 0x7C, 0xFF, 0xEE, 0x02, 0x7D, + 0xFF, 0xF1, 0x02, 0x7F, 0xFF, 0xF6, 0x02, 0x80, 0xFF, 0xED, 0x02, 0xB6, 0xFF, 0xD6, 0x02, 0xB8, + 0xFF, 0xCB, 0x02, 0xB9, 0xFF, 0xCF, 0x02, 0xBA, 0xFF, 0xD8, 0x02, 0xBB, 0xFF, 0xC9, 0x02, 0xBD, + 0xFF, 0xCF, 0x00, 0x03, 0x00, 0x0C, 0xFF, 0xF1, 0x00, 0x60, 0xFF, 0xF5, 0x00, 0x87, 0xFF, 0xF2, + 0x00, 0x06, 0x00, 0x39, 0xFF, 0xE1, 0x00, 0x3F, 0xFF, 0xE3, 0x00, 0x71, 0xFF, 0xE1, 0x00, 0x78, + 0xFF, 0xF6, 0x01, 0x72, 0xFF, 0xF2, 0x01, 0x78, 0xFF, 0xE9, 0x00, 0x03, 0x00, 0x0C, 0xFF, 0xF6, + 0x00, 0x39, 0xFF, 0xF5, 0x00, 0x71, 0xFF, 0xF5, 0x00, 0x08, 0x00, 0x06, 0xFF, 0xF3, 0x00, 0x12, + 0xFF, 0xD6, 0x00, 0x17, 0xFF, 0xDE, 0x00, 0x78, 0xFF, 0xE4, 0x00, 0x87, 0xFF, 0xC8, 0x01, 0x62, + 0xFF, 0xDC, 0x02, 0x8C, 0xFF, 0xEB, 0x02, 0xB6, 0xFF, 0xC9, 0x00, 0x01, 0x00, 0x0C, 0xFF, 0xF6, + 0x00, 0x08, 0x00, 0x0C, 0xFF, 0xEE, 0x00, 0x12, 0xFF, 0xF6, 0x00, 0x3B, 0xFF, 0xF5, 0x00, 0x40, + 0xFF, 0xF5, 0x00, 0x60, 0xFF, 0xF0, 0x00, 0x87, 0xFF, 0xED, 0x01, 0x62, 0xFF, 0xF5, 0x02, 0xB6, + 0xFF, 0xF2, 0x00, 0x01, 0x00, 0x39, 0xFF, 0xE0, 0x00, 0x01, 0x01, 0x27, 0xFF, 0xCC, 0x00, 0x09, + 0x00, 0x0C, 0xFF, 0xF5, 0x00, 0x39, 0xFF, 0xF4, 0x00, 0x3B, 0xFF, 0xF5, 0x00, 0x59, 0xFF, 0xF7, + 0x00, 0x5B, 0xFF, 0xF5, 0x00, 0x60, 0xFF, 0xF6, 0x00, 0x87, 0xFF, 0xFB, 0x00, 0xEA, 0x00, 0x09, + 0x02, 0x67, 0xFF, 0xF5, 0x00, 0x02, 0x00, 0xB0, 0x00, 0x0A, 0x00, 0xEA, 0x00, 0x1D, 0x00, 0x04, + 0x00, 0x91, 0xFF, 0xF9, 0x00, 0xD1, 0xFF, 0xF9, 0x00, 0xE7, 0xFF, 0xF9, 0x01, 0x02, 0xFF, 0xF9, + 0x00, 0x03, 0x00, 0xAD, 0x00, 0x07, 0x00, 0xAF, 0x00, 0x08, 0x00, 0xEA, 0x00, 0x16, 0x00, 0x0F, + 0x00, 0x03, 0xFF, 0xEA, 0x00, 0x12, 0xFF, 0xE7, 0x00, 0x59, 0xFF, 0xF8, 0x00, 0x5B, 0xFF, 0xF1, + 0x00, 0x87, 0xFF, 0xD1, 0x00, 0xA0, 0xFF, 0xF7, 0x00, 0xAD, 0x00, 0x18, 0x00, 0xAE, 0xFF, 0xF4, + 0x00, 0xAF, 0x00, 0x1A, 0x00, 0xB0, 0x00, 0x11, 0x00, 0xB1, 0xFF, 0xF1, 0x00, 0xEA, 0x00, 0x2E, + 0x00, 0xEE, 0x00, 0x15, 0x00, 0xF2, 0xFF, 0xEC, 0x00, 0xF6, 0x00, 0x14, 0x00, 0x01, 0x00, 0xEA, + 0x00, 0x06, 0x00, 0x01, 0x00, 0xEA, 0x00, 0x09, 0x00, 0x06, 0x00, 0xAD, 0x00, 0x1C, 0x00, 0xAE, + 0xFF, 0xF9, 0x00, 0xB0, 0x00, 0x15, 0x00, 0xEA, 0x00, 0x0E, 0x00, 0xEE, 0x00, 0x19, 0x00, 0xF2, + 0xFF, 0xF9, 0x00, 0x03, 0x00, 0x39, 0xFF, 0xF7, 0x00, 0x59, 0xFF, 0xF7, 0x00, 0xB1, 0xFF, 0xF8, + 0x00, 0x0F, 0x00, 0x03, 0xFF, 0xE6, 0x00, 0x0C, 0xFF, 0xF4, 0x00, 0x0D, 0x00, 0x07, 0x00, 0x12, + 0xFF, 0xE5, 0x00, 0x17, 0xFF, 0xF6, 0x00, 0x3B, 0xFF, 0xEF, 0x00, 0x87, 0xFF, 0xCD, 0x00, 0xAF, + 0x00, 0x0F, 0x00, 0xB0, 0x00, 0x04, 0x00, 0xB1, 0xFF, 0xF3, 0x00, 0xEA, 0x00, 0x21, 0x00, 0xF6, + 0x00, 0x09, 0x02, 0x67, 0xFF, 0xF1, 0x02, 0x69, 0xFF, 0xF5, 0x02, 0x6B, 0xFF, 0xF3, 0x00, 0x01, + 0x00, 0xEA, 0x00, 0x07, 0x00, 0x02, 0x00, 0xB0, 0x00, 0x03, 0x00, 0xEA, 0x00, 0x13, 0x00, 0x0C, + 0x00, 0xA0, 0xFF, 0xEF, 0x00, 0xA4, 0xFF, 0xB8, 0x00, 0xAD, 0x00, 0x22, 0x00, 0xAE, 0xFF, 0xE9, + 0x00, 0xAF, 0x00, 0x21, 0x00, 0xB0, 0x00, 0x19, 0x00, 0xEA, 0x00, 0x3D, 0x00, 0xEC, 0x00, 0x0E, + 0x00, 0xEE, 0x00, 0x20, 0x00, 0xF2, 0xFF, 0xB2, 0x00, 0xF6, 0x00, 0x1C, 0x01, 0x1A, 0xFF, 0xBF, + 0x00, 0x01, 0x00, 0xEA, 0x00, 0x0B, 0x00, 0x1B, 0x00, 0x03, 0xFF, 0xE0, 0x00, 0x12, 0xFF, 0xD9, + 0x00, 0x17, 0xFF, 0xE3, 0x00, 0x19, 0xFF, 0xF5, 0x00, 0x23, 0xFF, 0xE3, 0x00, 0x30, 0xFF, 0xF7, + 0x00, 0x59, 0xFF, 0xF7, 0x00, 0x5B, 0xFF, 0xF2, 0x00, 0x6A, 0xFF, 0xF5, 0x00, 0x6E, 0xFF, 0xE5, + 0x00, 0x6F, 0xFF, 0xF5, 0x00, 0x87, 0xFF, 0xD1, 0x00, 0xA0, 0xFF, 0xF0, 0x00, 0xAD, 0x00, 0x2B, + 0x00, 0xAE, 0xFF, 0xEE, 0x00, 0xAF, 0x00, 0x0E, 0x00, 0xB0, 0x00, 0x23, 0x00, 0xB1, 0xFF, 0xEA, + 0x00, 0xEA, 0x00, 0x29, 0x00, 0xEC, 0x00, 0x0E, 0x00, 0xEE, 0x00, 0x28, 0x00, 0xF2, 0xFF, 0xDB, + 0x00, 0xF6, 0x00, 0x08, 0x01, 0x03, 0xFF, 0xFA, 0x02, 0x26, 0xFF, 0xF7, 0x02, 0x4B, 0x00, 0x0F, + 0x02, 0x6C, 0xFF, 0xF5, 0x00, 0x08, 0x00, 0xA0, 0xFF, 0xF4, 0x00, 0xAD, 0x00, 0x21, 0x00, 0xAE, + 0xFF, 0xF4, 0x00, 0xAF, 0x00, 0x0C, 0x00, 0xB0, 0x00, 0x1A, 0x00, 0xEA, 0x00, 0x20, 0x00, 0xEE, + 0x00, 0x1E, 0x00, 0xF2, 0xFF, 0xE8, 0x00, 0x0E, 0x00, 0x59, 0xFF, 0xDE, 0x00, 0x6A, 0xFF, 0xF2, + 0x00, 0x6E, 0xFF, 0xE8, 0x00, 0x6F, 0xFF, 0xF2, 0x00, 0xA0, 0xFF, 0xF8, 0x00, 0xAD, 0x00, 0x22, + 0x00, 0xAE, 0xFF, 0xF8, 0x00, 0xB0, 0x00, 0x1B, 0x00, 0xB1, 0xFF, 0xEB, 0x00, 0xEA, 0x00, 0x12, + 0x00, 0xEE, 0x00, 0x1F, 0x00, 0xF2, 0xFF, 0xF8, 0x02, 0x4B, 0x00, 0x07, 0x02, 0x6C, 0xFF, 0xF2, + 0x00, 0x0A, 0x00, 0xA0, 0xFF, 0xE2, 0x00, 0xA1, 0xFF, 0xBE, 0x00, 0xAD, 0x00, 0x2D, 0x00, 0xAE, + 0xFF, 0xE0, 0x00, 0xB0, 0x00, 0x26, 0x00, 0xEA, 0x00, 0x23, 0x00, 0xEC, 0x00, 0x0D, 0x00, 0xEE, + 0x00, 0x2B, 0x00, 0xF2, 0xFF, 0xC6, 0x01, 0x1A, 0xFF, 0xD9, 0x00, 0x03, 0x00, 0xAD, 0x00, 0x0B, + 0x00, 0xEA, 0x00, 0x1B, 0x00, 0xEE, 0x00, 0x08, 0x00, 0x0E, 0x00, 0x17, 0xFF, 0xF1, 0x00, 0x19, + 0xFF, 0xF3, 0x00, 0x4D, 0x00, 0x20, 0x00, 0x59, 0xFF, 0xF6, 0x00, 0x5E, 0xFF, 0xF5, 0x00, 0xAD, + 0x00, 0x11, 0x00, 0xB0, 0x00, 0x0A, 0x00, 0xEA, 0x00, 0x1B, 0x00, 0xEE, 0x00, 0x0F, 0x01, 0x72, + 0xFF, 0xF2, 0x01, 0x7F, 0xFF, 0xF2, 0x01, 0xA5, 0x00, 0x09, 0x02, 0x77, 0xFF, 0xF2, 0x02, 0x7D, + 0xFF, 0xF0, 0x00, 0x04, 0x00, 0x39, 0xFF, 0xD9, 0x00, 0x59, 0xFF, 0xEC, 0x01, 0x72, 0xFF, 0xF5, + 0x01, 0x78, 0xFF, 0xE0, 0x00, 0x01, 0x00, 0x91, 0xFF, 0xF9, 0x00, 0x01, 0x00, 0xEA, 0x00, 0x0C, + 0x00, 0x07, 0x00, 0xAD, 0x00, 0x17, 0x00, 0xAF, 0x00, 0x20, 0x00, 0xB0, 0x00, 0x22, 0x00, 0xEA, + 0x00, 0x3C, 0x00, 0xEC, 0x00, 0x0E, 0x00, 0xEE, 0x00, 0x26, 0x00, 0xF6, 0x00, 0x23, 0x00, 0x01, + 0x00, 0xEA, 0x00, 0x10, 0x00, 0x03, 0x00, 0x4D, 0x00, 0x0E, 0x00, 0xEA, 0x00, 0x10, 0x00, 0xF6, + 0x00, 0x0E, 0x00, 0x01, 0x00, 0x91, 0xFF, 0xFA, 0x00, 0x01, 0x00, 0x4D, 0x00, 0x11, 0x00, 0x0D, + 0x00, 0x03, 0xFF, 0xE7, 0x00, 0x0C, 0xFF, 0xEE, 0x00, 0x0D, 0x00, 0x0E, 0x00, 0x12, 0xFF, 0xEC, + 0x00, 0x30, 0xFF, 0xF7, 0x00, 0x39, 0xFF, 0xF7, 0x00, 0x3B, 0xFF, 0xDD, 0x00, 0x40, 0xFF, 0xF6, + 0x00, 0x60, 0xFF, 0xF2, 0x00, 0x6E, 0xFF, 0xF7, 0x00, 0x87, 0xFF, 0xE2, 0x00, 0xB1, 0xFF, 0xF3, + 0x02, 0x4B, 0xFF, 0xF2, 0x00, 0x06, 0x00, 0x0D, 0x00, 0x0C, 0x00, 0x39, 0xFF, 0xF1, 0x00, 0x6E, + 0xFF, 0xEC, 0x00, 0x91, 0xFF, 0xFA, 0x00, 0xB1, 0xFF, 0xF4, 0x02, 0x4B, 0xFF, 0xF0, 0x00, 0x01, + 0x01, 0x03, 0xFF, 0xFA, 0x00, 0x10, 0x00, 0x13, 0xFF, 0xF5, 0x00, 0x17, 0xFF, 0xEC, 0x00, 0x19, + 0xFF, 0xEE, 0x00, 0x4D, 0x00, 0x21, 0x00, 0x59, 0xFF, 0xF2, 0x00, 0x5E, 0xFF, 0xF1, 0x00, 0xAD, + 0x00, 0x13, 0x00, 0xB0, 0x00, 0x0B, 0x00, 0xEA, 0x00, 0x1C, 0x00, 0xEE, 0x00, 0x10, 0x01, 0x72, + 0xFF, 0xED, 0x01, 0x7F, 0xFF, 0xEF, 0x01, 0xA5, 0x00, 0x0B, 0x02, 0x77, 0xFF, 0xEE, 0x02, 0x7D, + 0xFF, 0xEA, 0x02, 0x7F, 0xFF, 0xF4, 0x00, 0x02, 0x00, 0x4D, 0x00, 0x0C, 0x00, 0xEA, 0x00, 0x0C, + 0x00, 0x03, 0x00, 0x0C, 0xFF, 0xEE, 0x00, 0x40, 0xFF, 0xF5, 0x00, 0x60, 0xFF, 0xF1, 0x00, 0x03, + 0x00, 0x39, 0xFF, 0xF2, 0x00, 0x4D, 0x00, 0x14, 0x01, 0x27, 0xFF, 0xE1, 0x00, 0x01, 0x01, 0x27, + 0xFF, 0xD4, 0x00, 0x05, 0x00, 0x39, 0xFF, 0xE5, 0x00, 0x3B, 0xFF, 0xE8, 0x00, 0x59, 0xFF, 0xF7, + 0x00, 0x5B, 0xFF, 0xEC, 0x01, 0x27, 0xFF, 0xDB, 0x00, 0x03, 0x00, 0x17, 0xFF, 0xDE, 0x02, 0x77, + 0xFF, 0xF5, 0x02, 0x7B, 0xFF, 0xCA, 0x00, 0x09, 0x00, 0x14, 0xFF, 0xF1, 0x00, 0x15, 0xFF, 0xF5, + 0x00, 0x16, 0xFF, 0xF2, 0x00, 0x1A, 0xFF, 0xE3, 0x02, 0x78, 0xFF, 0xF6, 0x02, 0x79, 0xFF, 0xEE, + 0x02, 0x7A, 0xFF, 0xEB, 0x02, 0x7B, 0xFF, 0xF0, 0x02, 0x7E, 0xFF, 0xE4, 0x00, 0x03, 0x01, 0x27, + 0xFF, 0xD0, 0x02, 0xB9, 0xFF, 0xEC, 0x02, 0xBD, 0xFF, 0xEC, 0x00, 0x0A, 0x00, 0x30, 0xFF, 0xF1, + 0x00, 0x39, 0xFF, 0xD8, 0x00, 0x3B, 0xFF, 0xF0, 0x00, 0x4D, 0x00, 0x35, 0x00, 0x59, 0xFF, 0xE8, + 0x00, 0x5B, 0xFF, 0xF3, 0x00, 0x87, 0xFF, 0xEF, 0x00, 0xB1, 0xFF, 0xE7, 0x01, 0x27, 0xFF, 0xC5, + 0x02, 0x26, 0xFF, 0xF0, 0x00, 0x05, 0x00, 0x91, 0xFF, 0xF9, 0x00, 0xD1, 0xFF, 0xF9, 0x00, 0xE7, + 0xFF, 0xF9, 0x01, 0x02, 0xFF, 0xF9, 0x01, 0x27, 0xFF, 0xF2, 0x00, 0x01, 0x00, 0xA0, 0xFF, 0xE2, + 0x00, 0x0F, 0x00, 0x03, 0xFF, 0xF5, 0x00, 0x0C, 0xFF, 0xED, 0x00, 0x16, 0xFF, 0xF4, 0x00, 0x1A, + 0xFF, 0xF2, 0x00, 0x22, 0xFF, 0xF4, 0x00, 0x39, 0xFF, 0xF1, 0x00, 0x3B, 0xFF, 0xE1, 0x00, 0x40, + 0xFF, 0xF4, 0x00, 0x60, 0xFF, 0xED, 0x00, 0x87, 0xFF, 0xE8, 0x01, 0x27, 0xFF, 0xF1, 0x02, 0x4B, + 0xFF, 0xEF, 0x02, 0x67, 0xFF, 0xEC, 0x02, 0x69, 0xFF, 0xF2, 0x02, 0x6B, 0xFF, 0xEC, 0x00, 0x09, + 0x00, 0x03, 0xFF, 0xF6, 0x00, 0x0C, 0xFF, 0xF6, 0x00, 0x39, 0xFF, 0xDE, 0x00, 0x3B, 0xFF, 0xF7, + 0x00, 0x3F, 0xFF, 0xF2, 0x00, 0x59, 0xFF, 0xEC, 0x00, 0x5B, 0xFF, 0xFB, 0x02, 0x26, 0xFF, 0xFB, + 0x02, 0x4B, 0xFF, 0xF8, 0x00, 0x06, 0x00, 0x0C, 0x00, 0x0A, 0x00, 0x3F, 0x00, 0x12, 0x00, 0x40, + 0x00, 0x11, 0x00, 0x60, 0x00, 0x12, 0x01, 0x22, 0x00, 0x08, 0x02, 0x4B, 0x00, 0x1B, 0x00, 0x03, + 0x00, 0x0D, 0x00, 0x1D, 0x00, 0x7B, 0x00, 0x07, 0x02, 0x4B, 0x00, 0x10, 0x00, 0x06, 0x00, 0x0D, + 0x00, 0x12, 0x00, 0x22, 0x00, 0x10, 0x00, 0x3F, 0x00, 0x0B, 0x00, 0x40, 0x00, 0x0A, 0x00, 0x60, + 0x00, 0x0B, 0x02, 0x4B, 0x00, 0x15, 0x00, 0x08, 0x00, 0x0C, 0xFF, 0xF5, 0x00, 0x30, 0xFF, 0xF9, + 0x00, 0x39, 0xFF, 0xEF, 0x00, 0x3B, 0xFF, 0xE8, 0x00, 0x59, 0xFF, 0xF8, 0x00, 0x5B, 0xFF, 0xF5, + 0x00, 0x87, 0xFF, 0xF4, 0x02, 0x26, 0xFF, 0xFA, 0x00, 0x04, 0x00, 0x0F, 0x00, 0x07, 0x00, 0x4D, + 0x00, 0x46, 0x00, 0x5C, 0xFF, 0xF0, 0x01, 0x27, 0xFF, 0xCC, 0x00, 0x37, 0x00, 0x04, 0x00, 0x31, + 0x00, 0x05, 0x00, 0x33, 0x00, 0x09, 0x00, 0x20, 0x00, 0x0A, 0x00, 0x33, 0x00, 0x0C, 0x00, 0x38, + 0x00, 0x0D, 0x00, 0x48, 0x00, 0x1D, 0x00, 0x07, 0x00, 0x22, 0x00, 0x4F, 0x00, 0x3F, 0x00, 0x41, + 0x00, 0x40, 0x00, 0x45, 0x00, 0x45, 0x00, 0x3C, 0x00, 0x49, 0x00, 0x17, 0x00, 0x4B, 0x00, 0x3C, + 0x00, 0x4C, 0x00, 0x3D, 0x00, 0x4D, 0x00, 0x3D, 0x00, 0x4E, 0x00, 0x3C, 0x00, 0x4F, 0x00, 0x3D, + 0x00, 0x50, 0x00, 0x06, 0x00, 0x51, 0x00, 0x06, 0x00, 0x53, 0x00, 0x06, 0x00, 0x55, 0x00, 0x06, + 0x00, 0x57, 0x00, 0x26, 0x00, 0x58, 0x00, 0x09, 0x00, 0x59, 0x00, 0x29, 0x00, 0x5A, 0x00, 0x24, + 0x00, 0x5B, 0x00, 0x26, 0x00, 0x5C, 0x00, 0x31, 0x00, 0x5D, 0x00, 0x11, 0x00, 0x5F, 0x00, 0x30, + 0x00, 0x60, 0x00, 0x48, 0x00, 0x6A, 0x00, 0x0B, 0x00, 0x6B, 0x00, 0x26, 0x00, 0x6F, 0x00, 0x0B, + 0x00, 0x7B, 0x00, 0x2F, 0x00, 0x7C, 0x00, 0x07, 0x00, 0xA0, 0x00, 0x2D, 0x00, 0xB1, 0x00, 0x31, + 0x00, 0xBB, 0x00, 0x09, 0x00, 0xBF, 0x00, 0x3C, 0x00, 0xF4, 0x00, 0x3D, 0x01, 0x30, 0x00, 0x09, + 0x01, 0x3F, 0x00, 0x27, 0x01, 0x40, 0x00, 0x17, 0x02, 0x2A, 0x00, 0x21, 0x02, 0x2B, 0x00, 0x28, + 0x02, 0x2D, 0x00, 0x21, 0x02, 0x2E, 0x00, 0x28, 0x02, 0x36, 0x00, 0x07, 0x02, 0x4B, 0x00, 0x59, + 0x02, 0x55, 0x00, 0x17, 0x02, 0x56, 0x00, 0x17, 0x02, 0x57, 0x00, 0x17, 0x02, 0x58, 0x00, 0x17, + 0x02, 0x59, 0x00, 0x17, 0x02, 0x5A, 0x00, 0x17, 0x00, 0x02, 0x00, 0x0D, 0x00, 0x0E, 0x02, 0x4B, + 0x00, 0x0B, 0x00, 0x01, 0x00, 0x4D, 0x00, 0x25, 0x00, 0x23, 0x00, 0x0D, 0x00, 0x09, 0x00, 0x26, + 0xFF, 0xF9, 0x00, 0x2A, 0xFF, 0xF9, 0x00, 0x32, 0xFF, 0xF9, 0x00, 0x34, 0xFF, 0xF9, 0x00, 0x5B, + 0xFF, 0xFA, 0x00, 0x5C, 0xFF, 0xF8, 0x00, 0x88, 0xFF, 0xF9, 0x00, 0x91, 0xFF, 0xFA, 0x00, 0x93, + 0xFF, 0xF9, 0x00, 0x94, 0xFF, 0xF9, 0x00, 0x95, 0xFF, 0xF9, 0x00, 0x96, 0xFF, 0xF9, 0x00, 0x97, + 0xFF, 0xF9, 0x00, 0x99, 0xFF, 0xF9, 0x00, 0xC7, 0xFF, 0xF9, 0x00, 0xC9, 0xFF, 0xF9, 0x00, 0xCB, + 0xFF, 0xF9, 0x00, 0xCD, 0xFF, 0xF9, 0x00, 0xD1, 0xFF, 0xFA, 0x00, 0xDD, 0xFF, 0xF9, 0x00, 0xDF, + 0xFF, 0xF9, 0x00, 0xE1, 0xFF, 0xF9, 0x00, 0xE3, 0xFF, 0xF9, 0x00, 0xE7, 0xFF, 0xFA, 0x01, 0x02, + 0xFF, 0xFA, 0x01, 0x0D, 0xFF, 0xF9, 0x01, 0x0F, 0xFF, 0xF9, 0x01, 0x11, 0xFF, 0xF9, 0x01, 0x13, + 0xFF, 0xF9, 0x02, 0x55, 0xFF, 0xF1, 0x02, 0x56, 0xFF, 0xF1, 0x02, 0x58, 0xFF, 0xF1, 0x02, 0x59, + 0xFF, 0xF1, 0x02, 0x5A, 0xFF, 0xF1, 0x00, 0x13, 0x00, 0x04, 0x00, 0x0F, 0x00, 0x05, 0x00, 0x11, + 0x00, 0x0A, 0x00, 0x11, 0x00, 0x0C, 0x00, 0x1B, 0x00, 0x0D, 0x00, 0x15, 0x00, 0x22, 0x00, 0x28, + 0x00, 0x3F, 0x00, 0x24, 0x00, 0x40, 0x00, 0x24, 0x00, 0x45, 0x00, 0x11, 0x00, 0x4B, 0x00, 0x11, + 0x00, 0x4C, 0x00, 0x10, 0x00, 0x4D, 0x00, 0x10, 0x00, 0x4E, 0x00, 0x11, 0x00, 0x4F, 0x00, 0x12, + 0x00, 0x5F, 0x00, 0x0C, 0x00, 0x60, 0x00, 0x28, 0x00, 0xBF, 0x00, 0x11, 0x00, 0xF4, 0x00, 0x10, + 0x02, 0x4B, 0x00, 0x37, 0x00, 0x06, 0x00, 0x0C, 0x00, 0x07, 0x00, 0x22, 0x00, 0x0C, 0x00, 0x3F, + 0x00, 0x0F, 0x00, 0x40, 0x00, 0x0E, 0x00, 0x60, 0x00, 0x0F, 0x02, 0x4B, 0x00, 0x19, 0x00, 0x01, + 0x00, 0x4D, 0x00, 0x01, 0x00, 0x01, 0x00, 0x4D, 0x00, 0x0D, 0x00, 0x03, 0x00, 0x5B, 0xFF, 0xF9, + 0x00, 0x87, 0xFF, 0xF4, 0x00, 0xB1, 0xFF, 0xF6, 0x00, 0x02, 0x00, 0x4D, 0x00, 0x0E, 0x00, 0xEA, + 0x00, 0x10, 0x00, 0x03, 0x00, 0x0D, 0x00, 0x18, 0x00, 0x4D, 0x00, 0x0E, 0x02, 0x4B, 0x00, 0x0C, + 0x00, 0x01, 0x00, 0x4D, 0x00, 0x12, 0x00, 0x0A, 0x00, 0x37, 0xFF, 0xB2, 0x00, 0x39, 0xFF, 0xC3, + 0x00, 0x3C, 0xFF, 0xC1, 0x00, 0x9E, 0xFF, 0xC1, 0x01, 0x23, 0xFF, 0xB2, 0x01, 0x25, 0xFF, 0xB2, + 0x01, 0x27, 0xFF, 0xC1, 0x01, 0x37, 0xFF, 0xC1, 0x01, 0x39, 0xFF, 0xC1, 0x01, 0x44, 0xFF, 0xB2, + 0x00, 0x24, 0x00, 0x03, 0xFF, 0xEE, 0x00, 0x04, 0x00, 0x1D, 0x00, 0x05, 0x00, 0x1D, 0x00, 0x09, + 0x00, 0x0B, 0x00, 0x0A, 0x00, 0x1D, 0x00, 0x0C, 0x00, 0x24, 0x00, 0x0D, 0x00, 0x30, 0x00, 0x22, + 0x00, 0x37, 0x00, 0x3F, 0x00, 0x2B, 0x00, 0x40, 0x00, 0x2F, 0x00, 0x45, 0x00, 0x27, 0x00, 0x4B, + 0x00, 0x27, 0x00, 0x4C, 0x00, 0x26, 0x00, 0x4D, 0x00, 0x26, 0x00, 0x4E, 0x00, 0x27, 0x00, 0x4F, + 0x00, 0x28, 0x00, 0x57, 0x00, 0x11, 0x00, 0x59, 0x00, 0x12, 0x00, 0x5A, 0x00, 0x0E, 0x00, 0x5B, + 0x00, 0x12, 0x00, 0x5C, 0x00, 0x1A, 0x00, 0x5F, 0x00, 0x1B, 0x00, 0x60, 0x00, 0x30, 0x00, 0x6B, + 0x00, 0x11, 0x00, 0x7B, 0x00, 0x19, 0x00, 0xA0, 0x00, 0x18, 0x00, 0xB1, 0x00, 0x1C, 0x00, 0xBF, + 0x00, 0x27, 0x00, 0xF4, 0x00, 0x26, 0x01, 0x22, 0x00, 0x2A, 0x01, 0x3F, 0x00, 0x12, 0x02, 0x2A, + 0x00, 0x0A, 0x02, 0x2B, 0x00, 0x11, 0x02, 0x2D, 0x00, 0x0A, 0x02, 0x2E, 0x00, 0x11, 0x02, 0x4B, + 0x00, 0x41, 0x00, 0x02, 0x00, 0x59, 0xFF, 0xFD, 0x00, 0x5C, 0x00, 0x05, 0x00, 0x03, 0x00, 0x40, + 0xFF, 0xFC, 0x00, 0x60, 0xFF, 0xF9, 0x02, 0x4B, 0x00, 0x03, 0x00, 0x04, 0x00, 0x0C, 0xFF, 0xF5, + 0x00, 0x40, 0xFF, 0xFF, 0x00, 0x60, 0xFF, 0xFB, 0x02, 0x4B, 0x00, 0x05, 0x00, 0x02, 0x00, 0xA0, + 0xFF, 0xEF, 0x00, 0xAF, 0x00, 0x21, 0x00, 0x01, 0x00, 0xA0, 0xFF, 0xEF, 0x00, 0x10, 0x00, 0x0C, + 0x00, 0x08, 0x00, 0x0D, 0x00, 0x13, 0x00, 0x22, 0x00, 0x16, 0x00, 0x3F, 0x00, 0x0F, 0x00, 0x40, + 0x00, 0x14, 0x00, 0x45, 0x00, 0x0B, 0x00, 0x4B, 0x00, 0x0B, 0x00, 0x4C, 0x00, 0x0A, 0x00, 0x4D, + 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x0B, 0x00, 0x4F, 0x00, 0x0C, 0x00, 0x60, 0x00, 0x14, 0x00, 0xBF, + 0x00, 0x0B, 0x00, 0xF4, 0x00, 0x0A, 0x01, 0x22, 0x00, 0x0E, 0x02, 0x4B, 0x00, 0x18, 0x00, 0x4D, + 0x00, 0x10, 0xFF, 0xDE, 0x00, 0x12, 0xFF, 0xDC, 0x00, 0x24, 0xFF, 0xCE, 0x00, 0x26, 0xFF, 0xF0, + 0x00, 0x2A, 0xFF, 0xF0, 0x00, 0x2D, 0xFF, 0xDF, 0x00, 0x32, 0xFF, 0xED, 0x00, 0x34, 0xFF, 0xED, + 0x00, 0x44, 0xFF, 0xB9, 0x00, 0x46, 0xFF, 0xBF, 0x00, 0x47, 0xFF, 0xC2, 0x00, 0x48, 0xFF, 0xC0, + 0x00, 0x49, 0xFF, 0xE3, 0x00, 0x4A, 0xFF, 0xD0, 0x00, 0x50, 0xFF, 0xC7, 0x00, 0x51, 0xFF, 0xC7, + 0x00, 0x52, 0xFF, 0xBF, 0x00, 0x53, 0xFF, 0xC7, 0x00, 0x54, 0xFF, 0xCE, 0x00, 0x55, 0xFF, 0xC7, + 0x00, 0x56, 0xFF, 0xC0, 0x00, 0x58, 0xFF, 0xC7, 0x00, 0x59, 0xFF, 0xCE, 0x00, 0x5A, 0xFF, 0xD1, + 0x00, 0x5C, 0xFF, 0xCE, 0x00, 0x5D, 0xFF, 0xC3, 0x00, 0x6C, 0xFF, 0xD2, 0x00, 0x6E, 0xFF, 0xDE, + 0x00, 0x7C, 0xFF, 0xD5, 0x00, 0x81, 0xFF, 0xCE, 0x00, 0x82, 0xFF, 0xCE, 0x00, 0x83, 0xFF, 0xCE, + 0x00, 0x84, 0xFF, 0xCE, 0x00, 0x85, 0xFF, 0xCE, 0x00, 0x86, 0xFF, 0xCE, 0x00, 0x88, 0xFF, 0xF0, + 0x00, 0x93, 0xFF, 0xED, 0x00, 0x94, 0xFF, 0xED, 0x00, 0x95, 0xFF, 0xED, 0x00, 0x96, 0xFF, 0xED, + 0x00, 0x97, 0xFF, 0xED, 0x00, 0x99, 0xFF, 0xED, 0x00, 0xA0, 0xFF, 0xF5, 0x00, 0xA7, 0xFF, 0xB9, + 0x00, 0xC1, 0xFF, 0xCE, 0x00, 0xC3, 0xFF, 0xCE, 0x00, 0xC5, 0xFF, 0xCE, 0x00, 0xC7, 0xFF, 0xF0, + 0x00, 0xC9, 0xFF, 0xF0, 0x00, 0xCB, 0xFF, 0xF0, 0x00, 0xCD, 0xFF, 0xF0, 0x00, 0xDD, 0xFF, 0xF0, + 0x00, 0xDF, 0xFF, 0xF0, 0x00, 0xE1, 0xFF, 0xF0, 0x00, 0xE3, 0xFF, 0xF0, 0x00, 0xF5, 0xFF, 0xDF, + 0x01, 0x0D, 0xFF, 0xED, 0x01, 0x0F, 0xFF, 0xED, 0x01, 0x11, 0xFF, 0xED, 0x01, 0x13, 0xFF, 0xED, + 0x01, 0x14, 0xFF, 0xBF, 0x01, 0x40, 0xFF, 0xE3, 0x02, 0x28, 0xFF, 0xDE, 0x02, 0x29, 0xFF, 0xDE, + 0x02, 0x35, 0xFF, 0xD2, 0x02, 0x36, 0xFF, 0xD5, 0x02, 0x55, 0xFF, 0xE3, 0x02, 0x56, 0xFF, 0xE3, + 0x02, 0x57, 0xFF, 0xE3, 0x02, 0x58, 0xFF, 0xE3, 0x02, 0x59, 0xFF, 0xE3, 0x02, 0x5A, 0xFF, 0xE3, + 0x02, 0x65, 0xFF, 0xE1, 0x02, 0x6D, 0xFF, 0xDE, 0x02, 0x6F, 0xFF, 0xDE, 0x02, 0x71, 0xFF, 0xE1, + 0x02, 0x72, 0xFF, 0xE1, 0x00, 0x01, 0x00, 0xA0, 0xFF, 0xF4, 0x00, 0x08, 0x00, 0xAD, 0x00, 0x40, + 0x00, 0xAF, 0x00, 0x38, 0x00, 0xB0, 0x00, 0x48, 0x00, 0xEA, 0x00, 0x66, 0x00, 0xEC, 0x00, 0x2C, + 0x00, 0xEE, 0x00, 0x50, 0x00, 0xF6, 0x00, 0x3D, 0x01, 0x0A, 0x00, 0x4D, 0x00, 0x09, 0x00, 0x0C, + 0xFF, 0xF5, 0x00, 0x0D, 0xFF, 0xF4, 0x00, 0x22, 0xFF, 0xF6, 0x00, 0x3F, 0xFF, 0xED, 0x00, 0x60, + 0xFF, 0xF6, 0x01, 0x78, 0xFF, 0xDB, 0x01, 0x9B, 0xFF, 0xFA, 0x02, 0xB1, 0xFF, 0xF1, 0x02, 0xB5, + 0xFF, 0xF8, 0x00, 0x01, 0x02, 0xB3, 0xFF, 0xCC, 0x00, 0x09, 0x01, 0x72, 0xFF, 0xF0, 0x01, 0x7F, + 0xFF, 0xF3, 0x01, 0x9B, 0xFF, 0xFA, 0x01, 0x9D, 0xFF, 0xF8, 0x02, 0xA6, 0xFF, 0xF3, 0x02, 0xB1, + 0xFF, 0xED, 0x02, 0xB2, 0xFF, 0xF8, 0x02, 0xB4, 0xFF, 0xF5, 0x02, 0xB5, 0xFF, 0xEF, 0x00, 0x0D, + 0x01, 0x7F, 0xFF, 0xF9, 0x01, 0x82, 0xFF, 0xF8, 0x01, 0x8A, 0xFF, 0xF9, 0x01, 0x9B, 0xFF, 0xF4, + 0x01, 0x9D, 0xFF, 0xF6, 0x02, 0xA5, 0xFF, 0xFB, 0x02, 0xA6, 0xFF, 0xFB, 0x02, 0xAA, 0xFF, 0xFB, + 0x02, 0xB1, 0xFF, 0xEC, 0x02, 0xB2, 0xFF, 0xF9, 0x02, 0xB4, 0xFF, 0xF8, 0x02, 0xB5, 0xFF, 0xF0, + 0x02, 0xB8, 0xFF, 0xF9, 0x00, 0x10, 0x01, 0x57, 0xFF, 0xFA, 0x01, 0x62, 0xFF, 0xFA, 0x01, 0x7F, + 0xFF, 0xF7, 0x01, 0x82, 0xFF, 0xEE, 0x01, 0x8A, 0xFF, 0xF8, 0x01, 0x9B, 0xFF, 0xF8, 0x01, 0x9D, + 0xFF, 0xF2, 0x02, 0xA5, 0xFF, 0xF7, 0x02, 0xA6, 0xFF, 0xF6, 0x02, 0xAA, 0xFF, 0xFB, 0x02, 0xB2, + 0xFF, 0xF8, 0x02, 0xB4, 0xFF, 0xF8, 0x02, 0xB5, 0xFF, 0xFB, 0x02, 0xB6, 0xFF, 0xF4, 0x02, 0xB8, + 0xFF, 0xEA, 0x02, 0xBA, 0xFF, 0xF8, 0x00, 0x06, 0x00, 0x0D, 0xFF, 0xF1, 0x00, 0x22, 0xFF, 0xF6, + 0x00, 0x3F, 0xFF, 0xE9, 0x01, 0x78, 0xFF, 0xDA, 0x02, 0xB1, 0xFF, 0xED, 0x02, 0xB5, 0xFF, 0xF5, + 0x00, 0x01, 0x02, 0xB3, 0xFF, 0xEA, 0x00, 0x0D, 0x01, 0x7D, 0xFF, 0xFB, 0x01, 0x82, 0xFF, 0xFA, + 0x01, 0x8A, 0xFF, 0xFB, 0x01, 0x9B, 0xFF, 0xF7, 0x01, 0x9D, 0xFF, 0xFA, 0x01, 0xA7, 0xFF, 0xF9, + 0x01, 0xDA, 0xFF, 0xF9, 0x02, 0x0A, 0xFF, 0xF8, 0x02, 0x0B, 0xFF, 0xF8, 0x02, 0xB1, 0xFF, 0xF0, + 0x02, 0xB5, 0xFF, 0xF6, 0x02, 0xB8, 0xFF, 0xFA, 0x02, 0xBB, 0xFF, 0xF7, 0x00, 0x18, 0x00, 0x0C, + 0xFF, 0xF5, 0x00, 0x60, 0xFF, 0xF6, 0x01, 0x62, 0xFF, 0xF8, 0x01, 0x78, 0xFF, 0xF8, 0x01, 0x7B, + 0xFF, 0xF7, 0x01, 0x7F, 0xFF, 0xFB, 0x01, 0x82, 0xFF, 0xF4, 0x01, 0x8A, 0xFF, 0xFA, 0x01, 0x9B, + 0xFF, 0xF5, 0x01, 0x9D, 0xFF, 0xF6, 0x01, 0xA3, 0xFF, 0xF7, 0x01, 0xA7, 0xFF, 0xF5, 0x02, 0x0A, + 0xFF, 0xF5, 0x02, 0x0B, 0xFF, 0xF8, 0x02, 0x67, 0xFF, 0xF5, 0x02, 0xA5, 0xFF, 0xFB, 0x02, 0xAA, + 0xFF, 0xFB, 0x02, 0xB1, 0xFF, 0xF4, 0x02, 0xB2, 0xFF, 0xFB, 0x02, 0xB4, 0xFF, 0xFA, 0x02, 0xB5, + 0xFF, 0xF3, 0x02, 0xB6, 0xFF, 0xF4, 0x02, 0xB8, 0xFF, 0xF3, 0x02, 0xBB, 0xFF, 0xF3, 0x00, 0x08, + 0x01, 0xA5, 0x00, 0x19, 0x01, 0xC9, 0xFF, 0xF3, 0x01, 0xE5, 0xFF, 0xCC, 0x01, 0xFB, 0xFF, 0xB8, + 0x02, 0x01, 0xFF, 0x99, 0x02, 0x05, 0xFF, 0xB9, 0x02, 0x09, 0xFF, 0xD0, 0x02, 0xB3, 0xFF, 0xCC, + 0x00, 0x01, 0x01, 0xBC, 0xFF, 0xF9, 0x00, 0x01, 0x01, 0xA5, 0x00, 0x11, 0x00, 0x0A, 0x01, 0x7F, + 0xFF, 0xF9, 0x01, 0x8A, 0xFF, 0xFB, 0x02, 0x0B, 0xFF, 0xFA, 0x02, 0xA5, 0xFF, 0xFB, 0x02, 0xA6, + 0xFF, 0xF8, 0x02, 0xAA, 0xFF, 0xFB, 0x02, 0xB1, 0xFF, 0xF7, 0x02, 0xB2, 0xFF, 0xFB, 0x02, 0xB4, + 0xFF, 0xF9, 0x02, 0xB5, 0xFF, 0xF6, 0x00, 0x1A, 0x00, 0x0C, 0xFF, 0xF6, 0x00, 0x0D, 0x00, 0x0A, + 0x00, 0x12, 0xFF, 0xE7, 0x01, 0x56, 0xFF, 0xEA, 0x01, 0x57, 0xFF, 0xDA, 0x01, 0x62, 0xFF, 0xD3, + 0x01, 0x7B, 0xFF, 0xF7, 0x01, 0x7F, 0xFF, 0xFB, 0x01, 0x82, 0xFF, 0xCD, 0x01, 0x8A, 0xFF, 0xF2, + 0x01, 0x9B, 0xFF, 0xF9, 0x01, 0x9D, 0xFF, 0xF7, 0x01, 0xA3, 0xFF, 0xF8, 0x01, 0xA5, 0x00, 0x06, + 0x01, 0xA7, 0xFF, 0xD1, 0x01, 0xC9, 0x00, 0x01, 0x01, 0xDA, 0xFF, 0xFD, 0x02, 0x0A, 0xFF, 0xF6, + 0x02, 0x67, 0xFF, 0xF3, 0x02, 0x6B, 0xFF, 0xF6, 0x02, 0xA5, 0xFF, 0xFA, 0x02, 0xA6, 0xFF, 0xF5, + 0x02, 0xB6, 0xFF, 0xC7, 0x02, 0xB8, 0xFF, 0xB0, 0x02, 0xBA, 0xFF, 0xDA, 0x02, 0xBB, 0xFF, 0xBA, + 0x00, 0x01, 0x01, 0xA5, 0x00, 0x09, 0x00, 0x04, 0x01, 0xA5, 0x00, 0x18, 0x01, 0xC9, 0xFF, 0xF1, + 0x01, 0xE5, 0xFF, 0xC9, 0x02, 0xB3, 0xFF, 0xC9, 0x00, 0x05, 0x01, 0xA5, 0x00, 0x27, 0x01, 0xC9, + 0xFF, 0xFD, 0x01, 0xE5, 0xFF, 0xEA, 0x02, 0x09, 0xFF, 0xEA, 0x02, 0xB3, 0xFF, 0xEA, 0x00, 0x16, + 0x00, 0x0C, 0xFF, 0xEE, 0x00, 0x16, 0xFF, 0xF6, 0x00, 0x1A, 0xFF, 0xF4, 0x00, 0x40, 0xFF, 0xF4, + 0x00, 0x60, 0xFF, 0xEF, 0x01, 0x57, 0xFF, 0xE8, 0x01, 0x62, 0xFF, 0xE5, 0x01, 0x78, 0xFF, 0xF2, + 0x01, 0x7B, 0xFF, 0xF1, 0x01, 0x82, 0xFF, 0xDE, 0x01, 0x8A, 0xFF, 0xF9, 0x01, 0x9B, 0xFF, 0xF9, + 0x01, 0xA7, 0xFF, 0xE0, 0x02, 0x0A, 0xFF, 0xF3, 0x02, 0x67, 0xFF, 0xED, 0x02, 0x69, 0xFF, 0xF3, + 0x02, 0x6B, 0xFF, 0xED, 0x02, 0xA5, 0xFF, 0xFB, 0x02, 0xB6, 0xFF, 0xE5, 0x02, 0xB8, 0xFF, 0xD5, + 0x02, 0xBA, 0xFF, 0xED, 0x02, 0xBB, 0xFF, 0xD7, 0x00, 0x01, 0x01, 0xA5, 0x00, 0x1A, 0x00, 0x02, + 0x01, 0xEA, 0xFF, 0xF9, 0x02, 0x10, 0xFF, 0xF8, 0x00, 0x0D, 0x00, 0x0C, 0xFF, 0xF4, 0x01, 0x82, + 0xFF, 0xF8, 0x01, 0x9B, 0xFF, 0xF5, 0x01, 0x9D, 0xFF, 0xFC, 0x01, 0xA3, 0xFF, 0xFC, 0x01, 0xA7, + 0xFF, 0xF9, 0x01, 0xEA, 0xFF, 0xF6, 0x02, 0x0B, 0xFF, 0xF6, 0x02, 0x10, 0xFF, 0xFA, 0x02, 0xB1, + 0xFF, 0xEE, 0x02, 0xB5, 0xFF, 0xF3, 0x02, 0xB8, 0xFF, 0xF4, 0x02, 0xBB, 0xFF, 0xF4, 0x00, 0x0B, + 0x00, 0x0C, 0xFF, 0xED, 0x00, 0x22, 0xFF, 0xF0, 0x00, 0x3F, 0xFF, 0xE5, 0x00, 0x60, 0xFF, 0xF5, + 0x01, 0x9B, 0xFF, 0xFC, 0x01, 0xEA, 0xFF, 0xF8, 0x02, 0x0B, 0xFF, 0xFC, 0x02, 0x10, 0xFF, 0xF9, + 0x02, 0xB8, 0xFF, 0xFC, 0x02, 0xB9, 0xFF, 0xFB, 0x02, 0xBD, 0xFF, 0xFC, 0x00, 0x03, 0x01, 0xEA, + 0xFF, 0xFB, 0x02, 0xB9, 0xFF, 0xD2, 0x02, 0xBD, 0xFF, 0xD2, 0x00, 0x02, 0x01, 0xEA, 0xFF, 0xF8, + 0x02, 0x10, 0xFF, 0xEF, 0x00, 0x01, 0x01, 0xEA, 0xFF, 0xF8, 0x00, 0x01, 0x02, 0x10, 0xFF, 0xF5, + 0x00, 0x04, 0x01, 0xEA, 0xFF, 0xF9, 0x02, 0x10, 0xFF, 0xFB, 0x02, 0xB9, 0xFF, 0xFB, 0x02, 0xBD, + 0xFF, 0xFC, 0x00, 0x02, 0x01, 0xEA, 0xFF, 0xFA, 0x02, 0x10, 0xFF, 0xFA, 0x00, 0x01, 0x02, 0x10, + 0xFF, 0xF2, 0x00, 0x05, 0x00, 0x22, 0xFF, 0xF3, 0x00, 0x3F, 0xFF, 0xE9, 0x01, 0xEA, 0xFF, 0xFB, + 0x02, 0x10, 0xFF, 0xF6, 0x02, 0xB1, 0xFF, 0xFB, 0x00, 0x02, 0x01, 0xEA, 0xFF, 0xF5, 0x02, 0x10, + 0xFF, 0xFB, 0x00, 0x0E, 0x00, 0x0C, 0xFF, 0xE7, 0x00, 0x22, 0xFF, 0xED, 0x00, 0x3F, 0xFF, 0xE4, + 0x00, 0x40, 0xFF, 0xF1, 0x00, 0x60, 0xFF, 0xED, 0x01, 0x82, 0xFF, 0xF6, 0x01, 0x9B, 0xFF, 0xF8, + 0x01, 0xA7, 0xFF, 0xF7, 0x01, 0xEA, 0xFF, 0xF6, 0x02, 0x0B, 0xFF, 0xFB, 0x02, 0xB1, 0xFF, 0xF9, + 0x02, 0xB5, 0xFF, 0xFA, 0x02, 0xB8, 0xFF, 0xF4, 0x02, 0xBB, 0xFF, 0xF3, 0x00, 0x03, 0x01, 0xEA, + 0xFF, 0xFB, 0x02, 0xB9, 0xFF, 0xD6, 0x02, 0xBD, 0xFF, 0xD6, 0x00, 0x01, 0x01, 0xEA, 0xFF, 0xFA, + 0x00, 0x01, 0x02, 0x10, 0xFF, 0xF7, 0x00, 0x02, 0x01, 0xEA, 0xFF, 0xF8, 0x02, 0x10, 0xFF, 0xF7, + 0x00, 0x03, 0x02, 0xA6, 0xFF, 0xF8, 0x02, 0xAB, 0xFF, 0xD2, 0x02, 0xB9, 0xFF, 0xD2, 0x00, 0x04, + 0x00, 0x3F, 0xFF, 0xF1, 0x01, 0x7F, 0xFF, 0xF9, 0x01, 0x9B, 0xFF, 0xFC, 0x02, 0xA6, 0xFF, 0xF7, + 0x00, 0x02, 0x00, 0x0C, 0xFF, 0xF1, 0x00, 0x3F, 0xFF, 0xF1, 0x00, 0x05, 0x00, 0x0D, 0x00, 0x13, + 0x00, 0x22, 0x00, 0x10, 0x00, 0x3F, 0x00, 0x0C, 0x00, 0x40, 0x00, 0x0B, 0x00, 0x60, 0x00, 0x0C, + 0x00, 0x02, 0x02, 0xB1, 0xFF, 0xE4, 0x02, 0xB5, 0xFF, 0xEF, 0x00, 0x02, 0x02, 0xA6, 0xFF, 0xED, + 0x02, 0xB4, 0xFF, 0xFB, 0x00, 0x06, 0x00, 0x0D, 0xFF, 0xF0, 0x00, 0x3F, 0xFF, 0xF6, 0x01, 0x78, + 0xFF, 0xEF, 0x02, 0xB1, 0xFF, 0xE6, 0x02, 0xB4, 0xFF, 0xFB, 0x02, 0xB5, 0xFF, 0xF0, 0x00, 0x07, + 0x00, 0x0D, 0xFF, 0xF7, 0x00, 0x22, 0xFF, 0xF2, 0x00, 0x3F, 0xFF, 0xE3, 0x01, 0x7F, 0xFF, 0xFB, + 0x02, 0xA6, 0xFF, 0xFC, 0x02, 0xB1, 0xFF, 0xEF, 0x02, 0xB5, 0xFF, 0xF4, 0x00, 0x01, 0x01, 0x69, + 0x00, 0x07, 0x00, 0x02, 0x02, 0xA6, 0xFF, 0xF2, 0x02, 0xB4, 0xFF, 0xFC, 0x00, 0x04, 0x02, 0xAB, + 0xFF, 0xFB, 0x02, 0xB1, 0xFF, 0xFA, 0x02, 0xB5, 0xFF, 0xFA, 0x02, 0xB9, 0xFF, 0xFB, 0x00, 0x02, + 0x01, 0x69, 0x00, 0x06, 0x01, 0xEF, 0x00, 0x06, 0x00, 0x04, 0x02, 0xA6, 0xFF, 0xFA, 0x02, 0xB1, + 0xFF, 0xF4, 0x02, 0xB4, 0xFF, 0xFB, 0x02, 0xB5, 0xFF, 0xF7, 0x00, 0x06, 0x00, 0x0D, 0xFF, 0xE9, + 0x00, 0x22, 0xFF, 0xF4, 0x00, 0x3F, 0xFF, 0xE0, 0x01, 0x78, 0xFF, 0xD7, 0x02, 0xB1, 0xFF, 0xE7, + 0x02, 0xB5, 0xFF, 0xF1, 0x00, 0x06, 0x00, 0x0D, 0xFF, 0xE1, 0x00, 0x22, 0xFF, 0xED, 0x00, 0x3F, + 0xFF, 0xCF, 0x01, 0x7F, 0xFF, 0xFC, 0x02, 0xB1, 0xFF, 0xDE, 0x02, 0xB5, 0xFF, 0xEA, 0x00, 0x0A, + 0x01, 0x78, 0xFF, 0xFB, 0x01, 0x7B, 0xFF, 0xFA, 0x01, 0x7F, 0xFF, 0xFA, 0x01, 0x82, 0xFF, 0xFB, + 0x01, 0x8A, 0xFF, 0xFA, 0x01, 0x9B, 0xFF, 0xFB, 0x02, 0xA6, 0xFF, 0xF8, 0x02, 0xAA, 0xFF, 0xFB, + 0x02, 0xB2, 0xFF, 0xFB, 0x02, 0xB4, 0xFF, 0xFA, 0x00, 0x02, 0x02, 0xB1, 0xFF, 0xFA, 0x02, 0xB5, + 0xFF, 0xFA, 0x00, 0x01, 0x02, 0xB3, 0xFF, 0xC9, 0x00, 0x04, 0x00, 0x0D, 0x00, 0x03, 0x02, 0xA6, + 0xFF, 0xF9, 0x02, 0xAB, 0xFF, 0xD6, 0x02, 0xB9, 0xFF, 0xD6, 0x00, 0x01, 0x02, 0xB3, 0xFF, 0xE6, + 0x00, 0x02, 0x02, 0x02, 0xFF, 0xFC, 0x02, 0xB3, 0xFF, 0xE6, 0x00, 0x01, 0x00, 0x0D, 0x00, 0x01, + 0x00, 0x07, 0x00, 0x0D, 0xFF, 0xF1, 0x00, 0x22, 0xFF, 0xF4, 0x00, 0x3F, 0xFF, 0xE3, 0x01, 0x78, + 0xFF, 0xD6, 0x02, 0xB1, 0xFF, 0xF2, 0x02, 0xB4, 0xFF, 0xFB, 0x02, 0xB5, 0xFF, 0xF6, 0x00, 0x04, + 0x00, 0x0C, 0xFF, 0xF4, 0x00, 0x0D, 0xFF, 0xF8, 0x00, 0x22, 0xFF, 0xED, 0x00, 0x3F, 0xFF, 0xE6, + 0x00, 0x0B, 0x01, 0x72, 0xFF, 0xFA, 0x01, 0x7F, 0xFF, 0xF6, 0x01, 0x8A, 0xFF, 0xFB, 0x01, 0x9B, + 0xFF, 0xFB, 0x01, 0x9D, 0xFF, 0xFA, 0x02, 0xA6, 0xFF, 0xF8, 0x02, 0xAA, 0xFF, 0xFA, 0x02, 0xB1, + 0xFF, 0xDE, 0x02, 0xB2, 0xFF, 0xF6, 0x02, 0xB4, 0xFF, 0xF4, 0x02, 0xB5, 0xFF, 0xE4, 0x00, 0x02, + 0x01, 0x7F, 0xFF, 0xFC, 0x02, 0xA6, 0xFF, 0xFA, 0x00, 0x0D, 0x01, 0x7F, 0xFF, 0xFB, 0x01, 0x82, + 0xFF, 0xF7, 0x01, 0x8A, 0xFF, 0xF9, 0x01, 0x9B, 0xFF, 0xF4, 0x01, 0x9D, 0xFF, 0xF6, 0x02, 0x0A, + 0xFF, 0xFB, 0x02, 0xAA, 0xFF, 0xFB, 0x02, 0xB1, 0xFF, 0xED, 0x02, 0xB2, 0xFF, 0xF9, 0x02, 0xB4, + 0xFF, 0xF9, 0x02, 0xB5, 0xFF, 0xF0, 0x02, 0xB6, 0xFF, 0xFB, 0x02, 0xB8, 0xFF, 0xF7, 0x00, 0x03, + 0x00, 0x3F, 0xFF, 0xF5, 0x01, 0x7F, 0xFF, 0xFB, 0x02, 0xA6, 0xFF, 0xF8, 0x00, 0x06, 0x01, 0xEA, + 0xFF, 0xF8, 0x02, 0x10, 0xFF, 0xEF, 0x02, 0xA6, 0xFF, 0xFA, 0x02, 0xB1, 0xFF, 0xF4, 0x02, 0xB4, + 0xFF, 0xFB, 0x02, 0xB5, 0xFF, 0xF7, 0x00, 0x04, 0x00, 0x39, 0xFF, 0xFA, 0x00, 0x3B, 0xFF, 0xFB, + 0x00, 0x59, 0xFF, 0xEF, 0x00, 0x5B, 0xFF, 0xF3, 0x00, 0x07, 0x00, 0xAD, 0x00, 0x11, 0x00, 0xB0, + 0x00, 0x0A, 0x00, 0xEA, 0x00, 0x10, 0x00, 0xEE, 0x00, 0x0E, 0x01, 0xA5, 0x00, 0x09, 0x02, 0xB9, + 0xFF, 0xE5, 0x02, 0xBD, 0xFF, 0xE5, 0x00, 0x07, 0x00, 0xAD, 0x00, 0x19, 0x00, 0xB0, 0x00, 0x12, + 0x00, 0xEA, 0x00, 0x12, 0x00, 0xEE, 0x00, 0x17, 0x01, 0xA5, 0x00, 0x12, 0x02, 0xB9, 0xFF, 0xE3, + 0x02, 0xBD, 0xFF, 0xE3, 0x00, 0x0C, 0x00, 0x5C, 0x00, 0x0C, 0x00, 0xAD, 0x00, 0x17, 0x00, 0xAF, + 0x00, 0x20, 0x00, 0xB0, 0x00, 0x22, 0x00, 0xBE, 0x00, 0x0C, 0x00, 0xC0, 0x00, 0x0C, 0x00, 0xEA, + 0x00, 0x3C, 0x00, 0xEC, 0x00, 0x0E, 0x00, 0xEE, 0x00, 0x26, 0x00, 0xF6, 0x00, 0x23, 0x01, 0x0A, + 0x00, 0x2C, 0x01, 0x38, 0x00, 0x0C, 0x00, 0x01, 0x01, 0x27, 0xFF, 0xDF, 0x00, 0x01, 0x01, 0x72, + 0xFF, 0xEC, 0x00, 0x01, 0x01, 0x72, 0xFF, 0xF1, 0x00, 0x01, 0x00, 0x39, 0xFF, 0xF1, 0x00, 0x01, + 0x01, 0x27, 0xFF, 0xDC, 0x00, 0x06, 0x00, 0x0C, 0xFF, 0xE8, 0x00, 0x3F, 0xFF, 0xE8, 0x00, 0x40, + 0xFF, 0xF2, 0x00, 0x60, 0xFF, 0xEE, 0x00, 0x71, 0xFF, 0xF5, 0x02, 0x7A, 0xFF, 0xF5, 0x00, 0x04, + 0x00, 0x3F, 0xFF, 0xD9, 0x00, 0x71, 0xFF, 0xE5, 0x00, 0x78, 0xFF, 0xEE, 0x02, 0x7E, 0xFF, 0xF3, + 0x00, 0x01, 0x00, 0x3F, 0xFF, 0xE6, 0x00, 0x01, 0x00, 0x78, 0xFF, 0xF5, 0x00, 0x04, 0x00, 0x3F, + 0xFF, 0xDF, 0x00, 0x71, 0xFF, 0xED, 0x00, 0x78, 0xFF, 0xF3, 0x02, 0x7E, 0xFF, 0xF4, 0x00, 0x01, + 0x00, 0x3F, 0xFF, 0xF0, 0x00, 0x03, 0x00, 0x0C, 0xFF, 0xF4, 0x00, 0x12, 0xFF, 0xE9, 0x02, 0x7B, + 0xFF, 0xD9, 0x00, 0x02, 0x00, 0x0C, 0xFF, 0xF2, 0x00, 0x60, 0xFF, 0xF5, 0x00, 0x04, 0x00, 0x0C, + 0xFF, 0xEC, 0x00, 0x3F, 0xFF, 0xE6, 0x00, 0x60, 0xFF, 0xF4, 0x00, 0x71, 0xFF, 0xEF, 0x00, 0x01, + 0x02, 0xA6, 0xFF, 0xFC, 0x00, 0x04, 0x01, 0xBD, 0xFF, 0xFC, 0x01, 0xCB, 0xFF, 0xE5, 0x01, 0xD7, + 0xFF, 0xD6, 0x01, 0xDF, 0xFF, 0xD6, 0x00, 0x03, 0x01, 0xCB, 0xFF, 0xF9, 0x01, 0xD7, 0xFF, 0xF0, + 0x01, 0xDF, 0xFF, 0xF0, 0x00, 0x08, 0x01, 0xC1, 0xFF, 0xF9, 0x01, 0xC3, 0xFF, 0xFC, 0x01, 0xCB, + 0xFF, 0xE9, 0x01, 0xD7, 0xFF, 0xD5, 0x01, 0xDF, 0xFF, 0xD5, 0x02, 0x07, 0xFF, 0xF9, 0x02, 0x09, + 0xFF, 0xFC, 0x02, 0xA7, 0xFF, 0xF9, 0x00, 0x10, 0x01, 0x9B, 0xFF, 0xF6, 0x01, 0x9D, 0xFF, 0xFC, + 0x01, 0xA3, 0xFF, 0xFB, 0x01, 0xA7, 0xFF, 0xF9, 0x01, 0xC1, 0xFF, 0xF3, 0x01, 0xC3, 0xFF, 0xF6, + 0x01, 0xCB, 0xFF, 0xF5, 0x01, 0xD7, 0xFF, 0xEC, 0x01, 0xDF, 0xFF, 0xEC, 0x01, 0xF0, 0xFF, 0xF7, + 0x02, 0x07, 0xFF, 0xF3, 0x02, 0x09, 0xFF, 0xF6, 0x02, 0x0B, 0xFF, 0xF6, 0x02, 0xA7, 0xFF, 0xF3, + 0x02, 0xB1, 0xFF, 0xEE, 0x02, 0xB5, 0xFF, 0xF2, 0x00, 0x05, 0x01, 0xD7, 0xFF, 0xFC, 0x01, 0xDF, + 0xFF, 0xFC, 0x02, 0x0B, 0xFF, 0xFC, 0x02, 0xB1, 0xFF, 0xFC, 0x02, 0xB5, 0xFF, 0xFC, 0x00, 0x07, + 0x00, 0x0D, 0xFF, 0xE0, 0x00, 0x22, 0xFF, 0xF3, 0x00, 0x3F, 0xFF, 0xDA, 0x01, 0x72, 0xFF, 0xEE, + 0x01, 0x78, 0xFF, 0xD3, 0x01, 0x7F, 0xFF, 0xF3, 0x02, 0x0B, 0xFF, 0xED, 0x00, 0x02, 0x01, 0xEA, + 0xFF, 0xF9, 0x02, 0x10, 0xFF, 0xDD, 0x00, 0x16, 0x00, 0x05, 0xFF, 0xE5, 0x00, 0x0A, 0xFF, 0xE5, + 0x00, 0x0D, 0xFF, 0xE9, 0x00, 0x10, 0xFF, 0xF0, 0x00, 0x22, 0xFF, 0xED, 0x00, 0x3F, 0xFF, 0xCE, + 0x00, 0x6C, 0xFF, 0xEA, 0x01, 0x90, 0xFF, 0xD6, 0x01, 0x98, 0xFF, 0xE5, 0x01, 0xBD, 0xFF, 0xFC, + 0x01, 0xCB, 0xFF, 0xE5, 0x01, 0xD7, 0xFF, 0xD6, 0x01, 0xDF, 0xFF, 0xD6, 0x01, 0xEA, 0xFF, 0xF8, + 0x02, 0x10, 0xFF, 0xE5, 0x02, 0x28, 0xFF, 0xF0, 0x02, 0x29, 0xFF, 0xF0, 0x02, 0x2A, 0xFF, 0xE8, + 0x02, 0x2B, 0xFF, 0xE7, 0x02, 0x2D, 0xFF, 0xE8, 0x02, 0x2E, 0xFF, 0xE7, 0x02, 0x35, 0xFF, 0xEA, + 0x00, 0x01, 0x01, 0x1A, 0x00, 0x03, 0x00, 0x05, 0x00, 0x06, 0x00, 0x09, 0x00, 0x0A, 0x00, 0x0B, + 0x00, 0x0D, 0x00, 0x10, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x17, 0x00, 0x1A, 0x00, 0x1B, + 0x00, 0x1C, 0x00, 0x23, 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, 0x00, 0x29, + 0x00, 0x2B, 0x00, 0x2C, 0x00, 0x2D, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x33, + 0x00, 0x34, 0x00, 0x35, 0x00, 0x36, 0x00, 0x37, 0x00, 0x38, 0x00, 0x39, 0x00, 0x3A, 0x00, 0x3B, + 0x00, 0x3C, 0x00, 0x3D, 0x00, 0x3E, 0x00, 0x3F, 0x00, 0x46, 0x00, 0x47, 0x00, 0x49, 0x00, 0x4C, + 0x00, 0x4D, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x54, 0x00, 0x59, 0x00, 0x5B, 0x00, 0x5C, 0x00, 0x5E, + 0x00, 0x5F, 0x00, 0x60, 0x00, 0x63, 0x00, 0x6C, 0x00, 0x6E, 0x00, 0x71, 0x00, 0x78, 0x00, 0x7C, + 0x00, 0x80, 0x00, 0x81, 0x00, 0x82, 0x00, 0x83, 0x00, 0x84, 0x00, 0x85, 0x00, 0x86, 0x00, 0x91, + 0x00, 0x93, 0x00, 0x94, 0x00, 0x95, 0x00, 0x96, 0x00, 0x97, 0x00, 0x99, 0x00, 0x9E, 0x00, 0x9F, + 0x00, 0xA0, 0x00, 0xAE, 0x00, 0xAF, 0x00, 0xB0, 0x00, 0xB1, 0x00, 0xC1, 0x00, 0xC3, 0x00, 0xC5, + 0x00, 0xC6, 0x00, 0xCF, 0x00, 0xD0, 0x00, 0xD1, 0x00, 0xD2, 0x00, 0xD9, 0x00, 0xE7, 0x00, 0xEA, + 0x00, 0xEE, 0x00, 0xEF, 0x00, 0xF0, 0x00, 0xF3, 0x00, 0xF4, 0x00, 0xF6, 0x00, 0xFD, 0x00, 0xFE, + 0x00, 0xFF, 0x01, 0x03, 0x01, 0x0C, 0x01, 0x0D, 0x01, 0x0F, 0x01, 0x11, 0x01, 0x16, 0x01, 0x1A, + 0x01, 0x23, 0x01, 0x24, 0x01, 0x25, 0x01, 0x26, 0x01, 0x27, 0x01, 0x34, 0x01, 0x35, 0x01, 0x37, + 0x01, 0x39, 0x01, 0x40, 0x01, 0x44, 0x01, 0x50, 0x01, 0x51, 0x01, 0x52, 0x01, 0x53, 0x01, 0x56, + 0x01, 0x59, 0x01, 0x5C, 0x01, 0x5F, 0x01, 0x60, 0x01, 0x61, 0x01, 0x62, 0x01, 0x64, 0x01, 0x68, + 0x01, 0x6A, 0x01, 0x6C, 0x01, 0x6E, 0x01, 0x6F, 0x01, 0x70, 0x01, 0x71, 0x01, 0x72, 0x01, 0x73, + 0x01, 0x74, 0x01, 0x77, 0x01, 0x7B, 0x01, 0x7C, 0x01, 0x7E, 0x01, 0x7F, 0x01, 0x80, 0x01, 0x81, + 0x01, 0x82, 0x01, 0x83, 0x01, 0x84, 0x01, 0x85, 0x01, 0x86, 0x01, 0x87, 0x01, 0x88, 0x01, 0x89, + 0x01, 0x8A, 0x01, 0x8B, 0x01, 0x8C, 0x01, 0x8D, 0x01, 0x8E, 0x01, 0x8F, 0x01, 0x90, 0x01, 0x91, + 0x01, 0x92, 0x01, 0x93, 0x01, 0x94, 0x01, 0x95, 0x01, 0x96, 0x01, 0x97, 0x01, 0x98, 0x01, 0x99, + 0x01, 0x9A, 0x01, 0x9B, 0x01, 0x9C, 0x01, 0x9D, 0x01, 0x9F, 0x01, 0xA1, 0x01, 0xA2, 0x01, 0xA3, + 0x01, 0xA5, 0x01, 0xA7, 0x01, 0xA8, 0x01, 0xAA, 0x01, 0xAB, 0x01, 0xBA, 0x01, 0xBB, 0x01, 0xBC, + 0x01, 0xBD, 0x01, 0xBE, 0x01, 0xBF, 0x01, 0xC0, 0x01, 0xC1, 0x01, 0xC3, 0x01, 0xC4, 0x01, 0xC5, + 0x01, 0xC7, 0x01, 0xC9, 0x01, 0xCB, 0x01, 0xCC, 0x01, 0xCD, 0x01, 0xCE, 0x01, 0xCF, 0x01, 0xD0, + 0x01, 0xD1, 0x01, 0xD2, 0x01, 0xD3, 0x01, 0xD6, 0x01, 0xD7, 0x01, 0xD8, 0x01, 0xDA, 0x01, 0xDC, + 0x01, 0xDD, 0x01, 0xDF, 0x01, 0xE0, 0x01, 0xE1, 0x01, 0xE4, 0x01, 0xE5, 0x01, 0xED, 0x01, 0xEE, + 0x01, 0xF0, 0x02, 0x02, 0x02, 0x07, 0x02, 0x09, 0x02, 0x0A, 0x02, 0x0B, 0x02, 0x10, 0x02, 0x12, + 0x02, 0x18, 0x02, 0x1A, 0x02, 0x1C, 0x02, 0x20, 0x02, 0x21, 0x02, 0x24, 0x02, 0x25, 0x02, 0x26, + 0x02, 0x28, 0x02, 0x29, 0x02, 0x2A, 0x02, 0x2B, 0x02, 0x2D, 0x02, 0x2E, 0x02, 0x35, 0x02, 0x36, + 0x02, 0x55, 0x02, 0x56, 0x02, 0x58, 0x02, 0x5A, 0x02, 0x65, 0x02, 0x66, 0x02, 0x68, 0x02, 0x6A, + 0x02, 0x6C, 0x02, 0x6E, 0x02, 0x70, 0x02, 0x71, 0x02, 0x72, 0x02, 0x74, 0x02, 0x77, 0x02, 0x78, + 0x02, 0x79, 0x02, 0x7A, 0x02, 0x7B, 0x02, 0x7C, 0x02, 0x7E, 0x02, 0x7F, 0x02, 0x80, 0x02, 0xA5, + 0x02, 0xA7, 0x02, 0xAA, 0x02, 0xAB, 0x02, 0xAE, 0x02, 0xB0, 0x02, 0xB1, 0x02, 0xB2, 0x02, 0xB4, + 0x02, 0xB5, 0x02, 0xB7, 0x02, 0xB8, 0x02, 0xB9, 0x00, 0x02, 0xC0, 0x44, 0x00, 0x04, 0x00, 0x00, + 0xB5, 0x50, 0xBA, 0xC8, 0x00, 0xA0, 0x00, 0x91, 0x00, 0x00, 0xFF, 0xED, 0xFF, 0xE2, 0xFF, 0xEA, + 0xFF, 0xE2, 0xFF, 0xE5, 0xFF, 0xDB, 0xFF, 0xED, 0xFF, 0xE9, 0xFF, 0xE6, 0xFF, 0xED, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0xFF, 0xF4, + 0x00, 0x00, 0xFF, 0xD9, 0x00, 0x00, 0xFF, 0xDD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, + 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD4, 0xFF, 0xE7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0xFF, 0x7F, 0xFF, 0xD7, 0xFF, 0xD4, 0xFF, 0xE6, 0xFF, 0xE8, + 0xFF, 0xF1, 0xFF, 0xEF, 0xFF, 0xCC, 0xFF, 0xEC, 0xFF, 0xEF, 0xFF, 0xBF, 0xFF, 0xF2, 0xFF, 0xD4, + 0xFF, 0xE5, 0xFF, 0xEC, 0xFF, 0xF8, 0xFF, 0xF0, 0xFF, 0xF6, 0xFF, 0xEF, 0xFF, 0xF7, 0xFF, 0xE3, + 0xFF, 0xF1, 0xFF, 0xE7, 0xFF, 0xCA, 0xFF, 0xD5, 0xFF, 0xDE, 0xFF, 0xD0, 0xFF, 0xDF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xDF, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, + 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xDF, 0x00, 0x00, 0xFF, 0xE5, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x05, 0x00, 0x09, 0x00, 0x17, 0x00, 0x0C, 0x00, 0x0E, 0x00, 0x10, 0x00, 0x12, 0x00, 0x0A, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xC3, 0xFF, 0xF1, 0xFF, 0xC6, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, + 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xEE, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF8, 0xFF, 0xEC, 0xFF, 0xF6, + 0xFF, 0xEB, 0xFF, 0xEE, 0xFF, 0xEE, 0xFF, 0xF5, 0xFF, 0xEC, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xF4, + 0xFF, 0xF2, 0xFF, 0xF1, 0xFF, 0xF5, 0xFF, 0xF2, 0xFF, 0xE2, 0xFF, 0xF7, 0xFF, 0xE5, 0xFF, 0xE8, + 0xFF, 0xF7, 0xFF, 0xEC, 0xFF, 0xF2, 0xFF, 0xF4, 0xFF, 0xEB, 0xFF, 0xE9, 0xFF, 0xE1, 0xFF, 0xEB, + 0xFF, 0xEF, 0xFF, 0xC3, 0xFF, 0xE3, 0xFF, 0xE8, 0xFF, 0xF3, 0xFF, 0xD7, 0xFF, 0xF6, 0xFF, 0xF1, + 0xFF, 0xF0, 0xFF, 0xD4, 0xFF, 0xF7, 0xFF, 0xCE, 0xFF, 0xF7, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC3, 0xFF, 0xDF, 0xFF, 0xBF, + 0xFF, 0xF3, 0xFF, 0xE7, 0xFF, 0xDA, 0xFF, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD9, 0xFF, 0xDA, 0x00, 0x00, 0xFF, 0xE6, 0x00, 0x00, + 0xFF, 0xDC, 0xFF, 0xBA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCB, + 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE5, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC3, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB1, 0xFF, 0xD7, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD4, 0x00, 0x00, 0xFF, 0xC6, 0xFF, 0xF2, 0x00, 0x00, 0xFF, 0xF1, + 0xFF, 0xF0, 0xFF, 0xF6, 0xFF, 0x86, 0xFF, 0xF0, 0xFF, 0xE8, 0xFF, 0xDA, 0xFF, 0xF8, 0xFF, 0xD2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDA, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE3, 0xFF, 0xE3, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDA, 0x00, 0x00, 0xFF, 0xE6, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xDB, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDA, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF5, 0xFF, 0xE9, 0xFF, 0xF1, 0xFF, 0xE9, 0xFF, 0xF2, 0xFF, 0xE9, 0xFF, 0xF1, 0xFF, 0xEF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, + 0x00, 0x00, 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD4, 0xFF, 0xEC, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD7, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD6, 0xFF, 0xE4, 0xFF, 0xCD, 0xFF, 0xF5, 0xFF, 0xF1, 0xFF, 0xEB, 0xFF, 0xDA, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEA, + 0xFF, 0xEB, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0xFF, 0xEB, 0xFF, 0xDF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD6, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDE, 0x00, 0x00, + 0xFF, 0xD3, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF6, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xF6, + 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD3, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0xFF, 0xF0, 0xFF, 0xBA, 0xFF, 0xE0, 0xFF, 0xC6, 0xFF, 0xE9, + 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE7, 0xFF, 0xE7, 0xFF, 0xE7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0xFF, 0xEB, + 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, + 0xFF, 0xED, 0xFF, 0xE7, 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEA, 0xFF, 0xF0, + 0xFF, 0xEA, 0xFF, 0xED, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD2, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x7D, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE5, 0xFF, 0xEE, 0xFF, 0xED, 0xFF, 0xC9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD2, 0xFF, 0xE4, 0xFF, 0xEB, 0xFF, 0xF5, 0xFF, 0xEE, 0xFF, 0xF4, + 0xFF, 0xED, 0xFF, 0xF4, 0xFF, 0xE3, 0xFF, 0xEF, 0xFF, 0xE8, 0xFF, 0xC7, 0xFF, 0xD2, 0xFF, 0xDB, + 0xFF, 0xCC, 0xFF, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF7, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCF, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, 0xFF, 0x79, + 0xFF, 0xD3, 0x00, 0x00, 0xFF, 0xDE, 0xFF, 0xE3, 0xFF, 0xEC, 0xFF, 0xEA, 0xFF, 0xC7, 0xFF, 0xE3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCF, 0xFF, 0xE4, 0xFF, 0xEB, 0xFF, 0xF3, 0xFF, 0xEC, + 0xFF, 0xF2, 0xFF, 0xEA, 0xFF, 0xF1, 0xFF, 0xE3, 0xFF, 0xEC, 0xFF, 0xE9, 0xFF, 0xC5, 0xFF, 0xD0, + 0xFF, 0xD9, 0xFF, 0xCB, 0xFF, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF6, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0xFF, 0xF7, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0xFF, 0xF7, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCA, + 0x00, 0x00, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xDB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0xFF, 0xE7, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0xFF, 0xF3, 0x00, 0x00, + 0xFF, 0xB7, 0xFF, 0xE9, 0xFF, 0xC2, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF0, 0xFF, 0xF1, 0xFF, 0xF2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0xFF, 0xF3, 0xFF, 0xF5, + 0x00, 0x00, 0xFF, 0xE7, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xE8, 0x00, 0x00, + 0xFF, 0xF3, 0xFF, 0xF3, 0xFF, 0xE3, 0xFF, 0xF1, 0xFF, 0xE4, 0xFF, 0xE6, 0xFF, 0xF2, 0xFF, 0xF0, + 0xFF, 0xE5, 0xFF, 0xF4, 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEC, 0xFF, 0xDD, 0xFF, 0xE7, 0xFF, 0xF3, 0xFF, 0xE5, 0xFF, 0xED, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, 0xFF, 0xED, 0xFF, 0xB6, 0xFF, 0xE0, 0xFF, 0xE7, + 0xFF, 0xF2, 0xFF, 0xCC, 0xFF, 0xEC, 0xFF, 0xEA, 0xFF, 0xEA, 0xFF, 0xC9, 0xFF, 0xEC, 0xFF, 0xC6, + 0xFF, 0xF5, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, + 0x00, 0x00, 0xFF, 0xC4, 0xFF, 0xF7, 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0xFF, 0xF4, + 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE5, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEA, 0xFF, 0xF2, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, 0xFF, 0xE1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE4, 0xFF, 0xE4, 0xFF, 0xC3, 0xFF, 0xE6, + 0xFF, 0xE1, 0x00, 0x00, 0xFF, 0xD8, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD5, 0x00, 0x00, + 0xFF, 0xD9, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF3, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE9, 0x00, 0x00, 0xFF, 0xC3, 0xFF, 0xEF, 0xFF, 0xCB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE9, 0xFF, 0xE9, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE5, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE6, 0xFF, 0xE9, 0x00, 0x00, 0xFF, 0xE8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xE4, 0xFF, 0xE0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDE, + 0xFF, 0xEC, 0xFF, 0xC3, 0xFF, 0xE0, 0xFF, 0xE0, 0x00, 0x00, 0xFF, 0xD4, 0xFF, 0xEE, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD1, 0xFF, 0xF1, 0xFF, 0xD0, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0xFF, 0xF4, 0xFF, 0xEB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, + 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xC3, 0xFF, 0xF1, + 0xFF, 0xC6, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, 0xFF, 0xE7, 0xFF, 0xE6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF1, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEB, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEA, 0x00, 0x00, 0xFF, 0xE9, + 0x00, 0x00, 0xFF, 0xE6, 0xFF, 0xF3, 0xFF, 0xF5, 0xFF, 0xF6, 0xFF, 0xEE, 0xFF, 0xF3, 0xFF, 0xF5, + 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xF0, 0xFF, 0xF0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, + 0xFF, 0xF2, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0xFF, 0xEC, + 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, + 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEA, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xEF, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0xFF, 0xEB, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD4, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0xFF, 0xE3, 0xFF, 0xC8, + 0xFF, 0xEA, 0xFF, 0xEB, 0xFF, 0xE1, 0xFF, 0xD7, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xF6, 0xFF, 0xF5, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDA, + 0x00, 0x00, 0xFF, 0xE7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, + 0xFF, 0xEF, 0xFF, 0xF4, 0xFF, 0xD9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, + 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDF, + 0xFF, 0xF8, 0xFF, 0xF3, 0xFF, 0xDA, 0xFF, 0xF5, 0xFF, 0xF0, 0xFF, 0xF5, 0xFF, 0xED, 0xFF, 0xF7, + 0xFF, 0xD6, 0xFF, 0xF2, 0xFF, 0xF4, 0xFF, 0xE9, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xED, 0xFF, 0xF8, + 0xFF, 0xE6, 0xFF, 0xF8, 0xFF, 0xF8, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xF7, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xFB, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xF7, 0xFF, 0xF2, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF5, 0xFF, 0xF5, 0x00, 0x00, + 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEF, 0xFF, 0xEE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xF7, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, + 0xFF, 0xE8, 0xFF, 0xF6, 0xFF, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, + 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, + 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF4, 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xE7, 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xFA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0xFF, 0xF9, 0xFF, 0xFA, 0xFF, 0xFA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xFA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xEB, 0xFF, 0xF3, 0xFF, 0xEE, 0xFF, 0xEB, 0xFF, 0xF2, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0xFF, 0xF2, 0xFF, 0xF1, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0xFF, 0xF4, + 0xFF, 0xF3, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xF7, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0xFF, 0xF1, + 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xDC, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xF8, 0xFF, 0xFA, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, + 0xFF, 0xEB, 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE1, 0xFF, 0xEC, 0xFF, 0xE9, + 0xFF, 0xEE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0xFF, 0xF7, 0xFF, 0xE8, 0xFF, 0xFA, 0xFF, 0xF5, + 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0xFF, 0xF3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, + 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xF6, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, + 0xFF, 0xFA, 0xFF, 0xF9, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, + 0xFF, 0xF7, 0xFF, 0xFB, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF6, 0xFF, 0xF5, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF7, 0xFF, 0xF9, 0xFF, 0xF5, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, + 0x00, 0x00, 0xFF, 0xF8, 0xFF, 0xFB, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE8, 0xFF, 0xDF, 0xFF, 0xDD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, 0xFF, 0xE3, 0xFF, 0xE3, 0x00, 0x00, 0xFF, 0xE7, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xEA, 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xF7, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF9, 0x00, 0x00, 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, + 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xE3, 0xFF, 0xF3, 0xFF, 0xDF, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA9, + 0xFF, 0xCF, 0xFF, 0xAF, 0xFF, 0xE1, 0xFF, 0xD3, 0xFF, 0xBD, 0xFF, 0xB0, 0x00, 0x00, 0xFF, 0xE3, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF2, 0xFF, 0xF1, 0x00, 0x00, + 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBC, 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE8, 0xFF, 0xE6, 0xFF, 0xEF, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xB0, 0xFF, 0xCF, 0xFF, 0xF4, 0xFF, 0xD3, 0xFF, 0xF2, 0xFF, 0xBA, 0xFF, 0xF2, + 0xFF, 0xB9, 0xFF, 0xF6, 0xFF, 0xB2, 0xFF, 0xB9, 0xFF, 0xF2, 0xFF, 0xD0, 0xFF, 0xCF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCF, 0xFF, 0xF1, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF9, 0xFF, 0xF9, 0xFF, 0xF1, 0xFF, 0xF8, 0xFF, 0xF7, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0xFF, 0xF8, 0xFF, 0xF8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xFB, 0xFF, 0xFB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, + 0x00, 0x00, 0xFF, 0xE7, 0xFF, 0xF6, 0xFF, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF2, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF4, 0xFF, 0xFB, 0xFF, 0xF0, 0xFF, 0xE7, 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xFA, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xF9, 0xFF, 0xFA, 0xFF, 0xFB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xFA, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEB, 0xFF, 0xF2, 0xFF, 0xEE, 0xFF, 0xEB, 0xFF, 0xF2, 0xFF, 0xEC, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD9, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xBC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, + 0xFF, 0xF1, 0xFF, 0xF0, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0xFF, 0xFA, 0xFF, 0xF8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0xFF, 0xF7, 0xFF, 0xE9, 0xFF, 0xFB, 0xFF, 0xFB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF1, 0xFF, 0xED, 0xFF, 0xED, 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0xFF, 0xFB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xFA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0xFF, 0xFA, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0xFF, 0xF5, + 0xFF, 0xF1, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, + 0xFF, 0xEF, 0xFF, 0xF6, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF8, 0xFF, 0xF8, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF3, 0xFF, 0xFB, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0xFF, 0xD9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE3, 0xFF, 0xC4, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0xFF, 0xC3, 0xFF, 0xD6, + 0xFF, 0xCF, 0xFF, 0xCC, 0xFF, 0xAB, 0xFF, 0xA8, 0xFF, 0xA6, 0xFF, 0xBD, 0xFF, 0xB7, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xC1, 0xFF, 0xC6, 0xFF, 0xB4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, + 0xFF, 0xE7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xAB, 0xFF, 0xB2, 0xFF, 0xAC, 0xFF, 0xB2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xDD, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xC3, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0xFF, 0xE9, + 0x00, 0x05, 0xFF, 0xC4, 0xFF, 0xF3, 0xFF, 0xC3, 0xFF, 0xC3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0xFF, 0xF5, 0xFF, 0xE7, + 0xFF, 0xF9, 0xFF, 0xF8, 0xFF, 0xCA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0xFF, 0xF6, 0xFF, 0xF5, 0xFF, 0xF1, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF5, 0xFF, 0xF7, 0xFF, 0xF3, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xF8, 0xFF, 0xFA, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDB, 0xFF, 0xE3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xF6, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xCB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCF, 0xFF, 0xCF, 0xFF, 0xCE, 0x00, 0x00, + 0xFF, 0xDE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD0, 0xFF, 0xDB, 0xFF, 0xD0, 0xFF, 0xDC, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE3, 0xFF, 0xEE, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE4, 0xFF, 0xDE, 0xFF, 0xE4, 0xFF, 0xF3, 0xFF, 0xF1, 0xFF, 0xDE, 0xFF, 0xDB, 0xFF, 0xDA, + 0xFF, 0xD9, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0xFF, 0xF2, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE0, 0xFF, 0xE8, 0xFF, 0xE0, 0xFF, 0xE9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, 0x00, 0x05, 0xFF, 0xF7, 0x00, 0x00, 0xFF, 0xEF, 0xFF, 0xF2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEA, 0xFF, 0xE0, 0xFF, 0xDE, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE5, 0xFF, 0xE1, + 0xFF, 0xE0, 0x00, 0x00, 0xFF, 0xE7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xF7, 0x00, 0x00, 0xFF, 0xEB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0xFF, 0xE0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xC9, 0xFF, 0xD9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, 0xFF, 0xDC, 0xFF, 0xE3, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDB, 0xFF, 0xBF, 0xFF, 0xCD, 0xFF, 0xCA, 0xFF, 0xCA, 0xFF, 0xB9, + 0xFF, 0xB6, 0xFF, 0xB4, 0xFF, 0xBF, 0xFF, 0xC2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, + 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDF, 0xFF, 0xDA, + 0xFF, 0xCD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDB, 0xFF, 0xDC, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB7, 0xFF, 0xC6, 0xFF, 0xB5, + 0xFF, 0xC8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE4, 0x00, 0x00, 0xFF, 0xE4, 0x00, 0x00, 0xFF, 0xE3, 0x00, 0x12, 0xFF, 0xD2, 0xFF, 0xE4, + 0xFF, 0xCB, 0xFF, 0xC6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0xFF, 0xE4, 0xFF, 0xEA, 0xFF, 0xF1, 0xFF, 0xE9, 0xFF, 0xE4, + 0xFF, 0xEF, 0xFF, 0xED, 0xFF, 0xED, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0xFF, 0xEE, + 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF3, 0xFF, 0xF2, 0xFF, 0xF2, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0xFF, 0xF2, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, + 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xEF, + 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, 0x00, 0x00, 0xFF, 0xE6, 0xFF, 0xF7, 0xFF, 0xD9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, 0xFF, 0xE6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF6, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF6, 0xFF, 0xF7, 0xFF, 0xF4, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, + 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xFA, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, + 0xFF, 0xF8, 0xFF, 0xF4, 0xFF, 0xF1, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0xFF, 0xF8, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xFA, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA9, + 0xFF, 0xE5, 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xF6, 0xFF, 0xF8, 0xFF, 0xF7, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF8, 0xFF, 0xD6, 0xFF, 0xF8, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xF9, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, 0xFF, 0xE5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0xFF, 0xF7, 0x00, 0x00, + 0xFF, 0xAB, 0xFF, 0xDE, 0xFF, 0xBA, 0xFF, 0xFC, 0xFF, 0xF6, 0xFF, 0xF2, 0xFF, 0xEC, 0xFF, 0xEE, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF4, 0xFF, 0xD0, 0xFF, 0xE4, 0xFF, 0xF4, 0xFF, 0xF2, 0xFF, 0xFA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xEB, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE7, 0xFF, 0xF1, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFB, 0xFF, 0x9E, 0xFF, 0xE9, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0xFF, 0xF6, + 0xFF, 0xF5, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF5, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xF6, 0xFF, 0xEF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xFA, 0xFF, 0xFA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xFB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAA, 0xFF, 0xDD, 0xFF, 0xAF, 0x00, 0x00, 0xFF, 0xF8, + 0xFF, 0xF4, 0xFF, 0xF7, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xD1, 0xFF, 0xF7, 0xFF, 0xF6, + 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, + 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, + 0xFF, 0xE6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xFB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE5, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0xFF, 0xED, 0xFF, 0xF5, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xF7, 0xFF, 0xF5, 0xFF, 0xE2, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0xFF, 0xF5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x07, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, + 0xFF, 0xFA, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFB, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xC1, 0xFF, 0xF5, + 0xFF, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0xFF, 0xEC, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xE2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF2, 0xFF, 0xF2, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF0, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, + 0xFF, 0xF2, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF4, 0xFF, 0xF4, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD1, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xAF, 0xFF, 0xE6, 0xFF, 0xC0, 0x00, 0x00, 0xFF, 0xFC, 0xFF, 0xF9, 0x00, 0x00, 0xFF, 0xF7, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xD6, 0xFF, 0xF8, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xF9, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0xFF, 0xE7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0xFF, 0xF5, + 0x00, 0x00, 0xFF, 0xA5, 0xFF, 0xDB, 0xFF, 0xB4, 0xFF, 0xFB, 0xFF, 0xF5, 0xFF, 0xF0, 0xFF, 0xF3, + 0xFF, 0xEE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0xFF, 0xCE, 0xFF, 0xDF, 0xFF, 0xF2, 0xFF, 0xEE, 0xFF, 0xF7, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0xFF, 0xF3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0xFF, 0xE2, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE6, 0xFF, 0xF0, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD7, 0xFF, 0xE6, 0xFF, 0xC3, 0xFF, 0xFB, 0xFF, 0xDD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE9, 0xFF, 0xEB, 0xFF, 0xD3, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, + 0xFF, 0xF7, 0xFF, 0xF5, 0xFF, 0xD0, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xD6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xED, 0xFF, 0xF5, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAD, 0xFF, 0xE9, 0xFF, 0xC8, 0x00, 0x00, 0xFF, 0xFC, + 0xFF, 0xFA, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDB, 0xFF, 0xF6, 0xFF, 0xFC, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xF9, 0xFF, 0xF7, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xFB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC1, 0xFF, 0xF4, 0xFF, 0xD3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0xFF, 0xF2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB2, 0xFF, 0xE7, 0xFF, 0xC6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xDB, + 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, + 0xFF, 0xFA, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xEE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFB, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, 0xFF, 0xEF, 0xFF, 0xC1, 0x00, 0x00, + 0xFF, 0xDD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, 0x00, 0x00, 0xFF, 0xE0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0xFF, 0xF3, 0xFF, 0xF3, 0x00, 0x00, 0xFF, 0xF2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0xFF, 0xF3, 0xFF, 0xC4, + 0xFF, 0xFB, 0xFF, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xE9, + 0xFF, 0xE7, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF6, 0xFF, 0xF5, 0xFF, 0xE6, + 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, + 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, + 0xFF, 0xC5, 0xFF, 0xF8, 0xFF, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0xFF, 0xEF, 0xFF, 0xEE, + 0x00, 0x00, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xF7, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, + 0xFF, 0xEA, 0xFF, 0xC1, 0xFF, 0xFB, 0xFF, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xEB, 0xFF, 0xE6, 0xFF, 0xDB, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xF0, + 0xFF, 0xEE, 0xFF, 0xDE, 0xFF, 0xEE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xD9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF4, 0xFF, 0xEC, 0xFF, 0xF3, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB3, 0xFF, 0xEF, 0xFF, 0xCB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, + 0xFF, 0xF8, 0xFF, 0xF7, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xFA, 0xFF, 0xF6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE1, 0xFF, 0xE5, 0xFF, 0xD1, 0xFF, 0xF7, 0xFF, 0xEF, + 0xFF, 0xEA, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF6, 0xFF, 0xF4, + 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0xFF, 0xF8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0xFF, 0xEB, 0xFF, 0xF1, 0xFF, 0xE9, 0x00, 0x00, + 0xFF, 0xF9, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xE5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE3, 0xFF, 0xE9, + 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE3, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF5, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD5, + 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD5, 0x00, 0x00, + 0xFF, 0xE3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF3, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xEE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD7, 0xFF, 0xE1, 0x00, 0x00, 0xFF, 0xE6, 0x00, 0x00, 0xFF, 0xE3, 0xFF, 0xD3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xC5, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xD3, 0xFF, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xCF, 0x00, 0x00, 0xFF, 0xCE, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD9, 0xFF, 0xEF, 0xFF, 0xEE, 0xFF, 0xE1, 0xFF, 0xF3, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDF, 0xFF, 0xF8, 0xFF, 0xF3, + 0xFF, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, + 0x00, 0x00, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0xFF, 0xF9, 0xFF, 0xE1, + 0xFF, 0xF7, 0xFF, 0xF2, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xEA, 0xFF, 0xF0, 0xFF, 0xF7, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xF1, + 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, + 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0xFF, 0xF2, 0xFF, 0xF6, 0xFF, 0xF5, 0xFF, 0xFB, 0x00, 0x00, + 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFA, 0xFF, 0xF7, 0xFF, 0xED, 0xFF, 0xF7, 0xFF, 0xF5, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF3, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0xFF, 0xF5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xFB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB8, + 0xFF, 0xD4, 0xFF, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC3, 0xFF, 0xC8, 0xFF, 0xCD, 0xFF, 0xC7, 0xFF, 0x91, + 0xFF, 0x90, 0xFF, 0x88, 0xFF, 0x96, 0xFF, 0xD4, 0xFF, 0x8B, 0xFF, 0xD4, 0xFF, 0xB8, 0xFF, 0xC1, + 0xFF, 0x85, 0xFF, 0xC0, 0xFF, 0x7E, 0xFF, 0xC4, 0xFF, 0xB9, 0xFF, 0xB9, 0xFF, 0xC4, 0xFF, 0xC4, + 0x00, 0x0C, 0xFF, 0xC3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xA9, 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, 0xFF, 0xEC, 0xFF, 0xCD, 0x00, 0x00, + 0xFF, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB2, 0xFF, 0xA9, 0xFF, 0xAE, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA8, 0xFF, 0xA1, 0xFF, 0xF9, + 0x00, 0x05, 0xFF, 0xB8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0xD1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, + 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x93, 0xFF, 0xAA, 0xFF, 0xB6, 0xFF, 0xAE, 0xFF, 0xE8, 0xFF, 0xAE, 0xFF, 0x80, 0xFF, 0xFB, + 0xFF, 0xF9, 0xFF, 0xB5, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0xFF, 0xEC, 0x00, 0x00, + 0xFF, 0xF3, 0x00, 0x00, 0xFF, 0xEB, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, + 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xF2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xF4, 0xFF, 0xF6, 0xFF, 0xE9, + 0xFF, 0xFA, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, + 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xF5, 0xFF, 0xEB, 0xFF, 0xF4, 0xFF, 0xF1, 0xFF, 0xEC, 0x00, 0x00, + 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0xFF, 0xEF, + 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xEF, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0xFF, 0xF4, + 0xFF, 0xF0, 0xFF, 0xFB, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFA, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0xFF, 0xF6, 0xFF, 0xED, 0xFF, 0xF5, 0xFF, 0xF2, 0xFF, 0xEE, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, + 0xFF, 0xDF, 0x00, 0x00, 0xFF, 0xE5, 0x00, 0x00, 0xFF, 0xDE, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, + 0xFF, 0xEC, 0xFF, 0xD5, 0xFF, 0xFA, 0xFF, 0xD5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFA, 0xFF, 0xF7, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE4, 0x00, 0x00, 0xFF, 0xDE, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE3, 0xFF, 0xEB, 0xFF, 0xDB, 0xFF, 0xE8, 0xFF, 0xE6, + 0xFF, 0xD9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, + 0xFF, 0xFA, 0xFF, 0xF9, 0xFF, 0xFB, 0xFF, 0xF4, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, + 0xFF, 0xF5, 0x00, 0x00, 0xFF, 0xF5, 0xFF, 0xF9, 0xFF, 0xF3, 0x00, 0x00, 0xFF, 0xF4, 0xFF, 0xF6, + 0xFF, 0xF5, 0xFF, 0xF8, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xF8, 0xFF, 0xF2, + 0xFF, 0xFA, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xF8, 0xFF, 0xF4, 0xFF, 0xF6, 0xFF, 0xF6, + 0x00, 0x00, 0xFF, 0xEF, 0xFF, 0xF9, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xF7, 0xFF, 0xFB, + 0xFF, 0xFB, 0xFF, 0xF5, 0xFF, 0xF6, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0xFF, 0xF9, 0xFF, 0xFA, 0xFF, 0xF5, 0xFF, 0xF8, + 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0xFF, 0xF8, + 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xFA, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xFA, 0xFF, 0xFB, + 0xFF, 0xFA, 0xFF, 0xF9, 0xFF, 0xF9, 0xFF, 0xF9, 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xFB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, + 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0xFF, 0xE9, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xE5, 0xFF, 0xEA, + 0xFF, 0xFB, 0xFF, 0xF9, 0xFF, 0xEC, 0xFF, 0xE6, 0x00, 0x00, 0xFF, 0xE9, 0xFF, 0xEF, 0xFF, 0xDF, + 0xFF, 0xEE, 0xFF, 0xE0, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xED, 0xFF, 0xEF, 0xFF, 0xE7, 0xFF, 0xEF, 0xFF, 0xE7, 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xF0, + 0xFF, 0xF5, 0xFF, 0xF7, 0xFF, 0xE9, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xF6, 0xFF, 0xFB, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0xFF, 0xF2, 0xFF, 0xED, + 0xFF, 0xEA, 0xFF, 0xF2, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, 0xFF, 0xFA, 0x00, 0x00, + 0xFF, 0xF8, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBE, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDC, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD4, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF4, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0xFF, 0xFB, 0xFF, 0xFB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC7, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEA, 0xFF, 0xF0, 0x00, 0x00, + 0xFF, 0xF7, 0x00, 0x00, 0xFF, 0xEF, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, 0xFF, 0xEE, 0xFF, 0xED, + 0xFF, 0xF8, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, + 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF3, 0xFF, 0xFA, 0xFF, 0xEE, 0xFF, 0xF9, 0xFF, 0xF6, 0xFF, 0xEF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xC3, 0xFF, 0xD6, 0xFF, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xB6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC5, 0xFF, 0xC8, 0xFF, 0xD0, + 0xFF, 0xC8, 0xFF, 0xB0, 0xFF, 0xAF, 0xFF, 0xA5, 0xFF, 0xAD, 0xFF, 0xD7, 0xFF, 0xA9, 0xFF, 0xD9, + 0xFF, 0xBD, 0xFF, 0xC7, 0xFF, 0xA7, 0xFF, 0xC5, 0xFF, 0xA3, 0xFF, 0xC5, 0xFF, 0xC1, 0xFF, 0xBF, + 0xFF, 0xC5, 0xFF, 0xCC, 0x00, 0x00, 0xFF, 0xBF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA7, 0xFF, 0xA4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xB9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, 0xFF, 0xEA, + 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0xA0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAB, + 0xFF, 0xB2, 0xFF, 0xA9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAC, + 0xFF, 0xAF, 0xFF, 0xF9, 0x00, 0x00, 0xFF, 0xC3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC3, 0x00, 0x00, 0xFF, 0xC3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, + 0x00, 0x00, 0xFF, 0xF4, 0xFF, 0xE6, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAB, 0xFF, 0xB1, 0xFF, 0xBE, 0xFF, 0xB1, 0xFF, 0xEA, 0xFF, 0xA6, + 0xFF, 0xA8, 0xFF, 0xFB, 0xFF, 0xF9, 0xFF, 0xAB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC3, 0xFF, 0xD5, 0xFF, 0xDF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD6, 0xFF, 0xD0, + 0xFF, 0xD5, 0xFF, 0xD6, 0xFF, 0xC5, 0xFF, 0xC6, 0xFF, 0xC7, 0xFF, 0xCE, 0xFF, 0xD5, 0xFF, 0xC3, + 0xFF, 0xE1, 0xFF, 0xCA, 0xFF, 0xD6, 0xFF, 0xB3, 0xFF, 0xD4, 0xFF, 0xA7, 0xFF, 0xEC, 0xFF, 0xF5, + 0xFF, 0xF7, 0xFF, 0xF0, 0xFF, 0xFB, 0x00, 0x07, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0xFF, 0xDA, 0x00, 0x00, 0xFF, 0xF6, + 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, + 0xFF, 0xF2, 0xFF, 0xEA, 0xFF, 0xF9, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD0, 0xFF, 0xD7, 0xFF, 0xD3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD0, 0xFF, 0xD3, 0xFF, 0xF3, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEA, 0x00, 0x00, 0xFF, 0xE1, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCC, 0xFF, 0xD8, 0xFF, 0xF2, 0xFF, 0xDA, 0xFF, 0xE9, + 0xFF, 0xE9, 0xFF, 0xB7, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, + 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0xFF, 0xEF, 0xFF, 0xEA, + 0xFF, 0xF2, 0xFF, 0xE6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0xFF, 0xEB, + 0x00, 0x00, 0xFF, 0xE5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD7, 0xFF, 0xDE, 0x00, 0x00, 0xFF, 0xE5, 0x00, 0x00, 0xFF, 0xDD, 0xFF, 0xF7, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE7, 0xFF, 0xE6, 0xFF, 0xD7, 0xFF, 0xF8, 0xFF, 0xD3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xF7, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, + 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDE, 0xFF, 0xEB, 0xFF, 0xDA, + 0xFF, 0xE8, 0xFF, 0xE3, 0xFF, 0xD7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFA, 0xFF, 0xF7, 0xFF, 0xED, 0xFF, 0xF1, 0xFF, 0xF5, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xF1, + 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, + 0x00, 0x00, 0xFF, 0xBE, 0xFF, 0xEA, 0xFF, 0xF3, 0xFF, 0xF4, 0xFF, 0xD5, 0xFF, 0xFA, 0xFF, 0xF9, + 0xFF, 0xF9, 0xFF, 0xCC, 0x00, 0x00, 0xFF, 0xC3, 0xFF, 0xFA, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, + 0xFF, 0xF3, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0xFF, 0xF6, 0xFF, 0xF2, 0xFF, 0xF5, + 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xEA, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB9, 0xFF, 0xF9, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE9, 0xFF, 0xEF, 0x00, 0x00, 0xFF, 0xF6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0xFF, 0xEB, 0xFF, 0xFA, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0xFF, 0xFA, 0xFF, 0xFB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xFB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDE, 0xFF, 0xE4, + 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC2, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC9, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDD, + 0xFF, 0xE5, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB9, 0xFF, 0xF8, + 0x00, 0x00, 0xFF, 0xE5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCB, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, + 0xFF, 0xD9, 0xFF, 0xE0, 0xFF, 0xF9, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF9, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xCA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xCC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, + 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xCE, 0xFF, 0xD5, 0x00, 0x00, 0xFF, 0xDF, 0x00, 0x00, 0xFF, 0xD7, 0xFF, 0xC7, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBD, 0xFF, 0xF7, 0x00, 0x00, 0xFF, 0xC6, 0xFF, 0xD1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xCB, 0x00, 0x00, 0xFF, 0xC1, 0xFF, 0xE7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xCD, 0xFF, 0xE9, 0xFF, 0xE4, 0xFF, 0xD2, 0xFF, 0xEB, 0xFF, 0xD1, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD1, 0xFF, 0xF6, 0xFF, 0xF2, + 0xFF, 0xD5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE9, + 0x00, 0x00, 0xFF, 0xE6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD6, 0xFF, 0xE1, 0x00, 0x00, 0xFF, 0xE5, 0x00, 0x00, 0xFF, 0xE3, + 0xFF, 0xD1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xC6, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xCF, 0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD9, 0xFF, 0xEF, 0x00, 0x00, 0xFF, 0xE0, 0xFF, 0xF4, 0xFF, 0xDF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF2, 0x00, 0x00, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0xFF, 0xEA, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCE, 0xFF, 0xF9, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xEB, 0xFF, 0xF0, 0xFF, 0xF6, 0xFF, 0xF7, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCC, 0xFF, 0xF0, 0xFF, 0xF6, 0xFF, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0xFF, 0xD6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0xFF, 0xE7, 0xFF, 0xED, 0xFF, 0xF6, + 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0xFF, 0xF8, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, + 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0xFF, 0xD3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCE, 0xFF, 0xC9, + 0xFF, 0xD0, 0xFF, 0xCB, 0xFF, 0xBE, 0xFF, 0xBE, 0xFF, 0xBA, 0xFF, 0xBD, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xDE, 0xFF, 0xC1, 0xFF, 0xCE, 0xFF, 0xB3, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD7, 0xFF, 0xE1, + 0xFF, 0xE5, 0xFF, 0xDC, 0xFF, 0xE7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCC, 0xFF, 0xC9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE1, + 0xFF, 0xE5, 0xFF, 0xD2, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBC, 0xFF, 0xCB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xC6, 0xFF, 0xEE, 0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDA, 0x00, 0x00, 0xFF, 0xD0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBE, 0xFF, 0xCC, 0xFF, 0xDC, 0xFF, 0xCD, 0xFF, 0xDB, + 0xFF, 0xCD, 0xFF, 0xAE, 0x00, 0x00, 0xFF, 0xF4, 0xFF, 0xC9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, + 0xFF, 0xE8, 0xFF, 0xEF, 0xFF, 0xF6, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFA, 0xFF, 0xFB, 0xFF, 0xF9, 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xF9, 0xFF, 0xFA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xFB, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF4, 0xFF, 0xFA, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xFB, 0xFF, 0xFA, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xEE, 0xFF, 0xE5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xEC, 0xFF, 0xEB, 0xFF, 0xEE, 0xFF, 0xF5, 0x00, 0x00, + 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xFB, 0xFF, 0xF3, 0xFF, 0xFA, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xCA, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD2, 0xFF, 0xDE, 0xFF, 0xF2, 0xFF, 0xFC, 0x00, 0x00, 0xFF, 0xDF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xCB, 0x00, 0x00, 0xFF, 0xCD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, + 0x00, 0x00, 0x00, 0x09, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, + 0xFF, 0xF4, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0xFF, 0xF1, + 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF3, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0xFF, 0xF1, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, + 0xFF, 0xF4, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xE6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFB, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0xFF, 0xEE, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFC, 0xFF, 0xF9, 0xFF, 0xF4, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xFB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, + 0xFF, 0xE7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF6, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, + 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF4, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xF0, 0xFF, 0xF3, 0xFF, 0xF0, 0xFF, 0xEE, + 0xFF, 0xFC, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE6, + 0xFF, 0xF0, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xF4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0xFF, 0xF8, 0xFF, 0xF2, + 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xF6, 0xFF, 0xEF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD9, 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD9, 0xFF, 0xE1, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD3, 0x00, 0x00, 0xFF, 0xD4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x09, 0xFF, 0xEE, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0xFF, 0xF6, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDB, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0xDD, 0xFF, 0xE1, 0xFF, 0xEE, 0xFF, 0xF3, + 0x00, 0x00, 0xFF, 0xDF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD6, 0x00, 0x00, 0xFF, 0xDB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0xFF, 0xFB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x0C, 0xFF, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0xFF, 0xF3, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0xFF, 0xEC, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xD3, 0xFF, 0xE0, 0xFF, 0xF7, 0xFF, 0xE6, 0x00, 0x00, + 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD7, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0xFF, 0xF1, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE9, + 0x00, 0x00, 0xFF, 0xEB, 0xFF, 0xD6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, 0xFF, 0xF5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0xFF, 0xEA, 0x00, 0x00, + 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0xFF, 0xEB, 0xFF, 0xE1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0xFF, 0xEC, + 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDC, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xDD, 0xFF, 0xE1, 0xFF, 0xF0, 0xFF, 0xF4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x10, 0xFF, 0xF4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0xFF, 0xF6, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD0, 0xFF, 0xD6, 0x00, 0x00, + 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xDF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x00, 0xFF, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xFA, 0xFF, 0xDD, 0xFF, 0xF7, 0xFF, 0xF0, + 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0xFF, 0xF1, + 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE4, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE6, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD2, 0xFF, 0xD5, 0x00, 0x00, + 0xFF, 0xE0, 0x00, 0x00, 0xFF, 0xD6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD2, + 0x00, 0x00, 0xFF, 0xD3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE0, 0xFF, 0xEB, 0xFF, 0xEA, 0xFF, 0xCA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x05, 0x02, 0xB9, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x17, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x4D, 0x00, 0x4E, 0x00, 0x4F, + 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x52, 0x00, 0x53, 0x00, 0x07, + 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x1D, 0x00, 0x1E, + 0x00, 0x1F, 0x00, 0x20, 0x00, 0x21, 0x00, 0x22, 0x00, 0x23, 0x00, 0x24, 0x00, 0x24, 0x00, 0x25, + 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, 0x00, 0x24, 0x00, 0x29, 0x00, 0x2A, 0x00, 0x29, 0x00, 0x2B, + 0x00, 0x2C, 0x00, 0x2D, 0x00, 0x2E, 0x00, 0x2F, 0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x33, + 0x00, 0x18, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x37, 0x00, 0x38, + 0x00, 0x39, 0x00, 0x3A, 0x00, 0x3B, 0x00, 0x3C, 0x00, 0x45, 0x00, 0x40, 0x00, 0x3D, 0x00, 0x3D, + 0x00, 0x3E, 0x00, 0x3F, 0x00, 0x40, 0x00, 0x40, 0x00, 0x41, 0x00, 0x38, 0x00, 0x45, 0x00, 0x42, + 0x00, 0x43, 0x00, 0x44, 0x00, 0x45, 0x00, 0x46, 0x00, 0x47, 0x00, 0x48, 0x00, 0x49, 0x00, 0x4A, + 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, + 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x1D, 0x00, 0x1D, 0x00, 0x1D, 0x00, 0x1D, 0x00, 0x1D, + 0x00, 0x1D, 0x00, 0x21, 0x00, 0x1F, 0x00, 0x21, 0x00, 0x21, 0x00, 0x21, 0x00, 0x21, 0x00, 0x24, + 0x00, 0x24, 0x00, 0x24, 0x00, 0x24, 0x00, 0x20, 0x00, 0x24, 0x00, 0x29, 0x00, 0x29, 0x00, 0x29, + 0x00, 0x29, 0x00, 0x29, 0x00, 0x00, 0x00, 0x29, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x2E, 0x00, 0x2E, + 0x00, 0x32, 0x00, 0x34, 0x00, 0x4B, 0x00, 0x37, 0x00, 0x37, 0x00, 0x37, 0x00, 0x37, 0x00, 0x37, + 0x00, 0x37, 0x00, 0x3B, 0x00, 0x39, 0x00, 0x3B, 0x00, 0x3B, 0x00, 0x3B, 0x00, 0x3B, 0x00, 0x3D, + 0x00, 0x3D, 0x00, 0x3D, 0x00, 0x3D, 0x00, 0x4C, 0x00, 0x40, 0x00, 0x41, 0x00, 0x41, 0x00, 0x41, + 0x00, 0x41, 0x00, 0x41, 0x00, 0x00, 0x00, 0x41, 0x00, 0x45, 0x00, 0x45, 0x00, 0x45, 0x00, 0x45, + 0x00, 0x49, 0x00, 0x38, 0x00, 0x49, 0x00, 0x1D, 0x00, 0x37, 0x00, 0x1D, 0x00, 0x37, 0x00, 0x1D, + 0x00, 0x37, 0x00, 0x1F, 0x00, 0x39, 0x00, 0x1F, 0x00, 0x39, 0x00, 0x1F, 0x00, 0x39, 0x00, 0x1F, + 0x00, 0x39, 0x00, 0x20, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x3A, 0x00, 0x21, 0x00, 0x3B, 0x00, 0x21, + 0x00, 0x3B, 0x00, 0x21, 0x00, 0x3B, 0x00, 0x21, 0x00, 0x3B, 0x00, 0x21, 0x00, 0x3B, 0x00, 0x23, + 0x00, 0x45, 0x00, 0x23, 0x00, 0x45, 0x00, 0x23, 0x00, 0x45, 0x00, 0x23, 0x00, 0x45, 0x00, 0x24, + 0x00, 0x40, 0x00, 0x24, 0x00, 0x40, 0x00, 0x24, 0x00, 0x3D, 0x00, 0x24, 0x00, 0x3D, 0x00, 0x24, + 0x00, 0x3D, 0x00, 0x24, 0x00, 0x3D, 0x00, 0x24, 0x00, 0x3D, 0x00, 0x35, 0x00, 0x3D, 0x00, 0x25, + 0x00, 0x3D, 0x00, 0x26, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x27, 0x00, 0x3F, 0x00, 0x27, 0x00, 0x3F, + 0x00, 0x27, 0x00, 0x3F, 0x00, 0x27, 0x00, 0x00, 0x00, 0x27, 0x00, 0x3F, 0x00, 0x24, 0x00, 0x40, + 0x00, 0x24, 0x00, 0x40, 0x00, 0x24, 0x00, 0x40, 0x00, 0x40, 0x00, 0x24, 0x00, 0x40, 0x00, 0x29, + 0x00, 0x41, 0x00, 0x29, 0x00, 0x41, 0x00, 0x29, 0x00, 0x41, 0x00, 0x21, 0x00, 0x3B, 0x00, 0x2B, + 0x00, 0x42, 0x00, 0x2B, 0x00, 0x42, 0x00, 0x2B, 0x00, 0x42, 0x00, 0x2C, 0x00, 0x43, 0x00, 0x2C, + 0x00, 0x43, 0x00, 0x2C, 0x00, 0x43, 0x00, 0x2C, 0x00, 0x43, 0x00, 0x2D, 0x00, 0x44, 0x00, 0x2D, + 0x00, 0x44, 0x00, 0x2D, 0x00, 0x44, 0x00, 0x2E, 0x00, 0x45, 0x00, 0x2E, 0x00, 0x45, 0x00, 0x2E, + 0x00, 0x45, 0x00, 0x2E, 0x00, 0x45, 0x00, 0x2E, 0x00, 0x45, 0x00, 0x2E, 0x00, 0x45, 0x00, 0x30, + 0x00, 0x47, 0x00, 0x32, 0x00, 0x49, 0x00, 0x32, 0x00, 0x33, 0x00, 0x4A, 0x00, 0x33, 0x00, 0x4A, + 0x00, 0x33, 0x00, 0x4A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2C, 0x00, 0x43, 0x00, 0x2D, 0x00, 0x44, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x60, 0x00, 0x76, 0x00, 0x5E, 0x00, 0x6E, 0x00, 0x77, 0x00, 0x63, 0x00, 0x63, + 0x00, 0x78, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x75, 0x00, 0x61, 0x00, 0x00, 0x00, 0x69, 0x00, 0x63, + 0x00, 0x5B, 0x00, 0x5C, 0x00, 0x5D, 0x00, 0x5E, 0x00, 0x5F, 0x00, 0x60, 0x00, 0x61, 0x00, 0x62, + 0x00, 0x63, 0x00, 0x63, 0x00, 0x61, 0x00, 0x63, 0x00, 0x64, 0x00, 0x63, 0x00, 0x65, 0x00, 0x63, + 0x00, 0x66, 0x00, 0x67, 0x00, 0x68, 0x00, 0x69, 0x00, 0x6A, 0x00, 0x6B, 0x00, 0x5F, 0x00, 0x63, + 0x00, 0x63, 0x00, 0x5F, 0x00, 0x6C, 0x00, 0x63, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x65, 0x00, 0x63, + 0x00, 0x7C, 0x00, 0x7D, 0x00, 0x7E, 0x00, 0x7F, 0x00, 0x80, 0x00, 0x81, 0x00, 0x82, 0x00, 0x83, + 0x00, 0x84, 0x00, 0x84, 0x00, 0x85, 0x00, 0x84, 0x00, 0x86, 0x00, 0x84, 0x00, 0x87, 0x00, 0x84, + 0x00, 0x88, 0x00, 0x89, 0x00, 0x8A, 0x00, 0x8B, 0x00, 0x87, 0x00, 0x8C, 0x00, 0x80, 0x00, 0x84, + 0x00, 0x84, 0x00, 0x80, 0x00, 0x8D, 0x00, 0x84, 0x00, 0x8D, 0x00, 0x87, 0x00, 0x87, 0x00, 0x84, + 0x00, 0x00, 0x00, 0x81, 0x00, 0x8F, 0x00, 0x7F, 0x00, 0x95, 0x00, 0x92, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x8D, 0x00, 0x8D, 0x00, 0x8F, 0x00, 0x85, 0x00, 0x84, 0x00, 0x8B, 0x00, 0x84, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5E, 0x00, 0x7F, 0x00, 0x5E, 0x00, 0x7F, + 0x00, 0x70, 0x00, 0x90, 0x00, 0x61, 0x00, 0x82, 0x00, 0x62, 0x00, 0x83, 0x00, 0x61, 0x00, 0x85, + 0x00, 0x61, 0x00, 0x85, 0x00, 0x61, 0x00, 0x85, 0x00, 0x61, 0x00, 0x85, 0x00, 0x5F, 0x00, 0x80, + 0x00, 0x5E, 0x00, 0x7F, 0x00, 0x71, 0x00, 0x97, 0x00, 0x6F, 0x00, 0x96, 0x00, 0x67, 0x00, 0x89, + 0x00, 0x68, 0x00, 0x8A, 0x00, 0x79, 0x00, 0x93, 0x00, 0x79, 0x00, 0x93, 0x00, 0x6B, 0x00, 0x8C, + 0x00, 0x5F, 0x00, 0x80, 0x00, 0x5F, 0x00, 0x80, 0x00, 0x63, 0x00, 0x84, 0x00, 0x6D, 0x00, 0x8E, + 0x00, 0x7B, 0x00, 0x81, 0x00, 0x7B, 0x00, 0x81, 0x00, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, + 0x00, 0x91, 0x00, 0x5F, 0x00, 0x80, 0x00, 0x63, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, + 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5B, 0x00, 0x7C, 0x00, 0x5B, 0x00, 0x7C, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x81, 0x00, 0x65, 0x00, 0x87, 0x00, 0x65, 0x00, 0x87, + 0x00, 0x61, 0x00, 0x82, 0x00, 0x62, 0x00, 0x83, 0x00, 0x7A, 0x00, 0x94, 0x00, 0x63, 0x00, 0x84, + 0x00, 0x63, 0x00, 0x84, 0x00, 0x65, 0x00, 0x87, 0x00, 0x65, 0x00, 0x87, 0x00, 0x65, 0x00, 0x87, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x69, 0x00, 0x8B, 0x00, 0x69, 0x00, 0x8B, 0x00, 0x69, 0x00, 0x8B, + 0x00, 0x63, 0x00, 0x84, 0x00, 0x5E, 0x00, 0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5F, 0x00, 0x80, + 0x00, 0x36, 0x00, 0x00, 0x00, 0x04, 0x00, 0x04, 0x00, 0x0D, 0x00, 0x0E, 0x00, 0x05, 0x00, 0x0D, + 0x00, 0x0E, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, + 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, + 0x00, 0x3D, 0x00, 0x3F, 0x00, 0x3D, 0x00, 0x3F, 0x00, 0x3D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, + 0x00, 0x1A, 0x00, 0x00, 0x00, 0x1B, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x12, 0x00, 0x13, + 0x00, 0x14, 0x00, 0x13, 0x00, 0x14, 0x00, 0x11, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x54, 0x00, 0x55, 0x00, 0x56, 0x00, 0x57, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x59, 0x00, 0x00, 0x00, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, + 0x00, 0x84, 0x00, 0x82, 0x00, 0x84, 0x00, 0x84, 0x00, 0x85, 0x00, 0x99, 0x00, 0x9A, 0x00, 0x9A, + 0x00, 0x9B, 0x00, 0x84, 0x00, 0x9B, 0x00, 0x9C, 0x00, 0x9C, 0x00, 0x87, 0x00, 0x9D, 0x00, 0x9E, + 0x00, 0x73, 0x00, 0x74, 0x00, 0x9F, 0x00, 0x99, 0x00, 0x6C, 0x00, 0x8D, 0x00, 0x73, 0x00, 0x9F, + 0x00, 0x01, 0x00, 0x03, 0x02, 0xBB, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x82, 0x00, 0x01, 0x00, 0x00, 0x00, 0x74, 0x00, 0x66, 0x00, 0x00, 0x00, 0x0D, + 0x00, 0x67, 0x00, 0x0D, 0x00, 0x0E, 0x00, 0x83, 0x00, 0x31, 0x00, 0x32, 0x00, 0x33, 0x00, 0x0F, + 0x00, 0x00, 0x00, 0x7D, 0x00, 0x34, 0x00, 0x84, 0x00, 0x85, 0x00, 0x7E, 0x00, 0x7E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x10, 0x00, 0x02, 0x00, 0x5F, 0x00, 0x4E, 0x00, 0x5F, + 0x00, 0x5F, 0x00, 0x5F, 0x00, 0x4E, 0x00, 0x5F, 0x00, 0x5F, 0x00, 0x03, 0x00, 0x5F, 0x00, 0x5F, + 0x00, 0x7F, 0x00, 0x5F, 0x00, 0x4F, 0x00, 0x5F, 0x00, 0x4F, 0x00, 0x5F, 0x00, 0x35, 0x00, 0x04, + 0x00, 0x50, 0x00, 0x36, 0x00, 0x05, 0x00, 0x37, 0x00, 0x06, 0x00, 0x0B, 0x00, 0x00, 0x00, 0x69, + 0x00, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x57, 0x00, 0x61, 0x00, 0x13, 0x00, 0x11, + 0x00, 0x12, 0x00, 0x60, 0x00, 0x11, 0x00, 0x61, 0x00, 0x62, 0x00, 0x62, 0x00, 0x61, 0x00, 0x5E, + 0x00, 0x58, 0x00, 0x58, 0x00, 0x13, 0x00, 0x58, 0x00, 0x11, 0x00, 0x58, 0x00, 0x59, 0x00, 0x07, + 0x00, 0x5A, 0x00, 0x38, 0x00, 0x08, 0x00, 0x39, 0x00, 0x09, 0x00, 0x3A, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x76, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x6A, 0x00, 0x6B, 0x00, 0x15, 0x00, 0x00, 0x00, 0x73, 0x00, 0x6C, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x7A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6D, 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x02, 0x00, 0x14, + 0x00, 0x4E, 0x00, 0x5F, 0x00, 0x5F, 0x00, 0x5F, 0x00, 0x5F, 0x00, 0x5F, 0x00, 0x5F, 0x00, 0x5F, + 0x00, 0x5F, 0x00, 0x5F, 0x00, 0x5F, 0x00, 0x4F, 0x00, 0x4F, 0x00, 0x4F, 0x00, 0x4F, 0x00, 0x4F, + 0x00, 0x00, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x06, 0x00, 0x5F, + 0x00, 0x61, 0x00, 0x57, 0x00, 0x57, 0x00, 0x57, 0x00, 0x57, 0x00, 0x57, 0x00, 0x57, 0x00, 0x57, + 0x00, 0x13, 0x00, 0x12, 0x00, 0x12, 0x00, 0x12, 0x00, 0x12, 0x00, 0x62, 0x00, 0x62, 0x00, 0x62, + 0x00, 0x62, 0x00, 0x6E, 0x00, 0x58, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, 0x00, 0x13, + 0x00, 0x00, 0x00, 0x13, 0x00, 0x5A, 0x00, 0x5A, 0x00, 0x5A, 0x00, 0x5A, 0x00, 0x09, 0x00, 0x61, + 0x00, 0x09, 0x00, 0x02, 0x00, 0x57, 0x00, 0x02, 0x00, 0x57, 0x00, 0x02, 0x00, 0x57, 0x00, 0x4E, + 0x00, 0x13, 0x00, 0x4E, 0x00, 0x13, 0x00, 0x4E, 0x00, 0x13, 0x00, 0x4E, 0x00, 0x13, 0x00, 0x5F, + 0x00, 0x11, 0x00, 0x5F, 0x00, 0x11, 0x00, 0x5F, 0x00, 0x12, 0x00, 0x5F, 0x00, 0x12, 0x00, 0x5F, + 0x00, 0x12, 0x00, 0x5F, 0x00, 0x12, 0x00, 0x5F, 0x00, 0x12, 0x00, 0x4E, 0x00, 0x11, 0x00, 0x4E, + 0x00, 0x11, 0x00, 0x4E, 0x00, 0x11, 0x00, 0x4E, 0x00, 0x11, 0x00, 0x5F, 0x00, 0x61, 0x00, 0x5F, + 0x00, 0x61, 0x00, 0x5F, 0x00, 0x62, 0x00, 0x5F, 0x00, 0x62, 0x00, 0x5F, 0x00, 0x62, 0x00, 0x5F, + 0x00, 0x62, 0x00, 0x5F, 0x00, 0x62, 0x00, 0x5F, 0x00, 0x62, 0x00, 0x03, 0x00, 0x62, 0x00, 0x5F, + 0x00, 0x61, 0x00, 0x00, 0x00, 0x5F, 0x00, 0x5E, 0x00, 0x5F, 0x00, 0x5E, 0x00, 0x5F, 0x00, 0x5E, + 0x00, 0x00, 0x00, 0x5E, 0x00, 0x5F, 0x00, 0x5E, 0x00, 0x5F, 0x00, 0x58, 0x00, 0x5F, 0x00, 0x58, + 0x00, 0x5F, 0x00, 0x58, 0x00, 0x58, 0x00, 0x5F, 0x00, 0x58, 0x00, 0x4F, 0x00, 0x13, 0x00, 0x4F, + 0x00, 0x13, 0x00, 0x4F, 0x00, 0x13, 0x00, 0x4F, 0x00, 0x13, 0x00, 0x5F, 0x00, 0x58, 0x00, 0x5F, + 0x00, 0x58, 0x00, 0x5F, 0x00, 0x58, 0x00, 0x35, 0x00, 0x59, 0x00, 0x35, 0x00, 0x59, 0x00, 0x35, + 0x00, 0x59, 0x00, 0x35, 0x00, 0x59, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, 0x00, 0x07, 0x00, 0x04, + 0x00, 0x07, 0x00, 0x50, 0x00, 0x5A, 0x00, 0x50, 0x00, 0x5A, 0x00, 0x50, 0x00, 0x5A, 0x00, 0x50, + 0x00, 0x5A, 0x00, 0x50, 0x00, 0x5A, 0x00, 0x50, 0x00, 0x5A, 0x00, 0x05, 0x00, 0x08, 0x00, 0x06, + 0x00, 0x09, 0x00, 0x06, 0x00, 0x0B, 0x00, 0x3A, 0x00, 0x0B, 0x00, 0x3A, 0x00, 0x0B, 0x00, 0x3A, + 0x00, 0x60, 0x00, 0x00, 0x00, 0x35, 0x00, 0x59, 0x00, 0x04, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x49, 0x00, 0x00, 0x00, 0x52, 0x00, 0x4A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x21, + 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x00, 0x00, 0x00, 0x3F, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x1B, 0x00, 0x8E, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, + 0x00, 0x41, 0x00, 0x42, 0x00, 0x53, 0x00, 0x43, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x65, 0x00, 0x5B, 0x00, 0x1C, + 0x00, 0x5C, 0x00, 0x5C, 0x00, 0x1D, 0x00, 0x1F, 0x00, 0x29, 0x00, 0x47, 0x00, 0x5C, 0x00, 0x5C, + 0x00, 0x5C, 0x00, 0x1E, 0x00, 0x64, 0x00, 0x5C, 0x00, 0x1F, 0x00, 0x5C, 0x00, 0x5C, 0x00, 0x1F, + 0x00, 0x2A, 0x00, 0x2B, 0x00, 0x1F, 0x00, 0x2C, 0x00, 0x5C, 0x00, 0x54, 0x00, 0x5C, 0x00, 0x5C, + 0x00, 0x2D, 0x00, 0x5C, 0x00, 0x5C, 0x00, 0x48, 0x00, 0x5C, 0x00, 0x20, 0x00, 0x00, 0x00, 0x1F, + 0x00, 0x2E, 0x00, 0x5C, 0x00, 0x1F, 0x00, 0x63, 0x00, 0x8D, 0x00, 0x8D, 0x00, 0x8D, 0x00, 0x22, + 0x00, 0x5C, 0x00, 0x2E, 0x00, 0x5C, 0x00, 0x5C, 0x00, 0x2B, 0x00, 0x5C, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5C, 0x00, 0x00, 0x00, 0x5C, 0x00, 0x00, 0x00, 0x5C, + 0x00, 0x3F, 0x00, 0x29, 0x00, 0x40, 0x00, 0x47, 0x00, 0x00, 0x00, 0x5C, 0x00, 0x00, 0x00, 0x5C, + 0x00, 0x00, 0x00, 0x5C, 0x00, 0x41, 0x00, 0x2D, 0x00, 0x00, 0x00, 0x5C, 0x00, 0x00, 0x00, 0x5C, + 0x00, 0x00, 0x00, 0x5C, 0x00, 0x52, 0x00, 0x1F, 0x00, 0x52, 0x00, 0x1F, 0x00, 0x41, 0x00, 0x2A, + 0x00, 0x4B, 0x00, 0x2F, 0x00, 0x4B, 0x00, 0x2F, 0x00, 0x43, 0x00, 0x2C, 0x00, 0x41, 0x00, 0x2A, + 0x00, 0x44, 0x00, 0x54, 0x00, 0x44, 0x00, 0x54, 0x00, 0x00, 0x00, 0x5C, 0x00, 0x30, 0x00, 0x56, + 0x00, 0x30, 0x00, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5C, 0x00, 0x1B, + 0x00, 0x1E, 0x00, 0x00, 0x00, 0x5C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x54, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x5B, 0x00, 0x19, 0x00, 0x5B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x1F, 0x00, 0x55, 0x00, 0x5D, 0x00, 0x55, 0x00, 0x5D, 0x00, 0x3F, 0x00, 0x29, + 0x00, 0x40, 0x00, 0x47, 0x00, 0x4D, 0x00, 0x4C, 0x00, 0x00, 0x00, 0x5C, 0x00, 0x00, 0x00, 0x5C, + 0x00, 0x52, 0x00, 0x1F, 0x00, 0x52, 0x00, 0x1F, 0x00, 0x52, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x42, 0x00, 0x2B, 0x00, 0x42, 0x00, 0x2B, 0x00, 0x42, 0x00, 0x2B, 0x00, 0x44, 0x00, 0x54, + 0x00, 0x00, 0x00, 0x5C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5C, 0x00, 0x80, 0x00, 0x00, + 0x00, 0x67, 0x00, 0x67, 0x00, 0x51, 0x00, 0x0A, 0x00, 0x0D, 0x00, 0x51, 0x00, 0x0A, 0x00, 0x0D, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x15, 0x00, 0x81, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, + 0x00, 0x60, 0x00, 0x60, 0x00, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x77, + 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x79, 0x00, 0x71, 0x00, 0x72, 0x00, 0x7B, 0x00, 0x72, + 0x00, 0x7B, 0x00, 0x70, 0x00, 0x70, 0x00, 0x7C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, + 0x00, 0x3B, 0x00, 0x3C, 0x00, 0x3D, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, + 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8F, 0x00, 0x86, 0x00, 0x29, + 0x00, 0x87, 0x00, 0x87, 0x00, 0x90, 0x00, 0x8C, 0x00, 0x5C, 0x00, 0x5C, 0x00, 0x87, 0x00, 0x87, + 0x00, 0x87, 0x00, 0x88, 0x00, 0x89, 0x00, 0x5C, 0x00, 0x8A, 0x00, 0x8B, 0x00, 0x24, 0x00, 0x25, + 0x00, 0x26, 0x00, 0x8C, 0x00, 0x27, 0x00, 0x28, 0x00, 0x25, 0x00, 0x8C, 0x00, 0x02, 0x00, 0x2B, + 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x05, 0x00, 0x05, 0x00, 0x01, 0x00, 0x09, 0x00, 0x0B, + 0x00, 0x02, 0x00, 0x0D, 0x00, 0x0D, 0x00, 0x05, 0x00, 0x0F, 0x00, 0x15, 0x00, 0x06, 0x00, 0x17, + 0x00, 0x17, 0x00, 0x0D, 0x00, 0x1A, 0x00, 0x1E, 0x00, 0x0E, 0x00, 0x23, 0x00, 0x3F, 0x00, 0x13, + 0x00, 0x44, 0x00, 0x5E, 0x00, 0x30, 0x00, 0x63, 0x00, 0x63, 0x00, 0x4B, 0x00, 0x6C, 0x00, 0x6C, + 0x00, 0x4C, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x4D, 0x00, 0x78, 0x00, 0x78, 0x00, 0x4E, 0x00, 0x7C, + 0x00, 0x7C, 0x00, 0x4F, 0x00, 0x80, 0x00, 0x97, 0x00, 0x50, 0x00, 0x99, 0x00, 0xB7, 0x00, 0x68, + 0x00, 0xB9, 0x00, 0xF8, 0x00, 0x87, 0x00, 0xFA, 0x01, 0x00, 0x00, 0xC7, 0x01, 0x02, 0x01, 0x3F, + 0x00, 0xCE, 0x01, 0x42, 0x01, 0x45, 0x01, 0x0C, 0x01, 0x4F, 0x01, 0x5A, 0x01, 0x10, 0x01, 0x5C, + 0x01, 0x9D, 0x01, 0x1C, 0x01, 0x9F, 0x01, 0xA3, 0x01, 0x5E, 0x01, 0xA7, 0x01, 0xAD, 0x01, 0x63, + 0x01, 0xBA, 0x01, 0xEA, 0x01, 0x6A, 0x01, 0xED, 0x01, 0xF2, 0x01, 0x9B, 0x01, 0xF5, 0x01, 0xF6, + 0x01, 0xA1, 0x01, 0xFA, 0x01, 0xFD, 0x01, 0xA3, 0x02, 0x00, 0x02, 0x15, 0x01, 0xA7, 0x02, 0x18, + 0x02, 0x21, 0x01, 0xBD, 0x02, 0x24, 0x02, 0x26, 0x01, 0xC7, 0x02, 0x28, 0x02, 0x2F, 0x01, 0xCA, + 0x02, 0x35, 0x02, 0x36, 0x01, 0xD2, 0x02, 0x55, 0x02, 0x5A, 0x01, 0xD4, 0x02, 0x65, 0x02, 0x66, + 0x01, 0xDA, 0x02, 0x68, 0x02, 0x68, 0x01, 0xDC, 0x02, 0x6A, 0x02, 0x6A, 0x01, 0xDD, 0x02, 0x6C, + 0x02, 0x72, 0x01, 0xDE, 0x02, 0x74, 0x02, 0x74, 0x01, 0xE5, 0x02, 0x77, 0x02, 0x7B, 0x01, 0xE6, + 0x02, 0x7E, 0x02, 0x7E, 0x01, 0xEB, 0x02, 0x80, 0x02, 0x80, 0x01, 0xEC, 0x02, 0xA5, 0x02, 0xBD, + 0x01, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xCC, 0x3D, 0xA2, 0xCF, + 0x00, 0x00, 0x00, 0x00, 0xCC, 0x27, 0x3B, 0x1C, 0x00, 0x00, 0x00, 0x00, 0xCC, 0x46, 0x98, 0x3C +}; +BYTE icomoon2[] = { + 0x00, 0x01, 0x00, 0x00, 0x00, 0x0B, 0x00, 0x80, 0x00, 0x03, 0x00, 0x30, 0x4F, 0x53, 0x2F, 0x32, + 0x12, 0x6A, 0x0C, 0xA6, 0x00, 0x00, 0x00, 0xBC, 0x00, 0x00, 0x00, 0x60, 0x63, 0x6D, 0x61, 0x70, + 0xEA, 0x31, 0xEB, 0xD1, 0x00, 0x00, 0x01, 0x1C, 0x00, 0x00, 0x00, 0x84, 0x67, 0x61, 0x73, 0x70, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x01, 0xA0, 0x00, 0x00, 0x00, 0x08, 0x67, 0x6C, 0x79, 0x66, + 0x17, 0x2B, 0x06, 0x4B, 0x00, 0x00, 0x01, 0xA8, 0x00, 0x00, 0xA8, 0xDC, 0x68, 0x65, 0x61, 0x64, + 0x16, 0xCD, 0xCB, 0xF3, 0x00, 0x00, 0xAA, 0x84, 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, 0x65, 0x61, + 0x10, 0xF7, 0x0D, 0xAE, 0x00, 0x00, 0xAA, 0xBC, 0x00, 0x00, 0x00, 0x24, 0x68, 0x6D, 0x74, 0x78, + 0xB3, 0xEA, 0x13, 0x65, 0x00, 0x00, 0xAA, 0xE0, 0x00, 0x00, 0x00, 0xE8, 0x6C, 0x6F, 0x63, 0x61, + 0xCD, 0xA6, 0x9F, 0x28, 0x00, 0x00, 0xAB, 0xC8, 0x00, 0x00, 0x00, 0x76, 0x6D, 0x61, 0x78, 0x70, + 0x00, 0x4B, 0x02, 0x31, 0x00, 0x00, 0xAC, 0x40, 0x00, 0x00, 0x00, 0x20, 0x6E, 0x61, 0x6D, 0x65, + 0x99, 0x4A, 0x09, 0xFB, 0x00, 0x00, 0xAC, 0x60, 0x00, 0x00, 0x01, 0x86, 0x70, 0x6F, 0x73, 0x74, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0xAD, 0xE8, 0x00, 0x00, 0x00, 0x20, 0x00, 0x03, 0x07, 0xDA, + 0x01, 0x90, 0x00, 0x05, 0x00, 0x00, 0x02, 0x99, 0x02, 0xCC, 0x00, 0x00, 0x00, 0x8F, 0x02, 0x99, + 0x02, 0xCC, 0x00, 0x00, 0x01, 0xEB, 0x00, 0x33, 0x01, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0xE9, 0x31, + 0x03, 0xC0, 0xFF, 0xC0, 0x00, 0x40, 0x03, 0xC0, 0x00, 0x40, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x02, 0x71, 0x03, 0x58, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1C, + 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x04, 0x00, 0x68, 0x00, 0x00, 0x00, 0x16, + 0x00, 0x10, 0x00, 0x03, 0x00, 0x06, 0x00, 0x01, 0x00, 0x20, 0x00, 0x33, 0x00, 0x57, 0x00, 0x5A, + 0x00, 0x67, 0x00, 0x7A, 0xE9, 0x0A, 0xE9, 0x31, 0xFF, 0xFD, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x00, 0x31, 0x00, 0x42, 0x00, 0x59, 0x00, 0x61, 0x00, 0x69, 0xE9, 0x0A, 0xE9, 0x31, + 0xFF, 0xFD, 0xFF, 0xFF, 0x00, 0x01, 0xFF, 0xE3, 0xFF, 0xD3, 0xFF, 0xC5, 0xFF, 0xC4, 0xFF, 0xBE, + 0xFF, 0xBD, 0x17, 0x2E, 0x17, 0x08, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x37, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x37, 0x39, 0x01, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x54, 0x00, 0x42, 0x07, 0xDB, 0x03, 0x40, 0x01, 0x07, 0x01, 0x14, 0x01, 0x27, + 0x01, 0x2A, 0x00, 0x00, 0x01, 0x3E, 0x01, 0x27, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, + 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x15, + 0x14, 0x06, 0x17, 0x16, 0x06, 0x27, 0x2A, 0x01, 0x23, 0x1E, 0x01, 0x17, 0x16, 0x14, 0x15, 0x16, + 0x06, 0x23, 0x2A, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x15, 0x14, 0x06, 0x15, 0x14, 0x16, + 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x26, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x26, + 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x0E, 0x01, 0x15, + 0x1C, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, 0x16, 0x07, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x36, 0x35, 0x26, 0x36, 0x27, 0x26, 0x06, 0x23, 0x06, 0x26, 0x27, 0x26, 0x36, 0x35, 0x34, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x34, 0x26, 0x27, + 0x2E, 0x01, 0x23, 0x22, 0x06, 0x23, 0x06, 0x26, 0x07, 0x06, 0x26, 0x35, 0x3C, 0x01, 0x35, 0x3C, + 0x01, 0x35, 0x34, 0x06, 0x27, 0x26, 0x06, 0x27, 0x30, 0x26, 0x33, 0x26, 0x06, 0x23, 0x2A, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x22, 0x16, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x14, 0x06, 0x07, + 0x06, 0x22, 0x07, 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x16, 0x33, 0x1E, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x37, 0x3A, 0x01, 0x37, 0x32, 0x36, 0x35, 0x3C, 0x01, + 0x35, 0x34, 0x26, 0x37, 0x36, 0x16, 0x35, 0x34, 0x36, 0x37, 0x01, 0x2E, 0x01, 0x27, 0x0E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x2E, 0x01, 0x27, 0x37, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x16, + 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x01, 0x26, 0x16, 0x03, 0x9A, 0x01, + 0x03, 0x01, 0x17, 0x16, 0x15, 0x2D, 0x5A, 0x2D, 0x46, 0x8B, 0x8B, 0x8B, 0x45, 0x0B, 0x45, 0x07, + 0x08, 0x09, 0x09, 0x08, 0x32, 0x10, 0x14, 0x2C, 0x13, 0x0A, 0x04, 0x02, 0x01, 0x01, 0x02, 0x12, + 0x18, 0x2F, 0x18, 0x0B, 0x15, 0x0B, 0x01, 0x01, 0x03, 0x11, 0x10, 0x0A, 0x07, 0x08, 0x11, 0x08, + 0x03, 0x32, 0x02, 0x06, 0x0E, 0x05, 0x05, 0x09, 0x04, 0x05, 0x16, 0x19, 0x0D, 0x23, 0x0F, 0x0A, + 0x15, 0x09, 0x06, 0x19, 0x06, 0x0F, 0x07, 0x05, 0x03, 0x09, 0x03, 0x01, 0x01, 0x05, 0x02, 0x03, + 0x02, 0x01, 0x02, 0x02, 0x05, 0x01, 0x01, 0x01, 0x02, 0x0E, 0x16, 0x1C, 0x1B, 0x15, 0x09, 0x0F, + 0x09, 0x0D, 0x17, 0x10, 0x21, 0x3D, 0x18, 0x20, 0x0E, 0x02, 0x06, 0x03, 0x03, 0x02, 0x05, 0x3F, + 0x0D, 0x1B, 0x38, 0x1C, 0x01, 0x01, 0x01, 0x02, 0x01, 0x02, 0x11, 0x03, 0x0F, 0x14, 0x04, 0x04, + 0x01, 0x03, 0x09, 0x01, 0x07, 0x01, 0x02, 0x01, 0x01, 0x03, 0x0C, 0x03, 0x06, 0x0F, 0x01, 0x03, + 0x05, 0x03, 0x0D, 0x06, 0x33, 0x67, 0x33, 0x16, 0x3E, 0x13, 0x0A, 0x13, 0x16, 0x06, 0x02, 0x06, + 0x02, 0x04, 0x01, 0x03, 0x0A, 0x03, 0x3D, 0x7B, 0x3E, 0x3B, 0x77, 0x3C, 0x10, 0x05, 0x07, 0x02, + 0x03, 0x06, 0x03, 0x06, 0x02, 0x05, 0x13, 0x10, 0x0E, 0x01, 0x1E, 0x48, 0x21, 0x48, 0x90, 0x48, + 0x2A, 0x54, 0x2A, 0x0E, 0x1A, 0x0E, 0x06, 0x01, 0x05, 0x05, 0x0A, 0x97, 0x05, 0x05, 0x01, 0xD6, + 0x0D, 0x11, 0x01, 0x06, 0x1C, 0x05, 0x0F, 0x23, 0x15, 0x03, 0x06, 0x02, 0x79, 0x10, 0x2E, 0x18, + 0x12, 0x0D, 0x07, 0x08, 0x05, 0x06, 0x0A, 0x09, 0x12, 0x08, 0x0F, 0x15, 0x0A, 0xFE, 0x1D, 0x02, + 0x02, 0x03, 0x35, 0x02, 0x04, 0x05, 0x03, 0x25, 0x06, 0x0D, 0x11, 0x29, 0x12, 0x13, 0x0A, 0x04, + 0x02, 0x01, 0x07, 0x0B, 0x0F, 0x36, 0x0F, 0x0B, 0x07, 0x01, 0x19, 0x30, 0x18, 0x03, 0x0A, 0x03, + 0x11, 0x08, 0x0E, 0x0F, 0x1E, 0x0F, 0x06, 0x03, 0x0B, 0x11, 0x22, 0x11, 0x12, 0x21, 0x11, 0x10, + 0x23, 0x0F, 0x0F, 0x20, 0x10, 0x15, 0x63, 0x0D, 0x08, 0x05, 0x02, 0x01, 0x01, 0x01, 0x01, 0x07, + 0x02, 0x06, 0x0A, 0x0D, 0x09, 0x11, 0x09, 0x03, 0x08, 0x04, 0x06, 0x05, 0x05, 0x07, 0x14, 0x07, + 0x10, 0x20, 0x11, 0x07, 0x11, 0x08, 0x08, 0x10, 0x08, 0x12, 0x21, 0x12, 0x13, 0x25, 0x04, 0x06, + 0x30, 0x0A, 0x05, 0x0E, 0x05, 0x07, 0x0B, 0x02, 0x04, 0x01, 0x18, 0x3B, 0x84, 0x46, 0x09, 0x11, + 0x09, 0x04, 0x09, 0x0E, 0x03, 0x0A, 0x04, 0x0D, 0x01, 0x01, 0x06, 0x02, 0x02, 0x01, 0x01, 0x01, + 0x0F, 0x0F, 0x25, 0x10, 0x21, 0x43, 0x1E, 0x04, 0x09, 0x04, 0x04, 0x08, 0x04, 0x09, 0x10, 0x08, + 0x11, 0x21, 0x12, 0x0A, 0x0E, 0x09, 0x05, 0x1A, 0x01, 0x01, 0x06, 0x0A, 0x05, 0x12, 0x08, 0x11, + 0x20, 0x10, 0x03, 0x08, 0x04, 0x08, 0x06, 0x06, 0x01, 0x01, 0x04, 0x07, 0x01, 0x01, 0x1C, 0x0A, + 0x15, 0x2E, 0x16, 0x20, 0x3F, 0x1F, 0x07, 0x0E, 0x06, 0x10, 0x02, 0x36, 0x6C, 0x36, 0x1F, 0x3E, + 0x1F, 0x06, 0x0C, 0x06, 0x05, 0x07, 0x05, 0x01, 0x01, 0x01, 0x03, 0x07, 0x08, 0x11, 0x09, 0x0D, + 0x2C, 0x0B, 0x15, 0x10, 0x08, 0x0A, 0x03, 0x08, 0xFE, 0x7A, 0x0D, 0x21, 0x12, 0x04, 0x1F, 0x05, + 0x0E, 0x12, 0x02, 0x03, 0x05, 0x02, 0x35, 0x11, 0x17, 0x04, 0x03, 0x04, 0x14, 0x0E, 0x1D, 0x0D, + 0x07, 0x09, 0x02, 0x01, 0x07, 0x04, 0x0A, 0x19, 0x0E, 0xFE, 0x92, 0x05, 0x06, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x56, 0x00, 0x40, 0x02, 0x77, 0x03, 0x40, 0x00, 0x29, 0x00, 0x47, 0x00, 0x66, + 0x00, 0x84, 0x00, 0x00, 0x01, 0x16, 0x06, 0x0F, 0x07, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x2F, + 0x01, 0x35, 0x3F, 0x01, 0x17, 0x1E, 0x01, 0x3F, 0x05, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x3F, + 0x02, 0x17, 0x15, 0x07, 0x2E, 0x01, 0x27, 0x0F, 0x03, 0x0E, 0x01, 0x27, 0x0F, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x3F, 0x06, 0x35, 0x27, 0x07, 0x1F, 0x01, 0x0F, 0x05, 0x2F, 0x04, + 0x35, 0x37, 0x33, 0x1E, 0x01, 0x3F, 0x04, 0x33, 0x1E, 0x01, 0x1F, 0x01, 0x3F, 0x01, 0x33, 0x0F, + 0x07, 0x33, 0x37, 0x33, 0x37, 0x1F, 0x06, 0x33, 0x1F, 0x01, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, + 0x23, 0x07, 0x02, 0x77, 0x09, 0x09, 0x12, 0x26, 0x36, 0x36, 0x2F, 0x24, 0x0D, 0x07, 0x09, 0x3A, + 0x5C, 0x21, 0x1A, 0x25, 0x0B, 0x0C, 0x05, 0x07, 0x12, 0x1A, 0x37, 0x1C, 0x32, 0x26, 0x18, 0x0B, + 0x0C, 0x0D, 0x21, 0x49, 0x2A, 0x14, 0x2B, 0x16, 0x0B, 0x09, 0x05, 0x70, 0x2D, 0x50, 0x22, 0x05, + 0x07, 0x1F, 0x2A, 0x25, 0x4E, 0x28, 0x02, 0x02, 0x0B, 0x0A, 0x23, 0x18, 0x1E, 0x54, 0x36, 0x17, + 0x21, 0x26, 0x26, 0x36, 0x24, 0x14, 0x02, 0x55, 0x12, 0x02, 0x12, 0x1B, 0x22, 0x23, 0x20, 0x1D, + 0x4C, 0x34, 0x1F, 0x10, 0x06, 0x04, 0x02, 0x15, 0x2A, 0x16, 0x24, 0x1B, 0x10, 0x04, 0x03, 0x0C, + 0x1A, 0x0D, 0x31, 0x2B, 0x1D, 0x05, 0xCF, 0x35, 0x14, 0x12, 0x0E, 0x04, 0x07, 0x02, 0x09, 0x0B, + 0x1B, 0x12, 0x0F, 0x15, 0x14, 0x0F, 0x05, 0x07, 0x0B, 0x4C, 0x14, 0x14, 0x1B, 0x1B, 0x0B, 0x18, + 0x0E, 0x36, 0x02, 0xC5, 0x52, 0x95, 0x43, 0x69, 0x5E, 0x41, 0x2D, 0x16, 0x0C, 0x04, 0x05, 0x28, + 0x62, 0x3B, 0x2D, 0x69, 0x3A, 0x5C, 0x49, 0x34, 0x28, 0x0B, 0x10, 0x09, 0x07, 0x19, 0x1F, 0x1D, + 0x0E, 0x1F, 0x1B, 0x31, 0x35, 0x03, 0x01, 0x0A, 0x0B, 0x0B, 0x05, 0x12, 0x09, 0x24, 0x01, 0x30, + 0x2F, 0x06, 0x07, 0x22, 0x1D, 0x16, 0x05, 0x12, 0x21, 0x2D, 0x7D, 0x38, 0x65, 0x2D, 0x37, 0x5B, + 0x23, 0x0F, 0x1B, 0x26, 0x34, 0x59, 0x63, 0xBA, 0x2A, 0x26, 0x0B, 0x38, 0x74, 0x5C, 0x4A, 0x38, + 0x2B, 0x1D, 0x16, 0x41, 0x45, 0x46, 0x41, 0x3E, 0x55, 0x10, 0x0D, 0x07, 0x07, 0x11, 0x19, 0x14, + 0x09, 0x13, 0x1B, 0x08, 0x14, 0x03, 0x0D, 0x38, 0x10, 0x14, 0x1D, 0x26, 0x07, 0x06, 0x03, 0x03, + 0x02, 0x02, 0x09, 0x0C, 0x06, 0x02, 0x05, 0x02, 0x05, 0x04, 0x0B, 0x32, 0x44, 0x10, 0x09, 0x09, + 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x63, 0x00, 0x5A, 0x03, 0x7F, 0x03, 0x26, 0x00, 0xC3, + 0x00, 0xD3, 0x00, 0xE3, 0x00, 0xF6, 0x00, 0x00, 0x01, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x22, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x16, 0x17, + 0x16, 0x32, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x16, 0x14, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x23, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x30, 0x36, 0x37, 0x36, 0x32, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x16, 0x32, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x07, + 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x33, 0x32, 0x16, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x25, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x07, 0x22, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x27, 0x26, 0x06, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x37, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x22, 0x06, 0x33, 0x16, 0x32, 0x33, 0x1E, 0x01, 0x33, 0x32, 0x26, 0x27, 0x03, + 0x7A, 0x06, 0x0D, 0x07, 0x0A, 0x15, 0x08, 0x20, 0x43, 0x24, 0x15, 0x27, 0x15, 0x1B, 0x35, 0x1B, + 0x10, 0x19, 0x0E, 0x05, 0x0B, 0x06, 0x03, 0x06, 0x02, 0x02, 0x04, 0x03, 0x05, 0x02, 0x03, 0x03, + 0x05, 0x03, 0x04, 0x12, 0x19, 0x04, 0x02, 0x05, 0x03, 0x01, 0x05, 0x02, 0x05, 0x08, 0x04, 0x03, + 0x07, 0x01, 0x03, 0x05, 0x05, 0x09, 0x22, 0x18, 0x0C, 0x19, 0x0E, 0x06, 0x14, 0x01, 0x03, 0x01, + 0x05, 0x01, 0x01, 0x02, 0x05, 0x03, 0x08, 0x03, 0x06, 0x0B, 0x05, 0x0F, 0x1C, 0x0D, 0x2F, 0x42, + 0x07, 0x03, 0x07, 0x03, 0x01, 0x07, 0x03, 0x04, 0x08, 0x05, 0x07, 0x13, 0x0B, 0x0D, 0x1A, 0x0E, + 0x08, 0x0E, 0x07, 0x1D, 0x38, 0x1C, 0x03, 0x04, 0x02, 0x04, 0x01, 0x02, 0x05, 0x02, 0x0F, 0x1C, + 0x0E, 0x12, 0x25, 0x12, 0x0E, 0x09, 0x02, 0x01, 0x10, 0x05, 0x01, 0x02, 0x01, 0x03, 0x06, 0x03, + 0x05, 0x0A, 0x05, 0x06, 0x08, 0x03, 0x15, 0x2A, 0x15, 0x03, 0x05, 0x03, 0x06, 0x0D, 0x04, 0x03, + 0x05, 0x02, 0x07, 0x0D, 0x07, 0x11, 0x21, 0x11, 0x06, 0x0A, 0x06, 0x01, 0x09, 0x09, 0x12, 0x09, + 0x03, 0x09, 0x04, 0x03, 0x11, 0x05, 0x0D, 0x1C, 0x0E, 0x0E, 0x1E, 0x0D, 0x1B, 0x37, 0x1B, 0x15, + 0x2D, 0x15, 0x0B, 0x18, 0x0A, 0x0D, 0x1A, 0x0D, 0x15, 0x29, 0x14, 0x08, 0x01, 0x0C, 0xFE, 0x7D, + 0x04, 0x08, 0x08, 0x05, 0x0E, 0x06, 0x06, 0x05, 0x03, 0x05, 0x08, 0x04, 0x05, 0x11, 0x04, 0x38, + 0x04, 0x02, 0x03, 0x05, 0x11, 0x06, 0x04, 0x0E, 0x03, 0x07, 0x0E, 0x07, 0x03, 0x05, 0x04, 0x44, + 0x02, 0x07, 0x03, 0x08, 0x0F, 0x07, 0x04, 0x01, 0x05, 0x02, 0x07, 0x02, 0x08, 0x0F, 0x07, 0x04, + 0x01, 0x02, 0x01, 0xE3, 0x03, 0x05, 0x01, 0x01, 0x10, 0x05, 0x13, 0x1E, 0x08, 0x05, 0x01, 0x01, + 0x09, 0x02, 0x01, 0x01, 0x06, 0x02, 0x04, 0x01, 0x01, 0x03, 0x03, 0x03, 0x07, 0x03, 0x04, 0x03, + 0x05, 0x05, 0x08, 0x05, 0x05, 0x13, 0x06, 0x05, 0x12, 0x03, 0x01, 0x04, 0x02, 0x06, 0x02, 0x02, + 0x06, 0x03, 0x0C, 0x19, 0x0D, 0x13, 0x26, 0x13, 0x23, 0x40, 0x1B, 0x0D, 0x16, 0x0A, 0x04, 0x0D, + 0x09, 0x06, 0x0D, 0x05, 0x03, 0x04, 0x03, 0x05, 0x03, 0x02, 0x01, 0x04, 0x01, 0x07, 0x02, 0x09, + 0x15, 0x0B, 0x28, 0x70, 0x3E, 0x1D, 0x38, 0x1C, 0x06, 0x06, 0x04, 0x07, 0x0E, 0x07, 0x0A, 0x19, + 0x05, 0x05, 0x0B, 0x05, 0x03, 0x0D, 0x06, 0x17, 0x2E, 0x17, 0x02, 0x04, 0x03, 0x0B, 0x01, 0x02, + 0x01, 0x06, 0x0A, 0x06, 0x07, 0x0E, 0x07, 0x05, 0x06, 0x0F, 0x08, 0x05, 0x01, 0x07, 0x02, 0x04, + 0x07, 0x04, 0x07, 0x06, 0x02, 0x02, 0x03, 0x04, 0x1C, 0x38, 0x1C, 0x03, 0x08, 0x03, 0x08, 0x03, + 0x04, 0x02, 0x04, 0x0A, 0x05, 0x0B, 0x18, 0x0B, 0x04, 0x08, 0x03, 0x02, 0x02, 0x01, 0x0C, 0x19, + 0x0C, 0x05, 0x0A, 0x04, 0x04, 0x03, 0x01, 0x04, 0x08, 0x03, 0x02, 0x05, 0x01, 0x02, 0x01, 0x01, + 0x01, 0x02, 0x05, 0x03, 0x05, 0x06, 0x07, 0x0E, 0x07, 0x0B, 0x1F, 0x0E, 0x08, 0x1F, 0x06, 0x0A, + 0x08, 0x04, 0x03, 0x02, 0x07, 0x02, 0x0C, 0x01, 0x01, 0x02, 0x01, 0x01, 0x07, 0x03, 0x06, 0x01, + 0x07, 0x03, 0x05, 0x08, 0x03, 0x03, 0x02, 0x09, 0x04, 0x07, 0x04, 0x02, 0x03, 0x01, 0x1A, 0x02, + 0x01, 0x01, 0x01, 0x03, 0x01, 0x0E, 0x01, 0x01, 0x02, 0x08, 0x01, 0x00, 0x00, 0x03, 0x00, 0x67, + 0x00, 0x41, 0x02, 0x89, 0x03, 0x40, 0x00, 0x3B, 0x00, 0x6A, 0x00, 0x91, 0x00, 0x00, 0x01, 0x06, + 0x16, 0x15, 0x16, 0x14, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x03, 0x27, 0x26, 0x36, 0x37, + 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x37, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x17, 0x07, 0x16, 0x0E, 0x02, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x34, + 0x36, 0x37, 0x36, 0x16, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x34, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, + 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x03, 0x27, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x23, 0x02, 0x84, 0x01, 0x05, 0x02, + 0x01, 0x02, 0x0A, 0x09, 0x0F, 0x36, 0x26, 0x0A, 0x13, 0x0B, 0x0A, 0x18, 0x0C, 0x09, 0x16, 0x0A, + 0x06, 0x0A, 0x07, 0x0F, 0x1E, 0x0C, 0x2E, 0x4A, 0x35, 0x20, 0x06, 0x04, 0x04, 0x08, 0x19, 0x35, + 0x1E, 0x1C, 0x2C, 0x14, 0x0C, 0x12, 0x09, 0x08, 0x06, 0x03, 0x15, 0x2F, 0x23, 0x12, 0x2A, 0x16, + 0x0E, 0x1C, 0x0D, 0x0A, 0x11, 0x0A, 0x5E, 0x05, 0x07, 0x1A, 0x2F, 0x23, 0x09, 0x15, 0x0B, 0x06, + 0x10, 0x06, 0x10, 0x1E, 0x0D, 0x30, 0x36, 0x09, 0x03, 0x04, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x02, 0x13, 0x03, 0x1B, 0x39, 0x15, 0x0A, 0x12, 0x08, 0x07, 0x08, 0x08, 0x16, 0x0D, 0x15, 0x25, + 0x17, 0x0C, 0x16, 0x07, 0x32, 0x4F, 0x1D, 0x0D, 0x20, 0x11, 0x28, 0x5A, 0x2F, 0x09, 0x0A, 0x12, + 0x14, 0x47, 0x34, 0x0D, 0x1A, 0x0E, 0x07, 0x0E, 0x07, 0x02, 0x05, 0x01, 0x0E, 0x1E, 0x0D, 0x37, + 0x49, 0x28, 0x0B, 0x06, 0x0B, 0x15, 0x0A, 0x09, 0x17, 0x0A, 0x02, 0xCC, 0x11, 0x21, 0x11, 0x15, + 0x29, 0x15, 0x26, 0x4B, 0x25, 0x3B, 0x72, 0x30, 0x0C, 0x1A, 0x0C, 0x0B, 0x14, 0x0B, 0x09, 0x0D, + 0x07, 0x05, 0x07, 0x03, 0x06, 0x1C, 0x0A, 0x29, 0x60, 0x6C, 0x74, 0x3E, 0x31, 0x66, 0x31, 0x10, + 0x14, 0x03, 0x04, 0x1B, 0x11, 0x09, 0x14, 0x0B, 0x0A, 0x17, 0x0C, 0x20, 0x3C, 0x13, 0x0B, 0x0A, + 0x01, 0x08, 0x05, 0x05, 0x05, 0x08, 0x64, 0x33, 0x67, 0x62, 0x59, 0x27, 0x0A, 0x13, 0x07, 0x04, + 0x0C, 0x04, 0x0B, 0x18, 0x0E, 0x31, 0x79, 0x44, 0x19, 0x33, 0x1A, 0x07, 0x0D, 0x07, 0x01, 0x0A, + 0x01, 0x01, 0x0C, 0x01, 0x0A, 0x0F, 0x12, 0x0A, 0x12, 0x0A, 0x08, 0x05, 0x0C, 0x0D, 0x17, 0x08, + 0x0E, 0x06, 0x01, 0x01, 0x0C, 0x38, 0x03, 0x38, 0x27, 0x11, 0x1E, 0x0C, 0x1D, 0x12, 0x16, 0x43, + 0x88, 0x41, 0x47, 0x81, 0x35, 0x0C, 0x17, 0x0A, 0x06, 0x0A, 0x05, 0x05, 0x01, 0x0B, 0x15, 0x0C, + 0x33, 0x7E, 0x8C, 0x94, 0x48, 0x03, 0x06, 0x03, 0x03, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x59, + 0x00, 0x2A, 0x09, 0x30, 0x03, 0x5A, 0x01, 0xA3, 0x01, 0xC1, 0x01, 0xD4, 0x01, 0xE4, 0x02, 0x06, + 0x00, 0x00, 0x01, 0x1E, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x17, 0x16, 0x36, 0x33, 0x16, + 0x36, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x0E, 0x01, 0x07, 0x06, 0x26, + 0x15, 0x14, 0x06, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, + 0x16, 0x06, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x23, 0x26, 0x06, + 0x07, 0x06, 0x26, 0x23, 0x3E, 0x01, 0x35, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x23, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x07, 0x30, 0x06, 0x31, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x1E, + 0x01, 0x33, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, + 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x03, 0x07, 0x0E, 0x01, 0x35, 0x34, 0x36, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x33, 0x36, 0x32, + 0x37, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x32, + 0x36, 0x17, 0x32, 0x16, 0x17, 0x16, 0x36, 0x33, 0x32, 0x16, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x36, + 0x35, 0x34, 0x26, 0x37, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x37, 0x36, 0x16, 0x15, + 0x14, 0x06, 0x33, 0x32, 0x16, 0x35, 0x34, 0x26, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x06, 0x15, 0x14, + 0x36, 0x33, 0x32, 0x26, 0x37, 0x36, 0x16, 0x33, 0x32, 0x36, 0x15, 0x1C, 0x01, 0x33, 0x32, 0x16, + 0x37, 0x36, 0x26, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x06, 0x15, 0x14, 0x16, 0x35, 0x3C, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x06, 0x17, 0x16, 0x36, 0x33, 0x32, 0x34, 0x35, 0x34, 0x16, 0x33, 0x32, + 0x36, 0x17, 0x16, 0x06, 0x33, 0x32, 0x16, 0x37, 0x36, 0x26, 0x33, 0x32, 0x36, 0x15, 0x14, 0x16, + 0x33, 0x32, 0x34, 0x35, 0x34, 0x36, 0x17, 0x16, 0x06, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x06, 0x15, + 0x14, 0x32, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x32, 0x16, + 0x17, 0x1E, 0x01, 0x17, 0x05, 0x2A, 0x03, 0x23, 0x2A, 0x01, 0x23, 0x32, 0x06, 0x33, 0x3A, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x35, + 0x01, 0x14, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x36, 0x26, 0x27, 0x26, 0x06, 0x23, + 0x22, 0x26, 0x15, 0x25, 0x36, 0x26, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x33, + 0x32, 0x16, 0x37, 0x25, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x17, 0x1E, 0x01, 0x17, + 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x08, 0xAC, 0x0C, 0x0E, 0x09, 0x01, 0x01, 0x25, 0x05, 0x09, 0x26, + 0x03, 0x04, 0x09, 0x0A, 0x08, 0x1B, 0x0C, 0x0E, 0x14, 0x0E, 0x03, 0x04, 0x09, 0x08, 0x07, 0x03, + 0x06, 0x05, 0x19, 0x06, 0x05, 0x19, 0x05, 0x08, 0x0E, 0x09, 0x12, 0x05, 0x01, 0x01, 0x01, 0x05, + 0x02, 0x02, 0x04, 0x03, 0x03, 0x04, 0x0A, 0x14, 0x31, 0x03, 0x03, 0x04, 0x01, 0x03, 0x05, 0x03, + 0x01, 0x0A, 0x03, 0x10, 0x14, 0x12, 0x07, 0x0F, 0x06, 0x09, 0x10, 0x09, 0x11, 0x26, 0x12, 0x01, + 0x02, 0x0D, 0x19, 0x0E, 0x0D, 0x1E, 0x0E, 0x04, 0x07, 0x03, 0x01, 0x08, 0x03, 0x0F, 0x06, 0x03, + 0x01, 0x09, 0x12, 0x08, 0x08, 0x11, 0x09, 0x02, 0x0C, 0x08, 0x08, 0x11, 0x08, 0x11, 0x23, 0x11, + 0x05, 0x14, 0x01, 0x02, 0x03, 0x02, 0x05, 0x0B, 0x05, 0x08, 0x11, 0x07, 0x02, 0x04, 0x02, 0x03, + 0x03, 0x0B, 0x12, 0x27, 0x12, 0x10, 0x0F, 0x0F, 0x13, 0x27, 0x14, 0x18, 0x35, 0x18, 0x06, 0x0D, + 0x06, 0x08, 0x0F, 0x06, 0x03, 0x12, 0x03, 0x02, 0x07, 0x04, 0x03, 0x07, 0x03, 0x02, 0x07, 0x02, + 0x06, 0x0B, 0x06, 0x09, 0x11, 0x03, 0x02, 0x05, 0x06, 0x06, 0x18, 0x06, 0x11, 0x20, 0x10, 0x05, + 0x3B, 0x02, 0x05, 0x12, 0x08, 0x14, 0x29, 0x15, 0x08, 0x13, 0x0B, 0x0F, 0x30, 0x13, 0x23, 0x4C, + 0x23, 0x17, 0x2D, 0x15, 0x31, 0x61, 0x31, 0x29, 0x52, 0x52, 0x52, 0x29, 0x10, 0x5B, 0x04, 0x05, + 0x05, 0x01, 0x04, 0x02, 0x2C, 0x14, 0x14, 0x28, 0x14, 0x50, 0x9F, 0x50, 0x27, 0x4E, 0x27, 0x0E, + 0x1E, 0x0D, 0x13, 0x20, 0x0F, 0x11, 0x21, 0x13, 0x07, 0x10, 0x07, 0x08, 0x11, 0x06, 0x0B, 0x18, + 0x0F, 0x0A, 0x10, 0x09, 0x06, 0x0C, 0x06, 0x03, 0x07, 0x03, 0x04, 0x08, 0x03, 0x03, 0x0B, 0x04, + 0x09, 0x09, 0x05, 0x02, 0x02, 0x03, 0x20, 0x04, 0x05, 0x0A, 0x05, 0x04, 0x04, 0x02, 0x02, 0x1E, + 0x01, 0x05, 0x02, 0x11, 0x02, 0x05, 0x06, 0x0C, 0x06, 0x04, 0x01, 0x11, 0x03, 0x03, 0x04, 0x02, + 0x01, 0x0F, 0x02, 0x02, 0x0B, 0x07, 0x02, 0x10, 0x01, 0x01, 0x02, 0x02, 0x06, 0x0B, 0x06, 0x07, + 0x01, 0x1A, 0x06, 0x06, 0x0D, 0x06, 0x02, 0x03, 0x02, 0x01, 0x10, 0x02, 0x06, 0x08, 0x06, 0x02, + 0x0E, 0x02, 0x01, 0x03, 0x03, 0x02, 0x0F, 0x02, 0x02, 0x05, 0x05, 0x07, 0x1A, 0x01, 0x08, 0x09, + 0x1E, 0x02, 0x01, 0x02, 0x02, 0x06, 0x0D, 0x07, 0x08, 0x02, 0x08, 0x01, 0x10, 0x22, 0x10, 0x37, + 0x6F, 0x37, 0x1C, 0x3A, 0x1C, 0x04, 0x0B, 0x03, 0x0A, 0x15, 0x07, 0x03, 0x0C, 0x01, 0x01, 0x01, + 0x03, 0x0F, 0x0D, 0x06, 0x0B, 0x05, 0x02, 0x0F, 0x01, 0x09, 0x0A, 0x02, 0xFD, 0xAE, 0x2B, 0x55, + 0x56, 0x56, 0x2B, 0x20, 0x3F, 0x20, 0x01, 0x03, 0x03, 0x04, 0x09, 0x04, 0x12, 0x25, 0x12, 0x3F, + 0x7E, 0x3F, 0x18, 0x30, 0x18, 0x06, 0x0D, 0x06, 0x07, 0x01, 0xFE, 0x7D, 0x54, 0x0F, 0x0B, 0x15, + 0x0B, 0x0D, 0x0D, 0x05, 0x07, 0x1B, 0x0B, 0x0A, 0x16, 0x0B, 0x16, 0x4D, 0xFD, 0xA2, 0x07, 0x07, + 0x16, 0x0D, 0x1F, 0x0D, 0x0C, 0x0B, 0x07, 0x06, 0x0F, 0x09, 0x0D, 0x29, 0x0B, 0xFE, 0x5A, 0x07, + 0x0E, 0x07, 0x01, 0x06, 0x01, 0x01, 0x02, 0x05, 0x0C, 0x1B, 0x0E, 0x11, 0x26, 0x10, 0x12, 0x23, + 0x11, 0x13, 0x17, 0x04, 0x02, 0x04, 0x03, 0x04, 0x04, 0x0E, 0x13, 0x23, 0x12, 0x1C, 0x38, 0x1D, + 0x03, 0x1B, 0x12, 0x38, 0x15, 0x07, 0x0E, 0x07, 0x04, 0x0F, 0x04, 0x02, 0x02, 0x01, 0x03, 0x0A, + 0x0C, 0x1D, 0x0B, 0x09, 0x04, 0x01, 0x02, 0x06, 0x04, 0x0C, 0x0A, 0x08, 0x08, 0x02, 0x0E, 0x07, + 0x11, 0x02, 0x03, 0x02, 0x01, 0x01, 0x09, 0x03, 0x04, 0x07, 0x03, 0x07, 0x2B, 0x0E, 0x27, 0x4D, + 0x27, 0x12, 0x24, 0x12, 0x07, 0x0F, 0x07, 0x0A, 0x08, 0x01, 0x03, 0x07, 0x1A, 0x12, 0x1B, 0x12, + 0x28, 0x52, 0x28, 0x06, 0x37, 0x02, 0x06, 0x1D, 0x03, 0x01, 0x01, 0x01, 0x01, 0x02, 0x03, 0x03, + 0x07, 0x10, 0x07, 0x07, 0x0E, 0x06, 0x05, 0x02, 0x11, 0x22, 0x11, 0x05, 0x1F, 0x04, 0x05, 0x03, + 0x0A, 0x05, 0x28, 0x4E, 0x27, 0x25, 0x4A, 0x25, 0x0B, 0x01, 0x01, 0x01, 0x03, 0x01, 0x02, 0x03, + 0x02, 0x01, 0x05, 0x06, 0x08, 0x0E, 0x07, 0x17, 0x2E, 0x17, 0x23, 0x44, 0x22, 0x0A, 0x12, 0x09, + 0x0A, 0x11, 0x06, 0x05, 0x26, 0x03, 0x04, 0x03, 0x02, 0x01, 0x02, 0x09, 0x02, 0x04, 0x03, 0x05, + 0x0B, 0x09, 0x05, 0x1A, 0x08, 0x04, 0x12, 0x03, 0x08, 0x02, 0x01, 0x04, 0x04, 0x09, 0x12, 0x09, + 0x0E, 0x24, 0x11, 0x08, 0x16, 0x07, 0x05, 0x02, 0x03, 0x08, 0x12, 0x09, 0x03, 0x21, 0x0A, 0x11, + 0x1F, 0x0F, 0x25, 0x48, 0x24, 0x0D, 0x31, 0x08, 0x0C, 0x10, 0x04, 0x06, 0x09, 0x05, 0x03, 0x12, + 0x08, 0x11, 0x22, 0x12, 0x0E, 0x1D, 0x1D, 0x1D, 0x0F, 0x06, 0x02, 0x1B, 0x25, 0x4F, 0x25, 0x26, + 0x4D, 0x27, 0x1B, 0x07, 0x01, 0x01, 0x01, 0x01, 0x0B, 0x03, 0x05, 0x0C, 0x0C, 0x0B, 0x0B, 0x04, + 0x02, 0x03, 0x02, 0x03, 0x14, 0x05, 0x0B, 0x20, 0x02, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x03, + 0x01, 0x04, 0x02, 0x02, 0x01, 0x08, 0x0A, 0x0B, 0x16, 0x0B, 0x02, 0x05, 0x03, 0x02, 0x13, 0x02, + 0x03, 0x03, 0x0D, 0x02, 0x02, 0x03, 0x01, 0x04, 0x09, 0x01, 0x02, 0x04, 0x0A, 0x0A, 0x04, 0x02, + 0x01, 0x0D, 0x02, 0x01, 0x01, 0x01, 0x03, 0x07, 0x06, 0x02, 0x02, 0x01, 0x0E, 0x07, 0x07, 0x01, + 0x03, 0x08, 0x06, 0x04, 0x0E, 0x01, 0x02, 0x02, 0x03, 0x06, 0x07, 0x01, 0x01, 0x01, 0x02, 0x0D, + 0x02, 0x02, 0x02, 0x0D, 0x02, 0x08, 0x07, 0x02, 0x04, 0x09, 0x01, 0x03, 0x02, 0x02, 0x0D, 0x16, + 0x07, 0x01, 0x01, 0x01, 0x04, 0x18, 0x08, 0x03, 0x0A, 0x04, 0x06, 0x0D, 0x05, 0x0D, 0x13, 0x04, + 0x02, 0x0C, 0x02, 0x0A, 0x1B, 0x0C, 0x27, 0x0D, 0x06, 0x07, 0xFE, 0x92, 0x1C, 0x02, 0x0E, 0x0B, + 0x0F, 0x12, 0x02, 0x01, 0x01, 0x01, 0x23, 0x88, 0x10, 0x1D, 0x02, 0x03, 0x03, 0x1B, 0x09, 0x08, + 0x05, 0x02, 0x0A, 0x46, 0x01, 0x01, 0x01, 0x26, 0x4B, 0x26, 0x06, 0x18, 0x04, 0x08, 0x05, 0x03, + 0x03, 0x0E, 0x05, 0x06, 0x0F, 0x08, 0x0A, 0x13, 0x18, 0x09, 0x11, 0x08, 0x0E, 0x0B, 0x02, 0x03, + 0x0A, 0x04, 0x08, 0x0B, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x69, 0x00, 0x27, 0x04, 0xD4, + 0x03, 0x59, 0x00, 0x0D, 0x00, 0x8D, 0x00, 0x00, 0x01, 0x23, 0x22, 0x06, 0x1D, 0x01, 0x14, 0x16, + 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x25, 0x17, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x23, 0x22, 0x26, 0x15, 0x14, 0x16, 0x27, 0x26, 0x06, 0x23, 0x2A, 0x01, 0x07, 0x2E, 0x01, 0x37, + 0x0E, 0x01, 0x2B, 0x01, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x14, 0x26, 0x07, + 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x26, 0x36, 0x35, 0x34, 0x26, 0x37, 0x3E, 0x01, + 0x37, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x1F, 0x01, 0x36, 0x16, 0x33, 0x32, 0x36, + 0x17, 0x26, 0x34, 0x35, 0x3E, 0x01, 0x37, 0x17, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x36, 0x16, 0x17, 0x02, 0x62, 0x53, 0x09, 0x08, 0x08, 0x09, 0x15, 0x2E, 0x11, + 0x08, 0x0F, 0x02, 0x52, 0x08, 0x03, 0x0E, 0x06, 0x05, 0x36, 0x12, 0x0F, 0x24, 0x0F, 0x0D, 0x8A, + 0x03, 0x13, 0x1D, 0x3C, 0x1E, 0x1E, 0x39, 0x1D, 0x05, 0x05, 0x01, 0x09, 0x12, 0x09, 0x74, 0x11, + 0x0D, 0x06, 0x0E, 0x10, 0x07, 0x0D, 0x0A, 0x07, 0x1D, 0x0A, 0x08, 0x0F, 0x08, 0x17, 0x2E, 0x17, + 0x12, 0x24, 0x12, 0x15, 0x34, 0x06, 0x09, 0x13, 0x06, 0x07, 0x0D, 0x07, 0x0C, 0x1E, 0x0B, 0x02, + 0x2E, 0x0D, 0x0A, 0x04, 0x03, 0x06, 0x06, 0x23, 0x0D, 0x0C, 0x30, 0x08, 0x0D, 0x21, 0x0F, 0x21, + 0x43, 0x21, 0x06, 0x22, 0x47, 0x24, 0x21, 0x42, 0x20, 0x01, 0x01, 0x0A, 0x09, 0x14, 0x05, 0x0D, + 0x03, 0x18, 0x1D, 0x16, 0x07, 0x15, 0x08, 0x08, 0x10, 0x09, 0x15, 0x2C, 0x15, 0x0C, 0x13, 0x0B, + 0x08, 0x17, 0x09, 0x03, 0x03, 0x01, 0x14, 0x23, 0x12, 0x0D, 0x0F, 0x0D, 0x02, 0x3E, 0x08, 0x08, + 0x30, 0x08, 0x09, 0x01, 0x0F, 0x07, 0x3C, 0xB8, 0x04, 0x2C, 0x57, 0x2C, 0x16, 0x0F, 0x05, 0x04, + 0x0D, 0x02, 0x0E, 0x0B, 0x41, 0x02, 0x05, 0x02, 0x06, 0x04, 0x0B, 0x06, 0x0F, 0x0E, 0x28, 0x0D, + 0x1C, 0x3B, 0x1E, 0x35, 0x5F, 0x36, 0x10, 0x07, 0x01, 0x01, 0x02, 0x01, 0x05, 0x0A, 0x05, 0x03, + 0x0A, 0x05, 0x05, 0x0E, 0x19, 0x1C, 0x45, 0x1C, 0x1C, 0x37, 0x1C, 0x32, 0x62, 0x31, 0x1B, 0x1E, + 0x12, 0x0F, 0x34, 0x11, 0x14, 0x30, 0x13, 0x12, 0x1B, 0x0B, 0x02, 0x02, 0x0A, 0x06, 0x06, 0x01, + 0x04, 0x01, 0x05, 0x0E, 0x09, 0x02, 0x01, 0x08, 0x03, 0x05, 0x04, 0x04, 0x06, 0x02, 0x04, 0x05, + 0x1A, 0x01, 0x02, 0x06, 0x08, 0x03, 0x08, 0x01, 0x07, 0x01, 0x01, 0x0C, 0x04, 0x03, 0x09, 0x07, + 0x03, 0x01, 0x01, 0x02, 0x06, 0x03, 0x06, 0x0C, 0x09, 0x03, 0x02, 0x05, 0x00, 0x02, 0x00, 0x61, + 0x00, 0xA8, 0x0A, 0xD4, 0x02, 0xD9, 0x01, 0x2A, 0x01, 0x3D, 0x00, 0x00, 0x01, 0x26, 0x36, 0x27, + 0x26, 0x06, 0x23, 0x22, 0x34, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x15, 0x2E, 0x01, 0x23, 0x14, + 0x16, 0x17, 0x2A, 0x03, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x26, 0x06, + 0x27, 0x2E, 0x01, 0x23, 0x26, 0x06, 0x27, 0x26, 0x06, 0x07, 0x06, 0x22, 0x23, 0x22, 0x26, 0x23, + 0x22, 0x06, 0x37, 0x22, 0x26, 0x17, 0x2E, 0x01, 0x07, 0x22, 0x06, 0x37, 0x36, 0x22, 0x23, 0x26, + 0x36, 0x07, 0x22, 0x26, 0x17, 0x26, 0x22, 0x23, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x06, 0x26, 0x27, + 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x06, 0x27, 0x2A, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x23, 0x22, 0x26, 0x23, 0x06, 0x26, 0x23, 0x22, 0x06, + 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x26, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x32, 0x36, + 0x27, 0x16, 0x32, 0x33, 0x32, 0x36, 0x37, 0x3A, 0x01, 0x37, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x03, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x16, 0x27, 0x34, 0x36, 0x27, 0x26, 0x36, 0x37, 0x36, 0x16, 0x33, 0x3E, 0x01, + 0x33, 0x16, 0x32, 0x33, 0x2E, 0x01, 0x27, 0x32, 0x36, 0x35, 0x3C, 0x01, 0x27, 0x30, 0x16, 0x31, + 0x26, 0x16, 0x31, 0x05, 0x26, 0x16, 0x33, 0x3A, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x27, + 0x2E, 0x01, 0x37, 0x26, 0x16, 0x31, 0x0A, 0xD1, 0x05, 0x0C, 0x11, 0x0A, 0x16, 0x0A, 0x07, 0x03, + 0x06, 0x1C, 0x0A, 0x0E, 0x0B, 0x0A, 0x14, 0x0A, 0x01, 0x01, 0x55, 0xAA, 0xAA, 0xAA, 0x55, 0x2A, + 0x53, 0x29, 0x15, 0x29, 0x15, 0x0B, 0x17, 0x0B, 0x07, 0x0F, 0x07, 0x05, 0x07, 0x05, 0x05, 0x11, + 0x04, 0x0B, 0x20, 0x0F, 0x14, 0x27, 0x14, 0x0B, 0x16, 0x0B, 0x01, 0x0F, 0x03, 0x01, 0x0E, 0x05, + 0x17, 0x2F, 0x18, 0x07, 0x4F, 0x01, 0x02, 0x10, 0x03, 0x07, 0x02, 0x0A, 0x08, 0x21, 0x04, 0x03, + 0x04, 0x03, 0x1B, 0x0B, 0x0F, 0x21, 0x10, 0x09, 0x10, 0x08, 0x09, 0x13, 0x09, 0x15, 0x2A, 0x14, + 0x0A, 0x12, 0x0A, 0x09, 0x11, 0x0A, 0x06, 0x14, 0x02, 0x03, 0x1F, 0x07, 0x2C, 0x5A, 0x2C, 0x14, + 0x28, 0x14, 0x16, 0x2D, 0x16, 0x13, 0x24, 0x12, 0x06, 0x0B, 0x05, 0x02, 0x03, 0x01, 0x06, 0x0C, + 0x05, 0x0A, 0x12, 0x0A, 0x07, 0x0C, 0x07, 0x15, 0x1F, 0x0A, 0x04, 0x05, 0x01, 0x01, 0x01, 0x01, + 0x03, 0x01, 0x02, 0x01, 0x04, 0x02, 0x02, 0x01, 0x08, 0x09, 0x27, 0x10, 0x05, 0x13, 0x02, 0x02, + 0x18, 0x07, 0x13, 0x22, 0x12, 0x09, 0x13, 0x09, 0x0A, 0x14, 0x0A, 0x0F, 0x1E, 0x0E, 0x05, 0x0C, + 0x06, 0x08, 0x0C, 0x07, 0x08, 0x10, 0x07, 0x0A, 0x15, 0x0A, 0x16, 0x2C, 0x17, 0x10, 0x1A, 0x06, + 0x03, 0x01, 0x08, 0x0B, 0x16, 0x09, 0x08, 0x11, 0x08, 0x09, 0x10, 0x07, 0x0D, 0x04, 0x05, 0x02, + 0x0A, 0x02, 0x02, 0x04, 0x04, 0x0D, 0x1A, 0x0F, 0x10, 0x23, 0x10, 0x14, 0x0E, 0x0B, 0x14, 0x50, + 0x1B, 0x0E, 0x19, 0x0E, 0x06, 0x0A, 0x06, 0x01, 0x13, 0x02, 0x0E, 0x20, 0x0F, 0x18, 0x31, 0x19, + 0x16, 0x2C, 0x16, 0x07, 0x0F, 0x06, 0x08, 0x10, 0x0A, 0x0F, 0x21, 0x11, 0x17, 0x2F, 0x18, 0x2E, + 0x5C, 0x5C, 0x5C, 0x2F, 0x35, 0x6C, 0x35, 0x0C, 0x17, 0x0C, 0x0C, 0x1B, 0x0B, 0x0A, 0x1F, 0x01, + 0x01, 0x04, 0x04, 0x08, 0x07, 0x07, 0x0F, 0x07, 0x0E, 0x1B, 0x0D, 0x38, 0x71, 0x38, 0x01, 0x01, + 0x01, 0x03, 0x0A, 0x04, 0x01, 0x05, 0x05, 0xF9, 0x5F, 0x03, 0x30, 0x08, 0x05, 0x0F, 0x02, 0x02, + 0x01, 0x02, 0x05, 0x2F, 0x0A, 0x08, 0x0C, 0x06, 0x02, 0x02, 0x02, 0x8E, 0x0A, 0x15, 0x04, 0x03, + 0x02, 0x11, 0x04, 0x0A, 0x02, 0x01, 0x01, 0x0A, 0x0F, 0x01, 0x03, 0x02, 0x03, 0x01, 0x01, 0x01, + 0x03, 0x01, 0x01, 0x07, 0x01, 0x03, 0x03, 0x09, 0x03, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x02, + 0x04, 0x01, 0x01, 0x03, 0x05, 0x07, 0x01, 0x0C, 0x01, 0x01, 0x0C, 0x01, 0x0E, 0x10, 0x06, 0x08, + 0x0E, 0x05, 0x03, 0x0A, 0x03, 0x04, 0x07, 0x04, 0x09, 0x10, 0x09, 0x04, 0x04, 0x02, 0x03, 0x07, + 0x01, 0x04, 0x06, 0x08, 0x06, 0x01, 0x05, 0x06, 0x01, 0x01, 0x07, 0x01, 0x01, 0x04, 0x03, 0x01, + 0x02, 0x01, 0x04, 0x02, 0x02, 0x02, 0x01, 0x05, 0x0A, 0x14, 0x09, 0x11, 0x0A, 0x09, 0x13, 0x0A, + 0x17, 0x2E, 0x17, 0x16, 0x2B, 0x16, 0x11, 0x2D, 0x10, 0x10, 0x06, 0x03, 0x01, 0x03, 0x06, 0x09, + 0x05, 0x03, 0x06, 0x11, 0x0A, 0x04, 0x07, 0x04, 0x04, 0x0B, 0x04, 0x06, 0x0F, 0x09, 0x03, 0x08, + 0x03, 0x04, 0x06, 0x02, 0x02, 0x09, 0x03, 0x04, 0x09, 0x05, 0x09, 0x15, 0x08, 0x06, 0x19, 0x0D, + 0x06, 0x09, 0x01, 0x02, 0x0C, 0x05, 0x04, 0x02, 0x03, 0x02, 0x08, 0x05, 0x09, 0x23, 0x0D, 0x06, + 0x09, 0x06, 0x05, 0x06, 0x04, 0x0A, 0x0B, 0x04, 0x03, 0x05, 0x01, 0x01, 0x1D, 0x0F, 0x1A, 0x05, + 0x10, 0x09, 0x17, 0x09, 0x03, 0x0C, 0x03, 0x0A, 0x01, 0x04, 0x02, 0x01, 0x01, 0x01, 0x06, 0x09, + 0x10, 0x06, 0x09, 0x05, 0x01, 0x02, 0x01, 0x03, 0x06, 0x0D, 0x0A, 0x07, 0x01, 0x01, 0x01, 0x05, + 0x01, 0x03, 0x02, 0x03, 0x03, 0x05, 0x0D, 0x05, 0x15, 0x09, 0x18, 0x08, 0x07, 0x0D, 0x03, 0x02, + 0x01, 0x01, 0x03, 0x01, 0x02, 0x04, 0x02, 0x01, 0x05, 0x09, 0x10, 0x08, 0x02, 0x0A, 0x0A, 0x9F, + 0x0B, 0x02, 0x05, 0x05, 0x13, 0x04, 0x0C, 0x03, 0x04, 0x03, 0x1D, 0x03, 0x08, 0x08, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x56, 0x00, 0xF1, 0x08, 0x53, 0x02, 0x95, 0x01, 0x6C, 0x01, 0x78, 0x00, 0x00, + 0x01, 0x16, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x1E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x1E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x2A, 0x01, 0x07, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x07, + 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x07, 0x06, 0x22, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x22, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, + 0x06, 0x07, 0x06, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, 0x23, 0x34, 0x26, + 0x35, 0x26, 0x06, 0x07, 0x14, 0x06, 0x27, 0x34, 0x26, 0x15, 0x14, 0x06, 0x27, 0x26, 0x36, 0x07, + 0x22, 0x16, 0x07, 0x22, 0x36, 0x27, 0x26, 0x16, 0x07, 0x06, 0x26, 0x15, 0x14, 0x06, 0x35, 0x34, + 0x26, 0x15, 0x14, 0x06, 0x27, 0x26, 0x36, 0x07, 0x06, 0x16, 0x23, 0x06, 0x26, 0x07, 0x22, 0x16, + 0x07, 0x2A, 0x01, 0x07, 0x22, 0x06, 0x23, 0x06, 0x22, 0x23, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x17, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x1E, 0x01, 0x33, + 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x33, 0x32, 0x16, 0x33, 0x32, + 0x16, 0x33, 0x3A, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x33, 0x32, 0x36, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x2E, 0x01, 0x27, 0x31, 0x01, 0x06, 0x26, + 0x37, 0x36, 0x16, 0x17, 0x16, 0x06, 0x07, 0x06, 0x36, 0x07, 0x75, 0x0D, 0x0C, 0x0E, 0x05, 0x06, + 0x03, 0x04, 0x06, 0x07, 0x03, 0x06, 0x01, 0x01, 0x10, 0x07, 0x04, 0x08, 0x02, 0x05, 0x05, 0x09, + 0x04, 0x02, 0x07, 0x04, 0x0F, 0x04, 0x05, 0x05, 0x03, 0x04, 0x04, 0x08, 0x04, 0x05, 0x08, 0x05, + 0x0C, 0x05, 0x05, 0x05, 0x03, 0x03, 0x05, 0x08, 0x03, 0x06, 0x02, 0x02, 0x01, 0x04, 0x04, 0x0A, + 0x04, 0x06, 0x07, 0x02, 0x04, 0x06, 0x07, 0x01, 0x07, 0x03, 0x04, 0x0B, 0x06, 0x05, 0x06, 0x03, + 0x05, 0x06, 0x08, 0x02, 0x02, 0x01, 0x02, 0x13, 0x06, 0x05, 0x05, 0x03, 0x01, 0x03, 0x02, 0x02, + 0x03, 0x05, 0x02, 0x01, 0x03, 0x03, 0x0D, 0x06, 0x06, 0x06, 0x04, 0x04, 0x0F, 0x05, 0x0A, 0x15, + 0x09, 0x14, 0x28, 0x16, 0x36, 0x6F, 0x35, 0x13, 0x26, 0x13, 0x07, 0x0D, 0x07, 0x03, 0x08, 0x02, + 0x06, 0x0B, 0x07, 0x04, 0x0B, 0x05, 0x09, 0x11, 0x08, 0x0A, 0x11, 0x08, 0x04, 0x09, 0x04, 0x03, + 0x07, 0x04, 0x03, 0x0B, 0x01, 0x02, 0x06, 0x02, 0x01, 0x03, 0x03, 0x01, 0x04, 0x01, 0x06, 0x02, + 0x04, 0x04, 0x04, 0x06, 0x03, 0x03, 0x02, 0x06, 0x03, 0x03, 0x07, 0x03, 0x02, 0x05, 0x08, 0x08, + 0x06, 0x04, 0x04, 0x04, 0x04, 0x07, 0x02, 0x02, 0x04, 0x05, 0x01, 0x04, 0x02, 0x01, 0x03, 0x03, + 0x07, 0x04, 0x06, 0x0C, 0x06, 0x0C, 0x19, 0x0D, 0x19, 0x32, 0x19, 0x3A, 0x72, 0x36, 0x20, 0x3E, + 0x21, 0x0A, 0x17, 0x0A, 0x0F, 0x12, 0x08, 0x07, 0x0C, 0x08, 0x09, 0x10, 0x06, 0x06, 0x09, 0x08, + 0x06, 0x0C, 0x05, 0x11, 0x20, 0x10, 0x07, 0x14, 0x09, 0x0A, 0x0F, 0x06, 0x0B, 0x16, 0x0F, 0x0B, + 0x18, 0x0B, 0x07, 0x0E, 0x06, 0x07, 0x0C, 0x07, 0x07, 0x0F, 0x09, 0x06, 0x0E, 0x05, 0x0E, 0x1A, + 0x0D, 0x05, 0x0B, 0x05, 0x08, 0x0B, 0x06, 0x0B, 0x16, 0x0D, 0x18, 0x3C, 0x0D, 0x06, 0x0E, 0x07, + 0x0C, 0x11, 0x03, 0x09, 0x1B, 0x18, 0x18, 0x2A, 0x13, 0x09, 0x0F, 0x07, 0x03, 0x01, 0x01, 0x01, + 0x03, 0x06, 0x0D, 0x08, 0x05, 0x0E, 0x02, 0x0A, 0x05, 0x0C, 0x19, 0x0C, 0x0C, 0x0D, 0x02, 0x07, + 0x0C, 0x06, 0x02, 0x24, 0x09, 0x1F, 0x3E, 0x1F, 0x3F, 0x7E, 0x3F, 0x04, 0x08, 0x05, 0x0B, 0x15, + 0x09, 0x05, 0x0A, 0x04, 0x01, 0x03, 0x02, 0x03, 0x10, 0x04, 0x06, 0x0C, 0x06, 0x0A, 0x14, 0x0A, + 0x1F, 0x40, 0x1F, 0x2B, 0x56, 0x2A, 0x0D, 0x1C, 0x0D, 0x07, 0x10, 0x05, 0x14, 0x2A, 0x14, 0x12, + 0x22, 0x12, 0x38, 0x6E, 0x38, 0xFC, 0x49, 0x10, 0x19, 0x10, 0x08, 0x11, 0x04, 0x02, 0x04, 0x02, + 0x03, 0x03, 0x02, 0x58, 0x07, 0x1A, 0x07, 0x02, 0x0A, 0x05, 0x07, 0x06, 0x02, 0x04, 0x0A, 0x06, + 0x08, 0x05, 0x05, 0x03, 0x0A, 0x04, 0x09, 0x06, 0x02, 0x06, 0x13, 0x05, 0x03, 0x02, 0x03, 0x03, + 0x0B, 0x04, 0x07, 0x06, 0x01, 0x06, 0x11, 0x05, 0x04, 0x05, 0x03, 0x03, 0x0B, 0x05, 0x07, 0x04, + 0x01, 0x03, 0x0E, 0x04, 0x04, 0x03, 0x01, 0x01, 0x0D, 0x05, 0x06, 0x08, 0x01, 0x03, 0x10, 0x03, + 0x04, 0x06, 0x04, 0x04, 0x09, 0x06, 0x07, 0x08, 0x01, 0x04, 0x10, 0x05, 0x07, 0x03, 0x03, 0x09, + 0x05, 0x03, 0x05, 0x03, 0x04, 0x01, 0x04, 0x0B, 0x04, 0x05, 0x06, 0x06, 0x05, 0x10, 0x06, 0x06, + 0x01, 0x01, 0x02, 0x0D, 0x04, 0x0A, 0x0E, 0x03, 0x07, 0x0A, 0x0A, 0x03, 0x07, 0x04, 0x01, 0x03, + 0x01, 0x01, 0x02, 0x04, 0x09, 0x03, 0x02, 0x02, 0x0A, 0x02, 0x02, 0x09, 0x04, 0x02, 0x02, 0x04, + 0x02, 0x05, 0x02, 0x01, 0x05, 0x04, 0x04, 0x0B, 0x02, 0x03, 0x01, 0x01, 0x02, 0x03, 0x02, 0x03, + 0x03, 0x02, 0x04, 0x03, 0x03, 0x07, 0x02, 0x01, 0x05, 0x01, 0x07, 0x01, 0x04, 0x01, 0x02, 0x08, + 0x01, 0x02, 0x09, 0x09, 0x01, 0x01, 0x02, 0x03, 0x01, 0x02, 0x04, 0x02, 0x01, 0x01, 0x05, 0x02, + 0x01, 0x04, 0x01, 0x05, 0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x05, 0x03, 0x08, 0x1A, 0x17, + 0x0D, 0x1B, 0x09, 0x03, 0x04, 0x01, 0x01, 0x08, 0x0C, 0x0A, 0x14, 0x08, 0x0A, 0x13, 0x0B, 0x0C, + 0x13, 0x0A, 0x08, 0x0F, 0x08, 0x1B, 0x34, 0x1A, 0x0A, 0x05, 0x04, 0x04, 0x18, 0x09, 0x0D, 0x1A, + 0x09, 0x05, 0x03, 0x04, 0x02, 0x03, 0x03, 0x04, 0x0C, 0x05, 0x06, 0x09, 0x02, 0x01, 0x05, 0x01, + 0x03, 0x04, 0x02, 0x05, 0x01, 0x01, 0x07, 0x04, 0x07, 0x12, 0x05, 0x09, 0x19, 0x16, 0x0C, 0x16, + 0x0B, 0x11, 0x20, 0x08, 0x16, 0x25, 0x07, 0x07, 0x0E, 0x0C, 0x06, 0x14, 0x09, 0x03, 0x05, 0x07, + 0x02, 0x06, 0x02, 0x06, 0x0C, 0x05, 0x0C, 0x15, 0x0A, 0x06, 0x0E, 0x09, 0x05, 0x03, 0x01, 0x03, + 0x02, 0x02, 0x08, 0x0C, 0x1B, 0x36, 0x1B, 0x0D, 0x02, 0x01, 0x01, 0x01, 0x01, 0x08, 0x07, 0x04, + 0x0A, 0x06, 0x02, 0x0B, 0x01, 0x02, 0x02, 0x01, 0x01, 0x01, 0x02, 0x06, 0x03, 0x04, 0x15, 0x0C, + 0x05, 0x08, 0x04, 0x02, 0x04, 0x05, 0x16, 0x2B, 0x15, 0x13, 0x24, 0x12, 0x07, 0x0E, 0x07, 0xFE, + 0xAF, 0x0E, 0x20, 0x0B, 0x04, 0x05, 0x08, 0x06, 0x09, 0x05, 0x03, 0x03, 0x00, 0x05, 0x00, 0x50, + 0x00, 0x41, 0x07, 0xB9, 0x03, 0x39, 0x00, 0x1E, 0x00, 0x3C, 0x00, 0x5B, 0x00, 0x74, 0x01, 0x5F, + 0x00, 0x00, 0x01, 0x06, 0x16, 0x15, 0x1C, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x15, 0x14, + 0x06, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x05, 0x34, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x14, 0x16, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x01, + 0x36, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x27, 0x1C, 0x01, 0x33, 0x3A, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x37, 0x2A, + 0x01, 0x15, 0x14, 0x06, 0x17, 0x32, 0x16, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x32, + 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, 0x27, 0x05, 0x1E, 0x01, 0x07, 0x06, 0x26, 0x23, 0x2A, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x23, 0x22, 0x06, 0x07, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x14, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x06, 0x07, 0x22, 0x06, 0x15, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x22, 0x06, + 0x07, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, + 0x26, 0x06, 0x27, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x36, 0x35, 0x3C, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x03, 0x23, 0x22, 0x36, 0x35, + 0x3C, 0x01, 0x27, 0x34, 0x26, 0x27, 0x34, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x32, + 0x16, 0x37, 0x3E, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x32, 0x26, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x34, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x16, 0x07, 0x0E, 0x01, 0x15, + 0x14, 0x06, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x35, 0x34, 0x06, 0x27, 0x26, 0x36, 0x35, 0x34, 0x36, 0x37, 0x32, 0x36, 0x17, 0x16, 0x14, + 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x15, + 0x1C, 0x01, 0x15, 0x14, 0x06, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x05, 0x4B, 0x08, 0x02, + 0x01, 0x07, 0x0F, 0x07, 0x02, 0x0E, 0x01, 0x04, 0x12, 0x1A, 0x17, 0x1A, 0x13, 0x0E, 0x09, 0x1D, + 0x0B, 0x07, 0x08, 0x0E, 0x10, 0x23, 0x0C, 0xFE, 0xF4, 0x0D, 0x11, 0x16, 0x2B, 0x16, 0x0A, 0x16, + 0x0A, 0x04, 0x0B, 0x04, 0x06, 0x0D, 0x05, 0x06, 0x0E, 0x05, 0x06, 0x04, 0x01, 0x0D, 0x0F, 0x19, + 0x27, 0x19, 0x1B, 0x54, 0x02, 0x26, 0x06, 0x17, 0x04, 0x0C, 0x19, 0x0D, 0x1A, 0x35, 0x1A, 0x28, + 0x4F, 0x27, 0x01, 0x07, 0x0D, 0x06, 0x1E, 0x3C, 0x1E, 0x21, 0x41, 0x21, 0x0B, 0x15, 0x0A, 0x09, + 0x01, 0x04, 0x29, 0x0B, 0x08, 0x01, 0x06, 0x05, 0x0B, 0x03, 0x02, 0x09, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x0D, 0x05, 0x0B, 0x01, 0x2B, 0x0D, 0x07, 0x17, 0x0D, 0x1F, 0x0D, 0x16, 0x2A, 0x16, 0x05, + 0x0A, 0x05, 0x02, 0x03, 0x02, 0x02, 0x08, 0x01, 0x07, 0x10, 0x04, 0x02, 0x04, 0x01, 0x03, 0x04, + 0x01, 0x01, 0x03, 0x03, 0x0D, 0x09, 0x11, 0x2E, 0x04, 0x04, 0x01, 0x04, 0x03, 0x3B, 0x09, 0x06, + 0x0E, 0x01, 0x02, 0x02, 0x03, 0x1F, 0x1C, 0x19, 0x40, 0x20, 0x0D, 0x1A, 0x0D, 0x07, 0x10, 0x07, + 0x0A, 0x10, 0x01, 0x01, 0x05, 0x02, 0x03, 0x06, 0x03, 0x01, 0x05, 0x02, 0x07, 0x32, 0x10, 0x0B, + 0x0A, 0x06, 0x05, 0x11, 0x07, 0x2F, 0x72, 0x3D, 0x25, 0x4C, 0x25, 0x0C, 0x18, 0x0C, 0x0B, 0x01, + 0x07, 0x0A, 0x14, 0x0A, 0x18, 0x31, 0x18, 0x04, 0x09, 0x04, 0x03, 0x21, 0x01, 0x05, 0x11, 0x0C, + 0x0F, 0x1D, 0x0F, 0x2F, 0x5E, 0x5E, 0x5E, 0x2F, 0x20, 0x01, 0x01, 0x02, 0x02, 0x0D, 0x0C, 0x10, + 0x1E, 0x0F, 0x35, 0x68, 0x68, 0x68, 0x34, 0x17, 0x31, 0x17, 0x1D, 0x37, 0x1E, 0x2D, 0x5A, 0x5A, + 0x5A, 0x2D, 0x06, 0x04, 0x03, 0x08, 0x0F, 0x07, 0x05, 0x09, 0x0C, 0x0B, 0x04, 0x03, 0x20, 0x09, + 0x04, 0x01, 0x01, 0x01, 0x01, 0x05, 0x02, 0x04, 0x0F, 0x1F, 0x0F, 0x35, 0x6A, 0x35, 0x0D, 0x1A, + 0x0D, 0x05, 0x13, 0x04, 0x0B, 0x0E, 0x05, 0x02, 0x01, 0x01, 0x0A, 0x09, 0x07, 0x17, 0x01, 0x01, + 0x02, 0x02, 0x03, 0x08, 0x0B, 0x09, 0x09, 0x05, 0x09, 0x12, 0x09, 0x0C, 0x1B, 0x02, 0x05, 0x0C, + 0x19, 0x0C, 0x1B, 0x35, 0x1A, 0x01, 0x60, 0x0C, 0x24, 0x0F, 0x01, 0x0E, 0x01, 0x02, 0x03, 0x12, + 0x01, 0x06, 0x15, 0x08, 0x0A, 0x2C, 0x19, 0x10, 0x12, 0x0E, 0x0A, 0x07, 0x02, 0x02, 0x06, 0x0E, + 0x23, 0x0E, 0x2A, 0x02, 0x02, 0x02, 0x11, 0x04, 0x06, 0x0C, 0x06, 0x08, 0x18, 0x08, 0x13, 0x20, + 0x0B, 0x12, 0x0B, 0x0A, 0x0A, 0x2E, 0x01, 0x40, 0x09, 0x05, 0x06, 0x02, 0x03, 0x1F, 0x04, 0x08, + 0x13, 0x0B, 0x05, 0x06, 0x01, 0x07, 0x07, 0x07, 0x0C, 0x07, 0x0C, 0x17, 0x0B, 0x05, 0x03, 0x0B, + 0x15, 0x0A, 0x0B, 0x33, 0x07, 0x79, 0x0B, 0x47, 0x05, 0x03, 0x02, 0x07, 0x06, 0x02, 0x08, 0x13, + 0x0B, 0x08, 0x16, 0x08, 0x13, 0x26, 0x13, 0x08, 0x15, 0x08, 0x09, 0x02, 0x04, 0x16, 0x12, 0x25, + 0x12, 0x0B, 0x02, 0x01, 0x17, 0x05, 0x0C, 0x18, 0x0C, 0x23, 0x41, 0x16, 0x14, 0x15, 0x02, 0x02, + 0x01, 0x02, 0x01, 0x03, 0x03, 0x0C, 0x08, 0x10, 0x07, 0x0D, 0x19, 0x0D, 0x06, 0x0F, 0x06, 0x11, + 0x03, 0x01, 0x05, 0x0A, 0x06, 0x0D, 0x05, 0x24, 0x42, 0x02, 0x02, 0x03, 0x03, 0x02, 0x02, 0x01, + 0x01, 0x0E, 0x0B, 0x08, 0x05, 0x02, 0x04, 0x08, 0x03, 0x09, 0x13, 0x09, 0x01, 0x05, 0x03, 0x02, + 0x09, 0x15, 0x59, 0x14, 0x26, 0x4B, 0x25, 0x2A, 0x53, 0x29, 0x12, 0x06, 0x03, 0x04, 0x05, 0x04, + 0x2E, 0x06, 0x13, 0x26, 0x13, 0x0B, 0x0F, 0x05, 0x05, 0x1B, 0x0B, 0x0E, 0x15, 0x14, 0x08, 0x14, + 0x09, 0x04, 0x09, 0x04, 0x02, 0x04, 0x04, 0x04, 0x15, 0x0E, 0x03, 0x06, 0x06, 0x0D, 0x0A, 0x05, + 0x04, 0x03, 0x0C, 0x04, 0x07, 0x10, 0x01, 0x04, 0x0A, 0x0A, 0x14, 0x0A, 0x0A, 0x0F, 0x0A, 0x0C, + 0x06, 0x01, 0x06, 0x09, 0x13, 0x0A, 0x0D, 0x1C, 0x14, 0x18, 0x31, 0x18, 0x04, 0x12, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x64, 0x00, 0x26, 0x04, 0x96, 0x03, 0x59, 0x00, 0xCE, 0x00, 0xD4, 0x01, 0x1D, + 0x00, 0x00, 0x01, 0x34, 0x36, 0x27, 0x26, 0x06, 0x37, 0x36, 0x26, 0x23, 0x06, 0x26, 0x23, 0x22, + 0x26, 0x23, 0x14, 0x16, 0x07, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x35, 0x3C, 0x01, + 0x23, 0x0E, 0x01, 0x35, 0x36, 0x22, 0x23, 0x2A, 0x02, 0x26, 0x23, 0x1C, 0x01, 0x15, 0x26, 0x22, + 0x23, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x06, 0x14, 0x07, + 0x06, 0x14, 0x17, 0x16, 0x32, 0x17, 0x16, 0x14, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x06, 0x17, 0x16, 0x06, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x17, 0x14, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x0E, 0x01, 0x15, + 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x36, 0x17, 0x16, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x33, 0x32, 0x16, 0x35, 0x34, 0x26, + 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x35, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x17, 0x32, + 0x16, 0x35, 0x34, 0x36, 0x27, 0x26, 0x36, 0x35, 0x34, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x16, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, 0x36, 0x26, 0x35, 0x34, 0x26, 0x37, + 0x01, 0x36, 0x16, 0x17, 0x22, 0x26, 0x01, 0x06, 0x26, 0x27, 0x14, 0x06, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x26, 0x07, 0x06, 0x36, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x35, 0x34, 0x36, 0x37, 0x3E, + 0x01, 0x17, 0x16, 0x06, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x32, 0x36, + 0x27, 0x26, 0x06, 0x35, 0x30, 0x26, 0x23, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x35, 0x34, 0x36, 0x37, + 0x36, 0x16, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x15, 0x06, 0x14, 0x17, 0x1C, 0x01, 0x07, 0x04, + 0x96, 0x03, 0x04, 0x05, 0x09, 0x02, 0x03, 0x24, 0x08, 0x16, 0x2C, 0x16, 0x3B, 0x76, 0x3B, 0x03, + 0x03, 0x03, 0x17, 0x04, 0x17, 0x30, 0x17, 0x0A, 0x11, 0x06, 0x03, 0x0C, 0x01, 0x09, 0x0A, 0x31, + 0x62, 0x62, 0x62, 0x31, 0x08, 0x11, 0x08, 0x14, 0x05, 0x05, 0x0E, 0x05, 0x05, 0x06, 0x01, 0x01, + 0x04, 0x07, 0x05, 0x01, 0x02, 0x01, 0x01, 0x05, 0x05, 0x02, 0x02, 0x07, 0x13, 0x08, 0x11, 0x23, + 0x0C, 0x06, 0x07, 0x01, 0x01, 0x09, 0x0B, 0x03, 0x02, 0x0A, 0x01, 0x0B, 0x02, 0x04, 0x06, 0x03, + 0x04, 0x0E, 0x07, 0x03, 0x04, 0x02, 0x02, 0x03, 0x02, 0x06, 0x06, 0x01, 0x05, 0x3A, 0x0D, 0x05, + 0x03, 0x09, 0x07, 0x0E, 0x06, 0x0C, 0x24, 0x0D, 0x1A, 0x34, 0x19, 0x0A, 0x0E, 0x0A, 0x0A, 0x14, + 0x0A, 0x06, 0x12, 0x17, 0x02, 0x0B, 0x08, 0x07, 0x04, 0x04, 0x01, 0x02, 0x08, 0x02, 0x04, 0x0B, + 0x04, 0x04, 0x0A, 0x02, 0x02, 0x07, 0x01, 0x05, 0x02, 0x01, 0x06, 0x07, 0x39, 0x71, 0x39, 0x18, + 0x31, 0x18, 0x03, 0x12, 0x04, 0x08, 0x04, 0x03, 0x02, 0x0B, 0x0B, 0x06, 0x23, 0x09, 0x0E, 0x1C, + 0x0E, 0x1C, 0x37, 0x1C, 0x09, 0x42, 0x02, 0x04, 0x04, 0x01, 0x02, 0xFC, 0x94, 0x03, 0x05, 0x01, + 0x02, 0x05, 0x02, 0x19, 0x01, 0x0C, 0x07, 0x08, 0x0E, 0x12, 0x24, 0x12, 0x20, 0x41, 0x20, 0x10, + 0x01, 0x01, 0x01, 0x0A, 0x01, 0x01, 0x0D, 0x12, 0x04, 0x04, 0x15, 0x06, 0x0A, 0x06, 0x01, 0x01, + 0x12, 0x07, 0x08, 0x12, 0x0C, 0x09, 0x15, 0x0A, 0x06, 0x04, 0x04, 0x02, 0x0E, 0x0C, 0x01, 0x09, + 0x12, 0x07, 0x0A, 0x01, 0x08, 0x06, 0x15, 0x2D, 0x16, 0x0E, 0x17, 0x0A, 0x04, 0x10, 0x01, 0x01, + 0x02, 0x03, 0x25, 0x04, 0x12, 0x03, 0x05, 0x04, 0x0A, 0x0F, 0x01, 0x02, 0x01, 0x01, 0x06, 0x19, + 0x06, 0x04, 0x02, 0x02, 0x0C, 0x04, 0x0B, 0x01, 0x01, 0x05, 0x0A, 0x01, 0x06, 0x0A, 0x06, 0x01, + 0x0C, 0x11, 0x0B, 0x0A, 0x15, 0x0A, 0x09, 0x17, 0x0A, 0x0A, 0x05, 0x05, 0x04, 0x19, 0x06, 0x07, + 0x11, 0x07, 0x06, 0x03, 0x01, 0x04, 0x02, 0x04, 0x04, 0x03, 0x09, 0x1C, 0x10, 0x08, 0x0C, 0x0A, + 0x07, 0x0C, 0x05, 0x05, 0x17, 0x05, 0x03, 0x10, 0x03, 0x03, 0x18, 0x03, 0x06, 0x11, 0x07, 0x0D, + 0x1B, 0x0D, 0x05, 0x0F, 0x06, 0x07, 0x10, 0x07, 0x10, 0x26, 0x11, 0x05, 0x04, 0x04, 0x05, 0x08, + 0x05, 0x0B, 0x17, 0x0B, 0x19, 0x0F, 0x07, 0x03, 0x0E, 0x03, 0x02, 0x02, 0x03, 0x07, 0x08, 0x01, + 0x03, 0x06, 0x06, 0x03, 0x06, 0x03, 0x04, 0x0B, 0x04, 0x07, 0x04, 0x0C, 0x34, 0x0F, 0x08, 0x18, + 0x09, 0x09, 0x0F, 0x08, 0x0F, 0x1B, 0x0F, 0x0D, 0x19, 0x0D, 0x0A, 0x18, 0x0A, 0x09, 0x16, 0x09, + 0x06, 0x05, 0x01, 0x01, 0x05, 0x08, 0x13, 0x05, 0x02, 0x30, 0x05, 0x09, 0x12, 0x09, 0x10, 0x10, + 0x0B, 0x06, 0x04, 0x05, 0x0C, 0x19, 0x36, 0x19, 0x1A, 0x35, 0x1A, 0xFD, 0x19, 0x01, 0x02, 0x01, + 0x01, 0x01, 0x8E, 0x08, 0x02, 0x01, 0x0E, 0x02, 0x01, 0x02, 0x01, 0x13, 0x0C, 0x0B, 0x13, 0x0C, + 0x0B, 0x12, 0x0B, 0x0A, 0x0C, 0x07, 0x05, 0x09, 0x02, 0x03, 0x2E, 0x08, 0x0F, 0x11, 0x0B, 0x0B, + 0x0C, 0x06, 0x04, 0x01, 0x01, 0x12, 0x02, 0x01, 0x02, 0x03, 0x05, 0x05, 0x0D, 0x08, 0x0D, 0x20, + 0x0E, 0x06, 0x0E, 0x01, 0x05, 0x06, 0x01, 0x01, 0x04, 0x0B, 0x04, 0x08, 0x03, 0x12, 0x23, 0x11, + 0x08, 0x10, 0x08, 0x00, 0x00, 0x05, 0x00, 0x58, 0x00, 0x27, 0x06, 0xD7, 0x03, 0x58, 0x00, 0xD6, + 0x00, 0xE6, 0x00, 0xF3, 0x01, 0x06, 0x01, 0x34, 0x00, 0x00, 0x01, 0x14, 0x16, 0x17, 0x14, 0x06, + 0x17, 0x16, 0x06, 0x07, 0x06, 0x16, 0x15, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x03, 0x23, + 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x07, 0x06, 0x26, 0x07, 0x0E, + 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x07, 0x06, 0x16, 0x17, 0x16, 0x06, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x22, 0x16, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x32, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x37, 0x36, + 0x26, 0x27, 0x26, 0x06, 0x27, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x26, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x32, 0x33, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x36, 0x16, 0x33, 0x32, 0x06, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x36, 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, + 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x3A, 0x01, + 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x3A, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x05, 0x36, 0x06, + 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x06, 0x32, 0x33, 0x3A, 0x01, 0x33, 0x37, 0x36, 0x06, + 0x23, 0x2A, 0x01, 0x23, 0x06, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x17, 0x3A, 0x01, 0x33, 0x3A, 0x01, + 0x33, 0x32, 0x36, 0x27, 0x26, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x17, 0x01, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x23, 0x0E, 0x01, 0x07, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x34, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x06, 0xB8, 0x1D, 0x02, 0x01, + 0x01, 0x02, 0x06, 0x04, 0x03, 0x04, 0x01, 0x05, 0x06, 0x0A, 0x13, 0x0A, 0x3C, 0x78, 0x79, 0x78, + 0x3C, 0x2E, 0x5D, 0x2F, 0x0F, 0x06, 0x07, 0x07, 0x0A, 0x02, 0x01, 0x01, 0x05, 0x08, 0x35, 0x0F, + 0x0D, 0x48, 0x07, 0x17, 0x14, 0x35, 0x18, 0x13, 0x2D, 0x11, 0x12, 0x1A, 0x08, 0x01, 0x0C, 0x06, + 0x03, 0x09, 0x01, 0x02, 0x0B, 0x0A, 0x09, 0x15, 0x09, 0x0C, 0x17, 0x0C, 0x09, 0x06, 0x01, 0x02, + 0x03, 0x02, 0x01, 0x11, 0x05, 0x09, 0x07, 0x03, 0x01, 0x02, 0x0D, 0x09, 0x0B, 0x07, 0x05, 0x01, + 0x3A, 0x11, 0x19, 0x31, 0x19, 0x15, 0x28, 0x0E, 0x10, 0x03, 0x04, 0x07, 0x31, 0x1F, 0x0A, 0x14, + 0x09, 0x0B, 0x1C, 0x07, 0x04, 0x02, 0x04, 0x04, 0x0A, 0x07, 0x05, 0x08, 0x06, 0x0A, 0x1D, 0x0C, + 0x0E, 0x08, 0x0A, 0x08, 0x0E, 0x0B, 0x06, 0x0C, 0x06, 0x05, 0x0D, 0x05, 0x16, 0x1B, 0x10, 0x0A, + 0x1A, 0x08, 0x0B, 0x16, 0x0B, 0x0E, 0x18, 0x0D, 0x0C, 0x02, 0x07, 0x04, 0x08, 0x05, 0x0C, 0x18, + 0x10, 0x06, 0x1C, 0x03, 0x02, 0x01, 0x02, 0x02, 0x13, 0x02, 0x07, 0x04, 0x04, 0x08, 0x02, 0x07, + 0x06, 0x09, 0x20, 0x08, 0x03, 0x06, 0x03, 0x05, 0x0C, 0x05, 0x13, 0x26, 0x12, 0x38, 0x70, 0x39, + 0x0A, 0x0B, 0x09, 0x12, 0x22, 0x11, 0x33, 0x67, 0x66, 0x67, 0x33, 0x1D, 0x3B, 0x1D, 0x0C, 0x1C, + 0x0B, 0x08, 0x0E, 0x08, 0x07, 0x05, 0x01, 0x02, 0x02, 0x07, 0xFD, 0xDF, 0x04, 0x2A, 0x09, 0x0C, + 0x18, 0x0C, 0x03, 0x16, 0x02, 0x0B, 0x38, 0x02, 0x13, 0x25, 0x13, 0xFE, 0x04, 0x33, 0x08, 0x12, + 0x23, 0x12, 0x01, 0x2E, 0x09, 0x12, 0x24, 0x12, 0x7C, 0x12, 0x23, 0x12, 0x0A, 0x15, 0x0B, 0x02, + 0x11, 0x06, 0x02, 0x11, 0x02, 0x0C, 0x1A, 0x0C, 0x08, 0x32, 0x03, 0xFC, 0xC3, 0x08, 0x0E, 0x0A, + 0x0D, 0x0D, 0x03, 0x03, 0x09, 0x08, 0x02, 0x08, 0x03, 0x07, 0x04, 0x06, 0x11, 0x0F, 0x05, 0x01, + 0x1F, 0x02, 0x0B, 0x16, 0x0B, 0x04, 0x09, 0x05, 0x08, 0x0F, 0x10, 0x16, 0x4A, 0x1A, 0x15, 0x1B, + 0x0B, 0x06, 0x01, 0x02, 0x06, 0x12, 0x0A, 0x23, 0x06, 0x03, 0x33, 0x15, 0x1E, 0x16, 0x0A, 0x12, + 0x0A, 0x0D, 0x15, 0x0D, 0x06, 0x17, 0x08, 0x04, 0x1D, 0x04, 0x11, 0x10, 0x21, 0x12, 0x08, 0x21, + 0x07, 0x0C, 0x06, 0x05, 0x04, 0x11, 0x0E, 0x1C, 0x3B, 0x13, 0x10, 0x08, 0x0D, 0x0F, 0x1E, 0x17, + 0x03, 0x25, 0x0A, 0x05, 0x23, 0x05, 0x0E, 0x02, 0x05, 0x03, 0x06, 0x02, 0x02, 0x05, 0x01, 0x1C, + 0x07, 0x0C, 0x17, 0x0C, 0x08, 0x14, 0x07, 0x0C, 0x0D, 0x0F, 0x0D, 0x18, 0x0D, 0x0C, 0x07, 0x08, + 0x0B, 0x0D, 0x0E, 0x15, 0x01, 0x01, 0x03, 0x02, 0x01, 0x01, 0x13, 0x18, 0x32, 0x1B, 0x40, 0x79, + 0x39, 0x12, 0x24, 0x12, 0x15, 0x2D, 0x16, 0x0B, 0x15, 0x0A, 0x08, 0x04, 0x03, 0x0D, 0x04, 0x06, + 0x04, 0x02, 0x03, 0x08, 0x09, 0x08, 0x0D, 0x03, 0x01, 0x03, 0x01, 0x01, 0x03, 0x03, 0x0A, 0x23, + 0x01, 0x01, 0x0B, 0x0A, 0x05, 0x08, 0x02, 0x02, 0x06, 0x03, 0x07, 0x04, 0x08, 0x04, 0x0A, 0x04, + 0x0C, 0x06, 0x03, 0x27, 0x02, 0x02, 0x02, 0x08, 0x01, 0x09, 0x06, 0x01, 0x04, 0x04, 0x01, 0x0B, + 0x03, 0x06, 0x0D, 0x04, 0x03, 0x05, 0x06, 0x06, 0x08, 0x02, 0x28, 0x0F, 0x04, 0x02, 0x02, 0x0B, + 0x01, 0x0E, 0x04, 0x0D, 0x03, 0x01, 0x01, 0x07, 0x02, 0x02, 0x04, 0x0C, 0xFE, 0xA1, 0x05, 0x08, + 0x03, 0x03, 0x02, 0x0E, 0x11, 0x18, 0x0E, 0x03, 0x08, 0x03, 0x05, 0x04, 0x05, 0x0F, 0x23, 0x15, + 0x02, 0x08, 0x03, 0x06, 0x03, 0x0C, 0x18, 0x0C, 0x12, 0x0F, 0x0B, 0x10, 0x02, 0x06, 0x05, 0x13, + 0x13, 0x0B, 0x1D, 0x0D, 0x13, 0x07, 0x07, 0x04, 0x11, 0x0F, 0x00, 0x00, 0x00, 0x03, 0x00, 0x63, + 0x00, 0x75, 0x07, 0x70, 0x03, 0x0D, 0x00, 0xFE, 0x01, 0x10, 0x01, 0x24, 0x00, 0x00, 0x01, 0x34, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x34, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x34, 0x37, 0x36, 0x34, 0x37, 0x3E, + 0x01, 0x33, 0x35, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, 0x32, 0x36, 0x33, 0x32, 0x16, 0x33, 0x3A, + 0x01, 0x33, 0x3A, 0x03, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, + 0x17, 0x16, 0x32, 0x33, 0x1C, 0x01, 0x15, 0x23, 0x15, 0x32, 0x16, 0x17, 0x36, 0x32, 0x17, 0x35, + 0x16, 0x14, 0x15, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x15, 0x1C, + 0x01, 0x15, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x1C, 0x01, 0x15, 0x23, 0x06, + 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x16, 0x06, 0x23, 0x15, 0x23, 0x1C, 0x01, 0x15, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x23, 0x22, 0x26, 0x27, 0x22, 0x06, 0x23, + 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x26, 0x35, 0x34, 0x26, 0x35, 0x26, 0x34, 0x27, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x23, 0x22, 0x06, + 0x23, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x34, 0x06, 0x31, + 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x37, 0x23, 0x0E, 0x01, 0x15, 0x14, 0x06, 0x07, + 0x14, 0x0E, 0x02, 0x15, 0x0E, 0x01, 0x23, 0x06, 0x16, 0x07, 0x06, 0x22, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x3F, 0x01, 0x25, 0x35, 0x07, 0x1C, 0x01, 0x17, + 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x34, 0x26, 0x27, 0x07, 0x35, 0x0E, 0x01, + 0x07, 0x23, 0x06, 0x14, 0x15, 0x23, 0x06, 0x14, 0x15, 0x0E, 0x01, 0x07, 0x33, 0x36, 0x26, 0x37, + 0x01, 0xA2, 0x1A, 0x01, 0x05, 0x0E, 0x07, 0x06, 0x1D, 0x08, 0x0C, 0x16, 0x0B, 0x15, 0x2E, 0x13, + 0x11, 0x27, 0x0F, 0x08, 0x12, 0x07, 0x09, 0x10, 0x08, 0x06, 0x10, 0x09, 0x01, 0x10, 0x04, 0x03, + 0x07, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0A, 0x03, 0x04, 0x03, 0x03, 0x01, 0x02, 0x07, + 0x09, 0x4C, 0x97, 0x4C, 0x1B, 0x35, 0x1B, 0x07, 0x10, 0x06, 0x03, 0x06, 0x02, 0x05, 0x0B, 0x05, + 0x57, 0xAD, 0xAE, 0xAD, 0x57, 0x32, 0x63, 0x32, 0x0B, 0x17, 0x0C, 0x02, 0x04, 0x03, 0x03, 0x06, + 0x01, 0x02, 0x06, 0x05, 0x04, 0x02, 0x05, 0x02, 0x03, 0x0D, 0x04, 0x09, 0x23, 0x47, 0x23, 0x17, + 0x2F, 0x17, 0x06, 0x1D, 0x05, 0x07, 0x02, 0x01, 0x03, 0x08, 0x15, 0x29, 0x14, 0x0C, 0x17, 0x0C, + 0x01, 0x03, 0x31, 0x09, 0x0E, 0x1E, 0x0F, 0x05, 0x0A, 0x05, 0x06, 0x10, 0x06, 0x24, 0x0A, 0x03, + 0x09, 0x05, 0x04, 0x12, 0x03, 0x07, 0x32, 0x0C, 0x0D, 0x1C, 0x08, 0x21, 0x43, 0x20, 0x04, 0x09, + 0x03, 0x02, 0x03, 0x01, 0x01, 0x08, 0x02, 0x05, 0x0C, 0x05, 0x07, 0x0C, 0x11, 0x0D, 0x32, 0x04, + 0x01, 0x01, 0x19, 0x30, 0x18, 0x0D, 0x1B, 0x0D, 0x06, 0x0A, 0x05, 0x0A, 0x02, 0x03, 0x09, 0x04, + 0x05, 0x08, 0x05, 0x03, 0x07, 0x01, 0x09, 0x12, 0x33, 0x14, 0x10, 0x1F, 0x10, 0x05, 0x0D, 0x04, + 0x04, 0x01, 0x05, 0x05, 0x02, 0x24, 0x2A, 0x23, 0x05, 0x01, 0x04, 0x04, 0x04, 0x04, 0x04, 0x0D, + 0x07, 0x24, 0x48, 0x24, 0x0E, 0x2A, 0x0B, 0x04, 0x0B, 0x27, 0x05, 0x3F, 0x01, 0xC8, 0x62, 0x04, + 0x07, 0x10, 0x0E, 0x09, 0x1B, 0x05, 0x02, 0x0B, 0x05, 0x01, 0x01, 0x83, 0x01, 0x03, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x04, 0x03, 0x01, 0x18, 0x01, 0x09, 0x01, 0x01, 0x73, 0x02, 0x32, 0x03, 0x0B, + 0x15, 0x0B, 0x05, 0x03, 0x01, 0x01, 0x05, 0x01, 0x04, 0x08, 0x07, 0x06, 0x08, 0x0A, 0x06, 0x07, + 0x04, 0x05, 0x0E, 0x05, 0x04, 0x10, 0x02, 0x07, 0x0B, 0x05, 0x05, 0x0C, 0x06, 0x05, 0x0E, 0x05, + 0x06, 0x0D, 0x06, 0x08, 0x09, 0x06, 0x07, 0x0D, 0x05, 0x05, 0x0F, 0x05, 0x06, 0x10, 0x01, 0x01, + 0x01, 0x03, 0x03, 0x04, 0x03, 0x04, 0x0B, 0x14, 0x0B, 0x02, 0x01, 0x01, 0x03, 0x02, 0x01, 0x01, + 0x13, 0x06, 0x03, 0x05, 0x07, 0x09, 0x09, 0x07, 0x0D, 0x06, 0x06, 0x0E, 0x03, 0x06, 0x03, 0x0A, + 0x03, 0x01, 0x03, 0x08, 0x04, 0x03, 0x05, 0x0B, 0x05, 0x01, 0x09, 0x10, 0x09, 0x08, 0x0D, 0x07, + 0x0D, 0x09, 0x0A, 0x03, 0x06, 0x02, 0x02, 0x01, 0x02, 0x02, 0x02, 0x02, 0x05, 0x0C, 0x08, 0x0D, + 0x1B, 0x04, 0x04, 0x09, 0x13, 0x06, 0x0B, 0x06, 0x06, 0x0C, 0x05, 0x01, 0x02, 0x07, 0x05, 0x05, + 0x05, 0x0A, 0x04, 0x05, 0x0A, 0x05, 0x03, 0x03, 0x04, 0x01, 0x08, 0x09, 0x04, 0x03, 0x07, 0x04, + 0x08, 0x05, 0x03, 0x0B, 0x03, 0x03, 0x47, 0x55, 0x47, 0x01, 0x09, 0x07, 0x01, 0x09, 0x04, 0x04, + 0x03, 0x09, 0x03, 0x0B, 0x05, 0x07, 0x58, 0x0A, 0x7C, 0x83, 0x01, 0x01, 0x06, 0x0F, 0x06, 0x0C, + 0x04, 0x02, 0x0A, 0x04, 0x15, 0x01, 0x01, 0x03, 0x01, 0x12, 0x02, 0x01, 0x04, 0x02, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x02, 0x08, 0x04, 0x06, 0x0B, 0x08, 0x00, 0x00, 0x00, 0x02, 0x00, 0x56, + 0x00, 0xC7, 0x09, 0xDB, 0x02, 0xBA, 0x00, 0xAB, 0x00, 0xC4, 0x00, 0x00, 0x01, 0x3C, 0x01, 0x35, + 0x2A, 0x01, 0x26, 0x22, 0x23, 0x2A, 0x03, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x26, 0x06, + 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x22, + 0x26, 0x15, 0x14, 0x06, 0x17, 0x14, 0x16, 0x15, 0x14, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x1C, 0x01, 0x15, 0x3A, 0x01, 0x37, 0x36, 0x16, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, + 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x16, 0x06, 0x33, 0x3A, 0x01, 0x17, 0x26, 0x36, + 0x33, 0x32, 0x26, 0x37, 0x3E, 0x01, 0x15, 0x14, 0x36, 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x17, + 0x16, 0x06, 0x33, 0x16, 0x32, 0x33, 0x36, 0x16, 0x33, 0x3A, 0x03, 0x33, 0x32, 0x16, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x32, 0x17, 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x26, 0x06, 0x23, 0x22, 0x36, + 0x37, 0x32, 0x16, 0x33, 0x05, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x37, 0x14, 0x16, + 0x33, 0x22, 0x36, 0x37, 0x36, 0x16, 0x33, 0x32, 0x16, 0x17, 0x16, 0x06, 0x07, 0x09, 0xDB, 0x62, + 0xCA, 0xCA, 0xC9, 0x63, 0x39, 0x72, 0x73, 0x73, 0x39, 0x21, 0x41, 0x21, 0x09, 0x22, 0x06, 0x08, + 0x84, 0x15, 0x3E, 0x86, 0x3D, 0x14, 0x2A, 0x11, 0x0E, 0x1F, 0x0E, 0x0E, 0x1B, 0x0D, 0x0B, 0x19, + 0x0E, 0x0B, 0x17, 0x0A, 0x0F, 0x23, 0x11, 0x14, 0x2D, 0x17, 0x1B, 0x24, 0x15, 0x06, 0x01, 0x0A, + 0x03, 0x22, 0x01, 0x01, 0x01, 0x06, 0x16, 0x11, 0x2C, 0x17, 0x1F, 0x16, 0x08, 0x04, 0x11, 0x07, + 0x20, 0x5B, 0x34, 0x01, 0x01, 0x01, 0x27, 0x1E, 0x10, 0x0A, 0x14, 0x0E, 0x2C, 0x6A, 0x2A, 0x1E, + 0x44, 0x25, 0x0E, 0x1F, 0x10, 0x06, 0x1D, 0x0A, 0x0A, 0x19, 0x0B, 0x1D, 0x3A, 0x1D, 0x12, 0x2B, + 0x12, 0x02, 0x04, 0x06, 0x0B, 0x15, 0x0B, 0x01, 0x01, 0x05, 0x10, 0x07, 0x06, 0x01, 0x46, 0x61, + 0x0F, 0x32, 0x71, 0x32, 0x09, 0x14, 0x0A, 0x05, 0x04, 0x05, 0x0B, 0x16, 0x0C, 0x02, 0x9F, 0x10, + 0x28, 0x52, 0x52, 0x52, 0x29, 0x1F, 0x4A, 0x16, 0x05, 0x0A, 0x06, 0x0D, 0x1A, 0x16, 0x15, 0x1F, + 0x09, 0x09, 0x04, 0x05, 0x0E, 0x1F, 0x10, 0xF9, 0x16, 0x0B, 0x25, 0x0F, 0x14, 0x31, 0x12, 0x11, + 0x0B, 0x17, 0x01, 0x16, 0x04, 0x15, 0x03, 0x0C, 0x1D, 0x0C, 0x16, 0x22, 0x08, 0x03, 0x02, 0x06, + 0x02, 0x46, 0x16, 0x36, 0x12, 0x01, 0x06, 0x03, 0x1E, 0x0C, 0x08, 0x09, 0x09, 0x0B, 0x09, 0x07, + 0x0D, 0x07, 0x07, 0x10, 0x07, 0x05, 0x16, 0x02, 0x03, 0x13, 0x05, 0x08, 0x0D, 0x06, 0x07, 0x0F, + 0x02, 0x04, 0x11, 0x0A, 0x03, 0x07, 0x01, 0x03, 0x07, 0x0C, 0x07, 0x18, 0x31, 0x19, 0x22, 0x4E, + 0x18, 0x14, 0x2F, 0x09, 0x0C, 0x10, 0x15, 0x0A, 0x1B, 0x0A, 0x2F, 0x51, 0x18, 0x02, 0x04, 0x02, + 0x01, 0x0E, 0x2E, 0x18, 0x0E, 0x16, 0x08, 0x17, 0x12, 0x1D, 0x15, 0x21, 0x0A, 0x04, 0x07, 0x01, + 0x01, 0x17, 0x06, 0x05, 0x01, 0x04, 0x04, 0x01, 0x0A, 0x01, 0x05, 0x07, 0x07, 0x02, 0x01, 0x08, + 0x06, 0x1B, 0x06, 0x09, 0x09, 0x02, 0x0B, 0x03, 0x01, 0x09, 0x01, 0x0D, 0x06, 0x03, 0x0F, 0x03, + 0x13, 0x05, 0x0C, 0x01, 0x0F, 0x1F, 0x0F, 0x07, 0x15, 0x07, 0x01, 0x01, 0x07, 0x09, 0x01, 0xDC, + 0x0E, 0x12, 0x04, 0x07, 0x08, 0x0B, 0x0B, 0x2E, 0x10, 0x13, 0x31, 0x46, 0x06, 0x04, 0x02, 0x03, + 0x14, 0x0A, 0x13, 0x07, 0x00, 0x08, 0x00, 0x5C, 0x00, 0x5A, 0x0A, 0xDC, 0x03, 0x26, 0x00, 0x05, + 0x00, 0x0B, 0x01, 0xE6, 0x01, 0xF9, 0x02, 0x0C, 0x02, 0x1F, 0x02, 0x28, 0x02, 0x2E, 0x00, 0x00, + 0x01, 0x22, 0x26, 0x31, 0x30, 0x16, 0x37, 0x22, 0x06, 0x23, 0x32, 0x36, 0x25, 0x06, 0x26, 0x23, + 0x22, 0x26, 0x07, 0x2E, 0x01, 0x07, 0x22, 0x06, 0x07, 0x36, 0x06, 0x23, 0x22, 0x06, 0x27, 0x06, + 0x26, 0x23, 0x2A, 0x01, 0x27, 0x06, 0x16, 0x07, 0x3C, 0x01, 0x33, 0x0E, 0x01, 0x35, 0x34, 0x06, + 0x33, 0x22, 0x26, 0x27, 0x16, 0x26, 0x33, 0x22, 0x06, 0x07, 0x36, 0x22, 0x17, 0x2E, 0x01, 0x23, + 0x32, 0x06, 0x37, 0x22, 0x06, 0x17, 0x26, 0x36, 0x23, 0x30, 0x06, 0x35, 0x34, 0x06, 0x07, 0x34, + 0x22, 0x17, 0x2E, 0x01, 0x27, 0x32, 0x06, 0x35, 0x30, 0x22, 0x31, 0x34, 0x06, 0x35, 0x34, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x15, 0x16, 0x06, 0x23, 0x22, 0x16, 0x15, + 0x1C, 0x01, 0x15, 0x14, 0x06, 0x17, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x23, 0x22, + 0x06, 0x07, 0x2A, 0x01, 0x23, 0x0E, 0x01, 0x07, 0x06, 0x14, 0x15, 0x06, 0x16, 0x07, 0x06, 0x22, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x16, 0x26, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x26, 0x06, 0x23, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x36, 0x23, 0x22, 0x26, 0x07, 0x06, 0x16, 0x15, 0x14, 0x06, 0x27, 0x16, 0x06, 0x27, + 0x32, 0x16, 0x15, 0x06, 0x36, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x34, + 0x26, 0x33, 0x32, 0x36, 0x07, 0x16, 0x36, 0x17, 0x16, 0x06, 0x15, 0x1C, 0x01, 0x15, 0x30, 0x16, + 0x35, 0x34, 0x16, 0x37, 0x36, 0x26, 0x23, 0x22, 0x06, 0x27, 0x26, 0x36, 0x37, 0x36, 0x16, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x16, 0x36, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x07, 0x06, 0x36, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x16, + 0x37, 0x36, 0x26, 0x37, 0x36, 0x16, 0x33, 0x32, 0x36, 0x23, 0x22, 0x06, 0x27, 0x26, 0x36, 0x33, + 0x32, 0x36, 0x33, 0x36, 0x16, 0x17, 0x16, 0x06, 0x33, 0x32, 0x36, 0x17, 0x16, 0x06, 0x17, 0x16, + 0x36, 0x33, 0x30, 0x36, 0x27, 0x26, 0x06, 0x23, 0x26, 0x06, 0x27, 0x26, 0x36, 0x35, 0x34, 0x26, + 0x37, 0x36, 0x16, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x35, 0x34, 0x16, 0x33, 0x32, 0x06, 0x33, + 0x32, 0x16, 0x37, 0x36, 0x26, 0x17, 0x26, 0x36, 0x17, 0x26, 0x36, 0x33, 0x32, 0x06, 0x17, 0x1E, + 0x01, 0x37, 0x36, 0x26, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x06, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x32, 0x33, 0x32, 0x36, 0x33, 0x32, 0x06, 0x17, 0x16, 0x06, 0x15, 0x1C, 0x01, 0x15, + 0x14, 0x26, 0x23, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x22, 0x23, 0x22, + 0x06, 0x07, 0x06, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x37, 0x36, 0x26, + 0x37, 0x36, 0x16, 0x33, 0x32, 0x16, 0x17, 0x26, 0x16, 0x17, 0x16, 0x06, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x16, 0x07, 0x16, 0x06, 0x15, 0x14, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, + 0x26, 0x33, 0x32, 0x16, 0x37, 0x1E, 0x01, 0x17, 0x3C, 0x01, 0x35, 0x16, 0x36, 0x33, 0x3A, 0x01, + 0x33, 0x32, 0x36, 0x17, 0x14, 0x16, 0x07, 0x05, 0x34, 0x26, 0x23, 0x22, 0x26, 0x07, 0x14, 0x06, + 0x17, 0x16, 0x06, 0x33, 0x3A, 0x01, 0x37, 0x26, 0x36, 0x35, 0x05, 0x34, 0x26, 0x07, 0x0E, 0x01, + 0x17, 0x06, 0x36, 0x07, 0x0E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x35, 0x13, 0x26, 0x06, + 0x15, 0x22, 0x26, 0x23, 0x2E, 0x01, 0x07, 0x06, 0x16, 0x15, 0x32, 0x16, 0x33, 0x34, 0x36, 0x27, + 0x05, 0x22, 0x26, 0x07, 0x3A, 0x01, 0x33, 0x3C, 0x01, 0x05, 0x22, 0x06, 0x31, 0x32, 0x36, 0x06, + 0xAD, 0x01, 0x01, 0x01, 0x11, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, 0x20, 0x07, 0x3A, 0x12, 0x13, + 0x9A, 0x01, 0x08, 0x0A, 0x0B, 0x0A, 0x07, 0x0C, 0x05, 0x5B, 0x0E, 0x24, 0x53, 0x22, 0x07, 0x8E, + 0x13, 0x36, 0x6C, 0x36, 0x01, 0x03, 0x07, 0x01, 0x05, 0x12, 0x17, 0x04, 0x09, 0x04, 0x0A, 0x06, + 0x17, 0x02, 0x0A, 0x02, 0x07, 0x04, 0x1B, 0x05, 0x08, 0x02, 0x0A, 0x02, 0x16, 0x07, 0x02, 0x13, + 0x08, 0x0A, 0x01, 0x0C, 0x0D, 0x11, 0x05, 0x1B, 0x09, 0x0A, 0x04, 0x0C, 0x01, 0x22, 0x49, 0x31, + 0x15, 0x04, 0x0D, 0x15, 0x05, 0x02, 0x01, 0x01, 0x01, 0x08, 0x01, 0x03, 0x0A, 0x06, 0x02, 0x05, + 0x07, 0x2E, 0x5B, 0x2E, 0x08, 0x04, 0x03, 0x0B, 0x07, 0x09, 0x05, 0x1D, 0x3C, 0x1D, 0x0D, 0x12, + 0x03, 0x01, 0x01, 0x05, 0x02, 0x02, 0x0F, 0x03, 0x05, 0x05, 0x03, 0x06, 0x0F, 0x04, 0x14, 0x62, + 0x0F, 0x12, 0x15, 0x05, 0x02, 0x0C, 0x04, 0x14, 0x22, 0x14, 0x09, 0x14, 0x0D, 0x0E, 0x3C, 0x17, + 0x15, 0x22, 0x16, 0x1B, 0x2A, 0x13, 0x06, 0x0B, 0x06, 0x0F, 0x09, 0x06, 0x07, 0x3C, 0x1F, 0x1C, + 0x38, 0x1D, 0x15, 0x4A, 0x14, 0x04, 0x05, 0x04, 0x06, 0x0A, 0x0E, 0x0A, 0x23, 0x05, 0x03, 0x03, + 0x0E, 0x19, 0x02, 0x09, 0x0C, 0x01, 0x01, 0x1F, 0x0F, 0x02, 0x01, 0x01, 0x03, 0x07, 0x08, 0x09, + 0x23, 0x08, 0x13, 0x12, 0x05, 0x03, 0x03, 0x42, 0x62, 0x04, 0x02, 0x0C, 0x0E, 0x17, 0x26, 0x06, + 0x05, 0x03, 0x0A, 0x06, 0x17, 0x0A, 0x21, 0x43, 0x21, 0x27, 0x53, 0x25, 0x16, 0x42, 0x07, 0x02, + 0x13, 0x05, 0x09, 0x16, 0x0C, 0x06, 0x12, 0x08, 0x14, 0x62, 0x03, 0x03, 0x6B, 0x15, 0x07, 0x0D, + 0x04, 0x0E, 0x36, 0x15, 0x13, 0x2D, 0x0B, 0x04, 0x01, 0x04, 0x05, 0x15, 0x07, 0x0E, 0x09, 0x11, + 0x02, 0x1D, 0x02, 0x06, 0x08, 0x07, 0x0F, 0x23, 0x0C, 0x08, 0x0D, 0x05, 0x07, 0x04, 0x10, 0x0A, + 0x21, 0x07, 0x03, 0x03, 0x02, 0x0F, 0x3E, 0x12, 0x05, 0x03, 0x0B, 0x17, 0x0D, 0x2C, 0x61, 0x2A, + 0x09, 0x03, 0x02, 0x02, 0x05, 0x47, 0x06, 0x23, 0x44, 0x1E, 0x06, 0x0F, 0x37, 0x0C, 0x10, 0x0F, + 0x11, 0x0A, 0x18, 0x0A, 0x05, 0x05, 0x10, 0x03, 0x02, 0x09, 0x03, 0x0B, 0x0E, 0x18, 0x04, 0x05, + 0x06, 0x24, 0x16, 0x03, 0x08, 0x0C, 0x0D, 0x1B, 0x0E, 0x12, 0x0A, 0x17, 0x17, 0x22, 0x15, 0x19, + 0x34, 0x1A, 0x17, 0x1E, 0x1E, 0x1A, 0x35, 0x1B, 0x0F, 0x01, 0x03, 0x03, 0x03, 0x12, 0x10, 0x28, + 0x57, 0x27, 0x0D, 0x1D, 0x0D, 0x0E, 0x1E, 0x0D, 0x10, 0x1F, 0x10, 0x19, 0x02, 0x04, 0x03, 0x01, + 0x0F, 0x3C, 0x76, 0x3B, 0x25, 0x49, 0x25, 0x10, 0x06, 0x04, 0x02, 0x03, 0x05, 0x06, 0x30, 0x0A, + 0x0A, 0x0F, 0x06, 0x01, 0x20, 0x05, 0x0A, 0x05, 0x1B, 0x25, 0x48, 0x25, 0x18, 0x30, 0x17, 0x09, + 0x13, 0x12, 0x09, 0x01, 0x09, 0x1C, 0x34, 0x67, 0x34, 0x0D, 0x06, 0x0B, 0x03, 0x17, 0x02, 0x01, + 0x09, 0x03, 0x18, 0x50, 0x24, 0x09, 0x12, 0x11, 0x0E, 0x41, 0x03, 0x02, 0x02, 0xF6, 0x11, 0x05, + 0x11, 0x0B, 0x1B, 0x06, 0x02, 0x02, 0x03, 0x03, 0x13, 0x0E, 0x19, 0x08, 0x02, 0x02, 0x03, 0x7D, + 0x2C, 0x19, 0x11, 0x02, 0x05, 0x20, 0x12, 0x1A, 0x06, 0x01, 0x12, 0x0F, 0x4C, 0x0C, 0x07, 0x02, + 0xAB, 0x0B, 0x3A, 0x0A, 0x15, 0x0A, 0x02, 0x42, 0x09, 0x05, 0x03, 0x2F, 0x5E, 0x30, 0x03, 0x03, + 0x02, 0x47, 0x0B, 0x1B, 0x04, 0x0B, 0x15, 0x0A, 0xFE, 0xE9, 0x01, 0x02, 0x01, 0x02, 0x01, 0xA9, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x2E, 0x0D, 0x05, 0x05, 0x0F, 0x05, 0x02, 0x01, 0x06, 0x01, 0x16, + 0x07, 0x06, 0x08, 0x10, 0x09, 0x01, 0x0C, 0x18, 0x05, 0x01, 0x01, 0x01, 0x02, 0x06, 0x0D, 0x11, + 0x06, 0x02, 0x01, 0x01, 0x04, 0x02, 0x01, 0x01, 0x02, 0x04, 0x01, 0x01, 0x07, 0x02, 0x02, 0x07, + 0x0D, 0x0A, 0x06, 0x07, 0x02, 0x01, 0x02, 0x02, 0x03, 0x02, 0x06, 0x03, 0x09, 0x17, 0x0E, 0x05, + 0x0A, 0x02, 0x04, 0x07, 0x0C, 0x05, 0x1A, 0x06, 0x05, 0x0C, 0x02, 0x0B, 0x0E, 0x17, 0x05, 0x11, + 0x23, 0x12, 0x1E, 0x49, 0x1B, 0x2B, 0x0A, 0x0F, 0x7E, 0x08, 0x01, 0x01, 0x0D, 0x0B, 0x03, 0x0A, + 0x01, 0x01, 0x0B, 0x04, 0x02, 0x03, 0x04, 0x0D, 0x06, 0x0A, 0x18, 0x0B, 0x24, 0x17, 0x04, 0x06, + 0x05, 0x12, 0x08, 0x0B, 0x06, 0x20, 0x36, 0x1E, 0x0F, 0x1D, 0x12, 0x14, 0x03, 0x01, 0x0B, 0x02, + 0x0C, 0x04, 0x0C, 0x06, 0x10, 0x0F, 0x15, 0x1D, 0x07, 0x08, 0x08, 0x02, 0x0C, 0x03, 0x04, 0x04, + 0x03, 0x07, 0x05, 0x22, 0x07, 0x19, 0x02, 0x01, 0x0A, 0x0C, 0x03, 0x01, 0x01, 0x0A, 0x44, 0x0B, + 0x1B, 0x37, 0x1B, 0x18, 0x2E, 0x16, 0x08, 0x14, 0x05, 0x07, 0x0E, 0x01, 0x0B, 0x02, 0x02, 0x0E, + 0x08, 0x18, 0x08, 0x0A, 0x12, 0x09, 0x09, 0x10, 0x1F, 0x22, 0x1C, 0x0F, 0x02, 0x03, 0x12, 0x11, + 0x58, 0x07, 0x05, 0x01, 0x04, 0x02, 0x01, 0x05, 0x1B, 0x09, 0x13, 0x07, 0x0B, 0x1E, 0x0A, 0x05, + 0x0F, 0x02, 0x07, 0x11, 0x19, 0x17, 0x07, 0x10, 0x04, 0x0F, 0x4F, 0x03, 0x0B, 0x03, 0x10, 0x03, + 0x04, 0x02, 0x0C, 0x02, 0x02, 0x07, 0x0D, 0x05, 0x01, 0x02, 0x02, 0x02, 0x08, 0x02, 0x04, 0x02, + 0x11, 0x01, 0x08, 0x07, 0x42, 0x05, 0x0F, 0x16, 0x01, 0x06, 0x06, 0x01, 0x32, 0x09, 0x03, 0x19, + 0x03, 0x05, 0x07, 0x03, 0x05, 0x01, 0x08, 0x10, 0x0E, 0x05, 0x14, 0x02, 0x02, 0x02, 0x0F, 0x04, + 0x08, 0x0E, 0x01, 0x10, 0x07, 0x09, 0x11, 0x11, 0x12, 0x0A, 0x02, 0x0B, 0x12, 0x06, 0x06, 0x06, + 0x0B, 0x06, 0x04, 0x01, 0x07, 0x0C, 0x11, 0x29, 0x12, 0x09, 0x12, 0x09, 0x11, 0x02, 0x05, 0x08, + 0x03, 0x0B, 0x03, 0x04, 0x08, 0x03, 0x03, 0x01, 0x11, 0x0F, 0x2A, 0x07, 0x0C, 0x07, 0x0A, 0x04, + 0x07, 0x04, 0x06, 0x06, 0x14, 0x0E, 0x06, 0x0D, 0x12, 0x0E, 0x04, 0x08, 0x16, 0x11, 0x1A, 0x07, + 0x0B, 0x12, 0x12, 0x02, 0x04, 0x04, 0x03, 0x05, 0x03, 0x0D, 0x02, 0x05, 0x0C, 0x06, 0x14, 0x05, + 0x4A, 0x0F, 0x04, 0x01, 0x05, 0x0F, 0x1F, 0x0F, 0x0E, 0x07, 0x06, 0x0D, 0x21, 0x0F, 0x47, 0x20, + 0x0C, 0x13, 0x0C, 0x1E, 0x12, 0x02, 0x50, 0x08, 0x0E, 0x31, 0x09, 0x07, 0x01, 0x09, 0x06, 0x10, + 0x0C, 0x01, 0x63, 0x0A, 0x15, 0x04, 0x01, 0x07, 0x10, 0x09, 0x05, 0x1F, 0x08, 0x01, 0x05, 0x24, + 0x04, 0x45, 0x02, 0x08, 0x01, 0x04, 0xBA, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x59, + 0x00, 0x0D, 0x0A, 0x11, 0x03, 0x71, 0x01, 0xED, 0x02, 0x03, 0x02, 0x10, 0x00, 0x00, 0x01, 0x36, + 0x26, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x06, 0x17, 0x1E, 0x01, 0x27, 0x26, 0x16, 0x17, 0x16, 0x36, + 0x27, 0x26, 0x36, 0x33, 0x32, 0x36, 0x17, 0x14, 0x06, 0x17, 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x16, 0x37, 0x36, 0x26, 0x37, 0x36, 0x16, 0x33, 0x16, 0x32, 0x33, 0x32, 0x36, 0x37, 0x36, + 0x16, 0x17, 0x16, 0x06, 0x37, 0x36, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x33, 0x32, 0x36, + 0x15, 0x14, 0x36, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x06, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x03, 0x33, 0x32, 0x36, 0x17, 0x32, 0x16, 0x35, 0x34, 0x16, 0x35, 0x3C, 0x01, 0x35, 0x34, + 0x26, 0x37, 0x36, 0x32, 0x15, 0x16, 0x36, 0x17, 0x16, 0x06, 0x15, 0x14, 0x32, 0x17, 0x1E, 0x01, + 0x15, 0x14, 0x06, 0x17, 0x16, 0x36, 0x17, 0x16, 0x14, 0x15, 0x14, 0x36, 0x17, 0x14, 0x16, 0x23, + 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x32, 0x36, 0x17, 0x16, 0x06, 0x07, 0x06, 0x26, 0x15, 0x14, + 0x16, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x35, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x17, 0x16, 0x06, 0x15, 0x14, 0x16, 0x23, 0x06, 0x26, 0x23, 0x22, 0x26, 0x07, 0x06, + 0x36, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x06, 0x16, 0x07, 0x06, 0x26, + 0x07, 0x06, 0x16, 0x07, 0x22, 0x26, 0x23, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x27, 0x34, 0x26, 0x07, + 0x22, 0x36, 0x27, 0x26, 0x06, 0x23, 0x26, 0x06, 0x07, 0x06, 0x16, 0x07, 0x06, 0x16, 0x23, 0x22, + 0x26, 0x23, 0x22, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x06, 0x26, + 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x17, + 0x14, 0x06, 0x17, 0x16, 0x36, 0x17, 0x16, 0x06, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x22, 0x07, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x07, 0x0E, + 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x26, 0x23, 0x34, 0x22, 0x35, + 0x3C, 0x01, 0x35, 0x34, 0x26, 0x07, 0x06, 0x16, 0x17, 0x14, 0x16, 0x07, 0x2A, 0x01, 0x27, 0x22, + 0x26, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x22, 0x23, 0x22, 0x06, 0x15, 0x0E, 0x01, 0x07, 0x22, 0x06, + 0x23, 0x22, 0x34, 0x35, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x36, 0x35, + 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x22, 0x06, 0x27, 0x26, 0x36, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x36, 0x26, 0x37, 0x36, 0x16, + 0x17, 0x32, 0x06, 0x15, 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x32, 0x33, 0x1E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, + 0x26, 0x35, 0x26, 0x36, 0x27, 0x2E, 0x01, 0x07, 0x06, 0x16, 0x23, 0x22, 0x26, 0x37, 0x36, 0x06, + 0x23, 0x22, 0x16, 0x07, 0x06, 0x36, 0x35, 0x36, 0x26, 0x37, 0x13, 0x26, 0x06, 0x23, 0x22, 0x16, + 0x15, 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, + 0x07, 0x26, 0x06, 0x15, 0x14, 0x16, 0x33, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x03, 0x39, 0x0A, + 0x04, 0x05, 0x02, 0x15, 0x05, 0x08, 0x0D, 0x0D, 0x07, 0x12, 0x01, 0x01, 0x10, 0x02, 0x04, 0x08, + 0x01, 0x01, 0x0A, 0x0A, 0x03, 0x15, 0x01, 0x02, 0x03, 0x0A, 0x1B, 0x0A, 0x10, 0x20, 0x0F, 0x02, + 0x0F, 0x01, 0x01, 0x03, 0x02, 0x03, 0x13, 0x05, 0x0A, 0x14, 0x0A, 0x0F, 0x02, 0x01, 0x01, 0x10, + 0x01, 0x01, 0x01, 0x0A, 0x05, 0x02, 0x01, 0x04, 0x0C, 0x05, 0x03, 0x1B, 0x09, 0x04, 0x1F, 0x1B, + 0x0B, 0x18, 0x30, 0x18, 0x08, 0x0F, 0x08, 0x0B, 0x09, 0x0F, 0x3B, 0x78, 0x3B, 0x31, 0x63, 0x62, + 0x63, 0x31, 0x14, 0x29, 0x15, 0x03, 0x12, 0x09, 0x04, 0x05, 0x03, 0x1B, 0x01, 0x09, 0x02, 0x01, + 0x02, 0x05, 0x03, 0x04, 0x01, 0x04, 0x03, 0x02, 0x0C, 0x05, 0x04, 0x37, 0x04, 0x02, 0x02, 0x06, + 0x0B, 0x06, 0x01, 0x02, 0x01, 0x03, 0x15, 0x02, 0x02, 0x04, 0x05, 0x05, 0x2F, 0x44, 0x55, 0x4C, + 0x08, 0x04, 0x02, 0x01, 0x10, 0x01, 0x08, 0x10, 0x08, 0x0F, 0x1D, 0x0F, 0x04, 0x09, 0x03, 0x03, + 0x02, 0x04, 0x03, 0x0B, 0x16, 0x0B, 0x1C, 0x39, 0x1C, 0x0E, 0x05, 0x07, 0x12, 0x22, 0x12, 0x1E, + 0x3B, 0x1E, 0x04, 0x0C, 0x04, 0x04, 0x01, 0x01, 0x03, 0x0A, 0x03, 0x05, 0x0A, 0x09, 0x07, 0x0D, + 0x07, 0x0B, 0x02, 0x04, 0x01, 0x04, 0x03, 0x05, 0x01, 0x03, 0x0A, 0x01, 0x04, 0x09, 0x08, 0x02, + 0x03, 0x03, 0x0E, 0x07, 0x02, 0x0C, 0x0D, 0x1A, 0x0C, 0x3E, 0x7B, 0x3D, 0x1D, 0x3A, 0x1D, 0x0E, + 0x1D, 0x0F, 0x09, 0x2D, 0x04, 0x02, 0x10, 0x03, 0x01, 0x01, 0x03, 0x07, 0x0E, 0x07, 0x1B, 0x37, + 0x1C, 0x17, 0x29, 0x14, 0x09, 0x08, 0x01, 0x01, 0x02, 0x02, 0x04, 0x02, 0x05, 0x06, 0x06, 0x09, + 0x02, 0x04, 0x02, 0x01, 0x06, 0x03, 0x02, 0x03, 0x02, 0x07, 0x0F, 0x07, 0x04, 0x06, 0x05, 0x04, + 0x07, 0x04, 0x03, 0x19, 0x07, 0x0E, 0x1E, 0x0E, 0x17, 0x30, 0x18, 0x0E, 0x07, 0x05, 0x09, 0x0B, + 0x05, 0x03, 0x0C, 0x03, 0x04, 0x08, 0x05, 0x04, 0x02, 0x10, 0x1E, 0x3D, 0x1E, 0x09, 0x11, 0x09, + 0x0A, 0x0B, 0x05, 0x03, 0x0C, 0x0B, 0x02, 0x04, 0x0D, 0x05, 0x0D, 0x0A, 0x04, 0x02, 0x3A, 0x08, + 0x17, 0x30, 0x15, 0x21, 0x5A, 0x0D, 0x0C, 0x13, 0x06, 0x05, 0x30, 0x11, 0x01, 0x01, 0x01, 0x06, + 0x05, 0x09, 0x0A, 0x01, 0x01, 0x01, 0x15, 0x0C, 0x17, 0x0B, 0x05, 0x0B, 0x05, 0x02, 0x02, 0x2D, + 0x06, 0x03, 0x02, 0x02, 0x03, 0x08, 0x05, 0x0B, 0x06, 0x09, 0x0B, 0x1A, 0x0A, 0x09, 0x14, 0x08, + 0x03, 0x18, 0x06, 0x07, 0x03, 0x0F, 0x1F, 0x09, 0x11, 0x24, 0x09, 0x03, 0x03, 0x0A, 0x08, 0x14, + 0x07, 0x06, 0x02, 0x02, 0x02, 0x04, 0x01, 0x02, 0x0B, 0x04, 0x02, 0x04, 0x01, 0x02, 0x04, 0x01, + 0x01, 0x02, 0x05, 0x07, 0x13, 0x08, 0x07, 0x01, 0x01, 0x1B, 0x05, 0x20, 0x3E, 0x1F, 0x3E, 0x7D, + 0x3E, 0x1A, 0x38, 0x1A, 0x13, 0x19, 0x11, 0x07, 0x03, 0x02, 0x01, 0x0F, 0x05, 0x16, 0x2D, 0x16, + 0x14, 0x28, 0x13, 0x0C, 0x01, 0x01, 0x02, 0x01, 0x01, 0x07, 0x01, 0x03, 0x04, 0x0B, 0x05, 0x08, + 0x01, 0x01, 0x20, 0x03, 0x11, 0x08, 0x0A, 0x12, 0x01, 0x01, 0x04, 0x06, 0xBE, 0x0A, 0x2A, 0x0D, + 0x19, 0x05, 0x01, 0x1D, 0x06, 0x07, 0x0E, 0x07, 0x0D, 0x09, 0x05, 0x07, 0x1A, 0x01, 0x01, 0x0F, + 0x08, 0x86, 0x08, 0x03, 0x15, 0x10, 0x0B, 0x01, 0x03, 0x09, 0x02, 0x03, 0x48, 0x08, 0x0F, 0x0A, + 0x06, 0x06, 0x04, 0x07, 0x29, 0x02, 0x01, 0x02, 0x09, 0x05, 0x04, 0x03, 0x06, 0x01, 0x09, 0x0A, + 0x01, 0x02, 0x03, 0x02, 0x10, 0x01, 0x03, 0x03, 0x02, 0x03, 0x02, 0x07, 0x02, 0x04, 0x03, 0x01, + 0x04, 0x0C, 0x03, 0x01, 0x04, 0x06, 0x0D, 0x02, 0x02, 0x1A, 0x03, 0x0B, 0x15, 0x0A, 0x05, 0x3A, + 0x02, 0x03, 0x0D, 0x03, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x0C, 0x02, 0x02, 0x08, 0x04, 0x06, + 0x03, 0x05, 0x0D, 0x1A, 0x0D, 0x06, 0x45, 0x03, 0x01, 0x05, 0x09, 0x05, 0x05, 0x05, 0x0A, 0x05, + 0x06, 0x03, 0x06, 0x10, 0x07, 0x0A, 0x1C, 0x0A, 0x05, 0x03, 0x03, 0x02, 0x0F, 0x04, 0x13, 0x13, + 0x0E, 0x01, 0x11, 0x09, 0x01, 0x02, 0x04, 0x05, 0x0A, 0x01, 0x01, 0x03, 0x03, 0x01, 0x01, 0x04, + 0x03, 0x03, 0x01, 0x01, 0x01, 0x2A, 0x04, 0x02, 0x1A, 0x02, 0x01, 0x01, 0x02, 0x01, 0x0D, 0x02, + 0x01, 0x01, 0x08, 0x02, 0x08, 0x01, 0x05, 0x07, 0x35, 0x01, 0x02, 0x01, 0x0A, 0x0A, 0x09, 0x11, + 0x09, 0x04, 0x01, 0x01, 0x05, 0x03, 0x0D, 0x37, 0x01, 0x06, 0x09, 0x0B, 0x08, 0x04, 0x02, 0x06, + 0x01, 0x01, 0x03, 0x06, 0x04, 0x02, 0x03, 0x01, 0x09, 0x02, 0x01, 0x01, 0x09, 0x0D, 0x06, 0x0D, + 0x0B, 0x03, 0x0D, 0x03, 0x04, 0x04, 0x01, 0x02, 0x0F, 0x07, 0x09, 0x15, 0x2A, 0x15, 0x08, 0x0B, + 0x07, 0x07, 0x10, 0x08, 0x15, 0x2B, 0x15, 0x09, 0x15, 0x09, 0x06, 0x0B, 0x09, 0x07, 0x05, 0x02, + 0x06, 0x09, 0x05, 0x08, 0x11, 0x39, 0x0A, 0x13, 0x30, 0x16, 0x11, 0x20, 0x12, 0x16, 0x2E, 0x16, + 0x10, 0x09, 0x01, 0x01, 0x01, 0x08, 0x06, 0x14, 0x07, 0x05, 0x11, 0x05, 0x09, 0x11, 0x08, 0x14, + 0x24, 0x15, 0x10, 0x1A, 0x04, 0x0A, 0x11, 0x0C, 0x11, 0x6E, 0x0D, 0x0D, 0x24, 0x12, 0x12, 0x0E, + 0x01, 0x05, 0x04, 0x09, 0x12, 0x09, 0x09, 0x03, 0x03, 0x04, 0x0D, 0x0A, 0x12, 0x15, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x17, 0x03, 0x07, 0x0C, 0x02, 0x08, 0x05, 0x01, 0x01, 0x07, 0x08, 0x0A, 0x0B, + 0x0A, 0x09, 0x0C, 0x0B, 0x05, 0x02, 0x03, 0x03, 0x25, 0x06, 0x21, 0x0A, 0x12, 0x27, 0x18, 0x09, + 0x0A, 0x01, 0x01, 0x03, 0x03, 0x12, 0x05, 0x08, 0x0D, 0x09, 0x23, 0x46, 0x24, 0x16, 0x2C, 0x16, + 0x19, 0x31, 0x18, 0x05, 0x14, 0x02, 0x03, 0x03, 0x01, 0x0D, 0x04, 0x09, 0x02, 0x03, 0x05, 0x04, + 0x24, 0x08, 0x03, 0x04, 0x07, 0x06, 0x01, 0x01, 0x05, 0x0A, 0x04, 0x08, 0x03, 0x03, 0x03, 0x03, + 0x07, 0x06, 0x05, 0x07, 0x03, 0x01, 0x09, 0x04, 0x07, 0x20, 0x0A, 0x16, 0x2C, 0x16, 0xFE, 0x6F, + 0x0A, 0x08, 0x2F, 0x11, 0x0A, 0x03, 0x02, 0x05, 0x07, 0x0D, 0x0C, 0x09, 0x11, 0x04, 0x11, 0x0D, + 0x1D, 0x03, 0x12, 0x0F, 0x04, 0x0D, 0x05, 0x08, 0x0E, 0x08, 0x00, 0x00, 0x00, 0x05, 0x00, 0x5B, + 0x00, 0xA9, 0x0A, 0x64, 0x02, 0xD9, 0x01, 0x0B, 0x01, 0x1E, 0x01, 0x4A, 0x01, 0x50, 0x01, 0x56, + 0x00, 0x00, 0x01, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x31, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, + 0x26, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x03, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x06, + 0x26, 0x27, 0x26, 0x06, 0x27, 0x26, 0x36, 0x27, 0x2A, 0x01, 0x17, 0x14, 0x06, 0x23, 0x2A, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x15, 0x26, 0x36, 0x27, + 0x26, 0x22, 0x07, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x26, 0x23, 0x26, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x37, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x1E, 0x01, 0x17, + 0x14, 0x16, 0x15, 0x16, 0x06, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x0E, 0x01, 0x15, 0x32, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3A, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x16, 0x36, 0x17, + 0x16, 0x32, 0x37, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x33, 0x36, 0x16, 0x33, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, + 0x37, 0x36, 0x26, 0x27, 0x26, 0x06, 0x27, 0x26, 0x16, 0x37, 0x05, 0x06, 0x26, 0x27, 0x26, 0x22, + 0x27, 0x2E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x3A, 0x01, 0x17, 0x16, 0x06, 0x07, 0x25, 0x22, 0x26, + 0x07, 0x0E, 0x01, 0x27, 0x22, 0x26, 0x23, 0x06, 0x26, 0x37, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x14, + 0x16, 0x17, 0x16, 0x36, 0x33, 0x1E, 0x01, 0x17, 0x15, 0x25, 0x32, 0x16, 0x33, 0x06, 0x26, 0x07, + 0x2A, 0x01, 0x23, 0x36, 0x16, 0x0A, 0x2F, 0x09, 0x13, 0x09, 0x0E, 0x01, 0x01, 0x04, 0x07, 0x0A, + 0x0B, 0x07, 0x0C, 0x1E, 0x0F, 0x06, 0x0E, 0x07, 0x08, 0x04, 0x01, 0x03, 0x08, 0x07, 0x06, 0x0D, + 0x08, 0x35, 0x6E, 0x35, 0x38, 0x6F, 0x38, 0x2D, 0x5A, 0x5A, 0x59, 0x2D, 0x2D, 0x5A, 0x2C, 0x2A, + 0x55, 0x2A, 0x10, 0x06, 0x02, 0x03, 0x23, 0x09, 0x04, 0x07, 0x06, 0x04, 0x0E, 0x01, 0x01, 0x09, + 0x09, 0x13, 0x0A, 0x2C, 0x58, 0x2C, 0x16, 0x2D, 0x17, 0x05, 0x05, 0x02, 0x0B, 0x03, 0x06, 0x05, + 0x16, 0x08, 0x0C, 0x18, 0x0A, 0x03, 0x02, 0x02, 0x03, 0x04, 0x04, 0x09, 0x0F, 0x06, 0x04, 0x11, + 0x08, 0x02, 0x01, 0x0B, 0x06, 0x0C, 0x01, 0x2C, 0x58, 0x2C, 0x2C, 0x57, 0x2C, 0x17, 0x2D, 0x16, + 0x08, 0x0D, 0x06, 0x06, 0x0C, 0x08, 0x15, 0x2A, 0x15, 0x09, 0x27, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x04, 0x0A, 0x10, 0x1E, 0x0F, 0x0F, 0x26, 0x0C, 0x06, 0x07, 0x04, 0x04, 0x08, 0x06, 0x08, 0x15, + 0x10, 0x2A, 0x53, 0x2B, 0x03, 0x01, 0x0A, 0x15, 0x0B, 0x06, 0x1A, 0x04, 0x08, 0x08, 0x07, 0x0A, + 0x17, 0x0C, 0x07, 0x19, 0x01, 0x1E, 0x0C, 0x10, 0x20, 0x10, 0x14, 0x2A, 0x14, 0x13, 0x17, 0x03, + 0x09, 0x0C, 0x08, 0x0A, 0x12, 0x08, 0x05, 0x0D, 0x0F, 0x0F, 0x23, 0x10, 0x0B, 0x15, 0x0B, 0x09, + 0x10, 0x09, 0x0D, 0x16, 0x08, 0x0A, 0x11, 0x11, 0x0E, 0x1F, 0x0E, 0x0C, 0x17, 0x0C, 0x07, 0x12, + 0x07, 0x0F, 0x17, 0x0F, 0x15, 0x2C, 0x14, 0x12, 0x25, 0x11, 0x12, 0x2C, 0x14, 0x15, 0x2A, 0x16, + 0x2C, 0x5A, 0x2D, 0x2C, 0x59, 0x2C, 0x17, 0x2C, 0x16, 0x0A, 0x13, 0x0A, 0x09, 0x0F, 0x0A, 0x2D, + 0x59, 0x59, 0x59, 0x2C, 0x2D, 0x5A, 0x2D, 0x17, 0x2F, 0x17, 0x0D, 0x10, 0x02, 0x03, 0x0C, 0x0E, + 0x0A, 0x22, 0x05, 0x04, 0x1C, 0x04, 0xF9, 0x2E, 0x09, 0x2C, 0x0E, 0x0A, 0x15, 0x08, 0x05, 0x04, + 0x02, 0x05, 0x34, 0x12, 0x09, 0x16, 0x07, 0x08, 0x04, 0x04, 0x06, 0x7B, 0x4F, 0x9B, 0x4F, 0x27, + 0x4F, 0x27, 0x10, 0x20, 0x10, 0x0A, 0x0D, 0x0A, 0x04, 0x14, 0x06, 0x09, 0x11, 0x09, 0x13, 0x28, + 0x13, 0x28, 0x4F, 0x27, 0x27, 0x4D, 0x27, 0x0A, 0x14, 0x0A, 0x02, 0x0A, 0x02, 0x02, 0x01, 0x04, + 0x0D, 0x05, 0x05, 0x04, 0x03, 0xF9, 0x69, 0x01, 0x02, 0x02, 0x03, 0x01, 0x43, 0x01, 0x01, 0x01, + 0x02, 0x01, 0x02, 0x4D, 0x03, 0x02, 0x04, 0x02, 0x0B, 0x1D, 0x08, 0x09, 0x02, 0x03, 0x06, 0x08, + 0x0D, 0x15, 0x09, 0x03, 0x07, 0x0F, 0x06, 0x0A, 0x14, 0x08, 0x07, 0x01, 0x01, 0x04, 0x03, 0x02, + 0x03, 0x01, 0x0E, 0x0D, 0x0F, 0x0D, 0x06, 0x03, 0x0F, 0x01, 0x05, 0x09, 0x05, 0x01, 0x06, 0x05, + 0x0B, 0x05, 0x05, 0x10, 0x09, 0x08, 0x01, 0x01, 0x07, 0x01, 0x0B, 0x03, 0x01, 0x03, 0x07, 0x07, + 0x1E, 0x01, 0x19, 0x05, 0x02, 0x11, 0x06, 0x04, 0x08, 0x04, 0x04, 0x08, 0x04, 0x02, 0x04, 0x02, + 0x01, 0x02, 0x06, 0x05, 0x06, 0x01, 0x04, 0x05, 0x03, 0x01, 0x02, 0x0C, 0x2C, 0x56, 0x2C, 0x17, + 0x2F, 0x17, 0x0A, 0x36, 0x04, 0x06, 0x0E, 0x07, 0x06, 0x0F, 0x0C, 0x07, 0x14, 0x08, 0x0A, 0x12, + 0x09, 0x0E, 0x10, 0x04, 0x09, 0x15, 0x08, 0x04, 0x09, 0x05, 0x01, 0x02, 0x01, 0x02, 0x06, 0x0F, + 0x1D, 0x0D, 0x15, 0x2A, 0x14, 0x0E, 0x22, 0x10, 0x0F, 0x0D, 0x03, 0x05, 0x06, 0x04, 0x04, 0x08, + 0x05, 0x05, 0x17, 0x08, 0x13, 0x1E, 0x10, 0x13, 0x25, 0x13, 0x0B, 0x27, 0x04, 0x04, 0x01, 0x01, + 0x01, 0x01, 0x05, 0x15, 0x0A, 0x0B, 0x14, 0x03, 0x03, 0x02, 0x01, 0x02, 0x05, 0x03, 0x02, 0x08, + 0x01, 0x01, 0x14, 0x03, 0x03, 0x04, 0x02, 0x02, 0x04, 0x06, 0x06, 0x01, 0x01, 0x01, 0x01, 0x04, + 0x03, 0x01, 0x01, 0x03, 0x03, 0x05, 0x16, 0x0B, 0x0E, 0x1F, 0x05, 0x04, 0x09, 0x0D, 0x08, 0x02, + 0x01, 0x91, 0x0D, 0x03, 0x01, 0x01, 0x08, 0x05, 0x10, 0x08, 0x18, 0x01, 0x01, 0x08, 0x0A, 0x16, + 0x0B, 0x81, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x07, 0x0B, 0x05, 0x02, 0x01, 0x02, 0x02, + 0x02, 0x01, 0x02, 0x02, 0x01, 0x04, 0x04, 0x06, 0x8C, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x00, + 0x00, 0x02, 0x00, 0x59, 0x00, 0x26, 0x09, 0x01, 0x03, 0x5A, 0x00, 0x64, 0x00, 0x8C, 0x00, 0x00, + 0x01, 0x2F, 0x01, 0x21, 0x07, 0x27, 0x21, 0x27, 0x07, 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x27, + 0x07, 0x35, 0x27, 0x23, 0x15, 0x21, 0x15, 0x23, 0x35, 0x21, 0x2F, 0x02, 0x15, 0x0F, 0x01, 0x27, + 0x07, 0x27, 0x22, 0x06, 0x07, 0x14, 0x16, 0x1F, 0x02, 0x0F, 0x01, 0x1F, 0x01, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x0F, 0x02, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x0F, 0x01, 0x05, 0x27, 0x37, 0x13, 0x17, + 0x3F, 0x01, 0x1F, 0x02, 0x3F, 0x03, 0x3E, 0x01, 0x3F, 0x01, 0x21, 0x3F, 0x01, 0x35, 0x27, 0x35, + 0x33, 0x15, 0x33, 0x15, 0x33, 0x17, 0x37, 0x21, 0x37, 0x17, 0x21, 0x3F, 0x02, 0x27, 0x01, 0x0F, + 0x02, 0x2F, 0x04, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x3F, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x16, 0x1F, 0x01, 0x37, 0x2F, 0x01, 0x34, 0x36, 0x3F, 0x03, 0x1F, 0x02, 0x15, 0x08, + 0xFF, 0x09, 0x07, 0xFE, 0x46, 0x0A, 0x0A, 0xFE, 0xA9, 0x0D, 0x0A, 0x96, 0x2B, 0x1C, 0x0B, 0x0A, + 0x08, 0x48, 0xFE, 0xD2, 0xAF, 0xFE, 0xC6, 0x08, 0x5C, 0x17, 0x1E, 0x13, 0x2B, 0x07, 0x10, 0x08, + 0x09, 0x02, 0x04, 0x05, 0x0A, 0x35, 0x03, 0x01, 0x0B, 0x26, 0x0E, 0x13, 0x04, 0x06, 0x03, 0x02, + 0x0A, 0x14, 0x10, 0x1A, 0x0A, 0x09, 0x0E, 0x04, 0x03, 0x01, 0x35, 0x10, 0x03, 0x49, 0x0A, 0x1A, + 0x16, 0x15, 0x26, 0x15, 0x96, 0x17, 0x0E, 0x3A, 0x02, 0x06, 0x03, 0x06, 0x01, 0x46, 0x03, 0x07, + 0x07, 0x1E, 0x31, 0x91, 0x0D, 0x09, 0x01, 0x57, 0x09, 0x06, 0x01, 0xBF, 0x05, 0x09, 0x04, 0x02, + 0xFA, 0x55, 0x15, 0x1D, 0x3F, 0x47, 0x1F, 0x2A, 0x25, 0x19, 0x04, 0x01, 0x02, 0x03, 0x0A, 0x08, + 0x05, 0x13, 0x0D, 0x17, 0x10, 0x09, 0x0B, 0x01, 0x01, 0x05, 0x06, 0x0B, 0x0A, 0x06, 0x02, 0x06, + 0x05, 0x11, 0x23, 0xA4, 0x0A, 0x10, 0x02, 0x03, 0x2D, 0x1E, 0x09, 0x04, 0x01, 0x06, 0x06, 0x2A, + 0x14, 0x17, 0x0D, 0x01, 0x1A, 0x0A, 0x27, 0x05, 0x06, 0x07, 0x02, 0x0D, 0x19, 0x39, 0x5E, 0x1C, + 0x26, 0x02, 0x07, 0x08, 0x05, 0x0A, 0x03, 0x03, 0x06, 0x15, 0x21, 0x0C, 0x0D, 0x05, 0x09, 0x05, + 0x05, 0x0D, 0x09, 0x1A, 0x29, 0x23, 0x4A, 0x27, 0x27, 0x52, 0x2B, 0x47, 0x03, 0x17, 0x23, 0x01, + 0x36, 0x03, 0x03, 0x05, 0x03, 0x0C, 0x08, 0x05, 0x05, 0x10, 0x8C, 0x05, 0x08, 0x03, 0x03, 0x31, + 0x06, 0x18, 0x06, 0x32, 0x15, 0x1A, 0x05, 0x06, 0x03, 0x04, 0x0D, 0x1E, 0x38, 0x35, 0xFE, 0xEC, + 0x3C, 0x41, 0x04, 0x03, 0x02, 0x02, 0x10, 0x1D, 0x09, 0x14, 0x0B, 0x0A, 0x12, 0x09, 0x06, 0x0A, + 0x04, 0x06, 0x13, 0x0C, 0x1A, 0x0F, 0x08, 0x16, 0x0D, 0x18, 0x07, 0x0E, 0x1D, 0x0A, 0x12, 0x08, + 0x17, 0x24, 0x01, 0x01, 0x09, 0x0E, 0x09, 0x00, 0x00, 0x02, 0x00, 0x64, 0x00, 0x42, 0x02, 0x6C, + 0x03, 0x40, 0x00, 0x4D, 0x00, 0x74, 0x00, 0x00, 0x01, 0x06, 0x16, 0x17, 0x16, 0x06, 0x0F, 0x01, + 0x0E, 0x01, 0x07, 0x3F, 0x02, 0x2F, 0x01, 0x2E, 0x01, 0x2F, 0x01, 0x0F, 0x01, 0x33, 0x07, 0x27, + 0x2E, 0x01, 0x3F, 0x01, 0x36, 0x34, 0x27, 0x17, 0x1E, 0x01, 0x1F, 0x02, 0x37, 0x36, 0x26, 0x2F, + 0x01, 0x2E, 0x01, 0x35, 0x3E, 0x01, 0x37, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x1F, + 0x02, 0x1E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x26, 0x36, 0x37, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x1F, + 0x01, 0x0F, 0x01, 0x07, 0x37, 0x2F, 0x01, 0x2E, 0x01, 0x2F, 0x01, 0x07, 0x33, 0x15, 0x0F, 0x02, + 0x0E, 0x01, 0x07, 0x03, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x31, + 0x13, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x3F, 0x02, 0x02, 0x58, 0x01, 0x02, 0x05, 0x03, 0x02, 0x06, + 0x21, 0x06, 0x11, 0x0A, 0x09, 0x05, 0x24, 0x07, 0x19, 0x07, 0x0E, 0x06, 0x16, 0x22, 0x0A, 0x04, + 0x17, 0x0D, 0x05, 0x01, 0x02, 0x0D, 0x04, 0x04, 0x0C, 0x06, 0x0A, 0x03, 0x04, 0x01, 0x0F, 0x01, + 0x07, 0x07, 0x17, 0x03, 0x03, 0x01, 0x05, 0x05, 0x01, 0x09, 0x09, 0x04, 0x16, 0x13, 0x07, 0x09, + 0x02, 0x08, 0x0C, 0x03, 0x06, 0x02, 0x02, 0x04, 0x06, 0x07, 0x02, 0x09, 0x01, 0x0C, 0x0C, 0x0B, + 0x0F, 0x02, 0x01, 0x08, 0x0C, 0x38, 0x1F, 0x05, 0x16, 0x07, 0x0C, 0x06, 0x0F, 0x1F, 0x01, 0x53, + 0x13, 0x1F, 0x18, 0x1F, 0x08, 0xB6, 0x02, 0x05, 0x08, 0x09, 0x18, 0x0E, 0x0F, 0x1E, 0x10, 0x11, + 0x15, 0xB6, 0x08, 0x0B, 0x03, 0x03, 0x04, 0x03, 0x44, 0x05, 0x02, 0x86, 0x04, 0x09, 0x05, 0x05, + 0x0F, 0x08, 0x28, 0x07, 0x09, 0x02, 0x10, 0x01, 0x32, 0x12, 0x18, 0x05, 0x07, 0x02, 0x02, 0x2F, + 0x0E, 0x1C, 0x1B, 0x0E, 0x17, 0x09, 0x17, 0x07, 0x14, 0x0D, 0x05, 0x03, 0x0C, 0x08, 0x1C, 0x0B, + 0x22, 0x05, 0x11, 0x0B, 0x1D, 0x05, 0x16, 0x11, 0x12, 0x16, 0x05, 0x0B, 0x13, 0x09, 0x04, 0x09, + 0x06, 0x02, 0x09, 0x06, 0x16, 0x10, 0x05, 0x02, 0x02, 0x02, 0x0C, 0x0A, 0x0A, 0x17, 0x0D, 0x05, + 0x10, 0x0B, 0x0B, 0x15, 0x0B, 0x15, 0x19, 0x11, 0x4F, 0x2B, 0x0E, 0x13, 0x05, 0x07, 0x02, 0x01, + 0x2B, 0x06, 0x65, 0x0C, 0x0F, 0x0B, 0x16, 0x0C, 0xFF, 0x00, 0x06, 0x12, 0x0C, 0x0E, 0x18, 0x0A, + 0x0B, 0x0E, 0x05, 0x04, 0x05, 0x01, 0x00, 0x0C, 0x25, 0x19, 0x1B, 0x1C, 0x03, 0x6F, 0x01, 0x00, + 0x00, 0x04, 0x00, 0x5B, 0x00, 0x26, 0x05, 0x92, 0x03, 0x59, 0x01, 0x01, 0x01, 0x0A, 0x01, 0x17, + 0x01, 0x2C, 0x00, 0x00, 0x01, 0x34, 0x06, 0x23, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x36, 0x26, + 0x35, 0x3C, 0x01, 0x23, 0x36, 0x26, 0x27, 0x26, 0x06, 0x27, 0x2E, 0x01, 0x23, 0x26, 0x06, 0x23, + 0x2A, 0x03, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x26, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, + 0x06, 0x07, 0x22, 0x06, 0x31, 0x0E, 0x01, 0x07, 0x06, 0x14, 0x17, 0x2A, 0x01, 0x23, 0x22, 0x26, + 0x23, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, 0x37, 0x14, 0x16, 0x17, 0x16, + 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x33, 0x32, 0x36, + 0x37, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x06, 0x17, 0x16, 0x06, 0x15, 0x14, 0x06, 0x07, + 0x0E, 0x01, 0x15, 0x14, 0x16, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x1E, + 0x01, 0x15, 0x14, 0x16, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x16, 0x33, 0x32, 0x36, + 0x37, 0x36, 0x16, 0x27, 0x26, 0x36, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x34, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x36, 0x26, 0x35, 0x34, 0x36, 0x35, 0x34, + 0x26, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, 0x35, 0x34, 0x36, 0x27, 0x36, 0x32, + 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x07, 0x06, 0x16, 0x17, + 0x1E, 0x01, 0x37, 0x36, 0x26, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x36, 0x35, 0x34, 0x26, 0x31, 0x3E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, + 0x37, 0x36, 0x26, 0x35, 0x05, 0x3C, 0x01, 0x35, 0x26, 0x36, 0x35, 0x16, 0x14, 0x05, 0x2E, 0x01, + 0x37, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x22, 0x26, 0x27, 0x37, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x37, 0x36, 0x16, 0x33, 0x32, 0x36, 0x07, 0x16, 0x06, 0x05, + 0x92, 0x1A, 0x06, 0x0E, 0x4E, 0x09, 0x03, 0x06, 0x03, 0x03, 0x07, 0x0B, 0x04, 0x0D, 0x09, 0x0E, + 0x1E, 0x0C, 0x0A, 0x0C, 0x10, 0x0B, 0x1C, 0x0C, 0x49, 0x90, 0x91, 0x91, 0x48, 0x31, 0x62, 0x31, + 0x13, 0x16, 0x07, 0x05, 0x05, 0x05, 0x06, 0x04, 0x06, 0x0C, 0x0E, 0x06, 0x01, 0x05, 0x01, 0x05, + 0x02, 0x03, 0x05, 0x0D, 0x1B, 0x0D, 0x09, 0x02, 0x07, 0x06, 0x18, 0x03, 0x04, 0x05, 0x01, 0x04, + 0x1F, 0x19, 0x16, 0x09, 0x05, 0x09, 0x04, 0x04, 0x0E, 0x08, 0x06, 0x09, 0x04, 0x07, 0x14, 0x07, + 0x12, 0x25, 0x13, 0x07, 0x24, 0x08, 0x04, 0x03, 0x04, 0x05, 0x0D, 0x06, 0x10, 0x21, 0x10, 0x05, + 0x0A, 0x05, 0x04, 0x01, 0x04, 0x03, 0x01, 0x02, 0x06, 0x0C, 0x0E, 0x01, 0x02, 0x01, 0x03, 0x02, + 0x07, 0x0C, 0x05, 0x08, 0x05, 0x01, 0x05, 0x07, 0x0A, 0x05, 0x07, 0x13, 0x0F, 0x08, 0x13, 0x0B, + 0x0B, 0x11, 0x0A, 0x08, 0x34, 0x07, 0x03, 0x04, 0x03, 0x01, 0x05, 0x01, 0x01, 0x01, 0x02, 0x03, + 0x02, 0x03, 0x04, 0x01, 0x04, 0x04, 0x02, 0x04, 0x0E, 0x06, 0x08, 0x0D, 0x03, 0x01, 0x0A, 0x16, + 0x30, 0x17, 0x1A, 0x2F, 0x14, 0x05, 0x05, 0x04, 0x07, 0x04, 0x24, 0x48, 0x24, 0x10, 0x0E, 0x01, + 0x03, 0x02, 0x05, 0x26, 0x0E, 0x3B, 0x06, 0x04, 0x04, 0x0B, 0x07, 0x0A, 0x12, 0x09, 0x02, 0x12, + 0x03, 0x0A, 0x09, 0x03, 0x02, 0x13, 0x02, 0x10, 0x21, 0x10, 0x09, 0x1B, 0x05, 0x05, 0x05, 0xFA, + 0xD9, 0x01, 0x01, 0x02, 0x02, 0x65, 0x02, 0x01, 0x02, 0x01, 0x04, 0x03, 0x03, 0x05, 0x05, 0x0E, + 0x03, 0x03, 0x7B, 0x02, 0x03, 0x03, 0x05, 0x13, 0x0A, 0x0B, 0x03, 0x05, 0x04, 0x16, 0x01, 0x01, + 0x32, 0x08, 0x08, 0x1E, 0x04, 0x02, 0x06, 0x02, 0xC3, 0x0B, 0x02, 0x06, 0x0B, 0x01, 0x04, 0x01, + 0x08, 0x10, 0x08, 0x06, 0x0D, 0x0C, 0x1A, 0x05, 0x07, 0x05, 0x08, 0x09, 0x11, 0x01, 0x02, 0x11, + 0x10, 0x04, 0x05, 0x02, 0x03, 0x06, 0x07, 0x08, 0x09, 0x03, 0x05, 0x03, 0x06, 0x0D, 0x06, 0x07, + 0x01, 0x08, 0x07, 0x08, 0x07, 0x07, 0x06, 0x0C, 0x06, 0x3B, 0x77, 0x3B, 0x18, 0x1D, 0x16, 0x14, + 0x0B, 0x16, 0x0A, 0x08, 0x1C, 0x08, 0x08, 0x2B, 0x04, 0x05, 0x13, 0x02, 0x04, 0x02, 0x04, 0x04, + 0x02, 0x09, 0x02, 0x02, 0x05, 0x01, 0x01, 0x03, 0x02, 0x02, 0x0A, 0x04, 0x03, 0x0A, 0x01, 0x03, + 0x2F, 0x05, 0x0C, 0x1C, 0x0D, 0x0F, 0x1D, 0x10, 0x0E, 0x1F, 0x0E, 0x06, 0x15, 0x02, 0x03, 0x05, + 0x0D, 0x20, 0x38, 0x1E, 0x07, 0x10, 0x07, 0x08, 0x0D, 0x07, 0x0D, 0x24, 0x0A, 0x0D, 0x02, 0x06, + 0x03, 0x02, 0x01, 0x02, 0x0D, 0x06, 0x11, 0x07, 0x02, 0x01, 0x03, 0x01, 0x04, 0x02, 0x03, 0x06, + 0x04, 0x06, 0x0F, 0x07, 0x0F, 0x1C, 0x0F, 0x18, 0x42, 0x18, 0x1C, 0x3B, 0x1E, 0x10, 0x1D, 0x0F, + 0x06, 0x15, 0x02, 0x01, 0x02, 0x07, 0x20, 0x09, 0x0C, 0x06, 0x07, 0x0F, 0x08, 0x01, 0x01, 0x10, + 0x0F, 0x1D, 0x0F, 0x1E, 0x3B, 0x1E, 0x20, 0x47, 0x0C, 0x05, 0x15, 0x12, 0x0C, 0x23, 0x0C, 0x3C, + 0x76, 0x3B, 0x0B, 0x09, 0x04, 0x07, 0x10, 0x12, 0x04, 0x14, 0x02, 0x07, 0x0E, 0x09, 0x02, 0x0E, + 0x04, 0x05, 0x02, 0x09, 0x09, 0x2A, 0x0A, 0x2B, 0x09, 0x13, 0x09, 0x03, 0x08, 0x03, 0x0A, 0x1F, + 0x67, 0x04, 0x09, 0x04, 0x04, 0x07, 0x04, 0x03, 0x09, 0x02, 0x02, 0x0A, 0x11, 0x04, 0x0C, 0x04, + 0x08, 0x01, 0x08, 0x06, 0x03, 0x21, 0x03, 0x08, 0x03, 0x03, 0x0D, 0x06, 0x08, 0x00, 0x00, 0x00, + 0x00, 0x08, 0x00, 0x55, 0x00, 0x94, 0x08, 0x53, 0x02, 0xEF, 0x00, 0x77, 0x00, 0x90, 0x00, 0xAC, + 0x00, 0xCE, 0x01, 0x35, 0x01, 0x4E, 0x01, 0x6A, 0x01, 0x8C, 0x00, 0x00, 0x01, 0x2E, 0x03, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2A, 0x01, 0x23, 0x2E, 0x01, 0x23, 0x26, 0x22, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x34, 0x35, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x14, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x2E, 0x01, 0x27, 0x26, + 0x16, 0x31, 0x25, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x36, 0x06, 0x37, 0x13, 0x0E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x06, 0x07, 0x06, 0x36, 0x31, 0x37, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x30, 0x36, 0x07, 0x25, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x26, 0x27, 0x26, 0x34, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x37, 0x3E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x14, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x03, 0x37, 0x2E, 0x01, 0x27, 0x31, 0x25, 0x3E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x36, 0x37, 0x36, 0x06, 0x37, 0x13, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, + 0x06, 0x36, 0x31, 0x37, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x30, 0x36, 0x07, 0x03, 0xE8, 0x25, 0x50, 0x55, 0x56, 0x2B, 0x1F, 0x3E, 0x1F, 0x0B, + 0x14, 0x0B, 0x03, 0x06, 0x03, 0x03, 0x03, 0x04, 0x06, 0x0D, 0x04, 0x04, 0x09, 0x05, 0x04, 0x08, + 0x01, 0x02, 0x04, 0x02, 0x04, 0x0B, 0x0E, 0x13, 0x32, 0x1C, 0x10, 0x1C, 0x05, 0x03, 0x01, 0x13, + 0x09, 0x04, 0x01, 0x04, 0x08, 0x16, 0x0E, 0x07, 0x1B, 0x09, 0x09, 0x0C, 0x06, 0x11, 0x23, 0x09, + 0x0B, 0x02, 0x01, 0x05, 0x0B, 0x07, 0x11, 0x08, 0x0A, 0x17, 0x11, 0x12, 0x2A, 0x0A, 0x07, 0x0B, + 0x01, 0x01, 0x08, 0x04, 0x04, 0x08, 0x02, 0x03, 0x02, 0x06, 0x07, 0x25, 0x11, 0x13, 0x1F, 0x0D, + 0x09, 0x1C, 0x01, 0x02, 0x01, 0x07, 0x0A, 0x10, 0x05, 0x0B, 0x24, 0x0E, 0x1F, 0x3D, 0x1F, 0x27, + 0x4F, 0x27, 0x44, 0x80, 0x3C, 0x0C, 0x1B, 0x0E, 0x1E, 0x1E, 0xFC, 0xB9, 0x04, 0x0F, 0x0B, 0x0B, + 0x10, 0x09, 0x0A, 0x0F, 0x03, 0x02, 0x07, 0x0B, 0x07, 0x0F, 0x07, 0x07, 0x0F, 0x04, 0x04, 0x11, + 0x04, 0x09, 0x13, 0x0A, 0x39, 0x0B, 0x0F, 0x09, 0x07, 0x0C, 0x05, 0x03, 0x08, 0x07, 0x07, 0x10, + 0x09, 0x09, 0x15, 0x05, 0x04, 0x03, 0x02, 0x01, 0x02, 0x01, 0x01, 0x0D, 0x05, 0x08, 0x08, 0x02, + 0x0C, 0x18, 0x0D, 0x0C, 0x1F, 0x08, 0x08, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x04, 0x07, 0x05, + 0x14, 0x07, 0x0D, 0x1A, 0x0D, 0x10, 0x20, 0x0D, 0x04, 0x03, 0x04, 0x0A, 0x16, 0x0C, 0x1A, 0x1A, + 0x07, 0x63, 0x30, 0x5F, 0x37, 0x1B, 0x38, 0x1C, 0x21, 0x42, 0x21, 0x21, 0x46, 0x1D, 0x07, 0x12, + 0x08, 0x06, 0x04, 0x03, 0x07, 0x22, 0x1D, 0x17, 0x39, 0x0E, 0x0B, 0x07, 0x04, 0x08, 0x04, 0x03, + 0x0B, 0x04, 0x06, 0x0E, 0x09, 0x09, 0x21, 0x0E, 0x08, 0x0B, 0x04, 0x0A, 0x13, 0x09, 0x0F, 0x16, + 0x03, 0x03, 0x01, 0x01, 0x07, 0x12, 0x09, 0x11, 0x08, 0x09, 0x22, 0x19, 0x11, 0x22, 0x07, 0x08, + 0x10, 0x06, 0x07, 0x02, 0x03, 0x07, 0x4D, 0x1E, 0x0E, 0x1A, 0x08, 0x05, 0x02, 0x01, 0x0B, 0x09, + 0x04, 0x07, 0x02, 0x03, 0x13, 0x09, 0x1C, 0x38, 0x1D, 0x27, 0x4E, 0x27, 0x28, 0x4E, 0x4C, 0x49, + 0x23, 0x05, 0x0A, 0x05, 0xFC, 0x97, 0x04, 0x0F, 0x0C, 0x0B, 0x10, 0x08, 0x0A, 0x0F, 0x03, 0x02, + 0x07, 0x0B, 0x07, 0x0F, 0x07, 0x07, 0x0F, 0x03, 0x05, 0x11, 0x04, 0x0A, 0x14, 0x0A, 0x3A, 0x0C, + 0x0F, 0x09, 0x07, 0x0C, 0x05, 0x03, 0x08, 0x07, 0x08, 0x0F, 0x09, 0x09, 0x15, 0x05, 0x04, 0x03, + 0x02, 0x01, 0x02, 0x01, 0x01, 0x0D, 0x04, 0x09, 0x09, 0x02, 0x0D, 0x18, 0x0C, 0x0D, 0x1F, 0x07, + 0x09, 0x02, 0x02, 0x01, 0x02, 0x01, 0x01, 0x04, 0x07, 0x05, 0x14, 0x07, 0x0D, 0x1A, 0x0E, 0x0F, + 0x20, 0x0D, 0x04, 0x03, 0x04, 0x0A, 0x16, 0x0B, 0x19, 0x19, 0x01, 0xE1, 0x18, 0x20, 0x15, 0x0C, + 0x05, 0x03, 0x05, 0x02, 0x01, 0x01, 0x01, 0x01, 0x03, 0x02, 0x05, 0x08, 0x0F, 0x07, 0x07, 0x02, + 0x09, 0x09, 0x12, 0x09, 0x14, 0x24, 0x0F, 0x14, 0x14, 0x07, 0x05, 0x16, 0x11, 0x0A, 0x14, 0x09, + 0x16, 0x29, 0x13, 0x09, 0x0E, 0x09, 0x0F, 0x19, 0x0B, 0x05, 0x13, 0x09, 0x08, 0x16, 0x0B, 0x1F, + 0x42, 0x23, 0x2C, 0x5B, 0x2C, 0x19, 0x36, 0x16, 0x11, 0x1F, 0x10, 0x14, 0x2D, 0x10, 0x10, 0x2A, + 0x0D, 0x08, 0x12, 0x0B, 0x09, 0x0E, 0x07, 0x0A, 0x15, 0x0B, 0x0F, 0x24, 0x0E, 0x11, 0x12, 0x01, + 0x01, 0x0D, 0x0C, 0x09, 0x1D, 0x0E, 0x0D, 0x26, 0x0B, 0x12, 0x30, 0x03, 0x08, 0x02, 0x02, 0x02, + 0x07, 0x04, 0x05, 0x08, 0x09, 0x0F, 0x36, 0x22, 0x0B, 0x11, 0x09, 0x14, 0x14, 0xBB, 0x08, 0x1E, + 0x02, 0x02, 0x0D, 0x07, 0x08, 0x3B, 0x0B, 0x0A, 0x07, 0x04, 0x04, 0x08, 0x03, 0x04, 0x07, 0x07, + 0x08, 0x1D, 0x07, 0x13, 0x25, 0x12, 0xFE, 0x2F, 0x0A, 0x02, 0x0C, 0x09, 0x13, 0x0A, 0x04, 0x10, + 0x05, 0x05, 0x0B, 0x05, 0x06, 0x06, 0x0C, 0x08, 0x12, 0x08, 0x07, 0x0F, 0x07, 0x07, 0x0A, 0x04, + 0x07, 0x07, 0xB8, 0x0B, 0x15, 0x0B, 0x0B, 0x14, 0x14, 0x2E, 0x16, 0x0F, 0x20, 0x0F, 0x0B, 0x1A, + 0x08, 0x07, 0x04, 0x06, 0x0B, 0x17, 0x0B, 0x0D, 0x1D, 0x10, 0x06, 0x07, 0x04, 0x0D, 0x16, 0x0B, + 0x19, 0x19, 0x4A, 0x1C, 0x2F, 0x0C, 0x06, 0x0C, 0x03, 0x03, 0x08, 0x02, 0x02, 0x01, 0x0C, 0x03, + 0x2F, 0x13, 0x0C, 0x20, 0x0D, 0x1E, 0x2A, 0x0C, 0x0A, 0x10, 0x15, 0x12, 0x34, 0x13, 0x09, 0x12, + 0x09, 0x07, 0x15, 0x07, 0x0B, 0x16, 0x09, 0x09, 0x1D, 0x03, 0x01, 0x14, 0x05, 0x11, 0x24, 0x12, + 0x1E, 0x3C, 0x21, 0x17, 0x2D, 0x16, 0x29, 0x53, 0x24, 0x11, 0x21, 0x11, 0x10, 0x3E, 0x0C, 0x09, + 0x25, 0x12, 0x12, 0x1C, 0x11, 0x12, 0x23, 0x13, 0x26, 0x15, 0x14, 0x09, 0x1C, 0x0F, 0x09, 0x14, + 0x09, 0x06, 0x2E, 0x10, 0x07, 0x0C, 0x08, 0x09, 0x04, 0x01, 0x04, 0x04, 0x04, 0x05, 0x0A, 0x05, + 0x05, 0x15, 0x1E, 0x24, 0x13, 0x04, 0x09, 0x04, 0xCF, 0x08, 0x1E, 0x02, 0x02, 0x0D, 0x07, 0x08, + 0x3B, 0x0B, 0x0A, 0x07, 0x04, 0x04, 0x08, 0x03, 0x04, 0x07, 0x07, 0x08, 0x1D, 0x07, 0x13, 0x25, + 0x12, 0xFE, 0x2F, 0x0A, 0x02, 0x0C, 0x09, 0x13, 0x0A, 0x04, 0x10, 0x05, 0x05, 0x0B, 0x05, 0x06, + 0x06, 0x0C, 0x08, 0x12, 0x08, 0x07, 0x0F, 0x07, 0x07, 0x0A, 0x04, 0x07, 0x07, 0xB8, 0x0B, 0x15, + 0x0B, 0x0B, 0x14, 0x14, 0x2E, 0x16, 0x0F, 0x20, 0x0F, 0x0B, 0x1A, 0x08, 0x07, 0x04, 0x06, 0x0B, + 0x17, 0x0B, 0x0D, 0x1D, 0x10, 0x06, 0x07, 0x04, 0x0D, 0x16, 0x0B, 0x19, 0x19, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x50, 0x00, 0x2C, 0x0A, 0x2C, 0x03, 0x57, 0x00, 0x18, 0x00, 0x2B, 0x01, 0x91, + 0x00, 0x00, 0x01, 0x34, 0x26, 0x23, 0x22, 0x16, 0x17, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x0E, + 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x01, 0x14, 0x16, 0x33, 0x3A, + 0x01, 0x33, 0x32, 0x26, 0x37, 0x34, 0x36, 0x37, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x17, 0x2E, + 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x06, 0x26, 0x27, 0x26, 0x06, 0x23, 0x22, 0x26, + 0x15, 0x14, 0x06, 0x07, 0x06, 0x26, 0x23, 0x2A, 0x03, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x27, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x35, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x07, 0x06, + 0x14, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x22, 0x06, 0x31, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x34, 0x36, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x35, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x16, 0x06, 0x23, 0x0E, 0x01, 0x2E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x26, 0x06, 0x27, 0x26, 0x36, + 0x37, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x33, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x36, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, + 0x27, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x3C, 0x01, 0x35, + 0x3C, 0x01, 0x35, 0x34, 0x26, 0x37, 0x3E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x3A, + 0x01, 0x17, 0x16, 0x32, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x37, 0x3E, 0x01, + 0x33, 0x32, 0x26, 0x37, 0x3E, 0x01, 0x37, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x26, 0x27, 0x26, 0x36, 0x17, 0x1E, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x33, 0x32, + 0x34, 0x35, 0x34, 0x16, 0x33, 0x3A, 0x01, 0x15, 0x14, 0x06, 0x31, 0x3A, 0x01, 0x33, 0x3A, 0x01, + 0x33, 0x32, 0x16, 0x17, 0x16, 0x36, 0x37, 0x36, 0x16, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x33, 0x3A, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x36, + 0x33, 0x32, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x2A, 0x01, 0x23, + 0x05, 0x37, 0x40, 0x18, 0x0D, 0x0E, 0x02, 0x07, 0x13, 0x03, 0x07, 0x02, 0x01, 0x12, 0x0F, 0x0C, + 0x09, 0x1F, 0x11, 0x0E, 0x1D, 0x0E, 0x14, 0x08, 0x03, 0x03, 0xB7, 0x04, 0x05, 0x0D, 0x1A, 0x0C, + 0x08, 0x02, 0x01, 0x01, 0x01, 0x08, 0x21, 0x07, 0x06, 0x0C, 0x03, 0x8B, 0x02, 0x07, 0x01, 0x05, + 0x0C, 0x06, 0x0E, 0x08, 0x08, 0x07, 0x14, 0x04, 0x08, 0x1B, 0x08, 0x03, 0x1F, 0x0B, 0x10, 0x07, + 0x11, 0x07, 0x36, 0x6B, 0x6B, 0x6B, 0x35, 0x1E, 0x3B, 0x1D, 0x13, 0x15, 0x09, 0x03, 0x06, 0x03, + 0x01, 0x09, 0x0B, 0x05, 0x0A, 0x01, 0x01, 0x01, 0x03, 0x06, 0x1B, 0x0C, 0x01, 0x08, 0x06, 0x01, + 0x04, 0x0A, 0x13, 0x09, 0x1C, 0x38, 0x1C, 0x08, 0x28, 0x06, 0x02, 0x02, 0x01, 0x03, 0x07, 0x04, + 0x0C, 0x11, 0x01, 0x04, 0x03, 0x01, 0x0B, 0x03, 0x02, 0x01, 0x05, 0x09, 0x07, 0x0D, 0x18, 0x0C, + 0x0F, 0x1C, 0x0F, 0x06, 0x13, 0x06, 0x0A, 0x07, 0x09, 0x08, 0x15, 0x04, 0x07, 0x09, 0x06, 0x02, + 0x05, 0x06, 0x07, 0x12, 0x05, 0x0D, 0x11, 0x09, 0x06, 0x05, 0x06, 0x08, 0x07, 0x0D, 0x0B, 0x41, + 0x3E, 0x27, 0x0E, 0x21, 0x43, 0x22, 0x04, 0x0A, 0x04, 0x08, 0x08, 0x0E, 0x0C, 0x1F, 0x0B, 0x07, + 0x02, 0x02, 0x05, 0x09, 0x04, 0x03, 0x03, 0x01, 0x08, 0x10, 0x08, 0x1D, 0x3A, 0x1D, 0x0A, 0x13, + 0x09, 0x08, 0x03, 0x04, 0x0D, 0x28, 0x0B, 0x05, 0x07, 0x0A, 0x12, 0x07, 0x09, 0x05, 0x05, 0x0B, + 0x0E, 0x1C, 0x0D, 0x0A, 0x08, 0x07, 0x06, 0x1E, 0x05, 0x13, 0x26, 0x13, 0x08, 0x0F, 0x07, 0x0D, + 0x0B, 0x01, 0x27, 0x4E, 0x27, 0x0C, 0x1F, 0x04, 0x05, 0x2B, 0x0E, 0x0D, 0x02, 0x02, 0x04, 0x08, + 0x22, 0x10, 0x2A, 0x54, 0x2A, 0x35, 0x69, 0x69, 0x69, 0x35, 0x09, 0x0F, 0x03, 0x02, 0x05, 0x08, + 0x0D, 0x19, 0x0D, 0x1A, 0x36, 0x1A, 0x0B, 0x05, 0x06, 0x0B, 0x13, 0x0D, 0x07, 0x07, 0x05, 0x06, + 0x17, 0x09, 0x0A, 0x14, 0x0A, 0x05, 0x1C, 0x03, 0x05, 0x13, 0x01, 0x03, 0x1D, 0x04, 0x08, 0x23, + 0x15, 0x10, 0x06, 0x01, 0x05, 0x09, 0x1F, 0x06, 0x05, 0x05, 0x01, 0x2A, 0x53, 0x2A, 0x2E, 0x5C, + 0x2E, 0x09, 0x09, 0x05, 0x03, 0x0A, 0x04, 0x04, 0x0E, 0x05, 0x04, 0x0A, 0x01, 0x01, 0x05, 0x05, + 0x03, 0x07, 0x04, 0x4F, 0xA0, 0x50, 0x29, 0x52, 0x2A, 0x12, 0x30, 0x0C, 0x0C, 0x19, 0x0D, 0x04, + 0x0B, 0x07, 0x0B, 0x15, 0x0B, 0x0A, 0x06, 0x1C, 0x04, 0x07, 0x08, 0x07, 0x19, 0x32, 0x19, 0x17, + 0x34, 0x1D, 0x15, 0x20, 0x41, 0x20, 0x01, 0xA0, 0x24, 0x01, 0x38, 0x07, 0x04, 0x18, 0x04, 0x08, + 0x15, 0x0A, 0x0C, 0x1E, 0x15, 0x12, 0x03, 0x01, 0x01, 0x03, 0x1D, 0x0F, 0x01, 0x3D, 0x04, 0x1C, + 0x18, 0x06, 0x0B, 0x16, 0x0B, 0x04, 0x04, 0x04, 0x1F, 0x07, 0x81, 0x01, 0x06, 0x09, 0x0B, 0x09, + 0x12, 0x01, 0x04, 0x04, 0x01, 0x02, 0x12, 0x10, 0x07, 0x02, 0x01, 0x03, 0x13, 0x05, 0x09, 0x05, + 0x01, 0x04, 0x02, 0x09, 0x11, 0x09, 0x1A, 0x34, 0x1A, 0x07, 0x09, 0x05, 0x0A, 0x15, 0x0D, 0x15, + 0x2B, 0x14, 0x27, 0x50, 0x26, 0x04, 0x02, 0x07, 0x01, 0x03, 0x06, 0x03, 0x09, 0x12, 0x09, 0x02, + 0x10, 0x0B, 0x04, 0x18, 0x04, 0x0D, 0x1A, 0x0D, 0x2C, 0x5D, 0x2F, 0x05, 0x19, 0x03, 0x02, 0x02, + 0x01, 0x01, 0x0B, 0x02, 0x05, 0x0B, 0x02, 0x02, 0x04, 0x0D, 0x0F, 0x0D, 0x19, 0x06, 0x0B, 0x0C, + 0x0E, 0x05, 0x08, 0x03, 0x03, 0x07, 0x06, 0x10, 0x28, 0x12, 0x0C, 0x0D, 0x0C, 0x0E, 0x09, 0x01, + 0x02, 0x07, 0x16, 0x18, 0x3A, 0x73, 0x3A, 0x08, 0x10, 0x08, 0x0D, 0x2C, 0x09, 0x07, 0x0B, 0x0E, + 0x0B, 0x35, 0x0B, 0x03, 0x02, 0x01, 0x07, 0x14, 0x07, 0x13, 0x18, 0x15, 0x09, 0x12, 0x05, 0x0E, + 0x0B, 0x05, 0x13, 0x03, 0x03, 0x0F, 0x1C, 0x0F, 0x05, 0x0B, 0x06, 0x09, 0x07, 0x0E, 0x19, 0x32, + 0x19, 0x07, 0x11, 0x0E, 0x16, 0x01, 0x0C, 0x0C, 0x17, 0x10, 0x17, 0x2F, 0x17, 0x39, 0x71, 0x39, + 0x0C, 0x1F, 0x0B, 0x12, 0x07, 0x0C, 0x08, 0x05, 0x03, 0x04, 0x02, 0x18, 0x05, 0x06, 0x04, 0x01, + 0x03, 0x05, 0x07, 0x14, 0x08, 0x0D, 0x0C, 0x0B, 0x16, 0x20, 0x09, 0x07, 0x1B, 0x0F, 0x0D, 0x1A, + 0x0D, 0x05, 0x01, 0x05, 0x0A, 0x07, 0x02, 0x04, 0x02, 0x14, 0x0B, 0x07, 0x05, 0x08, 0x03, 0x02, + 0x02, 0x01, 0x04, 0x05, 0x05, 0x03, 0x11, 0x11, 0x21, 0x11, 0x05, 0x10, 0x01, 0x03, 0x03, 0x09, + 0x0D, 0x19, 0x0D, 0x19, 0x31, 0x18, 0x03, 0x01, 0x0B, 0x02, 0x20, 0x1B, 0x0A, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x66, 0x00, 0x0E, 0x09, 0x00, 0x03, 0x6D, 0x01, 0xB8, 0x01, 0xD1, 0x00, 0x00, + 0x01, 0x1E, 0x01, 0x07, 0x16, 0x26, 0x23, 0x06, 0x22, 0x07, 0x2A, 0x01, 0x07, 0x22, 0x06, 0x15, + 0x14, 0x16, 0x17, 0x16, 0x06, 0x15, 0x14, 0x16, 0x27, 0x14, 0x16, 0x07, 0x16, 0x06, 0x15, 0x1C, + 0x01, 0x15, 0x14, 0x16, 0x23, 0x22, 0x16, 0x17, 0x14, 0x16, 0x23, 0x22, 0x06, 0x35, 0x34, 0x36, + 0x35, 0x3C, 0x01, 0x35, 0x34, 0x26, 0x35, 0x34, 0x26, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x26, 0x37, + 0x3E, 0x01, 0x35, 0x34, 0x36, 0x07, 0x26, 0x34, 0x37, 0x2E, 0x01, 0x35, 0x34, 0x26, 0x15, 0x14, + 0x06, 0x07, 0x06, 0x26, 0x15, 0x14, 0x06, 0x07, 0x06, 0x26, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x36, + 0x35, 0x34, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x15, 0x14, 0x06, 0x17, 0x16, 0x36, 0x17, + 0x16, 0x06, 0x17, 0x16, 0x36, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x1C, + 0x01, 0x15, 0x14, 0x06, 0x15, 0x14, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x27, 0x26, 0x06, + 0x35, 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, 0x27, 0x26, 0x36, 0x37, 0x06, 0x22, 0x17, + 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x30, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x16, 0x07, 0x06, 0x16, 0x23, 0x22, 0x06, 0x23, 0x06, 0x26, 0x35, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x06, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x06, 0x23, 0x22, 0x06, 0x27, 0x26, 0x36, 0x23, 0x22, + 0x06, 0x27, 0x26, 0x06, 0x23, 0x22, 0x16, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x26, 0x34, 0x27, + 0x26, 0x36, 0x17, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x22, + 0x36, 0x07, 0x36, 0x34, 0x37, 0x36, 0x32, 0x37, 0x36, 0x26, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, + 0x33, 0x32, 0x16, 0x17, 0x16, 0x32, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x33, 0x32, 0x36, 0x17, + 0x36, 0x16, 0x17, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x17, 0x3E, 0x01, 0x17, 0x36, 0x16, 0x17, 0x32, + 0x16, 0x33, 0x16, 0x36, 0x33, 0x32, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x33, 0x32, 0x36, + 0x17, 0x36, 0x16, 0x33, 0x36, 0x32, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x36, 0x37, 0x36, 0x16, 0x33, 0x32, 0x16, 0x17, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x14, 0x36, + 0x17, 0x16, 0x06, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, 0x06, 0x07, + 0x06, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, 0x36, 0x26, 0x37, 0x36, 0x26, 0x37, 0x34, + 0x26, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x36, 0x17, 0x1E, 0x01, + 0x15, 0x14, 0x36, 0x33, 0x3A, 0x03, 0x33, 0x05, 0x3E, 0x01, 0x37, 0x2A, 0x01, 0x23, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x08, 0xE7, 0x0C, 0x22, 0x15, 0x05, 0x5B, 0x12, 0x48, 0x90, 0x48, 0x3A, 0x73, 0x3A, 0x03, 0x02, + 0x0F, 0x03, 0x03, 0x03, 0x01, 0x13, 0x02, 0x03, 0x10, 0x05, 0x01, 0x02, 0x12, 0x02, 0x01, 0x09, + 0x0B, 0x06, 0x1D, 0x07, 0x01, 0x13, 0x01, 0x02, 0x02, 0x07, 0x02, 0x0F, 0x03, 0x03, 0x04, 0x09, + 0x08, 0x05, 0x03, 0x03, 0x09, 0x01, 0x02, 0x0B, 0x1A, 0x0D, 0x0D, 0x13, 0x07, 0x01, 0x01, 0x16, + 0x02, 0x26, 0x4D, 0x26, 0x06, 0x61, 0x01, 0x01, 0x02, 0x05, 0x03, 0x04, 0x01, 0x08, 0x04, 0x08, + 0x03, 0x1E, 0x0D, 0x28, 0x50, 0x28, 0x0B, 0x22, 0x08, 0x04, 0x09, 0x02, 0x05, 0x01, 0x0B, 0x08, + 0x12, 0x25, 0x06, 0x02, 0x0C, 0x0B, 0x04, 0x0F, 0x06, 0x0E, 0x05, 0x05, 0x04, 0x03, 0x02, 0x06, + 0x02, 0x02, 0x02, 0x05, 0x05, 0x05, 0x05, 0x03, 0x02, 0x06, 0x03, 0x0C, 0x03, 0x16, 0x4B, 0x01, + 0x11, 0x04, 0x04, 0x0D, 0x04, 0x07, 0x06, 0x11, 0x0A, 0x09, 0x0D, 0x05, 0x02, 0x01, 0x02, 0x04, + 0x02, 0x07, 0x05, 0x05, 0x2E, 0x03, 0x11, 0x4A, 0x0C, 0x0A, 0x08, 0x12, 0x0E, 0x1D, 0x0D, 0x04, + 0x07, 0x05, 0x08, 0x03, 0x05, 0x2B, 0x5F, 0x2F, 0x02, 0x07, 0x03, 0x01, 0x04, 0x03, 0x03, 0x0E, + 0x04, 0x0C, 0x19, 0x0A, 0x0A, 0x0E, 0x09, 0x06, 0x07, 0x03, 0x02, 0x03, 0x1D, 0x05, 0x22, 0x09, + 0x28, 0x50, 0x28, 0x33, 0x61, 0x34, 0x0E, 0x1B, 0x0E, 0x02, 0x09, 0x01, 0x04, 0x07, 0x05, 0x0E, + 0x03, 0x07, 0x09, 0x0A, 0x08, 0x06, 0x0C, 0x07, 0x08, 0x0D, 0x04, 0x03, 0x10, 0x06, 0x04, 0x03, + 0x07, 0x0D, 0x22, 0x0E, 0x08, 0x11, 0x02, 0x0B, 0x05, 0x01, 0x18, 0x3A, 0x14, 0x06, 0x19, 0x05, + 0x06, 0x13, 0x06, 0x06, 0x37, 0x0B, 0x03, 0x05, 0x01, 0x04, 0x08, 0x04, 0x08, 0x12, 0x08, 0x0C, + 0x19, 0x0D, 0x04, 0x08, 0x04, 0x04, 0x0E, 0x01, 0x08, 0x0C, 0x08, 0x08, 0x11, 0x09, 0x01, 0x03, + 0x02, 0x08, 0x0E, 0x07, 0x06, 0x0E, 0x07, 0x04, 0x16, 0x0D, 0x0E, 0x1E, 0x0F, 0x07, 0x24, 0x02, + 0x02, 0x22, 0x06, 0x07, 0x13, 0x03, 0x04, 0x07, 0x06, 0x0B, 0x0E, 0x05, 0x05, 0x0C, 0x04, 0x08, + 0x61, 0x0D, 0x0B, 0x25, 0x06, 0x0C, 0x03, 0x03, 0x01, 0x18, 0x0B, 0x0C, 0x0D, 0x0A, 0x04, 0x01, + 0x05, 0x25, 0x4B, 0x25, 0x06, 0x19, 0x04, 0x03, 0x03, 0x07, 0x0B, 0x01, 0x01, 0x02, 0x04, 0x01, + 0x0A, 0x02, 0x06, 0x1E, 0x07, 0x05, 0x03, 0x05, 0x04, 0x05, 0x01, 0x41, 0x17, 0x43, 0x86, 0x86, + 0x86, 0x43, 0xF8, 0xA1, 0x02, 0x03, 0x03, 0x35, 0x6B, 0x35, 0x01, 0x03, 0x03, 0x04, 0x0B, 0x03, + 0x05, 0x09, 0x04, 0x11, 0x1C, 0x0C, 0x09, 0x15, 0x09, 0x11, 0x21, 0x10, 0x02, 0xB4, 0x03, 0x35, + 0x01, 0x11, 0x01, 0x01, 0x01, 0x01, 0x1D, 0x04, 0x0B, 0x03, 0x08, 0x08, 0x20, 0x0B, 0x0C, 0x27, + 0x07, 0x10, 0x24, 0x0F, 0x02, 0x6A, 0x12, 0x20, 0x40, 0x20, 0x07, 0x36, 0x2B, 0x10, 0x01, 0x0A, + 0x02, 0x08, 0x03, 0x03, 0x06, 0x04, 0x08, 0x04, 0x08, 0x11, 0x06, 0x04, 0x0D, 0x0A, 0x41, 0x81, + 0x41, 0x07, 0x0F, 0x06, 0x05, 0x09, 0x0A, 0x0A, 0x2D, 0x08, 0x06, 0x2F, 0x02, 0x02, 0x06, 0x05, + 0x03, 0x0D, 0x06, 0x07, 0x03, 0x04, 0x03, 0x02, 0x05, 0x02, 0x06, 0x01, 0x07, 0x03, 0x01, 0x01, + 0x02, 0x0C, 0x02, 0x0A, 0x03, 0x02, 0x01, 0x01, 0x02, 0x03, 0x09, 0x03, 0x07, 0x01, 0x06, 0x09, + 0x11, 0x0A, 0x04, 0x01, 0x07, 0x04, 0x08, 0x04, 0x11, 0x20, 0x10, 0x21, 0x42, 0x21, 0x10, 0x20, + 0x10, 0x09, 0x12, 0x08, 0x11, 0x03, 0x02, 0x08, 0x04, 0x03, 0x08, 0x04, 0x08, 0x05, 0x08, 0x10, + 0x07, 0x41, 0x84, 0x40, 0x14, 0x10, 0x0E, 0x01, 0x19, 0x0A, 0x0C, 0x0A, 0x04, 0x01, 0x01, 0x02, + 0x07, 0x07, 0x0F, 0x08, 0x08, 0x10, 0x07, 0x07, 0x16, 0x05, 0x05, 0x14, 0x05, 0x03, 0x0A, 0x05, + 0x02, 0x07, 0x1D, 0x10, 0x20, 0x0E, 0x0D, 0x23, 0x0D, 0x0B, 0x0A, 0x0B, 0x09, 0x09, 0x05, 0x05, + 0x0D, 0x0A, 0x03, 0x08, 0x03, 0x04, 0x01, 0x03, 0x01, 0x06, 0x05, 0x02, 0x01, 0x07, 0x0C, 0x0A, + 0x11, 0x02, 0x04, 0x01, 0x07, 0x05, 0x05, 0x25, 0x48, 0x1E, 0x02, 0x02, 0x02, 0x0D, 0x03, 0x02, + 0x0A, 0x01, 0x06, 0x05, 0x08, 0x07, 0x2A, 0x0C, 0x0D, 0x27, 0x0C, 0x0D, 0x24, 0x0E, 0x12, 0x45, + 0x09, 0x06, 0x02, 0x07, 0x0D, 0x01, 0x06, 0x03, 0x04, 0x03, 0x02, 0x05, 0x11, 0x06, 0x0D, 0x04, + 0x05, 0x04, 0x10, 0x02, 0x08, 0x05, 0x04, 0x02, 0x07, 0x02, 0x04, 0x04, 0x02, 0x0C, 0x04, 0x20, + 0x07, 0x03, 0x08, 0x03, 0x14, 0x0E, 0x05, 0x04, 0x05, 0x0A, 0x02, 0x02, 0x07, 0x01, 0x02, 0x01, + 0x06, 0x0A, 0x0D, 0x02, 0x03, 0x01, 0x06, 0x01, 0x02, 0x03, 0x03, 0x03, 0x05, 0x02, 0x01, 0x0B, + 0x04, 0x05, 0x0B, 0x05, 0x02, 0x09, 0x0A, 0x08, 0x01, 0x06, 0x07, 0x08, 0x09, 0x0B, 0x0C, 0x07, + 0x0D, 0x16, 0x05, 0x02, 0x0F, 0x22, 0x03, 0x03, 0x0B, 0x0B, 0x01, 0x05, 0x04, 0x02, 0x0B, 0x04, + 0x08, 0x10, 0x09, 0x08, 0x11, 0x08, 0x0E, 0x04, 0x02, 0x04, 0x02, 0x0A, 0x02, 0x04, 0x02, 0x0B, + 0x03, 0x03, 0x0E, 0x0A, 0x05, 0x02, 0x07, 0x01, 0x0B, 0x01, 0x04, 0x09, 0x04, 0x02, 0x04, 0x07, + 0x09, 0x01, 0x06, 0x08, 0x0C, 0x0B, 0x1E, 0x04, 0x49, 0x01, 0x02, 0x01, 0x09, 0x19, 0x07, 0x08, + 0x03, 0x08, 0x0D, 0x1B, 0x0D, 0x0D, 0x0D, 0x0A, 0x07, 0x0B, 0x06, 0x0C, 0x18, 0x0D, 0x00, 0x00, + 0x00, 0x07, 0x00, 0x63, 0x00, 0x26, 0x0D, 0x35, 0x03, 0x5A, 0x00, 0xBA, 0x00, 0xC5, 0x00, 0xCA, + 0x00, 0xDC, 0x00, 0xE7, 0x00, 0xEE, 0x01, 0x11, 0x00, 0x00, 0x01, 0x25, 0x27, 0x3F, 0x01, 0x27, + 0x35, 0x0F, 0x01, 0x27, 0x17, 0x15, 0x07, 0x27, 0x15, 0x23, 0x35, 0x33, 0x35, 0x27, 0x0F, 0x03, + 0x2F, 0x01, 0x37, 0x27, 0x23, 0x0F, 0x02, 0x23, 0x07, 0x05, 0x2F, 0x01, 0x07, 0x27, 0x07, 0x17, + 0x0F, 0x02, 0x27, 0x22, 0x06, 0x0F, 0x02, 0x15, 0x1F, 0x01, 0x07, 0x15, 0x1E, 0x01, 0x1F, 0x03, + 0x07, 0x23, 0x35, 0x2F, 0x03, 0x07, 0x27, 0x23, 0x07, 0x23, 0x22, 0x06, 0x0F, 0x02, 0x17, 0x07, + 0x0E, 0x01, 0x0F, 0x04, 0x1F, 0x01, 0x07, 0x27, 0x13, 0x3F, 0x01, 0x2F, 0x03, 0x15, 0x07, 0x2F, + 0x02, 0x23, 0x0F, 0x01, 0x15, 0x07, 0x17, 0x23, 0x15, 0x23, 0x35, 0x07, 0x35, 0x0F, 0x03, 0x2F, + 0x01, 0x13, 0x33, 0x1F, 0x01, 0x05, 0x1F, 0x01, 0x05, 0x27, 0x33, 0x35, 0x37, 0x17, 0x37, 0x35, + 0x33, 0x17, 0x3F, 0x03, 0x33, 0x05, 0x1F, 0x03, 0x07, 0x3F, 0x01, 0x17, 0x35, 0x37, 0x35, 0x3F, + 0x01, 0x05, 0x17, 0x15, 0x1F, 0x03, 0x33, 0x3F, 0x02, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x1F, 0x01, + 0x07, 0x17, 0x33, 0x17, 0x37, 0x35, 0x33, 0x35, 0x21, 0x17, 0x15, 0x07, 0x25, 0x2F, 0x03, 0x07, + 0x17, 0x33, 0x37, 0x35, 0x23, 0x07, 0x33, 0x37, 0x23, 0x15, 0x25, 0x27, 0x21, 0x0F, 0x03, 0x17, + 0x25, 0x3F, 0x01, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x2F, 0x01, 0x05, 0x27, 0x23, 0x0F, 0x01, 0x1F, + 0x01, 0x33, 0x3F, 0x01, 0x27, 0x27, 0x15, 0x33, 0x2F, 0x02, 0x07, 0x05, 0x27, 0x23, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x16, 0x1F, 0x01, 0x07, 0x27, 0x2E, 0x01, 0x27, 0x34, 0x36, 0x3F, 0x01, 0x07, + 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x1F, 0x01, 0x33, 0x35, 0x37, 0x36, 0x26, 0x2F, 0x01, 0x0D, 0x31, + 0xFD, 0xA7, 0x02, 0x0C, 0x02, 0xC1, 0x50, 0x10, 0x8B, 0x1B, 0x06, 0x1F, 0x16, 0x05, 0x55, 0x03, + 0x02, 0x03, 0x06, 0x07, 0x05, 0x01, 0x03, 0x11, 0x01, 0x05, 0x05, 0x0A, 0x07, 0xFE, 0x1B, 0x09, + 0x0C, 0x19, 0x02, 0x18, 0x01, 0x01, 0x04, 0x0C, 0x04, 0x02, 0x04, 0x02, 0x05, 0x03, 0x08, 0x02, + 0x11, 0x01, 0x06, 0x04, 0x1D, 0x11, 0x06, 0xC7, 0x05, 0x15, 0x1E, 0x0B, 0x02, 0x0F, 0x12, 0x7B, + 0x29, 0x07, 0x04, 0x07, 0x03, 0x08, 0x1D, 0x0F, 0x04, 0x04, 0x09, 0x06, 0x09, 0x02, 0x39, 0x01, + 0x06, 0x06, 0x06, 0xB9, 0xA7, 0x04, 0x02, 0x09, 0x0E, 0x10, 0x2A, 0x0C, 0x01, 0x21, 0x01, 0x85, + 0x1F, 0x7D, 0x6D, 0x01, 0x4C, 0x24, 0x7C, 0x9C, 0x01, 0x02, 0x06, 0x06, 0x01, 0x03, 0x8B, 0x05, + 0x04, 0x01, 0x66, 0x04, 0x03, 0x01, 0x22, 0x01, 0x22, 0x0C, 0x01, 0x22, 0x22, 0x03, 0x58, 0x04, + 0x0A, 0x0E, 0x07, 0x01, 0xB6, 0x0D, 0x16, 0x0D, 0x05, 0x02, 0x09, 0x01, 0x1C, 0x09, 0x03, 0x06, + 0x01, 0xE6, 0x05, 0x0D, 0x03, 0x04, 0x02, 0x12, 0x01, 0x50, 0x08, 0x04, 0x08, 0x04, 0x09, 0x0F, + 0x04, 0x04, 0x01, 0x01, 0x8B, 0x13, 0x4F, 0xC1, 0x02, 0x4C, 0x05, 0x04, 0xFB, 0xE8, 0x06, 0x05, + 0x02, 0x1E, 0x2F, 0x06, 0x5A, 0x06, 0x0C, 0x52, 0x54, 0x04, 0x58, 0xFD, 0x6E, 0x04, 0xFE, 0x87, + 0x0E, 0x0C, 0x05, 0x15, 0x08, 0x01, 0xA3, 0x05, 0x0A, 0x08, 0x08, 0x07, 0x07, 0x0B, 0xFA, 0xAC, + 0x05, 0x61, 0x05, 0x04, 0x05, 0x04, 0x62, 0x04, 0x04, 0x04, 0x6F, 0x7C, 0x01, 0x04, 0x05, 0x72, + 0x04, 0xB6, 0x0B, 0x31, 0x0C, 0x05, 0x06, 0x01, 0x01, 0x05, 0x05, 0x0C, 0x05, 0x11, 0x09, 0x09, + 0x01, 0x02, 0x04, 0x05, 0x17, 0x0B, 0x0B, 0x01, 0x01, 0x09, 0x08, 0x0F, 0x76, 0x0B, 0x03, 0x01, + 0x05, 0x16, 0x02, 0x2D, 0x01, 0x18, 0x01, 0x09, 0x03, 0x05, 0x01, 0x05, 0x01, 0x05, 0x18, 0x08, + 0x02, 0x0B, 0x28, 0x05, 0x02, 0x07, 0x14, 0x04, 0x03, 0x04, 0x03, 0x12, 0x08, 0x1D, 0x05, 0x04, + 0x11, 0x04, 0x05, 0x03, 0x09, 0x21, 0x02, 0x15, 0x02, 0x07, 0x04, 0x01, 0x02, 0x03, 0x08, 0x05, + 0x70, 0x02, 0x09, 0x07, 0x29, 0x17, 0x2C, 0x15, 0x66, 0x36, 0x07, 0x37, 0x06, 0x45, 0x75, 0x4F, + 0x22, 0x03, 0x03, 0x04, 0x02, 0x02, 0x08, 0x37, 0x11, 0x03, 0x01, 0x04, 0x02, 0x08, 0x04, 0x6F, + 0x0A, 0x0B, 0x03, 0x0C, 0x2B, 0x01, 0x21, 0x0C, 0x17, 0x18, 0x10, 0x08, 0x01, 0x05, 0x02, 0x48, + 0x02, 0x0C, 0x18, 0x03, 0x0B, 0x02, 0x44, 0x1C, 0x1B, 0x4E, 0x3F, 0x47, 0x1A, 0x04, 0x05, 0x05, + 0x04, 0x01, 0x5D, 0x05, 0x12, 0x04, 0x03, 0x07, 0x01, 0x0C, 0x09, 0x01, 0x09, 0x02, 0x0F, 0x02, + 0x8C, 0x05, 0x08, 0x06, 0x30, 0x02, 0x0D, 0x17, 0x0C, 0x55, 0x01, 0x26, 0x05, 0x09, 0x02, 0x02, + 0x04, 0x03, 0x08, 0x0A, 0x0E, 0x01, 0x01, 0x05, 0x20, 0x33, 0x71, 0x07, 0x03, 0x03, 0x01, 0x01, + 0x08, 0x05, 0x0A, 0x04, 0x94, 0x06, 0x01, 0x05, 0x24, 0x06, 0x7C, 0x07, 0xB2, 0x07, 0x11, 0x0D, + 0x03, 0x4A, 0x05, 0x08, 0x1F, 0x4D, 0x0D, 0x0D, 0x81, 0x02, 0x06, 0x0C, 0x07, 0x33, 0x08, 0x03, + 0x01, 0x05, 0x06, 0x11, 0x0C, 0x09, 0x10, 0x06, 0x07, 0xF4, 0x01, 0x01, 0x08, 0x07, 0x03, 0x04, + 0x07, 0x07, 0x9A, 0x0E, 0x09, 0x05, 0x02, 0x02, 0xFA, 0x04, 0x0C, 0x09, 0x0F, 0x08, 0x07, 0x0E, + 0x08, 0x0A, 0x04, 0x0D, 0x08, 0x11, 0x09, 0x06, 0x0E, 0x08, 0x0C, 0x08, 0x08, 0x17, 0x0F, 0x09, + 0x0F, 0x08, 0x0B, 0x0F, 0x10, 0x09, 0x15, 0x0B, 0x15, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x5B, + 0x00, 0x26, 0x04, 0xD9, 0x03, 0x5A, 0x00, 0xE7, 0x00, 0xF7, 0x01, 0x07, 0x00, 0x00, 0x01, 0x1C, + 0x01, 0x07, 0x06, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x16, + 0x17, 0x16, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x22, 0x26, 0x23, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x26, 0x23, 0x06, 0x26, 0x27, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x26, 0x07, 0x06, + 0x16, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, + 0x23, 0x22, 0x36, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x27, + 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x26, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, + 0x31, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x06, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x35, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x33, 0x30, 0x16, 0x17, 0x16, 0x06, 0x07, 0x06, 0x22, 0x23, 0x22, 0x26, + 0x27, 0x2E, 0x01, 0x27, 0x2A, 0x01, 0x27, 0x30, 0x34, 0x23, 0x06, 0x36, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x35, 0x36, + 0x34, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, + 0x33, 0x32, 0x26, 0x37, 0x36, 0x26, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x16, 0x17, 0x05, 0x16, 0x32, 0x33, 0x32, 0x36, 0x27, 0x26, 0x06, 0x23, + 0x22, 0x26, 0x07, 0x0E, 0x01, 0x17, 0x01, 0x22, 0x06, 0x15, 0x1C, 0x01, 0x15, 0x1E, 0x01, 0x17, + 0x3E, 0x01, 0x37, 0x2E, 0x01, 0x23, 0x04, 0xD9, 0x0C, 0x06, 0x28, 0x0A, 0x10, 0x01, 0x04, 0x0C, + 0x23, 0x46, 0x23, 0x0D, 0x04, 0x01, 0x01, 0x0D, 0x01, 0x02, 0x02, 0x01, 0x11, 0x21, 0x11, 0x04, + 0x1A, 0x04, 0x09, 0x11, 0x0E, 0x09, 0x14, 0x09, 0x1B, 0x2E, 0x17, 0x10, 0x04, 0x02, 0x02, 0x01, + 0x03, 0x0A, 0x15, 0x0A, 0x19, 0x31, 0x19, 0x03, 0x01, 0x0F, 0x10, 0x0D, 0x1A, 0x0C, 0x0A, 0x09, + 0x06, 0x02, 0x06, 0x01, 0x03, 0x07, 0x03, 0x08, 0x11, 0x09, 0x02, 0x03, 0x06, 0x07, 0x0D, 0x0A, + 0x0C, 0x38, 0x0F, 0x07, 0x0B, 0x05, 0x09, 0x0D, 0x04, 0x04, 0x15, 0x05, 0x0F, 0x1E, 0x0F, 0x02, + 0x18, 0x1B, 0x04, 0x0B, 0x10, 0x0B, 0x09, 0x14, 0x09, 0x07, 0x0D, 0x03, 0x08, 0x0B, 0x02, 0x03, + 0x02, 0x02, 0x01, 0x02, 0x01, 0x01, 0x1D, 0x50, 0x9E, 0x4F, 0x08, 0x0F, 0x08, 0x06, 0x01, 0x02, + 0x04, 0x05, 0x10, 0x28, 0x12, 0x13, 0x24, 0x12, 0x0E, 0x1B, 0x0E, 0x03, 0x15, 0x01, 0x01, 0x02, + 0x10, 0x09, 0x0B, 0x15, 0x0A, 0x15, 0x28, 0x15, 0x24, 0x48, 0x24, 0x2A, 0x54, 0x29, 0x1A, 0x32, + 0x19, 0x04, 0x01, 0x02, 0x0C, 0x10, 0x24, 0x10, 0x07, 0x08, 0x03, 0x04, 0x03, 0x09, 0x18, 0x2F, + 0x18, 0x04, 0x06, 0x04, 0x05, 0x03, 0x02, 0x03, 0x01, 0x05, 0x0A, 0x39, 0x0B, 0x11, 0x01, 0x02, + 0x12, 0x0B, 0x17, 0x0C, 0x0D, 0x06, 0x07, 0xFE, 0x08, 0x17, 0x2E, 0x18, 0x13, 0x24, 0x06, 0x06, + 0x3B, 0x16, 0x0A, 0x1D, 0x0A, 0x0E, 0x05, 0x0D, 0xFD, 0xC8, 0x09, 0x08, 0x01, 0x03, 0x01, 0x06, + 0x0D, 0x08, 0x04, 0x07, 0x04, 0x02, 0xC8, 0x11, 0x16, 0x0C, 0x07, 0x04, 0x12, 0x0D, 0x0B, 0x1A, + 0x0E, 0x0B, 0x08, 0x04, 0x08, 0x06, 0x0D, 0x07, 0x01, 0x01, 0x32, 0x05, 0x0B, 0x11, 0x03, 0x03, + 0x01, 0x01, 0x07, 0x0F, 0x2D, 0x5C, 0x2D, 0x09, 0x10, 0x09, 0x09, 0x05, 0x05, 0x03, 0x0F, 0x03, + 0x0D, 0x1B, 0x0D, 0x1A, 0x35, 0x1A, 0x02, 0x0A, 0x39, 0x05, 0x1B, 0x36, 0x1C, 0x11, 0x03, 0x0E, + 0x08, 0x03, 0x12, 0x03, 0x0E, 0x1D, 0x0F, 0x25, 0x4B, 0x25, 0x0C, 0x0B, 0x0B, 0x0C, 0x1B, 0x0A, + 0x0C, 0x06, 0x01, 0x01, 0x09, 0x05, 0x09, 0x12, 0x03, 0x03, 0x03, 0x0C, 0x16, 0x0B, 0x0B, 0x16, + 0x0B, 0x02, 0x07, 0x02, 0x03, 0x03, 0x02, 0x04, 0x02, 0x0F, 0x06, 0x0F, 0x1E, 0x0F, 0x27, 0x51, + 0x27, 0x17, 0x2C, 0x16, 0x0E, 0x14, 0x0E, 0x05, 0x0E, 0x0B, 0x01, 0x03, 0x07, 0x01, 0x07, 0x07, + 0x03, 0x0A, 0x03, 0x01, 0x01, 0x02, 0x01, 0x03, 0x01, 0x0C, 0x01, 0x01, 0x01, 0x02, 0x01, 0x02, + 0x01, 0x12, 0x05, 0x0B, 0x09, 0x02, 0x02, 0x01, 0x04, 0x02, 0x0E, 0x06, 0x09, 0x02, 0x02, 0x04, + 0x05, 0x0D, 0x02, 0x04, 0x1A, 0x09, 0x0E, 0x1C, 0x15, 0x0A, 0x2A, 0x02, 0x0B, 0xE9, 0x08, 0x10, + 0x1A, 0x1D, 0x02, 0x02, 0x05, 0x07, 0x29, 0x0A, 0x01, 0x33, 0x01, 0x0B, 0x07, 0x0F, 0x08, 0x10, + 0x1E, 0x10, 0x1A, 0x32, 0x19, 0x01, 0x02, 0x00, 0x00, 0x02, 0x00, 0x4E, 0x00, 0x27, 0x05, 0xDF, + 0x03, 0x54, 0x01, 0x7B, 0x01, 0xB4, 0x00, 0x00, 0x01, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x15, 0x1C, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x37, 0x36, 0x26, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x16, 0x15, + 0x1C, 0x01, 0x17, 0x32, 0x16, 0x35, 0x14, 0x36, 0x17, 0x16, 0x06, 0x17, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x17, 0x26, 0x16, 0x23, 0x32, 0x36, 0x17, 0x26, 0x16, 0x35, 0x14, 0x06, 0x17, 0x16, 0x06, + 0x15, 0x1C, 0x01, 0x15, 0x14, 0x26, 0x23, 0x22, 0x26, 0x07, 0x22, 0x06, 0x15, 0x14, 0x06, 0x23, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x31, 0x14, 0x26, 0x27, 0x26, 0x06, 0x27, 0x22, 0x26, 0x23, 0x22, + 0x06, 0x23, 0x22, 0x06, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x22, 0x23, 0x22, 0x06, + 0x07, 0x0E, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x32, 0x17, + 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x15, 0x1C, 0x01, 0x15, 0x14, + 0x16, 0x07, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x27, 0x26, 0x36, + 0x35, 0x3C, 0x01, 0x35, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x35, 0x34, 0x26, 0x35, 0x3C, 0x01, 0x31, + 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x16, 0x15, 0x26, 0x22, 0x27, 0x22, 0x06, 0x23, 0x0E, + 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x14, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x32, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x07, + 0x06, 0x26, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x22, 0x26, 0x23, 0x22, 0x26, 0x27, 0x2A, + 0x01, 0x35, 0x14, 0x26, 0x27, 0x26, 0x34, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x34, 0x36, + 0x35, 0x3E, 0x01, 0x37, 0x36, 0x34, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x35, 0x34, 0x36, 0x35, 0x30, 0x36, 0x37, 0x3E, 0x01, 0x27, 0x34, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x06, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x35, 0x34, 0x26, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, 0x35, 0x3C, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x32, 0x36, 0x37, 0x30, 0x36, 0x33, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x27, 0x16, 0x36, 0x17, 0x26, 0x36, 0x33, 0x1E, 0x01, 0x15, 0x14, 0x16, + 0x17, 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x02, 0x16, 0x33, 0x32, 0x30, 0x33, 0x34, 0x26, + 0x37, 0x03, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x26, 0x36, 0x27, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x06, 0x15, 0x14, 0x16, 0x32, 0x16, 0x33, 0x26, 0x36, + 0x37, 0x32, 0x36, 0x15, 0x34, 0x36, 0x27, 0x2E, 0x01, 0x35, 0x02, 0xE7, 0x11, 0x1B, 0x11, 0x05, + 0x0D, 0x05, 0x05, 0x01, 0x01, 0x2D, 0x5A, 0x5A, 0x5A, 0x2D, 0x26, 0x4C, 0x25, 0x05, 0x02, 0x02, + 0x01, 0x02, 0x01, 0x01, 0x02, 0x02, 0x01, 0x0D, 0x03, 0x09, 0x13, 0x06, 0x02, 0x07, 0x07, 0x01, + 0x01, 0x08, 0x0A, 0x03, 0x02, 0x04, 0x03, 0x02, 0x03, 0x01, 0x01, 0x01, 0x0B, 0x03, 0x08, 0x15, + 0x08, 0x01, 0x09, 0x01, 0x01, 0x01, 0x01, 0x09, 0x08, 0x07, 0x17, 0x05, 0x01, 0x03, 0x06, 0x02, + 0x03, 0x01, 0x03, 0x01, 0x07, 0x0E, 0x05, 0x26, 0x4C, 0x25, 0x2F, 0x5E, 0x2F, 0x04, 0x04, 0x03, + 0x0B, 0x05, 0x2F, 0x08, 0x0D, 0x0E, 0x09, 0x05, 0x0D, 0x0C, 0x02, 0x04, 0x02, 0x01, 0x02, 0x04, + 0x09, 0x06, 0x07, 0x01, 0x02, 0x02, 0x02, 0x02, 0x02, 0x12, 0x03, 0x1B, 0x36, 0x1C, 0x0B, 0x17, + 0x0B, 0x08, 0x06, 0x03, 0x03, 0x03, 0x05, 0x05, 0x08, 0x04, 0x27, 0x02, 0x0F, 0x1E, 0x0E, 0x13, + 0x26, 0x13, 0x09, 0x02, 0x14, 0x29, 0x14, 0x05, 0x08, 0x02, 0x01, 0x06, 0x05, 0x03, 0x03, 0x06, + 0x03, 0x02, 0x02, 0x02, 0x05, 0x02, 0x03, 0x04, 0x03, 0x06, 0x01, 0x01, 0x04, 0x01, 0x02, 0x02, + 0x04, 0x01, 0x05, 0x01, 0x09, 0x05, 0x13, 0x03, 0x08, 0x13, 0x07, 0x14, 0x28, 0x14, 0x11, 0x1F, + 0x13, 0x06, 0x0B, 0x05, 0x07, 0x16, 0x10, 0x02, 0x03, 0x07, 0x04, 0x02, 0x05, 0x03, 0x02, 0x01, + 0x03, 0x01, 0x01, 0x02, 0x0B, 0x12, 0x06, 0x08, 0x16, 0x06, 0x02, 0x06, 0x02, 0x01, 0x09, 0x0F, + 0x05, 0x01, 0x02, 0x07, 0x02, 0x07, 0x02, 0x03, 0x05, 0x04, 0x05, 0x02, 0x1A, 0x06, 0x09, 0x10, + 0x05, 0x06, 0x07, 0x05, 0x02, 0x08, 0x02, 0x02, 0x07, 0x03, 0x03, 0x04, 0x04, 0x02, 0x03, 0x01, + 0x05, 0x01, 0x01, 0x01, 0x01, 0x0A, 0x01, 0x03, 0x02, 0x03, 0x05, 0x0D, 0x06, 0x06, 0x1B, 0x02, + 0x02, 0x06, 0x02, 0x02, 0x0C, 0x0A, 0x05, 0x11, 0x02, 0x01, 0x03, 0x15, 0x06, 0x15, 0x2B, 0x15, + 0x2F, 0x5D, 0x5E, 0x5D, 0x2F, 0x01, 0x01, 0x01, 0x02, 0x46, 0x03, 0x05, 0x09, 0x06, 0x15, 0x06, + 0x0C, 0x18, 0x0C, 0x02, 0x13, 0x08, 0x03, 0x11, 0x01, 0x02, 0x11, 0x07, 0x0F, 0x13, 0x0B, 0x03, + 0x0E, 0x09, 0x01, 0x01, 0x01, 0x01, 0x0D, 0x03, 0x07, 0x02, 0x07, 0x0A, 0x32, 0x3F, 0x39, 0x07, + 0x01, 0x02, 0x04, 0x01, 0x07, 0x01, 0x01, 0x01, 0x04, 0x03, 0x44, 0x09, 0x12, 0x0B, 0x04, 0x07, + 0x05, 0x04, 0x05, 0x07, 0x02, 0x12, 0x01, 0x03, 0x01, 0x05, 0x01, 0x02, 0x01, 0x02, 0x02, 0x0F, + 0x01, 0x05, 0x01, 0x08, 0x02, 0x02, 0x03, 0x04, 0x02, 0x05, 0x01, 0x07, 0x01, 0x08, 0x01, 0x05, + 0x03, 0x10, 0x02, 0x0B, 0x02, 0x02, 0x04, 0x02, 0x04, 0x0A, 0x03, 0x03, 0x01, 0x07, 0x02, 0x02, + 0x05, 0x02, 0x07, 0x10, 0x07, 0x04, 0x07, 0x03, 0x08, 0x01, 0x03, 0x04, 0x0F, 0x01, 0x03, 0x0C, + 0x01, 0x09, 0x02, 0x02, 0x08, 0x09, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0A, 0x08, + 0x0F, 0x07, 0x08, 0x0F, 0x07, 0x09, 0x1E, 0x09, 0x04, 0x0C, 0x08, 0x0A, 0x13, 0x09, 0x06, 0x0D, + 0x06, 0x02, 0x06, 0x03, 0x01, 0x03, 0x08, 0x18, 0x07, 0x0A, 0x09, 0x05, 0x03, 0x09, 0x08, 0x0E, + 0x20, 0x0E, 0x2F, 0x5E, 0x2F, 0x03, 0x11, 0x02, 0x01, 0x01, 0x05, 0x07, 0x1F, 0x08, 0x39, 0x73, + 0x39, 0x03, 0x0D, 0x03, 0x05, 0x08, 0x1A, 0x0B, 0x01, 0x18, 0x13, 0x08, 0x01, 0x01, 0x20, 0x01, + 0x0B, 0x02, 0x06, 0x06, 0x05, 0x07, 0x10, 0x07, 0x05, 0x06, 0x05, 0x03, 0x0A, 0x03, 0x08, 0x0D, + 0x08, 0x03, 0x08, 0x02, 0x05, 0x0A, 0x05, 0x09, 0x06, 0x03, 0x0C, 0x02, 0x0A, 0x18, 0x05, 0x02, + 0x06, 0x02, 0x01, 0x01, 0x02, 0x01, 0x05, 0x03, 0x01, 0x09, 0x01, 0x07, 0x04, 0x04, 0x09, 0x05, + 0x12, 0x1B, 0x10, 0x07, 0x0E, 0x08, 0x02, 0x04, 0x01, 0x03, 0x02, 0x02, 0x04, 0x09, 0x03, 0x0B, + 0x22, 0x0F, 0x11, 0x1D, 0x0D, 0x04, 0x06, 0x03, 0x02, 0x0D, 0x01, 0x09, 0x0D, 0x0A, 0x0F, 0x02, + 0x06, 0x06, 0x07, 0x04, 0x0A, 0x03, 0x04, 0x0A, 0x04, 0x05, 0x08, 0x08, 0x08, 0x02, 0x02, 0x01, + 0x01, 0x0B, 0x02, 0x01, 0x0A, 0x02, 0x02, 0x09, 0x04, 0x06, 0x15, 0x08, 0x0F, 0x1E, 0x0F, 0x0A, + 0x15, 0x07, 0x04, 0x09, 0x02, 0x01, 0x03, 0x02, 0x01, 0x02, 0x01, 0x05, 0x01, 0x06, 0x02, 0x03, + 0x02, 0x04, 0x07, 0x04, 0x03, 0x0F, 0x09, 0x01, 0x01, 0x01, 0x0B, 0x09, 0x01, 0x01, 0x05, 0x03, + 0x0F, 0x01, 0x04, 0x01, 0x01, 0x07, 0x12, 0x05, 0xFE, 0xA1, 0x08, 0x14, 0x04, 0x02, 0x01, 0x0C, + 0x15, 0x07, 0x03, 0x08, 0x04, 0x09, 0x09, 0x03, 0x04, 0x0A, 0x0B, 0x03, 0x0B, 0x03, 0x03, 0x11, + 0x03, 0x01, 0x03, 0x01, 0x02, 0x1B, 0x07, 0x03, 0x11, 0x04, 0x05, 0x0C, 0x05, 0x02, 0x02, 0x01, + 0x05, 0x05, 0x04, 0x0E, 0x01, 0x04, 0x05, 0x04, 0x04, 0x06, 0x04, 0x00, 0x00, 0x01, 0x00, 0x55, + 0x00, 0xDB, 0x08, 0x53, 0x02, 0xA5, 0x00, 0xA8, 0x00, 0x00, 0x01, 0x3E, 0x01, 0x37, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x27, 0x26, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x06, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x35, 0x2E, 0x01, 0x27, 0x26, + 0x36, 0x37, 0x36, 0x26, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x36, 0x26, 0x35, 0x34, 0x36, 0x17, 0x1E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x15, 0x14, 0x36, 0x33, 0x3A, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, + 0x3E, 0x01, 0x37, 0x08, 0x13, 0x10, 0x20, 0x10, 0x1D, 0x3B, 0x25, 0x1B, 0x3E, 0x20, 0x13, 0x28, + 0x14, 0x37, 0x6F, 0x37, 0x4B, 0x95, 0x4B, 0x0E, 0x1C, 0x0E, 0x03, 0x13, 0x03, 0x02, 0x05, 0x02, + 0x05, 0x10, 0x0C, 0x1F, 0x49, 0x16, 0x0B, 0x1A, 0x0A, 0x04, 0x10, 0x06, 0x05, 0x04, 0x02, 0x02, + 0x0F, 0x07, 0x1D, 0x21, 0x01, 0x02, 0x02, 0x18, 0x0C, 0x13, 0x27, 0x13, 0x17, 0x2E, 0x17, 0x38, + 0x71, 0x39, 0x3F, 0x7C, 0x3E, 0x13, 0x24, 0x13, 0x14, 0x17, 0x0A, 0x05, 0x11, 0x0A, 0x06, 0x02, + 0x01, 0x01, 0x01, 0x03, 0x0D, 0x03, 0x04, 0x08, 0x0B, 0x06, 0x01, 0x01, 0x01, 0x01, 0x02, 0x05, + 0x0C, 0x11, 0x06, 0x0A, 0x17, 0x15, 0x13, 0x26, 0x13, 0x3E, 0x7C, 0x3F, 0x39, 0x71, 0x39, 0x16, + 0x2D, 0x16, 0x14, 0x27, 0x14, 0x05, 0x0B, 0x05, 0x08, 0x03, 0x01, 0x02, 0x02, 0x2B, 0x1D, 0x0E, + 0x01, 0x0A, 0x08, 0x10, 0x02, 0x03, 0x09, 0x08, 0x02, 0x07, 0x01, 0x01, 0x01, 0x16, 0x06, 0x13, + 0x27, 0x13, 0x21, 0x43, 0x22, 0x39, 0x73, 0x39, 0x3A, 0x74, 0x3A, 0x21, 0x41, 0x21, 0x16, 0x2E, + 0x16, 0x1D, 0x39, 0x1C, 0x02, 0x05, 0x01, 0x05, 0x02, 0x24, 0x46, 0x1C, 0x14, 0x1B, 0x0A, 0x06, + 0x0A, 0x02, 0x04, 0x0D, 0x01, 0x02, 0x02, 0x13, 0x04, 0x0D, 0x15, 0x08, 0x12, 0x14, 0x19, 0x0C, + 0x30, 0x11, 0x06, 0x04, 0x03, 0x03, 0x0C, 0x05, 0x08, 0x04, 0x01, 0x04, 0x28, 0x1C, 0x0F, 0x20, + 0x0F, 0x11, 0x04, 0x01, 0x03, 0x06, 0x03, 0x03, 0x02, 0x02, 0x03, 0x08, 0x03, 0x03, 0x05, 0x06, + 0x02, 0x04, 0x01, 0x02, 0x19, 0x10, 0x08, 0x0D, 0x0A, 0x06, 0x13, 0x08, 0x10, 0x20, 0x10, 0x09, + 0x0B, 0x09, 0x0F, 0x20, 0x0A, 0x05, 0x16, 0x07, 0x08, 0x10, 0x08, 0x07, 0x10, 0x06, 0x0C, 0x13, + 0x08, 0x10, 0x15, 0x02, 0x02, 0x03, 0x02, 0x06, 0x06, 0x03, 0x03, 0x09, 0x03, 0x02, 0x02, 0x03, + 0x03, 0x06, 0x03, 0x01, 0x01, 0x01, 0x01, 0x10, 0x05, 0x0E, 0x20, 0x0F, 0x1B, 0x2D, 0x04, 0x02, + 0x18, 0x06, 0x05, 0x03, 0x0B, 0x0D, 0x22, 0x0A, 0x03, 0x04, 0x03, 0x03, 0x0C, 0x03, 0x07, 0x02, + 0x0A, 0x05, 0x05, 0x05, 0x02, 0x02, 0x03, 0x01, 0x01, 0x05, 0x01, 0x02, 0x05, 0x02, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x57, 0x00, 0x5A, 0x0A, 0x31, 0x03, 0x26, 0x01, 0x80, 0x01, 0x8D, 0x00, 0x00, + 0x01, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x14, 0x17, 0x16, 0x36, 0x33, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x3A, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x34, 0x36, 0x37, 0x36, 0x16, 0x33, + 0x32, 0x06, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x17, 0x16, 0x32, 0x33, 0x16, 0x32, 0x33, 0x3E, + 0x01, 0x37, 0x32, 0x16, 0x37, 0x36, 0x16, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, + 0x23, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x07, 0x06, 0x16, 0x33, 0x32, 0x36, 0x17, + 0x16, 0x06, 0x15, 0x14, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x22, + 0x26, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x15, 0x0E, 0x01, + 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x27, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x23, 0x1E, 0x01, 0x15, + 0x14, 0x16, 0x27, 0x26, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x35, 0x34, 0x26, 0x27, 0x34, + 0x36, 0x27, 0x26, 0x06, 0x15, 0x1E, 0x01, 0x07, 0x06, 0x16, 0x15, 0x16, 0x06, 0x07, 0x0E, 0x01, + 0x23, 0x22, 0x26, 0x27, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x1E, 0x01, 0x07, + 0x0E, 0x01, 0x23, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x26, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x23, + 0x22, 0x06, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x35, 0x3C, + 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x33, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, + 0x33, 0x30, 0x32, 0x33, 0x16, 0x06, 0x17, 0x3A, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x1E, 0x01, + 0x17, 0x01, 0x2A, 0x01, 0x07, 0x22, 0x06, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x27, 0x05, 0xF6, + 0x0A, 0x15, 0x07, 0x02, 0x05, 0x03, 0x04, 0x02, 0x05, 0x08, 0x05, 0x09, 0x11, 0x08, 0x08, 0x10, + 0x09, 0x05, 0x16, 0x04, 0x04, 0x05, 0x01, 0x01, 0x01, 0x03, 0x03, 0x10, 0x0C, 0x1F, 0x40, 0x1F, + 0x16, 0x2B, 0x16, 0x06, 0x1C, 0x06, 0x05, 0x01, 0x08, 0x08, 0x12, 0x08, 0x0F, 0x1C, 0x0F, 0x07, + 0x0F, 0x07, 0x0E, 0x06, 0x02, 0x02, 0x11, 0x01, 0x02, 0x01, 0x01, 0x18, 0x04, 0x03, 0x01, 0x02, + 0x01, 0x03, 0x16, 0x03, 0x06, 0x0C, 0x06, 0x42, 0x85, 0x42, 0x1D, 0x3A, 0x1C, 0x07, 0x0F, 0x07, + 0x0A, 0x02, 0x01, 0x02, 0x04, 0x07, 0x04, 0x11, 0x06, 0x3D, 0x77, 0x3D, 0x2A, 0x53, 0x2A, 0x08, + 0x11, 0x08, 0x06, 0x01, 0x07, 0x07, 0x18, 0x06, 0x11, 0x02, 0x15, 0x03, 0x08, 0x0A, 0x09, 0x22, + 0x44, 0x22, 0x15, 0x2B, 0x15, 0x04, 0x14, 0x01, 0x05, 0x0A, 0x08, 0x0C, 0x15, 0x08, 0x08, 0x0C, + 0x09, 0x01, 0x02, 0x01, 0x04, 0x10, 0x05, 0x08, 0x04, 0x07, 0x0E, 0x07, 0x0B, 0x17, 0x0C, 0x2E, + 0x5D, 0x2E, 0x0B, 0x03, 0x01, 0x09, 0x20, 0x43, 0x21, 0x12, 0x26, 0x12, 0x0C, 0x16, 0x01, 0x01, + 0x02, 0x04, 0x07, 0x0F, 0x01, 0x04, 0x06, 0x06, 0x04, 0x01, 0x01, 0x03, 0x06, 0x24, 0x0A, 0x17, + 0x2A, 0x15, 0x06, 0x0E, 0x07, 0x04, 0x07, 0x03, 0x02, 0x05, 0x01, 0x07, 0x01, 0x02, 0x11, 0x09, + 0x0F, 0x1D, 0x0E, 0x09, 0x10, 0x09, 0x08, 0x17, 0x09, 0x11, 0x1E, 0x0F, 0x04, 0x0A, 0x05, 0x03, + 0x08, 0x04, 0x0B, 0x03, 0x0F, 0x04, 0x3F, 0x7C, 0x3F, 0x1F, 0x3D, 0x1F, 0x14, 0x27, 0x14, 0x16, + 0x33, 0x01, 0x01, 0x04, 0x04, 0x03, 0x0D, 0x02, 0x01, 0x08, 0x03, 0x0D, 0x19, 0x0D, 0x2C, 0x5A, + 0x2C, 0x13, 0x24, 0x13, 0x08, 0x15, 0x08, 0x10, 0x04, 0x02, 0x0C, 0x04, 0x15, 0x05, 0x06, 0x0B, + 0x06, 0x26, 0x4B, 0x26, 0x0D, 0x1D, 0x0A, 0x0F, 0x16, 0x12, 0x09, 0x12, 0x08, 0x40, 0x7B, 0x39, + 0x19, 0x31, 0x1A, 0x18, 0x32, 0x19, 0x10, 0x20, 0x11, 0x01, 0x11, 0x05, 0x0E, 0x26, 0x11, 0x0F, + 0x1C, 0x0F, 0x0B, 0x01, 0x04, 0x12, 0x24, 0x12, 0x12, 0x25, 0x13, 0x06, 0x03, 0x01, 0x09, 0x10, + 0x08, 0x0A, 0x14, 0x0B, 0x06, 0x01, 0x03, 0x06, 0x06, 0x0F, 0x1E, 0x10, 0x1E, 0x3B, 0x1E, 0x0F, + 0x1F, 0x0F, 0x11, 0x21, 0x0C, 0x03, 0x10, 0x04, 0x07, 0x0F, 0x08, 0x11, 0x24, 0x12, 0x08, 0x10, + 0x08, 0x05, 0x05, 0x04, 0x04, 0x04, 0x07, 0x07, 0x16, 0x06, 0x06, 0x06, 0x02, 0x03, 0x0D, 0x01, + 0x0D, 0x17, 0x09, 0xFE, 0xC8, 0x0A, 0x13, 0x0A, 0x0D, 0x17, 0x03, 0x04, 0x21, 0x0E, 0x14, 0x05, + 0x04, 0x03, 0x11, 0x01, 0x08, 0x02, 0x01, 0x03, 0x01, 0x01, 0x01, 0x01, 0x08, 0x05, 0x04, 0x01, + 0x03, 0x01, 0x08, 0x03, 0x05, 0x19, 0x06, 0x09, 0x12, 0x09, 0x09, 0x25, 0x01, 0x03, 0x03, 0x03, + 0x0C, 0x01, 0x02, 0x03, 0x02, 0x03, 0x07, 0x03, 0x02, 0x02, 0x01, 0x02, 0x0E, 0x0C, 0x0F, 0x17, + 0x0F, 0x08, 0x0F, 0x08, 0x04, 0x01, 0x38, 0x04, 0x09, 0x13, 0x09, 0x03, 0x0D, 0x02, 0x04, 0x01, + 0x01, 0x01, 0x01, 0x02, 0x04, 0x01, 0x01, 0x11, 0x08, 0x08, 0x0D, 0x06, 0x04, 0x02, 0x03, 0x03, + 0x02, 0x01, 0x0D, 0x03, 0x03, 0x08, 0x25, 0x0E, 0x03, 0x01, 0x02, 0x04, 0x01, 0x05, 0x01, 0x01, + 0x04, 0x01, 0x01, 0x02, 0x07, 0x10, 0x04, 0x06, 0x09, 0x08, 0x07, 0x05, 0x04, 0x0A, 0x15, 0x0A, + 0x0D, 0x14, 0x03, 0x01, 0x05, 0x01, 0x01, 0x29, 0x4E, 0x29, 0x06, 0x77, 0x02, 0x04, 0x03, 0x03, + 0x0F, 0x48, 0x8F, 0x47, 0x05, 0x1A, 0x02, 0x05, 0x0A, 0x08, 0x05, 0x12, 0x03, 0x02, 0x11, 0x06, + 0x06, 0x14, 0x05, 0x0A, 0x0F, 0x05, 0x0A, 0x12, 0x23, 0x11, 0x0A, 0x13, 0x0A, 0x04, 0x0B, 0x04, + 0x06, 0x08, 0x06, 0x09, 0x14, 0x01, 0x0A, 0x04, 0x03, 0x07, 0x03, 0x04, 0x0B, 0x02, 0x18, 0x36, + 0x19, 0x08, 0x11, 0x08, 0x05, 0x0D, 0x05, 0x0B, 0x14, 0x05, 0x03, 0x08, 0x01, 0x04, 0x09, 0x01, + 0x03, 0x02, 0x04, 0x02, 0x02, 0x12, 0x1B, 0x09, 0x11, 0x08, 0x05, 0x0E, 0x07, 0x04, 0x02, 0x02, + 0x02, 0x04, 0x02, 0x01, 0x02, 0x01, 0x02, 0x03, 0x08, 0x24, 0x10, 0x12, 0x24, 0x12, 0x2A, 0x54, + 0x2A, 0x0E, 0x07, 0x09, 0x02, 0x03, 0x01, 0x05, 0x0B, 0x05, 0x02, 0x03, 0x08, 0x0B, 0x1B, 0x05, + 0x02, 0x02, 0x02, 0x22, 0x19, 0x0A, 0x12, 0x05, 0x04, 0x03, 0x04, 0x02, 0x03, 0x32, 0x04, 0x0D, + 0x05, 0x04, 0x03, 0x08, 0x05, 0x04, 0x25, 0x0C, 0x02, 0x0A, 0x01, 0x01, 0x01, 0x02, 0x02, 0x01, + 0x03, 0x01, 0x02, 0x02, 0x0C, 0x03, 0x18, 0x02, 0x05, 0x09, 0x04, 0x07, 0x07, 0x03, 0x02, 0x03, + 0x03, 0x01, 0x03, 0x03, 0x05, 0x01, 0x03, 0x03, 0x07, 0x13, 0x09, 0x07, 0x14, 0x06, 0x01, 0x0B, + 0x09, 0xFE, 0x6E, 0x01, 0x01, 0x14, 0x13, 0x03, 0x1E, 0x0E, 0x00, 0x00, 0x00, 0x03, 0x00, 0x55, + 0x00, 0x64, 0x01, 0x9A, 0x03, 0x26, 0x00, 0x86, 0x00, 0xA8, 0x00, 0xCA, 0x00, 0x00, 0x01, 0x3C, + 0x01, 0x35, 0x3C, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x26, 0x34, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x34, 0x06, 0x27, + 0x26, 0x36, 0x27, 0x26, 0x22, 0x23, 0x0E, 0x01, 0x07, 0x36, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x26, 0x07, 0x0E, 0x01, 0x33, 0x3A, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x15, 0x14, 0x06, + 0x07, 0x0E, 0x01, 0x17, 0x16, 0x06, 0x15, 0x1C, 0x03, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x17, + 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x35, 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x3C, + 0x01, 0x35, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x15, 0x1C, 0x01, + 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x35, + 0x3C, 0x01, 0x35, 0x07, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x22, 0x36, 0x35, 0x3C, 0x01, 0x35, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x30, 0x14, 0x15, 0x11, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x35, 0x3C, 0x01, 0x35, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x1C, 0x01, 0x15, 0x01, 0x9A, 0x02, 0x02, 0x08, 0x03, 0x02, 0x01, 0x07, + 0x01, 0x02, 0x03, 0x03, 0x08, 0x01, 0x07, 0x04, 0x04, 0x03, 0x05, 0x02, 0x04, 0x08, 0x03, 0x06, + 0x02, 0x01, 0x03, 0x02, 0x01, 0x08, 0x01, 0x06, 0x0B, 0x03, 0x01, 0x35, 0x05, 0x0D, 0x19, 0x0D, + 0x05, 0x0D, 0x04, 0x09, 0x0B, 0x03, 0x02, 0x19, 0x07, 0x16, 0x05, 0x0A, 0x32, 0x0A, 0x01, 0x01, + 0x22, 0x06, 0x29, 0x50, 0x2A, 0x0E, 0x1F, 0x0B, 0x04, 0x03, 0x05, 0x07, 0x04, 0x03, 0x06, 0x03, + 0x02, 0x0A, 0x01, 0x04, 0x04, 0x07, 0x01, 0x07, 0x04, 0x02, 0x02, 0x08, 0x01, 0x46, 0x04, 0x0C, + 0x12, 0x23, 0x11, 0x08, 0x11, 0x08, 0x1E, 0x3B, 0x1D, 0x07, 0x01, 0x1F, 0x3E, 0x1F, 0x0D, 0x1F, + 0x0E, 0x0F, 0x1F, 0x0F, 0x04, 0x0C, 0x12, 0x23, 0x11, 0x08, 0x11, 0x08, 0x1E, 0x3B, 0x1D, 0x07, + 0x01, 0x1F, 0x3E, 0x1F, 0x0D, 0x1F, 0x0E, 0x0F, 0x1F, 0x0F, 0x01, 0xA4, 0x1C, 0x37, 0x1B, 0x0E, + 0x1E, 0x0C, 0x09, 0x0A, 0x07, 0x04, 0x08, 0x06, 0x02, 0x08, 0x01, 0x05, 0x0D, 0x04, 0x07, 0x19, + 0x08, 0x03, 0x10, 0x04, 0x03, 0x0D, 0x03, 0x0B, 0x14, 0x0A, 0x06, 0x02, 0x04, 0x02, 0x08, 0x01, + 0x01, 0x02, 0x11, 0x07, 0x09, 0x03, 0x02, 0x02, 0x03, 0x29, 0x01, 0x0A, 0x14, 0x0A, 0x07, 0x0B, + 0x09, 0x04, 0x03, 0x01, 0x01, 0x05, 0x15, 0x17, 0x2D, 0x16, 0x2F, 0x5E, 0x5E, 0x5E, 0x2F, 0x0B, + 0x17, 0x0B, 0x07, 0x0E, 0x02, 0x11, 0x03, 0x09, 0x02, 0x0B, 0x08, 0x03, 0x01, 0x04, 0x0B, 0x15, + 0x0B, 0x2C, 0x59, 0x2C, 0x49, 0x91, 0x49, 0x04, 0x0C, 0x04, 0x05, 0x0B, 0x05, 0x03, 0x0B, 0x03, + 0x0B, 0x23, 0x0C, 0x37, 0x6E, 0x37, 0x1B, 0x37, 0x1B, 0x04, 0x05, 0x07, 0x07, 0x02, 0x01, 0x01, + 0x05, 0x11, 0x0A, 0x37, 0x6D, 0x36, 0x99, 0x05, 0x0B, 0x06, 0x0D, 0x02, 0x02, 0x02, 0x04, 0x03, + 0x01, 0x03, 0x01, 0x04, 0x07, 0x04, 0x07, 0x06, 0x07, 0x0D, 0x06, 0x03, 0x06, 0x03, 0x02, 0x06, + 0x02, 0x01, 0x04, 0x01, 0x02, 0x01, 0x01, 0x31, 0x05, 0x0B, 0x06, 0x0C, 0x03, 0x02, 0x02, 0x04, + 0x02, 0x01, 0x04, 0x01, 0x04, 0x07, 0x04, 0x01, 0x06, 0x06, 0x07, 0x0D, 0x07, 0x04, 0x06, 0x03, + 0x01, 0x06, 0x01, 0x02, 0x03, 0x02, 0x01, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x52, + 0x00, 0x40, 0x08, 0x98, 0x03, 0x40, 0x00, 0xC4, 0x00, 0xDB, 0x00, 0x00, 0x01, 0x17, 0x16, 0x06, + 0x17, 0x22, 0x06, 0x23, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x27, 0x23, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x1C, 0x01, + 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x07, 0x06, 0x14, 0x15, 0x0E, 0x01, 0x07, 0x14, 0x16, + 0x1F, 0x01, 0x23, 0x0E, 0x01, 0x15, 0x17, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x34, 0x26, 0x27, 0x26, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x23, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2E, 0x03, + 0x27, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x0E, 0x01, 0x07, 0x2E, 0x01, 0x2F, 0x01, 0x0E, 0x01, + 0x07, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x35, 0x33, 0x15, 0x1E, 0x01, 0x17, 0x3E, 0x01, 0x37, 0x32, 0x1E, 0x02, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x35, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x03, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x33, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x36, 0x16, 0x17, 0x1E, 0x01, + 0x07, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x1F, 0x01, 0x15, 0x25, 0x21, 0x22, 0x06, + 0x1D, 0x01, 0x14, 0x16, 0x33, 0x3A, 0x03, 0x33, 0x32, 0x16, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, + 0x23, 0x08, 0x91, 0x07, 0x01, 0x09, 0x01, 0x18, 0x30, 0x18, 0x14, 0x25, 0x15, 0x21, 0x44, 0x22, + 0x18, 0x29, 0x17, 0x0A, 0x04, 0x05, 0x0C, 0x0D, 0x14, 0x22, 0x14, 0x29, 0x52, 0x29, 0x29, 0x52, + 0x28, 0x15, 0x26, 0x13, 0x0D, 0x12, 0x36, 0x15, 0x12, 0x24, 0x12, 0x14, 0x0D, 0x0A, 0x0B, 0x04, + 0x01, 0x01, 0x06, 0x06, 0x0D, 0x0A, 0x04, 0x11, 0x25, 0x11, 0x08, 0x0F, 0x07, 0x03, 0x08, 0x03, + 0x09, 0x07, 0x07, 0x03, 0x09, 0x11, 0x0B, 0x25, 0x02, 0x09, 0x09, 0x18, 0x28, 0x17, 0x17, 0x27, + 0x0E, 0x0B, 0x12, 0x1B, 0x04, 0x01, 0x01, 0x06, 0x01, 0x27, 0x58, 0x2F, 0x03, 0x04, 0x05, 0x03, + 0x01, 0x1E, 0x3C, 0x1D, 0x01, 0x04, 0x08, 0x0E, 0x1C, 0x0D, 0x04, 0x06, 0x05, 0x02, 0x32, 0x6A, + 0x38, 0x01, 0x04, 0x02, 0x0E, 0x16, 0x04, 0x03, 0x03, 0x15, 0x08, 0x12, 0x08, 0x05, 0x0C, 0x06, + 0xCF, 0x0A, 0x13, 0x0C, 0x14, 0x1F, 0x12, 0x28, 0x50, 0x51, 0x50, 0x28, 0x04, 0x07, 0x03, 0x03, + 0x08, 0x13, 0x49, 0x19, 0x22, 0x45, 0x22, 0x2D, 0x5A, 0x5B, 0x5A, 0x2D, 0x2B, 0x55, 0x2B, 0x2A, + 0x55, 0x2B, 0x04, 0x08, 0x04, 0x14, 0x03, 0x02, 0x01, 0x08, 0x02, 0x0F, 0x1D, 0x0E, 0x01, 0x02, + 0x01, 0x16, 0x2B, 0x16, 0x13, 0x2B, 0x12, 0x27, 0x50, 0x28, 0x08, 0xFD, 0xEE, 0xFD, 0x3F, 0x12, + 0x12, 0x12, 0x12, 0x51, 0xA2, 0xA2, 0xA3, 0x51, 0x0F, 0x38, 0x0B, 0x0E, 0x01, 0x0D, 0x04, 0x0D, + 0x09, 0x02, 0x4A, 0x14, 0x0A, 0x14, 0x0A, 0x05, 0x01, 0x09, 0x11, 0x01, 0x07, 0x15, 0x22, 0x12, + 0x07, 0x01, 0x01, 0x06, 0x16, 0x30, 0x12, 0x0C, 0x07, 0x02, 0x02, 0x05, 0x06, 0x0D, 0x0A, 0x22, + 0x0E, 0x04, 0x16, 0x09, 0x04, 0x0A, 0x04, 0x09, 0x10, 0x1D, 0x15, 0x06, 0x0A, 0x03, 0x01, 0x06, + 0x03, 0x01, 0x02, 0x02, 0x04, 0x0D, 0x05, 0x25, 0x52, 0x22, 0x17, 0x23, 0x19, 0x05, 0x0A, 0x05, + 0x04, 0x02, 0x09, 0x08, 0x1F, 0x14, 0x12, 0x2C, 0x18, 0x30, 0x18, 0x1D, 0x3C, 0x1D, 0x1C, 0x15, + 0x2A, 0x55, 0x54, 0x55, 0x2A, 0x05, 0x0C, 0x07, 0x07, 0x1B, 0x03, 0x09, 0x01, 0x05, 0x08, 0x04, + 0x0A, 0x1A, 0x0F, 0x03, 0x02, 0x03, 0x01, 0x2C, 0x5A, 0x2F, 0x20, 0x56, 0x1C, 0x0C, 0x15, 0x0C, + 0x08, 0x10, 0x08, 0x06, 0x06, 0x0D, 0x18, 0x0C, 0x09, 0x17, 0x0E, 0x04, 0x04, 0x01, 0x05, 0x0B, + 0x17, 0x0C, 0x09, 0x19, 0x0A, 0x12, 0x08, 0x01, 0x01, 0x02, 0x02, 0x01, 0x03, 0x03, 0x03, 0x01, + 0x01, 0x03, 0x01, 0x01, 0x03, 0x01, 0x06, 0x07, 0x16, 0x45, 0x1C, 0x13, 0x26, 0x14, 0x01, 0x06, + 0x03, 0x02, 0x05, 0x02, 0x03, 0x05, 0x0B, 0x02, 0x02, 0x04, 0x05, 0x99, 0x14, 0x13, 0x23, 0x12, + 0x13, 0x03, 0x0E, 0x0B, 0x43, 0x0B, 0x05, 0x06, 0x00, 0x02, 0x00, 0x53, 0x01, 0x09, 0x07, 0xEC, + 0x02, 0x77, 0x00, 0xD4, 0x00, 0xE1, 0x00, 0x00, 0x01, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x06, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x22, 0x06, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x06, 0x26, 0x27, 0x26, + 0x06, 0x27, 0x26, 0x22, 0x07, 0x06, 0x26, 0x27, 0x26, 0x06, 0x27, 0x2E, 0x01, 0x07, 0x06, 0x26, + 0x27, 0x26, 0x06, 0x07, 0x06, 0x26, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x06, 0x26, 0x27, + 0x26, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x27, 0x16, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x15, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x32, 0x36, 0x33, 0x32, + 0x36, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x14, 0x16, 0x33, 0x16, 0x36, 0x37, + 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x03, 0x37, 0x3E, 0x01, 0x37, 0x2E, 0x01, 0x27, 0x05, 0x1E, 0x01, 0x07, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x17, 0x07, 0xB9, 0x3D, 0x80, 0x41, 0x0B, 0x12, 0x09, + 0x06, 0x0F, 0x03, 0x06, 0x0B, 0x06, 0x0C, 0x18, 0x0A, 0x06, 0x07, 0x01, 0x01, 0x02, 0x0A, 0x07, + 0x0F, 0x07, 0x04, 0x0B, 0x04, 0x0D, 0x1A, 0x0C, 0x29, 0x51, 0x2A, 0x1C, 0x38, 0x1D, 0x0B, 0x17, + 0x0B, 0x05, 0x09, 0x04, 0x08, 0x03, 0x08, 0x09, 0x06, 0x07, 0x08, 0x07, 0x09, 0x05, 0x09, 0x03, + 0x03, 0x0C, 0x05, 0x07, 0x05, 0x09, 0x06, 0x0B, 0x05, 0x03, 0x0A, 0x04, 0x07, 0x08, 0x08, 0x08, + 0x05, 0x07, 0x05, 0x0B, 0x05, 0x02, 0x0C, 0x02, 0x07, 0x05, 0x08, 0x08, 0x05, 0x09, 0x08, 0x03, + 0x08, 0x02, 0x06, 0x02, 0x08, 0x0E, 0x07, 0x31, 0x61, 0x31, 0x3A, 0x77, 0x3A, 0x3C, 0x78, 0x3B, + 0x0D, 0x19, 0x0C, 0x06, 0x0E, 0x04, 0x09, 0x07, 0x0A, 0x04, 0x23, 0x07, 0x0B, 0x11, 0x04, 0x0E, + 0x1B, 0x0D, 0x05, 0x07, 0x01, 0x10, 0x11, 0x0A, 0x12, 0x0C, 0x06, 0x0D, 0x06, 0x17, 0x2E, 0x16, + 0x0C, 0x13, 0x0D, 0x0B, 0x16, 0x0B, 0x17, 0x2F, 0x17, 0x38, 0x70, 0x39, 0x0A, 0x14, 0x0A, 0x05, + 0x11, 0x05, 0x0D, 0x17, 0x11, 0x06, 0x0B, 0x05, 0x0B, 0x14, 0x0C, 0x15, 0x27, 0x16, 0x07, 0x0F, + 0x08, 0x0B, 0x18, 0x0A, 0x14, 0x17, 0x04, 0x01, 0x03, 0x02, 0x08, 0x01, 0x04, 0x02, 0x03, 0x03, + 0x0C, 0x03, 0x05, 0x04, 0x1E, 0x03, 0x13, 0x25, 0x12, 0x12, 0x23, 0x12, 0x3A, 0x76, 0x3A, 0x2B, + 0x55, 0x53, 0x51, 0x26, 0x30, 0x52, 0x27, 0x0C, 0x1A, 0x0D, 0xF8, 0xDD, 0x07, 0x06, 0x05, 0x03, + 0x15, 0x07, 0x0C, 0x0C, 0x03, 0x05, 0x29, 0x0E, 0x01, 0xFF, 0x1A, 0x28, 0x11, 0x03, 0x01, 0x08, + 0x05, 0x07, 0x01, 0x02, 0x04, 0x02, 0x06, 0x0B, 0x09, 0x04, 0x06, 0x07, 0x07, 0x15, 0x01, 0x01, + 0x02, 0x01, 0x01, 0x04, 0x02, 0x04, 0x09, 0x04, 0x0E, 0x1A, 0x0B, 0x08, 0x0A, 0x06, 0x02, 0x04, + 0x02, 0x09, 0x01, 0x02, 0x0C, 0x04, 0x03, 0x02, 0x06, 0x05, 0x03, 0x03, 0x02, 0x0A, 0x03, 0x03, + 0x0C, 0x05, 0x07, 0x04, 0x03, 0x08, 0x03, 0x02, 0x0A, 0x02, 0x05, 0x04, 0x05, 0x04, 0x04, 0x06, + 0x04, 0x08, 0x02, 0x01, 0x0E, 0x01, 0x06, 0x05, 0x05, 0x05, 0x01, 0x04, 0x05, 0x0B, 0x03, 0x01, + 0x01, 0x02, 0x02, 0x04, 0x03, 0x07, 0x08, 0x13, 0x0E, 0x03, 0x05, 0x02, 0x01, 0x01, 0x04, 0x06, + 0x03, 0x0F, 0x03, 0x02, 0x03, 0x21, 0x09, 0x19, 0x33, 0x1A, 0x0C, 0x17, 0x0D, 0x12, 0x1E, 0x08, + 0x04, 0x05, 0x03, 0x02, 0x04, 0x02, 0x08, 0x17, 0x0A, 0x05, 0x07, 0x03, 0x02, 0x04, 0x01, 0x04, + 0x06, 0x03, 0x04, 0x0A, 0x03, 0x01, 0x02, 0x04, 0x09, 0x10, 0x04, 0x02, 0x09, 0x03, 0x08, 0x0F, + 0x05, 0x09, 0x04, 0x03, 0x01, 0x02, 0x01, 0x01, 0x0D, 0x06, 0x0C, 0x26, 0x17, 0x07, 0x0E, 0x06, + 0x01, 0x02, 0x02, 0x03, 0x03, 0x04, 0x02, 0x04, 0x08, 0x07, 0x0A, 0x03, 0x01, 0x01, 0x01, 0x01, + 0x05, 0x04, 0x0E, 0x15, 0x1E, 0x13, 0x19, 0x43, 0x24, 0x06, 0x0B, 0x05, 0x96, 0x0A, 0x10, 0x0C, + 0x06, 0x0F, 0x03, 0x04, 0x0C, 0x0D, 0x15, 0x10, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x54, + 0x00, 0xE2, 0x08, 0x53, 0x02, 0xA4, 0x00, 0xD6, 0x00, 0x00, 0x01, 0x3E, 0x01, 0x37, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x07, + 0x22, 0x26, 0x23, 0x26, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x27, 0x2A, + 0x01, 0x23, 0x22, 0x26, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2E, 0x01, 0x27, 0x26, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x36, 0x37, + 0x34, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x16, 0x33, 0x1E, 0x01, 0x17, 0x32, 0x36, 0x33, 0x3A, 0x01, + 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x3A, 0x01, 0x33, + 0x1E, 0x01, 0x17, 0x14, 0x36, 0x35, 0x34, 0x26, 0x27, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x15, 0x14, + 0x22, 0x23, 0x2A, 0x01, 0x23, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x33, 0x32, 0x36, 0x33, 0x3E, 0x01, + 0x37, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, + 0x31, 0x07, 0xF3, 0x18, 0x30, 0x18, 0x02, 0x08, 0x03, 0x05, 0x0B, 0x06, 0x0D, 0x1F, 0x12, 0x20, + 0x42, 0x24, 0x35, 0x6F, 0x37, 0x16, 0x2E, 0x17, 0x0B, 0x16, 0x0B, 0x0B, 0x16, 0x0A, 0x1D, 0x3A, + 0x1D, 0x17, 0x2E, 0x17, 0x18, 0x35, 0x18, 0x04, 0x08, 0x04, 0x01, 0x04, 0x01, 0x02, 0x0B, 0x03, + 0x0E, 0x1B, 0x0D, 0x0F, 0x23, 0x10, 0x07, 0x0A, 0x02, 0x0E, 0x2B, 0x2E, 0x12, 0x1F, 0x0B, 0x03, + 0x07, 0x03, 0x04, 0x05, 0x08, 0x0C, 0x1B, 0x0C, 0x0A, 0x14, 0x0A, 0x18, 0x35, 0x18, 0x0C, 0x19, + 0x0C, 0x0A, 0x1A, 0x0B, 0x0C, 0x17, 0x0B, 0x0F, 0x23, 0x09, 0x09, 0x08, 0x08, 0x02, 0x06, 0x05, + 0x08, 0x0F, 0x07, 0x0A, 0x16, 0x11, 0x16, 0x21, 0x0F, 0x16, 0x27, 0x14, 0x08, 0x10, 0x0A, 0x05, + 0x0C, 0x05, 0x05, 0x08, 0x04, 0x08, 0x01, 0x01, 0x12, 0x0C, 0x1C, 0x61, 0x38, 0x2B, 0x62, 0x31, + 0x16, 0x2C, 0x17, 0x21, 0x41, 0x20, 0x07, 0x12, 0x07, 0x04, 0x0A, 0x04, 0x07, 0x0E, 0x07, 0x1B, + 0x34, 0x1A, 0x03, 0x04, 0x03, 0x05, 0x0B, 0x05, 0x07, 0x0E, 0x07, 0x15, 0x29, 0x14, 0x1D, 0x3A, + 0x1C, 0x0A, 0x12, 0x09, 0x02, 0x03, 0x01, 0x08, 0x05, 0x03, 0x01, 0x01, 0x01, 0x11, 0x22, 0x10, + 0x08, 0x07, 0x02, 0x04, 0x05, 0x09, 0x04, 0x03, 0x09, 0x08, 0x04, 0x0A, 0x03, 0x11, 0x22, 0x11, + 0x17, 0x2F, 0x17, 0x09, 0x15, 0x08, 0x0F, 0x1E, 0x0F, 0x23, 0x4A, 0x25, 0x31, 0x61, 0x30, 0x23, + 0x46, 0x23, 0x02, 0x27, 0x02, 0x05, 0x02, 0x05, 0x07, 0x04, 0x05, 0x0C, 0x06, 0x0E, 0x1C, 0x09, + 0x13, 0x25, 0x0C, 0x10, 0x0D, 0x05, 0x03, 0x01, 0x01, 0x01, 0x01, 0x02, 0x05, 0x09, 0x05, 0x04, + 0x0C, 0x05, 0x06, 0x03, 0x01, 0x07, 0x01, 0x03, 0x08, 0x01, 0x05, 0x0A, 0x05, 0x05, 0x10, 0x01, + 0x01, 0x1B, 0x05, 0x23, 0x51, 0x04, 0x02, 0x08, 0x11, 0x05, 0x0B, 0x06, 0x07, 0x07, 0x01, 0x01, + 0x07, 0x02, 0x02, 0x03, 0x01, 0x02, 0x06, 0x04, 0x02, 0x04, 0x03, 0x02, 0x07, 0x01, 0x0A, 0x04, + 0x05, 0x19, 0x0B, 0x0B, 0x1C, 0x0C, 0x05, 0x0B, 0x02, 0x01, 0x03, 0x07, 0x0B, 0x19, 0x02, 0x02, + 0x16, 0x0E, 0x16, 0x2F, 0x17, 0x0A, 0x15, 0x08, 0x05, 0x0A, 0x04, 0x05, 0x03, 0x08, 0x0F, 0x23, + 0x10, 0x1D, 0x39, 0x1A, 0x3B, 0x56, 0x20, 0x1A, 0x1C, 0x09, 0x04, 0x09, 0x02, 0x03, 0x07, 0x04, + 0x01, 0x03, 0x01, 0x01, 0x04, 0x01, 0x01, 0x02, 0x01, 0x04, 0x01, 0x01, 0x02, 0x03, 0x01, 0x02, + 0x05, 0x02, 0x01, 0x01, 0x01, 0x01, 0x0D, 0x04, 0x01, 0x06, 0x01, 0x02, 0x05, 0x02, 0x08, 0x05, + 0x07, 0x0F, 0x03, 0x01, 0x02, 0x01, 0x01, 0x03, 0x02, 0x06, 0x03, 0x05, 0x09, 0x05, 0x0C, 0x14, + 0x03, 0x05, 0x09, 0x04, 0x03, 0x02, 0x02, 0x00, 0x00, 0x01, 0x00, 0x4D, 0x00, 0x5A, 0x01, 0x7A, + 0x03, 0x26, 0x00, 0x44, 0x00, 0x00, 0x13, 0x35, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x3F, 0x01, 0x33, + 0x17, 0x11, 0x07, 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x3F, 0x01, 0x11, 0x27, 0x15, 0x07, 0x15, + 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x17, 0x15, 0x14, 0x06, + 0x2B, 0x01, 0x22, 0x26, 0x3D, 0x01, 0x37, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, + 0x33, 0x35, 0x23, 0x35, 0x27, 0x35, 0x34, 0x36, 0x3B, 0x01, 0x37, 0x8F, 0x0E, 0x0D, 0x05, 0x05, + 0x16, 0x7D, 0x69, 0x35, 0x11, 0x03, 0x02, 0x05, 0x05, 0x0D, 0x09, 0x10, 0x2D, 0x1B, 0x0C, 0x0C, + 0x0C, 0x0C, 0x0C, 0x0C, 0x1B, 0x08, 0x08, 0xC9, 0x08, 0x08, 0x1A, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, + 0x0D, 0x1A, 0x08, 0x08, 0x10, 0x22, 0x02, 0xC9, 0x2D, 0x02, 0x0D, 0x0B, 0x07, 0x0A, 0x02, 0x03, + 0xA8, 0xFE, 0x9D, 0x1A, 0x03, 0x05, 0x0A, 0x04, 0x04, 0x09, 0x05, 0x08, 0x01, 0x3D, 0x1A, 0x35, + 0x19, 0x35, 0x36, 0x38, 0x36, 0x39, 0x36, 0x34, 0x2E, 0x27, 0x08, 0x07, 0x07, 0x08, 0x27, 0x2E, + 0x34, 0x36, 0x39, 0x36, 0x38, 0x36, 0x35, 0x19, 0x49, 0x07, 0x08, 0x1E, 0x00, 0x02, 0x00, 0x5D, + 0x00, 0x8D, 0x0D, 0x26, 0x02, 0xF3, 0x00, 0xA4, 0x00, 0xB2, 0x00, 0x00, 0x01, 0x2F, 0x01, 0x35, + 0x21, 0x35, 0x37, 0x17, 0x35, 0x17, 0x33, 0x2F, 0x02, 0x0F, 0x02, 0x23, 0x35, 0x32, 0x36, 0x3F, + 0x01, 0x27, 0x23, 0x07, 0x15, 0x17, 0x15, 0x0F, 0x01, 0x23, 0x27, 0x0F, 0x02, 0x23, 0x07, 0x0E, + 0x01, 0x1D, 0x01, 0x17, 0x15, 0x1F, 0x01, 0x3F, 0x02, 0x33, 0x15, 0x23, 0x0E, 0x01, 0x0F, 0x03, + 0x23, 0x15, 0x0F, 0x01, 0x21, 0x27, 0x2E, 0x01, 0x23, 0x21, 0x0F, 0x03, 0x23, 0x07, 0x0E, 0x01, + 0x1D, 0x01, 0x07, 0x15, 0x1F, 0x01, 0x33, 0x3F, 0x03, 0x33, 0x17, 0x37, 0x32, 0x36, 0x3F, 0x01, + 0x33, 0x1F, 0x05, 0x3F, 0x04, 0x33, 0x37, 0x1E, 0x01, 0x17, 0x3F, 0x02, 0x3E, 0x01, 0x33, 0x15, + 0x25, 0x35, 0x3E, 0x01, 0x3F, 0x03, 0x17, 0x0E, 0x01, 0x23, 0x2E, 0x01, 0x2B, 0x01, 0x22, 0x06, + 0x15, 0x06, 0x16, 0x1F, 0x02, 0x33, 0x37, 0x2F, 0x01, 0x37, 0x21, 0x37, 0x35, 0x3F, 0x01, 0x34, + 0x26, 0x2F, 0x01, 0x35, 0x23, 0x35, 0x21, 0x37, 0x3E, 0x01, 0x35, 0x27, 0x05, 0x23, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x3B, 0x01, 0x32, 0x16, 0x15, 0x14, 0x06, 0x0D, 0x22, 0x04, 0x06, 0xF8, 0x92, + 0x37, 0x21, 0xE0, 0x07, 0x02, 0x05, 0x26, 0x46, 0x4B, 0x37, 0xA7, 0x03, 0x04, 0x01, 0x03, 0x0B, + 0x01, 0x60, 0x02, 0x20, 0x32, 0x64, 0x2E, 0x41, 0x37, 0x18, 0x06, 0x02, 0x02, 0x02, 0x04, 0x02, + 0x39, 0x40, 0x37, 0x1D, 0x24, 0x61, 0x03, 0x03, 0x01, 0x0B, 0x25, 0x2D, 0x02, 0x06, 0x09, 0xFE, + 0xC8, 0x1F, 0x04, 0x0A, 0x04, 0xFE, 0xED, 0x09, 0x05, 0x04, 0x02, 0x1E, 0x67, 0x0B, 0x0C, 0x06, + 0x03, 0x03, 0x08, 0x1C, 0x25, 0x23, 0x17, 0x4D, 0x27, 0x0E, 0x02, 0x04, 0x01, 0x0B, 0x97, 0x16, + 0x23, 0x20, 0x2C, 0x4E, 0x51, 0x36, 0x10, 0x0E, 0x08, 0x01, 0x09, 0x05, 0x13, 0x22, 0x0F, 0x35, + 0x22, 0x13, 0x02, 0x0D, 0x0A, 0x01, 0x08, 0x01, 0x0E, 0x0C, 0x37, 0x35, 0x1D, 0xE0, 0x0B, 0x13, + 0x08, 0x04, 0x12, 0x0E, 0x04, 0x07, 0x06, 0x05, 0x01, 0x06, 0x0F, 0x06, 0x2E, 0x05, 0x08, 0x05, + 0x05, 0x01, 0xD9, 0x06, 0x02, 0x02, 0x05, 0x05, 0x0D, 0x5A, 0x04, 0xC9, 0x03, 0x07, 0x07, 0x04, + 0xF6, 0xF3, 0x40, 0x0D, 0x0E, 0x0E, 0x0D, 0x40, 0x0E, 0x0D, 0x0D, 0x02, 0x26, 0x0C, 0x0C, 0x05, + 0x1A, 0x01, 0x05, 0x04, 0x0E, 0x84, 0x03, 0x05, 0x06, 0x08, 0x08, 0x06, 0x02, 0x02, 0x04, 0x20, + 0x06, 0x12, 0x06, 0x13, 0x03, 0x01, 0x04, 0x04, 0x03, 0x03, 0x02, 0x02, 0x06, 0x05, 0x1F, 0x31, + 0x04, 0x06, 0x03, 0x06, 0x07, 0x04, 0x1D, 0x01, 0x03, 0x01, 0x03, 0x07, 0x08, 0x06, 0x1D, 0x1D, + 0x1F, 0x05, 0x05, 0x07, 0x03, 0x02, 0x03, 0x07, 0x05, 0x09, 0x05, 0x4C, 0x67, 0x84, 0x14, 0x03, + 0x05, 0x08, 0x06, 0x04, 0x08, 0x08, 0x04, 0x05, 0x4A, 0x10, 0x20, 0x22, 0x0F, 0x0D, 0x0A, 0x06, + 0x17, 0x2B, 0x2F, 0x23, 0x03, 0x0C, 0x0D, 0x01, 0x05, 0x12, 0x0F, 0x03, 0x03, 0x53, 0x1C, 0x50, + 0x02, 0x05, 0x03, 0x0F, 0x0F, 0x08, 0x03, 0x04, 0x05, 0x04, 0x04, 0x07, 0x07, 0x08, 0x16, 0x0D, + 0x23, 0x06, 0x11, 0x09, 0x03, 0x0C, 0x0D, 0x04, 0x03, 0x09, 0x0A, 0x0E, 0x04, 0x0D, 0x4E, 0x15, + 0x06, 0x0A, 0x10, 0x06, 0x0F, 0xE8, 0x0F, 0x0E, 0x0C, 0x0C, 0x0C, 0x0C, 0x0E, 0x0F, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x5D, 0x00, 0x61, 0x0A, 0xF1, 0x03, 0x22, 0x01, 0xB8, 0x01, 0xC8, 0x00, 0x00, + 0x01, 0x06, 0x26, 0x27, 0x22, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, + 0x0E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x06, 0x26, 0x15, 0x14, 0x16, 0x07, 0x06, 0x26, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x26, 0x15, 0x14, 0x22, 0x07, 0x22, 0x26, 0x27, 0x2A, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x36, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x27, 0x22, 0x26, 0x27, 0x26, 0x34, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x34, 0x26, 0x07, 0x0E, 0x01, 0x27, 0x3E, 0x01, 0x37, 0x2A, 0x01, 0x23, + 0x22, 0x16, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x26, + 0x22, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x26, 0x37, 0x36, 0x26, + 0x35, 0x2E, 0x01, 0x27, 0x34, 0x26, 0x35, 0x2E, 0x01, 0x27, 0x26, 0x34, 0x35, 0x34, 0x36, 0x37, + 0x36, 0x32, 0x33, 0x32, 0x36, 0x33, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x37, 0x32, 0x36, 0x37, 0x32, + 0x36, 0x33, 0x32, 0x36, 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x33, 0x36, 0x16, 0x37, 0x3A, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x07, + 0x16, 0x36, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x37, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x23, 0x2A, + 0x01, 0x27, 0x22, 0x26, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x34, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x33, 0x32, 0x16, 0x17, 0x16, 0x36, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x33, + 0x3E, 0x01, 0x33, 0x3A, 0x01, 0x37, 0x3A, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x32, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x16, + 0x17, 0x16, 0x14, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x07, + 0x06, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x07, 0x0E, 0x01, 0x07, 0x3A, 0x03, 0x33, 0x32, + 0x36, 0x37, 0x3A, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x32, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x14, 0x15, 0x1C, 0x01, 0x17, 0x16, 0x14, 0x07, 0x32, 0x36, 0x33, 0x3A, + 0x01, 0x33, 0x32, 0x16, 0x33, 0x16, 0x32, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, + 0x17, 0x16, 0x14, 0x17, 0x16, 0x06, 0x07, 0x05, 0x06, 0x16, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, + 0x07, 0x0E, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0A, 0xE4, 0x24, 0x48, 0x24, 0x05, 0x08, 0x05, 0x0A, + 0x14, 0x0A, 0x18, 0x31, 0x19, 0x07, 0x04, 0x07, 0x07, 0x0F, 0x08, 0x16, 0x0E, 0x08, 0x04, 0x10, + 0x02, 0x0C, 0x0F, 0x20, 0x0F, 0x0C, 0x19, 0x0C, 0x06, 0x1A, 0x01, 0x07, 0x05, 0x0B, 0x04, 0x04, + 0x09, 0x04, 0x06, 0x01, 0x03, 0x07, 0x1C, 0x04, 0x16, 0x2A, 0x15, 0x34, 0x66, 0x33, 0x1C, 0x37, + 0x1C, 0x08, 0x0F, 0x08, 0x09, 0x1B, 0x08, 0x05, 0x07, 0x04, 0x01, 0x01, 0x08, 0x0F, 0x08, 0x1C, + 0x39, 0x1D, 0x03, 0x06, 0x04, 0x01, 0x0F, 0x0B, 0x25, 0x4A, 0x26, 0x0A, 0x2A, 0x02, 0x03, 0x04, + 0x02, 0x03, 0x04, 0x02, 0x01, 0x03, 0x01, 0x12, 0x01, 0x04, 0x07, 0x09, 0x03, 0x04, 0x02, 0x05, + 0x09, 0x05, 0x05, 0x02, 0x01, 0x04, 0x08, 0x04, 0x03, 0x0D, 0x0A, 0x0C, 0x17, 0x0B, 0x07, 0x0B, + 0x08, 0x07, 0x18, 0x06, 0x08, 0x0E, 0x08, 0x03, 0x08, 0x02, 0x04, 0x06, 0x01, 0x10, 0x1D, 0x12, + 0x03, 0x0A, 0x07, 0x09, 0x21, 0x06, 0x10, 0x21, 0x10, 0x03, 0x05, 0x02, 0x0A, 0x0F, 0x08, 0x0B, + 0x23, 0x0C, 0x0B, 0x08, 0x1A, 0x16, 0x2D, 0x16, 0x13, 0x25, 0x13, 0x0E, 0x1F, 0x0D, 0x20, 0x3F, + 0x1F, 0x47, 0x90, 0x48, 0x20, 0x43, 0x22, 0x1B, 0x0C, 0x06, 0x01, 0x02, 0x03, 0x03, 0x06, 0x01, + 0x01, 0x01, 0x01, 0x02, 0x01, 0x04, 0x01, 0x03, 0x12, 0x08, 0x12, 0x25, 0x12, 0x08, 0x11, 0x08, + 0x07, 0x06, 0x05, 0x0B, 0x30, 0x0F, 0x23, 0x47, 0x23, 0x13, 0x27, 0x13, 0x0A, 0x13, 0x0A, 0x03, + 0x1B, 0x02, 0x0A, 0x10, 0x14, 0x10, 0x1F, 0x0F, 0x11, 0x29, 0x15, 0x12, 0x23, 0x11, 0x09, 0x10, + 0x06, 0x08, 0x09, 0x0B, 0x0F, 0x1C, 0x10, 0x07, 0x16, 0x0D, 0x09, 0x01, 0x0A, 0x03, 0x05, 0x0B, + 0x01, 0x13, 0x25, 0x12, 0x0F, 0x1F, 0x10, 0x14, 0x27, 0x14, 0x11, 0x23, 0x11, 0x13, 0x27, 0x13, + 0x05, 0x04, 0x01, 0x01, 0x01, 0x01, 0x07, 0x01, 0x02, 0x33, 0x09, 0x23, 0x47, 0x23, 0x24, 0x4B, + 0x24, 0x10, 0x23, 0x11, 0x14, 0x27, 0x14, 0x10, 0x21, 0x11, 0x09, 0x11, 0x09, 0x02, 0x0A, 0x02, + 0x06, 0x04, 0x0A, 0x0E, 0x1F, 0x0F, 0x03, 0x05, 0x02, 0x03, 0x0F, 0x04, 0x10, 0x23, 0x10, 0x27, + 0x4D, 0x26, 0x12, 0x24, 0x12, 0x0F, 0x2F, 0x09, 0x09, 0x04, 0x03, 0x0D, 0x05, 0x04, 0x3F, 0x07, + 0x13, 0x28, 0x13, 0x15, 0x2B, 0x15, 0x09, 0x18, 0x08, 0x03, 0x06, 0x02, 0x03, 0x03, 0x05, 0x13, + 0x2B, 0x08, 0x4D, 0x99, 0x99, 0x99, 0x4D, 0x16, 0x2C, 0x16, 0x07, 0x0E, 0x07, 0x0A, 0x07, 0x08, + 0x06, 0x0E, 0x08, 0x0A, 0x09, 0x06, 0x09, 0x07, 0x0F, 0x13, 0x27, 0x13, 0x20, 0x40, 0x20, 0x03, + 0x0B, 0x08, 0x05, 0x0E, 0x08, 0x05, 0x15, 0x01, 0x06, 0x07, 0x03, 0x01, 0x04, 0x05, 0x04, 0x05, + 0x08, 0x03, 0x03, 0x08, 0x04, 0x04, 0x03, 0x03, 0x07, 0x0D, 0x07, 0x23, 0x44, 0x23, 0x22, 0x44, + 0x22, 0x06, 0x0D, 0x04, 0x03, 0x01, 0x01, 0x02, 0x0C, 0xF9, 0x45, 0x10, 0x3E, 0x09, 0x14, 0x29, + 0x08, 0x03, 0x08, 0x10, 0x0B, 0x10, 0x0C, 0x14, 0x28, 0x14, 0x01, 0xDD, 0x05, 0x02, 0x03, 0x05, + 0x02, 0x04, 0x04, 0x05, 0x04, 0x0A, 0x1C, 0x0E, 0x08, 0x0D, 0x0E, 0x0B, 0x13, 0x04, 0x04, 0x09, + 0x02, 0x07, 0x09, 0x01, 0x01, 0x01, 0x01, 0x02, 0x04, 0x06, 0x05, 0x01, 0x04, 0x02, 0x01, 0x01, + 0x01, 0x01, 0x07, 0x02, 0x07, 0x03, 0x01, 0x09, 0x26, 0x4C, 0x26, 0x0C, 0x76, 0x03, 0x09, 0x0E, + 0x05, 0x02, 0x0A, 0x0F, 0x12, 0x24, 0x12, 0x1C, 0x38, 0x1C, 0x0E, 0x1B, 0x0E, 0x01, 0x01, 0x02, + 0x06, 0x0E, 0x02, 0x05, 0x09, 0x05, 0x04, 0x03, 0x0B, 0x16, 0x0A, 0x09, 0x19, 0x02, 0x03, 0x04, + 0x02, 0x02, 0x01, 0x01, 0x01, 0x04, 0x05, 0x08, 0x04, 0x01, 0x06, 0x01, 0x0D, 0x02, 0x21, 0x41, + 0x1F, 0x07, 0x0B, 0x03, 0x03, 0x15, 0x05, 0x0C, 0x17, 0x0C, 0x02, 0x03, 0x01, 0x0D, 0x23, 0x0E, + 0x15, 0x1E, 0x13, 0x11, 0x36, 0x0C, 0x04, 0x0B, 0x16, 0x0C, 0x1C, 0x34, 0x1A, 0x0B, 0x0E, 0x01, + 0x1E, 0x17, 0x0C, 0x14, 0x0C, 0x07, 0x12, 0x08, 0x12, 0x23, 0x13, 0x07, 0x0E, 0x07, 0x05, 0x0B, + 0x05, 0x02, 0x04, 0x03, 0x09, 0x11, 0x09, 0x0A, 0x04, 0x02, 0x05, 0x01, 0x01, 0x1B, 0x05, 0x0B, + 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x02, 0x03, 0x0C, 0x1F, 0x07, 0x05, 0x10, 0x09, 0x0B, 0x1A, + 0x01, 0x01, 0x01, 0x07, 0x09, 0x0B, 0x06, 0x08, 0x09, 0x04, 0x01, 0x18, 0x04, 0x02, 0x08, 0x07, + 0x06, 0x07, 0x05, 0x09, 0x18, 0x0B, 0x03, 0x05, 0x03, 0x03, 0x02, 0x01, 0x02, 0x02, 0x03, 0x04, + 0x01, 0x01, 0x34, 0x07, 0x0A, 0x12, 0x0A, 0x08, 0x0E, 0x07, 0x0C, 0x04, 0x03, 0x01, 0x02, 0x02, + 0x05, 0x02, 0x08, 0x02, 0x01, 0x02, 0x01, 0x01, 0x02, 0x01, 0x05, 0x0A, 0x03, 0x07, 0x07, 0x02, + 0x08, 0x02, 0x04, 0x04, 0x01, 0x03, 0x01, 0x01, 0x02, 0x07, 0x04, 0x01, 0x01, 0x02, 0x0D, 0x0D, + 0x2E, 0x0E, 0x0A, 0x13, 0x08, 0x07, 0x03, 0x01, 0x02, 0x03, 0x07, 0x04, 0x02, 0x06, 0x04, 0x02, + 0x0D, 0x03, 0x06, 0x02, 0x0B, 0x16, 0x16, 0x08, 0x01, 0x02, 0x02, 0x05, 0x05, 0x04, 0x01, 0x08, + 0x0D, 0x03, 0x09, 0x27, 0x08, 0x06, 0x0E, 0x02, 0x01, 0x04, 0x04, 0x11, 0x20, 0x12, 0x06, 0x0E, + 0x07, 0x06, 0x01, 0x03, 0x03, 0x0B, 0x04, 0x05, 0x03, 0x02, 0x01, 0x05, 0x04, 0x13, 0x05, 0x09, + 0x16, 0x03, 0x8B, 0x10, 0x12, 0x01, 0x16, 0x0A, 0x16, 0x03, 0x02, 0x05, 0x06, 0x05, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x67, 0x00, 0x27, 0x0B, 0x98, 0x03, 0x5A, 0x01, 0x39, 0x01, 0x49, 0x01, 0x55, + 0x00, 0x00, 0x01, 0x32, 0x06, 0x15, 0x14, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x07, 0x0E, + 0x01, 0x23, 0x22, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x06, 0x22, 0x23, 0x22, 0x16, 0x07, 0x0E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x22, 0x06, 0x07, + 0x0E, 0x01, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x14, 0x22, 0x23, 0x22, 0x06, 0x07, 0x2A, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x35, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x23, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, + 0x14, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x3A, 0x01, 0x33, 0x32, + 0x16, 0x37, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x17, 0x32, 0x16, 0x17, 0x16, 0x36, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x14, 0x36, 0x37, + 0x36, 0x16, 0x17, 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x2E, 0x01, 0x27, 0x3A, + 0x01, 0x33, 0x32, 0x06, 0x17, 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x3A, 0x01, + 0x33, 0x26, 0x34, 0x35, 0x34, 0x26, 0x37, 0x3E, 0x01, 0x33, 0x3E, 0x01, 0x37, 0x32, 0x06, 0x15, + 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x36, 0x37, 0x36, 0x32, 0x37, 0x3E, 0x01, 0x17, 0x05, 0x22, 0x06, 0x17, 0x1E, 0x01, 0x33, 0x32, + 0x16, 0x37, 0x36, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x25, 0x1E, 0x01, 0x17, 0x3E, 0x01, 0x37, 0x2A, + 0x01, 0x23, 0x1E, 0x01, 0x0B, 0x8C, 0x10, 0x04, 0x07, 0x07, 0x0D, 0x1C, 0x0E, 0x24, 0x49, 0x24, + 0x2B, 0x55, 0x2A, 0x12, 0x23, 0x11, 0x0C, 0x19, 0x0C, 0x06, 0x0B, 0x06, 0x09, 0x02, 0x03, 0x05, + 0x2A, 0x10, 0x0B, 0x14, 0x09, 0x03, 0x16, 0x04, 0x0B, 0x13, 0x0A, 0x29, 0x52, 0x28, 0x0B, 0x01, + 0x03, 0x01, 0x06, 0x05, 0x08, 0x02, 0x01, 0x01, 0x02, 0x01, 0x1A, 0x02, 0x2D, 0x59, 0x2C, 0x29, + 0x55, 0x28, 0x0A, 0x15, 0x0A, 0x07, 0x1D, 0x07, 0x0C, 0x02, 0x1C, 0x37, 0x1B, 0x06, 0x0E, 0x06, + 0x01, 0x04, 0x01, 0x04, 0x06, 0x02, 0x03, 0x07, 0x05, 0x0D, 0x21, 0x13, 0x0A, 0x13, 0x0E, 0x28, + 0x50, 0x26, 0x04, 0x0E, 0x06, 0x04, 0x09, 0x03, 0x08, 0x0E, 0x05, 0x06, 0x0D, 0x06, 0x15, 0x23, + 0x12, 0x08, 0x11, 0x07, 0x05, 0x07, 0x05, 0x0A, 0x20, 0x0C, 0x16, 0x26, 0x14, 0x06, 0x0A, 0x05, + 0x04, 0x0B, 0x05, 0x07, 0x07, 0x03, 0x04, 0x08, 0x04, 0x05, 0x09, 0x01, 0x01, 0x05, 0x03, 0x09, + 0x0E, 0x1A, 0x0C, 0x14, 0x27, 0x13, 0x09, 0x0A, 0x03, 0x11, 0x1E, 0x0D, 0x05, 0x0E, 0x0C, 0x06, + 0x0C, 0x06, 0x03, 0x1B, 0x05, 0x27, 0x4C, 0x27, 0x2B, 0x57, 0x2B, 0x42, 0x73, 0x31, 0x1A, 0x35, + 0x17, 0x06, 0x0A, 0x07, 0x11, 0x0B, 0x03, 0x04, 0x01, 0x01, 0x02, 0x03, 0x02, 0x02, 0x04, 0x03, + 0x03, 0x09, 0x2C, 0x1B, 0x37, 0x1B, 0x35, 0x6B, 0x6A, 0x6B, 0x35, 0x0B, 0x18, 0x0B, 0x05, 0x09, + 0x04, 0x0B, 0x08, 0x0D, 0x14, 0x27, 0x14, 0x0B, 0x0F, 0x09, 0x0B, 0x06, 0x01, 0x03, 0x06, 0x1F, + 0x0A, 0x0D, 0x07, 0x0A, 0x0D, 0x0E, 0x0C, 0x09, 0x06, 0x05, 0x04, 0x02, 0x48, 0x06, 0x11, 0x24, + 0x11, 0x0D, 0x1A, 0x0D, 0x36, 0x6D, 0x36, 0x0A, 0x13, 0x09, 0x01, 0x03, 0x03, 0x0A, 0x16, 0x0B, + 0x10, 0x0C, 0x0B, 0x04, 0x0E, 0x05, 0x27, 0x4E, 0x27, 0x38, 0x70, 0x70, 0x70, 0x38, 0x1D, 0x3A, + 0x1D, 0x01, 0x06, 0x03, 0x02, 0x0B, 0x06, 0x0B, 0x17, 0x0C, 0x09, 0x02, 0x0A, 0x1E, 0x04, 0x0F, + 0x24, 0x12, 0x4F, 0x9C, 0x4E, 0x17, 0x2F, 0x17, 0x0F, 0x48, 0x0A, 0xF8, 0xB8, 0x16, 0x08, 0x0B, + 0x09, 0x14, 0x0C, 0x0A, 0x49, 0x05, 0x06, 0x04, 0x1D, 0x14, 0x2A, 0x15, 0xFC, 0x5D, 0x05, 0x07, + 0x06, 0x3B, 0x7D, 0x40, 0x44, 0x88, 0x44, 0x01, 0x03, 0x02, 0xD5, 0x49, 0x0B, 0x07, 0x01, 0x01, + 0x01, 0x02, 0x01, 0x01, 0x06, 0x08, 0x0F, 0x1A, 0x07, 0x05, 0x13, 0x08, 0x03, 0x04, 0x02, 0x03, + 0x05, 0x01, 0x04, 0x04, 0x02, 0x0B, 0x0A, 0x04, 0x04, 0x01, 0x03, 0x09, 0x09, 0x13, 0x0A, 0x01, + 0x01, 0x01, 0x05, 0x02, 0x02, 0x01, 0x01, 0x09, 0x02, 0x03, 0x42, 0x0B, 0x06, 0x09, 0x06, 0x01, + 0x01, 0x01, 0x15, 0x02, 0x0D, 0x25, 0x0D, 0x14, 0x26, 0x13, 0x33, 0x62, 0x31, 0x19, 0x35, 0x17, + 0x0E, 0x29, 0x14, 0x02, 0x08, 0x02, 0x06, 0x0E, 0x07, 0x10, 0x21, 0x10, 0x14, 0x27, 0x14, 0x43, + 0x89, 0x44, 0x04, 0x07, 0x04, 0x03, 0x07, 0x02, 0x06, 0x03, 0x01, 0x02, 0x0A, 0x0A, 0x03, 0x07, + 0x04, 0x04, 0x04, 0x03, 0x03, 0x18, 0x07, 0x0B, 0x16, 0x0B, 0x10, 0x20, 0x11, 0x15, 0x2B, 0x16, + 0x07, 0x0D, 0x02, 0x04, 0x0C, 0x06, 0x09, 0x15, 0x09, 0x04, 0x12, 0x06, 0x26, 0x4E, 0x27, 0x0E, + 0x26, 0x0D, 0x07, 0x0D, 0x07, 0x04, 0x01, 0x01, 0x02, 0x02, 0x02, 0x04, 0x02, 0x02, 0x49, 0x28, + 0x14, 0x2C, 0x17, 0x06, 0x11, 0x03, 0x09, 0x1A, 0x0C, 0x12, 0x25, 0x11, 0x14, 0x27, 0x14, 0x14, + 0x27, 0x14, 0x1C, 0x4D, 0x01, 0x01, 0x1C, 0x03, 0x05, 0x05, 0x07, 0x04, 0x08, 0x08, 0x09, 0x13, + 0x0D, 0x17, 0x2A, 0x01, 0x0D, 0x07, 0x0A, 0x02, 0x01, 0x02, 0x05, 0x0A, 0x08, 0x14, 0x09, 0x03, + 0x06, 0x01, 0x01, 0x08, 0x02, 0x01, 0x01, 0x08, 0x0F, 0x07, 0x0C, 0x05, 0x02, 0x01, 0x05, 0x09, + 0x05, 0x05, 0x0F, 0x05, 0x05, 0x1A, 0x01, 0x02, 0x02, 0x0E, 0x08, 0x0D, 0x1A, 0x0D, 0x04, 0x06, + 0x04, 0x01, 0x03, 0x03, 0x04, 0x13, 0x02, 0x0B, 0x07, 0x01, 0x04, 0x02, 0x01, 0x01, 0x03, 0x03, + 0x0F, 0x0F, 0xA2, 0x30, 0x0E, 0x08, 0x01, 0x04, 0x0E, 0x14, 0x29, 0x02, 0x24, 0x49, 0x24, 0x33, + 0x5E, 0x2E, 0x0B, 0x17, 0x00, 0x02, 0x00, 0x6D, 0x00, 0x26, 0x05, 0x87, 0x03, 0x59, 0x00, 0x94, + 0x00, 0xA7, 0x00, 0x00, 0x01, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x23, 0x0E, 0x01, 0x27, + 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x34, 0x36, + 0x37, 0x22, 0x26, 0x27, 0x26, 0x36, 0x37, 0x1C, 0x01, 0x15, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x35, 0x26, 0x36, 0x35, 0x3C, + 0x01, 0x35, 0x34, 0x26, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x32, 0x16, + 0x17, 0x16, 0x36, 0x33, 0x3A, 0x03, 0x33, 0x3A, 0x03, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, + 0x06, 0x15, 0x1E, 0x01, 0x17, 0x05, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x15, 0x14, 0x06, 0x33, 0x3A, + 0x01, 0x33, 0x32, 0x36, 0x35, 0x34, 0x36, 0x23, 0x05, 0x87, 0x0A, 0x21, 0x14, 0x28, 0x14, 0x27, + 0x4F, 0x27, 0x16, 0x2A, 0x16, 0x0C, 0x35, 0x03, 0x03, 0x02, 0x04, 0x01, 0x06, 0x12, 0x01, 0x28, + 0x51, 0x29, 0x13, 0x29, 0x13, 0x0B, 0x15, 0x0B, 0x0B, 0x0D, 0x0B, 0x11, 0x19, 0x09, 0x14, 0x1C, + 0x0E, 0x08, 0x0F, 0x08, 0x07, 0x16, 0x02, 0x01, 0x0F, 0x0E, 0x06, 0x0C, 0x07, 0x3D, 0x7C, 0x3D, + 0x04, 0x02, 0x15, 0x27, 0x0E, 0x0E, 0x0D, 0x06, 0x19, 0x2B, 0x16, 0x0B, 0x18, 0x0C, 0x0B, 0x0F, + 0x09, 0x10, 0x04, 0x28, 0x0A, 0x16, 0x0A, 0x0A, 0x06, 0x01, 0x01, 0x08, 0x04, 0x04, 0x1C, 0x07, + 0x0E, 0x0A, 0x06, 0x07, 0x0A, 0x0C, 0x0D, 0x07, 0x02, 0x01, 0x0E, 0x03, 0x2A, 0x54, 0x54, 0x54, + 0x2B, 0x39, 0x74, 0x74, 0x73, 0x3A, 0x26, 0x4C, 0x26, 0x08, 0x11, 0x08, 0x03, 0x01, 0x01, 0x03, + 0x0A, 0x04, 0x09, 0x01, 0x06, 0x06, 0x02, 0x07, 0x08, 0x0F, 0x07, 0x08, 0x01, 0x02, 0x03, 0x02, + 0xFE, 0x03, 0x28, 0x4E, 0x27, 0x12, 0x0D, 0x02, 0x11, 0x28, 0x50, 0x28, 0x0E, 0x0F, 0x02, 0x12, + 0x02, 0xC0, 0x18, 0x4C, 0x03, 0x02, 0x03, 0x01, 0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x04, 0x11, + 0x13, 0x28, 0x14, 0x08, 0x12, 0x08, 0x03, 0x16, 0x05, 0x04, 0x02, 0x01, 0x03, 0x02, 0x03, 0x02, + 0x02, 0x07, 0x02, 0x04, 0x27, 0x0D, 0x1F, 0x44, 0x22, 0x15, 0x29, 0x14, 0x16, 0x32, 0x16, 0x0E, + 0x13, 0x08, 0x0F, 0x08, 0x07, 0x14, 0x16, 0x37, 0x18, 0x01, 0x01, 0x01, 0x20, 0x44, 0x22, 0x11, + 0x20, 0x11, 0x10, 0x29, 0x12, 0x25, 0x5B, 0x17, 0x05, 0x0A, 0x05, 0x06, 0x19, 0x0A, 0x14, 0x29, + 0x14, 0x08, 0x11, 0x08, 0x07, 0x0B, 0x07, 0x08, 0x02, 0x01, 0x01, 0x03, 0x0B, 0x0A, 0x02, 0x01, + 0x09, 0x0D, 0x03, 0x01, 0x01, 0x02, 0x04, 0x03, 0x01, 0x03, 0x01, 0x03, 0x02, 0x04, 0x15, 0x06, + 0x1B, 0x34, 0x1B, 0x7D, 0x10, 0x12, 0x09, 0x3F, 0x0D, 0x10, 0x09, 0x44, 0x00, 0x01, 0x00, 0x53, + 0x00, 0x5E, 0x02, 0x6B, 0x03, 0x26, 0x00, 0xA6, 0x00, 0x00, 0x01, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x06, 0x16, 0x15, 0x14, 0x16, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x26, 0x27, 0x26, 0x36, 0x37, 0x36, 0x26, 0x35, 0x3C, 0x01, 0x35, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, + 0x27, 0x22, 0x26, 0x07, 0x06, 0x16, 0x15, 0x14, 0x06, 0x17, 0x1E, 0x01, 0x33, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x37, 0x36, 0x34, 0x23, + 0x22, 0x36, 0x35, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x37, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x33, 0x32, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, 0x36, 0x26, 0x35, 0x36, 0x32, + 0x33, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x31, 0x01, 0xF7, 0x03, 0x15, 0x08, 0x0A, 0x11, 0x09, 0x07, 0x0E, 0x0A, 0x09, 0x06, 0x01, 0x02, + 0x05, 0x02, 0x02, 0x01, 0x06, 0x07, 0x04, 0x0E, 0x02, 0x01, 0x0C, 0x02, 0x02, 0x02, 0x01, 0x06, + 0x0C, 0x01, 0x07, 0x05, 0x04, 0x01, 0x04, 0x0C, 0x0F, 0x09, 0x04, 0x0A, 0x05, 0x03, 0x03, 0x04, + 0x08, 0x19, 0x0A, 0x08, 0x1A, 0x07, 0x04, 0x02, 0x02, 0x09, 0x06, 0x0D, 0x07, 0x0A, 0x15, 0x0B, + 0x13, 0x1A, 0x0E, 0x0F, 0x0B, 0x07, 0x08, 0x07, 0x03, 0x04, 0x20, 0x17, 0x1D, 0x59, 0x2A, 0x15, + 0x2C, 0x15, 0x12, 0x24, 0x12, 0x0B, 0x12, 0x0B, 0x06, 0x0A, 0x05, 0x07, 0x0C, 0x05, 0x15, 0x14, + 0x01, 0x02, 0x11, 0x14, 0x0A, 0x14, 0x0F, 0x10, 0x21, 0x11, 0x0A, 0x1D, 0x03, 0x01, 0x09, 0x08, + 0x02, 0x0A, 0x16, 0x0A, 0x04, 0x04, 0x01, 0x03, 0x02, 0x03, 0x01, 0x01, 0x04, 0x0B, 0x07, 0x09, + 0x0A, 0x08, 0x1A, 0x33, 0x19, 0x03, 0x24, 0x01, 0x01, 0x02, 0x01, 0x0F, 0x04, 0x08, 0x07, 0x05, + 0x03, 0x03, 0x05, 0x03, 0x05, 0x04, 0x04, 0x0B, 0x0A, 0x0D, 0x02, 0x96, 0x11, 0x1E, 0x0F, 0x13, + 0x2A, 0x14, 0x10, 0x20, 0x0E, 0x0F, 0x1D, 0x10, 0x2F, 0x5D, 0x2E, 0x16, 0x2C, 0x16, 0x07, 0x09, + 0x02, 0x01, 0x01, 0x05, 0x08, 0x06, 0x05, 0x08, 0x11, 0x07, 0x1A, 0x32, 0x19, 0x2C, 0x55, 0x2A, + 0x07, 0x11, 0x04, 0x04, 0x0D, 0x03, 0x0B, 0x1D, 0x0F, 0x06, 0x0C, 0x06, 0x04, 0x0B, 0x03, 0x05, + 0x02, 0x01, 0x02, 0x06, 0x03, 0x15, 0x05, 0x07, 0x16, 0x04, 0x02, 0x01, 0x01, 0x05, 0x02, 0x05, + 0x10, 0x0E, 0x0F, 0x26, 0x14, 0x18, 0x2B, 0x1A, 0x24, 0x49, 0x1C, 0x24, 0x19, 0x0A, 0x04, 0x04, + 0x06, 0x06, 0x0B, 0x06, 0x04, 0x0F, 0x06, 0x04, 0x0B, 0x05, 0x06, 0x09, 0x08, 0x25, 0x4E, 0x2A, + 0x20, 0x40, 0x19, 0x0D, 0x12, 0x06, 0x06, 0x09, 0x06, 0x03, 0x05, 0x0D, 0x07, 0x29, 0x83, 0x0A, + 0x01, 0x04, 0x02, 0x06, 0x05, 0x03, 0x05, 0x03, 0x03, 0x03, 0x04, 0x07, 0x05, 0x09, 0x01, 0x02, + 0x05, 0x0B, 0x05, 0x05, 0x01, 0x0A, 0x08, 0x03, 0x05, 0x03, 0x03, 0x04, 0x02, 0x06, 0x12, 0x07, + 0x10, 0x2B, 0x0F, 0x00, 0x00, 0x02, 0x00, 0x58, 0x00, 0x27, 0x04, 0x96, 0x03, 0x59, 0x00, 0x93, + 0x00, 0xC4, 0x00, 0x00, 0x01, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x22, 0x23, 0x2A, 0x01, + 0x23, 0x06, 0x22, 0x23, 0x2A, 0x01, 0x23, 0x30, 0x14, 0x31, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x2A, 0x01, 0x23, 0x22, 0x36, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x26, 0x27, 0x26, 0x22, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x36, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x33, 0x16, 0x32, 0x33, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x16, 0x37, 0x32, 0x36, 0x33, 0x36, + 0x32, 0x37, 0x32, 0x36, 0x35, 0x34, 0x36, 0x27, 0x05, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, + 0x01, 0x07, 0x06, 0x26, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x17, 0x32, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x33, + 0x16, 0x32, 0x33, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x04, 0x96, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x0A, 0x0C, 0x15, 0x0E, 0x19, 0x32, 0x19, 0x34, 0x67, 0x34, 0x04, 0x08, 0x04, 0x03, 0x05, 0x02, + 0x1A, 0x35, 0x1A, 0x0A, 0x13, 0x0A, 0x04, 0x05, 0x04, 0x0F, 0x1D, 0x0F, 0x3B, 0x78, 0x3C, 0x0F, + 0x1E, 0x0F, 0x02, 0x02, 0x01, 0x03, 0x0E, 0x03, 0x03, 0x0E, 0x03, 0x04, 0x03, 0x04, 0x0A, 0x19, + 0x09, 0x0A, 0x12, 0x06, 0x0A, 0x1C, 0x03, 0x03, 0x01, 0x12, 0x10, 0x2C, 0x13, 0x14, 0x0A, 0x05, + 0x03, 0x09, 0x05, 0x0A, 0x16, 0x0C, 0x0E, 0x16, 0x0A, 0x08, 0x10, 0x02, 0x02, 0x17, 0x0D, 0x1A, + 0x36, 0x1A, 0x31, 0x61, 0x31, 0x09, 0x32, 0x16, 0x05, 0x19, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, + 0x05, 0x0B, 0x17, 0x0C, 0x03, 0x1C, 0x05, 0x07, 0x10, 0x08, 0x1D, 0x3B, 0x1E, 0x27, 0x4E, 0x27, + 0x08, 0x1E, 0x02, 0x02, 0x03, 0x01, 0x01, 0x04, 0x15, 0x11, 0x0F, 0x22, 0x0F, 0x1F, 0x3F, 0x1F, + 0x14, 0x27, 0x14, 0x13, 0x06, 0x01, 0x01, 0xFE, 0x9E, 0x01, 0x01, 0x0B, 0x07, 0x17, 0x08, 0x16, + 0x2A, 0x16, 0x1A, 0x61, 0x02, 0x0B, 0x0D, 0x1D, 0x11, 0x03, 0x03, 0x01, 0x01, 0x21, 0x0A, 0x0B, + 0x15, 0x0D, 0x0D, 0x19, 0x02, 0x07, 0x0A, 0x04, 0x08, 0x14, 0x02, 0x02, 0x0A, 0x0E, 0x18, 0x30, + 0x18, 0x03, 0x17, 0x03, 0x08, 0x03, 0x01, 0x02, 0xDE, 0x0F, 0x1E, 0x10, 0x0A, 0x16, 0x07, 0x06, + 0x01, 0x0C, 0x0C, 0x0D, 0x01, 0x02, 0x03, 0x01, 0x02, 0x0D, 0x02, 0x05, 0x07, 0x05, 0x05, 0x15, + 0x09, 0x0F, 0x2A, 0x12, 0x17, 0x42, 0x10, 0x0F, 0x0B, 0x0C, 0x0D, 0x1A, 0x17, 0x0E, 0x19, 0x0C, + 0x1A, 0x33, 0x19, 0x20, 0x40, 0x21, 0x1D, 0x3C, 0x1E, 0x10, 0x03, 0x03, 0x05, 0x0B, 0x05, 0x0A, + 0x13, 0x0A, 0x02, 0x0A, 0x0E, 0x03, 0x0D, 0x06, 0x0D, 0x19, 0x0C, 0x12, 0x20, 0x10, 0x21, 0x3F, + 0x20, 0x08, 0x57, 0x01, 0x01, 0x02, 0x01, 0x01, 0x07, 0x07, 0x01, 0x04, 0x0C, 0x0A, 0x13, 0x0A, + 0x0F, 0x1E, 0x10, 0x13, 0x11, 0x04, 0x04, 0x03, 0x01, 0x01, 0x01, 0x01, 0x2C, 0x0D, 0x15, 0x2B, + 0x15, 0xF1, 0x0A, 0x17, 0x06, 0x03, 0x01, 0x01, 0x01, 0x01, 0x02, 0x03, 0x03, 0x26, 0x11, 0x22, + 0x0E, 0x0E, 0x03, 0x01, 0x28, 0x04, 0x0D, 0x1A, 0x06, 0x06, 0x0B, 0x05, 0x04, 0x09, 0x01, 0x02, + 0x07, 0x06, 0x0A, 0x19, 0x0E, 0x13, 0x04, 0x01, 0x06, 0x13, 0x03, 0x0E, 0x21, 0x0F, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x51, 0x00, 0x64, 0x01, 0x96, 0x03, 0x26, 0x00, 0x86, 0x00, 0xA2, 0x00, 0xC4, + 0x00, 0x00, 0x01, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x14, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x14, 0x15, 0x1C, 0x01, + 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x35, + 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x26, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x3C, 0x03, 0x35, 0x34, 0x36, 0x27, + 0x26, 0x36, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x22, 0x23, 0x22, + 0x36, 0x37, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x07, 0x3E, 0x01, 0x37, 0x3A, 0x01, + 0x17, 0x16, 0x06, 0x17, 0x16, 0x36, 0x15, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x26, 0x36, + 0x37, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x16, 0x36, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x37, + 0x0E, 0x01, 0x07, 0x13, 0x3C, 0x01, 0x31, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x1C, 0x01, 0x15, 0x14, 0x06, 0x33, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x35, 0x3C, 0x01, 0x35, 0x01, 0x43, 0x03, 0x08, 0x04, 0x02, 0x05, 0x03, 0x04, 0x04, 0x07, + 0x01, 0x08, 0x03, 0x03, 0x02, 0x01, 0x07, 0x01, 0x02, 0x03, 0x08, 0x02, 0x02, 0x01, 0x08, 0x02, + 0x02, 0x04, 0x06, 0x02, 0x07, 0x04, 0x04, 0x01, 0x0A, 0x02, 0x03, 0x06, 0x03, 0x04, 0x07, 0x05, + 0x03, 0x04, 0x0B, 0x1F, 0x0E, 0x2A, 0x50, 0x29, 0x06, 0x22, 0x01, 0x01, 0x0A, 0x32, 0x0A, 0x05, + 0x16, 0x07, 0x19, 0x02, 0x03, 0x0B, 0x09, 0x04, 0x0D, 0x05, 0x0D, 0x19, 0x0D, 0x05, 0x35, 0x01, + 0x03, 0x0B, 0x06, 0x01, 0x08, 0x01, 0x02, 0x03, 0x01, 0x02, 0x06, 0x8A, 0x20, 0x1F, 0x02, 0x01, + 0x22, 0x2F, 0x22, 0x02, 0x1F, 0x07, 0x0F, 0x0B, 0x06, 0x26, 0x0E, 0x15, 0x21, 0x03, 0x04, 0x0C, + 0x0E, 0x17, 0x36, 0x21, 0x0F, 0x1E, 0x0F, 0x97, 0x0F, 0x1F, 0x0F, 0x0E, 0x1E, 0x0E, 0x1F, 0x3E, + 0x1F, 0x01, 0x07, 0x1D, 0x3B, 0x1E, 0x08, 0x11, 0x08, 0x11, 0x23, 0x11, 0x0D, 0x04, 0x03, 0x12, + 0x0A, 0x14, 0x0B, 0x03, 0x0D, 0x03, 0x04, 0x10, 0x03, 0x08, 0x19, 0x07, 0x04, 0x0D, 0x05, 0x01, + 0x08, 0x02, 0x06, 0x08, 0x04, 0x07, 0x0A, 0x09, 0x0C, 0x1E, 0x0E, 0x1B, 0x37, 0x1C, 0x36, 0x6D, + 0x37, 0x0A, 0x11, 0x05, 0x01, 0x01, 0x02, 0x07, 0x07, 0x05, 0x04, 0x1B, 0x37, 0x1B, 0x37, 0x6E, + 0x37, 0x0C, 0x23, 0x0B, 0x03, 0x0B, 0x03, 0x05, 0x0B, 0x05, 0x04, 0x0C, 0x04, 0x49, 0x91, 0x49, + 0x2C, 0x59, 0x2C, 0x0B, 0x15, 0x0B, 0x04, 0x01, 0x03, 0x08, 0x0B, 0x02, 0x09, 0x03, 0x11, 0x02, + 0x0D, 0x08, 0x0B, 0x17, 0x0B, 0x2F, 0x5E, 0x5E, 0x5E, 0x2F, 0x16, 0x2D, 0x17, 0x15, 0x05, 0x01, + 0x01, 0x03, 0x04, 0x09, 0x0B, 0x07, 0x0A, 0x14, 0x0A, 0x01, 0x29, 0x03, 0x02, 0x02, 0x03, 0x09, + 0x07, 0x11, 0x02, 0x01, 0x01, 0x08, 0x02, 0x04, 0x02, 0x06, 0xD4, 0x1C, 0x55, 0x29, 0x28, 0x4C, + 0x03, 0x15, 0x55, 0x16, 0x11, 0x20, 0x0D, 0x06, 0x2F, 0x09, 0x08, 0x37, 0x0E, 0x19, 0x2F, 0x14, + 0x22, 0x5A, 0x28, 0x0C, 0x18, 0x0C, 0xFE, 0xCD, 0x01, 0x02, 0x01, 0x04, 0x01, 0x02, 0x06, 0x02, + 0x03, 0x06, 0x03, 0x06, 0x0D, 0x07, 0x06, 0x07, 0x04, 0x07, 0x04, 0x01, 0x03, 0x01, 0x03, 0x04, + 0x02, 0x02, 0x02, 0x0D, 0x06, 0x0B, 0x05, 0x00, 0x00, 0x02, 0x00, 0x53, 0x00, 0x94, 0x08, 0xD3, + 0x02, 0xE4, 0x01, 0x94, 0x01, 0xAA, 0x00, 0x00, 0x01, 0x3E, 0x01, 0x37, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x22, 0x23, 0x16, 0x14, 0x23, 0x2E, 0x01, 0x27, 0x26, 0x06, + 0x23, 0x22, 0x26, 0x23, 0x1E, 0x01, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x22, 0x26, 0x23, + 0x1E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x06, 0x22, 0x23, 0x1E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x1E, 0x01, 0x07, 0x22, 0x26, 0x27, 0x2E, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x1E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, + 0x1E, 0x01, 0x15, 0x16, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x23, 0x22, 0x26, 0x23, 0x1E, + 0x01, 0x15, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x23, 0x2A, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x35, 0x3C, 0x01, 0x35, 0x26, 0x34, 0x27, 0x34, 0x26, 0x15, + 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x26, 0x15, 0x14, 0x06, 0x15, 0x2E, + 0x01, 0x23, 0x2A, 0x01, 0x07, 0x22, 0x06, 0x23, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x23, 0x22, 0x26, + 0x27, 0x26, 0x06, 0x23, 0x22, 0x26, 0x23, 0x26, 0x22, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x22, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x06, + 0x22, 0x23, 0x22, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x06, 0x26, 0x27, 0x26, 0x06, + 0x23, 0x22, 0x06, 0x23, 0x22, 0x06, 0x23, 0x22, 0x06, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x23, + 0x26, 0x22, 0x27, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x07, 0x06, 0x14, 0x15, 0x14, + 0x06, 0x17, 0x1E, 0x01, 0x17, 0x14, 0x06, 0x17, 0x16, 0x36, 0x33, 0x36, 0x32, 0x33, 0x30, 0x16, + 0x17, 0x16, 0x32, 0x33, 0x16, 0x32, 0x33, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, + 0x32, 0x16, 0x33, 0x32, 0x16, 0x33, 0x32, 0x16, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x17, 0x1E, + 0x01, 0x33, 0x32, 0x36, 0x33, 0x32, 0x34, 0x37, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, + 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x3E, 0x01, 0x33, 0x32, 0x36, 0x33, 0x32, 0x26, 0x17, + 0x3A, 0x01, 0x17, 0x14, 0x16, 0x33, 0x32, 0x16, 0x33, 0x32, 0x16, 0x33, 0x32, 0x16, 0x33, 0x32, + 0x36, 0x37, 0x14, 0x16, 0x33, 0x1E, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x15, 0x1C, 0x01, + 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x3C, 0x01, 0x35, 0x36, 0x34, 0x35, 0x3C, 0x01, 0x35, + 0x3C, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x32, + 0x36, 0x33, 0x32, 0x3E, 0x01, 0x32, 0x37, 0x3A, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x25, 0x3A, 0x01, + 0x33, 0x32, 0x16, 0x17, 0x16, 0x06, 0x07, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x27, + 0x26, 0x36, 0x37, 0x08, 0x99, 0x0E, 0x1D, 0x0F, 0x29, 0x52, 0x29, 0x40, 0x7F, 0x40, 0x21, 0x41, + 0x21, 0x14, 0x24, 0x14, 0x07, 0x0C, 0x07, 0x06, 0x03, 0x03, 0x09, 0x06, 0x08, 0x10, 0x07, 0x07, + 0x05, 0x0E, 0x08, 0x07, 0x04, 0x04, 0x04, 0x09, 0x08, 0x10, 0x07, 0x04, 0x0A, 0x0B, 0x09, 0x0C, + 0x03, 0x03, 0x03, 0x08, 0x09, 0x11, 0x09, 0x06, 0x04, 0x0E, 0x09, 0x07, 0x03, 0x05, 0x05, 0x0A, + 0x08, 0x11, 0x08, 0x06, 0x06, 0x10, 0x09, 0x07, 0x03, 0x04, 0x04, 0x09, 0x09, 0x10, 0x08, 0x04, + 0x05, 0x10, 0x08, 0x06, 0x03, 0x05, 0x06, 0x09, 0x08, 0x10, 0x09, 0x04, 0x06, 0x02, 0x0E, 0x07, + 0x08, 0x08, 0x04, 0x01, 0x20, 0x02, 0x0A, 0x14, 0x09, 0x04, 0x09, 0x01, 0x12, 0x02, 0x03, 0x06, + 0x03, 0x03, 0x09, 0x05, 0x01, 0x08, 0x02, 0x08, 0x10, 0x08, 0x11, 0x23, 0x11, 0x09, 0x04, 0x01, + 0x01, 0x24, 0x07, 0x01, 0x02, 0x02, 0x04, 0x07, 0x0E, 0x07, 0x11, 0x21, 0x10, 0x05, 0x02, 0x02, + 0x01, 0x08, 0x02, 0x02, 0x01, 0x01, 0x03, 0x0C, 0x03, 0x09, 0x13, 0x0A, 0x06, 0x0C, 0x06, 0x02, + 0x01, 0x01, 0x02, 0x02, 0x05, 0x05, 0x01, 0x02, 0x01, 0x02, 0x01, 0x07, 0x0D, 0x06, 0x0F, 0x1D, + 0x0F, 0x01, 0x02, 0x01, 0x02, 0x02, 0x05, 0x04, 0x02, 0x06, 0x10, 0x20, 0x11, 0x06, 0x04, 0x04, + 0x07, 0x04, 0x06, 0x03, 0x0B, 0x03, 0x0A, 0x13, 0x09, 0x07, 0x0D, 0x06, 0x05, 0x03, 0x05, 0x07, + 0x06, 0x06, 0x05, 0x0A, 0x06, 0x0F, 0x20, 0x10, 0x17, 0x2F, 0x16, 0x0D, 0x19, 0x0E, 0x03, 0x0E, + 0x01, 0x02, 0x08, 0x02, 0x01, 0x05, 0x01, 0x01, 0x03, 0x04, 0x0E, 0x07, 0x03, 0x06, 0x04, 0x05, + 0x01, 0x04, 0x0E, 0x04, 0x0C, 0x17, 0x0C, 0x1C, 0x39, 0x1C, 0x06, 0x08, 0x04, 0x07, 0x07, 0x08, + 0x04, 0x02, 0x05, 0x07, 0x0E, 0x07, 0x09, 0x11, 0x09, 0x03, 0x0E, 0x03, 0x03, 0x06, 0x06, 0x04, + 0x04, 0x07, 0x10, 0x21, 0x11, 0x06, 0x05, 0x07, 0x02, 0x04, 0x0C, 0x19, 0x0C, 0x08, 0x1B, 0x04, + 0x02, 0x0A, 0x03, 0x02, 0x03, 0x05, 0x0E, 0x1E, 0x0E, 0x05, 0x09, 0x05, 0x04, 0x02, 0x06, 0x03, + 0x04, 0x01, 0x02, 0x01, 0x04, 0x08, 0x04, 0x10, 0x1F, 0x0F, 0x06, 0x0A, 0x06, 0x03, 0x03, 0x01, + 0x01, 0x02, 0x05, 0x01, 0x01, 0x10, 0x02, 0x01, 0x10, 0x01, 0x01, 0x04, 0x09, 0x05, 0x1F, 0x3F, + 0x1F, 0x0A, 0x13, 0x08, 0x05, 0x01, 0x05, 0x2D, 0x59, 0x2D, 0x43, 0x87, 0x87, 0x87, 0x44, 0x0F, + 0x20, 0x10, 0x4E, 0x94, 0x43, 0xFE, 0x62, 0x0D, 0x1B, 0x0D, 0x06, 0x08, 0x02, 0x04, 0x09, 0x09, + 0x03, 0x0E, 0x04, 0x08, 0x0E, 0x08, 0x05, 0x0D, 0x02, 0x05, 0x0C, 0x09, 0x01, 0x82, 0x09, 0x11, + 0x09, 0x0A, 0x14, 0x07, 0x0C, 0x16, 0x0C, 0x06, 0x0C, 0x05, 0x04, 0x06, 0x16, 0x01, 0x0E, 0x05, + 0x06, 0x01, 0x01, 0x05, 0x19, 0x0D, 0x07, 0x08, 0x03, 0x01, 0x01, 0x06, 0x16, 0x04, 0x03, 0x09, + 0x07, 0x06, 0x0C, 0x01, 0x06, 0x1B, 0x02, 0x01, 0x0D, 0x07, 0x09, 0x01, 0x07, 0x18, 0x01, 0x10, + 0x06, 0x08, 0x02, 0x08, 0x1B, 0x03, 0x01, 0x0F, 0x06, 0x08, 0x01, 0x01, 0x01, 0x02, 0x04, 0x0B, + 0x05, 0x09, 0x06, 0x04, 0x04, 0x13, 0x08, 0x03, 0x01, 0x01, 0x05, 0x0D, 0x07, 0x05, 0x0C, 0x06, + 0x07, 0x0D, 0x07, 0x05, 0x08, 0x05, 0x01, 0x01, 0x01, 0x09, 0x0E, 0x1D, 0x0E, 0x1F, 0x3F, 0x20, + 0x09, 0x02, 0x09, 0x13, 0x28, 0x13, 0x19, 0x33, 0x19, 0x06, 0x0C, 0x06, 0x03, 0x02, 0x02, 0x05, + 0x0A, 0x06, 0x05, 0x05, 0x01, 0x01, 0x01, 0x04, 0x06, 0x01, 0x01, 0x09, 0x01, 0x02, 0x01, 0x01, + 0x01, 0x02, 0x02, 0x04, 0x02, 0x01, 0x01, 0x04, 0x02, 0x04, 0x01, 0x06, 0x01, 0x04, 0x0B, 0x01, + 0x05, 0x09, 0x0C, 0x03, 0x01, 0x02, 0x01, 0x01, 0x0B, 0x02, 0x03, 0x02, 0x05, 0x01, 0x01, 0x04, + 0x03, 0x01, 0x02, 0x04, 0x06, 0x0B, 0x06, 0x19, 0x30, 0x1A, 0x0D, 0x18, 0x0D, 0x05, 0x0C, 0x04, + 0x06, 0x03, 0x01, 0x05, 0x01, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, 0x04, 0x02, 0x04, 0x04, 0x0C, + 0x01, 0x01, 0x03, 0x02, 0x02, 0x0F, 0x09, 0x06, 0x01, 0x01, 0x08, 0x02, 0x04, 0x0F, 0x03, 0x08, + 0x03, 0x06, 0x05, 0x05, 0x04, 0x01, 0x01, 0x01, 0x0C, 0x01, 0x03, 0x01, 0x06, 0x01, 0x01, 0x01, + 0x06, 0x03, 0x02, 0x12, 0x02, 0x02, 0x05, 0x0F, 0x1F, 0x0F, 0x11, 0x22, 0x11, 0x04, 0x07, 0x04, + 0x02, 0x04, 0x04, 0x02, 0x04, 0x07, 0x03, 0x11, 0x22, 0x11, 0x0F, 0x1E, 0x0F, 0x01, 0x05, 0x01, + 0x07, 0x05, 0x03, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x06, 0x31, 0x28, 0x47, 0x09, 0x06, 0x0B, + 0x13, 0x06, 0x02, 0x01, 0x0B, 0x04, 0x0C, 0x12, 0x07, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x53, + 0x00, 0x5D, 0x07, 0xD3, 0x03, 0x22, 0x00, 0xBF, 0x00, 0xD8, 0x00, 0x00, 0x01, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x22, 0x26, 0x27, 0x22, 0x26, 0x27, 0x26, + 0x06, 0x07, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x22, 0x06, + 0x23, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x14, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x26, 0x23, 0x22, 0x06, 0x17, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x26, 0x17, 0x16, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x06, 0x16, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x34, 0x36, 0x35, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, + 0x16, 0x32, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x36, 0x37, 0x36, 0x26, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x03, 0x17, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x05, 0x32, 0x36, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, + 0x3E, 0x01, 0x37, 0x07, 0x33, 0x2C, 0x69, 0x3A, 0x2D, 0x5E, 0x33, 0x20, 0x41, 0x21, 0x17, 0x2E, + 0x17, 0x07, 0x0F, 0x07, 0x01, 0x06, 0x03, 0x07, 0x2F, 0x0C, 0x05, 0x0E, 0x04, 0x0B, 0x1B, 0x0E, + 0x26, 0x57, 0x28, 0x07, 0x0F, 0x07, 0x04, 0x07, 0x03, 0x04, 0x0A, 0x03, 0x07, 0x08, 0x07, 0x0B, + 0x17, 0x0B, 0x45, 0x83, 0x3E, 0x0F, 0x1D, 0x0E, 0x03, 0x01, 0x01, 0x06, 0x03, 0x05, 0x0C, 0x03, + 0x03, 0x07, 0x06, 0x0C, 0x0E, 0x03, 0x01, 0x06, 0x06, 0x08, 0x13, 0x02, 0x03, 0x03, 0x07, 0x05, + 0x0A, 0x05, 0x06, 0x07, 0x02, 0x03, 0x03, 0x0A, 0x06, 0x12, 0x01, 0x02, 0x24, 0x06, 0x05, 0x07, + 0x03, 0x02, 0x05, 0x06, 0x06, 0x0F, 0x01, 0x03, 0x04, 0x03, 0x05, 0x0A, 0x05, 0x04, 0x0F, 0x09, + 0x04, 0x0F, 0x01, 0x36, 0x09, 0x06, 0x08, 0x05, 0x09, 0x10, 0x09, 0x1E, 0x44, 0x23, 0x34, 0x4B, + 0x05, 0x01, 0x06, 0x07, 0x02, 0x07, 0x0E, 0x0A, 0x16, 0x39, 0x1D, 0x08, 0x05, 0x04, 0x09, 0x14, + 0x0C, 0x1D, 0x48, 0x23, 0x0C, 0x06, 0x06, 0x08, 0x1B, 0x10, 0x1E, 0x4A, 0x1E, 0x0F, 0x1B, 0x09, + 0x03, 0x0B, 0x0A, 0x07, 0x2F, 0x05, 0x06, 0x08, 0x0B, 0x06, 0x0D, 0x06, 0x1C, 0x37, 0x1C, 0x32, + 0x66, 0x33, 0x42, 0x85, 0x3A, 0x24, 0x44, 0x3F, 0x36, 0x16, 0x05, 0x20, 0x12, 0x15, 0x36, 0x1E, + 0xF9, 0xDC, 0x10, 0x1E, 0x0F, 0x1C, 0x2C, 0x08, 0x08, 0x0E, 0x16, 0x10, 0x24, 0x17, 0x15, 0x20, + 0x14, 0x15, 0x17, 0x08, 0x08, 0x04, 0x07, 0x07, 0x35, 0x18, 0x01, 0xFD, 0x33, 0x52, 0x20, 0x18, + 0x29, 0x0A, 0x07, 0x0E, 0x03, 0x01, 0x04, 0x02, 0x01, 0x01, 0x11, 0x03, 0x0A, 0x0B, 0x02, 0x10, + 0x03, 0x0A, 0x0E, 0x05, 0x0F, 0x09, 0x04, 0x01, 0x02, 0x01, 0x04, 0x01, 0x06, 0x01, 0x03, 0x03, + 0x01, 0x03, 0x06, 0x02, 0x11, 0x2E, 0x22, 0x08, 0x10, 0x08, 0x01, 0x03, 0x03, 0x02, 0x03, 0x01, + 0x03, 0x06, 0x05, 0x05, 0x07, 0x02, 0x03, 0x03, 0x0E, 0x0A, 0x03, 0x06, 0x0A, 0x07, 0x09, 0x01, + 0x02, 0x08, 0x07, 0x05, 0x08, 0x0C, 0x01, 0x01, 0x05, 0x0C, 0x11, 0x01, 0x08, 0x08, 0x12, 0x09, + 0x09, 0x06, 0x06, 0x03, 0x06, 0x07, 0x08, 0x10, 0x08, 0x12, 0x23, 0x12, 0x10, 0x1F, 0x0E, 0x06, + 0x12, 0x07, 0x0E, 0x07, 0x02, 0x02, 0x07, 0x03, 0x05, 0x0A, 0x05, 0x12, 0x12, 0x09, 0x0D, 0x57, + 0x36, 0x07, 0x0D, 0x07, 0x05, 0x12, 0x03, 0x0C, 0x17, 0x09, 0x16, 0x03, 0x02, 0x01, 0x0B, 0x06, + 0x0D, 0x18, 0x0A, 0x18, 0x0D, 0x0B, 0x04, 0x0B, 0x11, 0x1D, 0x0A, 0x15, 0x01, 0x15, 0x0C, 0x20, + 0x11, 0x07, 0x23, 0x02, 0x01, 0x13, 0x05, 0x08, 0x0A, 0x04, 0x02, 0x05, 0x02, 0x08, 0x0F, 0x05, + 0x09, 0x05, 0x05, 0x06, 0x2B, 0x1E, 0x12, 0x2E, 0x37, 0x3E, 0x22, 0x28, 0x4E, 0x23, 0x2B, 0x4D, + 0x24, 0x88, 0x01, 0x05, 0x0A, 0x33, 0x1D, 0x1E, 0x3E, 0x17, 0x12, 0x10, 0x02, 0x02, 0x05, 0x0C, + 0x0D, 0x21, 0x16, 0x17, 0x2D, 0x17, 0x17, 0x2E, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x60, + 0x00, 0x27, 0x03, 0x1C, 0x03, 0x59, 0x00, 0x12, 0x00, 0x25, 0x00, 0x38, 0x00, 0x7D, 0x00, 0x00, + 0x13, 0x17, 0x07, 0x27, 0x15, 0x23, 0x35, 0x07, 0x27, 0x37, 0x27, 0x37, 0x17, 0x35, 0x33, 0x15, + 0x37, 0x17, 0x07, 0x13, 0x37, 0x27, 0x07, 0x35, 0x23, 0x15, 0x27, 0x07, 0x17, 0x07, 0x17, 0x37, + 0x15, 0x33, 0x35, 0x17, 0x37, 0x27, 0x05, 0x37, 0x27, 0x07, 0x35, 0x23, 0x15, 0x27, 0x07, 0x17, + 0x07, 0x17, 0x37, 0x15, 0x33, 0x35, 0x17, 0x37, 0x27, 0x05, 0x07, 0x23, 0x22, 0x06, 0x1D, 0x01, + 0x17, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x07, 0x15, + 0x14, 0x16, 0x3B, 0x01, 0x32, 0x36, 0x3D, 0x01, 0x27, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, + 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x37, 0x35, 0x17, 0x11, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x1F, 0x01, 0x37, 0x11, 0x27, 0x23, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x15, 0xD8, 0x2F, + 0x14, 0x2D, 0x25, 0x2F, 0x12, 0x2E, 0x2E, 0x13, 0x2E, 0x25, 0x2D, 0x12, 0x2D, 0x4F, 0x37, 0x16, + 0x35, 0x2D, 0x38, 0x16, 0x38, 0x38, 0x16, 0x38, 0x2D, 0x35, 0x16, 0x37, 0x01, 0xC7, 0x2D, 0x12, + 0x2D, 0x25, 0x2F, 0x13, 0x2D, 0x2D, 0x12, 0x30, 0x25, 0x2D, 0x13, 0x2E, 0xFE, 0xA9, 0x22, 0x10, + 0x08, 0x08, 0x1A, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x0D, 0x1A, 0x08, 0x08, 0xC9, 0x08, 0x08, 0x1B, + 0x0B, 0x0B, 0x0B, 0x0B, 0x0B, 0x0B, 0x1B, 0x2D, 0x10, 0x09, 0x0D, 0x05, 0x05, 0x02, 0x03, 0x11, + 0x35, 0x69, 0x7C, 0x17, 0x05, 0x05, 0x0D, 0x0E, 0x01, 0xCE, 0x1A, 0x21, 0x1A, 0x34, 0x35, 0x1B, + 0x21, 0x1A, 0x1B, 0x20, 0x1B, 0x36, 0x35, 0x1A, 0x20, 0x1B, 0x01, 0x26, 0x20, 0x26, 0x1F, 0x3E, + 0x40, 0x21, 0x26, 0x20, 0x20, 0x26, 0x20, 0x40, 0x3E, 0x1E, 0x26, 0x20, 0x2A, 0x1B, 0x20, 0x1A, + 0x35, 0x36, 0x1B, 0x20, 0x1B, 0x1A, 0x21, 0x1B, 0x35, 0x34, 0x1A, 0x21, 0x1A, 0x34, 0x1D, 0x08, + 0x08, 0x48, 0x19, 0x35, 0x37, 0x38, 0x36, 0x39, 0x36, 0x34, 0x2E, 0x26, 0x08, 0x08, 0x08, 0x08, + 0x26, 0x2E, 0x34, 0x36, 0x39, 0x36, 0x38, 0x37, 0x35, 0x18, 0x36, 0x1A, 0xFE, 0xC2, 0x08, 0x05, + 0x09, 0x04, 0x04, 0x0A, 0x05, 0x03, 0x1A, 0x01, 0x63, 0xA9, 0x04, 0x02, 0x0A, 0x07, 0x0B, 0x0D, + 0x02, 0x2D, 0x00, 0x00, 0x00, 0x04, 0x00, 0x4F, 0x00, 0x28, 0x09, 0x85, 0x03, 0x59, 0x00, 0x91, + 0x01, 0x0C, 0x01, 0x2C, 0x01, 0x4A, 0x00, 0x00, 0x01, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x17, 0x23, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x23, 0x06, 0x26, 0x23, 0x22, 0x26, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x16, 0x17, 0x07, 0x15, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x0F, 0x01, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x14, 0x06, 0x07, 0x06, + 0x26, 0x23, 0x22, 0x06, 0x2F, 0x01, 0x2E, 0x01, 0x35, 0x2E, 0x01, 0x27, 0x34, 0x26, 0x27, 0x36, + 0x26, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x2E, 0x01, 0x35, 0x3E, 0x01, 0x37, + 0x36, 0x16, 0x17, 0x3E, 0x01, 0x37, 0x35, 0x36, 0x16, 0x17, 0x32, 0x16, 0x15, 0x17, 0x32, 0x36, + 0x33, 0x16, 0x32, 0x17, 0x32, 0x36, 0x1F, 0x01, 0x21, 0x35, 0x17, 0x2E, 0x01, 0x35, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x17, 0x3E, 0x01, 0x33, 0x35, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x32, 0x36, + 0x1F, 0x01, 0x21, 0x35, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, + 0x17, 0x23, 0x07, 0x06, 0x26, 0x23, 0x22, 0x26, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x14, + 0x06, 0x15, 0x14, 0x16, 0x0F, 0x01, 0x15, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x14, 0x16, 0x07, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x35, 0x3E, 0x01, 0x35, 0x2E, 0x01, 0x27, 0x35, 0x27, 0x34, 0x26, 0x37, 0x3E, 0x01, + 0x37, 0x33, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x3E, + 0x01, 0x33, 0x3E, 0x01, 0x27, 0x05, 0x2A, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x3E, 0x01, 0x37, 0x36, 0x26, + 0x27, 0x2E, 0x01, 0x27, 0x23, 0x05, 0x22, 0x26, 0x07, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, + 0x33, 0x17, 0x1E, 0x01, 0x17, 0x32, 0x16, 0x17, 0x3E, 0x01, 0x3F, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2A, 0x01, 0x23, 0x04, 0x87, 0x02, 0x09, 0x05, 0x05, 0x0E, 0x09, 0x07, 0x0D, 0x06, 0x04, 0x0B, + 0x02, 0x01, 0x07, 0x03, 0x03, 0x08, 0x01, 0x02, 0x06, 0x01, 0x51, 0x02, 0x03, 0x02, 0x0A, 0x1D, + 0x0B, 0x0F, 0x1D, 0x0F, 0x1A, 0x35, 0x1A, 0x0E, 0x1D, 0x0D, 0x18, 0x20, 0x10, 0x16, 0x02, 0x02, + 0x0A, 0x1C, 0x3E, 0x1E, 0x13, 0x21, 0x13, 0x16, 0x34, 0x15, 0x17, 0x0A, 0x08, 0x05, 0x08, 0x11, + 0x08, 0x05, 0x06, 0x05, 0x03, 0x07, 0x08, 0x17, 0x40, 0x1A, 0x1F, 0x3D, 0x1C, 0x0D, 0x01, 0x01, + 0x14, 0x20, 0x12, 0x02, 0x02, 0x01, 0x05, 0x02, 0x02, 0x09, 0x01, 0x10, 0x1D, 0x0E, 0x08, 0x10, + 0x09, 0x0D, 0x0F, 0x10, 0x0A, 0x3A, 0x14, 0x0A, 0x03, 0x03, 0x06, 0x15, 0x08, 0x15, 0x18, 0x08, + 0x02, 0x05, 0x02, 0x05, 0x03, 0x0F, 0x19, 0x0E, 0x0F, 0x1C, 0x10, 0x0C, 0x18, 0x0B, 0x04, 0x03, + 0x04, 0x1F, 0x3D, 0x1F, 0x12, 0x25, 0x13, 0x0D, 0x22, 0x0D, 0x08, 0x02, 0x11, 0xD6, 0x01, 0x03, + 0x02, 0x06, 0x04, 0x0F, 0x17, 0x0E, 0x0F, 0x1E, 0x10, 0x0C, 0x18, 0x0C, 0x07, 0x03, 0x01, 0x3F, + 0x80, 0x40, 0x0A, 0x02, 0x0D, 0x03, 0x05, 0x08, 0x02, 0x16, 0x2E, 0x06, 0x03, 0x0B, 0x0C, 0x02, + 0x04, 0x01, 0x55, 0x04, 0x16, 0x37, 0x16, 0x1C, 0x36, 0x1C, 0x21, 0x38, 0x1A, 0x0C, 0x18, 0x02, + 0x02, 0x08, 0x05, 0x0A, 0x1F, 0x45, 0x22, 0x27, 0x65, 0x22, 0x11, 0x0C, 0x07, 0x08, 0x0D, 0x0B, + 0x11, 0x16, 0x15, 0x31, 0x17, 0x1E, 0x3C, 0x1D, 0x02, 0x05, 0x0B, 0x05, 0x09, 0x08, 0x02, 0x02, + 0x13, 0x23, 0x12, 0x02, 0x05, 0x01, 0x01, 0x08, 0x05, 0x02, 0x09, 0x20, 0x0D, 0x0F, 0x26, 0x06, + 0x0D, 0x09, 0x3B, 0x14, 0x09, 0x01, 0x07, 0x06, 0x15, 0x07, 0x19, 0x1F, 0x07, 0xFD, 0x33, 0x11, + 0x23, 0x11, 0x13, 0x1C, 0x11, 0x07, 0x09, 0x02, 0x06, 0x05, 0x02, 0x06, 0x0C, 0x06, 0x0F, 0x1D, + 0x11, 0x0E, 0x1E, 0x0E, 0x2F, 0x33, 0x04, 0x02, 0x01, 0x08, 0x05, 0x11, 0x0D, 0x35, 0x04, 0x74, + 0x0D, 0x21, 0x0B, 0x04, 0x0D, 0x19, 0x04, 0x03, 0x03, 0x07, 0x03, 0x14, 0x0F, 0x1D, 0x11, 0x0F, + 0x1E, 0x0F, 0x2F, 0x31, 0x03, 0x04, 0x09, 0x05, 0x12, 0x0D, 0x19, 0x32, 0x19, 0x03, 0x2E, 0x06, + 0x0A, 0x04, 0x06, 0x04, 0x01, 0x02, 0x03, 0x02, 0x06, 0x04, 0x08, 0x0D, 0x19, 0x0D, 0x08, 0x1F, + 0x0A, 0x1A, 0x36, 0x1A, 0x03, 0x06, 0x02, 0x05, 0x01, 0x01, 0x01, 0x02, 0x01, 0x03, 0x05, 0x19, + 0x0F, 0x14, 0x35, 0x19, 0x0A, 0x02, 0x0B, 0x15, 0x02, 0x01, 0x02, 0x02, 0x03, 0x0A, 0x05, 0x0D, + 0x0D, 0x19, 0x10, 0x1C, 0x39, 0x1C, 0x0F, 0x1A, 0x10, 0x14, 0x27, 0x14, 0x11, 0x19, 0x08, 0x0E, + 0x05, 0x03, 0x0C, 0x0F, 0x0B, 0x15, 0x0A, 0x02, 0x05, 0x0A, 0x02, 0x06, 0x02, 0x10, 0x1F, 0x0F, + 0x12, 0x24, 0x12, 0x20, 0x41, 0x21, 0x13, 0x27, 0x13, 0x19, 0x2C, 0x1C, 0x14, 0x07, 0x04, 0x0A, + 0x13, 0x0C, 0x06, 0x06, 0x01, 0x14, 0x29, 0x1C, 0x0D, 0x1B, 0x0E, 0x06, 0x08, 0x01, 0x01, 0x05, + 0x03, 0x06, 0x0C, 0x01, 0x1B, 0x01, 0x03, 0x02, 0x03, 0x02, 0x18, 0x04, 0x01, 0x01, 0x01, 0x03, + 0x0D, 0x03, 0x2E, 0x08, 0x0F, 0x08, 0x07, 0x07, 0x01, 0x02, 0x05, 0x02, 0x03, 0x10, 0x19, 0x01, + 0x03, 0x02, 0x06, 0x0F, 0x09, 0x02, 0x02, 0x0A, 0x01, 0x05, 0x03, 0x07, 0x05, 0x13, 0x1B, 0x16, + 0x0E, 0x31, 0x0B, 0x1E, 0x3C, 0x1E, 0x09, 0x08, 0x04, 0x01, 0x01, 0x01, 0x0A, 0x17, 0x0A, 0x18, + 0x11, 0x06, 0x0D, 0x07, 0x06, 0x19, 0x04, 0x0B, 0x04, 0x0C, 0x13, 0x02, 0x02, 0x1A, 0x19, 0x14, + 0x35, 0x19, 0x1A, 0x38, 0x19, 0x23, 0x52, 0x20, 0x0B, 0x03, 0x02, 0x01, 0x03, 0x02, 0x05, 0x14, + 0x10, 0x04, 0x09, 0x04, 0x03, 0x04, 0x09, 0x06, 0x05, 0x0E, 0x19, 0x0E, 0x14, 0x25, 0x13, 0x21, + 0x41, 0x1E, 0x22, 0x4A, 0x24, 0x25, 0x14, 0x09, 0x02, 0x07, 0x1B, 0x08, 0x05, 0x09, 0x17, 0x33, + 0x24, 0xBA, 0x01, 0x01, 0x05, 0x08, 0x05, 0x0B, 0x06, 0x0C, 0x19, 0x0C, 0x06, 0x0B, 0x06, 0x04, + 0x0D, 0x01, 0x01, 0x01, 0x07, 0x17, 0x10, 0x0E, 0x18, 0x0D, 0x09, 0x10, 0x07, 0x06, 0x03, 0x05, + 0x07, 0x0D, 0x0E, 0x0D, 0x1A, 0x0C, 0x14, 0x06, 0x0D, 0x01, 0x01, 0x01, 0x06, 0x18, 0x12, 0x13, + 0x20, 0x09, 0x0F, 0x06, 0x00, 0x02, 0x00, 0x5A, 0x00, 0x40, 0x0A, 0xA5, 0x03, 0x40, 0x00, 0x7D, + 0x00, 0x95, 0x00, 0x00, 0x01, 0x2F, 0x01, 0x35, 0x23, 0x15, 0x07, 0x0E, 0x01, 0x0F, 0x02, 0x23, + 0x2F, 0x02, 0x23, 0x2F, 0x02, 0x25, 0x07, 0x0E, 0x01, 0x0F, 0x01, 0x21, 0x27, 0x0F, 0x03, 0x2F, + 0x01, 0x0F, 0x02, 0x27, 0x07, 0x0E, 0x01, 0x07, 0x13, 0x25, 0x3F, 0x04, 0x36, 0x16, 0x1F, 0x01, + 0x0F, 0x03, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x3F, 0x02, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x3F, 0x02, + 0x1E, 0x01, 0x17, 0x37, 0x3E, 0x01, 0x37, 0x17, 0x3F, 0x01, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x3F, 0x02, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x35, 0x33, 0x17, + 0x1E, 0x01, 0x33, 0x17, 0x3F, 0x02, 0x21, 0x37, 0x33, 0x17, 0x37, 0x21, 0x17, 0x37, 0x33, 0x17, + 0x3F, 0x01, 0x27, 0x05, 0x0E, 0x01, 0x2B, 0x01, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, + 0x37, 0x3E, 0x01, 0x33, 0x37, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x15, 0x0A, 0x9F, 0x08, 0x2B, 0x2E, + 0x03, 0x02, 0x05, 0x03, 0x22, 0x0D, 0xB0, 0x15, 0x1B, 0x1F, 0xC8, 0x14, 0x17, 0x1B, 0xFE, 0x20, + 0x1B, 0x04, 0x06, 0x02, 0x07, 0xFD, 0x91, 0x09, 0x66, 0x3F, 0x30, 0x1C, 0x2F, 0x1F, 0xA3, 0x6E, + 0x31, 0x39, 0x32, 0x0C, 0x14, 0x09, 0x16, 0x01, 0x0A, 0xC9, 0x4C, 0x43, 0x33, 0x16, 0x08, 0x0E, + 0x07, 0x13, 0x14, 0x22, 0x20, 0x11, 0x03, 0x0D, 0x0B, 0x0B, 0x18, 0x0C, 0x2D, 0x14, 0x04, 0x0F, + 0x0A, 0x0A, 0x16, 0x0C, 0x29, 0x16, 0x0E, 0x1F, 0x0F, 0x35, 0x0E, 0x1B, 0x0D, 0x21, 0x09, 0x0D, + 0x12, 0x2F, 0x1C, 0x1C, 0x36, 0x1B, 0x1E, 0x40, 0x21, 0x33, 0x25, 0x14, 0x2E, 0x47, 0x18, 0x18, + 0x24, 0x0B, 0x0D, 0x0D, 0x9A, 0x10, 0x01, 0x04, 0x04, 0x15, 0x15, 0x1D, 0x29, 0x01, 0x52, 0x04, + 0xD7, 0x12, 0x10, 0x01, 0x2D, 0x24, 0x13, 0x0E, 0x0C, 0x13, 0x06, 0x06, 0xF9, 0xEC, 0x05, 0x0E, + 0x08, 0x3D, 0x09, 0x0F, 0x07, 0x06, 0x05, 0x05, 0x06, 0x07, 0x0F, 0x09, 0x3D, 0x08, 0x0E, 0x05, + 0x05, 0x05, 0x02, 0xB0, 0x12, 0x05, 0x79, 0x08, 0x11, 0x02, 0x0B, 0x08, 0x4B, 0x05, 0x0E, 0x1C, + 0x25, 0x07, 0x06, 0x09, 0x05, 0x02, 0x02, 0x02, 0x02, 0x06, 0x09, 0x57, 0x13, 0x0D, 0x06, 0x0A, + 0x0A, 0x0A, 0x09, 0x01, 0x01, 0x0C, 0x04, 0x0A, 0x07, 0xFE, 0xC3, 0x58, 0x4A, 0x1A, 0x19, 0x11, + 0x08, 0x01, 0x05, 0x06, 0x0E, 0x1B, 0x3D, 0x3E, 0x24, 0x14, 0x1B, 0x07, 0x06, 0x06, 0x01, 0x0A, + 0x09, 0x11, 0x21, 0x10, 0x12, 0x1F, 0x0E, 0x2C, 0x11, 0x0C, 0x0E, 0x01, 0x03, 0x03, 0x0A, 0x07, + 0x05, 0x07, 0x02, 0x38, 0x61, 0x28, 0x2A, 0x45, 0x1B, 0x20, 0x37, 0x17, 0x52, 0x3A, 0x1A, 0x20, + 0x41, 0x21, 0x20, 0x3A, 0x1B, 0x1E, 0x3B, 0x1C, 0x0A, 0x02, 0x03, 0x04, 0x05, 0x0F, 0x16, 0x13, + 0x0E, 0x13, 0x0E, 0x21, 0x03, 0x07, 0x0B, 0x0D, 0xAE, 0x06, 0x06, 0x06, 0x06, 0x05, 0x0D, 0x07, + 0x09, 0x0F, 0x07, 0x05, 0x05, 0x01, 0x06, 0x05, 0x06, 0x10, 0x09, 0x00, 0x00, 0x02, 0x00, 0x53, + 0x00, 0xD7, 0x08, 0xD3, 0x02, 0xA9, 0x01, 0x1B, 0x01, 0x31, 0x00, 0x00, 0x01, 0x2E, 0x03, 0x27, + 0x26, 0x22, 0x23, 0x2A, 0x01, 0x27, 0x2A, 0x01, 0x27, 0x22, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x3C, 0x01, + 0x35, 0x34, 0x06, 0x23, 0x2A, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x23, + 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x31, 0x0E, 0x01, 0x23, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, + 0x2A, 0x01, 0x27, 0x22, 0x06, 0x15, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x23, 0x2E, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, 0x23, 0x06, 0x26, + 0x27, 0x26, 0x06, 0x23, 0x2A, 0x01, 0x27, 0x22, 0x06, 0x07, 0x06, 0x16, 0x15, 0x1C, 0x01, 0x15, + 0x1C, 0x01, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, + 0x01, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x32, + 0x17, 0x16, 0x14, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x36, 0x17, 0x1E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x36, + 0x16, 0x17, 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, 0x36, 0x32, 0x17, 0x1E, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x14, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, + 0x14, 0x16, 0x33, 0x3A, 0x01, 0x31, 0x3C, 0x01, 0x37, 0x3C, 0x01, 0x35, 0x34, 0x36, 0x33, 0x3A, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x36, 0x32, 0x33, 0x3A, 0x02, 0x36, 0x33, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x25, 0x1E, 0x01, 0x07, 0x14, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x08, 0xD3, 0x37, 0x6D, 0x6D, + 0x6D, 0x37, 0x06, 0x0E, 0x07, 0x16, 0x2C, 0x16, 0x47, 0x90, 0x48, 0x46, 0x8E, 0x46, 0x15, 0x29, + 0x15, 0x04, 0x08, 0x04, 0x06, 0x0C, 0x08, 0x10, 0x20, 0x10, 0x0C, 0x06, 0x0E, 0x02, 0x02, 0x0F, + 0x02, 0x08, 0x11, 0x22, 0x11, 0x06, 0x0D, 0x06, 0x05, 0x05, 0x06, 0x05, 0x09, 0x04, 0x01, 0x01, + 0x02, 0x08, 0x10, 0x08, 0x08, 0x11, 0x08, 0x07, 0x08, 0x08, 0x04, 0x08, 0x03, 0x08, 0x0F, 0x08, + 0x08, 0x11, 0x08, 0x02, 0x04, 0x01, 0x01, 0x03, 0x02, 0x07, 0x03, 0x08, 0x08, 0x07, 0x09, 0x12, + 0x09, 0x06, 0x0D, 0x06, 0x02, 0x02, 0x01, 0x0A, 0x02, 0x03, 0x07, 0x03, 0x01, 0x03, 0x01, 0x07, + 0x0D, 0x06, 0x09, 0x11, 0x09, 0x07, 0x04, 0x06, 0x06, 0x0A, 0x06, 0x05, 0x0D, 0x07, 0x0E, 0x17, + 0x0E, 0x07, 0x14, 0x08, 0x20, 0x41, 0x20, 0x0A, 0x0F, 0x02, 0x03, 0x01, 0x08, 0x02, 0x01, 0x07, + 0x02, 0x03, 0x06, 0x03, 0x11, 0x20, 0x11, 0x12, 0x25, 0x12, 0x08, 0x11, 0x07, 0x06, 0x0E, 0x06, + 0x07, 0x0F, 0x07, 0x07, 0x06, 0x06, 0x04, 0x08, 0x03, 0x03, 0x03, 0x10, 0x21, 0x10, 0x08, 0x02, + 0x06, 0x09, 0x09, 0x08, 0x10, 0x20, 0x10, 0x07, 0x08, 0x08, 0x02, 0x07, 0x01, 0x02, 0x05, 0x02, + 0x10, 0x1F, 0x10, 0x01, 0x05, 0x01, 0x06, 0x0D, 0x04, 0x04, 0x0B, 0x05, 0x09, 0x12, 0x0A, 0x03, + 0x0F, 0x02, 0x06, 0x0F, 0x07, 0x05, 0x04, 0x07, 0x11, 0x24, 0x12, 0x04, 0x0A, 0x05, 0x01, 0x02, + 0x06, 0x02, 0x15, 0x01, 0x01, 0x04, 0x05, 0x0A, 0x05, 0x15, 0x29, 0x15, 0x45, 0x89, 0x44, 0x40, + 0x7F, 0x80, 0x7F, 0x40, 0x22, 0x43, 0x22, 0x32, 0x60, 0x2E, 0x1F, 0x34, 0x1A, 0xFE, 0xBF, 0x07, + 0x07, 0x02, 0x04, 0x04, 0x0C, 0x18, 0x0C, 0x06, 0x09, 0x08, 0x05, 0x07, 0x0E, 0x07, 0x04, 0x0B, + 0x03, 0x01, 0xC4, 0x09, 0x10, 0x11, 0x11, 0x08, 0x01, 0x01, 0x01, 0x01, 0x0A, 0x0C, 0x22, 0x44, + 0x22, 0x04, 0x09, 0x05, 0x03, 0x01, 0x02, 0x04, 0x09, 0x04, 0x23, 0x45, 0x23, 0x06, 0x0E, 0x0A, + 0x01, 0x01, 0x05, 0x04, 0x02, 0x01, 0x0B, 0x01, 0x01, 0x09, 0x04, 0x02, 0x04, 0x01, 0x0B, 0x01, + 0x04, 0x01, 0x02, 0x03, 0x04, 0x01, 0x05, 0x03, 0x03, 0x02, 0x04, 0x06, 0x05, 0x01, 0x01, 0x07, + 0x05, 0x03, 0x02, 0x01, 0x10, 0x09, 0x0D, 0x1C, 0x0D, 0x0C, 0x18, 0x0C, 0x07, 0x0D, 0x06, 0x05, + 0x0D, 0x05, 0x02, 0x0F, 0x01, 0x03, 0x03, 0x07, 0x01, 0x01, 0x01, 0x02, 0x02, 0x01, 0x04, 0x02, + 0x02, 0x03, 0x04, 0x06, 0x0D, 0x0B, 0x03, 0x01, 0x07, 0x06, 0x01, 0x03, 0x03, 0x04, 0x04, 0x01, + 0x02, 0x03, 0x07, 0x03, 0x03, 0x01, 0x0B, 0x01, 0x12, 0x24, 0x12, 0x07, 0x0E, 0x07, 0x05, 0x01, + 0x06, 0x0C, 0x05, 0x11, 0x22, 0x11, 0x05, 0x01, 0x01, 0x01, 0x05, 0x04, 0x05, 0x18, 0x16, 0x0F, + 0x28, 0x17, 0x08, 0x04, 0x0C, 0x08, 0x02, 0x11, 0x11, 0x05, 0x03, 0x13, 0x02, 0x03, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x54, 0x00, 0x2A, 0x04, 0xCE, 0x03, 0x59, 0x00, 0x98, 0x00, 0xB7, 0x00, 0x00, + 0x01, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x23, 0x22, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x03, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x16, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x16, 0x17, 0x16, 0x14, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x32, + 0x36, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x34, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x32, 0x37, 0x36, 0x16, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x34, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, + 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x36, 0x16, 0x17, 0x3E, 0x01, 0x37, 0x34, 0x36, + 0x37, 0x34, 0x36, 0x35, 0x36, 0x26, 0x27, 0x01, 0x1C, 0x01, 0x15, 0x14, 0x26, 0x23, 0x2A, 0x01, + 0x23, 0x22, 0x06, 0x27, 0x26, 0x36, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x32, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x16, 0x17, 0x16, 0x06, 0x15, 0x04, 0xC9, 0x03, 0x0B, 0x0C, 0x05, 0x0B, 0x05, 0x03, 0x0C, + 0x07, 0x15, 0x29, 0x15, 0x33, 0x66, 0x33, 0x03, 0x09, 0x02, 0x03, 0x05, 0x04, 0x0B, 0x18, 0x0B, + 0x35, 0x6A, 0x69, 0x69, 0x35, 0x13, 0x24, 0x13, 0x08, 0x0F, 0x07, 0x18, 0x30, 0x1C, 0x0B, 0x07, + 0x06, 0x0A, 0x14, 0x06, 0x0C, 0x09, 0x06, 0x04, 0x09, 0x01, 0x03, 0x48, 0x1D, 0x12, 0x09, 0x02, + 0x04, 0x08, 0x04, 0x06, 0x0B, 0x05, 0x0B, 0x12, 0x08, 0x04, 0x06, 0x0D, 0x0C, 0x0F, 0x2E, 0x13, + 0x27, 0x4D, 0x27, 0x11, 0x2E, 0x08, 0x02, 0x07, 0x02, 0x03, 0x05, 0x01, 0x03, 0x04, 0x02, 0x04, + 0x09, 0x04, 0x03, 0x06, 0x02, 0x01, 0x0A, 0x01, 0x02, 0x10, 0x0D, 0x13, 0x11, 0x0B, 0x16, 0x0C, + 0x25, 0x4B, 0x26, 0x14, 0x24, 0x07, 0x04, 0x02, 0x01, 0x01, 0x01, 0x01, 0x04, 0x09, 0x0E, 0x23, + 0x11, 0x0D, 0x1E, 0x0D, 0x32, 0x65, 0x32, 0x0E, 0x09, 0x04, 0x02, 0x3A, 0x07, 0x03, 0x01, 0x01, + 0x09, 0x01, 0x02, 0x01, 0x01, 0x05, 0xFE, 0x1F, 0x2C, 0x0C, 0x1C, 0x37, 0x1C, 0x0C, 0x2C, 0x0B, + 0x08, 0x02, 0x24, 0x0E, 0x2C, 0x57, 0x2C, 0x04, 0x07, 0x02, 0x05, 0x02, 0x03, 0x30, 0x09, 0x1E, + 0x02, 0x01, 0x01, 0x23, 0x01, 0x02, 0x03, 0x03, 0x01, 0x05, 0x0F, 0x06, 0x02, 0x01, 0x13, 0x05, + 0x07, 0x0F, 0x0C, 0x15, 0x34, 0x17, 0x12, 0x21, 0x11, 0x2A, 0x22, 0x0D, 0x09, 0x16, 0x10, 0x09, + 0x12, 0x08, 0x0C, 0x16, 0x0C, 0x11, 0x25, 0x12, 0x24, 0x49, 0x25, 0x17, 0x31, 0x18, 0x10, 0x19, + 0x0C, 0x0F, 0x05, 0x01, 0x01, 0x05, 0x01, 0x0F, 0x18, 0x04, 0x07, 0x03, 0x02, 0x0C, 0x02, 0x09, + 0x11, 0x09, 0x12, 0x23, 0x12, 0x09, 0x14, 0x0A, 0x08, 0x0F, 0x08, 0x14, 0x38, 0x0D, 0x09, 0x05, + 0x02, 0x01, 0x01, 0x01, 0x09, 0x06, 0x03, 0x16, 0x15, 0x0B, 0x18, 0x0C, 0x08, 0x11, 0x08, 0x0A, + 0x13, 0x05, 0x09, 0x15, 0x03, 0x02, 0x02, 0x1F, 0x0C, 0x06, 0x03, 0x03, 0x06, 0x0C, 0x06, 0x06, + 0x05, 0x06, 0x0B, 0x18, 0x0B, 0x1A, 0x31, 0x19, 0xFE, 0xCC, 0x0A, 0x15, 0x0A, 0x13, 0x02, 0x05, + 0x07, 0x05, 0x1E, 0x07, 0x0C, 0x16, 0x0B, 0x14, 0x03, 0x04, 0x08, 0x1B, 0x09, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x5B, 0x00, 0x40, 0x0A, 0x24, 0x03, 0x39, 0x01, 0x27, 0x01, 0x4A, 0x01, 0x75, + 0x00, 0x00, 0x01, 0x1E, 0x01, 0x27, 0x26, 0x16, 0x17, 0x26, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x26, 0x37, 0x36, 0x34, 0x27, 0x26, 0x36, 0x37, 0x36, 0x26, 0x27, 0x26, 0x06, 0x07, 0x06, 0x16, + 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x06, 0x07, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x07, 0x0E, + 0x01, 0x23, 0x22, 0x06, 0x23, 0x22, 0x26, 0x27, 0x2A, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x36, 0x26, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x23, 0x2E, 0x01, 0x23, 0x22, 0x26, 0x07, 0x06, 0x14, 0x17, + 0x14, 0x06, 0x17, 0x1E, 0x01, 0x15, 0x16, 0x06, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x07, 0x06, + 0x16, 0x15, 0x14, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x03, 0x37, 0x36, 0x16, 0x17, 0x16, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x36, 0x26, 0x27, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x16, + 0x36, 0x33, 0x3A, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x06, 0x17, 0x1E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x37, 0x36, 0x26, 0x37, 0x36, 0x16, 0x17, 0x16, 0x06, 0x37, + 0x14, 0x32, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x32, + 0x16, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x06, 0x33, 0x36, 0x16, 0x37, 0x36, 0x34, 0x27, 0x26, 0x34, + 0x35, 0x34, 0x36, 0x27, 0x2E, 0x01, 0x27, 0x34, 0x36, 0x27, 0x36, 0x16, 0x33, 0x32, 0x16, 0x37, + 0x36, 0x26, 0x35, 0x34, 0x36, 0x27, 0x05, 0x0E, 0x03, 0x07, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x37, + 0x06, 0x26, 0x35, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x0E, + 0x01, 0x07, 0x3A, 0x01, 0x23, 0x05, 0x06, 0x26, 0x27, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x27, 0x2E, + 0x01, 0x37, 0x36, 0x26, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x27, 0x2E, 0x01, 0x37, 0x36, 0x16, 0x33, 0x32, 0x36, 0x17, 0x16, 0x06, 0x15, 0x14, 0x16, 0x07, + 0x0A, 0x20, 0x02, 0x02, 0x04, 0x02, 0x01, 0x01, 0x08, 0x2D, 0x0A, 0x0E, 0x1B, 0x0D, 0x0C, 0x11, + 0x01, 0x02, 0x04, 0x02, 0x04, 0x02, 0x01, 0x05, 0x04, 0x06, 0x39, 0x0C, 0x0B, 0x06, 0x01, 0x03, + 0x29, 0x15, 0x1D, 0x3A, 0x1D, 0x3A, 0x75, 0x3A, 0x07, 0x21, 0x04, 0x04, 0x08, 0x04, 0x05, 0x19, + 0x06, 0x08, 0x13, 0x06, 0x0A, 0x01, 0x12, 0x07, 0x0D, 0x07, 0x04, 0x06, 0x03, 0x04, 0x01, 0x03, + 0x0D, 0x22, 0x06, 0x03, 0x11, 0x05, 0x06, 0x11, 0x08, 0x0C, 0x0C, 0x0A, 0x04, 0x0C, 0x02, 0x02, + 0x0F, 0x04, 0x03, 0x09, 0x05, 0x0D, 0x19, 0x0D, 0x19, 0x32, 0x19, 0x33, 0x65, 0x32, 0x18, 0x34, + 0x17, 0x12, 0x1E, 0x0D, 0x0A, 0x16, 0x0E, 0x13, 0x19, 0x10, 0x07, 0x10, 0x08, 0x0C, 0x18, 0x0C, + 0x1B, 0x36, 0x1B, 0x22, 0x44, 0x22, 0x0D, 0x1A, 0x0D, 0x07, 0x14, 0x04, 0x09, 0x07, 0x08, 0x08, + 0x0C, 0x09, 0x14, 0x36, 0x16, 0x37, 0x6E, 0x37, 0x13, 0x2A, 0x0A, 0x04, 0x01, 0x03, 0x06, 0x06, + 0x05, 0x01, 0x01, 0x03, 0x05, 0x0E, 0x06, 0x08, 0x18, 0x0B, 0x88, 0x06, 0x04, 0xB3, 0xDB, 0xC3, + 0x13, 0x1E, 0x46, 0x1C, 0x19, 0x0A, 0x09, 0x0A, 0x0F, 0x10, 0x12, 0x10, 0x15, 0x16, 0x44, 0x20, + 0x0C, 0x1B, 0x07, 0x06, 0x01, 0x0D, 0x0A, 0x06, 0x04, 0x05, 0x0D, 0x05, 0x05, 0x0D, 0x06, 0x03, + 0x08, 0x08, 0x0A, 0x0C, 0x06, 0x09, 0x2A, 0x0C, 0x12, 0x25, 0x12, 0x0F, 0x21, 0x0E, 0x07, 0x10, + 0x09, 0x07, 0x08, 0x02, 0x02, 0x1F, 0x07, 0x04, 0x02, 0x03, 0x04, 0x01, 0x04, 0x05, 0x08, 0x09, + 0x07, 0x11, 0x01, 0x02, 0x02, 0x12, 0x1D, 0x07, 0x05, 0x04, 0x07, 0x0D, 0x31, 0x61, 0x31, 0x31, + 0x64, 0x63, 0x63, 0x32, 0x14, 0x27, 0x14, 0x0E, 0x1C, 0x0D, 0x0F, 0x01, 0x11, 0x0F, 0x1F, 0x0E, + 0x0D, 0x01, 0x01, 0x06, 0x04, 0x01, 0x06, 0x05, 0x07, 0x10, 0x12, 0x28, 0x13, 0x07, 0x2A, 0x05, + 0x07, 0x02, 0x04, 0x08, 0xF8, 0xF4, 0x11, 0xB9, 0xD7, 0xB9, 0x11, 0x02, 0x07, 0x02, 0x01, 0x05, + 0x02, 0x0F, 0x02, 0x02, 0x02, 0x05, 0x0E, 0x21, 0x41, 0x20, 0x3E, 0x7D, 0x7D, 0x7D, 0x3E, 0x04, + 0x06, 0x05, 0x01, 0x01, 0x02, 0x02, 0x99, 0x0A, 0x40, 0x0F, 0x10, 0x20, 0x10, 0x0C, 0x1C, 0x04, + 0x02, 0x02, 0x03, 0x04, 0x01, 0x07, 0x09, 0x08, 0x02, 0x03, 0x09, 0x09, 0x07, 0x12, 0x0A, 0x09, + 0x10, 0x0A, 0x0B, 0x21, 0x1A, 0x0F, 0x1E, 0x0F, 0x06, 0x2D, 0x04, 0x04, 0x03, 0x03, 0x03, 0x02, + 0x82, 0x02, 0x02, 0x04, 0x03, 0x02, 0x01, 0x09, 0x04, 0x01, 0x0E, 0x13, 0x28, 0x12, 0x0A, 0x15, + 0x0A, 0x0B, 0x13, 0x0A, 0x10, 0x09, 0x02, 0x02, 0x2E, 0x07, 0x1C, 0x01, 0x03, 0x07, 0x05, 0x09, + 0x05, 0x05, 0x04, 0x01, 0x01, 0x07, 0x09, 0x1D, 0x0E, 0x04, 0x09, 0x03, 0x01, 0x02, 0x02, 0x02, + 0x06, 0x01, 0x04, 0x0A, 0x0C, 0x06, 0x0B, 0x05, 0x06, 0x04, 0x01, 0x17, 0x08, 0x03, 0x08, 0x05, + 0x03, 0x01, 0x04, 0x03, 0x0E, 0x04, 0x04, 0x04, 0x23, 0x0D, 0x0A, 0x18, 0x01, 0x01, 0x1B, 0x08, + 0x05, 0x01, 0x02, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x09, 0x03, 0x04, 0x0D, 0x04, 0x04, 0x0B, + 0x03, 0x09, 0x04, 0x01, 0x01, 0x04, 0x17, 0x0A, 0x19, 0x0B, 0x07, 0x20, 0x05, 0x06, 0x06, 0x0A, + 0x0A, 0x13, 0x0A, 0x0C, 0x19, 0x0C, 0x05, 0x1F, 0x03, 0x07, 0x40, 0x0F, 0x11, 0x24, 0x0B, 0x06, + 0x28, 0x03, 0x01, 0x39, 0x45, 0x3D, 0x05, 0x08, 0x03, 0x12, 0x11, 0x3B, 0x17, 0x1B, 0x36, 0x17, + 0x1C, 0x46, 0x1C, 0x1D, 0x0D, 0x03, 0x0B, 0x08, 0x25, 0x04, 0x0A, 0x20, 0x0D, 0x10, 0x20, 0x11, + 0x12, 0x23, 0x11, 0x0A, 0x16, 0x06, 0x06, 0x14, 0x05, 0x09, 0x04, 0x02, 0x02, 0x01, 0x09, 0x05, + 0x09, 0x01, 0x01, 0x17, 0x06, 0x0A, 0x06, 0x08, 0x06, 0x0C, 0x06, 0x07, 0x0F, 0x07, 0x0A, 0x22, + 0x08, 0x05, 0x23, 0x04, 0x07, 0x33, 0x0A, 0x0B, 0x01, 0x01, 0x06, 0x06, 0x0C, 0x01, 0x01, 0x01, + 0x01, 0x02, 0x02, 0x02, 0x17, 0x01, 0x05, 0x05, 0x04, 0x1D, 0x0B, 0x13, 0x27, 0x13, 0x08, 0x13, + 0x07, 0x04, 0x0E, 0x01, 0x09, 0x1C, 0x02, 0x05, 0x02, 0x05, 0x07, 0x09, 0x1B, 0x0B, 0x0A, 0x20, + 0x09, 0x9D, 0x05, 0x3B, 0x45, 0x3D, 0x07, 0x03, 0x02, 0x04, 0x03, 0x05, 0x04, 0x01, 0x21, 0x09, + 0x14, 0x26, 0x14, 0x07, 0x40, 0x02, 0x07, 0x01, 0x7A, 0x13, 0x04, 0x01, 0x03, 0x0E, 0x08, 0x16, + 0x08, 0x0A, 0x1A, 0x07, 0x08, 0x07, 0x09, 0x0D, 0x18, 0x09, 0x08, 0x0C, 0x02, 0x02, 0x0D, 0x08, + 0x07, 0x36, 0x02, 0x01, 0x01, 0x04, 0x05, 0x06, 0x1B, 0x06, 0x09, 0x1B, 0x08, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x62, 0x00, 0x27, 0x05, 0x2B, 0x03, 0x59, 0x00, 0xCC, 0x00, 0xDC, 0x01, 0x0D, + 0x00, 0x00, 0x01, 0x16, 0x32, 0x33, 0x3E, 0x01, 0x33, 0x16, 0x3A, 0x02, 0x33, 0x3E, 0x01, 0x37, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x32, 0x16, 0x17, 0x16, 0x14, 0x07, 0x2A, + 0x01, 0x27, 0x06, 0x16, 0x07, 0x0E, 0x01, 0x23, 0x06, 0x26, 0x07, 0x36, 0x16, 0x17, 0x1E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x22, 0x06, 0x23, 0x1E, 0x03, 0x17, 0x1E, 0x01, 0x17, 0x0E, 0x01, 0x07, + 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x22, 0x06, 0x27, 0x22, 0x06, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x03, 0x27, 0x2E, 0x01, 0x27, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x15, 0x1C, 0x01, + 0x15, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x27, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x27, 0x3C, 0x01, 0x35, 0x2E, 0x01, 0x27, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x26, 0x06, 0x27, + 0x26, 0x36, 0x27, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x37, 0x26, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x33, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x33, 0x1E, 0x01, 0x17, 0x3A, 0x01, 0x17, 0x05, 0x22, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x1E, 0x01, 0x17, 0x3E, 0x01, 0x27, 0x36, 0x26, 0x27, 0x05, 0x26, 0x06, 0x07, 0x1C, 0x01, + 0x15, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x15, 0x22, 0x26, 0x27, 0x26, 0x36, 0x27, + 0x36, 0x26, 0x27, 0x34, 0x36, 0x35, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x02, 0x50, 0x1B, 0x36, 0x1A, + 0x0E, 0x1B, 0x0D, 0x29, 0x52, 0x52, 0x52, 0x29, 0x02, 0x02, 0x04, 0x09, 0x12, 0x0A, 0x03, 0x08, + 0x06, 0x05, 0x02, 0x04, 0x2A, 0x55, 0x2A, 0x07, 0x07, 0x2B, 0x56, 0x2B, 0x04, 0x03, 0x04, 0x02, + 0x0C, 0x06, 0x27, 0x4F, 0x27, 0x0D, 0x14, 0x0C, 0x03, 0x05, 0x03, 0x05, 0x0E, 0x08, 0x0A, 0x16, + 0x0B, 0x11, 0x22, 0x22, 0x21, 0x11, 0x06, 0x0E, 0x06, 0x03, 0x06, 0x03, 0x01, 0x01, 0x05, 0x0E, + 0x06, 0x06, 0x06, 0x06, 0x08, 0x0E, 0x08, 0x10, 0x20, 0x10, 0x05, 0x06, 0x03, 0x0E, 0x1E, 0x1E, + 0x1F, 0x0F, 0x0D, 0x1C, 0x0E, 0x07, 0x0A, 0x03, 0x02, 0x04, 0x0B, 0x1A, 0x0D, 0x16, 0x2E, 0x17, + 0x13, 0x25, 0x12, 0x0F, 0x22, 0x0F, 0x0F, 0x13, 0x04, 0x08, 0x13, 0x09, 0x06, 0x0F, 0x04, 0x03, + 0x01, 0x02, 0x07, 0x12, 0x03, 0x06, 0x10, 0x08, 0x02, 0x05, 0x03, 0x2F, 0x5D, 0x2F, 0x06, 0x09, + 0x04, 0x10, 0x24, 0x06, 0x03, 0x06, 0x07, 0x0A, 0x15, 0x0B, 0x04, 0x0D, 0x06, 0x0B, 0x1B, 0x09, + 0x06, 0x0A, 0x13, 0x12, 0x2B, 0x14, 0x08, 0x03, 0x01, 0x13, 0x2B, 0x0F, 0x06, 0x01, 0x01, 0x01, + 0x08, 0x08, 0x06, 0x0B, 0x01, 0x01, 0x07, 0x05, 0x04, 0x08, 0x04, 0x06, 0x0D, 0x06, 0x05, 0x0B, + 0x06, 0x0C, 0x17, 0x0C, 0x03, 0x04, 0x02, 0x06, 0x0C, 0x06, 0x03, 0x05, 0x02, 0x42, 0x84, 0x42, + 0xFE, 0x72, 0x02, 0x05, 0x02, 0x01, 0x03, 0x02, 0x03, 0x08, 0x06, 0x03, 0x07, 0x01, 0x01, 0x09, + 0x03, 0x01, 0xE4, 0x11, 0x1D, 0x11, 0x04, 0x0D, 0x02, 0x03, 0x07, 0x0C, 0x06, 0x0E, 0x10, 0x17, + 0x09, 0x0A, 0x08, 0x01, 0x01, 0x06, 0x02, 0x01, 0x0D, 0x16, 0x09, 0x0A, 0x0E, 0x02, 0x01, 0x1E, + 0x13, 0x20, 0x42, 0x1E, 0x10, 0x17, 0x04, 0x01, 0x02, 0x08, 0x07, 0x18, 0x0C, 0x03, 0x41, 0x03, + 0x02, 0x01, 0x01, 0x05, 0x0A, 0x04, 0x01, 0x01, 0x01, 0x06, 0x0D, 0x04, 0x03, 0x0B, 0x03, 0x01, + 0x01, 0x0F, 0x23, 0x10, 0x01, 0x11, 0x22, 0x10, 0x07, 0x04, 0x01, 0x01, 0x02, 0x01, 0x10, 0x04, + 0x02, 0x06, 0x04, 0x05, 0x07, 0x03, 0x01, 0x36, 0x6C, 0x6B, 0x6C, 0x36, 0x16, 0x2A, 0x16, 0x03, + 0x04, 0x03, 0x06, 0x0C, 0x05, 0x05, 0x02, 0x01, 0x01, 0x0B, 0x01, 0x07, 0x01, 0x01, 0x01, 0x06, + 0x10, 0x08, 0x2F, 0x5F, 0x5F, 0x5E, 0x30, 0x2D, 0x5B, 0x2D, 0x06, 0x10, 0x09, 0x09, 0x12, 0x0A, + 0x0E, 0x1E, 0x0F, 0x09, 0x0B, 0x05, 0x08, 0x08, 0x02, 0x02, 0x08, 0x06, 0x05, 0x07, 0x08, 0x05, + 0x1B, 0x0F, 0x1C, 0x38, 0x1C, 0x16, 0x2B, 0x16, 0x0F, 0x1E, 0x0F, 0x04, 0x08, 0x09, 0x08, 0x0D, + 0x06, 0x01, 0x02, 0x01, 0x01, 0x01, 0x05, 0x02, 0x07, 0x0D, 0x06, 0x02, 0x0D, 0x11, 0x19, 0x33, + 0x18, 0x20, 0x40, 0x20, 0x0E, 0x1A, 0x0D, 0x15, 0x26, 0x16, 0x14, 0x2D, 0x0C, 0x0B, 0x05, 0x01, + 0x05, 0x12, 0x07, 0x06, 0x06, 0x10, 0x06, 0x10, 0x08, 0x0B, 0x15, 0x07, 0x06, 0x0C, 0x09, 0x08, + 0x0C, 0x05, 0x02, 0x04, 0x01, 0x01, 0x05, 0x02, 0x07, 0x0D, 0x06, 0x01, 0x01, 0x06, 0x0C, 0x05, + 0x01, 0x01, 0x05, 0x0C, 0x06, 0x01, 0x24, 0x02, 0x01, 0x02, 0x05, 0x02, 0x05, 0x07, 0x01, 0x03, + 0x06, 0x04, 0x06, 0x04, 0x02, 0xA7, 0x02, 0x0F, 0x01, 0x03, 0x05, 0x03, 0x08, 0x0E, 0x0A, 0x0F, + 0x20, 0x0B, 0x05, 0x0B, 0x09, 0x17, 0x0C, 0x0F, 0x24, 0x11, 0x04, 0x05, 0x03, 0x02, 0x06, 0x02, + 0x0D, 0x08, 0x0A, 0x1B, 0x0E, 0x15, 0x20, 0x06, 0x07, 0x06, 0x0F, 0x08, 0x1D, 0x11, 0x0D, 0x1C, + 0x0B, 0x0B, 0x0D, 0x02, 0x00, 0x02, 0x00, 0x53, 0x01, 0x03, 0x08, 0x53, 0x02, 0x7F, 0x00, 0xE9, + 0x00, 0xF9, 0x00, 0x00, 0x01, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x2E, + 0x02, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x23, 0x14, 0x06, 0x17, 0x2E, 0x01, + 0x23, 0x1C, 0x01, 0x15, 0x2E, 0x01, 0x27, 0x14, 0x06, 0x15, 0x2E, 0x01, 0x07, 0x22, 0x26, 0x07, + 0x06, 0x26, 0x27, 0x14, 0x06, 0x15, 0x26, 0x06, 0x27, 0x26, 0x22, 0x07, 0x2E, 0x01, 0x27, 0x06, + 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x06, 0x22, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x1E, + 0x01, 0x17, 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, + 0x37, 0x3E, 0x01, 0x17, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x32, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x16, 0x17, 0x32, + 0x16, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x32, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x0E, 0x01, 0x07, 0x05, 0x34, 0x26, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x06, 0x16, 0x17, 0x2A, 0x01, 0x07, 0x07, 0xE9, 0x2E, + 0x60, 0x30, 0x1F, 0x3D, 0x1F, 0x2E, 0x5F, 0x2E, 0x31, 0x62, 0x61, 0x61, 0x30, 0x04, 0x0E, 0x03, + 0x03, 0x07, 0x03, 0x02, 0x07, 0x02, 0x01, 0x01, 0x03, 0x04, 0x02, 0x03, 0x04, 0x02, 0x01, 0x07, + 0x03, 0x02, 0x02, 0x05, 0x01, 0x03, 0x02, 0x05, 0x02, 0x04, 0x05, 0x01, 0x06, 0x02, 0x04, 0x02, + 0x03, 0x01, 0x06, 0x05, 0x08, 0x0B, 0x18, 0x0D, 0x0B, 0x16, 0x0B, 0x1F, 0x3E, 0x1E, 0x2C, 0x56, + 0x2B, 0x1F, 0x3D, 0x1F, 0x18, 0x30, 0x17, 0x17, 0x2C, 0x16, 0x1D, 0x39, 0x19, 0x17, 0x2A, 0x11, + 0x07, 0x0E, 0x01, 0x01, 0x1B, 0x08, 0x04, 0x02, 0x01, 0x01, 0x0B, 0x05, 0x09, 0x17, 0x09, 0x08, + 0x0F, 0x07, 0x09, 0x0F, 0x08, 0x18, 0x32, 0x1E, 0x10, 0x20, 0x10, 0x22, 0x44, 0x20, 0x0A, 0x13, + 0x0A, 0x05, 0x0D, 0x04, 0x11, 0x2C, 0x16, 0x0D, 0x1B, 0x0D, 0x08, 0x12, 0x08, 0x06, 0x08, 0x06, + 0x0B, 0x19, 0x0D, 0x15, 0x22, 0x0F, 0x08, 0x0C, 0x05, 0x07, 0x09, 0x0D, 0x0A, 0x0B, 0x07, 0x08, + 0x10, 0x08, 0x02, 0x03, 0x02, 0x01, 0x05, 0x05, 0x10, 0x1F, 0x10, 0x04, 0x0B, 0x04, 0x07, 0x0F, + 0x08, 0x04, 0x08, 0x04, 0x09, 0x0F, 0x0A, 0x02, 0x11, 0x01, 0x04, 0x0C, 0x06, 0x04, 0x0E, 0x03, + 0x02, 0x07, 0x01, 0x04, 0x08, 0x04, 0x07, 0x0E, 0x07, 0x02, 0x05, 0x02, 0x02, 0x0A, 0x02, 0x09, + 0x0E, 0x0A, 0x03, 0x04, 0x02, 0x03, 0x05, 0x03, 0x09, 0x16, 0x0B, 0x07, 0x08, 0x0A, 0x0D, 0x1A, + 0x0D, 0x35, 0x6C, 0x33, 0x39, 0x6F, 0x32, 0x22, 0x41, 0x20, 0x0C, 0x18, 0x0C, 0x1B, 0x34, 0x1B, + 0xFB, 0x67, 0x01, 0x01, 0x05, 0x0A, 0x05, 0x0A, 0x16, 0x0B, 0x01, 0x01, 0x01, 0x10, 0x20, 0x10, + 0x02, 0x62, 0x0D, 0x18, 0x06, 0x04, 0x08, 0x04, 0x06, 0x05, 0x02, 0x02, 0x01, 0x08, 0x0F, 0x0A, + 0x01, 0x06, 0x01, 0x01, 0x07, 0x01, 0x02, 0x01, 0x02, 0x03, 0x02, 0x01, 0x02, 0x02, 0x04, 0x03, + 0x01, 0x02, 0x01, 0x02, 0x03, 0x02, 0x02, 0x01, 0x06, 0x05, 0x02, 0x04, 0x01, 0x03, 0x02, 0x03, + 0x01, 0x02, 0x04, 0x01, 0x03, 0x05, 0x02, 0x03, 0x01, 0x07, 0x02, 0x05, 0x06, 0x06, 0x01, 0x01, + 0x01, 0x01, 0x03, 0x02, 0x04, 0x01, 0x02, 0x09, 0x04, 0x04, 0x0E, 0x07, 0x0A, 0x17, 0x13, 0x13, + 0x2B, 0x19, 0x0B, 0x15, 0x0D, 0x0C, 0x0E, 0x04, 0x02, 0x0E, 0x05, 0x05, 0x04, 0x02, 0x03, 0x04, + 0x03, 0x02, 0x05, 0x03, 0x03, 0x0C, 0x06, 0x13, 0x1F, 0x08, 0x03, 0x03, 0x01, 0x0B, 0x0A, 0x03, + 0x07, 0x01, 0x01, 0x0B, 0x03, 0x0C, 0x0E, 0x01, 0x05, 0x05, 0x03, 0x0B, 0x01, 0x08, 0x03, 0x07, + 0x09, 0x02, 0x03, 0x0B, 0x0F, 0x07, 0x0E, 0x09, 0x0A, 0x0C, 0x01, 0x01, 0x04, 0x07, 0x08, 0x10, + 0x08, 0x06, 0x0D, 0x06, 0x06, 0x01, 0x0A, 0x02, 0x04, 0x05, 0x02, 0x02, 0x05, 0x02, 0x06, 0x04, + 0x03, 0x08, 0x01, 0x03, 0x08, 0x01, 0x03, 0x02, 0x01, 0x05, 0x01, 0x03, 0x05, 0x02, 0x03, 0x02, + 0x02, 0x05, 0x08, 0x01, 0x05, 0x01, 0x02, 0x03, 0x01, 0x02, 0x05, 0x02, 0x08, 0x06, 0x09, 0x05, + 0x02, 0x02, 0x04, 0x02, 0x08, 0x18, 0x13, 0x14, 0x38, 0x23, 0x17, 0x32, 0x1A, 0x09, 0x13, 0x09, + 0x07, 0x0F, 0x07, 0x82, 0x02, 0x0E, 0x04, 0x07, 0x04, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x65, + 0xFF, 0xF3, 0x09, 0x0D, 0x03, 0x8D, 0x00, 0x1E, 0x01, 0x28, 0x00, 0x00, 0x01, 0x07, 0x0E, 0x01, + 0x15, 0x17, 0x0F, 0x01, 0x27, 0x07, 0x23, 0x0F, 0x02, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x33, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x23, 0x25, 0x17, 0x37, 0x33, 0x1F, 0x01, + 0x0F, 0x01, 0x23, 0x2F, 0x01, 0x0F, 0x01, 0x23, 0x27, 0x23, 0x27, 0x23, 0x0E, 0x01, 0x2B, 0x01, + 0x2F, 0x01, 0x05, 0x07, 0x23, 0x27, 0x23, 0x07, 0x23, 0x07, 0x0E, 0x01, 0x07, 0x1F, 0x01, 0x1E, + 0x01, 0x15, 0x0E, 0x01, 0x1F, 0x01, 0x15, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x0F, 0x01, 0x2F, 0x01, + 0x34, 0x36, 0x3F, 0x01, 0x3E, 0x01, 0x2F, 0x02, 0x26, 0x36, 0x3F, 0x01, 0x27, 0x07, 0x0E, 0x01, + 0x0F, 0x01, 0x0E, 0x01, 0x0F, 0x03, 0x22, 0x26, 0x2F, 0x01, 0x3E, 0x01, 0x3F, 0x01, 0x3E, 0x01, + 0x3F, 0x01, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x0F, 0x01, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x0F, + 0x01, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x0F, 0x02, 0x06, 0x26, 0x37, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x2F, 0x02, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x0F, 0x01, 0x1F, 0x01, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x2B, 0x01, 0x22, 0x26, 0x27, + 0x2E, 0x01, 0x2F, 0x01, 0x2E, 0x01, 0x35, 0x26, 0x36, 0x3F, 0x02, 0x3E, 0x01, 0x33, 0x25, 0x35, + 0x3F, 0x02, 0x17, 0x35, 0x23, 0x14, 0x06, 0x23, 0x2F, 0x01, 0x23, 0x07, 0x23, 0x2E, 0x01, 0x35, + 0x34, 0x36, 0x37, 0x33, 0x17, 0x3F, 0x01, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x37, 0x35, 0x37, + 0x17, 0x15, 0x3F, 0x01, 0x33, 0x17, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x07, 0x15, 0x23, 0x35, + 0x23, 0x17, 0x33, 0x1E, 0x01, 0x15, 0x17, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x17, 0x15, 0x17, 0x21, + 0x3F, 0x01, 0x33, 0x17, 0x33, 0x37, 0x17, 0x37, 0x3E, 0x01, 0x3B, 0x01, 0x17, 0x04, 0x9C, 0x07, + 0x04, 0x03, 0x02, 0x05, 0x16, 0x0E, 0x06, 0x1B, 0x07, 0x07, 0x37, 0x05, 0x01, 0x04, 0x04, 0x09, + 0x05, 0x4C, 0x14, 0x20, 0x0B, 0x08, 0x36, 0x2F, 0x03, 0x08, 0x0A, 0x5E, 0x04, 0x14, 0x0D, 0x10, + 0x36, 0x06, 0x04, 0x04, 0x08, 0x31, 0x0A, 0x0A, 0x0D, 0x07, 0x1F, 0x05, 0x31, 0x04, 0x17, 0x01, + 0x05, 0x04, 0x2E, 0x09, 0x03, 0xFE, 0xBF, 0x12, 0x08, 0x05, 0x08, 0x05, 0x42, 0x09, 0x01, 0x07, + 0x07, 0x08, 0x12, 0x09, 0x08, 0x04, 0x01, 0x01, 0x01, 0x01, 0x0D, 0x0C, 0x02, 0x08, 0x0A, 0x2A, + 0x31, 0x1C, 0x03, 0x03, 0x0F, 0x05, 0x03, 0x02, 0x08, 0x09, 0x01, 0x08, 0x0A, 0x14, 0x53, 0x61, + 0x10, 0x2A, 0x1A, 0x48, 0x0C, 0x17, 0x0B, 0x40, 0x6E, 0x4D, 0x06, 0x07, 0x02, 0x02, 0x01, 0x06, + 0x05, 0x15, 0x09, 0x0B, 0x04, 0x16, 0x08, 0x08, 0x0D, 0x0E, 0x3F, 0x43, 0x11, 0x13, 0x02, 0x05, + 0x0F, 0x0B, 0x02, 0x02, 0x11, 0x0F, 0x16, 0x29, 0x12, 0x08, 0x02, 0x09, 0x51, 0x53, 0x06, 0x06, + 0x01, 0x19, 0x0E, 0x19, 0x0A, 0x0A, 0x0F, 0x04, 0x05, 0x21, 0x32, 0x02, 0x05, 0x04, 0x04, 0x05, + 0x01, 0x0D, 0x28, 0x1B, 0x1F, 0x22, 0x03, 0x08, 0x0D, 0x0C, 0x05, 0x04, 0x04, 0x0B, 0x07, 0x82, + 0x06, 0x0D, 0x06, 0x07, 0x0B, 0x04, 0x22, 0x0D, 0x0E, 0x01, 0x02, 0x02, 0x0F, 0x23, 0x0E, 0x14, + 0x07, 0x02, 0xBB, 0x12, 0x1B, 0x1F, 0x2A, 0x10, 0x08, 0x09, 0x0D, 0x03, 0x27, 0x05, 0x0D, 0x06, + 0x05, 0x05, 0x04, 0x0A, 0x07, 0x26, 0x02, 0x02, 0x08, 0x06, 0x07, 0x07, 0x0B, 0x15, 0x18, 0x57, + 0x6A, 0x23, 0x0F, 0x10, 0x0C, 0x16, 0x16, 0x0B, 0x38, 0x09, 0x0F, 0x07, 0x09, 0x05, 0x24, 0x11, + 0x26, 0x10, 0x26, 0x10, 0x27, 0x0F, 0x27, 0x10, 0x1E, 0x4F, 0x14, 0x01, 0x58, 0x06, 0x09, 0x29, + 0x0A, 0x14, 0x0A, 0x2B, 0x01, 0x02, 0x04, 0x03, 0x1C, 0x08, 0x01, 0xF9, 0x05, 0x05, 0x0B, 0x06, + 0x17, 0x06, 0x01, 0x01, 0x0E, 0x02, 0x07, 0x64, 0x0A, 0x12, 0x08, 0x06, 0x08, 0x02, 0x02, 0x0B, + 0x08, 0x07, 0x53, 0x4D, 0x05, 0x16, 0x10, 0xB2, 0x01, 0x07, 0x0A, 0x1A, 0x19, 0x0A, 0x03, 0x01, + 0x02, 0x02, 0x03, 0x04, 0x04, 0x03, 0x03, 0x02, 0x08, 0x13, 0x07, 0x07, 0x43, 0x06, 0x08, 0x02, + 0x08, 0x02, 0x02, 0x07, 0x05, 0x13, 0x1B, 0x09, 0x33, 0x3A, 0x11, 0x25, 0x13, 0x04, 0x08, 0x04, + 0x07, 0x09, 0x07, 0x19, 0x2D, 0x14, 0x37, 0x0D, 0x14, 0x06, 0x1B, 0x14, 0x05, 0x0A, 0x05, 0x0B, + 0x04, 0x04, 0x0B, 0x2F, 0x25, 0x6B, 0x11, 0x18, 0x05, 0x0B, 0x06, 0x01, 0x03, 0x04, 0x17, 0x18, + 0x22, 0x0B, 0x27, 0x0F, 0x11, 0x03, 0x14, 0x0A, 0x19, 0x0E, 0x10, 0x13, 0x03, 0x02, 0x05, 0x01, + 0x05, 0x05, 0x06, 0x0B, 0x04, 0x28, 0x1F, 0x50, 0x32, 0x4F, 0x67, 0x18, 0x0A, 0x0F, 0x05, 0x1D, + 0x1D, 0x01, 0x14, 0x16, 0x36, 0x25, 0x4F, 0x2B, 0x2B, 0x52, 0x27, 0x3D, 0x02, 0x28, 0x02, 0x03, + 0x05, 0x05, 0x04, 0x01, 0x05, 0x17, 0x12, 0x15, 0x22, 0x0B, 0x1B, 0x0D, 0x13, 0x07, 0x0B, 0x04, + 0x04, 0x04, 0x05, 0x05, 0x07, 0x11, 0x0B, 0x90, 0x3C, 0x49, 0x0E, 0x0D, 0x14, 0x07, 0x15, 0x1D, + 0x08, 0x09, 0x0F, 0x08, 0x0D, 0x12, 0x05, 0x01, 0x39, 0x06, 0x06, 0x05, 0x07, 0x06, 0x07, 0x19, + 0x11, 0x11, 0x12, 0x02, 0x05, 0x01, 0x08, 0x04, 0x03, 0x07, 0x06, 0x01, 0x13, 0x03, 0x02, 0x0E, + 0x0D, 0x0C, 0x0C, 0x06, 0x04, 0x6D, 0x01, 0x05, 0x07, 0x0D, 0x01, 0x04, 0x03, 0x15, 0x04, 0x04, + 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x27, 0x1A, 0x0B, 0x04, 0x05, 0x09, 0x06, 0x02, + 0x04, 0x02, 0x02, 0x02, 0x00, 0x0A, 0x00, 0x55, 0x01, 0x10, 0x08, 0x53, 0x02, 0x71, 0x00, 0xF3, + 0x00, 0xFF, 0x01, 0x0B, 0x01, 0x17, 0x01, 0x23, 0x01, 0x30, 0x01, 0x39, 0x01, 0x42, 0x01, 0x4F, + 0x01, 0x65, 0x00, 0x00, 0x01, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x22, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x0E, 0x02, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x16, 0x17, 0x1E, + 0x01, 0x17, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x32, 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x27, 0x16, 0x36, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x07, 0x3E, 0x01, 0x33, 0x32, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x35, 0x36, 0x34, 0x17, 0x32, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x0E, 0x01, 0x07, 0x31, 0x05, 0x06, 0x26, 0x37, 0x36, 0x16, 0x17, 0x14, 0x06, + 0x07, 0x06, 0x36, 0x37, 0x06, 0x26, 0x37, 0x36, 0x16, 0x17, 0x16, 0x06, 0x07, 0x06, 0x36, 0x25, + 0x06, 0x26, 0x37, 0x36, 0x16, 0x17, 0x16, 0x06, 0x07, 0x06, 0x36, 0x17, 0x06, 0x26, 0x37, 0x36, + 0x16, 0x17, 0x16, 0x06, 0x07, 0x06, 0x36, 0x05, 0x06, 0x26, 0x37, 0x36, 0x16, 0x17, 0x16, 0x06, + 0x07, 0x06, 0x36, 0x31, 0x37, 0x06, 0x26, 0x37, 0x36, 0x16, 0x07, 0x06, 0x36, 0x25, 0x06, 0x26, + 0x37, 0x36, 0x16, 0x07, 0x06, 0x36, 0x17, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x36, 0x16, 0x07, + 0x30, 0x36, 0x07, 0x25, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x3A, 0x01, 0x17, + 0x32, 0x16, 0x17, 0x2E, 0x03, 0x27, 0x31, 0x08, 0x18, 0x33, 0x66, 0x33, 0x1B, 0x33, 0x18, 0x05, + 0x0B, 0x06, 0x05, 0x05, 0x06, 0x17, 0x2D, 0x18, 0x21, 0x44, 0x22, 0x15, 0x28, 0x14, 0x1A, 0x33, + 0x19, 0x0C, 0x19, 0x0D, 0x06, 0x0B, 0x04, 0x08, 0x0F, 0x0B, 0x07, 0x10, 0x08, 0x0A, 0x08, 0x06, + 0x08, 0x1D, 0x0F, 0x19, 0x31, 0x1A, 0x14, 0x26, 0x14, 0x12, 0x20, 0x13, 0x19, 0x30, 0x19, 0x33, + 0x67, 0x66, 0x65, 0x31, 0x25, 0x4B, 0x23, 0x0D, 0x19, 0x0C, 0x0F, 0x1F, 0x0B, 0x04, 0x08, 0x04, + 0x05, 0x0B, 0x04, 0x07, 0x10, 0x09, 0x08, 0x11, 0x0C, 0x0A, 0x15, 0x0B, 0x18, 0x33, 0x1A, 0x23, + 0x47, 0x24, 0x1B, 0x37, 0x1C, 0x1C, 0x39, 0x1C, 0x2F, 0x5F, 0x2F, 0x1A, 0x32, 0x19, 0x0B, 0x16, + 0x0B, 0x01, 0x02, 0x01, 0x02, 0x05, 0x04, 0x18, 0x29, 0x16, 0x1D, 0x38, 0x1C, 0x30, 0x61, 0x2F, + 0x4B, 0x96, 0x46, 0x25, 0x4B, 0x21, 0x0C, 0x17, 0x09, 0x05, 0x1E, 0x04, 0x0B, 0x17, 0x12, 0x02, + 0x04, 0x02, 0x06, 0x0A, 0x07, 0x1D, 0x43, 0x20, 0x30, 0x64, 0x32, 0x17, 0x31, 0x18, 0x15, 0x2A, + 0x15, 0x21, 0x41, 0x20, 0x18, 0x30, 0x17, 0x16, 0x2B, 0x16, 0x05, 0x0B, 0x05, 0x05, 0x0D, 0x04, + 0x04, 0x06, 0x01, 0x05, 0x06, 0x01, 0x02, 0x05, 0x04, 0x02, 0x08, 0x04, 0x03, 0x10, 0x02, 0x10, + 0x0A, 0x09, 0x0E, 0x23, 0x0B, 0x04, 0x03, 0x02, 0x01, 0x01, 0x01, 0x05, 0x09, 0x06, 0x07, 0x09, + 0x03, 0x04, 0x0A, 0x05, 0x04, 0x08, 0x04, 0x03, 0x05, 0x03, 0x03, 0x2D, 0x02, 0x04, 0x06, 0x0A, + 0x05, 0x11, 0x23, 0x11, 0x33, 0x67, 0x34, 0x17, 0x2F, 0x17, 0x18, 0x31, 0x18, 0x1A, 0x33, 0x19, + 0x22, 0x40, 0x1A, 0x0E, 0x1B, 0x0D, 0x0F, 0x1D, 0x0F, 0xF8, 0x95, 0x0F, 0x17, 0x12, 0x08, 0x0F, + 0x02, 0x04, 0x01, 0x03, 0x03, 0x47, 0x0E, 0x19, 0x12, 0x07, 0x11, 0x02, 0x01, 0x04, 0x02, 0x03, + 0x03, 0x02, 0x03, 0x0E, 0x1A, 0x11, 0x07, 0x11, 0x03, 0x02, 0x04, 0x02, 0x03, 0x03, 0x47, 0x0D, + 0x1A, 0x10, 0x07, 0x11, 0x03, 0x03, 0x05, 0x02, 0x02, 0x02, 0xFD, 0xF7, 0x0E, 0x1A, 0x10, 0x07, + 0x10, 0x04, 0x03, 0x04, 0x02, 0x03, 0x03, 0x39, 0x0C, 0x1C, 0x0E, 0x0C, 0x1C, 0x0E, 0x02, 0x05, + 0x02, 0x0D, 0x0E, 0x19, 0x12, 0x0C, 0x14, 0x0B, 0x02, 0x05, 0x3D, 0x04, 0x08, 0x04, 0x08, 0x09, + 0x04, 0x08, 0x24, 0x0F, 0x03, 0x03, 0x01, 0xD2, 0x03, 0x07, 0x04, 0x32, 0x64, 0x32, 0x20, 0x42, + 0x20, 0x0A, 0x13, 0x0A, 0x07, 0x06, 0x07, 0x2F, 0x5E, 0x5D, 0x5E, 0x2F, 0x02, 0x15, 0x04, 0x07, + 0x0E, 0x07, 0x18, 0x0E, 0x04, 0x06, 0x04, 0x03, 0x02, 0x04, 0x09, 0x02, 0x02, 0x05, 0x02, 0x01, + 0x04, 0x02, 0x03, 0x05, 0x04, 0x03, 0x04, 0x03, 0x01, 0x04, 0x05, 0x08, 0x0B, 0x02, 0x02, 0x04, + 0x01, 0x09, 0x07, 0x0B, 0x11, 0x04, 0x08, 0x11, 0x02, 0x01, 0x01, 0x06, 0x05, 0x0F, 0x02, 0x02, + 0x05, 0x05, 0x0B, 0x14, 0x10, 0x0C, 0x18, 0x10, 0x06, 0x0E, 0x07, 0x09, 0x12, 0x0D, 0x05, 0x0A, + 0x05, 0x06, 0x0C, 0x05, 0x09, 0x11, 0x08, 0x08, 0x0D, 0x08, 0x08, 0x0D, 0x07, 0x0E, 0x17, 0x0C, + 0x0F, 0x1B, 0x08, 0x06, 0x0D, 0x04, 0x04, 0x08, 0x04, 0x06, 0x02, 0x03, 0x01, 0x03, 0x01, 0x01, + 0x03, 0x10, 0x02, 0x06, 0x0B, 0x05, 0x02, 0x17, 0x03, 0x03, 0x05, 0x02, 0x04, 0x03, 0x06, 0x09, + 0x1F, 0x1E, 0x10, 0x21, 0x16, 0x08, 0x0F, 0x0A, 0x05, 0x23, 0x05, 0x0C, 0x13, 0x03, 0x0D, 0x02, + 0x06, 0x07, 0x05, 0x13, 0x19, 0x0D, 0x13, 0x1C, 0x0D, 0x06, 0x02, 0x02, 0x01, 0x04, 0x01, 0x02, + 0x03, 0x01, 0x01, 0x08, 0x03, 0x03, 0x04, 0x03, 0x01, 0x01, 0x01, 0x02, 0x0C, 0x03, 0x09, 0x11, + 0x09, 0x0E, 0x15, 0x0D, 0x03, 0x09, 0x03, 0x03, 0x0B, 0x02, 0x10, 0x30, 0x15, 0x0C, 0x12, 0x08, + 0x03, 0x07, 0x03, 0x02, 0x0A, 0x01, 0x03, 0x07, 0x01, 0x01, 0x09, 0x06, 0x04, 0x04, 0x01, 0x03, + 0x01, 0x08, 0x01, 0x01, 0x04, 0x02, 0x03, 0x06, 0x01, 0x01, 0x01, 0x02, 0x04, 0x02, 0x06, 0x0D, + 0x06, 0x03, 0x07, 0x02, 0x02, 0x07, 0x01, 0x01, 0x02, 0x09, 0x0D, 0x1F, 0x1D, 0x11, 0x20, 0x11, + 0x02, 0x05, 0x03, 0x6C, 0x0F, 0x24, 0x07, 0x04, 0x08, 0x08, 0x04, 0x08, 0x04, 0x03, 0x03, 0x19, + 0x0E, 0x20, 0x0B, 0x04, 0x07, 0x08, 0x05, 0x09, 0x04, 0x02, 0x02, 0x7C, 0x0E, 0x1F, 0x0B, 0x05, + 0x05, 0x08, 0x05, 0x0A, 0x05, 0x03, 0x03, 0x05, 0x0D, 0x1E, 0x0B, 0x05, 0x05, 0x08, 0x05, 0x0A, + 0x05, 0x02, 0x02, 0xCD, 0x0D, 0x1E, 0x0B, 0x04, 0x04, 0x06, 0x06, 0x0A, 0x06, 0x03, 0x03, 0x19, + 0x0D, 0x1A, 0x0C, 0x0C, 0x19, 0x0C, 0x03, 0x05, 0x51, 0x0E, 0x20, 0x09, 0x06, 0x16, 0x0B, 0x03, + 0x05, 0x09, 0x02, 0x04, 0x01, 0x01, 0x0F, 0x08, 0x13, 0x19, 0x0D, 0x02, 0x02, 0x3F, 0x02, 0x04, + 0x02, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, 0x03, 0x05, 0x01, 0x03, 0x02, 0x03, 0x01, 0x00, + 0x00, 0x10, 0x00, 0x66, 0x00, 0xC0, 0x03, 0x97, 0x02, 0xC0, 0x00, 0x10, 0x00, 0x2D, 0x00, 0x3F, + 0x00, 0x51, 0x00, 0x61, 0x00, 0x70, 0x00, 0x7D, 0x00, 0x8C, 0x00, 0x9B, 0x00, 0xA7, 0x00, 0xB9, + 0x00, 0xC1, 0x00, 0xCF, 0x00, 0xDD, 0x00, 0xE9, 0x01, 0x0C, 0x00, 0x00, 0x01, 0x34, 0x26, 0x23, + 0x21, 0x22, 0x06, 0x0F, 0x01, 0x15, 0x1F, 0x01, 0x21, 0x32, 0x36, 0x3D, 0x01, 0x37, 0x1E, 0x01, + 0x15, 0x11, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x21, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x11, + 0x34, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x21, 0x32, 0x16, 0x17, 0x07, 0x27, 0x37, 0x17, 0x35, 0x33, + 0x07, 0x37, 0x17, 0x07, 0x17, 0x07, 0x27, 0x17, 0x23, 0x35, 0x07, 0x27, 0x27, 0x07, 0x17, 0x07, + 0x27, 0x17, 0x23, 0x35, 0x07, 0x27, 0x37, 0x27, 0x37, 0x17, 0x35, 0x33, 0x07, 0x37, 0x17, 0x2F, + 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x1D, 0x01, 0x1F, 0x01, 0x33, 0x3F, 0x01, 0x37, 0x07, + 0x0E, 0x01, 0x1D, 0x01, 0x1F, 0x01, 0x33, 0x3F, 0x01, 0x35, 0x2F, 0x01, 0x23, 0x2F, 0x02, 0x23, + 0x0F, 0x01, 0x15, 0x1F, 0x01, 0x33, 0x3F, 0x01, 0x35, 0x37, 0x27, 0x23, 0x07, 0x0E, 0x01, 0x1D, + 0x01, 0x1F, 0x01, 0x33, 0x3F, 0x01, 0x35, 0x27, 0x17, 0x27, 0x23, 0x07, 0x0E, 0x01, 0x1D, 0x01, + 0x1F, 0x01, 0x33, 0x3F, 0x01, 0x35, 0x27, 0x35, 0x27, 0x23, 0x0F, 0x01, 0x15, 0x1F, 0x01, 0x33, + 0x3F, 0x01, 0x35, 0x27, 0x07, 0x17, 0x07, 0x27, 0x17, 0x23, 0x35, 0x07, 0x27, 0x37, 0x27, 0x37, + 0x17, 0x35, 0x33, 0x07, 0x37, 0x07, 0x3F, 0x01, 0x33, 0x0F, 0x01, 0x15, 0x23, 0x17, 0x23, 0x22, + 0x06, 0x0F, 0x01, 0x15, 0x1F, 0x01, 0x33, 0x3F, 0x01, 0x35, 0x27, 0x27, 0x23, 0x0F, 0x01, 0x15, + 0x17, 0x1E, 0x01, 0x3B, 0x01, 0x3F, 0x01, 0x35, 0x27, 0x05, 0x15, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x35, 0x23, 0x35, 0x23, 0x07, 0x27, 0x1F, 0x01, 0x37, 0x2F, 0x01, 0x22, 0x06, 0x07, 0x0E, 0x01, + 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x3F, 0x01, 0x27, 0x07, 0x23, 0x22, 0x26, 0x27, 0x2E, + 0x01, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x03, 0x53, 0x08, 0x08, 0xFE, 0xCE, 0x03, 0x05, + 0x02, 0x05, 0x05, 0x0A, 0x01, 0x33, 0x07, 0x08, 0x39, 0x06, 0x05, 0x05, 0x06, 0x06, 0x11, 0x0A, + 0xFD, 0x2A, 0x0A, 0x10, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x10, 0x0A, 0x02, 0xD6, 0x0A, 0x11, + 0x06, 0xD0, 0x0B, 0x04, 0x0C, 0x0A, 0x01, 0x0C, 0x05, 0x0E, 0x0E, 0x05, 0x0C, 0x01, 0x0A, 0x0C, + 0x04, 0x14, 0x0D, 0x0D, 0x04, 0x0E, 0x03, 0x0C, 0x0B, 0x05, 0x0C, 0x0C, 0x05, 0x0B, 0x0C, 0x03, + 0x0E, 0x05, 0x02, 0x0A, 0x27, 0x03, 0x04, 0x02, 0x02, 0x02, 0x04, 0x09, 0x27, 0x0A, 0x02, 0x23, + 0x08, 0x02, 0x02, 0x04, 0x08, 0x29, 0x08, 0x03, 0x03, 0x08, 0x29, 0x23, 0x02, 0x0A, 0x27, 0x09, + 0x04, 0x04, 0x09, 0x27, 0x0A, 0x02, 0x54, 0x08, 0x29, 0x08, 0x02, 0x02, 0x04, 0x08, 0x29, 0x08, + 0x03, 0x03, 0x57, 0x0A, 0x26, 0x09, 0x02, 0x02, 0x04, 0x09, 0x26, 0x0A, 0x04, 0x04, 0x0A, 0x26, + 0x09, 0x05, 0x05, 0x09, 0x26, 0x0A, 0x04, 0xEE, 0x0C, 0x0C, 0x02, 0x10, 0x03, 0x0A, 0x0C, 0x05, + 0x0C, 0x0C, 0x05, 0x0C, 0x0A, 0x03, 0x10, 0xEE, 0x0B, 0x08, 0x03, 0x01, 0x02, 0x2C, 0xE4, 0x26, + 0x02, 0x05, 0x03, 0x06, 0x06, 0x0A, 0x26, 0x09, 0x05, 0x05, 0x09, 0x26, 0x0A, 0x06, 0x06, 0x03, + 0x05, 0x02, 0x26, 0x09, 0x05, 0x05, 0xFE, 0xE4, 0x5B, 0x2F, 0x1A, 0x1A, 0x3B, 0x4F, 0x30, 0x0F, + 0x0B, 0x09, 0x11, 0x14, 0x16, 0x23, 0x0B, 0x0B, 0x0A, 0x0A, 0x0B, 0x0A, 0x1E, 0x14, 0x19, 0x12, + 0x04, 0x0E, 0x0F, 0x09, 0x0F, 0x06, 0x07, 0x07, 0x06, 0x07, 0x05, 0x0F, 0x0B, 0x02, 0x7A, 0x08, + 0x07, 0x02, 0x02, 0x0B, 0xC4, 0x0B, 0x03, 0x07, 0x07, 0xC4, 0x38, 0x07, 0x11, 0x0A, 0xFE, 0x5E, + 0x09, 0x0F, 0x07, 0x07, 0x08, 0x08, 0x07, 0x07, 0x0F, 0x09, 0x01, 0xA2, 0x0A, 0x11, 0x07, 0x07, + 0x07, 0x07, 0x07, 0x9D, 0x07, 0x07, 0x07, 0x0D, 0x0D, 0x07, 0x07, 0x07, 0x07, 0x08, 0x07, 0x0E, + 0x0E, 0x07, 0x08, 0x0E, 0x07, 0x07, 0x08, 0x07, 0x0E, 0x0E, 0x07, 0x08, 0x07, 0x07, 0x07, 0x07, + 0x0D, 0x0D, 0x07, 0xFE, 0x08, 0x06, 0x03, 0x03, 0x01, 0x04, 0x03, 0x27, 0x0A, 0x03, 0x03, 0x0A, + 0x35, 0x06, 0x01, 0x05, 0x02, 0x27, 0x0A, 0x03, 0x03, 0x0A, 0x27, 0x08, 0x06, 0x4E, 0x0A, 0x03, + 0x03, 0x0A, 0x27, 0x08, 0x06, 0x06, 0x08, 0x27, 0x0A, 0x03, 0x03, 0x03, 0x05, 0x02, 0x27, 0x08, + 0x06, 0x06, 0x08, 0x27, 0x0A, 0x5E, 0x06, 0x06, 0x01, 0x04, 0x03, 0x27, 0x0A, 0x03, 0x03, 0x0A, + 0x27, 0x08, 0x5E, 0x03, 0x03, 0x0A, 0x27, 0x08, 0x06, 0x06, 0x08, 0x27, 0x9B, 0x07, 0x07, 0x08, + 0x07, 0x0E, 0x0E, 0x07, 0x08, 0x07, 0x07, 0x07, 0x07, 0x0D, 0x0D, 0x07, 0xAC, 0x14, 0x15, 0x15, + 0x14, 0x2E, 0x16, 0x03, 0x03, 0x08, 0x27, 0x0A, 0x03, 0x03, 0x0A, 0x27, 0x08, 0x61, 0x03, 0x0A, + 0x27, 0x08, 0x03, 0x03, 0x06, 0x08, 0x27, 0x0A, 0x46, 0x20, 0x31, 0x31, 0x24, 0x7B, 0x7F, 0x2A, + 0x02, 0x02, 0x23, 0x04, 0x01, 0x0C, 0x0C, 0x0B, 0x1C, 0x12, 0x13, 0x1E, 0x0B, 0x0B, 0x0A, 0x03, + 0x04, 0x26, 0x06, 0x06, 0x05, 0x05, 0x10, 0x0B, 0x09, 0x0F, 0x06, 0x07, 0x07, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x5B, 0x00, 0xD5, 0x08, 0x53, 0x02, 0xAB, 0x01, 0x20, 0x00, 0x00, 0x01, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x0E, 0x01, 0x27, 0x30, 0x22, 0x23, 0x06, 0x26, + 0x27, 0x26, 0x06, 0x23, 0x22, 0x26, 0x07, 0x06, 0x26, 0x27, 0x30, 0x22, 0x31, 0x0E, 0x01, 0x23, + 0x22, 0x26, 0x27, 0x26, 0x06, 0x27, 0x2E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x0E, 0x01, 0x27, 0x2E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x26, + 0x35, 0x2A, 0x01, 0x31, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x26, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x14, 0x07, + 0x22, 0x06, 0x17, 0x22, 0x16, 0x31, 0x14, 0x16, 0x15, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x36, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x32, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x1E, 0x01, 0x17, + 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x17, 0x1E, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x37, 0x36, 0x16, 0x17, 0x30, 0x32, 0x33, 0x36, 0x32, + 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x36, 0x16, 0x17, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x32, 0x37, 0x36, + 0x16, 0x17, 0x30, 0x32, 0x31, 0x36, 0x32, 0x17, 0x16, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x32, + 0x37, 0x36, 0x16, 0x17, 0x3A, 0x01, 0x31, 0x3E, 0x01, 0x17, 0x16, 0x14, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x2E, 0x01, 0x27, 0x07, + 0xE4, 0x20, 0x43, 0x21, 0x33, 0x67, 0x33, 0x3E, 0x7B, 0x3E, 0x03, 0x0C, 0x03, 0x01, 0x01, 0x02, + 0x0D, 0x03, 0x07, 0x0B, 0x09, 0x09, 0x0B, 0x07, 0x03, 0x0D, 0x03, 0x01, 0x01, 0x03, 0x05, 0x05, + 0x04, 0x01, 0x07, 0x0C, 0x0B, 0x06, 0x10, 0x03, 0x04, 0x0B, 0x02, 0x05, 0x07, 0x05, 0x01, 0x04, + 0x07, 0x02, 0x07, 0x06, 0x07, 0x0A, 0x03, 0x01, 0x08, 0x02, 0x01, 0x05, 0x02, 0x05, 0x04, 0x01, + 0x01, 0x01, 0x0A, 0x05, 0x03, 0x02, 0x09, 0x0D, 0x1A, 0x0E, 0x09, 0x0E, 0x0B, 0x05, 0x0A, 0x05, + 0x06, 0x02, 0x01, 0x01, 0x03, 0x04, 0x09, 0x04, 0x02, 0x01, 0x04, 0x0B, 0x16, 0x0B, 0x06, 0x19, + 0x1E, 0x10, 0x26, 0x13, 0x42, 0x85, 0x43, 0x32, 0x67, 0x32, 0x1D, 0x39, 0x1D, 0x0C, 0x12, 0x0B, + 0x0F, 0x2B, 0x0E, 0x0B, 0x12, 0x05, 0x02, 0x03, 0x01, 0x01, 0x03, 0x0B, 0x01, 0x09, 0x01, 0x06, + 0x01, 0x01, 0x03, 0x02, 0x06, 0x1D, 0x1D, 0x18, 0x26, 0x10, 0x0A, 0x13, 0x0B, 0x10, 0x23, 0x11, + 0x43, 0x86, 0x43, 0x15, 0x2A, 0x16, 0x0E, 0x1D, 0x0F, 0x10, 0x21, 0x10, 0x09, 0x12, 0x08, 0x08, + 0x0D, 0x06, 0x16, 0x04, 0x11, 0x0B, 0x17, 0x0C, 0x05, 0x04, 0x01, 0x09, 0x11, 0x09, 0x01, 0x01, + 0x04, 0x08, 0x08, 0x10, 0x08, 0x06, 0x08, 0x06, 0x0E, 0x1B, 0x0E, 0x09, 0x01, 0x04, 0x06, 0x08, + 0x01, 0x01, 0x01, 0x02, 0x0E, 0x02, 0x05, 0x05, 0x02, 0x03, 0x0A, 0x06, 0x06, 0x07, 0x01, 0x06, + 0x04, 0x02, 0x05, 0x09, 0x03, 0x03, 0x06, 0x05, 0x04, 0x01, 0x06, 0x0C, 0x08, 0x06, 0x09, 0x03, + 0x02, 0x07, 0x01, 0x04, 0x0C, 0x02, 0x01, 0x03, 0x0D, 0x03, 0x06, 0x0C, 0x09, 0x06, 0x08, 0x03, + 0x02, 0x08, 0x01, 0x03, 0x0D, 0x01, 0x01, 0x01, 0x01, 0x0B, 0x04, 0x01, 0x04, 0x07, 0x0E, 0x07, + 0x1C, 0x37, 0x1C, 0x35, 0x6A, 0x35, 0x1E, 0x3E, 0x1F, 0x38, 0x76, 0x2C, 0x18, 0x3A, 0x1D, 0x01, + 0xF4, 0x09, 0x0F, 0x03, 0x05, 0x0A, 0x0F, 0x01, 0x10, 0x10, 0x01, 0x0F, 0x05, 0x16, 0x16, 0x05, + 0x10, 0x01, 0x0F, 0x04, 0x0D, 0x0E, 0x03, 0x05, 0x19, 0x03, 0x01, 0x18, 0x0D, 0x10, 0x0B, 0x0A, + 0x03, 0x14, 0x0D, 0x04, 0x0A, 0x04, 0x05, 0x0B, 0x01, 0x02, 0x09, 0x05, 0x03, 0x04, 0x04, 0x02, + 0x0D, 0x0E, 0x03, 0x07, 0x10, 0x0D, 0x09, 0x01, 0x0C, 0x03, 0x02, 0x03, 0x02, 0x03, 0x02, 0x06, + 0x0A, 0x15, 0x0A, 0x0C, 0x1A, 0x0C, 0x05, 0x19, 0x01, 0x03, 0x04, 0x03, 0x20, 0x3F, 0x11, 0x09, + 0x0C, 0x01, 0x02, 0x04, 0x03, 0x02, 0x08, 0x02, 0x01, 0x07, 0x03, 0x01, 0x0F, 0x04, 0x06, 0x02, + 0x0A, 0x08, 0x15, 0x0D, 0x06, 0x0E, 0x06, 0x05, 0x0F, 0x03, 0x23, 0x02, 0x01, 0x04, 0x09, 0x05, + 0x08, 0x10, 0x08, 0x1B, 0x2A, 0x04, 0x03, 0x22, 0x0E, 0x08, 0x04, 0x03, 0x04, 0x02, 0x02, 0x04, + 0x01, 0x01, 0x01, 0x01, 0x07, 0x01, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, 0x09, 0x05, 0x13, 0x3A, + 0x18, 0x03, 0x06, 0x04, 0x01, 0x0F, 0x04, 0x1A, 0x33, 0x19, 0x02, 0x04, 0x03, 0x08, 0x01, 0x01, + 0x01, 0x0A, 0x02, 0x01, 0x04, 0x04, 0x09, 0x0A, 0x13, 0x04, 0x0F, 0x0F, 0x04, 0x0A, 0x02, 0x05, + 0x05, 0x01, 0x02, 0x0A, 0x05, 0x04, 0x0A, 0x03, 0x0E, 0x13, 0x04, 0x03, 0x0E, 0x0E, 0x03, 0x05, + 0x16, 0x07, 0x06, 0x05, 0x06, 0x0F, 0x0A, 0x0A, 0x0F, 0x0F, 0x05, 0x16, 0x08, 0x05, 0x05, 0x06, + 0x0F, 0x0A, 0x0A, 0x06, 0x11, 0x0E, 0x04, 0x05, 0x03, 0x02, 0x03, 0x04, 0x08, 0x22, 0x26, 0x14, + 0x18, 0x08, 0x00, 0x00, 0x00, 0x02, 0x00, 0x67, 0x00, 0x29, 0x06, 0x14, 0x03, 0x57, 0x00, 0xC2, + 0x00, 0xDE, 0x00, 0x00, 0x01, 0x2E, 0x01, 0x37, 0x34, 0x36, 0x23, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x22, 0x06, 0x27, + 0x26, 0x36, 0x23, 0x2A, 0x01, 0x23, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x27, 0x22, 0x06, 0x23, 0x22, + 0x26, 0x23, 0x2E, 0x01, 0x23, 0x2E, 0x01, 0x23, 0x22, 0x26, 0x23, 0x22, 0x06, 0x23, 0x22, 0x06, + 0x07, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x26, 0x07, 0x06, 0x16, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x22, 0x23, 0x2A, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x15, 0x14, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, + 0x33, 0x32, 0x16, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x15, 0x14, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x1E, + 0x01, 0x37, 0x3E, 0x01, 0x33, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x33, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x27, 0x01, 0x06, 0x22, 0x23, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x34, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x15, 0x14, 0x16, + 0x07, 0x06, 0x14, 0x02, 0x03, 0x01, 0x01, 0x0D, 0x04, 0x15, 0x01, 0x02, 0x08, 0x0B, 0x0C, 0x13, + 0x0A, 0x08, 0x0B, 0x0A, 0x07, 0x1F, 0x07, 0x04, 0x01, 0x03, 0x01, 0x0F, 0x01, 0x04, 0x05, 0x08, + 0x06, 0x0E, 0x06, 0x37, 0x6F, 0x37, 0x11, 0x22, 0x12, 0x05, 0x03, 0x03, 0x07, 0x0C, 0x06, 0x2E, + 0x5E, 0x2F, 0x16, 0x2C, 0x16, 0x0B, 0x0B, 0x09, 0x32, 0x64, 0x32, 0x0F, 0x17, 0x0F, 0x09, 0x17, + 0x06, 0x04, 0x14, 0x05, 0x06, 0x22, 0x04, 0x05, 0x08, 0x06, 0x0F, 0x1F, 0x09, 0x07, 0x0D, 0x0E, + 0x03, 0x09, 0x03, 0x02, 0x09, 0x02, 0x04, 0x10, 0x02, 0x02, 0x02, 0x0C, 0x04, 0x04, 0x0A, 0x03, + 0x02, 0x05, 0x02, 0x04, 0x17, 0x10, 0x11, 0x24, 0x0B, 0x0B, 0x08, 0x0F, 0x0A, 0x13, 0x0A, 0x11, + 0x25, 0x12, 0x19, 0x1C, 0x05, 0x03, 0x03, 0x08, 0x02, 0x05, 0x0B, 0x05, 0x10, 0x1B, 0x0D, 0x09, + 0x0B, 0x01, 0x01, 0x08, 0x0F, 0x07, 0x0E, 0x08, 0x2D, 0x58, 0x2E, 0x25, 0x4A, 0x24, 0x04, 0x11, + 0x02, 0x04, 0x06, 0x02, 0x06, 0x0C, 0x05, 0x05, 0x0A, 0x19, 0x0D, 0x2A, 0x10, 0x14, 0x28, 0x15, + 0x0A, 0x15, 0x0B, 0x0C, 0x0B, 0x05, 0x08, 0x07, 0x13, 0x0E, 0x0C, 0x1B, 0x11, 0x21, 0x43, 0x21, + 0x34, 0x67, 0x67, 0x67, 0x33, 0x0A, 0x0E, 0x04, 0x07, 0x0D, 0x05, 0x05, 0x10, 0x02, 0xFD, 0x03, + 0x08, 0x23, 0x11, 0x0D, 0x25, 0x0C, 0x0C, 0x09, 0x04, 0x02, 0x27, 0x12, 0x10, 0x21, 0x11, 0x1C, + 0x03, 0x01, 0x06, 0x02, 0xEE, 0x0A, 0x14, 0x0B, 0x0B, 0x0D, 0x02, 0x04, 0x04, 0x0A, 0x0E, 0x03, + 0x03, 0x0C, 0x06, 0x05, 0x01, 0x04, 0x04, 0x02, 0x0A, 0x02, 0x01, 0x01, 0x04, 0x0C, 0x01, 0x01, + 0x01, 0x0D, 0x05, 0x01, 0x02, 0x01, 0x01, 0x0F, 0x01, 0x0A, 0x01, 0x03, 0x06, 0x04, 0x18, 0x04, + 0x04, 0x04, 0x1B, 0x04, 0x08, 0x17, 0x0F, 0x0C, 0x02, 0x01, 0x06, 0x01, 0x02, 0x03, 0x02, 0x0F, + 0x03, 0x08, 0x13, 0x07, 0x08, 0x0D, 0x0A, 0x09, 0x13, 0x0A, 0x11, 0x07, 0x05, 0x05, 0x10, 0x0F, + 0x0F, 0x0A, 0x01, 0x01, 0x03, 0x04, 0x1C, 0x19, 0x0E, 0x18, 0x0E, 0x06, 0x0F, 0x06, 0x0C, 0x19, + 0x0D, 0x25, 0x4C, 0x26, 0x1D, 0x3C, 0x1E, 0x0B, 0x23, 0x02, 0x01, 0x01, 0x02, 0x01, 0x03, 0x02, + 0x0D, 0x0A, 0x24, 0x0B, 0x0F, 0x1D, 0x0F, 0x1F, 0x3D, 0x1F, 0x1B, 0x2E, 0x11, 0x0A, 0x11, 0x02, + 0x01, 0x03, 0x02, 0x02, 0x02, 0x03, 0x02, 0x0D, 0x15, 0x2D, 0x14, 0x0F, 0x28, 0x09, 0x09, 0x16, + 0x02, 0x0B, 0x13, 0x27, 0x13, 0x10, 0x27, 0x10, 0xFE, 0xCD, 0x12, 0x04, 0x04, 0x04, 0x05, 0x0B, + 0x06, 0x09, 0x07, 0x13, 0x25, 0x12, 0x1A, 0x03, 0x31, 0x13, 0x0F, 0x1F, 0x0D, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x5B, 0x00, 0x42, 0x0C, 0x12, 0x03, 0x3D, 0x01, 0x8A, 0x01, 0x9D, 0x01, 0xA6, + 0x01, 0xB2, 0x00, 0x00, 0x01, 0x34, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x03, 0x23, 0x2A, 0x03, + 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x35, 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, 0x27, + 0x26, 0x06, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x36, + 0x26, 0x35, 0x34, 0x36, 0x27, 0x26, 0x06, 0x23, 0x22, 0x14, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x36, 0x35, 0x34, 0x36, 0x27, 0x26, 0x06, 0x23, + 0x22, 0x16, 0x07, 0x06, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x14, 0x06, 0x17, 0x16, 0x36, 0x17, 0x1E, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x06, 0x07, 0x06, 0x22, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x06, 0x27, 0x26, 0x36, 0x37, + 0x36, 0x34, 0x35, 0x34, 0x36, 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x26, 0x07, 0x0E, 0x01, 0x07, 0x14, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x2E, 0x01, 0x07, 0x0E, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x07, 0x06, 0x16, 0x15, 0x1C, 0x01, 0x15, + 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x37, 0x36, 0x32, 0x37, 0x06, 0x16, 0x35, 0x34, + 0x26, 0x27, 0x3C, 0x01, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x32, 0x17, 0x16, 0x36, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x33, + 0x32, 0x36, 0x17, 0x16, 0x36, 0x33, 0x32, 0x16, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x14, 0x15, 0x14, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x35, + 0x1E, 0x01, 0x33, 0x3A, 0x02, 0x36, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x33, 0x3A, 0x02, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x06, 0x17, 0x14, 0x16, 0x37, + 0x14, 0x06, 0x17, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x06, 0x14, 0x15, 0x14, 0x06, 0x07, 0x06, + 0x16, 0x15, 0x1C, 0x01, 0x17, 0x16, 0x36, 0x37, 0x06, 0x16, 0x17, 0x22, 0x06, 0x17, 0x16, 0x36, + 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x27, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x3E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, 0x27, 0x26, + 0x36, 0x35, 0x34, 0x36, 0x35, 0x34, 0x26, 0x37, 0x16, 0x3A, 0x01, 0x16, 0x33, 0x3A, 0x01, 0x33, + 0x16, 0x32, 0x33, 0x36, 0x16, 0x35, 0x3C, 0x01, 0x35, 0x01, 0x0E, 0x01, 0x23, 0x22, 0x06, 0x07, + 0x22, 0x26, 0x27, 0x26, 0x36, 0x37, 0x36, 0x16, 0x33, 0x32, 0x36, 0x07, 0x25, 0x26, 0x36, 0x37, + 0x1C, 0x01, 0x17, 0x06, 0x26, 0x17, 0x36, 0x26, 0x35, 0x3C, 0x01, 0x35, 0x26, 0x16, 0x33, 0x0E, + 0x01, 0x0C, 0x12, 0x08, 0x0D, 0x23, 0x6E, 0x23, 0x3C, 0x79, 0x79, 0x79, 0x3C, 0x43, 0x86, 0x86, + 0x86, 0x43, 0x0F, 0x1E, 0x0F, 0x0A, 0x01, 0x06, 0x0F, 0x13, 0x31, 0x13, 0x0D, 0x33, 0x09, 0x07, + 0x17, 0x0A, 0x0D, 0x20, 0x0F, 0x38, 0x70, 0x39, 0x04, 0x02, 0x04, 0x02, 0x06, 0x3E, 0x0A, 0x0D, + 0x04, 0x0D, 0x18, 0x0D, 0x21, 0x41, 0x21, 0x08, 0x01, 0x02, 0x03, 0x07, 0x37, 0x0C, 0x11, 0x0D, + 0x05, 0x06, 0x40, 0x0D, 0x09, 0x0C, 0x01, 0x03, 0x04, 0x06, 0x2C, 0x10, 0x14, 0x30, 0x17, 0x0E, + 0x1B, 0x0E, 0x02, 0x01, 0x01, 0x02, 0x0E, 0x03, 0x12, 0x23, 0x11, 0x0B, 0x1C, 0x0D, 0x0E, 0x21, + 0x10, 0x0F, 0x1E, 0x10, 0x0C, 0x1C, 0x0F, 0x0A, 0x40, 0x06, 0x03, 0x0A, 0x01, 0x01, 0x05, 0x01, + 0x02, 0x12, 0x0C, 0x1E, 0x3C, 0x1F, 0x25, 0x4A, 0x25, 0x0D, 0x29, 0x0B, 0x0A, 0x04, 0x01, 0x04, + 0x02, 0x03, 0x09, 0x01, 0x0D, 0x20, 0x0D, 0x04, 0x06, 0x04, 0x06, 0x0D, 0x06, 0x13, 0x27, 0x13, + 0x05, 0x12, 0x03, 0x05, 0x03, 0x0F, 0x11, 0x1A, 0x33, 0x1A, 0x04, 0x69, 0x08, 0x01, 0x05, 0x0D, + 0x07, 0x07, 0x07, 0x3C, 0x79, 0x3C, 0x08, 0x0F, 0x07, 0x07, 0x04, 0x09, 0x05, 0x29, 0x02, 0x05, + 0x19, 0x06, 0x06, 0x05, 0x07, 0x08, 0x07, 0x04, 0x0B, 0x0A, 0x16, 0x0B, 0x04, 0x0C, 0x02, 0x01, + 0x0C, 0x0C, 0x03, 0x05, 0x0A, 0x03, 0x03, 0x0B, 0x03, 0x03, 0x0F, 0x04, 0x09, 0x3A, 0x13, 0x09, + 0x20, 0x0A, 0x05, 0x17, 0x01, 0x04, 0x07, 0x02, 0x01, 0x04, 0x06, 0x05, 0x07, 0x04, 0x03, 0x0B, + 0x03, 0x05, 0x03, 0x36, 0x6C, 0x6B, 0x6B, 0x35, 0x05, 0x11, 0x03, 0x07, 0x0F, 0x06, 0x05, 0x11, + 0x07, 0x07, 0x0B, 0x09, 0x3E, 0x7C, 0x7C, 0x7B, 0x3E, 0x32, 0x63, 0x31, 0x0A, 0x01, 0x01, 0x09, + 0x0C, 0x03, 0x04, 0x12, 0x06, 0x0B, 0x13, 0x01, 0x14, 0x04, 0x06, 0x01, 0x0D, 0x11, 0x26, 0x11, + 0x07, 0x22, 0x02, 0x0E, 0x06, 0x05, 0x05, 0x2C, 0x07, 0x09, 0x07, 0x05, 0x04, 0x0B, 0x08, 0x06, + 0x0C, 0x05, 0x05, 0x07, 0x04, 0x05, 0x11, 0x0D, 0x01, 0x03, 0x04, 0x02, 0x04, 0x01, 0x04, 0x02, + 0x01, 0x06, 0x04, 0x03, 0x01, 0x36, 0x6C, 0x6B, 0x6C, 0x36, 0x3E, 0x7C, 0x3E, 0x0B, 0x16, 0x0B, + 0x16, 0x0C, 0xF5, 0xAF, 0x01, 0x1C, 0x05, 0x06, 0x07, 0x05, 0x03, 0x1B, 0x03, 0x02, 0x03, 0x02, + 0x06, 0x2B, 0x0A, 0x09, 0x10, 0x02, 0x02, 0x06, 0x01, 0x0C, 0x05, 0x0B, 0x09, 0x11, 0x43, 0x01, + 0x09, 0x03, 0x3D, 0x0A, 0x05, 0x21, 0x02, 0x68, 0x07, 0x01, 0x04, 0x0B, 0x13, 0x27, 0x13, 0x0A, + 0x13, 0x09, 0x0A, 0x0C, 0x05, 0x06, 0x06, 0x05, 0x0A, 0x07, 0x0A, 0x05, 0x07, 0x09, 0x0F, 0x1D, + 0x0E, 0x06, 0x11, 0x05, 0x0A, 0x05, 0x27, 0x0B, 0x07, 0x0F, 0x08, 0x04, 0x07, 0x11, 0x07, 0x06, + 0x13, 0x05, 0x0B, 0x05, 0x2F, 0x08, 0x0C, 0x0A, 0x04, 0x03, 0x0B, 0x0B, 0x0C, 0x2C, 0x0C, 0x10, + 0x05, 0x01, 0x01, 0x01, 0x05, 0x02, 0x01, 0x01, 0x03, 0x07, 0x05, 0x14, 0x09, 0x09, 0x10, 0x07, + 0x07, 0x0D, 0x05, 0x05, 0x05, 0x08, 0x08, 0x04, 0x0A, 0x04, 0x03, 0x0A, 0x05, 0x08, 0x15, 0x07, + 0x0E, 0x08, 0x04, 0x05, 0x04, 0x14, 0x0A, 0x04, 0x0B, 0x05, 0x05, 0x07, 0x05, 0x01, 0x05, 0x01, + 0x01, 0x04, 0x04, 0x07, 0x20, 0x09, 0x0B, 0x17, 0x0B, 0x28, 0x4E, 0x28, 0x13, 0x28, 0x14, 0x12, + 0x0B, 0x01, 0x01, 0x01, 0x13, 0x03, 0x17, 0x0A, 0x0B, 0x09, 0x06, 0x0B, 0x06, 0x0C, 0x04, 0x02, + 0x03, 0x1A, 0x32, 0x1A, 0x03, 0x06, 0x03, 0x03, 0x09, 0x02, 0x02, 0x04, 0x0A, 0x18, 0x06, 0x08, + 0x12, 0x06, 0x04, 0x02, 0x01, 0x03, 0x02, 0x01, 0x23, 0x07, 0x06, 0x0C, 0x07, 0x03, 0x14, 0x02, + 0x02, 0x14, 0x05, 0x06, 0x0C, 0x06, 0x07, 0x14, 0x08, 0x0B, 0x15, 0x0B, 0x14, 0x11, 0x07, 0x04, + 0x09, 0x01, 0x01, 0x09, 0x04, 0x0D, 0x20, 0x0D, 0x0E, 0x0E, 0x0E, 0x0A, 0x10, 0x09, 0x06, 0x0F, + 0x07, 0x01, 0x01, 0x01, 0x20, 0x04, 0x0A, 0x14, 0x0A, 0x0A, 0x15, 0x09, 0x08, 0x0D, 0x01, 0x0D, + 0x08, 0x08, 0x17, 0x04, 0x11, 0x28, 0x0F, 0x0B, 0x0F, 0x12, 0x0A, 0x05, 0x09, 0x04, 0x03, 0x02, + 0x03, 0x05, 0x13, 0x08, 0x0C, 0x0C, 0x02, 0x02, 0x04, 0x01, 0x0A, 0x3D, 0x0C, 0x3A, 0x0A, 0x09, + 0x04, 0x02, 0x06, 0x05, 0x19, 0x04, 0x0B, 0x0D, 0x07, 0x07, 0x11, 0x09, 0x0B, 0x34, 0x02, 0x04, + 0x11, 0x05, 0x04, 0x07, 0x03, 0x07, 0x0E, 0x0A, 0x0A, 0x14, 0x0B, 0x06, 0x13, 0x05, 0x04, 0x13, + 0x07, 0x14, 0x24, 0x15, 0x11, 0x22, 0x11, 0x01, 0x01, 0x01, 0x01, 0x02, 0x08, 0x09, 0x28, 0x09, + 0xFE, 0xFD, 0x07, 0x0E, 0x07, 0x02, 0x01, 0x04, 0x03, 0x1B, 0x02, 0x07, 0x04, 0x01, 0x0B, 0x2F, + 0x09, 0x0A, 0x04, 0x0B, 0x17, 0x06, 0x04, 0x0B, 0x07, 0x07, 0x03, 0x06, 0x05, 0x08, 0x05, 0x0F, + 0x04, 0x16, 0x15, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0xC7, 0xA6, 0x7D, + 0x5F, 0x0F, 0x3C, 0xF5, 0x00, 0x0B, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD5, 0x3D, 0x43, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0xD5, 0x3D, 0x43, 0xBB, 0x00, 0x00, 0xFF, 0xF3, 0x0D, 0x35, 0x03, 0x8D, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x03, 0xC0, 0xFF, 0xC0, 0x00, 0x00, 0x0D, 0xB3, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x35, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3A, + 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x4D, 0x00, 0x54, + 0x02, 0xE6, 0x00, 0x56, 0x04, 0x00, 0x00, 0x63, 0x03, 0x00, 0x00, 0x67, 0x09, 0xB3, 0x00, 0x59, + 0x05, 0x4D, 0x00, 0x69, 0x0B, 0x4D, 0x00, 0x61, 0x08, 0xCD, 0x00, 0x56, 0x08, 0x33, 0x00, 0x50, + 0x05, 0x00, 0x00, 0x64, 0x07, 0x4D, 0x00, 0x58, 0x07, 0xE6, 0x00, 0x63, 0x0A, 0x4D, 0x00, 0x56, + 0x0B, 0x4D, 0x00, 0x5C, 0x0A, 0x80, 0x00, 0x59, 0x0A, 0xCD, 0x00, 0x5B, 0x09, 0x80, 0x00, 0x59, + 0x02, 0xE6, 0x00, 0x64, 0x06, 0x00, 0x00, 0x5B, 0x08, 0xCD, 0x00, 0x55, 0x0A, 0x9A, 0x00, 0x50, + 0x09, 0x80, 0x00, 0x66, 0x0D, 0xB3, 0x00, 0x63, 0x05, 0x4D, 0x00, 0x5B, 0x06, 0x4D, 0x00, 0x4E, + 0x08, 0xCD, 0x00, 0x55, 0x0A, 0xB3, 0x00, 0x57, 0x02, 0x1A, 0x00, 0x55, 0x09, 0x00, 0x00, 0x52, + 0x08, 0x66, 0x00, 0x53, 0x08, 0xCD, 0x00, 0x54, 0x01, 0xE6, 0x00, 0x4D, 0x0D, 0x9A, 0x00, 0x5D, + 0x0B, 0x66, 0x00, 0x5D, 0x0C, 0x1A, 0x00, 0x67, 0x06, 0x00, 0x00, 0x6D, 0x02, 0xE6, 0x00, 0x53, + 0x05, 0x00, 0x00, 0x58, 0x02, 0x00, 0x00, 0x51, 0x09, 0x4D, 0x00, 0x53, 0x08, 0x4D, 0x00, 0x53, + 0x03, 0x9A, 0x00, 0x60, 0x0A, 0x00, 0x00, 0x4F, 0x0B, 0x1A, 0x00, 0x5A, 0x09, 0x4D, 0x00, 0x53, + 0x05, 0x4D, 0x00, 0x54, 0x0A, 0x9A, 0x00, 0x5B, 0x05, 0x9A, 0x00, 0x62, 0x08, 0xCD, 0x00, 0x53, + 0x09, 0x80, 0x00, 0x65, 0x08, 0xCD, 0x00, 0x55, 0x04, 0x00, 0x00, 0x66, 0x08, 0xCD, 0x00, 0x5B, + 0x06, 0x80, 0x00, 0x67, 0x0C, 0x80, 0x00, 0x5B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x14, + 0x01, 0xAC, 0x02, 0x66, 0x03, 0xDA, 0x04, 0xBA, 0x07, 0x80, 0x08, 0x52, 0x0A, 0x14, 0x0C, 0x3A, + 0x0E, 0x0C, 0x0F, 0x96, 0x11, 0x42, 0x12, 0xC2, 0x13, 0xCE, 0x16, 0xBA, 0x19, 0x82, 0x1B, 0x5C, + 0x1C, 0x28, 0x1C, 0xDC, 0x1E, 0x74, 0x20, 0xCC, 0x22, 0xDC, 0x25, 0x4C, 0x26, 0xD2, 0x28, 0x30, + 0x2A, 0x6A, 0x2B, 0x64, 0x2D, 0x8A, 0x2E, 0x9A, 0x2F, 0xD0, 0x31, 0x22, 0x32, 0x58, 0x32, 0xB2, + 0x33, 0xA4, 0x36, 0x14, 0x37, 0xEE, 0x38, 0xD2, 0x39, 0xC6, 0x3A, 0xDC, 0x3B, 0xE8, 0x3E, 0x12, + 0x3F, 0x5A, 0x40, 0x06, 0x41, 0xE6, 0x42, 0xC2, 0x44, 0x34, 0x45, 0x34, 0x47, 0x3C, 0x48, 0xC6, + 0x4A, 0x32, 0x4B, 0xCE, 0x4D, 0xEC, 0x4F, 0x6C, 0x50, 0xFE, 0x52, 0x34, 0x54, 0x6E, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x3A, 0x02, 0x2F, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0E, 0x00, 0xAE, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x07, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x07, 0x00, 0x60, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x07, 0x00, 0x36, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x07, 0x00, 0x75, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0B, + 0x00, 0x15, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x07, 0x00, 0x4B, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x1A, 0x00, 0x8A, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x01, 0x00, 0x0E, 0x00, 0x07, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x02, 0x00, 0x0E, + 0x00, 0x67, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x03, 0x00, 0x0E, 0x00, 0x3D, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x04, 0x00, 0x0E, 0x00, 0x7C, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x05, 0x00, 0x16, 0x00, 0x20, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x06, 0x00, 0x0E, + 0x00, 0x52, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x0A, 0x00, 0x34, 0x00, 0xA4, 0x69, 0x63, + 0x6F, 0x6D, 0x6F, 0x6F, 0x6E, 0x00, 0x69, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6F, 0x00, + 0x6F, 0x00, 0x6E, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6F, 0x6E, 0x20, 0x31, 0x2E, 0x30, 0x00, 0x56, + 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x31, + 0x00, 0x2E, 0x00, 0x30, 0x69, 0x63, 0x6F, 0x6D, 0x6F, 0x6F, 0x6E, 0x00, 0x69, 0x00, 0x63, 0x00, + 0x6F, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6E, 0x69, 0x63, 0x6F, 0x6D, 0x6F, 0x6F, 0x6E, + 0x00, 0x69, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6E, 0x52, 0x65, + 0x67, 0x75, 0x6C, 0x61, 0x72, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6C, 0x00, + 0x61, 0x00, 0x72, 0x69, 0x63, 0x6F, 0x6D, 0x6F, 0x6F, 0x6E, 0x00, 0x69, 0x00, 0x63, 0x00, 0x6F, + 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6E, 0x46, 0x6F, 0x6E, 0x74, 0x20, 0x67, 0x65, 0x6E, + 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x49, 0x63, 0x6F, 0x4D, 0x6F, 0x6F, + 0x6E, 0x2E, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x67, 0x00, 0x65, + 0x00, 0x6E, 0x00, 0x65, 0x00, 0x72, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, + 0x00, 0x62, 0x00, 0x79, 0x00, 0x20, 0x00, 0x49, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x4D, 0x00, 0x6F, + 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 +}; +BYTE NanoX1[/*5192*/] = { +0x00, 0x01, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x80, 0x00, +0x03, 0x00, 0x70, 0x46, 0x46, 0x54, 0x4D, 0x89, 0x4A, 0x81, +0x8C, 0x00, 0x00, 0x14, 0x2C, 0x00, 0x00, 0x00, 0x1C, 0x47, +0x44, 0x45, 0x46, 0x00, 0x27, 0x00, 0x35, 0x00, 0x00, 0x14, +0x04, 0x00, 0x00, 0x00, 0x26, 0x4F, 0x53, 0x2F, 0x32, 0x5A, +0x3F, 0x53, 0x86, 0x00, 0x00, 0x01, 0x78, 0x00, 0x00, 0x00, +0x60, 0x63, 0x6D, 0x61, 0x70, 0x1E, 0x91, 0x1C, 0xD8, 0x00, +0x00, 0x02, 0x14, 0x00, 0x00, 0x01, 0x62, 0x63, 0x76, 0x74, +0x20, 0x00, 0x21, 0x02, 0x79, 0x00, 0x00, 0x03, 0x80, 0x00, +0x00, 0x00, 0x04, 0x67, 0x61, 0x73, 0x70, 0x00, 0x00, 0x00, +0x10, 0x00, 0x00, 0x13, 0xFC, 0x00, 0x00, 0x00, 0x08, 0x67, +0x6C, 0x79, 0x66, 0x46, 0x7D, 0xFA, 0x9C, 0x00, 0x00, 0x03, +0xA4, 0x00, 0x00, 0x0D, 0xEC, 0x68, 0x65, 0x61, 0x64, 0x12, +0x95, 0x62, 0xDB, 0x00, 0x00, 0x00, 0xFC, 0x00, 0x00, 0x00, +0x36, 0x68, 0x68, 0x65, 0x61, 0x06, 0xE9, 0x03, 0x64, 0x00, +0x00, 0x01, 0x34, 0x00, 0x00, 0x00, 0x24, 0x68, 0x6D, 0x74, +0x78, 0x24, 0x6D, 0x02, 0xE5, 0x00, 0x00, 0x01, 0xD8, 0x00, +0x00, 0x00, 0x3C, 0x6C, 0x6F, 0x63, 0x61, 0x15, 0x12, 0x17, +0x8C, 0x00, 0x00, 0x03, 0x84, 0x00, 0x00, 0x00, 0x20, 0x6D, +0x61, 0x78, 0x70, 0x00, 0x5C, 0x01, 0x24, 0x00, 0x00, 0x01, +0x58, 0x00, 0x00, 0x00, 0x20, 0x6E, 0x61, 0x6D, 0x65, 0xDB, +0x92, 0x43, 0x67, 0x00, 0x00, 0x11, 0x90, 0x00, 0x00, 0x02, +0x19, 0x70, 0x6F, 0x73, 0x74, 0x70, 0x46, 0x50, 0x20, 0x00, +0x00, 0x13, 0xAC, 0x00, 0x00, 0x00, 0x50, 0x70, 0x72, 0x65, +0x70, 0x68, 0x06, 0x8C, 0x85, 0x00, 0x00, 0x03, 0x78, 0x00, +0x00, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, +0x00, 0x3C, 0x8B, 0x18, 0x4A, 0x5F, 0x0F, 0x3C, 0xF5, 0x00, +0x0B, 0x03, 0xE8, 0x00, 0x00, 0x00, 0x00, 0xD5, 0x6E, 0x7C, +0x67, 0x00, 0x00, 0x00, 0x00, 0xDA, 0x73, 0xA2, 0xEF, 0x00, +0x21, 0xFF, 0xAB, 0x03, 0x73, 0x02, 0xF5, 0x00, 0x00, 0x00, +0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x01, 0x00, 0x00, 0x03, 0x1A, 0xFF, 0xAC, 0x00, 0x5A, 0x03, +0xA8, 0x00, 0x00, 0x00, 0x00, 0x03, 0x73, 0x00, 0x01, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x01, 0x00, 0x00, 0x00, +0x0F, 0x01, 0x21, 0x00, 0x0B, 0x00, 0x00, 0x00, 0x00, 0x00, +0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, +0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x02, +0xBA, 0x01, 0x90, 0x00, 0x05, 0x00, 0x00, 0x02, 0x8A, 0x02, +0xBC, 0x00, 0x00, 0x00, 0x8C, 0x02, 0x8A, 0x02, 0xBC, 0x00, +0x00, 0x01, 0xE0, 0x00, 0x31, 0x01, 0x02, 0x00, 0x00, 0x02, +0x00, 0x05, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x43, 0x4C, 0x47, 0x52, 0x00, +0x40, 0x00, 0x0D, 0x00, 0xA0, 0x03, 0x20, 0xFF, 0x38, 0x00, +0x5A, 0x03, 0x1A, 0x00, 0x54, 0x00, 0x00, 0x00, 0x01, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x73, 0x00, 0x00, 0x00, +0x20, 0x00, 0x01, 0x01, 0x6C, 0x00, 0x21, 0x00, 0xFA, 0x00, +0x00, 0x01, 0x4D, 0x00, 0x00, 0x00, 0xFA, 0x00, 0x00, 0x00, +0xFA, 0x00, 0x00, 0x03, 0x06, 0x00, 0x48, 0x03, 0x92, 0x00, +0x45, 0x03, 0xA8, 0x00, 0x37, 0x03, 0x8F, 0x00, 0x34, 0x03, +0x5B, 0x00, 0x34, 0x03, 0x06, 0x00, 0x87, 0x03, 0x92, 0x00, +0x62, 0x03, 0x05, 0x00, 0x48, 0x03, 0x05, 0x00, 0x67, 0x00, +0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, +0x03, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x01, 0x00, 0x00, 0x00, +0x00, 0x00, 0x5C, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, +0x1C, 0x00, 0x04, 0x00, 0x40, 0x00, 0x00, 0x00, 0x0C, 0x00, +0x08, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x0D, 0x00, +0x20, 0x00, 0x49, 0x00, 0xA0, 0xFF, 0xFF, 0x00, 0x00, 0x00, +0x00, 0x00, 0x0D, 0x00, 0x20, 0x00, 0x41, 0x00, 0xA0, 0xFF, +0xFF, 0x00, 0x01, 0xFF, 0xF6, 0xFF, 0xE4, 0xFF, 0xC4, 0xFF, +0x6E, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x06, 0x00, +0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, +0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x06, 0x07, 0x08, +0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xB8, +0x01, 0xFF, 0x85, 0xB0, 0x04, 0x8D, 0x00, 0x00, 0x21, 0x02, +0x79, 0x00, 0x00, 0x00, 0x14, 0x00, 0x14, 0x00, 0x14, 0x00, +0x14, 0x00, 0x14, 0x01, 0x20, 0x01, 0x7C, 0x02, 0x60, 0x03, +0xE0, 0x04, 0x48, 0x04, 0x8A, 0x06, 0x2C, 0x06, 0x74, 0x06, +0xF6, 0x06, 0xF6, 0x00, 0x02, 0x00, 0x21, 0x00, 0x00, 0x01, +0x2A, 0x02, 0x9A, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x33, +0x11, 0x21, 0x11, 0x27, 0x33, 0x11, 0x23, 0x21, 0x01, 0x09, +0xE8, 0xC7, 0xC7, 0x02, 0x9A, 0xFD, 0x66, 0x21, 0x02, 0x58, +0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x48, 0x00, 0x2D, 0x02, +0xDB, 0x02, 0x73, 0x00, 0x0A, 0x00, 0x1A, 0x00, 0x25, 0x00, +0x32, 0x00, 0x3D, 0x00, 0x4B, 0x00, 0x74, 0x00, 0xC9, 0x00, +0x00, 0x01, 0x36, 0x32, 0x16, 0x15, 0x14, 0x23, 0x22, 0x26, +0x35, 0x34, 0x37, 0x36, 0x33, 0x32, 0x17, 0x16, 0x15, 0x14, +0x07, 0x06, 0x23, 0x22, 0x27, 0x26, 0x35, 0x34, 0x37, 0x36, +0x33, 0x32, 0x15, 0x14, 0x07, 0x23, 0x22, 0x35, 0x34, 0x35, +0x36, 0x33, 0x32, 0x17, 0x14, 0x32, 0x15, 0x14, 0x06, 0x22, +0x35, 0x34, 0x27, 0x36, 0x33, 0x32, 0x15, 0x14, 0x07, 0x06, +0x23, 0x22, 0x34, 0x05, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, +0x16, 0x33, 0x32, 0x37, 0x36, 0x35, 0x34, 0x27, 0x26, 0x23, +0x0E, 0x03, 0x07, 0x06, 0x07, 0x06, 0x14, 0x0E, 0x01, 0x16, +0x33, 0x32, 0x17, 0x16, 0x33, 0x32, 0x37, 0x36, 0x17, 0x16, +0x36, 0x17, 0x16, 0x37, 0x36, 0x32, 0x27, 0x26, 0x37, 0x36, +0x35, 0x34, 0x26, 0x2B, 0x01, 0x06, 0x27, 0x3E, 0x01, 0x37, +0x33, 0x32, 0x1F, 0x01, 0x33, 0x32, 0x17, 0x16, 0x15, 0x14, +0x07, 0x06, 0x0F, 0x01, 0x17, 0x16, 0x1D, 0x01, 0x14, 0x0E, +0x01, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x17, 0x16, 0x33, 0x32, +0x15, 0x14, 0x07, 0x06, 0x23, 0x22, 0x27, 0x26, 0x23, 0x22, +0x07, 0x06, 0x15, 0x14, 0x17, 0x16, 0x33, 0x32, 0x36, 0x33, +0x36, 0x33, 0x32, 0x15, 0x14, 0x06, 0x07, 0x06, 0x15, 0x14, +0x17, 0x16, 0x15, 0x14, 0x07, 0x06, 0x23, 0x22, 0x27, 0x2E, +0x01, 0x35, 0x34, 0x37, 0x36, 0x35, 0x34, 0x27, 0x26, 0x35, +0x34, 0x02, 0x7A, 0x03, 0x0A, 0x0A, 0x05, 0x07, 0x0C, 0x1B, +0x03, 0x02, 0x04, 0x0F, 0x10, 0x01, 0x03, 0x02, 0x04, 0x0F, +0x10, 0x08, 0x05, 0x13, 0x28, 0x1C, 0x0A, 0x1C, 0x0D, 0x06, +0x04, 0x04, 0x01, 0x1A, 0x10, 0x15, 0x05, 0x04, 0x0A, 0x04, +0x07, 0x07, 0x05, 0xFE, 0xF3, 0x08, 0x14, 0x13, 0x21, 0x14, +0x19, 0x12, 0x0C, 0x0C, 0x90, 0x03, 0x04, 0x03, 0x0F, 0x09, +0x0B, 0x02, 0x06, 0x0E, 0x0D, 0x0A, 0x02, 0x05, 0x05, 0x09, +0x0D, 0x0C, 0x0A, 0x03, 0x02, 0x0D, 0x0C, 0x0B, 0x1A, 0x06, +0x06, 0x08, 0x07, 0x14, 0x04, 0x03, 0x06, 0x01, 0x2C, 0x0E, +0x02, 0x0C, 0x66, 0x1D, 0x27, 0x33, 0x05, 0x50, 0x38, 0x1A, +0x59, 0x57, 0x18, 0x1A, 0x0E, 0x0E, 0x4C, 0x49, 0x02, 0x03, +0x03, 0x06, 0x08, 0x0C, 0x0F, 0x04, 0x07, 0x09, 0x15, 0x09, +0x0B, 0x05, 0x02, 0x0A, 0x09, 0x19, 0x22, 0x0F, 0x07, 0x0D, +0x0E, 0x13, 0x02, 0x0B, 0x03, 0x06, 0x0C, 0x10, 0x16, 0x0D, +0x0E, 0x01, 0x02, 0x10, 0x22, 0x26, 0x43, 0x59, 0x1F, 0x13, +0x05, 0x05, 0x0B, 0x0F, 0x01, 0xDE, 0x07, 0x0C, 0x08, 0x0F, +0x10, 0x08, 0x03, 0x15, 0x06, 0x0E, 0x10, 0x0A, 0x03, 0x02, +0x06, 0x0E, 0x10, 0x0A, 0x03, 0x24, 0x06, 0x0C, 0x0A, 0x01, +0x0B, 0x02, 0x36, 0x0D, 0x06, 0x01, 0x01, 0x08, 0x1B, 0x06, +0x08, 0x20, 0x05, 0x0D, 0x06, 0x04, 0x09, 0x17, 0xAB, 0x08, +0x10, 0x0C, 0x09, 0x14, 0x06, 0x08, 0x11, 0x0B, 0xA8, 0x05, +0x01, 0x03, 0x03, 0x06, 0x05, 0x0C, 0x02, 0x01, 0x1E, 0x06, +0x08, 0x05, 0x1D, 0x1B, 0x01, 0x04, 0x08, 0x07, 0x16, 0x03, +0x06, 0x0F, 0x0D, 0x0D, 0x0C, 0x0C, 0x01, 0x04, 0x0E, 0x2C, +0x04, 0x07, 0x1A, 0x0E, 0x02, 0x2F, 0x16, 0x0A, 0x0A, 0x08, +0x05, 0x09, 0x0B, 0x04, 0x04, 0x0F, 0x1B, 0x0F, 0x0A, 0x07, +0x07, 0x02, 0x01, 0x01, 0x10, 0x09, 0x07, 0x04, 0x09, 0x2D, +0x18, 0x18, 0x1B, 0x08, 0x09, 0x0F, 0x07, 0x03, 0x04, 0x0A, +0x0B, 0x01, 0x01, 0x03, 0x09, 0x2C, 0x0F, 0x12, 0x0C, 0x08, +0x04, 0x0A, 0x02, 0x0A, 0x0C, 0x18, 0x4F, 0x1B, 0x18, 0x10, +0x0A, 0x1C, 0x20, 0x0E, 0x17, 0x34, 0x47, 0x2D, 0x4B, 0x00, +0x08, 0x00, 0x45, 0xFF, 0xC9, 0x03, 0x61, 0x02, 0xE1, 0x00, +0x10, 0x00, 0x14, 0x00, 0x18, 0x00, 0x1C, 0x00, 0x20, 0x00, +0x24, 0x00, 0x28, 0x00, 0x39, 0x00, 0x00, 0x36, 0x34, 0x36, +0x37, 0x36, 0x32, 0x17, 0x16, 0x17, 0x16, 0x14, 0x06, 0x07, +0x06, 0x22, 0x26, 0x27, 0x37, 0x33, 0x15, 0x23, 0x37, 0x33, +0x15, 0x23, 0x25, 0x33, 0x15, 0x23, 0x25, 0x33, 0x15, 0x23, +0x01, 0x33, 0x15, 0x23, 0x11, 0x33, 0x15, 0x23, 0x00, 0x14, +0x17, 0x1E, 0x01, 0x32, 0x37, 0x3E, 0x01, 0x34, 0x27, 0x26, +0x27, 0x2E, 0x01, 0x07, 0x06, 0x74, 0x5D, 0x51, 0x52, 0xBE, +0x52, 0x51, 0x2F, 0x2E, 0x5D, 0x51, 0x52, 0xBE, 0xA3, 0x2F, +0xF7, 0x75, 0x75, 0x32, 0x10, 0x10, 0x01, 0x2B, 0x6A, 0x6A, +0xFD, 0x50, 0x6B, 0x6B, 0x01, 0x85, 0x10, 0x10, 0x10, 0x10, +0xFE, 0xB6, 0x2D, 0x2D, 0x9C, 0xB8, 0x4E, 0x4E, 0x5A, 0x2D, +0x2D, 0x4E, 0x4E, 0xB8, 0x4E, 0x4E, 0xF6, 0xBE, 0xA0, 0x30, +0x2E, 0x2E, 0x2F, 0x51, 0x50, 0xBE, 0xA1, 0x30, 0x2E, 0x5D, +0x51, 0xB9, 0x10, 0x43, 0x76, 0x43, 0x10, 0x10, 0x10, 0x01, +0x92, 0x69, 0xFD, 0xBD, 0x6A, 0x01, 0xE6, 0xB7, 0x4D, 0x4E, +0x5A, 0x2D, 0x2E, 0x9A, 0xB7, 0x4D, 0x4E, 0x2D, 0x2C, 0x01, +0x2D, 0x2E, 0x00, 0x00, 0x0A, 0x00, 0x37, 0xFF, 0xAB, 0x03, +0x73, 0x02, 0xF5, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x2E, 0x00, +0x3A, 0x00, 0x46, 0x00, 0x59, 0x00, 0x69, 0x00, 0x78, 0x00, +0x87, 0x00, 0x97, 0x00, 0x00, 0x25, 0x36, 0x33, 0x36, 0x1F, +0x01, 0x1D, 0x01, 0x07, 0x06, 0x27, 0x2E, 0x01, 0x35, 0x34, +0x3E, 0x02, 0x33, 0x32, 0x16, 0x17, 0x16, 0x17, 0x16, 0x06, +0x23, 0x22, 0x27, 0x2E, 0x01, 0x35, 0x05, 0x3E, 0x01, 0x33, +0x32, 0x15, 0x14, 0x06, 0x07, 0x06, 0x23, 0x22, 0x26, 0x37, +0x36, 0x01, 0x36, 0x32, 0x17, 0x16, 0x14, 0x07, 0x06, 0x22, +0x27, 0x26, 0x34, 0x25, 0x36, 0x32, 0x17, 0x16, 0x14, 0x07, +0x06, 0x22, 0x27, 0x26, 0x34, 0x25, 0x36, 0x17, 0x1E, 0x01, +0x17, 0x16, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, +0x01, 0x37, 0x3E, 0x01, 0x17, 0x26, 0x2F, 0x01, 0x1D, 0x01, +0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x27, 0x2E, 0x01, +0x37, 0x36, 0x33, 0x32, 0x16, 0x07, 0x06, 0x07, 0x0E, 0x01, +0x23, 0x22, 0x35, 0x34, 0x36, 0x25, 0x36, 0x32, 0x17, 0x1E, +0x01, 0x15, 0x14, 0x23, 0x22, 0x26, 0x27, 0x26, 0x27, 0x26, +0x25, 0x36, 0x37, 0x32, 0x1F, 0x01, 0x1D, 0x01, 0x07, 0x06, +0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x01, 0xCF, 0x04, 0x03, +0x02, 0x06, 0x07, 0x07, 0x0C, 0x0C, 0x04, 0x02, 0x0A, 0xD2, +0x09, 0x08, 0x06, 0x0D, 0x18, 0x22, 0x03, 0x05, 0x0A, 0x0B, +0x07, 0x25, 0x1A, 0x0B, 0xFE, 0x36, 0x18, 0x0D, 0x06, 0x11, +0x0B, 0x1A, 0x25, 0x07, 0x0B, 0x0A, 0x05, 0x03, 0x02, 0x4B, +0x06, 0x65, 0x06, 0x07, 0x07, 0x06, 0x65, 0x06, 0x06, 0xFD, +0x49, 0x05, 0x66, 0x06, 0x06, 0x06, 0x06, 0x66, 0x05, 0x07, +0x01, 0x6D, 0x43, 0x43, 0x3D, 0x5B, 0x10, 0x12, 0x17, 0x16, +0x67, 0x44, 0x4E, 0x8E, 0x2F, 0x25, 0x12, 0x15, 0x17, 0x6A, +0xB0, 0x14, 0x0C, 0x0B, 0x0B, 0x22, 0x25, 0x22, 0x38, 0x0E, +0x22, 0x22, 0x13, 0x4C, 0x81, 0x25, 0x07, 0x0B, 0x0A, 0x05, +0x03, 0x22, 0x18, 0x0D, 0x06, 0x11, 0x0B, 0xFE, 0x0A, 0x05, +0x0E, 0x25, 0x1A, 0x0B, 0x11, 0x06, 0x0D, 0x18, 0x22, 0x03, +0x08, 0x01, 0x2A, 0x04, 0x03, 0x02, 0x06, 0x07, 0x07, 0x0C, +0x0C, 0x04, 0x02, 0x0A, 0x31, 0x01, 0x01, 0x07, 0x06, 0x34, +0x34, 0x07, 0x0C, 0x0E, 0x04, 0x0F, 0x25, 0x33, 0x0C, 0x50, +0x0A, 0x0B, 0x17, 0x22, 0x06, 0x0A, 0x11, 0x25, 0x1A, 0x0E, +0x06, 0x10, 0x17, 0x0B, 0x12, 0x06, 0x0E, 0x1A, 0x25, 0x11, +0x0A, 0x06, 0x01, 0x1A, 0x05, 0x05, 0x05, 0x11, 0x05, 0x05, +0x05, 0x05, 0x11, 0x05, 0x05, 0x05, 0x05, 0x11, 0x05, 0x05, +0x05, 0x05, 0x11, 0xF4, 0x0C, 0x16, 0x15, 0x60, 0x3E, 0x4A, +0x46, 0x42, 0x5C, 0x0E, 0x10, 0x36, 0x3F, 0x32, 0x80, 0x3C, +0x40, 0x5A, 0x1D, 0x06, 0x01, 0x02, 0xDC, 0xDC, 0x01, 0x05, +0x12, 0x11, 0x3C, 0x24, 0x53, 0x52, 0x2F, 0x44, 0x43, 0x25, +0x11, 0x09, 0x07, 0x21, 0x18, 0x0A, 0x11, 0x06, 0x0E, 0x3C, +0x03, 0x25, 0x1A, 0x0E, 0x06, 0x11, 0x0A, 0x18, 0x21, 0x07, +0x0E, 0x7F, 0x01, 0x01, 0x07, 0x06, 0x34, 0x34, 0x07, 0x0C, +0x0E, 0x04, 0x0F, 0x26, 0x32, 0x0C, 0x00, 0x00, 0x00, 0x00, +0x06, 0x00, 0x34, 0xFF, 0xE1, 0x03, 0x56, 0x02, 0xC4, 0x00, +0x0D, 0x00, 0x4F, 0x00, 0x60, 0x00, 0xC9, 0x00, 0xD8, 0x01, +0x20, 0x00, 0x00, 0x25, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, +0x17, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x27, 0x36, 0x33, +0x32, 0x17, 0x16, 0x33, 0x32, 0x3F, 0x01, 0x17, 0x16, 0x15, +0x14, 0x07, 0x06, 0x15, 0x14, 0x33, 0x32, 0x14, 0x23, 0x22, +0x15, 0x14, 0x17, 0x16, 0x15, 0x14, 0x0F, 0x01, 0x27, 0x26, +0x22, 0x07, 0x06, 0x23, 0x22, 0x27, 0x26, 0x35, 0x34, 0x37, +0x36, 0x35, 0x34, 0x27, 0x26, 0x23, 0x22, 0x35, 0x34, 0x36, +0x35, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, 0x35, 0x34, 0x27, +0x26, 0x35, 0x34, 0x27, 0x26, 0x23, 0x22, 0x07, 0x06, 0x15, +0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x27, 0x2E, 0x01, +0x27, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x17, 0x16, 0x33, +0x32, 0x37, 0x36, 0x33, 0x32, 0x17, 0x16, 0x14, 0x07, 0x06, +0x15, 0x14, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x15, 0x0E, +0x01, 0x07, 0x06, 0x07, 0x06, 0x15, 0x14, 0x17, 0x16, 0x15, +0x14, 0x06, 0x23, 0x22, 0x27, 0x26, 0x23, 0x22, 0x07, 0x0E, +0x01, 0x07, 0x06, 0x07, 0x06, 0x23, 0x22, 0x27, 0x2E, 0x01, +0x27, 0x26, 0x23, 0x22, 0x0F, 0x01, 0x27, 0x26, 0x35, 0x34, +0x37, 0x36, 0x35, 0x34, 0x27, 0x26, 0x23, 0x22, 0x26, 0x3D, +0x01, 0x3F, 0x01, 0x3E, 0x01, 0x37, 0x36, 0x35, 0x34, 0x27, +0x26, 0x35, 0x34, 0x37, 0x36, 0x33, 0x32, 0x17, 0x16, 0x33, +0x32, 0x37, 0x36, 0x35, 0x34, 0x25, 0x26, 0x23, 0x22, 0x07, +0x06, 0x15, 0x14, 0x17, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, +0x27, 0x36, 0x33, 0x32, 0x17, 0x16, 0x33, 0x32, 0x3F, 0x01, +0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x15, 0x06, 0x15, 0x14, +0x16, 0x1F, 0x01, 0x15, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x17, +0x16, 0x15, 0x14, 0x07, 0x06, 0x23, 0x22, 0x27, 0x26, 0x23, +0x22, 0x07, 0x06, 0x23, 0x22, 0x27, 0x26, 0x2F, 0x01, 0x37, +0x36, 0x35, 0x34, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x35, +0x3E, 0x01, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x27, 0x26, 0x35, +0x37, 0x36, 0x02, 0xD9, 0x10, 0x14, 0x15, 0x1F, 0x03, 0x0B, +0x2A, 0x15, 0x1A, 0x82, 0x16, 0x02, 0x01, 0x17, 0x16, 0x0B, +0x0C, 0x12, 0x13, 0x19, 0x17, 0x06, 0x01, 0x25, 0x20, 0x20, +0x25, 0x01, 0x06, 0x17, 0x19, 0x13, 0x12, 0x1C, 0x13, 0x11, +0x07, 0x06, 0x0A, 0x1E, 0x06, 0x08, 0x08, 0x0B, 0x12, 0x20, +0x01, 0x01, 0x07, 0x11, 0x17, 0x0C, 0x08, 0x08, 0x07, 0xD7, +0x1C, 0x1D, 0x2E, 0x21, 0x1A, 0x3C, 0x2F, 0x2B, 0x3E, 0x02, +0x04, 0x1B, 0x77, 0x0C, 0x23, 0x1F, 0x13, 0x05, 0x04, 0x06, +0x06, 0x0B, 0x11, 0x16, 0x15, 0x07, 0x08, 0x1E, 0x1B, 0x15, +0x07, 0x27, 0x1B, 0x0F, 0x01, 0x02, 0x0D, 0x1E, 0x1A, 0x08, +0x06, 0x0F, 0x14, 0x3C, 0x07, 0x03, 0x1B, 0x14, 0x0B, 0x07, +0x04, 0x0A, 0x08, 0x03, 0x04, 0x05, 0x04, 0x29, 0x2E, 0x05, +0x05, 0x08, 0x0F, 0x0A, 0x04, 0x08, 0x18, 0x1E, 0x20, 0x20, +0x10, 0x0F, 0x09, 0x08, 0x17, 0x18, 0x11, 0x02, 0x23, 0x16, +0x0F, 0x04, 0x02, 0x11, 0x0F, 0x21, 0x16, 0x0B, 0x08, 0x19, +0x14, 0x09, 0x02, 0x08, 0x17, 0x01, 0xD1, 0x13, 0x0E, 0x0A, +0x0E, 0x1D, 0x15, 0x10, 0x12, 0x15, 0x1E, 0x88, 0x11, 0x09, +0x0C, 0x10, 0x12, 0x0B, 0x0C, 0x13, 0x15, 0x18, 0x0E, 0x09, +0x01, 0x03, 0x0A, 0x15, 0x1F, 0x1A, 0x16, 0x11, 0x04, 0x07, +0x13, 0x13, 0x08, 0x0C, 0x10, 0x13, 0x0A, 0x0B, 0x12, 0x11, +0x0B, 0x04, 0x03, 0x13, 0x0C, 0x0E, 0x0C, 0x08, 0x21, 0x15, +0x0F, 0x01, 0x01, 0x08, 0x14, 0x16, 0x0F, 0x06, 0x08, 0x01, +0x03, 0xA0, 0x10, 0x1F, 0x15, 0x09, 0x09, 0x20, 0x1E, 0x14, +0x16, 0x78, 0x0C, 0x17, 0x16, 0x18, 0x18, 0x0E, 0x0E, 0x13, +0x0C, 0x17, 0x03, 0x05, 0x1C, 0x4C, 0x1C, 0x05, 0x03, 0x16, +0x0D, 0x13, 0x0E, 0x0E, 0x18, 0x17, 0x16, 0x14, 0x06, 0x10, +0x0F, 0x09, 0x0F, 0x13, 0x06, 0x04, 0x0A, 0x0D, 0x23, 0x01, +0x07, 0x02, 0x14, 0x08, 0x02, 0x02, 0x0C, 0x0A, 0x04, 0x05, +0x13, 0x13, 0x06, 0x0C, 0xB2, 0x11, 0x26, 0x1E, 0x27, 0x2B, +0x3F, 0x40, 0x2B, 0x05, 0x0C, 0x16, 0x27, 0xB3, 0x0C, 0x10, +0x1B, 0x1A, 0x06, 0x08, 0x10, 0x10, 0x20, 0x1B, 0x12, 0x21, +0x0B, 0x0B, 0x18, 0x06, 0x05, 0x0E, 0x17, 0x03, 0x0D, 0x04, +0x20, 0x11, 0x04, 0x05, 0x0E, 0x09, 0x05, 0x07, 0x13, 0x18, +0x0A, 0x08, 0x3E, 0x15, 0x10, 0x02, 0x04, 0x0D, 0x13, 0x1F, +0x05, 0x07, 0x08, 0x07, 0x34, 0x08, 0x05, 0x11, 0x15, 0x1F, +0x1E, 0x0B, 0x0A, 0x14, 0x15, 0x09, 0x08, 0x0E, 0x0E, 0x13, +0x1C, 0x0E, 0x2C, 0x07, 0x05, 0x08, 0x0A, 0x08, 0x04, 0x0B, +0x14, 0x12, 0x08, 0x09, 0x25, 0x18, 0x13, 0x10, 0x02, 0x08, +0x24, 0x11, 0x06, 0x10, 0x07, 0x0E, 0x20, 0x19, 0x11, 0x0D, +0x1F, 0x15, 0x17, 0x75, 0x0B, 0x15, 0x16, 0x17, 0x19, 0x0D, +0x08, 0x09, 0x09, 0x01, 0x06, 0x02, 0x1C, 0x0D, 0x0E, 0x07, +0x04, 0x07, 0x40, 0x06, 0x05, 0x0C, 0x0A, 0x04, 0x10, 0x19, +0x06, 0x0C, 0x0A, 0x0B, 0x15, 0x17, 0x18, 0x14, 0x01, 0x06, +0x0B, 0x0C, 0x1A, 0x12, 0x09, 0x13, 0x06, 0x03, 0x0D, 0x10, +0x02, 0x08, 0x03, 0x14, 0x09, 0x05, 0x06, 0x09, 0x0A, 0x09, +0x12, 0x15, 0x0A, 0x02, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, +0x34, 0x00, 0x12, 0x03, 0x22, 0x02, 0xA7, 0x00, 0x0D, 0x00, +0x46, 0x00, 0x00, 0x25, 0x26, 0x23, 0x22, 0x07, 0x06, 0x15, +0x14, 0x17, 0x16, 0x33, 0x32, 0x36, 0x34, 0x01, 0x36, 0x33, +0x32, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x1F, 0x02, 0x1E, 0x01, +0x33, 0x32, 0x17, 0x16, 0x33, 0x32, 0x37, 0x33, 0x32, 0x17, +0x16, 0x33, 0x32, 0x37, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, +0x17, 0x16, 0x17, 0x16, 0x15, 0x14, 0x0F, 0x01, 0x27, 0x2E, +0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, +0x26, 0x35, 0x34, 0x02, 0xDB, 0x12, 0x17, 0x16, 0x11, 0x08, +0x10, 0x10, 0x0F, 0x10, 0x26, 0xFD, 0x65, 0x0F, 0x03, 0x04, +0x04, 0x09, 0x20, 0x1A, 0x6E, 0x2C, 0x17, 0x03, 0x03, 0x1A, +0x21, 0x1F, 0x12, 0x13, 0x18, 0x0A, 0x07, 0x02, 0x0E, 0x13, +0x14, 0x11, 0x13, 0x1E, 0x1D, 0x1F, 0x14, 0x12, 0x0E, 0x15, +0x07, 0x07, 0x07, 0x06, 0x3C, 0x3B, 0x30, 0x60, 0xCB, 0x07, +0x04, 0x3D, 0x18, 0x12, 0x1A, 0x19, 0x51, 0x15, 0x11, 0x8C, +0x14, 0x15, 0x09, 0x0F, 0x16, 0x0C, 0x0D, 0x20, 0x1A, 0x02, +0x01, 0x28, 0x2B, 0x56, 0x43, 0x34, 0x5F, 0x07, 0x04, 0x2A, +0x29, 0x1F, 0x0E, 0x10, 0x01, 0x0D, 0x0C, 0x10, 0x10, 0x07, +0x0E, 0x15, 0x1B, 0x1A, 0x04, 0x03, 0x04, 0x09, 0x1D, 0x1B, +0x08, 0x11, 0x47, 0x14, 0x0A, 0x26, 0x08, 0x04, 0x15, 0x1C, +0x5C, 0x45, 0x39, 0x2D, 0x39, 0x00, 0x01, 0x00, 0x87, 0x00, +0x35, 0x02, 0x87, 0x02, 0xAF, 0x00, 0x27, 0x00, 0x00, 0x01, +0x36, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x06, 0x07, 0x0E, +0x01, 0x14, 0x16, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x0F, 0x01, +0x2B, 0x01, 0x27, 0x26, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, +0x36, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x01, +0x61, 0x23, 0x25, 0x0F, 0x17, 0x31, 0x31, 0x0B, 0x09, 0x23, +0x13, 0x15, 0x18, 0x11, 0x67, 0x1E, 0x06, 0x01, 0x04, 0x04, +0xF8, 0xF8, 0x03, 0x05, 0x02, 0x05, 0x18, 0x4A, 0x25, 0x1D, +0x0A, 0x15, 0x13, 0x1C, 0x18, 0x08, 0x09, 0x44, 0x02, 0xA7, +0x08, 0x07, 0x03, 0x09, 0x15, 0x5A, 0x30, 0x28, 0x1E, 0x11, +0x0A, 0x02, 0x09, 0x0A, 0x3C, 0x83, 0x19, 0x52, 0x16, 0x12, +0x12, 0x16, 0x52, 0x19, 0x6B, 0x3C, 0x1E, 0x09, 0x04, 0x02, +0x0A, 0x11, 0x19, 0x46, 0x24, 0x26, 0x3E, 0x00, 0x0B, 0x00, +0x62, 0xFF, 0xDF, 0x03, 0x4A, 0x02, 0xC5, 0x00, 0x48, 0x00, +0x56, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x7C, 0x00, 0x88, 0x00, +0xC4, 0x00, 0xD4, 0x00, 0xEF, 0x01, 0x04, 0x01, 0x1A, 0x00, +0x00, 0x01, 0x37, 0x17, 0x16, 0x15, 0x14, 0x07, 0x06, 0x17, +0x16, 0x17, 0x16, 0x17, 0x16, 0x15, 0x14, 0x17, 0x1E, 0x01, +0x33, 0x32, 0x37, 0x36, 0x17, 0x16, 0x33, 0x36, 0x17, 0x16, +0x17, 0x16, 0x1F, 0x01, 0x23, 0x22, 0x07, 0x06, 0x15, 0x14, +0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x35, 0x34, 0x17, 0x16, +0x07, 0x06, 0x0F, 0x01, 0x17, 0x16, 0x07, 0x06, 0x07, 0x06, +0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, 0x35, 0x26, +0x27, 0x26, 0x35, 0x36, 0x05, 0x36, 0x33, 0x32, 0x17, 0x16, +0x15, 0x14, 0x07, 0x06, 0x27, 0x26, 0x2F, 0x01, 0x37, 0x36, +0x32, 0x1F, 0x01, 0x07, 0x06, 0x07, 0x22, 0x2F, 0x01, 0x3E, +0x01, 0x17, 0x16, 0x17, 0x16, 0x17, 0x15, 0x23, 0x06, 0x27, +0x26, 0x37, 0x36, 0x33, 0x32, 0x17, 0x16, 0x17, 0x14, 0x06, +0x23, 0x22, 0x27, 0x26, 0x35, 0x34, 0x27, 0x36, 0x17, 0x16, +0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x34, 0x25, 0x36, +0x33, 0x32, 0x1F, 0x04, 0x16, 0x15, 0x14, 0x0F, 0x01, 0x23, +0x22, 0x07, 0x06, 0x17, 0x16, 0x07, 0x06, 0x15, 0x06, 0x17, +0x16, 0x23, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, +0x26, 0x37, 0x32, 0x2F, 0x01, 0x37, 0x36, 0x17, 0x26, 0x27, +0x26, 0x2F, 0x01, 0x23, 0x06, 0x27, 0x26, 0x35, 0x26, 0x0F, +0x01, 0x2F, 0x01, 0x37, 0x36, 0x17, 0x34, 0x23, 0x22, 0x07, +0x06, 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, 0x37, 0x34, 0x37, +0x36, 0x03, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, +0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, +0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x17, 0x2E, +0x01, 0x07, 0x22, 0x07, 0x06, 0x07, 0x06, 0x0F, 0x01, 0x1F, +0x01, 0x37, 0x36, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x03, +0x2E, 0x01, 0x23, 0x22, 0x07, 0x0E, 0x01, 0x17, 0x16, 0x17, +0x16, 0x17, 0x16, 0x32, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x35, +0x34, 0x01, 0x38, 0x06, 0x0C, 0x0D, 0x09, 0x0A, 0x05, 0x02, +0x08, 0x06, 0x01, 0x02, 0x04, 0x05, 0x04, 0x02, 0x02, 0x05, +0x05, 0x01, 0x08, 0x01, 0x03, 0x09, 0x1B, 0x15, 0x1F, 0x17, +0x05, 0x0C, 0x0D, 0x09, 0x0A, 0x0A, 0x12, 0x0F, 0x06, 0x06, +0x06, 0x02, 0x02, 0x04, 0x07, 0x0F, 0x0A, 0x01, 0x03, 0x03, +0x02, 0x10, 0x33, 0x3F, 0x0E, 0x12, 0x12, 0x01, 0x02, 0x06, +0x04, 0x01, 0x07, 0x0B, 0x01, 0x01, 0x6A, 0x04, 0x02, 0x01, +0x05, 0x05, 0x04, 0x04, 0x03, 0x03, 0x04, 0x03, 0x12, 0x03, +0x04, 0x0D, 0x0D, 0x03, 0x03, 0x02, 0x01, 0x0E, 0x0D, 0x07, +0x03, 0x13, 0x14, 0x01, 0x01, 0x01, 0x13, 0x14, 0x03, 0x02, +0x01, 0x0A, 0x02, 0x02, 0x03, 0x03, 0x01, 0x16, 0x02, 0x02, +0x03, 0x03, 0x0D, 0x06, 0x06, 0x04, 0x03, 0x02, 0x03, 0x02, +0x05, 0x05, 0x01, 0xFE, 0xF9, 0x0D, 0x0B, 0x3C, 0x22, 0x0B, +0x39, 0x3A, 0x11, 0x12, 0x10, 0x0F, 0x2B, 0x2B, 0x01, 0x01, +0x04, 0x07, 0x06, 0x04, 0x01, 0x03, 0x03, 0x01, 0x01, 0x03, +0x08, 0x02, 0x03, 0x0A, 0x08, 0x2D, 0x18, 0x03, 0x01, 0x05, +0x06, 0x06, 0x06, 0x01, 0x07, 0x07, 0x09, 0x03, 0x03, 0x0D, +0x0A, 0x01, 0x02, 0x01, 0x06, 0x04, 0x0A, 0x0B, 0x05, 0x04, +0xAA, 0x02, 0x02, 0x04, 0x03, 0x03, 0x09, 0x01, 0x01, 0x07, +0x0C, 0x01, 0x02, 0x03, 0x77, 0x48, 0x8E, 0x38, 0x0D, 0x26, +0x08, 0x40, 0x16, 0x2E, 0x19, 0x2A, 0x2D, 0x3B, 0x5F, 0xD4, +0x53, 0x0D, 0x25, 0x09, 0x4E, 0x03, 0x50, 0x0A, 0x26, 0x0C, +0x54, 0xC2, 0x0D, 0x38, 0x09, 0x05, 0x11, 0x27, 0x25, 0x3D, +0x2A, 0x08, 0xF5, 0xF5, 0x0A, 0x1A, 0x16, 0x23, 0x01, 0x24, +0x26, 0x87, 0x8D, 0x65, 0x90, 0x01, 0x01, 0x0D, 0x46, 0x1B, +0x30, 0x34, 0x63, 0x32, 0x3A, 0x13, 0x42, 0x13, 0x52, 0x3E, +0x0E, 0x20, 0x01, 0xBD, 0x09, 0x0C, 0x0D, 0x01, 0x01, 0x03, +0x04, 0x03, 0x01, 0x01, 0x01, 0x02, 0x02, 0x05, 0x06, 0x01, +0x02, 0x14, 0x03, 0x06, 0x02, 0x07, 0x02, 0x0A, 0x16, 0x15, +0x1E, 0x1B, 0x06, 0x05, 0x05, 0x03, 0x04, 0x06, 0x0C, 0x03, +0x01, 0x04, 0x05, 0x03, 0x03, 0x02, 0x02, 0x0D, 0x18, 0x0F, +0x0A, 0x09, 0x11, 0x06, 0x05, 0x08, 0x19, 0x31, 0x0B, 0x12, +0x12, 0x04, 0x05, 0x18, 0x17, 0x0D, 0x0D, 0x1C, 0x2F, 0x19, +0x23, 0x08, 0x03, 0x08, 0x09, 0x02, 0x03, 0x02, 0x03, 0x03, +0x02, 0x08, 0x07, 0x0D, 0x05, 0x0D, 0x0C, 0x05, 0x05, 0x01, +0x0D, 0x0E, 0x1C, 0x03, 0x01, 0x01, 0x02, 0x01, 0x05, 0x06, +0x01, 0x02, 0x02, 0x28, 0x09, 0x03, 0x02, 0x04, 0x02, 0x16, +0x05, 0x04, 0x02, 0x03, 0x10, 0x09, 0x05, 0x02, 0x08, 0x08, +0x01, 0x02, 0x03, 0x02, 0x02, 0x03, 0x1D, 0x04, 0x22, 0x0A, +0x02, 0x01, 0x07, 0x08, 0x02, 0x01, 0x09, 0x09, 0x02, 0x03, +0x0B, 0x16, 0x14, 0x0D, 0x07, 0x06, 0x0E, 0x10, 0x02, 0x05, +0x09, 0x02, 0x06, 0x0A, 0x0A, 0x2A, 0x16, 0x03, 0x06, 0x06, +0x06, 0x06, 0x01, 0x06, 0x05, 0x08, 0x08, 0x08, 0x01, 0x01, +0x01, 0x03, 0x08, 0x07, 0x05, 0x0B, 0x0B, 0x02, 0x01, 0x7E, +0x02, 0x01, 0x01, 0x02, 0x05, 0x07, 0x07, 0x05, 0x0A, 0x0B, +0x06, 0x09, 0x09, 0x01, 0x46, 0x07, 0x29, 0x2E, 0x09, 0x27, +0x0B, 0x53, 0xCC, 0x5D, 0x35, 0x2A, 0x2F, 0x1C, 0x2E, 0x19, +0x42, 0x0A, 0x26, 0x0C, 0x65, 0xFC, 0x62, 0x0C, 0x26, 0x09, +0x3F, 0x0A, 0x02, 0x02, 0x01, 0x02, 0x05, 0x0E, 0x17, 0x25, +0x08, 0xF4, 0xF4, 0x0B, 0x1C, 0x2D, 0x49, 0x9D, 0x47, 0x4D, +0x62, 0xFE, 0xB8, 0x64, 0x8F, 0x0E, 0x52, 0xCE, 0x5E, 0x65, +0x33, 0x19, 0x0A, 0x03, 0x04, 0x0D, 0x2B, 0x09, 0x1B, 0x02, +0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x48, 0x00, 0x3E, 0x02, +0xD0, 0x02, 0xD0, 0x00, 0x07, 0x00, 0x17, 0x00, 0x27, 0x00, +0x2F, 0x00, 0x00, 0x01, 0x35, 0x3B, 0x01, 0x1D, 0x01, 0x2B, +0x01, 0x25, 0x37, 0x3B, 0x01, 0x1F, 0x01, 0x1D, 0x01, 0x0F, +0x01, 0x29, 0x01, 0x2F, 0x01, 0x19, 0x01, 0x25, 0x27, 0x2B, +0x01, 0x0F, 0x01, 0x1D, 0x01, 0x1F, 0x01, 0x3B, 0x01, 0x3F, +0x01, 0x3D, 0x01, 0x13, 0x35, 0x2B, 0x01, 0x1D, 0x01, 0x3B, +0x01, 0x01, 0xBE, 0x25, 0x25, 0x25, 0x25, 0xFE, 0x9E, 0x14, +0xF4, 0xF4, 0x3C, 0x3C, 0x12, 0x12, 0xFE, 0xE0, 0xFE, 0xE0, +0x12, 0x12, 0x01, 0xEA, 0x0C, 0xA4, 0xA4, 0x0B, 0x0A, 0x0B, +0x0A, 0xA7, 0xA7, 0x09, 0x09, 0x48, 0xF9, 0xF8, 0xF8, 0xF9, +0x02, 0x3E, 0x40, 0x40, 0x40, 0xB9, 0x19, 0x3C, 0x3C, 0xFB, +0xFB, 0x12, 0x11, 0x13, 0x14, 0x01, 0x1C, 0x01, 0x1D, 0x0A, +0x0C, 0x0B, 0x0B, 0x62, 0x63, 0x0B, 0x0A, 0x09, 0x0A, 0x63, +0x62, 0xFE, 0x56, 0x99, 0x99, 0x99, 0x00, 0x00, 0x04, 0x00, +0x67, 0x01, 0x13, 0x02, 0xB5, 0x02, 0x3A, 0x00, 0x1B, 0x00, +0x40, 0x00, 0x4E, 0x00, 0x5A, 0x00, 0x00, 0x01, 0x27, 0x3B, +0x01, 0x15, 0x14, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x3D, +0x01, 0x3B, 0x01, 0x1D, 0x01, 0x2B, 0x01, 0x3D, 0x01, 0x07, +0x06, 0x23, 0x22, 0x2F, 0x01, 0x25, 0x36, 0x17, 0x16, 0x17, +0x16, 0x14, 0x1F, 0x01, 0x2B, 0x01, 0x27, 0x2E, 0x01, 0x07, +0x06, 0x07, 0x06, 0x26, 0x27, 0x26, 0x37, 0x36, 0x37, 0x3E, +0x01, 0x35, 0x34, 0x23, 0x22, 0x07, 0x06, 0x26, 0x2F, 0x01, +0x37, 0x36, 0x17, 0x34, 0x2E, 0x01, 0x31, 0x06, 0x07, 0x0E, +0x01, 0x17, 0x1E, 0x01, 0x37, 0x36, 0x25, 0x35, 0x3B, 0x01, +0x1D, 0x01, 0x3B, 0x01, 0x1D, 0x01, 0x2B, 0x01, 0x01, 0x3D, +0x01, 0x18, 0x19, 0x02, 0x04, 0x21, 0x0F, 0x0A, 0x05, 0x1A, +0x19, 0x17, 0x17, 0x0A, 0x17, 0x1E, 0x23, 0x10, 0x08, 0x00, +0xFF, 0x0E, 0x1A, 0x3B, 0x08, 0x03, 0x05, 0x05, 0x18, 0x18, +0x03, 0x02, 0x04, 0x05, 0x05, 0x0D, 0x19, 0x34, 0x0A, 0x10, +0x17, 0x0D, 0x2E, 0x1E, 0x0D, 0x21, 0x16, 0x08, 0x04, 0x0E, +0x0F, 0x0E, 0x03, 0x0C, 0x5F, 0x01, 0x01, 0x25, 0x0F, 0x06, +0x08, 0x03, 0x05, 0x1A, 0x0F, 0x13, 0xFD, 0xEE, 0x19, 0x1A, +0x40, 0x40, 0x5A, 0x59, 0x01, 0x98, 0x55, 0x45, 0x45, 0x0A, +0x10, 0x09, 0x0B, 0x09, 0x1C, 0x39, 0x44, 0x68, 0x67, 0x0F, +0x0E, 0x0A, 0x17, 0x1C, 0x0E, 0xAA, 0x04, 0x01, 0x02, 0x2A, +0x0E, 0x7A, 0x0F, 0x10, 0x0B, 0x0A, 0x02, 0x06, 0x06, 0x07, +0x0E, 0x0F, 0x18, 0x26, 0x1C, 0x11, 0x0B, 0x08, 0x05, 0x07, +0x1B, 0x11, 0x09, 0x03, 0x02, 0x01, 0x0C, 0x24, 0x76, 0x05, +0x07, 0x04, 0x06, 0x09, 0x03, 0x0F, 0x09, 0x0D, 0x06, 0x08, +0x0A, 0x59, 0x8D, 0x75, 0x76, 0x18, 0x18, 0x00, 0x00, 0x00, +0x10, 0x00, 0xC6, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, +0x01, 0x00, 0x09, 0x00, 0x14, 0x00, 0x01, 0x00, 0x00, 0x00, +0x00, 0x00, 0x02, 0x00, 0x07, 0x00, 0x2E, 0x00, 0x01, 0x00, +0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x26, 0x00, 0x84, 0x00, +0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x09, 0x00, +0xBF, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, +0x0F, 0x00, 0xE9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, +0x06, 0x00, 0x09, 0x01, 0x0D, 0x00, 0x01, 0x00, 0x00, 0x00, +0x00, 0x00, 0x10, 0x00, 0x0B, 0x01, 0x2F, 0x00, 0x01, 0x00, +0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x07, 0x01, 0x4B, 0x00, +0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x01, 0x00, 0x12, 0x00, +0x00, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x02, 0x00, +0x0E, 0x00, 0x1E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, +0x03, 0x00, 0x4C, 0x00, 0x36, 0x00, 0x03, 0x00, 0x01, 0x04, +0x09, 0x00, 0x04, 0x00, 0x12, 0x00, 0xAB, 0x00, 0x03, 0x00, +0x01, 0x04, 0x09, 0x00, 0x05, 0x00, 0x1E, 0x00, 0xC9, 0x00, +0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x06, 0x00, 0x12, 0x00, +0xF9, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x10, 0x00, +0x16, 0x01, 0x17, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, +0x11, 0x00, 0x0E, 0x01, 0x3B, 0x00, 0x67, 0x00, 0x61, 0x00, +0x6D, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6E, 0x00, +0x73, 0x00, 0x65, 0x00, 0x00, 0x67, 0x61, 0x6D, 0x65, 0x73, +0x65, 0x6E, 0x73, 0x65, 0x00, 0x00, 0x52, 0x00, 0x65, 0x00, +0x67, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, 0x00, +0x00, 0x52, 0x65, 0x67, 0x75, 0x6C, 0x61, 0x72, 0x00, 0x00, +0x46, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x46, 0x00, +0x6F, 0x00, 0x72, 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, +0x32, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x20, 0x00, 0x3A, 0x00, +0x20, 0x00, 0x67, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x65, 0x00, +0x73, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, 0x00, +0x20, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x32, 0x00, 0x36, 0x00, +0x2D, 0x00, 0x31, 0x00, 0x30, 0x00, 0x2D, 0x00, 0x32, 0x00, +0x30, 0x00, 0x31, 0x00, 0x39, 0x00, 0x00, 0x46, 0x6F, 0x6E, +0x74, 0x46, 0x6F, 0x72, 0x67, 0x65, 0x20, 0x32, 0x2E, 0x30, +0x20, 0x3A, 0x20, 0x67, 0x61, 0x6D, 0x65, 0x73, 0x65, 0x6E, +0x73, 0x65, 0x20, 0x3A, 0x20, 0x32, 0x36, 0x2D, 0x31, 0x30, +0x2D, 0x32, 0x30, 0x31, 0x39, 0x00, 0x00, 0x67, 0x00, 0x61, +0x00, 0x6D, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6E, +0x00, 0x73, 0x00, 0x65, 0x00, 0x00, 0x67, 0x61, 0x6D, 0x65, +0x73, 0x65, 0x6E, 0x73, 0x65, 0x00, 0x00, 0x56, 0x00, 0x65, +0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, +0x00, 0x20, 0x00, 0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 0x2E, +0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x00, 0x56, 0x65, +0x72, 0x73, 0x69, 0x6F, 0x6E, 0x20, 0x30, 0x30, 0x31, 0x2E, +0x30, 0x30, 0x30, 0x00, 0x00, 0x67, 0x00, 0x61, 0x00, 0x6D, +0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x73, +0x00, 0x65, 0x00, 0x00, 0x67, 0x61, 0x6D, 0x65, 0x73, 0x65, +0x6E, 0x73, 0x65, 0x00, 0x00, 0x43, 0x00, 0x61, 0x00, 0x6C, +0x00, 0x6C, 0x00, 0x69, 0x00, 0x67, 0x00, 0x72, 0x00, 0x61, +0x00, 0x70, 0x00, 0x68, 0x00, 0x72, 0x00, 0x00, 0x43, 0x61, +0x6C, 0x6C, 0x69, 0x67, 0x72, 0x61, 0x70, 0x68, 0x72, 0x00, +0x00, 0x52, 0x00, 0x65, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6C, +0x00, 0x61, 0x00, 0x72, 0x00, 0x00, 0x52, 0x65, 0x67, 0x75, +0x6C, 0x61, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x1F, 0x00, 0x32, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x0F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x01, 0x02, 0x00, +0x03, 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, 0x00, +0x28, 0x00, 0x29, 0x00, 0x2A, 0x00, 0x2B, 0x00, 0x2C, 0x01, +0x03, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x30, 0x44, 0x07, +0x75, 0x6E, 0x69, 0x30, 0x30, 0x41, 0x30, 0x00, 0x01, 0x00, +0x01, 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x01, 0x00, 0x00, 0x00, +0x0C, 0x00, 0x00, 0x00, 0x16, 0x00, 0x1E, 0x00, 0x02, 0x00, +0x01, 0x00, 0x01, 0x00, 0x0E, 0x00, 0x01, 0x00, 0x04, 0x00, +0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, +0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, +0x00, 0x00, 0x00, 0xD9, 0x68, 0x62, 0x35, 0x00, 0x00, 0x00, +0x00, 0xD5, 0x6E, 0x7C, 0x67, 0x00, 0x00, 0x00, 0x00, 0xDA, +0x73, 0xA2, 0xEF, +}; +BYTE Texture[] = +{ + 0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A, 0x00, 0x00, 0x00, 0x0D, 0x49, 0x48, 0x44, 0x52, + 0x00, 0x00, 0x02, 0x74, 0x00, 0x00, 0x01, 0xF2, 0x08, 0x06, 0x00, 0x00, 0x00, 0x62, 0x68, 0x53, + 0x97, 0x00, 0x00, 0x00, 0x01, 0x73, 0x52, 0x47, 0x42, 0x00, 0xAE, 0xCE, 0x1C, 0xE9, 0x00, 0x00, + 0x00, 0x04, 0x67, 0x41, 0x4D, 0x41, 0x00, 0x00, 0xB1, 0x8F, 0x0B, 0xFC, 0x61, 0x05, 0x00, 0x00, + 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, 0x00, 0x00, 0x0E, 0xC3, 0x00, 0x00, 0x0E, 0xC3, 0x01, 0xC7, + 0x6F, 0xA8, 0x64, 0x00, 0x00, 0x16, 0x00, 0x49, 0x44, 0x41, 0x54, 0x78, 0x5E, 0xED, 0xDC, 0xB1, + 0x8D, 0x9E, 0xD7, 0x15, 0x45, 0xD1, 0xB1, 0x22, 0x05, 0x0A, 0x55, 0x02, 0xFB, 0xAF, 0x88, 0x25, + 0xB0, 0x00, 0x65, 0x36, 0xC4, 0x77, 0x86, 0xD8, 0x02, 0x9C, 0x08, 0x26, 0xA0, 0x6B, 0x60, 0xED, + 0xE4, 0xDD, 0x35, 0x15, 0x7C, 0xC0, 0x1C, 0xFC, 0xFF, 0xFA, 0xED, 0xB7, 0xDF, 0xFE, 0xFD, 0xEB, + 0xAF, 0xBF, 0x7E, 0xFC, 0xF1, 0xC7, 0x1F, 0x1F, 0x5E, 0xAF, 0xD7, 0xEB, 0xF5, 0x7A, 0xBD, 0xDE, + 0xFF, 0xBF, 0xF7, 0x97, 0x8F, 0xF5, 0x27, 0x1A, 0x73, 0x63, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x3F, + 0xE3, 0x1F, 0x1F, 0x74, 0x7F, 0x7E, 0xE1, 0x35, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xE3, 0x7F, + 0xC6, 0xBF, 0xFC, 0xAC, 0x2F, 0xC3, 0xCF, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0xCC, 0x8D, 0xFF, 0x37, + 0xFF, 0xF2, 0xE7, 0x97, 0xDD, 0xE7, 0xD7, 0xDD, 0xE7, 0xCD, 0x7F, 0xF5, 0xB7, 0x6F, 0xDF, 0x3E, + 0xBE, 0x7C, 0xF9, 0xF2, 0xE3, 0x6F, 0x8D, 0xB9, 0x31, 0x37, 0xE6, 0xC6, 0xDC, 0x7E, 0xB6, 0x7F, + 0xFC, 0xCB, 0x55, 0x7F, 0xAF, 0x9F, 0xFD, 0x65, 0xCD, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x9F, + 0xFE, 0xFE, 0x41, 0xF7, 0x09, 0xEF, 0x7F, 0x7F, 0x7F, 0xFF, 0xFD, 0xF7, 0x8F, 0xAF, 0x5F, 0xBF, + 0x7E, 0xBF, 0x3F, 0xFB, 0xD9, 0x5F, 0xD6, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xE6, 0xF6, 0x69, 0x1B, + 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0x7F, 0xDF, 0xD0, 0x35, 0xE6, 0xC6, + 0xDC, 0x98, 0x1B, 0x73, 0xE3, 0x7F, 0xD6, 0x7E, 0x87, 0x6E, 0x31, 0x37, 0xE6, 0xC6, 0xDC, 0x98, + 0xDB, 0x15, 0xFB, 0x1D, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, + 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, + 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, + 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, + 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, + 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, + 0xF5, 0x62, 0x6E, 0xCC, 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, + 0x73, 0xBB, 0x62, 0x1B, 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, + 0xBB, 0x5E, 0xCC, 0x8D, 0xB9, 0x31, 0x37, 0xBE, 0x65, 0x1B, 0x3A, 0xDE, 0xF5, 0x62, 0x6E, 0xCC, + 0x8D, 0xB9, 0xF1, 0x2D, 0xDB, 0xD0, 0x2D, 0xE6, 0xC6, 0xDC, 0x98, 0x1B, 0x73, 0xBB, 0x62, 0x1B, + 0xBA, 0xC5, 0xDC, 0x98, 0x1B, 0x73, 0x63, 0x6E, 0x57, 0x6C, 0x43, 0xC7, 0xBB, 0x5E, 0xCC, 0x8D, + 0xB9, 0x31, 0x37, 0xBE, 0xE5, 0xEF, 0x1B, 0xBA, 0xCF, 0xAF, 0xBB, 0xCF, 0x9B, 0xFF, 0xEA, 0x6F, + 0xDF, 0xBE, 0x7D, 0x7C, 0xF9, 0xF2, 0xE5, 0xC7, 0xDF, 0x1A, 0x73, 0x63, 0x6E, 0xCC, 0x8D, 0xB9, + 0xFD, 0x6C, 0xFF, 0xF8, 0x97, 0xAB, 0xFE, 0x5E, 0x3F, 0xFB, 0xCB, 0x9A, 0xB9, 0x31, 0x37, 0xE6, + 0xC6, 0xDC, 0x9E, 0x3F, 0x3E, 0xFE, 0x03, 0x6B, 0x6C, 0xC4, 0xD3, 0x50, 0x79, 0xA7, 0xA0, 0x00, + 0x00, 0x00, 0x00, 0x49, 0x45, 0x4E, 0x44, 0xAE, 0x42, 0x60, 0x82 +}; +BYTE WeaponzFont[/*47320*/] = { + 0x00, 0x01, 0x00, 0x00, 0x00, 0x0D, 0x00, 0x80, 0x00, 0x03, + 0x00, 0x50, 0x46, 0x46, 0x54, 0x4D, 0x7B, 0xE3, 0x73, 0x8D, + 0x00, 0x00, 0xB8, 0xBC, 0x00, 0x00, 0x00, 0x1C, 0x47, 0x44, + 0x45, 0x46, 0x00, 0x27, 0x00, 0x67, 0x00, 0x00, 0xB8, 0x94, + 0x00, 0x00, 0x00, 0x26, 0x4F, 0x53, 0x2F, 0x32, 0x57, 0xD0, + 0x74, 0xA0, 0x00, 0x00, 0x01, 0x58, 0x00, 0x00, 0x00, 0x60, + 0x63, 0x6D, 0x61, 0x70, 0x1D, 0x36, 0xDC, 0x3C, 0x00, 0x00, + 0x02, 0xB8, 0x00, 0x00, 0x01, 0x76, 0x67, 0x61, 0x73, 0x70, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0xB8, 0x8C, 0x00, 0x00, + 0x00, 0x08, 0x67, 0x6C, 0x79, 0x66, 0x40, 0xA2, 0xDD, 0x0D, + 0x00, 0x00, 0x04, 0xB4, 0x00, 0x00, 0xB1, 0x60, 0x68, 0x65, + 0x61, 0x64, 0x14, 0x16, 0x60, 0xCA, 0x00, 0x00, 0x00, 0xDC, + 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, 0x65, 0x61, 0x10, 0xEF, + 0x0D, 0x99, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0x24, + 0x68, 0x6D, 0x74, 0x78, 0xC4, 0x0C, 0x13, 0x3F, 0x00, 0x00, + 0x01, 0xB8, 0x00, 0x00, 0x00, 0xFE, 0x6C, 0x6F, 0x63, 0x61, + 0xAF, 0xAF, 0xDF, 0x16, 0x00, 0x00, 0x04, 0x30, 0x00, 0x00, + 0x00, 0x84, 0x6D, 0x61, 0x78, 0x70, 0x00, 0x52, 0x02, 0x31, + 0x00, 0x00, 0x01, 0x38, 0x00, 0x00, 0x00, 0x20, 0x6E, 0x61, + 0x6D, 0x65, 0xF8, 0x4C, 0xD0, 0xCA, 0x00, 0x00, 0xB6, 0x14, + 0x00, 0x00, 0x01, 0xC2, 0x70, 0x6F, 0x73, 0x74, 0x25, 0x31, + 0x3E, 0x4F, 0x00, 0x00, 0xB7, 0xD8, 0x00, 0x00, 0x00, 0xB3, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xE0, 0x19, + 0x16, 0x8D, 0x5F, 0x0F, 0x3C, 0xF5, 0x00, 0x0B, 0x04, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xD2, 0xEB, 0xED, 0xCA, 0x00, 0x00, + 0x00, 0x00, 0xD4, 0xDE, 0x2E, 0x83, 0x00, 0x00, 0xFF, 0xBF, + 0x0D, 0x2D, 0x03, 0xC1, 0x00, 0x00, 0x00, 0x08, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x03, 0xC0, 0xFF, 0xC0, 0x00, 0x00, 0x0D, 0x9A, 0x00, 0x00, + 0x00, 0x00, 0x0D, 0x2D, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x3E, 0x00, 0x01, 0x00, 0x00, 0x00, 0x41, 0x02, 0x2F, + 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x07, 0x76, 0x01, 0x90, + 0x00, 0x05, 0x00, 0x00, 0x02, 0x99, 0x02, 0xCC, 0x00, 0x00, + 0x00, 0x8F, 0x02, 0x99, 0x02, 0xCC, 0x00, 0x00, 0x01, 0xEB, + 0x00, 0x33, 0x01, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x50, 0x66, 0x45, 0x64, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x76, 0x03, 0xC0, 0xFF, 0xC0, 0x00, 0x40, 0x03, 0xC0, + 0x00, 0x40, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x03, 0x63, 0x03, 0x5A, 0x00, 0x00, 0x00, 0x20, 0x00, 0x01, + 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x55, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x08, 0xCD, 0x00, 0x53, 0x09, 0x4D, 0x00, 0x5D, 0x08, 0xCD, + 0x00, 0x53, 0x08, 0x66, 0x00, 0x53, 0x08, 0x4D, 0x00, 0x52, + 0x09, 0x4D, 0x00, 0x52, 0x08, 0xCD, 0x00, 0x51, 0x08, 0xCD, + 0x00, 0x53, 0x08, 0xCD, 0x00, 0x50, 0x08, 0xCD, 0x00, 0x54, + 0x06, 0x80, 0x00, 0x5D, 0x0A, 0x00, 0x00, 0x4F, 0x05, 0x4D, + 0x00, 0x57, 0x05, 0xE6, 0x00, 0x4B, 0x05, 0x00, 0x00, 0x55, + 0x05, 0x00, 0x00, 0x59, 0x09, 0x66, 0x00, 0x53, 0x06, 0x66, + 0x00, 0x65, 0x05, 0x9A, 0x00, 0x5A, 0x07, 0x4D, 0x00, 0x5B, + 0x05, 0x4D, 0x00, 0x5D, 0x09, 0xB3, 0x00, 0x5A, 0x0A, 0x9A, + 0x00, 0x5D, 0x06, 0x1A, 0x00, 0x61, 0x08, 0x4D, 0x00, 0x4F, + 0x08, 0x4D, 0x00, 0x62, 0x0C, 0x1A, 0x00, 0x5D, 0x09, 0x1A, + 0x00, 0x5A, 0x0A, 0xB3, 0x00, 0x64, 0x0D, 0x9A, 0x00, 0x5B, + 0x09, 0x66, 0x00, 0x53, 0x0A, 0x80, 0x00, 0x53, 0x0B, 0x1A, + 0x00, 0x56, 0x0B, 0x4D, 0x00, 0x4D, 0x0B, 0x4D, 0x00, 0x4A, + 0x0D, 0x9A, 0x00, 0x62, 0x08, 0xCD, 0x00, 0x52, 0x08, 0xCD, + 0x00, 0x53, 0x0C, 0x80, 0x00, 0x55, 0x0A, 0xE6, 0x00, 0x62, + 0x0A, 0x66, 0x00, 0x5E, 0x07, 0xE6, 0x00, 0x63, 0x0B, 0x4D, + 0x00, 0x60, 0x09, 0x66, 0x00, 0x55, 0x0A, 0x9A, 0x00, 0x53, + 0x05, 0x33, 0x00, 0x56, 0x02, 0x00, 0x00, 0x54, 0x02, 0xE6, + 0x00, 0x58, 0x02, 0x1A, 0x00, 0x54, 0x02, 0xCD, 0x00, 0x57, + 0x03, 0x9A, 0x00, 0x61, 0x02, 0x1A, 0x00, 0x51, 0x04, 0x00, + 0x00, 0x5E, 0x03, 0x00, 0x00, 0x62, 0x03, 0x00, 0x00, 0x66, + 0x03, 0xE6, 0x00, 0x59, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x03, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x1C, 0x00, 0x04, 0x00, 0x54, 0x00, 0x00, + 0x00, 0x10, 0x00, 0x10, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x20, 0x00, 0x39, 0x00, 0x5B, 0x00, 0x5D, 0x00, 0x76, + 0xFF, 0xFD, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, + 0x00, 0x30, 0x00, 0x41, 0x00, 0x5D, 0x00, 0x61, 0xFF, 0xFD, + 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xE4, 0xFF, 0xD5, 0xFF, 0xCE, + 0xFF, 0xCD, 0xFF, 0xCA, 0x00, 0x03, 0x00, 0x01, 0x00, 0x10, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, + 0x01, 0x06, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, + 0x0D, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, + 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, + 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F, 0x20, 0x21, 0x22, 0x23, + 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x00, 0x2A, 0x00, 0x00, + 0x00, 0x2B, 0x2C, 0x2D, 0x2E, 0x2F, 0x30, 0x31, 0x32, 0x33, + 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x3B, 0x3C, 0x3D, + 0x3E, 0x3F, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x08, + 0x00, 0x10, 0x00, 0x18, 0x01, 0x4E, 0x02, 0xC2, 0x04, 0x2C, + 0x05, 0x7E, 0x06, 0xC6, 0x08, 0xF0, 0x0B, 0x16, 0x0D, 0x34, + 0x0F, 0x58, 0x11, 0xB4, 0x12, 0xEA, 0x14, 0xCA, 0x15, 0xC8, + 0x16, 0xAE, 0x17, 0xC4, 0x19, 0x50, 0x1A, 0x1C, 0x1C, 0x5A, + 0x1D, 0xE6, 0x1F, 0x92, 0x20, 0xF2, 0x23, 0xB8, 0x25, 0xBE, + 0x27, 0x58, 0x28, 0xF0, 0x2A, 0xC0, 0x2C, 0x9A, 0x2D, 0xD0, + 0x2F, 0xE0, 0x31, 0x64, 0x33, 0x02, 0x35, 0xC8, 0x36, 0xA4, + 0x39, 0x14, 0x3C, 0x02, 0x3C, 0xF4, 0x3D, 0xEE, 0x3F, 0x80, + 0x41, 0xBA, 0x43, 0x94, 0x44, 0xA0, 0x46, 0x22, 0x47, 0xE6, + 0x4A, 0x54, 0x4C, 0x7A, 0x4D, 0x4C, 0x4D, 0xA6, 0x4E, 0x9A, + 0x4F, 0xAA, 0x50, 0x5E, 0x51, 0x0A, 0x52, 0x16, 0x53, 0x94, + 0x54, 0x74, 0x55, 0x2E, 0x56, 0xA4, 0x57, 0x08, 0x57, 0xAA, + 0x57, 0xDE, 0x58, 0xB0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x39, 0x02, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x39, 0x02, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x39, 0x02, 0x00, 0x01, 0x00, 0x53, 0x00, 0xDA, 0x08, 0x53, + 0x02, 0xA5, 0x00, 0xD6, 0x00, 0x00, 0x01, 0x3E, 0x01, 0x37, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x07, 0x22, 0x26, + 0x23, 0x26, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x06, 0x27, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x27, 0x26, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2E, 0x01, + 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x27, 0x26, 0x36, 0x35, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x16, 0x33, 0x1E, 0x01, + 0x17, 0x32, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x3A, + 0x01, 0x33, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x35, 0x34, 0x26, + 0x27, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x15, 0x14, 0x22, 0x23, + 0x2A, 0x01, 0x23, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x33, 0x32, + 0x36, 0x33, 0x3E, 0x01, 0x37, 0x32, 0x36, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, + 0x31, 0x07, 0xF4, 0x18, 0x30, 0x17, 0x01, 0x08, 0x03, 0x06, + 0x0B, 0x05, 0x0E, 0x1F, 0x11, 0x21, 0x41, 0x24, 0x35, 0x6F, + 0x37, 0x17, 0x2E, 0x16, 0x0B, 0x17, 0x0B, 0x0A, 0x16, 0x0A, + 0x1D, 0x3A, 0x1D, 0x17, 0x2F, 0x17, 0x17, 0x35, 0x19, 0x03, + 0x08, 0x04, 0x01, 0x04, 0x01, 0x02, 0x0B, 0x04, 0x0D, 0x1B, + 0x0D, 0x0F, 0x24, 0x10, 0x07, 0x09, 0x02, 0x0E, 0x2B, 0x2E, + 0x12, 0x20, 0x0A, 0x04, 0x07, 0x03, 0x03, 0x05, 0x08, 0x0D, + 0x1A, 0x0C, 0x0A, 0x14, 0x0B, 0x18, 0x34, 0x18, 0x0C, 0x19, + 0x0C, 0x0B, 0x1A, 0x0B, 0x0B, 0x18, 0x0A, 0x0F, 0x24, 0x08, + 0x09, 0x09, 0x07, 0x03, 0x05, 0x06, 0x07, 0x10, 0x06, 0x0B, + 0x16, 0x10, 0x16, 0x21, 0x0F, 0x16, 0x27, 0x14, 0x08, 0x11, + 0x09, 0x06, 0x0B, 0x06, 0x05, 0x07, 0x04, 0x08, 0x01, 0x01, + 0x12, 0x0C, 0x1B, 0x62, 0x37, 0x2B, 0x63, 0x31, 0x16, 0x2C, + 0x17, 0x20, 0x41, 0x21, 0x07, 0x12, 0x07, 0x04, 0x0A, 0x03, + 0x07, 0x0F, 0x07, 0x1A, 0x35, 0x1A, 0x03, 0x04, 0x02, 0x06, + 0x0A, 0x06, 0x07, 0x0E, 0x07, 0x15, 0x29, 0x14, 0x1D, 0x39, + 0x1D, 0x09, 0x13, 0x09, 0x01, 0x03, 0x02, 0x07, 0x06, 0x02, + 0x01, 0x01, 0x01, 0x01, 0x11, 0x21, 0x11, 0x08, 0x07, 0x02, + 0x05, 0x04, 0x09, 0x04, 0x03, 0x09, 0x08, 0x04, 0x09, 0x04, + 0x11, 0x21, 0x11, 0x18, 0x2F, 0x17, 0x09, 0x14, 0x09, 0x0F, + 0x1D, 0x0F, 0x24, 0x4A, 0x25, 0x30, 0x61, 0x31, 0x23, 0x45, + 0x24, 0x02, 0x27, 0x02, 0x05, 0x02, 0x05, 0x07, 0x04, 0x05, + 0x0C, 0x06, 0x0E, 0x1C, 0x09, 0x13, 0x25, 0x0C, 0x10, 0x0D, + 0x05, 0x03, 0x01, 0x01, 0x01, 0x01, 0x02, 0x05, 0x09, 0x05, + 0x04, 0x0C, 0x05, 0x06, 0x03, 0x01, 0x07, 0x01, 0x03, 0x08, + 0x01, 0x05, 0x0A, 0x05, 0x05, 0x10, 0x01, 0x01, 0x1B, 0x05, + 0x23, 0x51, 0x04, 0x02, 0x08, 0x11, 0x05, 0x0B, 0x06, 0x07, + 0x07, 0x01, 0x01, 0x07, 0x02, 0x02, 0x03, 0x01, 0x02, 0x06, + 0x04, 0x02, 0x04, 0x03, 0x02, 0x07, 0x01, 0x0A, 0x04, 0x05, + 0x19, 0x0B, 0x0B, 0x1C, 0x0C, 0x05, 0x0B, 0x02, 0x01, 0x03, + 0x07, 0x0B, 0x19, 0x02, 0x02, 0x16, 0x0E, 0x16, 0x2F, 0x17, + 0x0A, 0x15, 0x08, 0x05, 0x0A, 0x04, 0x05, 0x03, 0x08, 0x0F, + 0x23, 0x10, 0x1D, 0x39, 0x1A, 0x3B, 0x56, 0x20, 0x1A, 0x1C, + 0x09, 0x04, 0x09, 0x02, 0x03, 0x07, 0x04, 0x01, 0x03, 0x01, + 0x01, 0x04, 0x01, 0x01, 0x02, 0x01, 0x04, 0x01, 0x01, 0x02, + 0x03, 0x01, 0x02, 0x05, 0x02, 0x01, 0x01, 0x01, 0x01, 0x0D, + 0x04, 0x01, 0x06, 0x01, 0x02, 0x05, 0x02, 0x08, 0x05, 0x07, + 0x0F, 0x03, 0x01, 0x02, 0x01, 0x01, 0x03, 0x02, 0x06, 0x03, + 0x05, 0x09, 0x05, 0x0C, 0x14, 0x03, 0x05, 0x09, 0x04, 0x03, + 0x02, 0x02, 0x00, 0x02, 0x00, 0x5D, 0x00, 0xD7, 0x08, 0xDE, + 0x02, 0xAA, 0x01, 0x1C, 0x01, 0x32, 0x00, 0x00, 0x01, 0x2E, + 0x03, 0x27, 0x26, 0x22, 0x23, 0x2A, 0x01, 0x27, 0x2A, 0x01, + 0x27, 0x22, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x35, 0x3C, + 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x06, 0x23, 0x2A, 0x01, + 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x23, + 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x06, + 0x26, 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, + 0x23, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x30, 0x07, 0x06, 0x33, + 0x0E, 0x01, 0x23, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x2A, + 0x01, 0x27, 0x22, 0x06, 0x15, 0x0E, 0x01, 0x23, 0x22, 0x26, + 0x23, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, 0x23, 0x06, + 0x26, 0x27, 0x26, 0x06, 0x23, 0x2A, 0x01, 0x27, 0x22, 0x06, + 0x07, 0x06, 0x16, 0x07, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, + 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x32, 0x17, + 0x16, 0x14, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x36, + 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, + 0x36, 0x16, 0x17, 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, + 0x16, 0x37, 0x36, 0x32, 0x17, 0x1E, 0x01, 0x33, 0x3A, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x32, 0x14, 0x15, 0x1C, 0x01, 0x15, + 0x1C, 0x01, 0x15, 0x14, 0x16, 0x33, 0x32, 0x3B, 0x01, 0x3C, + 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, 0x33, 0x3A, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x36, 0x32, 0x33, 0x3A, 0x02, 0x36, + 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x25, 0x1E, 0x01, 0x07, 0x14, 0x06, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, + 0x36, 0x17, 0x08, 0xDE, 0x37, 0x6D, 0x6D, 0x6D, 0x36, 0x07, + 0x0E, 0x06, 0x16, 0x2C, 0x16, 0x48, 0x90, 0x48, 0x46, 0x8E, + 0x46, 0x15, 0x29, 0x14, 0x05, 0x08, 0x04, 0x06, 0x0C, 0x07, + 0x11, 0x20, 0x10, 0x0C, 0x06, 0x0E, 0x02, 0x02, 0x0F, 0x02, + 0x07, 0x12, 0x22, 0x11, 0x06, 0x0D, 0x06, 0x05, 0x04, 0x06, + 0x06, 0x09, 0x03, 0x02, 0x01, 0x02, 0x08, 0x10, 0x08, 0x08, + 0x10, 0x08, 0x07, 0x09, 0x07, 0x05, 0x08, 0x03, 0x08, 0x0F, + 0x07, 0x09, 0x10, 0x09, 0x02, 0x03, 0x02, 0x02, 0x02, 0x01, + 0x03, 0x07, 0x03, 0x08, 0x07, 0x08, 0x09, 0x12, 0x08, 0x07, + 0x0D, 0x06, 0x02, 0x02, 0x01, 0x0A, 0x02, 0x02, 0x08, 0x02, + 0x02, 0x03, 0x01, 0x06, 0x0E, 0x06, 0x09, 0x11, 0x09, 0x07, + 0x04, 0x06, 0x06, 0x0A, 0x05, 0x05, 0x0D, 0x07, 0x0F, 0x17, + 0x0E, 0x07, 0x14, 0x08, 0x20, 0x40, 0x20, 0x0A, 0x10, 0x02, + 0x03, 0x02, 0x01, 0x08, 0x02, 0x01, 0x07, 0x02, 0x03, 0x06, + 0x04, 0x10, 0x21, 0x10, 0x12, 0x25, 0x12, 0x08, 0x11, 0x07, + 0x06, 0x0E, 0x06, 0x07, 0x0F, 0x07, 0x07, 0x06, 0x06, 0x04, + 0x08, 0x04, 0x02, 0x03, 0x10, 0x21, 0x10, 0x08, 0x02, 0x06, + 0x0A, 0x09, 0x07, 0x10, 0x20, 0x11, 0x06, 0x08, 0x09, 0x02, + 0x06, 0x01, 0x03, 0x04, 0x03, 0x0F, 0x20, 0x0F, 0x01, 0x05, + 0x01, 0x06, 0x0D, 0x04, 0x04, 0x0B, 0x05, 0x0A, 0x12, 0x09, + 0x03, 0x10, 0x02, 0x05, 0x0F, 0x07, 0x06, 0x03, 0x07, 0x12, + 0x23, 0x12, 0x05, 0x0A, 0x04, 0x01, 0x02, 0x06, 0x02, 0x0B, + 0x0B, 0x01, 0x04, 0x05, 0x0A, 0x06, 0x14, 0x2A, 0x14, 0x45, + 0x89, 0x44, 0x40, 0x7F, 0x80, 0x7F, 0x40, 0x22, 0x43, 0x22, + 0x32, 0x60, 0x2E, 0x1F, 0x34, 0x1A, 0xFE, 0xC0, 0x07, 0x06, + 0x02, 0x03, 0x05, 0x0C, 0x18, 0x0C, 0x06, 0x09, 0x08, 0x05, + 0x07, 0x0E, 0x07, 0x04, 0x0B, 0x04, 0x01, 0xC4, 0x09, 0x10, + 0x11, 0x11, 0x08, 0x01, 0x01, 0x01, 0x01, 0x0A, 0x0C, 0x22, + 0x44, 0x22, 0x04, 0x09, 0x05, 0x03, 0x01, 0x02, 0x04, 0x09, + 0x04, 0x23, 0x45, 0x23, 0x06, 0x0E, 0x0A, 0x01, 0x01, 0x05, + 0x04, 0x02, 0x01, 0x0B, 0x01, 0x01, 0x09, 0x02, 0x02, 0x02, + 0x04, 0x01, 0x0B, 0x01, 0x04, 0x01, 0x02, 0x03, 0x04, 0x01, + 0x05, 0x03, 0x03, 0x02, 0x04, 0x06, 0x05, 0x01, 0x01, 0x07, + 0x05, 0x03, 0x02, 0x01, 0x10, 0x09, 0x0D, 0x1C, 0x0D, 0x0C, + 0x18, 0x0C, 0x07, 0x0D, 0x06, 0x05, 0x0D, 0x05, 0x02, 0x0F, + 0x01, 0x03, 0x03, 0x07, 0x01, 0x01, 0x01, 0x02, 0x02, 0x01, + 0x04, 0x02, 0x02, 0x03, 0x04, 0x06, 0x0D, 0x0B, 0x03, 0x01, + 0x07, 0x06, 0x01, 0x03, 0x03, 0x04, 0x04, 0x01, 0x02, 0x03, + 0x07, 0x03, 0x03, 0x01, 0x0B, 0x01, 0x12, 0x24, 0x12, 0x07, + 0x0E, 0x07, 0x05, 0x01, 0x06, 0x0C, 0x05, 0x11, 0x22, 0x11, + 0x05, 0x01, 0x01, 0x01, 0x05, 0x04, 0x05, 0x18, 0x16, 0x0F, + 0x28, 0x17, 0x08, 0x04, 0x0C, 0x08, 0x02, 0x11, 0x11, 0x05, + 0x03, 0x13, 0x02, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x53, + 0x01, 0x00, 0x08, 0x53, 0x02, 0x7F, 0x00, 0xE9, 0x00, 0xF9, + 0x00, 0x00, 0x01, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x2E, 0x02, 0x27, 0x2E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x23, 0x16, 0x06, 0x15, 0x2E, 0x01, + 0x23, 0x1C, 0x01, 0x15, 0x2E, 0x01, 0x27, 0x14, 0x06, 0x07, + 0x2E, 0x01, 0x07, 0x22, 0x26, 0x07, 0x06, 0x26, 0x27, 0x14, + 0x06, 0x15, 0x26, 0x06, 0x27, 0x26, 0x22, 0x07, 0x2E, 0x01, + 0x27, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x23, + 0x2A, 0x01, 0x23, 0x06, 0x22, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x32, 0x16, + 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x32, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x1E, 0x01, 0x17, + 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x36, + 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x32, 0x16, + 0x35, 0x3E, 0x01, 0x37, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x32, 0x16, 0x33, 0x32, + 0x36, 0x37, 0x36, 0x16, 0x17, 0x32, 0x16, 0x17, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x17, 0x16, 0x32, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x0E, 0x01, 0x07, 0x05, 0x3C, 0x01, 0x33, 0x3A, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x06, 0x16, 0x17, 0x2A, 0x01, + 0x07, 0x07, 0xEA, 0x2F, 0x5F, 0x30, 0x1F, 0x3E, 0x1E, 0x2F, + 0x5E, 0x2F, 0x31, 0x61, 0x62, 0x60, 0x30, 0x04, 0x0E, 0x04, + 0x03, 0x07, 0x02, 0x03, 0x06, 0x03, 0x01, 0x01, 0x02, 0x04, + 0x03, 0x02, 0x04, 0x02, 0x01, 0x01, 0x06, 0x03, 0x03, 0x01, + 0x05, 0x01, 0x03, 0x02, 0x05, 0x02, 0x04, 0x06, 0x01, 0x05, + 0x02, 0x05, 0x01, 0x03, 0x02, 0x05, 0x05, 0x08, 0x0B, 0x18, + 0x0D, 0x0B, 0x16, 0x0C, 0x1E, 0x3E, 0x1F, 0x2B, 0x56, 0x2B, + 0x1F, 0x3D, 0x1F, 0x18, 0x30, 0x18, 0x16, 0x2C, 0x16, 0x1E, + 0x38, 0x19, 0x18, 0x29, 0x11, 0x07, 0x0F, 0x01, 0x1B, 0x08, + 0x04, 0x02, 0x01, 0x01, 0x0B, 0x05, 0x09, 0x17, 0x09, 0x08, + 0x0E, 0x08, 0x09, 0x0F, 0x08, 0x18, 0x32, 0x1E, 0x0F, 0x21, + 0x10, 0x22, 0x44, 0x20, 0x0A, 0x12, 0x0B, 0x05, 0x0C, 0x05, + 0x11, 0x2C, 0x15, 0x0E, 0x1B, 0x0D, 0x08, 0x11, 0x09, 0x06, + 0x08, 0x05, 0x0B, 0x19, 0x0D, 0x16, 0x22, 0x0F, 0x08, 0x0B, + 0x06, 0x07, 0x09, 0x0D, 0x0A, 0x0B, 0x07, 0x08, 0x10, 0x08, + 0x02, 0x03, 0x01, 0x02, 0x05, 0x05, 0x10, 0x1F, 0x0F, 0x05, + 0x0A, 0x05, 0x07, 0x0F, 0x07, 0x05, 0x08, 0x04, 0x09, 0x0F, + 0x0A, 0x02, 0x11, 0x05, 0x0C, 0x06, 0x04, 0x0E, 0x03, 0x01, + 0x07, 0x02, 0x04, 0x07, 0x05, 0x07, 0x0D, 0x08, 0x02, 0x04, + 0x02, 0x03, 0x09, 0x03, 0x09, 0x0E, 0x0A, 0x02, 0x05, 0x02, + 0x03, 0x05, 0x03, 0x09, 0x16, 0x0A, 0x07, 0x09, 0x09, 0x0D, + 0x1A, 0x0D, 0x36, 0x6B, 0x34, 0x39, 0x6F, 0x32, 0x22, 0x41, + 0x20, 0x0C, 0x18, 0x0B, 0x1A, 0x34, 0x1B, 0xFB, 0x66, 0x01, + 0x05, 0x0A, 0x04, 0x0B, 0x16, 0x0B, 0x01, 0x01, 0x01, 0x10, + 0x20, 0x11, 0x02, 0x62, 0x0D, 0x18, 0x06, 0x04, 0x08, 0x04, + 0x06, 0x05, 0x02, 0x02, 0x01, 0x08, 0x0F, 0x0A, 0x01, 0x06, + 0x01, 0x01, 0x07, 0x01, 0x02, 0x01, 0x02, 0x03, 0x02, 0x01, + 0x02, 0x02, 0x04, 0x03, 0x01, 0x02, 0x01, 0x02, 0x03, 0x02, + 0x02, 0x01, 0x06, 0x05, 0x02, 0x04, 0x01, 0x03, 0x02, 0x03, + 0x01, 0x02, 0x04, 0x01, 0x03, 0x05, 0x02, 0x03, 0x01, 0x07, + 0x02, 0x05, 0x06, 0x06, 0x01, 0x01, 0x01, 0x01, 0x03, 0x02, + 0x04, 0x01, 0x02, 0x09, 0x04, 0x04, 0x0E, 0x07, 0x0A, 0x17, + 0x13, 0x13, 0x2B, 0x19, 0x0B, 0x15, 0x0D, 0x0C, 0x0E, 0x04, + 0x02, 0x0E, 0x05, 0x05, 0x04, 0x02, 0x03, 0x04, 0x03, 0x02, + 0x05, 0x03, 0x03, 0x0C, 0x06, 0x13, 0x1F, 0x08, 0x03, 0x03, + 0x01, 0x0B, 0x0A, 0x03, 0x07, 0x01, 0x01, 0x0B, 0x03, 0x0C, + 0x0E, 0x01, 0x05, 0x05, 0x03, 0x0B, 0x01, 0x08, 0x03, 0x07, + 0x09, 0x02, 0x03, 0x0B, 0x0F, 0x07, 0x0E, 0x09, 0x0A, 0x0C, + 0x01, 0x01, 0x04, 0x07, 0x08, 0x10, 0x08, 0x06, 0x0D, 0x06, + 0x06, 0x01, 0x0A, 0x02, 0x04, 0x05, 0x02, 0x02, 0x05, 0x02, + 0x06, 0x04, 0x03, 0x08, 0x01, 0x03, 0x08, 0x01, 0x03, 0x02, + 0x01, 0x05, 0x01, 0x03, 0x05, 0x02, 0x03, 0x02, 0x02, 0x05, + 0x08, 0x01, 0x05, 0x01, 0x02, 0x03, 0x01, 0x02, 0x05, 0x02, + 0x08, 0x06, 0x09, 0x05, 0x02, 0x02, 0x04, 0x02, 0x08, 0x18, + 0x13, 0x14, 0x38, 0x23, 0x17, 0x32, 0x1A, 0x09, 0x13, 0x09, + 0x07, 0x0F, 0x07, 0x82, 0x02, 0x0E, 0x04, 0x07, 0x04, 0x01, + 0x00, 0x02, 0x00, 0x53, 0x01, 0x08, 0x07, 0xED, 0x02, 0x78, + 0x00, 0xD4, 0x00, 0xE1, 0x00, 0x00, 0x01, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x22, 0x06, 0x27, 0x2E, + 0x01, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x06, 0x26, + 0x27, 0x26, 0x06, 0x27, 0x26, 0x22, 0x07, 0x06, 0x26, 0x27, + 0x26, 0x06, 0x27, 0x2E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x26, + 0x06, 0x07, 0x06, 0x26, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, + 0x07, 0x06, 0x26, 0x27, 0x26, 0x06, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x27, 0x16, 0x26, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, + 0x06, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x32, 0x36, 0x33, 0x32, 0x36, 0x17, + 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x16, 0x36, 0x37, + 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x36, 0x33, 0x3A, + 0x01, 0x33, 0x3A, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x03, + 0x37, 0x3E, 0x01, 0x37, 0x2E, 0x01, 0x27, 0x05, 0x1E, 0x01, + 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x17, + 0x07, 0xBA, 0x3D, 0x81, 0x40, 0x0C, 0x11, 0x0A, 0x06, 0x10, + 0x03, 0x06, 0x0B, 0x06, 0x0C, 0x18, 0x0A, 0x06, 0x07, 0x01, + 0x01, 0x02, 0x0A, 0x08, 0x0E, 0x07, 0x04, 0x0B, 0x04, 0x0D, + 0x1A, 0x0D, 0x28, 0x52, 0x29, 0x1C, 0x39, 0x1C, 0x0B, 0x17, + 0x0C, 0x04, 0x0A, 0x04, 0x07, 0x03, 0x09, 0x08, 0x06, 0x07, + 0x08, 0x08, 0x08, 0x06, 0x08, 0x04, 0x02, 0x0C, 0x05, 0x08, + 0x04, 0x09, 0x06, 0x0B, 0x05, 0x03, 0x0A, 0x04, 0x08, 0x07, + 0x08, 0x08, 0x05, 0x07, 0x05, 0x0C, 0x05, 0x02, 0x0B, 0x02, + 0x07, 0x06, 0x07, 0x08, 0x05, 0x09, 0x08, 0x04, 0x07, 0x02, + 0x07, 0x02, 0x07, 0x0E, 0x07, 0x31, 0x61, 0x31, 0x3A, 0x77, + 0x3A, 0x3C, 0x78, 0x3B, 0x0D, 0x19, 0x0D, 0x05, 0x0E, 0x05, + 0x08, 0x07, 0x0A, 0x03, 0x22, 0x07, 0x0C, 0x10, 0x05, 0x0E, + 0x1B, 0x0C, 0x06, 0x06, 0x01, 0x10, 0x11, 0x0A, 0x12, 0x0C, + 0x06, 0x0D, 0x06, 0x17, 0x2E, 0x16, 0x0C, 0x13, 0x0C, 0x0C, + 0x16, 0x0B, 0x17, 0x2F, 0x17, 0x38, 0x70, 0x38, 0x0A, 0x15, + 0x0A, 0x05, 0x11, 0x04, 0x0E, 0x16, 0x12, 0x06, 0x0B, 0x05, + 0x0B, 0x14, 0x0C, 0x14, 0x28, 0x16, 0x07, 0x0F, 0x07, 0x0C, + 0x18, 0x0A, 0x14, 0x16, 0x05, 0x01, 0x03, 0x01, 0x01, 0x08, + 0x01, 0x04, 0x02, 0x03, 0x03, 0x0B, 0x03, 0x06, 0x04, 0x1E, + 0x03, 0x13, 0x24, 0x13, 0x11, 0x24, 0x12, 0x3A, 0x76, 0x3A, + 0x2A, 0x55, 0x54, 0x50, 0x26, 0x31, 0x51, 0x28, 0x0D, 0x19, + 0x0D, 0xF8, 0xDD, 0x07, 0x05, 0x04, 0x03, 0x15, 0x08, 0x0C, + 0x0C, 0x03, 0x04, 0x29, 0x0E, 0x01, 0xFF, 0x1A, 0x28, 0x11, + 0x03, 0x01, 0x08, 0x05, 0x07, 0x01, 0x02, 0x04, 0x02, 0x06, + 0x0B, 0x09, 0x04, 0x06, 0x07, 0x07, 0x15, 0x01, 0x01, 0x02, + 0x01, 0x01, 0x04, 0x02, 0x04, 0x09, 0x04, 0x0E, 0x1A, 0x0B, + 0x08, 0x0A, 0x06, 0x02, 0x04, 0x02, 0x09, 0x01, 0x02, 0x0C, + 0x04, 0x03, 0x02, 0x06, 0x05, 0x03, 0x03, 0x02, 0x0A, 0x03, + 0x03, 0x0C, 0x05, 0x07, 0x04, 0x03, 0x08, 0x03, 0x02, 0x0A, + 0x02, 0x05, 0x04, 0x05, 0x04, 0x04, 0x06, 0x04, 0x08, 0x02, + 0x01, 0x0E, 0x01, 0x06, 0x05, 0x05, 0x05, 0x01, 0x04, 0x05, + 0x0B, 0x03, 0x01, 0x01, 0x02, 0x02, 0x04, 0x03, 0x07, 0x08, + 0x13, 0x0E, 0x03, 0x05, 0x02, 0x01, 0x01, 0x04, 0x06, 0x03, + 0x0F, 0x03, 0x02, 0x03, 0x21, 0x09, 0x19, 0x33, 0x1A, 0x0C, + 0x17, 0x0D, 0x12, 0x1E, 0x08, 0x04, 0x05, 0x03, 0x02, 0x04, + 0x02, 0x08, 0x17, 0x0A, 0x05, 0x07, 0x03, 0x02, 0x04, 0x01, + 0x04, 0x06, 0x03, 0x04, 0x0A, 0x03, 0x01, 0x02, 0x04, 0x09, + 0x10, 0x04, 0x02, 0x09, 0x03, 0x08, 0x0F, 0x05, 0x09, 0x04, + 0x03, 0x01, 0x02, 0x01, 0x01, 0x0D, 0x06, 0x0C, 0x26, 0x17, + 0x07, 0x0E, 0x06, 0x01, 0x02, 0x02, 0x03, 0x03, 0x04, 0x02, + 0x04, 0x08, 0x07, 0x0A, 0x03, 0x01, 0x01, 0x01, 0x01, 0x05, + 0x04, 0x0E, 0x15, 0x1E, 0x13, 0x19, 0x43, 0x24, 0x06, 0x0B, + 0x05, 0x96, 0x0A, 0x10, 0x0C, 0x06, 0x0F, 0x03, 0x04, 0x0C, + 0x0D, 0x15, 0x10, 0x0A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x52, + 0x00, 0x54, 0x07, 0xD3, 0x03, 0x2C, 0x00, 0xBF, 0x00, 0xD8, + 0x00, 0x00, 0x01, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x22, 0x26, + 0x27, 0x22, 0x26, 0x27, 0x26, 0x06, 0x07, 0x22, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x22, + 0x06, 0x23, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x23, 0x22, 0x06, 0x17, 0x0E, 0x01, + 0x07, 0x06, 0x26, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x26, 0x17, 0x16, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x16, 0x17, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x06, 0x16, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x34, 0x35, 0x16, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x17, 0x16, 0x32, 0x37, 0x3E, 0x01, 0x37, 0x36, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x37, 0x36, 0x26, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x03, 0x17, 0x2E, + 0x01, 0x27, 0x05, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x32, 0x36, + 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x07, 0x9D, 0x16, + 0x35, 0x1F, 0x2B, 0x69, 0x3B, 0x2C, 0x5F, 0x32, 0x20, 0x41, + 0x21, 0x17, 0x2F, 0x17, 0x07, 0x0E, 0x07, 0x01, 0x07, 0x02, + 0x08, 0x2E, 0x0C, 0x05, 0x0E, 0x04, 0x0B, 0x1B, 0x0E, 0x26, + 0x57, 0x28, 0x07, 0x10, 0x07, 0x03, 0x07, 0x04, 0x04, 0x09, + 0x04, 0x07, 0x07, 0x07, 0x0B, 0x17, 0x0B, 0x45, 0x83, 0x3E, + 0x0F, 0x1D, 0x0E, 0x03, 0x01, 0x01, 0x07, 0x02, 0x06, 0x0B, + 0x03, 0x04, 0x06, 0x07, 0x0B, 0x0E, 0x03, 0x01, 0x06, 0x06, + 0x08, 0x13, 0x02, 0x03, 0x03, 0x07, 0x05, 0x0A, 0x05, 0x06, + 0x08, 0x01, 0x04, 0x02, 0x0A, 0x06, 0x13, 0x02, 0x02, 0x24, + 0x06, 0x06, 0x06, 0x03, 0x02, 0x05, 0x06, 0x06, 0x0F, 0x02, + 0x02, 0x05, 0x02, 0x05, 0x0A, 0x05, 0x04, 0x0F, 0x09, 0x04, + 0x0F, 0x02, 0x37, 0x09, 0x05, 0x09, 0x05, 0x08, 0x11, 0x09, + 0x1D, 0x45, 0x22, 0x35, 0x4B, 0x04, 0x01, 0x07, 0x07, 0x02, + 0x07, 0x0E, 0x0A, 0x16, 0x39, 0x1C, 0x08, 0x06, 0x04, 0x09, + 0x13, 0x0D, 0x1D, 0x47, 0x24, 0x0C, 0x06, 0x06, 0x08, 0x1B, + 0x0F, 0x1E, 0x4B, 0x1D, 0x10, 0x1A, 0x09, 0x04, 0x0B, 0x0A, + 0x07, 0x2F, 0x04, 0x07, 0x08, 0x0B, 0x06, 0x0D, 0x06, 0x1C, + 0x37, 0x1C, 0x32, 0x66, 0x33, 0x41, 0x85, 0x3B, 0x23, 0x45, + 0x3E, 0x37, 0x15, 0x04, 0x20, 0x12, 0xF9, 0xE4, 0x10, 0x24, + 0x17, 0x15, 0x20, 0x14, 0x15, 0x17, 0x08, 0x08, 0x04, 0x07, + 0x07, 0x34, 0x19, 0x0F, 0x1F, 0x0F, 0x1C, 0x2C, 0x07, 0x08, + 0x0E, 0x15, 0x01, 0x62, 0x2A, 0x4D, 0x24, 0x33, 0x52, 0x20, + 0x18, 0x29, 0x0A, 0x07, 0x0E, 0x03, 0x01, 0x04, 0x02, 0x01, + 0x01, 0x11, 0x03, 0x0A, 0x0B, 0x02, 0x10, 0x03, 0x0A, 0x0E, + 0x05, 0x0F, 0x09, 0x04, 0x01, 0x02, 0x01, 0x04, 0x01, 0x06, + 0x01, 0x03, 0x03, 0x01, 0x03, 0x06, 0x02, 0x11, 0x2E, 0x22, + 0x08, 0x10, 0x08, 0x01, 0x03, 0x03, 0x02, 0x03, 0x01, 0x03, + 0x06, 0x05, 0x05, 0x07, 0x02, 0x03, 0x03, 0x0E, 0x0A, 0x03, + 0x06, 0x0A, 0x07, 0x09, 0x01, 0x02, 0x08, 0x07, 0x05, 0x08, + 0x0C, 0x01, 0x01, 0x05, 0x0C, 0x11, 0x01, 0x08, 0x08, 0x12, + 0x0A, 0x08, 0x06, 0x06, 0x03, 0x06, 0x07, 0x08, 0x10, 0x08, + 0x12, 0x23, 0x12, 0x10, 0x1F, 0x0E, 0x06, 0x12, 0x07, 0x0E, + 0x07, 0x02, 0x02, 0x07, 0x03, 0x05, 0x0A, 0x05, 0x12, 0x12, + 0x09, 0x0D, 0x57, 0x36, 0x07, 0x0D, 0x07, 0x05, 0x12, 0x03, + 0x0C, 0x17, 0x09, 0x16, 0x03, 0x02, 0x01, 0x0B, 0x06, 0x0D, + 0x18, 0x0A, 0x18, 0x0D, 0x0B, 0x04, 0x0B, 0x11, 0x1D, 0x0A, + 0x15, 0x01, 0x15, 0x0C, 0x20, 0x11, 0x07, 0x23, 0x02, 0x01, + 0x13, 0x05, 0x08, 0x0A, 0x04, 0x02, 0x05, 0x02, 0x08, 0x0F, + 0x05, 0x09, 0x05, 0x05, 0x06, 0x2B, 0x1E, 0x12, 0x2E, 0x37, + 0x3E, 0x22, 0x28, 0x4E, 0x24, 0xBE, 0x12, 0x10, 0x02, 0x02, + 0x05, 0x0C, 0x0D, 0x21, 0x16, 0x17, 0x2D, 0x17, 0x17, 0x2E, + 0x02, 0x01, 0x05, 0x0A, 0x33, 0x1D, 0x1E, 0x3E, 0x17, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x52, 0x00, 0x94, 0x08, 0xD3, + 0x02, 0xED, 0x01, 0x94, 0x01, 0xAA, 0x00, 0x00, 0x01, 0x3E, + 0x01, 0x37, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x22, 0x23, 0x1E, 0x01, 0x23, 0x2E, 0x01, 0x27, + 0x26, 0x06, 0x23, 0x22, 0x26, 0x23, 0x1E, 0x01, 0x23, 0x22, + 0x26, 0x27, 0x2E, 0x01, 0x27, 0x22, 0x26, 0x23, 0x1E, 0x01, + 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x06, 0x22, 0x23, + 0x1E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x1E, 0x01, 0x07, 0x22, 0x26, 0x27, 0x2E, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x1E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x1E, 0x01, 0x17, 0x16, + 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x23, 0x22, 0x26, + 0x23, 0x1E, 0x01, 0x07, 0x14, 0x06, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x26, 0x35, 0x3C, 0x01, 0x27, 0x34, 0x26, + 0x35, 0x34, 0x26, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, + 0x1C, 0x01, 0x15, 0x14, 0x26, 0x15, 0x06, 0x14, 0x07, 0x2E, + 0x01, 0x23, 0x2A, 0x01, 0x07, 0x22, 0x06, 0x23, 0x0E, 0x01, + 0x07, 0x14, 0x26, 0x23, 0x22, 0x26, 0x27, 0x26, 0x06, 0x23, + 0x22, 0x26, 0x23, 0x26, 0x22, 0x23, 0x22, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x22, 0x26, 0x27, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x15, 0x06, 0x22, 0x23, + 0x22, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x06, + 0x26, 0x27, 0x26, 0x06, 0x23, 0x22, 0x06, 0x23, 0x22, 0x06, + 0x23, 0x22, 0x06, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x23, + 0x26, 0x22, 0x27, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x23, 0x2A, + 0x01, 0x07, 0x06, 0x14, 0x15, 0x14, 0x06, 0x17, 0x1E, 0x01, + 0x15, 0x1C, 0x01, 0x17, 0x16, 0x36, 0x33, 0x36, 0x32, 0x33, + 0x32, 0x16, 0x17, 0x16, 0x32, 0x33, 0x16, 0x32, 0x33, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x16, + 0x33, 0x32, 0x16, 0x33, 0x32, 0x16, 0x33, 0x32, 0x16, 0x37, + 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x33, 0x32, + 0x26, 0x37, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, + 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x3E, 0x01, 0x33, + 0x32, 0x36, 0x33, 0x32, 0x26, 0x17, 0x3A, 0x01, 0x17, 0x1E, + 0x01, 0x33, 0x32, 0x16, 0x33, 0x32, 0x16, 0x33, 0x32, 0x16, + 0x33, 0x32, 0x36, 0x37, 0x1C, 0x01, 0x33, 0x16, 0x14, 0x15, + 0x16, 0x14, 0x15, 0x14, 0x16, 0x15, 0x1C, 0x01, 0x15, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, + 0x35, 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x36, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x32, + 0x36, 0x33, 0x32, 0x3E, 0x01, 0x32, 0x37, 0x3A, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x25, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x17, + 0x16, 0x06, 0x07, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x26, 0x27, 0x26, 0x36, 0x37, 0x08, 0x9A, 0x0E, 0x1D, 0x0E, + 0x28, 0x52, 0x29, 0x40, 0x7F, 0x40, 0x21, 0x42, 0x21, 0x13, + 0x24, 0x14, 0x06, 0x01, 0x0C, 0x07, 0x06, 0x03, 0x03, 0x09, + 0x07, 0x07, 0x10, 0x08, 0x08, 0x05, 0x0E, 0x08, 0x08, 0x03, + 0x05, 0x03, 0x09, 0x08, 0x10, 0x08, 0x05, 0x0A, 0x0C, 0x08, + 0x0D, 0x03, 0x02, 0x04, 0x08, 0x08, 0x11, 0x09, 0x06, 0x04, + 0x0E, 0x09, 0x07, 0x03, 0x05, 0x05, 0x0A, 0x09, 0x10, 0x08, + 0x06, 0x06, 0x10, 0x09, 0x07, 0x03, 0x04, 0x04, 0x09, 0x09, + 0x10, 0x09, 0x05, 0x04, 0x10, 0x07, 0x06, 0x03, 0x05, 0x06, + 0x09, 0x08, 0x11, 0x08, 0x04, 0x05, 0x01, 0x02, 0x0E, 0x07, + 0x08, 0x08, 0x04, 0x01, 0x20, 0x03, 0x09, 0x14, 0x09, 0x04, + 0x09, 0x01, 0x12, 0x02, 0x03, 0x07, 0x03, 0x02, 0x09, 0x05, + 0x01, 0x08, 0x02, 0x08, 0x10, 0x08, 0x11, 0x23, 0x11, 0x09, + 0x04, 0x01, 0x01, 0x24, 0x07, 0x01, 0x01, 0x01, 0x02, 0x04, + 0x07, 0x0F, 0x07, 0x10, 0x21, 0x10, 0x06, 0x01, 0x03, 0x08, + 0x02, 0x02, 0x01, 0x02, 0x02, 0x0D, 0x02, 0x09, 0x13, 0x0A, + 0x06, 0x0C, 0x06, 0x02, 0x01, 0x01, 0x02, 0x02, 0x05, 0x05, + 0x02, 0x02, 0x02, 0x02, 0x06, 0x0D, 0x06, 0x0F, 0x1D, 0x0F, + 0x01, 0x03, 0x02, 0x02, 0x05, 0x04, 0x02, 0x06, 0x10, 0x21, + 0x10, 0x06, 0x04, 0x04, 0x07, 0x05, 0x05, 0x03, 0x0B, 0x03, + 0x0A, 0x13, 0x09, 0x07, 0x0D, 0x07, 0x04, 0x03, 0x05, 0x07, + 0x06, 0x06, 0x05, 0x0B, 0x05, 0x10, 0x1F, 0x10, 0x17, 0x2F, + 0x16, 0x0E, 0x19, 0x0D, 0x03, 0x0E, 0x01, 0x02, 0x08, 0x02, + 0x01, 0x05, 0x03, 0x04, 0x0E, 0x07, 0x03, 0x06, 0x03, 0x01, + 0x05, 0x01, 0x04, 0x0D, 0x05, 0x0C, 0x17, 0x0C, 0x1C, 0x39, + 0x1C, 0x05, 0x09, 0x04, 0x07, 0x07, 0x08, 0x03, 0x03, 0x04, + 0x08, 0x0E, 0x07, 0x09, 0x11, 0x09, 0x03, 0x0E, 0x03, 0x03, + 0x05, 0x06, 0x05, 0x04, 0x07, 0x10, 0x21, 0x10, 0x07, 0x01, + 0x05, 0x08, 0x02, 0x04, 0x0C, 0x18, 0x0D, 0x08, 0x1B, 0x04, + 0x02, 0x0A, 0x03, 0x02, 0x02, 0x06, 0x0E, 0x1D, 0x0F, 0x05, + 0x09, 0x04, 0x05, 0x02, 0x06, 0x03, 0x03, 0x01, 0x01, 0x02, + 0x01, 0x04, 0x08, 0x04, 0x10, 0x1F, 0x0F, 0x06, 0x0A, 0x06, + 0x03, 0x02, 0x02, 0x03, 0x05, 0x01, 0x01, 0x10, 0x02, 0x01, + 0x10, 0x01, 0x01, 0x04, 0x09, 0x04, 0x20, 0x3E, 0x20, 0x0A, + 0x13, 0x08, 0x04, 0x02, 0x05, 0x2D, 0x59, 0x2D, 0x43, 0x87, + 0x87, 0x87, 0x43, 0x10, 0x20, 0x10, 0x4E, 0x94, 0x43, 0xFE, + 0x62, 0x0D, 0x1A, 0x0E, 0x06, 0x08, 0x02, 0x03, 0x08, 0x09, + 0x04, 0x0D, 0x04, 0x08, 0x0F, 0x07, 0x06, 0x0C, 0x02, 0x05, + 0x0C, 0x09, 0x01, 0x82, 0x09, 0x11, 0x09, 0x0A, 0x14, 0x07, + 0x0C, 0x16, 0x0C, 0x06, 0x0C, 0x05, 0x04, 0x06, 0x16, 0x01, + 0x0E, 0x05, 0x06, 0x01, 0x01, 0x05, 0x19, 0x0D, 0x07, 0x08, + 0x03, 0x01, 0x01, 0x06, 0x16, 0x04, 0x03, 0x09, 0x07, 0x06, + 0x0C, 0x01, 0x06, 0x1B, 0x02, 0x01, 0x0D, 0x07, 0x09, 0x01, + 0x07, 0x18, 0x01, 0x10, 0x06, 0x08, 0x02, 0x08, 0x1B, 0x03, + 0x01, 0x0F, 0x06, 0x08, 0x01, 0x01, 0x01, 0x02, 0x04, 0x0B, + 0x05, 0x09, 0x06, 0x04, 0x04, 0x13, 0x08, 0x03, 0x01, 0x01, + 0x05, 0x0D, 0x07, 0x05, 0x0C, 0x06, 0x07, 0x0D, 0x07, 0x05, + 0x08, 0x05, 0x01, 0x01, 0x01, 0x09, 0x0E, 0x1D, 0x0E, 0x1F, + 0x3F, 0x20, 0x09, 0x02, 0x09, 0x13, 0x28, 0x13, 0x19, 0x33, + 0x19, 0x06, 0x0C, 0x06, 0x03, 0x02, 0x02, 0x05, 0x0A, 0x06, + 0x05, 0x05, 0x01, 0x01, 0x01, 0x04, 0x06, 0x01, 0x01, 0x09, + 0x01, 0x02, 0x01, 0x01, 0x01, 0x02, 0x02, 0x04, 0x02, 0x01, + 0x01, 0x04, 0x02, 0x04, 0x01, 0x06, 0x01, 0x04, 0x0B, 0x01, + 0x05, 0x09, 0x0C, 0x03, 0x01, 0x02, 0x01, 0x01, 0x0B, 0x02, + 0x03, 0x02, 0x05, 0x01, 0x01, 0x04, 0x03, 0x01, 0x02, 0x04, + 0x06, 0x0B, 0x06, 0x19, 0x30, 0x1A, 0x0D, 0x18, 0x0D, 0x05, + 0x0C, 0x04, 0x06, 0x03, 0x01, 0x05, 0x01, 0x02, 0x01, 0x01, + 0x02, 0x01, 0x01, 0x04, 0x02, 0x04, 0x04, 0x0C, 0x01, 0x01, + 0x03, 0x02, 0x02, 0x0F, 0x09, 0x06, 0x01, 0x01, 0x08, 0x02, + 0x04, 0x0F, 0x03, 0x08, 0x03, 0x06, 0x05, 0x05, 0x04, 0x01, + 0x01, 0x01, 0x0C, 0x01, 0x03, 0x01, 0x06, 0x01, 0x01, 0x01, + 0x06, 0x03, 0x02, 0x12, 0x02, 0x02, 0x05, 0x0F, 0x1F, 0x0F, + 0x11, 0x22, 0x11, 0x04, 0x07, 0x04, 0x02, 0x04, 0x04, 0x02, + 0x04, 0x07, 0x03, 0x11, 0x22, 0x11, 0x0F, 0x1E, 0x0F, 0x01, + 0x05, 0x01, 0x07, 0x05, 0x03, 0x02, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x06, 0x31, 0x28, 0x47, 0x09, 0x06, 0x0B, 0x13, 0x06, + 0x02, 0x01, 0x0B, 0x04, 0x0C, 0x12, 0x07, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x51, 0x00, 0xE8, 0x08, 0x53, 0x02, 0x97, + 0x01, 0x6C, 0x01, 0x78, 0x00, 0x00, 0x01, 0x16, 0x06, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x15, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x1E, 0x01, + 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x1E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x2A, 0x01, + 0x07, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x07, + 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x1E, + 0x01, 0x07, 0x06, 0x22, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x23, 0x16, 0x14, 0x07, 0x0E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x22, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x23, + 0x22, 0x26, 0x27, 0x26, 0x06, 0x07, 0x06, 0x26, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, 0x23, 0x36, 0x26, + 0x37, 0x26, 0x06, 0x15, 0x14, 0x06, 0x27, 0x2E, 0x01, 0x15, + 0x14, 0x06, 0x27, 0x26, 0x36, 0x07, 0x22, 0x16, 0x07, 0x22, + 0x36, 0x27, 0x26, 0x16, 0x07, 0x06, 0x26, 0x15, 0x14, 0x06, + 0x35, 0x2E, 0x01, 0x15, 0x14, 0x06, 0x27, 0x26, 0x36, 0x07, + 0x06, 0x16, 0x23, 0x06, 0x26, 0x07, 0x22, 0x16, 0x07, 0x2A, + 0x01, 0x07, 0x22, 0x06, 0x23, 0x06, 0x22, 0x23, 0x2E, 0x01, + 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x33, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, + 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x36, 0x17, 0x1C, 0x01, 0x15, 0x1C, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x1E, 0x01, 0x33, + 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, + 0x16, 0x33, 0x32, 0x16, 0x33, 0x32, 0x16, 0x33, 0x3A, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x16, 0x36, 0x33, 0x32, 0x36, 0x33, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x2E, 0x01, 0x27, + 0x31, 0x01, 0x06, 0x26, 0x37, 0x36, 0x16, 0x17, 0x16, 0x06, + 0x07, 0x06, 0x37, 0x07, 0x76, 0x0C, 0x0B, 0x0E, 0x05, 0x07, + 0x02, 0x04, 0x06, 0x08, 0x04, 0x05, 0x02, 0x10, 0x06, 0x04, + 0x08, 0x03, 0x04, 0x05, 0x09, 0x04, 0x02, 0x07, 0x04, 0x10, + 0x03, 0x05, 0x06, 0x02, 0x04, 0x05, 0x07, 0x04, 0x05, 0x08, + 0x05, 0x0C, 0x05, 0x05, 0x06, 0x02, 0x03, 0x05, 0x08, 0x03, + 0x06, 0x02, 0x02, 0x01, 0x04, 0x05, 0x09, 0x04, 0x06, 0x08, + 0x02, 0x03, 0x06, 0x07, 0x01, 0x06, 0x03, 0x04, 0x0A, 0x06, + 0x06, 0x05, 0x04, 0x04, 0x06, 0x09, 0x03, 0x02, 0x01, 0x03, + 0x13, 0x05, 0x05, 0x05, 0x03, 0x01, 0x04, 0x01, 0x02, 0x03, + 0x05, 0x02, 0x02, 0x04, 0x0D, 0x05, 0x06, 0x06, 0x04, 0x04, + 0x0F, 0x05, 0x0B, 0x14, 0x0A, 0x14, 0x27, 0x17, 0x35, 0x6F, + 0x35, 0x13, 0x26, 0x13, 0x07, 0x0E, 0x07, 0x02, 0x08, 0x02, + 0x06, 0x0B, 0x07, 0x04, 0x0B, 0x05, 0x09, 0x11, 0x09, 0x0A, + 0x11, 0x08, 0x03, 0x09, 0x04, 0x03, 0x07, 0x04, 0x03, 0x0B, + 0x01, 0x02, 0x06, 0x03, 0x01, 0x02, 0x01, 0x04, 0x03, 0x04, + 0x01, 0x01, 0x06, 0x01, 0x05, 0x03, 0x04, 0x06, 0x03, 0x03, + 0x03, 0x06, 0x03, 0x02, 0x07, 0x03, 0x02, 0x05, 0x08, 0x08, + 0x01, 0x06, 0x04, 0x03, 0x04, 0x04, 0x07, 0x03, 0x03, 0x05, + 0x04, 0x01, 0x04, 0x02, 0x01, 0x03, 0x04, 0x07, 0x03, 0x06, + 0x0C, 0x06, 0x0D, 0x18, 0x0D, 0x19, 0x32, 0x19, 0x3A, 0x73, + 0x35, 0x20, 0x3E, 0x21, 0x0B, 0x16, 0x0B, 0x0E, 0x12, 0x08, + 0x07, 0x0D, 0x08, 0x08, 0x10, 0x06, 0x06, 0x08, 0x08, 0x06, + 0x0D, 0x05, 0x10, 0x21, 0x10, 0x07, 0x13, 0x09, 0x0B, 0x0F, + 0x06, 0x0A, 0x17, 0x0F, 0x0B, 0x18, 0x0B, 0x07, 0x0D, 0x06, + 0x08, 0x0C, 0x06, 0x07, 0x10, 0x09, 0x06, 0x0D, 0x06, 0x0E, + 0x1A, 0x0D, 0x05, 0x0B, 0x05, 0x08, 0x0B, 0x05, 0x0C, 0x16, + 0x0D, 0x18, 0x3C, 0x0C, 0x07, 0x0D, 0x08, 0x0C, 0x10, 0x04, + 0x08, 0x1C, 0x18, 0x18, 0x29, 0x14, 0x09, 0x0F, 0x07, 0x02, + 0x02, 0x01, 0x02, 0x06, 0x0D, 0x09, 0x05, 0x0D, 0x01, 0x0B, + 0x04, 0x0C, 0x1A, 0x0C, 0x0C, 0x0C, 0x03, 0x06, 0x0D, 0x05, + 0x03, 0x23, 0x0A, 0x1F, 0x3E, 0x1F, 0x3F, 0x7E, 0x3E, 0x05, + 0x08, 0x04, 0x0C, 0x15, 0x08, 0x06, 0x0A, 0x04, 0x01, 0x03, + 0x01, 0x03, 0x11, 0x03, 0x06, 0x0D, 0x06, 0x0A, 0x14, 0x09, + 0x20, 0x3F, 0x20, 0x2B, 0x56, 0x29, 0x0E, 0x1B, 0x0E, 0x07, + 0x0F, 0x05, 0x15, 0x29, 0x15, 0x11, 0x23, 0x11, 0x37, 0x6F, + 0x37, 0xFC, 0x48, 0x0F, 0x1A, 0x11, 0x07, 0x12, 0x03, 0x03, + 0x05, 0x02, 0x03, 0x01, 0x02, 0x58, 0x07, 0x1A, 0x07, 0x02, + 0x0A, 0x05, 0x07, 0x06, 0x02, 0x04, 0x0A, 0x06, 0x08, 0x05, + 0x05, 0x03, 0x0A, 0x04, 0x09, 0x06, 0x02, 0x06, 0x13, 0x05, + 0x03, 0x02, 0x03, 0x03, 0x0B, 0x04, 0x07, 0x06, 0x01, 0x06, + 0x11, 0x05, 0x04, 0x05, 0x03, 0x03, 0x0B, 0x05, 0x07, 0x04, + 0x01, 0x03, 0x0E, 0x04, 0x04, 0x03, 0x01, 0x01, 0x0D, 0x05, + 0x06, 0x08, 0x01, 0x03, 0x10, 0x03, 0x04, 0x06, 0x04, 0x04, + 0x09, 0x06, 0x07, 0x08, 0x01, 0x04, 0x10, 0x05, 0x07, 0x03, + 0x03, 0x09, 0x05, 0x03, 0x05, 0x03, 0x04, 0x01, 0x04, 0x0B, + 0x04, 0x05, 0x06, 0x06, 0x05, 0x10, 0x06, 0x06, 0x01, 0x01, + 0x02, 0x0D, 0x04, 0x0A, 0x0E, 0x03, 0x07, 0x0A, 0x0A, 0x03, + 0x07, 0x04, 0x01, 0x03, 0x01, 0x01, 0x02, 0x04, 0x09, 0x03, + 0x02, 0x02, 0x0A, 0x02, 0x02, 0x09, 0x04, 0x02, 0x02, 0x04, + 0x02, 0x05, 0x02, 0x01, 0x05, 0x04, 0x04, 0x0B, 0x02, 0x03, + 0x01, 0x01, 0x02, 0x03, 0x02, 0x03, 0x03, 0x02, 0x04, 0x03, + 0x03, 0x07, 0x02, 0x01, 0x05, 0x01, 0x07, 0x01, 0x04, 0x01, + 0x02, 0x08, 0x01, 0x02, 0x09, 0x09, 0x01, 0x01, 0x02, 0x03, + 0x01, 0x02, 0x04, 0x02, 0x01, 0x01, 0x05, 0x02, 0x01, 0x04, + 0x01, 0x05, 0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x05, + 0x03, 0x08, 0x1A, 0x17, 0x0D, 0x1B, 0x09, 0x03, 0x04, 0x01, + 0x01, 0x08, 0x0C, 0x0A, 0x14, 0x08, 0x0A, 0x13, 0x0B, 0x0C, + 0x13, 0x0A, 0x08, 0x0F, 0x08, 0x1B, 0x34, 0x1A, 0x0A, 0x05, + 0x04, 0x04, 0x18, 0x09, 0x0D, 0x1A, 0x09, 0x05, 0x03, 0x04, + 0x02, 0x03, 0x03, 0x04, 0x0C, 0x05, 0x06, 0x09, 0x02, 0x01, + 0x05, 0x01, 0x03, 0x04, 0x02, 0x05, 0x01, 0x01, 0x07, 0x04, + 0x07, 0x12, 0x05, 0x09, 0x19, 0x16, 0x0C, 0x16, 0x0B, 0x11, + 0x20, 0x08, 0x16, 0x25, 0x07, 0x07, 0x0E, 0x0C, 0x06, 0x14, + 0x09, 0x03, 0x05, 0x07, 0x02, 0x06, 0x02, 0x06, 0x0C, 0x05, + 0x0C, 0x15, 0x0A, 0x06, 0x0E, 0x09, 0x05, 0x03, 0x01, 0x03, + 0x02, 0x02, 0x08, 0x0C, 0x1B, 0x36, 0x1B, 0x0D, 0x02, 0x01, + 0x01, 0x01, 0x01, 0x08, 0x07, 0x04, 0x0A, 0x06, 0x02, 0x0B, + 0x01, 0x02, 0x02, 0x01, 0x01, 0x01, 0x02, 0x06, 0x03, 0x04, + 0x15, 0x0C, 0x05, 0x08, 0x04, 0x02, 0x04, 0x05, 0x16, 0x2B, + 0x15, 0x13, 0x24, 0x12, 0x07, 0x0E, 0x07, 0xFE, 0xAF, 0x0E, + 0x20, 0x0B, 0x04, 0x05, 0x08, 0x06, 0x09, 0x05, 0x03, 0x01, + 0x00, 0x01, 0x00, 0x53, 0x01, 0x09, 0x08, 0x53, 0x02, 0x77, + 0x01, 0x8D, 0x00, 0x00, 0x01, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x31, 0x2E, 0x01, 0x27, 0x22, 0x26, 0x27, 0x2E, 0x01, + 0x23, 0x30, 0x31, 0x27, 0x26, 0x06, 0x23, 0x22, 0x06, 0x27, + 0x2A, 0x01, 0x23, 0x2E, 0x01, 0x07, 0x22, 0x06, 0x07, 0x17, + 0x30, 0x31, 0x23, 0x2E, 0x01, 0x27, 0x0E, 0x01, 0x07, 0x30, + 0x23, 0x22, 0x23, 0x26, 0x06, 0x23, 0x22, 0x26, 0x23, 0x31, + 0x22, 0x23, 0x2E, 0x01, 0x27, 0x16, 0x14, 0x17, 0x23, 0x31, + 0x14, 0x06, 0x15, 0x2E, 0x01, 0x27, 0x06, 0x26, 0x27, 0x22, + 0x26, 0x23, 0x14, 0x16, 0x15, 0x22, 0x26, 0x15, 0x22, 0x31, + 0x23, 0x2E, 0x01, 0x27, 0x0E, 0x01, 0x07, 0x22, 0x06, 0x27, + 0x2E, 0x01, 0x27, 0x22, 0x26, 0x27, 0x0E, 0x01, 0x15, 0x30, + 0x31, 0x23, 0x2E, 0x01, 0x27, 0x06, 0x26, 0x07, 0x2E, 0x01, + 0x27, 0x16, 0x14, 0x15, 0x30, 0x39, 0x01, 0x22, 0x26, 0x23, + 0x2E, 0x01, 0x27, 0x0E, 0x01, 0x07, 0x22, 0x23, 0x15, 0x0E, + 0x01, 0x07, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x17, 0x2E, 0x01, + 0x23, 0x22, 0x06, 0x15, 0x2A, 0x01, 0x23, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x23, 0x26, 0x22, 0x23, 0x1C, 0x01, 0x15, 0x30, + 0x31, 0x15, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x30, 0x15, + 0x16, 0x15, 0x14, 0x06, 0x23, 0x06, 0x22, 0x23, 0x2E, 0x01, + 0x27, 0x1E, 0x01, 0x17, 0x2A, 0x01, 0x15, 0x2E, 0x01, 0x23, + 0x26, 0x22, 0x07, 0x2A, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x14, + 0x16, 0x17, 0x0E, 0x01, 0x07, 0x22, 0x26, 0x07, 0x2E, 0x01, + 0x27, 0x06, 0x22, 0x27, 0x06, 0x22, 0x07, 0x23, 0x26, 0x27, + 0x2E, 0x01, 0x27, 0x15, 0x22, 0x26, 0x23, 0x2A, 0x01, 0x23, + 0x3E, 0x01, 0x35, 0x2E, 0x01, 0x27, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x14, 0x16, 0x17, 0x2E, 0x01, 0x07, 0x0E, 0x01, + 0x27, 0x26, 0x06, 0x27, 0x06, 0x26, 0x07, 0x2E, 0x01, 0x27, + 0x06, 0x26, 0x07, 0x26, 0x06, 0x07, 0x22, 0x06, 0x07, 0x06, + 0x26, 0x07, 0x26, 0x06, 0x27, 0x0E, 0x01, 0x07, 0x06, 0x14, + 0x07, 0x0E, 0x01, 0x07, 0x22, 0x26, 0x23, 0x16, 0x14, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x1E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x06, 0x16, + 0x07, 0x32, 0x36, 0x37, 0x34, 0x26, 0x35, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x1E, 0x01, 0x17, 0x16, + 0x36, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x16, 0x36, 0x37, + 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x22, + 0x26, 0x27, 0x07, 0xED, 0x17, 0x2E, 0x16, 0x17, 0x2F, 0x16, + 0x03, 0x06, 0x03, 0x01, 0x02, 0x01, 0x02, 0x05, 0x03, 0x01, + 0x07, 0x0E, 0x07, 0x0D, 0x19, 0x0D, 0x01, 0x03, 0x01, 0x02, + 0x04, 0x04, 0x0D, 0x1A, 0x0D, 0x01, 0x01, 0x01, 0x03, 0x01, + 0x02, 0x06, 0x03, 0x01, 0x01, 0x01, 0x04, 0x0B, 0x05, 0x02, + 0x05, 0x03, 0x01, 0x01, 0x04, 0x0B, 0x05, 0x01, 0x01, 0x01, + 0x01, 0x03, 0x05, 0x03, 0x05, 0x17, 0x07, 0x02, 0x05, 0x02, + 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, + 0x02, 0x04, 0x08, 0x04, 0x03, 0x06, 0x03, 0x02, 0x07, 0x02, + 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x05, 0x0C, 0x06, 0x06, + 0x0C, 0x07, 0x01, 0x02, 0x04, 0x01, 0x01, 0x01, 0x01, 0x02, + 0x04, 0x02, 0x01, 0x01, 0x03, 0x04, 0x02, 0x09, 0x0D, 0x09, + 0x01, 0x04, 0x01, 0x03, 0x0A, 0x03, 0x01, 0x01, 0x04, 0x08, + 0x03, 0x04, 0x06, 0x03, 0x02, 0x04, 0x02, 0x02, 0x03, 0x02, + 0x02, 0x03, 0x01, 0x03, 0x04, 0x02, 0x01, 0x02, 0x01, 0x01, + 0x03, 0x01, 0x09, 0x13, 0x09, 0x01, 0x04, 0x02, 0x01, 0x01, + 0x03, 0x06, 0x03, 0x04, 0x08, 0x04, 0x03, 0x07, 0x04, 0x03, + 0x09, 0x04, 0x01, 0x01, 0x08, 0x10, 0x07, 0x07, 0x0E, 0x07, + 0x01, 0x04, 0x01, 0x04, 0x08, 0x03, 0x01, 0x02, 0x01, 0x03, + 0x04, 0x02, 0x02, 0x02, 0x02, 0x02, 0x05, 0x02, 0x0A, 0x14, + 0x0A, 0x04, 0x03, 0x06, 0x0C, 0x06, 0x06, 0x0B, 0x07, 0x07, + 0x0E, 0x07, 0x01, 0x01, 0x05, 0x0B, 0x06, 0x12, 0x28, 0x13, + 0x16, 0x2C, 0x16, 0x11, 0x21, 0x11, 0x3A, 0x74, 0x3A, 0x22, + 0x44, 0x23, 0x14, 0x28, 0x14, 0x09, 0x13, 0x09, 0x09, 0x0E, + 0x08, 0x15, 0x29, 0x14, 0x08, 0x14, 0x03, 0x03, 0x01, 0x05, + 0x08, 0x03, 0x03, 0x07, 0x03, 0x01, 0x02, 0x06, 0x0F, 0x03, + 0x05, 0x03, 0x0D, 0x06, 0x11, 0x08, 0x0A, 0x13, 0x09, 0x03, + 0x05, 0x05, 0x0D, 0x1E, 0x0B, 0x12, 0x24, 0x12, 0x1B, 0x37, + 0x1B, 0x1C, 0x38, 0x1C, 0x2C, 0x57, 0x2B, 0x15, 0x2A, 0x14, + 0x0C, 0x19, 0x0D, 0x0F, 0x1C, 0x0E, 0x09, 0x0E, 0x06, 0x0D, + 0x18, 0x0B, 0x01, 0x06, 0x02, 0x06, 0x02, 0x02, 0x09, 0x12, + 0x09, 0x01, 0x06, 0x0F, 0x0A, 0x05, 0x0E, 0x01, 0x01, 0x02, + 0x03, 0x12, 0x20, 0x11, 0x0F, 0x1D, 0x0E, 0x06, 0x04, 0x01, + 0x1B, 0x37, 0x1C, 0x1F, 0x3E, 0x20, 0x43, 0x87, 0x43, 0x1F, + 0x3F, 0x20, 0x13, 0x26, 0x13, 0x10, 0x1F, 0x10, 0x22, 0x41, + 0x1C, 0x07, 0x12, 0x04, 0x19, 0x34, 0x19, 0x01, 0xEF, 0x03, + 0x06, 0x07, 0x07, 0x10, 0x0B, 0x02, 0x03, 0x01, 0x01, 0x01, + 0x02, 0x03, 0x01, 0x01, 0x04, 0x07, 0x01, 0x03, 0x04, 0x01, + 0x01, 0x01, 0x03, 0x01, 0x03, 0x01, 0x01, 0x02, 0x01, 0x03, + 0x01, 0x01, 0x03, 0x04, 0x01, 0x01, 0x06, 0x02, 0x02, 0x01, + 0x01, 0x03, 0x05, 0x03, 0x0B, 0x08, 0x04, 0x01, 0x02, 0x04, + 0x02, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, + 0x01, 0x01, 0x03, 0x02, 0x01, 0x01, 0x03, 0x07, 0x03, 0x02, + 0x04, 0x03, 0x05, 0x01, 0x01, 0x03, 0x05, 0x03, 0x02, 0x07, + 0x02, 0x02, 0x01, 0x04, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x02, 0x0A, 0x01, 0x02, 0x08, 0x02, 0x01, 0x03, + 0x02, 0x01, 0x01, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x03, 0x01, 0x01, 0x08, 0x03, 0x02, 0x08, 0x02, + 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x03, 0x04, 0x02, 0x02, + 0x05, 0x02, 0x01, 0x03, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, + 0x01, 0x11, 0x23, 0x11, 0x01, 0x02, 0x01, 0x0A, 0x13, 0x09, + 0x06, 0x09, 0x05, 0x04, 0x07, 0x04, 0x02, 0x04, 0x03, 0x08, + 0x03, 0x03, 0x03, 0x01, 0x03, 0x03, 0x04, 0x03, 0x02, 0x07, + 0x01, 0x03, 0x01, 0x05, 0x01, 0x0A, 0x02, 0x02, 0x02, 0x03, + 0x0C, 0x02, 0x01, 0x03, 0x06, 0x02, 0x06, 0x0A, 0x0C, 0x18, + 0x0C, 0x04, 0x09, 0x06, 0x01, 0x07, 0x0E, 0x07, 0x04, 0x05, + 0x08, 0x16, 0x2F, 0x14, 0x07, 0x04, 0x03, 0x04, 0x0A, 0x04, + 0x0A, 0x14, 0x09, 0x0A, 0x0B, 0x0B, 0x02, 0x01, 0x02, 0x04, + 0x05, 0x06, 0x02, 0x0B, 0x01, 0x03, 0x03, 0x03, 0x05, 0x10, + 0x09, 0x05, 0x06, 0x02, 0x01, 0x07, 0x03, 0x02, 0x0B, 0x06, + 0x0A, 0x14, 0x0A, 0x07, 0x0C, 0x06, 0x0E, 0x1F, 0x0F, 0x01, + 0x03, 0x03, 0x08, 0x02, 0x0C, 0x16, 0x09, 0x06, 0x0B, 0x09, + 0x0E, 0x1C, 0x0D, 0x04, 0x11, 0x04, 0x01, 0x02, 0x0B, 0x04, + 0x03, 0x02, 0x03, 0x01, 0x01, 0x0F, 0x0D, 0x05, 0x02, 0x01, + 0x01, 0x01, 0x05, 0x01, 0x0B, 0x03, 0x0A, 0x20, 0x17, 0x09, + 0x0E, 0x0B, 0x01, 0x04, 0x00, 0x0A, 0x00, 0x50, 0x01, 0x0D, + 0x08, 0x54, 0x02, 0x71, 0x00, 0xF3, 0x00, 0xFF, 0x01, 0x0C, + 0x01, 0x19, 0x01, 0x25, 0x01, 0x32, 0x01, 0x3B, 0x01, 0x44, + 0x01, 0x52, 0x01, 0x68, 0x00, 0x00, 0x01, 0x0E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x22, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x23, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x23, 0x22, 0x0E, 0x02, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, + 0x32, 0x16, 0x15, 0x1E, 0x01, 0x17, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x37, + 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x32, 0x33, + 0x32, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, + 0x27, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x16, 0x07, 0x3E, 0x01, 0x33, 0x32, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x35, 0x3E, 0x01, + 0x17, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x0E, 0x01, 0x07, 0x31, 0x05, + 0x06, 0x26, 0x37, 0x36, 0x16, 0x17, 0x16, 0x06, 0x07, 0x06, + 0x3F, 0x01, 0x06, 0x26, 0x37, 0x36, 0x16, 0x17, 0x16, 0x06, + 0x07, 0x06, 0x3F, 0x01, 0x25, 0x06, 0x26, 0x37, 0x36, 0x16, + 0x17, 0x16, 0x06, 0x07, 0x06, 0x3F, 0x01, 0x17, 0x06, 0x26, + 0x37, 0x36, 0x16, 0x17, 0x16, 0x06, 0x07, 0x06, 0x37, 0x05, + 0x06, 0x26, 0x37, 0x36, 0x16, 0x17, 0x16, 0x06, 0x07, 0x06, + 0x3F, 0x02, 0x06, 0x26, 0x37, 0x36, 0x16, 0x07, 0x06, 0x36, + 0x25, 0x06, 0x26, 0x37, 0x36, 0x16, 0x07, 0x06, 0x36, 0x17, + 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x36, 0x16, 0x07, 0x30, + 0x37, 0x36, 0x07, 0x25, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x3A, 0x01, 0x17, 0x32, 0x16, 0x17, 0x2E, + 0x03, 0x27, 0x31, 0x08, 0x19, 0x34, 0x65, 0x33, 0x1B, 0x33, + 0x18, 0x06, 0x0B, 0x05, 0x05, 0x05, 0x07, 0x16, 0x2E, 0x17, + 0x22, 0x43, 0x22, 0x15, 0x28, 0x14, 0x1A, 0x33, 0x19, 0x0C, + 0x1A, 0x0C, 0x06, 0x0B, 0x05, 0x07, 0x0F, 0x0B, 0x07, 0x10, + 0x08, 0x0B, 0x08, 0x05, 0x08, 0x1D, 0x0F, 0x19, 0x31, 0x1A, + 0x14, 0x27, 0x13, 0x12, 0x20, 0x13, 0x19, 0x30, 0x19, 0x33, + 0x67, 0x67, 0x64, 0x32, 0x25, 0x4A, 0x23, 0x0D, 0x19, 0x0D, + 0x0E, 0x1F, 0x0B, 0x04, 0x08, 0x04, 0x06, 0x0B, 0x04, 0x08, + 0x10, 0x08, 0x09, 0x11, 0x0B, 0x0B, 0x14, 0x0B, 0x19, 0x33, + 0x1A, 0x22, 0x47, 0x25, 0x1B, 0x37, 0x1B, 0x1D, 0x39, 0x1C, + 0x2F, 0x5F, 0x2F, 0x19, 0x33, 0x19, 0x0B, 0x16, 0x0A, 0x02, + 0x02, 0x03, 0x05, 0x04, 0x18, 0x29, 0x17, 0x1C, 0x38, 0x1C, + 0x30, 0x61, 0x2F, 0x4B, 0x96, 0x46, 0x25, 0x4B, 0x21, 0x0C, + 0x18, 0x09, 0x04, 0x1E, 0x04, 0x0B, 0x17, 0x11, 0x03, 0x04, + 0x02, 0x05, 0x0B, 0x06, 0x1E, 0x43, 0x20, 0x30, 0x64, 0x32, + 0x17, 0x31, 0x17, 0x16, 0x2A, 0x15, 0x21, 0x40, 0x21, 0x17, + 0x31, 0x17, 0x15, 0x2C, 0x16, 0x05, 0x0B, 0x05, 0x05, 0x0D, + 0x04, 0x04, 0x05, 0x02, 0x05, 0x05, 0x02, 0x05, 0x05, 0x01, + 0x08, 0x04, 0x03, 0x10, 0x02, 0x10, 0x0A, 0x09, 0x0E, 0x23, + 0x0B, 0x03, 0x04, 0x02, 0x01, 0x01, 0x01, 0x05, 0x09, 0x06, + 0x07, 0x09, 0x03, 0x04, 0x09, 0x05, 0x05, 0x08, 0x04, 0x03, + 0x05, 0x03, 0x03, 0x2D, 0x01, 0x01, 0x04, 0x05, 0x0B, 0x05, + 0x11, 0x22, 0x12, 0x33, 0x67, 0x34, 0x17, 0x2E, 0x18, 0x18, + 0x30, 0x18, 0x1A, 0x34, 0x18, 0x23, 0x40, 0x19, 0x0E, 0x1C, + 0x0D, 0x0F, 0x1D, 0x0F, 0xF8, 0x94, 0x0E, 0x18, 0x13, 0x07, + 0x10, 0x01, 0x01, 0x04, 0x02, 0x02, 0x01, 0x49, 0x0E, 0x19, + 0x11, 0x08, 0x10, 0x03, 0x01, 0x04, 0x02, 0x03, 0x02, 0x01, + 0x02, 0x03, 0x0E, 0x1A, 0x10, 0x08, 0x11, 0x03, 0x02, 0x04, + 0x02, 0x03, 0x01, 0x02, 0x47, 0x0D, 0x1A, 0x10, 0x07, 0x11, + 0x03, 0x03, 0x05, 0x02, 0x02, 0x01, 0xFD, 0xF7, 0x0D, 0x1A, + 0x10, 0x07, 0x0F, 0x04, 0x04, 0x04, 0x03, 0x02, 0x01, 0x01, + 0x3A, 0x0C, 0x1C, 0x0E, 0x0C, 0x1C, 0x0E, 0x03, 0x06, 0x02, + 0x0D, 0x0E, 0x19, 0x11, 0x0D, 0x14, 0x0B, 0x03, 0x06, 0x3D, + 0x04, 0x08, 0x04, 0x08, 0x09, 0x03, 0x09, 0x24, 0x0F, 0x01, + 0x01, 0x02, 0x01, 0xD2, 0x03, 0x08, 0x03, 0x32, 0x63, 0x32, + 0x21, 0x42, 0x20, 0x0A, 0x13, 0x0A, 0x07, 0x06, 0x06, 0x2E, + 0x5E, 0x5D, 0x5E, 0x2F, 0x02, 0x15, 0x04, 0x07, 0x0E, 0x07, + 0x18, 0x0E, 0x04, 0x06, 0x04, 0x03, 0x02, 0x04, 0x09, 0x02, + 0x02, 0x05, 0x02, 0x01, 0x04, 0x02, 0x03, 0x05, 0x04, 0x03, + 0x04, 0x03, 0x01, 0x04, 0x05, 0x08, 0x0B, 0x02, 0x02, 0x04, + 0x01, 0x09, 0x07, 0x0B, 0x11, 0x04, 0x08, 0x11, 0x02, 0x01, + 0x01, 0x06, 0x05, 0x0F, 0x02, 0x02, 0x05, 0x05, 0x0B, 0x14, + 0x10, 0x0C, 0x18, 0x10, 0x06, 0x0E, 0x07, 0x09, 0x12, 0x0D, + 0x05, 0x0A, 0x05, 0x06, 0x0C, 0x05, 0x09, 0x11, 0x08, 0x08, + 0x0D, 0x08, 0x08, 0x0D, 0x07, 0x0E, 0x17, 0x0C, 0x0F, 0x1B, + 0x08, 0x06, 0x0D, 0x04, 0x04, 0x08, 0x04, 0x06, 0x02, 0x03, + 0x01, 0x03, 0x01, 0x01, 0x03, 0x10, 0x02, 0x06, 0x0B, 0x05, + 0x02, 0x17, 0x03, 0x03, 0x05, 0x02, 0x04, 0x03, 0x06, 0x09, + 0x1F, 0x1E, 0x10, 0x21, 0x16, 0x08, 0x0F, 0x0A, 0x05, 0x23, + 0x05, 0x0C, 0x13, 0x03, 0x0D, 0x02, 0x06, 0x07, 0x05, 0x13, + 0x19, 0x0D, 0x13, 0x1C, 0x0D, 0x06, 0x02, 0x02, 0x01, 0x04, + 0x01, 0x02, 0x03, 0x01, 0x01, 0x08, 0x03, 0x03, 0x04, 0x03, + 0x01, 0x01, 0x01, 0x02, 0x0C, 0x03, 0x09, 0x11, 0x09, 0x0E, + 0x15, 0x0D, 0x03, 0x09, 0x03, 0x03, 0x0B, 0x02, 0x10, 0x30, + 0x15, 0x0C, 0x12, 0x08, 0x03, 0x07, 0x03, 0x02, 0x0A, 0x01, + 0x03, 0x07, 0x01, 0x01, 0x09, 0x06, 0x04, 0x04, 0x01, 0x03, + 0x01, 0x08, 0x01, 0x01, 0x04, 0x02, 0x03, 0x06, 0x01, 0x01, + 0x01, 0x02, 0x04, 0x02, 0x06, 0x0D, 0x06, 0x03, 0x07, 0x02, + 0x02, 0x07, 0x01, 0x01, 0x02, 0x09, 0x0D, 0x1F, 0x1D, 0x11, + 0x20, 0x11, 0x02, 0x05, 0x03, 0x6C, 0x0F, 0x24, 0x07, 0x04, + 0x08, 0x08, 0x04, 0x08, 0x04, 0x03, 0x01, 0x1B, 0x0E, 0x20, + 0x0B, 0x04, 0x07, 0x08, 0x05, 0x09, 0x04, 0x02, 0x01, 0x01, + 0x7C, 0x0E, 0x1F, 0x0B, 0x05, 0x05, 0x08, 0x05, 0x0A, 0x05, + 0x03, 0x01, 0x02, 0x05, 0x0D, 0x1E, 0x0B, 0x05, 0x05, 0x08, + 0x05, 0x0A, 0x05, 0x02, 0x01, 0xCC, 0x0D, 0x1E, 0x0B, 0x04, + 0x04, 0x06, 0x06, 0x0A, 0x06, 0x03, 0x01, 0x02, 0x19, 0x0D, + 0x1A, 0x0C, 0x0C, 0x19, 0x0C, 0x03, 0x05, 0x51, 0x0E, 0x20, + 0x09, 0x06, 0x16, 0x0B, 0x03, 0x05, 0x09, 0x02, 0x04, 0x01, + 0x01, 0x0F, 0x08, 0x13, 0x19, 0x0D, 0x01, 0x01, 0x02, 0x3F, + 0x02, 0x04, 0x02, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, + 0x03, 0x05, 0x01, 0x03, 0x02, 0x03, 0x01, 0x00, 0x00, 0x00, + 0x00, 0x08, 0x00, 0x54, 0x00, 0x86, 0x08, 0x54, 0x02, 0xF5, + 0x00, 0x77, 0x00, 0x90, 0x00, 0xAC, 0x00, 0xCF, 0x01, 0x36, + 0x01, 0x4F, 0x01, 0x6B, 0x01, 0x8D, 0x00, 0x00, 0x01, 0x2E, + 0x03, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2A, 0x01, + 0x23, 0x2E, 0x01, 0x23, 0x26, 0x22, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x34, 0x35, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x14, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x2E, 0x01, 0x27, 0x26, 0x1F, 0x01, 0x25, 0x3E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x36, 0x06, + 0x37, 0x13, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x06, 0x3F, 0x02, 0x0E, + 0x01, 0x07, 0x06, 0x22, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x30, + 0x37, 0x36, 0x07, 0x25, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x26, 0x34, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, + 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x14, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x03, 0x37, + 0x2E, 0x01, 0x27, 0x31, 0x25, 0x3E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x36, 0x06, 0x37, 0x13, + 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x06, 0x07, 0x06, 0x3F, 0x02, 0x0E, 0x01, 0x07, + 0x06, 0x22, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x37, 0x36, 0x07, + 0x03, 0xE8, 0x24, 0x51, 0x54, 0x56, 0x2B, 0x1F, 0x3E, 0x20, + 0x0A, 0x15, 0x0A, 0x03, 0x06, 0x03, 0x04, 0x02, 0x04, 0x06, + 0x0E, 0x03, 0x04, 0x09, 0x05, 0x05, 0x07, 0x02, 0x01, 0x04, + 0x02, 0x04, 0x0B, 0x0E, 0x13, 0x32, 0x1C, 0x10, 0x1C, 0x05, + 0x03, 0x02, 0x14, 0x09, 0x04, 0x01, 0x05, 0x08, 0x16, 0x0D, + 0x07, 0x1B, 0x0A, 0x08, 0x0C, 0x06, 0x12, 0x22, 0x09, 0x0B, + 0x02, 0x01, 0x05, 0x0B, 0x07, 0x11, 0x08, 0x0A, 0x17, 0x11, + 0x12, 0x29, 0x0B, 0x07, 0x0B, 0x01, 0x01, 0x09, 0x03, 0x04, + 0x08, 0x02, 0x03, 0x01, 0x07, 0x07, 0x25, 0x11, 0x13, 0x1E, + 0x0E, 0x09, 0x1C, 0x01, 0x02, 0x01, 0x07, 0x0A, 0x10, 0x04, + 0x0C, 0x24, 0x0E, 0x1F, 0x3D, 0x1F, 0x27, 0x4F, 0x27, 0x44, + 0x80, 0x3C, 0x0D, 0x1A, 0x0F, 0x1D, 0x0F, 0x0E, 0xFC, 0xBA, + 0x03, 0x10, 0x0B, 0x0B, 0x10, 0x08, 0x0A, 0x0F, 0x02, 0x02, + 0x08, 0x0A, 0x08, 0x0E, 0x07, 0x07, 0x0F, 0x04, 0x05, 0x12, + 0x04, 0x09, 0x13, 0x0A, 0x39, 0x0B, 0x0F, 0x0A, 0x07, 0x0B, + 0x06, 0x02, 0x08, 0x06, 0x08, 0x10, 0x08, 0x09, 0x16, 0x05, + 0x03, 0x03, 0x02, 0x02, 0x02, 0x01, 0x01, 0x0D, 0x05, 0x08, + 0x04, 0x04, 0x02, 0x0C, 0x18, 0x0D, 0x0C, 0x1F, 0x08, 0x08, + 0x03, 0x01, 0x01, 0x01, 0x02, 0x01, 0x03, 0x07, 0x06, 0x14, + 0x07, 0x0D, 0x1A, 0x0D, 0x10, 0x20, 0x0D, 0x04, 0x03, 0x04, + 0x0A, 0x17, 0x0B, 0x0D, 0x0D, 0x1A, 0x07, 0x62, 0x2F, 0x5F, + 0x37, 0x1C, 0x37, 0x1C, 0x21, 0x42, 0x21, 0x21, 0x46, 0x1D, + 0x08, 0x11, 0x08, 0x06, 0x04, 0x03, 0x08, 0x21, 0x1D, 0x17, + 0x39, 0x0E, 0x0B, 0x07, 0x03, 0x09, 0x04, 0x03, 0x0B, 0x04, + 0x06, 0x0E, 0x0A, 0x08, 0x21, 0x0F, 0x07, 0x0B, 0x04, 0x0A, + 0x13, 0x09, 0x0F, 0x16, 0x04, 0x02, 0x02, 0x01, 0x01, 0x07, + 0x12, 0x08, 0x11, 0x09, 0x09, 0x22, 0x19, 0x11, 0x22, 0x07, + 0x08, 0x10, 0x06, 0x07, 0x03, 0x04, 0x07, 0x4D, 0x1D, 0x0E, + 0x1A, 0x09, 0x05, 0x01, 0x02, 0x0B, 0x09, 0x04, 0x07, 0x02, + 0x03, 0x13, 0x09, 0x1C, 0x38, 0x1C, 0x27, 0x4F, 0x27, 0x28, + 0x4E, 0x4C, 0x49, 0x23, 0x06, 0x0A, 0x05, 0xFC, 0x98, 0x04, + 0x0F, 0x0B, 0x0B, 0x10, 0x09, 0x09, 0x0E, 0x03, 0x02, 0x07, + 0x0B, 0x07, 0x0F, 0x07, 0x07, 0x0F, 0x04, 0x04, 0x11, 0x04, + 0x09, 0x13, 0x0A, 0x39, 0x0B, 0x0F, 0x09, 0x07, 0x0C, 0x05, + 0x03, 0x08, 0x07, 0x07, 0x10, 0x08, 0x0A, 0x15, 0x05, 0x03, + 0x04, 0x01, 0x02, 0x02, 0x01, 0x01, 0x0D, 0x05, 0x08, 0x04, + 0x04, 0x02, 0x0C, 0x18, 0x0D, 0x0C, 0x1F, 0x08, 0x08, 0x02, + 0x02, 0x01, 0x01, 0x02, 0x01, 0x04, 0x07, 0x05, 0x14, 0x07, + 0x0D, 0x1A, 0x0D, 0x10, 0x20, 0x0D, 0x04, 0x03, 0x04, 0x0A, + 0x16, 0x0C, 0x0D, 0x0D, 0x1A, 0x01, 0xE1, 0x18, 0x20, 0x15, + 0x0C, 0x04, 0x04, 0x05, 0x02, 0x01, 0x01, 0x01, 0x01, 0x03, + 0x02, 0x05, 0x08, 0x0F, 0x07, 0x07, 0x02, 0x09, 0x09, 0x12, + 0x09, 0x14, 0x24, 0x0F, 0x14, 0x15, 0x08, 0x05, 0x16, 0x11, + 0x0A, 0x14, 0x09, 0x16, 0x29, 0x13, 0x09, 0x0E, 0x09, 0x0F, + 0x19, 0x0B, 0x05, 0x13, 0x09, 0x08, 0x16, 0x0B, 0x1F, 0x42, + 0x23, 0x2C, 0x5B, 0x2C, 0x19, 0x36, 0x16, 0x11, 0x1F, 0x10, + 0x14, 0x2D, 0x10, 0x10, 0x2A, 0x0D, 0x08, 0x12, 0x0B, 0x09, + 0x0E, 0x07, 0x0A, 0x15, 0x0B, 0x0F, 0x24, 0x0E, 0x11, 0x12, + 0x01, 0x01, 0x0D, 0x0C, 0x09, 0x1D, 0x0E, 0x0D, 0x26, 0x0B, + 0x12, 0x30, 0x03, 0x08, 0x02, 0x02, 0x02, 0x07, 0x04, 0x05, + 0x08, 0x09, 0x0F, 0x36, 0x22, 0x0B, 0x11, 0x09, 0x14, 0x0A, + 0x0A, 0xBB, 0x08, 0x1E, 0x02, 0x02, 0x0D, 0x07, 0x08, 0x3B, + 0x0B, 0x0A, 0x07, 0x04, 0x04, 0x08, 0x03, 0x04, 0x07, 0x07, + 0x08, 0x1D, 0x07, 0x13, 0x25, 0x12, 0xFE, 0x2F, 0x0A, 0x02, + 0x0C, 0x09, 0x13, 0x0A, 0x04, 0x10, 0x05, 0x05, 0x0B, 0x05, + 0x06, 0x06, 0x0C, 0x08, 0x12, 0x08, 0x07, 0x0F, 0x07, 0x07, + 0x0A, 0x04, 0x07, 0x04, 0x03, 0xB8, 0x0B, 0x15, 0x0B, 0x0B, + 0x14, 0x14, 0x2E, 0x16, 0x0F, 0x20, 0x0F, 0x0B, 0x1A, 0x08, + 0x07, 0x04, 0x06, 0x0B, 0x17, 0x0B, 0x0D, 0x1D, 0x10, 0x06, + 0x07, 0x04, 0x0D, 0x16, 0x0B, 0x0D, 0x0C, 0x19, 0x4A, 0x1C, + 0x2F, 0x0C, 0x06, 0x0C, 0x03, 0x03, 0x08, 0x02, 0x02, 0x01, + 0x0C, 0x03, 0x2F, 0x13, 0x0C, 0x20, 0x0D, 0x1E, 0x2A, 0x0C, + 0x0A, 0x0F, 0x16, 0x12, 0x34, 0x13, 0x09, 0x12, 0x09, 0x07, + 0x15, 0x07, 0x0B, 0x16, 0x09, 0x09, 0x1D, 0x03, 0x01, 0x14, + 0x05, 0x11, 0x24, 0x12, 0x1E, 0x3C, 0x21, 0x17, 0x2D, 0x17, + 0x28, 0x53, 0x24, 0x11, 0x21, 0x11, 0x10, 0x3E, 0x0C, 0x09, + 0x25, 0x12, 0x12, 0x1C, 0x11, 0x12, 0x23, 0x13, 0x26, 0x15, + 0x14, 0x09, 0x1C, 0x0F, 0x09, 0x14, 0x09, 0x06, 0x2E, 0x10, + 0x07, 0x0C, 0x08, 0x09, 0x04, 0x01, 0x04, 0x04, 0x04, 0x05, + 0x0A, 0x05, 0x05, 0x15, 0x1E, 0x24, 0x13, 0x04, 0x09, 0x04, + 0xCF, 0x08, 0x1E, 0x02, 0x02, 0x0D, 0x07, 0x08, 0x3B, 0x0B, + 0x0A, 0x07, 0x04, 0x04, 0x08, 0x03, 0x04, 0x07, 0x07, 0x08, + 0x1D, 0x07, 0x13, 0x25, 0x12, 0xFE, 0x2F, 0x0A, 0x02, 0x0C, + 0x09, 0x13, 0x0A, 0x04, 0x10, 0x05, 0x05, 0x0B, 0x05, 0x06, + 0x06, 0x0C, 0x08, 0x12, 0x08, 0x07, 0x0F, 0x07, 0x07, 0x0A, + 0x04, 0x07, 0x04, 0x03, 0xB8, 0x0B, 0x15, 0x0B, 0x0B, 0x14, + 0x14, 0x2E, 0x16, 0x0F, 0x20, 0x0F, 0x0B, 0x1A, 0x08, 0x07, + 0x04, 0x06, 0x0B, 0x17, 0x0B, 0x0D, 0x1D, 0x10, 0x06, 0x07, + 0x04, 0x0D, 0x16, 0x0B, 0x0D, 0x0C, 0x19, 0x00, 0x00, 0x02, + 0x00, 0x5D, 0x00, 0x26, 0x06, 0x16, 0x03, 0x5B, 0x00, 0xC2, + 0x00, 0xDE, 0x00, 0x00, 0x01, 0x2E, 0x01, 0x35, 0x3E, 0x01, + 0x23, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x22, + 0x06, 0x27, 0x26, 0x36, 0x23, 0x2A, 0x01, 0x23, 0x2E, 0x01, + 0x23, 0x2A, 0x01, 0x27, 0x22, 0x06, 0x23, 0x22, 0x26, 0x23, + 0x2E, 0x01, 0x23, 0x2E, 0x01, 0x23, 0x22, 0x26, 0x23, 0x22, + 0x06, 0x23, 0x22, 0x06, 0x07, 0x22, 0x06, 0x27, 0x2E, 0x01, + 0x23, 0x22, 0x26, 0x07, 0x06, 0x16, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x22, 0x23, 0x2A, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x0E, + 0x01, 0x07, 0x06, 0x16, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x16, 0x33, 0x32, 0x16, 0x33, 0x32, 0x16, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x06, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x14, 0x16, 0x17, + 0x1E, 0x01, 0x33, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x2E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x33, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x32, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x01, 0x06, 0x22, + 0x23, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x35, + 0x3C, 0x01, 0x35, 0x34, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x16, 0x07, 0x06, 0x14, 0x01, 0x03, 0x01, + 0x01, 0x0D, 0x04, 0x15, 0x01, 0x02, 0x09, 0x0B, 0x0B, 0x13, + 0x0A, 0x08, 0x0B, 0x0A, 0x08, 0x1F, 0x07, 0x03, 0x02, 0x02, + 0x01, 0x0F, 0x01, 0x04, 0x05, 0x08, 0x07, 0x0D, 0x07, 0x37, + 0x6E, 0x37, 0x11, 0x23, 0x11, 0x05, 0x03, 0x03, 0x07, 0x0C, + 0x06, 0x2F, 0x5D, 0x2F, 0x16, 0x2C, 0x16, 0x0C, 0x0A, 0x0A, + 0x32, 0x63, 0x32, 0x0F, 0x17, 0x10, 0x08, 0x17, 0x06, 0x04, + 0x14, 0x05, 0x06, 0x22, 0x05, 0x05, 0x08, 0x05, 0x0F, 0x20, + 0x09, 0x06, 0x0E, 0x0D, 0x04, 0x09, 0x03, 0x02, 0x08, 0x02, + 0x04, 0x10, 0x03, 0x01, 0x01, 0x0C, 0x04, 0x05, 0x0A, 0x02, + 0x03, 0x05, 0x02, 0x04, 0x17, 0x10, 0x11, 0x24, 0x0B, 0x0B, + 0x08, 0x0F, 0x0A, 0x13, 0x09, 0x12, 0x25, 0x11, 0x1A, 0x1B, + 0x06, 0x03, 0x03, 0x08, 0x02, 0x06, 0x0A, 0x06, 0x10, 0x1B, + 0x0C, 0x0A, 0x0A, 0x01, 0x09, 0x0F, 0x07, 0x0E, 0x07, 0x2E, + 0x58, 0x2E, 0x24, 0x4A, 0x25, 0x04, 0x12, 0x03, 0x03, 0x06, + 0x03, 0x05, 0x0D, 0x05, 0x04, 0x0B, 0x18, 0x0D, 0x2B, 0x0F, + 0x15, 0x28, 0x14, 0x0B, 0x15, 0x0A, 0x0D, 0x0B, 0x05, 0x08, + 0x06, 0x14, 0x0E, 0x0C, 0x1B, 0x11, 0x21, 0x43, 0x21, 0x33, + 0x67, 0x67, 0x67, 0x34, 0x0A, 0x0E, 0x04, 0x07, 0x0D, 0x05, + 0x04, 0x10, 0x02, 0xFD, 0x03, 0x08, 0x22, 0x11, 0x0D, 0x25, + 0x0D, 0x0B, 0x09, 0x04, 0x02, 0x01, 0x28, 0x11, 0x11, 0x21, + 0x11, 0x1C, 0x02, 0x02, 0x07, 0x02, 0xEE, 0x0A, 0x14, 0x0B, + 0x0B, 0x0D, 0x02, 0x04, 0x04, 0x0A, 0x0E, 0x03, 0x03, 0x0C, + 0x06, 0x05, 0x01, 0x04, 0x04, 0x02, 0x0A, 0x02, 0x01, 0x01, + 0x04, 0x0C, 0x01, 0x01, 0x01, 0x0D, 0x05, 0x01, 0x02, 0x01, + 0x01, 0x0F, 0x01, 0x0A, 0x01, 0x03, 0x06, 0x04, 0x18, 0x04, + 0x04, 0x04, 0x1B, 0x04, 0x08, 0x17, 0x0F, 0x0C, 0x02, 0x01, + 0x06, 0x01, 0x02, 0x03, 0x02, 0x0F, 0x03, 0x08, 0x13, 0x07, + 0x08, 0x0D, 0x0A, 0x09, 0x13, 0x0A, 0x11, 0x07, 0x05, 0x05, + 0x10, 0x0F, 0x0F, 0x0A, 0x01, 0x01, 0x03, 0x04, 0x1C, 0x19, + 0x0E, 0x18, 0x0E, 0x06, 0x0F, 0x06, 0x0C, 0x19, 0x0D, 0x25, + 0x4C, 0x26, 0x1D, 0x3C, 0x1E, 0x0B, 0x23, 0x02, 0x01, 0x01, + 0x02, 0x01, 0x03, 0x02, 0x0D, 0x0A, 0x24, 0x0B, 0x0F, 0x1D, + 0x0F, 0x1F, 0x3D, 0x1F, 0x1B, 0x2E, 0x11, 0x0A, 0x11, 0x02, + 0x01, 0x03, 0x02, 0x02, 0x02, 0x03, 0x02, 0x0D, 0x15, 0x2D, + 0x14, 0x0F, 0x28, 0x09, 0x09, 0x16, 0x02, 0x0B, 0x13, 0x27, + 0x13, 0x10, 0x27, 0x10, 0xFE, 0xCD, 0x12, 0x04, 0x04, 0x04, + 0x05, 0x0B, 0x06, 0x09, 0x07, 0x13, 0x25, 0x12, 0x1A, 0x03, + 0x31, 0x13, 0x0F, 0x1F, 0x0D, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x4F, 0x00, 0x25, 0x09, 0x93, 0x03, 0x5A, 0x00, 0x91, + 0x01, 0x0C, 0x01, 0x2C, 0x01, 0x4A, 0x00, 0x00, 0x01, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x17, + 0x23, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x23, 0x06, 0x26, 0x23, + 0x22, 0x26, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x16, 0x17, 0x07, 0x15, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, + 0x2E, 0x01, 0x0F, 0x01, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x14, 0x06, 0x07, 0x06, + 0x26, 0x23, 0x22, 0x06, 0x2F, 0x01, 0x2E, 0x01, 0x35, 0x2E, + 0x01, 0x27, 0x34, 0x26, 0x27, 0x36, 0x26, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x2E, 0x01, 0x35, 0x3E, 0x01, 0x37, 0x36, 0x16, + 0x17, 0x3E, 0x01, 0x37, 0x35, 0x36, 0x16, 0x17, 0x32, 0x16, + 0x15, 0x17, 0x32, 0x36, 0x33, 0x16, 0x32, 0x17, 0x32, 0x36, + 0x1F, 0x01, 0x21, 0x35, 0x17, 0x2E, 0x01, 0x35, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x17, 0x3E, 0x01, 0x33, 0x35, 0x36, 0x16, + 0x17, 0x1E, 0x01, 0x17, 0x32, 0x36, 0x1F, 0x01, 0x21, 0x35, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x07, + 0x0E, 0x01, 0x17, 0x23, 0x07, 0x06, 0x26, 0x23, 0x22, 0x26, + 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x14, 0x06, 0x15, + 0x14, 0x16, 0x0F, 0x01, 0x15, 0x0E, 0x01, 0x07, 0x06, 0x26, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x14, 0x16, 0x07, + 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x35, 0x3E, 0x01, 0x35, 0x2E, 0x01, 0x27, 0x35, + 0x27, 0x34, 0x26, 0x37, 0x34, 0x36, 0x37, 0x33, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x37, 0x3E, 0x01, 0x33, 0x3E, 0x01, 0x27, 0x05, 0x2A, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x3E, + 0x01, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x23, 0x05, + 0x22, 0x26, 0x07, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, + 0x33, 0x17, 0x1E, 0x01, 0x17, 0x32, 0x16, 0x17, 0x3E, 0x01, + 0x3F, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2A, 0x01, 0x23, 0x04, + 0x88, 0x03, 0x09, 0x05, 0x05, 0x0E, 0x09, 0x07, 0x0D, 0x06, + 0x04, 0x0B, 0x01, 0x02, 0x07, 0x03, 0x03, 0x08, 0x01, 0x02, + 0x06, 0x01, 0x51, 0x02, 0x03, 0x02, 0x0B, 0x1C, 0x0B, 0x0F, + 0x1D, 0x0F, 0x1A, 0x35, 0x1A, 0x0E, 0x1D, 0x0E, 0x17, 0x20, + 0x10, 0x16, 0x02, 0x02, 0x0A, 0x1C, 0x3E, 0x1E, 0x13, 0x21, + 0x13, 0x16, 0x34, 0x15, 0x17, 0x0A, 0x08, 0x05, 0x08, 0x11, + 0x09, 0x04, 0x06, 0x05, 0x03, 0x07, 0x08, 0x17, 0x40, 0x1A, + 0x1F, 0x3E, 0x1C, 0x0C, 0x01, 0x01, 0x14, 0x20, 0x12, 0x02, + 0x02, 0x01, 0x05, 0x02, 0x02, 0x09, 0x01, 0x10, 0x1D, 0x0E, + 0x08, 0x10, 0x09, 0x0D, 0x0F, 0x10, 0x0A, 0x3A, 0x14, 0x0A, + 0x03, 0x03, 0x06, 0x15, 0x08, 0x15, 0x18, 0x08, 0x02, 0x05, + 0x02, 0x04, 0x04, 0x0F, 0x19, 0x0E, 0x0E, 0x1D, 0x10, 0x0C, + 0x17, 0x0C, 0x04, 0x03, 0x04, 0x1F, 0x3D, 0x1F, 0x12, 0x25, + 0x13, 0x0D, 0x22, 0x0D, 0x08, 0x02, 0x11, 0xD6, 0x01, 0x03, + 0x02, 0x06, 0x04, 0x0F, 0x17, 0x0E, 0x0F, 0x1E, 0x10, 0x0C, + 0x18, 0x0C, 0x07, 0x03, 0x01, 0x3F, 0x80, 0x40, 0x09, 0x02, + 0x0E, 0x03, 0x04, 0x09, 0x02, 0x16, 0x2E, 0x06, 0x03, 0x0B, + 0x0C, 0x02, 0x04, 0x01, 0x55, 0x04, 0x16, 0x37, 0x17, 0x1B, + 0x36, 0x1C, 0x21, 0x38, 0x1A, 0x0C, 0x18, 0x02, 0x02, 0x08, + 0x05, 0x0A, 0x1F, 0x45, 0x22, 0x27, 0x65, 0x22, 0x11, 0x0C, + 0x07, 0x08, 0x0D, 0x0B, 0x11, 0x16, 0x15, 0x31, 0x17, 0x1E, + 0x3C, 0x1D, 0x02, 0x05, 0x0B, 0x05, 0x09, 0x08, 0x02, 0x02, + 0x13, 0x23, 0x12, 0x02, 0x05, 0x01, 0x09, 0x05, 0x02, 0x08, + 0x21, 0x0D, 0x0F, 0x26, 0x06, 0x0D, 0x0A, 0x3A, 0x14, 0x09, + 0x01, 0x07, 0x06, 0x15, 0x07, 0x19, 0x1F, 0x07, 0xFD, 0x33, + 0x11, 0x23, 0x11, 0x13, 0x1C, 0x11, 0x07, 0x09, 0x02, 0x06, + 0x05, 0x02, 0x06, 0x0C, 0x06, 0x0F, 0x1D, 0x11, 0x0E, 0x1D, + 0x0F, 0x2F, 0x33, 0x04, 0x02, 0x01, 0x08, 0x05, 0x11, 0x0D, + 0x35, 0x04, 0x74, 0x0D, 0x21, 0x0B, 0x04, 0x0D, 0x19, 0x05, + 0x02, 0x03, 0x07, 0x03, 0x14, 0x0F, 0x1D, 0x11, 0x0F, 0x1E, + 0x0F, 0x2F, 0x31, 0x03, 0x04, 0x09, 0x05, 0x12, 0x0D, 0x19, + 0x32, 0x19, 0x03, 0x2E, 0x06, 0x0A, 0x04, 0x06, 0x04, 0x01, + 0x02, 0x03, 0x02, 0x06, 0x04, 0x08, 0x0D, 0x19, 0x0D, 0x08, + 0x1F, 0x0A, 0x1A, 0x36, 0x1A, 0x03, 0x06, 0x02, 0x05, 0x01, + 0x01, 0x01, 0x02, 0x01, 0x03, 0x05, 0x19, 0x0F, 0x14, 0x35, + 0x19, 0x0A, 0x02, 0x0B, 0x15, 0x02, 0x01, 0x02, 0x02, 0x03, + 0x0A, 0x05, 0x0D, 0x0D, 0x19, 0x10, 0x1C, 0x39, 0x1C, 0x0F, + 0x1A, 0x10, 0x14, 0x27, 0x14, 0x11, 0x19, 0x08, 0x0E, 0x05, + 0x03, 0x0C, 0x0F, 0x0B, 0x15, 0x0A, 0x02, 0x05, 0x0A, 0x02, + 0x06, 0x02, 0x10, 0x1F, 0x0F, 0x12, 0x24, 0x12, 0x20, 0x41, + 0x21, 0x13, 0x27, 0x13, 0x19, 0x2C, 0x1C, 0x14, 0x07, 0x04, + 0x0A, 0x13, 0x0C, 0x06, 0x06, 0x01, 0x14, 0x29, 0x1C, 0x0D, + 0x1B, 0x0E, 0x06, 0x08, 0x01, 0x01, 0x05, 0x03, 0x06, 0x0C, + 0x01, 0x1B, 0x01, 0x03, 0x02, 0x03, 0x02, 0x18, 0x04, 0x01, + 0x01, 0x01, 0x03, 0x0D, 0x03, 0x2E, 0x08, 0x0F, 0x08, 0x07, + 0x07, 0x01, 0x02, 0x05, 0x02, 0x03, 0x10, 0x19, 0x01, 0x03, + 0x02, 0x06, 0x0F, 0x09, 0x02, 0x02, 0x0A, 0x01, 0x05, 0x03, + 0x07, 0x05, 0x13, 0x1B, 0x16, 0x0E, 0x31, 0x0B, 0x1E, 0x3C, + 0x1E, 0x09, 0x08, 0x04, 0x01, 0x01, 0x01, 0x0A, 0x17, 0x0A, + 0x18, 0x11, 0x06, 0x0D, 0x07, 0x06, 0x19, 0x04, 0x0B, 0x04, + 0x0C, 0x13, 0x02, 0x02, 0x1A, 0x19, 0x14, 0x35, 0x19, 0x1A, + 0x38, 0x19, 0x23, 0x52, 0x20, 0x0B, 0x03, 0x02, 0x01, 0x03, + 0x02, 0x05, 0x14, 0x10, 0x04, 0x09, 0x04, 0x03, 0x04, 0x09, + 0x06, 0x05, 0x0E, 0x19, 0x0E, 0x14, 0x25, 0x13, 0x21, 0x41, + 0x1E, 0x22, 0x4A, 0x24, 0x25, 0x14, 0x09, 0x02, 0x07, 0x1B, + 0x08, 0x05, 0x09, 0x17, 0x33, 0x24, 0xBA, 0x01, 0x01, 0x05, + 0x08, 0x05, 0x0B, 0x06, 0x0C, 0x19, 0x0C, 0x06, 0x0B, 0x06, + 0x04, 0x0D, 0x01, 0x01, 0x01, 0x07, 0x17, 0x10, 0x0E, 0x18, + 0x0D, 0x09, 0x10, 0x07, 0x06, 0x03, 0x05, 0x07, 0x0D, 0x0E, + 0x0D, 0x1A, 0x0C, 0x14, 0x06, 0x0D, 0x01, 0x01, 0x01, 0x06, + 0x18, 0x12, 0x13, 0x20, 0x09, 0x0F, 0x06, 0x00, 0x00, 0x02, + 0x00, 0x57, 0x00, 0x24, 0x04, 0xD4, 0x03, 0x5A, 0x00, 0x98, + 0x00, 0xB7, 0x00, 0x00, 0x01, 0x2E, 0x01, 0x27, 0x26, 0x06, + 0x23, 0x22, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, + 0x03, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x16, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x16, 0x14, 0x15, 0x14, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x16, 0x36, 0x37, + 0x3E, 0x01, 0x37, 0x32, 0x36, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x36, 0x35, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x34, 0x37, 0x3E, 0x01, 0x17, + 0x16, 0x32, 0x37, 0x36, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x34, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, + 0x36, 0x16, 0x17, 0x36, 0x34, 0x37, 0x34, 0x36, 0x35, 0x3E, + 0x01, 0x37, 0x34, 0x26, 0x27, 0x01, 0x1C, 0x01, 0x15, 0x14, + 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x27, 0x26, 0x36, + 0x35, 0x3C, 0x01, 0x35, 0x34, 0x32, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x16, 0x17, 0x16, 0x06, 0x15, 0x04, 0xCE, 0x02, 0x0C, + 0x0C, 0x05, 0x0A, 0x05, 0x04, 0x0C, 0x07, 0x14, 0x2A, 0x15, + 0x33, 0x66, 0x32, 0x03, 0x0A, 0x02, 0x03, 0x05, 0x03, 0x0C, + 0x17, 0x0C, 0x35, 0x69, 0x6A, 0x69, 0x35, 0x12, 0x25, 0x13, + 0x08, 0x0F, 0x07, 0x18, 0x30, 0x1B, 0x0C, 0x07, 0x06, 0x0A, + 0x14, 0x06, 0x0C, 0x09, 0x05, 0x04, 0x0A, 0x01, 0x02, 0x48, + 0x1C, 0x12, 0x08, 0x03, 0x04, 0x08, 0x04, 0x06, 0x0B, 0x05, + 0x0B, 0x12, 0x07, 0x05, 0x06, 0x0D, 0x0D, 0x0E, 0x2E, 0x13, + 0x27, 0x4D, 0x27, 0x11, 0x2E, 0x08, 0x01, 0x07, 0x03, 0x02, + 0x05, 0x03, 0x04, 0x02, 0x04, 0x09, 0x05, 0x02, 0x06, 0x02, + 0x01, 0x0A, 0x01, 0x02, 0x11, 0x0C, 0x14, 0x10, 0x0C, 0x16, + 0x0B, 0x26, 0x4B, 0x25, 0x15, 0x24, 0x07, 0x03, 0x02, 0x01, + 0x01, 0x01, 0x01, 0x04, 0x09, 0x0E, 0x24, 0x10, 0x0D, 0x1E, + 0x0D, 0x32, 0x65, 0x32, 0x0F, 0x09, 0x03, 0x02, 0x3A, 0x08, + 0x03, 0x01, 0x0A, 0x01, 0x01, 0x01, 0x01, 0x05, 0xFE, 0x20, + 0x2C, 0x0C, 0x1C, 0x38, 0x1C, 0x0C, 0x2C, 0x0B, 0x08, 0x02, + 0x25, 0x0D, 0x2C, 0x58, 0x2B, 0x04, 0x07, 0x02, 0x05, 0x02, + 0x03, 0x30, 0x09, 0x1E, 0x02, 0x01, 0x01, 0x23, 0x01, 0x02, + 0x03, 0x03, 0x01, 0x05, 0x0F, 0x06, 0x02, 0x01, 0x13, 0x05, + 0x07, 0x0F, 0x0C, 0x15, 0x34, 0x17, 0x12, 0x21, 0x11, 0x2A, + 0x22, 0x0D, 0x09, 0x16, 0x10, 0x09, 0x12, 0x08, 0x0C, 0x16, + 0x0C, 0x11, 0x25, 0x12, 0x24, 0x49, 0x25, 0x17, 0x31, 0x18, + 0x10, 0x19, 0x0C, 0x0F, 0x05, 0x01, 0x01, 0x05, 0x01, 0x0F, + 0x18, 0x04, 0x07, 0x03, 0x02, 0x0C, 0x02, 0x09, 0x11, 0x09, + 0x12, 0x23, 0x12, 0x09, 0x14, 0x0A, 0x08, 0x0F, 0x08, 0x14, + 0x38, 0x0D, 0x09, 0x05, 0x02, 0x01, 0x01, 0x01, 0x09, 0x06, + 0x03, 0x16, 0x15, 0x0B, 0x18, 0x0C, 0x08, 0x11, 0x08, 0x0A, + 0x13, 0x05, 0x09, 0x15, 0x03, 0x02, 0x02, 0x1F, 0x0C, 0x06, + 0x03, 0x03, 0x06, 0x0C, 0x06, 0x06, 0x05, 0x06, 0x0B, 0x18, + 0x0B, 0x1A, 0x31, 0x19, 0xFE, 0xCC, 0x0A, 0x15, 0x0A, 0x13, + 0x02, 0x05, 0x07, 0x05, 0x1E, 0x07, 0x0C, 0x16, 0x0B, 0x14, + 0x03, 0x04, 0x08, 0x1B, 0x09, 0x00, 0x00, 0x02, 0x00, 0x4B, + 0x00, 0x26, 0x05, 0x73, 0x03, 0x5A, 0x00, 0x94, 0x00, 0xA7, + 0x00, 0x00, 0x01, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, + 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x23, 0x0E, 0x01, 0x27, + 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x3E, 0x01, 0x37, 0x22, 0x26, 0x27, 0x26, 0x36, 0x37, 0x1C, + 0x01, 0x15, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x26, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x32, 0x16, + 0x17, 0x16, 0x36, 0x33, 0x3A, 0x03, 0x33, 0x3A, 0x03, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x3A, 0x01, + 0x33, 0x32, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x05, 0x2A, 0x01, + 0x23, 0x22, 0x06, 0x15, 0x14, 0x06, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x36, 0x35, 0x34, 0x36, 0x23, 0x05, 0x73, 0x0A, 0x21, + 0x14, 0x28, 0x14, 0x27, 0x4F, 0x27, 0x16, 0x2A, 0x16, 0x0C, + 0x36, 0x02, 0x03, 0x02, 0x04, 0x01, 0x06, 0x12, 0x02, 0x28, + 0x51, 0x28, 0x13, 0x29, 0x13, 0x0B, 0x16, 0x0B, 0x0A, 0x0D, + 0x0B, 0x11, 0x19, 0x09, 0x14, 0x1C, 0x0E, 0x08, 0x0F, 0x08, + 0x07, 0x16, 0x02, 0x01, 0x10, 0x0D, 0x06, 0x0D, 0x06, 0x3E, + 0x7B, 0x3E, 0x01, 0x03, 0x02, 0x14, 0x28, 0x0D, 0x0E, 0x0D, + 0x06, 0x19, 0x2B, 0x16, 0x0B, 0x18, 0x0C, 0x0B, 0x0F, 0x08, + 0x11, 0x04, 0x28, 0x0B, 0x15, 0x0A, 0x0A, 0x06, 0x01, 0x07, + 0x04, 0x04, 0x1C, 0x07, 0x0E, 0x0A, 0x06, 0x06, 0x0A, 0x0D, + 0x0D, 0x07, 0x02, 0x01, 0x0E, 0x02, 0x2B, 0x54, 0x54, 0x54, + 0x2A, 0x3A, 0x74, 0x73, 0x74, 0x3A, 0x26, 0x4C, 0x25, 0x09, + 0x11, 0x08, 0x03, 0x01, 0x01, 0x02, 0x0A, 0x05, 0x08, 0x02, + 0x06, 0x06, 0x01, 0x08, 0x07, 0x0F, 0x08, 0x07, 0x01, 0x01, + 0x01, 0x04, 0x02, 0xFE, 0x03, 0x28, 0x4E, 0x28, 0x11, 0x0D, + 0x02, 0x11, 0x28, 0x50, 0x28, 0x0D, 0x0F, 0x03, 0x12, 0x02, + 0xC0, 0x18, 0x4C, 0x03, 0x02, 0x03, 0x01, 0x01, 0x04, 0x01, + 0x01, 0x01, 0x01, 0x04, 0x11, 0x13, 0x28, 0x14, 0x08, 0x12, + 0x08, 0x03, 0x16, 0x05, 0x04, 0x02, 0x01, 0x03, 0x02, 0x03, + 0x02, 0x02, 0x07, 0x02, 0x04, 0x27, 0x0D, 0x1F, 0x44, 0x22, + 0x15, 0x29, 0x14, 0x16, 0x32, 0x16, 0x0E, 0x13, 0x08, 0x0F, + 0x08, 0x07, 0x14, 0x16, 0x37, 0x18, 0x01, 0x01, 0x01, 0x20, + 0x44, 0x22, 0x11, 0x20, 0x11, 0x10, 0x29, 0x12, 0x25, 0x5B, + 0x17, 0x05, 0x0A, 0x05, 0x06, 0x19, 0x0A, 0x14, 0x29, 0x14, + 0x08, 0x11, 0x08, 0x07, 0x0B, 0x07, 0x08, 0x02, 0x01, 0x01, + 0x03, 0x0B, 0x0A, 0x02, 0x01, 0x09, 0x0D, 0x03, 0x01, 0x01, + 0x02, 0x04, 0x03, 0x01, 0x03, 0x01, 0x03, 0x02, 0x04, 0x15, + 0x06, 0x1B, 0x34, 0x1B, 0x7D, 0x10, 0x12, 0x09, 0x3F, 0x0D, + 0x10, 0x09, 0x44, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x55, + 0x00, 0x25, 0x04, 0x97, 0x03, 0x5A, 0x00, 0x93, 0x00, 0xC4, + 0x00, 0x00, 0x01, 0x2E, 0x01, 0x27, 0x34, 0x26, 0x27, 0x26, + 0x22, 0x23, 0x2A, 0x01, 0x23, 0x06, 0x22, 0x23, 0x2A, 0x01, + 0x23, 0x22, 0x16, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x2A, 0x01, 0x23, 0x22, 0x36, 0x23, 0x2A, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x27, 0x26, 0x22, + 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x27, 0x2E, + 0x01, 0x27, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x33, 0x16, 0x32, 0x33, 0x1E, 0x01, 0x17, + 0x16, 0x36, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x16, 0x37, 0x32, 0x36, + 0x33, 0x36, 0x32, 0x37, 0x32, 0x36, 0x35, 0x3E, 0x01, 0x27, + 0x05, 0x06, 0x14, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x07, + 0x06, 0x26, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x17, 0x32, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x36, 0x26, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x33, + 0x16, 0x32, 0x33, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x04, + 0x96, 0x01, 0x02, 0x01, 0x01, 0x0A, 0x0C, 0x16, 0x0D, 0x19, + 0x32, 0x19, 0x34, 0x68, 0x34, 0x04, 0x08, 0x03, 0x01, 0x01, + 0x01, 0x02, 0x05, 0x03, 0x1A, 0x35, 0x1A, 0x09, 0x14, 0x09, + 0x05, 0x05, 0x04, 0x0E, 0x1E, 0x0E, 0x3C, 0x78, 0x3C, 0x0F, + 0x1D, 0x0F, 0x02, 0x02, 0x02, 0x02, 0x0F, 0x03, 0x03, 0x0D, + 0x03, 0x04, 0x04, 0x04, 0x09, 0x19, 0x0A, 0x09, 0x12, 0x06, + 0x0B, 0x1C, 0x03, 0x03, 0x01, 0x12, 0x11, 0x2C, 0x12, 0x14, + 0x0A, 0x05, 0x03, 0x09, 0x05, 0x0A, 0x16, 0x0B, 0x0F, 0x16, + 0x09, 0x09, 0x10, 0x03, 0x01, 0x17, 0x0D, 0x1B, 0x35, 0x1B, + 0x30, 0x62, 0x30, 0x09, 0x32, 0x16, 0x05, 0x19, 0x01, 0x02, + 0x01, 0x01, 0x02, 0x05, 0x0A, 0x17, 0x0C, 0x03, 0x1C, 0x05, + 0x08, 0x0F, 0x08, 0x1D, 0x3C, 0x1D, 0x27, 0x4F, 0x26, 0x08, + 0x1E, 0x02, 0x01, 0x03, 0x02, 0x01, 0x04, 0x15, 0x12, 0x0E, + 0x22, 0x0F, 0x1F, 0x3F, 0x1F, 0x14, 0x27, 0x14, 0x14, 0x05, + 0x01, 0x01, 0x01, 0xFE, 0x9D, 0x01, 0x0B, 0x08, 0x17, 0x08, + 0x16, 0x2A, 0x16, 0x19, 0x61, 0x01, 0x0C, 0x0C, 0x1E, 0x10, + 0x03, 0x03, 0x01, 0x01, 0x21, 0x0B, 0x0A, 0x15, 0x0D, 0x0E, + 0x19, 0x03, 0x06, 0x0B, 0x04, 0x08, 0x14, 0x02, 0x02, 0x0A, + 0x0E, 0x18, 0x31, 0x18, 0x02, 0x18, 0x02, 0x08, 0x03, 0x01, + 0x02, 0xDE, 0x0F, 0x1E, 0x10, 0x0A, 0x16, 0x07, 0x06, 0x01, + 0x0C, 0x0C, 0x0D, 0x01, 0x02, 0x03, 0x01, 0x02, 0x0D, 0x02, + 0x05, 0x07, 0x05, 0x05, 0x15, 0x09, 0x0F, 0x2A, 0x12, 0x17, + 0x42, 0x10, 0x0F, 0x0B, 0x0C, 0x0D, 0x1A, 0x17, 0x0E, 0x19, + 0x0C, 0x1A, 0x33, 0x19, 0x20, 0x40, 0x21, 0x1D, 0x3C, 0x1E, + 0x10, 0x03, 0x03, 0x05, 0x0B, 0x05, 0x0A, 0x13, 0x0A, 0x02, + 0x0A, 0x0E, 0x03, 0x0D, 0x06, 0x0D, 0x19, 0x0C, 0x12, 0x20, + 0x10, 0x21, 0x3F, 0x20, 0x08, 0x57, 0x01, 0x01, 0x02, 0x01, + 0x01, 0x07, 0x07, 0x01, 0x04, 0x0C, 0x0A, 0x13, 0x0A, 0x0F, + 0x1E, 0x10, 0x13, 0x11, 0x04, 0x04, 0x03, 0x01, 0x01, 0x01, + 0x01, 0x2C, 0x0D, 0x15, 0x2B, 0x15, 0xF1, 0x0A, 0x17, 0x06, + 0x03, 0x01, 0x01, 0x01, 0x01, 0x02, 0x03, 0x03, 0x26, 0x11, + 0x22, 0x0E, 0x0E, 0x03, 0x01, 0x28, 0x04, 0x0D, 0x1A, 0x06, + 0x06, 0x0B, 0x05, 0x04, 0x09, 0x01, 0x02, 0x07, 0x06, 0x0A, + 0x19, 0x0E, 0x13, 0x04, 0x01, 0x06, 0x13, 0x03, 0x0E, 0x21, + 0x0F, 0x00, 0x00, 0x03, 0x00, 0x59, 0x00, 0x25, 0x04, 0x8E, + 0x03, 0x59, 0x00, 0xCE, 0x00, 0xD4, 0x01, 0x1E, 0x00, 0x00, + 0x01, 0x34, 0x36, 0x27, 0x26, 0x06, 0x37, 0x36, 0x26, 0x23, + 0x06, 0x26, 0x23, 0x22, 0x26, 0x23, 0x14, 0x16, 0x07, 0x06, + 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x35, 0x3C, 0x01, + 0x23, 0x0E, 0x01, 0x35, 0x36, 0x22, 0x23, 0x2A, 0x02, 0x26, + 0x23, 0x1C, 0x01, 0x15, 0x26, 0x22, 0x23, 0x14, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x06, + 0x14, 0x07, 0x06, 0x14, 0x17, 0x16, 0x32, 0x17, 0x16, 0x14, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x17, + 0x16, 0x06, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x17, 0x14, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x0E, 0x01, 0x15, + 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x36, 0x17, 0x16, + 0x06, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x33, 0x32, 0x16, 0x35, + 0x34, 0x26, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x35, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x17, 0x32, 0x16, 0x35, 0x34, 0x36, 0x27, 0x26, + 0x36, 0x35, 0x34, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x16, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, + 0x36, 0x26, 0x35, 0x34, 0x26, 0x37, 0x01, 0x36, 0x16, 0x17, + 0x22, 0x26, 0x01, 0x06, 0x26, 0x27, 0x14, 0x06, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x26, 0x07, 0x06, 0x36, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x36, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x17, + 0x16, 0x06, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x37, 0x32, 0x36, 0x27, 0x26, 0x06, 0x35, 0x30, 0x27, + 0x26, 0x23, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x35, 0x34, 0x36, + 0x37, 0x36, 0x16, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x15, + 0x1C, 0x01, 0x17, 0x1C, 0x01, 0x07, 0x04, 0x8B, 0x03, 0x04, + 0x05, 0x09, 0x02, 0x03, 0x24, 0x08, 0x16, 0x2C, 0x16, 0x3B, + 0x76, 0x3B, 0x03, 0x03, 0x03, 0x17, 0x04, 0x18, 0x2F, 0x17, + 0x0A, 0x11, 0x06, 0x03, 0x0C, 0x01, 0x09, 0x0A, 0x31, 0x62, + 0x62, 0x62, 0x31, 0x08, 0x11, 0x08, 0x14, 0x05, 0x05, 0x0E, + 0x06, 0x04, 0x06, 0x01, 0x01, 0x04, 0x07, 0x05, 0x01, 0x02, + 0x01, 0x01, 0x05, 0x04, 0x03, 0x02, 0x07, 0x13, 0x07, 0x12, + 0x23, 0x0C, 0x06, 0x07, 0x01, 0x01, 0x09, 0x0B, 0x03, 0x02, + 0x0A, 0x01, 0x0B, 0x02, 0x04, 0x06, 0x03, 0x04, 0x0E, 0x07, + 0x03, 0x04, 0x02, 0x03, 0x02, 0x02, 0x06, 0x06, 0x01, 0x05, + 0x3A, 0x0D, 0x05, 0x03, 0x09, 0x06, 0x0F, 0x06, 0x0C, 0x24, + 0x0D, 0x1A, 0x34, 0x19, 0x0A, 0x0E, 0x0A, 0x0A, 0x14, 0x0A, + 0x06, 0x12, 0x17, 0x03, 0x0A, 0x08, 0x07, 0x04, 0x04, 0x01, + 0x02, 0x08, 0x02, 0x04, 0x0B, 0x04, 0x04, 0x0A, 0x02, 0x02, + 0x07, 0x01, 0x05, 0x01, 0x02, 0x06, 0x07, 0x39, 0x71, 0x39, + 0x18, 0x31, 0x18, 0x03, 0x12, 0x04, 0x08, 0x04, 0x03, 0x02, + 0x0B, 0x0B, 0x06, 0x23, 0x09, 0x0E, 0x1C, 0x0E, 0x1C, 0x37, + 0x1C, 0x09, 0x42, 0x02, 0x03, 0x03, 0x01, 0x02, 0xFC, 0x94, + 0x03, 0x05, 0x01, 0x03, 0x04, 0x02, 0x19, 0x01, 0x0C, 0x07, + 0x08, 0x0E, 0x12, 0x24, 0x12, 0x21, 0x40, 0x20, 0x10, 0x01, + 0x01, 0x01, 0x0A, 0x01, 0x01, 0x0D, 0x12, 0x04, 0x03, 0x16, + 0x06, 0x0A, 0x06, 0x01, 0x01, 0x12, 0x07, 0x08, 0x12, 0x0C, + 0x09, 0x15, 0x0A, 0x06, 0x04, 0x04, 0x02, 0x0F, 0x06, 0x05, + 0x01, 0x09, 0x12, 0x07, 0x0A, 0x01, 0x08, 0x05, 0x16, 0x2D, + 0x16, 0x0E, 0x17, 0x0A, 0x04, 0x0F, 0x01, 0x02, 0x03, 0x25, + 0x04, 0x12, 0x03, 0x05, 0x04, 0x0A, 0x0F, 0x01, 0x02, 0x01, + 0x01, 0x06, 0x19, 0x06, 0x04, 0x02, 0x02, 0x0C, 0x04, 0x0B, + 0x01, 0x01, 0x05, 0x0A, 0x01, 0x06, 0x0A, 0x06, 0x01, 0x0C, + 0x11, 0x0B, 0x0A, 0x15, 0x0A, 0x09, 0x17, 0x0A, 0x0A, 0x05, + 0x05, 0x04, 0x19, 0x06, 0x07, 0x11, 0x07, 0x06, 0x03, 0x01, + 0x04, 0x02, 0x04, 0x04, 0x03, 0x09, 0x1C, 0x10, 0x08, 0x0C, + 0x0A, 0x07, 0x0C, 0x05, 0x05, 0x17, 0x05, 0x03, 0x10, 0x03, + 0x03, 0x18, 0x03, 0x06, 0x11, 0x07, 0x0D, 0x1B, 0x0D, 0x05, + 0x0F, 0x06, 0x07, 0x10, 0x07, 0x10, 0x26, 0x11, 0x05, 0x04, + 0x04, 0x05, 0x08, 0x05, 0x0B, 0x17, 0x0B, 0x19, 0x0F, 0x07, + 0x03, 0x0E, 0x03, 0x02, 0x02, 0x03, 0x07, 0x08, 0x01, 0x03, + 0x06, 0x06, 0x03, 0x06, 0x03, 0x04, 0x0B, 0x04, 0x07, 0x04, + 0x0C, 0x34, 0x0F, 0x08, 0x18, 0x09, 0x09, 0x0F, 0x08, 0x0F, + 0x1B, 0x0F, 0x0D, 0x19, 0x0D, 0x0A, 0x18, 0x0A, 0x09, 0x16, + 0x09, 0x06, 0x05, 0x01, 0x01, 0x05, 0x08, 0x13, 0x05, 0x02, + 0x30, 0x05, 0x09, 0x12, 0x09, 0x10, 0x10, 0x0B, 0x06, 0x04, + 0x05, 0x0C, 0x19, 0x36, 0x19, 0x1A, 0x35, 0x1A, 0xFD, 0x19, + 0x01, 0x02, 0x01, 0x01, 0x01, 0x8E, 0x08, 0x02, 0x01, 0x0E, + 0x02, 0x01, 0x02, 0x01, 0x13, 0x0C, 0x0B, 0x13, 0x0C, 0x0B, + 0x12, 0x0B, 0x0A, 0x0C, 0x07, 0x05, 0x09, 0x02, 0x03, 0x2E, + 0x08, 0x0F, 0x11, 0x0B, 0x0B, 0x0C, 0x06, 0x04, 0x01, 0x01, + 0x12, 0x02, 0x01, 0x02, 0x03, 0x03, 0x02, 0x05, 0x0D, 0x08, + 0x0D, 0x20, 0x0E, 0x06, 0x0E, 0x01, 0x05, 0x06, 0x01, 0x01, + 0x04, 0x0B, 0x04, 0x08, 0x03, 0x12, 0x23, 0x11, 0x08, 0x10, + 0x08, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x53, 0x00, 0x26, + 0x08, 0xFB, 0x03, 0x5A, 0x00, 0x64, 0x00, 0x8C, 0x00, 0x00, + 0x01, 0x2F, 0x01, 0x21, 0x07, 0x27, 0x21, 0x27, 0x07, 0x23, + 0x15, 0x23, 0x15, 0x23, 0x35, 0x27, 0x07, 0x35, 0x27, 0x23, + 0x15, 0x21, 0x15, 0x23, 0x35, 0x21, 0x2F, 0x02, 0x15, 0x0F, + 0x01, 0x27, 0x07, 0x27, 0x22, 0x06, 0x07, 0x14, 0x16, 0x1F, + 0x02, 0x0F, 0x01, 0x1F, 0x01, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x0F, 0x02, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x0F, 0x01, 0x05, + 0x27, 0x37, 0x13, 0x17, 0x3F, 0x01, 0x1F, 0x02, 0x3F, 0x03, + 0x3E, 0x01, 0x3F, 0x01, 0x21, 0x3F, 0x01, 0x35, 0x27, 0x35, + 0x33, 0x15, 0x33, 0x15, 0x33, 0x17, 0x37, 0x21, 0x37, 0x17, + 0x21, 0x3F, 0x02, 0x27, 0x01, 0x0F, 0x02, 0x2F, 0x04, 0x2E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x3F, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x16, 0x1F, 0x01, 0x37, 0x2F, 0x01, + 0x34, 0x36, 0x3F, 0x03, 0x1F, 0x02, 0x15, 0x08, 0xF8, 0x08, + 0x07, 0xFE, 0x46, 0x0A, 0x0A, 0xFE, 0xA9, 0x0D, 0x0A, 0x96, + 0x2B, 0x1C, 0x0B, 0x0A, 0x08, 0x48, 0xFE, 0xD2, 0xAF, 0xFE, + 0xC7, 0x09, 0x5C, 0x17, 0x1E, 0x13, 0x2B, 0x07, 0x10, 0x08, + 0x09, 0x02, 0x04, 0x05, 0x0A, 0x35, 0x03, 0x01, 0x0B, 0x26, + 0x0E, 0x13, 0x04, 0x06, 0x03, 0x02, 0x0A, 0x14, 0x10, 0x1A, + 0x0A, 0x09, 0x0E, 0x04, 0x03, 0x01, 0x35, 0x10, 0x03, 0x49, + 0x0A, 0x1A, 0x16, 0x16, 0x25, 0x15, 0x96, 0x17, 0x0E, 0x3A, + 0x02, 0x06, 0x03, 0x06, 0x01, 0x46, 0x03, 0x07, 0x07, 0x1E, + 0x31, 0x91, 0x0D, 0x09, 0x01, 0x57, 0x09, 0x06, 0x01, 0xBF, + 0x05, 0x09, 0x04, 0x02, 0xFA, 0x55, 0x15, 0x1D, 0x3F, 0x47, + 0x1F, 0x2A, 0x25, 0x19, 0x04, 0x01, 0x02, 0x03, 0x0A, 0x08, + 0x05, 0x13, 0x0D, 0x17, 0x10, 0x09, 0x0B, 0x01, 0x01, 0x05, + 0x06, 0x0B, 0x0A, 0x06, 0x02, 0x06, 0x05, 0x11, 0x23, 0xA4, + 0x0A, 0x10, 0x02, 0x03, 0x2D, 0x1E, 0x09, 0x04, 0x01, 0x06, + 0x06, 0x2A, 0x14, 0x17, 0x0D, 0x01, 0x1A, 0x0A, 0x27, 0x05, + 0x06, 0x07, 0x02, 0x0D, 0x19, 0x39, 0x5E, 0x1C, 0x26, 0x02, + 0x07, 0x08, 0x05, 0x0A, 0x03, 0x03, 0x06, 0x15, 0x21, 0x0C, + 0x0D, 0x05, 0x09, 0x05, 0x05, 0x0D, 0x09, 0x1A, 0x29, 0x23, + 0x4A, 0x27, 0x27, 0x52, 0x2B, 0x47, 0x03, 0x17, 0x23, 0x01, + 0x36, 0x03, 0x03, 0x05, 0x03, 0x0C, 0x08, 0x05, 0x05, 0x10, + 0x8C, 0x05, 0x08, 0x03, 0x03, 0x31, 0x06, 0x18, 0x06, 0x32, + 0x15, 0x1A, 0x05, 0x06, 0x03, 0x04, 0x0D, 0x1E, 0x38, 0x35, + 0xFE, 0xEC, 0x3C, 0x41, 0x04, 0x03, 0x02, 0x02, 0x10, 0x1D, + 0x09, 0x14, 0x0B, 0x0A, 0x12, 0x09, 0x06, 0x0A, 0x04, 0x06, + 0x13, 0x0C, 0x1A, 0x0F, 0x08, 0x16, 0x0D, 0x18, 0x07, 0x0E, + 0x1D, 0x0A, 0x12, 0x08, 0x17, 0x24, 0x01, 0x01, 0x09, 0x0E, + 0x09, 0x00, 0x00, 0x02, 0x00, 0x65, 0x00, 0x26, 0x05, 0xF6, + 0x03, 0x5F, 0x01, 0x7B, 0x01, 0xB4, 0x00, 0x00, 0x01, 0x3E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, + 0x33, 0x3A, 0x03, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x37, + 0x36, 0x26, 0x35, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x32, + 0x36, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x16, 0x15, 0x14, 0x06, + 0x17, 0x30, 0x17, 0x16, 0x35, 0x14, 0x36, 0x17, 0x16, 0x06, + 0x17, 0x32, 0x16, 0x15, 0x1C, 0x01, 0x15, 0x26, 0x16, 0x23, + 0x32, 0x36, 0x17, 0x26, 0x16, 0x35, 0x1C, 0x01, 0x15, 0x16, + 0x06, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x26, 0x23, 0x22, 0x26, + 0x0F, 0x01, 0x06, 0x15, 0x14, 0x06, 0x23, 0x0E, 0x01, 0x07, + 0x06, 0x0F, 0x01, 0x14, 0x26, 0x27, 0x26, 0x06, 0x27, 0x22, + 0x26, 0x23, 0x22, 0x06, 0x23, 0x22, 0x06, 0x15, 0x1C, 0x01, + 0x15, 0x1C, 0x01, 0x15, 0x14, 0x22, 0x23, 0x22, 0x06, 0x07, + 0x0E, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x1C, + 0x01, 0x15, 0x14, 0x32, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x15, 0x1C, 0x01, 0x15, + 0x14, 0x16, 0x07, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x2A, 0x01, 0x27, 0x26, 0x36, 0x35, 0x3C, 0x01, + 0x35, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x35, 0x34, 0x26, 0x35, + 0x34, 0x3D, 0x01, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x16, 0x15, 0x26, 0x22, 0x27, 0x22, 0x06, 0x23, 0x0E, 0x01, + 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x32, 0x17, 0x1E, 0x01, 0x15, 0x1C, 0x01, + 0x07, 0x06, 0x26, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x27, + 0x22, 0x26, 0x23, 0x22, 0x26, 0x27, 0x2A, 0x01, 0x35, 0x14, + 0x26, 0x27, 0x26, 0x34, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x35, 0x34, 0x36, 0x35, 0x37, 0x36, 0x37, 0x3E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x35, + 0x34, 0x06, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x26, 0x35, 0x3C, 0x01, + 0x35, 0x34, 0x36, 0x35, 0x3C, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x35, 0x36, 0x37, 0x32, 0x36, 0x33, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x16, 0x36, + 0x17, 0x26, 0x36, 0x33, 0x1E, 0x01, 0x15, 0x14, 0x16, 0x17, + 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x02, 0x16, 0x3B, + 0x01, 0x31, 0x34, 0x26, 0x37, 0x03, 0x2E, 0x01, 0x27, 0x26, + 0x06, 0x23, 0x2A, 0x01, 0x23, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x35, + 0x34, 0x26, 0x27, 0x3C, 0x01, 0x35, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x15, 0x14, 0x06, 0x15, 0x14, 0x16, 0x32, 0x16, 0x33, + 0x26, 0x36, 0x37, 0x32, 0x36, 0x15, 0x34, 0x36, 0x27, 0x2E, + 0x01, 0x35, 0x02, 0xFD, 0x11, 0x1C, 0x11, 0x05, 0x0D, 0x05, + 0x04, 0x02, 0x01, 0x01, 0x2D, 0x5A, 0x5A, 0x5B, 0x2D, 0x25, + 0x4C, 0x26, 0x05, 0x03, 0x02, 0x01, 0x01, 0x02, 0x01, 0x02, + 0x02, 0x0D, 0x03, 0x09, 0x12, 0x07, 0x01, 0x07, 0x08, 0x01, + 0x02, 0x04, 0x04, 0x0B, 0x02, 0x02, 0x04, 0x04, 0x01, 0x03, + 0x01, 0x0C, 0x04, 0x09, 0x15, 0x08, 0x02, 0x09, 0x01, 0x01, + 0x09, 0x07, 0x07, 0x18, 0x05, 0x01, 0x02, 0x07, 0x02, 0x02, + 0x02, 0x02, 0x02, 0x03, 0x03, 0x0E, 0x05, 0x26, 0x4C, 0x26, + 0x2F, 0x5E, 0x2F, 0x03, 0x05, 0x02, 0x0B, 0x06, 0x2E, 0x09, + 0x0C, 0x0F, 0x09, 0x04, 0x0D, 0x0C, 0x02, 0x04, 0x02, 0x02, + 0x02, 0x03, 0x09, 0x07, 0x06, 0x02, 0x02, 0x02, 0x02, 0x02, + 0x01, 0x13, 0x02, 0x1B, 0x37, 0x1B, 0x0C, 0x16, 0x0B, 0x09, + 0x05, 0x03, 0x03, 0x03, 0x05, 0x05, 0x09, 0x04, 0x26, 0x03, + 0x0F, 0x1D, 0x0F, 0x13, 0x26, 0x13, 0x09, 0x02, 0x14, 0x29, + 0x14, 0x05, 0x07, 0x02, 0x01, 0x07, 0x05, 0x02, 0x04, 0x05, + 0x03, 0x02, 0x01, 0x02, 0x02, 0x05, 0x01, 0x04, 0x04, 0x02, + 0x01, 0x05, 0x01, 0x02, 0x03, 0x01, 0x03, 0x03, 0x03, 0x02, + 0x04, 0x09, 0x06, 0x13, 0x02, 0x09, 0x13, 0x06, 0x15, 0x27, + 0x15, 0x10, 0x20, 0x13, 0x05, 0x0B, 0x06, 0x07, 0x16, 0x10, + 0x02, 0x02, 0x07, 0x03, 0x02, 0x06, 0x02, 0x01, 0x01, 0x01, + 0x01, 0x02, 0x01, 0x02, 0x01, 0x03, 0x0B, 0x11, 0x07, 0x07, + 0x16, 0x07, 0x02, 0x05, 0x03, 0x01, 0x08, 0x10, 0x02, 0x03, + 0x01, 0x02, 0x06, 0x01, 0x01, 0x07, 0x02, 0x02, 0x05, 0x04, + 0x05, 0x03, 0x19, 0x07, 0x08, 0x10, 0x06, 0x06, 0x07, 0x04, + 0x02, 0x09, 0x01, 0x03, 0x07, 0x02, 0x02, 0x04, 0x04, 0x03, + 0x02, 0x02, 0x04, 0x02, 0x01, 0x01, 0x01, 0x09, 0x01, 0x04, + 0x02, 0x02, 0x06, 0x0C, 0x06, 0x07, 0x1B, 0x02, 0x02, 0x05, + 0x02, 0x01, 0x0B, 0x0A, 0x05, 0x11, 0x03, 0x01, 0x03, 0x15, + 0x06, 0x15, 0x2A, 0x15, 0x2F, 0x5E, 0x5D, 0x5E, 0x2F, 0x01, + 0x01, 0x02, 0x45, 0x04, 0x05, 0x08, 0x06, 0x15, 0x07, 0x0C, + 0x18, 0x0C, 0x02, 0x13, 0x08, 0x03, 0x12, 0x01, 0x01, 0x10, + 0x08, 0x0E, 0x14, 0x0B, 0x02, 0x0E, 0x09, 0x02, 0x0D, 0x03, + 0x07, 0x03, 0x07, 0x09, 0x32, 0x3E, 0x39, 0x07, 0x01, 0x03, + 0x03, 0x01, 0x08, 0x01, 0x01, 0x01, 0x04, 0x03, 0x44, 0x09, + 0x12, 0x0B, 0x04, 0x07, 0x05, 0x04, 0x05, 0x07, 0x02, 0x12, + 0x01, 0x03, 0x01, 0x05, 0x01, 0x02, 0x01, 0x02, 0x02, 0x0F, + 0x01, 0x05, 0x01, 0x08, 0x02, 0x02, 0x03, 0x04, 0x02, 0x05, + 0x01, 0x03, 0x04, 0x01, 0x08, 0x01, 0x05, 0x03, 0x10, 0x02, + 0x0B, 0x02, 0x02, 0x04, 0x02, 0x04, 0x0A, 0x03, 0x03, 0x01, + 0x07, 0x02, 0x02, 0x05, 0x02, 0x07, 0x10, 0x07, 0x04, 0x07, + 0x03, 0x08, 0x01, 0x03, 0x04, 0x08, 0x07, 0x01, 0x03, 0x0C, + 0x01, 0x09, 0x02, 0x02, 0x04, 0x04, 0x09, 0x03, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x0A, 0x08, 0x0F, 0x07, 0x08, + 0x0F, 0x07, 0x09, 0x1E, 0x09, 0x04, 0x0C, 0x08, 0x0A, 0x13, + 0x09, 0x06, 0x0D, 0x06, 0x02, 0x06, 0x03, 0x01, 0x03, 0x08, + 0x18, 0x07, 0x0A, 0x09, 0x05, 0x03, 0x09, 0x08, 0x0E, 0x20, + 0x0E, 0x2F, 0x5E, 0x2F, 0x03, 0x11, 0x02, 0x01, 0x01, 0x05, + 0x07, 0x1F, 0x08, 0x39, 0x73, 0x39, 0x03, 0x0D, 0x03, 0x05, + 0x08, 0x1A, 0x0B, 0x01, 0x0C, 0x0C, 0x13, 0x08, 0x01, 0x01, + 0x20, 0x01, 0x0B, 0x02, 0x06, 0x06, 0x05, 0x07, 0x10, 0x07, + 0x05, 0x06, 0x05, 0x03, 0x0A, 0x03, 0x08, 0x0D, 0x08, 0x03, + 0x08, 0x02, 0x05, 0x0A, 0x05, 0x09, 0x06, 0x03, 0x0C, 0x02, + 0x0A, 0x18, 0x05, 0x02, 0x06, 0x02, 0x01, 0x01, 0x02, 0x01, + 0x05, 0x03, 0x01, 0x09, 0x01, 0x07, 0x04, 0x04, 0x09, 0x05, + 0x12, 0x1B, 0x10, 0x07, 0x0E, 0x08, 0x02, 0x04, 0x01, 0x03, + 0x02, 0x02, 0x04, 0x09, 0x03, 0x0B, 0x22, 0x0F, 0x11, 0x1D, + 0x0D, 0x04, 0x06, 0x03, 0x02, 0x0D, 0x01, 0x09, 0x0D, 0x0A, + 0x07, 0x08, 0x02, 0x06, 0x06, 0x07, 0x04, 0x0A, 0x03, 0x04, + 0x0A, 0x04, 0x05, 0x08, 0x08, 0x08, 0x02, 0x02, 0x01, 0x01, + 0x0B, 0x02, 0x01, 0x0A, 0x02, 0x02, 0x09, 0x04, 0x06, 0x15, + 0x08, 0x0F, 0x1E, 0x0F, 0x0A, 0x15, 0x07, 0x04, 0x09, 0x02, + 0x01, 0x03, 0x02, 0x01, 0x02, 0x01, 0x02, 0x03, 0x01, 0x06, + 0x02, 0x03, 0x02, 0x04, 0x07, 0x04, 0x03, 0x0F, 0x09, 0x01, + 0x01, 0x01, 0x0B, 0x09, 0x01, 0x01, 0x05, 0x03, 0x0F, 0x01, + 0x04, 0x01, 0x01, 0x07, 0x12, 0x05, 0xFE, 0xA1, 0x08, 0x14, + 0x04, 0x02, 0x01, 0x0C, 0x15, 0x07, 0x03, 0x08, 0x04, 0x09, + 0x09, 0x03, 0x04, 0x0A, 0x0B, 0x03, 0x0B, 0x03, 0x03, 0x11, + 0x03, 0x01, 0x03, 0x01, 0x02, 0x1B, 0x07, 0x03, 0x11, 0x04, + 0x05, 0x0C, 0x05, 0x02, 0x02, 0x01, 0x05, 0x05, 0x04, 0x0E, + 0x01, 0x04, 0x05, 0x04, 0x04, 0x06, 0x04, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x5A, 0x00, 0x26, 0x05, 0x2D, 0x03, 0x5A, + 0x00, 0xCC, 0x00, 0xDC, 0x01, 0x0D, 0x00, 0x00, 0x01, 0x16, + 0x32, 0x33, 0x3E, 0x01, 0x33, 0x16, 0x3A, 0x02, 0x33, 0x3E, + 0x01, 0x37, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x32, 0x16, 0x17, 0x16, 0x14, 0x07, 0x2A, 0x01, 0x27, + 0x06, 0x16, 0x07, 0x0E, 0x01, 0x23, 0x06, 0x26, 0x07, 0x36, + 0x16, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x22, 0x06, + 0x23, 0x1E, 0x03, 0x17, 0x1E, 0x01, 0x17, 0x0E, 0x01, 0x07, + 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x22, + 0x06, 0x27, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x03, + 0x27, 0x2E, 0x01, 0x27, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x15, + 0x14, 0x16, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x26, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x0E, 0x01, 0x23, 0x22, + 0x26, 0x27, 0x3C, 0x01, 0x35, 0x2E, 0x01, 0x27, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x26, 0x27, 0x26, 0x06, 0x27, 0x26, 0x36, 0x27, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, + 0x37, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, + 0x3E, 0x01, 0x37, 0x36, 0x16, 0x33, 0x3E, 0x01, 0x37, 0x36, + 0x16, 0x33, 0x1E, 0x01, 0x17, 0x3A, 0x01, 0x17, 0x05, 0x22, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x1E, 0x01, 0x17, 0x3E, 0x01, + 0x27, 0x36, 0x26, 0x27, 0x05, 0x26, 0x06, 0x07, 0x14, 0x06, + 0x15, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x15, + 0x22, 0x26, 0x27, 0x26, 0x36, 0x27, 0x36, 0x26, 0x27, 0x34, + 0x36, 0x35, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, + 0x2E, 0x01, 0x27, 0x02, 0x4B, 0x1B, 0x36, 0x1B, 0x0D, 0x1B, + 0x0D, 0x29, 0x52, 0x52, 0x52, 0x29, 0x02, 0x02, 0x04, 0x09, + 0x13, 0x09, 0x04, 0x07, 0x06, 0x05, 0x02, 0x04, 0x2A, 0x55, + 0x2A, 0x07, 0x07, 0x2B, 0x56, 0x2B, 0x04, 0x03, 0x04, 0x02, + 0x0C, 0x06, 0x27, 0x4F, 0x27, 0x0D, 0x14, 0x0C, 0x03, 0x05, + 0x02, 0x06, 0x0E, 0x07, 0x0B, 0x16, 0x0B, 0x12, 0x21, 0x22, + 0x21, 0x11, 0x06, 0x0F, 0x05, 0x03, 0x06, 0x03, 0x01, 0x01, + 0x05, 0x0E, 0x06, 0x05, 0x07, 0x06, 0x08, 0x0E, 0x07, 0x10, + 0x20, 0x10, 0x06, 0x06, 0x02, 0x0F, 0x1E, 0x1E, 0x1F, 0x0F, + 0x0D, 0x1C, 0x0E, 0x07, 0x0A, 0x03, 0x02, 0x04, 0x01, 0x01, + 0x0B, 0x1A, 0x0D, 0x16, 0x2E, 0x17, 0x13, 0x25, 0x12, 0x0F, + 0x22, 0x0F, 0x0F, 0x12, 0x05, 0x07, 0x14, 0x08, 0x07, 0x0F, + 0x04, 0x02, 0x01, 0x01, 0x08, 0x11, 0x03, 0x06, 0x0F, 0x09, + 0x02, 0x05, 0x03, 0x2F, 0x5D, 0x2F, 0x05, 0x0A, 0x04, 0x10, + 0x24, 0x06, 0x03, 0x06, 0x07, 0x0A, 0x15, 0x0B, 0x05, 0x0C, + 0x06, 0x0B, 0x1B, 0x09, 0x06, 0x0A, 0x13, 0x12, 0x2A, 0x14, + 0x08, 0x02, 0x01, 0x14, 0x2A, 0x0F, 0x06, 0x01, 0x01, 0x02, + 0x09, 0x08, 0x06, 0x0B, 0x01, 0x01, 0x07, 0x05, 0x04, 0x08, + 0x04, 0x07, 0x0C, 0x06, 0x05, 0x0C, 0x05, 0x0C, 0x18, 0x0B, + 0x03, 0x04, 0x02, 0x06, 0x0C, 0x06, 0x03, 0x05, 0x02, 0x42, + 0x84, 0x42, 0xFE, 0x72, 0x02, 0x05, 0x02, 0x01, 0x03, 0x01, + 0x02, 0x09, 0x05, 0x03, 0x07, 0x01, 0x01, 0x09, 0x03, 0x01, + 0xE4, 0x11, 0x1D, 0x10, 0x01, 0x04, 0x0D, 0x02, 0x03, 0x08, + 0x0B, 0x06, 0x0E, 0x10, 0x17, 0x09, 0x0A, 0x08, 0x01, 0x01, + 0x06, 0x02, 0x01, 0x0D, 0x16, 0x09, 0x0A, 0x0D, 0x01, 0x01, + 0x1E, 0x13, 0x20, 0x42, 0x1E, 0x10, 0x17, 0x04, 0x01, 0x02, + 0x08, 0x07, 0x18, 0x0C, 0x03, 0x41, 0x03, 0x02, 0x01, 0x01, + 0x05, 0x0A, 0x04, 0x01, 0x01, 0x01, 0x06, 0x0D, 0x04, 0x03, + 0x0B, 0x03, 0x01, 0x01, 0x0F, 0x23, 0x10, 0x01, 0x11, 0x22, + 0x10, 0x07, 0x04, 0x01, 0x01, 0x02, 0x01, 0x10, 0x04, 0x02, + 0x06, 0x04, 0x05, 0x07, 0x03, 0x01, 0x36, 0x6C, 0x6B, 0x6C, + 0x36, 0x16, 0x2A, 0x16, 0x03, 0x04, 0x03, 0x06, 0x0C, 0x05, + 0x05, 0x02, 0x01, 0x01, 0x0B, 0x01, 0x07, 0x01, 0x01, 0x01, + 0x06, 0x10, 0x08, 0x2F, 0x5F, 0x5F, 0x5E, 0x30, 0x2D, 0x5B, + 0x2D, 0x06, 0x10, 0x09, 0x09, 0x12, 0x0A, 0x0E, 0x1E, 0x0F, + 0x09, 0x0B, 0x05, 0x08, 0x08, 0x02, 0x02, 0x08, 0x06, 0x05, + 0x07, 0x08, 0x05, 0x1B, 0x0F, 0x1C, 0x38, 0x1C, 0x16, 0x2B, + 0x16, 0x0F, 0x1E, 0x0F, 0x04, 0x08, 0x09, 0x08, 0x0D, 0x06, + 0x01, 0x02, 0x01, 0x01, 0x01, 0x05, 0x02, 0x07, 0x0D, 0x06, + 0x02, 0x0D, 0x11, 0x19, 0x33, 0x18, 0x20, 0x40, 0x20, 0x0E, + 0x1A, 0x0D, 0x15, 0x26, 0x16, 0x14, 0x2D, 0x0C, 0x0B, 0x05, + 0x01, 0x05, 0x12, 0x07, 0x06, 0x06, 0x10, 0x06, 0x10, 0x08, + 0x0B, 0x15, 0x07, 0x06, 0x0C, 0x09, 0x08, 0x0C, 0x05, 0x02, + 0x04, 0x01, 0x01, 0x05, 0x02, 0x07, 0x0D, 0x06, 0x01, 0x01, + 0x06, 0x0C, 0x05, 0x01, 0x01, 0x05, 0x0C, 0x06, 0x01, 0x24, + 0x02, 0x01, 0x02, 0x05, 0x02, 0x05, 0x07, 0x01, 0x03, 0x06, + 0x04, 0x06, 0x04, 0x02, 0xA7, 0x02, 0x0F, 0x01, 0x03, 0x05, + 0x03, 0x08, 0x0E, 0x0A, 0x0F, 0x20, 0x0B, 0x05, 0x0B, 0x09, + 0x17, 0x0C, 0x0F, 0x24, 0x11, 0x04, 0x05, 0x03, 0x02, 0x06, + 0x02, 0x0D, 0x08, 0x0A, 0x1B, 0x0E, 0x15, 0x20, 0x06, 0x07, + 0x06, 0x0F, 0x08, 0x1D, 0x11, 0x0D, 0x1C, 0x0B, 0x0B, 0x0D, + 0x02, 0x00, 0x00, 0x05, 0x00, 0x5B, 0x00, 0x27, 0x06, 0xE3, + 0x03, 0x5A, 0x00, 0xD6, 0x00, 0xE6, 0x00, 0xF3, 0x01, 0x06, + 0x01, 0x34, 0x00, 0x00, 0x01, 0x14, 0x16, 0x17, 0x16, 0x06, + 0x17, 0x16, 0x06, 0x07, 0x06, 0x16, 0x07, 0x14, 0x06, 0x23, + 0x2A, 0x01, 0x23, 0x2A, 0x03, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x14, 0x07, 0x06, 0x26, + 0x07, 0x0E, 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x23, + 0x2A, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x06, + 0x16, 0x17, 0x16, 0x06, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x22, 0x16, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x32, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x37, 0x36, 0x26, 0x27, + 0x26, 0x06, 0x27, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, + 0x26, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x32, 0x33, 0x2E, 0x01, + 0x27, 0x26, 0x36, 0x37, 0x36, 0x16, 0x33, 0x32, 0x06, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x36, 0x33, 0x32, 0x36, 0x17, 0x1E, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x33, 0x3A, 0x01, + 0x33, 0x32, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x3A, + 0x01, 0x17, 0x1E, 0x01, 0x37, 0x05, 0x36, 0x06, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x26, 0x07, 0x06, 0x32, 0x33, 0x3A, 0x01, + 0x33, 0x37, 0x36, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x06, 0x36, + 0x33, 0x3A, 0x01, 0x33, 0x17, 0x3A, 0x01, 0x33, 0x3A, 0x01, + 0x33, 0x32, 0x36, 0x27, 0x26, 0x06, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x26, 0x17, 0x01, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x34, 0x26, 0x23, 0x0E, 0x01, 0x07, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x06, + 0xC2, 0x1C, 0x02, 0x01, 0x01, 0x01, 0x02, 0x07, 0x04, 0x02, + 0x04, 0x01, 0x05, 0x06, 0x0A, 0x14, 0x09, 0x3D, 0x78, 0x78, + 0x78, 0x3C, 0x2F, 0x5C, 0x2F, 0x10, 0x05, 0x07, 0x07, 0x0A, + 0x02, 0x01, 0x04, 0x08, 0x35, 0x10, 0x0D, 0x47, 0x08, 0x17, + 0x13, 0x36, 0x17, 0x14, 0x2D, 0x10, 0x12, 0x1B, 0x07, 0x01, + 0x0C, 0x06, 0x03, 0x08, 0x01, 0x03, 0x0B, 0x0B, 0x08, 0x15, + 0x0A, 0x0C, 0x17, 0x0C, 0x08, 0x05, 0x01, 0x01, 0x04, 0x01, + 0x02, 0x11, 0x05, 0x08, 0x07, 0x02, 0x02, 0x01, 0x0C, 0x09, + 0x0C, 0x07, 0x04, 0x02, 0x39, 0x11, 0x19, 0x31, 0x19, 0x15, + 0x28, 0x0E, 0x10, 0x03, 0x03, 0x08, 0x31, 0x1E, 0x0A, 0x14, + 0x0A, 0x0B, 0x1B, 0x08, 0x04, 0x01, 0x05, 0x04, 0x0A, 0x06, + 0x06, 0x08, 0x05, 0x0B, 0x1D, 0x0C, 0x0E, 0x08, 0x09, 0x09, + 0x0D, 0x0C, 0x06, 0x0C, 0x06, 0x05, 0x0D, 0x05, 0x16, 0x1B, + 0x10, 0x0A, 0x1B, 0x07, 0x0B, 0x15, 0x0C, 0x0D, 0x18, 0x0E, + 0x0B, 0x01, 0x07, 0x04, 0x08, 0x04, 0x0D, 0x18, 0x10, 0x07, + 0x1B, 0x04, 0x01, 0x01, 0x02, 0x02, 0x12, 0x03, 0x06, 0x04, + 0x04, 0x09, 0x02, 0x07, 0x06, 0x09, 0x20, 0x08, 0x03, 0x05, + 0x04, 0x05, 0x0C, 0x05, 0x13, 0x25, 0x12, 0x39, 0x70, 0x38, + 0x0B, 0x0B, 0x09, 0x11, 0x23, 0x11, 0x33, 0x67, 0x66, 0x67, + 0x33, 0x1D, 0x3A, 0x1D, 0x0D, 0x1C, 0x0B, 0x08, 0x0E, 0x08, + 0x06, 0x05, 0x02, 0x01, 0x02, 0x08, 0xFD, 0xDE, 0x05, 0x2B, + 0x09, 0x0C, 0x18, 0x0B, 0x03, 0x16, 0x02, 0x0C, 0x38, 0x03, + 0x12, 0x26, 0x12, 0xFE, 0x05, 0x33, 0x08, 0x12, 0x24, 0x11, + 0x01, 0x2E, 0x08, 0x12, 0x24, 0x12, 0x7D, 0x11, 0x24, 0x12, + 0x0A, 0x15, 0x0A, 0x02, 0x12, 0x07, 0x01, 0x11, 0x02, 0x0D, + 0x19, 0x0C, 0x08, 0x33, 0x04, 0xFC, 0xC3, 0x08, 0x0F, 0x09, + 0x0D, 0x0D, 0x03, 0x04, 0x09, 0x08, 0x02, 0x09, 0x04, 0x06, + 0x05, 0x06, 0x11, 0x0F, 0x05, 0x1F, 0x02, 0x0C, 0x15, 0x0C, + 0x05, 0x09, 0x05, 0x08, 0x0F, 0x10, 0x16, 0x4A, 0x1A, 0x15, + 0x1B, 0x0A, 0x06, 0x01, 0x01, 0x02, 0x06, 0x12, 0x0A, 0x23, + 0x06, 0x03, 0x33, 0x15, 0x1E, 0x16, 0x0A, 0x12, 0x0A, 0x0D, + 0x15, 0x0D, 0x06, 0x17, 0x08, 0x04, 0x1D, 0x04, 0x11, 0x10, + 0x21, 0x12, 0x08, 0x21, 0x07, 0x0C, 0x06, 0x05, 0x04, 0x11, + 0x0E, 0x1C, 0x3B, 0x13, 0x10, 0x08, 0x0D, 0x0F, 0x1E, 0x17, + 0x03, 0x25, 0x0A, 0x05, 0x23, 0x05, 0x0E, 0x02, 0x05, 0x03, + 0x06, 0x02, 0x02, 0x05, 0x01, 0x1C, 0x07, 0x0C, 0x17, 0x0C, + 0x08, 0x14, 0x07, 0x0C, 0x0D, 0x0F, 0x0D, 0x18, 0x0D, 0x0C, + 0x07, 0x08, 0x0B, 0x0D, 0x0E, 0x15, 0x01, 0x01, 0x03, 0x02, + 0x01, 0x01, 0x13, 0x18, 0x32, 0x1B, 0x40, 0x79, 0x39, 0x12, + 0x24, 0x12, 0x15, 0x2D, 0x16, 0x0B, 0x15, 0x0A, 0x08, 0x04, + 0x03, 0x0D, 0x04, 0x06, 0x04, 0x02, 0x03, 0x08, 0x09, 0x08, + 0x0D, 0x03, 0x01, 0x03, 0x01, 0x01, 0x03, 0x03, 0x0A, 0x23, + 0x01, 0x01, 0x0B, 0x0A, 0x05, 0x08, 0x02, 0x02, 0x06, 0x03, + 0x07, 0x04, 0x08, 0x04, 0x0A, 0x04, 0x0C, 0x06, 0x03, 0x27, + 0x02, 0x02, 0x02, 0x08, 0x01, 0x09, 0x06, 0x01, 0x04, 0x04, + 0x01, 0x0B, 0x03, 0x06, 0x0D, 0x04, 0x03, 0x05, 0x06, 0x06, + 0x08, 0x02, 0x28, 0x0F, 0x04, 0x02, 0x02, 0x0B, 0x01, 0x0E, + 0x04, 0x0D, 0x03, 0x01, 0x01, 0x07, 0x02, 0x02, 0x04, 0x0C, + 0xFE, 0xA1, 0x05, 0x08, 0x03, 0x03, 0x02, 0x0E, 0x11, 0x18, + 0x0E, 0x03, 0x08, 0x03, 0x05, 0x04, 0x05, 0x0F, 0x23, 0x15, + 0x02, 0x08, 0x03, 0x06, 0x03, 0x0C, 0x18, 0x0C, 0x12, 0x0F, + 0x0B, 0x10, 0x02, 0x06, 0x05, 0x13, 0x13, 0x0B, 0x1D, 0x0D, + 0x13, 0x07, 0x07, 0x04, 0x11, 0x0F, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x5D, 0x00, 0x26, 0x04, 0xE3, 0x03, 0x5A, 0x00, 0xE7, + 0x00, 0xF7, 0x01, 0x07, 0x00, 0x00, 0x01, 0x1C, 0x01, 0x07, + 0x06, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x16, 0x17, 0x16, 0x06, 0x17, 0x1E, 0x01, + 0x17, 0x22, 0x26, 0x23, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x26, 0x23, 0x06, 0x26, 0x27, 0x1C, 0x01, 0x15, 0x1C, + 0x01, 0x15, 0x14, 0x26, 0x07, 0x06, 0x16, 0x15, 0x1C, 0x01, + 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x23, 0x2A, 0x01, 0x23, + 0x2A, 0x01, 0x23, 0x22, 0x36, 0x35, 0x3C, 0x01, 0x35, 0x34, + 0x26, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x27, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x26, 0x27, 0x26, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x2B, + 0x01, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x23, + 0x22, 0x26, 0x27, 0x26, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x35, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x30, 0x17, 0x16, + 0x17, 0x16, 0x06, 0x07, 0x06, 0x22, 0x23, 0x22, 0x26, 0x27, + 0x2E, 0x01, 0x27, 0x2A, 0x01, 0x27, 0x31, 0x27, 0x06, 0x36, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x35, 0x36, + 0x34, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x37, + 0x36, 0x26, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, + 0x06, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x17, 0x05, 0x16, + 0x32, 0x33, 0x32, 0x36, 0x27, 0x26, 0x06, 0x23, 0x22, 0x26, + 0x07, 0x0E, 0x01, 0x17, 0x01, 0x22, 0x06, 0x15, 0x1C, 0x01, + 0x15, 0x1E, 0x01, 0x17, 0x3E, 0x01, 0x37, 0x2E, 0x01, 0x23, + 0x04, 0xE3, 0x0C, 0x07, 0x27, 0x0A, 0x10, 0x01, 0x04, 0x0D, + 0x22, 0x46, 0x23, 0x0E, 0x05, 0x01, 0x01, 0x0D, 0x01, 0x02, + 0x02, 0x01, 0x11, 0x22, 0x11, 0x03, 0x1A, 0x04, 0x09, 0x11, + 0x0E, 0x09, 0x14, 0x09, 0x1B, 0x2E, 0x18, 0x0F, 0x04, 0x02, + 0x02, 0x01, 0x03, 0x0A, 0x15, 0x0A, 0x19, 0x31, 0x19, 0x03, + 0x01, 0x0F, 0x10, 0x0D, 0x1A, 0x0C, 0x0A, 0x09, 0x06, 0x02, + 0x06, 0x01, 0x03, 0x06, 0x04, 0x08, 0x11, 0x09, 0x02, 0x03, + 0x06, 0x07, 0x0D, 0x0A, 0x0C, 0x38, 0x0F, 0x08, 0x0A, 0x05, + 0x09, 0x0D, 0x04, 0x04, 0x16, 0x04, 0x0F, 0x1E, 0x0F, 0x02, + 0x0C, 0x0C, 0x1B, 0x04, 0x0B, 0x11, 0x0A, 0x09, 0x14, 0x09, + 0x07, 0x0D, 0x03, 0x08, 0x0B, 0x02, 0x03, 0x02, 0x02, 0x01, + 0x02, 0x01, 0x01, 0x1D, 0x50, 0x9E, 0x4F, 0x08, 0x0F, 0x08, + 0x03, 0x03, 0x01, 0x02, 0x04, 0x05, 0x10, 0x28, 0x12, 0x13, + 0x24, 0x12, 0x0E, 0x1C, 0x0D, 0x03, 0x15, 0x01, 0x01, 0x02, + 0x10, 0x09, 0x0B, 0x15, 0x0A, 0x15, 0x28, 0x15, 0x24, 0x48, + 0x24, 0x2A, 0x53, 0x2A, 0x19, 0x33, 0x19, 0x04, 0x01, 0x02, + 0x0C, 0x10, 0x24, 0x10, 0x06, 0x09, 0x02, 0x05, 0x03, 0x09, + 0x18, 0x2F, 0x18, 0x03, 0x07, 0x04, 0x05, 0x03, 0x02, 0x02, + 0x01, 0x06, 0x0A, 0x39, 0x0B, 0x11, 0x01, 0x02, 0x12, 0x0B, + 0x17, 0x0C, 0x0C, 0x07, 0x07, 0xFE, 0x08, 0x17, 0x2D, 0x19, + 0x13, 0x24, 0x06, 0x06, 0x3B, 0x16, 0x0A, 0x1D, 0x0A, 0x0E, + 0x05, 0x0D, 0xFD, 0xC8, 0x09, 0x08, 0x01, 0x02, 0x02, 0x06, + 0x0D, 0x08, 0x04, 0x07, 0x04, 0x02, 0xC8, 0x11, 0x16, 0x0C, + 0x07, 0x04, 0x12, 0x0D, 0x0B, 0x1A, 0x0E, 0x0B, 0x08, 0x04, + 0x08, 0x06, 0x0D, 0x07, 0x01, 0x01, 0x32, 0x05, 0x0B, 0x11, + 0x03, 0x03, 0x01, 0x01, 0x07, 0x0F, 0x2D, 0x5C, 0x2D, 0x09, + 0x10, 0x09, 0x09, 0x05, 0x05, 0x03, 0x0F, 0x03, 0x0D, 0x1B, + 0x0D, 0x1A, 0x35, 0x1A, 0x02, 0x0A, 0x39, 0x05, 0x1B, 0x36, + 0x1C, 0x11, 0x03, 0x0E, 0x08, 0x03, 0x12, 0x03, 0x0E, 0x1D, + 0x0F, 0x25, 0x4B, 0x25, 0x0C, 0x0B, 0x0B, 0x0C, 0x1B, 0x0A, + 0x0C, 0x06, 0x01, 0x01, 0x09, 0x05, 0x09, 0x12, 0x03, 0x03, + 0x03, 0x0C, 0x16, 0x0B, 0x0B, 0x16, 0x0B, 0x02, 0x07, 0x02, + 0x03, 0x03, 0x02, 0x04, 0x02, 0x0F, 0x06, 0x0F, 0x1E, 0x0F, + 0x27, 0x51, 0x27, 0x17, 0x2C, 0x16, 0x0E, 0x14, 0x0E, 0x05, + 0x0E, 0x0B, 0x01, 0x03, 0x04, 0x03, 0x01, 0x07, 0x07, 0x03, + 0x0A, 0x03, 0x01, 0x01, 0x02, 0x01, 0x03, 0x01, 0x0C, 0x01, + 0x01, 0x01, 0x02, 0x01, 0x02, 0x01, 0x12, 0x05, 0x0B, 0x09, + 0x02, 0x02, 0x01, 0x04, 0x02, 0x0E, 0x06, 0x09, 0x02, 0x02, + 0x04, 0x05, 0x0D, 0x02, 0x04, 0x1A, 0x09, 0x0E, 0x1C, 0x15, + 0x0A, 0x2A, 0x02, 0x0B, 0xE9, 0x08, 0x10, 0x1A, 0x1D, 0x02, + 0x02, 0x05, 0x07, 0x29, 0x0A, 0x01, 0x33, 0x01, 0x0B, 0x07, + 0x0F, 0x08, 0x10, 0x1E, 0x10, 0x1A, 0x32, 0x19, 0x01, 0x02, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x5A, 0x00, 0x24, 0x09, 0x3D, + 0x03, 0x5A, 0x01, 0xA4, 0x01, 0xC2, 0x01, 0xD5, 0x01, 0xE5, + 0x02, 0x07, 0x00, 0x00, 0x01, 0x1E, 0x01, 0x15, 0x1C, 0x01, + 0x15, 0x14, 0x16, 0x17, 0x16, 0x36, 0x33, 0x16, 0x36, 0x17, + 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x15, 0x14, 0x06, 0x07, 0x06, 0x26, + 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x15, + 0x16, 0x06, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x34, 0x36, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x23, + 0x26, 0x06, 0x07, 0x06, 0x26, 0x23, 0x3E, 0x01, 0x35, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x23, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x07, 0x30, 0x07, 0x06, 0x23, 0x06, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x23, 0x2A, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, + 0x01, 0x17, 0x1E, 0x01, 0x33, 0x0E, 0x01, 0x07, 0x06, 0x26, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x07, + 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x03, 0x07, 0x0E, 0x01, 0x35, 0x34, 0x36, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x36, 0x33, 0x36, 0x32, 0x37, 0x36, 0x16, + 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x32, 0x36, + 0x17, 0x32, 0x16, 0x17, 0x16, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x1C, 0x01, 0x15, 0x14, 0x36, 0x35, 0x34, 0x26, 0x37, 0x36, + 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x37, 0x36, 0x16, + 0x15, 0x14, 0x06, 0x33, 0x32, 0x16, 0x35, 0x34, 0x26, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x06, 0x15, 0x14, 0x36, 0x33, 0x32, + 0x26, 0x37, 0x36, 0x16, 0x33, 0x32, 0x36, 0x15, 0x1C, 0x01, + 0x33, 0x32, 0x16, 0x37, 0x36, 0x26, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x06, 0x15, 0x14, 0x16, 0x35, 0x3C, 0x01, 0x33, 0x3A, + 0x01, 0x33, 0x32, 0x06, 0x17, 0x16, 0x36, 0x33, 0x32, 0x34, + 0x35, 0x34, 0x16, 0x33, 0x32, 0x36, 0x17, 0x16, 0x06, 0x33, + 0x32, 0x16, 0x37, 0x36, 0x26, 0x33, 0x32, 0x36, 0x15, 0x14, + 0x16, 0x33, 0x32, 0x34, 0x35, 0x34, 0x36, 0x17, 0x16, 0x06, + 0x33, 0x3A, 0x01, 0x33, 0x32, 0x06, 0x15, 0x14, 0x32, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, + 0x16, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x34, 0x36, + 0x37, 0x3E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x32, 0x16, 0x17, + 0x1E, 0x01, 0x17, 0x05, 0x2A, 0x03, 0x23, 0x2A, 0x01, 0x23, + 0x32, 0x06, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, + 0x35, 0x01, 0x14, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, + 0x37, 0x36, 0x26, 0x27, 0x26, 0x06, 0x23, 0x22, 0x26, 0x15, + 0x25, 0x36, 0x26, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x17, + 0x1E, 0x01, 0x33, 0x32, 0x16, 0x37, 0x25, 0x2E, 0x01, 0x27, + 0x1E, 0x01, 0x17, 0x16, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x08, 0xAF, 0x0C, 0x0E, 0x09, 0x01, 0x01, 0x25, 0x05, 0x09, + 0x26, 0x03, 0x04, 0x09, 0x0A, 0x08, 0x1B, 0x0C, 0x0E, 0x14, + 0x0F, 0x02, 0x04, 0x09, 0x08, 0x07, 0x03, 0x06, 0x05, 0x19, + 0x06, 0x06, 0x19, 0x05, 0x07, 0x0E, 0x09, 0x12, 0x05, 0x02, + 0x02, 0x04, 0x02, 0x02, 0x05, 0x02, 0x03, 0x04, 0x0A, 0x14, + 0x31, 0x03, 0x03, 0x04, 0x01, 0x03, 0x05, 0x03, 0x0B, 0x04, + 0x0F, 0x14, 0x13, 0x06, 0x0F, 0x07, 0x08, 0x10, 0x09, 0x11, + 0x26, 0x12, 0x01, 0x02, 0x0D, 0x19, 0x0E, 0x0D, 0x1E, 0x0E, + 0x04, 0x07, 0x03, 0x01, 0x07, 0x02, 0x07, 0x08, 0x01, 0x05, + 0x03, 0x01, 0x09, 0x12, 0x08, 0x08, 0x11, 0x09, 0x02, 0x0C, + 0x09, 0x08, 0x10, 0x08, 0x11, 0x23, 0x11, 0x05, 0x14, 0x01, + 0x02, 0x03, 0x02, 0x05, 0x0B, 0x05, 0x08, 0x11, 0x07, 0x02, + 0x04, 0x02, 0x03, 0x03, 0x0B, 0x13, 0x26, 0x12, 0x10, 0x0F, + 0x0F, 0x13, 0x27, 0x14, 0x19, 0x35, 0x17, 0x06, 0x0D, 0x06, + 0x08, 0x0F, 0x06, 0x03, 0x12, 0x03, 0x02, 0x07, 0x04, 0x03, + 0x07, 0x03, 0x02, 0x07, 0x02, 0x06, 0x0B, 0x06, 0x09, 0x11, + 0x03, 0x02, 0x05, 0x06, 0x06, 0x18, 0x06, 0x11, 0x20, 0x10, + 0x05, 0x3B, 0x02, 0x05, 0x12, 0x08, 0x14, 0x29, 0x15, 0x08, + 0x13, 0x0B, 0x0F, 0x30, 0x13, 0x23, 0x4C, 0x23, 0x17, 0x2D, + 0x15, 0x31, 0x61, 0x31, 0x29, 0x52, 0x52, 0x52, 0x29, 0x11, + 0x5A, 0x03, 0x04, 0x05, 0x02, 0x03, 0x02, 0x2B, 0x15, 0x14, + 0x28, 0x14, 0x50, 0x9F, 0x50, 0x27, 0x4E, 0x27, 0x0D, 0x1F, + 0x0D, 0x13, 0x20, 0x0F, 0x10, 0x21, 0x13, 0x08, 0x0F, 0x08, + 0x08, 0x11, 0x06, 0x0B, 0x18, 0x0F, 0x09, 0x11, 0x09, 0x06, + 0x0C, 0x06, 0x03, 0x07, 0x03, 0x04, 0x07, 0x04, 0x03, 0x0B, + 0x03, 0x0A, 0x09, 0x05, 0x02, 0x02, 0x03, 0x1F, 0x05, 0x05, + 0x0A, 0x05, 0x04, 0x04, 0x02, 0x02, 0x1E, 0x01, 0x05, 0x02, + 0x10, 0x01, 0x05, 0x06, 0x0C, 0x06, 0x04, 0x01, 0x11, 0x03, + 0x03, 0x04, 0x02, 0x01, 0x0F, 0x02, 0x02, 0x0B, 0x07, 0x02, + 0x10, 0x01, 0x01, 0x02, 0x02, 0x06, 0x0B, 0x06, 0x07, 0x01, + 0x1A, 0x06, 0x06, 0x0C, 0x07, 0x02, 0x03, 0x01, 0x02, 0x0F, + 0x02, 0x07, 0x08, 0x06, 0x02, 0x0E, 0x02, 0x01, 0x03, 0x03, + 0x02, 0x0F, 0x02, 0x02, 0x05, 0x05, 0x07, 0x1A, 0x01, 0x08, + 0x09, 0x1E, 0x02, 0x01, 0x03, 0x02, 0x07, 0x0D, 0x06, 0x09, + 0x03, 0x08, 0x02, 0x10, 0x22, 0x10, 0x37, 0x6E, 0x38, 0x1C, + 0x39, 0x1D, 0x04, 0x0A, 0x04, 0x0A, 0x15, 0x07, 0x03, 0x0C, + 0x01, 0x01, 0x01, 0x03, 0x0E, 0x0E, 0x05, 0x0C, 0x05, 0x02, + 0x0E, 0x02, 0x09, 0x0A, 0x02, 0xFD, 0xAE, 0x2B, 0x56, 0x55, + 0x56, 0x2B, 0x20, 0x3F, 0x20, 0x01, 0x03, 0x03, 0x04, 0x09, + 0x04, 0x12, 0x25, 0x12, 0x3F, 0x7E, 0x3F, 0x18, 0x30, 0x18, + 0x06, 0x0D, 0x06, 0x07, 0x01, 0xFE, 0x7C, 0x55, 0x0F, 0x0B, + 0x15, 0x0B, 0x0D, 0x0D, 0x05, 0x07, 0x1B, 0x0B, 0x0A, 0x17, + 0x0A, 0x16, 0x4E, 0xFD, 0xA3, 0x07, 0x07, 0x16, 0x0D, 0x1F, + 0x0D, 0x0C, 0x0C, 0x08, 0x06, 0x0F, 0x08, 0x0E, 0x29, 0x0B, + 0xFE, 0x5A, 0x07, 0x0E, 0x07, 0x01, 0x06, 0x01, 0x01, 0x02, + 0x05, 0x0C, 0x1B, 0x0E, 0x11, 0x25, 0x11, 0x11, 0x23, 0x12, + 0x12, 0x18, 0x04, 0x02, 0x04, 0x03, 0x05, 0x03, 0x0F, 0x12, + 0x23, 0x12, 0x1C, 0x38, 0x1D, 0x03, 0x1B, 0x12, 0x38, 0x15, + 0x07, 0x0E, 0x07, 0x04, 0x0F, 0x04, 0x02, 0x02, 0x01, 0x03, + 0x0A, 0x0C, 0x1D, 0x0B, 0x09, 0x04, 0x01, 0x02, 0x06, 0x04, + 0x0C, 0x0A, 0x08, 0x08, 0x02, 0x0E, 0x07, 0x11, 0x02, 0x03, + 0x02, 0x01, 0x01, 0x09, 0x03, 0x04, 0x07, 0x03, 0x07, 0x2B, + 0x0E, 0x27, 0x4D, 0x27, 0x12, 0x24, 0x12, 0x07, 0x0F, 0x07, + 0x0A, 0x08, 0x01, 0x03, 0x07, 0x1A, 0x12, 0x1B, 0x12, 0x28, + 0x52, 0x28, 0x06, 0x37, 0x02, 0x06, 0x1D, 0x03, 0x01, 0x01, + 0x01, 0x01, 0x02, 0x03, 0x03, 0x07, 0x10, 0x07, 0x07, 0x0E, + 0x06, 0x05, 0x02, 0x11, 0x22, 0x11, 0x05, 0x1F, 0x04, 0x03, + 0x02, 0x03, 0x0A, 0x05, 0x28, 0x4E, 0x27, 0x25, 0x4A, 0x25, + 0x0B, 0x01, 0x01, 0x01, 0x03, 0x01, 0x02, 0x03, 0x02, 0x01, + 0x05, 0x06, 0x08, 0x0E, 0x07, 0x17, 0x2E, 0x17, 0x23, 0x44, + 0x22, 0x0A, 0x12, 0x09, 0x0A, 0x11, 0x06, 0x05, 0x26, 0x03, + 0x04, 0x03, 0x02, 0x01, 0x02, 0x09, 0x02, 0x04, 0x03, 0x05, + 0x0B, 0x09, 0x05, 0x1A, 0x08, 0x04, 0x12, 0x03, 0x08, 0x02, + 0x01, 0x04, 0x04, 0x09, 0x12, 0x09, 0x0E, 0x24, 0x11, 0x08, + 0x16, 0x07, 0x05, 0x02, 0x03, 0x08, 0x12, 0x09, 0x03, 0x21, + 0x0A, 0x11, 0x1F, 0x0F, 0x25, 0x48, 0x24, 0x0D, 0x31, 0x08, + 0x0C, 0x10, 0x04, 0x06, 0x09, 0x05, 0x03, 0x12, 0x08, 0x11, + 0x22, 0x12, 0x0E, 0x1D, 0x1D, 0x1D, 0x0F, 0x06, 0x02, 0x1B, + 0x25, 0x4F, 0x25, 0x26, 0x4D, 0x27, 0x1B, 0x07, 0x01, 0x01, + 0x01, 0x01, 0x0B, 0x03, 0x05, 0x0C, 0x0C, 0x0B, 0x0B, 0x04, + 0x02, 0x03, 0x02, 0x03, 0x14, 0x05, 0x0B, 0x20, 0x02, 0x02, + 0x02, 0x01, 0x01, 0x02, 0x01, 0x03, 0x01, 0x04, 0x02, 0x02, + 0x01, 0x08, 0x0A, 0x0B, 0x16, 0x0B, 0x02, 0x05, 0x03, 0x02, + 0x13, 0x02, 0x03, 0x03, 0x0D, 0x02, 0x02, 0x03, 0x01, 0x04, + 0x09, 0x01, 0x02, 0x04, 0x0A, 0x0A, 0x04, 0x02, 0x01, 0x0D, + 0x02, 0x01, 0x01, 0x01, 0x03, 0x07, 0x06, 0x02, 0x02, 0x01, + 0x0E, 0x07, 0x07, 0x01, 0x03, 0x08, 0x06, 0x04, 0x0E, 0x01, + 0x02, 0x02, 0x03, 0x06, 0x07, 0x01, 0x01, 0x01, 0x02, 0x0D, + 0x02, 0x02, 0x02, 0x0D, 0x02, 0x08, 0x07, 0x02, 0x04, 0x09, + 0x01, 0x03, 0x02, 0x02, 0x0D, 0x16, 0x07, 0x01, 0x01, 0x01, + 0x04, 0x18, 0x08, 0x03, 0x0A, 0x04, 0x06, 0x0D, 0x05, 0x0D, + 0x13, 0x04, 0x02, 0x0C, 0x02, 0x0A, 0x1B, 0x0C, 0x27, 0x0D, + 0x06, 0x07, 0xFE, 0x92, 0x1C, 0x02, 0x0E, 0x0B, 0x0F, 0x12, + 0x02, 0x01, 0x01, 0x01, 0x23, 0x88, 0x10, 0x1D, 0x02, 0x03, + 0x03, 0x1B, 0x09, 0x08, 0x05, 0x02, 0x0A, 0x46, 0x01, 0x01, + 0x01, 0x26, 0x4B, 0x26, 0x06, 0x18, 0x04, 0x08, 0x05, 0x03, + 0x03, 0x0E, 0x05, 0x06, 0x0F, 0x08, 0x0A, 0x13, 0x18, 0x09, + 0x11, 0x08, 0x0E, 0x0B, 0x02, 0x03, 0x0A, 0x04, 0x08, 0x0B, + 0x03, 0x00, 0x00, 0x03, 0x00, 0x5D, 0x00, 0x40, 0x0A, 0x2D, + 0x03, 0x44, 0x01, 0x27, 0x01, 0x4A, 0x01, 0x75, 0x00, 0x00, + 0x01, 0x1E, 0x01, 0x27, 0x26, 0x16, 0x17, 0x26, 0x06, 0x23, + 0x2A, 0x01, 0x23, 0x22, 0x26, 0x37, 0x3E, 0x01, 0x27, 0x26, + 0x36, 0x37, 0x36, 0x26, 0x27, 0x26, 0x06, 0x07, 0x06, 0x16, + 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x22, + 0x06, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x07, 0x0E, + 0x01, 0x23, 0x22, 0x06, 0x23, 0x22, 0x26, 0x27, 0x2A, 0x01, + 0x07, 0x0E, 0x01, 0x27, 0x36, 0x26, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x26, 0x23, 0x2E, 0x01, 0x23, 0x22, 0x26, 0x07, 0x06, + 0x14, 0x15, 0x14, 0x06, 0x17, 0x1E, 0x01, 0x15, 0x1C, 0x01, + 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x07, 0x06, 0x16, 0x15, + 0x14, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x03, 0x37, 0x36, + 0x16, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x36, 0x26, 0x27, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x16, 0x17, 0x16, 0x36, 0x33, 0x3A, 0x01, + 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x06, 0x17, + 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x34, 0x37, 0x36, + 0x26, 0x37, 0x36, 0x16, 0x17, 0x16, 0x06, 0x37, 0x14, 0x32, + 0x37, 0x3E, 0x01, 0x35, 0x26, 0x36, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x03, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x17, 0x16, + 0x06, 0x33, 0x36, 0x16, 0x37, 0x36, 0x34, 0x35, 0x26, 0x36, + 0x35, 0x34, 0x36, 0x27, 0x2E, 0x01, 0x27, 0x34, 0x36, 0x27, + 0x36, 0x16, 0x33, 0x32, 0x16, 0x37, 0x36, 0x26, 0x35, 0x34, + 0x36, 0x27, 0x05, 0x0E, 0x03, 0x07, 0x3E, 0x01, 0x37, 0x36, + 0x26, 0x37, 0x06, 0x26, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x26, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x0E, 0x01, 0x07, + 0x3A, 0x01, 0x23, 0x05, 0x06, 0x26, 0x27, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x27, 0x2E, 0x01, 0x37, 0x36, 0x26, 0x37, 0x36, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x27, 0x2E, 0x01, 0x37, 0x36, 0x16, 0x33, 0x32, 0x36, 0x17, + 0x16, 0x06, 0x15, 0x14, 0x16, 0x07, 0x0A, 0x25, 0x01, 0x02, + 0x03, 0x03, 0x02, 0x01, 0x09, 0x2C, 0x0B, 0x0D, 0x1B, 0x0E, + 0x0B, 0x11, 0x01, 0x01, 0x01, 0x04, 0x02, 0x04, 0x01, 0x02, + 0x05, 0x04, 0x06, 0x3A, 0x0C, 0x0A, 0x06, 0x01, 0x04, 0x28, + 0x15, 0x1E, 0x3A, 0x1D, 0x3A, 0x74, 0x3A, 0x08, 0x20, 0x05, + 0x03, 0x08, 0x04, 0x05, 0x19, 0x07, 0x08, 0x12, 0x06, 0x0A, + 0x01, 0x13, 0x06, 0x0D, 0x08, 0x03, 0x07, 0x03, 0x03, 0x01, + 0x04, 0x0C, 0x23, 0x06, 0x02, 0x11, 0x05, 0x06, 0x11, 0x08, + 0x0C, 0x0C, 0x0A, 0x04, 0x0C, 0x03, 0x02, 0x0F, 0x03, 0x04, + 0x08, 0x05, 0x0D, 0x1A, 0x0C, 0x19, 0x32, 0x19, 0x33, 0x65, + 0x33, 0x17, 0x34, 0x17, 0x13, 0x1D, 0x0E, 0x0A, 0x15, 0x0F, + 0x12, 0x19, 0x10, 0x07, 0x10, 0x09, 0x0C, 0x17, 0x0C, 0x1B, + 0x36, 0x1B, 0x22, 0x44, 0x22, 0x0D, 0x1B, 0x0D, 0x06, 0x14, + 0x04, 0x09, 0x07, 0x08, 0x08, 0x0D, 0x08, 0x15, 0x35, 0x16, + 0x37, 0x6E, 0x37, 0x14, 0x29, 0x0A, 0x04, 0x02, 0x05, 0x07, + 0x05, 0x03, 0x05, 0x0E, 0x05, 0x09, 0x17, 0x0C, 0x88, 0x06, + 0x04, 0xB2, 0xDC, 0xC2, 0x14, 0x1E, 0x46, 0x1B, 0x1A, 0x0A, + 0x09, 0x0A, 0x10, 0x0F, 0x12, 0x11, 0x16, 0x15, 0x44, 0x21, + 0x0C, 0x1B, 0x07, 0x06, 0x01, 0x0D, 0x09, 0x06, 0x04, 0x06, + 0x0D, 0x05, 0x05, 0x0C, 0x06, 0x03, 0x09, 0x08, 0x0A, 0x0C, + 0x05, 0x09, 0x2B, 0x0B, 0x13, 0x24, 0x12, 0x10, 0x21, 0x0D, + 0x07, 0x11, 0x09, 0x07, 0x08, 0x01, 0x03, 0x1F, 0x07, 0x04, + 0x01, 0x03, 0x04, 0x03, 0x06, 0x08, 0x09, 0x07, 0x11, 0x01, + 0x01, 0x01, 0x11, 0x1E, 0x06, 0x06, 0x04, 0x01, 0x08, 0x0C, + 0x31, 0x62, 0x30, 0x32, 0x63, 0x64, 0x63, 0x32, 0x13, 0x28, + 0x14, 0x0D, 0x1C, 0x0E, 0x0F, 0x01, 0x11, 0x0E, 0x20, 0x0E, + 0x0C, 0x02, 0x01, 0x05, 0x03, 0x02, 0x05, 0x05, 0x06, 0x0F, + 0x12, 0x28, 0x12, 0x08, 0x2A, 0x05, 0x07, 0x03, 0x05, 0x08, + 0xF8, 0xF4, 0x11, 0xB9, 0xD7, 0xB9, 0x11, 0x02, 0x07, 0x01, + 0x02, 0x06, 0x02, 0x0E, 0x03, 0x01, 0x01, 0x02, 0x05, 0x0F, + 0x20, 0x41, 0x21, 0x3E, 0x7D, 0x7D, 0x7D, 0x3E, 0x04, 0x06, + 0x05, 0x01, 0x01, 0x02, 0x02, 0x98, 0x09, 0x41, 0x0F, 0x10, + 0x1F, 0x10, 0x0C, 0x1C, 0x04, 0x02, 0x02, 0x03, 0x04, 0x02, + 0x08, 0x09, 0x08, 0x02, 0x03, 0x08, 0x09, 0x07, 0x13, 0x0A, + 0x08, 0x11, 0x0B, 0x0A, 0x21, 0x1A, 0x0F, 0x1E, 0x0F, 0x06, + 0x2D, 0x04, 0x03, 0x03, 0x04, 0x04, 0x02, 0x82, 0x02, 0x02, + 0x04, 0x03, 0x02, 0x01, 0x09, 0x04, 0x01, 0x0E, 0x13, 0x28, + 0x12, 0x0A, 0x15, 0x0A, 0x0B, 0x13, 0x0A, 0x10, 0x09, 0x02, + 0x02, 0x2E, 0x07, 0x1C, 0x01, 0x03, 0x07, 0x05, 0x09, 0x05, + 0x05, 0x04, 0x01, 0x01, 0x07, 0x09, 0x1D, 0x0E, 0x04, 0x09, + 0x03, 0x01, 0x02, 0x02, 0x02, 0x06, 0x01, 0x04, 0x0A, 0x0C, + 0x06, 0x0B, 0x05, 0x06, 0x04, 0x01, 0x17, 0x08, 0x03, 0x08, + 0x05, 0x03, 0x01, 0x04, 0x03, 0x0E, 0x04, 0x04, 0x04, 0x23, + 0x0D, 0x0A, 0x18, 0x01, 0x01, 0x1B, 0x08, 0x05, 0x01, 0x02, + 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x09, 0x03, 0x04, 0x0D, + 0x04, 0x04, 0x0B, 0x03, 0x09, 0x04, 0x01, 0x01, 0x04, 0x17, + 0x0A, 0x19, 0x0B, 0x07, 0x20, 0x05, 0x06, 0x06, 0x0A, 0x0A, + 0x13, 0x0A, 0x0C, 0x19, 0x0C, 0x05, 0x1F, 0x03, 0x07, 0x40, + 0x0F, 0x11, 0x24, 0x0B, 0x06, 0x28, 0x03, 0x01, 0x39, 0x45, + 0x3D, 0x05, 0x08, 0x03, 0x12, 0x11, 0x3B, 0x17, 0x1B, 0x36, + 0x17, 0x1C, 0x46, 0x1C, 0x1D, 0x0D, 0x03, 0x0B, 0x08, 0x25, + 0x04, 0x0A, 0x20, 0x0D, 0x10, 0x20, 0x11, 0x12, 0x23, 0x11, + 0x0A, 0x16, 0x06, 0x06, 0x14, 0x05, 0x09, 0x04, 0x02, 0x02, + 0x01, 0x09, 0x05, 0x09, 0x01, 0x01, 0x17, 0x06, 0x0A, 0x06, + 0x08, 0x06, 0x0C, 0x06, 0x07, 0x0F, 0x07, 0x0A, 0x22, 0x08, + 0x05, 0x23, 0x04, 0x07, 0x33, 0x0A, 0x0B, 0x01, 0x01, 0x06, + 0x06, 0x0C, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0x02, 0x17, + 0x01, 0x05, 0x05, 0x04, 0x1D, 0x0B, 0x13, 0x27, 0x13, 0x08, + 0x13, 0x07, 0x04, 0x0E, 0x01, 0x09, 0x1C, 0x02, 0x05, 0x02, + 0x05, 0x07, 0x09, 0x1B, 0x0B, 0x0A, 0x20, 0x09, 0x9D, 0x05, + 0x3B, 0x45, 0x3D, 0x07, 0x03, 0x02, 0x04, 0x03, 0x05, 0x04, + 0x01, 0x21, 0x09, 0x14, 0x26, 0x14, 0x07, 0x40, 0x02, 0x07, + 0x01, 0x7A, 0x13, 0x04, 0x01, 0x03, 0x0E, 0x08, 0x16, 0x08, + 0x0A, 0x1A, 0x07, 0x08, 0x07, 0x09, 0x0D, 0x18, 0x09, 0x08, + 0x0C, 0x02, 0x02, 0x0D, 0x08, 0x07, 0x36, 0x02, 0x01, 0x01, + 0x04, 0x05, 0x06, 0x1B, 0x06, 0x09, 0x1B, 0x08, 0x00, 0x04, + 0x00, 0x61, 0x00, 0x26, 0x05, 0x9E, 0x03, 0x5A, 0x01, 0x02, + 0x01, 0x0B, 0x01, 0x18, 0x01, 0x2D, 0x00, 0x00, 0x01, 0x34, + 0x06, 0x23, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x36, 0x26, + 0x35, 0x34, 0x36, 0x23, 0x36, 0x26, 0x27, 0x26, 0x06, 0x27, + 0x2E, 0x01, 0x23, 0x26, 0x06, 0x23, 0x2A, 0x03, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x06, 0x07, 0x26, 0x06, 0x23, 0x22, 0x26, + 0x27, 0x26, 0x06, 0x07, 0x30, 0x07, 0x06, 0x23, 0x0E, 0x01, + 0x07, 0x06, 0x14, 0x17, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x23, + 0x26, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x15, 0x1C, + 0x01, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, 0x37, 0x06, 0x16, 0x17, + 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x36, 0x33, 0x32, 0x36, 0x37, 0x32, 0x16, + 0x37, 0x3E, 0x01, 0x17, 0x16, 0x06, 0x17, 0x16, 0x06, 0x15, + 0x14, 0x06, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x15, 0x14, + 0x16, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, + 0x15, 0x14, 0x16, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, + 0x32, 0x16, 0x33, 0x32, 0x36, 0x37, 0x36, 0x16, 0x27, 0x26, + 0x36, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x34, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, + 0x36, 0x26, 0x35, 0x34, 0x36, 0x35, 0x3C, 0x01, 0x33, 0x32, + 0x36, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, 0x35, 0x34, 0x36, + 0x27, 0x36, 0x32, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x15, + 0x1C, 0x01, 0x15, 0x14, 0x06, 0x07, 0x06, 0x16, 0x17, 0x1E, + 0x01, 0x37, 0x36, 0x26, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, + 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x35, + 0x34, 0x2F, 0x01, 0x3E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, + 0x16, 0x37, 0x36, 0x26, 0x35, 0x05, 0x3C, 0x01, 0x35, 0x3C, + 0x01, 0x35, 0x16, 0x14, 0x05, 0x2E, 0x01, 0x37, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x22, 0x26, 0x27, 0x37, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x35, + 0x36, 0x16, 0x33, 0x32, 0x36, 0x07, 0x16, 0x06, 0x05, 0x98, + 0x19, 0x07, 0x0D, 0x4F, 0x08, 0x03, 0x06, 0x03, 0x03, 0x08, + 0x01, 0x0C, 0x05, 0x0D, 0x09, 0x0E, 0x1F, 0x0B, 0x0B, 0x0C, + 0x0F, 0x0C, 0x1B, 0x0D, 0x48, 0x91, 0x90, 0x91, 0x48, 0x31, + 0x62, 0x31, 0x13, 0x16, 0x08, 0x05, 0x04, 0x05, 0x06, 0x05, + 0x06, 0x0C, 0x0D, 0x07, 0x03, 0x02, 0x01, 0x01, 0x05, 0x01, + 0x03, 0x05, 0x0E, 0x1A, 0x0D, 0x09, 0x03, 0x07, 0x05, 0x18, + 0x03, 0x04, 0x05, 0x01, 0x01, 0x01, 0x04, 0x1F, 0x19, 0x16, + 0x09, 0x05, 0x08, 0x05, 0x03, 0x0F, 0x08, 0x06, 0x01, 0x0A, + 0x04, 0x07, 0x13, 0x08, 0x12, 0x25, 0x12, 0x08, 0x24, 0x08, + 0x03, 0x04, 0x03, 0x05, 0x0E, 0x06, 0x10, 0x20, 0x10, 0x06, + 0x0A, 0x04, 0x04, 0x02, 0x04, 0x02, 0x01, 0x02, 0x07, 0x0D, + 0x0E, 0x01, 0x01, 0x01, 0x02, 0x02, 0x08, 0x0C, 0x04, 0x09, + 0x04, 0x01, 0x05, 0x07, 0x0A, 0x06, 0x06, 0x13, 0x0F, 0x09, + 0x13, 0x0A, 0x0B, 0x12, 0x09, 0x09, 0x33, 0x06, 0x03, 0x04, + 0x04, 0x01, 0x04, 0x02, 0x01, 0x01, 0x01, 0x03, 0x02, 0x03, + 0x04, 0x02, 0x03, 0x04, 0x02, 0x04, 0x0F, 0x07, 0x07, 0x0C, + 0x02, 0x09, 0x17, 0x2F, 0x17, 0x1A, 0x30, 0x14, 0x04, 0x04, + 0x03, 0x08, 0x04, 0x24, 0x48, 0x24, 0x10, 0x0D, 0x01, 0x02, + 0x03, 0x06, 0x26, 0x0D, 0x3C, 0x06, 0x04, 0x04, 0x0A, 0x07, + 0x0B, 0x12, 0x09, 0x02, 0x11, 0x04, 0x09, 0x0A, 0x02, 0x02, + 0x02, 0x14, 0x01, 0x11, 0x20, 0x10, 0x09, 0x1B, 0x05, 0x06, + 0x06, 0xFA, 0xD9, 0x03, 0x02, 0x64, 0x01, 0x01, 0x01, 0x02, + 0x04, 0x02, 0x03, 0x06, 0x05, 0x0F, 0x02, 0x04, 0x7C, 0x03, + 0x03, 0x03, 0x05, 0x12, 0x0A, 0x0C, 0x02, 0x06, 0x03, 0x16, + 0x01, 0x32, 0x09, 0x07, 0x1F, 0x04, 0x02, 0x07, 0x02, 0xC3, + 0x0B, 0x02, 0x06, 0x0B, 0x01, 0x04, 0x01, 0x08, 0x10, 0x08, + 0x06, 0x0D, 0x0C, 0x1A, 0x05, 0x07, 0x05, 0x08, 0x09, 0x11, + 0x01, 0x02, 0x11, 0x10, 0x04, 0x05, 0x02, 0x03, 0x06, 0x07, + 0x08, 0x04, 0x05, 0x03, 0x05, 0x03, 0x06, 0x0D, 0x06, 0x07, + 0x01, 0x08, 0x07, 0x08, 0x07, 0x07, 0x06, 0x0C, 0x06, 0x3B, + 0x77, 0x3B, 0x18, 0x1D, 0x16, 0x14, 0x0B, 0x16, 0x0A, 0x08, + 0x1C, 0x08, 0x08, 0x2B, 0x04, 0x05, 0x13, 0x02, 0x04, 0x02, + 0x04, 0x04, 0x02, 0x09, 0x02, 0x02, 0x05, 0x01, 0x01, 0x03, + 0x02, 0x02, 0x0A, 0x04, 0x03, 0x0A, 0x01, 0x03, 0x2F, 0x05, + 0x0C, 0x1C, 0x0D, 0x0F, 0x1D, 0x10, 0x0E, 0x1F, 0x0E, 0x06, + 0x15, 0x02, 0x03, 0x05, 0x0D, 0x20, 0x38, 0x1E, 0x07, 0x10, + 0x07, 0x08, 0x0D, 0x07, 0x0D, 0x24, 0x0A, 0x0D, 0x02, 0x06, + 0x03, 0x02, 0x01, 0x02, 0x0D, 0x06, 0x11, 0x07, 0x02, 0x01, + 0x03, 0x01, 0x04, 0x02, 0x03, 0x06, 0x04, 0x06, 0x0F, 0x07, + 0x0F, 0x1C, 0x0F, 0x18, 0x42, 0x18, 0x1C, 0x3B, 0x1E, 0x10, + 0x1D, 0x0F, 0x06, 0x15, 0x02, 0x01, 0x02, 0x07, 0x20, 0x09, + 0x0C, 0x06, 0x07, 0x0F, 0x08, 0x01, 0x01, 0x10, 0x0F, 0x1D, + 0x0F, 0x1E, 0x3B, 0x1E, 0x20, 0x47, 0x0C, 0x05, 0x15, 0x12, + 0x0C, 0x23, 0x0C, 0x3C, 0x76, 0x3B, 0x0B, 0x09, 0x04, 0x07, + 0x10, 0x12, 0x04, 0x14, 0x02, 0x07, 0x0E, 0x09, 0x02, 0x07, + 0x07, 0x04, 0x05, 0x02, 0x09, 0x09, 0x2A, 0x0A, 0x2B, 0x09, + 0x13, 0x09, 0x03, 0x08, 0x03, 0x0A, 0x1F, 0x67, 0x04, 0x09, + 0x04, 0x04, 0x07, 0x04, 0x03, 0x09, 0x02, 0x02, 0x0A, 0x11, + 0x04, 0x0C, 0x04, 0x08, 0x01, 0x08, 0x06, 0x03, 0x21, 0x03, + 0x08, 0x03, 0x03, 0x0D, 0x06, 0x08, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x4F, 0x00, 0x3E, 0x07, 0xD5, 0x03, 0x43, 0x01, 0x08, + 0x01, 0x15, 0x01, 0x28, 0x01, 0x2B, 0x00, 0x00, 0x01, 0x3E, + 0x01, 0x27, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, + 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x33, + 0x32, 0x16, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x15, 0x16, + 0x06, 0x27, 0x2A, 0x01, 0x23, 0x1E, 0x01, 0x17, 0x16, 0x06, + 0x17, 0x14, 0x06, 0x23, 0x2A, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x06, 0x15, 0x14, 0x06, 0x15, 0x14, 0x16, 0x15, 0x14, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x34, 0x35, 0x34, 0x26, 0x27, 0x2E, + 0x01, 0x35, 0x2E, 0x01, 0x35, 0x34, 0x26, 0x35, 0x34, 0x26, + 0x27, 0x2E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x26, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x0E, + 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, 0x16, + 0x07, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x30, 0x37, 0x34, + 0x27, 0x34, 0x36, 0x27, 0x26, 0x06, 0x23, 0x06, 0x26, 0x27, + 0x26, 0x36, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, + 0x27, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x23, 0x06, 0x26, 0x07, + 0x06, 0x26, 0x35, 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, + 0x06, 0x27, 0x26, 0x06, 0x27, 0x22, 0x26, 0x33, 0x26, 0x06, + 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x16, 0x15, + 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x22, 0x07, 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x3C, 0x01, + 0x35, 0x34, 0x16, 0x33, 0x1E, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x37, 0x3A, 0x01, 0x37, 0x32, 0x36, 0x35, 0x3C, + 0x01, 0x35, 0x34, 0x26, 0x37, 0x36, 0x16, 0x35, 0x34, 0x36, + 0x37, 0x01, 0x2E, 0x01, 0x27, 0x0E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x2E, 0x01, 0x27, 0x37, 0x2E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x01, 0x26, 0x16, 0x03, 0x94, 0x02, 0x02, + 0x01, 0x18, 0x15, 0x15, 0x2D, 0x5B, 0x2D, 0x45, 0x8B, 0x8B, + 0x8B, 0x46, 0x0B, 0x44, 0x07, 0x09, 0x09, 0x08, 0x09, 0x32, + 0x0F, 0x14, 0x2C, 0x13, 0x0B, 0x03, 0x01, 0x01, 0x02, 0x11, + 0x18, 0x30, 0x18, 0x0B, 0x15, 0x0B, 0x02, 0x01, 0x01, 0x03, + 0x11, 0x0F, 0x0A, 0x08, 0x08, 0x10, 0x09, 0x03, 0x32, 0x02, + 0x07, 0x0E, 0x05, 0x05, 0x09, 0x03, 0x05, 0x16, 0x19, 0x0D, + 0x23, 0x0F, 0x09, 0x15, 0x09, 0x07, 0x19, 0x05, 0x0F, 0x08, + 0x05, 0x03, 0x09, 0x03, 0x01, 0x06, 0x02, 0x02, 0x03, 0x02, + 0x03, 0x04, 0x02, 0x01, 0x01, 0x02, 0x0E, 0x15, 0x1C, 0x1B, + 0x16, 0x09, 0x0E, 0x0A, 0x0D, 0x17, 0x0F, 0x22, 0x3C, 0x19, + 0x20, 0x0D, 0x03, 0x05, 0x04, 0x03, 0x01, 0x05, 0x3F, 0x0D, + 0x1C, 0x38, 0x1C, 0x01, 0x01, 0x01, 0x01, 0x02, 0x10, 0x04, + 0x0E, 0x14, 0x05, 0x04, 0x01, 0x03, 0x09, 0x01, 0x07, 0x02, + 0x01, 0x01, 0x01, 0x04, 0x0B, 0x03, 0x07, 0x0E, 0x01, 0x01, + 0x04, 0x04, 0x03, 0x0E, 0x06, 0x33, 0x66, 0x33, 0x17, 0x3E, + 0x13, 0x0A, 0x13, 0x16, 0x06, 0x01, 0x06, 0x02, 0x01, 0x04, + 0x01, 0x03, 0x09, 0x03, 0x3E, 0x7B, 0x3D, 0x3C, 0x77, 0x3B, + 0x10, 0x04, 0x07, 0x02, 0x03, 0x06, 0x02, 0x01, 0x06, 0x02, + 0x04, 0x14, 0x0F, 0x0D, 0x01, 0x1F, 0x47, 0x22, 0x48, 0x90, + 0x48, 0x29, 0x55, 0x2A, 0x0D, 0x1B, 0x0D, 0x07, 0x01, 0x06, + 0x06, 0x09, 0x97, 0x06, 0x04, 0x01, 0xD6, 0x0D, 0x10, 0x02, + 0x05, 0x1D, 0x06, 0x0E, 0x24, 0x14, 0x03, 0x05, 0x03, 0x7A, + 0x11, 0x2D, 0x18, 0x13, 0x0C, 0x01, 0x08, 0x07, 0x05, 0x07, + 0x09, 0x0A, 0x11, 0x08, 0x10, 0x14, 0x0B, 0xFE, 0x1C, 0x01, + 0x02, 0x03, 0x35, 0x02, 0x04, 0x05, 0x03, 0x25, 0x06, 0x0D, + 0x11, 0x29, 0x12, 0x13, 0x0A, 0x04, 0x02, 0x01, 0x07, 0x0B, + 0x0F, 0x36, 0x0F, 0x0B, 0x07, 0x01, 0x19, 0x30, 0x18, 0x03, + 0x0A, 0x03, 0x11, 0x08, 0x0E, 0x0F, 0x1E, 0x0F, 0x06, 0x03, + 0x0B, 0x11, 0x22, 0x11, 0x12, 0x21, 0x11, 0x10, 0x23, 0x0F, + 0x0F, 0x20, 0x10, 0x15, 0x63, 0x0D, 0x08, 0x05, 0x02, 0x01, + 0x01, 0x01, 0x01, 0x07, 0x02, 0x06, 0x0A, 0x0D, 0x09, 0x11, + 0x09, 0x03, 0x08, 0x04, 0x06, 0x05, 0x05, 0x07, 0x14, 0x07, + 0x10, 0x20, 0x11, 0x07, 0x11, 0x08, 0x08, 0x10, 0x08, 0x12, + 0x21, 0x12, 0x13, 0x25, 0x04, 0x06, 0x30, 0x0A, 0x05, 0x0E, + 0x05, 0x07, 0x0B, 0x02, 0x04, 0x01, 0x18, 0x3B, 0x84, 0x46, + 0x09, 0x11, 0x09, 0x04, 0x09, 0x0E, 0x03, 0x0A, 0x04, 0x06, + 0x07, 0x01, 0x01, 0x06, 0x02, 0x02, 0x01, 0x01, 0x01, 0x0F, + 0x0F, 0x25, 0x10, 0x21, 0x43, 0x1E, 0x04, 0x09, 0x04, 0x04, + 0x08, 0x04, 0x09, 0x10, 0x08, 0x11, 0x21, 0x12, 0x0A, 0x0E, + 0x09, 0x05, 0x1A, 0x01, 0x01, 0x06, 0x0A, 0x05, 0x12, 0x08, + 0x11, 0x20, 0x10, 0x03, 0x08, 0x04, 0x08, 0x06, 0x06, 0x01, + 0x01, 0x04, 0x07, 0x01, 0x01, 0x1C, 0x0A, 0x15, 0x2E, 0x16, + 0x20, 0x3F, 0x1F, 0x07, 0x0E, 0x06, 0x10, 0x02, 0x36, 0x6C, + 0x36, 0x1F, 0x3E, 0x1F, 0x06, 0x0C, 0x06, 0x05, 0x07, 0x05, + 0x01, 0x01, 0x01, 0x03, 0x07, 0x08, 0x11, 0x09, 0x0D, 0x2C, + 0x0B, 0x15, 0x10, 0x08, 0x0A, 0x03, 0x08, 0xFE, 0x7A, 0x0D, + 0x21, 0x12, 0x04, 0x1F, 0x05, 0x0E, 0x12, 0x02, 0x03, 0x05, + 0x02, 0x35, 0x11, 0x17, 0x04, 0x03, 0x04, 0x14, 0x0E, 0x1D, + 0x0D, 0x07, 0x09, 0x02, 0x01, 0x07, 0x04, 0x0A, 0x19, 0x0E, + 0xFE, 0x92, 0x05, 0x06, 0x00, 0x05, 0x00, 0x62, 0x00, 0x3F, + 0x07, 0xDF, 0x03, 0x48, 0x00, 0x1E, 0x00, 0x3C, 0x00, 0x5A, + 0x00, 0x73, 0x01, 0x5E, 0x00, 0x00, 0x01, 0x06, 0x16, 0x17, + 0x1C, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x15, 0x14, + 0x06, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x05, 0x34, 0x26, + 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x14, + 0x16, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x01, 0x36, 0x26, + 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x27, + 0x1C, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x2A, 0x01, + 0x15, 0x14, 0x06, 0x17, 0x32, 0x16, 0x07, 0x0E, 0x01, 0x15, + 0x1E, 0x01, 0x17, 0x16, 0x32, 0x35, 0x3C, 0x01, 0x35, 0x34, + 0x36, 0x27, 0x05, 0x1E, 0x01, 0x07, 0x06, 0x26, 0x23, 0x2A, + 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x23, 0x22, 0x06, + 0x07, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x1C, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x06, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x06, 0x07, 0x22, 0x06, 0x15, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x22, 0x06, 0x07, + 0x22, 0x06, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x27, 0x26, 0x06, 0x27, 0x22, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x36, 0x35, 0x3C, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x26, + 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x03, 0x23, + 0x22, 0x36, 0x35, 0x3C, 0x01, 0x27, 0x34, 0x26, 0x27, 0x26, + 0x36, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x32, 0x16, + 0x37, 0x3E, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x32, 0x26, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x34, 0x37, 0x3E, + 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x16, 0x07, 0x0E, 0x01, + 0x15, 0x14, 0x06, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x35, 0x34, + 0x06, 0x27, 0x26, 0x36, 0x35, 0x34, 0x36, 0x37, 0x32, 0x36, + 0x17, 0x16, 0x14, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, + 0x32, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x1C, + 0x01, 0x15, 0x14, 0x06, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, + 0x33, 0x05, 0x5E, 0x08, 0x01, 0x01, 0x01, 0x07, 0x0F, 0x07, + 0x02, 0x0E, 0x01, 0x03, 0x13, 0x1A, 0x17, 0x1A, 0x12, 0x0D, + 0x09, 0x1D, 0x0B, 0x07, 0x08, 0x0E, 0x10, 0x23, 0x0C, 0xFE, + 0xF4, 0x0D, 0x11, 0x16, 0x2B, 0x16, 0x0B, 0x15, 0x0B, 0x03, + 0x0B, 0x04, 0x06, 0x0E, 0x04, 0x06, 0x0F, 0x04, 0x06, 0x04, + 0x01, 0x0C, 0x10, 0x18, 0x28, 0x19, 0x1B, 0x54, 0x02, 0x26, + 0x06, 0x17, 0x04, 0x0C, 0x19, 0x0D, 0x1A, 0x35, 0x1B, 0x27, + 0x4F, 0x27, 0x01, 0x06, 0x0E, 0x06, 0x1E, 0x3C, 0x1E, 0x20, + 0x42, 0x21, 0x0A, 0x15, 0x0B, 0x09, 0x01, 0x2C, 0x0A, 0x08, + 0x01, 0x06, 0x05, 0x0A, 0x02, 0x03, 0x08, 0x01, 0x02, 0x01, + 0x01, 0x0D, 0x05, 0x0C, 0x01, 0x2C, 0x0D, 0x06, 0x16, 0x0D, + 0x1F, 0x0E, 0x15, 0x2A, 0x16, 0x05, 0x0A, 0x05, 0x03, 0x02, + 0x02, 0x02, 0x08, 0x01, 0x07, 0x10, 0x03, 0x03, 0x04, 0x02, + 0x02, 0x04, 0x02, 0x03, 0x03, 0x0D, 0x09, 0x11, 0x2E, 0x05, + 0x03, 0x01, 0x05, 0x02, 0x3C, 0x08, 0x06, 0x0E, 0x01, 0x03, + 0x01, 0x03, 0x1F, 0x1C, 0x19, 0x40, 0x20, 0x0D, 0x1A, 0x0E, + 0x06, 0x10, 0x07, 0x0A, 0x10, 0x01, 0x01, 0x05, 0x02, 0x03, + 0x06, 0x03, 0x01, 0x05, 0x02, 0x07, 0x32, 0x10, 0x0B, 0x0A, + 0x06, 0x05, 0x11, 0x07, 0x2F, 0x72, 0x3D, 0x25, 0x4C, 0x25, + 0x0C, 0x18, 0x0C, 0x0B, 0x01, 0x07, 0x0A, 0x14, 0x0A, 0x18, + 0x31, 0x18, 0x04, 0x09, 0x04, 0x03, 0x21, 0x01, 0x05, 0x11, + 0x0C, 0x0F, 0x1D, 0x0F, 0x2F, 0x5E, 0x5E, 0x5E, 0x2F, 0x20, + 0x01, 0x01, 0x02, 0x02, 0x01, 0x0E, 0x0C, 0x0F, 0x1F, 0x0F, + 0x34, 0x69, 0x68, 0x68, 0x34, 0x17, 0x31, 0x17, 0x1D, 0x37, + 0x1E, 0x2D, 0x5A, 0x5A, 0x5A, 0x2D, 0x05, 0x03, 0x03, 0x08, + 0x0F, 0x07, 0x04, 0x0A, 0x0B, 0x0C, 0x03, 0x04, 0x20, 0x09, + 0x04, 0x01, 0x01, 0x01, 0x01, 0x05, 0x02, 0x04, 0x0F, 0x1E, + 0x10, 0x35, 0x6A, 0x35, 0x0D, 0x1A, 0x0D, 0x05, 0x12, 0x05, + 0x0B, 0x0E, 0x05, 0x02, 0x01, 0x01, 0x0A, 0x09, 0x06, 0x18, + 0x01, 0x01, 0x01, 0x03, 0x03, 0x08, 0x0B, 0x08, 0x09, 0x06, + 0x09, 0x12, 0x08, 0x0D, 0x1B, 0x02, 0x05, 0x0C, 0x19, 0x0C, + 0x1B, 0x34, 0x1B, 0x01, 0x60, 0x0C, 0x24, 0x0F, 0x01, 0x0E, + 0x01, 0x02, 0x03, 0x12, 0x01, 0x06, 0x15, 0x08, 0x0A, 0x2C, + 0x19, 0x10, 0x12, 0x0E, 0x0A, 0x07, 0x02, 0x02, 0x06, 0x0E, + 0x23, 0x0E, 0x2A, 0x02, 0x02, 0x02, 0x11, 0x04, 0x06, 0x0C, + 0x06, 0x08, 0x18, 0x08, 0x13, 0x20, 0x0B, 0x12, 0x0B, 0x0A, + 0x0A, 0x2E, 0x01, 0x40, 0x09, 0x05, 0x06, 0x02, 0x03, 0x1F, + 0x04, 0x1B, 0x0B, 0x05, 0x06, 0x01, 0x07, 0x07, 0x07, 0x0C, + 0x07, 0x0C, 0x17, 0x0B, 0x05, 0x03, 0x0B, 0x15, 0x0A, 0x0B, + 0x33, 0x07, 0x79, 0x0B, 0x47, 0x05, 0x03, 0x02, 0x07, 0x06, + 0x02, 0x08, 0x13, 0x0B, 0x08, 0x16, 0x08, 0x13, 0x26, 0x13, + 0x08, 0x15, 0x08, 0x09, 0x02, 0x04, 0x16, 0x12, 0x25, 0x12, + 0x0B, 0x02, 0x01, 0x17, 0x05, 0x0C, 0x18, 0x0C, 0x23, 0x41, + 0x16, 0x14, 0x15, 0x02, 0x02, 0x01, 0x02, 0x01, 0x03, 0x03, + 0x0C, 0x08, 0x10, 0x07, 0x0D, 0x19, 0x0D, 0x06, 0x0F, 0x06, + 0x11, 0x03, 0x01, 0x05, 0x0A, 0x06, 0x0D, 0x05, 0x24, 0x42, + 0x02, 0x02, 0x03, 0x03, 0x02, 0x02, 0x01, 0x01, 0x0E, 0x0B, + 0x08, 0x05, 0x02, 0x04, 0x08, 0x03, 0x09, 0x13, 0x09, 0x01, + 0x05, 0x03, 0x02, 0x09, 0x15, 0x59, 0x14, 0x26, 0x4B, 0x25, + 0x2A, 0x53, 0x29, 0x12, 0x06, 0x03, 0x04, 0x05, 0x04, 0x2E, + 0x06, 0x13, 0x26, 0x13, 0x0B, 0x0F, 0x05, 0x05, 0x1B, 0x0B, + 0x0E, 0x15, 0x14, 0x08, 0x14, 0x09, 0x04, 0x09, 0x04, 0x02, + 0x04, 0x04, 0x04, 0x15, 0x0E, 0x03, 0x06, 0x06, 0x0D, 0x0A, + 0x05, 0x04, 0x03, 0x0C, 0x04, 0x07, 0x10, 0x01, 0x04, 0x0A, + 0x0A, 0x14, 0x0A, 0x0A, 0x0F, 0x0A, 0x0C, 0x06, 0x01, 0x06, + 0x09, 0x13, 0x0A, 0x0D, 0x1C, 0x14, 0x18, 0x31, 0x18, 0x04, + 0x12, 0x00, 0x00, 0x03, 0x00, 0x5D, 0x00, 0x25, 0x0B, 0x9F, + 0x03, 0x5A, 0x01, 0x39, 0x01, 0x49, 0x01, 0x55, 0x00, 0x00, + 0x01, 0x32, 0x06, 0x15, 0x14, 0x26, 0x23, 0x2A, 0x01, 0x23, + 0x2A, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x06, 0x23, 0x2A, + 0x01, 0x23, 0x06, 0x22, 0x23, 0x22, 0x16, 0x07, 0x0E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x06, 0x07, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x14, 0x22, 0x23, 0x22, 0x06, + 0x07, 0x2A, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, + 0x2E, 0x01, 0x35, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x14, + 0x06, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x15, 0x14, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x26, 0x27, 0x26, 0x34, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, + 0x03, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, 0x32, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x17, 0x32, 0x16, 0x17, 0x16, 0x36, 0x37, 0x36, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x14, 0x36, 0x37, 0x36, 0x16, + 0x17, 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x2E, 0x01, 0x27, 0x3A, 0x01, 0x33, 0x32, 0x06, 0x17, 0x16, + 0x36, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x3A, 0x01, + 0x33, 0x26, 0x34, 0x35, 0x34, 0x26, 0x37, 0x3E, 0x01, 0x33, + 0x3E, 0x01, 0x37, 0x32, 0x06, 0x15, 0x1C, 0x01, 0x15, 0x1C, + 0x01, 0x15, 0x14, 0x06, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x36, 0x37, 0x36, 0x32, 0x37, 0x3E, 0x01, 0x17, + 0x05, 0x22, 0x06, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x16, 0x37, + 0x36, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x25, 0x1E, 0x01, 0x17, + 0x3E, 0x01, 0x37, 0x2A, 0x01, 0x23, 0x1E, 0x01, 0x0B, 0x8F, + 0x10, 0x04, 0x08, 0x06, 0x0D, 0x1C, 0x0E, 0x24, 0x49, 0x25, + 0x2A, 0x55, 0x2A, 0x12, 0x23, 0x11, 0x0D, 0x18, 0x0C, 0x06, + 0x0B, 0x06, 0x09, 0x02, 0x03, 0x06, 0x29, 0x10, 0x0B, 0x14, + 0x09, 0x03, 0x16, 0x04, 0x0B, 0x13, 0x0B, 0x28, 0x52, 0x28, + 0x0B, 0x02, 0x02, 0x01, 0x06, 0x05, 0x08, 0x02, 0x01, 0x01, + 0x02, 0x01, 0x1A, 0x02, 0x2D, 0x59, 0x2C, 0x29, 0x55, 0x28, + 0x0A, 0x15, 0x0A, 0x07, 0x1D, 0x07, 0x0D, 0x01, 0x1C, 0x37, + 0x1B, 0x06, 0x0E, 0x07, 0x04, 0x01, 0x04, 0x06, 0x02, 0x02, + 0x08, 0x05, 0x0D, 0x21, 0x13, 0x0A, 0x13, 0x0E, 0x28, 0x50, + 0x26, 0x04, 0x0E, 0x06, 0x05, 0x08, 0x03, 0x08, 0x0E, 0x05, + 0x06, 0x0D, 0x06, 0x16, 0x22, 0x12, 0x08, 0x11, 0x07, 0x05, + 0x07, 0x05, 0x0A, 0x20, 0x0C, 0x16, 0x26, 0x14, 0x06, 0x0A, + 0x05, 0x04, 0x0B, 0x05, 0x07, 0x07, 0x03, 0x04, 0x08, 0x04, + 0x05, 0x09, 0x01, 0x02, 0x04, 0x03, 0x09, 0x0E, 0x1A, 0x0C, + 0x14, 0x27, 0x13, 0x09, 0x0A, 0x03, 0x10, 0x1F, 0x0D, 0x05, + 0x0E, 0x0C, 0x06, 0x0C, 0x06, 0x03, 0x1B, 0x05, 0x27, 0x4D, + 0x26, 0x2B, 0x57, 0x2B, 0x42, 0x73, 0x31, 0x1A, 0x35, 0x17, + 0x06, 0x0B, 0x07, 0x10, 0x0B, 0x03, 0x05, 0x01, 0x02, 0x03, + 0x02, 0x02, 0x04, 0x03, 0x04, 0x09, 0x2D, 0x1B, 0x37, 0x1B, + 0x35, 0x6B, 0x6A, 0x6B, 0x35, 0x0B, 0x18, 0x0B, 0x05, 0x08, + 0x04, 0x0C, 0x08, 0x0D, 0x14, 0x27, 0x14, 0x0B, 0x0F, 0x09, + 0x0B, 0x06, 0x01, 0x03, 0x06, 0x1F, 0x0A, 0x0C, 0x08, 0x0A, + 0x0D, 0x0E, 0x0C, 0x09, 0x06, 0x05, 0x04, 0x02, 0x47, 0x07, + 0x11, 0x24, 0x11, 0x0D, 0x1A, 0x0D, 0x36, 0x6D, 0x36, 0x0A, + 0x12, 0x0A, 0x01, 0x03, 0x03, 0x0A, 0x16, 0x0B, 0x10, 0x0C, + 0x0A, 0x05, 0x0E, 0x05, 0x27, 0x4E, 0x27, 0x38, 0x70, 0x70, + 0x70, 0x38, 0x1D, 0x3A, 0x1D, 0x01, 0x06, 0x03, 0x02, 0x0B, + 0x06, 0x0B, 0x17, 0x0C, 0x09, 0x02, 0x0A, 0x1E, 0x04, 0x0E, + 0x25, 0x12, 0x4F, 0x9C, 0x4E, 0x17, 0x2F, 0x17, 0x0F, 0x48, + 0x0A, 0xF8, 0xB8, 0x17, 0x07, 0x0B, 0x09, 0x14, 0x0C, 0x0A, + 0x49, 0x05, 0x06, 0x04, 0x1D, 0x15, 0x29, 0x15, 0xFC, 0x5D, + 0x05, 0x07, 0x06, 0x3A, 0x7E, 0x40, 0x45, 0x87, 0x44, 0x01, + 0x03, 0x02, 0xD5, 0x49, 0x0B, 0x07, 0x01, 0x01, 0x01, 0x02, + 0x01, 0x01, 0x06, 0x08, 0x0F, 0x1A, 0x07, 0x05, 0x13, 0x08, + 0x03, 0x04, 0x02, 0x03, 0x05, 0x01, 0x04, 0x04, 0x02, 0x0B, + 0x0A, 0x04, 0x04, 0x01, 0x03, 0x09, 0x09, 0x13, 0x0A, 0x01, + 0x01, 0x01, 0x05, 0x02, 0x02, 0x01, 0x01, 0x09, 0x02, 0x03, + 0x42, 0x0B, 0x06, 0x09, 0x06, 0x01, 0x01, 0x01, 0x15, 0x02, + 0x0D, 0x25, 0x0D, 0x14, 0x26, 0x13, 0x33, 0x62, 0x31, 0x19, + 0x35, 0x17, 0x0E, 0x29, 0x14, 0x02, 0x08, 0x02, 0x06, 0x0E, + 0x07, 0x10, 0x21, 0x10, 0x14, 0x27, 0x14, 0x43, 0x89, 0x44, + 0x04, 0x07, 0x04, 0x03, 0x07, 0x02, 0x06, 0x03, 0x01, 0x02, + 0x0A, 0x0A, 0x03, 0x07, 0x04, 0x04, 0x04, 0x03, 0x03, 0x18, + 0x07, 0x0B, 0x16, 0x0B, 0x10, 0x20, 0x11, 0x15, 0x2B, 0x16, + 0x07, 0x0D, 0x02, 0x04, 0x0C, 0x06, 0x09, 0x15, 0x09, 0x04, + 0x12, 0x06, 0x26, 0x4E, 0x27, 0x0E, 0x26, 0x0D, 0x07, 0x0D, + 0x07, 0x04, 0x01, 0x01, 0x02, 0x02, 0x02, 0x04, 0x02, 0x02, + 0x49, 0x28, 0x14, 0x2C, 0x17, 0x06, 0x11, 0x04, 0x08, 0x1A, + 0x0C, 0x12, 0x25, 0x11, 0x14, 0x27, 0x14, 0x14, 0x27, 0x14, + 0x1C, 0x4D, 0x01, 0x01, 0x1C, 0x03, 0x05, 0x05, 0x07, 0x04, + 0x08, 0x08, 0x09, 0x13, 0x0D, 0x17, 0x2A, 0x01, 0x0D, 0x08, + 0x09, 0x02, 0x01, 0x02, 0x05, 0x0A, 0x08, 0x14, 0x09, 0x03, + 0x06, 0x01, 0x01, 0x08, 0x02, 0x01, 0x01, 0x08, 0x0F, 0x07, + 0x0C, 0x05, 0x02, 0x01, 0x05, 0x09, 0x05, 0x05, 0x0F, 0x05, + 0x05, 0x1A, 0x01, 0x02, 0x02, 0x0E, 0x08, 0x0D, 0x1A, 0x0D, + 0x04, 0x07, 0x03, 0x01, 0x03, 0x03, 0x04, 0x13, 0x02, 0x0B, + 0x07, 0x01, 0x04, 0x02, 0x01, 0x01, 0x03, 0x03, 0x0F, 0x0F, + 0xA2, 0x30, 0x0E, 0x08, 0x01, 0x04, 0x0E, 0x14, 0x29, 0x02, + 0x24, 0x49, 0x24, 0x33, 0x5E, 0x2E, 0x0B, 0x17, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x5A, 0x00, 0x40, 0x08, 0xA7, 0x03, 0x41, + 0x00, 0xC4, 0x00, 0xDB, 0x00, 0x00, 0x01, 0x17, 0x16, 0x06, + 0x17, 0x22, 0x06, 0x23, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x07, 0x27, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, + 0x14, 0x16, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x07, + 0x06, 0x14, 0x15, 0x0E, 0x01, 0x07, 0x1E, 0x01, 0x1F, 0x01, + 0x23, 0x0E, 0x01, 0x15, 0x17, 0x22, 0x26, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x34, 0x26, 0x27, 0x26, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x23, 0x14, 0x16, 0x15, 0x1E, 0x01, + 0x07, 0x0E, 0x01, 0x23, 0x2E, 0x03, 0x27, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x23, 0x0E, 0x01, 0x07, 0x2E, 0x01, 0x2F, 0x01, + 0x0E, 0x01, 0x07, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x35, 0x33, + 0x15, 0x1E, 0x01, 0x17, 0x3E, 0x01, 0x37, 0x32, 0x1E, 0x02, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x35, 0x3E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x03, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x33, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x15, 0x3A, 0x01, 0x33, + 0x32, 0x16, 0x37, 0x3E, 0x01, 0x1F, 0x01, 0x15, 0x25, 0x21, + 0x22, 0x06, 0x1D, 0x01, 0x14, 0x16, 0x33, 0x3A, 0x03, 0x33, + 0x32, 0x16, 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x08, + 0x9F, 0x06, 0x02, 0x09, 0x01, 0x18, 0x30, 0x18, 0x14, 0x26, + 0x14, 0x22, 0x43, 0x22, 0x18, 0x29, 0x17, 0x0A, 0x05, 0x04, + 0x0C, 0x0D, 0x14, 0x22, 0x15, 0x29, 0x51, 0x29, 0x29, 0x52, + 0x29, 0x14, 0x26, 0x14, 0x01, 0x0D, 0x12, 0x36, 0x15, 0x12, + 0x25, 0x11, 0x14, 0x0D, 0x0A, 0x0B, 0x05, 0x01, 0x01, 0x01, + 0x06, 0x06, 0x0D, 0x0A, 0x04, 0x11, 0x25, 0x11, 0x08, 0x0F, + 0x07, 0x04, 0x07, 0x03, 0x09, 0x07, 0x07, 0x03, 0x09, 0x11, + 0x0B, 0x25, 0x02, 0x09, 0x09, 0x18, 0x28, 0x17, 0x18, 0x26, + 0x0E, 0x0B, 0x12, 0x1B, 0x04, 0x02, 0x06, 0x01, 0x27, 0x58, + 0x30, 0x02, 0x05, 0x04, 0x03, 0x01, 0x1E, 0x3C, 0x1E, 0x01, + 0x03, 0x09, 0x0D, 0x1D, 0x0C, 0x04, 0x07, 0x04, 0x02, 0x32, + 0x6A, 0x38, 0x01, 0x04, 0x02, 0x0F, 0x15, 0x05, 0x02, 0x03, + 0x14, 0x09, 0x12, 0x08, 0x05, 0x0C, 0x05, 0xD0, 0x09, 0x14, + 0x0B, 0x14, 0x20, 0x11, 0x29, 0x50, 0x50, 0x51, 0x28, 0x04, + 0x07, 0x03, 0x02, 0x09, 0x13, 0x48, 0x1A, 0x22, 0x44, 0x22, + 0x2E, 0x5A, 0x5A, 0x5B, 0x2D, 0x2B, 0x55, 0x2B, 0x2A, 0x55, + 0x2B, 0x04, 0x08, 0x04, 0x14, 0x03, 0x02, 0x01, 0x08, 0x02, + 0x0F, 0x1D, 0x0E, 0x01, 0x01, 0x16, 0x2B, 0x16, 0x13, 0x2A, + 0x13, 0x27, 0x50, 0x28, 0x08, 0xFD, 0xEE, 0xFD, 0x3F, 0x13, + 0x12, 0x13, 0x12, 0x51, 0xA2, 0xA2, 0xA2, 0x52, 0x0F, 0x38, + 0x0B, 0x0E, 0x01, 0x0D, 0x04, 0x0D, 0x09, 0x02, 0x4A, 0x14, + 0x0A, 0x14, 0x0A, 0x05, 0x01, 0x09, 0x11, 0x01, 0x07, 0x15, + 0x22, 0x12, 0x07, 0x01, 0x01, 0x06, 0x16, 0x30, 0x12, 0x0C, + 0x07, 0x02, 0x02, 0x05, 0x06, 0x0D, 0x0A, 0x22, 0x0E, 0x04, + 0x16, 0x09, 0x04, 0x0A, 0x04, 0x09, 0x10, 0x1D, 0x15, 0x06, + 0x0A, 0x03, 0x01, 0x06, 0x03, 0x01, 0x02, 0x02, 0x04, 0x0D, + 0x05, 0x25, 0x52, 0x22, 0x17, 0x23, 0x19, 0x05, 0x0A, 0x05, + 0x04, 0x02, 0x09, 0x08, 0x1F, 0x14, 0x12, 0x2C, 0x18, 0x30, + 0x18, 0x1D, 0x3C, 0x1D, 0x1C, 0x15, 0x2A, 0x55, 0x54, 0x55, + 0x2A, 0x05, 0x0C, 0x07, 0x07, 0x1B, 0x03, 0x09, 0x01, 0x05, + 0x08, 0x04, 0x0A, 0x1A, 0x0F, 0x03, 0x02, 0x03, 0x01, 0x2C, + 0x5A, 0x2F, 0x20, 0x56, 0x1C, 0x0C, 0x15, 0x0C, 0x08, 0x10, + 0x08, 0x06, 0x06, 0x0D, 0x18, 0x0C, 0x09, 0x17, 0x0E, 0x04, + 0x04, 0x01, 0x05, 0x0B, 0x17, 0x0C, 0x09, 0x19, 0x0A, 0x12, + 0x08, 0x01, 0x01, 0x02, 0x02, 0x01, 0x03, 0x03, 0x03, 0x01, + 0x01, 0x03, 0x01, 0x01, 0x03, 0x01, 0x06, 0x07, 0x16, 0x45, + 0x1C, 0x13, 0x26, 0x14, 0x01, 0x06, 0x03, 0x02, 0x05, 0x02, + 0x03, 0x05, 0x0B, 0x02, 0x02, 0x04, 0x05, 0x99, 0x14, 0x13, + 0x23, 0x12, 0x13, 0x03, 0x0E, 0x0B, 0x43, 0x0B, 0x05, 0x06, + 0x00, 0x03, 0x00, 0x64, 0x00, 0x21, 0x0A, 0x42, 0x03, 0x60, + 0x00, 0x18, 0x00, 0x2B, 0x01, 0x91, 0x00, 0x00, 0x01, 0x34, + 0x26, 0x23, 0x22, 0x16, 0x17, 0x06, 0x26, 0x27, 0x2E, 0x01, + 0x27, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x16, 0x37, + 0x3E, 0x01, 0x37, 0x01, 0x1E, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x26, 0x37, 0x34, 0x36, 0x37, 0x22, 0x26, 0x07, 0x0E, + 0x01, 0x07, 0x17, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x06, 0x07, 0x06, 0x26, 0x27, 0x26, 0x06, 0x23, 0x22, 0x26, + 0x15, 0x14, 0x06, 0x07, 0x06, 0x26, 0x23, 0x2A, 0x03, 0x23, + 0x2A, 0x01, 0x23, 0x22, 0x26, 0x27, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x35, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, + 0x07, 0x06, 0x14, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x07, 0x22, 0x23, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x34, 0x36, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x36, 0x35, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, + 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x16, 0x06, 0x23, 0x0E, + 0x01, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x26, 0x27, 0x26, 0x06, 0x27, 0x26, 0x36, 0x37, 0x22, + 0x26, 0x27, 0x2E, 0x01, 0x33, 0x2A, 0x01, 0x23, 0x2A, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x36, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x3C, + 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x26, 0x37, 0x3E, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x3A, 0x01, 0x17, + 0x16, 0x32, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, + 0x26, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x26, 0x37, 0x3E, 0x01, + 0x37, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x26, 0x27, 0x26, 0x36, 0x17, 0x1E, 0x01, 0x15, 0x1C, + 0x01, 0x15, 0x14, 0x16, 0x33, 0x32, 0x34, 0x35, 0x34, 0x16, + 0x33, 0x3A, 0x01, 0x15, 0x14, 0x1D, 0x01, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x16, 0x17, 0x16, 0x36, 0x37, 0x36, + 0x16, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x33, 0x3A, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x3A, + 0x01, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x36, + 0x33, 0x32, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x23, 0x2A, 0x01, 0x23, 0x05, 0x4D, 0x40, 0x18, + 0x0D, 0x0E, 0x02, 0x07, 0x13, 0x03, 0x07, 0x02, 0x01, 0x12, + 0x0F, 0x0C, 0x09, 0x1F, 0x11, 0x0E, 0x1D, 0x0E, 0x14, 0x08, + 0x03, 0x03, 0xB7, 0x01, 0x03, 0x05, 0x0D, 0x1A, 0x0D, 0x07, + 0x02, 0x01, 0x01, 0x01, 0x08, 0x21, 0x07, 0x06, 0x0B, 0x04, + 0x8B, 0x01, 0x08, 0x01, 0x05, 0x0C, 0x06, 0x0E, 0x08, 0x08, + 0x07, 0x14, 0x04, 0x08, 0x1B, 0x08, 0x03, 0x1F, 0x0B, 0x10, + 0x07, 0x11, 0x07, 0x36, 0x6B, 0x6B, 0x6B, 0x35, 0x1E, 0x3B, + 0x1D, 0x13, 0x15, 0x09, 0x03, 0x06, 0x02, 0x02, 0x09, 0x0B, + 0x05, 0x0A, 0x01, 0x01, 0x01, 0x03, 0x06, 0x1B, 0x0C, 0x01, + 0x08, 0x06, 0x01, 0x02, 0x02, 0x0A, 0x13, 0x09, 0x1C, 0x38, + 0x1C, 0x08, 0x27, 0x07, 0x02, 0x02, 0x01, 0x03, 0x07, 0x04, + 0x0C, 0x11, 0x01, 0x04, 0x03, 0x01, 0x0B, 0x03, 0x02, 0x01, + 0x05, 0x09, 0x07, 0x0D, 0x18, 0x0C, 0x0E, 0x1D, 0x0E, 0x07, + 0x13, 0x06, 0x0A, 0x07, 0x09, 0x08, 0x15, 0x04, 0x07, 0x09, + 0x06, 0x02, 0x05, 0x06, 0x07, 0x12, 0x05, 0x0D, 0x11, 0x09, + 0x06, 0x05, 0x06, 0x08, 0x07, 0x0D, 0x0B, 0x41, 0x3E, 0x27, + 0x0E, 0x21, 0x43, 0x22, 0x04, 0x0A, 0x04, 0x08, 0x08, 0x0E, + 0x0C, 0x1F, 0x0A, 0x08, 0x02, 0x02, 0x05, 0x09, 0x04, 0x03, + 0x03, 0x01, 0x08, 0x10, 0x07, 0x1E, 0x3A, 0x1D, 0x09, 0x14, + 0x09, 0x08, 0x02, 0x05, 0x0D, 0x28, 0x0B, 0x04, 0x08, 0x0A, + 0x11, 0x08, 0x09, 0x05, 0x05, 0x0B, 0x0E, 0x1B, 0x0E, 0x0A, + 0x08, 0x07, 0x06, 0x1E, 0x05, 0x13, 0x26, 0x13, 0x08, 0x0F, + 0x07, 0x0D, 0x0B, 0x01, 0x27, 0x4E, 0x27, 0x0B, 0x20, 0x04, + 0x05, 0x2B, 0x0E, 0x0C, 0x03, 0x02, 0x04, 0x08, 0x22, 0x10, + 0x2A, 0x54, 0x2A, 0x35, 0x69, 0x69, 0x69, 0x35, 0x09, 0x10, + 0x02, 0x02, 0x05, 0x08, 0x0D, 0x19, 0x0D, 0x1B, 0x35, 0x1A, + 0x0B, 0x05, 0x06, 0x0B, 0x13, 0x0D, 0x07, 0x07, 0x05, 0x06, + 0x17, 0x09, 0x0A, 0x14, 0x0A, 0x05, 0x1C, 0x04, 0x04, 0x13, + 0x01, 0x03, 0x1C, 0x05, 0x08, 0x23, 0x15, 0x10, 0x06, 0x01, + 0x05, 0x09, 0x1F, 0x06, 0x05, 0x05, 0x29, 0x53, 0x2A, 0x2E, + 0x5C, 0x2E, 0x09, 0x09, 0x05, 0x03, 0x0A, 0x04, 0x04, 0x0E, + 0x05, 0x04, 0x0A, 0x01, 0x01, 0x05, 0x05, 0x03, 0x07, 0x04, + 0x4F, 0xA0, 0x50, 0x29, 0x52, 0x2A, 0x12, 0x30, 0x0C, 0x0C, + 0x19, 0x0D, 0x04, 0x0B, 0x07, 0x0B, 0x15, 0x0B, 0x0A, 0x06, + 0x1C, 0x04, 0x07, 0x08, 0x07, 0x19, 0x32, 0x1A, 0x16, 0x34, + 0x1D, 0x15, 0x20, 0x41, 0x20, 0x01, 0xA0, 0x24, 0x01, 0x38, + 0x07, 0x04, 0x18, 0x04, 0x08, 0x15, 0x0A, 0x0C, 0x1E, 0x15, + 0x12, 0x03, 0x01, 0x01, 0x03, 0x1D, 0x0F, 0x01, 0x3D, 0x04, + 0x1C, 0x18, 0x06, 0x0B, 0x16, 0x0B, 0x04, 0x04, 0x04, 0x1F, + 0x07, 0x81, 0x01, 0x06, 0x09, 0x0B, 0x09, 0x12, 0x01, 0x04, + 0x04, 0x01, 0x02, 0x12, 0x10, 0x07, 0x02, 0x01, 0x03, 0x13, + 0x05, 0x09, 0x05, 0x01, 0x04, 0x01, 0x08, 0x11, 0x09, 0x1A, + 0x34, 0x1A, 0x07, 0x09, 0x05, 0x0A, 0x15, 0x0D, 0x15, 0x2B, + 0x14, 0x27, 0x50, 0x26, 0x04, 0x02, 0x07, 0x01, 0x03, 0x06, + 0x03, 0x09, 0x12, 0x09, 0x02, 0x10, 0x0B, 0x04, 0x17, 0x05, + 0x0D, 0x1A, 0x0D, 0x2C, 0x5D, 0x2E, 0x06, 0x19, 0x03, 0x02, + 0x02, 0x01, 0x01, 0x0B, 0x02, 0x05, 0x0B, 0x02, 0x02, 0x04, + 0x0D, 0x0F, 0x0D, 0x19, 0x06, 0x0B, 0x0C, 0x0E, 0x05, 0x08, + 0x03, 0x03, 0x07, 0x06, 0x10, 0x28, 0x12, 0x0C, 0x0D, 0x0C, + 0x0E, 0x09, 0x01, 0x02, 0x07, 0x16, 0x18, 0x3A, 0x73, 0x3A, + 0x08, 0x10, 0x08, 0x0D, 0x2C, 0x09, 0x07, 0x0B, 0x0E, 0x0B, + 0x35, 0x0B, 0x03, 0x02, 0x01, 0x07, 0x14, 0x07, 0x13, 0x18, + 0x15, 0x09, 0x12, 0x05, 0x0E, 0x0B, 0x05, 0x13, 0x03, 0x03, + 0x0F, 0x1C, 0x0F, 0x05, 0x0C, 0x05, 0x09, 0x07, 0x0E, 0x19, + 0x32, 0x19, 0x07, 0x11, 0x0E, 0x16, 0x01, 0x0C, 0x0B, 0x18, + 0x10, 0x17, 0x2F, 0x17, 0x39, 0x71, 0x39, 0x0C, 0x1F, 0x0B, + 0x12, 0x07, 0x0C, 0x08, 0x05, 0x03, 0x04, 0x01, 0x19, 0x05, + 0x06, 0x04, 0x01, 0x03, 0x05, 0x07, 0x14, 0x08, 0x0D, 0x0C, + 0x0B, 0x16, 0x20, 0x09, 0x07, 0x1B, 0x0F, 0x0D, 0x1A, 0x0D, + 0x05, 0x01, 0x05, 0x0A, 0x07, 0x02, 0x04, 0x02, 0x0A, 0x0A, + 0x0B, 0x07, 0x05, 0x08, 0x03, 0x02, 0x02, 0x01, 0x04, 0x05, + 0x05, 0x03, 0x11, 0x11, 0x21, 0x11, 0x05, 0x10, 0x01, 0x03, + 0x03, 0x09, 0x0D, 0x19, 0x0D, 0x19, 0x31, 0x18, 0x03, 0x01, + 0x0B, 0x02, 0x20, 0x1B, 0x0A, 0x00, 0x00, 0x07, 0x00, 0x5B, + 0x00, 0x26, 0x0D, 0x2D, 0x03, 0x5A, 0x00, 0xBA, 0x00, 0xC5, + 0x00, 0xCA, 0x00, 0xDC, 0x00, 0xE7, 0x00, 0xEE, 0x01, 0x11, + 0x00, 0x00, 0x01, 0x25, 0x27, 0x3F, 0x01, 0x27, 0x35, 0x0F, + 0x01, 0x27, 0x17, 0x15, 0x07, 0x27, 0x15, 0x23, 0x35, 0x33, + 0x35, 0x27, 0x0F, 0x03, 0x2F, 0x01, 0x37, 0x27, 0x23, 0x0F, + 0x02, 0x23, 0x07, 0x05, 0x2F, 0x01, 0x07, 0x27, 0x07, 0x17, + 0x0F, 0x02, 0x27, 0x22, 0x06, 0x0F, 0x02, 0x15, 0x1F, 0x01, + 0x07, 0x15, 0x1E, 0x01, 0x1F, 0x03, 0x07, 0x23, 0x35, 0x2F, + 0x03, 0x07, 0x27, 0x23, 0x07, 0x23, 0x22, 0x06, 0x0F, 0x02, + 0x17, 0x07, 0x0E, 0x01, 0x0F, 0x04, 0x1F, 0x01, 0x07, 0x27, + 0x13, 0x3F, 0x01, 0x2F, 0x03, 0x15, 0x07, 0x2F, 0x02, 0x23, + 0x0F, 0x01, 0x15, 0x07, 0x17, 0x23, 0x15, 0x23, 0x35, 0x07, + 0x35, 0x0F, 0x03, 0x2F, 0x01, 0x13, 0x33, 0x1F, 0x01, 0x05, + 0x1F, 0x01, 0x05, 0x27, 0x33, 0x35, 0x37, 0x17, 0x37, 0x35, + 0x33, 0x17, 0x3F, 0x03, 0x33, 0x05, 0x1F, 0x03, 0x07, 0x3F, + 0x01, 0x17, 0x35, 0x37, 0x35, 0x3F, 0x01, 0x05, 0x17, 0x15, + 0x1F, 0x03, 0x33, 0x3F, 0x02, 0x3E, 0x01, 0x17, 0x1E, 0x01, + 0x1F, 0x01, 0x07, 0x17, 0x33, 0x17, 0x37, 0x35, 0x33, 0x35, + 0x21, 0x17, 0x15, 0x07, 0x25, 0x2F, 0x03, 0x07, 0x17, 0x33, + 0x37, 0x35, 0x23, 0x07, 0x33, 0x37, 0x23, 0x15, 0x25, 0x27, + 0x21, 0x0F, 0x03, 0x17, 0x25, 0x3F, 0x01, 0x3E, 0x01, 0x35, + 0x34, 0x26, 0x2F, 0x01, 0x05, 0x27, 0x23, 0x0F, 0x01, 0x1F, + 0x01, 0x33, 0x3F, 0x01, 0x2F, 0x01, 0x15, 0x33, 0x2F, 0x02, + 0x07, 0x05, 0x27, 0x23, 0x07, 0x0E, 0x01, 0x07, 0x14, 0x16, + 0x1F, 0x01, 0x07, 0x27, 0x2E, 0x01, 0x35, 0x26, 0x36, 0x3F, + 0x01, 0x07, 0x0E, 0x01, 0x17, 0x14, 0x16, 0x1F, 0x01, 0x33, + 0x35, 0x37, 0x36, 0x26, 0x2F, 0x01, 0x0D, 0x29, 0xFD, 0xA7, + 0x01, 0x0C, 0x01, 0xC1, 0x50, 0x10, 0x8B, 0x1C, 0x07, 0x1E, + 0x17, 0x06, 0x56, 0x02, 0x03, 0x03, 0x06, 0x07, 0x05, 0x01, + 0x02, 0x11, 0x02, 0x05, 0x05, 0x09, 0x08, 0xFE, 0x1B, 0x09, + 0x0C, 0x18, 0x03, 0x18, 0x02, 0x02, 0x04, 0x0C, 0x03, 0x03, + 0x04, 0x01, 0x06, 0x02, 0x08, 0x01, 0x11, 0x01, 0x06, 0x05, + 0x1D, 0x11, 0x05, 0xC6, 0x06, 0x15, 0x1E, 0x0A, 0x03, 0x0E, + 0x13, 0x7B, 0x29, 0x06, 0x05, 0x07, 0x03, 0x08, 0x1D, 0x0F, + 0x04, 0x04, 0x09, 0x05, 0x0A, 0x02, 0x39, 0x01, 0x07, 0x05, + 0x05, 0xB9, 0xA6, 0x04, 0x03, 0x09, 0x0F, 0x10, 0x2A, 0x0B, + 0x02, 0x21, 0x01, 0x84, 0x20, 0x7D, 0x6D, 0x02, 0x4C, 0x25, + 0x7C, 0x9C, 0x01, 0x01, 0x07, 0x05, 0x02, 0x03, 0x8B, 0x05, + 0x04, 0x01, 0x67, 0x04, 0x02, 0x01, 0x22, 0x01, 0x22, 0x0C, + 0x01, 0x23, 0x22, 0x02, 0x58, 0x04, 0x0B, 0x0D, 0x08, 0x01, + 0xB5, 0x0D, 0x16, 0x0D, 0x06, 0x03, 0x09, 0x02, 0x1B, 0x09, + 0x03, 0x06, 0x01, 0xE6, 0x05, 0x0E, 0x02, 0x04, 0x03, 0x11, + 0x01, 0x50, 0x08, 0x04, 0x08, 0x04, 0x0A, 0x0E, 0x05, 0x04, + 0x02, 0x02, 0x8B, 0x12, 0x4F, 0xC1, 0x02, 0x4C, 0x05, 0x04, + 0xFB, 0xE9, 0x07, 0x05, 0x01, 0x1F, 0x2F, 0x07, 0x59, 0x07, + 0x0C, 0x53, 0x54, 0x04, 0x58, 0xFD, 0x6E, 0x04, 0xFE, 0x88, + 0x0F, 0x0C, 0x05, 0x15, 0x08, 0x01, 0xA3, 0x05, 0x0B, 0x07, + 0x08, 0x07, 0x07, 0x0B, 0xFA, 0xAC, 0x05, 0x61, 0x05, 0x04, + 0x05, 0x04, 0x63, 0x03, 0x04, 0x04, 0x6F, 0x7D, 0x02, 0x04, + 0x05, 0x72, 0x04, 0xB6, 0x0A, 0x32, 0x0C, 0x05, 0x06, 0x01, + 0x04, 0x05, 0x0C, 0x05, 0x11, 0x09, 0x09, 0x01, 0x03, 0x03, + 0x05, 0x16, 0x0C, 0x0B, 0x02, 0x09, 0x08, 0x10, 0x76, 0x0A, + 0x03, 0x01, 0x04, 0x17, 0x02, 0x2D, 0x01, 0x18, 0x01, 0x09, + 0x03, 0x05, 0x01, 0x05, 0x01, 0x05, 0x18, 0x08, 0x02, 0x0B, + 0x28, 0x05, 0x02, 0x07, 0x14, 0x04, 0x03, 0x04, 0x03, 0x12, + 0x08, 0x1D, 0x05, 0x04, 0x11, 0x04, 0x05, 0x03, 0x09, 0x21, + 0x02, 0x15, 0x02, 0x07, 0x04, 0x01, 0x02, 0x03, 0x08, 0x05, + 0x70, 0x02, 0x09, 0x07, 0x29, 0x17, 0x2C, 0x15, 0x66, 0x36, + 0x07, 0x37, 0x06, 0x45, 0x75, 0x4F, 0x22, 0x03, 0x03, 0x04, + 0x02, 0x02, 0x08, 0x37, 0x11, 0x03, 0x01, 0x04, 0x02, 0x08, + 0x04, 0x6F, 0x0A, 0x0B, 0x03, 0x0C, 0x2B, 0x01, 0x21, 0x0C, + 0x17, 0x18, 0x10, 0x08, 0x01, 0x05, 0x02, 0x48, 0x02, 0x0C, + 0x18, 0x03, 0x0B, 0x02, 0x44, 0x1C, 0x1B, 0x4E, 0x3F, 0x47, + 0x1A, 0x04, 0x05, 0x05, 0x04, 0x01, 0x5D, 0x05, 0x12, 0x04, + 0x03, 0x07, 0x01, 0x0C, 0x09, 0x01, 0x09, 0x02, 0x0F, 0x02, + 0x8C, 0x05, 0x08, 0x06, 0x30, 0x02, 0x0D, 0x17, 0x0C, 0x55, + 0x01, 0x26, 0x05, 0x09, 0x02, 0x02, 0x04, 0x03, 0x08, 0x0A, + 0x0E, 0x01, 0x01, 0x05, 0x20, 0x33, 0x71, 0x07, 0x03, 0x03, + 0x01, 0x01, 0x08, 0x05, 0x0A, 0x04, 0x94, 0x06, 0x01, 0x05, + 0x24, 0x06, 0x7C, 0x07, 0xB2, 0x07, 0x11, 0x0D, 0x03, 0x4A, + 0x05, 0x08, 0x1F, 0x4D, 0x0D, 0x0D, 0x81, 0x02, 0x06, 0x0C, + 0x07, 0x33, 0x08, 0x03, 0x01, 0x05, 0x06, 0x11, 0x0C, 0x09, + 0x10, 0x06, 0x07, 0xF4, 0x01, 0x01, 0x08, 0x07, 0x03, 0x04, + 0x07, 0x07, 0x9A, 0x0E, 0x09, 0x05, 0x02, 0x02, 0xFA, 0x04, + 0x0C, 0x09, 0x0F, 0x08, 0x07, 0x0E, 0x08, 0x0A, 0x04, 0x0D, + 0x08, 0x11, 0x09, 0x06, 0x0E, 0x08, 0x0C, 0x08, 0x08, 0x17, + 0x0F, 0x09, 0x0F, 0x08, 0x0B, 0x0F, 0x10, 0x09, 0x15, 0x0B, + 0x15, 0x00, 0x00, 0x02, 0x00, 0x53, 0xFF, 0xF2, 0x08, 0xFC, + 0x03, 0x8D, 0x00, 0x1E, 0x01, 0x28, 0x00, 0x00, 0x01, 0x07, + 0x0E, 0x01, 0x15, 0x17, 0x0F, 0x01, 0x27, 0x07, 0x23, 0x0F, + 0x02, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x33, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x23, 0x25, 0x17, + 0x37, 0x33, 0x1F, 0x01, 0x0F, 0x01, 0x23, 0x2F, 0x01, 0x0F, + 0x01, 0x23, 0x27, 0x23, 0x27, 0x23, 0x0E, 0x01, 0x2B, 0x01, + 0x2F, 0x01, 0x05, 0x07, 0x23, 0x27, 0x23, 0x07, 0x23, 0x07, + 0x14, 0x06, 0x07, 0x1F, 0x01, 0x1E, 0x01, 0x07, 0x0E, 0x01, + 0x1F, 0x01, 0x15, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x0F, 0x01, + 0x2F, 0x01, 0x34, 0x36, 0x3F, 0x01, 0x3E, 0x01, 0x2F, 0x02, + 0x26, 0x36, 0x3F, 0x01, 0x27, 0x07, 0x0E, 0x01, 0x0F, 0x01, + 0x0E, 0x01, 0x0F, 0x03, 0x22, 0x26, 0x2F, 0x01, 0x3E, 0x01, + 0x3F, 0x01, 0x3E, 0x01, 0x3F, 0x01, 0x3E, 0x01, 0x35, 0x34, + 0x26, 0x27, 0x0F, 0x01, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x0F, + 0x01, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x0F, + 0x02, 0x06, 0x26, 0x37, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x2F, 0x02, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x0F, 0x01, 0x1F, 0x01, 0x14, 0x06, + 0x07, 0x0E, 0x01, 0x2B, 0x01, 0x22, 0x26, 0x27, 0x2E, 0x01, + 0x2F, 0x01, 0x2E, 0x01, 0x35, 0x26, 0x36, 0x3F, 0x02, 0x3E, + 0x01, 0x33, 0x25, 0x35, 0x3F, 0x02, 0x17, 0x35, 0x23, 0x16, + 0x06, 0x23, 0x2F, 0x01, 0x23, 0x07, 0x23, 0x2E, 0x01, 0x35, + 0x34, 0x36, 0x37, 0x33, 0x17, 0x3F, 0x01, 0x3E, 0x01, 0x33, + 0x32, 0x16, 0x15, 0x37, 0x35, 0x37, 0x17, 0x15, 0x3F, 0x01, + 0x33, 0x17, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x07, 0x15, + 0x23, 0x35, 0x23, 0x17, 0x33, 0x1E, 0x01, 0x1F, 0x01, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x17, 0x15, 0x17, 0x21, 0x3F, 0x01, 0x33, 0x17, 0x33, 0x37, + 0x17, 0x37, 0x3E, 0x01, 0x3B, 0x01, 0x17, 0x04, 0x8B, 0x07, + 0x04, 0x04, 0x03, 0x05, 0x16, 0x0E, 0x06, 0x1B, 0x08, 0x06, + 0x37, 0x05, 0x01, 0x04, 0x03, 0x09, 0x06, 0x4B, 0x15, 0x20, + 0x0B, 0x08, 0x36, 0x2F, 0x03, 0x08, 0x0A, 0x5E, 0x04, 0x13, + 0x0E, 0x0F, 0x37, 0x05, 0x05, 0x05, 0x07, 0x31, 0x0A, 0x0A, + 0x0E, 0x06, 0x1F, 0x05, 0x31, 0x04, 0x18, 0x01, 0x05, 0x04, + 0x2D, 0x09, 0x03, 0xFE, 0xBE, 0x11, 0x08, 0x06, 0x07, 0x05, + 0x43, 0x09, 0x07, 0x07, 0x08, 0x12, 0x09, 0x08, 0x01, 0x03, + 0x02, 0x02, 0x01, 0x01, 0x0D, 0x0C, 0x02, 0x08, 0x0A, 0x2A, + 0x31, 0x1C, 0x02, 0x04, 0x0F, 0x05, 0x02, 0x01, 0x08, 0x09, + 0x02, 0x09, 0x0A, 0x14, 0x53, 0x61, 0x10, 0x2B, 0x1A, 0x47, + 0x0C, 0x17, 0x0B, 0x40, 0x6E, 0x4E, 0x05, 0x07, 0x02, 0x02, + 0x01, 0x06, 0x05, 0x15, 0x08, 0x0C, 0x03, 0x17, 0x08, 0x08, + 0x0E, 0x0E, 0x3E, 0x44, 0x10, 0x13, 0x02, 0x05, 0x0F, 0x0B, + 0x03, 0x03, 0x11, 0x0F, 0x16, 0x28, 0x13, 0x08, 0x02, 0x09, + 0x52, 0x52, 0x07, 0x05, 0x01, 0x19, 0x0E, 0x19, 0x0A, 0x0A, + 0x0F, 0x04, 0x05, 0x21, 0x32, 0x02, 0x05, 0x04, 0x04, 0x05, + 0x01, 0x0E, 0x28, 0x1A, 0x1F, 0x22, 0x03, 0x08, 0x0C, 0x0D, + 0x05, 0x04, 0x04, 0x0B, 0x08, 0x82, 0x06, 0x0C, 0x06, 0x07, + 0x0B, 0x04, 0x23, 0x0C, 0x0E, 0x01, 0x02, 0x02, 0x0E, 0x24, + 0x0D, 0x15, 0x07, 0x02, 0xBB, 0x12, 0x1B, 0x1F, 0x2A, 0x11, + 0x01, 0x08, 0x09, 0x0E, 0x02, 0x27, 0x05, 0x0E, 0x05, 0x05, + 0x05, 0x04, 0x0A, 0x07, 0x26, 0x02, 0x02, 0x07, 0x07, 0x07, + 0x07, 0x0B, 0x15, 0x17, 0x58, 0x6A, 0x22, 0x10, 0x0F, 0x0D, + 0x16, 0x16, 0x0C, 0x37, 0x09, 0x0E, 0x08, 0x08, 0x01, 0x05, + 0x24, 0x11, 0x26, 0x10, 0x26, 0x10, 0x27, 0x0F, 0x27, 0x10, + 0x1E, 0x4E, 0x14, 0x01, 0x59, 0x06, 0x09, 0x29, 0x0A, 0x14, + 0x0A, 0x2B, 0x01, 0x02, 0x04, 0x03, 0x1C, 0x07, 0x01, 0xF9, + 0x05, 0x05, 0x0B, 0x06, 0x17, 0x06, 0x01, 0x01, 0x0E, 0x02, + 0x07, 0x64, 0x0A, 0x12, 0x08, 0x06, 0x08, 0x02, 0x02, 0x0B, + 0x08, 0x07, 0x53, 0x4D, 0x05, 0x16, 0x10, 0xB2, 0x01, 0x07, + 0x0A, 0x1A, 0x19, 0x0A, 0x03, 0x01, 0x02, 0x02, 0x03, 0x04, + 0x04, 0x03, 0x03, 0x02, 0x08, 0x12, 0x06, 0x06, 0x44, 0x06, + 0x08, 0x02, 0x08, 0x02, 0x02, 0x07, 0x05, 0x13, 0x1B, 0x09, + 0x33, 0x3A, 0x11, 0x25, 0x13, 0x04, 0x08, 0x04, 0x07, 0x09, + 0x07, 0x19, 0x2D, 0x14, 0x37, 0x0D, 0x14, 0x06, 0x1C, 0x13, + 0x05, 0x0A, 0x06, 0x0A, 0x04, 0x04, 0x0B, 0x2F, 0x25, 0x6B, + 0x11, 0x18, 0x05, 0x0B, 0x06, 0x01, 0x03, 0x04, 0x17, 0x18, + 0x22, 0x0B, 0x27, 0x0F, 0x12, 0x02, 0x14, 0x0A, 0x19, 0x0E, + 0x10, 0x13, 0x03, 0x02, 0x05, 0x01, 0x05, 0x05, 0x06, 0x0B, + 0x04, 0x28, 0x1E, 0x51, 0x32, 0x4F, 0x67, 0x18, 0x0A, 0x0F, + 0x05, 0x1D, 0x1C, 0x02, 0x14, 0x16, 0x36, 0x25, 0x4F, 0x2B, + 0x2B, 0x52, 0x27, 0x3D, 0x02, 0x28, 0x02, 0x03, 0x05, 0x05, + 0x04, 0x01, 0x05, 0x17, 0x12, 0x15, 0x22, 0x0B, 0x1B, 0x0D, + 0x13, 0x07, 0x0B, 0x04, 0x04, 0x04, 0x05, 0x05, 0x07, 0x11, + 0x0B, 0x90, 0x3C, 0x49, 0x0E, 0x0D, 0x14, 0x07, 0x15, 0x1D, + 0x08, 0x09, 0x0F, 0x08, 0x0D, 0x12, 0x05, 0x01, 0x39, 0x06, + 0x06, 0x05, 0x07, 0x06, 0x07, 0x19, 0x11, 0x11, 0x12, 0x02, + 0x05, 0x02, 0x07, 0x04, 0x03, 0x07, 0x06, 0x01, 0x13, 0x03, + 0x02, 0x0E, 0x0D, 0x0C, 0x0C, 0x06, 0x04, 0x6D, 0x01, 0x05, + 0x07, 0x0D, 0x01, 0x04, 0x03, 0x15, 0x04, 0x04, 0x04, 0x04, + 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x27, 0x1A, 0x0B, 0x04, + 0x05, 0x09, 0x06, 0x02, 0x04, 0x02, 0x02, 0x02, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x53, 0x00, 0x0D, 0x0A, 0x10, 0x03, 0x75, + 0x01, 0xEE, 0x02, 0x04, 0x02, 0x11, 0x00, 0x00, 0x01, 0x36, + 0x26, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x06, 0x17, 0x1E, 0x01, + 0x27, 0x34, 0x16, 0x17, 0x16, 0x36, 0x35, 0x26, 0x36, 0x33, + 0x32, 0x36, 0x15, 0x16, 0x06, 0x17, 0x16, 0x36, 0x33, 0x3A, + 0x01, 0x33, 0x32, 0x16, 0x37, 0x34, 0x26, 0x37, 0x36, 0x16, + 0x33, 0x16, 0x32, 0x33, 0x32, 0x36, 0x37, 0x34, 0x16, 0x15, + 0x16, 0x14, 0x37, 0x36, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x33, 0x32, 0x36, 0x15, 0x14, 0x36, 0x33, 0x32, 0x16, + 0x37, 0x3E, 0x01, 0x17, 0x16, 0x06, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x03, 0x33, 0x32, 0x36, 0x17, 0x32, 0x16, 0x35, 0x34, + 0x16, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x26, 0x37, 0x36, 0x32, + 0x15, 0x16, 0x36, 0x17, 0x16, 0x06, 0x15, 0x14, 0x32, 0x17, + 0x1E, 0x01, 0x07, 0x14, 0x06, 0x17, 0x16, 0x36, 0x17, 0x16, + 0x06, 0x15, 0x16, 0x36, 0x17, 0x1E, 0x01, 0x23, 0x2A, 0x01, + 0x23, 0x30, 0x07, 0x06, 0x15, 0x32, 0x36, 0x17, 0x16, 0x06, + 0x07, 0x06, 0x26, 0x15, 0x14, 0x16, 0x3A, 0x01, 0x33, 0x32, + 0x36, 0x37, 0x34, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, + 0x33, 0x3A, 0x01, 0x17, 0x16, 0x06, 0x15, 0x14, 0x16, 0x23, + 0x06, 0x26, 0x23, 0x22, 0x26, 0x07, 0x06, 0x36, 0x23, 0x2A, + 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x06, 0x14, + 0x07, 0x06, 0x26, 0x07, 0x06, 0x16, 0x07, 0x22, 0x26, 0x23, + 0x2E, 0x01, 0x35, 0x34, 0x36, 0x27, 0x34, 0x26, 0x07, 0x22, + 0x34, 0x27, 0x26, 0x06, 0x23, 0x26, 0x06, 0x07, 0x06, 0x16, + 0x07, 0x06, 0x16, 0x23, 0x22, 0x26, 0x23, 0x22, 0x26, 0x23, + 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x06, + 0x26, 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, + 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, 0x17, 0x14, 0x06, 0x17, + 0x16, 0x36, 0x17, 0x16, 0x06, 0x23, 0x22, 0x06, 0x15, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x22, 0x07, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x07, + 0x0E, 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x27, 0x23, + 0x26, 0x22, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x26, 0x07, 0x06, + 0x16, 0x15, 0x1E, 0x01, 0x07, 0x2A, 0x01, 0x27, 0x22, 0x26, + 0x07, 0x0E, 0x01, 0x15, 0x14, 0x22, 0x23, 0x22, 0x06, 0x15, + 0x0E, 0x01, 0x07, 0x22, 0x06, 0x23, 0x22, 0x26, 0x35, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x36, + 0x35, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x22, 0x06, 0x27, 0x26, 0x36, 0x27, 0x2E, 0x01, 0x35, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x34, 0x26, + 0x37, 0x36, 0x16, 0x17, 0x32, 0x06, 0x17, 0x16, 0x36, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x32, 0x33, 0x1E, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x32, 0x34, 0x27, 0x34, 0x36, 0x35, + 0x2E, 0x01, 0x07, 0x06, 0x16, 0x23, 0x22, 0x26, 0x37, 0x34, + 0x06, 0x23, 0x22, 0x16, 0x07, 0x06, 0x34, 0x37, 0x34, 0x26, + 0x37, 0x13, 0x26, 0x06, 0x23, 0x22, 0x16, 0x17, 0x14, 0x36, + 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x26, 0x27, 0x07, 0x26, 0x06, 0x15, 0x14, 0x16, 0x33, + 0x34, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x03, 0x36, 0x09, 0x03, + 0x04, 0x02, 0x16, 0x04, 0x09, 0x0E, 0x0E, 0x06, 0x12, 0x01, + 0x10, 0x02, 0x04, 0x07, 0x01, 0x0A, 0x09, 0x03, 0x16, 0x01, + 0x02, 0x03, 0x09, 0x1B, 0x0B, 0x10, 0x1F, 0x10, 0x02, 0x0F, + 0x01, 0x03, 0x02, 0x04, 0x13, 0x04, 0x0A, 0x15, 0x0A, 0x0F, + 0x02, 0x01, 0x11, 0x01, 0x09, 0x06, 0x03, 0x01, 0x03, 0x0D, + 0x05, 0x02, 0x1C, 0x0A, 0x03, 0x20, 0x1B, 0x0A, 0x18, 0x31, + 0x18, 0x07, 0x10, 0x07, 0x0B, 0x08, 0x0E, 0x3C, 0x77, 0x3C, + 0x31, 0x62, 0x63, 0x62, 0x31, 0x15, 0x29, 0x14, 0x03, 0x13, + 0x09, 0x04, 0x05, 0x02, 0x1C, 0x01, 0x08, 0x02, 0x02, 0x02, + 0x05, 0x03, 0x04, 0x01, 0x01, 0x04, 0x04, 0x02, 0x0C, 0x04, + 0x05, 0x01, 0x01, 0x36, 0x04, 0x01, 0x02, 0x03, 0x05, 0x0C, + 0x06, 0x02, 0x01, 0x03, 0x14, 0x02, 0x02, 0x04, 0x05, 0x05, + 0x2E, 0x44, 0x55, 0x4C, 0x07, 0x04, 0x02, 0x01, 0x10, 0x02, + 0x08, 0x10, 0x08, 0x0E, 0x1E, 0x0F, 0x03, 0x09, 0x04, 0x02, + 0x02, 0x04, 0x03, 0x0B, 0x16, 0x0B, 0x1C, 0x39, 0x1C, 0x0D, + 0x04, 0x07, 0x11, 0x23, 0x11, 0x1E, 0x3C, 0x1D, 0x05, 0x0B, + 0x05, 0x03, 0x01, 0x03, 0x09, 0x04, 0x04, 0x09, 0x09, 0x06, + 0x0E, 0x06, 0x0B, 0x02, 0x04, 0x01, 0x04, 0x03, 0x05, 0x02, + 0x0A, 0x01, 0x05, 0x08, 0x09, 0x02, 0x02, 0x02, 0x0D, 0x07, + 0x01, 0x0B, 0x0D, 0x1A, 0x0D, 0x3D, 0x7B, 0x3D, 0x1D, 0x3A, + 0x1D, 0x0F, 0x1D, 0x0E, 0x09, 0x2D, 0x04, 0x03, 0x0F, 0x03, + 0x02, 0x01, 0x02, 0x07, 0x0E, 0x07, 0x1C, 0x36, 0x1C, 0x18, + 0x28, 0x14, 0x09, 0x08, 0x01, 0x01, 0x01, 0x02, 0x04, 0x03, + 0x05, 0x07, 0x05, 0x09, 0x03, 0x01, 0x04, 0x02, 0x01, 0x06, + 0x02, 0x03, 0x02, 0x03, 0x06, 0x10, 0x07, 0x03, 0x07, 0x05, + 0x04, 0x06, 0x04, 0x03, 0x19, 0x06, 0x0F, 0x1D, 0x0F, 0x16, + 0x30, 0x18, 0x0E, 0x07, 0x05, 0x09, 0x0C, 0x04, 0x04, 0x0B, + 0x03, 0x04, 0x08, 0x06, 0x04, 0x01, 0x11, 0x1E, 0x3C, 0x1E, + 0x09, 0x12, 0x09, 0x09, 0x0B, 0x05, 0x03, 0x0C, 0x0C, 0x02, + 0x04, 0x0C, 0x06, 0x0C, 0x0B, 0x03, 0x03, 0x39, 0x08, 0x17, + 0x30, 0x16, 0x21, 0x5B, 0x0D, 0x0C, 0x13, 0x06, 0x06, 0x30, + 0x10, 0x01, 0x01, 0x01, 0x01, 0x05, 0x06, 0x08, 0x0A, 0x01, + 0x01, 0x01, 0x16, 0x0B, 0x17, 0x0C, 0x05, 0x0B, 0x05, 0x02, + 0x01, 0x2E, 0x05, 0x03, 0x03, 0x01, 0x03, 0x08, 0x06, 0x0B, + 0x05, 0x09, 0x01, 0x0A, 0x1A, 0x0B, 0x09, 0x13, 0x08, 0x04, + 0x17, 0x06, 0x07, 0x03, 0x0F, 0x20, 0x08, 0x12, 0x23, 0x09, + 0x04, 0x02, 0x0B, 0x08, 0x13, 0x08, 0x06, 0x02, 0x01, 0x02, + 0x05, 0x03, 0x0B, 0x03, 0x03, 0x03, 0x02, 0x02, 0x04, 0x02, + 0x02, 0x05, 0x08, 0x13, 0x08, 0x07, 0x02, 0x01, 0x01, 0x1B, + 0x05, 0x1F, 0x3F, 0x1F, 0x3E, 0x7C, 0x3F, 0x19, 0x39, 0x19, + 0x14, 0x19, 0x11, 0x06, 0x04, 0x01, 0x02, 0x0E, 0x05, 0x17, + 0x2C, 0x17, 0x14, 0x27, 0x14, 0x0B, 0x01, 0x01, 0x01, 0x08, + 0x01, 0x03, 0x05, 0x0C, 0x04, 0x09, 0x02, 0x20, 0x03, 0x10, + 0x08, 0x0A, 0x12, 0x01, 0x03, 0x05, 0xBF, 0x0A, 0x2B, 0x0C, + 0x19, 0x04, 0x01, 0x1E, 0x06, 0x07, 0x0D, 0x07, 0x0D, 0x09, + 0x05, 0x08, 0x1A, 0x01, 0x01, 0x0F, 0x08, 0x86, 0x08, 0x04, + 0x16, 0x10, 0x0B, 0x02, 0x02, 0x09, 0x02, 0x03, 0x48, 0x08, + 0x0F, 0x0A, 0x06, 0x06, 0x04, 0x07, 0x29, 0x02, 0x01, 0x02, + 0x09, 0x05, 0x04, 0x03, 0x06, 0x01, 0x09, 0x0A, 0x01, 0x02, + 0x03, 0x02, 0x10, 0x01, 0x03, 0x03, 0x02, 0x03, 0x02, 0x07, + 0x02, 0x04, 0x03, 0x01, 0x04, 0x0C, 0x03, 0x01, 0x04, 0x06, + 0x0D, 0x02, 0x02, 0x1A, 0x03, 0x0B, 0x15, 0x0A, 0x05, 0x3A, + 0x02, 0x03, 0x0D, 0x03, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, + 0x0C, 0x02, 0x02, 0x08, 0x04, 0x06, 0x03, 0x05, 0x0D, 0x1A, + 0x0D, 0x06, 0x45, 0x03, 0x01, 0x05, 0x09, 0x05, 0x05, 0x05, + 0x0A, 0x05, 0x06, 0x03, 0x06, 0x10, 0x07, 0x0A, 0x1C, 0x0A, + 0x05, 0x03, 0x03, 0x02, 0x0F, 0x04, 0x13, 0x13, 0x0E, 0x01, + 0x11, 0x04, 0x05, 0x01, 0x02, 0x04, 0x05, 0x0A, 0x01, 0x01, + 0x03, 0x03, 0x01, 0x01, 0x04, 0x03, 0x03, 0x01, 0x01, 0x01, + 0x2A, 0x04, 0x02, 0x1A, 0x02, 0x01, 0x01, 0x02, 0x01, 0x0D, + 0x02, 0x01, 0x01, 0x08, 0x02, 0x08, 0x01, 0x05, 0x07, 0x35, + 0x01, 0x02, 0x01, 0x0A, 0x0A, 0x09, 0x11, 0x09, 0x04, 0x01, + 0x01, 0x05, 0x03, 0x0D, 0x37, 0x01, 0x06, 0x09, 0x0B, 0x08, + 0x04, 0x02, 0x06, 0x01, 0x01, 0x03, 0x06, 0x04, 0x02, 0x03, + 0x01, 0x09, 0x02, 0x01, 0x01, 0x09, 0x0D, 0x06, 0x0D, 0x0B, + 0x03, 0x0D, 0x03, 0x04, 0x04, 0x01, 0x02, 0x0F, 0x07, 0x09, + 0x15, 0x2A, 0x15, 0x08, 0x0B, 0x07, 0x07, 0x10, 0x08, 0x15, + 0x2B, 0x15, 0x09, 0x15, 0x09, 0x06, 0x0B, 0x09, 0x07, 0x05, + 0x02, 0x06, 0x09, 0x05, 0x08, 0x11, 0x39, 0x0A, 0x13, 0x30, + 0x16, 0x11, 0x20, 0x12, 0x16, 0x2E, 0x16, 0x10, 0x09, 0x01, + 0x01, 0x01, 0x08, 0x06, 0x14, 0x07, 0x05, 0x11, 0x05, 0x09, + 0x11, 0x08, 0x14, 0x24, 0x15, 0x10, 0x1A, 0x04, 0x0A, 0x11, + 0x0C, 0x11, 0x6E, 0x0D, 0x0D, 0x24, 0x12, 0x12, 0x0E, 0x01, + 0x05, 0x04, 0x09, 0x12, 0x09, 0x09, 0x03, 0x03, 0x04, 0x0D, + 0x0A, 0x12, 0x15, 0x01, 0x01, 0x01, 0x01, 0x01, 0x17, 0x03, + 0x07, 0x0C, 0x02, 0x08, 0x05, 0x01, 0x01, 0x07, 0x08, 0x0A, + 0x0B, 0x0A, 0x09, 0x0C, 0x0B, 0x05, 0x02, 0x03, 0x03, 0x25, + 0x06, 0x21, 0x0A, 0x12, 0x27, 0x18, 0x09, 0x0A, 0x01, 0x01, + 0x03, 0x03, 0x12, 0x05, 0x08, 0x0D, 0x09, 0x23, 0x46, 0x24, + 0x16, 0x2C, 0x16, 0x19, 0x31, 0x18, 0x05, 0x14, 0x02, 0x03, + 0x03, 0x01, 0x0D, 0x04, 0x09, 0x02, 0x03, 0x05, 0x04, 0x24, + 0x08, 0x03, 0x04, 0x07, 0x06, 0x01, 0x01, 0x05, 0x0A, 0x04, + 0x08, 0x03, 0x03, 0x03, 0x03, 0x07, 0x06, 0x05, 0x07, 0x03, + 0x01, 0x09, 0x04, 0x07, 0x20, 0x0A, 0x16, 0x2C, 0x16, 0xFE, + 0x6F, 0x0A, 0x08, 0x2F, 0x11, 0x0A, 0x03, 0x02, 0x05, 0x07, + 0x0D, 0x0C, 0x09, 0x11, 0x04, 0x11, 0x0D, 0x1D, 0x03, 0x12, + 0x0F, 0x04, 0x0D, 0x05, 0x08, 0x0E, 0x08, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x56, 0x00, 0x40, 0x0A, 0xA0, 0x03, 0x40, + 0x00, 0x7D, 0x00, 0x95, 0x00, 0x00, 0x01, 0x2F, 0x01, 0x35, + 0x23, 0x15, 0x07, 0x0E, 0x01, 0x0F, 0x02, 0x23, 0x2F, 0x02, + 0x23, 0x2F, 0x02, 0x25, 0x07, 0x0E, 0x01, 0x0F, 0x01, 0x21, + 0x27, 0x0F, 0x03, 0x2F, 0x01, 0x0F, 0x02, 0x27, 0x07, 0x0E, + 0x01, 0x07, 0x13, 0x25, 0x3F, 0x04, 0x36, 0x16, 0x1F, 0x01, + 0x0F, 0x03, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x3F, 0x02, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x3F, 0x02, 0x1E, 0x01, 0x17, 0x37, + 0x3E, 0x01, 0x37, 0x17, 0x3F, 0x01, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x3F, 0x02, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x35, 0x33, 0x17, 0x1E, 0x01, + 0x33, 0x17, 0x3F, 0x02, 0x21, 0x37, 0x33, 0x17, 0x37, 0x21, + 0x17, 0x37, 0x33, 0x17, 0x3F, 0x01, 0x27, 0x05, 0x0E, 0x01, + 0x2B, 0x01, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, + 0x37, 0x3E, 0x01, 0x33, 0x37, 0x32, 0x16, 0x17, 0x1E, 0x01, + 0x15, 0x0A, 0x9B, 0x08, 0x2B, 0x2E, 0x03, 0x02, 0x05, 0x03, + 0x22, 0x0D, 0xB0, 0x16, 0x1B, 0x1E, 0xC8, 0x15, 0x16, 0x1B, + 0xFE, 0x20, 0x1B, 0x04, 0x06, 0x02, 0x07, 0xFD, 0x91, 0x09, + 0x66, 0x3F, 0x30, 0x1C, 0x2F, 0x20, 0xA2, 0x6E, 0x31, 0x3A, + 0x31, 0x0C, 0x15, 0x08, 0x16, 0x01, 0x0A, 0xC8, 0x4D, 0x43, + 0x32, 0x17, 0x08, 0x0E, 0x07, 0x13, 0x14, 0x22, 0x20, 0x11, + 0x03, 0x0D, 0x0B, 0x0B, 0x17, 0x0D, 0x2D, 0x14, 0x04, 0x0E, + 0x0B, 0x0A, 0x16, 0x0C, 0x29, 0x15, 0x0F, 0x1E, 0x10, 0x35, + 0x0E, 0x1B, 0x0D, 0x21, 0x09, 0x0C, 0x13, 0x2F, 0x1C, 0x1C, + 0x36, 0x1A, 0x1F, 0x3F, 0x22, 0x33, 0x25, 0x14, 0x2E, 0x47, + 0x19, 0x18, 0x23, 0x0B, 0x0D, 0x0D, 0x9A, 0x0F, 0x01, 0x05, + 0x03, 0x16, 0x15, 0x1D, 0x28, 0x01, 0x53, 0x03, 0xD8, 0x12, + 0x0F, 0x01, 0x2E, 0x24, 0x13, 0x0D, 0x0D, 0x13, 0x05, 0x05, + 0xF9, 0xEB, 0x05, 0x0D, 0x08, 0x3D, 0x09, 0x10, 0x06, 0x06, + 0x06, 0x06, 0x06, 0x06, 0x10, 0x09, 0x3D, 0x08, 0x0D, 0x05, + 0x06, 0x05, 0x02, 0xB0, 0x12, 0x05, 0x79, 0x08, 0x11, 0x02, + 0x0B, 0x08, 0x4B, 0x05, 0x0E, 0x1C, 0x25, 0x07, 0x06, 0x09, + 0x05, 0x02, 0x02, 0x02, 0x02, 0x06, 0x09, 0x57, 0x13, 0x0D, + 0x06, 0x0A, 0x0A, 0x0A, 0x09, 0x01, 0x01, 0x0C, 0x04, 0x0A, + 0x07, 0xFE, 0xC3, 0x58, 0x4A, 0x1A, 0x19, 0x11, 0x08, 0x01, + 0x05, 0x06, 0x0E, 0x1B, 0x3D, 0x3E, 0x24, 0x14, 0x1B, 0x07, + 0x06, 0x06, 0x01, 0x0A, 0x09, 0x11, 0x21, 0x10, 0x12, 0x1F, + 0x0E, 0x2C, 0x11, 0x0C, 0x0E, 0x01, 0x03, 0x03, 0x0A, 0x07, + 0x05, 0x07, 0x02, 0x38, 0x61, 0x28, 0x2A, 0x45, 0x1B, 0x20, + 0x37, 0x17, 0x52, 0x3A, 0x1A, 0x20, 0x41, 0x21, 0x20, 0x3A, + 0x1B, 0x1E, 0x3B, 0x1C, 0x0A, 0x02, 0x03, 0x04, 0x05, 0x0F, + 0x16, 0x13, 0x0E, 0x13, 0x0E, 0x21, 0x03, 0x07, 0x0B, 0x0D, + 0xAE, 0x06, 0x06, 0x06, 0x06, 0x05, 0x0D, 0x07, 0x09, 0x0F, + 0x07, 0x05, 0x05, 0x01, 0x06, 0x05, 0x06, 0x10, 0x09, 0x00, + 0x00, 0x02, 0x00, 0x4D, 0x00, 0x55, 0x0A, 0xE2, 0x03, 0x29, + 0x01, 0xB8, 0x01, 0xC8, 0x00, 0x00, 0x01, 0x06, 0x26, 0x27, + 0x22, 0x26, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x06, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x06, 0x26, + 0x15, 0x14, 0x16, 0x07, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x26, 0x15, 0x14, 0x22, 0x07, 0x22, 0x26, 0x27, 0x2A, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x36, 0x06, 0x23, 0x2A, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x27, 0x22, 0x26, 0x27, 0x26, 0x36, 0x23, 0x2A, + 0x01, 0x23, 0x2A, 0x01, 0x23, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, + 0x01, 0x27, 0x3E, 0x01, 0x37, 0x2A, 0x01, 0x23, 0x22, 0x16, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x26, 0x27, 0x26, 0x22, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, 0x23, 0x2A, + 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2E, 0x01, 0x35, + 0x34, 0x36, 0x37, 0x36, 0x26, 0x37, 0x36, 0x26, 0x27, 0x34, + 0x26, 0x27, 0x2E, 0x01, 0x27, 0x34, 0x26, 0x27, 0x2E, 0x01, + 0x35, 0x34, 0x36, 0x37, 0x36, 0x32, 0x33, 0x32, 0x36, 0x33, + 0x3E, 0x01, 0x37, 0x36, 0x16, 0x37, 0x32, 0x36, 0x37, 0x32, + 0x36, 0x33, 0x32, 0x36, 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x36, 0x16, 0x37, + 0x3A, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, + 0x01, 0x07, 0x16, 0x36, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, + 0x35, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x23, 0x2A, 0x01, 0x27, + 0x22, 0x26, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x3C, + 0x01, 0x37, 0x34, 0x36, 0x37, 0x36, 0x16, 0x33, 0x32, 0x16, + 0x17, 0x16, 0x36, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x33, + 0x3E, 0x01, 0x33, 0x3A, 0x01, 0x37, 0x3A, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x16, 0x17, 0x32, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, + 0x32, 0x16, 0x17, 0x16, 0x14, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x26, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x06, 0x26, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x07, 0x0E, 0x01, 0x07, + 0x3A, 0x03, 0x33, 0x32, 0x36, 0x37, 0x3A, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x32, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x2E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x14, 0x15, 0x1C, 0x01, 0x17, 0x16, 0x14, 0x07, 0x32, 0x36, + 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x33, 0x16, 0x32, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x16, + 0x14, 0x17, 0x16, 0x06, 0x07, 0x05, 0x06, 0x16, 0x33, 0x32, + 0x36, 0x37, 0x3E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x06, + 0x07, 0x0A, 0xD5, 0x24, 0x49, 0x24, 0x05, 0x08, 0x05, 0x0A, + 0x14, 0x0A, 0x18, 0x31, 0x18, 0x08, 0x04, 0x07, 0x07, 0x0F, + 0x08, 0x15, 0x0F, 0x07, 0x04, 0x11, 0x02, 0x0C, 0x0E, 0x20, + 0x0F, 0x0D, 0x18, 0x0D, 0x06, 0x19, 0x02, 0x07, 0x05, 0x0A, + 0x05, 0x04, 0x09, 0x04, 0x06, 0x01, 0x02, 0x06, 0x1C, 0x04, + 0x15, 0x2B, 0x15, 0x33, 0x67, 0x33, 0x1C, 0x36, 0x1C, 0x08, + 0x10, 0x08, 0x09, 0x1B, 0x08, 0x04, 0x08, 0x03, 0x02, 0x01, + 0x01, 0x08, 0x10, 0x07, 0x1D, 0x39, 0x1D, 0x03, 0x07, 0x03, + 0x01, 0x10, 0x0C, 0x24, 0x4B, 0x25, 0x0A, 0x2B, 0x02, 0x03, + 0x03, 0x02, 0x03, 0x05, 0x02, 0x01, 0x02, 0x01, 0x01, 0x12, + 0x01, 0x03, 0x08, 0x08, 0x02, 0x04, 0x03, 0x05, 0x0A, 0x05, + 0x04, 0x01, 0x01, 0x04, 0x07, 0x04, 0x03, 0x0E, 0x0A, 0x0C, + 0x17, 0x0B, 0x07, 0x0B, 0x07, 0x07, 0x19, 0x06, 0x07, 0x0F, + 0x08, 0x02, 0x09, 0x02, 0x04, 0x06, 0x01, 0x10, 0x1D, 0x11, + 0x04, 0x0A, 0x07, 0x08, 0x21, 0x06, 0x11, 0x21, 0x10, 0x02, + 0x05, 0x03, 0x0B, 0x0E, 0x08, 0x0C, 0x22, 0x0D, 0x0B, 0x08, + 0x1A, 0x17, 0x2D, 0x16, 0x13, 0x25, 0x12, 0x0F, 0x1E, 0x0E, + 0x20, 0x3E, 0x1F, 0x48, 0x90, 0x48, 0x20, 0x42, 0x22, 0x1C, + 0x0C, 0x06, 0x02, 0x01, 0x02, 0x02, 0x07, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x04, 0x02, 0x02, 0x01, 0x12, 0x08, + 0x12, 0x25, 0x12, 0x09, 0x10, 0x09, 0x06, 0x07, 0x04, 0x0C, + 0x30, 0x0F, 0x23, 0x46, 0x23, 0x14, 0x26, 0x13, 0x0A, 0x13, + 0x0A, 0x03, 0x1B, 0x02, 0x0A, 0x11, 0x13, 0x11, 0x1E, 0x0F, + 0x11, 0x29, 0x16, 0x11, 0x23, 0x11, 0x0A, 0x10, 0x06, 0x07, + 0x0A, 0x0A, 0x0F, 0x1D, 0x0F, 0x07, 0x16, 0x0D, 0x09, 0x01, + 0x0A, 0x03, 0x05, 0x0A, 0x12, 0x25, 0x13, 0x0F, 0x1F, 0x10, + 0x13, 0x28, 0x14, 0x11, 0x23, 0x10, 0x14, 0x27, 0x13, 0x05, + 0x04, 0x01, 0x01, 0x07, 0x01, 0x02, 0x33, 0x0A, 0x23, 0x46, + 0x23, 0x24, 0x4B, 0x24, 0x10, 0x24, 0x10, 0x14, 0x27, 0x14, + 0x11, 0x21, 0x10, 0x09, 0x11, 0x09, 0x03, 0x09, 0x02, 0x07, + 0x03, 0x0A, 0x0F, 0x1E, 0x0F, 0x04, 0x04, 0x03, 0x03, 0x0E, + 0x05, 0x10, 0x22, 0x10, 0x27, 0x4D, 0x26, 0x12, 0x25, 0x12, + 0x0E, 0x2F, 0x09, 0x09, 0x04, 0x03, 0x0C, 0x06, 0x04, 0x3F, + 0x06, 0x14, 0x28, 0x13, 0x15, 0x2B, 0x15, 0x08, 0x19, 0x08, + 0x03, 0x06, 0x01, 0x04, 0x03, 0x05, 0x13, 0x2B, 0x07, 0x4C, + 0x99, 0x99, 0x99, 0x4D, 0x16, 0x2C, 0x16, 0x07, 0x0E, 0x07, + 0x0A, 0x07, 0x08, 0x06, 0x0F, 0x07, 0x0A, 0x09, 0x07, 0x09, + 0x07, 0x0E, 0x13, 0x27, 0x13, 0x20, 0x40, 0x20, 0x02, 0x0C, + 0x08, 0x06, 0x0D, 0x08, 0x05, 0x15, 0x01, 0x06, 0x07, 0x03, + 0x01, 0x05, 0x04, 0x03, 0x04, 0x09, 0x02, 0x04, 0x07, 0x04, + 0x05, 0x02, 0x04, 0x06, 0x0E, 0x06, 0x23, 0x45, 0x22, 0x22, + 0x44, 0x22, 0x06, 0x0E, 0x03, 0x03, 0x01, 0x01, 0x02, 0x0B, + 0xF9, 0x45, 0x10, 0x3E, 0x09, 0x13, 0x2A, 0x07, 0x03, 0x08, + 0x0F, 0x0B, 0x11, 0x0C, 0x14, 0x28, 0x13, 0x01, 0xDD, 0x05, + 0x02, 0x03, 0x05, 0x02, 0x04, 0x04, 0x05, 0x04, 0x0A, 0x1C, + 0x0E, 0x08, 0x0D, 0x0E, 0x0B, 0x13, 0x04, 0x04, 0x09, 0x02, + 0x07, 0x09, 0x01, 0x01, 0x01, 0x01, 0x02, 0x04, 0x06, 0x05, + 0x01, 0x04, 0x02, 0x01, 0x01, 0x01, 0x01, 0x07, 0x02, 0x07, + 0x03, 0x01, 0x09, 0x26, 0x4C, 0x26, 0x0C, 0x76, 0x03, 0x09, + 0x0E, 0x05, 0x02, 0x0A, 0x0F, 0x12, 0x24, 0x12, 0x1C, 0x38, + 0x1C, 0x0E, 0x1B, 0x0E, 0x01, 0x01, 0x02, 0x06, 0x0E, 0x02, + 0x05, 0x09, 0x05, 0x04, 0x03, 0x0B, 0x16, 0x0A, 0x09, 0x19, + 0x02, 0x03, 0x04, 0x02, 0x02, 0x01, 0x01, 0x01, 0x04, 0x05, + 0x08, 0x04, 0x01, 0x06, 0x01, 0x0D, 0x02, 0x21, 0x41, 0x1F, + 0x07, 0x0B, 0x03, 0x03, 0x15, 0x05, 0x0C, 0x17, 0x0C, 0x02, + 0x03, 0x01, 0x0D, 0x23, 0x0E, 0x15, 0x1E, 0x13, 0x11, 0x36, + 0x0C, 0x04, 0x0B, 0x16, 0x0C, 0x1C, 0x34, 0x1A, 0x0B, 0x0E, + 0x01, 0x1E, 0x17, 0x0C, 0x14, 0x0C, 0x07, 0x12, 0x08, 0x12, + 0x23, 0x13, 0x07, 0x0E, 0x07, 0x05, 0x0B, 0x05, 0x02, 0x04, + 0x03, 0x09, 0x11, 0x09, 0x0A, 0x04, 0x02, 0x05, 0x01, 0x01, + 0x1B, 0x05, 0x0B, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x02, + 0x03, 0x0C, 0x1F, 0x07, 0x05, 0x10, 0x09, 0x0B, 0x1A, 0x01, + 0x01, 0x01, 0x07, 0x09, 0x0B, 0x06, 0x08, 0x09, 0x04, 0x01, + 0x18, 0x04, 0x02, 0x08, 0x07, 0x06, 0x07, 0x05, 0x09, 0x18, + 0x0B, 0x03, 0x05, 0x03, 0x03, 0x02, 0x01, 0x02, 0x02, 0x03, + 0x04, 0x01, 0x01, 0x34, 0x07, 0x0A, 0x12, 0x0A, 0x08, 0x0E, + 0x07, 0x0C, 0x04, 0x03, 0x01, 0x02, 0x02, 0x05, 0x02, 0x08, + 0x02, 0x01, 0x02, 0x01, 0x01, 0x02, 0x01, 0x05, 0x0A, 0x03, + 0x07, 0x07, 0x02, 0x08, 0x02, 0x04, 0x04, 0x01, 0x03, 0x01, + 0x01, 0x02, 0x07, 0x04, 0x01, 0x01, 0x02, 0x0D, 0x0D, 0x2E, + 0x0E, 0x0A, 0x13, 0x08, 0x07, 0x03, 0x01, 0x02, 0x03, 0x07, + 0x04, 0x02, 0x06, 0x04, 0x02, 0x0D, 0x03, 0x06, 0x02, 0x0B, + 0x16, 0x16, 0x08, 0x01, 0x02, 0x02, 0x05, 0x05, 0x04, 0x01, + 0x08, 0x0D, 0x03, 0x09, 0x27, 0x08, 0x06, 0x0E, 0x02, 0x01, + 0x04, 0x04, 0x11, 0x20, 0x12, 0x06, 0x0E, 0x07, 0x06, 0x01, + 0x03, 0x03, 0x0B, 0x04, 0x05, 0x03, 0x02, 0x01, 0x05, 0x04, + 0x13, 0x05, 0x09, 0x16, 0x03, 0x8B, 0x10, 0x12, 0x01, 0x16, + 0x0A, 0x16, 0x03, 0x02, 0x05, 0x06, 0x05, 0x00, 0x00, 0x08, + 0x00, 0x4A, 0x00, 0x5A, 0x0A, 0xD5, 0x03, 0x26, 0x00, 0x06, + 0x00, 0x0C, 0x01, 0xE7, 0x01, 0xFA, 0x02, 0x0D, 0x02, 0x1F, + 0x02, 0x28, 0x02, 0x2E, 0x00, 0x00, 0x01, 0x22, 0x27, 0x31, + 0x30, 0x31, 0x16, 0x37, 0x22, 0x06, 0x23, 0x32, 0x36, 0x25, + 0x06, 0x26, 0x23, 0x22, 0x26, 0x07, 0x2E, 0x01, 0x07, 0x22, + 0x06, 0x07, 0x36, 0x06, 0x23, 0x22, 0x06, 0x27, 0x06, 0x26, + 0x23, 0x2A, 0x01, 0x27, 0x06, 0x16, 0x07, 0x3C, 0x01, 0x33, + 0x0E, 0x01, 0x35, 0x34, 0x06, 0x33, 0x22, 0x26, 0x27, 0x16, + 0x26, 0x33, 0x22, 0x06, 0x07, 0x36, 0x22, 0x17, 0x2E, 0x01, + 0x23, 0x32, 0x06, 0x37, 0x22, 0x06, 0x17, 0x26, 0x36, 0x23, + 0x22, 0x06, 0x35, 0x34, 0x06, 0x07, 0x34, 0x22, 0x17, 0x2E, + 0x01, 0x27, 0x32, 0x06, 0x35, 0x2B, 0x01, 0x34, 0x06, 0x35, + 0x34, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, + 0x01, 0x15, 0x16, 0x06, 0x23, 0x22, 0x16, 0x15, 0x1C, 0x01, + 0x15, 0x14, 0x06, 0x17, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x23, 0x22, 0x06, 0x07, 0x2A, 0x01, 0x23, 0x0E, + 0x01, 0x07, 0x06, 0x14, 0x15, 0x06, 0x16, 0x07, 0x06, 0x22, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x16, 0x26, 0x27, + 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x27, 0x26, 0x06, 0x23, 0x2E, 0x01, 0x23, 0x22, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x23, + 0x2A, 0x01, 0x23, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x36, 0x23, 0x22, 0x26, 0x07, 0x06, 0x16, 0x15, 0x14, 0x06, + 0x27, 0x16, 0x06, 0x27, 0x32, 0x16, 0x15, 0x06, 0x36, 0x35, + 0x3C, 0x01, 0x35, 0x34, 0x26, 0x27, 0x34, 0x26, 0x35, 0x34, + 0x26, 0x33, 0x32, 0x36, 0x07, 0x16, 0x36, 0x17, 0x16, 0x06, + 0x15, 0x1C, 0x01, 0x15, 0x30, 0x17, 0x16, 0x35, 0x34, 0x16, + 0x37, 0x36, 0x26, 0x23, 0x22, 0x06, 0x27, 0x26, 0x36, 0x37, + 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x16, + 0x36, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x26, 0x07, 0x06, 0x36, 0x33, 0x32, 0x36, 0x37, + 0x3E, 0x01, 0x33, 0x32, 0x16, 0x37, 0x36, 0x26, 0x37, 0x36, + 0x16, 0x33, 0x32, 0x36, 0x23, 0x22, 0x06, 0x27, 0x26, 0x36, + 0x33, 0x32, 0x36, 0x33, 0x36, 0x16, 0x17, 0x16, 0x06, 0x33, + 0x32, 0x36, 0x17, 0x16, 0x06, 0x17, 0x16, 0x36, 0x33, 0x37, + 0x36, 0x27, 0x26, 0x06, 0x23, 0x26, 0x06, 0x27, 0x26, 0x36, + 0x35, 0x34, 0x26, 0x37, 0x36, 0x16, 0x33, 0x32, 0x16, 0x17, + 0x1E, 0x01, 0x35, 0x34, 0x16, 0x33, 0x32, 0x06, 0x33, 0x32, + 0x16, 0x37, 0x36, 0x26, 0x17, 0x26, 0x36, 0x17, 0x26, 0x36, + 0x33, 0x32, 0x06, 0x17, 0x1E, 0x01, 0x37, 0x36, 0x26, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x06, 0x33, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x32, 0x33, 0x32, 0x36, 0x33, 0x32, 0x06, + 0x17, 0x16, 0x06, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x26, 0x23, + 0x22, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x22, 0x23, 0x22, 0x06, 0x07, 0x06, 0x16, 0x33, 0x3A, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x37, 0x36, 0x26, 0x37, + 0x36, 0x16, 0x33, 0x32, 0x16, 0x17, 0x26, 0x16, 0x17, 0x16, + 0x06, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, + 0x07, 0x16, 0x06, 0x15, 0x14, 0x16, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x26, 0x33, 0x32, 0x16, 0x37, 0x1E, 0x01, 0x17, 0x3C, + 0x01, 0x35, 0x16, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, + 0x17, 0x14, 0x16, 0x07, 0x05, 0x34, 0x26, 0x23, 0x22, 0x26, + 0x07, 0x14, 0x06, 0x17, 0x16, 0x06, 0x33, 0x3A, 0x01, 0x37, + 0x26, 0x36, 0x35, 0x05, 0x34, 0x26, 0x07, 0x0E, 0x01, 0x17, + 0x06, 0x36, 0x07, 0x0E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, + 0x01, 0x35, 0x13, 0x26, 0x06, 0x15, 0x22, 0x26, 0x23, 0x2E, + 0x01, 0x07, 0x06, 0x16, 0x07, 0x32, 0x16, 0x33, 0x34, 0x36, + 0x05, 0x22, 0x26, 0x07, 0x3A, 0x01, 0x33, 0x3C, 0x01, 0x05, + 0x22, 0x23, 0x07, 0x32, 0x36, 0x06, 0xA4, 0x01, 0x01, 0x01, + 0x11, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, 0x20, 0x07, 0x3A, + 0x12, 0x13, 0x9A, 0x01, 0x08, 0x0A, 0x0B, 0x0A, 0x07, 0x0C, + 0x05, 0x5B, 0x0E, 0x24, 0x53, 0x22, 0x07, 0x8E, 0x13, 0x36, + 0x6C, 0x36, 0x01, 0x03, 0x07, 0x01, 0x05, 0x12, 0x17, 0x04, + 0x09, 0x04, 0x0A, 0x06, 0x17, 0x02, 0x0A, 0x02, 0x08, 0x05, + 0x1B, 0x05, 0x08, 0x02, 0x0A, 0x02, 0x16, 0x06, 0x01, 0x13, + 0x08, 0x0B, 0x02, 0x0C, 0x01, 0x0C, 0x11, 0x05, 0x1B, 0x09, + 0x0A, 0x04, 0x0C, 0x01, 0x22, 0x25, 0x24, 0x31, 0x15, 0x04, + 0x0D, 0x15, 0x05, 0x02, 0x01, 0x01, 0x01, 0x08, 0x01, 0x03, + 0x0A, 0x06, 0x02, 0x05, 0x07, 0x2E, 0x5B, 0x2E, 0x08, 0x04, + 0x03, 0x0B, 0x07, 0x09, 0x05, 0x1D, 0x3C, 0x1D, 0x0D, 0x12, + 0x03, 0x01, 0x01, 0x05, 0x02, 0x02, 0x0F, 0x03, 0x05, 0x05, + 0x03, 0x06, 0x0F, 0x04, 0x14, 0x62, 0x0F, 0x12, 0x15, 0x05, + 0x02, 0x0C, 0x04, 0x14, 0x22, 0x13, 0x0A, 0x14, 0x0D, 0x0E, + 0x3C, 0x17, 0x15, 0x22, 0x16, 0x1B, 0x2A, 0x13, 0x06, 0x0B, + 0x06, 0x0F, 0x09, 0x06, 0x07, 0x3C, 0x1F, 0x1C, 0x39, 0x1C, + 0x15, 0x4A, 0x14, 0x04, 0x05, 0x04, 0x06, 0x0A, 0x0E, 0x0A, + 0x23, 0x05, 0x03, 0x03, 0x0E, 0x19, 0x02, 0x09, 0x0C, 0x01, + 0x01, 0x20, 0x10, 0x02, 0x02, 0x03, 0x08, 0x09, 0x09, 0x23, + 0x08, 0x12, 0x13, 0x05, 0x03, 0x03, 0x21, 0x21, 0x61, 0x05, + 0x02, 0x0C, 0x0E, 0x17, 0x26, 0x06, 0x05, 0x03, 0x09, 0x07, + 0x17, 0x0A, 0x21, 0x42, 0x22, 0x27, 0x52, 0x26, 0x16, 0x42, + 0x07, 0x02, 0x13, 0x05, 0x09, 0x16, 0x0C, 0x06, 0x12, 0x08, + 0x14, 0x62, 0x03, 0x03, 0x6B, 0x15, 0x07, 0x0D, 0x04, 0x0E, + 0x36, 0x15, 0x13, 0x2D, 0x0B, 0x04, 0x01, 0x04, 0x05, 0x15, + 0x07, 0x0E, 0x09, 0x11, 0x02, 0x1D, 0x02, 0x06, 0x08, 0x07, + 0x0F, 0x23, 0x0C, 0x08, 0x0D, 0x05, 0x07, 0x04, 0x10, 0x0A, + 0x21, 0x07, 0x03, 0x03, 0x02, 0x0F, 0x3E, 0x12, 0x02, 0x03, + 0x03, 0x0B, 0x17, 0x0D, 0x2C, 0x61, 0x2A, 0x09, 0x03, 0x03, + 0x03, 0x05, 0x46, 0x07, 0x23, 0x44, 0x1E, 0x06, 0x0F, 0x37, + 0x0C, 0x0F, 0x0E, 0x11, 0x0A, 0x18, 0x0A, 0x05, 0x05, 0x10, + 0x03, 0x02, 0x09, 0x03, 0x0B, 0x0E, 0x18, 0x04, 0x05, 0x06, + 0x24, 0x16, 0x03, 0x08, 0x0C, 0x0D, 0x1B, 0x0E, 0x12, 0x0A, + 0x17, 0x17, 0x22, 0x15, 0x19, 0x34, 0x1A, 0x17, 0x1E, 0x1E, + 0x1A, 0x35, 0x1B, 0x0F, 0x01, 0x02, 0x04, 0x04, 0x12, 0x0F, + 0x28, 0x57, 0x27, 0x0D, 0x1D, 0x0D, 0x0F, 0x1D, 0x0D, 0x10, + 0x1F, 0x10, 0x19, 0x02, 0x04, 0x03, 0x01, 0x0F, 0x3C, 0x76, + 0x3B, 0x25, 0x49, 0x25, 0x10, 0x06, 0x04, 0x02, 0x03, 0x05, + 0x06, 0x2F, 0x0B, 0x09, 0x10, 0x06, 0x01, 0x20, 0x05, 0x0A, + 0x05, 0x1B, 0x25, 0x48, 0x25, 0x18, 0x2F, 0x18, 0x09, 0x13, + 0x12, 0x09, 0x01, 0x09, 0x1C, 0x34, 0x67, 0x34, 0x0D, 0x06, + 0x0B, 0x03, 0x17, 0x01, 0x02, 0x09, 0x03, 0x18, 0x50, 0x24, + 0x09, 0x12, 0x11, 0x0E, 0x41, 0x03, 0x02, 0x02, 0xF6, 0x11, + 0x05, 0x11, 0x0B, 0x1B, 0x06, 0x02, 0x02, 0x03, 0x03, 0x13, + 0x0E, 0x19, 0x08, 0x02, 0x02, 0x03, 0x7D, 0x2C, 0x19, 0x11, + 0x02, 0x05, 0x20, 0x12, 0x1A, 0x06, 0x01, 0x12, 0x0F, 0x4C, + 0x0C, 0x07, 0x02, 0xAB, 0x0B, 0x3A, 0x0A, 0x15, 0x0B, 0x01, + 0x42, 0x09, 0x05, 0x03, 0x01, 0x30, 0x5E, 0x30, 0x03, 0x02, + 0x44, 0x0B, 0x1B, 0x04, 0x0A, 0x16, 0x0A, 0xFE, 0xE9, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0xA9, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x2E, 0x0D, 0x05, 0x05, 0x0F, 0x05, 0x02, 0x01, 0x06, + 0x01, 0x16, 0x07, 0x06, 0x08, 0x10, 0x09, 0x01, 0x0C, 0x18, + 0x05, 0x01, 0x01, 0x01, 0x02, 0x06, 0x0D, 0x11, 0x06, 0x02, + 0x01, 0x01, 0x04, 0x02, 0x01, 0x01, 0x02, 0x04, 0x01, 0x01, + 0x07, 0x02, 0x02, 0x07, 0x0D, 0x0A, 0x06, 0x07, 0x02, 0x01, + 0x02, 0x02, 0x03, 0x02, 0x06, 0x03, 0x09, 0x17, 0x0E, 0x05, + 0x0A, 0x02, 0x04, 0x07, 0x0C, 0x05, 0x1A, 0x06, 0x05, 0x0C, + 0x02, 0x0B, 0x0E, 0x17, 0x05, 0x11, 0x23, 0x12, 0x1E, 0x49, + 0x1B, 0x2B, 0x0A, 0x0F, 0x7E, 0x08, 0x01, 0x01, 0x0D, 0x0B, + 0x03, 0x0A, 0x01, 0x01, 0x0B, 0x04, 0x02, 0x03, 0x04, 0x0D, + 0x06, 0x0A, 0x18, 0x0B, 0x24, 0x17, 0x04, 0x06, 0x05, 0x12, + 0x08, 0x0B, 0x06, 0x20, 0x36, 0x1E, 0x0F, 0x1D, 0x12, 0x14, + 0x03, 0x01, 0x0B, 0x02, 0x0C, 0x04, 0x0C, 0x06, 0x10, 0x0F, + 0x15, 0x1D, 0x07, 0x08, 0x08, 0x02, 0x0C, 0x03, 0x04, 0x04, + 0x03, 0x07, 0x05, 0x22, 0x07, 0x19, 0x02, 0x01, 0x0A, 0x0C, + 0x03, 0x01, 0x01, 0x0A, 0x44, 0x0B, 0x1B, 0x37, 0x1B, 0x18, + 0x2E, 0x16, 0x08, 0x14, 0x05, 0x07, 0x0E, 0x01, 0x0B, 0x02, + 0x02, 0x0E, 0x08, 0x18, 0x08, 0x0A, 0x12, 0x09, 0x04, 0x05, + 0x10, 0x1F, 0x22, 0x1C, 0x0F, 0x02, 0x03, 0x12, 0x11, 0x58, + 0x07, 0x05, 0x01, 0x04, 0x02, 0x01, 0x05, 0x1B, 0x09, 0x13, + 0x07, 0x0B, 0x1E, 0x0A, 0x05, 0x0F, 0x02, 0x07, 0x11, 0x19, + 0x17, 0x07, 0x10, 0x04, 0x0F, 0x4F, 0x03, 0x0B, 0x03, 0x10, + 0x03, 0x04, 0x02, 0x0C, 0x02, 0x02, 0x07, 0x0D, 0x05, 0x01, + 0x02, 0x02, 0x02, 0x08, 0x02, 0x04, 0x02, 0x11, 0x01, 0x08, + 0x07, 0x21, 0x21, 0x05, 0x0F, 0x16, 0x01, 0x06, 0x06, 0x01, + 0x32, 0x09, 0x03, 0x19, 0x03, 0x05, 0x07, 0x03, 0x05, 0x01, + 0x08, 0x10, 0x0E, 0x05, 0x14, 0x02, 0x02, 0x02, 0x0F, 0x04, + 0x08, 0x0E, 0x01, 0x10, 0x07, 0x09, 0x11, 0x11, 0x12, 0x0A, + 0x02, 0x0B, 0x12, 0x06, 0x06, 0x06, 0x0B, 0x06, 0x04, 0x01, + 0x07, 0x0C, 0x11, 0x29, 0x12, 0x09, 0x12, 0x09, 0x11, 0x02, + 0x05, 0x08, 0x03, 0x0B, 0x03, 0x04, 0x08, 0x03, 0x03, 0x01, + 0x11, 0x0F, 0x2A, 0x07, 0x0C, 0x07, 0x0A, 0x04, 0x07, 0x04, + 0x06, 0x06, 0x14, 0x0E, 0x06, 0x0D, 0x12, 0x0E, 0x04, 0x08, + 0x16, 0x11, 0x1A, 0x07, 0x0B, 0x12, 0x12, 0x02, 0x04, 0x04, + 0x03, 0x05, 0x03, 0x0D, 0x02, 0x05, 0x0C, 0x06, 0x14, 0x05, + 0x4A, 0x0F, 0x04, 0x01, 0x05, 0x0F, 0x1F, 0x0F, 0x0E, 0x07, + 0x06, 0x0D, 0x21, 0x0F, 0x47, 0x20, 0x0C, 0x13, 0x0C, 0x1E, + 0x12, 0x02, 0x50, 0x08, 0x0E, 0x31, 0x09, 0x07, 0x01, 0x09, + 0x06, 0x10, 0x0C, 0x01, 0x63, 0x0A, 0x15, 0x04, 0x01, 0x07, + 0x10, 0x09, 0x05, 0x1F, 0x08, 0x01, 0x05, 0x24, 0x41, 0x02, + 0x08, 0x01, 0x04, 0xBA, 0x01, 0x01, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x62, 0x00, 0x8D, 0x0D, 0x2B, 0x02, 0xF3, 0x00, 0xA4, + 0x00, 0xB2, 0x00, 0x00, 0x01, 0x2F, 0x01, 0x35, 0x21, 0x35, + 0x37, 0x17, 0x35, 0x17, 0x33, 0x2F, 0x02, 0x0F, 0x02, 0x23, + 0x35, 0x32, 0x36, 0x3F, 0x01, 0x27, 0x23, 0x07, 0x15, 0x17, + 0x15, 0x0F, 0x01, 0x23, 0x27, 0x0F, 0x02, 0x23, 0x07, 0x0E, + 0x01, 0x1D, 0x01, 0x17, 0x15, 0x1F, 0x01, 0x3F, 0x02, 0x33, + 0x15, 0x23, 0x0E, 0x01, 0x0F, 0x03, 0x23, 0x15, 0x0F, 0x01, + 0x21, 0x27, 0x2E, 0x01, 0x23, 0x21, 0x0F, 0x03, 0x23, 0x07, + 0x0E, 0x01, 0x1D, 0x01, 0x07, 0x15, 0x1F, 0x01, 0x33, 0x3F, + 0x03, 0x33, 0x17, 0x37, 0x32, 0x36, 0x35, 0x37, 0x33, 0x1F, + 0x05, 0x3F, 0x04, 0x33, 0x37, 0x1E, 0x01, 0x17, 0x3F, 0x02, + 0x3E, 0x01, 0x33, 0x15, 0x25, 0x35, 0x3E, 0x01, 0x3F, 0x03, + 0x17, 0x0E, 0x01, 0x23, 0x2E, 0x01, 0x2B, 0x01, 0x22, 0x06, + 0x15, 0x06, 0x16, 0x1F, 0x02, 0x33, 0x37, 0x2F, 0x01, 0x37, + 0x21, 0x37, 0x35, 0x3F, 0x01, 0x34, 0x26, 0x2F, 0x01, 0x35, + 0x23, 0x35, 0x21, 0x37, 0x3E, 0x01, 0x35, 0x27, 0x05, 0x23, + 0x22, 0x26, 0x35, 0x34, 0x36, 0x3B, 0x01, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x0D, 0x27, 0x04, 0x06, 0xF8, 0x92, 0x37, 0x21, + 0xE0, 0x07, 0x02, 0x05, 0x26, 0x46, 0x4B, 0x37, 0xA7, 0x02, + 0x05, 0x01, 0x03, 0x0B, 0x02, 0x5F, 0x02, 0x20, 0x32, 0x64, + 0x2E, 0x41, 0x37, 0x18, 0x06, 0x02, 0x02, 0x02, 0x04, 0x02, + 0x38, 0x41, 0x37, 0x1D, 0x24, 0x61, 0x03, 0x03, 0x01, 0x0B, + 0x25, 0x2D, 0x02, 0x06, 0x09, 0xFE, 0xC8, 0x1F, 0x04, 0x0A, + 0x04, 0xFE, 0xED, 0x09, 0x06, 0x03, 0x02, 0x1E, 0x67, 0x0B, + 0x0C, 0x06, 0x03, 0x03, 0x08, 0x1C, 0x25, 0x23, 0x17, 0x4C, + 0x28, 0x0D, 0x03, 0x04, 0x0C, 0x97, 0x16, 0x22, 0x21, 0x2B, + 0x4F, 0x51, 0x36, 0x10, 0x0E, 0x08, 0x01, 0x09, 0x05, 0x13, + 0x22, 0x0F, 0x35, 0x22, 0x13, 0x02, 0x0D, 0x0A, 0x01, 0x08, + 0x01, 0x0E, 0x0C, 0x37, 0x35, 0x1D, 0xDF, 0x0A, 0x13, 0x09, + 0x03, 0x12, 0x0E, 0x04, 0x07, 0x07, 0x04, 0x01, 0x06, 0x0F, + 0x05, 0x2F, 0x05, 0x08, 0x05, 0x05, 0x01, 0xD9, 0x06, 0x02, + 0x02, 0x05, 0x05, 0x0D, 0x5A, 0x04, 0xC8, 0x04, 0x07, 0x07, + 0x04, 0xF6, 0xF3, 0x40, 0x0D, 0x0E, 0x0E, 0x0D, 0x40, 0x0E, + 0x0D, 0x0D, 0x02, 0x26, 0x0C, 0x0C, 0x05, 0x1A, 0x01, 0x05, + 0x04, 0x0E, 0x84, 0x03, 0x05, 0x06, 0x08, 0x08, 0x06, 0x02, + 0x02, 0x04, 0x20, 0x06, 0x12, 0x06, 0x13, 0x03, 0x01, 0x04, + 0x04, 0x03, 0x03, 0x02, 0x02, 0x06, 0x05, 0x1F, 0x31, 0x04, + 0x06, 0x03, 0x06, 0x07, 0x04, 0x1D, 0x01, 0x03, 0x01, 0x03, + 0x07, 0x08, 0x06, 0x1D, 0x1D, 0x1F, 0x05, 0x05, 0x07, 0x03, + 0x02, 0x03, 0x07, 0x05, 0x09, 0x05, 0x4C, 0x67, 0x84, 0x14, + 0x03, 0x05, 0x08, 0x06, 0x04, 0x08, 0x08, 0x04, 0x05, 0x4A, + 0x10, 0x20, 0x22, 0x0F, 0x0D, 0x0A, 0x06, 0x17, 0x2B, 0x2F, + 0x23, 0x03, 0x0C, 0x0D, 0x01, 0x05, 0x12, 0x0F, 0x03, 0x03, + 0x53, 0x1C, 0x50, 0x02, 0x05, 0x03, 0x0F, 0x0F, 0x08, 0x03, + 0x04, 0x05, 0x04, 0x04, 0x07, 0x07, 0x08, 0x16, 0x0D, 0x23, + 0x06, 0x11, 0x09, 0x03, 0x0C, 0x0D, 0x04, 0x03, 0x09, 0x0A, + 0x0E, 0x04, 0x0D, 0x4E, 0x15, 0x06, 0x0A, 0x10, 0x06, 0x0F, + 0xE8, 0x0F, 0x0E, 0x0C, 0x0C, 0x0C, 0x0C, 0x0E, 0x0F, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x52, 0x00, 0xDA, 0x08, 0x53, + 0x02, 0xA9, 0x00, 0xA8, 0x00, 0x00, 0x01, 0x3E, 0x01, 0x37, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, + 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x27, 0x26, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x35, 0x2E, 0x01, + 0x27, 0x26, 0x36, 0x37, 0x36, 0x26, 0x37, 0x34, 0x36, 0x37, + 0x34, 0x36, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, + 0x36, 0x26, 0x35, 0x34, 0x36, 0x17, 0x1E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, + 0x15, 0x14, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x08, 0x14, 0x10, 0x20, 0x0F, + 0x1C, 0x3C, 0x25, 0x1A, 0x3E, 0x20, 0x13, 0x28, 0x14, 0x37, + 0x6F, 0x38, 0x4A, 0x95, 0x4B, 0x0E, 0x1C, 0x0E, 0x03, 0x13, + 0x03, 0x02, 0x05, 0x02, 0x05, 0x10, 0x0D, 0x1F, 0x48, 0x17, + 0x0A, 0x1A, 0x0A, 0x04, 0x10, 0x06, 0x05, 0x04, 0x02, 0x02, + 0x10, 0x07, 0x1C, 0x21, 0x01, 0x02, 0x02, 0x18, 0x0C, 0x14, + 0x26, 0x13, 0x17, 0x2E, 0x17, 0x39, 0x71, 0x39, 0x3E, 0x7D, + 0x3E, 0x12, 0x25, 0x12, 0x15, 0x17, 0x09, 0x05, 0x11, 0x0A, + 0x06, 0x02, 0x01, 0x01, 0x01, 0x04, 0x0D, 0x02, 0x04, 0x07, + 0x0C, 0x05, 0x01, 0x01, 0x01, 0x01, 0x03, 0x05, 0x0B, 0x12, + 0x05, 0x0A, 0x18, 0x14, 0x13, 0x27, 0x13, 0x3E, 0x7C, 0x3E, + 0x39, 0x72, 0x39, 0x16, 0x2D, 0x16, 0x14, 0x27, 0x13, 0x06, + 0x0A, 0x06, 0x08, 0x03, 0x01, 0x02, 0x02, 0x2B, 0x1C, 0x0F, + 0x01, 0x0B, 0x07, 0x10, 0x02, 0x03, 0x09, 0x08, 0x02, 0x06, + 0x02, 0x01, 0x01, 0x16, 0x06, 0x13, 0x26, 0x13, 0x22, 0x43, + 0x22, 0x39, 0x73, 0x39, 0x3A, 0x74, 0x3A, 0x20, 0x42, 0x21, + 0x16, 0x2E, 0x16, 0x1C, 0x39, 0x1D, 0x02, 0x05, 0x01, 0x05, + 0x02, 0x24, 0x46, 0x1C, 0x14, 0x1B, 0x0A, 0x06, 0x0A, 0x02, + 0x04, 0x0D, 0x01, 0x02, 0x02, 0x13, 0x04, 0x0D, 0x15, 0x08, + 0x12, 0x14, 0x19, 0x0C, 0x30, 0x11, 0x06, 0x04, 0x03, 0x03, + 0x0C, 0x05, 0x08, 0x04, 0x01, 0x04, 0x28, 0x1C, 0x0F, 0x20, + 0x0F, 0x11, 0x04, 0x01, 0x03, 0x06, 0x03, 0x03, 0x02, 0x02, + 0x03, 0x08, 0x03, 0x03, 0x05, 0x06, 0x02, 0x04, 0x01, 0x02, + 0x19, 0x10, 0x08, 0x0D, 0x0A, 0x06, 0x13, 0x08, 0x10, 0x20, + 0x10, 0x09, 0x0B, 0x09, 0x0F, 0x20, 0x0A, 0x05, 0x16, 0x07, + 0x08, 0x10, 0x08, 0x07, 0x10, 0x06, 0x0C, 0x13, 0x08, 0x10, + 0x15, 0x02, 0x02, 0x03, 0x02, 0x06, 0x06, 0x03, 0x03, 0x09, + 0x03, 0x02, 0x02, 0x03, 0x03, 0x06, 0x03, 0x01, 0x01, 0x01, + 0x01, 0x10, 0x05, 0x0E, 0x20, 0x0F, 0x1B, 0x2D, 0x04, 0x02, + 0x18, 0x06, 0x05, 0x03, 0x0B, 0x0D, 0x22, 0x0A, 0x03, 0x04, + 0x03, 0x03, 0x0C, 0x03, 0x07, 0x02, 0x0A, 0x05, 0x05, 0x05, + 0x02, 0x02, 0x03, 0x01, 0x01, 0x05, 0x01, 0x02, 0x05, 0x02, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x53, 0x00, 0xD4, 0x08, 0x54, + 0x02, 0xAB, 0x01, 0x20, 0x00, 0x00, 0x01, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x0E, 0x01, 0x27, 0x30, + 0x2B, 0x01, 0x06, 0x26, 0x27, 0x26, 0x06, 0x23, 0x22, 0x26, + 0x07, 0x06, 0x26, 0x27, 0x30, 0x31, 0x22, 0x23, 0x14, 0x06, + 0x23, 0x22, 0x26, 0x27, 0x26, 0x06, 0x27, 0x2E, 0x01, 0x07, + 0x06, 0x26, 0x27, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, + 0x23, 0x22, 0x26, 0x35, 0x22, 0x23, 0x31, 0x0E, 0x01, 0x27, + 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x35, 0x36, 0x34, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x27, 0x26, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x14, 0x07, 0x22, 0x06, 0x17, + 0x22, 0x17, 0x33, 0x14, 0x16, 0x15, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x36, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x32, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x07, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x17, + 0x1E, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x37, 0x36, + 0x16, 0x17, 0x31, 0x33, 0x36, 0x32, 0x17, 0x16, 0x36, 0x37, + 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x36, + 0x16, 0x17, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x15, 0x16, 0x36, + 0x33, 0x32, 0x16, 0x17, 0x16, 0x32, 0x37, 0x36, 0x16, 0x17, + 0x32, 0x33, 0x31, 0x36, 0x32, 0x17, 0x16, 0x36, 0x33, 0x32, + 0x16, 0x17, 0x16, 0x32, 0x37, 0x36, 0x16, 0x17, 0x30, 0x3B, + 0x01, 0x3E, 0x01, 0x17, 0x16, 0x14, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x2E, 0x01, 0x27, 0x07, 0xE5, 0x20, 0x43, 0x21, + 0x33, 0x67, 0x33, 0x3E, 0x7B, 0x3E, 0x04, 0x0B, 0x03, 0x01, + 0x01, 0x02, 0x0D, 0x03, 0x08, 0x0A, 0x09, 0x09, 0x0B, 0x08, + 0x02, 0x0D, 0x03, 0x01, 0x01, 0x03, 0x06, 0x04, 0x04, 0x01, + 0x07, 0x0C, 0x0B, 0x06, 0x10, 0x03, 0x04, 0x0B, 0x03, 0x04, + 0x07, 0x05, 0x02, 0x03, 0x07, 0x02, 0x07, 0x06, 0x07, 0x0A, + 0x03, 0x01, 0x08, 0x02, 0x01, 0x06, 0x01, 0x05, 0x04, 0x01, + 0x01, 0x01, 0x0A, 0x05, 0x03, 0x02, 0x09, 0x0D, 0x1B, 0x0D, + 0x09, 0x0F, 0x0A, 0x05, 0x0A, 0x06, 0x05, 0x02, 0x01, 0x04, + 0x04, 0x09, 0x04, 0x02, 0x02, 0x04, 0x0A, 0x16, 0x0B, 0x06, + 0x19, 0x1E, 0x11, 0x25, 0x13, 0x43, 0x85, 0x42, 0x33, 0x66, + 0x32, 0x1D, 0x3A, 0x1C, 0x0C, 0x12, 0x0B, 0x10, 0x2A, 0x0E, + 0x0B, 0x13, 0x04, 0x02, 0x03, 0x01, 0x01, 0x03, 0x0B, 0x01, + 0x09, 0x01, 0x03, 0x03, 0x01, 0x01, 0x03, 0x01, 0x06, 0x1D, + 0x1E, 0x17, 0x27, 0x10, 0x09, 0x14, 0x0B, 0x10, 0x23, 0x11, + 0x43, 0x86, 0x43, 0x15, 0x2A, 0x15, 0x0F, 0x1D, 0x0F, 0x10, + 0x20, 0x11, 0x09, 0x11, 0x09, 0x08, 0x0D, 0x06, 0x16, 0x03, + 0x10, 0x0B, 0x17, 0x0C, 0x05, 0x03, 0x02, 0x09, 0x11, 0x09, + 0x01, 0x01, 0x04, 0x08, 0x08, 0x10, 0x08, 0x06, 0x08, 0x06, + 0x0E, 0x1B, 0x0E, 0x09, 0x01, 0x04, 0x06, 0x08, 0x01, 0x01, + 0x03, 0x0D, 0x03, 0x05, 0x05, 0x02, 0x03, 0x0A, 0x06, 0x06, + 0x07, 0x01, 0x06, 0x04, 0x01, 0x06, 0x09, 0x02, 0x01, 0x03, + 0x05, 0x05, 0x05, 0x06, 0x0C, 0x09, 0x06, 0x09, 0x02, 0x03, + 0x07, 0x01, 0x03, 0x0D, 0x01, 0x01, 0x01, 0x02, 0x0E, 0x02, + 0x07, 0x0C, 0x09, 0x06, 0x08, 0x03, 0x02, 0x08, 0x01, 0x03, + 0x0D, 0x01, 0x01, 0x01, 0x01, 0x0A, 0x05, 0x01, 0x04, 0x07, + 0x0E, 0x06, 0x1C, 0x38, 0x1C, 0x35, 0x6A, 0x34, 0x1F, 0x3E, + 0x1E, 0x38, 0x77, 0x2C, 0x18, 0x3A, 0x1D, 0x01, 0xF4, 0x09, + 0x0F, 0x03, 0x05, 0x0A, 0x0F, 0x01, 0x10, 0x10, 0x01, 0x0F, + 0x05, 0x16, 0x16, 0x05, 0x10, 0x01, 0x0F, 0x04, 0x0D, 0x0E, + 0x03, 0x05, 0x19, 0x03, 0x01, 0x18, 0x0D, 0x10, 0x0B, 0x0A, + 0x03, 0x14, 0x0D, 0x04, 0x0A, 0x04, 0x05, 0x0B, 0x01, 0x02, + 0x09, 0x05, 0x03, 0x04, 0x04, 0x02, 0x0D, 0x0E, 0x03, 0x07, + 0x10, 0x0D, 0x09, 0x01, 0x0C, 0x03, 0x02, 0x03, 0x02, 0x03, + 0x02, 0x06, 0x0A, 0x15, 0x0A, 0x0C, 0x1A, 0x0C, 0x05, 0x19, + 0x01, 0x03, 0x04, 0x03, 0x20, 0x3F, 0x11, 0x09, 0x0C, 0x01, + 0x02, 0x04, 0x03, 0x02, 0x08, 0x02, 0x01, 0x07, 0x03, 0x01, + 0x0F, 0x04, 0x06, 0x02, 0x0A, 0x08, 0x15, 0x0D, 0x06, 0x0E, + 0x06, 0x05, 0x0F, 0x03, 0x23, 0x02, 0x01, 0x04, 0x09, 0x05, + 0x08, 0x10, 0x08, 0x1B, 0x2A, 0x04, 0x03, 0x22, 0x0E, 0x08, + 0x04, 0x03, 0x04, 0x02, 0x02, 0x04, 0x01, 0x01, 0x01, 0x01, + 0x07, 0x01, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, 0x09, 0x05, + 0x13, 0x3A, 0x18, 0x03, 0x06, 0x04, 0x01, 0x0F, 0x04, 0x1A, + 0x33, 0x19, 0x02, 0x04, 0x03, 0x08, 0x01, 0x01, 0x01, 0x0A, + 0x02, 0x01, 0x04, 0x04, 0x09, 0x0A, 0x13, 0x04, 0x0F, 0x0F, + 0x04, 0x0A, 0x02, 0x05, 0x05, 0x01, 0x02, 0x0A, 0x05, 0x04, + 0x0A, 0x03, 0x0E, 0x13, 0x04, 0x03, 0x0E, 0x0E, 0x03, 0x05, + 0x16, 0x07, 0x06, 0x05, 0x06, 0x0F, 0x0A, 0x0A, 0x0F, 0x0F, + 0x05, 0x16, 0x08, 0x05, 0x05, 0x06, 0x0F, 0x0A, 0x0A, 0x06, + 0x11, 0x0E, 0x04, 0x05, 0x03, 0x02, 0x03, 0x04, 0x08, 0x22, + 0x26, 0x14, 0x18, 0x08, 0x00, 0x00, 0x00, 0x04, 0x00, 0x55, + 0x00, 0x3E, 0x0C, 0x0F, 0x03, 0x42, 0x01, 0x8A, 0x01, 0x9D, + 0x01, 0xA6, 0x01, 0xB2, 0x00, 0x00, 0x01, 0x34, 0x26, 0x23, + 0x2A, 0x01, 0x23, 0x2A, 0x03, 0x23, 0x2A, 0x03, 0x23, 0x2A, + 0x01, 0x23, 0x22, 0x26, 0x35, 0x3C, 0x01, 0x35, 0x3C, 0x01, + 0x35, 0x34, 0x36, 0x27, 0x26, 0x06, 0x23, 0x22, 0x26, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x36, + 0x26, 0x35, 0x34, 0x36, 0x27, 0x26, 0x06, 0x23, 0x22, 0x14, + 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x23, 0x2A, 0x01, 0x23, + 0x2A, 0x01, 0x23, 0x22, 0x36, 0x35, 0x34, 0x36, 0x27, 0x26, + 0x06, 0x23, 0x22, 0x16, 0x07, 0x06, 0x26, 0x07, 0x0E, 0x01, + 0x07, 0x14, 0x06, 0x17, 0x16, 0x36, 0x17, 0x1E, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x06, 0x07, 0x06, 0x22, 0x23, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x23, 0x22, 0x06, 0x27, 0x26, 0x36, 0x37, + 0x36, 0x34, 0x35, 0x34, 0x36, 0x35, 0x2E, 0x01, 0x23, 0x2A, + 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x2E, 0x01, 0x07, + 0x0E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, + 0x01, 0x07, 0x06, 0x16, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, + 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x37, 0x36, 0x32, 0x37, + 0x06, 0x16, 0x35, 0x34, 0x26, 0x27, 0x3C, 0x01, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x32, 0x17, 0x16, 0x36, 0x35, + 0x34, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x36, 0x17, 0x16, + 0x36, 0x33, 0x32, 0x16, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x14, 0x15, + 0x14, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x26, 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x35, 0x1E, 0x01, 0x33, 0x3A, 0x02, 0x36, + 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x33, 0x3A, 0x02, 0x16, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x06, 0x17, 0x14, 0x16, 0x37, 0x14, 0x06, 0x17, 0x22, + 0x06, 0x15, 0x06, 0x16, 0x33, 0x06, 0x14, 0x15, 0x14, 0x06, + 0x07, 0x06, 0x14, 0x15, 0x14, 0x16, 0x17, 0x16, 0x36, 0x37, + 0x06, 0x16, 0x17, 0x22, 0x06, 0x17, 0x16, 0x36, 0x33, 0x32, + 0x36, 0x37, 0x3E, 0x01, 0x27, 0x36, 0x26, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x27, + 0x2E, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, 0x27, 0x26, + 0x36, 0x35, 0x34, 0x36, 0x35, 0x34, 0x26, 0x37, 0x16, 0x3A, + 0x01, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x16, 0x32, 0x33, 0x36, + 0x16, 0x35, 0x3C, 0x01, 0x35, 0x01, 0x0E, 0x01, 0x23, 0x22, + 0x06, 0x07, 0x22, 0x26, 0x27, 0x26, 0x36, 0x37, 0x36, 0x16, + 0x33, 0x32, 0x36, 0x07, 0x25, 0x26, 0x36, 0x37, 0x1C, 0x01, + 0x17, 0x06, 0x26, 0x17, 0x36, 0x26, 0x35, 0x3C, 0x01, 0x35, + 0x26, 0x16, 0x33, 0x0E, 0x01, 0x0C, 0x0F, 0x08, 0x0D, 0x23, + 0x6E, 0x23, 0x3C, 0x79, 0x79, 0x79, 0x3C, 0x43, 0x86, 0x86, + 0x86, 0x43, 0x0F, 0x1E, 0x0F, 0x0A, 0x02, 0x07, 0x10, 0x12, + 0x31, 0x13, 0x0D, 0x33, 0x09, 0x07, 0x17, 0x0A, 0x0E, 0x20, + 0x0E, 0x38, 0x70, 0x39, 0x04, 0x02, 0x04, 0x02, 0x06, 0x3E, + 0x0A, 0x0D, 0x04, 0x0D, 0x18, 0x0D, 0x21, 0x42, 0x20, 0x08, + 0x01, 0x02, 0x03, 0x07, 0x37, 0x0D, 0x10, 0x0D, 0x05, 0x06, + 0x40, 0x0D, 0x09, 0x0C, 0x01, 0x03, 0x04, 0x06, 0x2C, 0x10, + 0x14, 0x30, 0x17, 0x0D, 0x1C, 0x0E, 0x02, 0x01, 0x01, 0x02, + 0x0E, 0x03, 0x12, 0x23, 0x11, 0x0B, 0x1C, 0x0D, 0x0E, 0x21, + 0x10, 0x0F, 0x1F, 0x0F, 0x0D, 0x1B, 0x0F, 0x0B, 0x3F, 0x06, + 0x03, 0x0A, 0x01, 0x01, 0x04, 0x02, 0x12, 0x0C, 0x1E, 0x3D, + 0x1E, 0x25, 0x4A, 0x25, 0x0D, 0x29, 0x0B, 0x0A, 0x04, 0x01, + 0x01, 0x03, 0x02, 0x03, 0x09, 0x01, 0x0D, 0x20, 0x0D, 0x04, + 0x06, 0x04, 0x06, 0x0D, 0x06, 0x13, 0x27, 0x13, 0x05, 0x12, + 0x03, 0x05, 0x03, 0x0F, 0x11, 0x1A, 0x33, 0x1A, 0x05, 0x6A, + 0x08, 0x01, 0x05, 0x0D, 0x07, 0x07, 0x07, 0x3C, 0x79, 0x3C, + 0x08, 0x0F, 0x07, 0x07, 0x04, 0x09, 0x05, 0x29, 0x02, 0x05, + 0x19, 0x06, 0x06, 0x05, 0x07, 0x08, 0x07, 0x04, 0x0B, 0x0A, + 0x16, 0x0B, 0x04, 0x0C, 0x02, 0x01, 0x0C, 0x0C, 0x03, 0x05, + 0x0A, 0x03, 0x03, 0x0C, 0x02, 0x03, 0x0F, 0x04, 0x09, 0x3A, + 0x13, 0x09, 0x20, 0x0A, 0x05, 0x17, 0x01, 0x04, 0x07, 0x02, + 0x01, 0x04, 0x06, 0x05, 0x07, 0x04, 0x03, 0x0B, 0x02, 0x06, + 0x03, 0x36, 0x6B, 0x6C, 0x6B, 0x35, 0x05, 0x11, 0x03, 0x07, + 0x0F, 0x05, 0x05, 0x12, 0x07, 0x07, 0x0A, 0x0A, 0x3E, 0x7C, + 0x7C, 0x7B, 0x3E, 0x32, 0x63, 0x31, 0x0A, 0x01, 0x01, 0x09, + 0x0C, 0x03, 0x04, 0x12, 0x06, 0x01, 0x0C, 0x13, 0x01, 0x14, + 0x04, 0x06, 0x01, 0x0D, 0x10, 0x27, 0x11, 0x07, 0x22, 0x02, + 0x0E, 0x06, 0x05, 0x04, 0x2C, 0x08, 0x09, 0x07, 0x05, 0x04, + 0x0B, 0x08, 0x06, 0x0C, 0x05, 0x05, 0x07, 0x04, 0x05, 0x11, + 0x0D, 0x01, 0x02, 0x03, 0x02, 0x04, 0x01, 0x04, 0x02, 0x01, + 0x06, 0x03, 0x02, 0x01, 0x36, 0x6C, 0x6B, 0x6C, 0x36, 0x3E, + 0x7C, 0x3E, 0x0B, 0x16, 0x0B, 0x16, 0x0C, 0xF5, 0xAF, 0x02, + 0x1B, 0x05, 0x06, 0x07, 0x05, 0x03, 0x1B, 0x03, 0x02, 0x03, + 0x01, 0x07, 0x2B, 0x0A, 0x09, 0x10, 0x02, 0x02, 0x06, 0x01, + 0x0C, 0x05, 0x0B, 0x0A, 0x11, 0x44, 0x01, 0x09, 0x03, 0x3D, + 0x0A, 0x05, 0x21, 0x02, 0x68, 0x07, 0x01, 0x04, 0x0B, 0x13, + 0x27, 0x13, 0x0A, 0x13, 0x09, 0x0A, 0x0C, 0x05, 0x06, 0x06, + 0x05, 0x0A, 0x07, 0x0A, 0x05, 0x07, 0x09, 0x0F, 0x1D, 0x0E, + 0x06, 0x11, 0x05, 0x0A, 0x05, 0x27, 0x0B, 0x07, 0x0F, 0x08, + 0x04, 0x07, 0x11, 0x07, 0x06, 0x13, 0x05, 0x0B, 0x05, 0x2F, + 0x08, 0x0C, 0x0A, 0x04, 0x03, 0x0B, 0x0B, 0x0C, 0x2C, 0x0C, + 0x10, 0x05, 0x01, 0x01, 0x01, 0x05, 0x02, 0x01, 0x01, 0x03, + 0x07, 0x05, 0x14, 0x09, 0x09, 0x10, 0x07, 0x07, 0x0D, 0x05, + 0x05, 0x05, 0x08, 0x08, 0x04, 0x0A, 0x04, 0x03, 0x0A, 0x05, + 0x08, 0x15, 0x07, 0x0E, 0x08, 0x04, 0x05, 0x04, 0x14, 0x0A, + 0x04, 0x0B, 0x05, 0x05, 0x07, 0x05, 0x01, 0x05, 0x01, 0x01, + 0x04, 0x04, 0x07, 0x20, 0x09, 0x0B, 0x17, 0x0B, 0x28, 0x4E, + 0x28, 0x13, 0x28, 0x14, 0x12, 0x0B, 0x01, 0x01, 0x01, 0x13, + 0x03, 0x17, 0x0A, 0x0B, 0x09, 0x06, 0x0B, 0x06, 0x0C, 0x04, + 0x02, 0x03, 0x1A, 0x32, 0x1A, 0x03, 0x06, 0x03, 0x03, 0x09, + 0x02, 0x02, 0x04, 0x0A, 0x18, 0x06, 0x08, 0x12, 0x06, 0x04, + 0x02, 0x01, 0x03, 0x02, 0x01, 0x23, 0x07, 0x06, 0x0C, 0x07, + 0x03, 0x14, 0x02, 0x02, 0x14, 0x05, 0x06, 0x0C, 0x06, 0x07, + 0x14, 0x08, 0x0B, 0x15, 0x0B, 0x14, 0x11, 0x07, 0x04, 0x09, + 0x01, 0x01, 0x09, 0x04, 0x0D, 0x20, 0x0D, 0x0E, 0x0E, 0x0E, + 0x0A, 0x10, 0x09, 0x06, 0x0F, 0x07, 0x01, 0x01, 0x01, 0x20, + 0x04, 0x0A, 0x14, 0x0A, 0x0A, 0x15, 0x09, 0x08, 0x0D, 0x01, + 0x0D, 0x08, 0x08, 0x17, 0x04, 0x11, 0x28, 0x0F, 0x0B, 0x0F, + 0x12, 0x0A, 0x05, 0x09, 0x04, 0x03, 0x02, 0x03, 0x05, 0x13, + 0x08, 0x0C, 0x0C, 0x02, 0x02, 0x04, 0x01, 0x0A, 0x3D, 0x0C, + 0x3A, 0x0A, 0x09, 0x04, 0x02, 0x06, 0x05, 0x19, 0x04, 0x0B, + 0x0D, 0x07, 0x07, 0x11, 0x09, 0x0B, 0x34, 0x02, 0x04, 0x11, + 0x05, 0x04, 0x07, 0x03, 0x07, 0x0E, 0x0A, 0x0A, 0x14, 0x0B, + 0x06, 0x13, 0x05, 0x04, 0x13, 0x07, 0x14, 0x24, 0x15, 0x11, + 0x22, 0x11, 0x01, 0x01, 0x01, 0x01, 0x02, 0x08, 0x09, 0x28, + 0x09, 0xFE, 0xFD, 0x07, 0x0E, 0x07, 0x02, 0x01, 0x04, 0x03, + 0x1B, 0x02, 0x07, 0x04, 0x01, 0x0B, 0x2F, 0x09, 0x0A, 0x04, + 0x0B, 0x17, 0x06, 0x04, 0x0B, 0x07, 0x07, 0x03, 0x06, 0x05, + 0x08, 0x05, 0x0F, 0x04, 0x16, 0x15, 0x00, 0x05, 0x00, 0x62, + 0x00, 0xA4, 0x0A, 0x6A, 0x02, 0xDA, 0x01, 0x0B, 0x01, 0x1E, + 0x01, 0x4A, 0x01, 0x50, 0x01, 0x56, 0x00, 0x00, 0x01, 0x32, + 0x36, 0x37, 0x3E, 0x01, 0x35, 0x31, 0x35, 0x34, 0x26, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x22, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x06, + 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x03, 0x23, 0x2A, 0x01, 0x23, + 0x22, 0x26, 0x07, 0x06, 0x26, 0x27, 0x26, 0x06, 0x27, 0x26, + 0x36, 0x27, 0x2A, 0x01, 0x15, 0x16, 0x06, 0x23, 0x2A, 0x01, + 0x23, 0x2A, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x15, + 0x14, 0x16, 0x15, 0x26, 0x36, 0x27, 0x26, 0x22, 0x07, 0x22, + 0x26, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x26, 0x23, 0x26, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x37, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x15, 0x1E, 0x01, 0x17, 0x14, 0x16, 0x15, 0x14, 0x06, 0x17, + 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x0E, 0x01, + 0x15, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3A, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x16, 0x36, 0x17, + 0x16, 0x32, 0x37, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x33, 0x36, + 0x16, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x33, 0x3A, 0x03, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, + 0x32, 0x36, 0x37, 0x36, 0x26, 0x27, 0x26, 0x06, 0x27, 0x26, + 0x16, 0x37, 0x05, 0x06, 0x26, 0x27, 0x26, 0x22, 0x27, 0x2E, + 0x01, 0x37, 0x36, 0x16, 0x17, 0x3A, 0x01, 0x17, 0x16, 0x06, + 0x07, 0x25, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x27, 0x22, 0x26, + 0x23, 0x06, 0x26, 0x37, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, + 0x01, 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x33, 0x1E, 0x01, 0x17, 0x15, 0x25, 0x32, 0x16, 0x33, 0x06, + 0x27, 0x23, 0x2A, 0x01, 0x23, 0x36, 0x16, 0x0A, 0x35, 0x0A, + 0x13, 0x09, 0x0D, 0x02, 0x03, 0x08, 0x09, 0x0C, 0x06, 0x0C, + 0x1E, 0x10, 0x06, 0x0D, 0x07, 0x09, 0x03, 0x02, 0x02, 0x08, + 0x07, 0x06, 0x0D, 0x08, 0x36, 0x6D, 0x35, 0x38, 0x70, 0x37, + 0x2D, 0x5A, 0x5A, 0x5A, 0x2D, 0x2D, 0x59, 0x2D, 0x2A, 0x54, + 0x2A, 0x10, 0x06, 0x03, 0x02, 0x24, 0x09, 0x03, 0x06, 0x06, + 0x03, 0x0E, 0x01, 0x02, 0x08, 0x0A, 0x13, 0x09, 0x2C, 0x58, + 0x2C, 0x17, 0x2D, 0x16, 0x06, 0x04, 0x01, 0x0A, 0x03, 0x06, + 0x06, 0x16, 0x08, 0x0B, 0x19, 0x0A, 0x02, 0x02, 0x02, 0x03, + 0x05, 0x03, 0x09, 0x10, 0x05, 0x05, 0x11, 0x07, 0x02, 0x02, + 0x0B, 0x05, 0x0C, 0x01, 0x2C, 0x58, 0x2D, 0x2B, 0x58, 0x2C, + 0x16, 0x2D, 0x17, 0x08, 0x0D, 0x06, 0x06, 0x0C, 0x07, 0x15, + 0x2A, 0x15, 0x09, 0x27, 0x01, 0x01, 0x01, 0x01, 0x03, 0x09, + 0x11, 0x1E, 0x0F, 0x0F, 0x26, 0x0B, 0x06, 0x08, 0x03, 0x04, + 0x09, 0x05, 0x09, 0x15, 0x10, 0x2A, 0x53, 0x2A, 0x02, 0x01, + 0x0A, 0x15, 0x0A, 0x06, 0x1B, 0x03, 0x08, 0x08, 0x06, 0x0B, + 0x17, 0x0B, 0x08, 0x18, 0x01, 0x1E, 0x0B, 0x10, 0x20, 0x11, + 0x14, 0x29, 0x15, 0x13, 0x17, 0x04, 0x08, 0x0C, 0x08, 0x09, + 0x12, 0x09, 0x05, 0x0D, 0x0E, 0x10, 0x23, 0x0F, 0x0B, 0x16, + 0x0B, 0x08, 0x11, 0x08, 0x0E, 0x16, 0x08, 0x0A, 0x11, 0x10, + 0x0F, 0x1E, 0x0F, 0x0B, 0x18, 0x0B, 0x08, 0x11, 0x08, 0x0F, + 0x17, 0x0F, 0x14, 0x2C, 0x15, 0x11, 0x25, 0x11, 0x13, 0x2C, + 0x14, 0x15, 0x2A, 0x15, 0x2D, 0x5A, 0x2C, 0x2D, 0x58, 0x2D, + 0x16, 0x2C, 0x17, 0x09, 0x14, 0x09, 0x09, 0x10, 0x0A, 0x2C, + 0x59, 0x59, 0x59, 0x2D, 0x2D, 0x59, 0x2D, 0x18, 0x2E, 0x18, + 0x0C, 0x11, 0x02, 0x02, 0x0B, 0x0E, 0x0B, 0x21, 0x06, 0x03, + 0x1B, 0x04, 0xF9, 0x2F, 0x0A, 0x2C, 0x0D, 0x0A, 0x15, 0x08, + 0x06, 0x03, 0x02, 0x05, 0x34, 0x12, 0x09, 0x16, 0x06, 0x08, + 0x04, 0x03, 0x06, 0x7A, 0x4F, 0x9A, 0x4F, 0x27, 0x4F, 0x27, + 0x10, 0x20, 0x10, 0x0A, 0x0D, 0x0A, 0x04, 0x14, 0x06, 0x08, + 0x12, 0x08, 0x14, 0x27, 0x14, 0x27, 0x4F, 0x28, 0x26, 0x4E, + 0x26, 0x0A, 0x14, 0x0A, 0x03, 0x0A, 0x01, 0x01, 0x01, 0x01, + 0x05, 0x0D, 0x05, 0x04, 0x04, 0x03, 0xF9, 0x6A, 0x01, 0x02, + 0x01, 0x03, 0x01, 0x42, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, + 0x4D, 0x03, 0x02, 0x04, 0x02, 0x0B, 0x1D, 0x08, 0x09, 0x02, + 0x03, 0x06, 0x08, 0x0D, 0x15, 0x09, 0x03, 0x07, 0x0F, 0x06, + 0x0A, 0x14, 0x08, 0x07, 0x01, 0x01, 0x04, 0x03, 0x02, 0x03, + 0x01, 0x0E, 0x0D, 0x0F, 0x0D, 0x06, 0x03, 0x0F, 0x01, 0x05, + 0x09, 0x05, 0x01, 0x06, 0x05, 0x0B, 0x05, 0x05, 0x10, 0x09, + 0x08, 0x01, 0x01, 0x07, 0x01, 0x0B, 0x03, 0x01, 0x03, 0x07, + 0x07, 0x1E, 0x01, 0x19, 0x05, 0x02, 0x11, 0x06, 0x04, 0x08, + 0x04, 0x04, 0x08, 0x04, 0x02, 0x04, 0x02, 0x01, 0x02, 0x06, + 0x05, 0x06, 0x01, 0x04, 0x05, 0x03, 0x01, 0x02, 0x0C, 0x2C, + 0x56, 0x2C, 0x17, 0x2F, 0x17, 0x0A, 0x36, 0x04, 0x06, 0x0E, + 0x07, 0x06, 0x0F, 0x0C, 0x07, 0x14, 0x08, 0x0A, 0x12, 0x09, + 0x0E, 0x10, 0x04, 0x09, 0x15, 0x08, 0x04, 0x09, 0x05, 0x01, + 0x02, 0x01, 0x02, 0x06, 0x0F, 0x1D, 0x0D, 0x15, 0x2A, 0x14, + 0x0E, 0x22, 0x10, 0x0F, 0x0D, 0x03, 0x05, 0x06, 0x04, 0x04, + 0x08, 0x05, 0x05, 0x17, 0x08, 0x13, 0x1E, 0x10, 0x13, 0x25, + 0x13, 0x0B, 0x27, 0x04, 0x04, 0x01, 0x01, 0x01, 0x01, 0x05, + 0x15, 0x0A, 0x0B, 0x14, 0x03, 0x03, 0x02, 0x01, 0x02, 0x05, + 0x03, 0x02, 0x08, 0x01, 0x01, 0x14, 0x03, 0x03, 0x04, 0x02, + 0x02, 0x04, 0x06, 0x06, 0x01, 0x01, 0x01, 0x01, 0x04, 0x03, + 0x01, 0x01, 0x03, 0x03, 0x05, 0x16, 0x0B, 0x0E, 0x1F, 0x05, + 0x04, 0x09, 0x0D, 0x08, 0x02, 0x01, 0x91, 0x0D, 0x03, 0x01, + 0x01, 0x08, 0x05, 0x10, 0x08, 0x18, 0x01, 0x01, 0x08, 0x0A, + 0x16, 0x0B, 0x81, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x07, 0x0B, 0x05, 0x02, 0x01, 0x02, 0x02, 0x02, 0x01, 0x02, + 0x02, 0x01, 0x04, 0x04, 0x06, 0x8C, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x5E, 0x00, 0xBB, + 0x09, 0xE8, 0x02, 0xC6, 0x00, 0xAC, 0x00, 0xC5, 0x00, 0x00, + 0x01, 0x3C, 0x01, 0x35, 0x2A, 0x01, 0x26, 0x22, 0x23, 0x2A, + 0x03, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x26, 0x06, + 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, + 0x23, 0x22, 0x26, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x15, + 0x14, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x1C, 0x01, 0x15, 0x30, 0x33, + 0x32, 0x35, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x16, + 0x06, 0x33, 0x3A, 0x01, 0x17, 0x26, 0x36, 0x33, 0x32, 0x26, + 0x37, 0x3E, 0x01, 0x15, 0x14, 0x36, 0x33, 0x32, 0x36, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x06, 0x33, 0x16, 0x32, 0x33, 0x36, + 0x16, 0x33, 0x3A, 0x03, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x32, 0x17, 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, + 0x26, 0x06, 0x23, 0x22, 0x36, 0x37, 0x32, 0x16, 0x33, 0x05, + 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x37, 0x14, + 0x16, 0x33, 0x22, 0x36, 0x37, 0x36, 0x16, 0x33, 0x32, 0x16, + 0x17, 0x16, 0x06, 0x07, 0x09, 0xE8, 0x62, 0xC9, 0xCA, 0xCA, + 0x62, 0x3A, 0x72, 0x73, 0x72, 0x3A, 0x20, 0x42, 0x21, 0x09, + 0x22, 0x06, 0x08, 0x84, 0x14, 0x3F, 0x86, 0x3D, 0x14, 0x2A, + 0x10, 0x0F, 0x1F, 0x0E, 0x0E, 0x1A, 0x0E, 0x0B, 0x18, 0x0E, + 0x0B, 0x18, 0x0A, 0x0F, 0x23, 0x10, 0x15, 0x2D, 0x16, 0x1C, + 0x24, 0x14, 0x07, 0x01, 0x09, 0x04, 0x22, 0x02, 0x07, 0x16, + 0x11, 0x2C, 0x17, 0x20, 0x15, 0x08, 0x04, 0x11, 0x07, 0x20, + 0x5B, 0x35, 0x01, 0x01, 0x27, 0x1E, 0x10, 0x0A, 0x14, 0x0E, + 0x2D, 0x6A, 0x2A, 0x1D, 0x44, 0x25, 0x0E, 0x1F, 0x10, 0x06, + 0x1D, 0x0B, 0x0A, 0x18, 0x0B, 0x1D, 0x3A, 0x1D, 0x12, 0x2B, + 0x12, 0x02, 0x04, 0x06, 0x0B, 0x15, 0x0B, 0x01, 0x01, 0x05, + 0x11, 0x07, 0x05, 0x02, 0x45, 0x61, 0x0F, 0x32, 0x72, 0x31, + 0x0A, 0x13, 0x0A, 0x05, 0x03, 0x04, 0x0B, 0x17, 0x0B, 0x02, + 0x9F, 0x10, 0x29, 0x52, 0x51, 0x52, 0x29, 0x1F, 0x4B, 0x15, + 0x06, 0x09, 0x06, 0x0D, 0x1B, 0x15, 0x15, 0x1F, 0x09, 0x08, + 0x04, 0x04, 0x0F, 0x1E, 0x10, 0xF9, 0x16, 0x0A, 0x26, 0x0E, + 0x15, 0x31, 0x11, 0x11, 0x0C, 0x17, 0x01, 0x16, 0x04, 0x16, + 0x03, 0x0B, 0x1D, 0x0D, 0x15, 0x22, 0x08, 0x04, 0x03, 0x06, + 0x02, 0x46, 0x16, 0x36, 0x12, 0x01, 0x06, 0x03, 0x1E, 0x0C, + 0x08, 0x09, 0x09, 0x0B, 0x09, 0x07, 0x0D, 0x07, 0x07, 0x10, + 0x07, 0x05, 0x16, 0x02, 0x03, 0x13, 0x05, 0x08, 0x0D, 0x06, + 0x07, 0x0F, 0x02, 0x04, 0x11, 0x0A, 0x03, 0x07, 0x01, 0x03, + 0x07, 0x0C, 0x07, 0x18, 0x31, 0x19, 0x22, 0x4E, 0x18, 0x14, + 0x2F, 0x09, 0x0C, 0x10, 0x15, 0x0A, 0x1B, 0x0A, 0x2F, 0x51, + 0x18, 0x02, 0x04, 0x02, 0x01, 0x0E, 0x2E, 0x18, 0x0E, 0x16, + 0x08, 0x17, 0x12, 0x1D, 0x15, 0x21, 0x0A, 0x04, 0x07, 0x01, + 0x01, 0x17, 0x06, 0x05, 0x01, 0x04, 0x04, 0x01, 0x0A, 0x01, + 0x05, 0x07, 0x07, 0x02, 0x01, 0x08, 0x06, 0x1B, 0x06, 0x09, + 0x09, 0x02, 0x0B, 0x03, 0x01, 0x09, 0x01, 0x0D, 0x06, 0x03, + 0x0F, 0x03, 0x13, 0x05, 0x0C, 0x01, 0x0F, 0x1F, 0x0F, 0x07, + 0x15, 0x07, 0x01, 0x01, 0x07, 0x09, 0x01, 0xDC, 0x0E, 0x12, + 0x04, 0x07, 0x08, 0x0B, 0x0B, 0x2E, 0x10, 0x13, 0x31, 0x46, + 0x06, 0x04, 0x02, 0x03, 0x14, 0x0A, 0x13, 0x07, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x63, 0x00, 0x72, 0x07, 0x72, 0x03, 0x0D, + 0x00, 0xFE, 0x01, 0x10, 0x01, 0x24, 0x00, 0x00, 0x01, 0x34, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x36, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x34, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x34, 0x37, 0x36, 0x34, 0x37, 0x3E, 0x01, 0x33, + 0x35, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x37, 0x32, 0x36, 0x33, + 0x32, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x03, 0x33, 0x3A, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, + 0x17, 0x16, 0x32, 0x33, 0x14, 0x06, 0x17, 0x23, 0x15, 0x32, + 0x16, 0x17, 0x36, 0x32, 0x17, 0x35, 0x16, 0x06, 0x15, 0x3A, + 0x01, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, + 0x15, 0x14, 0x16, 0x07, 0x14, 0x06, 0x23, 0x2A, 0x01, 0x23, + 0x2A, 0x01, 0x23, 0x1C, 0x01, 0x15, 0x23, 0x06, 0x26, 0x23, + 0x2A, 0x01, 0x23, 0x22, 0x06, 0x07, 0x16, 0x06, 0x23, 0x15, + 0x23, 0x1C, 0x01, 0x15, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x22, 0x23, 0x22, 0x26, 0x27, 0x22, 0x06, 0x23, + 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x35, 0x34, 0x26, + 0x35, 0x34, 0x26, 0x27, 0x2A, 0x01, 0x23, 0x22, 0x06, 0x23, + 0x22, 0x06, 0x23, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x34, 0x06, 0x23, 0x06, 0x26, + 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x37, 0x23, 0x14, 0x06, + 0x15, 0x14, 0x06, 0x07, 0x0E, 0x03, 0x07, 0x0E, 0x01, 0x23, + 0x06, 0x16, 0x07, 0x06, 0x22, 0x23, 0x2A, 0x01, 0x23, 0x22, + 0x06, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x3F, 0x01, 0x25, + 0x35, 0x07, 0x1C, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x34, 0x26, 0x27, 0x07, 0x35, 0x0E, + 0x01, 0x07, 0x23, 0x14, 0x06, 0x15, 0x23, 0x14, 0x06, 0x15, + 0x0E, 0x01, 0x15, 0x33, 0x34, 0x26, 0x37, 0x01, 0xA3, 0x1A, + 0x02, 0x05, 0x0D, 0x07, 0x06, 0x1D, 0x08, 0x0B, 0x16, 0x0C, + 0x15, 0x2D, 0x14, 0x10, 0x27, 0x10, 0x08, 0x11, 0x08, 0x09, + 0x0F, 0x09, 0x06, 0x10, 0x09, 0x02, 0x11, 0x03, 0x04, 0x07, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x09, 0x04, 0x04, + 0x03, 0x02, 0x01, 0x02, 0x08, 0x08, 0x4C, 0x97, 0x4C, 0x1B, + 0x36, 0x1B, 0x07, 0x10, 0x06, 0x03, 0x05, 0x02, 0x06, 0x0A, + 0x05, 0x57, 0xAE, 0xAD, 0xAE, 0x57, 0x31, 0x63, 0x32, 0x0B, + 0x17, 0x0C, 0x02, 0x05, 0x02, 0x03, 0x06, 0x02, 0x02, 0x06, + 0x05, 0x01, 0x01, 0x04, 0x02, 0x04, 0x02, 0x03, 0x0E, 0x04, + 0x09, 0x01, 0x23, 0x47, 0x23, 0x17, 0x2F, 0x17, 0x06, 0x1E, + 0x05, 0x06, 0x02, 0x01, 0x01, 0x04, 0x08, 0x14, 0x29, 0x15, + 0x0B, 0x18, 0x0B, 0x01, 0x04, 0x30, 0x09, 0x0F, 0x1E, 0x0E, + 0x06, 0x0A, 0x05, 0x06, 0x10, 0x05, 0x25, 0x0A, 0x03, 0x08, + 0x05, 0x05, 0x11, 0x04, 0x06, 0x33, 0x0C, 0x0C, 0x1D, 0x08, + 0x21, 0x42, 0x20, 0x05, 0x09, 0x03, 0x02, 0x02, 0x01, 0x01, + 0x08, 0x02, 0x06, 0x0C, 0x04, 0x08, 0x0C, 0x11, 0x0C, 0x33, + 0x04, 0x01, 0x01, 0x18, 0x31, 0x18, 0x0D, 0x1B, 0x0D, 0x05, + 0x0B, 0x05, 0x0A, 0x02, 0x03, 0x08, 0x05, 0x05, 0x08, 0x05, + 0x03, 0x06, 0x02, 0x08, 0x01, 0x11, 0x33, 0x15, 0x0F, 0x20, + 0x0F, 0x05, 0x0D, 0x04, 0x05, 0x06, 0x05, 0x01, 0x01, 0x23, + 0x2A, 0x23, 0x01, 0x04, 0x01, 0x04, 0x05, 0x04, 0x03, 0x05, + 0x0D, 0x06, 0x24, 0x49, 0x24, 0x0D, 0x2B, 0x0B, 0x03, 0x0B, + 0x26, 0x05, 0x3F, 0x01, 0xC8, 0x61, 0x03, 0x07, 0x10, 0x0F, + 0x09, 0x1A, 0x05, 0x02, 0x0C, 0x04, 0x01, 0x01, 0x83, 0x01, + 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x04, 0x18, 0x09, + 0x01, 0x01, 0x73, 0x02, 0x32, 0x03, 0x0B, 0x15, 0x0B, 0x05, + 0x03, 0x01, 0x01, 0x05, 0x01, 0x04, 0x08, 0x07, 0x06, 0x08, + 0x0A, 0x06, 0x07, 0x04, 0x05, 0x0E, 0x05, 0x04, 0x10, 0x02, + 0x07, 0x0B, 0x05, 0x05, 0x0C, 0x06, 0x05, 0x0E, 0x05, 0x06, + 0x0D, 0x06, 0x08, 0x09, 0x06, 0x07, 0x0D, 0x05, 0x05, 0x0F, + 0x05, 0x06, 0x10, 0x01, 0x01, 0x01, 0x03, 0x03, 0x04, 0x03, + 0x04, 0x0B, 0x14, 0x0B, 0x02, 0x01, 0x01, 0x03, 0x02, 0x01, + 0x01, 0x13, 0x06, 0x03, 0x05, 0x07, 0x09, 0x09, 0x07, 0x0D, + 0x06, 0x06, 0x0E, 0x03, 0x06, 0x03, 0x0A, 0x03, 0x01, 0x03, + 0x08, 0x04, 0x03, 0x05, 0x0B, 0x05, 0x01, 0x09, 0x10, 0x09, + 0x08, 0x0D, 0x07, 0x0D, 0x09, 0x0A, 0x03, 0x06, 0x02, 0x02, + 0x01, 0x02, 0x02, 0x02, 0x02, 0x05, 0x0C, 0x08, 0x0D, 0x1B, + 0x04, 0x04, 0x09, 0x13, 0x06, 0x0B, 0x06, 0x06, 0x0C, 0x05, + 0x01, 0x02, 0x07, 0x05, 0x05, 0x05, 0x0A, 0x04, 0x05, 0x0A, + 0x05, 0x03, 0x03, 0x04, 0x01, 0x08, 0x09, 0x04, 0x03, 0x07, + 0x04, 0x08, 0x05, 0x03, 0x0B, 0x03, 0x03, 0x47, 0x55, 0x47, + 0x01, 0x09, 0x07, 0x01, 0x09, 0x04, 0x04, 0x03, 0x09, 0x03, + 0x0B, 0x05, 0x07, 0x58, 0x0A, 0x7C, 0x83, 0x01, 0x01, 0x06, + 0x0F, 0x06, 0x0C, 0x04, 0x02, 0x0A, 0x04, 0x15, 0x01, 0x01, + 0x03, 0x01, 0x12, 0x02, 0x01, 0x04, 0x02, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x02, 0x08, 0x04, 0x06, 0x0B, 0x08, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x60, 0x00, 0xA5, 0x0A, 0xDB, + 0x02, 0xDA, 0x01, 0x2A, 0x01, 0x3D, 0x00, 0x00, 0x01, 0x26, + 0x36, 0x27, 0x26, 0x06, 0x23, 0x22, 0x34, 0x27, 0x26, 0x06, + 0x07, 0x0E, 0x01, 0x15, 0x2E, 0x01, 0x23, 0x14, 0x16, 0x17, + 0x2A, 0x03, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x23, 0x2A, + 0x01, 0x23, 0x26, 0x06, 0x27, 0x2E, 0x01, 0x23, 0x26, 0x06, + 0x27, 0x26, 0x06, 0x07, 0x06, 0x22, 0x23, 0x22, 0x26, 0x23, + 0x22, 0x06, 0x37, 0x30, 0x27, 0x22, 0x17, 0x2E, 0x01, 0x07, + 0x22, 0x06, 0x37, 0x36, 0x22, 0x23, 0x26, 0x36, 0x07, 0x22, + 0x26, 0x17, 0x26, 0x22, 0x23, 0x14, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x06, 0x26, 0x27, 0x26, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x23, 0x22, 0x06, 0x27, 0x2A, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x22, 0x23, 0x22, 0x26, 0x23, 0x06, 0x26, 0x23, 0x22, + 0x06, 0x07, 0x06, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x26, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x32, 0x36, 0x27, 0x16, 0x32, + 0x33, 0x32, 0x36, 0x37, 0x3A, 0x01, 0x37, 0x32, 0x36, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, + 0x03, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x27, 0x34, 0x36, 0x27, 0x26, 0x36, 0x37, + 0x36, 0x16, 0x33, 0x3E, 0x01, 0x33, 0x16, 0x32, 0x33, 0x2E, + 0x01, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x17, 0x15, + 0x26, 0x1F, 0x01, 0x05, 0x26, 0x16, 0x33, 0x3A, 0x01, 0x17, + 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x26, + 0x1F, 0x01, 0x0A, 0xD4, 0x05, 0x0C, 0x11, 0x0A, 0x16, 0x0A, + 0x07, 0x03, 0x06, 0x1C, 0x0A, 0x0E, 0x0B, 0x0A, 0x14, 0x0A, + 0x01, 0x01, 0x55, 0xAA, 0xAA, 0xAA, 0x55, 0x2A, 0x53, 0x29, + 0x15, 0x29, 0x15, 0x0B, 0x17, 0x0B, 0x07, 0x0F, 0x07, 0x05, + 0x07, 0x05, 0x05, 0x11, 0x04, 0x0B, 0x20, 0x0F, 0x14, 0x28, + 0x13, 0x0B, 0x16, 0x0B, 0x01, 0x0F, 0x02, 0x07, 0x07, 0x05, + 0x17, 0x30, 0x17, 0x07, 0x4F, 0x01, 0x02, 0x10, 0x03, 0x07, + 0x02, 0x0A, 0x08, 0x21, 0x04, 0x03, 0x04, 0x03, 0x1B, 0x0B, + 0x10, 0x20, 0x11, 0x08, 0x10, 0x08, 0x0A, 0x12, 0x09, 0x15, + 0x2A, 0x14, 0x0A, 0x12, 0x0A, 0x09, 0x11, 0x0A, 0x06, 0x14, + 0x02, 0x04, 0x1E, 0x07, 0x2C, 0x5A, 0x2C, 0x14, 0x28, 0x14, + 0x16, 0x2D, 0x16, 0x13, 0x24, 0x12, 0x06, 0x0B, 0x05, 0x02, + 0x03, 0x01, 0x06, 0x0C, 0x06, 0x09, 0x12, 0x0A, 0x07, 0x0C, + 0x07, 0x15, 0x1F, 0x0A, 0x04, 0x05, 0x01, 0x01, 0x01, 0x01, + 0x03, 0x01, 0x02, 0x01, 0x04, 0x02, 0x02, 0x01, 0x08, 0x09, + 0x27, 0x10, 0x05, 0x13, 0x02, 0x02, 0x18, 0x07, 0x13, 0x22, + 0x12, 0x09, 0x13, 0x09, 0x0A, 0x13, 0x0B, 0x0F, 0x1E, 0x0E, + 0x05, 0x0C, 0x06, 0x08, 0x0C, 0x07, 0x08, 0x10, 0x07, 0x0A, + 0x15, 0x0A, 0x16, 0x2C, 0x17, 0x10, 0x1A, 0x06, 0x03, 0x01, + 0x08, 0x0B, 0x16, 0x09, 0x08, 0x11, 0x08, 0x09, 0x10, 0x07, + 0x0D, 0x04, 0x05, 0x02, 0x0A, 0x02, 0x02, 0x04, 0x04, 0x0C, + 0x1B, 0x0F, 0x10, 0x22, 0x11, 0x14, 0x0E, 0x0B, 0x14, 0x50, + 0x1B, 0x0E, 0x19, 0x0E, 0x06, 0x0A, 0x06, 0x01, 0x12, 0x01, + 0x0E, 0x20, 0x0F, 0x18, 0x31, 0x19, 0x16, 0x2C, 0x16, 0x07, + 0x0F, 0x06, 0x08, 0x10, 0x0A, 0x0F, 0x21, 0x11, 0x17, 0x2F, + 0x18, 0x2E, 0x5C, 0x5C, 0x5C, 0x2F, 0x35, 0x6B, 0x36, 0x0C, + 0x17, 0x0C, 0x0C, 0x1B, 0x0B, 0x0A, 0x1F, 0x01, 0x01, 0x04, + 0x04, 0x08, 0x07, 0x07, 0x0F, 0x07, 0x0E, 0x1A, 0x0E, 0x38, + 0x71, 0x38, 0x01, 0x01, 0x01, 0x03, 0x0A, 0x01, 0x03, 0x01, + 0x05, 0x03, 0x02, 0xF9, 0x5F, 0x03, 0x2F, 0x09, 0x05, 0x0F, + 0x02, 0x02, 0x01, 0x02, 0x05, 0x2F, 0x0A, 0x08, 0x0C, 0x06, + 0x02, 0x01, 0x01, 0x02, 0x8E, 0x0A, 0x15, 0x04, 0x03, 0x02, + 0x11, 0x04, 0x0A, 0x02, 0x01, 0x01, 0x0A, 0x0F, 0x01, 0x03, + 0x02, 0x03, 0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x07, 0x01, + 0x03, 0x03, 0x09, 0x03, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, + 0x02, 0x04, 0x01, 0x01, 0x03, 0x05, 0x07, 0x01, 0x0C, 0x01, + 0x01, 0x0C, 0x01, 0x0E, 0x10, 0x06, 0x08, 0x0E, 0x05, 0x03, + 0x0A, 0x03, 0x04, 0x07, 0x04, 0x09, 0x10, 0x09, 0x04, 0x04, + 0x02, 0x03, 0x07, 0x01, 0x04, 0x06, 0x08, 0x06, 0x01, 0x05, + 0x06, 0x01, 0x01, 0x07, 0x01, 0x01, 0x04, 0x03, 0x01, 0x02, + 0x01, 0x04, 0x02, 0x02, 0x02, 0x01, 0x05, 0x0A, 0x14, 0x09, + 0x11, 0x0A, 0x09, 0x13, 0x0A, 0x17, 0x2E, 0x17, 0x16, 0x2B, + 0x16, 0x11, 0x2D, 0x10, 0x10, 0x06, 0x03, 0x01, 0x03, 0x06, + 0x09, 0x05, 0x03, 0x06, 0x11, 0x0A, 0x04, 0x07, 0x04, 0x04, + 0x0B, 0x04, 0x06, 0x0F, 0x09, 0x03, 0x08, 0x03, 0x04, 0x06, + 0x02, 0x02, 0x09, 0x03, 0x04, 0x09, 0x05, 0x09, 0x15, 0x08, + 0x06, 0x19, 0x0D, 0x06, 0x09, 0x01, 0x02, 0x0C, 0x05, 0x04, + 0x02, 0x03, 0x02, 0x08, 0x05, 0x09, 0x23, 0x0D, 0x06, 0x09, + 0x06, 0x05, 0x06, 0x04, 0x0A, 0x0B, 0x04, 0x03, 0x05, 0x01, + 0x01, 0x1D, 0x0F, 0x1A, 0x05, 0x10, 0x09, 0x17, 0x09, 0x03, + 0x0C, 0x03, 0x0A, 0x01, 0x04, 0x02, 0x01, 0x01, 0x01, 0x06, + 0x09, 0x10, 0x06, 0x09, 0x05, 0x01, 0x02, 0x01, 0x03, 0x06, + 0x0D, 0x0A, 0x07, 0x01, 0x01, 0x01, 0x05, 0x01, 0x03, 0x02, + 0x03, 0x03, 0x05, 0x0D, 0x05, 0x15, 0x09, 0x18, 0x08, 0x07, + 0x0D, 0x03, 0x02, 0x01, 0x01, 0x03, 0x01, 0x02, 0x04, 0x02, + 0x01, 0x05, 0x09, 0x10, 0x08, 0x01, 0x01, 0x0A, 0x05, 0x05, + 0x9F, 0x0B, 0x02, 0x05, 0x05, 0x13, 0x04, 0x0C, 0x03, 0x04, + 0x03, 0x1D, 0x03, 0x08, 0x04, 0x04, 0x00, 0x02, 0x00, 0x55, + 0x00, 0x0C, 0x09, 0x06, 0x03, 0x7A, 0x01, 0xB8, 0x01, 0xD1, + 0x00, 0x00, 0x01, 0x1E, 0x01, 0x07, 0x16, 0x26, 0x23, 0x06, + 0x22, 0x07, 0x2A, 0x01, 0x07, 0x22, 0x06, 0x15, 0x14, 0x16, + 0x17, 0x16, 0x06, 0x15, 0x14, 0x16, 0x27, 0x14, 0x16, 0x07, + 0x16, 0x06, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x23, 0x22, + 0x16, 0x15, 0x14, 0x16, 0x23, 0x22, 0x06, 0x35, 0x34, 0x36, + 0x35, 0x3C, 0x01, 0x35, 0x34, 0x26, 0x35, 0x34, 0x26, 0x35, + 0x3C, 0x01, 0x35, 0x34, 0x26, 0x37, 0x3E, 0x01, 0x35, 0x34, + 0x36, 0x07, 0x26, 0x34, 0x37, 0x2E, 0x01, 0x35, 0x34, 0x26, + 0x15, 0x14, 0x06, 0x07, 0x06, 0x26, 0x15, 0x14, 0x06, 0x07, + 0x06, 0x26, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x36, 0x35, 0x34, + 0x06, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x15, 0x14, 0x06, + 0x17, 0x16, 0x36, 0x17, 0x16, 0x06, 0x17, 0x16, 0x36, 0x15, + 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x1C, + 0x01, 0x15, 0x14, 0x06, 0x15, 0x14, 0x26, 0x23, 0x2A, 0x01, + 0x23, 0x22, 0x06, 0x27, 0x26, 0x06, 0x35, 0x3C, 0x01, 0x35, + 0x3C, 0x01, 0x35, 0x34, 0x36, 0x27, 0x26, 0x36, 0x37, 0x06, + 0x22, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x30, 0x0F, + 0x01, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x16, 0x07, 0x06, 0x16, 0x23, 0x22, 0x06, 0x23, 0x06, + 0x26, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x06, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x06, 0x23, 0x22, + 0x06, 0x27, 0x26, 0x36, 0x23, 0x22, 0x06, 0x27, 0x26, 0x06, + 0x23, 0x22, 0x16, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, + 0x01, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, + 0x17, 0x36, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x36, 0x33, + 0x3A, 0x01, 0x33, 0x22, 0x36, 0x15, 0x36, 0x34, 0x37, 0x36, + 0x32, 0x37, 0x36, 0x26, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, + 0x33, 0x32, 0x16, 0x17, 0x16, 0x32, 0x17, 0x1E, 0x01, 0x17, + 0x16, 0x36, 0x33, 0x32, 0x36, 0x17, 0x36, 0x16, 0x15, 0x32, + 0x16, 0x37, 0x3E, 0x01, 0x17, 0x3E, 0x01, 0x17, 0x36, 0x16, + 0x17, 0x32, 0x16, 0x33, 0x16, 0x36, 0x33, 0x32, 0x36, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x16, 0x33, 0x32, 0x36, 0x17, 0x36, + 0x16, 0x33, 0x36, 0x32, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x36, 0x37, 0x36, 0x16, 0x33, 0x32, 0x16, 0x17, 0x36, 0x16, + 0x17, 0x1E, 0x01, 0x17, 0x14, 0x36, 0x17, 0x16, 0x06, 0x15, + 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, + 0x06, 0x07, 0x06, 0x16, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, + 0x37, 0x36, 0x26, 0x37, 0x36, 0x26, 0x37, 0x34, 0x26, 0x37, + 0x34, 0x36, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, + 0x36, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x36, 0x33, 0x3A, 0x03, + 0x33, 0x05, 0x3E, 0x01, 0x37, 0x2A, 0x01, 0x23, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x08, 0xD9, 0x0B, 0x22, + 0x15, 0x06, 0x5C, 0x12, 0x48, 0x90, 0x48, 0x39, 0x74, 0x3A, + 0x03, 0x02, 0x0F, 0x03, 0x03, 0x03, 0x02, 0x14, 0x02, 0x03, + 0x10, 0x05, 0x01, 0x01, 0x13, 0x03, 0x0A, 0x0C, 0x05, 0x1E, + 0x07, 0x01, 0x13, 0x01, 0x02, 0x02, 0x07, 0x02, 0x0E, 0x04, + 0x04, 0x04, 0x09, 0x09, 0x04, 0x04, 0x02, 0x09, 0x02, 0x02, + 0x0A, 0x1B, 0x0D, 0x0D, 0x13, 0x06, 0x01, 0x01, 0x17, 0x02, + 0x26, 0x4C, 0x26, 0x06, 0x62, 0x01, 0x01, 0x02, 0x06, 0x02, + 0x04, 0x01, 0x09, 0x03, 0x08, 0x02, 0x1F, 0x0C, 0x28, 0x51, + 0x28, 0x0B, 0x22, 0x08, 0x04, 0x09, 0x03, 0x05, 0x02, 0x0C, + 0x08, 0x13, 0x25, 0x06, 0x02, 0x0C, 0x0A, 0x05, 0x0F, 0x06, + 0x0E, 0x05, 0x05, 0x04, 0x02, 0x03, 0x05, 0x03, 0x01, 0x03, + 0x05, 0x04, 0x05, 0x06, 0x03, 0x03, 0x07, 0x03, 0x0B, 0x04, + 0x16, 0x4B, 0x10, 0x04, 0x04, 0x0D, 0x04, 0x07, 0x06, 0x11, + 0x0A, 0x09, 0x0D, 0x05, 0x01, 0x01, 0x03, 0x04, 0x02, 0x07, + 0x05, 0x05, 0x2E, 0x03, 0x11, 0x49, 0x0D, 0x0A, 0x08, 0x12, + 0x0D, 0x1E, 0x0D, 0x04, 0x07, 0x05, 0x07, 0x03, 0x06, 0x2B, + 0x5F, 0x2F, 0x02, 0x07, 0x02, 0x02, 0x04, 0x03, 0x03, 0x0E, + 0x04, 0x0B, 0x1A, 0x0A, 0x0A, 0x0E, 0x09, 0x06, 0x06, 0x01, + 0x02, 0x03, 0x03, 0x1D, 0x05, 0x23, 0x09, 0x28, 0x4F, 0x28, + 0x34, 0x60, 0x34, 0x0E, 0x1B, 0x0E, 0x02, 0x09, 0x03, 0x07, + 0x05, 0x0E, 0x04, 0x06, 0x09, 0x0A, 0x08, 0x06, 0x0C, 0x07, + 0x09, 0x0D, 0x04, 0x02, 0x11, 0x05, 0x04, 0x03, 0x07, 0x0D, + 0x22, 0x0E, 0x08, 0x11, 0x02, 0x0B, 0x06, 0x18, 0x3A, 0x14, + 0x07, 0x18, 0x05, 0x07, 0x12, 0x07, 0x06, 0x37, 0x0A, 0x03, + 0x05, 0x01, 0x04, 0x09, 0x04, 0x08, 0x11, 0x08, 0x0D, 0x19, + 0x0C, 0x05, 0x08, 0x03, 0x04, 0x0E, 0x01, 0x08, 0x0C, 0x08, + 0x09, 0x10, 0x09, 0x01, 0x03, 0x02, 0x08, 0x0F, 0x06, 0x07, + 0x0D, 0x07, 0x04, 0x17, 0x0D, 0x0F, 0x1D, 0x0F, 0x08, 0x24, + 0x02, 0x02, 0x21, 0x07, 0x06, 0x13, 0x04, 0x04, 0x08, 0x05, + 0x0B, 0x0E, 0x06, 0x05, 0x0B, 0x04, 0x09, 0x60, 0x0D, 0x0B, + 0x25, 0x06, 0x0C, 0x04, 0x02, 0x01, 0x17, 0x0C, 0x0C, 0x0D, + 0x09, 0x05, 0x01, 0x06, 0x25, 0x4A, 0x25, 0x06, 0x19, 0x04, + 0x04, 0x04, 0x07, 0x0B, 0x01, 0x01, 0x01, 0x04, 0x0B, 0x01, + 0x06, 0x1E, 0x08, 0x04, 0x03, 0x06, 0x03, 0x05, 0x02, 0x41, + 0x16, 0x43, 0x87, 0x86, 0x86, 0x43, 0xF8, 0xA0, 0x02, 0x04, + 0x02, 0x35, 0x6B, 0x35, 0x01, 0x03, 0x04, 0x03, 0x0C, 0x02, + 0x05, 0x09, 0x04, 0x11, 0x1C, 0x0D, 0x08, 0x16, 0x08, 0x11, + 0x21, 0x10, 0x02, 0xB4, 0x03, 0x35, 0x01, 0x11, 0x01, 0x01, + 0x01, 0x01, 0x1D, 0x04, 0x0B, 0x03, 0x08, 0x08, 0x20, 0x0B, + 0x0C, 0x27, 0x07, 0x10, 0x24, 0x0F, 0x02, 0x6A, 0x12, 0x20, + 0x40, 0x20, 0x07, 0x36, 0x2B, 0x10, 0x01, 0x0A, 0x02, 0x08, + 0x03, 0x03, 0x06, 0x04, 0x08, 0x04, 0x08, 0x11, 0x06, 0x04, + 0x0D, 0x0A, 0x41, 0x81, 0x41, 0x07, 0x0F, 0x06, 0x05, 0x09, + 0x0A, 0x0A, 0x2D, 0x08, 0x06, 0x2F, 0x02, 0x02, 0x06, 0x05, + 0x03, 0x0D, 0x06, 0x07, 0x03, 0x04, 0x03, 0x02, 0x05, 0x02, + 0x06, 0x01, 0x07, 0x03, 0x01, 0x01, 0x02, 0x0C, 0x02, 0x0A, + 0x03, 0x02, 0x01, 0x01, 0x02, 0x03, 0x09, 0x03, 0x07, 0x01, + 0x06, 0x09, 0x11, 0x0A, 0x04, 0x01, 0x07, 0x04, 0x08, 0x04, + 0x11, 0x20, 0x10, 0x21, 0x42, 0x21, 0x10, 0x20, 0x10, 0x09, + 0x12, 0x08, 0x11, 0x03, 0x02, 0x08, 0x04, 0x03, 0x08, 0x04, + 0x08, 0x05, 0x08, 0x10, 0x07, 0x41, 0x84, 0x40, 0x14, 0x10, + 0x0E, 0x01, 0x19, 0x0A, 0x0C, 0x0A, 0x04, 0x01, 0x01, 0x02, + 0x07, 0x07, 0x0F, 0x08, 0x08, 0x10, 0x07, 0x07, 0x16, 0x05, + 0x05, 0x14, 0x05, 0x03, 0x0A, 0x05, 0x02, 0x07, 0x1D, 0x10, + 0x20, 0x0E, 0x0D, 0x23, 0x0D, 0x0B, 0x0A, 0x0B, 0x09, 0x09, + 0x05, 0x05, 0x0D, 0x0A, 0x03, 0x08, 0x03, 0x04, 0x01, 0x03, + 0x01, 0x06, 0x05, 0x02, 0x01, 0x07, 0x0C, 0x0A, 0x11, 0x02, + 0x04, 0x01, 0x07, 0x05, 0x05, 0x25, 0x48, 0x1E, 0x02, 0x02, + 0x02, 0x0D, 0x03, 0x02, 0x0A, 0x01, 0x06, 0x05, 0x08, 0x07, + 0x2A, 0x0C, 0x0D, 0x27, 0x0C, 0x0D, 0x24, 0x0E, 0x12, 0x45, + 0x09, 0x06, 0x02, 0x07, 0x0D, 0x01, 0x06, 0x03, 0x04, 0x03, + 0x02, 0x05, 0x11, 0x06, 0x0D, 0x04, 0x05, 0x04, 0x10, 0x02, + 0x08, 0x05, 0x04, 0x02, 0x07, 0x02, 0x04, 0x04, 0x02, 0x0C, + 0x04, 0x20, 0x07, 0x03, 0x08, 0x03, 0x14, 0x0E, 0x05, 0x04, + 0x05, 0x0A, 0x02, 0x02, 0x07, 0x01, 0x02, 0x01, 0x06, 0x0A, + 0x0D, 0x02, 0x03, 0x01, 0x06, 0x01, 0x02, 0x03, 0x03, 0x03, + 0x05, 0x02, 0x01, 0x0B, 0x04, 0x05, 0x0B, 0x05, 0x02, 0x09, + 0x0A, 0x08, 0x01, 0x06, 0x07, 0x08, 0x09, 0x0B, 0x0C, 0x07, + 0x0D, 0x16, 0x05, 0x02, 0x0F, 0x22, 0x03, 0x03, 0x0B, 0x0B, + 0x01, 0x05, 0x04, 0x02, 0x0B, 0x04, 0x08, 0x10, 0x09, 0x08, + 0x11, 0x08, 0x0E, 0x04, 0x02, 0x04, 0x02, 0x0A, 0x02, 0x04, + 0x02, 0x0B, 0x03, 0x03, 0x0E, 0x0A, 0x05, 0x02, 0x07, 0x01, + 0x0B, 0x01, 0x04, 0x09, 0x04, 0x02, 0x04, 0x07, 0x09, 0x01, + 0x06, 0x08, 0x0C, 0x0B, 0x1E, 0x04, 0x49, 0x01, 0x02, 0x01, + 0x09, 0x19, 0x07, 0x08, 0x03, 0x08, 0x0D, 0x1B, 0x0D, 0x0D, + 0x0D, 0x0A, 0x07, 0x0B, 0x06, 0x0C, 0x18, 0x0D, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x53, 0x00, 0x58, 0x0A, 0x33, 0x03, 0x26, + 0x01, 0x80, 0x01, 0x8D, 0x00, 0x00, 0x01, 0x32, 0x36, 0x17, + 0x1E, 0x01, 0x33, 0x32, 0x14, 0x17, 0x16, 0x36, 0x33, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x15, 0x16, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x32, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x34, 0x36, 0x37, 0x34, 0x16, 0x33, + 0x32, 0x06, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x17, 0x16, + 0x32, 0x33, 0x16, 0x32, 0x33, 0x3E, 0x01, 0x37, 0x32, 0x16, + 0x37, 0x36, 0x16, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x07, + 0x0E, 0x01, 0x23, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x23, 0x2A, + 0x01, 0x07, 0x06, 0x16, 0x33, 0x32, 0x36, 0x17, 0x16, 0x06, + 0x15, 0x14, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x26, 0x27, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x07, 0x14, 0x06, + 0x27, 0x2E, 0x01, 0x23, 0x2A, 0x01, 0x27, 0x2A, 0x01, 0x23, + 0x22, 0x06, 0x23, 0x1E, 0x01, 0x15, 0x14, 0x16, 0x27, 0x26, + 0x06, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x35, 0x2E, 0x01, + 0x35, 0x34, 0x36, 0x27, 0x26, 0x06, 0x17, 0x14, 0x16, 0x07, + 0x06, 0x16, 0x17, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x22, + 0x26, 0x27, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x17, 0x14, 0x16, 0x07, 0x0E, 0x01, 0x23, 0x06, 0x26, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, 0x3E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x3E, 0x01, 0x35, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x17, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x07, 0x0E, + 0x01, 0x23, 0x22, 0x06, 0x23, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x22, 0x06, 0x27, 0x2E, 0x01, 0x35, 0x3C, 0x01, 0x35, + 0x3C, 0x01, 0x35, 0x34, 0x36, 0x37, 0x36, 0x16, 0x33, 0x3A, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x36, 0x33, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x36, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x3A, 0x01, + 0x33, 0x3A, 0x01, 0x33, 0x32, 0x26, 0x33, 0x3A, 0x01, 0x33, + 0x3A, 0x01, 0x33, 0x3A, 0x01, 0x33, 0x16, 0x06, 0x17, 0x3A, + 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x22, + 0x06, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x1E, 0x01, + 0x17, 0x01, 0x2A, 0x01, 0x07, 0x22, 0x06, 0x17, 0x1E, 0x01, + 0x33, 0x32, 0x36, 0x27, 0x05, 0xF3, 0x09, 0x15, 0x07, 0x03, + 0x05, 0x03, 0x04, 0x02, 0x05, 0x08, 0x04, 0x0A, 0x10, 0x08, + 0x09, 0x10, 0x09, 0x04, 0x17, 0x03, 0x05, 0x05, 0x01, 0x01, + 0x02, 0x03, 0x10, 0x0D, 0x20, 0x3F, 0x20, 0x16, 0x2B, 0x16, + 0x06, 0x1C, 0x05, 0x06, 0x01, 0x08, 0x08, 0x11, 0x09, 0x0E, + 0x1D, 0x0F, 0x07, 0x0F, 0x07, 0x0E, 0x06, 0x02, 0x02, 0x11, + 0x01, 0x02, 0x01, 0x18, 0x05, 0x03, 0x01, 0x02, 0x01, 0x02, + 0x17, 0x03, 0x06, 0x0C, 0x06, 0x42, 0x84, 0x43, 0x1C, 0x3A, + 0x1D, 0x07, 0x0F, 0x07, 0x09, 0x02, 0x02, 0x02, 0x03, 0x06, + 0x05, 0x11, 0x06, 0x3C, 0x78, 0x3C, 0x2A, 0x54, 0x29, 0x09, + 0x10, 0x08, 0x06, 0x01, 0x07, 0x07, 0x17, 0x06, 0x11, 0x01, + 0x15, 0x03, 0x08, 0x0B, 0x09, 0x21, 0x44, 0x22, 0x16, 0x2A, + 0x16, 0x03, 0x14, 0x02, 0x04, 0x0A, 0x08, 0x0C, 0x15, 0x09, + 0x07, 0x0C, 0x09, 0x01, 0x02, 0x01, 0x04, 0x10, 0x05, 0x08, + 0x05, 0x06, 0x0E, 0x07, 0x0C, 0x17, 0x0B, 0x2F, 0x5C, 0x2E, + 0x0B, 0x03, 0x01, 0x09, 0x20, 0x44, 0x20, 0x13, 0x25, 0x12, + 0x0C, 0x16, 0x01, 0x01, 0x01, 0x03, 0x07, 0x10, 0x01, 0x05, + 0x07, 0x06, 0x04, 0x01, 0x01, 0x03, 0x06, 0x23, 0x0B, 0x17, + 0x2A, 0x15, 0x06, 0x0E, 0x06, 0x04, 0x08, 0x03, 0x01, 0x06, + 0x01, 0x08, 0x02, 0x01, 0x11, 0x0A, 0x0E, 0x1E, 0x0D, 0x09, + 0x11, 0x08, 0x09, 0x16, 0x09, 0x11, 0x1D, 0x0F, 0x05, 0x0A, + 0x05, 0x02, 0x09, 0x01, 0x03, 0x0B, 0x04, 0x0E, 0x05, 0x3E, + 0x7D, 0x3E, 0x1F, 0x3E, 0x1E, 0x14, 0x28, 0x13, 0x16, 0x33, + 0x01, 0x05, 0x04, 0x03, 0x0C, 0x01, 0x01, 0x08, 0x04, 0x0C, + 0x1A, 0x0C, 0x2D, 0x59, 0x2D, 0x12, 0x25, 0x12, 0x08, 0x15, + 0x08, 0x10, 0x05, 0x03, 0x0C, 0x04, 0x15, 0x05, 0x05, 0x0C, + 0x06, 0x25, 0x4C, 0x25, 0x0D, 0x1D, 0x0B, 0x0E, 0x17, 0x12, + 0x08, 0x13, 0x08, 0x3F, 0x7B, 0x3A, 0x18, 0x31, 0x1A, 0x19, + 0x32, 0x18, 0x11, 0x20, 0x10, 0x01, 0x11, 0x06, 0x0E, 0x26, + 0x10, 0x0F, 0x1D, 0x0F, 0x0A, 0x02, 0x04, 0x12, 0x23, 0x12, + 0x13, 0x25, 0x13, 0x06, 0x03, 0x01, 0x08, 0x11, 0x08, 0x0A, + 0x14, 0x0A, 0x01, 0x06, 0x01, 0x02, 0x05, 0x05, 0x10, 0x1E, + 0x0F, 0x1F, 0x3B, 0x1E, 0x0F, 0x1F, 0x0F, 0x10, 0x22, 0x0C, + 0x02, 0x10, 0x03, 0x08, 0x0E, 0x08, 0x12, 0x23, 0x12, 0x08, + 0x10, 0x08, 0x05, 0x06, 0x03, 0x05, 0x03, 0x07, 0x07, 0x16, + 0x07, 0x06, 0x06, 0x03, 0x02, 0x0E, 0x01, 0x0D, 0x17, 0x09, + 0xFE, 0xC8, 0x0A, 0x13, 0x0A, 0x0D, 0x18, 0x04, 0x04, 0x21, + 0x0E, 0x14, 0x05, 0x04, 0x03, 0x11, 0x01, 0x08, 0x02, 0x01, + 0x03, 0x01, 0x01, 0x01, 0x01, 0x08, 0x05, 0x04, 0x01, 0x03, + 0x01, 0x08, 0x03, 0x05, 0x19, 0x06, 0x09, 0x12, 0x09, 0x09, + 0x25, 0x01, 0x03, 0x03, 0x03, 0x0C, 0x01, 0x02, 0x03, 0x02, + 0x03, 0x07, 0x03, 0x02, 0x02, 0x01, 0x02, 0x0E, 0x0C, 0x0F, + 0x17, 0x0F, 0x08, 0x0F, 0x08, 0x04, 0x01, 0x38, 0x04, 0x09, + 0x13, 0x09, 0x03, 0x0D, 0x02, 0x04, 0x01, 0x01, 0x01, 0x01, + 0x02, 0x04, 0x01, 0x01, 0x11, 0x08, 0x08, 0x0D, 0x06, 0x04, + 0x02, 0x03, 0x03, 0x02, 0x01, 0x0D, 0x03, 0x03, 0x08, 0x25, + 0x0E, 0x03, 0x01, 0x02, 0x04, 0x01, 0x05, 0x01, 0x01, 0x04, + 0x01, 0x01, 0x02, 0x07, 0x10, 0x04, 0x06, 0x09, 0x08, 0x07, + 0x05, 0x04, 0x0A, 0x15, 0x0A, 0x0D, 0x14, 0x03, 0x01, 0x05, + 0x01, 0x01, 0x29, 0x4E, 0x29, 0x06, 0x77, 0x02, 0x04, 0x03, + 0x03, 0x0F, 0x48, 0x8F, 0x47, 0x05, 0x1A, 0x02, 0x05, 0x0A, + 0x08, 0x05, 0x12, 0x03, 0x02, 0x11, 0x06, 0x06, 0x14, 0x05, + 0x0A, 0x0F, 0x05, 0x0A, 0x12, 0x23, 0x11, 0x0A, 0x13, 0x0A, + 0x04, 0x0B, 0x04, 0x06, 0x08, 0x06, 0x09, 0x14, 0x01, 0x0A, + 0x04, 0x03, 0x07, 0x03, 0x04, 0x0B, 0x02, 0x18, 0x36, 0x19, + 0x08, 0x11, 0x08, 0x05, 0x0D, 0x05, 0x0B, 0x14, 0x05, 0x03, + 0x08, 0x01, 0x04, 0x09, 0x01, 0x03, 0x02, 0x04, 0x02, 0x02, + 0x12, 0x1B, 0x09, 0x11, 0x08, 0x05, 0x0E, 0x07, 0x04, 0x02, + 0x02, 0x02, 0x04, 0x02, 0x01, 0x02, 0x01, 0x02, 0x03, 0x08, + 0x24, 0x10, 0x12, 0x24, 0x12, 0x2A, 0x54, 0x2A, 0x0E, 0x07, + 0x09, 0x02, 0x03, 0x01, 0x05, 0x0B, 0x05, 0x02, 0x03, 0x08, + 0x0B, 0x1B, 0x05, 0x02, 0x02, 0x02, 0x22, 0x19, 0x0A, 0x12, + 0x05, 0x04, 0x03, 0x04, 0x02, 0x03, 0x32, 0x04, 0x0D, 0x05, + 0x04, 0x03, 0x08, 0x05, 0x04, 0x25, 0x0C, 0x02, 0x0A, 0x01, + 0x01, 0x01, 0x02, 0x02, 0x01, 0x03, 0x01, 0x02, 0x02, 0x0C, + 0x03, 0x18, 0x02, 0x05, 0x09, 0x04, 0x07, 0x07, 0x03, 0x02, + 0x03, 0x03, 0x01, 0x03, 0x03, 0x05, 0x01, 0x03, 0x03, 0x07, + 0x13, 0x09, 0x07, 0x14, 0x06, 0x01, 0x0B, 0x09, 0xFE, 0x6E, + 0x01, 0x01, 0x14, 0x13, 0x03, 0x1E, 0x0E, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x56, 0x00, 0x23, 0x04, 0xCB, 0x03, 0x5B, + 0x00, 0x0D, 0x00, 0x8D, 0x00, 0x00, 0x01, 0x23, 0x22, 0x06, + 0x1D, 0x01, 0x14, 0x16, 0x33, 0x32, 0x16, 0x37, 0x3E, 0x01, + 0x25, 0x17, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x23, 0x22, 0x26, 0x15, 0x14, 0x16, 0x27, 0x26, 0x06, 0x23, + 0x2A, 0x01, 0x07, 0x2E, 0x01, 0x35, 0x0E, 0x01, 0x2B, 0x01, + 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x14, + 0x26, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x26, 0x27, 0x26, 0x36, 0x35, 0x34, + 0x26, 0x37, 0x3E, 0x01, 0x37, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x1F, 0x01, 0x36, 0x16, 0x33, 0x32, 0x36, + 0x17, 0x2E, 0x01, 0x37, 0x34, 0x36, 0x37, 0x17, 0x3E, 0x01, + 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x32, 0x36, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x17, 0x1E, + 0x01, 0x15, 0x1E, 0x01, 0x17, 0x36, 0x16, 0x17, 0x02, 0x59, + 0x54, 0x08, 0x08, 0x08, 0x08, 0x15, 0x2F, 0x11, 0x07, 0x0F, + 0x02, 0x53, 0x08, 0x03, 0x0F, 0x06, 0x05, 0x35, 0x13, 0x0E, + 0x24, 0x10, 0x0C, 0x8A, 0x02, 0x13, 0x1D, 0x3C, 0x1D, 0x1E, + 0x39, 0x1D, 0x05, 0x05, 0x08, 0x12, 0x09, 0x75, 0x11, 0x0C, + 0x06, 0x0E, 0x10, 0x07, 0x0D, 0x0A, 0x07, 0x1E, 0x09, 0x08, + 0x0F, 0x08, 0x17, 0x2E, 0x17, 0x12, 0x24, 0x12, 0x15, 0x34, + 0x07, 0x09, 0x13, 0x07, 0x07, 0x0D, 0x07, 0x0C, 0x1E, 0x0B, + 0x02, 0x2E, 0x0D, 0x0B, 0x04, 0x02, 0x06, 0x06, 0x22, 0x0E, + 0x0C, 0x2F, 0x08, 0x0E, 0x20, 0x10, 0x21, 0x42, 0x22, 0x06, + 0x22, 0x47, 0x24, 0x21, 0x42, 0x20, 0x01, 0x01, 0x01, 0x0A, + 0x0A, 0x14, 0x04, 0x0D, 0x04, 0x18, 0x1C, 0x16, 0x08, 0x15, + 0x08, 0x08, 0x10, 0x09, 0x15, 0x2C, 0x15, 0x0C, 0x13, 0x0A, + 0x09, 0x17, 0x08, 0x04, 0x03, 0x15, 0x22, 0x12, 0x0D, 0x10, + 0x0D, 0x02, 0x3E, 0x08, 0x08, 0x30, 0x08, 0x09, 0x01, 0x0F, + 0x07, 0x3C, 0xB8, 0x04, 0x2C, 0x57, 0x2C, 0x16, 0x0F, 0x05, + 0x04, 0x0D, 0x02, 0x0E, 0x0B, 0x41, 0x02, 0x05, 0x02, 0x06, + 0x04, 0x0B, 0x06, 0x0F, 0x0E, 0x28, 0x0D, 0x1C, 0x3B, 0x1E, + 0x35, 0x5F, 0x36, 0x10, 0x07, 0x01, 0x01, 0x02, 0x01, 0x05, + 0x0A, 0x05, 0x03, 0x0A, 0x05, 0x05, 0x0E, 0x19, 0x1C, 0x45, + 0x1C, 0x1C, 0x37, 0x1C, 0x32, 0x62, 0x31, 0x1B, 0x1E, 0x12, + 0x0F, 0x34, 0x11, 0x14, 0x30, 0x13, 0x12, 0x1B, 0x0B, 0x02, + 0x02, 0x0A, 0x06, 0x06, 0x01, 0x04, 0x01, 0x05, 0x0E, 0x09, + 0x02, 0x01, 0x08, 0x03, 0x05, 0x04, 0x04, 0x06, 0x02, 0x04, + 0x05, 0x1A, 0x01, 0x02, 0x06, 0x08, 0x03, 0x08, 0x01, 0x07, + 0x01, 0x01, 0x0C, 0x04, 0x03, 0x09, 0x07, 0x03, 0x01, 0x01, + 0x02, 0x06, 0x03, 0x06, 0x0C, 0x09, 0x03, 0x02, 0x05, 0x00, + 0x00, 0x01, 0x00, 0x54, 0x00, 0x5A, 0x01, 0x80, 0x03, 0x26, + 0x00, 0x44, 0x00, 0x00, 0x13, 0x35, 0x2E, 0x01, 0x35, 0x34, + 0x36, 0x3F, 0x01, 0x33, 0x17, 0x11, 0x07, 0x27, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x3F, 0x01, 0x11, 0x27, 0x15, 0x07, 0x15, + 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x33, 0x15, 0x17, 0x15, 0x14, 0x06, 0x2B, 0x01, 0x22, 0x26, + 0x3D, 0x01, 0x37, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, + 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x27, 0x35, 0x34, 0x36, + 0x3B, 0x01, 0x37, 0x95, 0x0D, 0x0E, 0x05, 0x05, 0x17, 0x7C, + 0x69, 0x35, 0x11, 0x03, 0x03, 0x05, 0x04, 0x0E, 0x09, 0x10, + 0x2E, 0x1B, 0x0B, 0x0B, 0x0B, 0x0B, 0x0B, 0x0B, 0x1B, 0x07, + 0x08, 0xC9, 0x08, 0x08, 0x1A, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, + 0x0C, 0x1A, 0x08, 0x08, 0x0F, 0x22, 0x02, 0xC9, 0x2D, 0x02, + 0x0D, 0x0B, 0x07, 0x0A, 0x02, 0x03, 0xA8, 0xFE, 0x9D, 0x1A, + 0x03, 0x05, 0x0A, 0x04, 0x04, 0x09, 0x05, 0x08, 0x01, 0x3D, + 0x1A, 0x35, 0x19, 0x35, 0x36, 0x38, 0x36, 0x39, 0x36, 0x34, + 0x2E, 0x27, 0x08, 0x07, 0x07, 0x08, 0x27, 0x2E, 0x34, 0x36, + 0x39, 0x36, 0x38, 0x36, 0x35, 0x19, 0x49, 0x07, 0x08, 0x1E, + 0x00, 0x01, 0x00, 0x58, 0x00, 0x58, 0x02, 0x73, 0x03, 0x26, + 0x00, 0xA6, 0x00, 0x00, 0x01, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x06, 0x16, 0x15, + 0x14, 0x16, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x26, + 0x36, 0x37, 0x36, 0x26, 0x35, 0x34, 0x36, 0x27, 0x34, 0x26, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x06, 0x27, 0x22, + 0x26, 0x07, 0x06, 0x16, 0x15, 0x14, 0x06, 0x17, 0x1E, 0x01, + 0x33, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x37, 0x36, + 0x34, 0x23, 0x22, 0x36, 0x35, 0x22, 0x06, 0x27, 0x2E, 0x01, + 0x35, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x33, + 0x32, 0x36, 0x33, 0x3A, 0x01, 0x33, 0x32, 0x16, 0x35, 0x36, + 0x26, 0x35, 0x34, 0x32, 0x33, 0x1E, 0x01, 0x15, 0x14, 0x06, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x31, 0x01, 0xFD, 0x03, 0x15, 0x07, 0x0B, 0x11, 0x08, 0x07, + 0x0F, 0x09, 0x09, 0x07, 0x01, 0x03, 0x06, 0x02, 0x02, 0x01, + 0x06, 0x07, 0x04, 0x0F, 0x01, 0x02, 0x0D, 0x01, 0x03, 0x03, + 0x01, 0x01, 0x07, 0x0B, 0x02, 0x06, 0x05, 0x04, 0x01, 0x05, + 0x0C, 0x0E, 0x0A, 0x04, 0x09, 0x05, 0x04, 0x02, 0x04, 0x09, + 0x19, 0x09, 0x08, 0x1B, 0x06, 0x04, 0x02, 0x02, 0x08, 0x06, + 0x0E, 0x06, 0x0B, 0x15, 0x0A, 0x13, 0x1B, 0x0D, 0x10, 0x0B, + 0x07, 0x08, 0x07, 0x03, 0x04, 0x21, 0x17, 0x1D, 0x59, 0x2A, + 0x14, 0x2C, 0x15, 0x12, 0x24, 0x12, 0x0C, 0x12, 0x0A, 0x07, + 0x09, 0x05, 0x07, 0x0C, 0x05, 0x15, 0x14, 0x01, 0x01, 0x12, + 0x14, 0x0A, 0x13, 0x10, 0x10, 0x21, 0x10, 0x0A, 0x1E, 0x02, + 0x02, 0x0A, 0x08, 0x03, 0x0A, 0x16, 0x0A, 0x04, 0x04, 0x01, + 0x03, 0x02, 0x02, 0x01, 0x02, 0x03, 0x0C, 0x07, 0x09, 0x09, + 0x09, 0x19, 0x33, 0x1A, 0x03, 0x24, 0x01, 0x01, 0x10, 0x03, + 0x08, 0x07, 0x04, 0x03, 0x02, 0x06, 0x02, 0x06, 0x04, 0x04, + 0x0A, 0x0A, 0x0E, 0x02, 0x96, 0x11, 0x1E, 0x0F, 0x13, 0x2A, + 0x14, 0x10, 0x20, 0x0E, 0x0F, 0x1D, 0x10, 0x2F, 0x5D, 0x2E, + 0x16, 0x2C, 0x16, 0x07, 0x09, 0x02, 0x01, 0x01, 0x05, 0x08, + 0x06, 0x05, 0x08, 0x11, 0x07, 0x1A, 0x32, 0x19, 0x2C, 0x55, + 0x2A, 0x07, 0x11, 0x04, 0x04, 0x0D, 0x03, 0x0B, 0x1D, 0x0F, + 0x06, 0x0C, 0x06, 0x04, 0x0B, 0x03, 0x05, 0x02, 0x01, 0x02, + 0x06, 0x03, 0x15, 0x05, 0x07, 0x16, 0x04, 0x02, 0x01, 0x01, + 0x05, 0x02, 0x05, 0x10, 0x0E, 0x0F, 0x26, 0x14, 0x18, 0x2B, + 0x1A, 0x24, 0x49, 0x1C, 0x24, 0x19, 0x0A, 0x04, 0x04, 0x06, + 0x06, 0x0B, 0x06, 0x04, 0x0F, 0x06, 0x04, 0x0B, 0x05, 0x06, + 0x09, 0x08, 0x25, 0x4E, 0x2A, 0x20, 0x40, 0x19, 0x0D, 0x12, + 0x06, 0x06, 0x09, 0x06, 0x03, 0x05, 0x0D, 0x07, 0x29, 0x83, + 0x0A, 0x01, 0x04, 0x02, 0x06, 0x05, 0x03, 0x05, 0x03, 0x03, + 0x03, 0x04, 0x07, 0x05, 0x09, 0x01, 0x02, 0x05, 0x0B, 0x05, + 0x05, 0x01, 0x0A, 0x08, 0x03, 0x05, 0x03, 0x03, 0x04, 0x02, + 0x06, 0x12, 0x07, 0x10, 0x2B, 0x0F, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x54, 0x00, 0x58, 0x01, 0xA3, 0x03, 0x26, 0x00, 0x86, + 0x00, 0xA9, 0x00, 0xCB, 0x00, 0x00, 0x01, 0x3C, 0x01, 0x35, + 0x34, 0x36, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x34, 0x35, 0x34, + 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x34, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x36, 0x06, 0x27, + 0x26, 0x36, 0x27, 0x26, 0x22, 0x23, 0x0E, 0x01, 0x07, 0x36, + 0x06, 0x23, 0x2A, 0x01, 0x23, 0x22, 0x26, 0x07, 0x0E, 0x01, + 0x33, 0x3A, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x15, + 0x14, 0x06, 0x07, 0x0E, 0x01, 0x17, 0x1C, 0x01, 0x15, 0x1C, + 0x03, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x16, 0x17, 0x16, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x35, 0x3C, 0x01, 0x35, + 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x15, 0x1C, 0x01, + 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, 0x15, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x3E, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x07, + 0x1C, 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x22, 0x36, 0x35, 0x3C, 0x01, + 0x35, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x30, 0x15, 0x14, 0x15, 0x11, 0x1C, 0x01, 0x15, 0x14, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x36, 0x35, 0x3C, 0x01, 0x35, 0x1E, 0x01, 0x17, 0x16, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x1C, 0x01, 0x15, 0x01, 0xA2, + 0x01, 0x03, 0x02, 0x07, 0x03, 0x03, 0x07, 0x01, 0x02, 0x04, + 0x03, 0x07, 0x01, 0x08, 0x03, 0x04, 0x03, 0x06, 0x01, 0x04, + 0x08, 0x04, 0x01, 0x06, 0x02, 0x01, 0x02, 0x01, 0x01, 0x09, + 0x01, 0x05, 0x0B, 0x04, 0x02, 0x35, 0x06, 0x0C, 0x1A, 0x0C, + 0x05, 0x0D, 0x04, 0x09, 0x0B, 0x03, 0x02, 0x18, 0x06, 0x17, + 0x05, 0x09, 0x32, 0x0A, 0x21, 0x07, 0x29, 0x50, 0x2A, 0x0E, + 0x1F, 0x0B, 0x04, 0x02, 0x06, 0x06, 0x04, 0x04, 0x06, 0x03, + 0x02, 0x09, 0x01, 0x05, 0x05, 0x06, 0x01, 0x07, 0x04, 0x02, + 0x02, 0x07, 0x01, 0x45, 0x04, 0x0D, 0x11, 0x23, 0x12, 0x07, + 0x12, 0x08, 0x1D, 0x3B, 0x1E, 0x06, 0x01, 0x1F, 0x3E, 0x1F, + 0x0D, 0x1F, 0x0D, 0x10, 0x1E, 0x10, 0x04, 0x0D, 0x11, 0x23, + 0x12, 0x07, 0x12, 0x08, 0x1D, 0x3B, 0x1E, 0x06, 0x01, 0x1F, + 0x3E, 0x1F, 0x0D, 0x1F, 0x0D, 0x10, 0x1E, 0x10, 0x01, 0xA4, + 0x1C, 0x37, 0x1B, 0x0E, 0x1E, 0x0C, 0x09, 0x0A, 0x07, 0x04, + 0x08, 0x06, 0x02, 0x08, 0x01, 0x05, 0x0D, 0x04, 0x07, 0x19, + 0x08, 0x03, 0x10, 0x04, 0x03, 0x0D, 0x03, 0x0B, 0x14, 0x0A, + 0x06, 0x02, 0x04, 0x02, 0x08, 0x01, 0x01, 0x02, 0x11, 0x07, + 0x09, 0x03, 0x02, 0x02, 0x03, 0x29, 0x01, 0x0A, 0x14, 0x0A, + 0x07, 0x0B, 0x09, 0x04, 0x03, 0x01, 0x01, 0x05, 0x15, 0x17, + 0x2D, 0x16, 0x2F, 0x5E, 0x5E, 0x5E, 0x2F, 0x0B, 0x17, 0x0B, + 0x07, 0x0E, 0x02, 0x11, 0x03, 0x09, 0x02, 0x0B, 0x08, 0x03, + 0x01, 0x04, 0x0B, 0x15, 0x0B, 0x2C, 0x59, 0x2C, 0x49, 0x91, + 0x49, 0x04, 0x0C, 0x04, 0x05, 0x0B, 0x05, 0x03, 0x0B, 0x03, + 0x0B, 0x23, 0x0C, 0x37, 0x6E, 0x37, 0x1B, 0x37, 0x1B, 0x04, + 0x05, 0x07, 0x07, 0x02, 0x01, 0x01, 0x05, 0x11, 0x0A, 0x37, + 0x6D, 0x36, 0x99, 0x05, 0x0B, 0x06, 0x0D, 0x02, 0x02, 0x02, + 0x04, 0x03, 0x01, 0x03, 0x01, 0x04, 0x07, 0x04, 0x07, 0x06, + 0x07, 0x0D, 0x06, 0x03, 0x06, 0x03, 0x02, 0x06, 0x02, 0x01, + 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x31, 0x05, 0x0B, 0x06, + 0x0C, 0x03, 0x02, 0x02, 0x04, 0x02, 0x01, 0x04, 0x01, 0x04, + 0x07, 0x04, 0x01, 0x06, 0x06, 0x07, 0x0D, 0x07, 0x04, 0x06, + 0x03, 0x01, 0x06, 0x01, 0x02, 0x03, 0x02, 0x01, 0x02, 0x01, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x57, 0x00, 0x3E, 0x02, 0x61, + 0x03, 0x40, 0x00, 0x4D, 0x00, 0x74, 0x00, 0x00, 0x01, 0x06, + 0x16, 0x17, 0x16, 0x06, 0x0F, 0x01, 0x0E, 0x01, 0x07, 0x3F, + 0x02, 0x2F, 0x01, 0x2E, 0x01, 0x2F, 0x01, 0x0F, 0x01, 0x33, + 0x07, 0x27, 0x2E, 0x01, 0x3F, 0x01, 0x36, 0x34, 0x27, 0x17, + 0x1E, 0x01, 0x1F, 0x02, 0x37, 0x36, 0x26, 0x2F, 0x01, 0x2E, + 0x01, 0x37, 0x34, 0x36, 0x37, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x1F, 0x02, 0x1E, 0x01, 0x37, 0x36, 0x26, + 0x27, 0x26, 0x36, 0x37, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x1F, + 0x01, 0x0F, 0x02, 0x37, 0x2F, 0x01, 0x2E, 0x01, 0x2F, 0x01, + 0x07, 0x33, 0x15, 0x0F, 0x02, 0x0E, 0x01, 0x07, 0x03, 0x06, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x3F, + 0x01, 0x13, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x3F, 0x02, 0x02, + 0x4E, 0x02, 0x03, 0x04, 0x03, 0x02, 0x05, 0x22, 0x06, 0x11, + 0x0A, 0x09, 0x05, 0x24, 0x07, 0x19, 0x07, 0x0E, 0x06, 0x16, + 0x22, 0x0A, 0x04, 0x17, 0x0D, 0x05, 0x01, 0x03, 0x0C, 0x04, + 0x04, 0x0C, 0x06, 0x0A, 0x03, 0x04, 0x01, 0x0F, 0x01, 0x07, + 0x07, 0x17, 0x03, 0x03, 0x01, 0x05, 0x05, 0x01, 0x09, 0x09, + 0x04, 0x17, 0x12, 0x07, 0x09, 0x02, 0x08, 0x0C, 0x03, 0x06, + 0x02, 0x02, 0x04, 0x06, 0x07, 0x02, 0x09, 0x01, 0x0D, 0x0B, + 0x0C, 0x0E, 0x02, 0x01, 0x08, 0x0B, 0x39, 0x1F, 0x05, 0x16, + 0x07, 0x0C, 0x06, 0x0F, 0x1F, 0x01, 0x53, 0x13, 0x1F, 0x18, + 0x1F, 0x08, 0xB6, 0x02, 0x06, 0x07, 0x09, 0x18, 0x0F, 0x0E, + 0x1E, 0x10, 0x11, 0x0B, 0x0A, 0xB6, 0x08, 0x0B, 0x03, 0x03, + 0x05, 0x02, 0x44, 0x05, 0x02, 0x86, 0x04, 0x09, 0x05, 0x05, + 0x0F, 0x08, 0x28, 0x07, 0x09, 0x02, 0x10, 0x01, 0x32, 0x12, + 0x18, 0x05, 0x07, 0x02, 0x02, 0x2F, 0x0E, 0x1C, 0x1B, 0x0E, + 0x17, 0x09, 0x17, 0x07, 0x14, 0x0D, 0x05, 0x03, 0x0C, 0x08, + 0x1C, 0x0B, 0x22, 0x05, 0x11, 0x0B, 0x1D, 0x05, 0x16, 0x11, + 0x12, 0x16, 0x05, 0x0B, 0x13, 0x09, 0x04, 0x09, 0x06, 0x02, + 0x09, 0x06, 0x16, 0x10, 0x05, 0x02, 0x02, 0x02, 0x0C, 0x0A, + 0x0A, 0x17, 0x0D, 0x05, 0x10, 0x0B, 0x0B, 0x15, 0x0B, 0x15, + 0x19, 0x11, 0x4F, 0x2B, 0x0E, 0x13, 0x05, 0x07, 0x02, 0x01, + 0x2B, 0x06, 0x65, 0x0C, 0x0F, 0x0B, 0x16, 0x0C, 0xFF, 0x00, + 0x06, 0x12, 0x0C, 0x0E, 0x18, 0x0A, 0x0B, 0x0E, 0x05, 0x04, + 0x02, 0x03, 0x01, 0x00, 0x0C, 0x25, 0x19, 0x1B, 0x1C, 0x03, + 0x6F, 0x01, 0x00, 0x04, 0x00, 0x61, 0x00, 0x5A, 0x03, 0x1D, + 0x03, 0x8C, 0x00, 0x12, 0x00, 0x25, 0x00, 0x38, 0x00, 0x7D, + 0x00, 0x00, 0x13, 0x17, 0x07, 0x27, 0x15, 0x23, 0x35, 0x07, + 0x27, 0x37, 0x27, 0x37, 0x17, 0x35, 0x33, 0x15, 0x37, 0x17, + 0x07, 0x13, 0x37, 0x27, 0x07, 0x35, 0x23, 0x15, 0x27, 0x07, + 0x17, 0x07, 0x17, 0x37, 0x15, 0x33, 0x35, 0x17, 0x37, 0x27, + 0x05, 0x37, 0x27, 0x07, 0x35, 0x23, 0x15, 0x27, 0x07, 0x17, + 0x07, 0x17, 0x37, 0x15, 0x33, 0x35, 0x17, 0x37, 0x27, 0x05, + 0x07, 0x23, 0x22, 0x06, 0x1D, 0x01, 0x17, 0x15, 0x33, 0x15, + 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, + 0x07, 0x15, 0x14, 0x16, 0x3B, 0x01, 0x32, 0x36, 0x3D, 0x01, + 0x27, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, + 0x23, 0x35, 0x33, 0x35, 0x37, 0x35, 0x17, 0x11, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x1F, 0x01, 0x37, 0x11, 0x27, 0x23, + 0x07, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x15, 0xDA, 0x2E, + 0x13, 0x2D, 0x25, 0x30, 0x12, 0x2F, 0x2F, 0x14, 0x2E, 0x25, + 0x2D, 0x12, 0x2D, 0x4E, 0x37, 0x16, 0x35, 0x2D, 0x38, 0x16, + 0x38, 0x38, 0x16, 0x38, 0x2D, 0x35, 0x16, 0x37, 0x01, 0xC7, + 0x2D, 0x12, 0x2D, 0x25, 0x2E, 0x13, 0x2D, 0x2D, 0x12, 0x2F, + 0x25, 0x2D, 0x13, 0x2E, 0xFE, 0xA9, 0x21, 0x10, 0x08, 0x08, + 0x1A, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x1A, 0x08, 0x08, + 0xC9, 0x08, 0x07, 0x1B, 0x0B, 0x0B, 0x0B, 0x0B, 0x0B, 0x0B, + 0x1B, 0x2E, 0x10, 0x09, 0x0E, 0x04, 0x05, 0x03, 0x03, 0x11, + 0x35, 0x69, 0x7C, 0x17, 0x05, 0x05, 0x0E, 0x0D, 0x02, 0x00, + 0x1A, 0x20, 0x1A, 0x34, 0x35, 0x1B, 0x20, 0x1A, 0x1B, 0x21, + 0x1B, 0x36, 0x35, 0x1A, 0x21, 0x1B, 0x01, 0x27, 0x20, 0x26, + 0x1F, 0x3E, 0x40, 0x21, 0x26, 0x20, 0x20, 0x26, 0x20, 0x40, + 0x3E, 0x1E, 0x26, 0x20, 0x2B, 0x1B, 0x21, 0x1A, 0x35, 0x36, + 0x1B, 0x21, 0x1B, 0x1A, 0x20, 0x1B, 0x35, 0x34, 0x1A, 0x20, + 0x1A, 0x33, 0x1E, 0x08, 0x07, 0x49, 0x19, 0x35, 0x36, 0x38, + 0x36, 0x39, 0x36, 0x34, 0x2E, 0x27, 0x07, 0x08, 0x08, 0x07, + 0x27, 0x2E, 0x34, 0x36, 0x39, 0x36, 0x38, 0x36, 0x35, 0x19, + 0x35, 0x1A, 0xFE, 0xC3, 0x08, 0x05, 0x09, 0x04, 0x04, 0x0A, + 0x05, 0x03, 0x1A, 0x01, 0x63, 0xA8, 0x03, 0x02, 0x0A, 0x07, + 0x0C, 0x0C, 0x02, 0x2D, 0x00, 0x00, 0x00, 0x03, 0x00, 0x51, + 0x00, 0x58, 0x01, 0xA1, 0x03, 0x26, 0x00, 0x86, 0x00, 0xA2, + 0x00, 0xC4, 0x00, 0x00, 0x01, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x14, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x14, 0x16, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x06, 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x06, + 0x07, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x35, + 0x3C, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x34, 0x36, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x1C, 0x01, + 0x15, 0x1C, 0x01, 0x15, 0x1C, 0x01, 0x15, 0x14, 0x26, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x35, 0x3C, + 0x01, 0x35, 0x3C, 0x03, 0x35, 0x3C, 0x01, 0x35, 0x26, 0x36, + 0x37, 0x3E, 0x01, 0x35, 0x34, 0x36, 0x35, 0x3C, 0x01, 0x35, + 0x34, 0x22, 0x23, 0x22, 0x36, 0x37, 0x36, 0x16, 0x33, 0x3A, + 0x01, 0x33, 0x32, 0x36, 0x07, 0x3E, 0x01, 0x37, 0x3A, 0x01, + 0x17, 0x16, 0x06, 0x17, 0x16, 0x36, 0x15, 0x07, 0x0E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x26, 0x36, 0x37, 0x06, 0x16, 0x17, + 0x1E, 0x01, 0x07, 0x16, 0x36, 0x37, 0x36, 0x26, 0x27, 0x2E, + 0x01, 0x37, 0x0E, 0x01, 0x07, 0x13, 0x34, 0x3D, 0x01, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x1C, 0x01, + 0x15, 0x1C, 0x01, 0x33, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x35, 0x3C, 0x01, 0x35, 0x01, + 0x4D, 0x03, 0x09, 0x03, 0x02, 0x05, 0x04, 0x03, 0x04, 0x07, + 0x01, 0x08, 0x03, 0x03, 0x03, 0x07, 0x01, 0x02, 0x03, 0x08, + 0x02, 0x03, 0x01, 0x01, 0x07, 0x02, 0x03, 0x04, 0x06, 0x01, + 0x06, 0x04, 0x04, 0x01, 0x0A, 0x02, 0x03, 0x05, 0x04, 0x04, + 0x07, 0x05, 0x03, 0x03, 0x0C, 0x1F, 0x0E, 0x2A, 0x4F, 0x2A, + 0x06, 0x21, 0x0B, 0x32, 0x0A, 0x05, 0x16, 0x07, 0x19, 0x02, + 0x03, 0x0B, 0x09, 0x05, 0x0D, 0x04, 0x0D, 0x19, 0x0D, 0x05, + 0x35, 0x01, 0x03, 0x0B, 0x06, 0x01, 0x08, 0x01, 0x02, 0x03, + 0x01, 0x02, 0x06, 0x8A, 0x20, 0x1E, 0x01, 0x01, 0x22, 0x2F, + 0x22, 0x03, 0x1E, 0x06, 0x0E, 0x0C, 0x06, 0x25, 0x0E, 0x15, + 0x21, 0x03, 0x04, 0x0C, 0x0E, 0x17, 0x36, 0x21, 0x0F, 0x1E, + 0x0F, 0x97, 0x0F, 0x1F, 0x0F, 0x0E, 0x1E, 0x0E, 0x1F, 0x3E, + 0x1F, 0x06, 0x1D, 0x3B, 0x1E, 0x08, 0x11, 0x08, 0x11, 0x23, + 0x12, 0x0C, 0x04, 0x03, 0x12, 0x0A, 0x14, 0x0B, 0x03, 0x0D, + 0x03, 0x04, 0x10, 0x03, 0x08, 0x19, 0x07, 0x04, 0x0D, 0x05, + 0x01, 0x08, 0x02, 0x06, 0x08, 0x04, 0x07, 0x0A, 0x09, 0x0C, + 0x1E, 0x0E, 0x1B, 0x37, 0x1C, 0x36, 0x6D, 0x37, 0x0A, 0x11, + 0x05, 0x01, 0x01, 0x02, 0x07, 0x07, 0x05, 0x04, 0x1B, 0x37, + 0x1B, 0x37, 0x6E, 0x37, 0x0C, 0x23, 0x0B, 0x03, 0x0B, 0x03, + 0x05, 0x0B, 0x05, 0x04, 0x0C, 0x04, 0x49, 0x91, 0x49, 0x2C, + 0x59, 0x2C, 0x0B, 0x15, 0x0B, 0x04, 0x01, 0x03, 0x08, 0x0B, + 0x02, 0x09, 0x03, 0x11, 0x02, 0x0D, 0x08, 0x0B, 0x17, 0x0B, + 0x2F, 0x5E, 0x5E, 0x5E, 0x2F, 0x16, 0x2D, 0x17, 0x15, 0x05, + 0x01, 0x01, 0x03, 0x04, 0x09, 0x0B, 0x07, 0x0A, 0x14, 0x0A, + 0x01, 0x29, 0x03, 0x02, 0x02, 0x03, 0x09, 0x07, 0x11, 0x02, + 0x01, 0x01, 0x08, 0x02, 0x04, 0x02, 0x06, 0xD4, 0x1C, 0x55, + 0x29, 0x28, 0x4C, 0x03, 0x15, 0x55, 0x16, 0x11, 0x20, 0x0D, + 0x06, 0x2F, 0x09, 0x08, 0x37, 0x0E, 0x19, 0x2F, 0x14, 0x22, + 0x5A, 0x28, 0x0C, 0x18, 0x0C, 0xFE, 0xCD, 0x01, 0x01, 0x01, + 0x01, 0x04, 0x01, 0x02, 0x06, 0x02, 0x03, 0x06, 0x03, 0x06, + 0x0D, 0x07, 0x06, 0x07, 0x04, 0x07, 0x04, 0x01, 0x03, 0x01, + 0x03, 0x04, 0x02, 0x02, 0x02, 0x0D, 0x06, 0x0B, 0x05, 0x00, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x5E, 0x00, 0xC0, 0x03, 0x8F, + 0x02, 0xC0, 0x00, 0x10, 0x00, 0x2D, 0x00, 0x3F, 0x00, 0x51, + 0x00, 0x61, 0x00, 0x70, 0x00, 0x7D, 0x00, 0x8C, 0x00, 0x9B, + 0x00, 0xA7, 0x00, 0xB9, 0x00, 0xC1, 0x00, 0xCF, 0x00, 0xDD, + 0x00, 0xE9, 0x01, 0x0C, 0x00, 0x00, 0x01, 0x34, 0x26, 0x23, + 0x21, 0x22, 0x06, 0x0F, 0x01, 0x15, 0x1F, 0x01, 0x21, 0x32, + 0x36, 0x3D, 0x01, 0x37, 0x1E, 0x01, 0x15, 0x11, 0x14, 0x06, + 0x07, 0x0E, 0x01, 0x23, 0x21, 0x22, 0x26, 0x27, 0x2E, 0x01, + 0x35, 0x11, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x21, 0x32, + 0x16, 0x17, 0x07, 0x27, 0x37, 0x17, 0x35, 0x33, 0x07, 0x37, + 0x17, 0x07, 0x17, 0x07, 0x27, 0x17, 0x23, 0x35, 0x07, 0x2F, + 0x01, 0x07, 0x17, 0x07, 0x27, 0x17, 0x23, 0x35, 0x07, 0x27, + 0x37, 0x27, 0x37, 0x17, 0x35, 0x33, 0x07, 0x37, 0x17, 0x2F, + 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x1D, 0x01, 0x1F, + 0x01, 0x33, 0x3F, 0x02, 0x07, 0x0E, 0x01, 0x1D, 0x01, 0x1F, + 0x01, 0x33, 0x3F, 0x01, 0x35, 0x2F, 0x01, 0x23, 0x2F, 0x02, + 0x23, 0x0F, 0x01, 0x15, 0x1F, 0x01, 0x33, 0x3F, 0x01, 0x35, + 0x37, 0x27, 0x23, 0x07, 0x0E, 0x01, 0x1D, 0x01, 0x1F, 0x01, + 0x33, 0x3F, 0x01, 0x35, 0x27, 0x17, 0x27, 0x23, 0x07, 0x0E, + 0x01, 0x1D, 0x01, 0x1F, 0x01, 0x33, 0x3F, 0x01, 0x35, 0x27, + 0x35, 0x27, 0x23, 0x0F, 0x01, 0x15, 0x1F, 0x01, 0x33, 0x3F, + 0x01, 0x35, 0x27, 0x07, 0x17, 0x07, 0x27, 0x17, 0x23, 0x35, + 0x07, 0x27, 0x37, 0x27, 0x37, 0x17, 0x35, 0x33, 0x07, 0x37, + 0x07, 0x3F, 0x01, 0x33, 0x0F, 0x01, 0x15, 0x23, 0x17, 0x23, + 0x22, 0x06, 0x0F, 0x01, 0x15, 0x1F, 0x01, 0x33, 0x3F, 0x01, + 0x35, 0x2F, 0x01, 0x23, 0x0F, 0x01, 0x15, 0x17, 0x1E, 0x01, + 0x3B, 0x01, 0x3F, 0x01, 0x35, 0x27, 0x05, 0x15, 0x33, 0x15, + 0x33, 0x35, 0x33, 0x35, 0x23, 0x35, 0x23, 0x07, 0x27, 0x1F, + 0x01, 0x37, 0x2F, 0x01, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x15, + 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x3F, 0x01, 0x27, 0x07, + 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x37, + 0x3E, 0x01, 0x33, 0x03, 0x4A, 0x07, 0x08, 0xFE, 0xCE, 0x03, + 0x05, 0x02, 0x06, 0x06, 0x0A, 0x01, 0x32, 0x08, 0x07, 0x3A, + 0x05, 0x06, 0x06, 0x05, 0x06, 0x11, 0x0B, 0xFD, 0x2A, 0x09, + 0x10, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x10, 0x09, 0x02, + 0xD6, 0x0B, 0x10, 0x07, 0xD1, 0x0B, 0x04, 0x0D, 0x0A, 0x02, + 0x0D, 0x04, 0x0E, 0x0E, 0x04, 0x0D, 0x02, 0x0A, 0x0D, 0x04, + 0x13, 0x0D, 0x0D, 0x05, 0x0E, 0x03, 0x0B, 0x0B, 0x06, 0x0D, + 0x0D, 0x06, 0x0B, 0x0B, 0x03, 0x0E, 0x06, 0x03, 0x0A, 0x27, + 0x03, 0x04, 0x01, 0x02, 0x02, 0x04, 0x08, 0x27, 0x0A, 0x03, + 0x23, 0x08, 0x03, 0x02, 0x05, 0x08, 0x29, 0x08, 0x03, 0x03, + 0x08, 0x29, 0x23, 0x03, 0x0A, 0x27, 0x08, 0x04, 0x04, 0x08, + 0x27, 0x0A, 0x03, 0x54, 0x08, 0x29, 0x08, 0x03, 0x02, 0x05, + 0x08, 0x29, 0x08, 0x03, 0x03, 0x57, 0x0A, 0x26, 0x0A, 0x02, + 0x02, 0x04, 0x0A, 0x26, 0x0A, 0x04, 0x04, 0x0A, 0x26, 0x0A, + 0x04, 0x04, 0x0A, 0x26, 0x0A, 0x04, 0xEE, 0x0D, 0x0D, 0x03, + 0x0F, 0x03, 0x0A, 0x0D, 0x04, 0x0B, 0x0B, 0x04, 0x0D, 0x0A, + 0x03, 0x0F, 0xEE, 0x0C, 0x08, 0x03, 0x02, 0x01, 0x2D, 0xE4, + 0x26, 0x02, 0x05, 0x02, 0x06, 0x06, 0x09, 0x26, 0x0A, 0x04, + 0x04, 0x0A, 0x26, 0x09, 0x06, 0x06, 0x02, 0x05, 0x02, 0x26, + 0x0A, 0x04, 0x04, 0xFE, 0xE4, 0x5B, 0x2E, 0x1B, 0x1B, 0x3B, + 0x4E, 0x31, 0x10, 0x0B, 0x08, 0x11, 0x13, 0x17, 0x22, 0x0C, + 0x0A, 0x0B, 0x0B, 0x0A, 0x0B, 0x1E, 0x13, 0x19, 0x13, 0x05, + 0x0E, 0x0F, 0x08, 0x0F, 0x06, 0x07, 0x07, 0x06, 0x06, 0x05, + 0x10, 0x0A, 0x02, 0x7A, 0x08, 0x07, 0x02, 0x02, 0x0B, 0xC4, + 0x0B, 0x03, 0x07, 0x07, 0xC4, 0x38, 0x07, 0x11, 0x0A, 0xFE, + 0x5E, 0x09, 0x0F, 0x07, 0x07, 0x08, 0x08, 0x07, 0x07, 0x0F, + 0x09, 0x01, 0xA2, 0x0A, 0x11, 0x07, 0x07, 0x07, 0x07, 0x07, + 0x9D, 0x07, 0x07, 0x07, 0x0D, 0x0D, 0x07, 0x07, 0x07, 0x07, + 0x08, 0x07, 0x0E, 0x0E, 0x07, 0x08, 0x0E, 0x07, 0x07, 0x08, + 0x07, 0x0E, 0x0E, 0x07, 0x08, 0x07, 0x07, 0x07, 0x07, 0x0D, + 0x0D, 0x07, 0xFE, 0x08, 0x06, 0x03, 0x03, 0x01, 0x04, 0x03, + 0x27, 0x0A, 0x03, 0x03, 0x0A, 0x35, 0x06, 0x01, 0x05, 0x02, + 0x27, 0x0A, 0x03, 0x03, 0x0A, 0x27, 0x08, 0x06, 0x4E, 0x0A, + 0x03, 0x03, 0x0A, 0x27, 0x08, 0x06, 0x06, 0x08, 0x27, 0x0A, + 0x03, 0x03, 0x03, 0x05, 0x02, 0x27, 0x08, 0x06, 0x06, 0x08, + 0x27, 0x0A, 0x5E, 0x06, 0x06, 0x01, 0x04, 0x03, 0x27, 0x0A, + 0x03, 0x03, 0x0A, 0x27, 0x08, 0x5E, 0x03, 0x03, 0x0A, 0x27, + 0x08, 0x06, 0x06, 0x08, 0x27, 0x9B, 0x07, 0x07, 0x08, 0x07, + 0x0E, 0x0E, 0x07, 0x08, 0x07, 0x07, 0x07, 0x07, 0x0D, 0x0D, + 0x07, 0xAC, 0x14, 0x15, 0x15, 0x14, 0x2E, 0x16, 0x03, 0x03, + 0x08, 0x27, 0x0A, 0x03, 0x03, 0x0A, 0x27, 0x08, 0x61, 0x03, + 0x0A, 0x27, 0x08, 0x03, 0x03, 0x06, 0x08, 0x27, 0x0A, 0x46, + 0x20, 0x31, 0x31, 0x24, 0x7B, 0x7F, 0x2A, 0x02, 0x02, 0x23, + 0x04, 0x01, 0x0C, 0x0C, 0x0B, 0x1C, 0x12, 0x13, 0x1E, 0x0B, + 0x0B, 0x0A, 0x03, 0x04, 0x26, 0x06, 0x06, 0x05, 0x05, 0x10, + 0x0B, 0x09, 0x0F, 0x06, 0x07, 0x07, 0x00, 0x03, 0x00, 0x62, + 0x00, 0x3E, 0x02, 0x89, 0x03, 0x40, 0x00, 0x3B, 0x00, 0x6A, + 0x00, 0x91, 0x00, 0x00, 0x01, 0x06, 0x16, 0x17, 0x16, 0x14, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x03, 0x27, 0x26, 0x36, 0x37, 0x1E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x17, 0x07, 0x16, 0x0E, 0x02, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x37, 0x3E, 0x01, 0x37, 0x34, 0x36, 0x37, 0x36, 0x16, + 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x34, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x27, 0x06, 0x16, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x03, 0x27, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x23, 0x02, 0x83, 0x01, 0x05, 0x01, + 0x01, 0x01, 0x02, 0x0A, 0x09, 0x0F, 0x36, 0x26, 0x0A, 0x13, + 0x0B, 0x0A, 0x18, 0x0C, 0x09, 0x16, 0x0A, 0x06, 0x0A, 0x07, + 0x0F, 0x1E, 0x0C, 0x2E, 0x4A, 0x35, 0x20, 0x06, 0x04, 0x04, + 0x08, 0x19, 0x35, 0x1F, 0x1B, 0x2C, 0x15, 0x0B, 0x12, 0x09, + 0x09, 0x05, 0x03, 0x15, 0x30, 0x22, 0x13, 0x2A, 0x15, 0x0E, + 0x1C, 0x0D, 0x0A, 0x11, 0x0A, 0x5E, 0x05, 0x07, 0x19, 0x2F, + 0x24, 0x09, 0x15, 0x0B, 0x06, 0x10, 0x06, 0x10, 0x1D, 0x0E, + 0x30, 0x36, 0x09, 0x03, 0x04, 0x02, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x03, 0x12, 0x03, 0x1B, 0x39, 0x15, 0x0A, 0x12, 0x09, + 0x06, 0x08, 0x08, 0x16, 0x0D, 0x15, 0x25, 0x17, 0x0C, 0x16, + 0x07, 0x32, 0x4F, 0x1D, 0x0D, 0x20, 0x11, 0x28, 0x5A, 0x2F, + 0x09, 0x0A, 0x12, 0x14, 0x47, 0x34, 0x0D, 0x1A, 0x0E, 0x07, + 0x0E, 0x07, 0x02, 0x05, 0x01, 0x0F, 0x1D, 0x0D, 0x37, 0x49, + 0x28, 0x0B, 0x06, 0x0B, 0x15, 0x0A, 0x09, 0x17, 0x0A, 0x02, + 0xCC, 0x11, 0x21, 0x11, 0x15, 0x29, 0x15, 0x26, 0x4B, 0x25, + 0x3B, 0x72, 0x30, 0x0C, 0x1A, 0x0C, 0x0B, 0x14, 0x0B, 0x09, + 0x0D, 0x07, 0x05, 0x07, 0x03, 0x06, 0x1C, 0x0A, 0x29, 0x60, + 0x6C, 0x74, 0x3E, 0x31, 0x66, 0x31, 0x10, 0x14, 0x03, 0x04, + 0x1B, 0x11, 0x09, 0x14, 0x0B, 0x0A, 0x17, 0x0C, 0x20, 0x3C, + 0x13, 0x0B, 0x0A, 0x01, 0x08, 0x05, 0x05, 0x05, 0x08, 0x64, + 0x33, 0x67, 0x62, 0x59, 0x27, 0x0A, 0x13, 0x07, 0x04, 0x0C, + 0x04, 0x0B, 0x18, 0x0E, 0x31, 0x79, 0x44, 0x19, 0x33, 0x1A, + 0x07, 0x0D, 0x07, 0x01, 0x0A, 0x01, 0x01, 0x0C, 0x01, 0x0A, + 0x0F, 0x12, 0x0A, 0x12, 0x0A, 0x08, 0x05, 0x0C, 0x0D, 0x17, + 0x08, 0x0E, 0x06, 0x01, 0x01, 0x0C, 0x38, 0x03, 0x38, 0x27, + 0x11, 0x1E, 0x0C, 0x1D, 0x12, 0x16, 0x43, 0x88, 0x41, 0x47, + 0x81, 0x35, 0x0C, 0x17, 0x0A, 0x06, 0x0A, 0x05, 0x05, 0x01, + 0x0B, 0x15, 0x0C, 0x33, 0x7E, 0x8C, 0x94, 0x48, 0x03, 0x06, + 0x03, 0x03, 0x01, 0x00, 0x00, 0x04, 0x00, 0x66, 0x00, 0x40, + 0x02, 0x90, 0x03, 0x40, 0x00, 0x29, 0x00, 0x47, 0x00, 0x66, + 0x00, 0x84, 0x00, 0x00, 0x01, 0x16, 0x06, 0x0F, 0x07, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x2F, 0x01, 0x35, 0x3F, 0x01, + 0x17, 0x1E, 0x01, 0x3F, 0x05, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x36, 0x3F, 0x02, 0x17, 0x15, 0x07, 0x2E, 0x01, 0x27, 0x0F, + 0x03, 0x0E, 0x01, 0x27, 0x0F, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x3F, 0x06, 0x35, 0x27, 0x07, 0x1F, 0x01, + 0x0F, 0x05, 0x2F, 0x04, 0x35, 0x37, 0x33, 0x1E, 0x01, 0x3F, + 0x04, 0x33, 0x1E, 0x01, 0x1F, 0x01, 0x3F, 0x01, 0x33, 0x0F, + 0x07, 0x33, 0x37, 0x33, 0x37, 0x1F, 0x06, 0x33, 0x1F, 0x01, + 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x23, 0x07, 0x02, 0x87, + 0x09, 0x09, 0x12, 0x26, 0x36, 0x36, 0x2F, 0x24, 0x0D, 0x07, + 0x09, 0x3A, 0x5C, 0x22, 0x19, 0x25, 0x0B, 0x0C, 0x05, 0x07, + 0x12, 0x1A, 0x37, 0x1C, 0x32, 0x26, 0x18, 0x0B, 0x0C, 0x0D, + 0x20, 0x4A, 0x2A, 0x14, 0x2A, 0x17, 0x0B, 0x09, 0x05, 0x70, + 0x2D, 0x50, 0x22, 0x05, 0x07, 0x1F, 0x2A, 0x25, 0x4E, 0x28, + 0x02, 0x02, 0x0B, 0x0A, 0x23, 0x18, 0x1E, 0x54, 0x36, 0x16, + 0x22, 0x26, 0x26, 0x36, 0x24, 0x14, 0x02, 0x55, 0x11, 0x03, + 0x12, 0x1B, 0x22, 0x24, 0x1F, 0x1D, 0x4C, 0x34, 0x1F, 0x10, + 0x06, 0x04, 0x02, 0x15, 0x2A, 0x16, 0x24, 0x1B, 0x10, 0x04, + 0x03, 0x0C, 0x1A, 0x0D, 0x31, 0x2B, 0x1D, 0x04, 0xCE, 0x35, + 0x14, 0x12, 0x0E, 0x04, 0x07, 0x02, 0x09, 0x0B, 0x1B, 0x12, + 0x0F, 0x15, 0x14, 0x0F, 0x05, 0x07, 0x0B, 0x4C, 0x14, 0x14, + 0x1B, 0x1B, 0x0B, 0x18, 0x0E, 0x36, 0x02, 0xC5, 0x52, 0x95, + 0x43, 0x69, 0x5E, 0x41, 0x2D, 0x16, 0x0C, 0x04, 0x05, 0x28, + 0x62, 0x3B, 0x2D, 0x69, 0x3A, 0x5C, 0x49, 0x34, 0x28, 0x0B, + 0x10, 0x09, 0x07, 0x19, 0x1F, 0x1D, 0x0E, 0x1F, 0x1B, 0x31, + 0x35, 0x03, 0x01, 0x0A, 0x0B, 0x0B, 0x05, 0x12, 0x09, 0x24, + 0x01, 0x30, 0x2F, 0x06, 0x07, 0x22, 0x1D, 0x16, 0x05, 0x12, + 0x21, 0x2D, 0x7D, 0x38, 0x65, 0x2D, 0x37, 0x5B, 0x23, 0x0F, + 0x1B, 0x26, 0x34, 0x59, 0x63, 0xBA, 0x2A, 0x26, 0x0B, 0x38, + 0x74, 0x5C, 0x4A, 0x38, 0x2B, 0x1D, 0x16, 0x41, 0x45, 0x46, + 0x41, 0x3E, 0x55, 0x10, 0x0D, 0x07, 0x07, 0x11, 0x19, 0x14, + 0x09, 0x13, 0x1B, 0x08, 0x14, 0x03, 0x0D, 0x38, 0x10, 0x14, + 0x1D, 0x26, 0x07, 0x06, 0x03, 0x03, 0x02, 0x02, 0x09, 0x0C, + 0x06, 0x02, 0x05, 0x02, 0x05, 0x04, 0x0B, 0x32, 0x44, 0x10, + 0x09, 0x09, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x59, + 0x00, 0x59, 0x03, 0x7D, 0x03, 0x26, 0x00, 0xC4, 0x00, 0xD4, + 0x00, 0xE4, 0x00, 0xF7, 0x00, 0x00, 0x01, 0x0E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x22, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x16, 0x32, 0x07, 0x0E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1C, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x23, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x30, 0x37, 0x36, 0x37, 0x36, + 0x32, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x32, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x26, 0x07, 0x06, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x36, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x16, 0x06, 0x07, 0x25, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x07, + 0x22, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x37, 0x27, + 0x26, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x37, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x22, 0x14, 0x33, 0x16, 0x32, 0x33, 0x1E, 0x01, + 0x33, 0x32, 0x26, 0x27, 0x03, 0x70, 0x05, 0x0E, 0x07, 0x0A, + 0x15, 0x08, 0x20, 0x43, 0x24, 0x15, 0x27, 0x15, 0x1B, 0x35, + 0x1B, 0x0F, 0x1A, 0x0E, 0x05, 0x0B, 0x05, 0x04, 0x05, 0x02, + 0x02, 0x04, 0x03, 0x06, 0x02, 0x04, 0x02, 0x06, 0x03, 0x03, + 0x12, 0x1A, 0x03, 0x02, 0x05, 0x03, 0x01, 0x05, 0x02, 0x05, + 0x08, 0x04, 0x03, 0x07, 0x02, 0x02, 0x05, 0x05, 0x0A, 0x22, + 0x18, 0x0B, 0x1A, 0x0D, 0x06, 0x14, 0x01, 0x02, 0x02, 0x05, + 0x01, 0x01, 0x01, 0x06, 0x03, 0x07, 0x04, 0x06, 0x0B, 0x05, + 0x0F, 0x1B, 0x0D, 0x2F, 0x43, 0x06, 0x03, 0x07, 0x04, 0x01, + 0x07, 0x03, 0x04, 0x08, 0x04, 0x07, 0x14, 0x0B, 0x0D, 0x1A, + 0x0D, 0x09, 0x0E, 0x07, 0x1C, 0x39, 0x1C, 0x03, 0x04, 0x02, + 0x02, 0x02, 0x01, 0x02, 0x05, 0x03, 0x0E, 0x1C, 0x0E, 0x12, + 0x25, 0x13, 0x0D, 0x09, 0x02, 0x01, 0x11, 0x04, 0x01, 0x02, + 0x02, 0x03, 0x06, 0x02, 0x06, 0x0B, 0x05, 0x05, 0x09, 0x03, + 0x15, 0x2A, 0x15, 0x03, 0x05, 0x03, 0x06, 0x0D, 0x05, 0x02, + 0x06, 0x01, 0x07, 0x0E, 0x07, 0x10, 0x22, 0x11, 0x05, 0x0B, + 0x05, 0x02, 0x08, 0x01, 0x09, 0x11, 0x09, 0x04, 0x08, 0x04, + 0x04, 0x10, 0x05, 0x0E, 0x1B, 0x0E, 0x0E, 0x1E, 0x0E, 0x1B, + 0x36, 0x1B, 0x15, 0x2D, 0x15, 0x0B, 0x18, 0x0B, 0x0C, 0x1A, + 0x0D, 0x16, 0x28, 0x15, 0x07, 0x01, 0x0C, 0xFE, 0x7E, 0x04, + 0x09, 0x08, 0x05, 0x0E, 0x05, 0x06, 0x04, 0x04, 0x04, 0x08, + 0x05, 0x04, 0x11, 0x05, 0x38, 0x05, 0x02, 0x03, 0x05, 0x12, + 0x06, 0x03, 0x0E, 0x03, 0x07, 0x0E, 0x07, 0x03, 0x05, 0x03, + 0x44, 0x03, 0x06, 0x04, 0x07, 0x0F, 0x08, 0x04, 0x04, 0x02, + 0x08, 0x02, 0x07, 0x0F, 0x08, 0x03, 0x01, 0x01, 0x01, 0xE3, + 0x03, 0x05, 0x01, 0x01, 0x10, 0x05, 0x13, 0x1E, 0x08, 0x05, + 0x01, 0x01, 0x09, 0x02, 0x01, 0x01, 0x06, 0x02, 0x04, 0x01, + 0x01, 0x03, 0x03, 0x03, 0x07, 0x03, 0x04, 0x03, 0x05, 0x05, + 0x08, 0x05, 0x05, 0x13, 0x06, 0x05, 0x12, 0x03, 0x01, 0x04, + 0x02, 0x06, 0x02, 0x02, 0x06, 0x03, 0x0C, 0x19, 0x0D, 0x13, + 0x26, 0x13, 0x23, 0x40, 0x1B, 0x0D, 0x16, 0x0A, 0x04, 0x0D, + 0x09, 0x06, 0x0D, 0x05, 0x03, 0x04, 0x03, 0x05, 0x03, 0x02, + 0x01, 0x04, 0x01, 0x07, 0x02, 0x09, 0x15, 0x0B, 0x28, 0x70, + 0x3E, 0x1D, 0x38, 0x1C, 0x06, 0x06, 0x04, 0x07, 0x0E, 0x07, + 0x0A, 0x19, 0x05, 0x05, 0x0B, 0x05, 0x03, 0x0D, 0x06, 0x17, + 0x2E, 0x17, 0x02, 0x04, 0x03, 0x06, 0x05, 0x01, 0x02, 0x01, + 0x06, 0x0A, 0x06, 0x07, 0x0E, 0x07, 0x05, 0x06, 0x0F, 0x08, + 0x05, 0x01, 0x07, 0x02, 0x04, 0x07, 0x04, 0x07, 0x06, 0x02, + 0x02, 0x03, 0x04, 0x1C, 0x38, 0x1C, 0x03, 0x08, 0x03, 0x08, + 0x03, 0x04, 0x02, 0x04, 0x0A, 0x05, 0x0B, 0x18, 0x0B, 0x04, + 0x08, 0x03, 0x02, 0x02, 0x01, 0x0C, 0x19, 0x0C, 0x05, 0x0A, + 0x04, 0x04, 0x03, 0x01, 0x04, 0x08, 0x03, 0x02, 0x05, 0x01, + 0x02, 0x01, 0x01, 0x01, 0x02, 0x05, 0x03, 0x05, 0x06, 0x07, + 0x0E, 0x07, 0x0B, 0x1F, 0x0E, 0x08, 0x1F, 0x06, 0x0A, 0x08, + 0x04, 0x03, 0x02, 0x07, 0x02, 0x0C, 0x01, 0x01, 0x02, 0x01, + 0x01, 0x07, 0x03, 0x06, 0x01, 0x07, 0x03, 0x05, 0x08, 0x03, + 0x03, 0x02, 0x09, 0x04, 0x07, 0x04, 0x02, 0x03, 0x01, 0x1A, + 0x02, 0x01, 0x01, 0x01, 0x03, 0x01, 0x0E, 0x01, 0x01, 0x02, + 0x08, 0x01, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0xFF, 0xC0, + 0x04, 0x00, 0x03, 0xC0, 0x00, 0x17, 0x00, 0x1F, 0x00, 0x27, + 0x00, 0x2F, 0x00, 0x37, 0x00, 0x3F, 0x00, 0x00, 0x01, 0x15, + 0x23, 0x0E, 0x01, 0x07, 0x15, 0x23, 0x35, 0x2E, 0x01, 0x27, + 0x23, 0x35, 0x33, 0x3E, 0x01, 0x37, 0x35, 0x33, 0x15, 0x1E, + 0x01, 0x17, 0x23, 0x2E, 0x01, 0x27, 0x15, 0x1E, 0x01, 0x17, + 0x06, 0x32, 0x36, 0x34, 0x26, 0x22, 0x06, 0x14, 0x11, 0x0E, + 0x01, 0x07, 0x33, 0x3E, 0x01, 0x37, 0x07, 0x1E, 0x01, 0x17, + 0x35, 0x2E, 0x01, 0x27, 0x17, 0x3E, 0x01, 0x37, 0x23, 0x0E, + 0x01, 0x07, 0x04, 0x00, 0x65, 0x15, 0xC0, 0x86, 0x80, 0x86, + 0xC0, 0x15, 0x65, 0x65, 0x15, 0xC0, 0x86, 0x80, 0x86, 0xC0, + 0x15, 0x82, 0x13, 0x75, 0x51, 0x29, 0x3E, 0x0E, 0xCF, 0x34, + 0x26, 0x26, 0x34, 0x26, 0x51, 0x75, 0x13, 0x64, 0x0E, 0x3E, + 0x29, 0xD9, 0x13, 0x75, 0x51, 0x29, 0x3E, 0x0E, 0xF5, 0x51, + 0x75, 0x13, 0x64, 0x0E, 0x3E, 0x29, 0x02, 0x00, 0x80, 0x86, + 0xC0, 0x15, 0x65, 0x65, 0x15, 0xC0, 0x86, 0x80, 0x86, 0xC0, + 0x15, 0x65, 0x65, 0x15, 0xC0, 0x86, 0x51, 0x75, 0x13, 0x64, + 0x0E, 0x3E, 0x29, 0x80, 0x26, 0x34, 0x26, 0x26, 0x34, 0x01, + 0x33, 0x13, 0x75, 0x51, 0x29, 0x3E, 0x0E, 0xF5, 0x51, 0x75, + 0x13, 0x64, 0x0E, 0x3E, 0x29, 0xD9, 0x13, 0x75, 0x51, 0x29, + 0x3E, 0x0E, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0xFF, 0xC0, + 0x04, 0x00, 0x03, 0xC0, 0x00, 0x07, 0x00, 0x0D, 0x00, 0x19, + 0x00, 0x25, 0x00, 0x31, 0x00, 0x3D, 0x00, 0x49, 0x00, 0x55, + 0x00, 0x61, 0x00, 0x6D, 0x00, 0x00, 0x00, 0x32, 0x16, 0x14, + 0x06, 0x22, 0x26, 0x34, 0x01, 0x32, 0x36, 0x34, 0x26, 0x23, + 0x02, 0x32, 0x16, 0x1D, 0x01, 0x14, 0x06, 0x22, 0x26, 0x3D, + 0x01, 0x34, 0x12, 0x22, 0x26, 0x3D, 0x01, 0x34, 0x36, 0x32, + 0x16, 0x1D, 0x01, 0x14, 0x01, 0x32, 0x16, 0x14, 0x06, 0x2B, + 0x01, 0x22, 0x26, 0x34, 0x36, 0x33, 0x04, 0x14, 0x06, 0x2B, + 0x01, 0x22, 0x26, 0x34, 0x36, 0x3B, 0x01, 0x32, 0x01, 0x17, + 0x16, 0x14, 0x06, 0x22, 0x2F, 0x01, 0x26, 0x34, 0x36, 0x32, + 0x01, 0x27, 0x26, 0x34, 0x36, 0x32, 0x1F, 0x01, 0x16, 0x14, + 0x06, 0x22, 0x25, 0x06, 0x22, 0x26, 0x34, 0x3F, 0x01, 0x36, + 0x32, 0x16, 0x14, 0x07, 0x01, 0x36, 0x32, 0x16, 0x14, 0x0F, + 0x01, 0x06, 0x22, 0x26, 0x34, 0x37, 0x01, 0x96, 0xD4, 0x96, + 0x96, 0xD4, 0x96, 0x01, 0x00, 0x42, 0x5E, 0x5E, 0x42, 0x1A, + 0x34, 0x26, 0x26, 0x34, 0x26, 0x5A, 0x34, 0x26, 0x26, 0x34, + 0x26, 0x01, 0x80, 0x1A, 0x26, 0x26, 0x1A, 0x40, 0x1A, 0x26, + 0x26, 0x1A, 0xFD, 0x40, 0x26, 0x1A, 0x40, 0x1A, 0x26, 0x26, + 0x1A, 0x40, 0x1A, 0x02, 0xA3, 0x2D, 0x13, 0x26, 0x35, 0x12, + 0x2E, 0x12, 0x25, 0x35, 0xFD, 0x99, 0x2D, 0x13, 0x26, 0x35, + 0x12, 0x2E, 0x12, 0x25, 0x35, 0x02, 0x67, 0x13, 0x35, 0x25, + 0x12, 0x2E, 0x12, 0x35, 0x26, 0x13, 0xFD, 0x59, 0x13, 0x35, + 0x25, 0x12, 0x2E, 0x12, 0x35, 0x26, 0x13, 0x02, 0xC0, 0x96, + 0xD4, 0x96, 0x96, 0xD4, 0xFE, 0xF6, 0x5E, 0x84, 0x5E, 0xFE, + 0x20, 0x26, 0x1A, 0x40, 0x1A, 0x26, 0x26, 0x1A, 0x40, 0x1A, + 0x02, 0xA6, 0x26, 0x1A, 0x40, 0x1A, 0x26, 0x26, 0x1A, 0x40, + 0x1A, 0xFE, 0xDA, 0x26, 0x34, 0x26, 0x26, 0x34, 0x26, 0x26, + 0x34, 0x26, 0x26, 0x34, 0x26, 0xFE, 0xDE, 0x2E, 0x12, 0x35, + 0x26, 0x13, 0x2D, 0x13, 0x35, 0x25, 0x01, 0xB2, 0x2E, 0x12, + 0x35, 0x26, 0x13, 0x2D, 0x13, 0x35, 0x25, 0x12, 0x12, 0x25, + 0x35, 0x13, 0x2D, 0x13, 0x26, 0x35, 0x12, 0xFE, 0x0E, 0x12, + 0x25, 0x35, 0x13, 0x2D, 0x13, 0x26, 0x35, 0x12, 0x00, 0x01, + 0x00, 0x00, 0xFF, 0xBF, 0x04, 0x01, 0x03, 0xC0, 0x00, 0x1F, + 0x00, 0x00, 0x25, 0x1E, 0x01, 0x0F, 0x01, 0x06, 0x26, 0x27, + 0x01, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x37, 0x17, 0x16, + 0x32, 0x3F, 0x01, 0x36, 0x34, 0x2F, 0x01, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x07, 0x03, 0xEB, 0x14, 0x02, 0x13, 0x65, + 0x13, 0x33, 0x11, 0xFE, 0x75, 0x3F, 0x48, 0x77, 0xA9, 0x0C, + 0xA7, 0x12, 0x36, 0x12, 0x66, 0x12, 0x12, 0xA7, 0x29, 0x2B, + 0x77, 0xA9, 0x22, 0x8E, 0x11, 0x33, 0x13, 0x65, 0x13, 0x02, + 0x14, 0x01, 0xCD, 0x22, 0xA9, 0x77, 0x2B, 0x29, 0xA7, 0x12, + 0x12, 0x66, 0x12, 0x36, 0x12, 0xA7, 0x0C, 0xA9, 0x77, 0x48, + 0x3F, 0x00, 0x00, 0x04, 0x00, 0x00, 0xFF, 0xC0, 0x04, 0x00, + 0x03, 0xC1, 0x00, 0x27, 0x00, 0x2F, 0x00, 0x7F, 0x00, 0x87, + 0x00, 0x00, 0x25, 0x16, 0x1F, 0x01, 0x15, 0x07, 0x06, 0x07, + 0x17, 0x07, 0x27, 0x06, 0x0F, 0x01, 0x23, 0x27, 0x26, 0x27, + 0x07, 0x27, 0x37, 0x26, 0x2F, 0x01, 0x35, 0x37, 0x36, 0x37, + 0x27, 0x37, 0x17, 0x36, 0x3F, 0x01, 0x33, 0x17, 0x16, 0x17, + 0x37, 0x17, 0x06, 0x32, 0x36, 0x34, 0x26, 0x22, 0x06, 0x14, + 0x01, 0x07, 0x06, 0x07, 0x17, 0x07, 0x27, 0x06, 0x07, 0x17, + 0x07, 0x27, 0x06, 0x07, 0x17, 0x07, 0x27, 0x06, 0x0F, 0x01, + 0x23, 0x27, 0x26, 0x27, 0x07, 0x27, 0x37, 0x26, 0x27, 0x07, + 0x27, 0x37, 0x26, 0x27, 0x07, 0x27, 0x37, 0x26, 0x2F, 0x01, + 0x35, 0x37, 0x36, 0x37, 0x27, 0x37, 0x17, 0x36, 0x37, 0x27, + 0x37, 0x17, 0x36, 0x37, 0x27, 0x37, 0x17, 0x36, 0x3F, 0x01, + 0x33, 0x17, 0x16, 0x17, 0x37, 0x17, 0x07, 0x16, 0x17, 0x37, + 0x17, 0x07, 0x16, 0x17, 0x37, 0x17, 0x07, 0x16, 0x1F, 0x01, + 0x04, 0x32, 0x36, 0x34, 0x26, 0x22, 0x06, 0x14, 0x01, 0x6C, + 0x09, 0x05, 0x46, 0x46, 0x05, 0x09, 0x29, 0x2D, 0x3A, 0x10, + 0x12, 0x0C, 0x40, 0x0C, 0x12, 0x10, 0x3A, 0x2D, 0x29, 0x09, + 0x05, 0x46, 0x46, 0x05, 0x09, 0x29, 0x2D, 0x3A, 0x10, 0x12, + 0x0C, 0x40, 0x0C, 0x12, 0x10, 0x3A, 0x2D, 0xCF, 0x34, 0x26, + 0x26, 0x34, 0x26, 0x03, 0x60, 0x43, 0x02, 0x03, 0x39, 0x18, + 0x43, 0x06, 0x08, 0x27, 0x2D, 0x38, 0x0A, 0x0A, 0x0E, 0x3B, + 0x25, 0x0C, 0x0C, 0x0C, 0x40, 0x0C, 0x0D, 0x0B, 0x25, 0x3B, + 0x0E, 0x0A, 0x0A, 0x38, 0x2E, 0x27, 0x07, 0x06, 0x43, 0x19, + 0x3A, 0x03, 0x02, 0x43, 0x43, 0x02, 0x03, 0x3A, 0x19, 0x43, + 0x06, 0x07, 0x27, 0x2E, 0x38, 0x09, 0x0B, 0x0E, 0x3B, 0x25, + 0x0C, 0x0C, 0x0C, 0x40, 0x0C, 0x0D, 0x0B, 0x25, 0x3B, 0x0E, + 0x09, 0x0B, 0x38, 0x2D, 0x27, 0x07, 0x07, 0x43, 0x18, 0x39, + 0x03, 0x02, 0x43, 0xFE, 0x66, 0x74, 0x51, 0x51, 0x74, 0x51, + 0xEE, 0x10, 0x12, 0x0C, 0x40, 0x0C, 0x12, 0x10, 0x3A, 0x2D, + 0x29, 0x09, 0x05, 0x46, 0x46, 0x05, 0x09, 0x29, 0x2D, 0x3A, + 0x10, 0x12, 0x0C, 0x40, 0x0C, 0x12, 0x10, 0x3A, 0x2D, 0x29, + 0x09, 0x05, 0x46, 0x46, 0x05, 0x09, 0x29, 0x2D, 0xC8, 0x26, + 0x34, 0x26, 0x26, 0x34, 0x01, 0xBA, 0x0C, 0x0D, 0x0B, 0x25, + 0x3B, 0x0E, 0x0A, 0x0A, 0x38, 0x2E, 0x27, 0x07, 0x06, 0x43, + 0x19, 0x3A, 0x03, 0x02, 0x43, 0x43, 0x02, 0x03, 0x3A, 0x19, + 0x43, 0x06, 0x07, 0x27, 0x2E, 0x38, 0x0A, 0x0A, 0x0E, 0x3B, + 0x25, 0x0C, 0x0C, 0x0C, 0x40, 0x0C, 0x0D, 0x0B, 0x25, 0x3B, + 0x0E, 0x0A, 0x0A, 0x38, 0x2E, 0x27, 0x07, 0x06, 0x43, 0x19, + 0x3A, 0x03, 0x02, 0x43, 0x43, 0x02, 0x03, 0x3A, 0x19, 0x43, + 0x06, 0x07, 0x27, 0x2E, 0x38, 0x0A, 0x0A, 0x0E, 0x3B, 0x25, + 0x0C, 0x0C, 0x0C, 0xAB, 0x51, 0x74, 0x51, 0x51, 0x74, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0xAE, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0A, + 0x00, 0x19, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x07, 0x00, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x25, 0x00, 0x88, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x0A, 0x00, 0xC4, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0B, 0x00, 0xE7, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x0A, + 0x01, 0x09, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x01, 0x00, 0x14, 0x00, 0x03, 0x00, 0x03, 0x00, 0x01, + 0x04, 0x09, 0x00, 0x02, 0x00, 0x0E, 0x00, 0x24, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x03, 0x00, 0x4A, 0x00, 0x3C, + 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x04, 0x00, 0x14, + 0x00, 0xAE, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x05, + 0x00, 0x16, 0x00, 0xCF, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x06, 0x00, 0x14, 0x00, 0xF3, 0x00, 0x00, 0x00, 0x00, + 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x65, 0x00, 0x66, 0x00, + 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, + 0x00, 0x75, 0x6E, 0x64, 0x65, 0x66, 0x65, 0x61, 0x74, 0x65, + 0x64, 0x00, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, 0x00, 0x75, + 0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, 0x00, 0x00, 0x52, 0x65, + 0x67, 0x75, 0x6C, 0x61, 0x72, 0x00, 0x00, 0x46, 0x00, 0x6F, + 0x00, 0x6E, 0x00, 0x74, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x72, + 0x00, 0x67, 0x00, 0x65, 0x00, 0x20, 0x00, 0x32, 0x00, 0x2E, + 0x00, 0x30, 0x00, 0x20, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x75, + 0x00, 0x6E, 0x00, 0x64, 0x00, 0x65, 0x00, 0x66, 0x00, 0x65, + 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, + 0x00, 0x3A, 0x00, 0x20, 0x00, 0x33, 0x00, 0x2D, 0x00, 0x33, + 0x00, 0x2D, 0x00, 0x32, 0x00, 0x30, 0x00, 0x31, 0x00, 0x37, + 0x00, 0x00, 0x46, 0x6F, 0x6E, 0x74, 0x46, 0x6F, 0x72, 0x67, + 0x65, 0x20, 0x32, 0x2E, 0x30, 0x20, 0x3A, 0x20, 0x75, 0x6E, + 0x64, 0x65, 0x66, 0x65, 0x61, 0x74, 0x65, 0x64, 0x20, 0x3A, + 0x20, 0x33, 0x2D, 0x33, 0x2D, 0x32, 0x30, 0x31, 0x37, 0x00, + 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x65, 0x00, 0x66, + 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, + 0x00, 0x00, 0x75, 0x6E, 0x64, 0x65, 0x66, 0x65, 0x61, 0x74, + 0x65, 0x64, 0x00, 0x00, 0x56, 0x00, 0x65, 0x00, 0x72, 0x00, + 0x73, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, + 0x31, 0x00, 0x2E, 0x00, 0x31, 0x00, 0x00, 0x56, 0x65, 0x72, + 0x73, 0x69, 0x6F, 0x6E, 0x20, 0x31, 0x2E, 0x31, 0x00, 0x00, + 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x65, 0x00, 0x66, 0x00, + 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, + 0x00, 0x75, 0x6E, 0x64, 0x65, 0x66, 0x65, 0x61, 0x74, 0x65, + 0x64, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, + 0x01, 0x02, 0x00, 0x02, 0x01, 0x03, 0x00, 0x03, 0x00, 0x13, + 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x18, + 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, 0x00, 0x1C, 0x00, 0x24, + 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, 0x00, 0x29, + 0x00, 0x2A, 0x00, 0x2B, 0x00, 0x2C, 0x00, 0x2D, 0x00, 0x2E, + 0x00, 0x2F, 0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x33, + 0x00, 0x34, 0x00, 0x35, 0x00, 0x36, 0x00, 0x37, 0x00, 0x38, + 0x00, 0x39, 0x00, 0x3A, 0x00, 0x3B, 0x00, 0x3C, 0x00, 0x3D, + 0x00, 0x3E, 0x00, 0x40, 0x00, 0x44, 0x00, 0x45, 0x00, 0x46, + 0x00, 0x47, 0x00, 0x48, 0x00, 0x49, 0x00, 0x4A, 0x00, 0x4B, + 0x00, 0x4C, 0x00, 0x4D, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, + 0x00, 0x51, 0x00, 0x52, 0x00, 0x53, 0x00, 0x54, 0x00, 0x55, + 0x00, 0x56, 0x00, 0x57, 0x00, 0x58, 0x00, 0x59, 0x06, 0x67, + 0x6C, 0x79, 0x70, 0x68, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x30, 0x30, 0x31, 0x00, 0x00, 0x01, 0x00, 0x01, 0xFF, 0xFF, + 0x00, 0x0F, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, + 0x00, 0x16, 0x00, 0x1E, 0x00, 0x02, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x40, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0xD4, 0x19, 0x57, 0x3F, 0x00, 0x00, 0x00, 0x00, 0xD2, 0xEB, + 0xED, 0xCA, 0x00, 0x00, 0x00, 0x00, 0xD4, 0xDE, 0x2E, 0x83, +}; + +BYTE keybinds_font[/*25600*/] = { + 0x00, 0x01, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x80, 0x00, 0x03, + 0x00, 0x40, 0x4F, 0x53, 0x2F, 0x32, 0x64, 0xB3, 0xFC, 0x7D, + 0x00, 0x00, 0x01, 0x48, 0x00, 0x00, 0x00, 0x60, 0x56, 0x44, + 0x4D, 0x58, 0x68, 0x60, 0x6F, 0xF7, 0x00, 0x00, 0x06, 0x98, + 0x00, 0x00, 0x05, 0xE0, 0x63, 0x6D, 0x61, 0x70, 0x7A, 0x5F, + 0x80, 0x23, 0x00, 0x00, 0x0C, 0x78, 0x00, 0x00, 0x05, 0x30, + 0x67, 0x61, 0x73, 0x70, 0xFF, 0xFF, 0x00, 0x01, 0x00, 0x00, + 0x63, 0xF8, 0x00, 0x00, 0x00, 0x08, 0x67, 0x6C, 0x79, 0x66, + 0xBD, 0xD2, 0x12, 0x21, 0x00, 0x00, 0x11, 0xA8, 0x00, 0x00, + 0x45, 0x14, 0x68, 0x65, 0x61, 0x64, 0xFE, 0x1A, 0x92, 0xCF, + 0x00, 0x00, 0x00, 0xCC, 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, + 0x65, 0x61, 0x07, 0xA0, 0x05, 0xBB, 0x00, 0x00, 0x01, 0x04, + 0x00, 0x00, 0x00, 0x24, 0x68, 0x6D, 0x74, 0x78, 0x66, 0x76, + 0x00, 0x00, 0x00, 0x00, 0x01, 0xA8, 0x00, 0x00, 0x04, 0xF0, + 0x6C, 0x6F, 0x63, 0x61, 0xEF, 0x71, 0xDE, 0x0C, 0x00, 0x00, + 0x56, 0xBC, 0x00, 0x00, 0x02, 0x7A, 0x6D, 0x61, 0x78, 0x70, + 0x01, 0x41, 0x00, 0x33, 0x00, 0x00, 0x01, 0x28, 0x00, 0x00, + 0x00, 0x20, 0x6E, 0x61, 0x6D, 0x65, 0xFF, 0x47, 0x8A, 0x55, + 0x00, 0x00, 0x59, 0x38, 0x00, 0x00, 0x04, 0x2D, 0x70, 0x6F, + 0x73, 0x74, 0x7C, 0xFA, 0xA8, 0xA0, 0x00, 0x00, 0x5D, 0x68, + 0x00, 0x00, 0x06, 0x8E, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x2B, 0x19, 0x9C, 0x36, 0x5F, 0x0F, 0x3C, 0xF5, + 0x00, 0x09, 0x03, 0xE8, 0x00, 0x00, 0x00, 0x00, 0xCD, 0x26, + 0xA6, 0x2E, 0x00, 0x00, 0x00, 0x00, 0xCD, 0x26, 0xA9, 0x63, + 0x00, 0x00, 0xFF, 0x38, 0x04, 0xB0, 0x03, 0x20, 0x00, 0x00, + 0x00, 0x09, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x02, 0xEE, 0xFF, 0x06, 0x00, 0x00, + 0x05, 0x14, 0x00, 0x00, 0x00, 0x64, 0x04, 0xB0, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x3C, 0x00, 0x01, 0x00, 0x00, + 0x01, 0x3C, 0x00, 0x32, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x01, 0xF3, 0x01, 0x90, 0x00, 0x05, 0x00, 0x00, 0x02, 0xBC, + 0x02, 0x8A, 0x00, 0x00, 0xFF, 0x9C, 0x02, 0xBC, 0x02, 0x8A, + 0x00, 0x00, 0x00, 0xFA, 0x00, 0x32, 0x00, 0xFA, 0x00, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x80, 0x00, 0x02, 0x2F, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x59, 0x52, 0x53, + 0x00, 0x40, 0x00, 0x20, 0x21, 0x22, 0x02, 0xEE, 0xFF, 0x06, + 0x00, 0x00, 0x03, 0x20, 0x00, 0xC8, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xFA, 0x01, 0xF4, 0x00, 0x00, + 0x00, 0x20, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x00, 0xC8, 0x00, 0x00, 0x01, 0x2D, 0x00, 0x00, + 0x01, 0x2D, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0x2C, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xC8, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x00, 0xC8, + 0x00, 0x00, 0x01, 0x2C, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0x2C, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0x2C, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0x2C, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x00, 0xC8, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0x2C, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x01, 0x2C, 0x00, 0x00, 0x01, 0x2C, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0x2C, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x03, 0x84, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x00, 0xC8, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x02, 0xBC, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0x2C, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0xC8, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x02, 0xBC, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x02, 0xBC, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x02, 0xBC, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x02, 0xBC, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x02, 0xBC, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x02, 0xBC, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x00, 0xC8, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0x2C, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x05, 0x14, 0x00, 0x00, 0x05, 0x14, + 0x00, 0x00, 0x05, 0x14, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0xC8, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x0C, + 0x00, 0xF8, 0x08, 0xFF, 0x00, 0x08, 0x00, 0x07, 0xFF, 0xFE, + 0x00, 0x09, 0x00, 0x08, 0xFF, 0xFE, 0x00, 0x0A, 0x00, 0x08, + 0xFF, 0xFE, 0x00, 0x0B, 0x00, 0x09, 0xFF, 0xFD, 0x00, 0x0C, + 0x00, 0x0A, 0xFF, 0xFD, 0x00, 0x0D, 0x00, 0x0B, 0xFF, 0xFD, + 0x00, 0x0E, 0x00, 0x0C, 0xFF, 0xFD, 0x00, 0x0F, 0x00, 0x0C, + 0xFF, 0xFD, 0x00, 0x10, 0x00, 0x0D, 0xFF, 0xFC, 0x00, 0x11, + 0x00, 0x0E, 0xFF, 0xFC, 0x00, 0x12, 0x00, 0x0F, 0xFF, 0xFC, + 0x00, 0x13, 0x00, 0x10, 0xFF, 0xFC, 0x00, 0x14, 0x00, 0x10, + 0xFF, 0xFC, 0x00, 0x15, 0x00, 0x11, 0xFF, 0xFB, 0x00, 0x16, + 0x00, 0x12, 0xFF, 0xFB, 0x00, 0x17, 0x00, 0x13, 0xFF, 0xFB, + 0x00, 0x18, 0x00, 0x14, 0xFF, 0xFB, 0x00, 0x19, 0x00, 0x14, + 0xFF, 0xFB, 0x00, 0x1A, 0x00, 0x15, 0xFF, 0xFA, 0x00, 0x1B, + 0x00, 0x16, 0xFF, 0xFA, 0x00, 0x1C, 0x00, 0x17, 0xFF, 0xFA, + 0x00, 0x1D, 0x00, 0x18, 0xFF, 0xFA, 0x00, 0x1E, 0x00, 0x18, + 0xFF, 0xFA, 0x00, 0x1F, 0x00, 0x19, 0xFF, 0xF9, 0x00, 0x20, + 0x00, 0x1A, 0xFF, 0xF9, 0x00, 0x21, 0x00, 0x1B, 0xFF, 0xF9, + 0x00, 0x22, 0x00, 0x1C, 0xFF, 0xF9, 0x00, 0x23, 0x00, 0x1C, + 0xFF, 0xF9, 0x00, 0x24, 0x00, 0x1D, 0xFF, 0xF8, 0x00, 0x25, + 0x00, 0x1E, 0xFF, 0xF8, 0x00, 0x26, 0x00, 0x1F, 0xFF, 0xF8, + 0x00, 0x27, 0x00, 0x20, 0xFF, 0xF8, 0x00, 0x28, 0x00, 0x20, + 0xFF, 0xF8, 0x00, 0x29, 0x00, 0x21, 0xFF, 0xF7, 0x00, 0x2A, + 0x00, 0x22, 0xFF, 0xF7, 0x00, 0x2B, 0x00, 0x23, 0xFF, 0xF7, + 0x00, 0x2C, 0x00, 0x24, 0xFF, 0xF7, 0x00, 0x2D, 0x00, 0x24, + 0xFF, 0xF7, 0x00, 0x2E, 0x00, 0x25, 0xFF, 0xF6, 0x00, 0x2F, + 0x00, 0x26, 0xFF, 0xF6, 0x00, 0x30, 0x00, 0x27, 0xFF, 0xF6, + 0x00, 0x31, 0x00, 0x28, 0xFF, 0xF6, 0x00, 0x32, 0x00, 0x28, + 0xFF, 0xF6, 0x00, 0x33, 0x00, 0x29, 0xFF, 0xF5, 0x00, 0x34, + 0x00, 0x2A, 0xFF, 0xF5, 0x00, 0x35, 0x00, 0x2B, 0xFF, 0xF5, + 0x00, 0x36, 0x00, 0x2C, 0xFF, 0xF5, 0x00, 0x37, 0x00, 0x2C, + 0xFF, 0xF5, 0x00, 0x38, 0x00, 0x2D, 0xFF, 0xF4, 0x00, 0x39, + 0x00, 0x2E, 0xFF, 0xF4, 0x00, 0x3A, 0x00, 0x2F, 0xFF, 0xF4, + 0x00, 0x3B, 0x00, 0x30, 0xFF, 0xF4, 0x00, 0x3C, 0x00, 0x30, + 0xFF, 0xF4, 0x00, 0x3D, 0x00, 0x31, 0xFF, 0xF3, 0x00, 0x3E, + 0x00, 0x32, 0xFF, 0xF3, 0x00, 0x3F, 0x00, 0x33, 0xFF, 0xF3, + 0x00, 0x40, 0x00, 0x34, 0xFF, 0xF3, 0x00, 0x41, 0x00, 0x34, + 0xFF, 0xF3, 0x00, 0x42, 0x00, 0x35, 0xFF, 0xF2, 0x00, 0x43, + 0x00, 0x36, 0xFF, 0xF2, 0x00, 0x44, 0x00, 0x37, 0xFF, 0xF2, + 0x00, 0x45, 0x00, 0x38, 0xFF, 0xF2, 0x00, 0x46, 0x00, 0x38, + 0xFF, 0xF2, 0x00, 0x47, 0x00, 0x39, 0xFF, 0xF1, 0x00, 0x48, + 0x00, 0x3A, 0xFF, 0xF1, 0x00, 0x49, 0x00, 0x3B, 0xFF, 0xF1, + 0x00, 0x4A, 0x00, 0x3C, 0xFF, 0xF1, 0x00, 0x4B, 0x00, 0x3C, + 0xFF, 0xF1, 0x00, 0x4C, 0x00, 0x3D, 0xFF, 0xF0, 0x00, 0x4D, + 0x00, 0x3E, 0xFF, 0xF0, 0x00, 0x4E, 0x00, 0x3F, 0xFF, 0xF0, + 0x00, 0x4F, 0x00, 0x40, 0xFF, 0xF0, 0x00, 0x50, 0x00, 0x40, + 0xFF, 0xF0, 0x00, 0x51, 0x00, 0x41, 0xFF, 0xEF, 0x00, 0x52, + 0x00, 0x42, 0xFF, 0xEF, 0x00, 0x53, 0x00, 0x43, 0xFF, 0xEF, + 0x00, 0x54, 0x00, 0x44, 0xFF, 0xEF, 0x00, 0x55, 0x00, 0x44, + 0xFF, 0xEF, 0x00, 0x56, 0x00, 0x45, 0xFF, 0xEE, 0x00, 0x57, + 0x00, 0x46, 0xFF, 0xEE, 0x00, 0x58, 0x00, 0x47, 0xFF, 0xEE, + 0x00, 0x59, 0x00, 0x48, 0xFF, 0xEE, 0x00, 0x5A, 0x00, 0x48, + 0xFF, 0xEE, 0x00, 0x5B, 0x00, 0x49, 0xFF, 0xED, 0x00, 0x5C, + 0x00, 0x4A, 0xFF, 0xED, 0x00, 0x5D, 0x00, 0x4B, 0xFF, 0xED, + 0x00, 0x5E, 0x00, 0x4C, 0xFF, 0xED, 0x00, 0x5F, 0x00, 0x4C, + 0xFF, 0xED, 0x00, 0x60, 0x00, 0x4D, 0xFF, 0xEC, 0x00, 0x61, + 0x00, 0x4E, 0xFF, 0xEC, 0x00, 0x62, 0x00, 0x4F, 0xFF, 0xEC, + 0x00, 0x63, 0x00, 0x50, 0xFF, 0xEC, 0x00, 0x64, 0x00, 0x50, + 0xFF, 0xEC, 0x00, 0x65, 0x00, 0x51, 0xFF, 0xEB, 0x00, 0x66, + 0x00, 0x52, 0xFF, 0xEB, 0x00, 0x67, 0x00, 0x53, 0xFF, 0xEB, + 0x00, 0x68, 0x00, 0x54, 0xFF, 0xEB, 0x00, 0x69, 0x00, 0x54, + 0xFF, 0xEB, 0x00, 0x6A, 0x00, 0x55, 0xFF, 0xEA, 0x00, 0x6B, + 0x00, 0x56, 0xFF, 0xEA, 0x00, 0x6C, 0x00, 0x57, 0xFF, 0xEA, + 0x00, 0x6D, 0x00, 0x58, 0xFF, 0xEA, 0x00, 0x6E, 0x00, 0x58, + 0xFF, 0xEA, 0x00, 0x6F, 0x00, 0x59, 0xFF, 0xE9, 0x00, 0x70, + 0x00, 0x5A, 0xFF, 0xE9, 0x00, 0x71, 0x00, 0x5B, 0xFF, 0xE9, + 0x00, 0x72, 0x00, 0x5C, 0xFF, 0xE9, 0x00, 0x73, 0x00, 0x5C, + 0xFF, 0xE9, 0x00, 0x74, 0x00, 0x5D, 0xFF, 0xE8, 0x00, 0x75, + 0x00, 0x5E, 0xFF, 0xE8, 0x00, 0x76, 0x00, 0x5F, 0xFF, 0xE8, + 0x00, 0x77, 0x00, 0x60, 0xFF, 0xE8, 0x00, 0x78, 0x00, 0x60, + 0xFF, 0xE8, 0x00, 0x79, 0x00, 0x61, 0xFF, 0xE7, 0x00, 0x7A, + 0x00, 0x62, 0xFF, 0xE7, 0x00, 0x7B, 0x00, 0x63, 0xFF, 0xE7, + 0x00, 0x7C, 0x00, 0x64, 0xFF, 0xE7, 0x00, 0x7D, 0x00, 0x64, + 0xFF, 0xE7, 0x00, 0x7E, 0x00, 0x65, 0xFF, 0xE6, 0x00, 0x7F, + 0x00, 0x66, 0xFF, 0xE6, 0x00, 0x80, 0x00, 0x67, 0xFF, 0xE6, + 0x00, 0x81, 0x00, 0x68, 0xFF, 0xE6, 0x00, 0x82, 0x00, 0x68, + 0xFF, 0xE6, 0x00, 0x83, 0x00, 0x69, 0xFF, 0xE5, 0x00, 0x84, + 0x00, 0x6A, 0xFF, 0xE5, 0x00, 0x85, 0x00, 0x6B, 0xFF, 0xE5, + 0x00, 0x86, 0x00, 0x6C, 0xFF, 0xE5, 0x00, 0x87, 0x00, 0x6C, + 0xFF, 0xE5, 0x00, 0x88, 0x00, 0x6D, 0xFF, 0xE4, 0x00, 0x89, + 0x00, 0x6E, 0xFF, 0xE4, 0x00, 0x8A, 0x00, 0x6F, 0xFF, 0xE4, + 0x00, 0x8B, 0x00, 0x70, 0xFF, 0xE4, 0x00, 0x8C, 0x00, 0x70, + 0xFF, 0xE4, 0x00, 0x8D, 0x00, 0x71, 0xFF, 0xE3, 0x00, 0x8E, + 0x00, 0x72, 0xFF, 0xE3, 0x00, 0x8F, 0x00, 0x73, 0xFF, 0xE3, + 0x00, 0x90, 0x00, 0x74, 0xFF, 0xE3, 0x00, 0x91, 0x00, 0x74, + 0xFF, 0xE3, 0x00, 0x92, 0x00, 0x75, 0xFF, 0xE2, 0x00, 0x93, + 0x00, 0x76, 0xFF, 0xE2, 0x00, 0x94, 0x00, 0x77, 0xFF, 0xE2, + 0x00, 0x95, 0x00, 0x78, 0xFF, 0xE2, 0x00, 0x96, 0x00, 0x78, + 0xFF, 0xE2, 0x00, 0x97, 0x00, 0x79, 0xFF, 0xE1, 0x00, 0x98, + 0x00, 0x7A, 0xFF, 0xE1, 0x00, 0x99, 0x00, 0x7B, 0xFF, 0xE1, + 0x00, 0x9A, 0x00, 0x7C, 0xFF, 0xE1, 0x00, 0x9B, 0x00, 0x7C, + 0xFF, 0xE1, 0x00, 0x9C, 0x00, 0x7D, 0xFF, 0xE0, 0x00, 0x9D, + 0x00, 0x7E, 0xFF, 0xE0, 0x00, 0x9E, 0x00, 0x7F, 0xFF, 0xE0, + 0x00, 0x9F, 0x00, 0x80, 0xFF, 0xE0, 0x00, 0xA0, 0x00, 0x80, + 0xFF, 0xE0, 0x00, 0xA1, 0x00, 0x81, 0xFF, 0xDF, 0x00, 0xA2, + 0x00, 0x82, 0xFF, 0xDF, 0x00, 0xA3, 0x00, 0x83, 0xFF, 0xDF, + 0x00, 0xA4, 0x00, 0x84, 0xFF, 0xDF, 0x00, 0xA5, 0x00, 0x84, + 0xFF, 0xDF, 0x00, 0xA6, 0x00, 0x85, 0xFF, 0xDE, 0x00, 0xA7, + 0x00, 0x86, 0xFF, 0xDE, 0x00, 0xA8, 0x00, 0x87, 0xFF, 0xDE, + 0x00, 0xA9, 0x00, 0x88, 0xFF, 0xDE, 0x00, 0xAA, 0x00, 0x88, + 0xFF, 0xDE, 0x00, 0xAB, 0x00, 0x89, 0xFF, 0xDD, 0x00, 0xAC, + 0x00, 0x8A, 0xFF, 0xDD, 0x00, 0xAD, 0x00, 0x8B, 0xFF, 0xDD, + 0x00, 0xAE, 0x00, 0x8C, 0xFF, 0xDD, 0x00, 0xAF, 0x00, 0x8C, + 0xFF, 0xDD, 0x00, 0xB0, 0x00, 0x8D, 0xFF, 0xDC, 0x00, 0xB1, + 0x00, 0x8E, 0xFF, 0xDC, 0x00, 0xB2, 0x00, 0x8F, 0xFF, 0xDC, + 0x00, 0xB3, 0x00, 0x90, 0xFF, 0xDC, 0x00, 0xB4, 0x00, 0x90, + 0xFF, 0xDC, 0x00, 0xB5, 0x00, 0x91, 0xFF, 0xDB, 0x00, 0xB6, + 0x00, 0x92, 0xFF, 0xDB, 0x00, 0xB7, 0x00, 0x93, 0xFF, 0xDB, + 0x00, 0xB8, 0x00, 0x94, 0xFF, 0xDB, 0x00, 0xB9, 0x00, 0x94, + 0xFF, 0xDB, 0x00, 0xBA, 0x00, 0x95, 0xFF, 0xDA, 0x00, 0xBB, + 0x00, 0x96, 0xFF, 0xDA, 0x00, 0xBC, 0x00, 0x97, 0xFF, 0xDA, + 0x00, 0xBD, 0x00, 0x98, 0xFF, 0xDA, 0x00, 0xBE, 0x00, 0x98, + 0xFF, 0xDA, 0x00, 0xBF, 0x00, 0x99, 0xFF, 0xD9, 0x00, 0xC0, + 0x00, 0x9A, 0xFF, 0xD9, 0x00, 0xC1, 0x00, 0x9B, 0xFF, 0xD9, + 0x00, 0xC2, 0x00, 0x9C, 0xFF, 0xD9, 0x00, 0xC3, 0x00, 0x9C, + 0xFF, 0xD9, 0x00, 0xC4, 0x00, 0x9D, 0xFF, 0xD8, 0x00, 0xC5, + 0x00, 0x9E, 0xFF, 0xD8, 0x00, 0xC6, 0x00, 0x9F, 0xFF, 0xD8, + 0x00, 0xC7, 0x00, 0xA0, 0xFF, 0xD8, 0x00, 0xC8, 0x00, 0xA0, + 0xFF, 0xD8, 0x00, 0xC9, 0x00, 0xA1, 0xFF, 0xD7, 0x00, 0xCA, + 0x00, 0xA2, 0xFF, 0xD7, 0x00, 0xCB, 0x00, 0xA3, 0xFF, 0xD7, + 0x00, 0xCC, 0x00, 0xA4, 0xFF, 0xD7, 0x00, 0xCD, 0x00, 0xA4, + 0xFF, 0xD7, 0x00, 0xCE, 0x00, 0xA5, 0xFF, 0xD6, 0x00, 0xCF, + 0x00, 0xA6, 0xFF, 0xD6, 0x00, 0xD0, 0x00, 0xA7, 0xFF, 0xD6, + 0x00, 0xD1, 0x00, 0xA8, 0xFF, 0xD6, 0x00, 0xD2, 0x00, 0xA8, + 0xFF, 0xD6, 0x00, 0xD3, 0x00, 0xA9, 0xFF, 0xD5, 0x00, 0xD4, + 0x00, 0xAA, 0xFF, 0xD5, 0x00, 0xD5, 0x00, 0xAB, 0xFF, 0xD5, + 0x00, 0xD6, 0x00, 0xAC, 0xFF, 0xD5, 0x00, 0xD7, 0x00, 0xAC, + 0xFF, 0xD5, 0x00, 0xD8, 0x00, 0xAD, 0xFF, 0xD4, 0x00, 0xD9, + 0x00, 0xAE, 0xFF, 0xD4, 0x00, 0xDA, 0x00, 0xAF, 0xFF, 0xD4, + 0x00, 0xDB, 0x00, 0xB0, 0xFF, 0xD4, 0x00, 0xDC, 0x00, 0xB0, + 0xFF, 0xD4, 0x00, 0xDD, 0x00, 0xB1, 0xFF, 0xD3, 0x00, 0xDE, + 0x00, 0xB2, 0xFF, 0xD3, 0x00, 0xDF, 0x00, 0xB3, 0xFF, 0xD3, + 0x00, 0xE0, 0x00, 0xB4, 0xFF, 0xD3, 0x00, 0xE1, 0x00, 0xB4, + 0xFF, 0xD3, 0x00, 0xE2, 0x00, 0xB5, 0xFF, 0xD2, 0x00, 0xE3, + 0x00, 0xB6, 0xFF, 0xD2, 0x00, 0xE4, 0x00, 0xB7, 0xFF, 0xD2, + 0x00, 0xE5, 0x00, 0xB8, 0xFF, 0xD2, 0x00, 0xE6, 0x00, 0xB8, + 0xFF, 0xD2, 0x00, 0xE7, 0x00, 0xB9, 0xFF, 0xD1, 0x00, 0xE8, + 0x00, 0xBA, 0xFF, 0xD1, 0x00, 0xE9, 0x00, 0xBB, 0xFF, 0xD1, + 0x00, 0xEA, 0x00, 0xBC, 0xFF, 0xD1, 0x00, 0xEB, 0x00, 0xBC, + 0xFF, 0xD1, 0x00, 0xEC, 0x00, 0xBD, 0xFF, 0xD0, 0x00, 0xED, + 0x00, 0xBE, 0xFF, 0xD0, 0x00, 0xEE, 0x00, 0xBF, 0xFF, 0xD0, + 0x00, 0xEF, 0x00, 0xC0, 0xFF, 0xD0, 0x00, 0xF0, 0x00, 0xC0, + 0xFF, 0xD0, 0x00, 0xF1, 0x00, 0xC1, 0xFF, 0xCF, 0x00, 0xF2, + 0x00, 0xC2, 0xFF, 0xCF, 0x00, 0xF3, 0x00, 0xC3, 0xFF, 0xCF, + 0x00, 0xF4, 0x00, 0xC4, 0xFF, 0xCF, 0x00, 0xF5, 0x00, 0xC4, + 0xFF, 0xCF, 0x00, 0xF6, 0x00, 0xC5, 0xFF, 0xCE, 0x00, 0xF7, + 0x00, 0xC6, 0xFF, 0xCE, 0x00, 0xF8, 0x00, 0xC7, 0xFF, 0xCE, + 0x00, 0xF9, 0x00, 0xC8, 0xFF, 0xCE, 0x00, 0xFA, 0x00, 0xC8, + 0xFF, 0xCE, 0x00, 0xFB, 0x00, 0xC9, 0xFF, 0xCD, 0x00, 0xFC, + 0x00, 0xCA, 0xFF, 0xCD, 0x00, 0xFD, 0x00, 0xCB, 0xFF, 0xCD, + 0x00, 0xFE, 0x00, 0xCC, 0xFF, 0xCD, 0x00, 0xFF, 0x00, 0xCC, + 0xFF, 0xCD, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x03, 0xA8, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x1C, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x02, 0x20, + 0x00, 0x06, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFD, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x01, 0x3A, 0x01, 0x3B, + 0x01, 0x39, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, + 0x00, 0x08, 0x00, 0x09, 0x00, 0x0A, 0x00, 0x0B, 0x00, 0x0C, + 0x00, 0x0D, 0x00, 0x0E, 0x00, 0x0F, 0x00, 0x10, 0x00, 0x11, + 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, + 0x00, 0x17, 0x00, 0x18, 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, + 0x00, 0x1C, 0x00, 0x1D, 0x00, 0x1E, 0x00, 0x1F, 0x00, 0x20, + 0x00, 0x21, 0x00, 0x22, 0x00, 0x23, 0x00, 0x24, 0x00, 0x25, + 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, 0x00, 0x29, 0x00, 0x2A, + 0x00, 0x2B, 0x00, 0x2C, 0x00, 0x2D, 0x00, 0x2E, 0x00, 0x2F, + 0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x33, 0x00, 0x34, + 0x00, 0x35, 0x00, 0x36, 0x00, 0x37, 0x00, 0x38, 0x00, 0x39, + 0x00, 0x3A, 0x00, 0x3B, 0x00, 0x3C, 0x00, 0x3D, 0x00, 0x3E, + 0x00, 0x3F, 0x00, 0x40, 0x00, 0x41, 0x00, 0x42, 0x00, 0x43, + 0x00, 0x44, 0x00, 0x45, 0x00, 0x46, 0x00, 0x47, 0x00, 0x48, + 0x00, 0x49, 0x00, 0x4A, 0x00, 0x4B, 0x00, 0x4C, 0x00, 0x4D, + 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, 0x00, 0x51, 0x00, 0x52, + 0x00, 0x53, 0x00, 0x54, 0x00, 0x55, 0x00, 0x56, 0x00, 0x57, + 0x00, 0x58, 0x00, 0x59, 0x00, 0x5A, 0x00, 0x5B, 0x00, 0x5C, + 0x00, 0x5D, 0x00, 0x5E, 0x00, 0x00, 0x00, 0xF3, 0x00, 0xF4, + 0x00, 0xF6, 0x00, 0xF8, 0x01, 0x00, 0x01, 0x05, 0x01, 0x0B, + 0x01, 0x10, 0x01, 0x0F, 0x01, 0x11, 0x01, 0x13, 0x01, 0x12, + 0x01, 0x14, 0x01, 0x16, 0x01, 0x18, 0x01, 0x17, 0x01, 0x19, + 0x01, 0x1A, 0x01, 0x1C, 0x01, 0x1B, 0x01, 0x1D, 0x01, 0x1E, + 0x01, 0x20, 0x01, 0x22, 0x01, 0x21, 0x01, 0x23, 0x01, 0x25, + 0x01, 0x24, 0x01, 0x29, 0x01, 0x28, 0x01, 0x2A, 0x01, 0x2B, + 0x00, 0x65, 0x00, 0x8D, 0x00, 0xE0, 0x00, 0xE1, 0x00, 0x84, + 0x00, 0x74, 0x00, 0x93, 0x01, 0x0E, 0x00, 0x8B, 0x00, 0x86, + 0x00, 0x77, 0x00, 0xE7, 0x00, 0xE3, 0x00, 0x00, 0x00, 0xF5, + 0x01, 0x07, 0x00, 0x00, 0x00, 0x8E, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xE2, 0x00, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xE4, 0x00, 0xEA, 0x00, 0x00, + 0x01, 0x15, 0x01, 0x27, 0x00, 0xEE, 0x00, 0xDF, 0x00, 0x89, + 0x00, 0x00, 0x01, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x88, + 0x00, 0x98, 0x00, 0x64, 0x00, 0x03, 0x00, 0xEF, 0x00, 0xF2, + 0x01, 0x04, 0x01, 0x2F, 0x01, 0x30, 0x00, 0x75, 0x00, 0x76, + 0x00, 0x72, 0x00, 0x73, 0x00, 0x70, 0x00, 0x71, 0x01, 0x26, + 0x00, 0x00, 0x01, 0x2E, 0x01, 0x33, 0x00, 0x00, 0x00, 0x67, + 0x00, 0x6A, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, + 0x00, 0x94, 0x00, 0x61, 0x00, 0x63, 0x00, 0x68, 0x00, 0xF1, + 0x00, 0xF9, 0x00, 0xF0, 0x00, 0xFA, 0x00, 0xF7, 0x00, 0xFC, + 0x00, 0xFD, 0x00, 0xFE, 0x00, 0xFB, 0x01, 0x02, 0x01, 0x03, + 0x00, 0x00, 0x01, 0x01, 0x01, 0x09, 0x01, 0x0A, 0x01, 0x08, + 0x00, 0x00, 0x01, 0x37, 0x01, 0x38, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xE8, 0x00, 0x04, 0x01, 0x88, + 0x00, 0x00, 0x00, 0x3C, 0x00, 0x20, 0x00, 0x04, 0x00, 0x1C, + 0x00, 0x23, 0x00, 0x7E, 0x00, 0xAA, 0x00, 0xAE, 0x00, 0xBB, + 0x00, 0xFF, 0x01, 0x53, 0x01, 0x61, 0x01, 0x78, 0x01, 0x7E, + 0x01, 0x92, 0x02, 0xC6, 0x02, 0xDC, 0x04, 0x0C, 0x04, 0x0F, + 0x04, 0x4F, 0x04, 0x5C, 0x04, 0x5F, 0x04, 0x91, 0x20, 0x14, + 0x20, 0x1A, 0x20, 0x1E, 0x20, 0x22, 0x20, 0x26, 0x20, 0x30, + 0x20, 0x3A, 0x20, 0xAC, 0x21, 0x16, 0x21, 0x22, 0xFF, 0xFF, + 0x00, 0x00, 0x00, 0x20, 0x00, 0x24, 0x00, 0xA0, 0x00, 0xAB, + 0x00, 0xB0, 0x00, 0xBC, 0x01, 0x52, 0x01, 0x60, 0x01, 0x78, + 0x01, 0x7D, 0x01, 0x92, 0x02, 0xC6, 0x02, 0xDC, 0x04, 0x01, + 0x04, 0x0E, 0x04, 0x10, 0x04, 0x51, 0x04, 0x5E, 0x04, 0x90, + 0x20, 0x13, 0x20, 0x18, 0x20, 0x1C, 0x20, 0x20, 0x20, 0x26, + 0x20, 0x30, 0x20, 0x39, 0x20, 0xAC, 0x21, 0x16, 0x21, 0x22, + 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0xFF, 0xDD, + 0x00, 0x00, 0x00, 0x2F, 0xFF, 0xDD, 0xFF, 0xD1, 0xFF, 0xBB, + 0xFF, 0xB7, 0xFF, 0xA4, 0xFE, 0x71, 0xFE, 0x5C, 0x00, 0x00, + 0x00, 0x00, 0xFC, 0x8D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xE0, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE0, 0x3E, + 0xE0, 0x38, 0x00, 0x00, 0xDF, 0xBB, 0xDF, 0x80, 0xDF, 0x55, + 0x00, 0x01, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, + 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, + 0x00, 0x6E, 0x00, 0x00, 0x00, 0x6E, 0x00, 0x84, 0x00, 0x86, + 0x00, 0x00, 0x00, 0x86, 0x00, 0x8A, 0x00, 0x8E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x8E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x01, 0x3A, 0x01, 0x3B, 0x01, 0x39, + 0x00, 0x03, 0x00, 0xDF, 0x00, 0xE0, 0x00, 0xE1, 0x00, 0x81, + 0x00, 0xE2, 0x00, 0x83, 0x00, 0x84, 0x00, 0xE3, 0x00, 0x86, + 0x00, 0xE4, 0x00, 0x8D, 0x00, 0x8E, 0x00, 0xE5, 0x00, 0xE6, + 0x00, 0xE7, 0x00, 0x92, 0x00, 0x93, 0x00, 0x94, 0x00, 0xE8, + 0x00, 0xE9, 0x00, 0xEA, 0x00, 0x98, 0x00, 0x85, 0x00, 0x5F, + 0x00, 0x60, 0x00, 0x87, 0x00, 0x9A, 0x00, 0x8F, 0x00, 0x8C, + 0x00, 0x80, 0x00, 0x69, 0x00, 0x6B, 0x00, 0x6D, 0x00, 0x6C, + 0x00, 0x7E, 0x00, 0x6E, 0x00, 0x95, 0x00, 0x6F, 0x00, 0x62, + 0x00, 0x97, 0x00, 0x9B, 0x00, 0x90, 0x00, 0x9C, 0x00, 0x99, + 0x00, 0x78, 0x00, 0x7A, 0x00, 0x7C, 0x00, 0x7B, 0x00, 0x7F, + 0x00, 0x7D, 0x00, 0x82, 0x00, 0x91, 0x00, 0x70, 0x00, 0x71, + 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x63, 0x00, 0x65, + 0x00, 0x66, 0x00, 0x74, 0x00, 0x6A, 0x00, 0x79, 0x00, 0x04, + 0x01, 0x88, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x20, 0x00, 0x04, + 0x00, 0x1C, 0x00, 0x23, 0x00, 0x7E, 0x00, 0xAA, 0x00, 0xAE, + 0x00, 0xBB, 0x00, 0xFF, 0x01, 0x53, 0x01, 0x61, 0x01, 0x78, + 0x01, 0x7E, 0x01, 0x92, 0x02, 0xC6, 0x02, 0xDC, 0x04, 0x0C, + 0x04, 0x0F, 0x04, 0x4F, 0x04, 0x5C, 0x04, 0x5F, 0x04, 0x91, + 0x20, 0x14, 0x20, 0x1A, 0x20, 0x1E, 0x20, 0x22, 0x20, 0x26, + 0x20, 0x30, 0x20, 0x3A, 0x20, 0xAC, 0x21, 0x16, 0x21, 0x22, + 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x20, 0x00, 0x24, 0x00, 0xA0, + 0x00, 0xAB, 0x00, 0xB0, 0x00, 0xBC, 0x01, 0x52, 0x01, 0x60, + 0x01, 0x78, 0x01, 0x7D, 0x01, 0x92, 0x02, 0xC6, 0x02, 0xDC, + 0x04, 0x01, 0x04, 0x0E, 0x04, 0x10, 0x04, 0x51, 0x04, 0x5E, + 0x04, 0x90, 0x20, 0x13, 0x20, 0x18, 0x20, 0x1C, 0x20, 0x20, + 0x20, 0x26, 0x20, 0x30, 0x20, 0x39, 0x20, 0xAC, 0x21, 0x16, + 0x21, 0x22, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, + 0xFF, 0xDD, 0x00, 0x00, 0x00, 0x2F, 0xFF, 0xDD, 0xFF, 0xD1, + 0xFF, 0xBB, 0xFF, 0xB7, 0xFF, 0xA4, 0xFE, 0x71, 0xFE, 0x5C, + 0x00, 0x00, 0x00, 0x00, 0xFC, 0x8D, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xE0, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xE0, 0x3E, 0xE0, 0x38, 0x00, 0x00, 0xDF, 0xBB, 0xDF, 0x80, + 0xDF, 0x55, 0x00, 0x01, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x40, + 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x58, 0x00, 0x6E, 0x00, 0x00, 0x00, 0x6E, 0x00, 0x84, + 0x00, 0x86, 0x00, 0x00, 0x00, 0x86, 0x00, 0x8A, 0x00, 0x8E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x8E, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x01, 0x3A, 0x01, 0x3B, + 0x01, 0x39, 0x00, 0x03, 0x00, 0xDF, 0x00, 0xE0, 0x00, 0xE1, + 0x00, 0x81, 0x00, 0xE2, 0x00, 0x83, 0x00, 0x84, 0x00, 0xE3, + 0x00, 0x86, 0x00, 0xE4, 0x00, 0x8D, 0x00, 0x8E, 0x00, 0xE5, + 0x00, 0xE6, 0x00, 0xE7, 0x00, 0x92, 0x00, 0x93, 0x00, 0x94, + 0x00, 0xE8, 0x00, 0xE9, 0x00, 0xEA, 0x00, 0x98, 0x00, 0x85, + 0x00, 0x5F, 0x00, 0x60, 0x00, 0x87, 0x00, 0x9A, 0x00, 0x8F, + 0x00, 0x8C, 0x00, 0x80, 0x00, 0x69, 0x00, 0x6B, 0x00, 0x6D, + 0x00, 0x6C, 0x00, 0x7E, 0x00, 0x6E, 0x00, 0x95, 0x00, 0x6F, + 0x00, 0x62, 0x00, 0x97, 0x00, 0x9B, 0x00, 0x90, 0x00, 0x9C, + 0x00, 0x99, 0x00, 0x78, 0x00, 0x7A, 0x00, 0x7C, 0x00, 0x7B, + 0x00, 0x7F, 0x00, 0x7D, 0x00, 0x82, 0x00, 0x91, 0x00, 0x70, + 0x00, 0x71, 0x00, 0x61, 0x00, 0x72, 0x00, 0x73, 0x00, 0x63, + 0x00, 0x65, 0x00, 0x66, 0x00, 0x74, 0x00, 0x6A, 0x00, 0x79, + 0x00, 0x03, 0x00, 0x00, 0xFF, 0x9C, 0x01, 0xF4, 0x02, 0x58, + 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x23, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, + 0x35, 0x33, 0x35, 0x23, 0x35, 0x23, 0x05, 0x33, 0x35, 0x23, + 0x27, 0x33, 0x35, 0x23, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x01, 0x2C, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x13, 0x00, 0x17, + 0x00, 0x1B, 0x00, 0x00, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, + 0x15, 0x23, 0x15, 0x23, 0x11, 0x33, 0x15, 0x23, 0x01, 0x33, + 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0x64, 0xFE, 0xD4, 0x64, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x17, 0x00, 0x1B, + 0x00, 0x1F, 0x00, 0x23, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, + 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, + 0x35, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, + 0x17, 0x33, 0x35, 0x23, 0x35, 0x15, 0x33, 0x35, 0x15, 0x33, + 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0xC8, 0x64, 0x64, + 0x01, 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x63, 0xC7, 0x64, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0x2C, 0x00, 0x64, + 0x01, 0xF4, 0x00, 0x03, 0x00, 0x00, 0x11, 0x33, 0x15, 0x23, + 0x64, 0x64, 0x01, 0xF4, 0xC8, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xC8, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x33, 0x15, 0x23, 0x11, 0x33, 0x15, 0x23, + 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, + 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xC8, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, + 0x11, 0x33, 0x15, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x33, + 0x11, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x64, 0x01, 0x2C, 0x01, 0x90, + 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x35, 0x33, 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x64, 0x01, 0x2C, 0x01, 0x90, 0x00, 0x0B, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x2C, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, + 0xFF, 0x9C, 0x00, 0xC8, 0x00, 0x64, 0x00, 0x07, 0x00, 0x00, + 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0xC8, 0x01, 0x2C, 0x01, 0x2C, 0x00, 0x03, + 0x00, 0x00, 0x11, 0x21, 0x15, 0x21, 0x01, 0x2C, 0xFE, 0xD4, + 0x01, 0x2C, 0x64, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x64, 0x00, 0x03, 0x00, 0x00, + 0x35, 0x33, 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, + 0x00, 0x13, 0x00, 0x00, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, + 0x15, 0x23, 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x0F, + 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, + 0x15, 0x23, 0x35, 0x23, 0x3B, 0x01, 0x11, 0x23, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x01, 0x90, 0x64, + 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x01, 0xF4, 0x00, 0x0B, + 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x11, 0x33, 0x15, 0x21, + 0x35, 0x33, 0x35, 0x23, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, + 0x64, 0x01, 0x90, 0x64, 0xFE, 0x70, 0x64, 0x64, 0xC8, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x01, 0xF4, 0x00, 0x11, 0x00, 0x00, 0x11, 0x21, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, 0x35, 0x33, + 0x35, 0x33, 0x35, 0x21, 0x01, 0x2C, 0x64, 0x64, 0xC8, 0x01, + 0x2C, 0xFE, 0x70, 0x64, 0xC8, 0xFE, 0xD4, 0x01, 0xF4, 0x64, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x13, + 0x00, 0x00, 0x13, 0x33, 0x35, 0x21, 0x35, 0x21, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x35, 0x21, + 0x35, 0x23, 0x64, 0xC8, 0xFE, 0xD4, 0x01, 0x2C, 0x64, 0x64, + 0x64, 0x64, 0xFE, 0xD4, 0x01, 0x2C, 0xC8, 0x01, 0x2C, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x09, + 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, 0x11, 0x23, + 0x35, 0x21, 0x64, 0xC8, 0x64, 0x64, 0xFE, 0xD4, 0x01, 0xF4, + 0xC8, 0xC8, 0xFE, 0x0C, 0xC8, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0F, + 0x00, 0x00, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x21, 0x35, 0x21, 0x35, 0x21, 0x01, 0x90, + 0xFE, 0xD4, 0xC8, 0x64, 0x64, 0xFE, 0xD4, 0x01, 0x2C, 0xFE, + 0xD4, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x35, 0x23, 0x3B, 0x01, 0x35, 0x23, 0x64, 0xC8, 0xC8, 0xC8, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x01, 0x90, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x0D, 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, 0x15, 0x23, + 0x15, 0x23, 0x35, 0x33, 0x35, 0x33, 0x35, 0x21, 0x01, 0x90, + 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x01, 0xF4, 0xC8, + 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x13, + 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x17, 0x33, 0x35, 0x23, + 0x35, 0x33, 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, 0x01, + 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, 0x15, 0x23, + 0x35, 0x33, 0x35, 0x23, 0x35, 0x23, 0x3B, 0x01, 0x35, 0x23, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0xC8, 0x64, 0x64, 0xC8, + 0xC8, 0x01, 0x90, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x64, 0x01, 0x90, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x11, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0xFF, 0x9C, 0x00, 0xC8, 0x01, 0x90, + 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x35, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x11, 0x33, 0x15, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, + 0x64, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x2C, 0x01, 0xF4, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x2C, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x64, 0x01, 0x2C, 0x01, 0x90, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x11, 0x21, 0x15, 0x21, + 0x15, 0x21, 0x15, 0x21, 0x01, 0x2C, 0xFE, 0xD4, 0x01, 0x2C, + 0xFE, 0xD4, 0x01, 0x90, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x01, 0xF4, + 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x33, 0x35, 0x33, + 0x35, 0x23, 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x0F, + 0x00, 0x00, 0x13, 0x33, 0x35, 0x21, 0x35, 0x21, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x64, 0xC8, + 0xFE, 0xD4, 0x01, 0x2C, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x01, + 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x11, + 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, + 0x35, 0x33, 0x35, 0x23, 0x11, 0x21, 0x15, 0x21, 0x35, 0x23, + 0x64, 0xC8, 0x64, 0xC8, 0x64, 0xC8, 0x01, 0x2C, 0xFE, 0xD4, + 0x64, 0x01, 0x90, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xFE, 0xD4, + 0x64, 0x64, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, 0x35, 0x23, + 0x15, 0x23, 0x13, 0x33, 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x01, 0x90, 0x64, 0x64, 0xFE, + 0x70, 0xC8, 0xC8, 0x01, 0x2C, 0x64, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x0F, + 0x00, 0x13, 0x00, 0x00, 0x11, 0x21, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x13, 0x15, 0x33, 0x35, + 0x03, 0x33, 0x35, 0x23, 0x01, 0x2C, 0x64, 0x64, 0x64, 0x64, + 0xFE, 0xD4, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, 0x01, 0xF4, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, 0x64, 0x63, 0xFE, 0xD5, + 0x64, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x35, 0x23, + 0x64, 0x01, 0x2C, 0xFE, 0xD4, 0x01, 0x2C, 0xFE, 0xD4, 0x64, + 0x01, 0x90, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x07, + 0x00, 0x0B, 0x00, 0x00, 0x11, 0x21, 0x15, 0x33, 0x11, 0x23, + 0x15, 0x21, 0x37, 0x33, 0x11, 0x23, 0x01, 0x2C, 0x64, 0x64, + 0xFE, 0xD4, 0x64, 0xC8, 0xC8, 0x01, 0xF4, 0x64, 0xFE, 0xD4, + 0x64, 0x64, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, + 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, + 0x15, 0x21, 0x01, 0x90, 0xFE, 0xD4, 0xC8, 0xC8, 0x01, 0x2C, + 0xFE, 0x70, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x09, 0x00, 0x00, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x01, 0x90, 0xFE, 0xD4, 0xC8, 0xC8, + 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, 0xC8, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x0F, 0x00, 0x00, 0x11, 0x33, 0x35, 0x21, 0x15, 0x21, + 0x11, 0x33, 0x35, 0x23, 0x35, 0x33, 0x11, 0x21, 0x35, 0x23, + 0x64, 0x01, 0x2C, 0xFE, 0xD4, 0xC8, 0x64, 0xC8, 0xFE, 0xD4, + 0x64, 0x01, 0x90, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0xFE, + 0xD4, 0x64, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, 0x15, 0x23, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0x64, 0x01, 0xF4, 0xC8, 0xC8, 0xFE, 0x0C, + 0xC8, 0xC8, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, + 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, + 0x11, 0x33, 0x15, 0x21, 0x35, 0x33, 0x11, 0x23, 0x01, 0x2C, + 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0xF4, 0x64, 0xFE, + 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0D, 0x00, 0x00, + 0x11, 0x21, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, 0x33, + 0x15, 0x33, 0x11, 0x21, 0x01, 0x90, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0xFE, 0xD4, 0x01, 0xF4, 0xFE, 0x70, 0x64, 0x64, 0x64, + 0x64, 0x01, 0x2C, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, + 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0xC8, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x05, + 0x00, 0x00, 0x11, 0x33, 0x11, 0x21, 0x15, 0x21, 0x64, 0x01, + 0x2C, 0xFE, 0x70, 0x01, 0xF4, 0xFE, 0x70, 0x64, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, + 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x11, 0x23, 0x11, 0x23, 0x15, 0x23, + 0x35, 0x23, 0x11, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, + 0xFE, 0x0C, 0x01, 0x2C, 0x64, 0x64, 0xFE, 0xD4, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x0F, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, 0x35, 0x23, 0x11, 0x23, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0x64, 0x64, 0xC8, 0xFE, 0x0C, 0xC8, 0x64, 0xFE, 0xD4, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, + 0x3B, 0x01, 0x11, 0x23, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0xC8, 0xC8, 0x01, 0x90, 0x64, 0x64, 0xFE, 0xD4, 0x64, + 0x64, 0x01, 0x2C, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x09, 0x00, 0x0D, 0x00, 0x00, + 0x11, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, + 0x13, 0x33, 0x35, 0x23, 0x01, 0x2C, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0xC8, 0xC8, 0x01, 0xF4, 0x64, 0x64, 0x64, 0xC8, 0x01, + 0x2C, 0x64, 0x00, 0x02, 0x00, 0x00, 0xFF, 0x9C, 0x01, 0x90, + 0x01, 0xF4, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, 0x15, 0x33, 0x15, 0x23, + 0x35, 0x23, 0x35, 0x23, 0x01, 0x23, 0x11, 0x33, 0x64, 0xC8, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x01, 0x2C, 0xC8, 0xC8, + 0x01, 0x90, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, + 0x01, 0x2C, 0xFE, 0xD4, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0F, 0x00, 0x13, + 0x00, 0x00, 0x11, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, 0x13, 0x33, + 0x35, 0x23, 0x01, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0xC8, 0xC8, 0x01, 0xF4, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0x64, 0xC8, 0x01, 0x2C, 0x64, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x13, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x21, 0x35, 0x21, 0x35, 0x23, 0x35, 0x23, + 0x64, 0x01, 0x2C, 0xFE, 0xD4, 0xC8, 0x64, 0x64, 0xFE, 0xD4, + 0x01, 0x2C, 0xC8, 0x64, 0x01, 0x90, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x2C, 0x01, 0xF4, 0x00, 0x07, 0x00, 0x00, + 0x11, 0x21, 0x15, 0x23, 0x11, 0x23, 0x11, 0x23, 0x01, 0x2C, + 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, 0xFE, 0x70, 0x01, 0x90, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, 0x11, 0x33, 0x11, 0x33, + 0x11, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0x64, 0x01, 0xF4, 0xFE, 0x70, 0x01, 0x90, + 0xFE, 0x70, 0x64, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x2C, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, + 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x23, 0x15, 0x23, + 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0xFE, 0x70, 0x01, 0x90, 0xFE, 0x70, 0x64, 0x64, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, + 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, + 0x11, 0x33, 0x11, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, + 0x15, 0x23, 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0xFE, 0x70, 0x01, 0x2C, + 0xFE, 0xD4, 0x01, 0x90, 0xFE, 0x70, 0x64, 0x64, 0x64, 0x64, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x35, 0x33, 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0x01, 0xF4, 0xC8, 0xC8, 0xC8, 0x64, + 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x2C, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, + 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x11, 0x23, + 0x11, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0xC8, 0xC8, 0xC8, 0xFE, 0xD4, 0x01, 0x2C, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x0F, 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, 0x15, 0x23, + 0x15, 0x21, 0x15, 0x21, 0x35, 0x33, 0x35, 0x33, 0x35, 0x21, + 0x01, 0x90, 0x64, 0xC8, 0x01, 0x2C, 0xFE, 0x70, 0x64, 0xC8, + 0xFE, 0xD4, 0x01, 0xF4, 0xC8, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC8, + 0x01, 0xF4, 0x00, 0x07, 0x00, 0x00, 0x11, 0x33, 0x15, 0x23, + 0x11, 0x33, 0x15, 0x23, 0xC8, 0x64, 0x64, 0xC8, 0x01, 0xF4, + 0x64, 0xFE, 0xD4, 0x64, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, + 0x35, 0x23, 0x35, 0x23, 0x35, 0x23, 0x35, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC8, 0x01, 0xF4, + 0x00, 0x07, 0x00, 0x00, 0x11, 0x33, 0x11, 0x23, 0x35, 0x33, + 0x11, 0x23, 0xC8, 0xC8, 0x64, 0x64, 0x01, 0xF4, 0xFE, 0x0C, + 0x64, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0xC8, 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x13, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, 0x15, 0x23, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x01, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x64, 0x00, 0x03, 0x00, 0x00, 0x35, 0x21, 0x15, 0x21, + 0x01, 0x90, 0xFE, 0x70, 0x64, 0x64, 0x00, 0x01, 0x00, 0x00, + 0x01, 0x2C, 0x00, 0xC8, 0x01, 0xF4, 0x00, 0x07, 0x00, 0x00, + 0x11, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, + 0x00, 0x0F, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x11, 0x23, 0x35, 0x23, 0x15, 0x23, 0x13, 0x33, 0x35, 0x23, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x01, + 0x90, 0x64, 0x64, 0xFE, 0x70, 0xC8, 0xC8, 0x01, 0x2C, 0x64, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x11, 0x21, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, + 0x13, 0x15, 0x33, 0x35, 0x03, 0x33, 0x35, 0x23, 0x01, 0x2C, + 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0xC8, 0xC8, 0xC8, + 0xC8, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, + 0x64, 0x63, 0xFE, 0xD5, 0x64, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, + 0x00, 0x00, 0x11, 0x33, 0x35, 0x21, 0x15, 0x21, 0x11, 0x21, + 0x15, 0x21, 0x35, 0x23, 0x64, 0x01, 0x2C, 0xFE, 0xD4, 0x01, + 0x2C, 0xFE, 0xD4, 0x64, 0x01, 0x90, 0x64, 0x64, 0xFE, 0xD4, + 0x64, 0x64, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x01, 0xF4, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x11, 0x21, + 0x15, 0x33, 0x11, 0x23, 0x15, 0x21, 0x37, 0x33, 0x11, 0x23, + 0x01, 0x2C, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0xC8, 0xC8, 0x01, + 0xF4, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x0B, 0x00, 0x00, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, 0x01, 0x90, 0xFE, 0xD4, + 0xC8, 0xC8, 0x01, 0x2C, 0xFE, 0x70, 0x01, 0xF4, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x09, 0x00, 0x00, 0x11, 0x21, + 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x01, 0x90, + 0xFE, 0xD4, 0xC8, 0xC8, 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, + 0xC8, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0F, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x21, 0x15, 0x21, 0x11, 0x33, 0x35, 0x23, 0x35, 0x33, + 0x11, 0x21, 0x35, 0x23, 0x64, 0x01, 0x2C, 0xFE, 0xD4, 0xC8, + 0x64, 0xC8, 0xFE, 0xD4, 0x64, 0x01, 0x90, 0x64, 0x64, 0xFE, + 0xD4, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, + 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, + 0x15, 0x23, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x01, 0xF4, + 0xC8, 0xC8, 0xFE, 0x0C, 0xC8, 0xC8, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x2C, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, + 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15, 0x21, 0x35, 0x33, + 0x11, 0x23, 0x01, 0x2C, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, + 0x01, 0xF4, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x0D, 0x00, 0x00, 0x11, 0x21, 0x11, 0x23, 0x15, 0x23, + 0x35, 0x23, 0x35, 0x33, 0x15, 0x33, 0x11, 0x21, 0x01, 0x90, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xFE, 0xD4, 0x01, 0xF4, 0xFE, + 0x70, 0x64, 0x64, 0x64, 0x64, 0x01, 0x2C, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x17, + 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, + 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x01, 0xF4, 0x00, 0x05, 0x00, 0x00, 0x11, 0x33, 0x11, 0x21, + 0x15, 0x21, 0x64, 0x01, 0x2C, 0xFE, 0x70, 0x01, 0xF4, 0xFE, + 0x70, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x33, 0x15, 0x33, 0x35, 0x33, 0x35, 0x33, 0x11, 0x23, + 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x11, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0x64, 0x64, 0x64, 0x64, 0xFE, 0x0C, 0x01, 0x2C, 0x64, 0x64, + 0xFE, 0xD4, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0F, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x33, 0x15, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, + 0x35, 0x23, 0x11, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, 0xC8, 0xFE, 0x0C, 0xC8, + 0x64, 0xFE, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x0F, + 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, + 0x15, 0x23, 0x35, 0x23, 0x3B, 0x01, 0x11, 0x23, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x01, 0x90, 0x64, + 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x09, + 0x00, 0x0D, 0x00, 0x00, 0x11, 0x21, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x15, 0x23, 0x13, 0x33, 0x35, 0x23, 0x01, 0x2C, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x01, 0xF4, 0x64, + 0x64, 0x64, 0xC8, 0x01, 0x2C, 0x64, 0x00, 0x02, 0x00, 0x00, + 0xFF, 0x9C, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0F, 0x00, 0x13, + 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, + 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x01, 0x23, + 0x11, 0x33, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0x01, 0x2C, 0xC8, 0xC8, 0x01, 0x90, 0x64, 0x64, 0xFE, 0xD4, + 0x64, 0x64, 0x64, 0x64, 0x01, 0x2C, 0xFE, 0xD4, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x11, 0x21, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, + 0x15, 0x23, 0x13, 0x33, 0x35, 0x23, 0x01, 0x2C, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0x01, 0xF4, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0xC8, 0x01, 0x2C, 0x64, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x35, 0x21, 0x15, 0x21, + 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x35, 0x21, + 0x35, 0x23, 0x35, 0x23, 0x64, 0x01, 0x2C, 0xFE, 0xD4, 0xC8, + 0x64, 0x64, 0xFE, 0xD4, 0x01, 0x2C, 0xC8, 0x64, 0x01, 0x90, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x01, 0xF4, + 0x00, 0x07, 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, 0x11, 0x23, + 0x11, 0x23, 0x01, 0x2C, 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, + 0xFE, 0x70, 0x01, 0x90, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, + 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x23, 0x15, 0x23, + 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x01, 0xF4, + 0xFE, 0x70, 0x01, 0x90, 0xFE, 0x70, 0x64, 0x64, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x01, 0xF4, + 0x00, 0x0B, 0x00, 0x00, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, + 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x01, 0xF4, 0xFE, 0x70, 0x01, 0x90, 0xFE, 0x70, + 0x64, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, + 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x23, + 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, 0x35, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0xFE, 0x70, 0x01, 0x2C, 0xFE, 0xD4, 0x01, 0x90, 0xFE, 0x70, + 0x64, 0x64, 0x64, 0x64, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, + 0x35, 0x23, 0x15, 0x23, 0x35, 0x33, 0x35, 0x23, 0x64, 0xC8, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0xC8, 0xC8, 0xC8, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x01, 0xF4, + 0x00, 0x0B, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x11, 0x23, 0x11, 0x23, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x01, 0xF4, 0xC8, 0xC8, 0xC8, 0xFE, 0xD4, 0x01, + 0x2C, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0F, 0x00, 0x00, 0x11, 0x21, + 0x15, 0x23, 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, 0x35, 0x33, + 0x35, 0x33, 0x35, 0x21, 0x01, 0x90, 0x64, 0xC8, 0x01, 0x2C, + 0xFE, 0x70, 0x64, 0xC8, 0xFE, 0xD4, 0x01, 0xF4, 0xC8, 0x64, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x2C, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x33, 0x15, 0x23, 0x11, 0x33, 0x15, 0x23, + 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x01, 0x2C, + 0xC8, 0x64, 0xFE, 0xD4, 0x64, 0xC8, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x64, 0x01, 0xF4, 0x00, 0x03, 0x00, 0x00, + 0x11, 0x33, 0x11, 0x23, 0x64, 0x64, 0x01, 0xF4, 0xFE, 0x0C, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x01, 0xF4, + 0x00, 0x0B, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x35, 0x33, 0x11, 0x23, 0xC8, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0x01, 0xF4, 0xC8, 0x64, 0xC8, 0x64, 0x01, 0x2C, + 0x00, 0x01, 0x00, 0x00, 0x00, 0xC8, 0x01, 0x90, 0x01, 0x90, + 0x00, 0x0F, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x2C, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x13, + 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x35, 0x33, 0x35, 0x23, 0x15, 0x23, + 0x11, 0x23, 0x01, 0x2C, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0xC8, 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, 0x00, 0x05, + 0x00, 0x0D, 0x00, 0x00, 0x11, 0x21, 0x15, 0x21, 0x11, 0x23, + 0x13, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x01, 0x90, + 0xFE, 0xD4, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0x64, 0xFE, 0x70, 0x02, 0xBC, 0x64, 0x64, 0x64, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0xFF, 0x9C, 0x00, 0xC8, 0x00, 0x64, + 0x00, 0x07, 0x00, 0x00, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, + 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x03, 0x20, 0x00, 0x05, 0x00, 0x0D, 0x00, 0x00, 0x11, 0x21, + 0x15, 0x21, 0x11, 0x23, 0x13, 0x33, 0x35, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x01, 0x90, 0xFE, 0xD4, 0x64, 0xC8, 0x64, 0x64, + 0x64, 0x64, 0x01, 0xF4, 0x64, 0xFE, 0x70, 0x02, 0xBC, 0x64, + 0x64, 0x64, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0xFF, 0x9C, + 0x01, 0xF4, 0x00, 0x64, 0x00, 0x07, 0x00, 0x0F, 0x00, 0x00, + 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x25, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, + 0x01, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x64, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x0B, 0x00, 0x00, 0x35, 0x33, 0x15, 0x23, 0x25, 0x33, + 0x15, 0x23, 0x27, 0x33, 0x15, 0x23, 0x64, 0x64, 0x01, 0x90, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x2C, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x11, 0x23, 0x11, 0x23, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, + 0x64, 0xFE, 0xD4, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x01, 0xF4, 0x00, 0x13, + 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, 0x33, + 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, 0xFF, 0x9C, + 0x01, 0xF4, 0x02, 0x58, 0x00, 0x1B, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x33, 0x35, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, 0x35, 0x23, + 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x64, 0x64, 0x01, 0x2C, + 0xFE, 0xD4, 0xC8, 0xC8, 0xC8, 0xC8, 0x01, 0x2C, 0xFE, 0xD4, + 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x02, 0xBC, 0x01, 0xF4, + 0x00, 0x13, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x00, + 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, + 0x25, 0x33, 0x15, 0x23, 0x37, 0x33, 0x15, 0x23, 0x01, 0x33, + 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xFD, + 0xA8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, 0x01, 0xF4, 0xC8, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, + 0x01, 0xF4, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x11, 0x23, 0x11, 0x23, 0x25, 0x33, 0x35, 0x23, 0x64, 0xC8, + 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x01, 0x2C, 0x64, 0x64, + 0x01, 0x90, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x01, 0x90, 0xFE, + 0x70, 0x64, 0x64, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x2C, 0x01, 0xF4, 0x00, 0x13, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x01, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, + 0x01, 0xF4, 0x00, 0x11, 0x00, 0x15, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, 0x25, 0x33, 0x35, 0x23, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x01, + 0x2C, 0x64, 0x64, 0x01, 0xF4, 0xC8, 0xC8, 0xC8, 0x64, 0x64, + 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, 0x00, 0x17, 0x00, 0x1F, + 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, + 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, 0x13, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, + 0x64, 0x01, 0xF4, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0xC8, 0x02, 0xBC, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, + 0x00, 0x0F, 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, 0x15, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, 0x11, 0x23, + 0x01, 0x2C, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x01, + 0xF4, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0xC8, 0x01, 0x90, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xFF, 0x9C, 0x01, 0x2C, + 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, 0x11, 0x33, 0x11, 0x33, + 0x11, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0xFE, 0x70, 0x01, 0x90, + 0xFE, 0x0C, 0x64, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x13, 0x00, 0x00, + 0x11, 0x21, 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x35, 0x33, 0x35, 0x23, 0x15, 0x23, 0x11, 0x23, + 0x01, 0x2C, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x01, 0x90, 0x00, 0xC8, 0x02, 0x58, 0x00, 0x07, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x01, 0x2C, 0x00, 0xC8, 0x01, 0xF4, 0x00, 0x07, + 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, + 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x02, 0x58, + 0x00, 0x07, 0x00, 0x0F, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x25, 0x33, 0x15, 0x33, 0x15, 0x23, + 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, 0x01, 0x2C, 0x64, 0x64, + 0x64, 0x64, 0x02, 0x58, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x00, 0x00, 0x02, 0x00, 0x00, 0x01, 0x2C, 0x01, 0xF4, + 0x01, 0xF4, 0x00, 0x07, 0x00, 0x0F, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x25, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, 0x01, 0x2C, + 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xC8, + 0x00, 0xC8, 0x01, 0x90, 0x00, 0x03, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x23, 0xC8, 0xC8, 0x01, 0x90, 0xC8, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0xC8, 0x01, 0x2C, 0x01, 0x2C, 0x00, 0x03, + 0x00, 0x00, 0x11, 0x21, 0x15, 0x21, 0x01, 0x2C, 0xFE, 0xD4, + 0x01, 0x2C, 0x64, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0xC8, 0x01, 0x90, 0x01, 0x2C, 0x00, 0x03, 0x00, 0x00, + 0x11, 0x21, 0x15, 0x21, 0x01, 0x90, 0xFE, 0x70, 0x01, 0x2C, + 0x64, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x64, + 0x03, 0x20, 0x01, 0xF4, 0x00, 0x19, 0x00, 0x00, 0x11, 0x21, + 0x15, 0x33, 0x15, 0x33, 0x35, 0x33, 0x35, 0x33, 0x11, 0x23, + 0x35, 0x23, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, 0x11, 0x23, + 0x11, 0x23, 0x11, 0x23, 0x01, 0x90, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0x64, 0x64, 0x64, 0x64, 0xFE, 0x70, 0xC8, 0x64, 0x64, 0xC8, + 0x01, 0x2C, 0xFE, 0xD4, 0x01, 0x2C, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x0F, 0x00, 0x13, + 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x11, 0x23, 0x11, 0x23, 0x25, 0x33, + 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0x01, 0x2C, 0x64, 0x64, 0x01, 0x90, 0x64, 0xC8, 0x64, 0x64, + 0x64, 0x01, 0x90, 0xFE, 0x70, 0x64, 0x64, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x01, 0xF4, + 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x33, 0x35, 0x33, + 0x35, 0x23, 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x11, 0x00, 0x15, + 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x25, 0x33, 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x01, 0x2C, 0x64, 0x64, 0x01, 0xF4, 0xC8, + 0xC8, 0xC8, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, + 0x00, 0x17, 0x00, 0x1F, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x13, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0xC8, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x02, 0xBC, + 0x64, 0x64, 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x0F, 0x00, 0x00, 0x11, 0x21, + 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, + 0x15, 0x23, 0x11, 0x23, 0x01, 0x2C, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, 0xC8, 0xC8, + 0xC8, 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0xFF, 0x9C, 0x01, 0x2C, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, + 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x23, 0x15, 0x23, + 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0xFE, 0x70, 0x01, 0x90, 0xFE, 0x0C, 0x64, 0x64, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x03, 0x20, + 0x00, 0x0B, 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x15, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x01, 0xF4, 0xC8, 0xC8, 0xC8, 0xFE, 0xD4, 0x01, + 0x2C, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x03, 0x20, 0x00, 0x0B, + 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x01, 0xF4, 0xC8, 0xC8, 0xC8, 0xFE, 0xD4, 0x01, 0x2C, 0x01, + 0xF4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0D, 0x00, 0x00, + 0x11, 0x21, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, 0x33, + 0x15, 0x33, 0x11, 0x21, 0x01, 0x90, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0xFE, 0xD4, 0x01, 0xF4, 0xFE, 0x70, 0x64, 0x64, 0x64, + 0x64, 0x01, 0x2C, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x64, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, + 0x35, 0x23, 0x15, 0x23, 0x35, 0x33, 0x35, 0x23, 0x64, 0xC8, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x02, 0x58, + 0x00, 0x07, 0x00, 0x00, 0x11, 0x21, 0x35, 0x33, 0x15, 0x21, + 0x11, 0x23, 0x01, 0x2C, 0x64, 0xFE, 0xD4, 0x64, 0x01, 0xF4, + 0x64, 0xC8, 0xFE, 0x70, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x64, 0x01, 0xF4, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x00, 0x11, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, + 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0xC8, 0x64, 0xC8, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0xFF, 0x9C, 0x01, 0x90, + 0x02, 0x58, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x33, 0x11, 0x23, + 0x15, 0x21, 0x35, 0x21, 0x35, 0x23, 0x35, 0x23, 0x3B, 0x01, + 0x35, 0x23, 0x64, 0x01, 0x2C, 0xFE, 0xD4, 0xC8, 0x64, 0x64, + 0xFE, 0xD4, 0x01, 0x2C, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x01, + 0xF4, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, + 0x00, 0x00, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x21, 0x15, 0x21, 0x11, 0x33, 0x15, 0x23, 0x25, 0x33, + 0x15, 0x23, 0x01, 0x90, 0xFE, 0xD4, 0xC8, 0xC8, 0x01, 0x2C, + 0xFE, 0x70, 0x64, 0x64, 0x01, 0x2C, 0x64, 0x64, 0x01, 0xF4, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x02, 0xBC, 0x64, 0x64, 0x64, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0xFF, 0x38, 0x02, 0xBC, + 0x02, 0x58, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x17, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x21, 0x15, 0x33, 0x11, 0x23, 0x15, 0x21, + 0x35, 0x23, 0x33, 0x21, 0x11, 0x21, 0x17, 0x21, 0x15, 0x23, + 0x15, 0x33, 0x15, 0x21, 0x64, 0x01, 0xF4, 0x64, 0x64, 0xFE, + 0x0C, 0x64, 0x64, 0x01, 0xF4, 0xFE, 0x0C, 0x64, 0x01, 0x2C, + 0xC8, 0xC8, 0xFE, 0xD4, 0x01, 0xF4, 0x64, 0x64, 0xFD, 0xA8, + 0x64, 0x64, 0x02, 0x58, 0x64, 0x64, 0xC8, 0x64, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0F, + 0x00, 0x00, 0x11, 0x33, 0x35, 0x21, 0x15, 0x21, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, 0x35, 0x23, 0x64, 0x01, + 0x2C, 0xFE, 0xD4, 0xC8, 0xC8, 0x01, 0x2C, 0xFE, 0xD4, 0x64, + 0x01, 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x02, 0x58, 0x01, 0xF4, + 0x00, 0x13, 0x00, 0x27, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, + 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x25, 0x33, 0x35, 0x33, + 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x2C, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x2C, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x01, 0x2C, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x05, 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, 0x35, 0x21, + 0x01, 0x90, 0x64, 0xFE, 0xD4, 0x01, 0xF4, 0xC8, 0x64, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xC8, 0x00, 0xC8, + 0x01, 0x2C, 0x00, 0x03, 0x00, 0x00, 0x11, 0x33, 0x15, 0x23, + 0xC8, 0xC8, 0x01, 0x2C, 0x64, 0x00, 0x00, 0x04, 0x00, 0x00, + 0xFF, 0x38, 0x02, 0xBC, 0x02, 0x58, 0x00, 0x0B, 0x00, 0x0F, + 0x00, 0x1D, 0x00, 0x21, 0x00, 0x00, 0x11, 0x33, 0x35, 0x21, + 0x15, 0x33, 0x11, 0x23, 0x15, 0x21, 0x35, 0x23, 0x33, 0x21, + 0x11, 0x21, 0x17, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, 0x37, 0x33, 0x35, 0x23, + 0x64, 0x01, 0xF4, 0x64, 0x64, 0xFE, 0x0C, 0x64, 0x64, 0x01, + 0xF4, 0xFE, 0x0C, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, 0xFD, 0xA8, + 0x64, 0x64, 0x02, 0x58, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0xC8, 0x64, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x2C, 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x0F, + 0x00, 0x13, 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, + 0x15, 0x21, 0x35, 0x33, 0x11, 0x23, 0x11, 0x33, 0x15, 0x23, + 0x37, 0x33, 0x15, 0x23, 0x01, 0x2C, 0x64, 0x64, 0xFE, 0xD4, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x01, 0xF4, 0x64, + 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x01, 0x2C, 0x64, 0x64, + 0x64, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xC8, + 0x01, 0x2C, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x35, 0x23, 0x3B, 0x01, 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x2C, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x0F, + 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x35, 0x23, 0x15, 0x21, 0x15, 0x21, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x01, 0x2C, 0xFE, 0xD4, 0x01, 0x90, + 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x01, 0xF4, 0x00, 0x0B, + 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15, 0x21, + 0x35, 0x33, 0x11, 0x23, 0x01, 0x2C, 0x64, 0x64, 0xFE, 0xD4, + 0x64, 0x64, 0x01, 0xF4, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, + 0x2C, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, + 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, + 0x11, 0x33, 0x15, 0x21, 0x35, 0x33, 0x11, 0x23, 0x01, 0x2C, + 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0xF4, 0x64, 0xFE, + 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x02, 0x58, 0x00, 0x07, 0x00, 0x00, + 0x11, 0x21, 0x35, 0x33, 0x15, 0x21, 0x11, 0x23, 0x01, 0x2C, + 0x64, 0xFE, 0xD4, 0x64, 0x01, 0xF4, 0x64, 0xC8, 0xFE, 0x70, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xFF, 0x9C, 0x01, 0xF4, + 0x01, 0xF4, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x11, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x11, 0x33, 0x11, 0x23, 0x35, 0x23, + 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0xFE, 0xD4, + 0x64, 0x64, 0x01, 0x2C, 0xFE, 0x0C, 0x64, 0x64, 0x64, 0xC8, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, + 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, + 0x11, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x23, 0x01, 0xF4, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, 0xFE, 0x70, + 0x01, 0x90, 0xFE, 0x70, 0x01, 0x2C, 0x00, 0x01, 0x00, 0x00, + 0x00, 0xC8, 0x00, 0x64, 0x01, 0x2C, 0x00, 0x03, 0x00, 0x00, + 0x11, 0x33, 0x15, 0x23, 0x64, 0x64, 0x01, 0x2C, 0x64, 0x00, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x02, 0xBC, + 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x11, 0x21, + 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, + 0x11, 0x33, 0x15, 0x23, 0x25, 0x33, 0x15, 0x23, 0x01, 0x90, + 0xFE, 0xD4, 0xC8, 0xC8, 0x01, 0x2C, 0xFE, 0x70, 0x64, 0x64, + 0x01, 0x2C, 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x02, 0xBC, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x58, 0x01, 0xF4, 0x00, 0x11, + 0x00, 0x15, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x15, 0x33, + 0x35, 0x21, 0x15, 0x23, 0x11, 0x23, 0x35, 0x23, 0x35, 0x23, + 0x11, 0x23, 0x01, 0x33, 0x15, 0x23, 0x64, 0x64, 0x64, 0x01, + 0x2C, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, + 0x01, 0xF4, 0x64, 0x64, 0xC8, 0x64, 0xFE, 0x70, 0xC8, 0x64, + 0xFE, 0xD4, 0x01, 0x2C, 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0F, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x21, 0x15, 0x21, 0x35, 0x23, 0x64, 0x01, 0x2C, 0xFE, + 0xD4, 0xC8, 0xC8, 0x01, 0x2C, 0xFE, 0xD4, 0x64, 0x01, 0x90, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x58, 0x01, 0xF4, 0x00, 0x13, + 0x00, 0x27, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x33, 0x35, 0x33, + 0x35, 0x23, 0x35, 0x23, 0x25, 0x33, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x33, 0x35, 0x33, + 0x35, 0x23, 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x01, 0x2C, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0D, + 0x00, 0x00, 0x11, 0x21, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, + 0x35, 0x33, 0x15, 0x33, 0x11, 0x21, 0x01, 0x90, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0xFE, 0xD4, 0x01, 0xF4, 0xFE, 0x70, 0x64, + 0x64, 0x64, 0x64, 0x01, 0x2C, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x13, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x21, 0x35, 0x21, 0x35, 0x23, 0x35, 0x23, + 0x64, 0x01, 0x2C, 0xFE, 0xD4, 0xC8, 0x64, 0x64, 0xFE, 0xD4, + 0x01, 0x2C, 0xC8, 0x64, 0x01, 0x90, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x13, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x21, 0x35, 0x21, 0x35, 0x23, 0x35, 0x23, + 0x64, 0x01, 0x2C, 0xFE, 0xD4, 0xC8, 0x64, 0x64, 0xFE, 0xD4, + 0x01, 0x2C, 0xC8, 0x64, 0x01, 0x90, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x2C, 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x0F, + 0x00, 0x13, 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, + 0x15, 0x21, 0x35, 0x33, 0x11, 0x23, 0x11, 0x33, 0x15, 0x23, + 0x37, 0x33, 0x15, 0x23, 0x01, 0x2C, 0x64, 0x64, 0xFE, 0xD4, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x01, 0xF4, 0x64, + 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x01, 0x2C, 0x64, 0x64, + 0x64, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, 0x35, 0x23, + 0x15, 0x23, 0x13, 0x33, 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x01, 0x90, 0x64, 0x64, 0xFE, + 0x70, 0xC8, 0xC8, 0x01, 0x2C, 0x64, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x0F, + 0x00, 0x00, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x21, 0x37, 0x33, 0x35, 0x23, 0x01, 0x90, + 0xFE, 0xD4, 0xC8, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0xC8, 0xC8, + 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, + 0x11, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x21, 0x13, 0x15, 0x33, 0x35, 0x03, 0x33, 0x35, 0x23, + 0x01, 0x2C, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0xC8, + 0xC8, 0xC8, 0xC8, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x01, 0x90, 0x64, 0x63, 0xFE, 0xD5, 0x64, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x05, 0x00, 0x00, 0x11, 0x21, 0x15, 0x21, 0x11, 0x23, + 0x01, 0x90, 0xFE, 0xD4, 0x64, 0x01, 0xF4, 0x64, 0xFE, 0x70, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0xFF, 0x9C, 0x01, 0xF4, + 0x01, 0xF4, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x00, 0x35, 0x33, + 0x11, 0x33, 0x35, 0x33, 0x11, 0x33, 0x15, 0x23, 0x35, 0x21, + 0x15, 0x23, 0x01, 0x23, 0x11, 0x33, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0xFE, 0xD4, 0x64, 0x01, 0x2C, 0x64, 0x64, 0x64, 0x01, + 0x2C, 0x64, 0xFE, 0x70, 0xC8, 0x64, 0x64, 0x01, 0xF4, 0xFE, + 0xD4, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, 0x11, 0x21, 0x15, 0x21, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, 0x01, 0x90, + 0xFE, 0xD4, 0xC8, 0xC8, 0x01, 0x2C, 0xFE, 0x70, 0x01, 0xF4, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x1B, 0x00, 0x00, + 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x35, 0x23, 0x15, 0x23, 0x35, 0x33, 0x35, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x01, 0xF4, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, + 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x13, + 0x00, 0x00, 0x13, 0x33, 0x35, 0x21, 0x35, 0x21, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x35, 0x21, + 0x35, 0x23, 0x64, 0xC8, 0xFE, 0xD4, 0x01, 0x2C, 0x64, 0x64, + 0x64, 0x64, 0xFE, 0xD4, 0x01, 0x2C, 0xC8, 0x01, 0x2C, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0F, + 0x00, 0x00, 0x11, 0x33, 0x11, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x11, 0x23, 0x35, 0x23, 0x15, 0x23, 0x15, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0xFE, 0xD4, + 0x64, 0xC8, 0xFE, 0x0C, 0xC8, 0x64, 0x64, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x02, 0xBC, + 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x11, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x15, 0x23, 0x13, 0x33, 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0x01, 0xF4, 0xFE, + 0xD4, 0x64, 0xC8, 0xFE, 0x0C, 0xC8, 0x64, 0x64, 0x02, 0xBC, + 0x64, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, + 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0xC8, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x09, + 0x00, 0x00, 0x11, 0x33, 0x35, 0x21, 0x11, 0x23, 0x11, 0x23, + 0x11, 0x23, 0x64, 0x01, 0x2C, 0x64, 0xC8, 0x64, 0x01, 0x90, + 0x64, 0xFE, 0x0C, 0x01, 0x90, 0xFE, 0x70, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x13, + 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x35, 0x33, 0x11, 0x23, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, + 0x11, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, 0xFE, 0x0C, + 0x01, 0x2C, 0x64, 0x64, 0xFE, 0xD4, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, + 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, 0x11, 0x23, + 0x35, 0x23, 0x15, 0x23, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, + 0x01, 0xF4, 0xC8, 0xC8, 0xFE, 0x0C, 0xC8, 0xC8, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, + 0x00, 0x0F, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x3B, 0x01, 0x11, 0x23, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x01, + 0x90, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x07, 0x00, 0x00, 0x11, 0x21, 0x11, 0x23, 0x11, 0x23, + 0x11, 0x23, 0x01, 0x90, 0x64, 0xC8, 0x64, 0x01, 0xF4, 0xFE, + 0x0C, 0x01, 0x90, 0xFE, 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x09, 0x00, 0x0D, + 0x00, 0x00, 0x11, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x15, 0x23, 0x13, 0x33, 0x35, 0x23, 0x01, 0x2C, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x01, 0xF4, 0x64, 0x64, 0x64, + 0xC8, 0x01, 0x2C, 0x64, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x35, 0x23, + 0x64, 0x01, 0x2C, 0xFE, 0xD4, 0x01, 0x2C, 0xFE, 0xD4, 0x64, + 0x01, 0x90, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x01, 0xF4, 0x00, 0x07, + 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, 0x11, 0x23, 0x11, 0x23, + 0x01, 0x2C, 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, 0xFE, 0x70, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0F, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x33, + 0x35, 0x23, 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, + 0xC8, 0x64, 0x01, 0xF4, 0xC8, 0xC8, 0xFE, 0x70, 0x64, 0x64, + 0x64, 0x64, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, + 0x01, 0xF4, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x3B, 0x01, 0x35, 0x23, + 0x21, 0x23, 0x15, 0x33, 0x64, 0x01, 0x2C, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x2C, 0x64, 0x64, + 0x01, 0x90, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, + 0xC8, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, + 0x35, 0x23, 0x15, 0x23, 0x35, 0x33, 0x35, 0x23, 0x64, 0xC8, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0xC8, 0xC8, 0xC8, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0x00, + 0x00, 0x01, 0x00, 0x00, 0xFF, 0x9C, 0x01, 0xF4, 0x01, 0xF4, + 0x00, 0x0B, 0x00, 0x00, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, + 0x11, 0x33, 0x15, 0x23, 0x35, 0x21, 0x64, 0xC8, 0x64, 0x64, + 0x64, 0xFE, 0x70, 0x01, 0xF4, 0xFE, 0x70, 0x01, 0x90, 0xFE, + 0x70, 0xC8, 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, 0x35, 0x23, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x01, 0xF4, 0xC8, 0xC8, + 0xFE, 0x0C, 0xC8, 0x64, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, 0x11, 0x33, + 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x21, + 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, 0x0C, 0x01, 0xF4, 0xFE, + 0x70, 0x01, 0x90, 0xFE, 0x70, 0x01, 0x90, 0xFE, 0x0C, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xFF, 0x9C, 0x02, 0x58, + 0x01, 0xF4, 0x00, 0x0F, 0x00, 0x00, 0x11, 0x33, 0x11, 0x33, + 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x23, + 0x35, 0x21, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, + 0x0C, 0x01, 0xF4, 0xFE, 0x70, 0x01, 0x90, 0xFE, 0x70, 0x01, + 0x90, 0xFE, 0x70, 0xC8, 0x64, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x0B, + 0x00, 0x0F, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x21, 0x11, 0x23, 0x17, 0x15, 0x33, 0x35, + 0xC8, 0xC8, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0xC8, 0xC8, 0x01, + 0xF4, 0xC8, 0x64, 0x64, 0x64, 0x01, 0x90, 0xC8, 0x64, 0x63, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x02, 0x58, 0x01, 0xF4, + 0x00, 0x09, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x01, 0x33, + 0x11, 0x23, 0x25, 0x33, 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, + 0xFE, 0xD4, 0x01, 0xF4, 0x64, 0x64, 0xFE, 0x70, 0xC8, 0xC8, + 0x01, 0xF4, 0xC8, 0x64, 0x64, 0x64, 0x01, 0xF4, 0xFE, 0x0C, + 0x64, 0x64, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x09, 0x00, 0x0D, 0x00, 0x00, + 0x11, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, + 0x37, 0x33, 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, 0xFE, 0xD4, + 0x64, 0xC8, 0xC8, 0x01, 0xF4, 0xC8, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x01, 0xF4, 0x00, 0x0F, 0x00, 0x00, 0x13, 0x33, 0x35, 0x21, + 0x35, 0x21, 0x15, 0x33, 0x11, 0x23, 0x15, 0x21, 0x35, 0x21, + 0x35, 0x23, 0x64, 0xC8, 0xFE, 0xD4, 0x01, 0x2C, 0x64, 0x64, + 0xFE, 0xD4, 0x01, 0x2C, 0xC8, 0x01, 0x2C, 0x64, 0x64, 0x64, + 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x13, + 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, + 0x35, 0x23, 0x15, 0x23, 0x01, 0x23, 0x11, 0x33, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, + 0x64, 0x64, 0x01, 0xF4, 0xC8, 0x64, 0x64, 0x64, 0xFE, 0xD4, + 0x64, 0x64, 0x64, 0xC8, 0x01, 0x90, 0xFE, 0xD4, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x35, 0x21, + 0x11, 0x23, 0x35, 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x33, + 0x35, 0x23, 0x37, 0x15, 0x33, 0x35, 0x64, 0x01, 0x2C, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x01, 0x90, 0x64, + 0xFE, 0x0C, 0xC8, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, + 0x15, 0x33, 0x11, 0x23, 0x35, 0x23, 0x15, 0x23, 0x13, 0x33, + 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, + 0xC8, 0x01, 0x90, 0x64, 0x64, 0xFE, 0x70, 0xC8, 0xC8, 0x01, + 0x2C, 0x64, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, 0x11, 0x21, + 0x15, 0x21, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, + 0x37, 0x33, 0x35, 0x23, 0x01, 0x90, 0xFE, 0xD4, 0xC8, 0x64, + 0x64, 0xFE, 0xD4, 0x64, 0xC8, 0xC8, 0x01, 0xF4, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, + 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x11, 0x21, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x13, 0x15, + 0x33, 0x35, 0x03, 0x33, 0x35, 0x23, 0x01, 0x2C, 0x64, 0x64, + 0x64, 0x64, 0xFE, 0xD4, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, 0x01, + 0xF4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, 0x64, 0x63, + 0xFE, 0xD5, 0x64, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x05, 0x00, 0x00, + 0x11, 0x21, 0x15, 0x21, 0x11, 0x23, 0x01, 0x90, 0xFE, 0xD4, + 0x64, 0x01, 0xF4, 0x64, 0xFE, 0x70, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0xFF, 0x9C, 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x0D, + 0x00, 0x11, 0x00, 0x00, 0x35, 0x33, 0x11, 0x33, 0x35, 0x33, + 0x11, 0x33, 0x15, 0x23, 0x35, 0x21, 0x15, 0x23, 0x01, 0x23, + 0x11, 0x33, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xFE, 0xD4, 0x64, + 0x01, 0x2C, 0x64, 0x64, 0x64, 0x01, 0x2C, 0x64, 0xFE, 0x70, + 0xC8, 0x64, 0x64, 0x01, 0xF4, 0xFE, 0xD4, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, + 0x00, 0x00, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x21, 0x15, 0x21, 0x01, 0x90, 0xFE, 0xD4, 0xC8, 0xC8, + 0x01, 0x2C, 0xFE, 0x70, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, + 0x01, 0xF4, 0x00, 0x1B, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x35, 0x33, 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0xC8, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, + 0xC8, 0xC8, 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x13, 0x00, 0x00, 0x13, 0x33, + 0x35, 0x21, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x21, 0x35, 0x21, 0x35, 0x23, 0x64, 0xC8, + 0xFE, 0xD4, 0x01, 0x2C, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, + 0x01, 0x2C, 0xC8, 0x01, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0F, 0x00, 0x00, 0x11, 0x33, + 0x11, 0x33, 0x35, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, + 0x15, 0x23, 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x01, 0xF4, 0xFE, 0xD4, 0x64, 0xC8, 0xFE, 0x0C, + 0xC8, 0x64, 0x64, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x02, 0xBC, 0x00, 0x0F, 0x00, 0x13, + 0x00, 0x00, 0x11, 0x33, 0x11, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x11, 0x23, 0x35, 0x23, 0x15, 0x23, 0x15, 0x23, 0x13, 0x33, + 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0xC8, 0xC8, 0x01, 0xF4, 0xFE, 0xD4, 0x64, 0xC8, 0xFE, + 0x0C, 0xC8, 0x64, 0x64, 0x02, 0xBC, 0x64, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x01, 0xF4, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0xC8, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x09, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x21, 0x11, 0x23, 0x11, 0x23, 0x11, 0x23, 0x64, 0x01, + 0x2C, 0x64, 0xC8, 0x64, 0x01, 0x90, 0x64, 0xFE, 0x0C, 0x01, + 0x90, 0xFE, 0x70, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x33, 0x15, 0x33, 0x35, 0x33, 0x35, 0x33, 0x11, 0x23, + 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x11, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0x64, 0x64, 0x64, 0x64, 0xFE, 0x0C, 0x01, 0x2C, 0x64, 0x64, + 0xFE, 0xD4, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x01, 0xF4, 0xC8, 0xC8, + 0xFE, 0x0C, 0xC8, 0xC8, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, 0x15, 0x23, + 0x35, 0x23, 0x3B, 0x01, 0x11, 0x23, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x01, 0x90, 0x64, 0x64, 0xFE, + 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x07, 0x00, 0x00, + 0x11, 0x21, 0x11, 0x23, 0x11, 0x23, 0x11, 0x23, 0x01, 0x90, + 0x64, 0xC8, 0x64, 0x01, 0xF4, 0xFE, 0x0C, 0x01, 0x90, 0xFE, + 0x70, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x01, 0xF4, 0x00, 0x09, 0x00, 0x0D, 0x00, 0x00, 0x11, 0x21, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x13, 0x33, + 0x35, 0x23, 0x01, 0x2C, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, + 0xC8, 0x01, 0xF4, 0x64, 0x64, 0x64, 0xC8, 0x01, 0x2C, 0x64, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x0B, 0x00, 0x00, 0x11, 0x33, 0x35, 0x21, 0x15, 0x21, + 0x11, 0x21, 0x15, 0x21, 0x35, 0x23, 0x64, 0x01, 0x2C, 0xFE, + 0xD4, 0x01, 0x2C, 0xFE, 0xD4, 0x64, 0x01, 0x90, 0x64, 0x64, + 0xFE, 0xD4, 0x64, 0x64, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x2C, 0x01, 0xF4, 0x00, 0x07, 0x00, 0x00, 0x11, 0x21, + 0x15, 0x23, 0x11, 0x23, 0x11, 0x23, 0x01, 0x2C, 0x64, 0x64, + 0x64, 0x01, 0xF4, 0x64, 0xFE, 0x70, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x0F, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x11, 0x23, 0x15, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x23, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0xC8, 0x64, 0x01, 0xF4, + 0xC8, 0xC8, 0xFE, 0x70, 0x64, 0x64, 0x64, 0x64, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x0F, + 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, 0x35, 0x21, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, + 0x35, 0x23, 0x3B, 0x01, 0x35, 0x23, 0x21, 0x23, 0x15, 0x33, + 0x64, 0x01, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x01, 0x2C, 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x35, 0x33, 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x64, 0x01, 0xF4, 0xC8, 0xC8, 0xC8, 0x64, + 0xC8, 0xC8, 0xC8, 0xC8, 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, + 0xFF, 0x9C, 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x00, + 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x15, 0x23, + 0x35, 0x21, 0x64, 0xC8, 0x64, 0x64, 0x64, 0xFE, 0x70, 0x01, + 0xF4, 0xFE, 0x70, 0x01, 0x90, 0xFE, 0x70, 0xC8, 0x64, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x0B, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x11, 0x23, 0x35, 0x23, 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0x01, 0xF4, 0xC8, 0xC8, 0xFE, 0x0C, 0xC8, 0x64, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, + 0x00, 0x0B, 0x00, 0x00, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, + 0x11, 0x33, 0x11, 0x33, 0x11, 0x21, 0x64, 0x64, 0x64, 0x64, + 0x64, 0xFE, 0x0C, 0x01, 0xF4, 0xFE, 0x70, 0x01, 0x90, 0xFE, + 0x70, 0x01, 0x90, 0xFE, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0xFF, 0x9C, 0x02, 0x58, 0x01, 0xF4, 0x00, 0x0F, + 0x00, 0x00, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, + 0x11, 0x33, 0x11, 0x33, 0x15, 0x23, 0x35, 0x21, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0xFE, 0x0C, 0x01, 0xF4, 0xFE, + 0x70, 0x01, 0x90, 0xFE, 0x70, 0x01, 0x90, 0xFE, 0x70, 0xC8, + 0x64, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, + 0x11, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, + 0x11, 0x23, 0x17, 0x15, 0x33, 0x35, 0xC8, 0xC8, 0x64, 0x64, + 0xFE, 0xD4, 0x64, 0xC8, 0xC8, 0x01, 0xF4, 0xC8, 0x64, 0x64, + 0x64, 0x01, 0x90, 0xC8, 0x64, 0x63, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x02, 0x58, 0x01, 0xF4, 0x00, 0x09, 0x00, 0x0D, + 0x00, 0x11, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x21, 0x01, 0x33, 0x11, 0x23, 0x25, 0x33, + 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, 0xFE, 0xD4, 0x01, 0xF4, + 0x64, 0x64, 0xFE, 0x70, 0xC8, 0xC8, 0x01, 0xF4, 0xC8, 0x64, + 0x64, 0x64, 0x01, 0xF4, 0xFE, 0x0C, 0x64, 0x64, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x09, 0x00, 0x0D, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x37, 0x33, 0x35, 0x23, + 0x64, 0xC8, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0xC8, 0xC8, 0x01, + 0xF4, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0F, + 0x00, 0x00, 0x13, 0x33, 0x35, 0x21, 0x35, 0x21, 0x15, 0x33, + 0x11, 0x23, 0x15, 0x21, 0x35, 0x21, 0x35, 0x23, 0x64, 0xC8, + 0xFE, 0xD4, 0x01, 0x2C, 0x64, 0x64, 0xFE, 0xD4, 0x01, 0x2C, + 0xC8, 0x01, 0x2C, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, + 0x64, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, + 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x01, 0x23, 0x11, 0x33, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, 0x01, 0xF4, + 0xC8, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0xC8, + 0x01, 0x90, 0xFE, 0xD4, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0F, 0x00, 0x13, + 0x00, 0x00, 0x11, 0x33, 0x35, 0x21, 0x11, 0x23, 0x35, 0x23, + 0x15, 0x23, 0x15, 0x23, 0x35, 0x33, 0x35, 0x23, 0x37, 0x15, + 0x33, 0x35, 0x64, 0x01, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0xC8, 0x01, 0x90, 0x64, 0xFE, 0x0C, 0xC8, 0x64, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x64, 0x01, 0xF4, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x00, 0x11, 0x33, 0x11, 0x23, 0x11, 0x33, 0x15, 0x23, + 0x64, 0x64, 0x64, 0x64, 0x01, 0x2C, 0xFE, 0xD4, 0x01, 0xF4, + 0x64, 0x00, 0x00, 0x02, 0x00, 0x00, 0xFF, 0x9C, 0x01, 0xF4, + 0x02, 0x58, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x11, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, 0x23, 0x3B, 0x01, + 0x11, 0x23, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0xC8, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, 0x64, + 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x01, 0x2C, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x21, + 0x35, 0x33, 0x35, 0x23, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, + 0xC8, 0xFE, 0x70, 0x64, 0x64, 0x01, 0x2C, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x2C, 0x02, 0x58, 0x00, 0x17, 0x00, 0x00, + 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x33, 0x15, 0x21, 0x35, 0x33, 0x35, 0x23, + 0x35, 0x33, 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x02, 0x58, 0xC8, + 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x00, 0x02, 0x00, 0x00, 0x01, 0x90, 0x01, 0x2C, 0x01, 0xF4, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x11, 0x33, 0x15, 0x23, + 0x37, 0x33, 0x15, 0x23, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x01, + 0xF4, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0D, 0x00, 0x11, + 0x00, 0x00, 0x13, 0x33, 0x15, 0x33, 0x11, 0x21, 0x35, 0x23, + 0x35, 0x33, 0x35, 0x33, 0x35, 0x23, 0x11, 0x33, 0x35, 0x23, + 0x64, 0xC8, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0xC8, 0xC8, 0xC8, + 0xC8, 0x01, 0xF4, 0x64, 0xFE, 0x70, 0x64, 0x64, 0x64, 0x64, + 0xFE, 0xD4, 0x64, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0xC8, 0x01, 0x90, 0x02, 0xBC, 0x00, 0x11, 0x00, 0x00, + 0x11, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x21, + 0x15, 0x21, 0x35, 0x33, 0x35, 0x33, 0x35, 0x21, 0x01, 0x2C, + 0x64, 0x64, 0xC8, 0x01, 0x2C, 0xFE, 0x70, 0x64, 0xC8, 0xFE, + 0xD4, 0x02, 0xBC, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xC8, 0x01, 0x90, + 0x02, 0xBC, 0x00, 0x13, 0x00, 0x00, 0x13, 0x33, 0x35, 0x21, + 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x21, 0x35, 0x21, 0x35, 0x23, 0x64, 0xC8, 0xFE, 0xD4, + 0x01, 0x2C, 0x64, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x01, 0x2C, + 0xC8, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x00, 0x01, 0x00, 0x00, 0x01, 0x2C, 0x00, 0xC8, + 0x01, 0xF4, 0x00, 0x07, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, + 0x64, 0x64, 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, 0xFF, 0x38, + 0x01, 0x2C, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x15, 0x33, + 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0xC8, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0xC8, 0x01, 0x2C, 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x33, 0x11, 0x33, 0x15, 0x21, 0x35, 0x33, + 0x35, 0x23, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x02, + 0x58, 0x64, 0xFE, 0x70, 0x64, 0x64, 0xC8, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0xC8, 0x01, 0x90, 0x02, 0xBC, + 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, + 0x15, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x3B, 0x01, + 0x11, 0x23, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, + 0xC8, 0x02, 0x58, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, + 0x2C, 0x00, 0x00, 0x03, 0x00, 0x00, 0xFF, 0x38, 0x04, 0xB0, + 0x02, 0xBC, 0x00, 0x09, 0x00, 0x13, 0x00, 0x27, 0x00, 0x00, + 0x01, 0x33, 0x15, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, + 0x01, 0x33, 0x11, 0x33, 0x15, 0x21, 0x35, 0x33, 0x11, 0x23, + 0x01, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, + 0x03, 0x20, 0x64, 0xC8, 0x64, 0x64, 0xFE, 0xD4, 0xFC, 0xE0, + 0xC8, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x2C, + 0xC8, 0xC8, 0xFE, 0x0C, 0xC8, 0x02, 0xBC, 0xFE, 0x70, 0x64, + 0x64, 0x01, 0x2C, 0xFE, 0x0C, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x00, 0x03, 0x00, 0x00, 0xFF, 0x38, + 0x04, 0xB0, 0x02, 0xBC, 0x00, 0x11, 0x00, 0x1B, 0x00, 0x2F, + 0x00, 0x00, 0x21, 0x33, 0x35, 0x33, 0x35, 0x21, 0x35, 0x21, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, + 0x01, 0x33, 0x11, 0x33, 0x15, 0x21, 0x35, 0x33, 0x11, 0x23, + 0x01, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, + 0x03, 0x20, 0x64, 0xC8, 0xFE, 0xD4, 0x01, 0x2C, 0x64, 0x64, + 0xC8, 0x01, 0x2C, 0xFE, 0x70, 0xFC, 0xE0, 0xC8, 0x64, 0xFE, + 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x03, 0x84, 0xFE, 0x70, 0x64, 0x64, 0x01, + 0x2C, 0xFE, 0x0C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x00, 0x03, 0x00, 0x00, 0xFF, 0x38, 0x04, 0xB0, + 0x02, 0xBC, 0x00, 0x13, 0x00, 0x1D, 0x00, 0x31, 0x00, 0x00, + 0x13, 0x33, 0x35, 0x21, 0x35, 0x21, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x35, 0x21, 0x35, 0x23, + 0x05, 0x33, 0x15, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, + 0x25, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, + 0x64, 0xC8, 0xFE, 0xD4, 0x01, 0x2C, 0x64, 0x64, 0x64, 0x64, + 0xFE, 0xD4, 0x01, 0x2C, 0xC8, 0x02, 0xBC, 0x64, 0xC8, 0x64, + 0x64, 0xFE, 0xD4, 0xFE, 0x0C, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0xFE, + 0x0C, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, + 0x35, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, + 0x35, 0x23, 0x13, 0x33, 0x15, 0x23, 0x64, 0xC8, 0xC8, 0x01, + 0x2C, 0xFE, 0xD4, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x01, 0x90, 0x64, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, 0x00, 0x07, 0x00, 0x13, + 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x15, 0x23, + 0x35, 0x23, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, + 0x35, 0x23, 0x15, 0x23, 0x13, 0x33, 0x35, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, + 0xC8, 0x03, 0x20, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, + 0xFE, 0x70, 0xC8, 0xC8, 0x01, 0x2C, 0x64, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, 0x00, 0x07, + 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, 0x13, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x07, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x11, 0x23, 0x35, 0x23, 0x15, 0x23, 0x13, 0x33, 0x35, 0x23, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x02, 0xBC, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0xFE, 0x70, 0xC8, 0xC8, 0x01, 0x2C, 0x64, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, + 0x00, 0x0B, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, 0x35, 0x23, + 0x15, 0x23, 0x13, 0x33, 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, + 0xC8, 0x02, 0xBC, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0xFE, 0x70, 0xC8, 0xC8, 0x01, 0x2C, 0x64, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, + 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x35, 0x23, 0x15, 0x23, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x11, 0x23, 0x35, 0x23, 0x15, 0x23, 0x13, 0x33, 0x35, 0x23, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x02, 0xBC, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xFE, + 0x70, 0xC8, 0xC8, 0x01, 0x2C, 0x64, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x02, 0xBC, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x23, 0x25, 0x33, 0x15, 0x23, 0x05, 0x33, 0x35, 0x33, + 0x15, 0x33, 0x11, 0x23, 0x35, 0x23, 0x15, 0x23, 0x13, 0x33, + 0x35, 0x23, 0x64, 0x64, 0x01, 0x2C, 0x64, 0x64, 0xFE, 0xD4, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x02, + 0xBC, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xFE, 0x70, 0xC8, + 0xC8, 0x01, 0x2C, 0x64, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x02, 0xBC, 0x00, 0x13, 0x00, 0x17, 0x00, 0x1B, + 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x33, 0x11, 0x23, 0x35, 0x23, 0x15, 0x23, 0x11, 0x33, + 0x35, 0x23, 0x3B, 0x01, 0x35, 0x23, 0x1D, 0x01, 0x33, 0x35, + 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, + 0x64, 0xC8, 0xC8, 0xC8, 0x02, 0x58, 0x64, 0x64, 0x64, 0x64, + 0xFE, 0x70, 0xC8, 0xC8, 0x01, 0x90, 0x64, 0x64, 0xC8, 0x64, + 0x63, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x11, 0x00, 0x15, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x21, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x33, 0x15, 0x21, 0x35, 0x23, 0x15, 0x23, 0x13, 0x33, + 0x35, 0x23, 0x64, 0x01, 0x90, 0xC8, 0x64, 0x64, 0xC8, 0xFE, + 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0xC8, 0x01, 0x2C, 0x64, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xFF, 0x38, 0x01, 0x90, + 0x01, 0xF4, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x35, 0x21, + 0x15, 0x21, 0x11, 0x21, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, + 0x35, 0x33, 0x35, 0x23, 0x35, 0x23, 0x64, 0x01, 0x2C, 0xFE, + 0xD4, 0x01, 0x2C, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x01, + 0x90, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x03, 0x20, 0x00, 0x0B, 0x00, 0x13, 0x00, 0x00, 0x11, 0x21, + 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, + 0x11, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x01, 0x90, + 0xFE, 0xD4, 0xC8, 0xC8, 0x01, 0x2C, 0xFE, 0x70, 0x64, 0x64, + 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x03, + 0x20, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, 0x00, 0x0B, 0x00, 0x13, + 0x00, 0x00, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x21, 0x15, 0x21, 0x13, 0x33, 0x35, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x01, 0x90, 0xFE, 0xD4, 0xC8, 0xC8, 0x01, 0x2C, + 0xFE, 0x70, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x02, 0xBC, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, + 0x00, 0x0B, 0x00, 0x17, 0x00, 0x00, 0x11, 0x21, 0x15, 0x21, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, 0x11, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x01, 0x90, 0xFE, 0xD4, 0xC8, 0xC8, 0x01, 0x2C, 0xFE, 0x70, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x01, 0xF4, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x02, 0xBC, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, + 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, + 0x15, 0x21, 0x11, 0x33, 0x15, 0x23, 0x25, 0x33, 0x15, 0x23, + 0x01, 0x90, 0xFE, 0xD4, 0xC8, 0xC8, 0x01, 0x2C, 0xFE, 0x70, + 0x64, 0x64, 0x01, 0x2C, 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x02, 0xBC, 0x64, 0x64, 0x64, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x03, 0x20, + 0x00, 0x0B, 0x00, 0x13, 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, + 0x11, 0x33, 0x15, 0x21, 0x35, 0x33, 0x11, 0x23, 0x11, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x01, 0x2C, 0x64, 0x64, + 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x01, 0x90, 0x64, + 0x64, 0x64, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x2C, 0x03, 0x20, 0x00, 0x0B, 0x00, 0x13, 0x00, 0x00, + 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15, 0x21, 0x35, 0x33, + 0x11, 0x23, 0x13, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x01, 0x2C, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, 0xFE, 0xD4, 0x64, 0x64, + 0x01, 0x2C, 0x01, 0x2C, 0x64, 0x64, 0x64, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x03, 0x20, 0x00, 0x0B, + 0x00, 0x17, 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, + 0x15, 0x21, 0x35, 0x33, 0x11, 0x23, 0x11, 0x33, 0x35, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, 0x01, 0x2C, + 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x01, 0xF4, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, + 0x2C, 0x01, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x02, 0xBC, + 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x11, 0x21, + 0x15, 0x23, 0x11, 0x33, 0x15, 0x21, 0x35, 0x33, 0x11, 0x23, + 0x11, 0x33, 0x15, 0x23, 0x37, 0x33, 0x15, 0x23, 0x01, 0x2C, + 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0x01, 0xF4, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, + 0x01, 0x2C, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x0B, + 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x35, 0x21, 0x15, 0x33, + 0x11, 0x23, 0x15, 0x21, 0x35, 0x23, 0x37, 0x33, 0x15, 0x23, + 0x15, 0x33, 0x11, 0x23, 0x64, 0x01, 0x2C, 0x64, 0x64, 0xFE, + 0xD4, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x01, 0x2C, 0xC8, + 0x64, 0xFE, 0xD4, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x01, 0x2C, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x03, 0x20, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x33, 0x15, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, + 0x35, 0x23, 0x11, 0x23, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, + 0xC8, 0xFE, 0x0C, 0xC8, 0x64, 0xFE, 0xD4, 0x02, 0xBC, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, 0x00, 0x0B, 0x00, 0x0F, + 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x3B, 0x01, 0x11, 0x23, + 0x03, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, + 0x01, 0x2C, 0x01, 0x90, 0x64, 0x64, 0x64, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, 0x00, 0x0B, + 0x00, 0x0F, 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, + 0x15, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x3B, 0x01, + 0x11, 0x23, 0x13, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, 0xFE, 0xD4, + 0x64, 0x64, 0x01, 0x2C, 0x01, 0x2C, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, + 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, + 0x3B, 0x01, 0x11, 0x23, 0x03, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0x01, 0x90, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, + 0x01, 0x2C, 0x01, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, + 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, + 0x3B, 0x01, 0x11, 0x23, 0x03, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, + 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x01, 0x2C, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x02, 0xBC, 0x00, 0x0B, + 0x00, 0x0F, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, + 0x3B, 0x01, 0x11, 0x23, 0x13, 0x33, 0x15, 0x23, 0x25, 0x33, + 0x15, 0x23, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, + 0xC8, 0xC8, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x90, + 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x01, 0x2C, + 0x64, 0x64, 0x64, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x64, + 0x01, 0x2C, 0x01, 0x90, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, + 0x35, 0x23, 0x15, 0x23, 0x35, 0x33, 0x35, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, + 0x00, 0x0B, 0x00, 0x11, 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x21, 0x15, 0x33, 0x11, 0x23, 0x15, 0x21, 0x35, 0x23, + 0x37, 0x33, 0x35, 0x33, 0x35, 0x23, 0x17, 0x15, 0x33, 0x35, + 0x23, 0x15, 0x64, 0x01, 0x2C, 0x64, 0x64, 0xFE, 0xD4, 0x64, + 0x64, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x01, 0x90, 0x64, + 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0xC8, 0x64, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x03, 0x20, 0x00, 0x0B, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, + 0x11, 0x33, 0x11, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, + 0x11, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0xFE, 0x70, 0x01, 0x90, 0xFE, 0x70, 0x64, 0x64, 0x02, 0xBC, + 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, 0x00, 0x0B, 0x00, 0x13, + 0x00, 0x00, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x23, + 0x15, 0x23, 0x35, 0x23, 0x13, 0x33, 0x35, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0x01, 0xF4, 0xFE, 0x70, 0x01, 0x90, 0xFE, + 0x70, 0x64, 0x64, 0x02, 0x58, 0x64, 0x64, 0x64, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, + 0x00, 0x0B, 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, 0x11, 0x33, + 0x11, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x11, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0x01, 0xF4, 0xFE, 0x70, 0x01, 0x90, 0xFE, 0x70, + 0x64, 0x64, 0x02, 0x58, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, + 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x23, 0x15, 0x23, + 0x35, 0x23, 0x11, 0x33, 0x15, 0x23, 0x25, 0x33, 0x15, 0x23, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x01, 0x2C, + 0x64, 0x64, 0x01, 0xF4, 0xFE, 0x70, 0x01, 0x90, 0xFE, 0x70, + 0x64, 0x64, 0x02, 0x58, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x03, 0x20, + 0x00, 0x0B, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x15, 0x23, 0x11, 0x23, 0x11, 0x23, 0x13, 0x33, + 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0xC8, + 0xC8, 0xC8, 0xFE, 0xD4, 0x01, 0x2C, 0x01, 0x90, 0x64, 0x64, + 0x64, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, + 0x11, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x15, 0x23, 0x13, 0x15, 0x33, 0x35, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0xC8, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x01, 0x2C, 0x64, 0x63, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x01, 0xF4, 0x00, 0x13, 0x00, 0x17, + 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x33, 0x35, 0x23, + 0x15, 0x23, 0x13, 0x33, 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x01, + 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, + 0x01, 0x2C, 0x64, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x03, 0x20, 0x00, 0x07, 0x00, 0x13, 0x00, 0x17, + 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, + 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, 0x35, 0x23, + 0x15, 0x23, 0x13, 0x33, 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x03, + 0x20, 0x64, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0xFE, 0x70, + 0xC8, 0xC8, 0x01, 0x2C, 0x64, 0x00, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, 0x00, 0x07, 0x00, 0x13, + 0x00, 0x17, 0x00, 0x00, 0x13, 0x33, 0x35, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x07, 0x33, 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, + 0x35, 0x23, 0x15, 0x23, 0x13, 0x33, 0x35, 0x23, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0xC8, 0xC8, 0x02, 0xBC, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0xFE, 0x70, 0xC8, 0xC8, 0x01, 0x2C, 0x64, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, 0x00, 0x0B, + 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, 0x15, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x13, 0x33, 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x02, + 0xBC, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xFE, + 0x70, 0xC8, 0xC8, 0x01, 0x2C, 0x64, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, 0x00, 0x0F, + 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, + 0x15, 0x23, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, + 0x35, 0x23, 0x15, 0x23, 0x13, 0x33, 0x35, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x02, 0xBC, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xFE, 0x70, 0xC8, + 0xC8, 0x01, 0x2C, 0x64, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, 0x15, 0x23, + 0x25, 0x33, 0x15, 0x23, 0x05, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x11, 0x23, 0x35, 0x23, 0x15, 0x23, 0x13, 0x33, 0x35, 0x23, + 0x64, 0x64, 0x01, 0x2C, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x02, 0xBC, 0x64, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0xFE, 0x70, 0xC8, 0xC8, 0x01, + 0x2C, 0x64, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x02, 0xBC, 0x00, 0x13, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, + 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, + 0x11, 0x23, 0x35, 0x23, 0x15, 0x23, 0x11, 0x33, 0x35, 0x23, + 0x3B, 0x01, 0x35, 0x23, 0x1D, 0x01, 0x33, 0x35, 0x64, 0xC8, + 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0xC8, + 0xC8, 0xC8, 0x02, 0x58, 0x64, 0x64, 0x64, 0x64, 0xFE, 0x70, + 0xC8, 0xC8, 0x01, 0x90, 0x64, 0x64, 0xC8, 0x64, 0x63, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, + 0x01, 0xF4, 0x00, 0x11, 0x00, 0x15, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x21, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, + 0x15, 0x21, 0x35, 0x23, 0x15, 0x23, 0x13, 0x33, 0x35, 0x23, + 0x64, 0x01, 0x90, 0xC8, 0x64, 0x64, 0xC8, 0xFE, 0xD4, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0xC8, 0xC8, 0x01, 0x2C, 0x64, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0xFF, 0x38, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x35, 0x21, 0x15, 0x21, + 0x11, 0x21, 0x15, 0x23, 0x15, 0x23, 0x15, 0x23, 0x35, 0x33, + 0x35, 0x23, 0x35, 0x23, 0x64, 0x01, 0x2C, 0xFE, 0xD4, 0x01, + 0x2C, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x01, 0x90, 0x64, + 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, + 0x00, 0x0B, 0x00, 0x13, 0x00, 0x00, 0x11, 0x21, 0x15, 0x21, + 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, 0x11, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x01, 0x90, 0xFE, 0xD4, + 0xC8, 0xC8, 0x01, 0x2C, 0xFE, 0x70, 0x64, 0x64, 0x64, 0x64, + 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x03, 0x20, 0x64, + 0x64, 0x64, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x03, 0x20, 0x00, 0x0B, 0x00, 0x13, 0x00, 0x00, + 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, + 0x15, 0x21, 0x13, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x01, 0x90, 0xFE, 0xD4, 0xC8, 0xC8, 0x01, 0x2C, 0xFE, 0x70, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x02, 0xBC, 0x64, 0x64, 0x64, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, 0x00, 0x0B, + 0x00, 0x17, 0x00, 0x00, 0x11, 0x21, 0x15, 0x21, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, 0x11, 0x33, 0x35, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, 0x01, 0x90, + 0xFE, 0xD4, 0xC8, 0xC8, 0x01, 0x2C, 0xFE, 0x70, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x02, 0xBC, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x02, 0xBC, + 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x11, 0x21, + 0x15, 0x21, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, + 0x11, 0x33, 0x15, 0x23, 0x25, 0x33, 0x15, 0x23, 0x01, 0x90, + 0xFE, 0xD4, 0xC8, 0xC8, 0x01, 0x2C, 0xFE, 0x70, 0x64, 0x64, + 0x01, 0x2C, 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x02, 0xBC, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x03, 0x20, 0x00, 0x0B, + 0x00, 0x13, 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, + 0x15, 0x21, 0x35, 0x33, 0x11, 0x23, 0x11, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x01, 0x2C, 0x64, 0x64, 0xFE, 0xD4, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, 0xFE, + 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x01, 0x90, 0x64, 0x64, 0x64, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, + 0x03, 0x20, 0x00, 0x0B, 0x00, 0x13, 0x00, 0x00, 0x11, 0x21, + 0x15, 0x23, 0x11, 0x33, 0x15, 0x21, 0x35, 0x33, 0x11, 0x23, + 0x13, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x01, 0x2C, + 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x01, 0xF4, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, + 0x01, 0x2C, 0x64, 0x64, 0x64, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x2C, 0x03, 0x20, 0x00, 0x0B, 0x00, 0x17, + 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15, 0x21, + 0x35, 0x33, 0x11, 0x23, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, 0x01, 0x2C, 0x64, 0x64, + 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x01, 0xF4, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x01, + 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x02, 0xBC, 0x00, 0x0B, + 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, + 0x11, 0x33, 0x15, 0x21, 0x35, 0x33, 0x11, 0x23, 0x11, 0x33, + 0x15, 0x23, 0x37, 0x33, 0x15, 0x23, 0x01, 0x2C, 0x64, 0x64, + 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x01, + 0xF4, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x01, 0x2C, + 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x13, + 0x00, 0x00, 0x11, 0x33, 0x35, 0x21, 0x15, 0x33, 0x11, 0x23, + 0x15, 0x21, 0x35, 0x23, 0x37, 0x33, 0x15, 0x23, 0x15, 0x33, + 0x11, 0x23, 0x64, 0x01, 0x2C, 0x64, 0x64, 0xFE, 0xD4, 0x64, + 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x01, 0x2C, 0xC8, 0x64, 0xFE, + 0xD4, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x01, 0x2C, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, + 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, 0x35, 0x23, + 0x11, 0x23, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, 0x64, 0xC8, 0xFE, + 0x0C, 0xC8, 0x64, 0xFE, 0xD4, 0x02, 0xBC, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x03, 0x20, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x17, + 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, 0x11, 0x23, + 0x15, 0x23, 0x35, 0x23, 0x3B, 0x01, 0x11, 0x23, 0x03, 0x33, + 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x01, 0x90, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, + 0x01, 0x90, 0x64, 0x64, 0x64, 0x00, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, 0x00, 0x0B, 0x00, 0x0F, + 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x3B, 0x01, 0x11, 0x23, + 0x13, 0x33, 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, + 0x01, 0x2C, 0x01, 0x2C, 0x64, 0x64, 0x64, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, 0x00, 0x0B, + 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, + 0x15, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x3B, 0x01, + 0x11, 0x23, 0x03, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, + 0x35, 0x23, 0x15, 0x23, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, + 0x64, 0xC8, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, + 0x01, 0x90, 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, + 0x01, 0x2C, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, 0x00, 0x0B, + 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, + 0x15, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x3B, 0x01, + 0x11, 0x23, 0x03, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, + 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x01, 0x2C, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x0F, + 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, + 0x15, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x3B, 0x01, + 0x11, 0x23, 0x13, 0x33, 0x15, 0x23, 0x25, 0x33, 0x15, 0x23, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0xC8, 0xC8, + 0x64, 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, + 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x01, 0x2C, 0x64, 0x64, + 0x64, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, + 0x01, 0xF4, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, + 0x11, 0x21, 0x15, 0x21, 0x17, 0x33, 0x15, 0x23, 0x11, 0x33, + 0x15, 0x23, 0x01, 0x2C, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x01, 0x2C, 0x64, 0x64, 0x64, 0x01, 0xF4, 0x64, 0x00, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, + 0x00, 0x0B, 0x00, 0x11, 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, + 0x35, 0x21, 0x15, 0x33, 0x11, 0x23, 0x15, 0x21, 0x35, 0x23, + 0x37, 0x33, 0x35, 0x33, 0x35, 0x23, 0x17, 0x15, 0x33, 0x35, + 0x23, 0x15, 0x64, 0x01, 0x2C, 0x64, 0x64, 0xFE, 0xD4, 0x64, + 0x64, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, 0x01, 0x90, 0x64, + 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, 0x64, 0xC8, 0x64, + 0xC8, 0x64, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x03, 0x20, 0x00, 0x0B, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, + 0x11, 0x33, 0x11, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, + 0x11, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x64, 0xC8, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0xFE, 0x70, 0x01, 0x90, 0xFE, 0x70, 0x64, 0x64, 0x02, 0xBC, + 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, 0x00, 0x0B, 0x00, 0x13, + 0x00, 0x00, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x23, + 0x15, 0x23, 0x35, 0x23, 0x13, 0x33, 0x35, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0x01, 0xF4, 0xFE, 0x70, 0x01, 0x90, 0xFE, + 0x70, 0x64, 0x64, 0x02, 0x58, 0x64, 0x64, 0x64, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, + 0x00, 0x0B, 0x00, 0x17, 0x00, 0x00, 0x11, 0x33, 0x11, 0x33, + 0x11, 0x33, 0x11, 0x23, 0x15, 0x23, 0x35, 0x23, 0x11, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0x01, 0xF4, 0xFE, 0x70, 0x01, 0x90, 0xFE, 0x70, + 0x64, 0x64, 0x02, 0x58, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, + 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x23, 0x15, 0x23, + 0x35, 0x23, 0x11, 0x33, 0x15, 0x23, 0x25, 0x33, 0x15, 0x23, + 0x64, 0xC8, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x64, 0x01, 0x2C, + 0x64, 0x64, 0x01, 0xF4, 0xFE, 0x70, 0x01, 0x90, 0xFE, 0x70, + 0x64, 0x64, 0x02, 0x58, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2C, 0x03, 0x20, + 0x00, 0x0B, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x15, 0x23, 0x11, 0x23, 0x11, 0x23, 0x13, 0x33, + 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, 0xC8, + 0xC8, 0xC8, 0xFE, 0xD4, 0x01, 0x2C, 0x01, 0x90, 0x64, 0x64, + 0x64, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x01, 0xF4, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, + 0x11, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x23, + 0x15, 0x23, 0x13, 0x15, 0x33, 0x35, 0x64, 0xC8, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0xC8, 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x01, 0x2C, 0x64, 0x63, 0x00, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x2C, 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x0F, + 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x33, 0x15, 0x23, + 0x37, 0x33, 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0x01, 0xF4, 0xC8, 0xC8, 0xC8, + 0xFE, 0xD4, 0x01, 0x2C, 0x01, 0x90, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, + 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x35, 0x21, + 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x21, + 0x35, 0x23, 0x3B, 0x01, 0x11, 0x23, 0x64, 0x01, 0x90, 0xC8, + 0x64, 0x64, 0xC8, 0xFE, 0x70, 0x64, 0x64, 0x64, 0x64, 0x01, + 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x2C, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, + 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x35, 0x21, + 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x21, + 0x35, 0x23, 0x3B, 0x01, 0x11, 0x23, 0x64, 0x01, 0x90, 0xC8, + 0x64, 0x64, 0xC8, 0xFE, 0x70, 0x64, 0x64, 0x64, 0x64, 0x01, + 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x2C, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, + 0x00, 0x13, 0x00, 0x1F, 0x00, 0x00, 0x11, 0x33, 0x35, 0x21, + 0x15, 0x21, 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, + 0x35, 0x21, 0x35, 0x23, 0x35, 0x23, 0x13, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x64, 0x01, + 0x2C, 0xFE, 0xD4, 0xC8, 0x64, 0x64, 0xFE, 0xD4, 0x01, 0x2C, + 0xC8, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, + 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x01, 0xF4, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, 0x00, 0x13, + 0x00, 0x1F, 0x00, 0x00, 0x11, 0x33, 0x35, 0x21, 0x15, 0x21, + 0x15, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x21, 0x35, 0x21, + 0x35, 0x23, 0x35, 0x23, 0x13, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x64, 0x01, 0x2C, 0xFE, + 0xD4, 0xC8, 0x64, 0x64, 0xFE, 0xD4, 0x01, 0x2C, 0xC8, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0xF4, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x2C, 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x0F, + 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x11, 0x23, 0x11, 0x23, 0x11, 0x33, 0x15, 0x23, + 0x37, 0x33, 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0xC8, 0x64, 0x64, 0x01, 0xF4, 0xC8, 0xC8, 0xC8, + 0xFE, 0xD4, 0x01, 0x2C, 0x01, 0x90, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, + 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, + 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, 0x35, 0x33, 0x35, 0x33, + 0x35, 0x21, 0x13, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x35, 0x23, 0x01, 0x90, 0x64, 0xC8, 0x01, 0x2C, + 0xFE, 0x70, 0x64, 0xC8, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x01, 0xF4, 0xC8, 0x64, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x03, 0x20, + 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x11, 0x21, 0x15, 0x23, + 0x15, 0x23, 0x15, 0x21, 0x15, 0x21, 0x35, 0x33, 0x35, 0x33, + 0x35, 0x21, 0x13, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x35, 0x23, 0x01, 0x90, 0x64, 0xC8, 0x01, 0x2C, + 0xFE, 0x70, 0x64, 0xC8, 0xFE, 0xD4, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x01, 0xF4, 0xC8, 0x64, 0x64, 0x64, 0xC8, + 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x01, 0x00, 0x00, 0xFF, 0x38, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x13, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x35, 0x33, + 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x11, 0x23, 0x15, 0x23, + 0x35, 0x33, 0x11, 0x23, 0x64, 0x64, 0xC8, 0xC8, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x01, 0x2C, 0x64, 0x64, 0x64, 0x64, + 0x64, 0xFE, 0xD4, 0x64, 0x64, 0x01, 0x2C, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x01, 0x2C, 0x01, 0x2C, 0x01, 0xF4, + 0x00, 0x0B, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x01, 0x2C, 0x01, 0x90, 0x01, 0xF4, + 0x00, 0x0F, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x15, 0x23, 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x01, 0x90, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x01, 0xF4, 0x01, 0xF4, 0x00, 0x1B, + 0x00, 0x1F, 0x00, 0x00, 0x11, 0x33, 0x35, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, + 0x15, 0x23, 0x35, 0x23, 0x15, 0x23, 0x35, 0x23, 0x35, 0x33, + 0x35, 0x23, 0x17, 0x33, 0x35, 0x23, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0xC8, 0x64, 0x64, 0x01, 0x90, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, 0x64, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, + 0x01, 0xF4, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x11, 0x33, + 0x11, 0x23, 0x15, 0x33, 0x15, 0x23, 0x64, 0x64, 0x64, 0x64, + 0x01, 0xF4, 0xFE, 0xD4, 0x64, 0x64, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x01, 0x2C, 0x01, 0x2C, 0x01, 0xF4, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x00, 0x11, 0x33, 0x15, 0x23, 0x37, 0x33, + 0x15, 0x23, 0x64, 0x64, 0xC8, 0x64, 0x64, 0x01, 0xF4, 0xC8, + 0xC8, 0xC8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x58, 0x00, 0x88, + 0x00, 0x94, 0x00, 0xA8, 0x00, 0xBE, 0x00, 0xDA, 0x00, 0xEE, + 0x00, 0xFE, 0x01, 0x0C, 0x01, 0x18, 0x01, 0x34, 0x01, 0x4E, + 0x01, 0x64, 0x01, 0x80, 0x01, 0x9E, 0x01, 0xB2, 0x01, 0xCC, + 0x01, 0xEA, 0x02, 0x02, 0x02, 0x28, 0x02, 0x46, 0x02, 0x58, + 0x02, 0x6E, 0x02, 0x8A, 0x02, 0x9E, 0x02, 0xBA, 0x02, 0xD4, + 0x02, 0xF0, 0x03, 0x0A, 0x03, 0x2C, 0x03, 0x42, 0x03, 0x5A, + 0x03, 0x70, 0x03, 0x84, 0x03, 0x9E, 0x03, 0xB2, 0x03, 0xC8, + 0x03, 0xE0, 0x04, 0x00, 0x04, 0x10, 0x04, 0x2E, 0x04, 0x48, + 0x04, 0x62, 0x04, 0x7A, 0x04, 0x9A, 0x04, 0xB8, 0x04, 0xD6, + 0x04, 0xE8, 0x04, 0xFE, 0x05, 0x14, 0x05, 0x32, 0x05, 0x4E, + 0x05, 0x64, 0x05, 0x7E, 0x05, 0x8E, 0x05, 0xAA, 0x05, 0xBC, + 0x05, 0xD8, 0x05, 0xE4, 0x05, 0xF4, 0x06, 0x0E, 0x06, 0x30, + 0x06, 0x46, 0x06, 0x5E, 0x06, 0x74, 0x06, 0x88, 0x06, 0xA2, + 0x06, 0xB6, 0x06, 0xCC, 0x06, 0xE4, 0x07, 0x04, 0x07, 0x14, + 0x07, 0x32, 0x07, 0x4C, 0x07, 0x66, 0x07, 0x7E, 0x07, 0x9E, + 0x07, 0xBC, 0x07, 0xDA, 0x07, 0xEC, 0x08, 0x02, 0x08, 0x18, + 0x08, 0x36, 0x08, 0x52, 0x08, 0x68, 0x08, 0x82, 0x08, 0x96, + 0x08, 0xA2, 0x08, 0xB6, 0x08, 0xCE, 0x08, 0xEC, 0x09, 0x06, + 0x09, 0x16, 0x09, 0x30, 0x09, 0x4A, 0x09, 0x62, 0x09, 0x78, + 0x09, 0x94, 0x09, 0xBA, 0x09, 0xE8, 0x0A, 0x08, 0x0A, 0x24, + 0x0A, 0x44, 0x0A, 0x6E, 0x0A, 0x88, 0x0A, 0x9E, 0x0A, 0xBC, + 0x0A, 0xCC, 0x0A, 0xDC, 0x0A, 0xF6, 0x0B, 0x10, 0x0B, 0x1C, + 0x0B, 0x2A, 0x0B, 0x38, 0x0B, 0x5C, 0x0B, 0x7C, 0x0B, 0x98, + 0x0B, 0xB8, 0x0B, 0xE2, 0x0B, 0xFC, 0x0C, 0x12, 0x0C, 0x34, + 0x0C, 0x56, 0x0C, 0x6E, 0x0C, 0x8A, 0x0C, 0x9C, 0x0C, 0xAE, + 0x0C, 0xD2, 0x0C, 0xF4, 0x0D, 0x1A, 0x0D, 0x34, 0x0D, 0x66, + 0x0D, 0x76, 0x0D, 0x82, 0x0D, 0xB4, 0x0D, 0xD6, 0x0D, 0xF0, + 0x0E, 0x0A, 0x0E, 0x20, 0x0E, 0x36, 0x0E, 0x48, 0x0E, 0x66, + 0x0E, 0x7C, 0x0E, 0x88, 0x0E, 0xAA, 0x0E, 0xCC, 0x0E, 0xE6, + 0x0F, 0x18, 0x0F, 0x30, 0x0F, 0x4E, 0x0F, 0x6C, 0x0F, 0x8E, + 0x0F, 0xA8, 0x0F, 0xC4, 0x0F, 0xE6, 0x0F, 0xF6, 0x10, 0x14, + 0x10, 0x2A, 0x10, 0x4E, 0x10, 0x6C, 0x10, 0x86, 0x10, 0xA6, + 0x10, 0xC6, 0x10, 0xDA, 0x10, 0xF8, 0x11, 0x0C, 0x11, 0x26, + 0x11, 0x38, 0x11, 0x50, 0x11, 0x66, 0x11, 0x78, 0x11, 0x90, + 0x11, 0xB4, 0x11, 0xD0, 0x11, 0xE6, 0x11, 0xFA, 0x12, 0x12, + 0x12, 0x2E, 0x12, 0x48, 0x12, 0x68, 0x12, 0x80, 0x12, 0x9C, + 0x12, 0xC0, 0x12, 0xDE, 0x12, 0xF8, 0x13, 0x14, 0x13, 0x36, + 0x13, 0x46, 0x13, 0x64, 0x13, 0x7A, 0x13, 0x9E, 0x13, 0xBC, + 0x13, 0xD6, 0x13, 0xF6, 0x14, 0x16, 0x14, 0x2A, 0x14, 0x48, + 0x14, 0x5C, 0x14, 0x76, 0x14, 0x88, 0x14, 0xA0, 0x14, 0xB6, + 0x14, 0xC8, 0x14, 0xE0, 0x15, 0x04, 0x15, 0x20, 0x15, 0x36, + 0x15, 0x4A, 0x15, 0x62, 0x15, 0x7E, 0x15, 0x98, 0x15, 0xB8, + 0x15, 0xD0, 0x15, 0xEC, 0x16, 0x10, 0x16, 0x2E, 0x16, 0x2E, + 0x16, 0x2E, 0x16, 0x40, 0x16, 0x62, 0x16, 0x7E, 0x16, 0x9E, + 0x16, 0xB0, 0x16, 0xCE, 0x16, 0xEA, 0x17, 0x08, 0x17, 0x18, + 0x17, 0x28, 0x17, 0x3E, 0x17, 0x58, 0x17, 0x90, 0x17, 0xD0, + 0x18, 0x12, 0x18, 0x2C, 0x18, 0x50, 0x18, 0x74, 0x18, 0x9C, + 0x18, 0xC8, 0x18, 0xEE, 0x19, 0x16, 0x19, 0x38, 0x19, 0x56, + 0x19, 0x76, 0x19, 0x96, 0x19, 0xBA, 0x19, 0xDC, 0x19, 0xFC, + 0x1A, 0x1C, 0x1A, 0x40, 0x1A, 0x62, 0x1A, 0x82, 0x1A, 0xAC, + 0x1A, 0xD0, 0x1A, 0xF4, 0x1B, 0x1C, 0x1B, 0x48, 0x1B, 0x6E, + 0x1B, 0x8A, 0x1B, 0xAE, 0x1B, 0xCE, 0x1B, 0xEE, 0x1C, 0x12, + 0x1C, 0x34, 0x1C, 0x54, 0x1C, 0x6E, 0x1C, 0x90, 0x1C, 0xB4, + 0x1C, 0xD8, 0x1D, 0x00, 0x1D, 0x2C, 0x1D, 0x52, 0x1D, 0x7A, + 0x1D, 0x9C, 0x1D, 0xBA, 0x1D, 0xDA, 0x1D, 0xFA, 0x1E, 0x1E, + 0x1E, 0x40, 0x1E, 0x60, 0x1E, 0x80, 0x1E, 0xA4, 0x1E, 0xC6, + 0x1E, 0xE6, 0x1F, 0x10, 0x1F, 0x34, 0x1F, 0x58, 0x1F, 0x80, + 0x1F, 0xAC, 0x1F, 0xD2, 0x1F, 0xEA, 0x20, 0x0E, 0x20, 0x2E, + 0x20, 0x4E, 0x20, 0x72, 0x20, 0x94, 0x20, 0xB4, 0x20, 0xCE, + 0x20, 0xEE, 0x21, 0x0C, 0x21, 0x2A, 0x21, 0x56, 0x21, 0x82, + 0x21, 0xA2, 0x21, 0xCA, 0x21, 0xF2, 0x22, 0x10, 0x22, 0x24, + 0x22, 0x3C, 0x22, 0x66, 0x22, 0x78, 0x22, 0x8A, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x17, 0x01, 0x1A, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x4D, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x10, 0x00, 0x4D, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x07, + 0x00, 0x5D, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x1F, 0x00, 0x64, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x10, 0x00, 0x83, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x0D, 0x00, 0x93, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x0F, 0x00, 0xA0, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x07, + 0x00, 0xAF, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x11, 0x00, 0xB6, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x0C, 0x00, 0x19, 0x00, 0xC7, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0D, 0x00, 0x21, 0x00, 0xE0, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x10, 0x01, 0x01, + 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x00, 0x00, 0x9A, + 0x01, 0x11, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x01, + 0x00, 0x20, 0x01, 0xAB, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x02, 0x00, 0x0E, 0x01, 0xCB, 0x00, 0x03, 0x00, 0x01, + 0x04, 0x09, 0x00, 0x03, 0x00, 0x3E, 0x01, 0xD9, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x04, 0x00, 0x20, 0x02, 0x17, + 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x05, 0x00, 0x1A, + 0x02, 0x37, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x06, + 0x00, 0x1E, 0x02, 0x51, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x08, 0x00, 0x0E, 0x02, 0x6F, 0x00, 0x03, 0x00, 0x01, + 0x04, 0x09, 0x00, 0x09, 0x00, 0x22, 0x02, 0x7D, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x0C, 0x00, 0x32, 0x02, 0x9F, + 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x0D, 0x00, 0x42, + 0x02, 0xD1, 0x43, 0x6F, 0x70, 0x79, 0x72, 0x69, 0x67, 0x68, + 0x74, 0x20, 0x28, 0x63, 0x29, 0x20, 0x32, 0x30, 0x31, 0x33, + 0x20, 0x62, 0x79, 0x20, 0x53, 0x74, 0x79, 0x6C, 0x65, 0x2D, + 0x37, 0x2E, 0x20, 0x41, 0x6C, 0x6C, 0x20, 0x72, 0x69, 0x67, + 0x68, 0x74, 0x73, 0x20, 0x72, 0x65, 0x73, 0x65, 0x72, 0x76, + 0x65, 0x64, 0x2E, 0x20, 0x68, 0x74, 0x74, 0x70, 0x3A, 0x2F, + 0x2F, 0x77, 0x77, 0x77, 0x2E, 0x73, 0x74, 0x79, 0x6C, 0x65, + 0x73, 0x65, 0x76, 0x65, 0x6E, 0x2E, 0x63, 0x6F, 0x6D, 0x53, + 0x6D, 0x61, 0x6C, 0x6C, 0x65, 0x73, 0x74, 0x20, 0x50, 0x69, + 0x78, 0x65, 0x6C, 0x2D, 0x37, 0x52, 0x65, 0x67, 0x75, 0x6C, + 0x61, 0x72, 0x53, 0x74, 0x79, 0x6C, 0x65, 0x2D, 0x37, 0x3A, + 0x20, 0x53, 0x6D, 0x61, 0x6C, 0x6C, 0x65, 0x73, 0x74, 0x20, + 0x50, 0x69, 0x78, 0x65, 0x6C, 0x2D, 0x37, 0x3A, 0x20, 0x32, + 0x30, 0x31, 0x33, 0x53, 0x6D, 0x61, 0x6C, 0x6C, 0x65, 0x73, + 0x74, 0x20, 0x50, 0x69, 0x78, 0x65, 0x6C, 0x2D, 0x37, 0x56, + 0x65, 0x72, 0x73, 0x69, 0x6F, 0x6E, 0x20, 0x31, 0x2E, 0x30, + 0x30, 0x30, 0x53, 0x6D, 0x61, 0x6C, 0x6C, 0x65, 0x73, 0x74, + 0x50, 0x69, 0x78, 0x65, 0x6C, 0x2D, 0x37, 0x53, 0x74, 0x79, + 0x6C, 0x65, 0x2D, 0x37, 0x53, 0x69, 0x7A, 0x65, 0x6E, 0x6B, + 0x6F, 0x20, 0x41, 0x6C, 0x65, 0x78, 0x61, 0x6E, 0x64, 0x65, + 0x72, 0x68, 0x74, 0x74, 0x70, 0x3A, 0x2F, 0x2F, 0x77, 0x77, + 0x77, 0x2E, 0x73, 0x74, 0x79, 0x6C, 0x65, 0x73, 0x65, 0x76, + 0x65, 0x6E, 0x2E, 0x63, 0x6F, 0x6D, 0x46, 0x72, 0x65, 0x65, + 0x77, 0x61, 0x72, 0x65, 0x20, 0x66, 0x6F, 0x72, 0x20, 0x70, + 0x65, 0x72, 0x73, 0x6F, 0x6E, 0x61, 0x6C, 0x20, 0x75, 0x73, + 0x69, 0x6E, 0x67, 0x20, 0x6F, 0x6E, 0x6C, 0x79, 0x2E, 0x53, + 0x6D, 0x61, 0x6C, 0x6C, 0x65, 0x73, 0x74, 0x20, 0x50, 0x69, + 0x78, 0x65, 0x6C, 0x2D, 0x37, 0x00, 0x43, 0x00, 0x6F, 0x00, + 0x70, 0x00, 0x79, 0x00, 0x72, 0x00, 0x69, 0x00, 0x67, 0x00, + 0x68, 0x00, 0x74, 0x00, 0x20, 0x00, 0x28, 0x00, 0x63, 0x00, + 0x29, 0x00, 0x20, 0x00, 0x32, 0x00, 0x30, 0x00, 0x31, 0x00, + 0x33, 0x00, 0x20, 0x00, 0x62, 0x00, 0x79, 0x00, 0x20, 0x00, + 0x53, 0x00, 0x74, 0x00, 0x79, 0x00, 0x6C, 0x00, 0x65, 0x00, + 0x2D, 0x00, 0x37, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x41, 0x00, + 0x6C, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x72, 0x00, 0x69, 0x00, + 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x73, 0x00, 0x20, 0x00, + 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x72, 0x00, + 0x76, 0x00, 0x65, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x20, 0x00, + 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x3A, 0x00, + 0x2F, 0x00, 0x2F, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, 0x00, + 0x2E, 0x00, 0x73, 0x00, 0x74, 0x00, 0x79, 0x00, 0x6C, 0x00, + 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, 0x76, 0x00, 0x65, 0x00, + 0x6E, 0x00, 0x2E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, + 0x53, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, + 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x50, 0x00, + 0x69, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x2D, 0x00, + 0x37, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, 0x00, 0x75, 0x00, + 0x6C, 0x00, 0x61, 0x00, 0x72, 0x00, 0x53, 0x00, 0x74, 0x00, + 0x79, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2D, 0x00, 0x37, 0x00, + 0x3A, 0x00, 0x20, 0x00, 0x53, 0x00, 0x6D, 0x00, 0x61, 0x00, + 0x6C, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, + 0x20, 0x00, 0x50, 0x00, 0x69, 0x00, 0x78, 0x00, 0x65, 0x00, + 0x6C, 0x00, 0x2D, 0x00, 0x37, 0x00, 0x3A, 0x00, 0x20, 0x00, + 0x32, 0x00, 0x30, 0x00, 0x31, 0x00, 0x33, 0x00, 0x53, 0x00, + 0x6D, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x65, 0x00, + 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x50, 0x00, 0x69, 0x00, + 0x78, 0x00, 0x65, 0x00, 0x6C, 0x00, 0x2D, 0x00, 0x37, 0x00, + 0x56, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, + 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, + 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x53, 0x00, 0x6D, 0x00, + 0x61, 0x00, 0x6C, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, + 0x74, 0x00, 0x50, 0x00, 0x69, 0x00, 0x78, 0x00, 0x65, 0x00, + 0x6C, 0x00, 0x2D, 0x00, 0x37, 0x00, 0x53, 0x00, 0x74, 0x00, + 0x79, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2D, 0x00, 0x37, 0x00, + 0x53, 0x00, 0x69, 0x00, 0x7A, 0x00, 0x65, 0x00, 0x6E, 0x00, + 0x6B, 0x00, 0x6F, 0x00, 0x20, 0x00, 0x41, 0x00, 0x6C, 0x00, + 0x65, 0x00, 0x78, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x64, 0x00, + 0x65, 0x00, 0x72, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, + 0x70, 0x00, 0x3A, 0x00, 0x2F, 0x00, 0x2F, 0x00, 0x77, 0x00, + 0x77, 0x00, 0x77, 0x00, 0x2E, 0x00, 0x73, 0x00, 0x74, 0x00, + 0x79, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x73, 0x00, 0x65, 0x00, + 0x76, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x63, 0x00, + 0x6F, 0x00, 0x6D, 0x00, 0x46, 0x00, 0x72, 0x00, 0x65, 0x00, + 0x65, 0x00, 0x77, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, + 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x20, 0x00, + 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x6F, 0x00, + 0x6E, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x75, 0x00, + 0x73, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x20, 0x00, + 0x6F, 0x00, 0x6E, 0x00, 0x6C, 0x00, 0x79, 0x00, 0x2E, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xB5, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x3C, 0x00, 0x00, 0x01, 0x02, + 0x00, 0x02, 0x00, 0x03, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, + 0x00, 0x0A, 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x0D, 0x00, 0x0E, + 0x00, 0x0F, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, + 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x18, + 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, 0x00, 0x1C, 0x00, 0x1D, + 0x00, 0x1E, 0x00, 0x1F, 0x00, 0x20, 0x00, 0x21, 0x00, 0x22, + 0x00, 0x23, 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, + 0x00, 0x28, 0x00, 0x29, 0x00, 0x2A, 0x00, 0x2B, 0x00, 0x2C, + 0x00, 0x2D, 0x00, 0x2E, 0x00, 0x2F, 0x00, 0x30, 0x00, 0x31, + 0x00, 0x32, 0x00, 0x33, 0x00, 0x34, 0x00, 0x35, 0x00, 0x36, + 0x00, 0x37, 0x00, 0x38, 0x00, 0x39, 0x00, 0x3A, 0x00, 0x3B, + 0x00, 0x3C, 0x00, 0x3D, 0x00, 0x3E, 0x00, 0x3F, 0x00, 0x40, + 0x00, 0x41, 0x00, 0x42, 0x00, 0x43, 0x00, 0x44, 0x00, 0x45, + 0x00, 0x46, 0x00, 0x47, 0x00, 0x48, 0x00, 0x49, 0x00, 0x4A, + 0x00, 0x4B, 0x00, 0x4C, 0x00, 0x4D, 0x00, 0x4E, 0x00, 0x4F, + 0x00, 0x50, 0x00, 0x51, 0x00, 0x52, 0x00, 0x53, 0x00, 0x54, + 0x00, 0x55, 0x00, 0x56, 0x00, 0x57, 0x00, 0x58, 0x00, 0x59, + 0x00, 0x5A, 0x00, 0x5B, 0x00, 0x5C, 0x00, 0x5D, 0x00, 0x5E, + 0x00, 0x5F, 0x00, 0x60, 0x00, 0x61, 0x01, 0x03, 0x01, 0x04, + 0x00, 0xC4, 0x01, 0x05, 0x00, 0xC5, 0x00, 0xAB, 0x00, 0x82, + 0x00, 0xC2, 0x01, 0x06, 0x00, 0xC6, 0x01, 0x07, 0x00, 0xBE, + 0x01, 0x08, 0x01, 0x09, 0x01, 0x0A, 0x01, 0x0B, 0x01, 0x0C, + 0x00, 0xB6, 0x00, 0xB7, 0x00, 0xB4, 0x00, 0xB5, 0x00, 0x87, + 0x00, 0xB2, 0x00, 0xB3, 0x00, 0x8C, 0x01, 0x0D, 0x00, 0xBF, + 0x01, 0x0E, 0x01, 0x0F, 0x01, 0x10, 0x01, 0x11, 0x01, 0x12, + 0x01, 0x13, 0x01, 0x14, 0x00, 0xBD, 0x01, 0x15, 0x00, 0xE8, + 0x00, 0x86, 0x01, 0x16, 0x00, 0x8B, 0x01, 0x17, 0x00, 0xA9, + 0x00, 0xA4, 0x01, 0x18, 0x00, 0x8A, 0x01, 0x19, 0x00, 0x83, + 0x00, 0x93, 0x01, 0x1A, 0x01, 0x1B, 0x01, 0x1C, 0x00, 0x97, + 0x00, 0x88, 0x01, 0x1D, 0x01, 0x1E, 0x01, 0x1F, 0x01, 0x20, + 0x00, 0xAA, 0x01, 0x21, 0x01, 0x22, 0x01, 0x23, 0x01, 0x24, + 0x01, 0x25, 0x01, 0x26, 0x01, 0x27, 0x01, 0x28, 0x01, 0x29, + 0x01, 0x2A, 0x01, 0x2B, 0x01, 0x2C, 0x01, 0x2D, 0x01, 0x2E, + 0x01, 0x2F, 0x01, 0x30, 0x01, 0x31, 0x01, 0x32, 0x01, 0x33, + 0x01, 0x34, 0x01, 0x35, 0x01, 0x36, 0x01, 0x37, 0x01, 0x38, + 0x01, 0x39, 0x01, 0x3A, 0x01, 0x3B, 0x01, 0x3C, 0x01, 0x3D, + 0x01, 0x3E, 0x01, 0x3F, 0x01, 0x40, 0x01, 0x41, 0x01, 0x42, + 0x01, 0x43, 0x01, 0x44, 0x01, 0x45, 0x01, 0x46, 0x01, 0x47, + 0x01, 0x48, 0x01, 0x49, 0x01, 0x4A, 0x01, 0x4B, 0x01, 0x4C, + 0x01, 0x4D, 0x01, 0x4E, 0x01, 0x4F, 0x01, 0x50, 0x01, 0x51, + 0x01, 0x52, 0x01, 0x53, 0x01, 0x54, 0x01, 0x55, 0x01, 0x56, + 0x01, 0x57, 0x01, 0x58, 0x01, 0x59, 0x01, 0x5A, 0x01, 0x5B, + 0x01, 0x5C, 0x01, 0x5D, 0x01, 0x5E, 0x01, 0x5F, 0x01, 0x60, + 0x01, 0x61, 0x01, 0x62, 0x01, 0x63, 0x01, 0x64, 0x01, 0x65, + 0x01, 0x66, 0x00, 0xA3, 0x00, 0x84, 0x00, 0x85, 0x00, 0x96, + 0x00, 0x8E, 0x00, 0x9D, 0x00, 0xF2, 0x00, 0xF3, 0x00, 0x8D, + 0x00, 0xDE, 0x00, 0xF1, 0x00, 0x9E, 0x00, 0xF5, 0x00, 0xF4, + 0x00, 0xF6, 0x00, 0xA2, 0x00, 0xAD, 0x00, 0xC9, 0x00, 0xC7, + 0x00, 0xAE, 0x00, 0x62, 0x00, 0x63, 0x00, 0x90, 0x00, 0x64, + 0x00, 0xCB, 0x00, 0x65, 0x00, 0xC8, 0x00, 0xCA, 0x00, 0xCF, + 0x00, 0xCC, 0x00, 0xCD, 0x00, 0xCE, 0x00, 0xE9, 0x00, 0x66, + 0x00, 0xD3, 0x00, 0xD0, 0x00, 0xD1, 0x00, 0xAF, 0x00, 0x67, + 0x00, 0xF0, 0x00, 0x91, 0x00, 0xD6, 0x00, 0xD4, 0x00, 0xD5, + 0x00, 0x68, 0x00, 0xEB, 0x00, 0xED, 0x00, 0x89, 0x00, 0x6A, + 0x00, 0x69, 0x00, 0x6B, 0x00, 0x6D, 0x00, 0x6C, 0x00, 0x6E, + 0x00, 0xA0, 0x00, 0x6F, 0x00, 0x71, 0x00, 0x70, 0x00, 0x72, + 0x00, 0x73, 0x00, 0x75, 0x00, 0x74, 0x00, 0x76, 0x00, 0x77, + 0x00, 0xEA, 0x00, 0x78, 0x00, 0x7A, 0x00, 0x79, 0x00, 0x7B, + 0x00, 0x7D, 0x00, 0x7C, 0x00, 0xB8, 0x00, 0xA1, 0x00, 0x7F, + 0x00, 0x7E, 0x00, 0x80, 0x00, 0x81, 0x00, 0xEC, 0x00, 0xEE, + 0x00, 0xBA, 0x00, 0xB0, 0x00, 0xB1, 0x00, 0xE4, 0x00, 0xE5, + 0x00, 0xBB, 0x00, 0xE6, 0x00, 0xE7, 0x00, 0xA6, 0x00, 0xD8, + 0x00, 0xD9, 0x00, 0x06, 0x00, 0x04, 0x00, 0x05, 0x05, 0x2E, + 0x6E, 0x75, 0x6C, 0x6C, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, + 0x30, 0x30, 0x35, 0x31, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, + 0x30, 0x30, 0x35, 0x32, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, + 0x30, 0x31, 0x30, 0x30, 0x04, 0x45, 0x75, 0x72, 0x6F, 0x09, + 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x35, 0x38, 0x09, + 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x35, 0x39, 0x09, + 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x36, 0x31, 0x09, + 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x36, 0x30, 0x09, + 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, 0x34, 0x35, 0x09, + 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x39, 0x39, 0x09, + 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, 0x30, 0x36, 0x09, + 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, 0x30, 0x37, 0x09, + 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, 0x30, 0x39, 0x09, + 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, 0x30, 0x38, 0x09, + 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, 0x39, 0x33, 0x09, + 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x36, 0x32, 0x09, + 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, 0x31, 0x30, 0x09, + 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x35, 0x37, 0x09, + 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x35, 0x30, 0x09, + 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x32, 0x33, 0x09, + 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, 0x35, 0x33, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x30, 0x41, 0x44, 0x09, 0x61, 0x66, + 0x69, 0x69, 0x31, 0x30, 0x30, 0x35, 0x36, 0x09, 0x61, 0x66, + 0x69, 0x69, 0x31, 0x30, 0x30, 0x35, 0x35, 0x09, 0x61, 0x66, + 0x69, 0x69, 0x31, 0x30, 0x31, 0x30, 0x33, 0x09, 0x61, 0x66, + 0x69, 0x69, 0x31, 0x30, 0x30, 0x39, 0x38, 0x0E, 0x70, 0x65, + 0x72, 0x69, 0x6F, 0x64, 0x63, 0x65, 0x6E, 0x74, 0x65, 0x72, + 0x65, 0x64, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x37, 0x31, 0x09, 0x61, 0x66, 0x69, 0x69, 0x36, 0x31, 0x33, + 0x35, 0x32, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, + 0x30, 0x31, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, + 0x30, 0x35, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x35, 0x34, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, + 0x30, 0x32, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x31, + 0x30, 0x34, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x31, 0x37, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x31, 0x38, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x31, 0x39, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x32, 0x30, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x32, 0x31, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x32, 0x32, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x32, 0x34, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x32, 0x35, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x32, 0x36, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x32, 0x37, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x32, 0x38, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x32, 0x39, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x33, 0x30, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x33, 0x31, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x33, 0x32, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x33, 0x33, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x33, 0x34, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x33, 0x35, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x33, 0x36, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x33, 0x37, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x33, 0x38, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x33, 0x39, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x34, 0x30, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x34, 0x31, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x34, 0x32, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x34, 0x33, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x34, 0x34, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x34, 0x35, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x34, 0x36, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x34, 0x37, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x34, 0x38, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x34, 0x39, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x36, 0x35, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x36, 0x36, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x36, 0x37, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x36, 0x38, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x36, 0x39, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x37, 0x30, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x37, 0x32, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x37, 0x33, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x37, 0x34, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x37, 0x35, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x37, 0x36, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x37, 0x37, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x37, 0x38, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x37, 0x39, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x38, 0x30, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x38, 0x31, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x38, 0x32, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x38, 0x33, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x38, 0x34, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x38, 0x35, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x38, 0x36, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x38, 0x37, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x38, 0x38, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x38, 0x39, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x39, 0x30, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x39, 0x31, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x39, 0x32, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x39, 0x33, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x39, 0x34, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x39, 0x35, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x39, 0x36, 0x09, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x39, 0x37, 0x0D, 0x61, 0x66, 0x69, 0x69, 0x31, 0x30, 0x30, + 0x34, 0x35, 0x2E, 0x30, 0x30, 0x31, 0x0D, 0x61, 0x66, 0x69, + 0x69, 0x31, 0x30, 0x30, 0x34, 0x37, 0x2E, 0x30, 0x30, 0x31, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x00, +}; + +static const unsigned int comboarrow_compressed_size = 1120; +static const unsigned int comboarrow_compressed_data[1120 / 4] = +{ + 0x0000bc57, 0x00000000, 0xd4060000, 0x00000400, 0x00010037, 0x000e0000, 0x00030080, 0x54464660, 0x9401694d, 0x060000ec, 0x281582b8, 0x4544471c, + 0x000f0046, 0x200f821e, 0x2c0f8298, 0x2f534f1e, 0xe3a38432, 0x0100009b, 0x280f8268, 0x616d6356, 0xe8ec4a70, 0x820f822e, 0x5a012d33, 0x20747663, + 0x88022200, 0x48030000, 0x04261f82, 0x70736167, 0x6183ffff, 0x82900621, 0x6708280f, 0x2666796c, 0x8231eaeb, 0x8274201f, 0x68b0280f, 0x11646165, + 0x823db573, 0x223f820b, 0x82683600, 0xeb032310, 0x4f82c503, 0x13822420, 0x6d682428, 0x400b7874, 0x0f822200, 0x0f82c020, 0x6f6c2c28, 0xbc026163, + 0x3f82a402, 0x0f824c20, 0x616d2628, 0x56007078, 0x1f824100, 0x202b6f83, 0x656d616e, 0x527dfd4b, 0x82040000, 0xc2012d3f, 0x74736f70, 0x40b85986, + 0xe8050000, 0xa6202f82, 0x03838983, 0x77c5a12a, 0x3c0f5f3e, 0x040b00f5, 0x00251682, 0xb88ad800, 0x870883cb, 0x40012307, 0x0f82aa02, 0x02000822, + 0x02830582, 0x00000122, 0x00211184, 0x22878303, 0x84400100, 0x87198349, 0x84042003, 0x00122211, 0x24338610, 0x00000002, 0x22138401, 0x822e0040, + 0x2b0d820b, 0xf401c003, 0x08000500, 0xcc029902, 0x8f201182, 0x01260785, 0x013300eb, 0x36820009, 0x05820620, 0x00211782, 0x83de8280, 0x2c038707, + 0x66747432, 0x20004000, 0x00030a20, 0x851482ff, 0x01002189, 0x02820a82, 0x00c00323, 0x84068222, 0x839d8599, 0x2003980d, 0x83198203, 0x861c2003, + 0x0054223f, 0x24098403, 0x0004001c, 0x221b8238, 0x8208000a, 0x0002298a, 0x00420020, 0xff0a20a0, 0x20227083, 0x0b824100, 0xffff002a, 0xc3ffe3ff, + 0x07e066ff, 0x2c823184, 0x01220285, 0x10880006, 0x00020123, 0x06014100, 0x00880020, 0xd08e0120, 0x088a1888, 0x8a050421, 0x200afb0c, 0x227cb706, + 0x82880222, 0x002a213a, 0x40220185, 0x01985800, 0x00002308, 0x00220002, 0x02320100, 0x000300aa, 0xb12e0007, 0x3c2f0001, 0x000407b2, 0x06b132ed, + 0xb23cdc05, 0x0a820203, 0x03b10022, 0x05201683, 0xb2271683, 0xfc010607, 0x8301b23c, 0x11333417, 0x33271121, 0x01222311, 0xccccee10, 0x56fdaa02, + 0x82660222, 0x2b7d824e, 0x00400100, 0x000f00c0, 0x23353300, 0x3b230182, 0x82231504, 0x40802101, 0x2b8e008d, 0x032b2124, 0x01833335, 0x82331521, + 0x00012101, 0x40202c8d, 0x00245683, 0xae000e00, 0x2208e441, 0x86100007, 0x0001240b, 0x8632000c, 0x0002240b, 0x864d0006, 0x0003240b, 0x867e0014, + 0x8204200b, 0x86ad2023, 0x8205200b, 0x86dc2039, 0x0006240b, 0x8207010c, 0x040122ff, 0x20628209, 0x2103820e, 0x0b830003, 0x18000122, 0x0b850182, + 0x3b820220, 0x23863f20, 0x28000324, 0x0b865400, 0x18000424, 0x0b869300, 0x20000524, 0x0b86ba00, 0x17820620, 0x7500ed24, 0x01826e00, 0x6d00612e, + 0x64006500, 0x6e750000, 0x656d616e, 0x70240882, 0x61006800, 0x74221982, 0x1b826f00, 0x05846320, 0x05826220, 0x6870002d, 0x6f746e61, 0x6d6f636d, + 0x82006f62, 0x203683c4, 0x20468269, 0x230c826d, 0x75696465, 0x538d0782, 0x98003a21, 0x206d864b, 0x98538d3a, 0x20268d2e, 0x24b18256, 0x00730072, + 0x20958269, 0x26d7826e, 0x00300030, 0x822e0031, 0x31098305, 0x56000020, 0x69737265, 0x30206e6f, 0x302e3130, 0x11823030, 0x002359a6, 0x84000200, + 0x80ff2300, 0x08823300, 0x03820120, 0x1220028d, 0x26081584, 0x00030002, 0x01250024, 0x01030102, 0x01050104, 0x01070106, 0x01090108, 0x010b010a, + 0x070d010c, 0x30696e75, 0x83304130, 0x30322207, 0x20078730, 0x200f8631, 0x20078632, 0x20078633, 0x20078634, 0x20078635, 0x20078636, 0x20078637, + 0x20078638, 0x20078639, 0x24838241, 0xff010000, 0x22a18aff, 0x8216000e, 0x8204200d, 0x86022003, 0x84bb8715, 0xfec72307, 0x1782dfb0, 0x78c8002c, + 0x0000412b, 0x8ad80000, 0xfa05cbb8, 0x08f7945e, +}; + +static const unsigned int verdana_compressed_size = 183985; +static const unsigned int verdana_compressed_data[183988 / 4] = +{ + 0x0000bc57, 0x00000000, 0x68b60300, 0x00000400, 0x00010025, 0x82150000, 0x00043e04, 0x49534450, 0xe3817847, 0x10030051, 0x1d000058, 0x454447b4, + 0x05260046, 0x2e03007a, 0x2825820c, 0x4f50471e, 0x91a0fb53, 0x080f8202, 0x00002c20, 0x53474473, 0xd77c4255, 0x03003f3c, 0x000070a1, 0x534fa414, + 0x5472322f, 0x00001e7a, 0x2f82d801, 0x44566038, 0xf174584d, 0x00006d7c, 0x00000c18, 0x6d63e005, 0x4afd7061, 0x5b82bc26, 0x00ec2a08, 0x63180800, + 0x59207476, 0x00145f5e, 0x00cc2f00, 0x669c0200, 0x1a6d6770, 0x00f9760c, 0x00042600, 0x67dc0400, 0x00707361, 0x22018229, 0x82441003, 0x67143c4f, + 0x6f66796c, 0x00faee50, 0x00404800, 0x6874af02, 0xe7646165, 0x008e2f75, 0x825c0100, 0x6836211f, 0x0f231082, 0x82260ec3, 0x8294200f, 0x6824280f, + 0x3578746d, 0x82e75e7e, 0x8238205b, 0x6bd43ce4, 0x466e7265, 0x0060501c, 0x00b4f702, 0x6c860d00, 0x0861636f, 0x006cba8c, 0x82683200, 0x6dd8281f, + 0x09707861, 0x82020683, 0x00b82f3f, 0x6d200000, 0x2e617465, 0x005c34ad, 0xa382b603, 0x6e54003d, 0xd5656d61, 0x0081eb87, 0x003c0503, 0x70e80a00, + 0xff74736f, 0x0078004f, 0x83241003, 0x72702b2f, 0x5c767065, 0x00005e92, 0xbf82e02a, 0x0100ec22, 0x052e1582, 0xb54b7b54, 0x0f5f0dcf, 0x1b00f53c, + 0x00830008, 0x447eaa23, 0x2b078329, 0xf04b0ed6, 0x93fd86fb, 0x68082f0c, 0x09220f82, 0x31840200, 0x05830020, 0xfe0b0827, 0x0c000052, 0x221f82ed, + 0x862f0c71, 0x85248217, 0x75052102, 0x05821183, 0x07007926, 0x05006b00, 0x102c3982, 0x5d002f00, 0x91030000, 0x0300ec04, 0x03241d82, 0x90011104, + 0x08241982, 0x33059a05, 0x25205282, 0x03390785, 0x027800a0, 0x020008a7, 0x0304060b, 0x02040405, 0x0600a004, 0x200040ff, 0x2059825b, 0x25038210, + 0x20534d00, 0x10820020, 0x06fdff2f, 0x0059fe1e, 0x010b08ca, 0x010020ae, 0x231b839f, 0xd1055d04, 0x20230782, 0x86080300, 0xd0022492, 0x82020000, + 0x26033f03, 0xac032301, 0x8c06a800, 0x1605c300, 0x9c089b00, 0xd0059500, 0x26027300, 0xa203a400, 0x0382b500, 0x17829320, 0x1f82a720, 0xe902d224, + 0x0f829300, 0x07829920, 0xa203fd24, 0x1782e2ff, 0x16058924, 0x07821601, 0x0382a120, 0x0382a720, 0x03824d20, 0x1785bb20, 0x829a0021, 0x827a2007, + 0x03712403, 0x825a01a2, 0x82e62037, 0x82fe2043, 0x06f53a03, 0x040c018c, 0x08a0005d, 0x05b00000, 0x051a0078, 0x05c8007c, 0x06730096, 0x2807822a, + 0x04c8000f, 0x06c80099, 0x300f8234, 0x03c80003, 0x0389005e, 0x052c00a3, 0x04cd008b, 0x20178274, 0x202382be, 0x240782fc, 0x0473004c, 0x210785d3, + 0x13829005, 0x8600782a, 0x0000ee04, 0xb200db05, 0x072b5383, 0x055c00e9, 0x0444007b, 0x820600ec, 0x827e2007, 0x82ef207f, 0x82462003, 0x82ab2003, + 0x05ba2483, 0x82fcff16, 0x04542cbb, 0x046800ce, 0x04b900fc, 0x8269002b, 0x046c2607, 0x026a00c4, 0x323782d0, 0x056c00fc, 0x02b90010, 0x02af0032, + 0x04c2ffc1, 0x82c100bc, 0x07bb240b, 0x83b900c8, 0xdb042317, 0x37846a00, 0x03212782, 0x243f846a, 0x0027036e, 0x201b823e, 0x202b82b1, 0x2063823d, + 0x20078256, 0x2c03823c, 0x0034043d, 0x0014055d, 0x01a203ad, 0x2007827a, 0x201b82bb, 0x83f784bb, 0x20f782fb, 0x20f38205, 0x20d38505, 0x84bf8370, + 0x82ce2093, 0x83038f97, 0x82c420a3, 0x82038a77, 0x02a02493, 0x82ebff32, 0x82f52003, 0x8805200b, 0x8a9f839b, 0x20178203, 0x2a038cb1, 0x04bb0016, + 0x059a0056, 0x419f0016, 0xac2206af, 0xdb825d04, 0x8900162a, 0xb900f604, 0x9f000008, 0x072b0383, 0x05aa00d0, 0x051d0216, 0x825a0116, 0x07f528b7, + 0x060e00e0, 0x8273004c, 0x82a1201b, 0x41d7200f, 0x012105d3, 0x2443820c, 0x0022056c, 0x230782be, 0x00d10595, 0x9024e383, 0x7100a905, 0x8a200f82, + 0x97205782, 0x79200382, 0x6b222b82, 0xd782a407, 0x5d00db22, 0x71240f82, 0x23012603, 0xd2201382, 0x86240382, 0xdcff1605, 0xf3200782, 0x32243b82, + 0xa6002805, 0xae200382, 0xb2200f82, 0x84072741, 0x008f2673, 0x00da0778, 0x2053826a, 0x307f8299, 0xffac0399, 0x00ac03ed, 0xff260296, 0x002602ed, + 0x2b4b86a0, 0x00bc04ac, 0x00ec043d, 0xffe40206, 0x0024df83, 0xba00a203, 0xc2260382, 0x44000005, 0x03820205, 0x0223fb82, 0x82fd00e9, 0x82f62037, + 0x0cf62443, 0x8495002c, 0x000f2267, 0x820788c8, 0x5e03230b, 0x03828900, 0x03825d20, 0x03827e20, 0x83838920, 0x05230387, 0x87b200db, 0x32022703, + 0x1605bb00, 0x97823601, 0x0782ed20, 0x03821820, 0x16051324, 0x07822102, 0x03822d20, 0x03826120, 0x03825620, 0x03829f20, 0x7e043228, 0x46021800, + 0x67821800, 0x2b048638, 0x7b056e00, 0x34047e00, 0xa2035d00, 0x34067a01, 0xe5040e00, 0xbb836a00, 0xd826c384, 0xfc04c800, 0xd782b900, 0x8c06dc26, + 0x56042301, 0x00250383, 0x005604cf, 0x20ff82cf, 0x200386ab, 0x2077828c, 0x203b823c, 0x202b8273, 0x88a7836c, 0x0096225b, 0x21638273, 0x07860569, + 0x05231f83, 0x83fcff16, 0x242382fb, 0x00ce041a, 0x21078768, 0xfb822a06, 0x6c002e22, 0x0e214782, 0x23fb8205, 0x6a00c404, 0x04230787, 0x82c80074, + 0x84ab20e3, 0x005e2207, 0x210783bb, 0xf382ab03, 0x3382fc20, 0xb9001023, 0x21078605, 0x6f824c06, 0x3782db20, 0xc8009024, 0x17826a03, 0x92200785, + 0x04278f87, 0x030000ee, 0x873e0027, 0xdb052707, 0x1005b200, 0x0788b100, 0x41060b41, 0x04210713, 0x05df4388, 0x438d0621, 0xdd30069b, 0x1a046a00, + 0x0b056d00, 0xf8036a00, 0x52060a00, 0xcf82bf82, 0x01ff0429, 0x005d0423, 0x824f099a, 0xf722082f, 0xe9048900, 0xd805af00, 0xe4020000, 0x7504d500, + 0x9c08d500, 0x96029500, 0xd5040f00, 0xd6029200, 0x03838300, 0xb1200b82, 0x70200782, 0x41080741, 0x03410e2b, 0x410f870f, 0x07900767, 0x0b410320, + 0x03062305, 0xd3822000, 0x5e031328, 0x32022c00, 0x0782f2ff, 0x07825f20, 0x0782fc20, 0x32028024, 0x07820100, 0x07828920, 0xa3038e22, 0xc12a1f82, + 0x8b05c2ff, 0xbc04cd00, 0x0384c100, 0x20056741, 0x074f4105, 0x410f5741, 0x1b200e5f, 0x410f5741, 0x5f41104f, 0x000b2a0b, 0x00e907b1, 0x008c065c, + 0x075f4256, 0x00670223, 0x27ff87b9, 0x0e00e007, 0x6800a407, 0x5d246386, 0x5a01a203, 0x078f2f87, 0x262e3f88, 0x1605edff, 0x1605d0ff, 0xbe058900, + 0x8f42b100, 0x20078207, 0x2403828a, 0x00b00199, 0x05ff4261, 0x82120221, 0x82002007, 0x06072e6b, 0x06000002, 0x040000f6, 0x07000051, 0x200b820c, + 0x26078207, 0x02000043, 0x46cbff32, 0xa02b080b, 0x0f051a00, 0x7b05c800, 0x46067e00, 0x05280603, 0x05cd008b, 0x061a007c, 0x2306ff45, 0x72003105, + 0x1f83ab83, 0x82d30421, 0x0061242b, 0x82ee0476, 0x05ef4557, 0xf706442c, 0x8c06b300, 0x5e036c00, 0xaf847e00, 0x6c00fc3c, 0x6d001a04, 0xb9001005, + 0xa0003202, 0xb1000d05, 0xb900f604, 0x3d00bc04, 0xeb45a903, 0xfe042305, 0x1b828900, 0x1382bb20, 0x0382c120, 0x1e053d22, 0x04291f85, 0x04680006, + 0x056a00db, 0x220f8200, 0x84690010, 0x00b82a3b, 0x00930630, 0x008206b0, 0x20338271, 0x83138405, 0x83578223, 0x25bf8313, 0xffff5706, 0x9b828804, + 0x73009b22, 0x8620db82, 0x89208b82, 0x7e290382, 0x2c00a303, 0x1200f208, 0x23b78208, 0xffff8b06, 0xa383db83, 0x0341cb83, 0x007c2208, 0x223b84c8, + 0x830a00f7, 0xc9072b4b, 0xed042000, 0x01065100, 0x0383c800, 0x05253383, 0x061200e0, 0x200f82be, 0x06274303, 0x04200782, 0x05235382, 0x41730096, + 0x0621070b, 0x24af828d, 0x0644007b, 0x28878217, 0x088e00b2, 0x08c8003e, 0x242f825c, 0x07000044, 0x2013825d, 0x24038272, 0x0861009c, 0x24078246, + 0x042c00a6, 0x28eb82ce, 0x047400ea, 0x03b900c2, 0x32ef82c5, 0x040900f9, 0x066a00c4, 0x04340062, 0x05410032, 0x83b9001f, 0xbc042903, 0xf704c100, + 0x92051d00, 0x19200f82, 0xfb832782, 0xfc200783, 0x46200b82, 0x82059f43, 0x063d2423, 0x826f00ba, 0x053c2207, 0x28178228, 0x078e00d8, 0x07b90002, + 0x2433821a, 0x060a0020, 0x2013825b, 0x24038291, 0x06530060, 0x220782b6, 0x834300cc, 0x1005236b, 0x7b841300, 0x6a00602a, 0x6e002b04, 0xaf003202, + 0x05280382, 0xc2ffc102, 0x1d005007, 0xb9200382, 0xa7412383, 0x22778308, 0x83c80088, 0x00082533, 0x6009cb00, 0x1383cb82, 0x19015626, 0xef005604, + 0xe6200382, 0xb3200382, 0xf3200786, 0xc5210782, 0x21008e00, 0xbb447406, 0x0d062b05, 0x4705b200, 0x0000b100, 0x038244fd, 0x00001724, 0x07827cfc, + 0xdf450920, 0x85032006, 0x25012107, 0x42200782, 0x0f82038a, 0x23860220, 0x178b0120, 0x36200b83, 0x8d0f6b45, 0xe3ff210f, 0x00200f8d, 0xa8089345, + 0x0eaf4517, 0x2412bb44, 0xffc40429, 0x2c1792fc, 0x00c404c8, 0x005e036a, 0x00320289, 0x240786ab, 0x000a06af, 0x30178373, 0x0e008804, 0x1300c503, + 0x2000c907, 0x34006206, 0x06ab4405, 0x06210787, 0x06674103, 0x0600ec24, 0x7347bc04, 0x23078305, 0x44007b05, 0x3c280782, 0x8e00b205, 0x8e00d804, + 0xc8240782, 0xb9001005, 0xc7445787, 0x82138208, 0x05002b17, 0x03990016, 0x04edffac, 0x0b830075, 0x96056624, 0x03837300, 0x00c80733, 0x00fc05b9, + 0x00550934, 0x00e907c8, 0x00ae065c, 0x3c7b8297, 0x00ee0434, 0x00000800, 0x002b0429, 0x00d30405, 0x008c0648, 0x007c05f5, 0x005604c8, 0x0ed641be, + 0x020e0010, 0x07ab4240, 0xff210795, 0x211795e5, 0x4f446a00, 0x07574408, 0xb3470796, 0x077f440f, 0x234a079f, 0x0e7b4308, 0xfc361788, 0x00006c00, + 0x16050bfc, 0x07098a00, 0xab056e00, 0xab05e9ff, 0x03857e02, 0xff2d0b87, 0x000004e9, 0x00340625, 0x00780573, 0x2203821a, 0x8496052e, 0x0486240b, + 0x496e002b, 0x023307a7, 0x02a40032, 0x06c400e9, 0x05c80001, 0x00b9001f, 0x8271fd00, 0x09af3003, 0x08730080, 0x076a0052, 0x067300de, 0x82720082, + 0x06de266b, 0x0473004c, 0x271382ef, 0x051b0007, 0x07140083, 0x17840786, 0x07209382, 0x21068348, 0x47836c05, 0x0686fb23, 0x2e6f8225, 0x083d002c, + 0x075c0073, 0x03560000, 0x83ab0092, 0x21022303, 0x0387b200, 0x0116052d, 0x01a2034c, 0x0042045a, 0x822602c8, 0x2f03828b, 0xa4020306, 0x36021905, + 0x00006801, 0x79006c07, 0xf82bab84, 0x46070a00, 0xf6050000, 0x46040a00, 0x0223060f, 0x45c2ffc1, 0x132006b3, 0x5a200782, 0x20068b4b, 0x27cf8332, + 0x7100a905, 0xb9005604, 0xb5200382, 0xad200382, 0x634b0b85, 0x0a334609, 0xf3201f83, 0xc5200f82, 0xad260382, 0x4400a005, 0x0382c007, 0x4400c534, + 0x4400fa04, 0x88000e05, 0xa0003904, 0x64009804, 0x13828904, 0x3900da22, 0x61327f82, 0x81001205, 0x4d007b04, 0x7500f504, 0x6c000d05, 0x0f82e804, + 0xa400de28, 0x7a00f104, 0x1382e204, 0x50006324, 0x33829704, 0x222e0f85, 0xf8ff5904, 0x8c002a05, 0x9300ea03, 0x17823204, 0x30005824, 0x4b82d404, + 0xa7827520, 0x7400e530, 0x35002f04, 0x6700cf04, 0x73000405, 0x4b827d04, 0x7b006a24, 0xfb825a04, 0xa300c02e, 0x7c00c904, 0x47003504, 0x77006204, + 0x3e260782, 0xa6fff503, 0x3f82ca04, 0xdf829620, 0x7e00d924, 0x07824305, 0x03827a20, 0xb9000732, 0x7f004605, 0xb9001b05, 0x93004003, 0x42005803, + 0xb9228b82, 0x17820604, 0x0382e520, 0xba002127, 0x7f007e05, 0x212f8204, 0x07827f05, 0x3784b720, 0x7a046e3c, 0x0b052f00, 0x9d04ae00, 0xab063000, + 0xa5045c00, 0x64044300, 0xb7042400, 0x67848600, 0x039e6b83, 0x00c30623, 0x2003832e, 0x8f8f8204, 0x83052003, 0x0043226f, 0x20678223, 0x20039bb9, + 0x839f8205, 0x202f821f, 0x83c78423, 0x220387cb, 0x884a001b, 0x004022d7, 0x20df8227, 0x2003824f, 0x24e7846f, 0x068b0040, 0x22ef8243, 0x852d0040, + 0xf6ff210f, 0xb020fb8a, 0x0384ff83, 0xef821420, 0x2e000d22, 0x038c6783, 0x7f007e23, 0x2503a205, 0x80003107, 0x43824a04, 0x038ab720, 0x6e007a22, + 0x038fb382, 0x13822f20, 0x05230388, 0xa3ae000b, 0xab062303, 0x038b5c00, 0x00640423, 0x23038c24, 0x048600b7, 0xff410387, 0xfe032106, 0xdc228b82, + 0x6f823500, 0x1b83b920, 0x001b0523, 0x25cb83b9, 0x93004003, 0x1b82e204, 0x3000c423, 0x06fb4105, 0x00950423, 0x20e78488, 0x2017821d, 0x22038243, + 0x8482009e, 0x2f6782a7, 0x7900be05, 0x4300a504, 0xa500ea05, 0x67007405, 0x6f203f82, 0x67837b84, 0x53827a20, 0x83065342, 0x8317833f, 0x83042023, + 0x82cb201b, 0x00962247, 0x238783b9, 0x3b003905, 0x2f828784, 0x82a80621, 0x00842693, 0x001f0565, 0x210383ba, 0x4382c704, 0x2b002222, 0xa3868b84, + 0x87870520, 0x7e00d922, 0x65228784, 0x87882f00, 0x57824220, 0x8300da28, 0xb900fc06, 0x3b822407, 0x2c008124, 0x13825106, 0x0382ba20, 0x6700e924, + 0x07820507, 0x0600b726, 0x1e008005, 0x04217b83, 0x204384e9, 0x05ff416e, 0x036f002b, 0x07420058, 0x073000b2, 0x223b82a5, 0x831e009c, 0x8304207f, + 0x861e205f, 0x00073aab, 0x00e902b9, 0x010106da, 0x011f0598, 0x00c9073d, 0x008b0540, 0x00a605c8, 0x25078345, 0x6d006206, 0x6382bc04, 0x6100cc22, + 0xcf820783, 0x43844e20, 0x5d00b722, 0x02230783, 0x82d1006a, 0x821f2003, 0x82b52003, 0x82132003, 0x82202003, 0x820e2003, 0x82172003, 0x82102003, + 0x82be2003, 0x05cd2803, 0x03d100eb, 0x8601005b, 0x8323832f, 0x02202437, 0x82c0003f, 0x82942003, 0x02082403, 0x82ffff3f, 0x820b2007, 0x82b82003, + 0x050b2203, 0x201b846e, 0x200b8202, 0x201b82ad, 0x832b86f8, 0x8333831f, 0x030b2403, 0x824d0077, 0x82b72003, 0x86632003, 0x82472003, 0x827a2007, + 0x82492003, 0x82872003, 0x82592003, 0xa7412003, 0x56042b27, 0x32021901, 0x1605af00, 0x03821400, 0xfd05bd26, 0xcb05b400, 0xc0280382, 0xa2054600, + 0xe3053c00, 0xc2240b82, 0x06057800, 0xcf240782, 0x6c06b400, 0xca280782, 0x6b055000, 0x6204be00, 0xbd2c0f82, 0x4406be00, 0x7f056400, 0xab048c00, + 0x9a201782, 0xb6280382, 0x06065000, 0x1606ab00, 0x66282b82, 0x8e058500, 0x7f050000, 0xdf204382, 0x56240f82, 0x47064600, 0xe9245b82, 0x18069600, + 0xdb230f82, 0x8305b200, 0x00782437, 0x82710586, 0x829d200f, 0x82252047, 0x8d2b0853, 0xdc056900, 0x4c063c00, 0x77067300, 0xe501a400, 0xcb01edff, + 0x4e012900, 0xf80173ff, 0x8101fdff, 0x40021300, 0x2504aeff, 0x83073b00, 0x00192caf, 0x001f05b9, 0x0040056c, 0x821d05be, 0x0001240b, 0x8261046c, + 0x8218200b, 0x824b204b, 0x821b2007, 0x250b824f, 0xbe003802, 0xbb82da07, 0x6a00f223, 0x247f8305, 0x04b90010, 0x20bf82da, 0x20138223, 0x820782d2, + 0x38022913, 0x1d0551ff, 0xd603fdff, 0x1f82a782, 0x0077032d, 0x00d0073c, 0x005704b4, 0x82460572, 0x0010284b, 0x002205b1, 0x82c607b4, 0x255382af, + 0x6c00fc04, 0x5782b603, 0x2a240f83, 0xdb041e00, 0xf3205b82, 0x9b32bb82, 0x6601b900, 0xe8025c00, 0x16055a00, 0x350a4600, 0x038bb400, 0x82ed0c21, + 0x0016223f, 0x241b8277, 0x007a065f, 0x2007823c, 0x2a038249, 0x00b4050f, 0x00000046, 0x83010001, 0x0c002f00, 0xff08f800, 0x08000800, 0x0900feff, + 0x05820a00, 0x05840a20, 0x0b000b22, 0x0c220b82, 0x05820c00, 0x0d000d28, 0x0e00fdff, 0x05820e00, 0x0f000f22, 0x10200582, 0x11220584, 0x0b821100, + 0x12001228, 0x1300fcff, 0x05821300, 0x15001422, 0x15200582, 0x16220584, 0x0b821600, 0x17001728, 0x1800fbff, 0x05821800, 0x1a001922, 0x1a220582, + 0x05821b00, 0x05841b20, 0x1c001c28, 0x1d00faff, 0x05821d00, 0x1e001e22, 0x1f220582, 0x05822000, 0x05842020, 0x21002128, 0x2200f9ff, 0x05822200, + 0x23002322, 0x24220582, 0x05822500, 0x26002522, 0x26200582, 0xf82a0582, 0x27002700, 0x2800f8ff, 0x05822800, 0x29002922, 0x2a220582, 0x05822b00, + 0x05822b20, 0x2c00f72a, 0xf7ff2c00, 0x2d002d00, 0x2e220582, 0x05822e00, 0x30002f22, 0x30260582, 0xf6ff3100, 0x05843100, 0x32003222, 0x33220b82, + 0x05823300, 0x34003422, 0x35260582, 0xf5ff3600, 0x05843600, 0x37003722, 0x38220b82, 0x05823800, 0x39003922, 0x3a280582, 0xf4ff3b00, 0x3c003b00, + 0x3c220582, 0x05823d00, 0x05843d20, 0x3e003e22, 0x3f280b82, 0xf3ff3f00, 0x41004000, 0x41200582, 0x42220584, 0x0b824200, 0x43004322, 0x44280582, + 0xf2ff4400, 0x46004500, 0x46220582, 0x05824700, 0x05844720, 0x48004822, 0x49280b82, 0xf1ff4900, 0x4a004a00, 0x4b220582, 0x05824c00, 0x4d004c22, + 0x4d200582, 0x4e280584, 0xf0ff4e00, 0x4f004f00, 0x50220582, 0x05825100, 0x52005122, 0x52200582, 0xef2a0582, 0x53005300, 0x5400efff, 0x05825400, + 0x55005522, 0x56220582, 0x05825700, 0x58005726, 0x5800eeff, 0x59220584, 0x0b825900, 0x5a005a22, 0x5b220582, 0x05825c00, 0x5d005c26, 0x5d00ecff, + 0x5e220584, 0x0b825e00, 0x5f005f22, 0x60220582, 0x05826000, 0x62006126, 0x6200ebff, 0x63220584, 0x0b826300, 0x64006422, 0x65220582, 0x05826500, + 0x67006628, 0x6700eaff, 0x05826800, 0x05846820, 0x69006922, 0x6a220b82, 0x05826a00, 0x6b006b28, 0x6c00e9ff, 0x05826d00, 0x05846d20, 0x6e006e22, + 0x6f220b82, 0x05826f00, 0x70007028, 0x7100e8ff, 0x05827200, 0x05847220, 0x73007322, 0x74220b82, 0x05827400, 0x75007528, 0x7600e7ff, 0x05827600, + 0x78007722, 0x78200582, 0x79220584, 0x0b827900, 0x7a007a28, 0x7b00e6ff, 0x05827b00, 0x7d007c22, 0x7d200582, 0x7e220584, 0x0b827e00, 0x7f007f28, + 0x8000e5ff, 0x05828000, 0x82008122, 0x82220582, 0x05828300, 0x05848320, 0x84008428, 0x8500e4ff, 0x05828500, 0x86008622, 0x87220582, 0x05828800, + 0x05848820, 0x89008928, 0x8a00e3ff, 0x05828a00, 0x8b008b22, 0x8c220582, 0x05828d00, 0x8e008d22, 0x8e200582, 0xe22a0582, 0x8f008f00, 0x9000e2ff, + 0x05829000, 0x91009122, 0x92220582, 0x05829300, 0x05829320, 0x9400e12a, 0xe1ff9400, 0x95009500, 0x96220582, 0x05829600, 0x98009722, 0x98260582, + 0xe0ff9900, 0x05849900, 0x9b009a22, 0x9b200b82, 0x9c220584, 0x0b829c00, 0x9e009d26, 0x9e00dfff, 0x9f220584, 0x0b82a000, 0x0584a020, 0xa100a122, + 0xa2280b82, 0xdeffa300, 0xa400a300, 0xa4200582, 0xa5220584, 0x0b82a600, 0x0584a620, 0xa700a728, 0xa800ddff, 0x0582a900, 0x0584a920, 0xab00aa22, + 0xab200b82, 0xac280584, 0xdcffac00, 0xae00ad00, 0xae220582, 0x0582af00, 0xb000af22, 0xb0200582, 0xb1280584, 0xdbffb100, 0xb200b200, 0xb3220582, + 0x0582b400, 0xb500b422, 0xb5220582, 0x0582b600, 0x0582b620, 0xb700da2a, 0xdaffb700, 0xb900b800, 0xb9220582, 0x0582ba00, 0xbb00ba22, 0xbb200582, + 0xd92a0582, 0xbc00bc00, 0xbd00d9ff, 0x0582bd00, 0xbf00be22, 0xbf220582, 0x0582c000, 0xc100c026, 0xc100d8ff, 0xc2220584, 0x0b82c200, 0xc400c322, + 0xc4220582, 0x0582c500, 0x0582c520, 0xc600d72a, 0xd7ffc600, 0xc700c700, 0xc8220582, 0x0582c800, 0xca00c922, 0xca280582, 0xd6ffcb00, 0xcc00cb00, + 0xcc200582, 0xcd220584, 0x0b82cd00, 0xcf00ce22, 0xcf260582, 0xd5ffd000, 0x0584d000, 0xd100d122, 0xd2220b82, 0x0582d200, 0xd300d322, 0xd4230582, + 0x82ffd500, 0x22058403, 0x82d700d6, 0x84d7200b, 0x00d82205, 0x280b82d8, 0xffda00d9, 0x00da00d3, 0x220582db, 0x82dc00db, 0x84dc2005, 0x00dd2205, + 0x280b82dd, 0xffde00de, 0x00df00d2, 0x200582e0, 0x220584e0, 0x82e200e1, 0x84e2200b, 0x00e32805, 0x00d1ffe3, 0x82e500e4, 0x00e52205, 0x220582e6, + 0x82e700e6, 0x84e72005, 0x00e82805, 0x00d0ffe8, 0x82e900e9, 0x00ea2205, 0x200582eb, 0x220584eb, 0x82ec00ec, 0x00ed280b, 0x00cfffed, 0x82ee00ee, + 0x00ef2205, 0x220582f0, 0x82f100f0, 0x00f12205, 0x200582f2, 0x2a0582f2, 0x00f300ce, 0x00cefff3, 0x82f400f4, 0x00f52205, 0x220582f6, 0x82f700f6, + 0x82f72005, 0x00cd2a05, 0xfff800f8, 0x00f900cd, 0x220582f9, 0x82fb00fa, 0x00fb2805, 0x00ccfffc, 0x82fd00fc, 0x00fd2205, 0x200582fe, 0x220584fe, + 0x82ff00ff, 0x0000250b, 0x00010002, 0x14220083, 0x09830300, 0x001a0126, 0x00060100, 0x07821486, 0x00020225, 0x8d000200, 0x01e60800, 0x04030000, + 0x08070605, 0x0c0b0a09, 0x100f0e0d, 0x14131211, 0x18171615, 0x1c1b1a19, 0x201f1e1d, 0x24232221, 0x28272625, 0x2c2b2a29, 0x302f2e2d, 0x34333231, + 0x38373635, 0x3c3b3a39, 0x403f3e3d, 0x44434241, 0x48474645, 0x4c4b4a49, 0x504f4e4d, 0x54535251, 0x58575655, 0x5c5b5a59, 0x605f5e5d, 0x63620061, + 0x67666564, 0x6b6a6968, 0x6f6e6d6c, 0x73727170, 0x77767574, 0x7b7a7978, 0x7f7e7d7c, 0x83828180, 0x87868584, 0x8b8a8988, 0x8f8e8d8c, 0x93929190, + 0x97969594, 0x009a9998, 0x9f9e9d9c, 0xa3a2a1a0, 0xa7a6a5a4, 0xabaaa9a8, 0xaeadac03, 0xb2b1b0af, 0xb6b5b4b3, 0xbab9b8b7, 0xbebdbcbb, 0x00c1c0bf, + 0xc6c5c4c3, 0xcac9c8c7, 0xcecdcccb, 0xd100d0cf, 0xd5d4d3d2, 0xd900d7d6, 0xdddcdbda, 0x0400dfde, 0xf482fe06, 0x00dce208, 0x00060080, 0x017e005c, + 0x018f017f, 0x01a10192, 0x02ff01b0, 0x0237021b, 0x02c70259, 0x03dd02c9, 0x03060303, 0x030c0309, 0x03260323, 0x03470333, 0x038a037e, 0x03a1038c, + 0x04d603ce, 0x044f040d, 0x0479045f, 0x0487047d, 0x04970493, 0x04a3049d, 0x04b504a9, 0x04d904bf, 0x05f704e9, 0x0556051d, 0x0587055f, 0x0e8f058a, + 0x1e851e3f, 0x1ecb1e9e, 0x20f91ef1, 0x20222015, 0x20302026, 0x203a2034, 0x203e203c, 0x20702044, 0x20892079, 0x20be20b5, 0x210521f0, 0x21162113, + 0x21222120, 0x212e2126, 0x2202225e, 0x220f2206, 0x22152212, 0x221e221a, 0x2248222b, 0x25652261, 0x25022500, 0x2510250c, 0x25182514, 0x25ab25a1, + 0x25cf25ca, 0x2c6a26e6, 0xa7732c6d, 0xfb8ca71f, 0xff17fb04, 0xfffdffe6, 0x22e582ff, 0x84a00020, 0x01a026dd, 0x02fa01af, 0x20dd8418, 0x22dd82c6, + 0x820003d8, 0x030822dd, 0x20dd8a0b, 0x22dd8284, 0x82a3038e, 0x040128dd, 0x0451040e, 0x827c0478, 0x04903cdd, 0x049a0496, 0x04a804a2, 0x04b804ac, + 0x04e804d8, 0x051a05f6, 0x05590531, 0x84890561, 0x828020dd, 0x1ea028dd, 0x20f21ecc, 0x82172012, 0x202f24dd, 0x88392032, 0x207426dd, 0x20a0207f, + 0x20dd90b8, 0x20dd865b, 0x20dd8211, 0x22dd8619, 0x8e642260, 0x8aaa20dd, 0xa7712add, 0xfb88a71b, 0xff13fb00, 0x21dd83e5, 0xdf82e3ff, 0x14fffa32, + 0x9900a600, 0x71018aff, 0x31008501, 0x0ffe0000, 0x00221582, 0x0582b800, 0x28ffb52a, 0x5e009c00, 0xa0fc4b00, 0x17201782, 0x002e1182, 0x0000edff, + 0x0000d8fd, 0x19ff1bff, 0x0b8210ff, 0xf5fdf726, 0xf0fef1fd, 0xfd3b1b83, 0xfeb9fdc7, 0xff84fec4, 0xffe0ffe2, 0xffdeffdf, 0xe377f4da, 0xe304e50b, + 0x8380e4bd, 0x0000231f, 0x078385e0, 0xe084e029, 0xe056e1f9, 0x8354e377, 0x3b03830d, 0x38e0b3e2, 0x23e12be0, 0x6adf5de2, 0x68e079df, 0x96de3ce0, + 0x8bdea2de, 0xa6de0000, 0x74240382, 0x5fde71de, 0x30250782, 0x7dde7ede, 0x080d83de, 0x6bde6e20, 0x96db9edb, 0x73dbeeda, 0x1add5ddb, 0x34d737d7, + 0x255c8d5c, 0x570a0000, 0xb8030000, 0x55820100, 0x0382da20, 0x0227028c, 0x02000088, 0x82920288, 0x8b962005, 0x8c022718, 0x96020000, 0x3982bc02, + 0x0321d182, 0x211b8526, 0x07853c03, 0x03000025, 0x874c033a, 0x2507930b, 0x4c033e03, 0x27825203, 0x68036622, 0x03271f89, 0x036c0362, 0x89aa0380, + 0x21098d11, 0x31829e03, 0x15830382, 0x839a0321, 0x24039d05, 0x00007a03, 0x05474103, 0x0003be0b, 0x008400a3, 0x007c0385, 0x00e60096, 0x008e0086, + 0x009d008b, 0x00a400a9, 0x018a0010, 0x00830000, 0x00f00093, 0x008d00f1, 0x01880097, 0x00dc0001, 0x009e00ef, 0x00f300aa, 0x00f400f2, 0x00ac00a2, + 0x00c600c8, 0x006200ad, 0x00900063, 0x00ca0064, 0x00c70065, 0x00ce00c9, 0x00cc00cb, 0x00e700cd, 0x00d10066, 0x00d000cf, 0x006700ae, 0x009100ee, + 0x00d200d4, 0x006800d3, 0x00eb00e9, 0x006a0089, 0x006b0069, 0x006c006d, 0x00a0006e, 0x0071006f, 0x00720070, 0x00750073, 0x00760074, 0x00e80077, + 0x007a0078, 0x007b0079, 0x007c007d, 0x00a100b7, 0x007e007f, 0x00810080, 0x00ec00ea, 0x014401b9, 0x01020145, 0x01040103, 0x00fb0005, 0x014601fc, + 0x01480147, 0x00fd0049, 0x010601fe, 0x00080107, 0x014a01ff, 0x014c014b, 0x014e014d, 0x0109014f, 0x010b010a, 0x0150010c, 0x00f60051, 0x015201f7, + 0x01540153, 0x01560155, 0x01580157, 0x015a0159, 0x015c015b, 0x015e015d, 0x0160015f, 0x00f80061, 0x013801d5, 0x01620139, 0x01640163, 0x01660165, + 0x010e010d, 0x01680167, 0x0110010f, 0x00120111, 0x01e100e0, 0x01140113, 0x016a0169, 0x01160115, 0x016b013a, 0x016d016c, 0x016f016e, 0x01170170, + 0x00af0018, 0x011901b0, 0x0171011a, 0x011b0172, 0x011d011c, 0x0173011e, 0x00f90074, 0x00e200fa, 0x011f01e3, 0x01210120, 0x01750122, 0x01770176, + 0x01790178, 0x017b017a, 0x0123017c, 0x01250124, 0x017d0126, 0x017f017e, 0x01810180, 0x01ba0082, 0x01280127, 0x002a0129, 0x01e500e4, 0x00d60083, + 0x00d900df, 0x00db00da, 0x00d700de, 0x024c02dd, 0x03bd034d, 0x02bf037b, 0x019d014a, 0x019f019e, 0x01a0018a, 0x01a201a1, 0x01a501a4, 0x01a701a6, + 0x012b01a8, 0x01aa01a9, 0x01ac01ab, 0x01ad012c, 0x01af01ae, 0x01b101b0, 0x01b301b2, 0x01b501b4, 0x01b701b6, 0x012d01b8, 0x01ba01b9, 0x01bc01bb, + 0x01be01bd, 0x01c001bf, 0x01c201c1, 0x01c3012e, 0x012f01c4, 0x01c50130, 0x01c701c6, 0x01c901c8, 0x01cb01ca, 0x01cd01cc, 0x013a02ce, 0x01d001cf, + 0x01320131, 0x013301d1, 0x01d301d2, 0x01d501d4, 0x01d701d6, 0x01d901d8, 0x01db01da, 0x01dd01dc, 0x01df01de, 0x01e101e0, 0x01e301e2, 0x03e501e4, + 0x0228028f, 0x022a0229, 0x022c022b, 0x022e022d, 0x0230022f, 0x02320231, 0x02900333, 0x02350234, 0x02370236, 0x038c028b, 0x02b703b6, 0x02960295, + 0x02980297, 0x039a0299, 0x02b903b8, 0x029c029b, 0x039e029d, 0x039b039a, 0x019d039c, 0x03920191, 0x03750374, 0x03770376, 0x02790378, 0x00b100a5, + 0x013802b2, 0x00b50034, 0x01c300b6, 0x00b30093, 0x02c400b4, 0x008200a6, 0x038700c1, 0x01c500b4, 0x023c013b, 0x023e02a7, 0x02c5033f, 0x03410240, + 0x033601c6, 0x03c803c7, 0x03ca03c9, 0x03cc03cb, 0x03ce03cd, 0x02d003cf, 0x02a902a8, 0x01f500aa, 0x02ab0295, 0x023701ac, 0x02ae02ad, 0x007a03af, + 0x02b002bc, 0x02b202b1, 0x03b402b3, 0x03860385, 0x05880387, 0x05120511, 0x0573056f, 0x05700571, 0x00990074, 0x00c200ed, 0x028f00a5, 0x00d103b5, + 0x03c000bf, 0x00d303d2, 0x40ae0296, 0x5a5b5c1d, 0x54555659, 0x37484d53, 0x2e2f3236, 0x25262c2d, 0x1213141f, 0x050c0d11, 0x202c0204, 0x452503b0, + 0x61234523, 0x45208a68, 0x238a2068, 0x2d446044, 0x58524b2c, 0x211b4445, 0x2c2d5921, 0x2d168220, 0x01b02044, 0xb0452060, 0x18687646, 0x2083458a, + 0x2b12b026, 0x452502b0, 0x6a240383, 0x608b40b0, 0x23280882, 0x21212144, 0x13b02c2d, 0xb8231989, 0x8a8cc0ff, 0x69203d1a, 0xb06140b0, 0xb1208b00, + 0x8c8ac02c, 0x620010b8, 0x640c2b60, 0x5c616423, 0x6103b058, 0xb1216b82, 0x218c8200, 0x0d825468, 0x0a825a82, 0x20686027, 0x232504b0, 0x20048444, + 0x86a9821b, 0x220982a2, 0x82606845, 0x44232105, 0x17943582, 0x16288882, 0x21875843, 0x12b01bc0, 0x45250782, 0xb02b11b0, 0x29498247, 0x1be47a47, + 0x18458a03, 0x0e832069, 0x878a8a27, 0x51a0b020, 0x211d8b58, 0x2382b021, 0x59595923, 0x0c064118, 0x23462408, 0x8a8a6046, 0x46202346, 0x618a608a, + 0x6280ffb8, 0x23102023, 0x4b4bb18a, 0x6045708a, 0x5000b020, 0x8201b058, 0x8bba3017, 0x8c46b01b, 0x6010b059, 0x2d3a0168, 0x8245202c, 0x5246269d, + 0x211b3f58, 0x22aa8211, 0x820c2121, 0xb88b2bef, 0x2d620040, 0x80b0212c, 0x0f855851, 0x6200202c, 0x4000b21b, 0xb0592b2f, 0x19836002, 0x1987c020, + 0x83551521, 0x87802019, 0x223e8819, 0x82212360, 0x431325e2, 0x021b0358, 0x4b2a5882, 0x514b2353, 0x4520585a, 0xb741608a, 0x20118606, 0x05c54138, + 0xb0270d8d, 0x58544302, 0x822b49b0, 0x8221201b, 0xb02b083c, 0x014b0012, 0x2d42544b, 0x0002b12c, 0x0123b142, 0x40b15188, 0x5a538801, 0x0010b958, + 0x54882000, 0x0102b258, 0x42604302, 0x8224b159, 0xb958251b, 0x40000020, 0x02201584, 0x14831583, 0x20202283, 0x49830c83, 0x2f825220, 0x2f840820, + 0x40b91b25, 0x84800000, 0x8404202a, 0x230f8410, 0x0001b863, 0x24851384, 0x01241382, 0x02b86300, 0x10201385, 0xb1212784, 0x22688426, 0x82020040, + 0x85042019, 0x84402019, 0x202d8219, 0x20138204, 0x20138508, 0x202d8580, 0x202d8628, 0x20198208, 0x25198310, 0x010200ba, 0x1c840000, 0x00845920, + 0x0c82b120, 0x4058542f, 0x0840050a, 0x0c400940, 0x1b020d02, 0x82d382b1, 0x201182b7, 0x292b82ba, 0xb3000109, 0x010d010c, 0x5382b11b, 0x1682c182, + 0x8001b827, 0x1b4009b1, 0x252184b2, 0x01090080, 0x7d825940, 0x88800023, 0x86068255, 0x5a552598, 0x000cb358, 0x05843682, 0x42206a82, 0x2d260083, + 0x4302b02c, 0x75415854, 0x211b210b, 0x59390082, 0x18452c2d, 0x514b2368, 0x45202358, 0x40b06420, 0x597c5850, 0x59608a68, 0x20318244, 0x21338382, + 0x058301b0, 0x21585b2c, 0x20b01023, 0x8a1bc91a, 0x3482e510, 0x2b5bb036, 0x8a020c58, 0x04b0534b, 0x5a514b26, 0x1b380a58, 0x5921210a, 0x20205387, + 0x23253985, 0x78235fb0, 0x24e98321, 0x792356b0, 0x25148221, 0x2020b023, 0x7882585c, 0x4700b127, 0x8a8a591c, 0x26018220, 0x0010b823, 0x85585663, + 0x221a8305, 0x821c2c01, 0xb0592349, 0x2b876280, 0x591c1b23, 0x200e8a23, 0x2a3a820c, 0xb86101b0, 0x231cb3ff, 0x882c2d21, 0x877b206d, 0x8272206d, + 0x2076836d, 0x216e878a, 0x6d9463b0, 0xb022bd82, 0x05835b01, 0x82260421, 0x23be8405, 0x230036b1, 0x04217f85, 0x29748626, 0x5a8a5c8a, 0x21232123, + 0x45821db0, 0x0e828787, 0x591c0e22, 0x89824184, 0x89839820, 0x00bb2708, 0x004b0154, 0x404a012a, 0x32f35619, 0x01f256f2, 0x21f156d5, 0xd5f056d5, + 0xf25f1fff, 0x1f02f2ef, 0x01b801f2, 0x1682b228, 0x2701b823, 0x260682b3, 0x0115410f, 0x821f0044, 0x00022603, 0x0043014f, 0x2c058201, 0x015f0042, + 0x01020042, 0x002c0141, 0x281b8239, 0x01340025, 0x01560024, 0x27378324, 0x40011141, 0x2b003f01, 0x3f241782, 0x38003e01, 0x3e240782, 0x2a003c01, + 0x3d200782, 0x4b200782, 0x3c290782, 0x1f483fb2, 0xb21f01b8, 0x220683ee, 0x83edb21e, 0xb21d2a06, 0xb856e101, 0x04b21c01, 0x281b82ff, 0xff05b21b, + 0x011b411f, 0x28ac821a, 0x00560019, 0x003b0110, 0x22038220, 0x82490102, 0x82252074, 0x823a2044, 0x82312007, 0x82392007, 0x82302007, 0x86382007, + 0x0137278c, 0x2d16402c, 0x4682f71f, 0x4382f620, 0xffe5eb28, 0xffd6d91f, 0xe182d81f, 0x01124127, 0x00300136, 0x202d8217, 0x20358635, 0x20358634, + 0x20078633, 0x273d8232, 0xe51f2d13, 0xd756e42a, 0xd628fd82, 0xd51fff02, 0x0b1fff03, 0x4620d582, 0x0922fb82, 0x28823001, 0x2f204083, 0x2e204086, + 0x2d283886, 0x39b22c01, 0x0e418f1f, 0x9f200f82, 0xaf200382, 0x03220382, 0x05820f00, 0x0382bf20, 0x0382cf20, 0x2182df20, 0x7f12042d, 0x402b01b8, + 0x2ae80127, 0x82e356e7, 0xe24008f0, 0x0f56e121, 0x7fe12fe1, 0xbfe19fe1, 0x06e1dfe1, 0xd201d413, 0xff00d356, 0xff01d21f, 0xc0ffb81f, 0x29b21e40, + 0xb2103632, 0xb240b220, 0xb270b250, 0xb2a0b280, 0xb2d0b2b0, 0xc00ab2e0, 0x02b2f0b2, 0x32082283, 0x1817b570, 0x01441f36, 0x561f560f, 0x5f554f02, + 0x546f0255, 0xaf549f01, 0x53510254, 0x53520417, 0x52530416, 0x494a0415, 0x49460452, 0x49470437, 0x82480432, 0x35493803, 0x3f3c0439, 0x3f3d0432, + 0x3f3e043d, 0x3f430421, 0x3f42041d, 0x82410452, 0x82402003, 0x3f290803, 0x32043235, 0x33046433, 0x35043435, 0x34045434, 0xd0041e35, 0xf034e034, + 0xffb80334, 0x25b4b3ee, 0xffb83648, 0x10b4b3e0, 0x2e078223, 0xb40d40ee, 0xb4360f09, 0x7604481a, 0x82b386b3, 0xb3f02296, 0x082184b3, 0xff40fab2, + 0x362409b3, 0x044814b3, 0x04138889, 0x78706c70, 0xdf9c0f02, 0x9d40029e, 0x40361916, 0x361b169c, 0x19179740, 0x17964036, 0x8586361b, 0x840f1f13, + 0x8e0f850f, 0x900f8f0f, 0x8e1f841f, 0x8e2f8f1f, 0x88808580, 0x8590918f, 0x88908790, 0x0982400f, 0x720f3610, 0x4002721f, 0x360c0971, 0x20016d0f, + 0xc72001c8, 0xefc63f01, 0xc52002c6, 0x0002c540, 0x62000162, 0x40026210, 0x0261a061, 0x2d015b0f, 0x2c041114, 0x2b042514, 0x2a043914, 0x29041314, + 0x1f041514, 0x21041e14, 0x20044320, 0xc9043c14, 0x1a04451a, 0x1b04471b, 0x1a043c1a, 0x15043214, 0x13202782, 0x1224ae82, 0x11041a14, 0x703b0382, + 0x14400114, 0x0f364341, 0x001f2a0e, 0xc30d0106, 0xc20c1f4b, 0xc00a1f4b, 0x82091f4b, 0x05570803, 0x041f4bbc, 0x031f4bbd, 0x021f4bb9, 0x011f4bba, + 0x001f4bb6, 0xc31f4bb7, 0xc01f2ac2, 0xbd1f2abf, 0x21bc5640, 0x21b9ba1f, 0x21b6b71f, 0xc4c3c21f, 0xc1c0bf0d, 0xbebdbc0d, 0xbbbab90c, 0xb8b7b60c, + 0x80bc100c, 0xb94002bc, 0x0f02b980, 0x4fb63fb6, 0x04b67fb6, 0x822fb60f, 0x826f200a, 0xbf27080a, 0xffb6cfb6, 0x090a08b6, 0x0d0c0437, 0x02040502, + 0x01020203, 0x05500200, 0xff01b801, 0x4b12b001, 0x42544b00, 0x820113b0, 0x42533907, 0x2b3216b1, 0x5264b04b, 0x8d8d8542, 0x4b96b01d, 0x80b05852, + 0x08b8591d, 0x582a2382, 0x01b001b0, 0x08b0598e, 0x0a86534b, 0x832b0021, 0x74732300, 0x08847373, 0xb02c048e, 0x06b04503, 0xb0616845, 0x73442306, + 0x0e200c83, 0x0e270c83, 0x0eb04423, 0x830fb045, 0x230f2a0b, 0xb0012b44, 0xb0684514, 0x90098214, 0x87732044, 0x732b2100, 0x6a840182, 0x04842384, + 0x8e750021, 0x238b886e, 0x74732b74, 0x5e200c83, 0x73212783, 0x220c855e, 0x85735e01, 0x84358dad, 0x82128928, 0x862b2070, 0x2b2e083d, 0x1e062b18, + 0xf0051406, 0x7c04d105, 0xdd035d04, 0x00001000, 0xe1ffe7ff, 0x64fe78fe, 0x940359fe, 0x00001f00, 0xaa009600, 0xc600b900, 0x0b82ce00, 0xbc220285, + 0x0884c200, 0xb2007626, 0xcb00c000, 0x04870b84, 0x9400812a, 0xcc00a600, 0xef00da00, 0x00271287, 0x009e0098, 0x88b000ab, 0x2008830f, 0x2a158490, + 0x00a900a4, 0x00b300ae, 0x82c300ba, 0x00882214, 0x22158291, 0x82ac00a5, 0x2c02870b, 0x0087006f, 0x009b008f, 0x01d300a0, 0x2314861d, 0x011402c3, + 0xe9368185, 0xd1020c00, 0x8e017301, 0x2c001a00, 0x5c004400, 0x7e007300, 0x97828600, 0x4c01c822, 0x3d201382, 0x50201382, 0x72241582, 0x92007800, + 0xb9221582, 0x4386c800, 0x3d2a068b, 0x5d005600, 0x6e006a00, 0xe982b100, 0x1a84c120, 0x3d002a26, 0x64005400, 0x13831582, 0x002d1284, 0x007a0071, + 0x00a10089, 0x00bb00a7, 0x200b826f, 0x4eaf8287, 0x812813b3, 0x21022102, 0xe5007400, 0xca244d82, 0xc6029501, 0xa730d182, 0x14068500, 0x00000a00, + 0x1f00d105, 0x5d040000, 0x00380583, 0x00e1ff00, 0xff64fe00, 0x030000f5, 0x02f40262, 0x009102a2, 0x006a02af, 0x840c694f, 0x84722037, 0x05ba2437, + 0x85f005d1, 0x8405878c, 0x85b92049, 0x23058b49, 0x59fe64fe, 0xfc276d85, 0xfed9ff65, 0x82affef4, 0xfe1e2429, 0x874ffe88, 0x2107ad39, 0x00870008, + 0x82e9ff21, 0x172a0849, 0x5ffeb900, 0x02ff59fe, 0x7c0078fe, 0x59fc8700, 0xd0fee9ff, 0x88fb40fd, 0x1eff2eff, 0xa200c300, 0xb300a900, 0x86009800, + 0x0b827b00, 0xb000aa22, 0x8f320b82, 0xab009f00, 0x94009a00, 0xa1007800, 0x8c009600, 0x09828200, 0xd300ab34, 0x1d01df00, 0x6a00b900, 0x7300c800, + 0x00008b00, 0x0d82d9ff, 0x6f867f20, 0x07823e20, 0xc834038b, 0x1a010000, 0x42020000, 0xba030000, 0xf8040000, 0xb2060000, 0xe4300382, 0x8c070000, + 0x46080000, 0x26090000, 0x90090000, 0x13820382, 0x00200a25, 0x82580a00, 0x00ae2b03, 0x00e20b00, 0x00e80c00, 0x0f820e00, 0x37820f20, 0x2f821120, + 0x00ec1225, 0x825e1400, 0x00fe2803, 0x00121700, 0x82721800, 0x00be2403, 0x82361900, 0x00c02403, 0x821e1a00, 0x00aa2703, 0x007c1b00, 0x5b821d00, + 0x5a1e2108, 0x4c200000, 0x6a210000, 0xb0220000, 0x86230000, 0x62240000, 0xee250000, 0x44270000, 0x24280000, 0xfa230382, 0x822a0000, 0x822a20b3, + 0x822c206b, 0x822e20a3, 0xec2f2c33, 0x6e310000, 0x2c330000, 0x82340000, 0xa236245f, 0x82370000, 0xce38356b, 0xcc390000, 0x163b0000, 0x463c0000, + 0x9c3d0000, 0x3a3e0000, 0xa6200382, 0xfc240382, 0x803f0000, 0xf0240382, 0x1c400000, 0x5c230382, 0x82420000, 0xac443453, 0x08460000, 0xd6470000, + 0x64490000, 0xb24a0000, 0x824c0000, 0x824e2017, 0x82502017, 0xc851248b, 0x82530000, 0x5428084f, 0x57000038, 0x590000fa, 0x5b0000b4, 0x5d00006c, + 0x5f000040, 0x60000018, 0x62000034, 0x63000066, 0x6500008e, 0x6600003a, 0x6729ab82, 0x690000b6, 0x6a000004, 0x24038206, 0x6b0000a0, 0x2803825e, + 0x6c000094, 0x6d000064, 0x23038222, 0x6e000056, 0x7020b782, 0x7025df82, 0x7000004a, 0x20038270, 0x200382a2, 0x230382d4, 0x710000f8, 0x71209f82, + 0x71215f82, 0x200b8276, 0x2403829a, 0x730000c0, 0x8203824c, 0x82732027, 0xb8732147, 0xe4240b82, 0x0a740000, 0x30200382, 0xf6230382, 0x82750000, + 0x82752023, 0x08762513, 0x2c760000, 0x50200382, 0x7c200382, 0xa0200382, 0xc4200382, 0xd3820382, 0x000c7724, 0xa3827700, 0x00b07724, 0x7b827800, + 0xc7827920, 0x008a7a24, 0x2b827c00, 0x00907c31, 0x00007d00, 0x00867e00, 0x00fa7f00, 0x82468100, 0x30578203, 0x00003882, 0x00008482, 0x00005a83, + 0x00009284, 0x2caf8286, 0x00006287, 0x0000e287, 0x00007e88, 0x24ab8289, 0x0000f289, 0x2c07828b, 0x00001a8c, 0x0000fe8c, 0x0000b48d, 0x242f828e, + 0x0000148f, 0x240f828f, 0x00008090, 0x20238291, 0x244b8294, 0x0000bc95, 0x25478296, 0x0000e096, 0x03822897, 0x0000a22c, 0x0000a098, 0x0000aa99, + 0x0382269a, 0x0000c824, 0x0382689b, 0x9b242782, 0x9c0000e2, 0x9c28cf82, 0x9d00002e, 0x9f00007a, 0x9f21eb82, 0x24078264, 0xa0000090, 0x2003820e, + 0x2403828c, 0xa10000d6, 0x24038224, 0xa200009c, 0x20038226, 0x20038254, 0x82038288, 0x3ea425f3, 0x94a40000, 0xec2c0382, 0x66a60000, 0xcaa70000, + 0x74a80000, 0xa4200382, 0xf0280382, 0x6ea90000, 0x16ab0000, 0x3c200382, 0xd3820382, 0x3782ab20, 0x82b0ab21, 0x2553820b, 0x0000fcab, 0x038222ac, + 0x03825620, 0x03827c20, 0x0382a220, 0x0382c820, 0x0000ee24, 0x038214ad, 0x03823a20, 0x03826020, 0x0000ec24, 0x03824cae, 0x0000da24, 0x03820aaf, + 0x03829620, 0x0000be24, 0x038250b0, 0x0000b823, 0x21e382b1, 0x078292b1, 0x0000f428, 0x0000d4b2, 0x03829eb3, 0xb3249b82, 0xb40000e8, 0xb421c382, + 0x23078232, 0xb5000082, 0xb7204782, 0xb7205782, 0xb7295782, 0xb800005e, 0xba0000ac, 0x20038204, 0x2303823e, 0xbb0000a6, 0xbb252b82, 0xbc0000b2, + 0x820382ae, 0x38bd29bb, 0x90bd0000, 0x70be0000, 0x73820382, 0x82babe21, 0x00e02807, 0x0000c100, 0x8216c300, 0x823c2003, 0x219f8203, 0x078286c3, + 0x0000aa24, 0x03822ac5, 0x03825820, 0xc520e382, 0xc5294382, 0xc70000d2, 0xc9000018, 0x2403821c, 0xca000042, 0x280382cc, 0xcc0000dc, 0xcd000026, + 0x2003829c, 0x240382c2, 0xce0000e6, 0x2303820c, 0xcf000056, 0xcf293f82, 0xd00000fa, 0xd10000bc, 0x20038274, 0x2003829a, 0x240382be, 0xd20000e4, + 0x20038208, 0x82038230, 0x7cd22127, 0xa2200782, 0xc8200382, 0xee240382, 0x14d30000, 0xab820382, 0x0036d424, 0xbf82d500, 0x00d8d524, 0x1382d700, + 0xd382d720, 0x7382d720, 0x00f4d725, 0x821ad800, 0x82402003, 0x82662003, 0x828c2003, 0x00b02b03, 0x0052d900, 0x009eda00, 0x2f82db00, 0x0018dd24, + 0xeb82de00, 0x0b82df20, 0x00e6e028, 0x008ae100, 0x9f82e200, 0x000ae325, 0x8242e300, 0x00da2403, 0x821ae600, 0x20978203, 0x245782e6, 0x000020e8, + 0x244b82e8, 0x0000e4e8, 0x259382ea, 0x00006ceb, 0x0382bceb, 0x0000f024, 0x03823eec, 0x00009424, 0x038246ed, 0x03826a20, 0xed206f82, 0xed206f82, + 0xed254382, 0xee0000fe, 0x20038228, 0x2003824c, 0x2003826e, 0x20038292, 0x240382ba, 0xef0000de, 0x20038200, 0x20038224, 0x2003824e, 0x28038272, + 0xf100009c, 0xf3000044, 0x8203822a, 0x82f32c13, 0x08f50000, 0x88f60000, 0x82f70000, 0xd2f8284f, 0x96f90000, 0x82fa0000, 0x82fb209f, 0xf8fb318f, + 0xe2fc0000, 0xeefd0000, 0x1cfe0000, 0x40ff0000, 0x63820382, 0x009aff2d, 0x00b00001, 0x00ba0101, 0x82aa0201, 0x00d62c03, 0x00020301, 0x00980401, + 0x82240601, 0x82482003, 0x826a2003, 0x828e2003, 0x25278203, 0x0100e806, 0x03823208, 0x03825620, 0x01007e28, 0x01001609, 0x0382420a, 0x03826620, + 0x03828820, 0x0382ac20, 0x0382ce20, 0x0100f22c, 0x0100140b, 0x0100be0c, 0x0382440e, 0x03826820, 0x03828c20, 0x0e244382, 0x0f0100d2, 0x11280b82, + 0x1301005a, 0x140100f8, 0x14206782, 0x14216782, 0x200b8276, 0x820382a0, 0x8214203f, 0x1615253f, 0x3a150100, 0x5e200382, 0x8f820382, 0x82d01521, + 0x00fe2407, 0x822c1601, 0x827c2003, 0x00a82303, 0x4f821701, 0x77821820, 0x00c01825, 0x821a1901, 0x82742003, 0x00cc2303, 0x3b821a01, 0x827e1a21, + 0x251f8207, 0x0100261b, 0x0382521b, 0x0100bc24, 0x0382241c, 0x01009224, 0x0382101d, 0x1e243782, 0x1e010000, 0x1f258382, 0x1f010008, 0x20038218, + 0x8203829c, 0x821f20c3, 0x821f202b, 0xdc1f2147, 0xec230f82, 0x82200100, 0x8e20214b, 0x9e240782, 0x26210100, 0x36240382, 0x46220100, 0x56240382, + 0x7a230100, 0x8a200382, 0x9a200382, 0xaa230382, 0x82250100, 0x9426291f, 0xd2260100, 0x1a270100, 0x44200382, 0x23820382, 0x82a82721, 0x00d82707, + 0x000a2801, 0xc7822901, 0x83822b20, 0x004e2c29, 0x00a42d01, 0x824a2f01, 0x005a3303, 0x00f03001, 0x00ae3101, 0x00f43201, 0x00043301, 0x33823401, + 0x00b8342c, 0x00023601, 0x00343701, 0x67823801, 0x007c3924, 0x1b823b01, 0x00e43c24, 0x27823c01, 0x002c3d24, 0x87823d01, 0x82783d21, 0x829c2007, + 0x00ce2403, 0x821c3f01, 0x004c2403, 0x825c4001, 0x826c2003, 0x21338203, 0x0782ba40, 0x0100ca27, 0x01007042, 0x207b8244, 0x20378245, 0x20378245, + 0x2cb78246, 0x0100b247, 0x0100c247, 0x0100fa48, 0x2c9f8249, 0x0100aa49, 0x0100f64a, 0x0100064b, 0x281b824c, 0x01000e4e, 0x0100584f, 0x201f8250, + 0x253f8252, 0x01006a53, 0x03827a53, 0x53208f82, 0x54203f82, 0x54202f82, 0x54205f82, 0x54295f82, 0x550100da, 0x570100c6, 0x82038200, 0x58240867, + 0x5901004e, 0x5a010048, 0x5b010032, 0x5c01003e, 0x5d010054, 0x5e0100c0, 0x5f0100d4, 0x610100fe, 0x620100a0, 0x63206b82, 0x64256b82, 0x66010088, + 0x82038226, 0x82672047, 0xf4672cdf, 0x66690100, 0xd26a0100, 0x826c0100, 0x906d281f, 0xd66e0100, 0x82700100, 0x9e712557, 0xb6720100, 0x6b820382, + 0x03837320, 0x74251782, 0x750100c4, 0x82038260, 0x827620a3, 0x827720ab, 0x827820cb, 0x8279206f, 0x827a2063, 0x827b20c7, 0x027d2c9b, 0x8e7e0100, + 0x967f0100, 0x82800100, 0x4a822543, 0x92830100, 0xbe240382, 0x7e850100, 0x2b820382, 0x87828620, 0x00988625, 0x82a88601, 0x82b82003, 0x00c82c03, + 0x008c8801, 0x003c8a01, 0x82bc8b01, 0x00f02c03, 0x00048d01, 0x00368e01, 0x82168f01, 0x206b8203, 0x24b78290, 0x01002292, 0x27038393, 0x9401006a, + 0x9501000c, 0x95252382, 0x96010078, 0x24038242, 0x970100aa, 0x240391ae, 0x01003299, 0x2977829a, 0x0100f49b, 0x0100829d, 0x03820e9e, 0x03823a20, + 0x03824c20, 0x03825e20, 0x0100e023, 0x2507829f, 0x01004ea0, 0x038220a1, 0x01009c23, 0x247382a2, 0x0100e6a2, 0x249b82a3, 0x010054a4, 0x289782a5, + 0x0100d4a5, 0x010076a6, 0x25fb82a7, 0x01007aa8, 0x038262a9, 0x03828620, 0x0382b020, 0x0100e424, 0x038210aa, 0xaa212782, 0x20078268, 0x20038294, + 0x820382c0, 0x1cab25c7, 0x40ab0100, 0x6c200382, 0xa6200382, 0x2b820382, 0x0008ac24, 0x9782ac01, 0x8256ac21, 0x82802007, 0x82a42003, 0x82ce2003, + 0x00f22303, 0x2f82ad01, 0x825cad21, 0x20438207, 0x257f82ad, 0x0100dcad, 0x038212ae, 0x03824420, 0xae217b82, 0x20078292, 0x230382c2, 0xaf0100e6, + 0xaf20a782, 0xaf21cb82, 0x820b8266, 0xb6af2117, 0xda240782, 0x1ab00100, 0xcf820382, 0xf782b020, 0x82a2b021, 0x82c6200b, 0x00ea2c03, 0x00f6b101, + 0x00ccb201, 0x822eb301, 0x00902303, 0x5382b501, 0x00a6b624, 0x6782b701, 0x00a4b828, 0x00d6b901, 0x1382bb01, 0x00b4bb25, 0x8224bc01, 0x82342003, + 0x240f8203, 0x010004bd, 0x291b82bd, 0x0100debe, 0x01009abf, 0x03824ac0, 0x0100f823, 0x208f82c1, 0x20bf82c1, 0x284b82c1, 0x0100a0c1, 0x01006ac2, + 0x259382c3, 0x0100aec3, 0x038230c4, 0x03826420, 0x0100e22b, 0x01009cc5, 0x0100b2c6, 0x20b782c8, 0x250f82c9, 0x010010cb, 0x03825acc, 0xce243b82, + 0xcf010088, 0xcf248f82, 0xd00100f4, 0xd2287782, 0xd40100d2, 0xd501000e, 0xd5297b82, 0xd601008e, 0xd70100c8, 0x030010f6, 0xd8255102, 0xd801001a, + 0x2003823e, 0x2003827a, 0x240382a4, 0xd90100dc, 0x8203820e, 0x62d92113, 0x92200782, 0xc4200382, 0xf4240382, 0x26da0100, 0x66200382, 0x9a200382, + 0xc8200382, 0xea240382, 0x1edb0100, 0x48200382, 0x74200382, 0x98200382, 0x2b820382, 0x00f2db25, 0x8216dc01, 0x823a2003, 0x825e2003, 0x82822003, + 0x82ae2003, 0x00d22403, 0x8200dd01, 0x82302003, 0x21478203, 0x078296dd, 0x0382c220, 0x0100e624, 0x03820ade, 0x03822c20, 0x03825020, 0xde214b82, + 0x200782aa, 0x230382d6, 0xdf0100fa, 0xdf217782, 0x82078258, 0x82df2047, 0xd0df2547, 0x6ee10100, 0x80230382, 0x82e20100, 0x02e425b7, 0x2ee40100, + 0x56200382, 0x8a200382, 0xbe200382, 0x83820382, 0x3782e520, 0x00a0e524, 0x3382e601, 0x00c0e724, 0x7382e901, 0x2f82ea20, 0xd382ea20, 0x00aaea25, + 0x82c2ea01, 0x00d82403, 0x8204eb01, 0x82522003, 0x82762003, 0x29c38203, 0x0100e0eb, 0x010028ec, 0x038206ed, 0x0100c627, 0x010050ef, 0x31a382f0, + 0x01004ef1, 0x01007cf2, 0x01007ef3, 0x010062f4, 0x038238f5, 0xf5211b82, 0x20078268, 0x20038278, 0x82038288, 0xa8f5253f, 0x8af60100, 0x9c230382, + 0x82f70100, 0xc4f7241f, 0x82f80100, 0x82f9205b, 0x82f92053, 0xa4f92983, 0xe2f90100, 0x20fa0100, 0x32200382, 0x64200382, 0x74200382, 0xba200382, + 0x67820382, 0x00f6fa24, 0x1b82fb01, 0x824afb21, 0x25038207, 0x01000afc, 0x038266fc, 0x0100c024, 0x038236fd, 0x0382ac20, 0x0100fa24, 0x038248fe, + 0x0382a620, 0x0382b820, 0x0382ca20, 0x0382dc20, 0x0100ee24, 0x038200ff, 0x03821020, 0x03826420, 0x0200ca24, 0x03826800, 0x0200f024, 0x03821001, + 0x03822e20, 0x03824c20, 0x03826a20, 0x03828a20, 0x0382a820, 0x0382c820, 0x0200e624, 0x03820802, 0x03822820, 0x0200f22c, 0x0200d803, 0x0200ae04, + 0x03826e05, 0x06290f82, 0x06020048, 0x070200c6, 0x2303827e, 0x080200ee, 0x09290782, 0x0902002a, 0x0a020076, 0x2c038250, 0x0b0200f6, 0x0c0200e0, + 0x0d02008e, 0x2c038232, 0x0e0200cc, 0x0f02008c, 0x1002001c, 0x23038204, 0x110200fa, 0x11250f82, 0x120200fe, 0x28038252, 0x130200d0, 0x14020092, + 0x82038202, 0x3e152407, 0x82150200, 0x6216258f, 0x0c170200, 0x63820382, 0x00a61825, 0x824a1902, 0x24578203, 0x0200b61a, 0x20b7821b, 0x2927821c, + 0x0200421d, 0x0200d41d, 0x0382501e, 0x0200f824, 0x03827a1f, 0x0200ec24, 0x03827020, 0x0200d624, 0x03827421, 0x0200dc24, 0x03823a22, 0x02009c24, + 0x03820e23, 0x03825220, 0x2428e782, 0x24020028, 0x250200b0, 0x25290782, 0x260200e4, 0x27020078, 0x20038216, 0x2303825c, 0x280200b8, 0x28252b82, + 0x29020090, 0x20038206, 0x20038258, 0x820382b4, 0x822a2027, 0x462a2523, 0x7c2a0200, 0x3f820382, 0x00e22a2c, 0x00942b02, 0x005e2c02, 0x8f822d02, + 0x73822d20, 0x53822e20, 0x005c2e24, 0xe7822e02, 0x00be2e24, 0x5b822f02, 0x82a82f21, 0x00da2307, 0x57823002, 0x821e3021, 0x824e2007, 0x82802003, + 0x82b22003, 0x24438203, 0x02001831, 0x21e38231, 0x07827e31, 0x0200b024, 0x03823432, 0x3320bb82, 0x33200f82, 0x33240f82, 0x340200e0, 0x34218b82, + 0x24078238, 0x350200e2, 0x20038212, 0x20038244, 0x2003827a, 0x820382ac, 0x8236209b, 0x82362043, 0xf6362557, 0x2a370200, 0xc0200382, 0xf4240382, + 0x26380200, 0x50200382, 0x84200382, 0xea230382, 0x82390200, 0x8239203b, 0xec3925a7, 0x1c3a0200, 0x33820382, 0x82783a21, 0x82aa2007, 0x25a38203, + 0x02000c3b, 0x03823c3b, 0x03827220, 0x0382a620, 0x3c201382, 0x3c241382, 0x3c0200c4, 0x3d204f82, 0x3d254f82, 0x3e0200cc, 0x20038254, 0x20038286, + 0x820382ba, 0x143f287f, 0x483f0200, 0x82400200, 0x82402053, 0x76402153, 0xab820b82, 0x17824120, 0x27824120, 0x00ae4129, 0x00de4102, 0x82104202, + 0x82402003, 0x201f8203, 0x20738242, 0x20138242, 0x20138243, 0x256b8243, 0x02006444, 0x03829644, 0x0382c820, 0x0200fa24, 0x03823245, 0x03826620, + 0x45211382, 0x240782c6, 0x460200fc, 0x20038230, 0x20038260, 0x82038294, 0xd6462113, 0xe6240782, 0x2c470200, 0x84200382, 0x17820382, 0x82a44721, + 0x00b42407, 0x825c4802, 0x826c2003, 0x827c2003, 0x82d02003, 0x82e02003, 0x00f02403, 0x825e4902, 0x826e2003, 0x82bc2003, 0x24cb8203, 0x02003e4a, + 0x20b3824a, 0x2517824a, 0x02001e4b, 0x03822e4b, 0x4c241b82, 0x4c020072, 0x4c20a382, 0x4d203782, 0x4d20a382, 0x4d25b782, 0x4d020070, 0x240382a2, + 0x4e0200d2, 0x20038202, 0x20038232, 0x82038242, 0xd84e21b3, 0xe8230782, 0x824f0200, 0x8c4f216f, 0xc2230782, 0x82500200, 0x82512087, 0x825120c3, + 0xfe512967, 0x9a520200, 0x16530200, 0x26200382, 0x36200382, 0x46200382, 0x56200382, 0x23820382, 0x82765321, 0x00862407, 0x82085402, 0x82182003, + 0x82282003, 0x82902003, 0x00fa2303, 0x9b825502, 0x00dc5524, 0xfb825602, 0x00f85624, 0xbf825702, 0x00045824, 0x63825802, 0xbb825920, 0x1b825920, + 0x000c5a25, 0x82ac5a02, 0x20bb8203, 0x206f825a, 0x241f825b, 0x0200145b, 0x2497825b, 0x0200825c, 0x20af825d, 0x21af825d, 0x0b82645d, 0x0200d023, + 0x21eb825e, 0x0782c45e, 0x0200f024, 0x03823a5f, 0x02008027, 0x0200c060, 0x30078261, 0x02003462, 0x02006262, 0x0200ba63, 0x02007e64, 0x20378265, + 0x24838265, 0x0200c666, 0x20938267, 0x20b78268, 0x28af8268, 0x0200a468, 0x0200d668, 0x216b8269, 0x07825c69, 0x6a257b82, 0x6a02003e, 0x24038288, + 0x6b0200e8, 0x2003824a, 0x2303827a, 0x6c0200f6, 0x6c21cf82, 0x20078238, 0x20038248, 0x20038258, 0x20038268, 0x8203829a, 0x3c6d28ab, 0x9e6d0200, + 0x826e0200, 0x826e2047, 0x826e2023, 0x826e20df, 0x426f2897, 0xa86f0200, 0x82700200, 0x8270207f, 0x5270210b, 0x84200b82, 0x94200382, 0x7b820382, + 0x82b47021, 0x82c42007, 0x82d42003, 0x82e42003, 0x00f42303, 0x43827102, 0xf7827120, 0x82247121, 0x21c7820b, 0x07824471, 0x7121f382, 0x20078282, + 0x200382a0, 0x200382be, 0x240382de, 0x720200fc, 0x2003821c, 0x8203823a, 0x7c7221bb, 0xb8200782, 0xc8280382, 0x20730200, 0x10740200, 0x5b820382, + 0x00467528, 0x00ea7502, 0x93827602, 0x00f27625, 0x82a67702, 0x00f82803, 0x00747802, 0x825a7902, 0x00fe2303, 0x5b827a02, 0x00bc7a2d, 0x00627b02, + 0x00807c02, 0x82027d02, 0x00c62b03, 0x00ee7e02, 0x00667f02, 0x43828002, 0x00be8028, 0x00c48102, 0xeb828202, 0xcf828320, 0xef828320, 0x005e842c, + 0x00e88402, 0x00da8502, 0x4b828602, 0x826a8621, 0x20c38207, 0x25c38287, 0x02007087, 0x0382aa88, 0x88204382, 0x89246382, 0x890200ca, 0x8a202782, + 0x8b250382, 0x8b02000c, 0x8203823e, 0x828b2023, 0x1a8c253f, 0xc88c0200, 0x27820382, 0x00cc8d29, 0x00528e02, 0x82128f02, 0x00942403, 0x82289002, + 0x00e02403, 0x822e9102, 0x254f8203, 0x0200a092, 0x03824493, 0x0382b420, 0x94203b82, 0x95259782, 0x96020096, 0x23038216, 0x97020026, 0x23820383, + 0x9f829820, 0x00249928, 0x00909902, 0x1b829a02, 0x82d29a21, 0x00e22707, 0x00929b02, 0xe7829c02, 0x00689d24, 0x17829e02, 0x82269e21, 0x00b02307, + 0x8b829f02, 0x82de9f21, 0x20af8207, 0x257382a0, 0x0200eca0, 0x0382c6a1, 0x0200d628, 0x0200e0a2, 0x03826ea3, 0x0200b624, 0x038206a4, 0x0200c023, + 0x243382a5, 0x0200b8a6, 0x247b82a7, 0x020094a8, 0x24d782a9, 0x0200e2aa, 0x24a382ab, 0x020076ac, 0x20af82ad, 0x2d2f82ae, 0x020074af, 0x00000001, + 0x00060007, 0x06820300, 0x06b71425, 0x83000402, 0xcd2f2403, 0x8300cddd, 0x30312604, 0x11211121, 0x20048225, 0x24258201, 0x000580fa, 0x200783fb, + 0x20088200, 0x203d8200, 0x22048223, 0x84d10503, 0x6122083d, 0x03031840, 0x55070202, 0x090f0805, 0x045d0001, 0x020c0c0c, 0x032b0455, 0xffb8055d, + 0x1010b4dd, 0x08825502, 0x0fb4ec23, 0x2308840f, 0x0d0db4fa, 0xd8230884, 0x840b0bb4, 0x40ec2f08, 0x0209090a, 0x1f050f55, 0x2f050205, 0x00832b5d, + 0xfde42f08, 0x005de42b, 0x2f33ed3f, 0x0130313f, 0x13032303, 0x02333523, 0x1caa1a03, 0x05ccccd6, 0x04c9fbd1, 0xd32ffa37, 0xa8000200, 0x0403d103, + 0x89841406, 0x1540263d, 0x03060602, 0x090f0107, 0x03020940, 0x0040002c, 0x2c040001, 0x33ed2f07, 0x82ed2f5d, 0x333c234e, 0x4e853c2f, 0x52822320, + 0x2b040325, 0x82a82b84, 0x14062503, 0x4302bdfd, 0xd6820383, 0x00c30025, 0x82c90500, 0x1b8108db, 0xb1001f00, 0x21407140, 0x05740956, 0x137b0970, + 0x177b167b, 0x0a081a7b, 0x161d1e09, 0x6701150f, 0x1e150115, 0x13100f0c, 0x07140b14, 0x171c1f08, 0x68011800, 0x1e180118, 0x1a010205, 0x62061906, + 0x70621419, 0x030b010b, 0x19110b11, 0x000d0403, 0x1b1b011b, 0x011a170d, 0xb510041d, 0x05021e13, 0xb50c0409, 0x130f070f, 0x000b0418, 0x03140114, + 0x0b4f0b0f, 0x00080b02, 0x5d3f5d3f, 0x2f391712, 0x230385ed, 0x2f332f01, 0x2f290f84, 0x2fe45d2f, 0x873031e4, 0x220082c0, 0x82715dfd, 0xc0c02305, + 0x0d8b1087, 0x015d012a, 0x15210321, 0x13230321, 0x35230384, 0x82211321, 0x03332303, 0x03821321, 0x1b820520, 0xfec9052d, 0x34015cb3, 0x8168a9fe, + 0x83f2fe68, 0x01d62c04, 0xccfe5c4d, 0x81695701, 0x830e0169, 0xfe2a3004, 0x5eeefe35, 0xa4031201, 0xfe8788fe, 0x83a5015b, 0x01872703, 0xa6018778, + 0x03835afe, 0xfe85b308, 0x00030084, 0x0497fe9b, 0x00280688, 0x0033002c, 0x40bc003a, 0x7e087d8d, 0x76197016, 0x7a2c7020, 0x160e0636, 0x161b2b01, + 0x0d232b12, 0x163c0d35, 0x2b35243c, 0x164a0d43, 0x2b43244c, 0x2053085a, 0x355a3353, 0x2065086b, 0x2b632965, 0x3a64306a, 0x09401d17, 0x381d370b, + 0x1d22112e, 0x1b472622, 0x122d3118, 0x00343727, 0x7f060a03, 0x051e011e, 0x0a47110a, 0x3c0f0605, 0x21023c1f, 0x20340321, 0x0001007f, 0x18182031, + 0x4f093f06, 0x00090209, 0x1e1b2d11, 0x03063726, 0x0630091e, 0x06700640, 0x5d2f0603, 0x3917ed33, 0x125d2f32, 0x2fed2f39, 0x0682ed5d, 0x2f005d27, + 0x2fed3333, 0x3d13822f, 0x33ed3917, 0x39112f33, 0x312b2f39, 0x015d5d30, 0x11070614, 0x26261123, 0x16333527, 0x02821716, 0x26280b83, 0x36343526, + 0x11331137, 0x15210f82, 0x831c8223, 0x16140908, 0x06112516, 0x16141506, 0x27263401, 0x04363611, 0x76c4f288, 0x1055e884, 0x342e6213, 0x44284f8b, + 0xe98ea31d, 0xd46576d1, 0xa34b0e48, 0x1a461e85, 0xd4fda395, 0x026c926b, 0x78847500, 0x9b7c0181, 0x96fe13cd, 0x31016501, 0x350ec627, 0x03211311, + 0x0f08b101, 0x79a52908, 0x0111cc94, 0x02f2fe10, 0x2ec41d2c, 0x51fe0947, 0x20051105, 0x9d01e89c, 0x5b5a6508, 0x5e58fe5c, 0x62fe1957, 0x0500620c, + 0xe3ff9500, 0xed050708, 0x0f000b00, 0x27001b00, 0x9c003300, 0x08097240, 0x18090a06, 0x350f1a06, 0x0a170818, 0x1a171818, 0x0a260829, 0x1a261829, + 0x0f480d46, 0x0d563540, 0x0e680f58, 0x761f7913, 0x762b7925, 0x51250431, 0x034f032f, 0x1f030302, 0x0f020951, 0x2b080e03, 0x40192051, 0x19190219, + 0x0a135131, 0x0e400c4f, 0x2e0e0c02, 0x0116002a, 0x2a281616, 0x0f060e0c, 0x02104010, 0x0f2a1c10, 0x00000100, 0x06102a22, 0x33ed332f, 0x2fed5d2f, + 0x3939125d, 0x2f200985, 0x2405b043, 0x3f3fed5d, 0x3411843f, 0x0130315d, 0x0614015d, 0x35262223, 0x32333634, 0x23012516, 0x2b0f8b01, 0x23263401, + 0x14150622, 0x36323316, 0x03320b8b, 0xb6b2bd74, 0xb5b2beba, 0xfcb302ba, 0x0c03a5f4, 0x0c838502, 0xfa2b1483, 0x666459bb, 0x64665858, 0x88930459, + 0xe0342e09, 0xe0dfdada, 0xfac0dcda, 0xfbd1052f, 0x200982cc, 0x2a1182dd, 0x88acb801, 0x87adad88, 0x8617fe87, 0x00c80808, 0xff730003, 0x051306e1, + 0x000b00f0, 0x00450018, 0x096f40e1, 0x3c0f190f, 0x3015300c, 0x3e2d351d, 0x471a4f3d, 0x79444f1d, 0x256a0b1c, 0x057b3f60, 0x0f7b0876, 0x257a1d76, + 0x3f703e70, 0x06080509, 0x1437062a, 0x141d1608, 0x1537142a, 0x2a0c293f, 0x3037261d, 0x400a3008, 0x490a4008, 0x4f14410c, 0x461d431c, 0x41214c20, + 0x513c412d, 0x5b0d5908, 0x66056925, 0x600f6b08, 0x0c3f1e1d, 0x23201d16, 0xffb80319, 0x123b40c0, 0xaa033717, 0x092c0d19, 0x3523053e, 0x233f1602, + 0x2c081e0a, 0x2f033e0d, 0x06381400, 0x0c3f2f14, 0x1d201345, 0x1a04382f, 0x011e0026, 0x14451e1e, 0x1a011a0d, 0x2615131a, 0xf6104673, 0x5d2f33ed, + 0x112b0383, 0x11391712, 0x2f393912, 0x82ed2fed, 0x3f00240a, 0x823fed3f, 0x2bed2207, 0x8214822f, 0x30312502, 0x5d015d5d, 0x28085641, 0x13363617, + 0x07060601, 0x076f4106, 0x06141532, 0x27230107, 0x22230606, 0x36343524, 0x37363637, 0x2405f142, 0x32333636, 0x821d8316, 0x8201202d, 0x36a40815, + 0x18033526, 0x745c5871, 0x6562834f, 0x1f22fec2, 0x241c1f3e, 0xb75d9dab, 0x3c326b01, 0xe5f67a01, 0xd07ff073, 0x2334edfe, 0x6e356823, 0x32353561, + 0xd6ad61a1, 0x76201d18, 0x0e73015e, 0x0102010e, 0x6d5fa704, 0x744b597b, 0xfd87234f, 0x0fd20100, 0x6e272a31, 0x5bb39245, 0x6060ae02, 0x90fe6df0, + 0xf3718ee0, 0x31865cc5, 0x481f532f, 0x79436f92, 0xaf3c3032, 0x2c6f2c86, 0xfe205a31, 0x34602896, 0x00308a38, 0x03a40001, 0x068201d1, 0x00030014, + 0x020a4015, 0x0f010302, 0x2c000105, 0x5ded2f03, 0x2f333f00, 0x2405d645, 0x882b8201, 0x05ce452b, 0xb5243182, 0x0f0364fe, 0x31083182, 0x40560015, + 0x09010943, 0x19011907, 0x28032807, 0x48014f05, 0x4f054803, 0x5f015f07, 0x6f016f07, 0x78017f07, 0x7f067802, 0x01071207, 0x047a0c01, 0x6f830801, + 0x0c0f002a, 0x55020d0c, 0x09090c0f, 0x1f2c0582, 0x10168804, 0x2b2bedf4, 0x3c5d2f33, 0x3f207182, 0x2f087082, 0x2623015d, 0x12101102, 0x06153337, + 0x02060706, 0x17121415, 0x03171616, 0xc4b1e50f, 0x51e5b1c4, 0x4b3c3f93, 0x9a3c3e49, 0xcb64fe4d, 0x2d01e001, 0xe0310182, 0xbf490acb, 0xd8fe7b7f, + 0xe4feaba4, 0x45c77b80, 0x24a78200, 0x0264fe93, 0x08a784ed, 0x39406a3f, 0x13060306, 0x13150315, 0x03260126, 0x15261326, 0x03400147, 0x15471340, + 0x13500350, 0x13600360, 0x02760079, 0x13700370, 0x12151476, 0x750c0401, 0x3f120100, 0x04040104, 0xf4ffb80b, 0x83b083b4, 0x0f402108, 0x0b2db483, + 0x0f0c001f, 0x0055020f, 0xf6101792, 0x2dbb8f2b, 0x23070210, 0x37363635, 0x34351236, 0xfb442702, 0x02122205, 0x29b882ed, 0x3e3b9b4d, 0x3f3d4a49, + 0xc8825193, 0xfe3c0239, 0xcb20fed3, 0x7bc7450a, 0xab1c0180, 0x7b2801a4, 0x0a49bf7f, 0x8220fecb, 0x02a724b9, 0x82710476, 0x001132b9, 0x4f094090, + 0x40110113, 0x08371009, 0x40c0ffb8, 0x08088258, 0x5b025b2e, 0x540b5405, 0x6b026b0e, 0x640b6405, 0x7b027b0e, 0x730b7305, 0x06010c0e, 0x0e0b0a0f, + 0x02051108, 0x4f060c06, 0x02045004, 0x0c0f0a04, 0x2208cd82, 0x1f130f01, 0x11000213, 0x0110400d, 0x0c070810, 0x0901094f, 0x03020e10, 0x060b0504, + 0x7009280d, 0x450c010c, 0x392b0ad8, 0x39125d2f, 0x3f005d39, 0x82335d33, 0x124f0816, 0x332f3917, 0x3031332f, 0x2b2b015d, 0x2507015d, 0x05132313, + 0x37252527, 0x03330305, 0x04051725, 0x96fe4071, 0xfe058106, 0x7d014197, 0x014183fe, 0x0781066a, 0xfe406b01, 0x6e770384, 0x0198fed5, 0xcf6ed668, + 0x01d56ecf, 0xd499fe67, 0x8200cd6e, 0xd23408df, 0xba051b00, 0x0b00fd04, 0x23403900, 0x0401ac03, 0x0aac0854, 0x0701070f, 0x30010d40, 0x020d400d, + 0x800aab00, 0x2a010101, 0x4007ab05, 0x2f040104, 0xfde43c5d, 0x5d220382, 0x0a84005d, 0x31e43c3d, 0x11210130, 0x35211123, 0x11331121, 0xfdba0521, + 0xdffda6df, 0x02a62102, 0x833c0221, 0x02a02408, 0x82dffd21, 0x93320869, 0x3f028efe, 0x03001d01, 0x26403500, 0x012a011a, 0x0035022b, 0x00450239, + 0x00550248, 0x00640259, 0x03c50074, 0x0302020c, 0x00000456, 0x021a0204, 0xf2820202, 0x10002f25, 0x822f32f4, 0x015d3163, 0x02132301, 0x92e6fe3f, + 0xfd1d01ae, 0x008f0271, 0x99265382, 0x09033102, 0x5382e602, 0x1440203e, 0x020f4201, 0x050f0201, 0x054f004f, 0x055f005f, 0x02000005, 0x5d2f332f, + 0xed5d2f00, 0xa0824082, 0xfd090328, 0x02700290, 0x3b83b531, 0x0482fd20, 0x8f84ec20, 0x02b6203d, 0x00080156, 0xffb8012d, 0x0f0a40e8, 0x2f55020f, + 0x02013f01, 0x2b5d2f01, 0x823f00ed, 0x2321273b, 0xec013311, 0x2d82efef, 0xe2ff0128, 0x5c03d0fe, 0x73821406, 0x2540363f, 0x05000103, 0x25011601, + 0x49003801, 0x56014400, 0x77016701, 0x0a018601, 0x03021201, 0x828d822f, 0x238484a3, 0x5d2f3f00, 0x87248382, 0xc0875ded, 0x012dc882, 0x33fd5c03, + 0x06ca02ad, 0x07bcf814, 0x08a78244, 0xff890035, 0x058f04e1, 0x000b00ef, 0x40b70023, 0x39013622, 0x3b0c340b, 0x34183b12, 0x4901451e, 0x4b0c440b, + 0x44184b12, 0x49150c1e, 0x49210209, 0x410f0a03, 0x82f8ff0d, 0x010b2c2d, 0x005a0040, 0x00fcff0f, 0x860c000c, 0xb6f42c0b, 0x55020c0c, 0xb800210f, + 0x83b4f0ff, 0x280882ce, 0x0b1640f4, 0x0055020b, 0x341a8318, 0x0f259e00, 0x02251f25, 0x0b0b081b, 0xb44001b8, 0x0c041b5a, 0x2408820c, 0x1b5a0a40, + 0x2220830c, 0x8206211b, 0x1340213b, 0x06273c83, 0x02090910, 0x830c0655, 0x9806283e, 0x2bf61024, 0x82ed2b2b, 0x885d2003, 0x3f003e09, 0x31ed3fed, + 0x10015d30, 0x02202102, 0x21121011, 0x36011220, 0x26343536, 0x23262627, 0x06914522, 0x16175e08, 0x36323316, 0xfefb8f04, 0xf7f4fef8, 0x010901fa, + 0xf9fef70c, 0x24191923, 0x5e5f7923, 0x1922247b, 0x79212416, 0x027c5e64, 0xfe6ffee9, 0x017c0189, 0x018d018a, 0xfc7ffe7b, 0x9adb51b5, 0x4d4ee098, + 0x4a4f4e4e, 0xd29c8eee, 0x4e524e53, 0x01010000, 0x04000016, 0x00d6053c, 0xb3cc000f, 0x20ca870d, 0x2108870e, 0xd384100d, 0x0e5ab422, 0x412c0882, + 0x0040010d, 0xff04005a, 0x000d00fc, 0x03200b85, 0x3e080b87, 0x055a3640, 0x0c060646, 0x48030e03, 0x110f0801, 0x0502111f, 0x010f1f02, 0x0e0c0f0f, + 0x020c0c0c, 0x0c0d0e55, 0x0e55060c, 0x033f0220, 0x0370036f, 0x100c0303, 0x03550210, 0x40e0ffb8, 0x820f0f0b, 0x09162209, 0x240f8409, 0x0b1d40f4, + 0x2009820b, 0x2335831e, 0x0d0d0603, 0x10250b82, 0x55060d0d, 0x82828203, 0x2b2f2105, 0x5d360086, 0x2b2bed33, 0x5d2f3239, 0x005d332f, 0x3f32fd3f, + 0x31ed2f33, 0x1d850130, 0x21218b08, 0x21112135, 0x37363235, 0x33373636, 0x3c042111, 0x3601dafc, 0x903fcafe, 0x04352e25, 0x9830019b, 0x1588e603, + 0x414d1914, 0x0100c2fa, 0x0000a100, 0xf0059104, 0x08012000, 0x1f505140, 0x05021f60, 0x16110603, 0x24111503, 0x38053b11, 0x3f0e350d, 0x391e3f1d, + 0x48054b1f, 0x4f0e450d, 0x491e4f1d, 0x5d035f1f, 0x5b055d04, 0x5f115609, 0x5d1b5e19, 0x5f1d5f1c, 0x64036a1e, 0x62116506, 0x701e6f15, 0x7f117402, + 0x7f1c7f1a, 0xe482251e, 0x83b4e821, 0xb80225fd, 0x2140e8ff, 0x002e0983, 0x2d0f100f, 0x301c2f08, 0x060f400f, 0xea83400f, 0xe4820582, 0x0c360582, + 0x404001b8, 0x0f0f5a0f, 0x02134a0b, 0x014a1f02, 0x08021f08, 0xa9420a41, 0x4208200a, 0x402e07a9, 0x21085a16, 0x0f0f0c16, 0x0c165502, 0x05820909, + 0x0b0b0422, 0xb8240582, 0x1940f4ff, 0x16215483, 0x336d8316, 0x9e201616, 0x1f220f22, 0x10100222, 0x10219902, 0x5d2f32f6, 0x2b200483, 0xed2c0083, + 0x39122b2b, 0x32fd3f00, 0x2f33ed3f, 0x5d3d1082, 0x2b2b3031, 0x215d015d, 0x36363521, 0x35363637, 0x22232634, 0x35230706, 0x32333636, 0x06f04704, + 0x0606a408, 0x91042107, 0xd36910fc, 0x998ec05b, 0x65d45b89, 0x6fed470a, 0x2b0401e5, 0x4b69272a, 0x0363e46b, 0xb45ad121, 0x7fdbba59, 0x42408374, + 0xdd3a23d2, 0x429355bd, 0x6949783e, 0x000054c5, 0xffa70001, 0x057c04e1, 0x003d00f0, 0x0b5840f0, 0x1a2f050b, 0x292f150b, 0x292f260b, 0x350b3c3c, + 0x34223114, 0x450b4a2f, 0x43224314, 0x5901562f, 0x550b5905, 0x660b6a2f, 0x783c6a2f, 0x742f760b, 0x1a3c7b35, 0x3a443a34, 0x1e3a3b02, 0x2d011f49, + 0x2d022d11, 0x1f4a292d, 0x0f023109, 0x020d1f0d, 0x4a110d0d, 0x41230a09, 0x23200c33, 0x2d083341, 0x21235a19, 0x0c0c0c37, 0x04375502, 0x05820d0d, + 0x0c0c0628, 0x1e375506, 0x308c162e, 0x30881620, 0x165a212c, 0x1e2e0321, 0x0c04373a, 0x37831a03, 0x3d820320, 0x0355063d, 0x3f0f3fa0, 0x0c023f1f, + 0xe6103e9a, 0x2be6105d, 0x3917112b, 0x2b2bed10, 0x432f2f2f, 0x002805de, 0x2f33ed3f, 0x39123f5d, 0x2f290683, 0x5d3939fd, 0x015d3031, 0x06354916, + 0x4c222321, 0x33210548, 0x06664132, 0x26262725, 0x82352323, 0x09f4430e, 0x21057541, 0x33851716, 0x16157808, 0x300e0416, 0x4b434a3e, 0xf07c79cb, + 0xe6550f4d, 0x2c8e3f6b, 0x2d332d2e, 0x5a4a802d, 0x2eb59846, 0x3e622b29, 0x0a5fd65f, 0x6d6fed47, 0x4a4843a6, 0x7c3077af, 0x822bcd02, 0x3faa6667, + 0x233b4346, 0x2a4a38d1, 0x516a2c29, 0x1f1e6950, 0x7a7fa617, 0x1a1a5136, 0xd13e4414, 0x2c283b23, 0x7c5b8830, 0x080e18b9, 0x00020033, 0x0400004d, + 0x00d105b3, 0x010d000a, 0x4408b358, 0x0920070e, 0x01200887, 0x02200887, 0x08200887, 0x20072944, 0x20088709, 0x20088701, 0x29088702, 0x0d0d0408, + 0xb44001b8, 0x0887095a, 0x08870120, 0x08850220, 0x22402808, 0x140d045a, 0x340d240d, 0x700d440d, 0x180c060d, 0x55060c0c, 0x06480d0c, 0x060c0706, + 0x490d0907, 0xffb80501, 0x831940c0, 0x05053c16, 0x03030703, 0x4f0a3f08, 0x0f0a020a, 0x020f1f0f, 0xb8040c07, 0x0cb4f4ff, 0x8255020c, 0x40f32208, + 0x3426830e, 0x090a2004, 0x064f060d, 0xffb80101, 0x0b0b40e4, 0x0155020b, 0x8222830a, 0x0566500f, 0xee220882, 0x2b833240, 0x0f010132, 0x3f061f06, + 0x26060306, 0x55021010, 0x0f0f0206, 0x18210582, 0x09bc4509, 0x39830c20, 0x96840620, 0x8a440620, 0x335d2106, 0x23080884, 0x3339125d, 0x2b2bed33, + 0x2f5d3939, 0x3f3f005d, 0x2b2f3912, 0x1232fd3c, 0x30313939, 0xfd108701, 0x012bc004, 0x2005b650, 0x0800852b, 0x1123013b, 0x35211123, 0x33113301, + 0x04011121, 0xfdc0ddb3, 0xb8d10237, 0xfd63fedd, 0xfea301bf, 0xe6a3015d, 0x72fc4803, 0x60fda002, 0x00010000, 0x04e1ffbb, 0x00d10585, 0xb3dd002a, + 0x052e4121, 0x225ab422, 0x47080885, 0x0a5a2940, 0x2b081a08, 0x35083d08, 0x4b163d11, 0x5a114408, 0x6a295408, 0x0c087a08, 0x491a1d1d, 0x251f250f, + 0x25032540, 0xb80d0d40, 0x18404001, 0x4a21255a, 0x021e0625, 0x0a1f0a0f, 0x0e0a0a02, 0x200a064a, 0x0c0b0822, 0xb6321c82, 0x4f20225a, 0xb81d011d, + 0x1840ecff, 0x55020b0b, 0xf283161d, 0x0d0e1d23, 0x260b820d, 0x060c0c10, 0x43141d55, 0x14200c29, 0x28082943, 0x21145a18, 0x091d2000, 0x2a328400, + 0x0f2c9f00, 0x022c1f2c, 0x432b9b09, 0x11210520, 0x051f4339, 0x5d23fe83, 0x432f2bed, 0x2f25091f, 0x32fd5d2b, 0x0593492f, 0x06140125, 0x43060607, + 0x9d08141d, 0x11070622, 0x11211521, 0x32333636, 0x16161716, 0x424c8504, 0x7a83c748, 0x520e4ee2, 0x85476adc, 0x352d2c34, 0x5c95342f, 0x033ba358, + 0x2b41fd80, 0xb679215a, 0x0158504c, 0x41be68d9, 0x24334b46, 0x284934d3, 0x4f782b32, 0x26206a4d, 0x020c181f, 0x74feafff, 0x34290404, 0x0200ae37, + 0xe1ff8900, 0xed05a704, 0x37002200, 0x3340c400, 0x0d160d06, 0x31332539, 0x25493733, 0x37433142, 0x0d56015f, 0x21502050, 0x31752165, 0x29031a0e, + 0x13131d49, 0x031d4a17, 0x4935020f, 0x2c1a0a03, 0x7044122f, 0x5ab62a16, 0x12002123, 0xffb80009, 0x094848ee, 0x0b0b0b28, 0x0c005502, 0x05820c0c, + 0xecffb826, 0x0d0d1040, 0x9c270982, 0x1f390f39, 0x432f0239, 0x2f200754, 0x2f055248, 0x212f5ab3, 0xf4ffb809, 0x020f0fb6, 0x38980955, 0x2305a64b, + 0x2be6105d, 0x11200082, 0x08055341, 0x3939122d, 0x3fed3f00, 0x32fd3912, 0x12ed2f2f, 0x5d303139, 0x23001401, 0x26272622, 0x12343502, 0x33243637, + 0x15171632, 0x23262623, 0x41070022, 0x07200740, 0x08145e48, 0xd5fea778, 0x45b46ed9, 0x5d555d56, 0xb9160158, 0x0a29503b, 0xd73b711c, 0x541500ff, + 0x915f6ba3, 0xcb59584c, 0x702e3f37, 0x4d92553d, 0x39410202, 0x913f6b2e, 0xe3e301a6, 0x4344e1fe, 0xc1120153, 0x773201c6, 0x0d0a7f71, 0xfe1b0fbf, + 0x3533e5f3, 0xba3d3523, 0x2d7a5d8d, 0x2a281420, 0x9e1f2916, 0x292c35b7, 0x010000b1, 0x00009a00, 0xd1059504, 0x78000600, 0x03001141, 0x7f49f8ff, + 0x8a022008, 0xff03220b, 0x05a349fb, 0x33402f08, 0x0a01095a, 0x48012402, 0x58024b01, 0x07037902, 0x01000103, 0x03020220, 0x03020000, 0x0203054a, + 0x1f080f08, 0x03027b08, 0x02020003, 0x61820f04, 0x04005808, 0x5d2f332f, 0x122f3912, 0x3f005d39, 0x3911fd3f, 0x0130312f, 0x87ed1087, 0x015d01c0, + 0x012b2b2b, 0x21012301, 0x95042135, 0x02d65efd, 0x03b0fccd, 0xfbf204fb, 0xaf22050e, 0x00030000, 0x04deff7a, 0x00f3059c, 0x00280019, 0xb9680137, + 0xf4ff2600, 0x020f0db4, 0x86b82555, 0x87242008, 0x87232008, 0x82222008, 0x55402108, 0x50082483, 0x15342b2d, 0x27342233, 0x15443334, 0x27442241, + 0x15503345, 0x1b5a195b, 0x22541f5a, 0x2c592b5f, 0x3354315f, 0x08603754, 0x12620e62, 0x23601962, 0x0e762760, 0x2c7b1276, 0x061d1286, 0xa626a902, + 0x1626022f, 0x03042f0a, 0x0210471d, 0x0a034835, 0x0c74431a, 0xfcff1a37, 0x0d000c00, 0x0d404001, 0x00201a5a, 0x13130113, 0x0d0a2f00, 0x20248c29, + 0x08994329, 0x295a1927, 0x26160021, 0x06994320, 0x68429d20, 0x42202005, 0x202b0768, 0xb80d0c04, 0x5ab34001, 0x830d2120, 0x0f0a21c0, 0x0d22e582, + 0x1f87320d, 0x88423220, 0x5ab52e05, 0x97062132, 0xedf61038, 0x2f332b2b, 0x2305822b, 0x2be4105d, 0x8206d643, 0x33112306, 0x1482712f, 0x3f002c08, + 0x12ed3fed, 0x435d3917, 0x1e405854, 0x2c892c59, 0x322c2902, 0x292f3503, 0x4523362f, 0x64235623, 0x06269923, 0x0323201a, 0x83111d26, 0x22048427, + 0x45303159, 0x0122051e, 0x6c500014, 0x26352506, 0x24343526, 0x24067648, 0x03161615, 0x06095234, 0x1616172c, 0x13363617, 0x26272634, 0xab502726, + 0x049c0807, 0xe4d3fe9c, 0x90e1fef2, 0x01737883, 0x01dfd514, 0x8c7a7e0a, 0x80a5ed94, 0x5251a17e, 0x63428b25, 0x76511f4c, 0x5a5d702f, 0x928fba6d, + 0xc19f01af, 0xc3fa00ff, 0x063bc97c, 0xa8729840, 0x65a5d6e0, 0x3c0637c3, 0x6b4f02b0, 0x4866787f, 0x3a122969, 0xfd8e4213, 0x386f5c73, 0x31222616, + 0xb0876aa8, 0x00020096, 0x04e3ff71, 0x00ef058f, 0x00370022, 0x083440b4, 0x29041904, 0x3c253c04, 0x4c2e352b, 0x432b4c25, 0x5f04582e, 0x52185d17, + 0x7b01701b, 0x1d110f25, 0x29144932, 0x1d061449, 0x22066545, 0x44091135, 0x09211b26, 0x05664c1a, 0x020f0f27, 0x0c100055, 0x2005820c, 0x05aa419e, + 0x8a412c20, 0x412c2007, 0x402b058a, 0x212c5a12, 0x0909101a, 0x821a5502, 0x24058211, 0xf6103896, 0x0593412b, 0x2b2be622, 0x2a061644, 0x3f003939, + 0x3f2f32fd, 0x44ed3912, 0x02230815, 0x45040607, 0x1221095e, 0x056c4537, 0x3526262a, 0x32330034, 0x12161716, 0x21081544, 0x0e821415, 0xa0481620, + 0x04830805, 0x5b5a598f, 0x34b9eefe, 0x1d0a245c, 0xfbdd416a, 0x61a45d14, 0x584b955c, 0xd82c0159, 0x5545b86c, 0x3840ca5c, 0x903f6c2f, 0x2d4036a7, + 0xa04e426c, 0x03030146, 0xc2fec342, 0x0b7c7270, 0x1b0fbf0c, 0x38e90901, 0x3d342430, 0x01e483bc, 0x5343431e, 0x9ba4fbfe, 0x272d34bc, 0x785fa3b4, + 0x2a151f2d, 0x00291528, 0x005a0102, 0x04490200, 0x0003005d, 0x40250007, 0x02560116, 0x05560605, 0x2d000708, 0x83000106, 0x01002aed, 0x5d2f0101, + 0x3cfd3c2b, 0x05324d00, 0x11230124, 0x03821133, 0xef490222, 0x03270082, 0xfb1d0140, 0x821d01a3, 0xe6002546, 0x92028efe, 0x21084b86, 0x0a37404c, + 0x1a060a05, 0x2a061a05, 0x35062b05, 0x45063904, 0x55064804, 0x64065904, 0xc5047404, 0x6a840f07, 0x5607062e, 0x3f060608, 0x02044f04, 0x2d000404, + 0xfd216c85, 0x08444f32, 0x31ed3f25, 0x835d0130, 0x01132372, 0x72831323, 0xe6fe4924, 0x7583ae92, 0x4fc0fc21, 0xfe3a0751, 0x80054d00, 0x0600cb04, + 0x73b45f00, 0x002c0105, 0x40e2ffb8, 0x37180a26, 0x04831e03, 0x2f001f3b, 0x0f030200, 0x40000100, 0x08300108, 0x04020840, 0x00000105, 0x01500140, + 0x27da8202, 0x39122f33, 0x005d5d39, 0x5d327382, 0x312b2b2f, 0x58534b30, 0x04050b40, 0x03020354, 0x35825406, 0xfd108722, 0x44080282, 0x0159c005, + 0x3501255d, 0x01011501, 0x7efb8005, 0x72fc8204, 0x024d8e03, 0x01027c01, 0xfe75feb4, 0x02000075, 0x6a01f500, 0xae039705, 0x07000300, 0x20403500, + 0x01065405, 0x020f0654, 0x09400201, 0x40093001, 0x22798309, 0x8240002f, 0x207e8229, 0x207c8401, 0x217d885d, 0xf24f2fed, 0x21112906, 0x97052135, + 0xa2045efb, 0x032a0383, 0xbcfda00e, 0x010000a0, 0xe7820c01, 0xe7848e20, 0x7cb46126, 0x012c0103, 0x2820e783, 0x0520e282, 0x052ae783, 0x012f011f, + 0x010f0502, 0xe7870101, 0x82050321, 0x012f26e7, 0x01400130, 0x2ae99803, 0x05540403, 0x54020605, 0x8a000101, 0x820120e9, 0x350282e9, 0x7efb8e05, + 0x72fc8e03, 0x4e028204, 0x01b4fffd, 0xb48b018b, 0xbf82fffd, 0x45089082, 0xef05ed03, 0x20001c00, 0x47406900, 0x221f220f, 0x35031424, 0x4f024f18, + 0x44054f03, 0x54055c18, 0x69046918, 0x74186410, 0x0c1c7418, 0x01097008, 0x1e1a0609, 0x34121616, 0x1f08021a, 0x20081e55, 0x061f1f2b, 0x17827f1f, + 0x09150f25, 0x82002017, 0x461720aa, 0xed39053d, 0x33ed5d2f, 0x3f00ed2f, 0xfd3f33ed, 0x12112f32, 0x2f5d3939, 0x015d3031, 0x05ab485d, 0x23150723, + 0x112b4d11, 0x01163c08, 0x03333523, 0x383946ed, 0x41b35292, 0x403a3097, 0xc16c7999, 0xd7460a38, 0xfef9d760, 0x04cccc75, 0x3b996273, 0xe12f6439, + 0x58253101, 0x566f342d, 0x23446f71, 0xd12b1bcc, 0x82d3e2fa, 0xb0b008d1, 0x4e071eff, 0x4200ef05, 0xd6004f00, 0x0206a240, 0x050b040f, 0x1b0f090a, + 0x3f0f1c0e, 0x0216400f, 0x051c041f, 0x1c1f1b1f, 0x27142214, 0x411f3f1f, 0x042c0225, 0x1b2f052c, 0x22241c2f, 0x3f2f2720, 0x4047412f, 0x48564844, + 0x05050a1d, 0x6e495927, 0x690d6509, 0x6521681a, 0x663f6627, 0x7b167441, 0x7427701b, 0x0f3b7439, 0x08110512, 0x0e524712, 0x1b154014, 0x04041437, + 0x2d08534d, 0x0e512a2d, 0x1e313d08, 0x023d3151, 0x2d012d0f, 0x12431105, 0x124a142d, 0x0b010b3f, 0x5120510f, 0x14291802, 0x000f370b, 0x007f0020, + 0x24000003, 0x506b3729, 0x33057456, 0xed393912, 0xed5d2f5d, 0x32fd332f, 0x005d2f32, 0x2fed333f, 0x2505fc57, 0x2f33ed2f, 0x05822bcd, 0x3e410e82, + 0x07023e07, 0x06062721, 0x35262223, 0x32331234, 0x33351716, 0x36363311, 0x27023435, 0x22232426, 0x072e5504, 0x32330425, 0x83153736, 0x48242028, + 0x04260acf, 0x01121617, 0x1d582611, 0x07a60809, 0xfe4b514e, 0x884a1b48, 0xf6c9a858, 0x417049ab, 0x2b2af39f, 0xfe58585b, 0xfea0a5fc, 0x6d605ff7, + 0x01635f68, 0xb7569d0a, 0x59a86154, 0x72c2feba, 0x74868073, 0xb53e0174, 0x6a3401c4, 0x8ffd716a, 0x8139643f, 0x437b7492, 0x8b970286, 0x746bfcfe, + 0xe4fe403c, 0x210e01e3, 0xb6fc3021, 0xa459e14b, 0x60600c01, 0x62627467, 0xa59aeffe, 0x6561effe, 0x8e181667, 0x727f0f15, 0xc3420173, 0x753f01b9, + 0x707c8675, 0xfec5fe70, 0x1d060240, 0xa3a6b419, 0x00003ea7, 0x001a0002, 0x055e0500, 0x000700d1, 0xb3dc000a, 0x53510c03, 0x87042006, 0x09402c08, + 0xffb80501, 0x0c0cb4f8, 0x87065506, 0xb8072508, 0x7940f4ff, 0x4a2e1283, 0x02074506, 0x080a0909, 0x01018702, 0x46821401, 0x0a094708, 0x01048703, + 0x05051404, 0x73067c06, 0x34030207, 0x1010400a, 0x400a5502, 0x55020d0d, 0x0a400a30, 0x0a030a70, 0x03060a09, 0x10180501, 0x05550010, 0x010c0f08, + 0x03090706, 0x24000c05, 0x42003900, 0x6a005a00, 0x4a827400, 0x0c6e0022, 0x34081a82, 0x052b050a, 0x054d0536, 0x05650555, 0x0507057b, 0xe6100b64, + 0xf6105d5d, 0x17125d2f, 0x3f005d39, 0x393f3c2b, 0x2b5d2f39, 0x3031ed2b, 0x10875d01, 0xc0c05dfd, 0x220685c0, 0x8201c008, 0x2b6b0817, 0x2b015d00, + 0x0323212b, 0x01230321, 0x01011321, 0x92d35e05, 0xc9927cfd, 0x08011e02, 0xfefbfe7c, 0xfe9f01fa, 0xfcd10561, 0xfddb0278, 0x00030025, 0x050000c8, + 0x00d1052b, 0x00240015, 0x404b0133, 0x150c0512, 0x550c270c, 0x7f155602, 0x11120619, 0xb81e342c, 0x1040c0ff, 0x55020f0f, 0x1d071e1e, 0x2d030834, + 0x16080734, 0x4af8ffbb, 0xb529050d, 0x1215165a, 0xffb80f2c, 0x05d34df4, 0x0c200f25, 0x8255020c, 0x40f2240f, 0x820d0d14, 0x0d262409, 0x8355060d, + 0x24058215, 0x4125070f, 0x070c490a, 0x2520fb82, 0x402e4587, 0x15255a0a, 0x10100c00, 0xb8005502, 0xa04be6ff, 0xb4e82107, 0x11824c83, 0x83b4f221, + 0x2008824b, 0x200882e4, 0x24238306, 0x0c1140e8, 0x2709820c, 0x350f3571, 0x1e023540, 0x230b9847, 0x4001b80d, 0x2c235182, 0x830e0714, 0xb8072851, + 0x0bb4fcff, 0x8255020b, 0x52da2008, 0x072305e6, 0x84090908, 0x84ee200f, 0x20188261, 0x826184ea, 0x84f12008, 0x20088361, 0x256083b6, 0x10346c07, + 0x00862bf6, 0x2b2bfd24, 0x0e875d32, 0x2b2bed25, 0x842f3912, 0x39122819, 0x3f002bed, 0x83ed3fed, 0x39ed2310, 0x4a5b3139, 0x06072705, 0x11212306, + 0x38503221, 0x3401270a, 0x26262726, 0x15822323, 0x36373622, 0x84063a49, 0x080e8324, 0x542b05b5, 0x9bc95447, 0xb901f0fd, 0x524aa2a3, 0x975a6c4a, + 0x24b3feae, 0x63862f28, 0x5d0001ec, 0x272f2f6e, 0x3047367f, 0xc9fe6289, 0xa6820601, 0x01343835, 0x37aa6fca, 0xd1053842, 0x872b2618, 0x2d956a5e, + 0x02cb1f08, 0x174a3604, 0x52fe0d1b, 0x5f1e1e13, 0x6a5a9afd, 0xfd0f1925, 0x27241bd6, 0x01000064, 0xe5ff7300, 0xec054605, 0x98002a00, 0x01054940, + 0x1406090d, 0x091b0116, 0x15251514, 0x14431536, 0x0a58085b, 0x105b0e58, 0x0360285b, 0x02701461, 0x14700f76, 0x1a161613, 0x2a021234, 0x0634262a, + 0x7100160a, 0x012c0f2c, 0x2c1f2c0f, 0x2c3f2c2f, 0x4a052c6f, 0xba4e0bbe, 0x15202305, 0x8e550c0c, 0x080c2206, 0x2c13830c, 0x0c5a1040, 0x020b0b14, + 0x091c0c55, 0x21058209, 0x46412b68, 0x2bed2c05, 0x105d5d2b, 0x3f003cf6, 0x832f33ed, 0x30312503, 0x06255d01, 0x44057a4e, 0x344d0b64, 0x0c815507, + 0x33377508, 0x59374605, 0x568f3d48, 0x62f7fea2, 0x62686c60, 0xa40d015f, 0x0f92ef78, 0x718af27b, 0x4d4547b5, 0xbb464355, 0x6dfa8f68, 0x2a186c0e, + 0x5b1b1317, 0x25015f61, 0x2201b8c2, 0x3a666164, 0x5e67eb49, 0xe54b4d49, 0x47e29d96, 0x6262474a, 0x00020000, 0x050000c8, 0x00d105b2, 0x001d000e, + 0x391540df, 0x69124912, 0x040d6802, 0x03083416, 0x08073417, 0x0f010076, 0x8208fb42, 0x150f29d4, 0x10100a00, 0x06005502, 0x0023dc83, 0x4ee2ffb8, + 0xb420085c, 0x1182e883, 0x42b4ea21, 0xf43306c4, 0x0d0d1440, 0x74005506, 0x2f1f0f1f, 0x601f401f, 0x4a17041f, 0x1722074e, 0xb5420c04, 0x42172006, + 0x1e2045b5, 0x2209b542, 0x422b2bed, 0x5d210ab4, 0x06af4900, 0x14015d23, 0x07a14202, 0x6e4a0420, 0x11232109, 0x0805684a, 0xb1b2056f, 0xcdfb6693, + 0x740188fe, 0x590101da, 0x7acfaa98, 0x8ac65879, 0xd58fbaba, 0x026f6f59, 0xb6fecbe7, 0x05383f5b, 0x5f373fd1, 0xafd6c4fe, 0x273245f0, 0x392a83fb, + 0x0100e847, 0x0000c800, 0xd1059d04, 0xa5000b00, 0x003509b7, 0x02061006, 0xc0ffb806, 0x0f0f1f40, 0x06065502, 0x02350501, 0x01350a03, 0x08000408, + 0x73000801, 0x010d0f0d, 0x08d45206, 0x0a410920, 0x14092808, 0x10100e01, 0x43015502, 0x088207c0, 0x2306c043, 0x09090801, 0xc0431884, 0x43188205, + 0x088205c0, 0x0db4e924, 0x3383060d, 0x0cb6e923, 0x2108820c, 0xc0430c6c, 0x5d3c2110, 0x2c05b54a, 0x2b2f3912, 0x3031ed71, 0x21112121, 0x29038615, + 0x2bfc9d04, 0xf1fcd503, 0x03830f03, 0xb0d10528, 0xfdb068fe, 0xd58600d7, 0xd5827f20, 0xb0000923, 0x83c182b2, 0x831520d0, 0x020235d0, 0x08350107, + 0x00080703, 0x020b4f03, 0xb8000303, 0x0f40d4ff, 0x00278483, 0x0b0f0b64, 0x41050201, 0x052007e5, 0x1023da86, 0x8301055a, 0x4105209b, 0xe02034eb, + 0x0723e084, 0x84ecffb8, 0x6c0722e0, 0x2ae08c0a, 0x105d322b, 0x2f322bf4, 0x443f005d, 0x31220690, 0xdc850130, 0x21112334, 0x0ffd7f04, 0x79fd8702, + 0x05b703c6, 0xb05cfe21, 0xd18233fd, 0x00014f08, 0x05e3ff73, 0x00ec05a2, 0x400e0124, 0x0901073b, 0x1d0e0606, 0x210e1306, 0x490e350e, 0x510e4101, + 0x6506650e, 0x740e630b, 0x0f1c740e, 0x23403522, 0x0c232301, 0x17101003, 0x1d020c34, 0x760a0334, 0x10220109, 0x21100922, 0xfcff0d41, 0xbe590b00, + 0x58212006, 0x21320aa2, 0x1340feff, 0x55020909, 0x04006c21, 0x55021010, 0x31431000, 0x43f62006, 0xe4200731, 0x20103143, 0x32e984fa, 0xfbffb800, + 0x0c0c1040, 0x75005506, 0x40260f26, 0x411a0226, 0x1a220750, 0x71440c04, 0x151a2205, 0x07714409, 0x84080921, 0x16402413, 0x8312095a, 0x1c092162, + 0x09287683, 0x060d0d0c, 0x25680955, 0x43062b41, 0x2b200b14, 0x2b250c82, 0x2f391233, 0x051c432f, 0x112f3322, 0x20080c82, 0x3031ed5d, 0x06255d01, + 0x24222304, 0x35022627, 0x32210010, 0x23151704, 0x26272626, 0x00222326, 0x08108311, 0x11373650, 0x05213521, 0xdffe7aa2, 0xdefeae87, 0x01706766, + 0x7f6c01a1, 0x12990901, 0x4539761f, 0xfefa6faf, 0x013001dd, 0x48bf6006, 0x530271fe, 0x6053386e, 0x23016160, 0x016501c3, 0xeb493d9d, 0x1f1a4e18, + 0xfebffe29, 0xfedffeee, 0x011e26bf, 0x6742ae6d, 0x05260805, 0x00d1053b, 0xb228010b, 0xb8083503, 0x1440c0ff, 0x55020f0f, 0x08100800, 0x05080802, + 0x0103070a, 0x02090805, 0x5f411041, 0x4702200a, 0x0023074a, 0x4702005a, 0xb3240762, 0x0d14025a, 0xb4203f82, 0x22063d47, 0x4710b4fa, 0xf4210561, + 0x067c41b4, 0x0f47e620, 0x08002105, 0x2107ac44, 0x2b842540, 0x0c0c1222, 0xc4427082, 0x0c133005, 0x0055060c, 0x0d0f0d78, 0x0d500d40, 0x54030803, + 0xb42205ec, 0x8641035a, 0x41032007, 0xb3270586, 0x0514035a, 0x84d2ffb8, 0x47088265, 0x08820575, 0x8206b443, 0x020922b4, 0x430f8255, 0x088205ab, + 0x8405bd43, 0x0d0d2208, 0x211a8306, 0x6d83b6ee, 0xb4430520, 0x0a76470e, 0x2b2b2b23, 0x350382fd, 0x3c3f0032, 0x39123c3f, 0xed2b712f, 0x23213031, + 0x23112111, 0x05823311, 0x05332408, 0x19fdc63b, 0xe702c6c6, 0xfdd902c6, 0xfdd10527, 0x004802b8, 0x00890001, 0x05d50200, 0x000b00d1, 0x5b2341b4, + 0x0021153d, 0x5c17825a, 0x03200989, 0x200a5241, 0x0ab54804, 0xce510320, 0x5a243708, 0x06320409, 0x32030a03, 0x6d0d0801, 0x5a0b080a, 0x0503140a, + 0x555b5a02, 0x0b0c2b06, 0x0355020b, 0xb4deffb8, 0x08840f0f, 0x8205e142, 0xb4fe2311, 0x11840c0c, 0x0db6ee23, 0x2008820d, 0x08a3446d, 0x1032f423, + 0x240382fd, 0xfd3f00e6, 0x5b028232, 0x33250b49, 0x21352311, 0x31e58215, 0xb4fdd502, 0x4c02c3c3, 0x0498c3c3, 0xfb9898a1, 0xdf82005f, 0xebff2c24, + 0xdf82ea02, 0x8c001536, 0x016a1240, 0x1202017c, 0x07031533, 0x03340b07, 0x12131309, 0x5c067749, 0x1220053b, 0xb328d987, 0x0014125a, 0xb4e2ffb8, + 0x20061742, 0x82a984fa, 0x43ee2011, 0xa141078b, 0x22118205, 0x421940da, 0x0d270519, 0x0055060d, 0x820c0c02, 0x17772905, 0x0601170f, 0xe6101665, + 0x60086046, 0xed5005b9, 0x31ed2505, 0x14015d30, 0x080f4356, 0x35211128, 0xefea0221, 0x36a030c9, 0x3f78290b, 0x1b1a6d5c, 0x02c5fe0f, 0xc4830101, + 0xb90c11d4, 0x272a1e0e, 0x034c7428, 0xd5839e65, 0x0000cd24, 0xd5827505, 0x010b5508, 0x1974400e, 0x5c015609, 0x09050309, 0x09380928, 0x0968094a, + 0x09d8098a, 0x0a010f07, 0x19011e09, 0x2b012a02, 0x39013909, 0x490b3509, 0x45094901, 0x65015c0b, 0x7900720b, 0x02021008, 0xc8018803, 0xb3010201, + 0x08000b00, 0x0b02b309, 0x840a030a, 0x0208010a, 0x37064a43, 0x0a03020b, 0x200d0f0a, 0x40003000, 0x00500400, 0x0d6e0001, 0x08010d40, 0x340bdf42, + 0x4001b80d, 0x035a1040, 0x02090908, 0x05140355, 0x0210100e, 0x1be34255, 0x4208da42, 0xf22108ec, 0x06e342b4, 0xe342f220, 0x5d5d2619, 0x39122f32, + 0x06dc4239, 0xe64b3920, 0xc03a0805, 0x18fd7ac0, 0x8701c004, 0x5dfd7a10, 0x01c00818, 0x2172715d, 0x11070121, 0x11331123, 0x05013301, 0xfdfffe75, + 0xc6c694b3, 0xfdf0d302, 0x9e970267, 0xd10507fe, 0x0903f7fc, 0xb74644fd, 0x05763107, 0x000500d1, 0x0302b68a, 0x08013504, 0xe8ffb800, 0x26059559, + 0x0f070000, 0x43040107, 0x042007c8, 0x20087b47, 0x3d7b4704, 0xe284ea20, 0x066c0122, 0x2b0d8648, 0x2b2f3311, 0x3fed3f00, 0x21213031, 0x212bbb82, + 0x52fc7604, 0x05e802c6, 0x86dffad1, 0xf60521a9, 0x4008a982, 0x4098010c, 0x010a5635, 0x05380238, 0x026f0a36, 0x056f0360, 0x027f0a60, 0x057f0370, + 0x550b0a70, 0x5a0a5609, 0x0364030b, 0x09750374, 0x020a0503, 0x02060903, 0x40040200, 0x01b80c0c, 0x045ab440, 0x055f5962, 0x045a2b2b, 0x02101040, + 0x09400455, 0x2b058309, 0x55020d0d, 0x04100400, 0x04540444, 0x07300082, 0x0103090b, 0x0a090807, 0x0205030b, 0xfcff0d41, 0x2205c955, 0x45005a00, + 0xfa2a0d4c, 0x0f0f0d40, 0x14025502, 0x26431e00, 0x40f42406, 0x820b0b36, 0x830c204b, 0x10002117, 0x00235d83, 0x820c0c0a, 0x841a2011, 0x0d182863, + 0x0055060d, 0x820c0c0c, 0x0e782a05, 0x0e1f0e0f, 0x05030e50, 0x209e8608, 0x073f4505, 0x24061748, 0x055a1c40, 0x2043830c, 0x23318205, 0x04055502, + 0x05233783, 0x4c100713, 0xea2131bc, 0x227983b4, 0x45ffb807, 0x07220546, 0x7f410d6c, 0x602b200c, 0x088208eb, 0xed2b2b22, 0x11210582, 0x076c4217, + 0x2a06cc6b, 0xb4585443, 0x046a0434, 0x82595d02, 0xb23c080a, 0x5d010464, 0x39171259, 0x5d013031, 0x725d0072, 0x01112321, 0x23110123, 0x01012111, + 0xc6f60521, 0xfe7662fe, 0x0e01b965, 0x80018d01, 0x03051301, 0x690397fc, 0xd105fdfa, 0x3d03c3fc, 0x3406cb46, 0x00d10538, 0xb3730109, 0x0d0d0c01, + 0x004001be, 0xff06005a, 0x05bb60f4, 0x41404608, 0x1f070c5a, 0x45073407, 0x61075107, 0x07077107, 0x0f010676, 0x1f060201, 0x34061501, 0x53064406, + 0x60016b06, 0x70017f06, 0x010c0b06, 0x5a020604, 0x02065501, 0x08010702, 0x04010306, 0x02010608, 0xff0d4107, 0x08b841f8, 0xb2450720, 0x200b820a, + 0x06e54db4, 0x0cb4f434, 0x0755020c, 0xb6faffb8, 0x55060c0c, 0xb8001307, 0x0b47f4ff, 0x40e22810, 0x020f0f2e, 0x83080055, 0x47002035, 0x26220501, + 0x11820d0d, 0x0623b882, 0x410a0055, 0x0b2805cf, 0x0b400b0f, 0x0c080202, 0x5d05445d, 0x4023067a, 0x84025a1c, 0x0c022138, 0x02216b83, 0x282c8306, + 0x10041302, 0x55021010, 0x07c04a04, 0x0b470882, 0x84042006, 0x440f822c, 0x08820527, 0x83b4ea21, 0x4408826b, 0x08820527, 0x2005c441, 0x0bdf4904, + 0x412bed21, 0xfd200ec3, 0x11201084, 0x230c3244, 0x5d5d7172, 0x41060850, 0x4f0805a9, 0x38053311, 0xb93efdf5, 0x84023301, 0xfa3405b9, 0xfbd105cc, + 0x00c00440, 0xff730002, 0x05da05e1, 0x001700f0, 0x40100123, 0x04000422, 0x0b0c0b06, 0x17001712, 0x190c1906, 0x57015712, 0x5f075305, 0x580d580b, + 0x53135f11, 0xb8151017, 0x1840f0ff, 0x0920d383, 0x762ed984, 0x02157909, 0x0215341b, 0x0a093421, 0xc8634118, 0x4718200b, 0x0b820a32, 0x0c0cb62a, + 0x15185506, 0xe8ffbe03, 0x200bb762, 0x062347b4, 0x09b4e62b, 0x03550209, 0xb4e2ffb8, 0x051a470c, 0x1540f024, 0x12820d0d, 0x0f25732d, 0x250f0125, + 0x253f251f, 0x43041e03, 0x1e200643, 0x2205b144, 0x835a0d40, 0x55062412, 0x430f151e, 0x0f20075e, 0x2405084a, 0x0f5a1c40, 0x215c8312, 0x5983160f, + 0x83060f21, 0x040f2156, 0x0f218583, 0x05fa6368, 0x02432b20, 0x465d2005, 0xed2007bc, 0x002f1082, 0xed3fed3f, 0x312b2b5d, 0x015d0130, 0x4d151216, + 0x014a0523, 0x07bf5b05, 0x00101322, 0x0805ff49, 0x00323387, 0x615b1e05, 0xfb5c5963, 0xfffe9da1, 0x60615a5a, 0x0501585c, 0x47ffa09a, 0xe3e1fcfe, + 0x0801fdfe, 0x0701dede, 0xfe642605, 0xfeb8b8de, 0x666561dd, 0x01636368, 0x01b6b920, 0x68626721, 0x0161fd69, 0xfe3b0122, 0xfedefec5, 0x01c9fedb, + 0x02000037, 0x0000c800, 0xd1059604, 0x1f001000, 0x25401a01, 0x1d3d143a, 0x1d4b144b, 0x0f540e50, 0x19070f65, 0x10070034, 0x07070207, 0x0a341809, + 0x0f080903, 0x02211f21, 0x0c545111, 0x54511120, 0x5a0d2308, 0xd4461511, 0x00702305, 0x78410004, 0xff00210b, 0x2408014a, 0x090b40f8, 0x0a045d09, + 0x0db4f023, 0x220e820d, 0x82e8ffb8, 0x55062508, 0xeaffb800, 0x29066a51, 0x210f216f, 0x1902213f, 0xfa420407, 0x41072006, 0x0a2a0684, 0x0914075a, + 0x0210100e, 0xe8420955, 0x42088207, 0x092106e8, 0x825e8308, 0x05e8420f, 0xe8420882, 0x85088205, 0x28088261, 0x0c0cb6e5, 0x6c095506, 0x0cc84c20, + 0x105d3224, 0x00852bf4, 0x2bed5d23, 0x07cf4c2b, 0x5505974b, 0x232305f2, 0x51231123, 0x2d590660, 0x07be4e06, 0x96049008, 0xd24d3e45, 0x01c6c6a0, + 0x48ba8694, 0x36ce5d55, 0x5e7b3037, 0x9678a7c4, 0x04272f2f, 0x3ea9630f, 0xd5fd4d4d, 0x302dd105, 0x4d87aa39, 0x1b1f2472, 0x2f2badfd, 0x02006a30, + 0x77fe7300, 0xf005f805, 0x31002500, 0x47401601, 0x120b0c0b, 0x1d041804, 0x12190c19, 0x1d161815, 0x0d590b5c, 0x135c1159, 0x19571753, 0x20741d57, + 0x651f5510, 0x741d751f, 0x2525042d, 0x0b033521, 0x061e3429, 0x79097609, 0x02150215, 0x0a09342f, 0x0006131e, 0x46267333, 0x0c260660, 0x5a004001, + 0xa7442600, 0xff26220a, 0x058b47fc, 0x1b152629, 0x1d060900, 0x411b0f03, 0x1b210baa, 0x051a43ff, 0x1a431b20, 0x43088207, 0x1b2c061a, 0x330f3373, + 0x1f330f01, 0x03333f33, 0x2106905a, 0x09535ab4, 0x5ab62206, 0x1113432c, 0x13431620, 0x060d430d, 0x134d3220, 0x07ce5e0a, 0x32391735, 0x2b2bed10, + 0x2f2fe62b, 0xed3f00ed, 0x39125d3f, 0x603fed39, 0x5d27061d, 0x23060601, 0x56272622, 0x162f0f09, 0x15121617, 0x16070210, 0x36323316, 0x43033337, + 0xf8290b27, 0xae3d753c, 0x2d1809d3, 0x0d294315, 0x615b592c, 0x6404bcdf, 0x18712984, 0x3543ec1b, 0x93fe270b, 0xb2bf0d0f, 0x31430304, 0x64612f0c, + 0xfeb8defe, 0x4b8afeef, 0x0a197e72, 0x3f439f03, 0x98052114, 0x08063f43, 0x31402831, 0x011d0108, 0x013a012d, 0x0f451d39, 0x1d481448, 0x0f56015a, + 0x016f1459, 0x0a600269, 0x017e0b65, 0x02110b75, 0x1000b301, 0x1a071000, 0x48400234, 0x22210538, 0x2109835a, 0x05835502, 0x40550636, 0x02020102, + 0x07341805, 0x08050103, 0x211f210f, 0x11032140, 0x34080452, 0x15115ab6, 0x0d010d0f, 0x40f8ffb8, 0x0209091d, 0x0c1c0d55, 0x2805820c, 0x060d0d0c, + 0x0c180d55, 0x2a05820c, 0x0020100d, 0xffb80001, 0x830a40ea, 0x19002215, 0x07424303, 0x2406624a, 0x035a1140, 0x222a8309, 0x4a001403, 0xf121335a, + 0x203c83b6, 0x0a404305, 0x2bfd3229, 0x2f322b2b, 0x54395d2b, 0x5d2c05a3, 0x005d2bed, 0xed3f3c3f, 0x5d2f3912, 0x07821a82, 0x0130312e, 0xfd7a1087, + 0x5d01c018, 0x21012121, 0x23084943, 0x07061415, 0x2005d35d, 0x080c5223, 0xfe983808, 0xfe0efeff, 0xa101c6e9, 0x5148b487, 0x618ea25b, 0x762b342d, + 0x5ec8e950, 0x2b2d318c, 0xb0fd5002, 0x2d23d105, 0xa1779b33, 0xa30137d9, 0x1d226340, 0x21cefd17, 0x826d2a2d, 0xff862df7, 0x050205e5, 0x013000ec, + 0x2f00b94f, 0x20067847, 0x0781472d, 0x08822e20, 0x108d4027, 0x18550210, 0x2005830e, 0x20058417, 0x21058416, 0x11830c15, 0x830a1421, 0x0b4c0805, + 0x001f0309, 0x14081b23, 0x2808291f, 0x241f2418, 0x3608392f, 0x35133810, 0x4a2a361f, 0x49104508, 0x4a1f4513, 0x582a4427, 0x551b5502, 0x6b2d551f, + 0x651b6619, 0x602b661f, 0x70167b2f, 0x7420701f, 0x862d742a, 0x40092312, 0x0837100e, 0x06360483, 0x1a110002, 0x061d0428, 0x34252121, 0x0a0a021d, + 0x0a06340e, 0xd3442821, 0x5ab42205, 0x056a4628, 0x5a0a4031, 0x161a1528, 0x55020909, 0xf0ffb81a, 0x820d0db5, 0x5f112008, 0x11200cde, 0x2907e846, + 0x15115ab7, 0x091a2100, 0xb343b800, 0x31088206, 0x0c0f40f0, 0x0055020c, 0x320f3274, 0x09023270, 0x8463316a, 0x07ae5f05, 0x2b2b2f24, 0x83632bed, + 0x3f270806, 0x112f33ed, 0x43391712, 0x15405854, 0x28571158, 0x28671168, 0x28761179, 0x28861189, 0x28991197, 0x31595d0a, 0x642b2b30, 0x044508be, + 0x24222606, 0x16333527, 0x08b26604, 0xaf5f2720, 0x15172407, 0x71242623, 0x172205b4, 0x02821616, 0x02055808, 0xd5504951, 0xfffea196, 0x01710e85, + 0xcdb88228, 0xaf4b6361, 0x01bfc662, 0x019df33c, 0x550e6506, 0x9f91ebfe, 0x407960c1, 0xa8a652ec, 0xaa57a901, 0x3c48403b, 0x665ef83b, 0x5e63738a, + 0x141a141a, 0xbba3cb2a, 0xea2c3cef, 0x68845f48, 0x0e1c6a5d, 0xb22c1528, 0x82000100, 0xee042a00, 0x0700d105, 0x1741a900, 0x052d4f00, 0x4f056b4e, + 0x0b85052d, 0xf6440420, 0x085d4f0a, 0x1a403708, 0x3504015a, 0x08030306, 0x091f090f, 0x0003094f, 0x0902015b, 0x01550209, 0xffb80414, 0x0d0a40f6, + 0x0455020d, 0x01054f5b, 0xeaffb805, 0x10100b40, 0x08055502, 0x05820b0b, 0xb4200f82, 0x18822983, 0x0cb4f223, 0x0d5b500c, 0x1182ff20, 0x05550623, + 0x0641462f, 0x762bf421, 0x544f05a5, 0x05f24209, 0x04213528, 0xc6ecfdee, 0xbf82ecfd, 0xdffa2126, 0x00b02105, 0xb224cf82, 0x2905e1ff, 0x1d3dcf82, + 0x1940fb00, 0x18231223, 0x093d033d, 0x094c034c, 0x17771377, 0x030d1c08, 0x0a063415, 0x0c544f1b, 0xdc871b20, 0x1b5ab324, 0x75511f14, 0xb4f8210a, + 0x0020ac83, 0x4027ac82, 0x020f0f11, 0x830c0055, 0x160021b3, 0x1582b083, 0x1e40f222, 0x0020e183, 0x4a051a44, 0x76290564, 0x1f1f0f1f, 0x031f401f, + 0x0728440f, 0x97420f20, 0x5ab32705, 0xb80c140f, 0x0641dcff, 0x040c2105, 0x0f825983, 0xc651e620, 0x840c2005, 0x200f8259, 0x21fb82f6, 0x08825502, + 0x8205cd47, 0xb4f42408, 0x83060d0d, 0xb6f42311, 0x08820c0c, 0x20566b20, 0x2b2b2916, 0x002b2bed, 0x3c3fed3f, 0x2005bc4f, 0x08966007, 0x11331122, + 0x080a8760, 0x33113539, 0x51472905, 0x8c89ce4d, 0x475147d0, 0x2c2721c6, 0x966b6a97, 0xc621272d, 0xf1a25602, 0x4a464c50, 0xa9e85248, 0x7bfc7b03, + 0x41398c79, 0x39424142, 0x8a036d93, 0x5b010000, 0x06300887, 0x00bcd200, 0x00fcff06, 0x010b000b, 0x045ab440, 0x4121cd82, 0x08204c13, 0x45540c20, + 0xff042206, 0x08304afe, 0xfdff0622, 0x40330b85, 0x01475a33, 0x05020248, 0x06070504, 0x06860657, 0x82140603, 0x0545085b, 0x04570407, 0x04030486, + 0x03020314, 0x01440108, 0x0258024b, 0x027c0173, 0x02050006, 0xe8ffb803, 0x10103640, 0x03035500, 0x00450802, 0x0202034a, 0x00040301, 0x003a0024, + 0x006a005a, 0x00060074, 0x080f086e, 0x3f028201, 0x032b030b, 0x03550335, 0x037b0365, 0x07640306, 0x5d5de610, 0x5df6105d, 0x5d393911, 0x2b3f3f00, + 0x5b054e68, 0x87240582, 0x085dfd10, 0x39057e5b, 0x01012b2b, 0x01330121, 0xfd5e0501, 0xfdf8fee2, 0xd301d4e2, 0xd105d301, 0x03822ffa, 0x1e05e22c, + 0x5c000100, 0x8d070000, 0xdc82d105, 0x0b410626, 0xfaff0c00, 0x8182fe85, 0xf2ff0c23, 0x25f48400, 0x06075ab4, 0x2a4d0c0b, 0xff0c2205, 0x82f185fb, + 0x46012014, 0x6708059d, 0x03475aab, 0x03790367, 0x0b010d03, 0x02040402, 0x0c080505, 0x1901170b, 0x19051803, 0x290b1908, 0x29082903, 0x39023b0b, + 0x34043203, 0x33093c08, 0x4b0b3a0a, 0x44044402, 0x43094c08, 0x550b4b0a, 0x55025a01, 0x57055a04, 0x55095907, 0x6a01650a, 0x6a046502, 0x65096a05, + 0x70027f0a, 0x7c087304, 0x7c0a7209, 0x140c2e0b, 0x072eac82, 0x06050614, 0x03010303, 0x02090940, 0x05840955, 0x03003f08, 0x05020900, 0x09030b08, + 0x0602060c, 0x3b080203, 0x4b063400, 0x7a064400, 0x06067500, 0x1f0e7200, 0x5f0e3f0e, 0x040e7f0e, 0x100d6706, 0xe6105dee, 0x3f3f005d, 0x5d391712, + 0x315d2b2b, 0x4d600130, 0x4c012005, 0x2b2505a1, 0x01012b2b, 0x22028323, 0x82010133, 0x07280802, 0xdf7dfe8d, 0xcefec7fe, 0xcb76feda, 0x34013901, + 0x013701c9, 0xfad10537, 0xfbd4042f, 0xfbd1052c, 0xfbd6042a, 0x00e2041e, 0x442f9c82, 0x38050000, 0x0b00d105, 0x00bcf000, 0x41fdff03, 0x0522073c, + 0x3c410c03, 0x890b2006, 0x82092014, 0xb83b0814, 0x98404001, 0x7a01755a, 0x040a0207, 0x041a0a05, 0x042c0a15, 0x09370a23, 0x0a42044d, 0x045f0358, + 0x09570558, 0x0b570a50, 0x046d0368, 0x09670568, 0x0b670a60, 0x0a73047b, 0x82140b17, 0x0961086f, 0x08070814, 0x01021403, 0x06140502, 0x04050706, + 0x0b0a0107, 0x03080206, 0x0d0f0802, 0x16020601, 0x36022602, 0x05024702, 0x08190809, 0x08390829, 0x02050848, 0x040a0708, 0x02060401, 0x0016000d, + 0x00360026, 0x00500047, 0x0d660006, 0x19060908, 0x39062906, 0x5f064806, 0x66060606, 0x5df6100c, 0x26038332, 0x2f391711, 0x415d5d2f, 0x31250633, + 0x10870130, 0x240288ed, 0x5d015d00, 0x2400822b, 0x01230209, 0x08028201, 0x01013329, 0xfefd3805, 0xfee50102, 0xd860fe6a, 0x05fe0702, 0x019101e4, + 0xfdd1059a, 0x020ffd20, 0x029bfd65, 0xfde902e8, 0x825d02a3, 0x00062cbf, 0x05e60400, 0x010800d1, 0x54234124, 0x062218e9, 0x7042f9ff, 0x5a002305, + 0x0b8a0800, 0x0814d345, 0x5a5d402a, 0x042c012c, 0x07350728, 0x04400140, 0x07500740, 0x07700468, 0x1906160a, 0x28062708, 0x59065608, 0x6a066508, + 0x14080808, 0x14268083, 0x02050405, 0x03820d00, 0x0400013e, 0x04030700, 0x04080701, 0x02030502, 0x1f0a0f08, 0x7f0a4f0a, 0x5b00040a, 0x04010701, + 0x5408fe45, 0x264f0599, 0xb4fe250b, 0x55020f0f, 0xe8211182, 0x822583b4, 0x05e34408, 0xfa240882, 0x060d0db4, 0xfa241a83, 0x0c0c0c40, 0x5b250982, + 0x057f054f, 0x09705602, 0x5d2b2f22, 0x2407514c, 0x10392bed, 0x066441e4, 0x30315d24, 0x63415d01, 0x09964205, 0x012b2408, 0x11231101, 0x01013301, + 0xf4fde604, 0xdbf2fdc6, 0x9b019701, 0xbcfcd105, 0x780273fd, 0x66fd5903, 0x82009a02, 0x007e2fd4, 0x05080500, 0x000900d1, 0x0300bc70, 0x8542faff, + 0x08490807, 0xb80c0c06, 0x37404001, 0x0807035a, 0x08130806, 0x08360826, 0x08560846, 0x08760866, 0x02b30808, 0x07070302, 0x03063503, 0x35080202, + 0x08040801, 0x07070203, 0x73090204, 0x010b0f0b, 0x100a6902, 0xe6105de6, 0x2f393911, 0x55038212, 0xfd22054f, 0xa9822f32, 0x10872808, 0x185ded7a, + 0x2b2bc087, 0x01352121, 0x15213521, 0x08052101, 0x910376fb, 0x520491fc, 0xb00366fc, 0xb06904b8, 0x8392fbb3, 0xef21089d, 0xf70278fe, 0x07001406, + 0x20404500, 0x01025205, 0x0b015206, 0x06000003, 0x020d0c0c, 0x090c0655, 0x23058209, 0x0d1a011f, 0x01280d82, 0xb4deffb8, 0x55020c0c, 0xee230882, + 0x820b0bb4, 0x4f2f2008, 0x33210522, 0x08e5652f, 0x295b2120, 0xf7023805, 0x0802f8fd, 0x5a01a6fe, 0x9c0778fe, 0x0082f98f, 0xfe460001, 0x82c003d0, + 0x00033f6b, 0x0328403a, 0x010a0201, 0x012a0119, 0x014b0138, 0x01680159, 0x01890178, 0x00120109, 0x2a822f03, 0x0001032d, 0x70026000, 0x2f020202, + 0x742f335d, 0x232c0c51, 0xc0033301, 0xb033fdad, 0x4407d0fe, 0xab242a82, 0xb30278fe, 0x5d27c184, 0x52040940, 0x83030107, 0xffb823c1, 0xc183b4f2, + 0xffb80324, 0xc483b6f4, 0x001f0325, 0x51f6ffb8, 0xf02207d3, 0xd1831140, 0x83040021, 0x0e0021ce, 0x21067f47, 0x2983b7fa, 0x05000026, 0x333c2f01, + 0x46051748, 0x616506ec, 0xb302230a, 0xd582f8fd, 0xdd82a620, 0x068f7825, 0x82008f7e, 0x02ba2d83, 0x05d205aa, 0x000600d1, 0x3b344047, 0x2408a082, + 0x0345014b, 0x0350015f, 0x0360016f, 0x0370017f, 0x7b02690a, 0x02010202, 0x1f030f05, 0x5f033f03, 0x05036f03, 0x2a028203, 0x4f000000, 0x04000200, + 0x825d332f, 0x2f332ae5, 0x3939125d, 0x015d3031, 0x06f3445d, 0xc6d20532, 0x3afe39fe, 0x7e4d02c5, 0x7302ac02, 0x27038bfd, 0xff2f6f82, 0x05d4fefc, + 0x004cff1a, 0xb6110003, 0x82025001, 0x2f0225b1, 0x002f3311, 0x32070966, 0xe2fa1a05, 0xd4fe1e05, 0x01010078, 0x02160554, 0x828c06fa, 0x4024312b, + 0x59014816, 0x79026902, 0x03500402, 0x03700360, 0x01240082, 0x2f020000, 0x7c823a83, 0x84303121, 0x02332a78, 0xeffe95fa, 0x011605f3, 0x329b8276, + 0x04e1ff68, 0x0078041d, 0x01330026, 0x000b41f0, 0x42f8ff1e, 0x002505c2, 0xff1d005a, 0x320b85f0, 0x0c5a3f40, 0x1923040a, 0x0423150a, 0x0c0c122b, + 0x842c5506, 0x842d2005, 0x59250805, 0x5c1e510e, 0x600e692c, 0x7b2d6f1d, 0x70147a0a, 0x0a2c7b1d, 0x3d280802, 0x11401130, 0x20111102, 0xffbb1c08, + 0x374986ca, 0x1c4f5a14, 0x181c1c01, 0x3104203f, 0x010a0841, 0x011d0f08, 0xf6ffbb1d, 0xb4271e85, 0x27111d5a, 0x82104102, 0x740d2084, 0x8c5506dc, + 0x2c90860d, 0x40355ab7, 0x55020909, 0xf4ffb802, 0x210888b4, 0x11850c0c, 0x83164021, 0x1a022ca2, 0x000b1d00, 0x02101006, 0x5a120055, 0x824908ef, + 0x83182005, 0x1a002233, 0x05ea500d, 0x83b4fc21, 0xb8002139, 0x20050575, 0x832e8206, 0x240f823f, 0x091540f4, 0x5b0f8209, 0x912d0508, 0x1f350f35, + 0x03353f35, 0xf8ffb82e, 0x823b83b4, 0x40f42808, 0x060f0f0e, 0x83082e55, 0x552e2032, 0x2e3007da, 0xb80c0b08, 0x5ab34001, 0xb80b1b2e, 0x3840faff, + 0x0b218583, 0x2185830c, 0x3983080b, 0x831c0b21, 0x0c0b2181, 0x06200b84, 0x0b217e83, 0x206a8316, 0x250b820b, 0x0a0b5506, 0x05820d0d, 0x830c0c21, + 0x5ab42144, 0x4d843883, 0x62850b21, 0x9b430a8d, 0x20058205, 0x05826e5d, 0x2205e84a, 0x54103911, 0x2b300513, 0x2f32322b, 0x3f005d2b, 0xed3fed3f, + 0x2b5d2f33, 0x2405d45c, 0x30313912, 0x282a825d, 0x2b005d01, 0x3523212b, 0x056b6106, 0x34352627, 0x24363736, 0x14f47237, 0x7c110321, 0x94080a8b, + 0x19bb1d04, 0x7a2f2855, 0x6dd29752, 0x1e016665, 0x282a2da4, 0xb64a3d70, 0xd0370a61, 0x40af7665, 0x56bb423f, 0x645144e9, 0xa4637774, 0x123d1177, + 0x9bc81f17, 0x2d2d9d7f, 0x401d0820, 0x10171854, 0x0fbf2527, 0x2e2f2724, 0x1dfe6c92, 0x14053701, 0x55611713, 0x004d6160, 0xb9000200, 0x9004e1ff, + 0x13001406, 0x59012000, 0x02342940, 0x153b0f35, 0x02442030, 0x154b0f45, 0x12572040, 0x087f1267, 0x0e0c1c7b, 0x42170609, 0x010c0411, 0x0a06401e, + 0x4114080b, 0x0a095d13, 0xc0421420, 0x3a0b830a, 0x010b000b, 0x005a0040, 0xb4f4ff14, 0x55060c0c, 0xf4ffb814, 0x020c0cb6, 0x781b1455, 0xf0210b55, + 0x062242b4, 0x0b40f428, 0x55020d0d, 0x23830e00, 0xec252182, 0x060909b4, 0x85088255, 0x2408823e, 0x0d1240f3, 0x2b12820d, 0x221f2290, 0x0e02223f, + 0x0d08091b, 0x20050c56, 0x087e7309, 0x2a05ae4b, 0x095a1c40, 0x0209090c, 0x830c0955, 0x0809214d, 0x0b834a83, 0x0955062c, 0xffb80c1a, 0x1010b4de, + 0x08825502, 0xc04be220, 0xb4ee210e, 0x18828383, 0x0b40f622, 0x0c213983, 0x82398306, 0x84f0200f, 0x210882c3, 0x8383b6ef, 0x21880c22, 0x200c3353, + 0x2000832b, 0x0a395332, 0x1184ed20, 0x3f3f0023, 0x440282ed, 0xd971067d, 0x07a10808, 0x11331123, 0x32333636, 0x26340312, 0x07062223, 0x33161611, + 0x90043632, 0xaa47434f, 0x458e5f66, 0x4fbcb00c, 0xe5c66fb2, 0x529384c2, 0x735048a8, 0x02b19c49, 0x4ce08c37, 0x262d4f4f, 0xfd140634, 0xfe5341d4, + 0xc8e6fed0, 0xfd3847cf, 0xcd1c2480, 0x69000100, 0xf303e7ff, 0x21007704, 0x4c40f300, 0x234f230f, 0x22012b02, 0x24162a0e, 0x35013a18, 0x35163a0e, + 0x4f014918, 0x4f0e440a, 0x59184116, 0x690e5501, 0x7a0e6501, 0x130e7301, 0x3f141010, 0x2121040c, 0x09033f1a, 0x1040230f, 0x23550210, 0x71fb8340, + 0xde20089f, 0x22078941, 0x830b40de, 0x8d0023fc, 0x70431723, 0x04172107, 0x20062b43, 0x08195617, 0x83061721, 0x4117203d, 0x0c200a9d, 0x21069464, + 0x2c840a09, 0x5a20402a, 0x0d0d0809, 0x08095502, 0x09202983, 0x0b821e82, 0x09091622, 0x06290582, 0x55060909, 0xf8ffb809, 0x226983b6, 0x41228509, + 0x2b220966, 0x00822bed, 0xb9640f86, 0x015d230b, 0x2e4d255d, 0x00102208, 0x08e97133, 0x0806c57f, 0x36363745, 0xf3033337, 0x795fa95e, 0x504948ca, + 0x60f72d01, 0x560a4db9, 0xb9a057b7, 0x7639a4b5, 0x1548292f, 0x322d460a, 0xdc484847, 0x01120193, 0xd1273638, 0xd0d74843, 0x181ed9ca, 0x00112f15, + 0xff6c0002, 0x434304e1, 0x2908061f, 0x3c254067, 0x381c301a, 0x421a4f20, 0x5820481c, 0x70066806, 0x01120910, 0x18051102, 0x01040e41, 0x05421e08, + 0x0214110a, 0x4b451341, 0x063f450c, 0xe45a0020, 0x1345450f, 0x0c0c0d34, 0x1a025506, 0x0f0f4022, 0xb8005502, 0x2340f6ff, 0x09821010, 0x0b0b0822, + 0x10200582, 0x220acb4e, 0x820c0c2a, 0x0d0a2111, 0x28054e45, 0x0f1c40ee, 0x0055060f, 0x203f830f, 0x053b4500, 0x2b439220, 0x641b2005, 0x1b2007f0, + 0x2007b841, 0x0532431b, 0x7b134021, 0x0f8207af, 0x1b550624, 0x5343081b, 0x41082007, 0x082007b5, 0x2305b541, 0x18085ab7, 0x08258083, 0x40feffb8, + 0x2784832b, 0x09090c08, 0x10085502, 0x0c200584, 0x08208a83, 0x11825d82, 0x06210b82, 0x82488355, 0x43852005, 0x39450a28, 0x08db670a, 0x82055660, + 0x32322219, 0x072c4300, 0x30313f38, 0x3523215d, 0x22230606, 0x36341102, 0x33363637, 0x11171632, 0xed6a0333, 0x0471080b, 0xb051bc43, 0x51ebc867, + 0x61b54445, 0xbc4b8858, 0x47784cbc, 0x9688b09e, 0x4675a450, 0x0134014e, 0x4ede8e11, 0x2725504c, 0xfffae401, 0x1a228102, 0xcfc7cadc, 0x00020047, + 0x04e6ff6a, 0x007c0460, 0x011f0018, 0x26274021, 0x300d2b04, 0x3c0d3b04, 0x4b04431e, 0x5a1e4b0d, 0x6a16500d, 0x7817600d, 0x0e1e7a0d, 0x1f1f3c01, + 0x153d1c0f, 0xffb80b04, 0x057777e8, 0x070b0b29, 0x0c090f3f, 0x8340210c, 0x402121f7, 0x1922f783, 0xfa4fffb8, 0x41192205, 0x07bb470a, 0x005a0023, + 0x07024219, 0x5a0a4026, 0x20001a19, 0x30089066, 0x060d0d13, 0x218f0055, 0x211f210f, 0x1f03213f, 0x07954101, 0x20083578, 0x05b04101, 0x5a134024, + 0x36830c01, 0x0c0a0128, 0x0155060c, 0x9e41121b, 0x41122007, 0x1220079e, 0x2a059e41, 0x125a2840, 0x020b0b18, 0x83101255, 0x08122197, 0x12203583, + 0x11825782, 0x12213b84, 0x21748302, 0xec578512, 0x462b200a, 0x322405b1, 0x2bf4105d, 0x33055d43, 0x002f332b, 0x2f33ed3f, 0x12ed3f2b, 0x31ed2f39, + 0x21015d30, 0x08087d50, 0x06153363, 0x00202306, 0x33001011, 0x27151232, 0x22232626, 0x60040706, 0x363ec9fc, 0x72568f34, 0x5f0a31e7, 0xeafe6dc6, + 0x2b01c8fe, 0xb7f5e2f4, 0x97969301, 0x1b020cb3, 0x30319967, 0xcd2c5b30, 0x2d013628, 0x12011501, 0xf8fe4201, 0xa2942af3, 0x000084b2, 0x00440001, + 0x06120300, 0x0118001e, 0x000b4101, 0x0a3d4110, 0x0b870f20, 0x31402f08, 0x0f401a5a, 0x1a55020f, 0x020d0d40, 0x39140855, 0x03057514, 0x3f040000, + 0x0e0b0015, 0x0511083e, 0x0900080d, 0x09020940, 0x000e090f, 0x3a410b08, 0x5ab42205, 0x072b410b, 0xeb420b20, 0x5a3c2306, 0xfe470c0b, 0x0c0c2d05, + 0x060b5502, 0x55060909, 0x0c0c0c0b, 0x01220582, 0x05820d0d, 0x110f1a30, 0x0d400e00, 0x160e3710, 0x55021010, 0x7583200e, 0x33840e20, 0xffb80e22, + 0x21061346, 0x85832e0e, 0xee280f82, 0x0f0f0b40, 0x120e5506, 0x0f824783, 0x0d40fb22, 0x0e214b83, 0x224b8320, 0x4419890e, 0x2b230aba, 0x41323232, + 0x2b25056c, 0x2f322b2b, 0x05f36412, 0xfd333f23, 0x05db5732, 0x08055e4e, 0x26230180, 0x06222326, 0x15211515, 0x11231121, 0x35333523, 0x32333634, + 0x12031716, 0x26641f0a, 0x53016d79, 0x7fbcb3fe, 0x3fbbc67f, 0x5e052a65, 0x8c6b1309, 0x41fc9e26, 0x259ebf03, 0x080cd5c7, 0x6c000200, 0x430459fe, + 0x23007c04, 0xa1013000, 0x133d2d40, 0x2c322a3e, 0x0944303a, 0x2a4c134b, 0x304b2c42, 0x055d015b, 0x016a165a, 0x166a056c, 0x2070057c, 0x12052211, + 0x40281521, 0xbe07041e, 0x814ec0ff, 0xff072308, 0xe583b4c0, 0xffb80725, 0x831540c0, 0x070732e5, 0x0d03400b, 0x0715412e, 0x0601060f, 0x41122421, + 0x07785310, 0x005a0023, 0x07e94212, 0x2c4a0b84, 0x40322608, 0x55020f0f, 0x072c4a12, 0x0c210884, 0x2011850c, 0x05954240, 0x06001a29, 0xffb80018, + 0x444040f6, 0x1a2022e3, 0x2611df44, 0x3f321f32, 0x412b0232, 0x2b2007f3, 0x20074943, 0x08df442b, 0x83082b21, 0x0c2b2872, 0x55060c0c, 0x43181b2b, + 0x18200737, 0x20071d42, 0x05404318, 0x185ab72e, 0x020b0b10, 0xffb81855, 0x0f2540fe, 0x1823b782, 0x82090916, 0x8238820f, 0x0d062205, 0x220b850d, + 0x82185506, 0x2105820b, 0x275b3185, 0x0ad84408, 0x0b82e420, 0x6613114a, 0x1b8207e2, 0x12ed3f2c, 0x313f3939, 0x10255d30, 0x067d2100, 0x0ff3440d, + 0xf3443720, 0xfe73080f, 0x59f4fefe, 0x2e0a52a9, 0x7e6064c8, 0x551e2323, 0xebc8789b, 0xba414651, 0x4983615c, 0x4bbcb00c, 0xb29b4081, 0xa5529984, + 0xfee4fe7f, 0xc01719f6, 0x292e3512, 0x66446e27, 0x21014344, 0xd1900701, 0x274f474c, 0xd6fc3028, 0x1d226102, 0xc2bcc6d0, 0x0001003f, 0x040000b9, + 0x0014065f, 0x407a0116, 0x16150313, 0x03157515, 0x42080d10, 0x010e0413, 0x46080d01, 0xf82639cb, 0x060909b4, 0xf9490255, 0x29088205, 0xffb8001a, + 0x1010b4ea, 0x08825502, 0x1140fc24, 0x09820b0b, 0xd0460420, 0xffb8220a, 0x843282fc, 0x4afe201e, 0x2220060f, 0x24063545, 0x0f0fb4e0, 0x22378306, + 0x831d40fa, 0x0d002355, 0x0f820c0c, 0x0d0d0a22, 0x91270582, 0x60181f18, 0x43100218, 0xb4210ff2, 0x060d445a, 0x431c4021, 0x08200dfb, 0x210afb43, + 0x114a0d1a, 0x20088207, 0x05114ae0, 0x090c0d25, 0x82550209, 0xb4ee230f, 0x08840d0d, 0x8205e045, 0x43ea2011, 0x0d2005f6, 0x0f824284, 0x83b4f121, + 0x20088388, 0x228b83b6, 0x4317880d, 0x134c0af8, 0x8a5d2008, 0x076c4514, 0x002b2b2f, 0x3f3f3c3f, 0x313912ed, 0x23215d30, 0x05a46e11, 0x64062221, + 0x3e080561, 0x32333636, 0x5f041516, 0x191812bc, 0xa84d4b5e, 0x58bcbc4d, 0xbeb563bc, 0x874d7c02, 0x4c292a26, 0x06befc3b, 0x49cdfd14, 0x00cdda52, + 0x00af0002, 0x05830100, 0x000300db, 0x41900107, 0x43030017, 0x00200a91, 0xf8550b8a, 0x5a002308, 0x04560500, 0x04072109, 0x2006a349, 0x23088204, + 0x40013d41, 0x2006a948, 0x060d4e0d, 0x428c0120, 0x2844f420, 0xff052108, 0x07200b89, 0x200a0d4c, 0x200b8a04, 0x22238202, 0x840c000c, 0x8a012053, + 0x8a06200b, 0x8447830b, 0x5ab42223, 0x07524a07, 0x08820420, 0x22058d55, 0x62c0ff01, 0x2608056b, 0x015a1440, 0x0b400244, 0x0302370d, 0x08050506, + 0x0901097f, 0xffb80092, 0x0c2c40fc, 0x0055020c, 0x090c0460, 0x82550209, 0x240d8238, 0x09090604, 0x820b8406, 0x011a2c05, 0x020f0f02, 0x7f600155, + 0x41050105, 0x088207ef, 0x2006ef41, 0x82378405, 0x05ef410f, 0xef410882, 0x21088205, 0x4683b4fc, 0xff280882, 0x060c0cb6, 0x08880555, 0x2108ca41, + 0x4247e45d, 0x2be42a05, 0x3f005de6, 0xed2b3f3f, 0x0839682b, 0x82080744, 0x012d0808, 0x03333523, 0x01331123, 0x0cd4d483, 0x1805bcbc, 0x0425fac3, + 0xff02005d, 0x0259fec2, 0x00db0515, 0x01190003, 0x050ab511, 0x0102051c, 0x20ec88bb, 0x36ec891f, 0x05193e16, 0x400f0b0b, 0x174f0d07, 0x0a7f1701, + 0x60010a01, 0x45134116, 0x16200a82, 0x200aa141, 0x073a4716, 0x005a0023, 0x06a94f16, 0xffb81622, 0x8205ac59, 0x82d28508, 0x05955808, 0x001a1625, + 0x5bfcffb8, 0x60250631, 0x1970170a, 0x07324701, 0x195a0e2b, 0x0210100e, 0x0b0c1955, 0x2205820b, 0x43deffb8, 0x1923051f, 0x84090908, 0x60e4200f, + 0x192105c7, 0x06074902, 0x2d053272, 0xecffb819, 0x09091340, 0x07195506, 0x05820c0c, 0x0d0d0522, 0x92210582, 0x0c05431b, 0x32325d22, 0x27064041, + 0xe42b2b2b, 0x5d2f5d2f, 0x20057053, 0x054841ed, 0x23015d25, 0x68033335, 0x940811c8, 0x02213523, 0x0cd4d415, 0x8328a8c8, 0x5f1c0a2c, 0x1658482d, + 0x01e90d16, 0xc31805a5, 0xc8c40afa, 0x0bb30c10, 0x2828281c, 0x84035171, 0x0100009e, 0x0000c100, 0x1406af04, 0x19010b00, 0x02284440, 0x09db01d8, + 0x0f010903, 0x1d011f0d, 0x2d0d1f02, 0x300d2f01, 0x540b400b, 0x7a02690b, 0x02020c01, 0x001a0103, 0x0908000b, 0x0a0b02b4, 0x02080a03, 0x07050a05, + 0x08050101, 0x0a60020b, 0x0a020a70, 0xffb8000a, 0x0f1140f4, 0x0055060f, 0x0d200d00, 0x08020d40, 0x074d4603, 0x77460320, 0x6bb42005, 0x402c07a5, + 0x0c035a1c, 0x55020909, 0x0c0c0c03, 0x04230582, 0x84060909, 0x2105820b, 0x8842051a, 0x41e2200a, 0x88420558, 0x087f4208, 0x20089142, 0x057844e6, + 0x42840520, 0xf7253a82, 0x060c0cb4, 0x22088355, 0x820d0db6, 0x0c892108, 0x26147844, 0x2b2f3311, 0x645d2f33, 0x3f2c05aa, 0x31393912, 0x10870130, + 0xf57ac0c0, 0x2705dc68, 0x01c008fd, 0x2321715d, 0x3e09d868, 0xfef8af04, 0xbcbc7a40, 0xfded1f02, 0x74e901f9, 0x14068bfe, 0x2f021afc, 0x0000fcfd, + 0x82bb0001, 0x06772d04, 0x01030014, 0x000b410a, 0x00fcff02, 0x2007ea4f, 0x094f4401, 0x4f440320, 0x82002007, 0x0d412208, 0x054f4401, 0x3744fc20, + 0x212a8308, 0x1782000d, 0x035ab422, 0x2007b247, 0x88088200, 0x53f4202a, 0x3244080d, 0x202a8308, 0x0599510c, 0x23440020, 0x28402e05, 0x0101025a, + 0x01057f08, 0x0c009205, 0x094f6309, 0x09090824, 0x09685506, 0x7f1a2406, 0x41010101, 0x08820768, 0x2006f143, 0x822f8401, 0x055f410f, 0xdf490882, + 0x04012106, 0x0f823c83, 0x84b6f821, 0x04882108, 0x22085641, 0x822bfd5d, 0x5de62400, 0x433f3f00, 0x21290ee7, 0x01331123, 0x06bcbc77, 0x054f4714, + 0x0417072a, 0x032b007c, 0x007d4141, 0x200b1c67, 0x0ab04306, 0xe76c0520, 0x15ff6c0c, 0x200b8453, 0x0d646701, 0x83084a41, 0x450d2053, 0x538306a6, + 0x04200b87, 0x460a1044, 0x02200b0d, 0xd645178a, 0x4407200b, 0x06200a34, 0x05200b8a, 0x04200b8a, 0x03200b8a, 0x02200b8a, 0x01200b8a, 0x32080b87, + 0x035a4c40, 0x13290324, 0x44291324, 0xb7264420, 0x25b6072a, 0x1d1f2501, 0x4217081c, 0x1d042228, 0x1c100105, 0x012d4008, 0x2d302d1f, 0x2d502d40, + 0x41052d70, 0x2d3319c4, 0x40c0ffb8, 0x020f0f17, 0x0c402d55, 0x0155020c, 0x82101018, 0x0b082205, 0x2305820b, 0xb4eaffb8, 0x01271a83, 0x40f4ffb8, + 0x82090911, 0x84302012, 0x0d1c2124, 0x20056057, 0x211e82f2, 0x1e825506, 0x1440f024, 0x09820909, 0x0d0d0222, 0x61250582, 0x1c0b2510, 0x073b4a0f, + 0xc3430f20, 0x430f2007, 0x402405c3, 0x0c0f5a1c, 0x0f214c83, 0x214c830c, 0x3983080f, 0x06240b83, 0x101a0f55, 0x700c7c45, 0x10200b12, 0x220a0853, + 0x5ef6ff10, 0x10200532, 0x1023a884, 0x5ed2ffb8, 0x1021058c, 0x22528326, 0x820d0a10, 0x2015829f, 0x849f84f8, 0x82648308, 0xb4fb2508, 0x55060c0c, + 0xff200882, 0x2105bc62, 0x7d711f10, 0x20a78709, 0x20a7881a, 0x20a7841a, 0x20a7841a, 0x83a7841a, 0x5506240b, 0x421c1a1a, 0x088207f9, 0x6244e620, + 0x841c2005, 0x440f822c, 0x08820562, 0x83050243, 0x05624408, 0x830a1c21, 0x200f8285, 0x838584fc, 0x0e403008, 0x55060d0d, 0x101f611c, 0x10801040, + 0x592f1003, 0xc14f08d2, 0x322b2208, 0x0bf44610, 0x0c86fd20, 0x39391122, 0x4e0b284b, 0x5d330568, 0x3c3f005d, 0x3c3f3f3c, 0x121132fd, 0x315d3939, + 0x8b015d30, 0x490b883c, 0x16230b16, 0x49111516, 0x15260e25, 0x32333636, 0x05841716, 0x1707152d, 0x17150dbc, 0x9e4f5156, 0x8504034f, 0x4d33080a, + 0xbcbc4d9b, 0x7263af58, 0xbc72279f, 0x02afb86b, 0x2886487c, 0x3d4f2c2b, 0xfd1e3d17, 0x4a7c0235, 0x2b2b2885, 0xbefc3b4c, 0x497c5d04, 0x60556052, + 0x43c8df55, 0x042705c1, 0x007c045f, 0x4b700116, 0x05200f11, 0x205b114b, 0x0a114b17, 0x09090825, 0x4a005502, 0xfe2107fe, 0x06e551b4, 0x7946e020, + 0x0bfe4a06, 0xf8ffb826, 0x09091140, 0x2328084b, 0x55020c0c, 0x4b060a4f, 0xb4221908, 0x014b0f0f, 0x0513550e, 0x4b081a4b, 0xed204208, 0x4b06e741, + 0xe1411a07, 0x1d074b05, 0x5d043308, 0xda52497c, 0x020000cd, 0xe1ff6a00, 0x7c047104, 0x17000b00, 0x1a406001, 0x10340e3b, 0x163b1434, 0x10440e4b, + 0x164b1444, 0x093f0f08, 0x033f1504, 0xbc560c0a, 0x440c200c, 0x0c200abf, 0x820a6745, 0x09b42b0b, 0x0c550209, 0xb4f4ffb8, 0x08840c0c, 0xe64ff220, + 0x1b0c2305, 0x11834019, 0xffb80023, 0x07c356fc, 0xec43e020, 0x18002105, 0xda221886, 0xb34c0fb4, 0x82ee2005, 0x55062145, 0xf6202a82, 0x08844582, + 0x9578fa20, 0x19902b06, 0x191f190f, 0x196f193f, 0x08471204, 0x08122107, 0x2006e646, 0x059a4412, 0x5a194024, 0x86830412, 0x830c1221, 0x24058358, + 0x1b125506, 0x07074406, 0x4b0c0621, 0x062106bc, 0x2638840a, 0x065a1a40, 0x180b0b16, 0x2008bb49, 0x20358308, 0x825d8206, 0xffb82411, 0x831940fe, + 0x10062995, 0x55060909, 0x0c0c0406, 0x0d210583, 0x2105820d, 0x9e491885, 0x069c410c, 0x860ab94c, 0x78002011, 0x696808ca, 0x05ca560a, 0x14152608, + 0x36323316, 0xe8fe7104, 0xe9feedeb, 0xebed1701, 0xaac21801, 0xaaa99997, 0x02ab9698, 0xfeeffe2e, 0x013c01c4, 0x08018211, 0xc3fe3d32, 0xd3d9effe, + 0xd9d2d9d3, 0x000200d7, 0x0464feb9, 0x007c0490, 0x01200013, 0x32254069, 0x32153902, 0x49024320, 0x56204215, 0x7e126712, 0x0a1c7c08, 0x27077f58, + 0x06401e05, 0x140c0b09, 0x200c8245, 0x188b5814, 0x2405b941, 0xf6ffb814, 0x58ec83b6, 0x0b27067f, 0x0055020b, 0x5cd0ffb8, 0x0b2209bb, 0x12820f0f, + 0xfb7c1220, 0x11bb410f, 0x8858f620, 0x06804111, 0x580f9158, 0x0c200f88, 0x45278858, 0x0c22059a, 0x9158ffb8, 0x066d5208, 0x4c249158, 0x2b220595, + 0x92582b2b, 0x0578450b, 0x93582b20, 0x23112416, 0x58153311, 0x3f081393, 0xb342474e, 0x498d5764, 0xbb4bbcbc, 0xc2e1ca6a, 0xa4518f8a, 0x4973504b, + 0x3c02b09d, 0x4a4ee188, 0xfe282651, 0x75f9052c, 0xcffe553f, 0xc8caecfe, 0x87fd3946, 0x00d41a24, 0x6c000200, 0x430464fe, 0x0806d341, 0x2b406d26, + 0x1a3d033b, 0x203a1c30, 0x1a4b034c, 0x204a1c46, 0x12091070, 0x04110205, 0x040e4018, 0x421e0c01, 0x14110905, 0x5005f456, 0x564a0571, 0x0bb04807, + 0x200b6848, 0x12835c02, 0x57137150, 0xfa24273f, 0x09091c40, 0x57403f57, 0x48570836, 0x06944308, 0x085a342b, 0x020b0b14, 0x09060855, 0x20058209, + 0x10365712, 0x7d830e20, 0x0c080823, 0x1f3c570c, 0x47074c61, 0x2b200979, 0x220e3d57, 0x57112301, 0x49520e3d, 0xbc370810, 0xc764ac57, 0x424453ed, + 0x8b5a63b2, 0xbcb00c48, 0xa346784e, 0x529389aa, 0x0264fea4, 0x01494b1a, 0x900e0133, 0x50494bdd, 0xfc302728, 0x237802bf, 0xc4c2dd1c, 0x470047d3, + 0x033f051d, 0x005d0472, 0x40db0012, 0x100d0014, 0x030d200d, 0x000f090c, 0x0a430400, 0x0809050f, 0x18ffb800, 0x60084b40, 0x00280712, 0x70144014, + 0x070c0214, 0x20076d49, 0x071f4107, 0xc5480720, 0x0c072908, 0x55020909, 0x0c0c0c07, 0x06230582, 0x84060909, 0x2105820b, 0xc548091a, 0x20088207, + 0x05c548e0, 0x2c840920, 0x2a430f82, 0x2e088205, 0x0d1140ee, 0x0955020d, 0x060f0f24, 0x830a0955, 0x2315823f, 0x0c0cb4f8, 0xb8250e82, 0x0db6f9ff, + 0x2108820d, 0x254d1388, 0x002b2d18, 0xfd3c3f3f, 0x12112f32, 0x5d303139, 0x20068d55, 0x08194307, 0x17168d08, 0x2a0a7203, 0xa257364f, 0x70bcbc4b, + 0x2c3159ab, 0x0a90032c, 0xfc3d4d09, 0xa55d04e7, 0x07054b5a, 0x6e000100, 0xd703e5ff, 0x33007804, 0x57409901, 0x1b090206, 0x1b190215, 0x242a0926, + 0x243c0932, 0x244c0942, 0x165d055e, 0x2f562153, 0x056f3254, 0x2060166c, 0x32652f64, 0x7f057a14, 0x79207411, 0x8a2b7428, 0x850d8801, 0x9428871a, + 0x0b1b9a01, 0x29180e00, 0x80031e04, 0x40220122, 0x55020b0b, 0x3e262222, 0xb807041e, 0x0c40c0ff, 0x07340f83, 0x033e0b07, 0xb80e2109, 0x1440faff, + 0x55020909, 0x0c0c0c29, 0x06220585, 0x69412955, 0x41292007, 0xb4220560, 0x6046295a, 0x1c402605, 0x351b295a, 0x21298340, 0x35831018, 0x840a1821, + 0x09082b0b, 0x18550609, 0xb5f6ffb8, 0x08820c0c, 0x39455582, 0x22088605, 0x550e5506, 0x0e200cf3, 0x200a3347, 0x077c450e, 0x0e5ab72b, 0x1821001b, + 0xffb80007, 0x071547ea, 0x2008f153, 0x052b50f4, 0x45140021, 0x59450662, 0x05a34108, 0xf8363382, 0x0d0d2740, 0x8e005506, 0x1f350f35, 0x5f353f35, + 0x05357f35, 0xeb841607, 0x9e831620, 0x831a0721, 0x8607249b, 0x5fe61034, 0x11230c81, 0x46103939, 0x6062059d, 0x6b1f8208, 0x2b2e06e0, 0x2f33ed3f, + 0x12115d2b, 0x30313917, 0x1c79015d, 0x3435250e, 0x26272627, 0x35200283, 0x20086b5a, 0x06895715, 0x16171424, 0x02821617, 0x16178908, 0xdbfdd703, + 0x0a46cf7c, 0x7c64da59, 0x6c26268c, 0x93358128, 0x383a397b, 0xcd646bad, 0xce480a44, 0x2b8e6763, 0x81345e2a, 0x4747832b, 0xc4994201, 0x43d3233b, + 0x4256504f, 0x09182222, 0x97270e18, 0x307a456e, 0x2331372f, 0x4f4935c9, 0x2323454e, 0x0a180c16, 0x004a491e, 0xff3e0001, 0x05fd02ea, 0x001b009e, + 0x0c2440d1, 0x2b051a05, 0x100b0305, 0x0b0d3e07, 0x1b1b050a, 0x09033f17, 0x1d7f1d4f, 0x8c000e02, 0x100d081d, 0x2007d441, 0x073e4310, 0xdd411020, + 0x23402805, 0x090c105a, 0x82550209, 0x820c200e, 0x09042305, 0x0b840609, 0x1a350582, 0x4007080a, 0x0737100d, 0x40deffb8, 0x02101011, 0x0f200755, + 0x8405820f, 0x43158230, 0x08820542, 0x26064243, 0x0f0f1c07, 0x84075506, 0x20158243, 0x05f148f1, 0x0d170723, 0x2115820d, 0x40431c88, 0x322b210a, + 0x2408d758, 0xf6102f32, 0x06c15132, 0xfd333326, 0x30312f32, 0x2a06975d, 0x35231135, 0x11331133, 0x6a211521, 0x4f0809cb, 0x35fd0233, 0xb2ab317d, + 0x01bc7f7f, 0x087cfe84, 0x4f4d1618, 0x0a16642e, 0xb8120e0a, 0x9e5202cb, 0xbffe4101, 0x5803fe9e, 0x25282b63, 0x0100091b, 0xe1ffb100, 0x5d045704, + 0x62011600, 0x060b1440, 0x077a0719, 0x15050203, 0x42110509, 0x08010a05, 0x4606725d, 0xf6203334, 0x2812a656, 0x101d40ee, 0x00550210, 0x0a9b7608, + 0x20058b4b, 0x06884b02, 0xdc49ea20, 0x46f62007, 0x914b0637, 0x0d0e2605, 0x0055060d, 0x05905692, 0x56198b5a, 0x08241b8f, 0xb4e2ffb8, 0x08827d83, + 0x2506b34d, 0x09090c08, 0x0f825502, 0x8205aa41, 0x05685308, 0xf1200882, 0x2405b34d, 0x09090808, 0x56218306, 0x1882058f, 0x83b6f521, 0x8708218a, + 0x430b8f56, 0x2b200523, 0x09994218, 0x44462b20, 0x00322709, 0x3fed3f3f, 0x8d56123c, 0x06352605, 0x26222306, 0x0b7e6c35, 0x33114308, 0x5fbc5704, + 0xc4b069ae, 0x1b1a10bc, 0xad495256, 0x4b7cbc4b, 0x02d0d750, 0x5584fdd5, 0x282c2b79, 0x42033b4c, 0x00010000, 0x0400003d, 0x005d047f, 0xbcd90006, + 0xfdff0600, 0x0c000b00, 0x5ab44001, 0x606b0304, 0x4f062007, 0x14820725, 0x386a0820, 0x6c062007, 0x14820773, 0x0d028508, 0x4001b80d, 0x265a3840, + 0x36062904, 0x46063904, 0x06064904, 0x05390529, 0x05510540, 0x06050560, 0x0001001a, 0x02031a04, 0x27002803, 0x37003803, 0x47004a03, 0x7a017503, + 0x05000802, 0xffb80302, 0x100c40e8, 0x03550010, 0x02080205, 0xb8000301, 0x2440c0ff, 0x0c371009, 0x6a001c00, 0x04007a00, 0x0f088d00, 0x03030108, + 0x03650313, 0x03040375, 0x020b0b1c, 0x07820355, 0x5d2be610, 0x5df4105d, 0x3939112b, 0x220d746c, 0x6afd1087, 0x2b21070a, 0x063d6b2b, 0xfe7f0435, + 0x3ffebd3c, 0x015a01cc, 0xfb5d0457, 0xfc5d04a3, 0x82790387, 0x0056269a, 0x04360600, 0x21f8825d, 0x706cbc37, 0x5ab42509, 0x0b0b0607, 0x6c05d656, + 0x0e200b79, 0x20070341, 0x0a796c0c, 0x0d0d052e, 0x004001bb, 0xff08005a, 0x0909b4f2, 0xb8229d82, 0x4445f2ff, 0x0c0c2a06, 0x0655060c, 0x40f4ffb8, + 0x08098387, 0x1d030d3e, 0x2a012c03, 0x25032902, 0x24052604, 0x340b2b08, 0x44053b01, 0x57054b01, 0x59045801, 0x6d0b5705, 0x64046202, 0x64096a08, + 0x790b6b0a, 0x72027d01, 0x7b087404, 0x7a0a7309, 0x1a0c1e0b, 0x0729af82, 0x0605061a, 0x09100900, 0x05706c02, 0x0a220582, 0x716c5506, 0x02053108, + 0x1f060f08, 0x03062f06, 0x0b0b1a00, 0x26005502, 0x002a7683, 0x0e100e8e, 0x0e6f0e3f, 0x8b820003, 0x83b4e021, 0x75088219, 0x0882053b, 0x0d40fa24, + 0xa7820909, 0xad841820, 0x177b8320, 0x5d322306, 0x5976e610, 0x17122205, 0x20088239, 0x099e6c31, 0x002b2b23, 0x0709502b, 0xae670120, 0x13260806, + 0x13013301, 0xddfe3606, 0xfee1feae, 0xdafeade3, 0x1701cdc4, 0xc21e019b, 0xa3fb5d04, 0xa3fc5d03, 0x9ffc5d04, 0x03836103, 0x3c30c782, 0x80040000, + 0x0b005d04, 0x0b411201, 0xffff0100, 0x20084954, 0x080b8709, 0x075ab48b, 0xb80c0c01, 0x76404001, 0x1b0b095a, 0x14031401, 0x27091b07, 0x3c072703, + 0x34013b00, 0x34043403, 0x3b073406, 0x4c0a3d09, 0x44014b00, 0x44044403, 0x4b074406, 0x5a0a4d09, 0x5a035501, 0x5a075505, 0x6f0b5509, 0x69036001, + 0x6f076005, 0x230b6609, 0x0800020f, 0x0830023f, 0x0840024f, 0x0870027d, 0x0a1a0908, 0x1a070a0b, 0x01060506, 0x000b001a, 0x05041a03, 0x05020104, + 0x0609080b, 0xffb80604, 0x101d40e8, 0x04550010, 0x22058318, 0x82040506, 0x06013516, 0x05010d02, 0x040b0802, 0xb8000a04, 0x2240c0ff, 0x06371009, + 0x3308d182, 0x0d0f0d8d, 0x1f0d0f01, 0x5f0d400d, 0x0206040d, 0x16040104, 0x55020b0b, 0x100c8204, 0x325d2bf6, 0xf6105d5d, 0x11322b5d, 0x2f5d3917, + 0x3f3f005d, 0x17122b2b, 0x6c05e555, 0x212210c2, 0xc06c0123, 0x33230806, 0xed800401, 0xc1fec3fe, 0xfeb401db, 0x3b01ed50, 0xfedc3c01, 0xfead0149, + 0x022d0253, 0x015afe30, 0x82dafda6, 0xfe3d2f7b, 0x047f0464, 0x0007005d, 0x0700bcd2, 0xca82feff, 0x40010b26, 0x02055ab4, 0x8307c542, 0x550c2014, + 0x052305ca, 0x420d0c02, 0x072005da, 0x2009de43, 0x05cd4e05, 0x42402508, 0x3406045a, 0x50064406, 0x70066006, 0x03090606, 0x03190507, 0x01460517, + 0x00580349, 0x03790157, 0x1a070209, 0x052d7182, 0x0403041a, 0x04460049, 0x02030002, 0x28528204, 0x01016802, 0x03030201, 0x08144104, 0x000c2008, + 0x004a001c, 0x007a006a, 0x098d0005, 0x0301090f, 0x45041304, 0x75046504, 0x82040504, 0x41e41008, 0x112e0511, 0x2f5d3917, 0x123f3f00, 0x30313939, + 0x016f5d01, 0x6cc02005, 0x233f0c6b, 0x01330113, 0xfd7f0401, 0xfed0c974, 0x5701cc43, 0x5d045a01, 0xd20107fa, 0xc4fc2704, 0x82003c03, 0x005d2d8f, + 0x04e30300, 0x0009005d, 0x0803b36d, 0x20074b7d, 0x07455508, 0x3b402108, 0x3a08155a, 0x4a083503, 0x5c084503, 0x60085403, 0x70037f08, 0x07070a08, + 0x05063e03, 0x3e080202, 0x340a656c, 0x0b1f0b8e, 0x0b5f0b3f, 0x0b7f0b6f, 0x0a840205, 0x105de610, 0x136d6ce4, 0x666c5d20, 0xe303340b, 0x8b027afc, + 0x670383fd, 0x9f0272fd, 0x9d35038b, 0x82c8fc86, 0xad4d0899, 0x590478fe, 0x25001406, 0x38405600, 0x073a1d2f, 0x2356074a, 0x23752367, 0x4a1d3a06, + 0x1c1d021d, 0x0a3f5309, 0x0a020a4f, 0x5114010a, 0x51240112, 0x0f140b01, 0x02004000, 0x20190900, 0x09000e1f, 0x05010540, 0x33335d2f, 0x2f3cfd3c, + 0x9c47182f, 0xfd5d2f09, 0x315d3939, 0x015d0130, 0x35262223, 0x5b183435, 0x35300798, 0x33333634, 0x06222315, 0x06141515, 0x16161507, 0x3e080782, + 0x04333316, 0xdfb39659, 0x3333aba6, 0xb3dfa6ab, 0x7b887296, 0x9a89899a, 0xfe72887b, 0x95bcc778, 0xbf9cbfa9, 0xc7bc95a9, 0xaf8c7e8a, 0x1837bd8b, + 0xaf8bbd37, 0x00007e8c, 0xfe7a0101, 0x82280278, 0x000336bd, 0x0f0f401b, 0x02054f05, 0x0b010102, 0x014f1f00, 0x5d2f0101, 0x056357ed, 0x11298282, + 0xae280233, 0x0778feae, 0x2135829c, 0xf382bb00, 0xf3846720, 0x40694308, 0x35122129, 0x40123102, 0x7a124002, 0x1213060c, 0x253f5300, 0x2502254f, + 0x511b0925, 0x510a011c, 0x001b0b09, 0x00090109, 0xffb80e17, 0x0d0f40fa, 0x0e55020d, 0x0905051f, 0x01204f00, 0xffb82020, 0x1283b5fa, 0x1027202c, + 0x5d2f2bd6, 0x103c3333, 0x07412bfd, 0x06064110, 0x232cf284, 0x32333523, 0x34353536, 0x26353736, 0x41091841, 0x67200706, 0x410f0041, 0x01210516, + 0x120041f8, 0xc78a5008, 0xbfa995bc, 0xbb000100, 0xd1058b01, 0x1f009f03, 0x42405600, 0x09060306, 0x19091309, 0x0a170819, 0x1a191815, 0x1834083b, + 0x1844084b, 0x0a5a035a, 0x1b540d55, 0x05601d5b, 0x1861146e, 0x147a0475, 0x0f171875, 0x0c06541c, 0x161f0654, 0x82002a1f, 0x2a0f2c4a, 0x332f1000, + 0xed5d2fed, 0x82332f00, 0x33ed2107, 0x0620bc84, 0x6306696a, 0x232106b0, 0x07506536, 0x82161621, 0x373c08cd, 0x2902d105, 0x64822e2d, 0x6654925e, + 0x645e325c, 0x2902a709, 0x608a2b2c, 0x5055935d, 0x61673d66, 0x639f0303, 0x584d4bc0, 0x407d664f, 0xbd64c4af, 0x4d5b4a4d, 0xca5b6268, 0xffff00a9, + 0x25055374, 0x26025007, 0x81822400, 0x00072408, 0x012f008e, 0x401a0075, 0x11200313, 0x11401130, 0x11801170, 0x11000205, 0x2507060e, 0x5d352b01, + 0x85030035, 0x08390833, 0x00120001, 0x0021001e, 0x2b4440f4, 0x5a204020, 0x501a5518, 0x6920551e, 0x651a6518, 0x0b18091e, 0x064a0d17, 0x06591246, + 0x02781256, 0x20080377, 0x021f2120, 0x01010187, 0x21378214, 0x50182120, 0x7b3c0800, 0x02127406, 0xb80c5116, 0x6f40c0ff, 0x0c37100d, 0x40213403, + 0x55021010, 0x0d0d4021, 0x2f080583, 0x55020909, 0x21012170, 0x12062021, 0x1c000504, 0x01031c01, 0x11130805, 0x0f500f4f, 0x0f030f60, 0x09401119, + 0x096f095f, 0x230f0903, 0x0f090601, 0x50182482, 0x23201124, 0x0a211b82, 0x24501805, 0x1822200e, 0x220b2450, 0x82ed5d2f, 0x3f002602, 0x125d3f3c, + 0x06ea7917, 0xed2b2f22, 0x142f5018, 0x215d002a, 0x03210323, 0x26260123, 0x2005df63, 0x05f97915, 0x08053178, 0x363233cb, 0x05010113, 0xfd94d35e, + 0x02c99480, 0xcc6b5907, 0x69cb9392, 0x56722c59, 0x55737256, 0xfe367256, 0x01fdfefe, 0x0561fe9f, 0x669f2c7f, 0x8fc2c28f, 0x012aa364, 0x7473562f, + 0x73735655, 0xcb02f1fb, 0x000035fd, 0xfe730001, 0x05460559, 0x004100ec, 0x0a7b40a5, 0x1c2b0320, 0x252b1520, 0x342b220b, 0x340b3302, 0x4302432b, + 0x5d2b450b, 0x5821581f, 0x5e275a25, 0x6002613f, 0x7602702b, 0x162b7026, 0x0b1b0b0b, 0x312d2d02, 0x1a022934, 0x41411d06, 0x0a1d343d, 0x32141010, + 0x0f0f0d0c, 0x09002a17, 0x09200910, 0x1d090903, 0x2c714323, 0x0f437100, 0x430f0143, 0x432f431f, 0x436f433f, 0x23153705, 0x020b0b14, 0x091c2355, + 0x34058209, 0xf6104268, 0x5ded2b2b, 0x3cf4105d, 0x393912e4, 0x33ed5d2f, 0x06e65d2f, 0x822f3321, 0x823f2010, 0x3031210f, 0x2605c369, 0x07060607, + 0x5d151616, 0x35210cf2, 0x13f07c34, 0x8206a04d, 0x66152030, 0x0539099f, 0x48593746, 0x02121a0b, 0x2693bb03, 0x1a092d77, 0x626a325b, 0x2b130202, + 0xa74e1812, 0x09033324, 0x17331303, 0x0c0eaca2, 0x501c0aa2, 0x142d1356, 0x4e180202, 0x25081db9, 0xc800ffff, 0x9d040000, 0x26020108, 0x00002800, + 0x8d000701, 0x75011e00, 0x01b60b00, 0x020d0d00, 0x2b012503, 0x25850035, 0x07380523, 0x202582c8, 0x22258431, 0x868c00d7, 0x0a172325, 0x25870905, + 0xe1ff7026, 0x5007d705, 0x32212582, 0x224b83fd, 0x8296008e, 0x40183125, 0x29000311, 0x29502930, 0x02042970, 0x0f242900, 0x5d215684, 0x20578235, + 0x203182b2, 0x20318429, 0x22578438, 0x8562008e, 0x10022f31, 0x40242024, 0x04246024, 0x1e240001, 0x7d431d0d, 0x26318205, 0x04e1ff68, 0x828c061d, + 0x82442063, 0x00062431, 0x8200e38d, 0x000225ad, 0x261d3736, 0x238f8787, 0x85e84321, 0x37352323, 0x2397231d, 0x85e0d621, 0x34382123, 0x0521478e, + 0x206b88db, 0x3423828e, 0x0316401e, 0x3970390f, 0x39000202, 0x39203910, 0x00043940, 0x21338539, 0xd384355d, 0x53207d85, 0xd7213588, 0x235985e2, + 0x251d3441, 0x07217d8c, 0x292388b1, 0x0000d3db, 0x0203b70d, 0x4a853a00, 0x82353521, 0x006408dc, 0x0359fe69, 0x007704f3, 0x40e80038, 0x4f3a0f4f, + 0x012a023a, 0x2526072a, 0x2f252d2a, 0x0739013b, 0x2d3b2535, 0x014b2f34, 0x2540214f, 0x2f402d4f, 0x25530159, 0x2566016c, 0x2575017a, 0x1b080b15, + 0x27270208, 0x04233f2b, 0x381a0317, 0x1a3f3138, 0x110d0d09, 0x0c0d093d, 0x062a140c, 0xb4d8ffb8, 0x55021010, 0xe4230882, 0x840f0fb4, 0xb4e02308, + 0x08840d0d, 0x4740ec24, 0x09820c0c, 0x201a0625, 0x83403a26, 0x6d3a2026, 0x8d230b52, 0x83062e3a, 0x1b2e2b1f, 0x0b0b0c20, 0x06205502, 0x05820909, + 0x05841020, 0x43830820, 0x83082021, 0x8520221f, 0x22401839, 0x21088408, 0x567e113c, 0x15434306, 0x43064443, 0x26241741, 0x35262627, 0x34191f6d, + 0x031d4d21, 0x2592b705, 0x1a092d74, 0x62683258, 0x1d100203, 0x1a316d19, 0x091f0f33, 0xa21c3913, 0xa00c0eac, 0x584e1a0a, 0x02142e16, 0x16436d04, + 0x00ffff2d, 0x04e6ff6a, 0x028c0660, 0x42480026, 0xfd200577, 0x2305d541, 0x18122122, 0x8f07d541, 0x86432023, 0x20212123, 0xd6212399, 0x234785f9, + 0x00122024, 0x0521478c, 0x206b88db, 0x2b23828e, 0x030d4014, 0x25602530, 0x25000202, 0x5d212a86, 0x24978235, 0x020000a0, 0x20978446, 0x259782d5, + 0xfe8d0007, 0x51830083, 0x05000123, 0x08bf4305, 0x82ebff21, 0x8a91201b, 0xfe432225, 0x23258f97, 0xf5ff0200, 0x25084b82, 0x008c063c, 0x000a0006, + 0x7a3a4093, 0x7a037401, 0x04067405, 0x05030102, 0x05090305, 0x04000808, 0x00010c7f, 0xe954920c, 0x0c0c250c, 0x0755060c, 0x2505ef54, 0x087f041a, + 0xed540801, 0x54088207, 0xff4f06ed, 0x050f5808, 0x280b0850, 0x0909b6fc, 0x88085506, 0x0780720b, 0x92515d20, 0x33e42a05, 0x002f2f5d, 0x332f3f3f, + 0x06004b2f, 0x23012608, 0x13230303, 0x11230333, 0x973c0233, 0xb2938e8f, 0xbcbc13e3, 0x0b011105, 0x7b01f5fe, 0x5d0474f9, 0x00030000, 0x22c58205, + 0x82db052d, 0x07240809, 0x97000b00, 0x01023d40, 0x04604407, 0x050a0401, 0x1a010809, 0x0001007f, 0x05701a04, 0x0d7f0501, 0x920d0001, 0xc4829986, + 0x08550222, 0x0820ca84, 0x0825ca84, 0x097f051a, 0x1bb85501, 0xc155ca85, 0x21ca850b, 0xc8628809, 0x47ca8a08, 0x3f2c0660, 0x39ed5d2f, 0x01303139, + 0x05333523, 0x13200382, 0x2d27cc83, 0x95febdbd, 0x82b5bdbd, 0xc31825cc, 0x25fac3c3, 0xff21c982, 0x06d768ff, 0x2602532b, 0x00005100, 0xd7000601, + 0x05d94107, 0x0e172423, 0x092b4215, 0x7104e124, 0x23828c06, 0x23845220, 0x6d448d20, 0x19192206, 0x0a4f4206, 0x4320238d, 0xd62023a2, 0x1c212386, + 0x21478e18, 0x6b88db05, 0x23828e20, 0x0d40142b, 0x501d3003, 0x0002021d, 0x212a861d, 0xbb82355d, 0x83ff6a21, 0x85bb8373, 0x07054597, 0x4f8a2520, + 0x2382b120, 0xbb845720, 0xbb855820, 0xdf85ee20, 0x10181923, 0x8fdf8712, 0x02432123, 0x18232385, 0x97160918, 0xf8d62123, 0x1b212385, 0x84238e17, + 0x316b85bb, 0x0000fd8e, 0x020f4016, 0x1c501c30, 0x01031c60, 0x2c861c00, 0x355d4608, 0xbb000100, 0x5b048700, 0x0b001406, 0x26403c00, 0x000b0a07, + 0x05060401, 0x080606aa, 0x0f010803, 0x020d1f0d, 0x04026300, 0x0a090807, 0x28020601, 0x03706305, 0x5d2f0301, 0x3917ede6, 0x005de610, 0x39122f3f, + 0x380b822f, 0x25013031, 0x05132313, 0x33030535, 0x5b042503, 0x84056dfe, 0x016dfe05, 0x3b068293, 0x0a049301, 0x0378fc05, 0x05810588, 0x72fe8e01, + 0x02000005, 0xcc029a00, 0xec05bc03, 0x23087582, 0x40280017, 0x650f6a18, 0x750f7a15, 0x54150415, 0x540f0303, 0x2a0c0209, 0x2a120000, 0x33ed2f06, + 0x3f00ed2f, 0x5d200583, 0x14236382, 0x49222306, 0x07210688, 0x4d5b1834, 0x03230809, 0xa9a9e8bc, 0xaaa9e8e8, 0x6686a5e7, 0x63898666, 0x5c048666, + 0xa9e7e8a8, 0xa8e8e8a8, 0x668b8b66, 0x828c8968, 0x9f5f0873, 0x600497fe, 0x1c00c305, 0xcf002300, 0x0a3c5440, 0x2230203f, 0x204f0a4b, 0x015a2240, + 0x016c1153, 0x01791164, 0x1f791176, 0x1d0e2376, 0x3f0d181e, 0x02134f13, 0x170d1313, 0x030c0647, 0x2005050f, 0x401c301c, 0x181c031c, 0x03051c47, + 0x251f250f, 0x21001302, 0x10200920, 0x09550210, 0x820f0f18, 0xffb82505, 0x0d0cb4ec, 0xe0330884, 0x0b0b1840, 0x092f5502, 0x1d000901, 0x04180f0c, + 0x82090803, 0x1e032619, 0xffb80609, 0x078746d0, 0x1740fc23, 0x2715820d, 0x0c0c0a06, 0x20065502, 0x06233183, 0x82090908, 0x051c570b, 0x2bed3328, + 0x2f323917, 0x00822b5d, 0x3c2fed23, 0x052e4c5d, 0x3f2f5d2e, 0xed393912, 0x5d2f3333, 0x3939112f, 0x2805bd55, 0x11231107, 0x34350026, 0xe3751800, + 0x369c080c, 0x05333736, 0x15060611, 0x60041614, 0x7668b447, 0x01fbfee3, 0x6876dd0b, 0x370b41ba, 0xad7873ae, 0x27fe0b33, 0x4a98a287, 0xfe032f1e, + 0x1567019d, 0xf2fa2001, 0x01162b01, 0x03a1fe63, 0x2ccb1f2c, 0xb9fc0952, 0x8529550a, 0xd2144203, 0x00d2b5bd, 0x00890001, 0x058b0400, 0x002100ee, + 0x205c40ba, 0x3215341d, 0x1e03031d, 0x1e251e15, 0x0e530e41, 0x0e63165b, 0x0e730273, 0x05181b09, 0x1f080f46, 0x03084f08, 0x14101008, 0x0c010849, + 0x4a200202, 0x230f0801, 0x1f02231f, 0x0e1b1802, 0x1b3ff483, 0x19050820, 0x05060f06, 0x02040f19, 0x00400020, 0x02000002, 0x020f0f0e, 0xffb80255, + 0x831140f2, 0x1c022323, 0x0f820909, 0x0f0f1423, 0x23158306, 0x0d0db4e4, 0xf2240884, 0x0c0c0b40, 0x18220982, 0x05820909, 0x21053141, 0x78182b2b, + 0x2f31085f, 0x322bfd33, 0x005d3911, 0x3f32fd3f, 0x33ed3912, 0x0691442f, 0x5d015d2e, 0x36352121, 0x35233536, 0x12341133, 0x080b8674, 0x1521113d, + 0x06141521, 0x04211507, 0x76fefb8b, 0xfdb0b067, 0x409869cd, 0x56983e0a, 0x9f018b8c, 0x627c61fe, 0x20cf4503, 0x018ab9bd, 0x0101c836, 0x2ace1122, + 0xfe90a530, 0x7e3d8add, 0x820b39bb, 0xac8e08bc, 0x68047ffe, 0x4300ef05, 0xa9006100, 0x05057f40, 0x0514270a, 0x203e271d, 0x104d4230, 0x3243204f, + 0x105c4240, 0x3251165e, 0x106e0963, 0x32632b6a, 0x5f055211, 0x5f255f20, 0x5b2d5b27, 0x6b425039, 0x65206a1f, 0x6140653d, 0x7c097c42, 0x742b7410, + 0x507b1031, 0x18025f74, 0x29505f07, 0x0d2f063a, 0x3f373333, 0x1111022f, 0x0d0f3f15, 0x0d020d1f, 0x045f1b18, 0x3a330756, 0x2926501b, 0x111a4711, + 0x04073329, 0x01001022, 0x1a560000, 0xf4822f22, 0x17125d27, 0x2f2fed39, 0x20048339, 0x26058212, 0xfd5d2f00, 0x823f2f32, 0x82112003, 0x185d2019, + 0x22081f60, 0x83161615, 0x060622f9, 0x09e96e23, 0x2505ec78, 0x26272627, 0x4a4f3435, 0x11785905, 0x21087759, 0x2e873636, 0x06272622, 0x09865a18, + 0x1617cf08, 0x36361716, 0x63766804, 0x41425861, 0x577cc248, 0x4f0a5ca7, 0xa2866cb4, 0x90292d27, 0x5352d652, 0x54656672, 0xc7404340, 0x5ba85780, + 0x79bd3a0a, 0x2b2ba97f, 0xc85b842b, 0x1cf7595a, 0x1c1d211e, 0x5d272c4e, 0x163e1246, 0x1d1f2618, 0x262c511b, 0x42144360, 0xa26a5902, 0x912e0737, + 0x328a4d5a, 0x1f1b3638, 0x613225c2, 0x19413857, 0x34142517, 0x62815151, 0x300739a9, 0x83515992, 0x1c3a3234, 0x3c1bc21d, 0x4739575c, 0x15251717, + 0xfe4f4f2e, 0x3a4121ab, 0x18174633, 0x150b0c1f, 0x182d0914, 0x3231561a, 0x20171846, 0x13180a0b, 0x00002f0b, 0x01b90001, 0x04a40321, 0x000b000b, + 0x0303b713, 0x06000009, 0xf6100c88, 0x2f002f32, 0x88442f33, 0xa4032b0d, 0xdb9a9adc, 0xdc9a9adb, 0x07849602, 0x82dbdb21, 0x8930083f, 0x520495fe, + 0x0d00d105, 0x24403b00, 0x08610853, 0x050f0102, 0x064f0501, 0x02060601, 0x0f030caa, 0x020f1f0f, 0x04042905, 0x0d0f2902, 0x090d0d01, 0x5d275782, + 0xed2f33ed, 0x823f005d, 0x2f5d2906, 0x30313c5d, 0x1123015d, 0x263f0183, 0x24343526, 0x52042133, 0xce95d694, 0xf30401fc, 0x95fed201, 0x46f9ba06, + 0xf805bc03, 0x82e8cfcc, 0xb951086f, 0x8d04e8ff, 0x36001e06, 0x4140e600, 0x2e152e05, 0x342c132e, 0x34391339, 0x0e493637, 0x21533646, 0x1b7b2166, + 0x1433340c, 0x3c1e153d, 0x002d0315, 0x3d0b0707, 0x08260903, 0x34301b18, 0x060c1400, 0x0602061c, 0x06001b11, 0x25033014, 0xf6ffb800, 0x063a59b4, + 0x1640f633, 0x55020b0b, 0x25389000, 0x020c0c0c, 0x090c2555, 0x21058209, 0xf848261a, 0x25088207, 0x0f0fb4e0, 0x08825502, 0x82052648, 0x069f6908, + 0x2c842620, 0xe8200f82, 0x06202182, 0xeb202183, 0x08845782, 0xa85afc20, 0x06262305, 0x0f820909, 0x78378821, 0x10200d3c, 0x07a46e18, 0x2f5d2f31, + 0xed2f3912, 0xfd3f3f00, 0x123f2f32, 0x482fed39, 0x5d230552, 0x42001401, 0x37280aa6, 0x34353636, 0x32352326, 0x28068142, 0x07062223, 0x11150606, + 0x08937623, 0x14156b08, 0x16150706, 0xfe8d0416, 0x732cdbf1, 0x632a0a24, 0x216e4a38, 0xc6d31f23, 0x1e169a9d, 0x393d581b, 0x2d25285c, 0x3c4048bc, + 0xe5b75eb3, 0xbea4718e, 0xfed6e101, 0xa50d0fdd, 0x313a1218, 0xa64c7f34, 0x817796a9, 0x1d1f4223, 0x24271d23, 0xc1fb5f84, 0xb77c3804, 0xae3b3a3e, + 0x20b27097, 0x00df2509, 0x9f000400, 0x61072eff, 0xd546f005, 0x006e0805, 0x40ad0037, 0x7c0d7c7a, 0x70137011, 0x741a7a17, 0x07367327, 0x23041a0d, + 0x23121a1e, 0x0e2c2814, 0x14221023, 0x1821162c, 0x193f2324, 0x19492336, 0x18522247, 0x10640e6b, 0x166b1464, 0x1a15196a, 0x28182a19, 0x252a2918, + 0x31182825, 0x1d002a1b, 0x1d4f1d10, 0x1d001803, 0x011d9001, 0x1dad0c1d, 0x12000006, 0x1a2806ad, 0x1e3131aa, 0x13824019, 0xaa302208, 0x1d50151e, + 0x0303091e, 0x0209500f, 0x33ed3f00, 0x3939122f, 0x2fed2fed, 0x39123c5d, 0x0139ed2f, 0x8212842f, 0x3371260f, 0x2f3cfd5d, 0x30148239, 0xc0fd1087, + 0x5d013031, 0x10015d00, 0x00202100, 0x20058411, 0x280b8a03, 0x23012307, 0x21112311, 0xa55f1832, 0x34372507, 0x26262726, 0x08fa4a18, 0xfe610725, + 0x829afe05, 0x01052401, 0x826601fb, 0x74fb2501, 0xcafe49fe, 0x49240182, 0x3601b701, 0xb73e0182, 0xb5fedfc0, 0x3801a5a2, 0x3f3b7a5e, 0x2063713b, + 0x461f211c, 0x3e7f9535, 0x191f1d5a, 0x3a8b8f02, 0x31824a83, 0x44febc22, 0x20084184, 0x82bc0144, 0x9dfe6301, 0x1f109303, 0x61496122, 0x24fd2681, + 0x0a111238, 0x1713cbfe, 0x00003c19, 0x0c734103, 0x96003324, 0x71416d40, 0x19792407, 0x41062372, 0x33370765, 0x33243318, 0x442e332a, 0x44244118, + 0x542e442a, 0x54245418, 0x412e542a, 0x6232076f, 0x641d6a18, 0x7f251724, 0x2c180118, 0x0c1e182a, 0x5e411ead, 0x33103705, 0x33023320, 0x1b522f33, + 0x252f251f, 0x29252502, 0x50152152, 0x6441211b, 0x32fd2410, 0x832f5d2f, 0x08644104, 0x2fed3324, 0x5a413c5d, 0x0605271d, 0x24222306, 0x097b3435, + 0x41332012, 0xfe392256, 0x4e9f5672, 0x01f8fee3, 0xac59de0d, 0xa936103e, 0x999f8e59, 0x489d5394, 0x1f544110, 0x27574c08, 0xe1eaf627, 0x1c300201, + 0xab4628b5, 0x3aae9fa5, 0x00020034, 0x061103aa, 0x00d105f1, 0x0016000e, 0x7b23405f, 0x7a057804, 0x02060306, 0x0b010c79, 0x03010d0c, 0x08080604, + 0x10121215, 0x03155013, 0x0f0b280d, 0xffb80b37, 0x821140c4, 0x02360808, 0x07000028, 0xae0f0928, 0xae142810, 0xfde42f13, 0x33ed2fe4, 0x2b2bed2f, + 0x3cfd3f00, 0x17122f33, 0x54435d39, 0x045db458, 0x5d02046d, 0x00303159, 0x1123015d, 0x01820323, 0x11231127, 0x33131333, 0x080e8205, 0x35231146, + 0x7cf10621, 0xef4fed14, 0xbfee7b19, 0x02fce3bf, 0x02e57fe5, 0x02110349, 0x013dfe69, 0x0290fdca, 0x0182fec0, 0xb5fd757e, 0x00754b02, 0x051d0201, + 0x06c30316, 0x0003008c, 0x47164024, 0x66005601, 0x04007600, 0x19d94118, 0x13230136, 0xeffec303, 0x8c06b395, 0x76018afe, 0x5a010200, 0xbe031805, + 0x3406414d, 0x02154026, 0x60014406, 0x00050105, 0x01010f14, 0x01140401, 0x05765700, 0x5d2fed29, 0x5d2f00ed, 0x4c3cfd3c, 0x510809ce, 0xc7c7be03, + 0xc7c763fe, 0xc3c31805, 0x010000c3, 0x1b00f500, 0xfd049705, 0x88001300, 0x12165440, 0x080b0c01, 0x0e030407, 0x02011211, 0x9002800d, 0xb002a002, + 0x29020402, 0x030c0303, 0x1201030d, 0x11075304, 0x0d53080e, 0x010b0f07, 0x0115400b, 0x7f821530, 0x08070425, 0x8212010b, 0x26228217, 0x100d0309, + 0x492f0604, 0x40250512, 0x2f060106, 0x07da485d, 0x39171224, 0x90825d5d, 0xed333325, 0x822f3939, 0x2f322203, 0x05995b2f, 0xc0875d22, 0x10200082, + 0xc02b0382, 0x015d01c0, 0x13230321, 0x84213521, 0x333e0803, 0x21152103, 0x97052103, 0x9968a0fd, 0x0157fe68, 0xd2fd54da, 0x99695e02, 0xfeab0169, + 0x2f025324, 0xb1fe6a01, 0x019c4f01, 0x4f019c0c, 0xfe9cb1fe, 0x020000f4, 0x00000e00, 0xd1056d07, 0xd7820f00, 0x40ea3608, 0x0b03042f, 0x1b041b06, + 0x2b042a05, 0x4a063b05, 0x4d054a04, 0x0b124d06, 0x04031312, 0x06050514, 0x067c0575, 0x0e100a02, 0x020c0c06, 0x01140e55, 0xb4f6ffb8, 0x05f76d0b, + 0x0fb4f425, 0x8255060f, 0x7eea2011, 0x0123059b, 0x840c0c0a, 0x5cec200f, 0x012a0578, 0x01067315, 0x00040b08, 0xa972ffb8, 0x62002006, 0xd620077d, + 0x08078d46, 0x1b40e722, 0x55020f0f, 0x10101c00, 0x00405502, 0x0f000001, 0x64050105, 0x13340314, 0xb80a350d, 0x1340c0ff, 0x23081f83, 0x05130a0a, + 0x34123508, 0x350e0306, 0x00080501, 0x3fed3c3f, 0x3912eded, 0xed2b2f39, 0x0130ed2f, 0x325df610, 0x2305534b, 0xe639172b, 0x3705374a, 0x39392bed, + 0x875d3031, 0xc0c0fd10, 0x215d01c0, 0x03211121, 0x15210123, 0x03830782, 0x23110133, 0xfc6d0703, 0xd4f4fd50, 0x055202cf, 0x0213fd0d, 0x270383ed, + 0xefdb50fc, 0xd4fd2c02, 0x07066118, 0x23027f08, 0xa7fd5902, 0x73000300, 0xda056eff, 0x1d004b06, 0x37002a00, 0x7640fe00, 0x0b000302, 0x120c0d0a, + 0x1c051a0f, 0x0d190311, 0x1a1f121f, 0x02551c15, 0x085a0454, 0x11590d59, 0x1750135b, 0x2a791c55, 0x03090b14, 0x1f1b0618, 0x110b1f0a, 0x261b1618, + 0x752f2709, 0x7f097f03, 0x7f0b7f0a, 0x7012790c, 0x70197018, 0x131b701a, 0x2f2a0206, 0x32042e1e, 0x090c3421, 0x06041b18, 0x34320215, 0x13840a06, + 0x152b2723, 0x21148400, 0xf26a000f, 0xb4e6250a, 0x55020909, 0xe2231182, 0x840c0cb4, 0x40f02408, 0x820d0d28, 0x39732d09, 0x0f01390f, 0x3f391f39, + 0x15270339, 0x12145618, 0x10386824, 0x1b562bf6, 0x82e42005, 0x112b2507, 0xed103917, 0x00270482, 0x123fed3f, 0x82fd3917, 0x5443370a, 0x0ab04b58, + 0x09405851, 0x1a0f0a06, 0x1a031a16, 0x5d2e2e0a, 0x5e4a5959, 0x07022106, 0x2605574a, 0x26132307, 0x18343502, 0x2707e771, 0x16033337, 0x26260112, + 0x2706b047, 0x01171614, 0x01272634, 0x0805ef58, 0x053636ee, 0x5c5963da, 0xc973a1fb, 0xcd849f4f, 0x5c606d65, 0x9a050158, 0x8e52c276, 0x6f65bc84, + 0x90396ffe, 0x42b46e59, 0x3a3b4540, 0x3a3c5c03, 0x913c68fd, 0x3eb76e59, 0xe8024243, 0x61ddfeb8, 0x373a6665, 0x642601e4, 0xb6c42c01, 0x62672101, + 0xc9373768, 0xfe64f4fe, 0x2e3a01d7, 0x4c4e4d2d, 0xe08c93e5, 0x8bb8014c, 0x43fc4be4, 0x4c502e2d, 0x0000e152, 0x00a10003, 0x045f079d, 0x0017007c, + 0x00350026, 0x05544072, 0x15310816, 0x292f1926, 0x3b2c2623, 0x4b1c4434, 0x56025134, 0x5f0a5f07, 0x51135a0e, 0x55185916, 0x6d026330, 0x6916630a, + 0x64246c23, 0x182d642c, 0xaf33af21, 0x0f120603, 0xaf2a0909, 0x0f15af1b, 0x3074187b, 0x002a2702, 0x000c1830, 0x2a1e3799, 0x1036990c, 0xe410edf6, + 0x10393911, 0x2f005ded, 0x33eded3c, 0x3939122f, 0x31260782, 0x015d0130, 0x54180214, 0x02210739, 0x059c4c35, 0x33363626, 0x26051232, 0x2409f14e, + 0x25363637, 0x06344134, 0x16073508, 0x36323316, 0xcff55f07, 0x4f45de85, 0xe2bf8fd3, 0xde86cafa, 0x8dd54f44, 0x68fce2bf, 0x8a60b83f, 0x6e777f9c, + 0x2522397c, 0x76800c03, 0x1e4a8158, 0xbb3c1333, 0x3f081582, 0xfeef9702, 0x979299f5, 0xd60f0194, 0x9a0c01ee, 0xfe959691, 0x757594f1, 0xa6859aa7, + 0x47395e61, 0x47a58601, 0x2c673078, 0x00a67773, 0x00d70001, 0x05b505b3, 0x000f00b6, 0x0e294045, 0x010f5403, 0x0d390082, 0xac085404, 0x400c070a, + 0x11300111, 0x00021140, 0x0d800aab, 0x042a0d01, 0x417e1801, 0x3cf42909, 0x3c5dfd10, 0x3c5d5df4, 0xe42eea82, 0x2f323cfd, 0x313cfd5d, 0x35212530, + 0x03831121, 0x2b056c64, 0xfbb50521, 0xfd1c0222, 0xa61c02e4, 0x32080685, 0xa6019eb3, 0xfd21029e, 0x5afe9edf, 0xfe000200, 0x80050000, 0x06007105, + 0x63000a00, 0x262c0b40, 0x36022901, 0x04023901, 0xe2ffb800, 0x180b2440, 0x821e0337, 0x54093704, 0x00030308, 0x30010c40, 0x020c400c, 0x0a090405, + 0x00000104, 0x6e180140, 0x394508b2, 0x2f332805, 0x2b2bed2f, 0x185d3031, 0x2519b36e, 0x15013501, 0xa2830101, 0xfb800529, 0xfc82047e, 0x83790387, + 0x2f012907, 0x017ce301, 0x96feb7e3, 0x1a260182, 0x020000a0, 0x9b820c01, 0x9b868e20, 0x9b836520, 0x06290028, 0x06390036, 0x9b830104, 0x96822620, + 0x9b860520, 0x01050522, 0x03209b88, 0x6e189b85, 0x9d930c66, 0x14676e18, 0x02829d82, 0x8e289d84, 0x79037efb, 0x820487fc, 0x032d9d83, 0xb71dfe12, + 0x6a016a01, 0xfc1dfeb7, 0x389d8272, 0x006c0001, 0x05a70400, 0x001800d1, 0x1743407f, 0x16181716, 0x14141514, 0x2e038215, 0x0e12150c, 0x0018170c, + 0x18011701, 0x82010014, 0x004f3102, 0x08040001, 0x14060901, 0x0c090c0f, 0x10060f51, 0x20081582, 0x05510213, 0x0b151010, 0x15160018, 0x00080b03, + 0xd0c03f3f, 0x391211c0, 0xc0fdc02f, 0x10393912, 0x200782dd, 0x300c8301, 0xd6c0ddc4, 0x102b875d, 0x0587c100, 0x01c4107d, 0x261a8218, 0x87c410c6, + 0x82082b10, 0x3031250e, 0x21150101, 0x23220186, 0x01862135, 0x01330130, 0xfea70401, 0xfe740140, 0xfe72018e, 0x0685bc8e, 0x3d2f0e82, 0x014c01d4, + 0xfcd10550, 0x8a8a2fb6, 0x82baba8a, 0x032f2604, 0x026dfd4a, 0x08a58293, 0x64febe25, 0x5d046404, 0xe1001500, 0x02081140, 0x050b1405, 0x09054210, + 0x0c0a0800, 0xb8130201, 0x09b4f4ff, 0x83550209, 0x0cb62208, 0x2c08820c, 0xffb8001a, 0x100b40e6, 0x00550210, 0x06ff441e, 0x5746fa20, 0xb4e22107, + 0x2006fd6f, 0x062066e9, 0x1f179227, 0x02176017, 0x06ba6a0d, 0x30830c20, 0x0a1a0926, 0xb4deffb8, 0x08824183, 0x0b40e028, 0x55020f0f, 0x66830c0a, + 0x066e0f82, 0x20088205, 0x825484ee, 0x84f12008, 0x21118654, 0x08825506, 0xf44cf320, 0x0a0a2305, 0x0f820909, 0x4c168821, 0xfd240af4, 0x5d3c2b2b, + 0x82067c73, 0x3939230b, 0xe2653f00, 0x31392506, 0x27232130, 0x08053d45, 0x1123118b, 0x16161133, 0x37363233, 0x64043311, 0x813b0ab2, 0x427f565b, + 0x9b20bcbc, 0x36855d5b, 0x4a4176bc, 0xf3fd4046, 0xbafcf905, 0x3c435227, 0x00004003, 0xff950002, 0x057904e0, 0x002200ef, 0x40660031, 0x15021548, + 0x292e161b, 0x311b2404, 0x411b350a, 0x561b430a, 0x561a550a, 0x5620501f, 0x661a642a, 0x632a641e, 0x701b752e, 0x060f142e, 0x0c0c3f26, 0x19191d06, + 0x021d3f15, 0x0a063f2c, 0x29230f1a, 0x091a1412, 0x14290000, 0x064b4c09, 0x39391126, 0xed3f002f, 0x23054e50, 0x12ed2f39, 0x5d22af82, 0xef451401, + 0x06da4a06, 0x2d059e4d, 0x23070622, 0x33363635, 0x16171632, 0xce440316, 0x0495080d, 0x55524e79, 0xf3c071cb, 0x5aca0d01, 0x02024f9f, 0xb74e989e, + 0xc9510b4e, 0x3ecd8960, 0x3ccb1d2a, 0xa88d4898, 0xa3807087, 0x030b0622, 0x98fea445, 0xfd627c7b, 0x2101e4cb, 0x3b1a4134, 0x3fcad91a, 0x2d2cc237, + 0xce567c6d, 0x362fc4fe, 0x9991aab6, 0x5021bec2, 0x00010000, 0x0543ffbb, 0x00d10559, 0x40a9000c, 0x0f03016a, 0x8b0b4508, 0xd303d903, 0x0801060b, + 0x032b0b01, 0x0b320832, 0x0a66035d, 0x03080b60, 0x09080302, 0x0304b308, 0x0a0b0304, 0x0202b30b, 0x25119203, 0x010a6103, 0x2382070a, 0x0a072f08, + 0x0c0c0204, 0x0a090302, 0x01096b0a, 0x02020409, 0x04090304, 0x0535080b, 0x0b350103, 0x3fed2f00, 0x391711ed, 0x5d2f2f2f, 0x39122f33, 0x05822f01, + 0x312d0e87, 0x7a108730, 0x01c087ed, 0x87ed1087, 0x8b068308, 0x5d2d080d, 0x35210571, 0x21350101, 0x15012115, 0x59052101, 0xa10262fb, 0x6d0469fd, + 0x880285fc, 0xb40366fd, 0x9c02bfbd, 0xb0bc7702, 0xfd48a7fd, 0x24e38373, 0x053fff90, 0x3ae382fc, 0x4087000b, 0x05070312, 0x0a350900, 0x7f007002, + 0x14040209, 0xb8015a00, 0x49b4f2ff, 0xde2a067b, 0x0d0d1d40, 0x08015506, 0x05820c0c, 0x09091a34, 0x016f5506, 0x0102017f, 0x14050d01, 0xb8085a09, + 0x2a84e0ff, 0xe7210882, 0x822983b4, 0x05087308, 0xe6220882, 0x30830c40, 0x60080027, 0x03087008, 0x05414908, 0x11ede423, 0x29098733, 0xfd3f005d, + 0x3c2f3c3c, 0x314e3031, 0x23113505, 0x21352311, 0xc6c8fc05, 0xc8c6b0fd, 0x23056c05, 0xe4051cfa, 0xae300383, 0x71000100, 0x41050000, 0x0b005d04, + 0x0d407700, 0x3e26b584, 0x1a04050a, 0xb082b000, 0x8584ee20, 0xfa200882, 0x08828584, 0x1240dc22, 0x0620b384, 0xae838283, 0xb0091a22, 0xb9439382, + 0x20088205, 0x05554afa, 0x830b0821, 0x210f8225, 0x2883b7ee, 0x01081022, 0x2b20a78b, 0xe4210082, 0x2ca595ed, 0xfebcca41, 0x04cabc3c, 0xfcbf03d0, + 0x20038541, 0x08a5829e, 0x59fe8a27, 0x1e069004, 0x52002100, 0x00001840, 0x001e4004, 0x40151111, 0x230f0d0d, 0x0002231f, 0x1a090010, 0xffb81910, + 0x82b084ed, 0x85d82008, 0x1c192187, 0x0f828783, 0x2105c07d, 0x79822f19, 0xfd332b24, 0x397d2f32, 0x2d0a8207, 0x23013031, 0x22232626, 0x11150607, + 0x76530714, 0x3735080a, 0x34113536, 0x32333637, 0x90041716, 0x2073200a, 0x68353481, 0x6d34bc69, 0x6c210a31, 0x34358122, 0x3abd6868, 0x57053666, + 0x3d3d1508, 0xce9dfb95, 0x0a0b6e6d, 0x230c84b2, 0x6fcc6304, 0x57080c82, 0x00020000, 0x03130297, 0x00f005b0, 0x00300023, 0x0a374057, 0x1b21060a, + 0x2e211609, 0x55212509, 0x600e6029, 0x700e7029, 0x08020b29, 0x11115225, 0x1c1c0820, 0x02205318, 0x532e0101, 0x111d0608, 0x1d2a0225, 0x2a2b000b, + 0x332f0b00, 0x39122fed, 0x2f3232fd, 0x33ed3f00, 0x43063654, 0x012206e7, 0x4d18015d, 0x36200e1e, 0x111e4d18, 0x35031522, 0x0a1b4d18, 0xb0035008, + 0x2c311caa, 0x8049512d, 0x4e4d5daf, 0x212488ef, 0x54305722, 0x2d0e27a8, 0xbed94db8, 0x36b745aa, 0x5e5b4e40, 0x2a028352, 0x1325145e, 0x84aa1514, + 0x2424876a, 0x3512061f, 0x0a121340, 0x0dac0e30, 0xfe9fa920, 0x1004f574, 0x444d120f, 0x83434c4c, 0x827920e9, 0x51e420e9, 0x22080677, 0x5d204031, + 0x52055d01, 0x040b5207, 0x15650f6a, 0x09530f02, 0x03531502, 0x402a0c06, 0x12000100, 0x6306002a, 0x3f260679, 0x5ded3fed, 0x70493031, 0x056a4905, + 0x56581220, 0xe427080c, 0xedc9c1f4, 0xf4c1c9ed, 0x7a7887b6, 0x787a8686, 0xeb010487, 0x0901fdfe, 0x0a01e5e5, 0xacebfcfe, 0xaaaaaeac, 0x8200abad, + 0x006b2456, 0x82210600, 0x27410881, 0x4940f100, 0x0d090909, 0x0d1a091a, 0x0d2c092c, 0x05300334, 0x13341130, 0x13460346, 0x1d641a6a, 0x246a2164, + 0x14251910, 0x0b160402, 0x26021f34, 0x16013518, 0x02122508, 0x02101016, 0x0f0c0255, 0x2105830f, 0x05820d0c, 0x14121927, 0xb4f4ffb8, 0x8417820f, + 0x82148308, 0x40f82e08, 0x0209090c, 0x15081455, 0x271c1402, 0x21228222, 0x35831140, 0x0d2e2222, 0x22253582, 0x020c0c1a, 0x22158355, 0x840b0bb4, + 0x6ae02008, 0x22290584, 0x150e2922, 0xffb81c17, 0x825184ea, 0x05a74608, 0xf6200882, 0x21056457, 0x3183041c, 0x83081c21, 0x2f1c225d, 0x2300832b, + 0x3311edc4, 0x12230986, 0x83ed3939, 0x3004850a, 0xfd3c3f00, 0x12ed3f3c, 0x30313917, 0x1121215d, 0x80831836, 0x05e46109, 0x21111728, 0x26352135, + 0x47523502, 0x14200805, 0x21150702, 0xa4fd2106, 0x2f2d8443, 0xe2e2f838, 0x2f2f3af8, 0xa4fd447f, 0xd9a8b401, 0x36017201, 0xcb080182, 0x01a8d972, + 0x278501b4, 0x993a375a, 0xfdfdc870, 0x389e6ec8, 0xfe275739, 0x587cae7b, 0x01cc3201, 0xfe5a0116, 0xcceafea6, 0x7c58cefe, 0x68000300, 0x3f07e3ff, + 0x39007c04, 0x52004300, 0x73405301, 0x1d0b190b, 0x0426191c, 0x04360d20, 0x3d380d32, 0x04424134, 0x3d4a0d42, 0x0d524142, 0x4b553752, 0x37610d63, + 0x16134b65, 0x512a4b1d, 0x7b2e622e, 0x7c137e0d, 0x73247d1e, 0x7c38732e, 0x01470b4b, 0x4370213c, 0x43124301, 0x18300333, 0x04363d40, 0x3f282c2c, + 0x0b0b0430, 0x0a0f3f07, 0x0a184150, 0x1a013a43, 0x21124447, 0x47000433, 0x2d012d0f, 0xb83a0c0c, 0x0e40f6ff, 0x55020c0c, 0x47001a3a, 0x0210100c, + 0xffb84755, 0x0f0fb4ec, 0xe0230884, 0x840d0db4, 0x85ec2008, 0x0a472324, 0x0f820b0b, 0x001b2d26, 0xb4f8ffb8, 0x08822d83, 0x2d84ee20, 0xd6220882, + 0x2e830b40, 0x08ca4d18, 0xb741f220, 0x8f002605, 0x01544054, 0x2031824d, 0x281e83b7, 0x1b001b4d, 0x40faffb8, 0x213e831f, 0x50830c1b, 0x091c1b27, + 0x1b550209, 0x211e8314, 0x8d83061b, 0x53851b22, 0x26065948, 0x5d2bed32, 0x832be410, 0x39112200, 0x35078439, 0x332bed10, 0x2f5d2f2f, 0x2f391712, + 0x003911fd, 0xed3fed3f, 0x03852f33, 0x14831120, 0xfd335d23, 0x05b44d32, 0x18142121, 0x2107557b, 0x7f481533, 0x18062005, 0x281f0a51, 0x32333636, + 0x26271512, 0x06c26626, 0x26260322, 0x080bfd43, 0xfc3f07af, 0x34373ccd, 0xd56f568e, 0xd54e0c42, 0x4ceda66d, 0x3f325c15, 0xd3967394, 0x015f656c, + 0x292ea224, 0x4f3c7028, 0x370d5ab3, 0xd39f65ce, 0x7dca4539, 0x05b6fbd9, 0x6d222025, 0x19b4854f, 0x69151491, 0x614f52c0, 0xc1637674, 0xa2722f02, + 0x532d3034, 0x3b23cd34, 0x50136768, 0xc22f241c, 0x2a997c98, 0x3d031c27, 0x17175541, 0xbf242a11, 0x5b5d260f, 0x00ff6852, 0x66443efb, 0x962c2725, + 0x356bfe8c, 0x09034b84, 0x535b1415, 0x00565c5f, 0xff5d0003, 0x0471046c, 0x001700d9, 0x002b0021, 0x003f40ef, 0x0a140f08, 0x04262919, 0x25001800, + 0x21048402, 0x06831409, 0x321d3d3e, 0x421d4d2b, 0x0206072b, 0x25182621, 0x3e1b2904, 0x15120906, 0x040f0304, 0x0a033e29, 0x1e291384, 0xf8ffb822, + 0x020909b4, 0x24088255, 0x0c1440f4, 0x2309820c, 0x0609001b, 0x0c202782, 0x7a050c7f, 0x3f250d83, 0x55021010, 0x05837a00, 0x0f2d902c, 0x3f2d1f2d, + 0x042d6f2d, 0x4383041e, 0x830c1e21, 0x1b1e293f, 0x0b0b160c, 0x180c5502, 0x0c211383, 0x23138308, 0x0d0d040c, 0x85211182, 0x05e6412c, 0x412bed21, + 0x112307e5, 0x82103917, 0x12994f0d, 0x58510c2a, 0x391308b5, 0x2e130213, 0x2d05944f, 0x5d015d5d, 0x23001001, 0x07272622, 0x6e621323, 0x33372508, + 0x25161607, 0x4f079b49, 0xa7080a8d, 0xe8fe7104, 0x3b8f54eb, 0x4bab6e85, 0xed170153, 0x74368e57, 0x544c9b6f, 0x6325bcfe, 0x22aa9b37, 0x23440223, + 0x2740fe22, 0xae963b5f, 0xeffe2e02, 0x272ac4fe, 0x4d0001c6, 0x110193e2, 0x232c3d01, 0xe04ce7ac, 0xdc1d1ddc, 0x369461d2, 0x98612b01, 0x1f61fd36, + 0x0000d91e, 0xff710002, 0x05be03e2, 0x000300d1, 0x406d0020, 0x1f220f4c, 0x1e130222, 0x053a1e23, 0x054b143a, 0x0e400d40, 0x16430f40, 0x0f52055c, + 0x0e65056f, 0x057a1a65, 0x1210097a, 0x1301137f, 0x01120710, 0x20030355, 0x07341c20, 0x032b020a, 0x701f1003, 0x132f1682, 0x0104200a, 0x04151904, + 0xed332f0a, 0x66125d2f, 0xed2d05c9, 0x32fd3f00, 0x33ed3f2f, 0x5d393912, 0x05e1422f, 0x33352324, 0x545e0613, 0x36372606, 0x33353736, 0x0aab4611, + 0x33373808, 0xccccc802, 0x70ba53f6, 0x3b45f9d7, 0xb3449d3a, 0x362e9e3c, 0x67799944, 0x040a39c5, 0x57fad3fe, 0xabd1281e, 0x3e3e9662, 0xfee12965, + 0x286121cf, 0x714e7c2f, 0x8225426f, 0x230121d5, 0x03200482, 0x0727d584, 0x17402700, 0x82000707, 0x080538a9, 0x0401090f, 0x052b035d, 0x20020f5d, + 0x2f020202, 0xe4fde45d, 0x823f005d, 0x20928296, 0x2a8f8301, 0x01331323, 0x0accccf9, 0x83aa1ae0, 0x042f3263, 0x00010037, 0x053900d2, 0x00fa02b0, + 0x40290005, 0x21598218, 0xe1820f54, 0x0107402a, 0x07400730, 0x402a0102, 0x00282282, 0x2f332f04, 0x5d5ded5d, 0x3205df5b, 0x23253031, 0x21352111, + 0xfbabb005, 0x39de04cd, 0x82a02102, 0x86290824, 0xc90669ff, 0x0800fc06, 0x2c404a00, 0x07330715, 0x07720744, 0x08070704, 0x02031406, 0x09070203, + 0x59082908, 0x04086908, 0x352c8208, 0x04000101, 0x06065103, 0x08020807, 0x122f2f00, 0xed2f3939, 0x65822f01, 0x87303131, 0xc05ddd10, 0xfd1087c0, + 0x5d00c008, 0x82230101, 0x217808b9, 0xc9060101, 0xfe6690fc, 0x8901ed80, 0xda023901, 0x6df8fc06, 0xfc8be103, 0x005c06cb, 0xffdcff01, 0x05000537, + 0x002b00ef, 0x074d4077, 0x2e1f000b, 0x270c2708, 0x29212e0f, 0x300d3525, 0x410e400f, 0x6622590f, 0x0e0c6607, 0x07080b0c, 0x211e1d20, 0x0f221d22, + 0x022d1f2d, 0x1d202009, 0x16040922, 0x080b1600, 0x2121461e, 0x00001228, 0x02284904, 0x491a1616, 0x12011200, 0x820bcf5c, 0x393922a1, 0x2ba48230, + 0x2f391712, 0x10875d2f, 0xfdc0c0c0, 0x31220382, 0x25780130, 0x21072408, 0x6b032115, 0x3521086a, 0x054f4d33, 0x35231324, 0x706b3733, 0x05860808, + 0x721d0a00, 0x237e7929, 0xfe41012a, 0x5c1d67a3, 0x5c984140, 0x0a345029, 0x7f2c5e21, 0xd9672381, 0x5c1a2af5, 0x57993e3e, 0x05344f3a, 0x771a0a29, + 0xfe8ac2a0, 0x34b08616, 0x09072a35, 0x80140eb4, 0x8aea01a7, 0x33a87bc6, 0x080a2c33, 0xf3000200, 0x9805ca00, 0x19005004, 0x6d003300, 0x010a4940, + 0x0e050606, 0x1b0a1308, 0x28052006, 0x045b2d08, 0x1e5b1152, 0x0b682b52, 0x0b793264, 0x27103274, 0x1d543027, 0x0382231a, 0x2a002e08, 0x0d0d2a01, + 0x00035416, 0x032a5409, 0x29191000, 0x29330000, 0x0d290c1a, 0x271a2926, 0x3ced332f, 0x33ed2fed, 0x2f00ed2f, 0xed333333, 0x210b832f, 0x09875d2f, + 0x5d303122, 0x23216982, 0x078e4522, 0x7d4d2320, 0x32332307, 0xf9423736, 0x26272605, 0x06222326, 0x08198c07, 0x149705ae, 0x8c4d9eb6, 0x2c684138, + 0x9b1c544b, 0x489fb317, 0x6b3d3b8e, 0x13594c2d, 0xa3ae199e, 0x27399048, 0x564e2e80, 0xb7139d14, 0x3a8a4d9e, 0x4b367c23, 0x50041b54, 0x2d4bc6c2, + 0x7c603734, 0x2e4ac4b6, 0x7d6d3b30, 0xc3b8fcfd, 0x4c1f2d4b, 0xc8c07c6e, 0x4f1c2e4a, 0x02007a63, 0x00003200, 0xd1059e05, 0x06000300, 0x31404f00, + 0x03470248, 0x6a055a02, 0x04050205, 0x0300001a, 0x01011a06, 0x36023902, 0x64026b03, 0x75027b03, 0x03020603, 0x00000305, 0x01050108, 0x54060302, + 0xed2f0001, 0x0139123f, 0x2f33112f, 0x315d3917, 0xfd108730, 0x22080282, 0x5d00c004, 0x21215d01, 0x02092101, 0x94fa9e05, 0x08013202, 0x50fe2701, + 0xd10551fe, 0x7b04d7fa, 0x820085fb, 0x00a6397b, 0x047a04a2, 0x00060076, 0x4059000d, 0x73057310, 0x4004020c, 0x0b37100c, 0x06240483, 0xb3c0ffb8, + 0x0d200c82, 0x40210782, 0x2008821b, 0x3ba48203, 0x070a0a07, 0x01000504, 0x0c000001, 0x0740080b, 0x08070701, 0x5d2f332f, 0x33393912, 0x06820782, + 0x06850020, 0x312f2f24, 0x00822b30, 0x80180120, 0x405208eb, 0x04290805, 0x02f0fd7a, 0x019bfe10, 0xfd52fe65, 0xfe2602da, 0xbf73018d, 0x0155a301, + 0xeffebca2, 0x01d9effe, 0xbd0159be, 0xfedafec4, 0x20a183da, 0x20a182ae, 0x26a18682, 0x7c104057, 0x8a0a7c03, 0x860220a1, 0x820920a1, 0x1a402107, + 0x0c2ba182, 0x05080c08, 0x03040105, 0x82004001, 0x0a0123a1, 0xa182080b, 0x3321a082, 0x8699822f, 0x21a083a7, 0x9f893939, 0x98820120, 0x05200282, + 0x04270685, 0x01dafd82, 0x828dfe73, 0xfd3c2299, 0x08a582f0, 0x10029b23, 0x42fe6002, 0x012601c4, 0x43fec426, 0xbc5dfe57, 0x11011101, 0x005efebc, + 0x00b20003, 0x00da0500, 0x067166df, 0x14402539, 0x06020105, 0x09550a04, 0x012b0008, 0x052b0401, 0x092b0805, 0x8433ed2f, 0x3f002702, 0x313917ed, + 0xff652130, 0x83052006, 0xccda2407, 0x85d2fdcc, 0x83df2003, 0x6eff2000, 0x08210699, 0x08996e01, 0x6400432d, 0x0b007501, 0x0c0002b6, 0x6400050e, + 0x1a2007f9, 0x5e227982, 0x2588c807, 0x3300d722, 0x18212586, 0x2425890b, 0x05e1ff73, 0x282584da, 0x01000032, 0x00d70007, 0x2125868b, 0x8c6b2431, + 0x00560805, 0x78000200, 0x1c080000, 0x1600d105, 0xd0002500, 0x1c001a40, 0x1c302200, 0x1c402230, 0x04722240, 0x1c720a72, 0x23721d74, 0x1135140b, + 0x40c0ffb8, 0x020f0f23, 0x01111155, 0x35103418, 0x3417030d, 0x08013515, 0x0c041411, 0x1455020c, 0x10041714, 0x17550210, 0xc749ffb8, 0x20088205, + 0x05c749f6, 0x83121721, 0x230f8220, 0x0b0bb4fa, 0xf6242184, 0x060f0fb4, 0xef202a83, 0x09822183, 0x0c0c1122, 0xfb240f84, 0x09092440, 0x172b0982, + 0x0703120e, 0x1f277300, 0x83120715, 0x16072733, 0x55020909, 0x48830607, 0x2668072e, 0x2b2bf610, 0xe610ed2b, 0x2f391711, 0x02850982, 0x322bfd25, + 0x58ed3f00, 0xc46e05dd, 0x21212406, 0x57272422, 0x36210663, 0x08c05833, 0x57110521, 0x16370963, 0x1c083316, 0xfec4cefb, 0xb39167fd, 0xf94f98ae, + 0xfd2e04e8, 0x83fb0205, 0xfc860803, 0xb5927a40, 0x7181745f, 0x92d05b6d, 0x015b4136, 0x01d7cf46, 0x4433603c, 0xb068feb0, 0x0404d7fd, 0x42362079, + 0xeeababf8, 0x00283944, 0x6a000300, 0x7607e1ff, 0x24007c04, 0x37002b00, 0x57400c01, 0x0d200426, 0x0d300432, 0x2e3b2932, 0x34323032, 0x0440363b, + 0x29400d40, 0x30402e4d, 0x364d3440, 0x14530d53, 0x1a5c165c, 0x22531c53, 0x1c620d62, 0x0d702262, 0x011b2272, 0x1e122b3c, 0x280f032b, 0x2f04213d, + 0x784b1b3f, 0x3f352c06, 0x121e0a15, 0x2c1a012b, 0x53f0ffb8, 0x2c2505bd, 0x020c0c1e, 0x320f8255, 0x0b0b40fc, 0x7f55020b, 0x0c2c012c, 0xffb8250c, + 0x831040f8, 0x1a252b19, 0x00182c00, 0x020f0f08, 0x14820055, 0x2008eb58, 0x822c83b4, 0x40e42411, 0x82090933, 0x398f261b, 0x3201393f, 0x210b8304, + 0x38830c32, 0x181b3223, 0x21238316, 0x13831818, 0x83081821, 0x04182713, 0x55020d0d, 0xff588518, 0x492b2005, 0x39200a69, 0x2506484b, 0xfd2b2b2b, + 0x474b3932, 0xed3f2909, 0x2f391712, 0x013031ed, 0x10905518, 0x1e6f2220, 0x11002105, 0x4b05d96b, 0x2323082b, 0x4e070622, 0x80080b78, 0xdcfc7607, + 0x8d34343c, 0x46cd6d52, 0x69bf620c, 0x454ae8a8, 0xfee983d1, 0xe31701ef, 0x4744c88c, 0xece18fd7, 0x8d9103b7, 0xb810af8b, 0xa09993a4, 0xa59292a7, + 0x98681b02, 0x4f2f3131, 0x342acd38, 0x786f687a, 0x11013c01, 0x39011501, 0x816a7279, 0x2aeff4fe, 0x92a49b9b, 0xe0d5d77d, 0xd5d7d4cc, 0x99000100, + 0x7d043c02, 0x0300dc02, 0x0c401800, 0x00025401, 0x050f0500, 0x0202051f, 0x33115d2f, 0x465f182f, 0x7d042908, 0xe4031cfc, 0x00a03c02, 0x07213385, + 0x21338467, 0x3285b611, 0x0d735f18, 0xf9670725, 0x83ce0632, 0xff02282c, 0x03e503ed, 0x82140616, 0x0007315f, 0x1802b552, 0x0137100d, 0xb3e8ffb8, + 0x00370c09, 0x40250782, 0x37100909, 0x20158306, 0x20158605, 0x21078204, 0x15821340, 0x0500012e, 0x02050501, 0xb1000106, 0xb1040202, 0x21070268, + 0x4c5f333c, 0x05f64205, 0x01230124, 0x03830333, 0xfe861625, 0x83eff0f1, 0xe5032c04, 0xd1fd2f02, 0x00002f02, 0x82960002, 0x86bf207d, 0xb950277d, + 0xe8ff0400, 0x81820e40, 0x82180521, 0x1806217e, 0x83846482, 0x12822020, 0x12830120, 0x12830220, 0x03217785, 0x2b778607, 0x06010600, 0x33ed5d2f, + 0x3f00ed2f, 0x01237b8e, 0x82231323, 0xbf032603, 0xa586f1fe, 0x210483a4, 0x79831406, 0x01207d85, 0x0121fb83, 0x207d8486, 0x20f9922e, 0x23e3840d, + 0x02010101, 0x5e836983, 0x2f5d3325, 0x82013031, 0x820120d8, 0x860125d1, 0xf4f1fe8a, 0x0023cc83, 0x82a00001, 0x84392007, 0xb92f2749, 0xe8ff0000, + 0xb28e1a40, 0x03204682, 0x00234682, 0x82020102, 0x3f0021ac, 0xa0824a89, 0xfe390225, 0x85a58af1, 0x00002a9b, 0x00d20003, 0x05ba0507, 0x31098211, + 0x000b0007, 0x00294041, 0x560b010b, 0x5404ac08, 0x48820f07, 0xac025623, 0x0a98180f, 0xab043c0a, 0x052d0b00, 0x0a4001ab, 0x5d2f0a01, 0x3cfde43c, + 0x005d5de4, 0xedf45d2f, 0x82fd105d, 0x27b28204, 0x01331123, 0x01213521, 0x22080782, 0xeeeebd03, 0x18fbfd01, 0x03fee804, 0xfe03eeee, 0x2bfd1301, + 0x012bfda0, 0x00020013, 0x05c8ffac, 0x845405e0, 0x40573b77, 0x4704483b, 0x57045806, 0x67046806, 0x70047f06, 0x057f0806, 0x07020770, 0xc9820005, + 0x03300339, 0x03900360, 0x00b20304, 0x60023002, 0x04029002, 0x0120b202, 0x82020604, 0x02530847, 0x332f1901, 0x2f2f1833, 0x00393912, 0xfe191a2f, + 0x115dee5d, 0x30313917, 0x095d015d, 0xfde00507, 0x0266fd66, 0xfebd019a, 0x0143fe43, 0xfd8e02bd, 0x02c6023a, 0x013afdc6, 0xfe23fedd, 0xffff0023, + 0x64fe3d00, 0xdb057f04, 0x5c002602, 0x06010000, 0x6bdd8e00, 0x10250519, 0x700e600e, 0x237f820e, 0x00040b0e, 0x26087f71, 0x04000006, 0x825007e6, + 0x003c342d, 0x00070100, 0x01edff8e, 0x40190075, 0x0e000213, 0x84500e40, 0x01052b33, 0x05090e00, 0x352b2500, 0x2482355d, 0x009aff27, 0x054b0300, + 0x2ceb82d1, 0x3811401d, 0x68034803, 0x69016500, 0x3c268203, 0x02000003, 0x002f332f, 0x30312f3f, 0x01015d01, 0x4b030123, 0x03a5f4fc, 0xfad1050c, + 0x0831822f, 0x0000019c, 0xca04e5ff, 0x3300ec05, 0x9340da00, 0x02010458, 0x03012fb5, 0x02011db8, 0x18471837, 0x18671857, 0x18e71877, 0x010718f7, + 0x004a003a, 0x006a005a, 0x00fa007a, 0x062c0306, 0x09982950, 0x0f230901, 0x12f72050, 0x18120801, 0x58122812, 0x12000412, 0x18150312, 0x19011927, + 0x15341d19, 0x33280002, 0x33330101, 0x0a03342f, 0x02012027, 0x2c292023, 0x120f0004, 0x26040609, 0x182a080c, 0x032a282a, 0x21212a00, 0x7100180c, + 0x07341035, 0x15263407, 0x0b0b160c, 0x200c5502, 0x05820909, 0x1034683c, 0xed2b2bf4, 0x102f3912, 0x3cf6103c, 0xc42f3911, 0x12115d5f, 0x17113917, + 0xb5665f39, 0x5d5f2905, 0x33ed3f33, 0x11335d2f, 0x5f262582, 0xfd3c5d5d, 0x0483dd3c, 0x855d5f21, 0x30313301, 0x06255d5f, 0x00222306, 0x33372303, + 0x34352626, 0x08823736, 0x69001221, 0x042a0980, 0x21072107, 0x14150606, 0x08821716, 0x33041633, 0x33373632, 0xb96cca04, 0x83fef37e, 0x4b2c8631, + 0x08008202, 0x5d2c7761, 0xf374013a, 0x1054bf8d, 0x9d7cc650, 0x013000ff, 0x3cfe2cdb, 0x02020302, 0xfe2c7c01, 0x080131c4, 0x44b29d96, 0x26333e0f, + 0x04012e01, 0x162f1576, 0x7618341a, 0x28010101, 0x41d12d29, 0x76b1cf3d, 0x171a3418, 0xb676152e, 0x003d3fd1, 0x00ba0001, 0x04e002ac, 0x0006006c, + 0x7209402c, 0x4a040105, 0x402d070e, 0x37100c0c, 0x04000303, 0x00000105, 0x09ef4901, 0x2b303123, 0x08e8492b, 0x49e00221, 0xac2a07d7, 0x0159b401, + 0xe7fec7b3, 0x5582e7fe, 0x5582c220, 0x5587e820, 0x85037d21, 0xb8022355, 0x5584c0ff, 0x66820520, 0x55930320, 0x21069e49, 0x9749e802, 0x02470807, + 0xc74cfe60, 0x19011901, 0x004dfec7, 0x44000200, 0x53040000, 0x03001e06, 0x1c011e00, 0x100b2140, 0x1a60103a, 0x01041a74, 0x15030244, 0x113f1915, + 0x3e0a0700, 0x05050d1d, 0x140b0809, 0xb8056001, 0x0cb4f4ff, 0x8255020c, 0x54f62008, 0x052f053c, 0x0460001a, 0xb8040a14, 0x10b4eeff, 0x82550210, + 0x40d02408, 0x820f0f1d, 0x0d0a2209, 0x2005820d, 0x232f832a, 0x0b0b0a04, 0x0a220b82, 0x21840909, 0x0b40ec27, 0x55060f0f, 0x82218204, 0xffb82605, + 0x091f40f0, 0x22098209, 0x711d2092, 0x1a240c23, 0x160a0d0b, 0x5728245b, 0x0a200537, 0x40298982, 0x060d0d18, 0x0c280a55, 0x2005820c, 0x285a8307, + 0x100d400a, 0x1f890a37, 0x825e1810, 0x3232270a, 0x322b2bfd, 0x0149e610, 0x39112308, 0x1282e410, 0x2f2fe429, 0x3f3c3f00, 0x4f32fd33, 0x312a05e5, + 0x015d0130, 0x03333523, 0x5b181123, 0x8e760da0, 0x155a0806, 0x53042115, 0xbc11d0d0, 0x7fbcf9fd, 0x3eb7c87f, 0x1c0a2965, 0x6a79226a, 0x1805c902, + 0x0325fac3, 0x033efcc2, 0xc1319ebf, 0xaa070dcf, 0x8c6b1408, 0x00010028, 0x04000044, 0x001e0647, 0x4012011a, 0x7a076c19, 0x1a190207, 0x3e051a19, + 0x0f0c0016, 0x0512093e, 0x10080e01, 0x6f41010a, 0x2c088207, 0x090a40f6, 0x01550209, 0x0f0a001a, 0x076d4100, 0x6d410882, 0x0a002906, 0x55020d0d, + 0x0c0c2a00, 0x0a220582, 0x05830b0b, 0x21822f83, 0x83066d41, 0x55062121, 0x6d410f82, 0x92002506, 0x0c0c091c, 0x0c202383, 0x022e0082, 0x101a0c55, + 0x10160f12, 0x0f550210, 0x925cffb8, 0x840f2006, 0x5c0f821f, 0x08820592, 0x8205ea55, 0x056d4108, 0xec240882, 0x060d0db4, 0xf0203383, 0x23055659, + 0x0909080f, 0x40250f82, 0x0f37100d, 0xfa551889, 0x1370410c, 0x2b2bed22, 0x2d096e41, 0x2f3333ed, 0x5d30312f, 0x26112321, 0x5d182326, 0x5a081313, + 0xbc470437, 0xa2358b2b, 0xfe490185, 0x7f7fbcbd, 0x9045dee9, 0x6d05bc2c, 0x8c6c0c08, 0x41fc9e2c, 0x319ebf03, 0x040ed1bf, 0x01000008, 0x7c00bb00, + 0x14065b04, 0x57001300, 0x0e0b3940, 0x0811100f, 0x0aaa0906, 0x00131207, 0x05060401, 0x060a06aa, 0x010c030c, 0x151f150f, 0x70631002, 0x0b2b059c, + 0x110e0d0c, 0x020a0112, 0x70090328, 0xf62807a2, 0x17ed103c, 0xe6e61039, 0x2105a570, 0x0d822f39, 0x31200383, 0x2a08aa70, 0x05350511, 0x25033303, + 0x70112515, 0xb6700bb2, 0x2b088308, 0xfe05fb01, 0x0584017c, 0xa2010581, 0x84220483, 0x06827cfe, 0x055efe22, 0xfd32a982, 0xec01ff01, 0x03001a03, + 0x0c401600, 0x08015602, 0x9e182d00, 0xed23074a, 0x47ed3f00, 0xec220620, 0x2782efef, 0x01001b2a, 0xecfef6ff, 0x1b018f01, 0x2e202f82, 0x2005cd47, + 0x0dcd4719, 0x01030f2f, 0x01031f01, 0x02b10003, 0x2f00ed2f, 0x0ccc475d, 0xfe8f012d, 0x01a58af1, 0x02d1fd1b, 0x8302002f, 0x1f03214b, 0x07224b84, + 0xe1485100, 0x8d212018, 0x05002b60, 0x03050501, 0x071f070f, 0x5d490702, 0x5d2f210c, 0x2016e248, 0x08e2481f, 0x7d847985, 0x00075708, 0x0be3ff95, + 0x00ed0593, 0x000f000b, 0x0027001b, 0x003f0033, 0x40c6004b, 0x06080990, 0x0618090a, 0x073c081a, 0x1708183e, 0x1718180a, 0x163c191a, 0x2608293e, + 0x2618290a, 0x253c281a, 0x480d463e, 0x580d560f, 0x170e680f, 0x25761f79, 0x31762b79, 0x49764379, 0xa5182506, 0x2e080fc3, 0x3d512b43, 0x19401920, + 0x49191902, 0x13375131, 0x400c4f0a, 0x0e0c020e, 0x3a002a46, 0x2a403a01, 0x0134003a, 0x002a2e34, 0x34160116, 0x182a2816, 0x2621d5a5, 0xed5d2f33, + 0x82335d2f, 0x2fed2703, 0x3f005d2f, 0xf684fd3c, 0x3f3cfd25, 0x83ed3f3f, 0x05497f1c, 0x180a6572, 0x2027e1a5, 0x4b338a25, 0x032c0bc9, 0xb6b2bd74, + 0xb5b2beba, 0xfcb302ba, 0x22f9a518, 0x2a833e20, 0xb22b3283, 0x58666459, 0x59646658, 0x18e03404, 0x24250ca6, 0xdcdae0ae, 0x272b83dd, 0xad8888ac, + 0x008787ad, 0x2312594f, 0x012800d6, 0x2005594f, 0x0a334f0f, 0x7b00c821, 0xd6220d17, 0x25842600, 0x10000125, 0x4f03020c, 0xa54f0c7f, 0xff8d220a, + 0x232584f8, 0x0c0c0002, 0x84097f4f, 0x5007234b, 0x637b2602, 0x008e2206, 0x25258250, 0x0102b70d, 0x4c861100, 0x7b07657b, 0x43220c8b, 0x4d843c00, + 0x240d8b7b, 0x02000089, 0x287384d5, 0x0100002c, 0xff8d0007, 0x21258812, 0x99870904, 0x00005d24, 0x258a0803, 0x27ffd622, 0x2589bf88, 0x4b827e20, + 0x9984e220, 0x8e224b85, 0x258224ff, 0x1340192e, 0x40100002, 0x60105010, 0x05107010, 0x0d20f282, 0x2b223282, 0xa5845d35, 0x43227f8f, 0x7f923eff, + 0xe1ff7324, 0x7f84da05, 0x22057350, 0x8478008d, 0x00022325, 0x73502525, 0xffff2206, 0x22258f00, 0x868f00d6, 0x50282025, 0x25920799, 0xaa004322, + 0xb2204b92, 0x29207182, 0x38207184, 0x21051741, 0x25846e00, 0x20000123, 0x05407c1f, 0x717c0020, 0x22258a07, 0x865b00d6, 0x7c222025, 0x25930666, + 0x01227187, 0x4b871f00, 0x00010023, 0x2b6782bb, 0x005d0477, 0x40740003, 0x01050227, 0x12c85918, 0x0c0c0c28, 0x06005506, 0x05820909, 0x29c85918, + 0x0c0cb429, 0xb8015502, 0x83b6fcff, 0x88012138, 0x08c15918, 0x0cc05918, 0x11232127, 0xbc770133, 0x088182bc, 0x36010130, 0xe1031105, 0x06008c06, + 0x27403a00, 0x06560559, 0x06660569, 0x0673057a, 0x03020106, 0x05600550, 0x05030570, 0x01036005, 0x60005003, 0xb3827000, 0x25051a57, 0x335d2f00, + 0x60795d2f, 0x9fe12e0e, 0xe49bb8b9, 0x011105e3, 0x0100ff00, 0x08e6827b, 0x05ed0025, 0x062c041d, 0x00190053, 0x39234039, 0x490e3502, 0x040e4502, + 0x09190d19, 0x1f100f52, 0x16100210, 0x830d1052, 0x2819295e, 0x00280c00, 0xed332f0d, 0x8205af45, 0xed5d2107, 0x55050c47, 0x36081975, 0x840b2c04, + 0x295c366f, 0x3427412f, 0x08830434, 0x5d32678e, 0x21492f2a, 0x06033933, 0x279a9853, 0x5a2b2b25, 0x279a974c, 0x5c292924, 0x01010046, 0x03370518, + 0x82d105fe, 0x401429c5, 0x10530209, 0x00010101, 0x3105494c, 0x31ed5d2f, 0x35210130, 0xfdfe0321, 0x05e6021a, 0xbd829a37, 0x13012e08, 0x02040e05, + 0x0d008c06, 0x3a405600, 0x0c650865, 0x0c750875, 0x06500d04, 0x06700660, 0x0a060603, 0x034009aa, 0xd10203f0, 0x03e00390, 0x27048402, 0x0103008b, + 0x01035089, 0x59250282, 0x002a0d03, 0x06235f07, 0x2f00ed2a, 0x5e72715e, 0x715d5e5d, 0xd9820482, 0x563c5d21, 0x33200950, 0x38053657, 0xc50a0204, + 0x09c5a9a9, 0x5b6b0ca6, 0x060e6b59, 0xd6d6a88c, 0x787884a8, 0x278b8284, 0x18052102, 0xdb05f502, 0x0e28bb82, 0x014402b5, 0x2f011500, 0xb5835382, + 0x33352329, 0xd4d4f502, 0x82c31805, 0x012f08cc, 0x0309052d, 0x00b107e9, 0x0017000b, 0x0f2e4045, 0x09000951, 0x31020930, 0x50010930, 0x70096009, + 0x09090309, 0x0c035115, 0x30002029, 0x82000200, 0x00602b04, 0x0100d003, 0x29120000, 0x98832f06, 0x83727121, 0x2f332658, 0x715e725d, 0x4560835e, + 0x22081790, 0x9092cce9, 0x9392ccce, 0x587591cb, 0x57767558, 0x5e067558, 0x90c5c68f, 0x8fc4c48f, 0x57767756, 0x82767657, 0x610127b9, 0x700359fe, + 0x01821400, 0x15402439, 0x011b020b, 0x0139012b, 0x07071204, 0x0d03530b, 0x00002a0e, 0x82332f06, 0xfd3f28cb, 0x312f2f32, 0x84055d30, 0x5827206e, + 0x3528064b, 0x33272634, 0x70031616, 0x250aa27d, 0x02990306, 0x827d5906, 0x1d230808, 0x34131949, 0x56010200, 0x77041605, 0x03008c06, 0x42000700, + 0x450045b5, 0xb8000204, 0x0eb3e8ff, 0x82043710, 0x19402107, 0x07200882, 0x2208d06e, 0x839f0105, 0x040223f4, 0x7f820402, 0x822f3321, 0x005d2383, + 0xf682332f, 0x30313327, 0x5d2b2b01, 0x069b5001, 0xfe770426, 0xb0a98bfe, 0x06250483, 0x018afe8c, 0x83038376, 0xfe9f26d7, 0x007c035f, 0x2cd7850a, + 0x041e040e, 0x043b042b, 0x14140a04, 0x22d78210, 0x612a0d00, 0x0020051c, 0xc642d787, 0x34352505, 0x06333736, 0x07a26b18, 0x03332208, 0x2a4b347c, + 0x060da98b, 0x5306069b, 0x1151245a, 0x0e79fe08, 0x268f9e0c, 0x3c1b1a3e, 0x1b4e521e, 0x24698308, 0x03110532, 0x07a543dd, 0x5901542f, 0x6b016402, + 0x7b017402, 0x05060602, 0x23d18802, 0x02010260, 0x2008a543, 0x43cf8503, 0x032d0ba5, 0x13330323, 0xe4dd0313, 0xb99fe4e3, 0x26cb82b8, 0xff7b0185, + 0x82000100, 0x00410861, 0x04000018, 0x00d10580, 0x40a6000d, 0x4b0b3b2e, 0x7a0a5a0a, 0x0b02040a, 0x09040805, 0x01090903, 0x350c0306, 0x030a0801, + 0x0f00000a, 0x08010f0f, 0x0305140b, 0x10100a02, 0xb8025502, 0x0bb4fcff, 0x2008840b, 0x05c767da, 0x09080223, 0x230f8409, 0x0c0cb4ee, 0xea230884, + 0x840d0db4, 0xb4e82408, 0x83060f0f, 0x82ec2033, 0x20088411, 0x842382ea, 0xb6fa2308, 0x08820909, 0x4c0e6c21, 0x322c0ea2, 0x2f33115d, 0x002f2f39, + 0x123fed3f, 0x28610782, 0x07270808, 0x33113735, 0x01150111, 0x80042111, 0xbaba52fc, 0xfe5d01c6, 0x02e802a3, 0x95a39817, 0x78fd1a03, 0xfea31b01, + 0x8607fee8, 0x022908df, 0x00140636, 0x4099000b, 0x5905492f, 0x03056905, 0x07040206, 0x0b040a01, 0x0b0b0505, 0x03010803, 0x0d050008, 0x010a0092, + 0x21bd830c, 0xba830c01, 0x051a0125, 0x68b80407, 0x088206a8, 0x2006154c, 0x82228404, 0x050c4c0f, 0xf6220882, 0x2f830d40, 0x83140421, 0x880424de, + 0x4df4100c, 0xf14b0554, 0xe6322105, 0xbd83be83, 0x822f3321, 0x54432dbe, 0x2005b558, 0x0b37100d, 0xb2e0ffb8, 0x2b2a0782, 0x3031592b, 0x1107015d, + 0xd4851123, 0x02372508, 0xadbcb536, 0x03b5bcad, 0x17fd917a, 0x9f8d6002, 0xfd18038a, 0xffff9471, 0xe5ff8600, 0x01080205, 0x36002602, 0x0724d882, + 0x4d00df00, 0x22068946, 0x571a3134, 0x6e2608e1, 0xd703e5ff, 0x25828c06, 0x25825620, 0xdf00062c, 0x0b0000ae, 0x370001b6, 0x23881834, 0x00007e23, + 0x05eb4705, 0x49863d20, 0x49863220, 0x020a0d23, 0x0b114806, 0x4984e320, 0x49855d20, 0x49859420, 0x050a0d22, 0x00212385, 0xd3481802, 0x0723080a, + 0x16402900, 0x094f090f, 0x01060102, 0x01020506, 0x04000b05, 0x054f011f, 0x5d2f0501, 0x003cfd3c, 0x59123f3f, 0x0122053f, 0x9b18015d, 0x282107c3, + 0x2c0082ae, 0x1e03f602, 0x1e0364f8, 0x00020000, 0x0899820e, 0xd105bc34, 0x25001200, 0x2740ef00, 0x16481638, 0x11680266, 0x081e1b04, 0x070b0b3c, + 0x030c341a, 0x0807341f, 0x1d010076, 0x1513071d, 0x0b0b0200, 0xb8005502, 0x0062deff, 0xb4f02107, 0x2306fa4d, 0x0c0cb4e6, 0xfc241a84, 0x0d0d2740, + 0x742c0982, 0x40270f27, 0x03276027, 0x041e1b09, 0x1e211b83, 0x2d2a8308, 0x090b141e, 0x10100a07, 0xb8075502, 0x4684daff, 0xb6420882, 0x20088205, + 0x824684ee, 0x06275708, 0x08d19518, 0x8205cf42, 0x18f62018, 0x8208c895, 0x8306202a, 0xb6fd2345, 0x08820909, 0x6c586c20, 0x050e4205, 0x0f422b20, + 0x5d2f2105, 0x2806e342, 0x2f3912ed, 0xed3f005d, 0x2108833f, 0xee6939fd, 0x11212b0a, 0x11333523, 0x17043221, 0x84181216, 0x2122086c, 0x93182115, + 0xbc3e072f, 0xfb6693b1, 0xc488fecd, 0xda7401c4, 0x98580201, 0x797acfaa, 0xbc8ac658, 0x97fe6901, 0x93188fbc, 0x02250b35, 0x5e028fe4, 0x3893183f, + 0x4cfe2809, 0x2ac6fd8f, 0x18e84739, 0x0807375c, 0x001e0657, 0x0031001f, 0x195b4084, 0x320d290d, 0x39203401, 0x452d362b, 0x440d4c01, 0x442b4a20, + 0x542b5a2d, 0x74056f2d, 0x1021741e, 0x3f29030c, 0x1a120f09, 0x101b041d, 0x16030910, 0x163f1b1b, 0x1602164f, 0x033e2f02, 0x1a111c0a, 0x00031c1d, + 0x0c0f1211, 0x161f0526, 0x3717822f, 0x09161323, 0x2c090000, 0xed2f0614, 0x122f3311, 0x5d2fed39, 0x17123917, 0x2706cf43, 0x112f335d, 0x2f393912, + 0xed6a1083, 0x00102406, 0x6a002223, 0x262506ea, 0x27052726, 0x2b058237, 0x16162135, 0x07173717, 0x36011216, 0x20099678, 0x755b1815, 0xe4680807, + 0xebfee5f1, 0x6cca1201, 0x8720569b, 0x42f8fe57, 0x5d9054ed, 0x62232701, 0xba42d225, 0xdefea699, 0x02033431, 0x9356a54b, 0x428fa9a9, 0xfe7d027b, + 0x01a8febc, 0x01e2f50e, 0x70353508, 0x61a24ad6, 0x2f51438e, 0x1a431910, 0x936d6180, 0x8afd9bfe, 0x2096a93b, 0x2b2d1e37, 0xaeb498af, 0xffff002c, + 0x00000600, 0x0108e604, 0x2208bf54, 0x43e4ff8d, 0x0b21062b, 0x09b14b0a, 0x64fe3d26, 0x8c067f04, 0x21081355, 0x2b43dd8d, 0x090a2105, 0x22050a55, + 0x18020000, 0x08087187, 0x21001223, 0x2640e200, 0x1f491f39, 0x10801155, 0x1b051180, 0x01070034, 0x20341a07, 0x0c0c010c, 0x030a0907, 0x05de7d09, + 0x00151326, 0xb4eeffb8, 0x2006e342, 0x06cb64f8, 0xd8420c20, 0xf0230806, 0x0d0d2140, 0x00205502, 0x00400030, 0x00040070, 0x230f236f, 0x0c02233f, + 0x0014071b, 0x10100e09, 0x45095502, 0x088207a2, 0x2006a245, 0x27871809, 0x05056a19, 0x87182a82, 0xe4240830, 0x060c0cb4, 0xf2234583, 0x820909b6, + 0x226c2108, 0x250ca245, 0x5d3232fd, 0x567ff610, 0x435d2005, 0x5d2106e0, 0x055149ed, 0x14015d33, 0x06060706, 0x23112323, 0x33113311, 0x16171632, + 0x08ce4216, 0x32333f08, 0x36363736, 0x3c469604, 0xc697db4e, 0x85cdc6c6, 0x5e5343c2, 0x303834ce, 0xa7c45a80, 0x2c2f9877, 0x5c130329, 0x484b39a9, + 0xd105befe, 0x2c2df2fe, 0x487daa35, 0x191e236b, 0x2d29cdfd, 0x5d186629, 0x0627073f, 0x00130014, 0x18ec0020, 0x281e3f5d, 0x06401e01, 0x140c0b09, + 0x917518b8, 0x115d180d, 0x1d403920, 0x55020d0d, 0x1f229000, 0x02223f22, 0x0c091b0e, 0x55020909, 0x0c0c0c09, 0x75180582, 0x34521c57, 0xb80c2205, + 0x052746ff, 0x0f230884, 0x8255060f, 0x05ff4608, 0x40230883, 0x820c0c0d, 0x09062212, 0x21058209, 0xc76e2188, 0xc95c180d, 0x18ed2009, 0x181bc25c, + 0x24145675, 0xb342474e, 0xc25c1864, 0xb007261f, 0x553fd4fd, 0xc35c18fe, 0x0125080d, 0x3c02dc00, 0xdc02b005, 0x1e000300, 0x54001140, 0x0201020f, + 0x30010540, 0x02054005, 0x2f010000, 0x5d5d2f33, 0x05e14100, 0x21352128, 0x2cfbb005, 0xd95ad404, 0x01260805, 0x05690023, 0x00af0469, 0x4026000b, + 0xd802d717, 0x02a70208, 0xd805d701, 0x0ba8020b, 0x02840501, 0x02020294, 0x3d822f19, 0x30312808, 0x00715d01, 0x0725715d, 0x01270101, 0x01013701, + 0x69050117, 0xfe4cfe6f, 0xb8016f4c, 0x016f48fe, 0x6fb401b4, 0x8cd848fe, 0xb801210d, 0x82822182, 0x23013608, 0x92033602, 0x0f00d505, 0x18402e00, + 0x06065005, 0x030e030c, 0x050e01aa, 0x0f0f0205, 0x022a0e0c, 0x03010310, 0xed335d2f, 0x2f2f3239, 0x3f002f33, 0x333f32fd, 0x05e54b2f, 0x23113322, + 0x0825ae18, 0x9203333b, 0xf2ea99fd, 0x251e6c2d, 0xdd87032c, 0x027a3602, 0x0c0d7038, 0xfc282c10, 0x216782db, 0x6782cf00, 0x05c73d08, 0x001d00ef, + 0x242d4045, 0x36182515, 0x4c183515, 0x6d105e10, 0x66186510, 0x75107d19, 0x0f0f0b18, 0x0213520b, 0x01521c02, 0x1c00000e, 0x162a0802, 0x02101610, + 0x2f33332f, 0x3912ed2f, 0xed217c86, 0x05ad5833, 0x69352121, 0x07200ae1, 0x0806c46f, 0x0614153c, 0x07060607, 0xfdc70321, 0x33a76408, 0x5a6b4a83, + 0x0d30ac59, 0xb457af47, 0x377361bb, 0x2002429b, 0x3e9c3602, 0x6767296e, 0x3d4c4554, 0x231ab41f, 0x97637d9d, 0x29662b5a, 0xa3820100, 0x030f5908, + 0x00f005bc, 0x4077002e, 0x39032a16, 0x4a0c4503, 0x5c0c541f, 0x64086b1f, 0x74087d23, 0xb8270a23, 0x3940c0ff, 0x2c370e0b, 0x0f52152b, 0x160f0116, + 0x164f161f, 0x16cf165f, 0x160616ff, 0x521d2121, 0x02250616, 0x520e0a0a, 0x2a1a0f06, 0x11221628, 0x2816222a, 0x1009042c, 0x00225e82, 0x2c792f09, + 0x2fed2105, 0xba6cd082, 0x39122105, 0x2f28cf82, 0x39ed715d, 0x2b303139, 0x1807e643, 0x270cec40, 0x33352323, 0x34353632, 0x0a4aae18, 0xe7831620, + 0x16158608, 0x42bc0316, 0x59943938, 0x0e4aa55e, 0x645dc329, 0x8f707685, 0x636b7080, 0x2cc34d68, 0x5aad4a0e, 0x596ec1af, 0x3103835f, 0x2322714b, + 0xb31c1e21, 0x4b473b24, 0x4d8d3c55, 0x3e473d44, 0x231bb224, 0x72596a88, 0x6f11081a, 0x00ffff00, 0x070000ab, 0x00d505a3, 0x923b0226, 0x00270000, + 0x003702bb, 0x02070100, 0xfd04043c, 0x402000c3, 0x080e0215, 0x0e400e02, 0x01020e60, 0x5b0b2b0b, 0x7f0b6b0b, 0x115d040b, 0x22028235, 0x86353f00, + 0x92412041, 0x033e2241, 0x30418284, 0x03194026, 0x03081002, 0x0e1f0e02, 0x0e7f0e5f, 0x20459003, 0x83468235, 0x828c2047, 0x05792289, 0x218982ed, + 0x8985a63d, 0x89849120, 0xbc033e22, 0x36264782, 0x02032640, 0x03820836, 0x3036103e, 0x03367f36, 0x31003101, 0x314b3134, 0x316b315f, 0x0006317b, + 0x3f090009, 0x03094f09, 0x05829a85, 0x30085784, 0x3c000100, 0x74040000, 0x1100d105, 0x46409f00, 0x51090f0c, 0x063f062f, 0x0b060602, 0x054f3402, + 0x10050501, 0x1034010b, 0x01032003, 0x03030808, 0x3830822f, 0x010e1300, 0x0c0c0a05, 0x0a55020c, 0x0b0e0f14, 0x020f0f08, 0x0d160b55, 0x2005820d, + 0x2715831e, 0xeeffb80b, 0x0b0b1740, 0x0a280f82, 0x55060f0f, 0x0d0d140b, 0x0c210583, 0x2e05820c, 0x40f8ffb8, 0x0609090a, 0x3f0b2f55, 0x700b020b, + 0x2b20058f, 0x332c0082, 0x322bfd33, 0x33112f32, 0x2f335d2f, 0x2105b748, 0x0782122f, 0x0484ed20, 0x31393926, 0x11210130, 0x20072361, 0x05bf4823, + 0x74043608, 0x8a023efd, 0x4a0176fd, 0xb6c0b6fe, 0x058203b6, 0xab55fe26, 0xfe8beffe, 0x8b3401cc, 0xff001204, 0xff7300ff, 0x08a205e3, 0x00260201, + 0x0100002a, 0x00d90007, 0x065b47cf, 0x0c282823, 0x07874a0c, 0x59fe6c26, 0x8c064304, 0x4a202582, 0x062d2582, 0x00fed900, 0x02b60b00, 0x1a313700, + 0x24238723, 0x02000089, 0x0a9752d5, 0x24ffda22, 0x0d214986, 0x06bd520c, 0x00010039, 0x0559fe86, 0x00ec0502, 0xb94f0147, 0xf4ff4600, 0x021010b4, + 0x86b84455, 0x82452008, 0xb5402108, 0x2f211283, 0x2005830e, 0x2005842e, 0x2105842d, 0x11830c2c, 0x830a2b21, 0x0b5c0805, 0x001f0a0b, 0x1b3a0036, + 0x131f1b0b, 0x2a0b2f36, 0x242f291f, 0x3f462436, 0x341f390b, 0x342a3927, 0x48413436, 0x4827441f, 0x4b36432a, 0x5f41443e, 0x52055a03, 0x55365732, + 0x6f026b44, 0x64306a04, 0x66366432, 0x79466042, 0x702d7a05, 0x75377036, 0x86447541, 0x40202b29, 0x1f37100e, 0x06350483, 0x00061a02, 0x063f3128, + 0x38381d34, 0x0234343c, 0x34252121, 0x3f7b821d, 0x0d0c5314, 0x2a170f0f, 0x0f0f1409, 0x37095502, 0x1631153f, 0x55020909, 0xf0ffb831, 0x0d0d0f40, + 0x282a0982, 0x37310015, 0x2004091d, 0x8a18b800, 0x492b121c, 0x4970490f, 0x486a2002, 0x185de610, 0x25091d42, 0x2fed2b2b, 0x4d182b2f, 0x3f200b62, + 0x11200c82, 0x3805af4c, 0x28581540, 0x28683f57, 0x28793f67, 0x28893f76, 0x28973f86, 0x5d0a3f99, 0x218a1859, 0xcb501812, 0x388a181a, 0x682c352a, + 0xb303033e, 0x2d74259a, 0x38521a09, 0x02036268, 0xa1152514, 0x2a4a8a18, 0x11372336, 0x9d192c16, 0xa20c0eb1, 0x584e1c0a, 0x01122918, 0xf83b3c02, + 0x1e5c8a18, 0x01006d08, 0x59fe6e00, 0x7804d703, 0x41014a00, 0x20085940, 0x09370c09, 0x19320402, 0x24321702, 0x343b2b20, 0x433b3a20, 0x5a3b4b20, + 0x522d5c1c, 0x52465337, 0x6b1c6b49, 0x6237622d, 0x7c496246, 0x74287c1c, 0x743f7937, 0x88018b42, 0x87318524, 0x03171d3f, 0x402f2500, 0x391a3506, + 0x020b0b40, 0x01398055, 0x3e3d3939, 0xb81e0435, 0x1540c0ff, 0x1e311283, 0x1a3e221e, 0x110d0d09, 0x0c0d0953, 0x062a140c, 0x06495cb8, 0x504f0883, + 0x12062505, 0x55020d0c, 0xf8230f82, 0x820909b6, 0x25382608, 0x40faffb8, 0x280b8320, 0x0c0c0c40, 0x1b405502, 0x2308824c, 0x102f5502, 0x2f211383, + 0x2013830a, 0x2024822f, 0x052d6ff4, 0x001b2528, 0x061a382f, 0x60181d04, 0x2120169f, 0x00213583, 0x2f358314, 0x0f4c8e00, 0x3f4c1f4c, 0x7f4c5f4c, + 0x161d054c, 0x1d26a183, 0xe6104b86, 0x285c5d2b, 0x17112d05, 0x2bed1039, 0x2b2b2b2f, 0x2f2b2bed, 0x33420783, 0x3f2b270c, 0x5d2f33ed, 0xa54f112b, + 0x012b2305, 0x0e420614, 0x51262018, 0x601809e3, 0x7f22258a, 0x4f18026f, 0x15230da9, 0x187c1728, 0x26289c60, 0x132aa36b, 0x18a21a36, 0x2407b84f, + 0x020f2d18, 0xae601802, 0xffff2d27, 0xe5ff7300, 0x01084605, 0x26002602, 0x220e2756, 0x180c2c2d, 0x2a08574d, 0x03e7ff69, 0x028c06f3, 0x82460026, + 0x00062325, 0x014cce8d, 0x23242305, 0xa5440f09, 0x22498f07, 0x44a800df, 0x2e2106a5, 0xa14d182b, 0x21498f09, 0x4985f6df, 0x86222521, 0x004d0849, + 0xff6c0002, 0x06fb04e1, 0x001b0014, 0x40040128, 0x38053b3a, 0x32223c0c, 0x4b283e24, 0x4e0c4a05, 0x4f244522, 0x69085928, 0x0d127008, 0x1a511401, + 0x18101717, 0x07041301, 0x04104120, 0x42260803, 0x00160a07, 0x17160188, 0xb8041c13, 0x05e279ff, 0x32420883, 0x1a042905, 0x0f402a1a, 0x0155020f, + 0x08897d18, 0x0b080123, 0x200f820b, 0x22158410, 0x8209090c, 0x0c2a220b, 0x2205820c, 0x840d0d0a, 0x5ee82027, 0x012005d5, 0x06200f82, 0xec203783, + 0x2905007a, 0x1f2a9201, 0x022a3f2a, 0x2d830c23, 0x011b2324, 0x4883180a, 0xffb80a25, 0x831940fe, 0x1c0a214c, 0xb0464c83, 0x83042006, 0x850a224c, + 0x06074b29, 0x18ed3221, 0x250cb45f, 0x2bfd322b, 0x0082322b, 0x2fe4103c, 0x3fed3f00, 0x3912ed3f, 0x39123f39, 0x3cfd3c2f, 0x015d3031, 0x35231123, + 0x7d180606, 0x35210c40, 0x22018221, 0x18331533, 0x080c34a8, 0xb8fb044e, 0x6ead4dbc, 0x4452edc6, 0x5960b644, 0x95fe4c86, 0xb8bc6b01, 0x734f8cfe, + 0x87b29c49, 0x04a45097, 0x750cfbf4, 0x2e015242, 0xdb8e1101, 0x244f4c4d, 0x9a86ce27, 0x0299fb9a, 0xd6182279, 0x47cdc3cc, 0xfcff0100, 0x1a058406, + 0x0300fc06, 0x14398518, 0x0521272c, 0x05e7fa1a, 0x84061e05, 0xe35c0078, 0x12715a2f, 0x3100d92a, 0x0b007501, 0x110002b6, 0x200a715a, 0xd9541868, + 0xd6d9220e, 0x08238400, 0x0b343aa1, 0x2b012526, 0x02000035, 0x5ffe1a00, 0xd1052b06, 0x1e001b00, 0x9c40d600, 0x051f050f, 0x053e052e, 0x08701d40, + 0x4a1c3806, 0x590f450e, 0x050f570e, 0x1c1d1e1d, 0x8709770a, 0x14090209, 0x1d100f10, 0x0c770b1e, 0x0c020c87, 0x0e0d0d14, 0x0f580e57, 0x0f730e7d, + 0x1e340b04, 0x02101040, 0x0d401e55, 0x3055020d, 0x701e401e, 0x091e031e, 0x0d031d1e, 0x1b1b030e, 0x0d035317, 0x010d7a10, 0x0000080d, 0x0f062a14, + 0x0f0e0120, 0x0d04061d, 0x1024100c, 0x10421039, 0x106a105a, 0x10071074, 0x82206e10, 0x0a2a081b, 0x360d2b0d, 0x550d4d0d, 0x7c0d650d, 0x640d070d, + 0x5de6101f, 0x2ff4105d, 0x3917125d, 0x33ed2f5d, 0x5d3f002f, 0x32fd3f3c, 0x10823f2f, 0x198ba818, 0x555d0021, 0x0327095d, 0x01230321, 0x55230121, + 0x09380964, 0x342b0602, 0xa98b2a4b, 0xfd79061e, 0x02c9927c, 0x0208011e, 0x0706611e, 0x08057155, 0xfe91fd6b, 0xfefafefb, 0x9d0c0e79, 0x156a4090, + 0x61fe5401, 0x2ffad105, 0x521b351b, 0x03081b4e, 0xfddb0231, 0x02000025, 0x5ffe6800, 0x78042e05, 0x47003a00, 0x5d403301, 0x2b05110b, 0x2b16121a, + 0x2244052a, 0x4054255f, 0x256c1665, 0x127b4062, 0x257f1d7b, 0x0c0f3f70, 0x39041b04, 0x69165905, 0x3a3a0516, 0x0d035336, 0x3d3c100a, 0x05825d30, + 0x10282108, 0x3f202424, 0x41450428, 0x09300a10, 0x33000008, 0x250f062a, 0x19062501, 0x0940493b, 0x09550209, 0x83079043, 0x16402108, 0x2c05694e, + 0x2f13252f, 0x02101006, 0x0b122f55, 0x2205820b, 0x76e6ffb8, 0x2f2105ae, 0x23338318, 0x0d0d1a2f, 0xfc211584, 0x202f83b4, 0x053d752f, 0x82550621, + 0x40f22408, 0x8209090f, 0x49912d09, 0x491f490f, 0x4203493f, 0xb6f8ffb8, 0x42272e83, 0xffb8131b, 0x832540fa, 0x0c132156, 0x13215683, 0x21178308, + 0x52831c13, 0x840c1321, 0x8306200b, 0x8513224f, 0x06924348, 0x08752b20, 0x2b2b2609, 0x1039112b, 0x230682fd, 0x2f323232, 0x2206b041, 0x48ed3f3c, + 0x1b4a0539, 0xfd3f2705, 0x30312f32, 0xa241015d, 0x7435200a, 0x162320fb, 0x41111516, 0x01200ac1, 0x2b0b4a72, 0x4b342e05, 0x0da98b2a, 0x28551904, + 0x1b188618, 0xe0411d20, 0x34fe2b07, 0x5144e956, 0x63777464, 0x5d57fea4, 0x133b2205, 0x2b861877, 0xfd2b081c, 0x1e321b0a, 0x081b4e52, 0x3701fb01, + 0x17131405, 0x61605561, 0x00ffff4d, 0x050000c8, 0x020108b2, 0x00270026, 0x00070100, 0x432800df, 0x21220693, 0xe145081e, 0x03002905, 0xe1ff6c00, + 0x14062706, 0x47080982, 0x01240017, 0x0000b90f, 0x3c40c0ff, 0x0137100e, 0x370d0918, 0x10091802, 0x3d073d37, 0x3b20341e, 0x4f074d24, 0x4b20451e, + 0x6a0a5a24, 0x0b14700a, 0x16030202, 0x09061501, 0x0412411c, 0x42220805, 0x00000a09, 0x06181602, 0x83070f42, 0x0cb73508, 0x0655020c, 0xb804021a, + 0x1740faff, 0x55021010, 0x0f0f1004, 0x06220582, 0x05820d0d, 0x1e832220, 0xf0231b82, 0x820b0bb4, 0xffb8220e, 0x053152f0, 0x0f0a0425, 0x8255060f, + 0xb4dc2318, 0x08840d0d, 0x0cb4e823, 0x2408840c, 0x091a40f6, 0x26098209, 0x263f261f, 0x830c1f02, 0x1b1f2440, 0x83180c04, 0x450c2040, 0x0c2108a6, + 0x0a2b631c, 0x6b830420, 0x25850c22, 0x6d0aa645, 0x2b280949, 0x2b2bfd33, 0x332f3232, 0x2e0aa345, 0x312f3333, 0x2b015d30, 0x03012b2b, 0x45011323, + 0x112210a6, 0xf3620333, 0x16142c06, 0x06363233, 0x987ffa27, 0x18bcfdfe, 0x2917ec82, 0x07fe1406, 0xecf9f901, 0x82184675, 0xff2119f4, 0x074956ff, + 0x06024508, 0x0000e700, 0xc8000100, 0xcd045ffe, 0x2000d105, 0x0c40e300, 0x041c040c, 0x043d042d, 0x0f351204, 0x40c0ffb8, 0x020f0f20, 0x100f0055, + 0x0f0f020f, 0x0b350e09, 0x16351303, 0x20200809, 0x0d03531c, 0x002a1900, 0x200a9049, 0x84fe8308, 0x0c1b3b0f, 0x0655020c, 0x03100c06, 0x2273140a, + 0x0f01220f, 0x0a141413, 0x0210100e, 0x4a560a55, 0x56088207, 0x0882054a, 0x82054a56, 0x064a5608, 0x09080a23, 0x242a8409, 0x0f0fb4e6, 0x52338306, + 0x2182051a, 0x0cb4e223, 0x2311840c, 0x0909b6f6, 0x6c210882, 0x07565821, 0x00822b20, 0x32fd3223, 0x08c16e5d, 0x2fed3329, 0x32fd3f00, 0x563c3f2f, + 0x7122054b, 0x5e5ced2b, 0x34352408, 0x4d213736, 0x21210898, 0x0a574315, 0x34cd042c, 0xa98b2a4b, 0xc7fd060b, 0xa818d503, 0xfe200785, 0x27083743, + 0x9e0c0e79, 0x1d33248f, 0x07904718, 0x1345b020, 0x005e0806, 0x6a000200, 0x60045ffe, 0x2c007c04, 0xd7003300, 0x1e0d4540, 0x04261e1a, 0x1e2b0d29, + 0x0d3a0434, 0x323b1e3c, 0x0d4b0444, 0x0d59324b, 0x0d6c2a50, 0x0d792b60, 0x19123278, 0x1d531519, 0x333c010d, 0x3d302333, 0x230f0429, 0x3f070b0b, + 0x2a120923, 0x0f0f0e20, 0xb8205502, 0x1d40f8ff, 0x09820b0b, 0x09090e22, 0x20260582, 0x0c0c1a1a, 0x0b834035, 0x0c40352b, 0x2d55020c, 0x40f6ffb8, + 0x2209843a, 0x8320001a, 0x8f002c07, 0x1f350f35, 0x03353f35, 0x830c0133, 0x1b012310, 0x42831826, 0x83102621, 0x08262136, 0x26281383, 0x020d0d04, + 0x34852655, 0x3005ad42, 0x5d322bfd, 0xed2bf410, 0x332b2b2b, 0x33113c2f, 0x2d08822f, 0xed3f00ed, 0x39122f33, 0x3912ed3f, 0xb344ed2f, 0x0db57907, + 0x52460720, 0x05c37909, 0x36343524, 0x84182637, 0x4a241b19, 0x0302519b, 0x29056546, 0x8b2a4b34, 0xf80406a9, 0x8418ebfe, 0x1f3a1527, 0x30140931, + 0x1b4e5212, 0x0c0e9f08, 0x32188f9e, 0x2a011212, 0x12010401, 0x84184201, 0x7f440738, 0x0ceb6105, 0x2200df2a, 0x0b007501, 0x0f0001b6, 0x210a5f62, + 0x5a18ff6a, 0xdf210d75, 0x051348fd, 0x18202321, 0x32092d5a, 0x040000c8, 0x02010876, 0x002f0026, 0x00070100, 0x86c0fe8d, 0x07082149, 0x2409a962, + 0x020000ab, 0x20258451, 0x2025864f, 0x2f25828e, 0x0270b52f, 0x03020370, 0xb3c0ffb8, 0x02370c09, 0x40210782, 0x29088211, 0x044f0401, 0x0102049f, + 0x5a180600, 0x5d250744, 0x2b2b3511, 0x2044825d, 0x086f8400, 0x00140639, 0x00090005, 0x071640a5, 0x370d0b0c, 0x01090808, 0x35040302, 0x00000801, + 0x010b0f0b, 0xeaffb806, 0x100e1540, 0x0b0c0837, 0x06063710, 0x08140408, 0x10100e01, 0x56015502, 0x088207c2, 0x2306c256, 0x09090801, 0xab181884, + 0xe4241194, 0x060f0fb4, 0xea233383, 0x840d0db4, 0xb4e62308, 0x08840c0c, 0x09b6f823, 0x20088209, 0xc5aa186c, 0x2b2b260a, 0x332fed32, 0x20a7822f, + 0x06b04411, 0x2f332c08, 0x2b013031, 0x33112121, 0x03032111, 0x76041323, 0x02c652fc, 0x7ffac3e8, 0xfad10598, 0xfe6405df, 0x00f90107, 0x00bb0002, + 0x82540300, 0x000327d3, 0x40a60007, 0xd383010d, 0x03020228, 0x08050106, 0xca82b800, 0xca822320, 0xca830220, 0x0f000025, 0x82021f02, 0x0c042100, + 0x0427b483, 0x020c0c0c, 0x181a0455, 0x7230947f, 0x052305f7, 0x84e8ffb8, 0x200882d8, 0x053e56ec, 0x83040521, 0x180520d6, 0x820aa47f, 0x82fd20ce, + 0x5d2f21d9, 0x0023d983, 0x85333f3f, 0x820120d4, 0x230325ce, 0x54033311, 0xfc22cc82, 0x4745bcbc, 0x20c58207, 0x05a34102, 0x00d10530, 0x00090005, + 0x07224095, 0x01082f56, 0xa2410808, 0x2d062406, 0x41010707, 0x042105a7, 0x33954114, 0x2205e044, 0x44ffb801, 0x088205e0, 0x82058046, 0x14954108, + 0x115ded28, 0x39122f33, 0xf95ded2f, 0xed5d2306, 0x93413031, 0x41c08206, 0x9c2b0693, 0xd105e9e9, 0x5701dffa, 0x41000b01, 0x62200691, 0x033bcb82, + 0x91000700, 0x56052440, 0x02010606, 0x07080101, 0x70066f2d, 0x06060206, 0x18090c00, 0x63092f7d, 0xef5b315a, 0x41c38b05, 0x01260680, 0x06090910, + 0x80410155, 0x2bed250d, 0x5d2f332b, 0x3f20bf82, 0xbd82c683, 0x0120b782, 0x772d0383, 0xeb01bcbc, 0x1406e7e7, 0x0901f4fb, 0x05d74300, 0x08380523, + 0x29611801, 0x07f76408, 0x0c000123, 0x2961180b, 0x00b92609, 0x065f0400, 0x3125828c, 0x01000051, 0x008d0006, 0xb60b0000, 0x18190001, 0x6118160e, + 0x498a0c73, 0xa200df22, 0x9908d55d, 0x1cdf2149, 0x1a234985, 0x87020e17, 0x0f656549, 0x8c00dd22, 0x0d264982, 0x000203b7, 0x8c652629, 0x83352005, + 0xff6a21bb, 0x0d275c18, 0x00d8dd23, 0x23258400, 0x00061a1d, 0x25844c83, 0x0000c824, 0x97849805, 0x49443520, 0xf6ff2105, 0x02259784, 0x06212200, + 0x8273870b, 0x720321e1, 0x5520e184, 0x38202586, 0x1523e386, 0x8b120a13, 0x224b8be3, 0x860a00df, 0x2023214b, 0x92224b89, 0x4b8c0000, 0x60ffdf22, + 0x16234b86, 0x87030a13, 0x0f4f5f4b, 0x14008d22, 0x01254b84, 0x1a323300, 0x5f25871f, 0x8d200f4f, 0x2306055f, 0x32063536, 0x40082384, 0x00000100, + 0xee0459fe, 0x1b00d105, 0x2f40a500, 0x071c070c, 0x073c072c, 0x100c0c04, 0x010d0853, 0x031a3518, 0x0b081602, 0x052a130b, 0x1d1f1d0f, 0x00031d4f, + 0x0201055b, 0x55020909, 0xb8181401, 0x06eb76ff, 0x0f101825, 0x8255060f, 0xb4fc230f, 0x08840c0c, 0x09b6fa23, 0x21088209, 0x9c18195b, 0x1920088f, + 0x02214682, 0x200f8355, 0x823e83b4, 0x82f22008, 0x2811852c, 0x020d0db7, 0x01194f55, 0x06b75519, 0x822bf421, 0x2bfd2300, 0x9c4be432, 0x3f332306, + 0xdd4632fd, 0x16112208, 0x75641816, 0x11232a11, 0x04213521, 0x03ecfdee, 0x0a736309, 0x32030524, 0xde82ecfd, 0x04fb2125, 0x51224814, 0x1e260845, + 0x21051736, 0xfd8200b0, 0x59fe3e3b, 0x9e05fd02, 0xef003000, 0x080c3040, 0x08191a0d, 0x082b1a1e, 0x083c1a2f, 0x05dc5207, 0x1c252035, 0x1f20223e, + 0x18170305, 0x3f2c3030, 0x324f0918, 0x5202327f, 0xea2606f2, 0x02100fb4, 0xe3820655, 0xc183b420, 0xf4200882, 0x2c05e052, 0x06231806, 0x8c001c03, + 0x25221d32, 0x30ee830c, 0x0c0c0c25, 0x1a255502, 0xb81c1d1f, 0x1140deff, 0x26378210, 0x0f0f201c, 0x841c5502, 0x2215821f, 0x820cb4f6, 0x97431822, + 0x057b440b, 0xfc4a1182, 0x20088205, 0x05ac6dee, 0x09021c2d, 0x4f550609, 0x021c7f1c, 0x5c31881c, 0x2b2006c6, 0xaa5f0083, 0x08624906, 0x2f33ed2e, + 0xfd3f005d, 0x39122f32, 0x33333f39, 0x47410882, 0x06252106, 0x2215e352, 0x18262223, 0x24170272, 0x02101c0c, 0x74621804, 0xab14210c, 0x11127218, + 0x03070325, 0x41182c12, 0x1724086b, 0xcbb7102f, 0x11227218, 0x00ffff22, 0x042f0082, 0x020108ee, 0x00370026, 0x00070100, 0x42eeffdf, 0x0b2306c3, + 0x42070608, 0x3608059f, 0xff3e0002, 0x077a03ea, 0x001b0005, 0x40d4001f, 0x1c040b51, 0x2a042a04, 0x3a1e2a1d, 0x4a1e3a1d, 0x551e4a1d, 0x691c641c, + 0x791c741e, 0x1f1f0e1e, 0x07100b1e, 0x180d1e3e, 0x38098d73, 0x02217f21, 0x1e1e1c1c, 0x8c000e10, 0x100d0821, 0x0209090c, 0x0c0c1055, 0x2305820c, + 0x00080a1a, 0x22667318, 0x0d0db424, 0x27825502, 0x0fb4e224, 0x6961060f, 0x0d0d2105, 0xec200884, 0x20058d41, 0x058d4107, 0x077f0726, 0x20880702, + 0x2b0d8d41, 0x2b2bfd32, 0xf6102f32, 0x2f391132, 0x26078a41, 0x3333333f, 0x822f32fd, 0x3031260f, 0x06255d01, 0x18734106, 0x23031324, 0x73180213, + 0x7d23157a, 0x18987ffa, 0x25157e73, 0x11fe5206, 0xd969ef01, 0x00063d11, 0x005063db, 0x025b4079, 0x21000901, 0x50214001, 0x0321a021, 0x012110ef, + 0xbd012190, 0x50341182, 0x02218021, 0x4021108b, 0x03217021, 0x21c021b0, 0x900321f0, 0x02210682, 0x2a058359, 0x100321e0, 0x90216021, 0x82310321, + 0x21e0252b, 0x1f210f01, 0x34832a82, 0x02210523, 0xb9661801, 0x00352608, 0x72715d11, 0x8302825e, 0x725d2206, 0x2302835e, 0x35355e71, 0xb12d9183, + 0x5704e1ff, 0x2602b107, 0x00005800, 0x24918201, 0x0d000000, 0x233d82b7, 0x1609171d, 0x6a087545, 0xdd240fdd, 0x75017800, 0x24202785, 0x8806926a, + 0x0681224d, 0x214d888c, 0x4d870add, 0x4d8a1820, 0x220f3164, 0x4207008d, 0x0d200767, 0x26060d64, 0x5d00ffff, 0x64030000, 0x07240931, 0x68ff8d00, + 0x20067745, 0x84258a0b, 0x5007214b, 0x3d207182, 0x0724bf82, 0x3900da00, 0x64095161, 0x05210d7d, 0x642582db, 0xda21057d, 0x05a74692, 0x7d640b20, + 0x01240808, 0x0000c800, 0xd1058a04, 0x81000500, 0x01030e40, 0x00030435, 0x070f0700, 0x03140201, 0xb4d2ffb8, 0x55021010, 0xfc230882, 0x840b0bb4, + 0x063e4a08, 0x09080323, 0x4d0f8409, 0x21820599, 0x8205474a, 0xb4d82408, 0x83060f0f, 0x05a84833, 0xa8481182, 0x45088205, 0x0322058c, 0xa65f066c, + 0xed2b220a, 0x05384a5d, 0x30312f33, 0x23112101, 0x8a042111, 0x03c604fd, 0xfa2105c2, 0x209782df, 0x05af6c03, 0x00f00530, 0x00230017, 0x40bd0027, + 0x04000422, 0xaa180b06, 0x272020f9, 0x0921ba83, 0x3b058310, 0x26603525, 0x09262601, 0x15790976, 0x15341b02, 0x09342102, 0x2726270a, 0x15180f26, + 0xe621dc8b, 0x23d586b4, 0x0c0cb4e2, 0xf024de84, 0x0d0d2840, 0x732e0982, 0x01290f29, 0x291f290f, 0x1e03293f, 0xaa180f15, 0x682111ac, 0x22d38428, + 0x845d5ded, 0xed2b2407, 0x67393912, 0xed260575, 0x2f39125d, 0xaa18ed5d, 0x032329a6, 0x18213521, 0x2423aaaa, 0x028dfdac, 0xafaa1873, 0x01350828, + 0x0300b306, 0xf0ff6900, 0xe1052406, 0x2a001d00, 0x87003700, 0x18241c40, 0x2515322c, 0x09322b06, 0x16080915, 0x1e2a0803, 0x00653225, 0x1e040f6a, + 0xffb80015, 0x056256fa, 0x15320037, 0x2b07000f, 0x04251815, 0x100f1407, 0x55020c0c, 0xffb8080f, 0x055f59f6, 0x0d0a0825, 0x8255020d, 0x40f1240f, + 0x820a0a11, 0x39082d09, 0x3f391f38, 0x90396f39, 0x115d0439, 0x2b37fd82, 0x2bc42b2b, 0x103917ed, 0x2fed2fc4, 0x005ded2b, 0x39123f2f, 0x85ed2f39, + 0x30312e03, 0x07061401, 0x15070606, 0x26263523, 0x058d7727, 0x37363626, 0x16153335, 0x2109f162, 0x12821127, 0x52363621, 0x6b0809cb, 0x06161617, + 0x554f5924, 0x86c58af4, 0x594f57f6, 0xf3514c56, 0xf694c595, 0xce574b4f, 0x8e3a3b40, 0x329a5e6a, 0x8efd4241, 0x3a3a8e6a, 0x31404341, 0x8cf3029b, + 0x5d4f49d9, 0x03a6a603, 0xd84a525a, 0x4ccc888c, 0x9b045e51, 0x4e62039b, 0x637fd049, 0x343839a6, 0x0286fc02, 0xae3c2f39, 0x7a03acfe, 0x37373601, + 0xb67061aa, 0x003c2d3a, 0x33062d58, 0x007c0443, 0x00200013, 0x2a1640d9, 0x3c202a03, 0x381c301a, 0x0ad39518, 0xb8100a2b, 0x1540c0ff, 0x1237100b, + 0xda951805, 0x0782520f, 0x3f630220, 0x1a022207, 0x081b5800, 0x95180020, 0xec261fa5, 0x0f0f0b40, 0x83755506, 0x40ec2408, 0x8209092f, 0x2292380f, + 0x223f221f, 0x0c101b02, 0x1b55020c, 0x0b16081b, 0x0855020b, 0x82090918, 0x83062005, 0x02082313, 0x0b820d0d, 0x18638520, 0x0d0e5806, 0x2b2bfd24, + 0x07583232, 0x30312409, 0x52215d2b, 0x35201059, 0x200d5952, 0x41951804, 0x2c4d0825, 0xb6fc3427, 0x1f227c02, 0xcfc7cadc, 0x02000047, 0xe1ff6a00, + 0x14067304, 0x28001900, 0x2940f200, 0x20051c03, 0x15261517, 0x0e3a0a3b, 0x213e1c3a, 0x0e490a4c, 0x214f1c4a, 0x0e6b1753, 0x207a0e7b, 0x3611217b, + 0x02264626, 0xe0ffb81d, 0x83cf83b4, 0x40210808, 0x371c121d, 0x110a181d, 0x1d171d37, 0x130f050c, 0x2601103e, 0x110a033f, 0x0c1d0011, 0xffb81a0f, + 0x832a84f8, 0x05817f08, 0x001b1a26, 0x402a0f14, 0x11728318, 0x10104123, 0xee481802, 0x0f2a2d08, 0x3f2a1f2a, 0x042a6f2a, 0x04230f0f, 0x6c596c83, + 0x18062007, 0x59171183, 0xa34c0761, 0xe4102205, 0x05cb552b, 0x11220e82, 0xcf443939, 0xfd3f2605, 0x33333f32, 0x2f18822f, 0x5d30315d, 0x23001001, + 0x34110022, 0x36363736, 0x21059367, 0xde422115, 0x06062109, 0x08081d51, 0xfe7304b9, 0xfef1eeeb, 0x454056eb, 0xb44c5cb4, 0xfd2a0366, 0x5dde44cf, + 0x6ec27696, 0x4291426e, 0x9caa553f, 0x2702a699, 0xcafef0fe, 0x06012f01, 0x4840c58d, 0x873f1152, 0x0a9eb348, 0x88549c2e, 0xe487a4fb, 0x35300856, + 0xc97fae32, 0x0100d3d0, 0xe6ff6d00, 0x7804ee03, 0x98003d00, 0x12264340, 0x3b363b26, 0x18440149, 0x18540159, 0x0b6f016a, 0x01791864, 0x18740b7a, + 0x35742279, 0x3f2c0c0f, 0x16032b2b, 0x3e1e1a1a, 0x3d3d0416, 0x09033f39, 0x09402b19, 0x242b370c, 0x0c10101b, 0x0904192b, 0xc0ffb800, 0x14092840, + 0x3f000037, 0x3f803f7f, 0x0c103302, 0x3355020c, 0x8308091b, 0x18092907, 0x55020b0b, 0x09091809, 0x86230582, 0x82f6103e, 0x2bed2cfe, 0x2f33115d, + 0x3917122b, 0x182fed2f, 0x820c3ea9, 0x31392210, 0x88991830, 0xd963180a, 0x051c4116, 0x16161727, 0x23153333, 0x062b4122, 0x67080e83, 0x33373632, + 0xce6bee03, 0x46a44f73, 0x79715745, 0x415f6c5b, 0x624fa240, 0x420d5aa4, 0x4e2d64c3, 0x3833232a, 0x35682d30, 0x643e9e6f, 0x3431292a, 0x38652529, + 0x0d47e866, 0x202a3040, 0x5e7f2728, 0x07269060, 0x595c8418, 0x20212275, 0x33cf1c21, 0x0f140b38, 0x443d2c43, 0xa6030e0f, 0x4a111109, 0x154a353b, + 0x3e481413, 0x0805bf42, 0x040f0532, 0x0011007c, 0x40a7001d, 0x35153a16, 0x45154a1b, 0x3f0e041b, 0x3e15050d, 0x3f1b0409, 0xb80f0a03, 0x0b40c0ff, + 0x0e370d0b, 0x0f0c090e, 0xb8120603, 0x82069142, 0xb6f42708, 0x55020c0c, 0x4b181b12, 0x3b260d76, 0x55021010, 0x1a831a00, 0x1f90002f, 0x1f6f1f1f, + 0x09041802, 0x18550209, 0x2113830c, 0x81421b18, 0x181e2019, 0x2f0a724b, 0x2b2b2bf4, 0x122b2bed, 0x2f333917, 0xed3f002b, 0x5d220183, 0x74423031, + 0x00102c06, 0x17163233, 0x16211521, 0x18340716, 0x0809ba59, 0xfe710457, 0xfef1e9e7, 0xed1a01ec, 0x011d6a37, 0x3ee0fee0, 0x9aa4c244, 0x9ca7a4a1, + 0x2e02a898, 0xccfee7fe, 0x11013c01, 0x3b011301, 0x49a50916, 0xd6d77fc2, 0xdad1cde0, 0x010000d7, 0x00000a00, 0x5d04ee03, 0x7d000700, 0x01031e40, + 0x05063f04, 0x054f0040, 0x00050002, 0x21b98402, 0xc5830c02, 0x051a0226, 0xeaffb803, 0x25074548, 0x0f0fb4f4, 0x11825502, 0x0db4e823, 0x2408840d, + 0x0b2240f3, 0x8409820c, 0x0603362d, 0x55060f0f, 0x03b003a0, 0x09030302, 0x3f090f08, 0x70094f09, 0x05434609, 0xe2825d20, 0x33250282, 0x322b2bfd, + 0x064b4c2f, 0x4408e182, 0x11231121, 0x03213521, 0xbc6cfeee, 0xe4036cfe, 0x48fcb803, 0x00a5b803, 0x68000200, 0xea0564fe, 0x1d007a04, 0xb8002400, + 0x15351640, 0x21020f74, 0x370c0910, 0x041a3e21, 0x0322050f, 0x17011777, 0x40f0ffb8, 0x3813820f, 0x09063e17, 0x14750c05, 0x11021e7a, 0x40c0ffb8, + 0x37100d1c, 0x17221111, 0x52cd8404, 0x1a2c0678, 0x10101205, 0xb8055502, 0x1140f8ff, 0x0520c183, 0x05231d84, 0x840b0b04, 0x40f42215, 0x27f58326, + 0x1e0c0505, 0x0c0a001b, 0x2008d882, 0x0001003a, 0x260f268f, 0x264f261f, 0x0f042660, 0x1b140126, 0x1025850c, 0x5d5dedf6, 0x2b5df410, 0x051d47ed, + 0xed2b2b32, 0x39392b2b, 0x5d2b2f33, 0xed3f3f00, 0x39395d2b, 0x37440683, 0x82052005, 0x061747e2, 0x33371233, 0x15020615, 0x11171614, 0x20333636, + 0x26340300, 0x08098223, 0xfeea0572, 0xbbf3fea9, 0x5551dd82, 0xe585765e, 0xbde19488, 0x01274b21, 0xc35d0130, 0xd3cec1e0, 0xfdfe4002, 0xfe0fc4fe, + 0x068e0172, 0xc44a4551, 0x12019f86, 0xfe63118a, 0xe6bda7f6, 0x02e80306, 0xfed5fe01, 0xfcdbb8fb, 0x00e80ab2, 0xfcff0200, 0x1a0559fe, 0x0300aeff, + 0x20000700, 0x50020f40, 0x06080101, 0x040d0550, 0x05090000, 0x11332f02, 0x00332f33, 0x2605e955, 0x21053031, 0x82112135, 0x1a052503, 0x1e05e2fa, + 0xca320383, 0x78abfe78, 0x01ffff00, 0x03000023, 0x00d105dc, 0x39820026, 0x07012308, 0xd9010400, 0x1e000000, 0x02031440, 0x0d5f0d20, 0x0d030d6f, + 0x05000001, 0x057f0510, 0x5d2f0503, 0x03833535, 0x00010038, 0x032a029a, 0x00f005c6, 0xb94d0016, 0xe0ff1400, 0x370c09b3, 0x0785b815, 0xb8132808, + 0x1740f8ff, 0x01371b17, 0x0d0d1310, 0x02135308, 0x2a01030e, 0x10180000, 0xb80d2a0b, 0x09b3c0ff, 0x2f0d370a, 0x8232fd2b, 0x00ed22a4, 0x0595563f, + 0x2b334b08, 0x012b3031, 0x1123012b, 0x26272634, 0x06222326, 0x11231107, 0x36361533, 0x15163233, 0x0eacc603, 0x404d1615, 0xab418d41, 0x54a24bab, + 0x2a02a69a, 0x6a461502, 0x43232424, 0x0345fd32, 0x453e68ab, 0x0200abb9, 0xe5ffc800, 0xcf82ca08, 0x004e2708, 0x4035015d, 0x04180b21, 0x2e01194d, + 0x554d2018, 0x66186a31, 0x794d6531, 0x79487513, 0x0d5a7352, 0x100e2005, 0xb2823d37, 0x82314021, 0x112d0808, 0x04461a00, 0x403f033b, 0x3f370d0b, + 0x3b3e433f, 0x3501354f, 0x371e353b, 0x24343e21, 0x2c033431, 0x29503457, 0x2b292901, 0x032c3456, 0x21c48207, 0x29825740, 0x0e07073c, 0x2009033e, + 0x4a4f3a2b, 0x3437024f, 0x20201a1f, 0x0606331a, 0x1d381a46, 0x01821a3e, 0x1a112008, 0x0f5f0000, 0x134f015f, 0x0d083322, 0x3355020d, 0x020c0c12, + 0x7f335f55, 0x33330233, 0x830c2a57, 0x0c2a2f0d, 0x55020909, 0x0e2b132a, 0x55021010, 0x6c72b82b, 0x4b088206, 0x2b2106c7, 0x82208308, 0x05be4b0f, + 0xea210882, 0x234c83b7, 0x2b012b70, 0x25060351, 0x2b2bfd2b, 0x0c833332, 0x5ded393c, 0xed2f3311, 0x2f2f3333, 0xed393912, 0x12112f33, 0x39ed2f39, + 0x2f005d39, 0x0e823f2f, 0x663f2b21, 0x122105cc, 0x82168417, 0x825d2027, 0x622f202d, 0x2b2106ce, 0x4383182b, 0x05bd450b, 0x26343523, 0x08f24927, + 0x82112321, 0x6c062001, 0x322109f0, 0x27248216, 0x33353317, 0x36362115, 0x09984118, 0x14150622, 0x16221884, 0x3d840116, 0x6f232321, 0xc90806d5, + 0xbee2ca08, 0x093dba6a, 0x352d4717, 0x79664561, 0x622a5543, 0x0f6e7e37, 0x7cb5dd12, 0x4d2f3b0c, 0xbc30a0cc, 0x48b486f4, 0x780a5847, 0x247f01b5, + 0xb5553173, 0xb140093e, 0x3b72595b, 0x2e642e56, 0x5efa8472, 0x832f3736, 0x78112e57, 0x272f2f96, 0xc29b4201, 0x13d3223c, 0x1e1a1631, 0x44485a4c, + 0x10130b16, 0x256e9526, 0x4efc2644, 0x7945b203, 0xfd4d4d2f, 0x2dd105d5, 0x64932f30, 0x1812dcdc, 0x35c92430, 0x464f4e49, 0x180c1748, 0x028e1e0c, + 0x24754d4f, 0xa3fd1d1f, 0x6d302f2d, 0x00ffff00, 0x06ebff89, 0x00d1053e, 0x002c0026, 0x00070100, 0x0054032d, 0x403f0000, 0x01230f0b, 0x100f2101, + 0x21550210, 0xb4eeffb8, 0x08840f0f, 0x0db4de23, 0x2408840d, 0x0c1140fe, 0x2209820c, 0x820b0b1e, 0x09102205, 0x21058209, 0x0e452f01, 0x5d352105, + 0xaf265983, 0x3d0459fe, 0x5982db05, 0x59844c20, 0x28024d22, 0x18365982, 0x23501140, 0x237f2360, 0x50020303, 0x7f0c600c, 0x2f0c030c, 0x3282355d, + 0x82000221, 0x053c0800, 0x00140627, 0x011a0016, 0x1700b91f, 0x4540e8ff, 0x1837100d, 0x370c0918, 0x10091819, 0x16150337, 0x03157515, 0x01171818, + 0x42080d10, 0x050e0413, 0x17080d01, 0x01194017, 0x0c0b1019, 0x0b219083, 0x308a830c, 0x30191a0b, 0x700d500d, 0xcf0daf0d, 0xb80d050d, 0x051168ff, + 0xdc200882, 0x0882c984, 0x8205bf6d, 0x85d22008, 0x080d21c9, 0x0d253883, 0x060f0f1e, 0x24158255, 0x0c0d40e6, 0x2209820c, 0x8209091c, 0x020d2305, + 0x9053ffb8, 0x22088205, 0x460d40f6, 0x00270546, 0x02101004, 0x82b80055, 0x0f1122a7, 0x2209820f, 0x820d0d2e, 0x831c2005, 0x24158287, 0x0b0b40f8, + 0x200f820b, 0x822d830e, 0x4bf0200f, 0xf0210e2f, 0x225b83b6, 0x4e1c9100, 0xed230a78, 0x5d332b2b, 0x5d200874, 0x2b055746, 0x002f335d, 0x3f3f3c3f, + 0x3f3912ed, 0x2008715d, 0x15374421, 0x23010126, 0xbc270513, 0x0e689918, 0xfe72fc25, 0x18a58af1, 0x080a6e99, 0x7c5d0428, 0xcdda5249, 0xd1fd3f03, + 0x01002f02, 0x6603d500, 0xd1058702, 0x27000300, 0xff0000b9, 0x0d1440e8, 0x18013710, 0xd95e0c09, 0x01012905, 0xb1000303, 0x00ed2f02, 0x01238084, + 0x832b2b2b, 0x87022e68, 0xc288d6fe, 0x95fdd105, 0x00006b02, 0x21458302, 0x45841804, 0x18000721, 0x2f275748, 0x01010046, 0x07030505, 0x3fb10403, + 0x06060106, 0x33226684, 0x6a825d2f, 0x2f333c26, 0x0130313c, 0x83066347, 0x82212070, 0x217485dd, 0x7a898102, 0x2a087e84, 0xff950004, 0x050708e3, + 0x001b00ed, 0x002b001f, 0x40ca0037, 0x481d470c, 0x591d561f, 0x051e681f, 0xe0ffb80b, 0x100e1640, 0x82200137, 0x1d1f3704, 0x171d071c, 0x291d021d, + 0x291f1e1e, 0x40f4ffb8, 0x370b0912, 0x04820c23, 0x400d4f2e, 0x752f7a1b, 0xb8170435, 0x4a40e8ff, 0x11212c82, 0x24048218, 0x1b1b031f, 0x06827f17, + 0x030d3708, 0x0951110d, 0x20512f02, 0x02294029, 0x51352929, 0x081e0a23, 0x1c011e40, 0x002a321e, 0x26260126, 0x1e1c2a2c, 0x39202006, 0x0d01390f, + 0x00010020, 0x062a1400, 0xd682ed2f, 0x115d3323, 0x06a74433, 0x2fed5d24, 0x0d465d2f, 0xed5d2505, 0x3333ed3f, 0x22820e82, 0x2b2b3f22, 0xf782f182, + 0xed108728, 0x00c0875d, 0x66612b2b, 0x0d70440a, 0x36323329, 0x01013337, 0x79010123, 0x2d3f17ce, 0xc04e931e, 0x41bcddd9, 0x3c0e3f7f, 0x7f6d3973, + 0x7a49717b, 0xf5020e25, 0x03a5f4fc, 0x7f8a020c, 0x023a104f, 0xe63212be, 0x21f2c9d2, 0x3332ad21, 0x98969c95, 0x68022342, 0xd1052ffa, 0x407fccfb, + 0x0254080f, 0xe8ff0f00, 0xd3058602, 0x2b001b00, 0x0d409100, 0x1d621d53, 0x16031c70, 0x37110b18, 0xf0ffb805, 0x0f0b3740, 0x011a0037, 0x1b051c0b, + 0x1216051b, 0x16520f12, 0x05502509, 0x01084703, 0x291f1212, 0x14114008, 0x01082f37, 0x001b1c08, 0x0308001a, 0x1e012a0b, 0x2106e45b, 0xe45bb4ec, + 0x40ec2a06, 0x060c0c0b, 0x09060155, 0x26058209, 0xb3c0ffb8, 0x44371410, 0xed280667, 0x332f3317, 0x2b5d2f32, 0x6205c655, 0x173908a1, 0x312b2b39, + 0x37135d30, 0x33363411, 0x14151632, 0x14110702, 0x36323316, 0x06e25d37, 0x13073522, 0x080a7274, 0x06060765, 0x7bb10f15, 0x787c606f, 0x1a1b1da5, + 0x71376944, 0x4f6b5c39, 0x0d2f62f8, 0x0f190a0d, 0x0b06190f, 0xeba6010c, 0x99e2c701, 0xfe5c6d82, 0x61fee6f7, 0x4a212b59, 0x722b2ca2, 0x0262e17f, + 0x3780a92b, 0x0c11301e, 0x150e0c0d, 0x0200586e, 0x00009200, 0xb0034204, 0x07000300, 0x15402500, 0x0101cb07, 0x8503cb05, 0x03002c06, 0x03300310, + 0x5d2f0303, 0x7b2f33ed, 0xed320592, 0x21133031, 0x11132111, 0x03921121, 0x4c50fcb0, 0x06831803, 0xfc640330, 0x001803e8, 0x83000100, 0x5202bd01, + 0x4f828c03, 0x0b401738, 0x00030202, 0x30020000, 0x2f020202, 0x002f335d, 0x312f332f, 0x3b820130, 0xfe520229, 0xfe8c0331, 0x82cf0131, 0x28338a1e, + 0x40230007, 0x02cb0613, 0x25838202, 0x0000cb04, 0x3d87cb06, 0x4183818b, 0x85820520, 0x01254583, 0x01c9fe83, 0x224b8537, 0x82c9fe4c, 0x00b13381, + 0x03220488, 0x000b00f9, 0x09144021, 0x2f030f09, 0xc4824f03, 0x00060629, 0xa0009000, 0x85000300, 0x828f828a, 0x00343acb, 0x15003233, 0x22230014, + 0x0201b100, 0x0201b6b7, 0xb7b6fefe, 0x4002fefe, 0x250a83b7, 0xfefeb6b7, 0xa3830201, 0xaa017026, 0xa0036602, 0x17335582, 0x0b406500, 0x26231006, + 0x17100637, 0xb800371a, 0x82b3f0ff, 0x2107830c, 0x10821540, 0x06cb1227, 0x00cb0c06, 0x251c8309, 0x0e0b1009, 0x21830337, 0x07831882, 0x82134021, + 0xcb152410, 0x820f0303, 0x09202721, 0x09600930, 0x5f410904, 0x822b2005, 0x2f002100, 0x0882e783, 0x30312b24, 0x1b593201, 0x34352306, 0xe8181736, + 0x35320789, 0x6b012634, 0x68939368, 0x69929368, 0x48676649, 0x95826748, 0x03830e83, 0x48674c29, 0x49666649, 0x67006748, 0x072107bd, 0x6351183c, + 0x00d83008, 0x006b0131, 0x0002b60a, 0x07060b0c, 0x82352b25, 0xff682623, 0x051d04e1, 0x282382d1, 0x01000044, 0xd9d80006, 0x23218400, 0x261d3736, + 0x2b6a2185, 0x00d6240f, 0x827501a9, 0x00012523, 0x150f2b2f, 0x296a2385, 0xf4d6350f, 0x40110000, 0x2640010c, 0x00022650, 0x0f062226, 0x355d2b25, + 0x4d849383, 0x6a500721, 0xda2208c3, 0x4d86a800, 0x4d8d2c20, 0x6adb0521, 0xda2108c1, 0x274d85f5, 0x24302420, 0x25240002, 0xc8244d89, 0x9d040000, + 0x2820e184, 0x0724bd82, 0x3300d800, 0x0125e184, 0x020f0e00, 0x249b8503, 0x04e6ff6a, 0x20e18460, 0x82238248, 0x85f720e1, 0x232223e1, 0x21850012, + 0x0f314318, 0x4000d922, 0x12219386, 0x20458c0c, 0x457b1806, 0xfed92f09, 0x400f0000, 0x2670020a, 0x20260001, 0xdf871515, 0x0f314318, 0x4f00da22, + 0x918f4b86, 0x9185df83, 0x8800da21, 0x85182091, 0x0f8f7091, 0xd000d622, 0x29234586, 0x850f0725, 0x0f8d7023, 0x00fbd631, 0x0c401100, 0x40353002, + 0x35000235, 0x41231a31, 0xe3250973, 0x5007a205, 0x07dd7002, 0xce00da22, 0x27214d86, 0x204d8c28, 0x25938305, 0x0100004a, 0x73410006, 0x50022806, + 0x02336033, 0x86343300, 0x0100374d, 0x59fe7300, 0xec05a205, 0xf7003800, 0x06092040, 0x26070e06, 0xcb18061d, 0x2c321639, 0x40e0ffb8, 0x370c0923, + 0x53363232, 0x03280d2e, 0xcb183522, 0x312c104a, 0x2b2a0031, 0xb4e6ffb8, 0x55020f0f, 0xec760883, 0x122b3d05, 0x55020909, 0x2b1f2b0f, 0x09762b02, + 0x22102201, 0x04272b04, 0xb8211009, 0x1340feff, 0x212b1b83, 0x1004256c, 0x25550210, 0x820b0b10, 0xffb82205, 0x244284f6, 0xe4ffb825, 0x821f83b4, + 0x40ea2408, 0x820c0c1d, 0x3a752a1b, 0x3a403a0f, 0x09151a02, 0x212b8312, 0x1f831c09, 0x39680928, 0x2b2bf410, 0xd2645ded, 0x2bed2b06, 0x39171233, + 0x2f5d2f2f, 0x16822b5d, 0x20058861, 0x05a04bed, 0x12ed5d39, 0x32fd3f39, 0x0130312f, 0x34055d2b, 0x24222726, 0x35022627, 0x18210010, 0x201722cb, + 0x12925b11, 0x82032b08, 0xfead0203, 0x706766e0, 0x6c01a101, 0x9909017f, 0x39761f12, 0xfa6faf45, 0x3001ddfe, 0xbf600601, 0x0271fe48, 0x5ed45a53, + 0x9a5b0301, 0x156b2b0a, 0x605f0f2b, 0xc3230161, 0xcb186501, 0xfd271645, 0x0f462981, 0x5b16250e, 0x002207a9, 0x1f420003, 0x23003506, 0x34003000, + 0x43403f01, 0x32343224, 0x0d203302, 0x133d3710, 0x209da618, 0x3f342f3e, 0x03344f34, 0x33333434, 0x1205221e, 0x40281521, 0xb807041e, 0x2640c0ff, + 0x55020d0d, 0x0994a618, 0x50313136, 0x02336033, 0x18003333, 0x0601060f, 0x40362421, 0x55020f0f, 0x0c7aa618, 0x0c0a4023, 0x2312820c, 0x1806001a, + 0x303aaf55, 0x091b40ee, 0x00550609, 0x361f3692, 0x2b02363f, 0x29548308, 0x10181b2b, 0x55020b0b, 0xca6db818, 0x18182007, 0x21113ca6, 0x7f183585, + 0x5d2008cd, 0x20056654, 0x066b542b, 0x0782fd20, 0x2f323228, 0x3912115d, 0xf1415d2f, 0x3f2b3108, 0x393912ed, 0x2f33113f, 0x315d2f33, 0x2b015d30, + 0x3131a618, 0x2303132d, 0xfe430401, 0x59f4fefe, 0x180a52a9, 0x292035a6, 0x01f3b334, 0xe4fe7f11, 0xa618f6fe, 0x053c233a, 0x018afe8e, 0xffff0076, + 0x0000c800, 0x01083b05, 0x2b002602, 0x07010000, 0x7600d600, 0x2306db43, 0x0b060c10, 0x24052944, 0x040000b9, 0x2023845f, 0x2023864b, 0x33238222, + 0x0112401a, 0x1b6f1b4f, 0x1b031b9f, 0x00012611, 0x0808171b, 0x00272f82, 0x00355d2b, 0x82200002, 0xe3250857, 0x1300d105, 0x39011700, 0x01120eb7, + 0x52080416, 0xc0ffb80b, 0x0f0f0f40, 0x400b5502, 0x0b370f0c, 0x35050c0b, 0x20138317, 0x3713831c, 0x17101700, 0x100b1702, 0x07040317, 0x0007030c, + 0x150f1200, 0x19140303, 0xb42b2082, 0x55020d0d, 0xfaffb802, 0x841010b4, 0xb4f42308, 0x08840b0b, 0x4118e620, 0xea220eaf, 0x2b840b40, 0x0c0c1222, + 0xf62a1f84, 0x0f0f2940, 0x0a025506, 0x05830d0d, 0x830c0c21, 0x09092105, 0x78320582, 0x40190f19, 0x03195019, 0x0e0b0909, 0x14060316, 0x6a5bb807, + 0x20088206, 0xffd418fc, 0x114f7f17, 0x83b4e621, 0x49338260, 0x088405c4, 0x08826683, 0x22056a5b, 0x5b186c07, 0x17220c6a, 0x3d7f3339, 0x842b2008, + 0x83ed2000, 0x2f002712, 0x3917123f, 0x8e52712f, 0x26138206, 0x23013031, 0x18112311, 0x0807b04e, 0x21153328, 0x33153335, 0x15213501, 0xc6a8e305, + 0xa8c619fd, 0xe702c6a8, 0x92fea8c6, 0x550419fd, 0xd902abfb, 0x550427fd, 0x0082f08c, 0xa8fe2f08, 0x0100cccc, 0x00001300, 0x14065f04, 0x24011e00, + 0x1d031c40, 0x1d751d16, 0x0e141703, 0x12111151, 0x42080d18, 0x0112041b, 0x15080d01, 0x1959020f, 0xff931815, 0x40fc2308, 0xa7180b11, 0xe4202af1, + 0x2c06f94d, 0x060d0d08, 0xffb80055, 0x092140ec, 0x2a098209, 0x201f2091, 0x14022060, 0x4e031715, 0xc34e06b7, 0x111a2b05, 0xffb80d0f, 0x1010b4de, + 0x08825502, 0xd341e020, 0x0c0d2305, 0x0f840909, 0x6108ba4e, 0x21820514, 0x4eb4ee21, 0x734106b6, 0x20118205, 0x06bf4eec, 0x68830a20, 0x18880d21, + 0x270b2450, 0x2bfd3232, 0x5d32172b, 0x220c8441, 0x4e2f2b2b, 0x40510865, 0x30312205, 0x0e644e5d, 0x33352330, 0x21153335, 0x36112115, 0x16323336, + 0xa7180415, 0xa6280ad1, 0x4101bca6, 0xbc58bffe, 0x0dd7a718, 0xf4042708, 0x869a9a86, 0x5249edfe, 0x0200cdda, 0x00002c00, 0xc8073303, 0x25000b00, + 0x00b9b500, 0x40d0ff1b, 0x37100b4a, 0x0482300e, 0x0c0c3c08, 0x1c0f5215, 0x1c021c1f, 0x22191c19, 0x010f7052, 0x04090f0f, 0x0a030632, 0x08013203, + 0x0c0f2825, 0x0c020c1f, 0x0c192818, 0x0b086d27, 0x05140a5a, 0x03195a02, 0x0210100c, 0x5e0c0355, 0xde220608, 0xcf180fb4, 0x08431828, 0x14032205, + 0x05085e0f, 0x09b6fc28, 0x03550609, 0xad46266d, 0x2b2b3306, 0x32ed322b, 0xe432edfd, 0x2fed2f33, 0x3f00ed5d, 0x028232ed, 0x0a823320, 0x2f079a4d, + 0x2b2b3031, 0x33352121, 0x21352311, 0x33112315, 0x19215e18, 0xd5027b08, 0xc3c3b4fd, 0xc3c34c02, 0x667d075e, 0x2d265334, 0x2d30203c, 0x7e038802, + 0x28513368, 0x2e1d432a, 0x04980131, 0xfb9898a1, 0x9830075f, 0x2b262497, 0x884b5b2a, 0x282524a6, 0x00475b29, 0x00f2ff02, 0x06410200, 0x0003003c, + 0x40c5001d, 0x73067c50, 0x04040213, 0x4014aa0d, 0x14370c09, 0x1a111411, 0x020707aa, 0x1d080105, 0x091204ad, 0x0455020d, 0x370f0940, 0x11ad1004, + 0x0d820d2a, 0x091a112c, 0x1155020c, 0x1f011f7f, 0x1e670492, 0x1811200d, 0x212843a4, 0x43820cb4, 0xffb80122, 0x8205d961, 0x05be6408, 0x0a8c4a18, + 0x2006ec57, 0x2b00822b, 0x2bfd325d, 0x5ded322b, 0xed2b2b2f, 0x00220383, 0x94533f3f, 0xed2b2306, 0x4a422f33, 0x13332505, 0x22230614, 0x2606ec54, + 0x36342315, 0x53163233, 0x32080671, 0xbcbc7701, 0x285067ca, 0x2d201e3a, 0x70212317, 0x322f4e68, 0x162c2120, 0x5d042124, 0x8281df01, 0x2223201a, + 0x82814145, 0x22231f1b, 0x00003e48, 0x825f0002, 0x07ff2e04, 0x000b003c, 0x408b000f, 0x0d530e15, 0x092c420d, 0x3f0f2f3d, 0x0e0f020f, 0x40c0ffb8, + 0x370d0b1f, 0x6d110f0e, 0x5a0b080a, 0x0503140a, 0x420e5a02, 0x0d2d2b33, 0x55020d0d, 0x0f0f0e03, 0x6d035506, 0x08314310, 0x32f43224, 0x0382fd10, + 0x2f33e629, 0x005d2f2b, 0x8232fd3f, 0x21f08202, 0x1f423031, 0x3521220c, 0x09094221, 0x60fd2a24, 0xf441a002, 0x0a062606, 0xff02009a, 0x20c382fc, + 0x062f5136, 0x27408436, 0x01015302, 0x7f050506, 0x02027000, 0x097f0200, 0x00920901, 0x200d5c6a, 0x395d6a02, 0xa918fc20, 0x322711f2, 0x322b2bfd, + 0x822f5de6, 0x3f2f21c0, 0x0120bc84, 0x2d08b082, 0x33112303, 0xc6fd3602, 0xbcbf3a02, 0x9a3705bc, 0x5d042ffa, 0x80000200, 0xdf020000, 0x0b00d307, + 0x8f001900, 0x700c1f40, 0x12120112, 0xa243aa16, 0x2919350b, 0x0e0b400c, 0x29130c37, 0xc0ffb812, 0x0f0b1d40, 0x1b0c1237, 0x2008ab43, 0x2a774112, + 0x0d0db627, 0x6d035502, 0x079b431a, 0x23089943, 0x2b2fed2b, 0x24099a43, 0x5d2f33ed, 0x0e734133, 0x2306142c, 0x33352622, 0x32331614, 0x7d413536, + 0x930a2909, 0x9e97999c, 0x48494d45, 0x29068241, 0xcfa83b07, 0x7286a8cf, 0xdd828a6e, 0xdd820120, 0x6806303f, 0x11000d00, 0x15409a00, 0x0a060600, + 0x10030350, 0x290d0f05, 0x100b4000, 0x29070037, 0x32d38506, 0x7f063710, 0x92130113, 0x090c0e00, 0x0e550209, 0x820c0c0c, 0x061a2505, 0x0f010f7f, + 0x8207b245, 0x6b541808, 0xb4ee210f, 0x5418d183, 0xf76b0b74, 0x41118205, 0x0f220599, 0x5d421288, 0x054c4308, 0x825de621, 0x240282ea, 0x333f2f00, + 0x82e9822f, 0x06e751e8, 0x3408dc86, 0x33112303, 0x8c8b3002, 0x41928e8a, 0x27444145, 0x6806bcbc, 0x9cbec09a, 0x83626b7a, 0x5d0498f9, 0x89000100, + 0x1c035ffe, 0x2000d105, 0x37408d00, 0x0c09201c, 0x07244337, 0x08010c31, 0x53131717, 0x18180d1b, 0x1e1e2a10, 0x4322020b, 0xa9410a22, 0x4340202a, + 0xcd700c21, 0x07204309, 0x39121122, 0x0023bc83, 0x8232fd3f, 0x32fd21c7, 0x31240782, 0x23212b30, 0x70094545, 0x836f0bbc, 0x74012208, 0x053f45eb, + 0x0906c22e, 0x41215842, 0x51240913, 0x099a8722, 0x0806bc41, 0x291c9821, 0x13505126, 0x0b0a9e0b, 0x35228ca0, 0x8e000200, 0x46025ffe, 0x0300db05, + 0xb3001b00, 0x83081c40, 0x1b3a08eb, 0x0d075317, 0x40024401, 0x02370d0b, 0x0d050e03, 0x14040411, 0xffb80a2a, 0x0b0c40c0, 0x0a0a3717, 0x011d7f0e, + 0xb800921d, 0x1a40fcff, 0x55020c0c, 0x0c0f6000, 0x55020909, 0x0d830c0f, 0x011a0f27, 0x010e7f60, 0x07d6410e, 0xd6410882, 0x06fb4106, 0x41ffb821, + 0x188205d6, 0x84058947, 0x0f0f2308, 0x08825506, 0x2205d641, 0x411c880e, 0xe42909d6, 0xe42b2bfd, 0x115de62b, 0x05947d33, 0x3f332f25, 0x41ed2b3f, + 0x01210511, 0x6b671823, 0x3311210b, 0x230c2a75, 0xc3d4d483, 0x8527ff82, 0xbc08259c, 0x4107063c, 0x24080510, 0xf8c31805, 0x9e0b0a99, 0x196f3f8e, + 0xa3fb0b04, 0x511b361a, 0xff0b1350, 0xff2c00ff, 0x084d03eb, 0x00260201, 0x059f4a2d, 0x016cff28, 0xb1140075, 0xfa831a01, 0x0b093508, 0x1a00370e, + 0x25150416, 0x00352b2b, 0xfec2ff02, 0x06af0259, 0x0015008c, 0x40c5001c, 0x1c010a29, 0x1b550201, 0x1b751b65, 0x1a161803, 0x1a1a1b1b, 0x05153e12, + 0x2a05a04c, 0x134f1a1a, 0x067f1301, 0x4c160601, 0xf2220b90, 0x904c1740, 0x06132d05, 0x0e150316, 0x55021010, 0x0b0b0c15, 0xb8220582, 0xbc48deff, + 0x08152305, 0x0f840909, 0xba74e420, 0x02152105, 0x15263183, 0xb4f2ffb8, 0x18840d0d, 0x0fb4ec25, 0x8255060f, 0xb4f62311, 0x08840c0c, 0x0a40e42e, + 0x55060909, 0x15011570, 0xf4101e92, 0x08b5c818, 0x172b2b29, 0x2b2bed32, 0x4c5d2f2f, 0xfd2c0563, 0xed3f2f32, 0x2f332f33, 0x5d393912, 0x106e4e18, + 0x36363738, 0x35231135, 0x03233721, 0x33132303, 0xa8c80902, 0x0a2c8328, 0xad185f1c, 0xa628086d, 0x9bb8b99f, 0xc41be3e4, 0x0d70ad18, 0x01b42708, + 0x0100ff00, 0xffff007b, 0x59fecd00, 0xd1057505, 0x2e002602, 0x06010000, 0x00fbdc00, 0x01b11500, 0xecffb81a, 0xbf830a40, 0x0c1a0028, 0x2b250005, + 0x2d83352b, 0x59fec126, 0x1406af04, 0x4e202d82, 0x07302d82, 0x7cffdc00, 0x11000000, 0x30010c40, 0x021a401a, 0x0a242b83, 0x355d2b25, 0x24081c82, + 0x0000c100, 0x5d04af04, 0xe1000b00, 0x02285b40, 0x09db01d8, 0x0f010903, 0x1d011f0d, 0x2d0d1f02, 0x300d2f01, 0xd1ad180b, 0x01053f1e, 0x020b0805, + 0x0a700a60, 0x000a0a02, 0x0d200d00, 0x08020d40, 0x09090c03, 0x0c035502, 0x05820c0c, 0xad181a20, 0xb4242e9f, 0x55060f0f, 0xf6233382, 0x850d0db4, + 0x054e4a08, 0x20069370, 0x0c4d1889, 0x2b2b2708, 0x2b2bfd2b, 0xda4d5d32, 0x99ad1805, 0x042e083c, 0x02d1fd5d, 0x00fcfd2f, 0xc8000100, 0x760459fe, + 0x1a00d105, 0x1d40b700, 0x0c09200c, 0x15111137, 0x020d0d53, 0x07350403, 0x10100801, 0x8f752a18, 0x40f22208, 0x2f18821c, 0x0b0e0a55, 0x0a55020b, + 0x0505010a, 0x011c0f1c, 0x2847cf70, 0x0c0cb4e6, 0xb8015506, 0x05bb4cff, 0x1b6c0122, 0x22092f4a, 0x57ed2b2b, 0x2f2005ce, 0x2207df50, 0x503fed3c, + 0x2b2005d5, 0x2105d570, 0x8e6d2115, 0xbf022812, 0x02c609fe, 0x6ce3fee8, 0x06270c2f, 0xdffad105, 0x6c2f12b0, 0x2d08091c, 0x01003e1e, 0x59fe0500, + 0x1406e901, 0xa3001800, 0x200a2e40, 0x0f370c09, 0x0b53130f, 0x0401020d, 0x0e0e0801, 0x16162a08, 0x011a7f01, 0x2948921a, 0x30e5490d, 0x82058e46, + 0xb4fc23e7, 0xf0840d0d, 0x2010ee49, 0x2ef98a19, 0x2b2bfd5d, 0x39125de4, 0x2f32fd2f, 0x882f3f00, 0x112324f5, 0x92331133, 0x014e08f3, 0x6cbc8e49, + 0x85ae0501, 0x09286425, 0x5e284e18, 0x14060152, 0x371200fa, 0x0caca224, 0x170ba00c, 0x3315574f, 0x00ffff00, 0x0559fec8, 0x02d10538, 0x00310026, + 0x00060100, 0x0000fedc, 0x010e4013, 0x16301620, 0x00031640, 0x00040a16, 0xfb542b25, 0xfeb92605, 0x045f0459, 0x083b717c, 0x858bdc21, 0x23002a2b, + 0x23202310, 0x17230003, 0x422b850d, 0x57830551, 0x16005408, 0x1f404801, 0x07610700, 0x07a10771, 0x0b070c04, 0x36071b0c, 0x54074607, 0x75076507, + 0xb001b007, 0xb8070a07, 0x4340c0ff, 0x7637110b, 0x010f0106, 0x011f0602, 0x01260615, 0x06340136, 0x06440146, 0x06530156, 0x01790660, 0x040e0670, + 0x015a0106, 0x42020655, 0x072f069b, 0x03060804, 0x0804010a, 0x0a101001, 0x82020106, 0x05fa6547, 0x68630882, 0x13072205, 0x078a5c0a, 0x0b230884, + 0x8255020b, 0x40e22408, 0x820f0f33, 0x09082209, 0x22058209, 0x820c0c12, 0x0d262205, 0x2705820d, 0x180f1878, 0x02021840, 0x02211984, 0x2519830c, + 0x10041302, 0xd6181010, 0xe4212f12, 0x06297ab4, 0x0db4ec2c, 0x0455060d, 0xb6ecffb8, 0x08820c0c, 0x41176c21, 0xed220ad5, 0xbc532b2b, 0xfd2b2307, + 0x35662b2b, 0x002f2905, 0x3f33333f, 0x3939123c, 0x0805da42, 0x7172014b, 0x2b005d5d, 0x3504715d, 0x11231101, 0x33110121, 0x23061411, 0x35272622, + 0x33161633, 0xfd800432, 0x3301b901, 0xceb98402, 0x255127b4, 0x1e3a160b, 0x058a947f, 0x05ccfa3e, 0x04a0fbd1, 0xbf18fa60, 0xa80608d1, 0x01000a05, + 0x06c14100, 0x26002008, 0x1c401801, 0x190c1503, 0x15751516, 0x080d1004, 0x0e041342, 0x1e080d05, 0x1a53221e, 0x4f1d1d0d, 0x1722138f, 0x8f4fffb8, + 0x50088205, 0x0882059e, 0x1740f828, 0x55020f0f, 0x05840c17, 0x09090822, 0x22220b82, 0x05820c0c, 0xfeffb822, 0x0884fa82, 0x25068e4f, 0x0d0d0417, + 0x34825506, 0x1c40ec24, 0x09820909, 0x1f289126, 0x02286028, 0x4f0e495e, 0x3d5e0c89, 0x40f62210, 0x4f5e830b, 0xf020089b, 0x201f894f, 0x0a6f4127, + 0x2b2bfd22, 0x2110864f, 0x2b492f33, 0x3f3f2905, 0x313912ed, 0x35045d30, 0x41142062, 0x36240c72, 0xa3033637, 0x390ef35d, 0x4e27b4cc, 0x3c160b26, + 0x17614c1a, 0x02562516, 0x26874d4b, 0x3b4c292a, 0xfc5dbefc, 0x0ffd2b06, 0x0607ccbf, 0x260a05a8, 0x49582626, 0x05e13a05, 0x024607da, 0x00320026, + 0x00070100, 0x019b00d8, 0xb60a0075, 0x27260002, 0x08fb570f, 0x7104e124, 0x2382d105, 0x23825220, 0xd8000623, 0x056957e3, 0x061b1a27, 0x352b2500, + 0xc75918ff, 0x00d92211, 0x2145869c, 0x458c242a, 0x888c0621, 0xe4d92145, 0x1e214585, 0x24458718, 0x0559fec8, 0x20678498, 0x27678435, 0x0000f6dc, + 0x2402b11f, 0x83077149, 0x0a402e08, 0x55020909, 0x05202400, 0x2b2b250d, 0x0828832b, 0xfe1b0032, 0x04720359, 0x0027005d, 0x002d40d7, 0x200d100d, + 0x2021030d, 0x0c370c09, 0x13130f09, 0x0f0a4317, 0x08091c05, 0x53022626, 0x25250d22, 0x0c052a1f, 0x22051a65, 0x57b81309, 0x08820630, 0x5046f020, + 0x13132905, 0x70294029, 0x1b0c0229, 0x1b272484, 0x020c0c0c, 0x181a1b55, 0x4a1b0792, 0x21820505, 0x8205174a, 0x050e4208, 0x49470882, 0x47088305, + 0x09200549, 0x0624bd82, 0x28880955, 0x2a0f0e42, 0x2b2f3311, 0x2f39112b, 0x4232fd2b, 0x2f220609, 0x0b823c3f, 0x3912112f, 0x5d2b3031, 0x32331616, + 0x26343536, 0x082b6427, 0x23151722, 0x45063e64, 0x3c370b78, 0x525e284e, 0xbca60201, 0x3159ab70, 0x2a0a2c2c, 0xa257364f, 0x4501844b, 0xfa340682, + 0x15574f17, 0x5d042333, 0x054b5aa5, 0x090ac107, 0xfbfc3d4d, 0x21078d45, 0x5418ff00, 0xd6231193, 0x5a014a00, 0x352205a5, 0xeb411a31, 0x0f417506, + 0x00afd62d, 0x0a400f00, 0x01387f01, 0x83343800, 0x355d2525, 0x00010000, 0x2a080082, 0xd105ee04, 0x5d000f00, 0x0a0d2640, 0x03033200, 0x3504090f, + 0x0f0f0306, 0x4f111f11, 0x020b0311, 0x095b080b, 0x1409000d, 0x44140402, 0xfa2906a8, 0x060c0cb4, 0xffb80455, 0x05054afc, 0x4f5b0432, 0x2f050105, + 0x2b2bf45d, 0x39ed322b, 0x33e41039, 0x2105b94e, 0xaf5232fd, 0x21012107, 0x2305f665, 0x21112115, 0x233d0382, 0xb4fe1402, 0xecfd4c01, 0xecfdee04, + 0xb4fe4c01, 0x8fe402c6, 0xb0b0ae01, 0xfd8f52fe, 0x0897821c, 0xeaff3e48, 0x9e05fd02, 0xc2002300, 0x20042140, 0x18370d09, 0x0a510715, 0x0f030e0a, + 0x113e0b14, 0x23050e0f, 0x033f1f23, 0x7f254f09, 0xb8160225, 0x2840c0ff, 0x16370b09, 0x00130716, 0x0909258c, 0x0e0a0c07, 0x18041511, 0x1a69090c, + 0x0c1a2609, 0x100d4007, 0x22387337, 0x2105ab67, 0xee832207, 0x0d140725, 0x8255060d, 0x05944534, 0x24880722, 0x8308344c, 0x2b2b24ec, 0x822f3917, + 0x052873e4, 0xa6182b20, 0x11200b99, 0x2b20fb87, 0x24062973, 0x33352335, 0x22038311, 0x41211133, 0x99640507, 0x32332405, 0x73333736, 0x7f2a082d, + 0x8401bc7f, 0x2d017cfe, 0xa618d3fe, 0xa82d0dae, 0x9e240186, 0xbffe4101, 0x86dcfe9e, 0xb2a61853, 0xffff3507, 0xe1ffb200, 0xc8072905, 0x38002602, + 0x07010000, 0x6100d700, 0x23060f42, 0x1d0d1e2b, 0x2605fb43, 0x04e1ffb1, 0x82530657, 0x82582023, 0x00062d23, 0x000006d7, 0x0001b60a, 0x16091724, + 0x45852185, 0x45884620, 0x6300d822, 0x20214586, 0x21458c21, 0x4588d105, 0x8501d821, 0x1a192145, 0x5d18458c, 0xd9200ab9, 0x24204588, 0xfd728b8e, + 0x00d92109, 0x1d204585, 0x4f088b85, 0xb2000100, 0x29055ffe, 0x3400d105, 0x2e401001, 0x18231223, 0x213d093d, 0x094c2239, 0x224b214c, 0x17771377, + 0x0920330a, 0x2e2e370c, 0x0d32532a, 0x0d06241c, 0x06341503, 0x272f2f0a, 0xffb8002a, 0x090d40e0, 0x00550209, 0x03230006, 0x36141b0c, 0x28079357, + 0xf8ffb81e, 0x020b0bb4, 0x24088255, 0x0f1140ea, 0x2009820f, 0x2329830c, 0x0c0c161e, 0xef4c1584, 0x201e8205, 0x2f1e83f0, 0x761e5506, 0x1f360f36, + 0x03364036, 0xb80c140f, 0x3298d318, 0x0fb4ec25, 0x8255060f, 0x0562443a, 0xf0230882, 0x840c0cb4, 0x05b34a11, 0x356b0c22, 0x210a6444, 0xf855ed2b, + 0x12ed2309, 0x8a4e3917, 0xed3f2205, 0x08e0473f, 0x055d2b27, 0x22373634, 0x05ab5306, 0x0c37a718, 0x84363621, 0x0706210e, 0x210a1b6e, 0xb54f3337, + 0x14032605, 0x19090505, 0xcdd3180f, 0x51472610, 0x043d682d, 0x08327f05, 0x74a88c2a, 0x0116271a, 0xe8524849, 0x10ddd318, 0x85fc4e08, 0x2c50f1a2, + 0x3c14103b, 0x1b4e5217, 0x0c0e9f08, 0x0001009f, 0x055ffeb1, 0x005d0467, 0x4009012a, 0x19060b22, 0x03077a07, 0x0c092027, 0x15050237, 0x42110509, + 0x08010a05, 0x531e2222, 0x23230d26, 0xb8292a1b, 0x09b6c0ff, 0x29293710, 0x16364814, 0x2940ee24, 0x24481010, 0x0c26220e, 0x2211820c, 0x820d0d06, + 0x0f1e2605, 0x1755060f, 0x081d4808, 0x09091b22, 0x92260f82, 0x602c1f2c, 0xa857022c, 0xb808240d, 0x18b4e2ff, 0x4928e0a8, 0x3382057c, 0x0446ec20, + 0x08082105, 0x08225983, 0x9f412b87, 0x0b824909, 0x20055b4d, 0x06a14132, 0x2f32fd27, 0x3fed3f3f, 0x0507463c, 0x35370422, 0x20061a77, 0x89aa1833, + 0x0d365009, 0x24059641, 0x95033435, 0xeaa81806, 0x181e200e, 0x26070e42, 0x8c2a4b34, 0x181d1da8, 0x2411faa8, 0x351ba3fb, 0x0682411b, 0x248da039, + 0x00ffff00, 0x0700005c, 0x0201088d, 0x003a0026, 0x00070100, 0x436901d6, 0x112106bb, 0x07b7470d, 0x00005626, 0x8c063606, 0x5a202382, 0x00212385, + 0x067743bb, 0x57182389, 0xd6220f77, 0x4786eeff, 0x05090d22, 0x18065946, 0x210f7557, 0xbd43ddd6, 0x080c2205, 0x39218304, 0xb9000100, 0x08030000, + 0x10001e06, 0x19407f00, 0x3f040000, 0x0809000d, 0x99180000, 0x1a290cc3, 0xd6ffb809, 0x021010b4, 0x51088255, 0x092306ba, 0x8409090c, 0x09ab470f, + 0x0d0b4023, 0x2312820d, 0x060f0f14, 0xa4412883, 0x30318205, 0x0c0c40ec, 0x6f55060c, 0x02097f09, 0x10118909, 0x088050f6, 0x2b2bed25, 0x4c002f33, + 0x012006f4, 0x22057e47, 0x64231115, 0x2408056f, 0x0a080317, 0x7926641f, 0xbfc2bc67, 0x052a653f, 0x6b13095e, 0x047dfb8c, 0x0cdac282, 0x00040008, + 0x0500001a, 0x2faa825e, 0x001e0012, 0x01250021, 0x2b92404d, 0x40203720, 0x0e39a218, 0x0b180a25, 0x184a0d17, 0x081039a2, 0x87013740, 0x14010201, + 0x20001200, 0x04370321, 0x04020487, 0x06050514, 0x12090606, 0x12290626, 0x12380637, 0x12490646, 0x067a1258, 0x240b1275, 0x25700c24, 0x51162501, + 0x0cf00ca0, 0x160c0602, 0x08823f0c, 0x180c0421, 0x080d5ba2, 0x70210f6e, 0x21210221, 0x04120620, 0x401c2005, 0x1c0c021c, 0x40c0ffb8, 0x3739396c, + 0x1c701c50, 0x05011c02, 0x0e402408, 0x240f3710, 0x2202242f, 0x09402422, 0x1324370d, 0x2f0f0f29, 0x8f0f4f0f, 0x050f9f0f, 0x0029190f, 0x40092009, + 0x90098009, 0x0f090509, 0x09060127, 0x0524120f, 0x24000c05, 0x42003a00, 0x6a005a00, 0x07007400, 0x276e0000, 0x20081c82, 0x052b050a, 0x054d0535, + 0x05650555, 0x0507057b, 0xe6102664, 0xe6105d5d, 0x17125d2f, 0x5d2f5d39, 0x270283ed, 0x5d2f332b, 0x3c3f002b, 0x33200582, 0x07821783, 0x18822b20, + 0x03827220, 0x2f391222, 0x2990a218, 0x70342721, 0x1325095e, 0x23070209, 0x93a21837, 0x01d40807, 0xa13931f8, 0x39a07373, 0x39472a30, 0x38494839, + 0xfe7d4838, 0x02fdfefe, 0x9595f31d, 0x61fe9f01, 0x651f5705, 0x90906d40, 0x1f65406d, 0x4a4b36c4, 0x4c4b3937, 0xcb0266fc, 0xb70535fd, 0x0000cdcd, + 0xff680004, 0x071d04e1, 0x00320033, 0x004b003f, 0xb5b3014f, 0x0a190a0c, 0xffb83002, 0x0b5c40c0, 0x0e59370e, 0x385c2151, 0x21630e69, 0x0a7b396f, + 0x2074147a, 0x020a387b, 0x303d3408, 0x02114011, 0x08491111, 0x4e4e4f4f, 0x2906aa43, 0x299f2916, 0x0b402903, 0x2f29370d, 0x4f492301, 0x291f011f, + 0x4941181f, 0x08413d04, 0x4e08010a, 0x37100d40, 0x404e4c4c, 0x4e370c09, 0xb840264e, 0x1440e7ff, 0x55020909, 0x102c2940, 0x55020d0d, 0x2c3f2c2f, + 0x262c2c02, 0xb6201882, 0x262a1783, 0xffb84629, 0x0f0fb4ec, 0x08825502, 0x83b4f021, 0x22088223, 0x831940e2, 0x467f281d, 0x4602468f, 0x820f0046, + 0x34112366, 0x13834051, 0x340c2e45, 0x0c0c1640, 0x1a025502, 0x000b1f00, 0x02101006, 0x0b120055, 0x2205820b, 0x46e6ffb8, 0x002105d7, 0x21338318, + 0x57831a00, 0xffb80024, 0x2f83b4fc, 0xd7460882, 0x0a002906, 0x55060d0d, 0x0c0c0600, 0x2005f25c, 0x05f15cb7, 0xb83a5126, 0x0e40f8ff, 0x0f2a3483, + 0x3f511f51, 0x1b3a0351, 0x7f18b80b, 0x0b2107b2, 0x2163830c, 0x59831c0b, 0x83140b21, 0x820b2024, 0x55022440, 0x4950850b, 0xed250611, 0xe6102b5d, + 0x1800882b, 0x2308aa4a, 0x39125d2f, 0x21056762, 0x0782332b, 0x822bed21, 0x2309820e, 0x3f3f002b, 0x82055c69, 0x3911271f, 0xed5d2b2f, 0x82622f33, + 0x058b6009, 0x83182120, 0x24210ea5, 0x05026e37, 0x0622233a, 0x07060607, 0x36363523, 0x35262637, 0x32333634, 0x06141516, 0x15161607, 0x0cd0d018, + 0x60420320, 0x2303250b, 0xbb1d0413, 0x0dc74a18, 0x29292e39, 0x693a3f6d, 0x1350312a, 0x3169230a, 0x739f251c, 0x232e9e73, 0x18bb877d, 0x2008c54a, + 0x07804243, 0x95f39523, 0xc94a1895, 0x56413c0e, 0x14111817, 0x071d0d0b, 0x081409bf, 0x6d2e531e, 0x336d9090, 0xaa221f5b, 0x181dfe9a, 0x080acc4a, + 0x362c0432, 0x39374a4b, 0x62024d4c, 0x1201eefe, 0x0e00ffff, 0x6d070000, 0x26020108, 0x00009000, 0x8d000701, 0x7501de01, 0x0c401100, 0x4f160f02, + 0x16000216, 0x4d51cd82, 0xff682607, 0x063f07e3, 0x202b828c, 0x2a2b86a0, 0x00000069, 0x0003b60a, 0x451b5455, 0x73240697, 0xda056eff, 0x91204f84, + 0x00212385, 0x2e4f8278, 0x030e4013, 0x3a403a30, 0x00033a60, 0x510f3b3a, 0x5d24089f, 0x71046cff, 0xa1205184, 0x06242d82, 0x00e28d00, 0x03297b83, + 0x2e402e30, 0x2f2e0002, 0x3629850c, 0x5a010100, 0x49024003, 0x03005d04, 0x0a401400, 0x05025601, 0x18002d03, 0x2e07b473, 0x013031ed, 0x02331123, + 0x03efef49, 0x461d0140, 0x43221289, 0x41467301, 0x46102006, 0x43221889, 0xcd84c300, 0x89000121, 0x0fd14623, 0xd1468d20, 0x100f2108, 0x2217d146, + 0x86bf008d, 0x84238947, 0x50072147, 0x22081947, 0x826c018e, 0xb120368f, 0xffb81302, 0x0d1240c0, 0x130f3710, 0x13000101, 0x0002135f, 0x24598413, + 0x2b5d355d, 0x26c98235, 0x06000056, 0x47db0536, 0x8e20082f, 0x1e205d84, 0x10203986, 0x3c823988, 0x4347378c, 0x0043220f, 0x05e1570a, 0x71830a20, + 0x37820920, 0x0a0a0026, 0x2b250005, 0x4d476584, 0xff43340f, 0x40150000, 0x0b200110, 0x0b600b30, 0x00040b70, 0x4104090b, 0xff31078b, 0x01e403ed, + 0x00130686, 0xb9320003, 0xe4ff0300, 0x284d82b7, 0x01030101, 0xaeffb800, 0x820b82b3, 0x40e82b07, 0x370c0a09, 0x027f0000, 0x46180201, 0x4618078d, + 0x0128088b, 0xf4a58601, 0x13060f01, 0x27055b6e, 0x8506d0ff, 0xfd061605, 0x11274f82, 0x025001b6, 0x18050000, 0x080d1777, 0xfa160577, 0x064605ba, + 0x01007885, 0x00008900, 0xee058b04, 0x93002800, 0x12416340, 0x1a5b1253, 0x02731263, 0x24901273, 0x24b603b6, 0x05202309, 0x10080051, 0x03082008, + 0x1c1f0808, 0x0c0f5109, 0x0c3f0c1f, 0x0c040c4f, 0x49181414, 0x0210010c, 0x014a2802, 0x1f2a0f08, 0x2723022a, 0x201f1c02, 0x21080c05, 0x1d6f1d5f, + 0x1d031d7f, 0x0613060a, 0x04131d08, 0x40002002, 0x28898200, 0x2f332f02, 0x3917125d, 0x2707832f, 0x33332f33, 0x391132fd, 0x10109d18, 0xed2f2382, + 0x30313939, 0x3521215d, 0x23373636, 0x83353335, 0x12342103, 0x210b8d6d, 0x01852115, 0x0706062f, 0x8b042115, 0x6267fefb, 0xa4a49d0e, 0x1e9d18a3, + 0xfe6c3e0b, 0xfe6d0193, 0x5a700f8f, 0x1bcf4503, 0x8c867b81, 0x01c8a786, 0xce112201, 0x90a5302a, 0x240e8294, 0x0b2c9f65, 0x08998200, 0xe6ffb151, + 0x32051105, 0x22001800, 0x13405f00, 0x1c390d38, 0x0d581c49, 0x217a216a, 0x0b100c06, 0xb807370d, 0x2a40f0ff, 0x19370a09, 0x260f291f, 0x790f6915, + 0x3201050f, 0x1f0f2222, 0x0b0b1532, 0x090f3307, 0x13190c0c, 0x00010026, 0x01222400, 0x822f1214, 0x2fc783d9, 0x3f002f33, 0x2f2f33ed, 0x2f3912ed, + 0x2b2b5ded, 0x0120d582, 0x0d114b18, 0x00202329, 0x21001011, 0x18110032, 0x0809a684, 0xfc11054e, 0x3a3c4266, 0xea7a60a3, 0xc0820d59, 0xfec9fe7f, + 0x014201ad, 0x0c01ff13, 0x292602be, 0x9f5a8728, 0x78020dd5, 0x3c3eb584, 0xd548563b, 0x5b013736, 0x3a014101, 0xcdfe7601, 0x542ae9fe, 0x3a333391, + 0xff00b1d4, 0xffab00ff, 0x058307e1, 0x11d95b18, 0xf203413c, 0x1600c6fd, 0x03040c40, 0x010a1002, 0x7f0b400b, 0x115d020b, 0x353f0035, 0x37823535, + 0x37828c20, 0xed05a422, 0x10875b18, 0x13044122, 0x38223782, 0x37822640, 0x820a3621, 0x00393504, 0x40392039, 0xff398039, 0x31010539, 0x315b3100, + 0x0003317b, 0x11875b18, 0x8a205988, 0xda205984, 0x3f2d5982, 0x270000a4, 0x9102bb00, 0x07010000, 0x20598b02, 0x33598332, 0x20350035, 0x80354035, + 0x0535ff35, 0x2d002d01, 0x2d7b2d5b, 0x9920599c, 0x6f215982, 0x21598305, 0x5985a640, 0x59853120, 0x82de0321, 0x403622b3, 0x20ae8224, 0x3b59830e, + 0x80116f11, 0x0311ff11, 0x092b0901, 0x0944093b, 0x097f095b, 0x00040005, 0x02043f04, 0x09395c18, 0x2308b185, 0x61000100, 0xfa0159fe, 0x03008800, + 0x00b92c00, 0x40e8ff02, 0x37100d17, 0x0c091803, 0x09180037, 0x010f3710, 0x21080082, 0x02020d00, 0x2f332f00, 0x2f333f00, 0x0130315d, 0x132b2b2b, + 0x61013313, 0xf1fef4a5, 0x2f0259fe, 0x8a82d1fd, 0x66c56918, 0x12020128, 0x05030c05, 0xb1828c06, 0x0940142e, 0x00020303, 0x0103102d, 0xed5d2f03, + 0x3606be6e, 0x03032303, 0x31913105, 0x80fe8c06, 0x00008001, 0x05000103, 0x8418040c, 0x07280831, 0x3f000b00, 0x05061540, 0x0909af0a, 0x02000002, + 0x40062b07, 0x06370a09, 0xb80b2b0a, 0x0c40c0ff, 0x0b370b09, 0x0b2d0006, 0x33225285, 0x355f32fd, 0x2f332107, 0x82081752, 0x23012460, 0x82053335, + 0xfd022c03, 0x01318031, 0xfdbfbffd, 0x85bfbfa7, 0xfe2a0870, 0xc3c3c38c, 0x00ffff00, 0x05000007, 0x02d1055e, 0x00240026, 0x01070100, 0xfff5fd9d, + 0x40120045, 0x030e020a, 0x0e1f0e02, 0x93420e4f, 0x202b8206, 0x282b8200, 0x00d10590, 0x00280027, 0x202d86f3, 0x082d82ee, 0x0c404d26, 0x0f030f01, + 0x40111011, 0x0c010311, 0x40ecffb8, 0x020c0b16, 0x010c1f55, 0x0601000c, 0x5502100f, 0x0d0d1601, 0xb8240582, 0x0cb4e2ff, 0x012f1982, 0xb7f0ffb8, + 0x55020b0b, 0x01010140, 0x822b5d2f, 0x82352000, 0x5d352406, 0x83353f00, 0x00002495, 0x842e0600, 0x8c2b2069, 0x864b2069, 0x8a202069, 0x844f8369, + 0x0a052669, 0x55020f0f, 0x20698405, 0x21698205, 0x1a830e40, 0x84280521, 0x01052267, 0x21679505, 0x6784c803, 0x678c2c20, 0x22405222, 0x0120d182, + 0x02225684, 0xc0821006, 0x5c840220, 0x0d1a0227, 0x0255020d, 0x20588322, 0x20e78302, 0x235c8319, 0x09093a02, 0x0225ca82, 0x110f0201, 0x2499821f, + 0x11601150, 0x05016c05, 0x3520d885, 0xff2fd682, 0xff0000ff, 0x059906e1, 0x002700f0, 0x41bf0032, 0x612c0a3f, 0x27021540, 0x01290f03, 0x28272702, + 0x2729ce84, 0x0f000101, 0xe0ffb80f, 0x827b83b4, 0xb4e42108, 0x0882db83, 0x0b40f022, 0x0f218283, 0x82278338, 0x0695670f, 0x83080f21, 0x0f002782, + 0x0f700f10, 0x2a4a5d03, 0x35112505, 0x112b5d35, 0x200c5341, 0x22eb8401, 0x8a1b013c, 0x405c367d, 0x03090111, 0x0e1f0e0f, 0x01030e2f, 0x0901091f, + 0xffb80400, 0x827984f2, 0x4af62008, 0x042105f9, 0x2176830a, 0x76831204, 0xe4201582, 0x09955318, 0x79830c20, 0x40041f27, 0x03047004, 0x05634104, + 0x352b2b24, 0x78845d2f, 0x21053542, 0xf583d706, 0x00bb0123, 0x24778ab7, 0x0116405b, 0x2570822b, 0x002b012b, 0xe783221c, 0x83261c21, 0xef4818e4, + 0x40fa220b, 0x26708325, 0x0b0b041c, 0x851c5502, 0x101c33e3, 0x031c201c, 0x202d0f1c, 0x602d502d, 0x8f2d702d, 0x6c41062d, 0x5d112e09, 0x353f0035, + 0xff040000, 0x020000cb, 0x084f4367, 0x000f2c08, 0x0a1140b6, 0x0caf0f09, 0x0707060c, 0x05020606, 0x0a2a0b01, 0x40f4ffb8, 0x020d0c17, 0x09400a55, + 0x0a0a370f, 0x0e000404, 0x830c0f2a, 0xb80f2511, 0x1f40c0ff, 0x0f2a1582, 0x0107070f, 0x1101117f, 0xea840092, 0x0c0c0026, 0x0055020c, 0x31744d18, + 0x0cb6f828, 0x0155060c, 0xd64b1088, 0x5d2b2206, 0x064d5dfd, 0x822f3321, 0x33112208, 0x2207842f, 0x833f2f00, 0x07c84309, 0x11232124, 0xcc431333, + 0x7701370a, 0x3804bcbc, 0xb0013854, 0x0ffeabab, 0x5d04abab, 0x80fe2f02, 0xd1438001, 0x001a2108, 0x2405d143, 0x00240006, 0x06dd6b00, 0xd1052b2b, + 0x25000602, 0x02000000, 0x2c1f8300, 0x00d10586, 0x00060003, 0x493c4058, 0x68851805, 0x0015320d, 0x0025011a, 0x0045012a, 0x024b014a, 0x02590344, + 0x78851856, 0x020e2508, 0x00030503, 0x23788518, 0x01212129, 0x05020921, 0x1894fa86, 0x85117685, 0x9d042193, 0x28209384, 0x7e20a384, 0x0820b382, + 0x3d200f84, 0x3b20b388, 0x2b200f84, 0x89200f84, 0xd520b882, 0x2c200f84, 0xcd200f84, 0x75202f82, 0x2e200f84, 0x0120d382, 0x6220d384, 0x0635d382, + 0x4e406c00, 0x02390209, 0x78030258, 0x02037701, 0x01020302, 0x36e88214, 0x04140302, 0x05490504, 0x057c0646, 0x05040673, 0x00050403, 0x4f390024, + 0x08230ba4, 0x8201080f, 0x0a220802, 0x36042b04, 0x55044d04, 0x7b046504, 0x2f040704, 0x115d5d5d, 0x005d2f33, 0x30313f2f, 0x10875d01, 0x0382c0fd, + 0x01c0083d, 0x215d005d, 0x23010123, 0x62053301, 0xfe2cfed5, 0x2c02cb2c, 0xfa0505f0, 0x85d105fb, 0xf60521e1, 0x3020a184, 0x3820d188, 0x31200f84, + 0x0326b182, 0x00007200, 0xb182bf04, 0x00032408, 0x000b0007, 0x3505b251, 0xc0ffb806, 0x0f0f1540, 0x06065502, 0x02350109, 0x09350a03, 0x09400508, + 0x83043713, 0x83162019, 0x05270808, 0x02030405, 0x72080904, 0x1f0d0f0d, 0x6809020d, 0x5de6100c, 0x1711e410, 0x2b2f2f39, 0xed3f002b, 0x3912ed3f, + 0x82ed2b2f, 0x352123a9, 0x03820321, 0x03821320, 0xfbbf042b, 0x344d04b3, 0xe5031bfc, 0x28098334, 0xfdb02105, 0x77fcb008, 0x07bb5ab0, 0x02f00525, + 0x82320006, 0x6e012097, 0x9782050b, 0xeb00072d, 0x35030940, 0x05010306, 0x55091401, 0x002007ea, 0x82077e6d, 0xb4f42108, 0x20081b4f, 0x20b5830b, + 0x059e4300, 0xeaffb822, 0x2505a244, 0x0c0c1200, 0x28825502, 0x2340fc22, 0x0a334518, 0x0c0c0a28, 0x0a005506, 0x05820909, 0x0f09782c, 0x50094009, + 0x14040309, 0x786db805, 0x20088206, 0x825984fc, 0x061b7d08, 0x59840520, 0xea250f82, 0x020d0db4, 0x21088255, 0x5b83b4ee, 0xa8690882, 0x52088205, + 0x088405c1, 0x08826083, 0x22050856, 0x6b086c05, 0x08560cf3, 0x822b2009, 0x00ed2800, 0xed3f332f, 0x6d213031, 0x212e0561, 0xfdc63b05, 0x7304c619, + 0xdffa2105, 0x3d43d105, 0x96043106, 0x0602d105, 0x00003300, 0x76000100, 0x00050000, 0x53081a82, 0x40eb000c, 0x09040947, 0x540b4508, 0x6409640b, + 0x930b660a, 0x960a9309, 0xa309a40b, 0x0d0ba70a, 0x0b060806, 0x0b160816, 0x08270328, 0x0b340a34, 0x0b430a43, 0x0b550359, 0x0b760b67, 0x0499038b, + 0x04b80899, 0x04eb08b8, 0x0b1508eb, 0xb3c0ffb8, 0x0a372925, 0x09200786, 0x08200786, 0x40240782, 0x37292630, 0x0f729618, 0x64020327, 0x02028d04, + 0x2f178304, 0x0801350b, 0x04030535, 0xb009a003, 0x0309d009, 0x403f3c83, 0x371e1923, 0x09200910, 0x09720960, 0x09e009d0, 0x03070906, 0x08090b04, + 0x00020607, 0x82001000, 0x020e2304, 0x074c112f, 0x2b5d3507, 0x002f3371, 0xed2fed3f, 0x31391711, 0x10015d30, 0xc087ed87, 0x08230483, 0x822b01c0, + 0x5d2c0800, 0x35212171, 0x21350101, 0x15012115, 0x00052101, 0x6c0276fb, 0x4804a8fd, 0x4a02c0fc, 0x9a038afd, 0x025802b8, 0xfeb0b30e, 0xa3fd1a06, + 0x3105f145, 0xd105ee04, 0x37000602, 0xffff0000, 0x00000600, 0x0f84e604, 0x0f843c20, 0x00004423, 0x050b4305, 0x003b2308, 0x00010000, 0x060000b3, + 0x00d10544, 0x40070123, 0x25152559, 0x061b021e, 0x18011875, 0x48093834, 0xd3826f09, 0x09221931, 0x03100803, 0x23142208, 0x020c0c02, 0x84112355, + 0x14112606, 0x10082310, 0x220f8210, 0x820f0f20, 0x0d062205, 0x2005820d, 0x22218417, 0x820b0b2a, 0x0918220b, 0x25058209, 0x07181b07, 0xd3461014, + 0x21088207, 0x2f83b4e0, 0xf7210882, 0x823283b4, 0xb4e72108, 0x08823583, 0x83b4d421, 0x21088238, 0x3b83b5e4, 0xb8081022, 0x8206715f, 0x42f62008, + 0x082105d8, 0x822b8312, 0x84f0200f, 0x2208822b, 0x831b40e4, 0x08803c2c, 0x08b008a0, 0x50252003, 0x03257025, 0x24250808, 0x253f250f, 0x12115d02, + 0x475d2f39, 0xc4200594, 0x23059a47, 0x103939ed, 0x2f260a86, 0x2b2f2bed, 0xf86f00ed, 0xed5d3105, 0x3139395d, 0x14015d30, 0x06060706, 0x11231107, + 0x2105947f, 0xf0563311, 0x82172005, 0x36740808, 0x36363736, 0x06331135, 0x504d5144, 0x9ac597e1, 0x514e4be2, 0x35343bc6, 0x61c5629a, 0x3638359c, + 0x9d8e03c6, 0x464543d7, 0x01befe0a, 0x42480b42, 0x029cd645, 0x6da6fd43, 0x2f2d2c8e, 0xfce40307, 0x2e2d081c, 0x02718531, 0x0100005a, 0x00006c00, + 0xf0052006, 0xed002700, 0x195b1240, 0x1a6c255b, 0x21641d64, 0x1a79246c, 0x21082479, 0xb3c0ffb8, 0x1d370b09, 0x40210782, 0x2608823b, 0x0d0c4014, + 0x84025502, 0x02302a05, 0x02401430, 0x19041440, 0xbb941825, 0x100c2210, 0x22268210, 0x18141219, 0x26299394, 0x02090917, 0x18222255, 0x2407df4b, + 0x29a02990, 0x9f941804, 0x5d5d2533, 0x2b2f3311, 0xc4250083, 0xed393912, 0x053d6b2f, 0x3cfd3c32, 0x1712ed3f, 0x2b2b5d39, 0x2b2b3031, 0x1121215d, + 0x20054841, 0x06285534, 0x16161728, 0x35211117, 0x92753521, 0x20230805, 0x02141100, 0x06211507, 0x3cc0fd20, 0x342d2c77, 0xfedcdcfe, 0x762d2d34, + 0x01c0fd3c, 0x01cb9d9a, 0x82310177, 0x772f0801, 0x9a019dcb, 0x58268301, 0x6a9f3b39, 0xcef9f9ce, 0x393b9f6a, 0x7dfe2658, 0x015a7cae, 0x1401c238, + 0xa2fe5e01, 0xfec2ecfe, 0xff7c5ac8, 0x187e00ff, 0x2214717a, 0x180e4024, 0x340c717a, 0xf4ffb810, 0x0d0b0a40, 0x10005502, 0x2509040d, 0x5d352b2b, + 0x07474335, 0x84180720, 0x2e200f7d, 0x84183d83, 0x0e240a7d, 0xb4eeffb8, 0x08833c83, 0x30604020, 0x090e2305, 0x46820005, 0x6c3b4786, 0x4304e1ff, + 0x26028c06, 0x00002e01, 0x9d010601, 0x120000e2, 0x24020d40, 0x82090914, 0x21242273, 0x07455108, 0xe6ff6d24, 0x2984ee03, 0x29853020, 0x0000cc31, + 0x0109401e, 0x41504140, 0x41034170, 0x86deffb8, 0x3e412661, 0x2b251912, 0x24a7842b, 0x0464feb9, 0x2035845f, 0x223585c6, 0x6800001d, 0xd6200539, + 0x1a232d86, 0x82160e17, 0x0035212d, 0xa020d582, 0x93202382, 0x00212d83, 0x2e0982d5, 0xfe9d0107, 0x0000008e, 0x0701b116, 0x86f2ffb8, 0x0407252f, + 0x01250302, 0x2405d951, 0x04e2ffb1, 0x205d845c, 0x295d84d1, 0x0000fb9e, 0x0203b319, 0x2f842201, 0x820c0c21, 0x1f2223c2, 0x5f831707, 0x00353525, + 0x83000200, 0x8d22088f, 0x18001406, 0x4f013700, 0x20163e40, 0x0737100d, 0x431b4a0f, 0x56374326, 0x06297926, 0x0f0d202e, 0x16833337, 0x04830520, + 0x15162408, 0x215f3e20, 0x03212101, 0x010c3e2b, 0x09034035, 0x12150c08, 0x2001200f, 0xb8121b28, 0x10b4ecff, 0x82550210, 0xb4ee2108, 0x2406a576, + 0x0d1540e4, 0x2112820d, 0x7c820b14, 0x09121223, 0x270b8209, 0x19082012, 0xb6f8ffb8, 0x19220c83, 0x9559001b, 0x20088207, 0x823684f4, 0xb4f82108, + 0x21064756, 0xb584b4d0, 0xb420bf82, 0x22065347, 0x831a40f8, 0x90002638, 0x01391f39, 0x4c831832, 0xb808210d, 0x82062673, 0x06e15908, 0x830c0821, + 0x610f822d, 0x08820584, 0x5284f620, 0x2a5d0882, 0x23088405, 0x55060d0d, 0xf6200882, 0x2206885b, 0x82090906, 0x3888210f, 0x200a1f47, 0x0b9c63fd, + 0x122bed24, 0x49433939, 0x2fed2405, 0x5639125d, 0x12350556, 0xed5d2f39, 0x30313939, 0x5d2b2b2b, 0x14012b01, 0x26222300, 0x08085a27, 0x15161627, + 0x15070614, 0x1e711816, 0x33352508, 0x36373632, 0x073f6d18, 0x15060625, 0x82161611, 0x04860812, 0xcdf3fe8d, 0xbc3fb04f, 0x955adffd, 0x8b44393b, + 0xc2bc9f7f, 0x923b3a45, 0x42242449, 0x2d2e2782, 0x68496d8a, 0x421e2021, 0xa1954896, 0xfecabc01, 0xfe2a2cf8, 0xe0d20524, 0x2b2e2bfe, 0xbd7f5b8a, + 0xc71a1125, 0x1f6f5997, 0x1da01620, 0x5562221e, 0x2c357470, 0xfc3e752c, 0x9d1f26a2, 0x3d000100, 0x7f0464fe, 0x08005d04, 0x00b9e000, 0xb4f6ff07, + 0x55020d0a, 0xe0ffb807, 0x110e4a40, 0x07755502, 0x07060701, 0x29821a08, 0x06073408, 0x0505041a, 0x0a0c0305, 0x2a001a00, 0x59004a00, 0x75006900, + 0x05000700, 0x25051505, 0x56054505, 0x73056605, 0x00050705, 0x0c0c0101, 0x0155020c, 0x8209090a, 0x051a2f05, 0xfaffb804, 0x10100b40, 0x0c045502, + 0x05820f0f, 0x1c6db820, 0x83188506, 0x0e04232b, 0x18840b0b, 0x026cf220, 0x06042505, 0x55060d0d, 0x60181f83, 0x143409b4, 0x55060909, 0x04a00490, + 0x0a040402, 0x4f0a1f09, 0x030a5f0a, 0x57053446, 0xc43008f3, 0x102b2bed, 0x2f5d2fc4, 0x3f3f005d, 0x87013031, 0x0806854a, 0x2b5d0027, 0x1101012b, + 0x33011123, 0x7f040101, 0xfebc37fe, 0x5701cc43, 0x5d045a01, 0x2cfedbfb, 0x2504d401, 0x3c03c4fc, 0x08e78200, 0x64fe6c3e, 0x1406d603, 0xaf002f00, + 0x00461d40, 0x28650057, 0x2078117f, 0x1d06217d, 0x011b3e1a, 0x070f3f2d, 0x191a1a0c, 0xb8071c12, 0x0c40e0ff, 0x00370c09, 0x1c070107, 0x03b40b07, + 0xb4eaffb8, 0x0884f383, 0x0882d083, 0x0db4f025, 0x8355020d, 0x21402308, 0x09821010, 0x0f310328, 0x02313f31, 0x29830423, 0x07b74d18, 0x83181221, + 0xb812232e, 0x6f7be2ff, 0x08122705, 0x55020c0c, 0x3b830412, 0x30851222, 0x82057a42, 0x07b345db, 0x3333ed35, 0x2f2b5d2f, 0x2f393912, 0xed2f3f00, + 0x3139ed3f, 0x42255d30, 0x23210554, 0x05464235, 0x26222338, 0x37123435, 0x35373636, 0x15213521, 0x06070606, 0x16141502, 0x02831617, 0x33336908, + 0x9a031632, 0x435a1c20, 0x3d4c5ab3, 0xdee5912f, 0xc54b4e5c, 0x0234fe6c, 0x5ae575e8, 0x0c067259, 0x2427310a, 0x47563879, 0x5b284b66, 0x3fa95428, + 0x45774f0e, 0xe5e84c39, 0x7700018c, 0x095ecd70, 0xce4e879e, 0xe8fe7578, 0x2848228f, 0x16184b26, 0x00003405, 0xfeb90001, 0x045f0464, 0x0116007c, + 0x0314400b, 0x73151615, 0x0865df18, 0x0c010524, 0x475a080d, 0x83b6200c, 0x1a0222e4, 0x073b4800, 0xfc200882, 0x2609d943, 0x020f0f17, 0x4b0c0055, + 0x22200a33, 0x6706fe43, 0x2d8205ad, 0x3c77e620, 0x77042006, 0x1c21083c, 0x20d41809, 0x180c200c, 0x670bf745, 0x37772dad, 0x44172020, 0x2b201710, + 0xed240082, 0x3f002b2b, 0xed270082, 0x30313912, 0x6723015d, 0x247714a8, 0x58bc290b, 0xbeb563bc, 0x180464fe, 0x080f8c67, 0x00030020, 0x04e1ff89, + 0x00140675, 0x00240017, 0xb9040131, 0xd6ff2f00, 0x370d0ab3, 0xd6ffb829, 0x08821d40, 0x0b2a2125, 0x831b370d, 0x66230804, 0x3e26012c, 0x241f240f, + 0x06242402, 0xb8123e1e, 0x1c40e8ff, 0x55020d0c, 0x124a123a, 0x2c011202, 0x8318063e, 0x0635300e, 0x06020645, 0xb818250a, 0x0fb4fbff, 0x8255020f, + 0xb4f82308, 0x08840909, 0x2505926a, 0xb8001a18, 0x1384fcff, 0x0d044e18, 0x18103421, 0x29098c50, 0x331f3300, 0x2402333f, 0x3b830426, 0x0c0c262f, + 0x2655020c, 0x0b0c0c1a, 0x0c55020b, 0x21138314, 0x1383000c, 0xffb80c22, 0x8405c745, 0x82708308, 0x40f42208, 0x254a830a, 0x0c900c80, 0x49180c02, + 0xe7420bbe, 0x2bfd2907, 0x00322b2b, 0xed2b5d3f, 0x12270383, 0xed5d2f39, 0x8230315d, 0x492b2014, 0x876205fa, 0x12342c06, 0x33363637, 0x16171632, + 0x76260712, 0x07240645, 0x05070606, 0x0809bf56, 0x0436365a, 0x3a242e75, 0xd29898d2, 0x2d2d253a, 0x97d33926, 0x2539d397, 0x3104bd2e, 0x4f6c2920, + 0x22296c4f, 0x7202042f, 0x242e8efd, 0x4f4f7028, 0x2e242870, 0xfdbe0003, 0x89898754, 0xbefd5487, 0x530701ae, 0x828a8a82, 0x54fafe54, 0x4636d68f, + 0x37463939, 0x8ea18fd5, 0x3e453ee9, 0xe9300282, 0x00ffff00, 0x010000bb, 0x025d0477, 0x00d50006, 0xa9080a82, 0x0000c100, 0x5f04a804, 0x42011800, + 0x01063b40, 0x18160206, 0x18451826, 0x18661856, 0x3a021c07, 0x7a026901, 0xa6019702, 0xc718a602, 0x02020802, 0x0101c603, 0x01010186, 0x0018001a, + 0xf9010809, 0x0b080108, 0x0109030a, 0xeeffb809, 0x18100b40, 0x02b40937, 0x17031718, 0xc0ffb803, 0x10103a40, 0x037f5502, 0x08180901, 0x01050302, + 0x1410100c, 0x06050c3f, 0x1a010505, 0x36172a17, 0xa4178017, 0x17150517, 0x17771725, 0x17e91794, 0x090617f9, 0x01021817, 0x000f0f05, 0x40f0ffb8, + 0x370e091d, 0x0f1a0000, 0x3f1a1f1a, 0x1070031a, 0x18e42045, 0x2115a460, 0x27431989, 0x5d3c2d0d, 0x2b2f3311, 0x39172f33, 0x2f00715d, 0x21051e6e, + 0x0d821211, 0x30312b32, 0xc0108701, 0x2bf57ac0, 0xc0c01871, 0x7271c004, 0xfd370f82, 0xc008715d, 0x21715d01, 0x11070123, 0x11331123, 0x33363601, + 0x68331632, 0x6d0807d9, 0xf8a80403, 0xbc703dfe, 0x488001bc, 0x3c1c3f7f, 0x2f100b07, 0x1d4d2f0d, 0x6de901fb, 0x5d0484fe, 0xa101dafd, 0xa602384f, + 0x212f0202, 0x0100f1fe, 0x00003d00, 0x14067f04, 0x94000700, 0x22021f40, 0x5502110f, 0x0b0a1802, 0x04055502, 0x03020205, 0x071a0106, 0x03020000, + 0x0504041a, 0xf0ffb805, 0x100c1c40, 0x26002b37, 0x03072004, 0x1f830405, 0x08002208, 0x01076806, 0x03060507, 0xffb80004, 0x092640c0, 0x000c3710, + 0x004b001c, 0x006a005a, 0x00060079, 0xadc7188d, 0x04443407, 0x04650455, 0x04060476, 0xe6100882, 0xf6105d5d, 0x82112b5d, 0x002f33ea, 0x39173f3f, + 0x5d013031, 0xfd10872b, 0xfd8710c0, 0x018208c0, 0x2b00013f, 0x0123212b, 0x03012301, 0xcd7f0433, 0x97feb8fe, 0xd7d101c4, 0xfc3d03d3, 0x012004c3, + 0x065f45f4, 0x5d04652e, 0xff001500, 0x20121b40, 0x03370d0b, 0xa7180483, 0xfe2036c5, 0x2505a94d, 0x09090400, 0xcc825502, 0x4f45e820, 0x45062006, + 0x1e2f084f, 0x55060909, 0x1f179200, 0x90176017, 0x630d0317, 0x0c260623, 0x55020c0c, 0xa7181a09, 0xf2222dd5, 0x66180fb4, 0xeb640ef2, 0x0a0a2106, + 0x0a226583, 0x29421688, 0x260f880f, 0x392b2bfd, 0x183f0039, 0x2709d7a7, 0x23212b2b, 0x23060635, 0x20055349, 0x052c4933, 0x11372708, 0xba650433, + 0x4b4e874a, 0xbcbc5478, 0x5d5b9e20, 0x76bc3688, 0x50363d4e, 0xf905f3fd, 0x5227bafc, 0x40033c43, 0x0342ffff, 0x045e0805, 0x0006025d, 0x00000059, + 0xfe680001, 0x06110464, 0x00460014, 0x0f4140dc, 0x09060f02, 0x240e1b0e, 0x3428241e, 0x361e3615, 0x47284428, 0x562d563c, 0x7917693c, 0x18190f17, + 0x32323f33, 0x3d21240c, 0x3f3f0122, 0x190c030c, 0x2332321c, 0x2b122121, 0x0f141c1b, 0x1c550210, 0xb4e8ffb8, 0x08840d0d, 0x0cb4f423, 0x2308840c, + 0x0b0bb4ea, 0xf8230884, 0x820909b5, 0xb8043008, 0x0e40d6ff, 0x04370c09, 0x23b40804, 0x8280121c, 0xffb82485, 0x822940c0, 0x00002412, 0x83043a48, + 0x0c3a2125, 0x3a233d83, 0x8306121b, 0x06234807, 0x19831820, 0x47851224, 0x6646f410, 0x33112805, 0x125d2b2f, 0x82ed3939, 0x822f2007, 0x2b2b2f12, + 0x2f3912ed, 0x122f332f, 0x2f3f0039, 0x036b3fed, 0x055d2209, 0x05b16014, 0x26343523, 0x07394523, 0x36373629, 0x26353736, 0x82343526, 0x35232506, + 0x22211521, 0x0aaf5418, 0x0e8e3320, 0x16328708, 0x04161617, 0xb4425b11, 0x2e3a4b5c, 0x3fb98c8c, 0x30324542, 0x7d4c892c, 0xe45a5796, 0x00ff3803, + 0x2d306d44, 0x2d334136, 0xfeaa5076, 0x2f6942d9, 0x404b332b, 0x1c5a993f, 0x1f216744, 0xa8556022, 0x784f0e3f, 0x364e3744, 0x58973c39, 0x3135844e, + 0x1c0b1345, 0x875368a5, 0x9e9a063a, 0x6620221d, 0x1a624f43, 0x28a51617, 0x3b6a2527, 0x19197266, 0x23252f07, 0xffff005f, 0xe1ff6a00, 0x7c047104, + 0x52000602, 0xad4c0000, 0x94210806, 0x11007c04, 0xe1001e00, 0x173a1840, 0x174a1e35, 0x0d561e43, 0x15030605, 0x1c040f3e, 0x08090340, 0xc854180c, + 0x0589500d, 0xffb80022, 0x1910d918, 0x0d214028, 0x3a55020d, 0x62824a00, 0x1f209027, 0x02206f20, 0x19574c19, 0x0b40e226, 0x55020f0f, 0x4c08574c, + 0x604c084e, 0xb4e42508, 0x55060f0f, 0x420b574c, 0x082306f4, 0x8209090a, 0x1f882118, 0x2009e067, 0x06574c2b, 0x20050351, 0x06a062ed, 0x20054148, + 0x093f4c10, 0x36363725, 0x62003233, 0xf9420659, 0x047f0805, 0xdeebfe94, 0xbc48a341, 0xbb3e4247, 0x0001f366, 0x9e92a0c2, 0x4b77498d, 0x4102b0a2, + 0xabfefefe, 0x2bfe2b24, 0xb97b2204, 0xfe423e42, 0xdadffeda, 0xfeb6c0cc, 0xde1d226d, 0x00010000, 0x0364fe69, 0x007704fa, 0x40b50029, 0x0c020c12, + 0x25132006, 0x36143623, 0x7a234023, 0xb817081f, 0x1440e0ff, 0x3f37100e, 0x02194f19, 0x3f1d1919, 0x0c030415, 0x040b3f26, 0xb7d6ffb8, 0x04370c09, + 0x82041818, 0xb6f827df, 0x55020c0c, 0xc24db408, 0x40e02414, 0x640d0d36, 0x0c220827, 0x0b820909, 0x202b0023, 0x23328306, 0x08121b20, 0xf34a1c83, + 0x0b0c2606, 0x1255020b, 0x05e54216, 0x1c412a20, 0x2bed2105, 0x3207ab50, 0x33332bed, 0x002b2f2f, 0x3f3fed2f, 0x5d2f33ed, 0x422b3031, 0x102513d6, + 0x16322100, 0x06234617, 0x0805f44a, 0x3233336a, 0x5efa0316, 0x4d56b13e, 0x755c2d3c, 0x53494bc6, 0x03013701, 0x0c43a054, 0xa6449d5e, 0x323239bd, + 0x73644b81, 0xaa57608e, 0x794b0e3b, 0x3c4f3647, 0x92d04243, 0x44010e01, 0x3ed31b25, 0x70c1ee32, 0x272c2d8e, 0x01000099, 0xe2ffb100, 0x5d045c04, + 0x08011700, 0x050716b5, 0xb8033e0f, 0x0b40f0ff, 0x55021010, 0x0f0e1003, 0x2006ef4b, 0x31c38312, 0x03560309, 0x03790366, 0x03050388, 0xffb8150a, + 0xec78b4f4, 0x05634906, 0x001a1527, 0x40eaffb8, 0x213a831d, 0xeb4a0400, 0x0c26280a, 0x0055020c, 0x820d0d02, 0xffb82205, 0x10e84ae4, 0x0909192a, + 0x91005506, 0x01191f19, 0x220d9345, 0x6affb806, 0x08820576, 0x9e42e620, 0x0c062105, 0x0f827383, 0x82059e42, 0xb4f22108, 0x08825883, 0x8405f64e, + 0x0d0d2308, 0x08835506, 0x2105f64e, 0x60830a06, 0x18870621, 0x210b8f43, 0x73182bed, 0x0d820b9d, 0x5d3f0027, 0xed2b2b2b, 0x097f7c3f, 0x22078153, + 0x53363233, 0x4908057e, 0xe2f45c04, 0x14bcf6df, 0x5c6b1f20, 0x1d1e7356, 0x9701bc15, 0xded7dbda, 0x7ffdc602, 0x2b2e785d, 0x2c2c2c2b, 0x81025a7b, + 0x30000100, 0x880464fe, 0x0b005d04, 0x4940b300, 0x0825022a, 0x08340239, 0x0844024b, 0x10070279, 0xd0181a09, 0x26081169, 0x080b0502, 0x0606000a, + 0x0605040a, 0x0645044a, 0x0665046a, 0x0677047a, 0x060c0408, 0x050b0805, 0x0a040402, 0x5cffb800, 0x0883051d, 0x0a164033, 0x00003710, 0x010d2f0d, + 0x0b160406, 0x0455020b, 0x27118220, 0x2b2b2f04, 0x33115dc4, 0x12270683, 0x3f003917, 0x18115d3f, 0x39105bd0, 0x4058534b, 0x0a030b14, 0x03020007, + 0x0801060a, 0x00070904, 0x06090405, 0x00820f01, 0x5d005925, 0x83012301, 0x33290802, 0x01330101, 0xfed58804, 0xcba2fea6, 0x4ffebc01, 0x014f01d5, + 0x4ffecb53, 0x6b0264fe, 0x020395fd, 0xa8fdf702, 0x11fd5802, 0x3bf18200, 0x0564feb0, 0x005d04e3, 0x40140123, 0x26061b19, 0x02187518, 0x09393d18, + 0x09020949, 0x2305cc55, 0x220c0805, 0x82079e74, 0xb4f22508, 0x55020c0c, 0xf6240882, 0x09092140, 0x1a280982, 0x237f233f, 0x0c112302, 0x11211783, + 0x2313830a, 0x0e101a11, 0x2906b755, 0x0d0db4e6, 0xb8105502, 0x8a74eeff, 0x10302905, 0x10021070, 0xf4ffb823, 0x2105ad5c, 0x1f831823, 0x83002321, + 0x2415823c, 0x0b1840f6, 0x0608560b, 0x07205084, 0x07235084, 0x4108101a, 0x08820745, 0x3b85d820, 0x830a0821, 0x8408203b, 0x22158227, 0x831c40ec, + 0x0890297c, 0x500208c0, 0x02256025, 0x2805d755, 0x1f250f01, 0x03253f25, 0x0cdd555d, 0x2b2bed22, 0x2107d955, 0xc6465d2f, 0x5d2f2105, 0x2b261482, + 0x123f3f00, 0x0b823917, 0x39395d23, 0x665f1831, 0x1cde5507, 0xe3058208, 0xc8524f60, 0xc773bb73, 0xbc5f5053, 0x8638344b, 0x8643bb43, 0xbc443b38, + 0xa872be01, 0x05373735, 0x980168fe, 0x36393406, 0x9f0272a7, 0x87719cfd, 0x041e2623, 0x39fcc703, 0x28271c05, 0x6402787b, 0x71000100, 0x1106e2ff, + 0x3d005d04, 0x2d402601, 0x32361f36, 0x32441f44, 0x32551f55, 0x0f680468, 0x37691a69, 0x377d1a7d, 0x283b280c, 0x16060309, 0x300d2105, 0x3a0a063e, + 0x370e0c40, 0xc0ffb818, 0x2c0782b3, 0xf4ffb836, 0x0c0c1740, 0x1b365502, 0x060e7400, 0x00131b24, 0x5749090c, 0x09d54e06, 0x24830b20, 0x0f1a002d, + 0x0055020f, 0x40eeffb8, 0x82101019, 0x293a2509, 0x0c290a09, 0x29201a83, 0x29283384, 0xb813181a, 0x1140f2ff, 0x13274083, 0x020b0b16, 0x830e1355, + 0x2415821e, 0x0d1240f4, 0x200f820d, 0x21438320, 0x3f831213, 0xb8281325, 0x83b4e6ff, 0x20088209, 0x059f41de, 0x830e2821, 0x00282125, 0x15823583, + 0x1640f022, 0x90304b83, 0xc028a028, 0x28280328, 0x3f1f3e3f, 0x3f6f3f3f, 0x570b4151, 0xc420066a, 0x85069e41, 0xed2f220e, 0x2b02822b, 0x3f002b2b, + 0x3f3939ed, 0x2f391712, 0x24087857, 0x27262223, 0x05844923, 0x35262625, 0x18371234, 0x2107ec59, 0xff431616, 0x11372305, 0x6e501133, 0x050e4405, + 0x02348308, 0x16333527, 0x2f110612, 0x739d3733, 0x0625a260, 0x71669427, 0x2f3333a3, 0x87e49072, 0x1a1e109f, 0x4733475d, 0x061d1614, 0x151c09ba, + 0x463a3918, 0x16191b5e, 0x90e4899d, 0x60f70172, 0x59504bc1, 0x62444363, 0xbf4c4c5d, 0x1501aa61, 0xfe6c11a7, 0x7142b7cc, 0x1949373f, 0x0f2c1211, + 0xb8fd4802, 0x13112c11, 0x37394716, 0x01b6417a, 0xa7116d34, 0xff00ebfe, 0x000500ff, 0x052d0200, 0x000602db, 0x0f830077, 0xe2ffb124, 0x0f825c04, + 0xd101263c, 0x06010000, 0x00fb8e00, 0x0a402000, 0x501d3002, 0x031d601d, 0xffb81d01, 0x595640f2, 0x181d2105, 0x21052255, 0x8348355d, 0x8c062507, + 0x52002602, 0x290c1156, 0x0909081b, 0x1b005502, 0x11560618, 0x55618407, 0x9d200a7d, 0x0a226182, 0x228201b6, 0x4b834e83, 0xe2ff7124, 0x21841106, + 0x4b82d420, 0x9d010728, 0x0000b600, 0x23820a00, 0x133e4122, 0x23834682, 0x0fe14e18, 0x50008e2d, 0x18007501, 0x110102b2, 0x82eeffb8, 0x821020a1, + 0x0c112175, 0x2206f455, 0x82010035, 0x003108a3, 0xd1050706, 0xd9002500, 0x24652b40, 0x16022476, 0x061f1f34, 0x1b351a1e, 0x06350903, 0x3f072f18, + 0x7f074f07, 0x07070407, 0x010f5917, 0x1600150f, 0x24448310, 0xb4d6ffb8, 0x056b460d, 0x0b40ee24, 0x57820b0b, 0xd3841020, 0xc0ffb838, 0x0d091940, + 0x27000037, 0x1a01270f, 0x1d011d1f, 0x14171f1d, 0x36831a18, 0xffb81823, 0x056d42f2, 0x83081821, 0x1a18253d, 0x55020c0c, 0xee221582, 0x43830c40, + 0x830c1821, 0x821a2043, 0x72f62010, 0x182905d1, 0x060d0d0a, 0x0c0a1855, 0x2505820c, 0xb4f6ffb8, 0x08820909, 0x822b2f21, 0x82332000, 0x25028203, + 0x2f3232fd, 0x9b582f5d, 0x5ded2708, 0x5d2f3912, 0xc84a2f00, 0x097c4208, 0x55352321, 0x54080832, 0x23262627, 0x11231121, 0x15213521, 0x32211121, + 0x16161716, 0x49530706, 0x6e8aaf57, 0x2f785b5d, 0x35313438, 0xfe839532, 0x52fec6eb, 0x0cfe6804, 0xbf985301, 0x01494c55, 0x3ab16ccc, 0x10b13045, + 0x4e6f2822, 0x2223734b, 0x0522fd13, 0xfeb0b021, 0x3b422468, 0x059d5eae, 0x8a042808, 0x2602ed07, 0x0000eb01, 0x8d000701, 0x61013500, 0x10401500, + 0x40083001, 0x70086008, 0x08000408, 0x25050407, 0x82355d2b, 0x00230820, 0x05e5ff73, 0x00ec0539, 0x408a002a, 0x491c3a0c, 0x7605581c, 0x050c7906, + 0xe0ffb811, 0x100a0b40, 0x82200137, 0x34203f04, 0xc0ffb81d, 0x0f0f4340, 0x1d1d5502, 0x2a2a030f, 0x09033426, 0x34171313, 0x1e1e020f, 0x7a5c0013, + 0x0f2c3905, 0x2c0f012c, 0x2c2f2c1f, 0x1d042c3f, 0x12096c20, 0x55020b0b, 0x09091609, 0x06220582, 0x05820c0c, 0x102b6830, 0x2b2b2bf6, 0x5d5d32fd, + 0x5d2f3311, 0xc1673333, 0xed3f2105, 0x2c05c56c, 0x3031ed2b, 0x255d2b2b, 0x22230606, 0xd7a21824, 0x33242107, 0x25091849, 0x07060607, 0x23511521, + 0x334c0809, 0xec633905, 0xeefea991, 0x69696161, 0x12015f62, 0x5ff68ca9, 0x8df94e10, 0x4648ae6d, 0x34030f58, 0x4758c2fc, 0x8a70c44a, 0x411050f7, + 0x63683527, 0xb7200163, 0x661f01af, 0x27346c62, 0x3a5240df, 0x72ad3b3b, 0x46d98bad, 0x434a4948, 0x25082978, 0x0602ec05, 0x9f603600, 0x3de75914, + 0xebff2c26, 0xd105ea02, 0x48085d82, 0x0000002d, 0xff120002, 0x05a208fd, 0x000e00d1, 0xb3e3003d, 0x30010c46, 0xb3acffb8, 0x1e37100a, 0x40c0ffb8, + 0x370e0b1e, 0x37373407, 0x35351816, 0x2c282803, 0x34082435, 0x14083716, 0x10100e16, 0xb8165502, 0x0fb4f2ff, 0x4708840f, 0x11820535, 0x0cb4e623, + 0x7f11840c, 0x11820501, 0x0db4e824, 0x2c83060d, 0x1c40ec24, 0x09820c0c, 0x09091422, 0x16260582, 0x0f150035, 0x47820f0a, 0x0b0c0f3a, 0x0f55020d, + 0x40f4ffb8, 0x37110e0c, 0x2f3f710f, 0x1318013f, 0xf8ffb835, 0x22051f4a, 0x820d1935, 0x220f8220, 0x831040ee, 0x1235305d, 0x55020909, 0x35013500, + 0x332f2835, 0x822b5d2f, 0x06867500, 0x5811fd21, 0x12820656, 0x0032fd2d, 0xfd2fed2f, 0xed3f2f32, 0x412f3912, 0x012205d8, 0xf8422634, 0x32213005, + 0x36363736, 0x07061437, 0x21230606, 0x82062111, 0x75022008, 0x23230587, 0x7d232622, 0x2282057b, 0x36131224, 0x1f433712, 0x07b40807, 0x373532d3, + 0xecfe8390, 0x8f850f01, 0xcf343836, 0xc0544755, 0xfdeefd98, 0x030b03f0, 0x1d1d2508, 0x65302f49, 0x0c3c1544, 0x0f1e0a0e, 0x47164024, 0x0b050e43, + 0x01910304, 0x55c09852, 0xc901494c, 0x2523724b, 0x1acbfd10, 0x55692725, 0x4237b06c, 0x71210538, 0xfed655d9, 0x6b5a59ec, 0x03262c2b, 0x160201c0, + 0x46014717, 0x01622d01, 0xb8fd8744, 0xae3b4223, 0xc8000200, 0x83080000, 0x0e00d105, 0x1f012700, 0x1e172140, 0x21213407, 0x031b1f16, 0x1a163408, + 0x20010f56, 0x0906081f, 0x08550209, 0x6f160014, 0xb8160216, 0x1140f0ff, 0x55021010, 0x0f0f1016, 0x08220582, 0x05820d0d, 0xeaffb822, 0x23056f47, + 0x0b0b0c16, 0x0c200f82, 0x16253283, 0x060f0f0a, 0x76318255, 0x088305ee, 0x2006a641, 0x05a6410a, 0x15001925, 0x820f160f, 0x160f214b, 0x2e08a641, + 0x37110e0d, 0x4029710f, 0x191d0129, 0x61b81a14, 0x0882065e, 0x83b4fc21, 0x20088259, 0x05454bda, 0x83081a21, 0x821a2063, 0x83b42079, 0x25088282, + 0x0c0cb4ee, 0x08825502, 0x83b4e221, 0x20088278, 0x201a82ec, 0x20118306, 0x05454bec, 0x78841a20, 0x286c1a24, 0xa358f610, 0xfd2b2308, 0x0e845d32, + 0x260bdf41, 0xed5d2b2b, 0x4439392b, 0x332005e9, 0x41089d68, 0x112517e1, 0x11331123, 0x26038321, 0x16171632, 0x41b40716, 0x652516cb, 0x9b02c6c6, + 0x19b241c6, 0xfdde0229, 0xfdd10522, 0x414802b8, 0x2f08069f, 0x00ffff01, 0x05fd0500, 0x001d00d1, 0x002640be, 0x5817480e, 0x620e6017, 0x700e700f, + 0x0108070f, 0x0b0b351a, 0x35030701, 0x01130304, 0x19121413, 0x2a06e25b, 0x0b3240f2, 0x1255020b, 0x820f0f04, 0x09122205, 0x20058209, 0x05b45006, + 0x820d0d21, 0x1f122f0b, 0x067f065f, 0x06030602, 0x03140007, 0x36831a01, 0x3c460120, 0x08012108, 0x01212483, 0x8230831a, 0x40ee2215, 0x214c831a, + 0x46830c01, 0x0c14012c, 0x0155060c, 0x06090910, 0x05697f55, 0x822b2008, 0xfd332400, 0x462f3232, 0x2b240929, 0x332f00ed, 0x2506ed50, 0x30313912, + 0x0f46215d, 0x36362907, 0x17163233, 0x11151616, 0x210a8657, 0x0b467302, 0x5f370806, 0xaa6567f6, 0xc6453d3d, 0x79201e16, 0x66c36a64, 0xb0b02105, + 0x331f2dfe, 0xa3343532, 0x0111fe73, 0x2b8c4a8c, 0x2226312e, 0xcd00ffff, 0x75050000, 0x2602ed07, 0x4600f201, 0x3f08050f, 0x0061013c, 0x010a4010, + 0x00012370, 0x00052123, 0x5d2b0125, 0x00020035, 0x04f9ff06, 0x008f07e6, 0x0028001a, 0x1900b9b9, 0x5e40ecff, 0x5502110a, 0x01380329, 0x14551946, + 0x1a191904, 0x16171418, 0x19330183, 0x0100131a, 0x18171600, 0x0005011a, 0x0f0b0b07, 0x751b0735, 0x3a080677, 0x25012575, 0x011e0faa, 0x03001e1e, + 0x221b1a28, 0x0121701a, 0x00211b21, 0x0a010a70, 0x01560136, 0x01760165, 0x010a1604, 0xb8001703, 0x1440e0ff, 0x00371009, 0x2a502a00, 0x82402a01, + 0x2017210a, 0x2f210483, 0xcf66182b, 0x2f5d2d08, 0x3939115d, 0x2fed5d2f, 0x333f00ed, 0x5d200782, 0x332f0482, 0x2f32ed2f, 0x39171211, 0xfd108701, + 0x83c008c0, 0xc0082806, 0x5d003031, 0x1801012b, 0x2810ecad, 0x37373636, 0x01013301, 0x05f74903, 0xea493320, 0x04710805, 0x22cafde6, 0x6134365d, + 0x1072282d, 0x2d460f0e, 0x201c4814, 0xfd24163f, 0xb301dbd6, 0x05218601, 0xc9a8a8c9, 0x6002b605, 0x025f5f5e, 0x1bfbd105, 0x191b624c, 0xb9010811, + 0x0b060902, 0x4f32340c, 0x92fc4f04, 0xbe016e03, 0xa6a8a8a6, 0x71626370, 0x00010000, 0x05affec8, 0x00d1053b, 0x40e9000b, 0x03020611, 0x00093404, + 0x0c0c090b, 0x0955020c, 0x22ef8213, 0x830a40fe, 0x0000250b, 0x07140602, 0x82077165, 0xb4f42508, 0x55020b0b, 0xe6240882, 0x0f0f1740, 0x08220982, + 0x05820909, 0x0d0d2a22, 0x12200582, 0x1b823283, 0x1b40fa2a, 0x55060f0f, 0x0d0d0a07, 0x0c210583, 0x2905820c, 0x0d400d78, 0x03020d70, 0x06440214, + 0x44088207, 0x08820506, 0x20060644, 0x824d8402, 0xb4ea210f, 0x08825083, 0x82050644, 0xb4e42108, 0x08825283, 0x83050644, 0x83b62008, 0x6c022258, + 0x0aff430c, 0x2006dd45, 0x6600842b, 0x2b2b0587, 0x332f2f00, 0x31333fed, 0x43212130, 0x113907d8, 0xfea40223, 0xe702c624, 0xbb24fec6, 0xdbfad105, + 0x2ffa2505, 0xffffaffe, 0x0cb96800, 0x08055145, 0x052c0521, 0x001200d1, 0x40c60021, 0x0111631b, 0x0c0c341a, 0x08350b07, 0x07341b03, 0x130a0a08, + 0x49020015, 0xee2006e5, 0x0224a282, 0xffb80055, 0x82050150, 0xb4da2108, 0x08936018, 0x0b0b1333, 0x00565502, 0x23710001, 0x2340230f, 0x141b0c02, + 0xe8531807, 0xb6ee2647, 0x55060c0c, 0x4c901807, 0x32fd220c, 0xba49185d, 0x33ed2207, 0x0796672f, 0xe249ed20, 0x7e212009, 0x322205a8, 0x285f1716, + 0x26128208, 0x36373632, 0x462c0536, 0xe42c05af, 0xe1fce503, 0xc0985c01, 0xcf494c55, 0x29050545, 0x851901e2, 0x3438368f, 0x9646cd01, 0xb0d12805, + 0x422368fe, 0x4672ae3b, 0x00200ab1, 0x2d10f169, 0x00c80001, 0x058a0400, 0x000500d1, 0x7018407f, 0x6c4f3c59, 0x4e521805, 0x050d4208, 0xffb80328, + 0x0c0cb4e4, 0x70185506, 0x02263657, 0xaffe0a00, 0x9f829e05, 0x000d2408, 0x40fe0013, 0x1a12091b, 0x03114a12, 0x030a3410, 0x3407130c, 0x10050103, + 0x020c0c0a, 0x0a131055, 0x48f4ffb8, 0x0a25056d, 0x020d0d14, 0x230f8255, 0x0b0e40ec, 0x0a231b82, 0x8209090c, 0x070a280f, 0xf8ffb80e, 0x820c0d40, + 0x140e2c1c, 0x10100a0c, 0xb80c5502, 0x83b4feff, 0x23088210, 0x0b0bb4f4, 0xf4211184, 0x252f83b6, 0xb8010c0c, 0x2e82f2ff, 0x01214182, 0x114b4213, + 0x22088f5d, 0x832340ec, 0x060e7881, 0x3b831c20, 0x0100202b, 0x13150000, 0x04070713, 0x221b830e, 0x82051304, 0x0fb4219d, 0x08827182, 0x7184f620, + 0x2b2f0529, 0x392bed2b, 0x4911ed2f, 0x0e850600, 0x00822b20, 0x8405ac77, 0x2f003508, 0x32fd2f33, 0x31ed3f32, 0x23015d30, 0x23112111, 0x12363311, + 0x2f080782, 0x21112133, 0x05070202, 0xe4fbbc9e, 0x9b8278bc, 0xfe8d7203, 0x0e0efead, 0xaffe7694, 0xabfe5501, 0x02d60102, 0xfa9a01b1, 0xfe7504df, + 0xbfaffd9b, 0x6b06fb41, 0xa2820959, 0x00203f08, 0x05a80700, 0x013700d1, 0x092e4000, 0x29331833, 0x401d4033, 0x54354124, 0x7524541d, 0x731d7118, + 0x13270b24, 0x1a353333, 0x0e0c0e13, 0x09160102, 0x13013710, 0x07003700, 0xeaffb808, 0x0e825440, 0x13085d08, 0x270a0909, 0x2c031a1f, 0x07373222, + 0x330e0c0a, 0x022c0735, 0x04352d14, 0x21150209, 0x00032c05, 0x37200a2f, 0x37500a5f, 0x37600a6f, 0x012c2c06, 0x33270237, 0xc5000635, 0x0c040422, + 0x0455020c, 0x15150514, 0x0c070a08, 0x09061a0e, 0xb8051fc5, 0x1740f4ff, 0x55021010, 0x0b0b0e05, 0x16220582, 0x05820f0f, 0x4808e469, 0x052305ff, + 0x820d0d0e, 0x39052915, 0x3f391038, 0x7f395f39, 0x09c27018, 0x2b2b2b2c, 0x3917f433, 0xfd102f32, 0x0884322b, 0x2f005d29, 0xfd39173f, 0x82122f32, + 0x45112005, 0x2b2205f1, 0x1f8287c0, 0x07820483, 0x00303128, 0x0123215d, 0x01821123, 0x01230125, 0x84272626, 0x23232202, 0x05424735, 0x16161722, + 0x28085b67, 0x33363637, 0x22231533, 0x05694a06, 0x07073a08, 0xf4fdf2a8, 0xfd6bc469, 0x5102e6f4, 0x13206858, 0x531b1c25, 0xa7473c3c, 0x1e0b3db2, + 0x568f2c0f, 0x2e915cc4, 0x3c091d12, 0x3c47a5b5, 0x1d1e4b42, 0x7d2a1325, 0xfda9023e, 0x08038457, 0x9c3afe54, 0x1c573d69, 0x7fb1181b, 0x24581ead, + 0x02086669, 0x0661fd9d, 0x552c7063, 0xb180ac19, 0x5b1b1c17, 0x2787853a, 0x51000100, 0x8504e5ff, 0x4000ec05, 0x1440a200, 0x3b580154, 0x3b690167, + 0x0c7f0b7f, 0x32703170, 0x32093874, 0x40e0ffb8, 0x37100b46, 0x0482200b, 0x3d3e2108, 0x2020341d, 0x30703409, 0x29303001, 0x10023434, 0x020d7f0d, + 0x34110d0d, 0x1e3d0a09, 0x17370d0b, 0x232b0483, 0x0b143a6c, 0x3a55020b, 0x820d0d0c, 0x1e1e2a05, 0x0c033a3d, 0xb8031517, 0x05dd45ff, 0xf8220882, + 0x21830a40, 0x4273032e, 0x2f0c3131, 0xf6102f33, 0x12ed2b2b, 0x2805526c, 0x002b2bed, 0x2f33ed3f, 0x1804845d, 0x22097943, 0x61015d2b, 0x2d470594, + 0x08894b05, 0x457a3620, 0x35232306, 0x0b873233, 0x4109517a, 0x2064056b, 0x046b0806, 0x5b3f3016, 0x85e65046, 0x0f4afb93, 0x4871f963, 0x313634a8, + 0x9133333c, 0xadb3c959, 0x2d2e35d2, 0x844e4c6f, 0x1764303b, 0x7ef84b0d, 0x4e4bb17b, 0x347da352, 0x2acd0276, 0xaa696681, 0x3744443c, 0x4b3bde1e, + 0x6f2d292a, 0x1f654f45, 0x7fa91b1e, 0x18523678, 0x141e1518, 0xdb0d3411, 0x2c273620, 0x7f5a8830, 0x090f1bb0, 0x6c00002f, 0x400805d7, 0x00d10539, + 0x401e0109, 0x04020b23, 0x03071907, 0x07150707, 0x0753025b, 0x0762026c, 0x0770027f, 0x02c80876, 0x07e702e6, 0x070d07f6, 0x40e8ffb8, 0x370f0b16, + 0x0f0c1002, 0x01060737, 0x08030402, 0x24028203, 0xb8020708, 0x054f60ff, 0xfa200882, 0x27053b44, 0x10100602, 0x14025502, 0x16212119, 0xfe561f20, + 0x0c12280a, 0x0055020c, 0x820d0d26, 0x0b782605, 0x0b400b0f, 0x826b8202, 0x820f2047, 0x14072141, 0x33e74a18, 0x18b4e621, 0x2b10e74a, 0x060c0cb4, + 0xffb80455, 0x0909b6f6, 0x80180882, 0xed200d26, 0x2609ec56, 0x2b2b2bfd, 0x54393911, 0x2308059d, 0x30312b2b, 0x2321715d, 0x11230111, 0x33011133, + 0xfdc53905, 0x02c5c81c, 0xa904d1db, 0xd10557fb, 0x970469fb, 0x2a069547, 0x008f0739, 0x01170009, 0x4132404d, 0x0a2d214b, 0x1070100f, 0x14101002, + 0x010d0faa, 0x055a410d, 0x5a412520, 0x1a172f11, 0x0a600a50, 0x1a110a02, 0x00100a10, 0x69410304, 0x0f19244c, 0x41194019, 0x5b186369, 0x69410de6, + 0x41ed2009, 0x11280569, 0x2f393912, 0xed5d2fed, 0x20077241, 0x820b8233, 0x41332003, 0x844a0d7a, 0x0988410d, 0x6f4ab520, 0x0996410c, 0x200d5f4a, + 0x051d71cd, 0x20002608, 0x83400b01, 0x011f0109, 0x20270129, 0x2037013a, 0x2047014b, 0x0065015c, 0x00762067, 0x1f0d2074, 0x370d0a20, 0x3604830c, + 0x88030202, 0x0201c801, 0x2000b301, 0x1b661e00, 0x1b021b86, 0x820d1213, 0x1b3f0801, 0x2015041e, 0x082f3202, 0x00080801, 0x15351607, 0x05030703, + 0x1b120d00, 0x0405201e, 0x1501154f, 0x20220f15, 0x40003000, 0x00500400, 0x226e0001, 0x08012240, 0x09090804, 0x14045502, 0x47100e05, 0xd16f050e, + 0x05844418, 0x250bda6f, 0x0f0fb4e8, 0xd16f5506, 0x0cb6220c, 0x2111820c, 0x455f216c, 0x5d32380c, 0x5d5df610, 0x125d2f32, 0x2f003917, 0xed3f3f2f, + 0x2f391211, 0x4b39fd5d, 0x5d2f06f0, 0x013031c0, 0xfd7a1087, 0xc008185d, 0x452b2b01, 0x332007fe, 0x2205f76b, 0x45363637, 0x3b080fe7, 0xfdfe7505, + 0xc6c687a3, 0x28285a33, 0x230d1e4e, 0xb4b94512, 0x4e45534f, 0x172b1d1f, 0x025a6b34, 0x0559fda7, 0x0164fdd1, 0x55171912, 0x2d521b3e, 0x19b186a6, + 0x3b581a1d, 0x002e7c84, 0x2a08fa82, 0x05fdff12, 0x00d10518, 0xb98a0021, 0xacff1b00, 0x371009b3, 0xc0ffb809, 0x0e0b1640, 0x20350337, 0x13130103, + 0x010f3517, 0x4a0c0014, 0xf62006b3, 0x2207b34a, 0x540db4f6, 0xde2705a2, 0x0c0c1f40, 0x54005502, 0x782605a2, 0x01238f23, 0x11830c03, 0x20130323, + 0x2323831e, 0xecffb820, 0x2e057344, 0x09091620, 0x20205502, 0x2f332f12, 0x432b2b2b, 0xed2e09d4, 0x32fd2f00, 0xed3f2f2f, 0x2b2b3031, 0x35512321, + 0x1805241f, 0x51e6fdc6, 0x9b201c19, 0x721cff50, 0xbd7316eb, 0xff73240b, 0x72da05e1, 0x5f45b963, 0x0c914205, 0x0c0cb424, 0x11825506, 0x72055f45, + 0xff2f4c63, 0xff7300ff, 0x054605e5, 0x000602ec, 0x71000026, 0x00210f4f, 0x05834f01, 0x00d10525, 0x4f8a001a, 0x40200581, 0x212a814f, 0x634f0300, + 0x501c241c, 0x4f1c011c, 0x00231763, 0x4ffd2f3f, 0x444f3252, 0x19364f1e, 0x7b180020, 0x122e3b27, 0x55020c0c, 0x2b07000f, 0x04251815, 0x7b181407, + 0xed243027, 0xc4103917, 0x2505587b, 0x3f2f005d, 0x7b183912, 0xff22ab27, 0x657300ff, 0xc824080f, 0xbe05affe, 0x0b00d105, 0x12401001, 0x0b030206, + 0x01350408, 0x08140508, 0x0210100a, 0xffb80855, 0x0d0db4fc, 0x4d5f0884, 0x0be07205, 0x09b4f623, 0x2a1a8409, 0x0d1a40e2, 0x0855060d, 0x820c0c14, + 0x09062205, 0x2c058209, 0x0d130008, 0x370b0940, 0xf8ffb80a, 0x824b83b4, 0xb4dc2508, 0x55020f0f, 0x56180882, 0x162207a9, 0x0f820c0c, 0x0b0b0822, + 0x12200582, 0x2405ab4d, 0x0114040d, 0x069654b8, 0x23460882, 0x50088205, 0x0121068f, 0x82268308, 0x058f500f, 0x2c460882, 0x43088205, 0x08820591, + 0x6d18e220, 0x56180833, 0x98500fb2, 0xed2b220b, 0x60701811, 0x56ed2008, 0xed25097a, 0x32fd3f00, 0x0c9c502f, 0x11334308, 0xfb020523, 0xdd02c6c6, + 0x05bc8dc6, 0x05ddfad1, 0xfeddfa23, 0x00010001, 0x0400008e, 0x00d105ea, 0x40a60019, 0x4511351a, 0x6c115411, 0x05167409, 0x35140c02, 0x18000505, + 0x1700030c, 0xb8001401, 0xd455e6ff, 0x06002705, 0x55020f0f, 0xd8450a00, 0x4fee2006, 0x0023053a, 0x820b0b0e, 0xffb82415, 0x830d40dc, 0x78002add, + 0x011b0f1b, 0xb80c140d, 0x05707bff, 0xf6220882, 0x3a831140, 0x0c060c27, 0x0c55020c, 0x06b04e10, 0x3085da20, 0x09140c28, 0x0c550609, 0x0b471a6a, + 0x09745107, 0x0032fd22, 0x1222cc82, 0x9a6b2f39, 0x23212205, 0x059b4b11, 0x35262622, 0x0e06f418, 0xc6ea2a08, 0x6364dd81, 0x473f3fac, 0x232314c6, + 0xd6716b72, 0x7602c652, 0x35312a28, 0x0172a435, 0x5767fefc, 0x2f2f3079, 0xb1021e28, 0x05394b00, 0x82760721, 0x000b30f9, 0x0a1140ba, 0x08030206, + 0x09013404, 0x46060014, 0xaf8507c5, 0x84100021, 0x830420ea, 0xb80025b5, 0x0c40e7ff, 0xc62ae084, 0x04051408, 0xffb80114, 0xd583b4fe, 0xf8210882, + 0x822883b4, 0x46fc2008, 0x012105c8, 0x24288312, 0xb805c601, 0x05ea5dff, 0xda200882, 0x08822c84, 0x474ff220, 0xffb82705, 0x0b0bb4f8, 0x11825502, + 0x3b5ef620, 0x05052e05, 0x0d1f0c0d, 0x0d500d3f, 0x5d040d70, 0x20f68211, 0x2000832b, 0x220483f4, 0x84fd10ed, 0xed2b2707, 0x32fd2f00, 0x7e52333f, + 0x0733230d, 0xef82f976, 0x02c62e24, 0x7e52c62e, 0x05db2206, 0x23e98425, 0x0308affe, 0x0f24e982, 0x2340d300, 0x0c20e983, 0x0f24ea83, 0x0800130d, + 0x00207c83, 0x0024a884, 0x0c140900, 0xab41fb84, 0x20fb840a, 0x82fb840c, 0x20fb8615, 0x20fbb50c, 0x5ffb99f8, 0x052b0637, 0x1f101105, 0x50113f11, + 0x99117011, 0x2f3329fb, 0x00ed2b2b, 0x32fd2f2f, 0x2a110241, 0x23113311, 0x81f94707, 0x832e02c6, 0xbc8d2102, 0x26090841, 0x03fedbfa, 0x82000200, + 0x05230800, 0x00d105f4, 0x0021000e, 0x071340a4, 0x161b1b34, 0x03193518, 0x56163408, 0x081b010f, 0xffb81614, 0x5a10b4ee, 0xf8200561, 0x21054858, + 0xc2581e16, 0x05a84306, 0xf23a2182, 0x0b0b1540, 0x0e165502, 0x55020909, 0x167f164f, 0x19161602, 0xb80f1500, 0x3b84e8ff, 0xe0210882, 0x823483b4, + 0x43d02008, 0xc97e0522, 0x2c0f8205, 0x0e0a40f4, 0x710f3711, 0x01230f23, 0x2c671819, 0x11fd2208, 0x084f6d39, 0x005d3223, 0x05f17a2f, 0x3031ed22, + 0x2018345a, 0x07185a35, 0x58250521, 0xfe23154c, 0x58600266, 0x05221949, 0x4258b021, 0x00260806, 0x00c80003, 0x05950600, 0x000e00d1, 0x0023001f, + 0x441640f2, 0x3407010d, 0x17161919, 0x16340803, 0x56210322, 0xde84010f, 0x7fb4ec21, 0xda2106af, 0x064c7eb4, 0x83b3f421, 0xffb835cd, 0x0c3d40c0, + 0x0f0f3710, 0x0a201421, 0x55021010, 0x0b0b0020, 0x2f830583, 0x09002023, 0x220b8209, 0x820d0d19, 0x0c0e2205, 0x2005820c, 0x2a118420, 0x250f2578, + 0x19022570, 0x45161408, 0x08820731, 0x82053145, 0x06314508, 0x83081621, 0x450f822c, 0x08820531, 0x20088841, 0x218f82e2, 0x11825506, 0x82053145, + 0xb6ec2308, 0x11820c0c, 0x4b246c21, 0x57180b55, 0xfd230a99, 0x822b2f32, 0x5ded2700, 0x2f3f2f00, 0x9c5b3fed, 0x415d2005, 0x33211765, 0x059c5e11, + 0x11230125, 0x41530433, 0xae591567, 0xc6732208, 0x13655bc6, 0x6741d120, 0xc5fd2405, 0x4e00d105, 0x22200667, 0x22066b41, 0x411040a8, 0x63410966, + 0x41f62007, 0xee200763, 0x2b086341, 0x110e0f40, 0x21710f37, 0x2140210f, 0x463a2d41, 0x1622055f, 0xe154ffb8, 0x0a2d4105, 0x2d412020, 0x5ded2212, + 0x08204100, 0x411f1f41, 0x7d5c201b, 0x06174112, 0x0100003a, 0xe5ff6100, 0xec052905, 0xa4002a00, 0x1c3a0a40, 0x06641c49, 0x26040676, 0x3907855f, + 0x100a200b, 0x19341837, 0x40c0ffb8, 0x020f0f20, 0x28191955, 0x20242409, 0x17522834, 0x06092b05, 0x56031603, 0x241a0303, 0x85181417, 0xd6230b6e, + 0x190909b4, 0x240d4730, 0x0d1d40f2, 0x2012820d, 0x0cad5f73, 0x2418242f, 0x1f0c0f18, 0x2f0c020c, 0x2f33335d, 0x6385182f, 0x39112708, 0xed3f005d, + 0xa15f2f33, 0x16012a0e, 0x02141512, 0x23040607, 0x295b1822, 0x37362707, 0x21353636, 0x7e532135, 0x6b222005, 0x9a0805b7, 0x04043233, 0x69686061, + 0xeffe6663, 0x57fe8da3, 0x8df75110, 0x4844cc7b, 0x03d3fc49, 0x475c0e23, 0x8966b447, 0x5d1157f0, 0x01ac85fe, 0x602c050f, 0xacc2e4fe, 0x6a67dffe, + 0xdb25366b, 0x4b574d41, 0xad80c950, 0x3939af77, 0xdc434d37, 0x00603527, 0xc8000200, 0xd307e1ff, 0x0b00f005, 0x27011e00, 0x14783240, 0x06030901, + 0x1a161509, 0x5916561c, 0x7616791c, 0x340c081c, 0x14131e13, 0x34031c03, 0x03100216, 0x091c3409, 0x0619130f, 0x09080c15, 0x0c550209, 0x40f6ffb8, + 0x820b0b2b, 0x0c142209, 0x2205820c, 0x820d0d04, 0x0f252205, 0x3705820f, 0x0210101a, 0x3f0c1855, 0x6f0c580c, 0x0c0c040c, 0x1915000f, 0xb4d0ffb8, + 0x08822e83, 0x82054e41, 0xb4e22108, 0x08823a83, 0x1740e722, 0x19213e83, 0x213e8314, 0x3e830419, 0x20731926, 0x0f140e12, 0x8207ce43, 0x05ce4308, + 0xce430882, 0x08094506, 0x2245ea20, 0x05ce4307, 0xce432182, 0x42088205, 0x088305a0, 0x2705975d, 0x09090a0f, 0x6c0f5506, 0x0c20bb18, 0x4232fd21, + 0xed2107b5, 0x083d4512, 0x27080a82, 0xed3f2f00, 0x12ed3f3f, 0xed2f3917, 0x5d30315d, 0x23001001, 0x10110022, 0x00323300, 0x23112301, 0x33113311, + 0x20210012, 0x05821283, 0x05072a08, 0xdddbfffe, 0x0301fefe, 0x0101dbdc, 0xc6f079fb, 0x0124f9c6, 0x0113016a, 0xfe6c013f, 0xfec5fe90, 0x0291fecc, + 0x012801e8, 0x08098235, 0xdbfed769, 0x3601c9fe, 0x30fd0e01, 0xacfdd105, 0x46012d01, 0x95fe63fe, 0x66fe93fe, 0x00008901, 0x002c0002, 0x05de0400, + 0x001000d1, 0x40e9001f, 0x3503280c, 0x5a1c4706, 0x05175907, 0xe8ffb804, 0x10092e40, 0x13040337, 0x06060505, 0x0334110f, 0x020d0d40, 0x01034055, + 0x12000303, 0x00030f34, 0x09151905, 0x020f0f12, 0x83160955, 0x82092019, 0x0cb42232, 0x260e820c, 0x40f0ffb8, 0x820b0b12, 0x06042909, 0x5f040903, + 0x12050105, 0x840c9849, 0x0c00211c, 0x00233b83, 0x77ddffb8, 0x00210597, 0x8245830c, 0x0588680f, 0xf6200882, 0x2905d863, 0x0d0d0a00, 0x0a005506, + 0x05820c0c, 0xf6ffb826, 0x09090e40, 0x78280982, 0x40210f21, 0x03216021, 0x0c4f4018, 0x2f32fd24, 0x604a175d, 0x00ed2205, 0x05d2602f, 0x2b5d2108, + 0x313912ed, 0x10870130, 0x002bc0fd, 0x1123215d, 0x01230121, 0x34352626, 0x36363736, 0x11032133, 0x080c986e, 0xc6de0450, 0x43febffe, 0x96de01ee, + 0x474e5fa5, 0xea0173be, 0x56d2fec6, 0x342e2b68, 0x822d2925, 0xfd500256, 0x336e02b0, 0xa572b3d5, 0xfd283237, 0x16320224, 0x43701f1d, 0x2c296a50, + 0xffff001e, 0xe1ff6800, 0x78041d04, 0x44000602, 0x02000000, 0x0f827400, 0x067c4408, 0x0027001d, 0x40ce0039, 0x351f0c16, 0x30293d04, 0x4b044039, + 0x65394029, 0x73127512, 0xb8330a33, 0x1d40c0ff, 0x22370d0b, 0x00412b06, 0x02251025, 0x19062525, 0x37001841, 0x220a063f, 0x0c181831, 0x6bffb828, + 0x282305d6, 0x6ab8031b, 0x08820677, 0x84058145, 0x0d0d2308, 0x08825502, 0x0cb4d423, 0x4908840c, 0x118205af, 0x2f40f824, 0x12820909, 0x1f3b9028, + 0x023b3f3b, 0x2083403b, 0x84123121, 0x0c1b2205, 0x27078308, 0x0b0b180c, 0x220c5502, 0x0c272783, 0xf6103a86, 0x6b2b2b2b, 0xed260b92, 0x2f39122b, + 0x475b3912, 0xed5d2507, 0x30313912, 0x26068156, 0x26222300, 0x41022627, 0x3722054d, 0x02833636, 0x57061521, 0x362707ba, 0x16323336, 0x18263413, + 0x080eab84, 0x46ee03b1, 0xdbd4fe48, 0x5040b66c, 0x14190e4f, 0xeb48354d, 0x36884fc2, 0x80408142, 0x353530cf, 0x65b34b08, 0xb20fae5e, 0x48a05792, + 0x353a0302, 0x973e6c2e, 0x46b803aa, 0xfefa86c7, 0x5f4c49b6, 0x4bd02101, 0xac5d6c9b, 0x11594935, 0xad040907, 0x0b060804, 0xab35313e, 0x3e49364d, + 0xb7b922fe, 0x43192e37, 0x40d8ae1c, 0x00da2d36, 0x00b90003, 0x04530400, 0x0015005d, 0x00330024, 0x0a0c40fc, 0x1a140503, 0x76141503, 0xb80c0523, + 0x2040d6ff, 0x12370c09, 0x4f3c2c11, 0x1e1e011e, 0x083d1d07, 0x073d2d05, 0x121b1608, 0x10060f2c, 0x0f550210, 0x46f0ffb8, 0xe62407ea, 0x0d0d4240, + 0x12221282, 0x05820b0b, 0x09090c22, 0x0f2b0582, 0x001b2507, 0x020f0f08, 0x83080055, 0x0200211c, 0x002d1c83, 0x37100d10, 0x0f359000, 0x2c1e0135, + 0x29288308, 0x0c0c0c2c, 0x1a2c5502, 0x3f7cb807, 0x20088206, 0x825884e0, 0xb4ee2108, 0x08823a83, 0x8649f620, 0x061a7005, 0xecffb822, 0x06212182, + 0x48188255, 0x08820539, 0x0cb6f623, 0x2111820c, 0x21193488, 0x32240c44, 0x2bf4105d, 0xed200082, 0x22078a4b, 0x41ed3912, 0xa91807b1, 0x90490e5e, + 0x06085807, 0x80180320, 0x13200d3d, 0x71080e8d, 0x39415304, 0xfe7b9740, 0x7db00132, 0x3b3f387f, 0x81634a5e, 0x2a201ffd, 0xebc44d69, 0x2624474a, + 0x3d243b1d, 0xf14e5826, 0x2c7970b2, 0x52012b2c, 0x2f2a7e51, 0x115d042a, 0x486a211d, 0x0a227a53, 0x7d018918, 0x15103a24, 0x0bcefe05, 0xfe411816, + 0x1d453742, 0x93fe0712, 0x4819190f, 0xb9000100, 0xbb030000, 0x05005d04, 0x1a408300, 0x05043f01, 0x15827003, 0x18070021, 0x200d3c85, 0x07324103, + 0x32410882, 0x41088205, 0x08820532, 0x22063241, 0x47090c03, 0x32410545, 0x5d188205, 0xec200820, 0x28059d45, 0x09091403, 0x88035506, 0x09394106, + 0x2bed2b3e, 0x2f33112b, 0x3f2f005d, 0x013031ed, 0x11231121, 0xfdbb0321, 0x0203bcba, 0x48fcb803, 0x02269982, 0xf4fe0900, 0x0982af04, 0x000d2008, + 0x40cd0013, 0x4a123b22, 0x05010212, 0x050a3e10, 0x3e07130c, 0x0c0c1003, 0x1055020c, 0x4f100ac9, 0x07220557, 0x9278b80e, 0x73088206, 0x088305a8, + 0x1d83b620, 0x0c1a0e24, 0xdf4fffb8, 0x44088305, 0x0c2905e3, 0x060d0d0a, 0x0c0a0c55, 0x2405820c, 0x40ecffb8, 0x27a68309, 0xc9010c0c, 0xe0ffb800, + 0x21056b60, 0xe7701000, 0x05084d0a, 0xc0ffb83c, 0x0e0b1240, 0x15000037, 0x153f152f, 0x071a1302, 0x05c90407, 0x2f39ed2f, 0xd3825ded, 0x00832b20, + 0x82076f4f, 0x122b23e6, 0xee822f39, 0xfd2f0028, 0xed3f3232, 0xee5c332f, 0x065d0813, 0xaf040702, 0xafb8fcaf, 0x02737579, 0xbdfe87be, 0x800daffe, + 0x01f4fe53, 0x01f1fe0f, 0xf901c1ac, 0x43fc0301, 0xfefb1f03, 0xff008662, 0xff6a00ff, 0x046004e6, 0x0006027c, 0x00000048, 0x00340001, 0x04320600, + 0x0031005d, 0x3a1240d8, 0x4a2d3a0e, 0x5f2d4a0e, 0x6f2f5f0c, 0x082f6f0c, 0x24cd8226, 0x370b09b3, 0x21078215, 0x08821a40, 0x2db42426, 0xb4172f2d, + 0x2009f85c, 0x5c39821a, 0x5d0805f8, 0x3710095e, 0x09091a08, 0x171c240a, 0x3c1f2903, 0x0c0a0731, 0x072d2f0e, 0x2a110229, 0x0209043f, 0x29051d12, + 0x0a2e0005, 0x0a5e3121, 0x0a6f3151, 0x0a7f3160, 0x29083170, 0x02310129, 0x062f2d24, 0x041fc700, 0x1212051a, 0x0c070a08, 0x0906170e, 0x05051cc7, + 0x33103233, 0x334f333f, 0xb54d336f, 0x07c45c05, 0x5629c35c, 0x232109c6, 0x06c55c01, 0x0822c25c, 0xfee33232, 0x51ba5b9a, 0x01d98afe, 0x1f4b31af, + 0x35544a1b, 0x2d967c45, 0x210a1b09, 0x40ba4067, 0x1b0b2169, 0x7d942c08, 0x4b553545, 0x2d4d1c19, 0x02fefe01, 0x42080383, 0x601a4902, 0xa2425561, + 0x431a7d64, 0x043f4c17, 0x1cfee401, 0x194b4004, 0x667b1942, 0x595146a2, 0x01001963, 0xe6ff4100, 0x7804c203, 0xbb003d00, 0x753426b7, 0x033c7d12, + 0xe0ffb82f, 0x100d2f40, 0x82200837, 0x3b390804, 0x1caf3f1b, 0x1c021cbf, 0x3f31061c, 0xa02d902d, 0x2d2d032d, 0x04313e29, 0x0a300a20, 0x0e0a0a02, + 0x1c09063f, 0xffb8232e, 0x0c0e40f4, 0x2355020c, 0x1c2e371b, 0x09043b37, 0x20128314, 0x2112830d, 0xae471b14, 0xb4de2108, 0x0f428c18, 0x1740f03c, + 0x55020909, 0x7f3f9000, 0x023f803f, 0x09900980, 0x0b400902, 0x2f09370f, 0x9d475d2b, 0x2bed2906, 0x2f391712, 0x2f2f2bed, 0x250ecc5c, 0x3139ed5d, + 0xad182b30, 0x372112f7, 0x0cc95c36, 0xb14a0e89, 0x17162108, 0x0805005d, 0x16161567, 0x4457c203, 0x7452a444, 0x490d66d2, 0x6a326ae2, 0x31322a27, + 0x3074292a, 0x812871a3, 0x303d3428, 0x235b2524, 0x0d43c566, 0x4e5fbe53, 0x5442439b, 0x7a675c6d, 0x825e3901, 0x2c242728, 0x4640ce2e, 0x43181513, + 0x12483c3a, 0x06a20812, 0x443e110d, 0x11113d2f, 0xcf34370c, 0x221c221b, 0x58567522, 0x19071d85, 0x05ab4489, 0x66042708, 0x09005d04, 0x13400701, + 0x0704020b, 0x01030d02, 0x100b3803, 0x0e380237, 0xb8073710, 0x1640f2ff, 0x5502110c, 0x05830e02, 0xb55c0720, 0x03052305, 0x83180808, 0xf8230bca, + 0x820909b6, 0x001a2422, 0x61e0ffb8, 0x0021054c, 0x0f7f7e20, 0x7518ea20, 0x1c2f10bc, 0x55060909, 0x1f0b9200, 0x020b600b, 0x830c0703, 0x06234631, + 0x45041a21, 0x0882071d, 0x82051d45, 0x051d4508, 0x1d450882, 0x0c042106, 0x0f827683, 0x5cb4f021, 0x1d4510ae, 0x0a042105, 0x04226383, 0x1d450a88, + 0x5d39210d, 0x25055846, 0x2bfd2b2b, 0x375b392b, 0x30312307, 0xac5c2b2b, 0x0426080b, 0xb7fdba66, 0x4302baaa, 0xfc4703b0, 0xfc5d04b9, 0x003b03c5, + 0xb9000200, 0x66040000, 0x09001506, 0x36011700, 0x35411d40, 0x0f0a2f11, 0x10100110, 0x0d0d5014, 0xf2ffb807, 0x3f412b40, 0xc9173413, 0x0a2f0a1f, + 0xc9110a02, 0x10101000, 0x10031020, 0x4104100a, 0xe6203054, 0x4110847a, 0x19240654, 0x1960191f, 0x205e5441, 0x10544118, 0x842bf621, 0x2bfd2400, + 0x6712392b, 0x955c053b, 0x33ed240b, 0x41335d2f, 0x965c0f64, 0x0972410d, 0xb1056b2d, 0x05b1a9a9, 0x585b01ab, 0x41015a59, 0x2c080980, 0xa694b801, + 0x5e6994a6, 0x01006b5c, 0x0000c100, 0x5d04a904, 0xef001a00, 0x20014d40, 0x1b370e09, 0x361a2702, 0x3516320e, 0x0102051a, 0x3318821a, 0x2b0f1b0a, + 0xb40f020f, 0x0a161816, 0x0416180f, 0x3c021a12, 0x3106795c, 0x05123f13, 0x05010507, 0x961a5608, 0xb61a9600, 0x3482b600, 0x23831a20, 0xb8001226, + 0x1b40c0ff, 0x00264f82, 0x1c0f1c00, 0x6e181c1f, 0x7f5c3d07, 0x05ef4808, 0xffb80522, 0x2205ef48, 0x481b8905, 0xee7d0eef, 0x3f002208, 0x107e5c3c, + 0x7e5c7120, 0xc0fd2405, 0x622b5d01, 0x33230678, 0x5c363211, 0x42080f76, 0xfef6a904, 0xbcbc6630, 0x0e28725d, 0x9c340d1b, 0x4f535692, 0x59282459, + 0xfe000232, 0xfe5d0400, 0x1b4a431e, 0x70711c3d, 0x5e5443a2, 0x0100185d, 0xfeff1d00, 0x5d043e04, 0xcf002100, 0xff1b00b9, 0x5c0db3ac, 0x0e200665, + 0x02320882, 0x0005213e, 0x3f171313, 0xffb8010f, 0x0c0cb4f4, 0x08825502, 0x2505f043, 0xb8001a01, 0x7763f2ff, 0x0c002905, 0x55020b0b, 0x0f0f0e00, + 0x0c220582, 0x05820909, 0x56ffb821, 0x0d2108a2, 0x200f840d, 0x06ae42ec, 0x0d0d0a24, 0x3b825506, 0x4f82f620, 0xec220884, 0x0c441040, 0x03232305, + 0x2b820c0c, 0x201a032a, 0xb4dcffb8, 0x55021010, 0xee220882, 0x56831240, 0x830e2021, 0x20202762, 0x20022030, 0x006e1220, 0x6fed2006, 0x2b2005d7, + 0xed230085, 0x5c002b2b, 0xbb4b12aa, 0x22232606, 0x33352326, 0x07707332, 0x36365d08, 0x3e042137, 0x035ffebc, 0x20070306, 0x223b181a, 0x11315322, + 0x080a0a41, 0x33180a1e, 0x0a3e3312, 0x03030704, 0x53bf0301, 0xc7a73e9a, 0x1f4d3e42, 0xa4021e1e, 0x32130e02, 0xe152e1ee, 0x00010066, 0x040000b9, + 0x005d04d9, 0x4055010c, 0x3a093513, 0x4a03450b, 0x7f037004, 0x400b0604, 0x20074441, 0x08088210, 0x7b027b34, 0x030a7905, 0x0b092a0a, 0xffb80a37, + 0x102440ec, 0x05550211, 0x0903020a, 0x100e4004, 0x0d200437, 0x043f370f, 0x07040401, 0x0105090b, 0x0b0a0907, 0x43180503, 0x6f4117fe, 0x0b734e06, + 0x20076f41, 0x05684bf2, 0x410e0021, 0xf6221f6f, 0x6f412140, 0x0f0e2905, 0x020e200e, 0x0f0f0405, 0x0c228f82, 0x05830d0c, 0x82090921, 0x1fd24b05, + 0x0c0cb429, 0xb8075502, 0x83b4f0ff, 0x4b08822e, 0xa14a08d4, 0x0ad44b05, 0xe4420d20, 0x2bed2109, 0x210c1679, 0x10822b2b, 0x39171137, 0x3f332f00, + 0x2f391233, 0x122b2b5d, 0x312b3917, 0x5d2b0030, 0x08298201, 0x1123212a, 0x11012301, 0x01331123, 0xd9043301, 0x8ceafeba, 0xe3b0ecfe, 0x26013001, + 0xfd7203e7, 0xfc3e02c2, 0xfd5d048e, 0x0071028f, 0x34068d41, 0x005d0460, 0x40ea000b, 0x083f030d, 0x070a0508, 0x08050105, 0x18494109, 0x10101125, + 0x84005502, 0x220021fc, 0x420fb046, 0x062007ac, 0x2106ac42, 0x5b4540ec, 0x1f0d2806, 0x020d600d, 0x830c0308, 0x06a14b31, 0x0c197218, 0x2205b046, + 0x46ffb805, 0x088205b0, 0x2406b046, 0x09090c05, 0x05886002, 0x600f0f21, 0xb0460e91, 0x0a052305, 0x18820909, 0x6b5a8820, 0x06e97c0b, 0x2005e142, + 0x210d832b, 0x2f413f00, 0x66501805, 0x11333809, 0x04331121, 0xd1fdbc60, 0x2f02bcbc, 0xfef701bc, 0xfe5d0409, 0x7ec4013c, 0xb542100d, 0x04603205, + 0x0007005d, 0x3f03b6dc, 0x05000506, 0xf4ffb801, 0x839a83b4, 0x83b62008, 0x1a0125d6, 0xeaffb800, 0x4106775a, 0xf0232620, 0x82091b40, 0x920029bc, + 0x60091f09, 0x0c040209, 0xa3474883, 0x2e1f4106, 0x5f05d047, 0x1f410c1f, 0x4608200d, 0x94490d7b, 0x2b2b2506, 0x2b2bed2b, 0x0e805118, 0x08051541, + 0x03a70344, 0x0445fcbb, 0x00ffff5d, 0x0464feb9, 0x027c0490, 0x00530006, 0x00010000, 0x03e7ff6a, 0x007704fd, 0x40840021, 0x4f230f67, 0x03235f23, + 0x0e22012b, 0x1824162a, 0x0e35013a, 0x1835163a, 0x0a4f0149, 0x2f190e44, 0xf0831f2b, 0x23000024, 0x08830617, 0x091b1729, 0x020d0d08, 0x83080955, + 0x0c09230d, 0x92740b0b, 0x22852108, 0xed26be85, 0x2f33112b, 0xe7543c2b, 0x30312308, 0x8374015d, 0x27262405, 0x7d352626, 0xc3750f99, 0x373b0805, + 0x73fd0333, 0xcc7a52a5, 0x01514949, 0x61010128, 0x5d0b4ebb, 0xb7a755b5, 0x753ba8b6, 0x10512630, 0x2936460b, 0xdc484847, 0x010b0193, 0xd127363f, + 0xc7e04447, 0x181edcc7, 0x820d3513, 0x000a21ed, 0x07dd9318, 0x1e407623, 0xdd931803, 0x0b1c223b, 0xdd93180c, 0x18a02007, 0x201bd793, 0xd6931833, + 0xffff2125, 0x07614b18, 0x00060224, 0xa682005c, 0x6f003108, 0x4b0664fe, 0x23001406, 0x3d003000, 0x1040cf00, 0x1d012256, 0x0c1e1b01, 0x27060409, + 0x18213f35, 0x40f0ffb8, 0x370f0e1c, 0x2e3b0418, 0x10060f3f, 0x06330a82, 0x390c0b09, 0x49383624, 0x04384624, 0xf4ffb824, 0x820c2c40, 0x1b242fa7, + 0x0f0f1000, 0xc8005502, 0x1e1b3109, 0x1b6f042b, 0x090c2906, 0x09550209, 0x0c380c1a, 0x38222483, 0x5182121b, 0x2783b620, 0x0cc81225, 0x43f6ffb8, + 0x0c200500, 0x0c233984, 0x550d0d02, 0x183a06c4, 0x55020b0b, 0x0c900c80, 0x3f0c0c02, 0x1f3f0f3e, 0x503f3f3f, 0x053f803f, 0xc544115d, 0x2b2b2c05, + 0x2bed2bfd, 0x2b2bed10, 0x83103917, 0x005d270a, 0x332b3f3f, 0x048432fd, 0x39171224, 0x5118313f, 0x23240791, 0x11272622, 0x2105585d, 0xc0531102, + 0x6a322005, 0x33210638, 0x0f321932, 0x05a0080d, 0x23262611, 0x14150622, 0x36323316, 0x3f4c4b06, 0x4359a23e, 0x3dba2763, 0xf0c1544f, 0xa53d3f4e, + 0x31633c52, 0x3f7c2eba, 0x88c1e2c6, 0x3f4a3788, 0x8d3a3f2f, 0x2776fd9b, 0xa1873150, 0x5b35878f, 0xe5954c02, 0x2e4e4a4a, 0x0133fe13, 0x01231ecd, + 0x8d0d012e, 0x4d494bdd, 0xe1011e25, 0x281b1ffe, 0xecfed5fe, 0x1912debf, 0x191617fd, 0xe902aad9, 0xd2ce1912, 0xff1de0c3, 0x003c00ff, 0x04800400, + 0x0006025d, 0x0000005b, 0xfeb90001, 0x04de04f4, 0x010b005d, 0x0609401b, 0x080b0502, 0x05013f04, 0x83074644, 0x0d403208, 0x55020c0c, 0x08081a05, + 0x55020f0f, 0xfeffb808, 0x821083b4, 0xb4fa2108, 0x23061460, 0x0b0bb4f4, 0xf4201a84, 0x2905805d, 0x0d0d0a08, 0x06085506, 0x05820c0c, 0xf6ffb822, + 0x27053450, 0xc9000808, 0xecffb80a, 0x2105f746, 0x4583240a, 0x5f120a21, 0xb8280af5, 0x1f40c0ff, 0x0a370d09, 0x40273e82, 0x8f370e09, 0x440daf0d, + 0x01210e7d, 0x069f52b8, 0x9d450882, 0x45088205, 0x0882059d, 0x25069d45, 0x09090c01, 0x0f825502, 0x6005af49, 0xe2210b0b, 0x209383b6, 0x0b964501, + 0x2b2bed23, 0x6a41185d, 0x05a15509, 0x80442b20, 0x12046007, 0xfc2f0434, 0x2602bc8a, 0x04af87bc, 0x0345fc5d, 0xfe45fcbb, 0x05600052, 0x041f3d06, + 0x0116005d, 0x0c164001, 0x2c061c06, 0x040e7506, 0x3f110902, 0x15000505, 0x14000509, 0x78498882, 0x5ff62008, 0x012b05b3, 0x100a001a, 0x00550210, + 0x5de6ffb8, 0x00210528, 0x06f3471a, 0x1140fa24, 0x42180c0c, 0x1820083e, 0x20068949, 0x067949f2, 0xcc460c20, 0x45192008, 0x182505ab, 0x0a01183f, + 0x2131830c, 0x2b830a0a, 0x091a0a22, 0x82073860, 0x058d5508, 0xfe220882, 0x5f831140, 0x83060921, 0x0e092529, 0x55020b0b, 0x32831e84, 0x0d967118, + 0x0c0c1026, 0x1e095506, 0x09245d84, 0x09020910, 0x55075b5d, 0x0e820e81, 0x2b2bfd22, 0x20156060, 0x0e5d6035, 0xbc1f2408, 0xb462a65b, 0x1a10bcbe, + 0x45545e1a, 0x01bc3ca2, 0xb1221cad, 0xfe9601a7, 0x256540ca, 0x121b2624, 0x48001d02, 0x06320501, 0x005d0449, 0x40e2000b, 0x02060a0a, 0x3f040805, + 0x9f820801, 0x82053f41, 0x41f82008, 0x0920053f, 0x20093f41, 0x063f41f6, 0x3f410420, 0x40f22206, 0x05c94a2a, 0x0023da83, 0x830c08ca, 0x080821f1, + 0x08230d83, 0x8404051a, 0x068c680e, 0xb8011a25, 0x75b4f0ff, 0xfc22069f, 0x41830b40, 0x0b140125, 0x8355020b, 0x83b62018, 0xca012532, 0xeaffb805, + 0x08822384, 0x2240f222, 0x05212383, 0x2153830e, 0x29830005, 0xa005802b, 0x05050205, 0x0d0f0c0d, 0x0a796020, 0x79605d20, 0x2b2b2609, 0x2b2bfd10, + 0x251083f4, 0x2b2bed2b, 0x7f603f00, 0x49062612, 0x01bc70fa, 0x420283ae, 0x0322075d, 0xa74300bb, 0xd0063805, 0x0f005d04, 0x1040ef00, 0x0502060a, + 0x3f04080c, 0x0d0e0801, 0x410000c9, 0xe0701417, 0x06174108, 0x44040c21, 0x174106f5, 0x0e0c2106, 0x0c20d683, 0x204f1741, 0x21658324, 0x17410a05, + 0x0590300b, 0x050305a0, 0x0f101105, 0x3f111f11, 0x52116f11, 0x194105e1, 0x2f392519, 0x3f2f00ed, 0x23179b60, 0x98fa2106, 0x43062241, 0x86430982, + 0x00023a06, 0x0400000a, 0x005d04c4, 0x0021000e, 0x0d75b5ba, 0x1b3d0701, 0x40c0ffb8, 0x38978314, 0x1b9f1b4f, 0x161b1b02, 0x05193f18, 0x0f163d08, + 0x40f0ffb8, 0x370b091f, 0x0d1c421b, 0x100a1628, 0x16550210, 0x1a7b0f1e, 0xb4f22105, 0x2006ba60, 0x05954bfe, 0x0b0a1623, 0x221e820b, 0x5ae2ffb8, + 0x1621051f, 0x1181791c, 0x0c0c1a25, 0x79165506, 0x1b2f0881, 0x0f238f0f, 0x2f231f23, 0x2f190323, 0x79f6105d, 0xfd240d05, 0x2b322b2b, 0x2507ae60, + 0x31ed2b5d, 0x2b5e5d30, 0x11232106, 0x2a062a48, 0x06070614, 0x11212306, 0x82213521, 0x163f0812, 0x04161617, 0x2a282302, 0xacb0646b, 0x29286e64, + 0x3841c225, 0xfe769642, 0x02b8fe55, 0x8b7ef404, 0x013a3a45, 0x184d3357, 0x84fe0a19, 0x471a1811, 0x2984513a, 0xb8032a32, 0x1a4dfea5, 0x58862b33, + 0x05230579, 0x605d04a2, 0x012d05ad, 0x0520b517, 0x193d0723, 0x40c0ffb8, 0x08ed8315, 0x9f194f24, 0x19190219, 0x08051716, 0x0079163d, 0xffb80f01, + 0x090f40f0, 0x1b00370b, 0x0f600f50, 0x0f030f70, 0x474e230f, 0x43088307, 0x232b058e, 0x0b0e221a, 0x2255020b, 0x43eeffb8, 0x2223058e, 0x840c0c26, + 0x43fe200f, 0x22230556, 0x84090919, 0x055e7c0f, 0x3b4e2882, 0x31318405, 0x06090920, 0x25922255, 0x2530250f, 0x25702540, 0x98411904, 0x430c2006, + 0x162005b5, 0x8207fd45, 0x05fd4508, 0xfd450882, 0x83088205, 0x55022148, 0xec210882, 0x109041b4, 0x0c0cb626, 0x88165506, 0x4b09d060, 0x2b200d8b, + 0x2f230e83, 0x5f2bed5d, 0x5d2407ae, 0x3f2fed2b, 0x41083862, 0x33201086, 0x25068441, 0x23113313, 0x88416903, 0x41bc2013, 0xbb220585, 0x8841bcbc, + 0x5d042112, 0x23058741, 0xa3fbb102, 0x20068752, 0x068b4135, 0x41b2a021, 0x1d2d2086, 0x00370b09, 0x218f0f1b, 0x212f210f, 0x35224102, 0x2241e420, + 0x0fc56007, 0xc5608820, 0x06224109, 0x410c1441, 0x03282112, 0x2a282373, 0xb6ba646b, 0x220b9742, 0x42febc4b, 0x0b411794, 0x01003e07, 0xe7ff5300, + 0x7704f603, 0x9c002100, 0x420432b5, 0xb8100204, 0x0940d6ff, 0x15370d0b, 0x2004822a, 0x250d831d, 0x37100b22, 0x04822a08, 0x133d123e, 0x1b1f0613, + 0x1f3e171b, 0x010a9f04, 0x3e0e0a0a, 0x1c140906, 0xb8031a11, 0x0db4f4ff, 0x4805725c, 0x11820598, 0x2240e839, 0x55020909, 0x23239003, 0x370d0940, + 0x3f132f1c, 0x03134f13, 0x56131c13, 0x092b0614, 0x2f09370c, 0x33335d2b, 0x502f5d2f, 0xed220589, 0x11563911, 0x62112009, 0x2b2005e3, 0x5d270082, + 0x15161601, 0x60210010, 0x21250ab6, 0x26262135, 0x09fe5523, 0x5d034f08, 0xc9fe5049, 0xbf66fcfe, 0xc63c0d43, 0x0cc49d6d, 0x3302ccfd, 0x5b8ebe14, + 0x3f0d57b4, 0xc87c67c2, 0xd246ed03, 0xfeeafe90, 0xce1b30b8, 0xbac0492f, 0x3d9f9e97, 0x3a19ce43, 0x02000044, 0xe1ffb900, 0x7c044c06, 0x1e000b00, + 0x09b64401, 0xcc850c18, 0x3140e822, 0x3a2a0983, 0x4a093503, 0x04094503, 0xa3603e0c, 0x163f3506, 0x09051004, 0x0f0a1c3f, 0x06061913, 0x55020c0c, + 0x200c1a06, 0x2006df76, 0x058743fc, 0x450c0c21, 0xea2106fe, 0x3c2083b4, 0xfcffb80c, 0x0b0b1340, 0x0c0c5502, 0x55020909, 0x0c010c2f, 0x1b000f0c, + 0xf6ffb819, 0x823983b4, 0xb4e62508, 0x55020f0f, 0xfc210882, 0x843b83b4, 0x06b36011, 0x60b4d621, 0xf82206ce, 0x3e831c40, 0x20901928, 0x203f202f, + 0x86181202, 0x0f200d05, 0x1807af43, 0x83240186, 0x5506216f, 0x1819b860, 0x430cb48b, 0xba600cbf, 0x122b220b, 0x0cbb6039, 0x312b2b25, 0x4b340130, + 0x2520096e, 0x0806bc60, 0x33243663, 0x10110032, 0x00222300, 0x93a68a05, 0x92a8a199, 0xd3fca792, 0xedbcbce8, 0xc7110119, 0xfe1201e7, 0xfedeebf2, + 0xd72e02f5, 0xd4cddfd5, 0xfea2d5d7, 0xfe5d0406, 0xfefde73b, 0xfeeefec4, 0x01c2fef1, 0x00020020, 0x04000043, 0x005d0413, 0x001f0010, 0x1c72b3de, + 0xffb80401, 0x093c40e8, 0x04033710, 0x05a060b4, 0x033c2e08, 0x3d120003, 0x0500050f, 0x09190909, 0x0c0c1902, 0x1955020c, 0x0109701b, 0x03060409, + 0x050a0409, 0x054a051a, 0x0580055a, 0x05060590, 0x0cc34f12, 0x4f134021, 0x0a2806c4, 0x55021010, 0x0b0b1400, 0xb8220582, 0xd441eaff, 0x00002205, + 0x059f5309, 0x21069946, 0xfb481e00, 0x0f0b2608, 0x0055060f, 0x0f9f530e, 0x0a40f624, 0x18820909, 0x0f219224, 0x9f600121, 0x2b2b210d, 0x4505a160, + 0xa0600505, 0x60ed2005, 0x0124099e, 0x1123215d, 0x6005595a, 0x3b5f099e, 0x043a080c, 0xfeddbc13, 0x7801dda6, 0x3d508691, 0x015c9c3c, 0x4dedbcae, + 0x25272844, 0x6a252417, 0xfebb0141, 0x28cd0145, 0x7c5986a5, 0xfd1b2627, 0x0a7801f2, 0x2c4b1616, 0x1d1e4437, 0xad5bff15, 0x18052006, 0x2709b394, + 0x0000f98e, 0x030d4014, 0x10d90f19, 0x0001003d, 0x046dfe13, 0x00140662, 0x40210135, 0x1e1c0530, 0x59281e26, 0x72056905, 0x1817061d, 0x340dbb8e, + 0x2a2a3e2f, 0x150d2a01, 0x6f2e5f0f, 0x032e7f2e, 0x000d2e2e, 0x062151b8, 0xb6280883, 0x55020c0c, 0xb8211a00, 0x8206d949, 0x40fc2a08, 0x020b0b11, + 0x0f042155, 0x2205820f, 0x8209090c, 0xffb82305, 0x0886b4fc, 0x2740fe24, 0x12820d0d, 0x39832220, 0x37912126, 0x3760371f, 0x42af8e18, 0x0fb4ec27, + 0x0d55060f, 0x065466b8, 0x26510883, 0x0a0d2305, 0x18820909, 0x51368821, 0x8e180a26, 0xed3210af, 0x39122b2b, 0x2f2f5d2f, 0x5d2f2f00, 0xed3f3fed, + 0x0f823912, 0x3939ed27, 0x005d3031, 0xb66c1826, 0x23112309, 0x8e182311, 0x25080db2, 0x15161417, 0x06070614, 0x06060702, 0x27222223, 0x36323335, + 0x35363613, 0x0101a503, 0x1a191301, 0xac504659, 0x8e18bc4c, 0x230807cb, 0xbbb162c1, 0x01020303, 0x46475403, 0x18176ab9, 0x9cbb442a, 0x02010109, + 0x502b4b06, 0x292b2980, 0xbefc3a4d, 0x09e08e18, 0x2fc9de38, 0x703a4b6b, 0xfffeb03a, 0x024e5050, 0x5001f69e, 0x002e4b22, 0x575fffff, 0x82063905, + 0x0b022602, 0x06010000, 0xf69a8d00, 0x01b60a00, 0x04070900, 0x352b2505, 0x2f05c951, 0x77040a04, 0x7c002100, 0x4b0a3bb5, 0xb81b020a, 0x25060946, + 0x0d0b2a16, 0x0d830e37, 0x100b4025, 0x822a0137, 0x19200804, 0x0318183d, 0x1410100c, 0x21040c3e, 0x033e1d21, 0x30182009, 0x03184018, 0x10181718, + 0x8e001a03, 0x2b05f345, 0x0c091a1a, 0x55020d0b, 0x09091c09, 0xba510582, 0x2bed2705, 0x1711e610, 0xa2662f39, 0x31ed230d, 0x00822b30, 0x0817c151, + 0x15210755, 0x33161621, 0x33373632, 0x9f4e0a04, 0x4cd17d7b, 0x2b01524c, 0xbb680d01, 0xc2400c45, 0x19c78f65, 0xc1fd3c02, 0x6ca4c40a, 0x300c3ebd, + 0x48472920, 0x0192dc49, 0x36450105, 0x4e32cb20, 0xb297a19c, 0x003244c8, 0x6e00ffff, 0xd703e5ff, 0x06027804, 0x83005600, 0x00af260f, 0x05830100, + 0x200f82db, 0x180f844c, 0x250ec349, 0x59fec2ff, 0x1f841502, 0x00004d35, 0x1d000200, 0xf406feff, 0x0e005d04, 0x09013d00, 0x573000b9, 0x1e2a05f3, + 0xb5c0ffb8, 0x0737100d, 0x0982373d, 0x0d1c4022, 0x4f31f582, 0x02379f37, 0x18163737, 0x2805353e, 0x243f2c28, 0x09d74909, 0x0b091324, 0x78183737, + 0x162b0d29, 0x40f6ffb8, 0x0210100b, 0x4a0e1655, 0xee2406fd, 0x0c0c1d40, 0x06220f82, 0x05820b0b, 0x09090e22, 0x14280582, 0x55060f0f, 0x0d0d0616, + 0xb8250582, 0x0cb4e2ff, 0x2008840c, 0x056544ec, 0x3516162a, 0xb80f1b00, 0x2d40f4ff, 0x892a3983, 0x8f0f010f, 0x013f0f3f, 0x0e830c18, 0x83081821, + 0xc9182e42, 0x35303520, 0x0f223502, 0x3555020f, 0x245b830c, 0xeeffb835, 0x221b83b6, 0x74283535, 0x5d2805c0, 0x5d2b2bed, 0x2b5df410, 0x270c374b, + 0x322b2bfd, 0x2f005d2b, 0x09224618, 0xed2b5d27, 0x2b2b3031, 0x07687a00, 0x20053d4b, 0x083c4b37, 0x2108fb63, 0x42580606, 0x06d34912, 0x49320621, + 0xe7200acf, 0x5807574b, 0xed491e5b, 0x20012205, 0x09744b37, 0x734b8120, 0x16745805, 0x2005004a, 0x05fd4900, 0x2b06c341, 0xb4310127, 0x3d071e17, + 0xc0ffb821, 0x2b051468, 0x219f214f, 0x16212102, 0x1a05201c, 0x250a884b, 0x370b0926, 0x1b4b1e21, 0x100a280e, 0x16550210, 0x820f0f24, 0x41162005, + 0xf62006b3, 0x23054350, 0x0b0b0c16, 0x1a201582, 0x200f164b, 0x10b041ec, 0xb0411a20, 0x41212006, 0x292808b0, 0x292f290f, 0x1d03294f, 0x2706b746, + 0x0209090c, 0x1a1a1955, 0x8207da47, 0x058a4b08, 0x8a4b0882, 0x20088205, 0x05294df6, 0x2c841a20, 0x88510f82, 0x5b088205, 0x08820538, 0xdf44ee20, + 0x041a2805, 0x55060909, 0x7728881a, 0x2b280cbf, 0xf6105d32, 0x11ed2b5d, 0x25098d51, 0x2b2bed2b, 0xee413939, 0x06625805, 0x3939ed22, 0x21198e4a, + 0x46181121, 0x3325072d, 0x16171632, 0x0cd54116, 0x25082e4d, 0xbcbcf3fd, 0xab4b0d02, 0x12a84b06, 0xfd100229, 0xfe5d04f0, 0x41b3014d, 0x012307af, + 0x18001300, 0x5e743395, 0xf9591121, 0x20912405, 0x1860201f, 0x18433395, 0x2019a985, 0x05834608, 0x460b376a, 0x2b251083, 0x2bed2b2b, 0x3395182b, + 0xffff2160, 0x08052b5e, 0x0282062d, 0x00120226, 0x00060100, 0x00f6f98d, 0x1d01b11b, 0x40c0ffb8, 0x0210090f, 0x401d0055, 0x1d00021d, 0x2511061c, + 0x352b5d2b, 0x56020000, 0x5508058f, 0x07001506, 0xbd001500, 0x06044c40, 0x06440634, 0x06600650, 0x09060670, 0x19050703, 0x46051703, 0x58034901, + 0x79015700, 0x07020903, 0x0001001a, 0x03041a05, 0x46004904, 0x0f080204, 0x0e0e010e, 0x0b0b5012, 0x04020300, 0x150c0205, 0x0b4008c9, 0x0f08370e, + 0x76830ec9, 0x0b821120, 0x0e080e2d, 0x01680204, 0x03020101, 0x83000403, 0x09223715, 0x000c3710, 0x004a001c, 0x007a006a, 0x178d0005, 0x0301170f, + 0x22191304, 0x162009cf, 0x0c1f5b18, 0x39391122, 0x27055276, 0x123f3f00, 0x2f333939, 0x2406675f, 0x10875d01, 0x2d0282fd, 0x005d01c0, 0x2301015d, + 0x01330113, 0x46181301, 0x7f2c0d8a, 0xd0c974fd, 0x01cc43fe, 0x085a0157, 0x2b0c715f, 0x07fa5d04, 0x2704d201, 0x3c03c4fc, 0x080c735f, 0xf4feb92a, + 0x5d046004, 0x02010b00, 0x060a0f40, 0x01032005, 0x003e0803, 0xc9020805, 0xf8ffb803, 0x10100f40, 0x033f5502, 0x037f034f, 0x05200082, 0x260b6452, + 0x0909b6f4, 0x5a095502, 0xec21325a, 0x065a5a40, 0x23067b5b, 0x020c0c0c, 0x07495818, 0x184f5a5a, 0x210c7f46, 0x5a5a2b2b, 0x39122b0c, 0xed2b5d2f, + 0xed333f00, 0xe5755d2f, 0x11232306, 0x7d5b1121, 0xfe410806, 0x83feae84, 0xbc2f02bc, 0x0c01f4fe, 0x44fc5d04, 0x0000bc03, 0x00c80001, 0x078a0400, + 0x0007006b, 0x0600b9b9, 0x1340c0ff, 0x0637100d, 0x03350006, 0x13050203, 0x10100c06, 0xb8065502, 0x0fb4f2ff, 0x4508840f, 0x1184050e, 0x840b0b21, + 0x40f02411, 0x8209090a, 0x09062409, 0x18021401, 0x452d6f47, 0x02210551, 0x6d471814, 0x45e6200f, 0x02200548, 0x06225882, 0x6c180255, 0x69670ed1, + 0x2f002a08, 0x2f33ed3f, 0x0130312b, 0x2fe78511, 0x03c68e01, 0x2105ba08, 0xd105dffa, 0xb6fd9a01, 0xb926df83, 0xbb030000, 0xdf82ce05, 0xdf85bd20, + 0x840e0d21, 0x033f25df, 0xc9050205, 0xf020c782, 0x21054659, 0xe0840c06, 0x0c0c1222, 0xce6bd484, 0x201e8205, 0x050c4eee, 0x0106702a, 0x0f090606, + 0x0c010109, 0x8d572183, 0x821a2006, 0xb4de25ef, 0x55021010, 0xe4210882, 0x824183b4, 0x055b5308, 0xf6200882, 0x0c22df86, 0x21840909, 0x1805114b, + 0x20125648, 0x0a315c87, 0x2b2bed23, 0x3e45185d, 0x91ed2008, 0xbc7524e3, 0x69ae5402, 0x0123052a, 0x83eafd71, 0x02cb33e3, 0x0235073c, 0x000300dc, + 0x5401b611, 0x05000002, 0x42822f01, 0x2f006a08, 0x013031ed, 0x07213521, 0x0696f935, 0xa03c026a, 0xc8000400, 0xb9080000, 0x0900ed05, 0x21001500, + 0x80012500, 0x07083e40, 0x013a0718, 0x06440149, 0x01580746, 0x07560654, 0x0660016f, 0x0670017f, 0x060d090d, 0x160d1913, 0x75197a13, 0x5325061f, + 0x224f223f, 0x1f222202, 0x37141240, 0x0d30511f, 0x190d0d01, 0x40c0ffb8, 0x3f0f8224, 0x02135119, 0x07080302, 0x03060104, 0x0f220001, 0x22230223, + 0x1c0a2223, 0x0a1010c9, 0x02010600, 0x0c298d18, 0x0c0cb424, 0x11825502, 0x1f40fe24, 0x09820f0f, 0x31581320, 0x0b0a2606, 0x0055020b, 0x21138308, + 0xa7611000, 0x0d0a210e, 0x0d425918, 0x074e0e20, 0x40e23006, 0x060c0c2d, 0x04000055, 0x0a0ac916, 0x83080227, 0x0c022137, 0x02216183, 0x21338304, + 0x4f830402, 0x18130221, 0x532b6b42, 0x042805d8, 0x060f0f1a, 0xffb80455, 0x8205e247, 0x05457408, 0xdc180420, 0xed210c1d, 0x2200822b, 0x6c2f3311, + 0x0e820809, 0x18fd2b21, 0x8308ff40, 0x2f392f17, 0x2f005d2f, 0x3917123f, 0x332bed3f, 0x04855d2f, 0x30315d3b, 0x23215d01, 0x11231101, 0x33110121, + 0x23061401, 0x34352622, 0x16323336, 0x0add4f07, 0x21014508, 0xff042115, 0xb472fdf5, 0x50023301, 0xbdba03b4, 0xbebab6b2, 0xb2bab5b2, 0x57676558, + 0x58656757, 0xb80162fe, 0x340548fe, 0xd105ccfa, 0xc00440fb, 0xdae063fe, 0xdae0dfda, 0x88acdddc, 0x87adad88, 0x9ee8fd87, 0x5f0a8360, 0x0a20475b, + 0x5f08af59, 0x003ca25b, 0x02190101, 0x058f0235, 0x000800d5, 0x03114021, 0x07040450, 0x030e0103, 0x032a0007, 0x013f1c82, 0xed335d2f, 0x3f002f39, + 0xed2f333f, 0x23013031, 0x32352311, 0x02333736, 0x66d1a58f, 0x8289097e, 0xa93a083b, 0x00562c75, 0xef000100, 0x9f033d02, 0x1d00ed05, 0x00b94300, + 0x40e0ff11, 0x37100d25, 0x520b0f0f, 0x1c020213, 0x000e0151, 0x08011c00, 0x3616262a, 0x76166616, 0x0f160416, 0x60860f16, 0x2f2f3338, 0x3912ed5d, + 0x3f002f33, 0xed3f32fd, 0x30312f33, 0x3521012b, 0x70693636, 0x0a6e5305, 0x14153a08, 0x06060706, 0x9f032107, 0x865b50fd, 0x58406d27, 0x298f464c, + 0x4d97410f, 0x6a52a99d, 0x01378d31, 0x943d02f2, 0x67256845, 0x4a46526d, 0x1bb3203c, 0x5d7a9e22, 0x6a2b5e94, 0x24a18229, 0x031c02e6, 0x34a18273, + 0x4074002e, 0x6c096c0f, 0x7e097e22, 0x0c550422, 0x26021f5a, 0x36b082b8, 0x370e0b3b, 0x0d0b2003, 0x152b2c37, 0x01160f51, 0x161f160f, 0x185f164f, + 0x280957d8, 0x25061651, 0x0e0a0a02, 0x57d81851, 0x00002e0e, 0x2f332f09, 0xed391712, 0xed2f2f2f, 0x22c28300, 0x8239123f, 0x5d2f24c8, 0x6a39ed71, + 0x5d21065c, 0x20bc8401, 0x094d5423, 0x26343523, 0x22471823, 0x08e48e07, 0x16161551, 0x303c7303, 0x524f7b35, 0x2511418f, 0x6e544f9a, 0x7d8c5b64, + 0x57525f57, 0x11259942, 0x984f9640, 0x504d61aa, 0x473a0375, 0x20252270, 0x23af1c1e, 0x5348493b, 0x424c8b3b, 0x233e473c, 0x8c221baf, 0x1a715762, + 0x006d1008, 0x02b30002, 0x82bd033d, 0x0a2408f7, 0x3a000d00, 0x066d1e40, 0x0602067e, 0x510d0109, 0x03050c05, 0x0e030207, 0x040b0700, 0x0d00092a, + 0x06010106, 0x3926c883, 0x39fd3333, 0x9d482f39, 0x822f2005, 0x322e08c1, 0x5d013031, 0x23152301, 0x01352135, 0x21331133, 0xbd030111, 0x2ffe96a3, + 0xa395d201, 0x9ffecbfe, 0xdcdc1903, 0xfd1b02b9, 0xfe9001b1, 0x6b410070, 0x05753806, 0x002a00da, 0x6f174048, 0x02087f08, 0x511a1d1d, 0x21062525, + 0x41031e51, 0x00310542, 0x40eaffb8, 0x370c090f, 0x1e29211f, 0x14091e1f, 0x0547412a, 0x8212ed21, 0x2fed227b, 0x0547412b, 0x2f230d82, 0x5f2f32fd, + 0x48180c7c, 0x58081068, 0x11070622, 0x15211521, 0x32333636, 0x16161716, 0x2f327503, 0x4e578830, 0x25103c95, 0x522c4e92, 0x1f171d1c, 0x35591e1d, + 0x02266c3b, 0x1448fe55, 0x76540e31, 0x033c3734, 0x2a7a4563, 0x1a1c332b, 0x1736149f, 0x27431d1c, 0x1514392a, 0x01060e11, 0x02cf8bf0, 0x24221702, + 0x24c9826f, 0x033502f3, 0x08c982a5, 0x41000635, 0x01562540, 0x00010301, 0x02022a01, 0x73006303, 0x00000200, 0x03055103, 0x00030e02, 0x10091002, + 0x04020237, 0x2f040000, 0x39122f33, 0x39122b2f, 0x843f3f00, 0x017008ba, 0xed10875d, 0x5d01c087, 0x01230101, 0x03213521, 0xb92afea5, 0xedfdf001, + 0x4e05b202, 0x1a03e7fc, 0x0003008b, 0x031b02c5, 0x00ee0591, 0x00280019, 0x405d0037, 0x0f0b0f42, 0x1f0b1f15, 0x2a022a15, 0x39023904, 0x582b4904, + 0x250f0a2b, 0x1026251f, 0x2f041036, 0x04162609, 0x10511d03, 0x03513502, 0x132a1a0f, 0x290d2a20, 0x130d092a, 0x70060416, 0x002db682, 0x2f062a32, + 0x5d2f33ed, 0xed391712, 0x2401822f, 0x3fed3f00, 0x200c82ed, 0x054a415d, 0x22055445, 0x45263537, 0x8671065b, 0x05af6009, 0x16161725, 0x71363617, + 0x27220586, 0xc1600606, 0x03730805, 0xa79bcb91, 0x52595ebf, 0x9590b946, 0x615250b5, 0x4f57be5b, 0x2d305d46, 0x392e4817, 0x42371826, 0x3a2a5817, + 0x51507638, 0x7935036d, 0x4f789fa1, 0x29042678, 0x8d6a4764, 0x7d3f6887, 0x6b270423, 0x48336401, 0x3d26363f, 0x0b1f0a14, 0x79fe4f25, 0x0a1e3b32, + 0x5d200f1c, 0x4e5f4a30, 0x73000200, 0x8b06e1ff, 0x2800f005, 0xd6003400, 0x011878b3, 0x48ffb815, 0x0931068a, 0x02101010, 0x09181555, 0x0955020a, + 0x40e8ffb8, 0x3009830a, 0x15790976, 0xffb81b02, 0x092f40c0, 0x691b3710, 0x08f9824f, 0x03022324, 0x090a091a, 0x091a1505, 0x095a1515, 0x2c061555, + 0x32021534, 0x220a0934, 0x1526291e, 0x0f03001b, 0xf8781529, 0xb4e6230b, 0xf8780909, 0x40f0240d, 0x820d0d2d, 0x0f363112, 0x80361f36, 0xbf369036, + 0x0636cf36, 0x2f01360f, 0x146cbe18, 0xf610352a, 0xed2b2b2b, 0xd6105d5d, 0x2b360782, 0x391712ed, 0x00c4fdd4, 0xed3fed3f, 0x3939125d, 0xed5ddd3f, + 0x19835d2b, 0x5d303127, 0x15161601, 0x05855314, 0x0db55818, 0x17161622, 0x21056e6e, 0x22833335, 0x77010621, 0x8b080a87, 0x1a1fa105, 0xfb5c5963, + 0xfffe9da1, 0x60615a5a, 0x0501585c, 0x59ffa09a, 0x4f141918, 0xa00c1643, 0xfe780b0d, 0xe1fcfef9, 0x01fdfee3, 0x01dede08, 0x58490407, 0xfeb863a6, + 0x666561dd, 0x01636368, 0x01b6b920, 0x68626721, 0x211b6169, 0x44400421, 0x09175b24, 0x6c32462f, 0x018dfe82, 0xfe3b0122, 0xfedefec5, 0x01c9fedb, + 0x00020037, 0x04e1ff6a, 0x008405c3, 0x0029001d, 0x1a0c40c9, 0x370c0920, 0x0d0c1827, 0xb8215502, 0x2c40e8ff, 0x2d080983, 0x2735213a, 0x2745214a, + 0x691b1504, 0x0300050d, 0x04093f21, 0x0a033f27, 0x18291014, 0x031b0c09, 0x0c402b06, 0x1e55020c, 0xb4f8ffb8, 0x08840909, 0x84b6f421, 0x181b2011, + 0x260d6b6b, 0x0210103f, 0x83180055, 0x90002d1a, 0x1f2b0f2b, 0x6f2b3f2b, 0x0424042b, 0x24213583, 0x2917830c, 0x16061b24, 0x55020b0b, 0x13831806, + 0x83080621, 0x04062213, 0x258f820d, 0x102a8506, 0xa4602bf6, 0x82ed200b, 0x1712230c, 0x7c41dc39, 0x39122a06, 0x5dcdfd3f, 0x30312b2b, 0x0a4d412b, + 0x33171626, 0x34353632, 0x24058b7a, 0x07061415, 0x0c584816, 0x71042c08, 0xedebe8fe, 0x1701e9fe, 0x2b6033ed, 0x164a5a5d, 0x0b0da00c, 0x48456c73, + 0x9997aac2, 0x9698aaa9, 0xfe2e02ab, 0x01c4feef, 0x8211013c, 0x0f3d2401, 0x41474110, 0x4b080650, 0x4d14806a, 0xd3d98bd9, 0xd9d2d9d3, 0x000100d7, + 0x06e1ffb2, 0x00f80675, 0x40f3002b, 0x09202a29, 0x2b25370f, 0x0d031c6a, 0x39152603, 0x76064906, 0x34150415, 0x20240a06, 0x01280f29, 0x00141b28, + 0x02101002, 0xffb80055, 0x0f0fb4ea, 0xf8200884, 0x2105a456, 0xfb830c00, 0x83160021, 0x221e82fb, 0x832c40f2, 0x0a0029ff, 0x55060f0f, 0x0d0d1400, + 0x0c210583, 0x2205820c, 0x8209090a, 0x0f2d2f05, 0x6f2d402d, 0x902d7f2d, 0x140f052d, 0x8f18b80c, 0xa259325b, 0x213a8205, 0x5e83b4f6, 0xb6200883, + 0x0c226183, 0xc0512c6b, 0x5ded230a, 0x5718de10, 0xed2e09f9, 0xc4fd5dd4, 0x5ded3f00, 0xc4fd3f3f, 0x6c183031, 0x1f620dc4, 0x3636230b, 0x83411135, + 0x0523380d, 0x4d514729, 0xd08c89ce, 0xc6475147, 0x972c2721, 0x2d966b6a, 0x41d82127, 0xac28067e, 0xa25602a0, 0x464c50f1, 0x141a6319, 0x08087f41, + 0x00848334, 0xb1000100, 0xa505e1ff, 0x25008405, 0x23402001, 0x0719060b, 0x2303077a, 0x37100920, 0x156a241e, 0x09050205, 0x05421105, 0x191d010a, + 0x01210f29, 0x6b6a1421, 0x0a40280c, 0x55020c0c, 0x82401a02, 0xffb82647, 0x102340ee, 0x087b4b10, 0x09090822, 0x64180b82, 0x80410bba, 0xffb82405, + 0x410b40ec, 0xb83c0a84, 0x2540faff, 0x55060909, 0x270f2700, 0x5f02276f, 0xa0279027, 0xef27c027, 0x0c0b0527, 0x0b214383, 0x2164830c, 0x8f181a0b, + 0x67182f43, 0x87211d6b, 0x0b994126, 0x5d2b2b23, 0x058e4471, 0x00832b20, 0x2bed712f, 0x5dd4322b, 0x2f00c4fd, 0x123fed3f, 0x05a14139, 0x23215d27, + 0x23060635, 0x1c441822, 0x0c1f430f, 0x04232333, 0xae5fbc57, 0xbcc4b069, 0x561b1a10, 0x4bad4952, 0x099641d0, 0x11418f18, 0x080d8d41, 0x0544fd46, + 0x067dfe11, 0x0016008c, 0xbf294042, 0x06030103, 0x500c0506, 0x01056014, 0xc0ad0405, 0x0205d005, 0x0d094005, 0x11050537, 0x14114009, 0x0f290937, + 0x11000100, 0xed5ddd2f, 0x2f39122b, 0x00ed5d2b, 0xedd45d2f, 0xc52e0a82, 0x0130315d, 0x15070614, 0x36363523, 0x865d3435, 0xfe3e080b, 0x6e42427d, + 0x2126302f, 0x0318251f, 0x51264913, 0x40f80566, 0x7944154e, 0x1827270c, 0x69090927, 0x00560c06, 0x17fd0100, 0xebfd82fe, 0x030045ff, 0x09401300, + 0x028f4401, 0x15000201, 0x62832f01, 0x5c82ed20, 0x33352331, 0xd4d4ebfd, 0xffc382fe, 0x057cfcff, 0x8222fe16, 0x00072ab7, 0x0028fb43, 0xfdffff00, + 0x20118209, 0x2c1184af, 0x00ecfa8d, 0x01020000, 0x05110536, 0x2f118214, 0x000a0006, 0x0600b94d, 0x1040f0ff, 0x0537100e, 0x082c0483, 0x08070102, + 0xb8050304, 0x1140c0ff, 0x05211483, 0x27fc8260, 0x07700760, 0x00090702, 0xb5201582, 0x2d481482, 0xd62b2305, 0xe5825dcd, 0x2b2f3326, 0x2f391712, + 0x2b298882, 0x0323012b, 0x33132303, 0x08048221, 0x9fe10321, 0xe49bb8b9, 0xda1702e3, 0x11057c81, 0x00ff0001, 0xf6fe7b01, 0x00000a01, 0x05030002, + 0x86e10311, 0x914a2081, 0x09082181, 0x18208186, 0x00298188, 0x097f096f, 0x04070902, 0x23128240, 0x332f0400, 0x2f207d83, 0x85827e95, 0x7e873320, + 0x8161fe24, 0x7e8cdfda, 0x0429ff84, 0x005207c0, 0x001d0006, 0x207d858e, 0x29ff8712, 0x0a010abf, 0x130c0d0d, 0xeb821b50, 0x820b4021, 0x0c1b2516, + 0x030c0102, 0x20051141, 0x088f882a, 0xc0ad0b20, 0x020cd00c, 0x1009400c, 0x180c0c37, 0x14114010, 0x0f291037, 0x18070107, 0x37100c40, 0x3e830018, + 0x100e0930, 0x60000037, 0x2f040104, 0x2b2f335d, 0x1e422bd4, 0x0638410c, 0x422bd421, 0x40410826, 0x42252008, 0xd4871530, 0x42c30121, 0x60411038, + 0x42322006, 0x0228113f, 0x11052501, 0xde07f303, 0x2022ef82, 0xef856400, 0xef872020, 0x52100735, 0x171f170f, 0x170317a0, 0x0a521d14, 0x37110d40, + 0x4102010a, 0x20260fff, 0x13000729, 0xd4831429, 0x7f41b420, 0x2fed2308, 0x8041edd6, 0x39392506, 0x3ced2bd6, 0x3c20dd82, 0x540b0642, 0x7a600603, + 0x07e54a06, 0x36323323, 0x39c88737, 0x5f8606f6, 0x181c4935, 0x222b193a, 0x87058c05, 0x1c49365f, 0x2a193b16, 0xb2410424, 0x01520807, 0x29908952, + 0x3e2d1619, 0x2a918847, 0x3e2e1419, 0x02000047, 0xe7044201, 0xfb06d503, 0x11000d00, 0x25403c00, 0x0f401011, 0x0010371a, 0xaa0a0610, 0x0301033f, + 0x0e700e60, 0x0d100e02, 0x000f102a, 0x008f001f, 0x2a070003, 0xd4ed2f06, 0x2fed395d, 0xb3825dcd, 0x39cded26, 0xcd2b2f39, 0xa74fac82, 0x14332205, + 0x08968216, 0x03373522, 0xd5031323, 0xb29798b2, 0x535255a2, 0x81da5e55, 0xa346067c, 0x7ca3bcbc, 0xb57c6464, 0x0a01f6fe, 0x10227b91, 0x7b82400f, + 0x0f000f22, 0x6f297b86, 0x02107f10, 0x2a0d0e10, 0x237bad0e, 0x33032307, 0x52237b8a, 0x89dfda81, 0x8955207b, 0x1e072179, 0x2435f582, 0x40406300, + 0x13141411, 0x01220f1a, 0x09401322, 0x0013371a, 0x20818613, 0x340f8212, 0x13133710, 0x1f101f00, 0x1f031f20, 0x0e502817, 0x0e700e60, 0x27949503, + 0x5dcded5d, 0xcd2b2f39, 0x26081641, 0x12cd5dd4, 0x41c52f39, 0x27200f1c, 0x41169342, 0x1230092f, 0x275c3737, 0x1c192228, 0x1002141e, 0x5742213c, + 0x5b3bc089, 0x38124334, 0x20210a65, 0x07081d19, 0x450a0657, 0x01020000, 0x03e70425, 0x82de07f3, 0x272308cf, 0x10405800, 0x0f52170e, 0x021e1f1e, + 0x52241b1e, 0x11011120, 0x40c0ffb8, 0x370c0925, 0x06600011, 0x86020670, 0x291a25dd, 0x2927061b, 0x5e41ca82, 0xd4ed250e, 0xedd610ed, 0xdd25c483, + 0x2bd6395d, 0x088e4271, 0x420ce141, 0xc7891a92, 0x9542c020, 0x21d08918, 0x97429801, 0x02012e11, 0x03110509, 0x008c0642, 0x40520016, 0x08354635, + 0x6014502c, 0x03147014, 0x05900914, 0x4146c701, 0x4610200d, 0x5e241d41, 0x5dd45e5d, 0x211e4546, 0x0c444203, 0x12454610, 0x01024108, 0x03540636, + 0x000108e1, 0x00200006, 0x074a407d, 0x02021702, 0x20501d14, 0x100a010a, 0x176f0750, 0x70170f01, 0x01170217, 0x0d400502, 0x09053711, 0x03900320, + 0x03b003a0, 0x03105904, 0x03c00320, 0xd0340282, 0xd0310203, 0x0203e003, 0x0f010350, 0x02037003, 0x07282003, 0x3209e944, 0x00142813, 0xd6332f04, + 0xd62b2fed, 0x5d2f00ed, 0x835e7271, 0xcd5e2402, 0x8239392b, 0xed3c2f0d, 0x3ced71dd, 0x015d3031, 0x23072723, 0x8b413337, 0xe140081a, 0xa5aeafa9, + 0x0becbbf8, 0x49255070, 0x143e1b1c, 0x8606281d, 0x27526f0a, 0x30222143, 0x052b1b1a, 0x59595406, 0x520001ad, 0x0d0d196b, 0x4e2d201a, 0x1010176f, + 0x002a2316, 0x42010200, 0xd5034806, 0x3408e782, 0x0011000d, 0x503e405a, 0x02106010, 0x03ff500a, 0x01035f01, 0x067f0003, 0x100f0601, 0x6f02109f, + 0x0210ff10, 0x01116f10, 0x1170110f, 0x0e591102, 0x0e720e69, 0x1b344403, 0x5ddd712a, 0x3c5dd471, 0xed7271dd, 0x1805d347, 0x200ab8aa, 0x3bd08237, + 0x9eabd503, 0x4ba2ac9e, 0x4f4d5a5d, 0x076881c6, 0x99985838, 0x59583057, 0xd8d8c92f, 0x6426978e, 0x0e503340, 0x978f0e60, 0x0e9f0e29, 0xff0e6f02, + 0x880e020e, 0x10562b97, 0x107d1066, 0x0d0e1003, 0x415a0e2a, 0x370d2105, 0x20105944, 0x06d6442b, 0x0723a19b, 0x8a332723, 0x815623a1, 0xa189dfc6, + 0x41d80f21, 0x243b0d39, 0x62408e00, 0x13141411, 0x01226f1a, 0x2270220f, 0x133f2202, 0x1302134f, 0x44151140, 0x503a0569, 0x01039009, 0x590103b0, + 0x31010370, 0x033f030f, 0x03cf0370, 0x13120304, 0x21820940, 0x1f501327, 0x1f701f60, 0x05824403, 0x401f3029, 0x171f051f, 0x44010ec0, 0xcd231681, + 0x44715dcd, 0x5e250682, 0x715d5e71, 0x059f455e, 0x5d2f7123, 0x2d8a4471, 0x30088041, 0x4d2e2e2e, 0x151c1f23, 0x020e1a19, 0x361b320e, 0x30eb894a, + 0x0f382b61, 0x1e09542f, 0x08161718, 0x08054905, 0x0c9b4139, 0x00272108, 0x1b114092, 0x11df5024, 0x170e1101, 0x011e6f50, 0x1e011e0f, 0x40c0ffb8, + 0x37100d52, 0x0a06001e, 0xb023f983, 0x82f00203, 0x032031fb, 0x03400330, 0x03d003c0, 0x600603e0, 0x02037003, 0x02230b83, 0x8203a031, 0x03503420, + 0x0f0203e0, 0xcf033f03, 0x1a030303, 0x061b1b28, 0x440e2827, 0x3c2312b7, 0x8210ed10, 0x052f4303, 0x72715d22, 0x3226ff85, 0x715d2b2f, 0x31433ced, + 0x47ac1805, 0x0637260d, 0x26222306, 0x13564727, 0x9baed52a, 0x6ca2af9b, 0xa26b3c3c, 0x2a183a43, 0x6a540607, 0x282e5767, 0x43fb2e28, 0x022e103e, + 0x68063601, 0x01081005, 0x1d000600, 0x2b488800, 0x491a2005, 0x40200e1b, 0x0c3d0f82, 0x1b0f5013, 0xffb81b01, 0x0d3a40c0, 0x011b3710, 0x050f0302, + 0x05020570, 0x01030f05, 0x191c4903, 0x60005027, 0x03007000, 0x09154918, 0x495dd421, 0x5d230e14, 0x82393912, 0xc4ed26fc, 0xc52f392b, 0x064f485d, + 0x23072725, 0x46053313, 0x694a1681, 0x45132007, 0x06260f08, 0x01cece68, 0x13494449, 0xffff2610, 0x82fe1a00, 0x3b8e1805, 0x4b02310a, 0x00003605, + 0x02b60a00, 0x050e0d00, 0x352b2500, 0x68322382, 0x1d0482fe, 0x26027804, 0x00004400, 0x4b020701, 0x23829204, 0x0a400f2a, 0x01367f02, 0x0b373600, + 0x5d222782, 0x61180035, 0x082107fd, 0x20298201, 0x37298424, 0x012f0056, 0x401a0075, 0x1c500212, 0x1c100201, 0x1c701c40, 0x0b1c0003, 0x31825983, + 0x5d845d20, 0x04e1ff25, 0x888c061d, 0x844a205d, 0x40112b5d, 0x455f020c, 0x1d02457f, 0x5f8e3445, 0x88ed0721, 0x824e205f, 0x00612b5f, 0x030b4011, + 0x010f4002, 0x58860f00, 0x68208b84, 0xf4205782, 0x06285788, 0x00e04e02, 0x0d401300, 0x38252982, 0x29023850, 0x89568638, 0x20578ab7, 0x2057894f, + 0x21578e0f, 0xaf8ce3ff, 0x4f020622, 0x0f41579f, 0x02062808, 0x00002f5c, 0x82114017, 0xa00f2783, 0xc00fb00f, 0xb391040f, 0x5207a022, 0x22060b41, + 0xaa500206, 0x8257205b, 0xb70c235b, 0x51860203, 0x5b413520, 0xde072108, 0x51204f88, 0xfe234f9b, 0x415e0582, 0x00290703, 0x00d60027, 0x0161012f, + 0x06114207, 0xb5821820, 0x15140025, 0x41250005, 0x1f420c69, 0x07694109, 0x00260024, 0x2542e0d6, 0x401e2a09, 0x3d7f0316, 0x3e3d0001, 0x413a830b, + 0x2b210c7a, 0x24a3835d, 0x0500001a, 0x0a23415e, 0xc7875820, 0x820b1121, 0x892b206d, 0xfb0621c7, 0x5220c788, 0xf541c782, 0x013a2305, 0xc9413a29, + 0x204d8a10, 0x204da259, 0x204da853, 0x214d975a, 0x9b881e07, 0x4da85420, 0x4d985b20, 0x2009b141, 0x214d9955, 0x374182fe, 0x27002709, 0x2f00d900, + 0xaf417501, 0x401d3008, 0x11500213, 0x00031101, 0x00051c1b, 0x41000225, 0x2b23064d, 0x43110035, 0x682205ab, 0x774382fe, 0x26002409, 0x41ddd900, + 0x182a09b5, 0x7f031140, 0x44000144, 0x3b820b45, 0x20066141, 0x05af4135, 0x3782c820, 0xd1059d27, 0x28002602, 0x2b318400, 0x00003a05, 0x01b60a00, + 0x010f0e00, 0x20063144, 0x2223826a, 0x827c0460, 0x86482023, 0x841b2023, 0x1f022523, 0x18122322, 0x26055544, 0x040000c8, 0x8801089d, 0x00563c47, + 0x00750126, 0x0114401c, 0x01011d50, 0x1d201d00, 0x1d601d50, 0x0c1d0004, 0x82250302, 0x5d00227a, 0x077f6a35, 0x888c0621, 0x044a2259, 0x325982cb, + 0x6f02b418, 0xb8310131, 0x0940c0ff, 0x3237110a, 0x82122031, 0x83af8689, 0xc8072167, 0x00216787, 0x256784d7, 0x010b4012, 0x67821950, 0x5e841920, + 0x5d8b3520, 0x5d865320, 0xd7000623, 0x22d983f9, 0x842d0002, 0x827f834f, 0x3a0521b5, 0x4e20b58a, 0x162b4d84, 0x01020d40, 0x02011050, 0x85100001, + 0x8650834f, 0x0d0521af, 0x0622af88, 0x51824e02, 0x03b70c25, 0x85241e02, 0x20238352, 0x0e094129, 0x539d4f20, 0xfffcff22, 0x0c53e118, 0x924f0221, + 0x20a78353, 0x26a78836, 0x265c0206, 0x83130000, 0x101024a5, 0x86021020, 0x355d23a5, 0x53410035, 0x07b92206, 0x21f58752, 0x4f825002, 0x03252b82, + 0x20240002, 0x86a98724, 0x0db5412b, 0x57020622, 0x0c215782, 0x86f78ab7, 0x0760224f, 0x204f88de, 0x219f9351, 0xfd4182fe, 0x27002309, 0xf383d600, + 0x02070137, 0x003a054b, 0x401d0000, 0x50100113, 0x00020110, 0x03021615, 0x08554125, 0x00352b24, 0xb385115d, 0x60203f82, 0x24075741, 0xd6002600, + 0x058b42f9, 0x3d821b20, 0x0e401429, 0x2a291e03, 0x41250012, 0x2b210866, 0x2b978235, 0x02000089, 0x020108d5, 0x002c0026, 0x562c2d83, 0x750124ff, + 0x0e401600, 0x01115001, 0x00240383, 0x09041011, 0x20096b42, 0x202582ab, 0x206384e4, 0x222f84d5, 0x8267034a, 0xb60a255d, 0x08090001, 0x53859582, + 0x0282fe25, 0x88d105d5, 0x044b2253, 0x080d432e, 0x77834b83, 0x82feaf26, 0xdb058301, 0x4c202382, 0x4b224784, 0x23849803, 0x0a000223, 0x5947840b, + 0x8d08053b, 0xec059805, 0x21001800, 0x66409900, 0x14011726, 0x16250117, 0x01161701, 0x10261016, 0x010d0802, 0x2a01061b, 0x03240105, 0x01021401, + 0x53012054, 0x1776011c, 0x01136701, 0x5b010d69, 0x0d49010d, 0x01067901, 0x7901066a, 0x026c0102, 0x15190b01, 0x151a2300, 0x351a0a13, 0x36011377, + 0x56134613, 0x12130313, 0x0a120a15, 0x340f1e12, 0x341e0215, 0x3f000a04, 0x11ed3fed, 0x2f2f3939, 0x5d391211, 0x2f01ed5d, 0xd610edc6, 0x303132ed, + 0x00895d00, 0x0a8a0120, 0x0607102a, 0x26272021, 0x21352627, 0x79080482, 0x23072023, 0x20213635, 0x21031617, 0x33161716, 0x05363732, 0xfeae9d98, + 0xb0d0feb8, 0x04182773, 0x8074184e, 0xb6e5fec4, 0x0501db11, 0xa4b15401, 0x0677fcce, 0xe5e47764, 0xe8026376, 0xe6ceadfe, 0x83d085cb, 0x897cbff8, + 0xda5cdc8c, 0xf281feca, 0x96b4b497, 0x6a000200, 0x6004e6ff, 0x18007c04, 0x6d001e00, 0x1d4b4540, 0x011d3801, 0x26011035, 0x0c490110, 0x380c2801, + 0xe782020c, 0x1b0a193e, 0x00010010, 0x141a1a20, 0x0901090f, 0x14673c1a, 0x46021477, 0x02145614, 0x9f161314, 0x132b1282, 0x0e1c1309, 0x1c04163f, + 0x8909043d, 0x875d20ea, 0x835d20eb, 0x855d20ec, 0x20e386ed, 0x20df8301, 0x29dd8222, 0x27342135, 0x07222326, 0xe0820706, 0x20334208, 0x12210300, + 0x04363221, 0xfe938b60, 0x747be8ff, 0x69743703, 0x79725eb0, 0xb3df0a41, 0x37011701, 0x0280fdbf, 0xba8f2801, 0xfafe3a02, 0x848baca2, 0x6ac766ec, + 0x3a282560, 0xd4fe5ecd, 0xcafe67fe, 0x08a882a8, 0x00000e5e, 0xd1058a04, 0x2d000d00, 0x0f001640, 0x14020405, 0x0507090b, 0x020b3c08, 0x35010702, + 0x0807030c, 0xed3f3f00, 0xc02f3911, 0x2f01c0fd, 0xcdfdc0ce, 0x31c610c0, 0x11210130, 0x11211521, 0x35231123, 0x04211133, 0x0104fd8a, 0xc68ffe71, + 0xc203baba, 0x52fe2105, 0x021cfd8f, 0x5e028fe4, 0x13266182, 0xbb030000, 0x618a5d04, 0x61841a20, 0x61845120, 0x050c3f22, 0x033861a4, 0x01bafdbb, + 0xbcbffe41, 0x0203a6a6, 0x9dfeb803, 0x0131fe86, 0x080286cf, 0x20246182, 0xab07affe, 0xc408c382, 0x40090136, 0x010a43a8, 0x0a350a25, 0x010a1702, + 0x3b01034c, 0x03180103, 0x01347101, 0x34623452, 0x01344502, 0x7f013436, 0x036d0103, 0x01035e01, 0x03040334, 0x14343514, 0x35343535, 0x69361402, + 0x32760126, 0x01325401, 0x03042632, 0x1422052d, 0x010c7e07, 0x0c6d0c5d, 0x490c3902, 0x0a70020c, 0x620a5201, 0x0a0c020a, 0x0b140a09, 0x0b0b140c, + 0x011b660c, 0x5b010e79, 0x1b0e010e, 0x1f150309, 0x07150b07, 0x352d0432, 0x202c2226, 0x0e161f1b, 0x16351509, 0x22043420, 0x221f090c, 0x08040934, + 0x03200708, 0x35070b0a, 0x08070335, 0x3f2f0001, 0xd010edd0, 0x39123fc0, 0xfdc0c02f, 0x113911c5, 0xd0103912, 0x210786ed, 0x09823911, 0xdc2f0131, + 0x11c010c6, 0x5d5d3917, 0x2b10875d, 0x42c47d87, 0x18240511, 0xdcc0fd10, 0xd6221584, 0x188b33ed, 0x315d5d23, 0x05174330, 0x11230122, 0x0a946818, + 0x83262721, 0x23232601, 0x17323335, 0x26018416, 0x36113311, 0x82373637, 0x33362702, 0x22231533, 0x01820607, 0x07330125, 0x1839bcab, 0x08099268, + 0x1d429e2a, 0x2a412614, 0xad473c3c, 0x113b5559, 0xc4be5327, 0x0d1454c7, 0x5b573a17, 0x743c47aa, 0x412c2937, 0x89d201a4, 0x5101affe, 0x09946818, + 0xd768a608, 0x1342245e, 0x4144b10c, 0xc56634a7, 0xfd9d0212, 0x30cc0d61, 0x43a44327, 0x2633b145, 0xfd67cc8a, 0x000100a4, 0x06f4fe34, 0x005d043e, + 0x40c50031, 0x722f6278, 0x2f55022f, 0x012f4601, 0x6d012f37, 0x020c7d0c, 0x73010c5a, 0x0a62010a, 0x460a3601, 0x030a560a, 0x037d036d, 0x04032f02, + 0x2f301a03, 0x2f303014, 0x311a0230, 0x0304232d, 0x1a1f0528, 0x090a0c07, 0x0c0b1a0a, 0x0b0c0b14, 0x030e1809, 0x2f071c13, 0x3f28042d, 0x1d271f23, + 0x0c141c18, 0x3f13090e, 0x1f1c1d14, 0x0804093f, 0x051d0708, 0x30070b0a, 0x1283413f, 0xd010c025, 0x413911ed, 0x11210587, 0x2c0a8339, 0xdcd02f01, + 0x87d63917, 0xc47d872b, 0x06754101, 0x21087241, 0x83443031, 0x106f410b, 0x35232324, 0x6c413233, 0x4136200c, 0x06230c6a, 0x1840af3e, 0x08093d4d, + 0x1b346725, 0x35532823, 0x2b948045, 0x8e3a1a14, 0x1a3b8fba, 0x7f942a14, 0x29523545, 0x65311a24, 0xfe823801, 0x180c01f4, 0x0809404d, 0x54a53689, + 0x69a2241f, 0x863b3978, 0xfee40109, 0x3b86091c, 0xa2697839, 0x9d532024, 0x0053fe38, 0xcd000100, 0x7705affe, 0x2100d105, 0x6940a300, 0x1f611f51, + 0x48031f71, 0x0c29010f, 0x01047a01, 0x7d010469, 0x035b0103, 0x3902036b, 0x1f340103, 0x201f0301, 0x0304141f, 0x03040414, 0x20012056, 0x01107a21, + 0x5a011069, 0x10040110, 0x051b1b05, 0x1601163f, 0x21101402, 0x21302120, 0x21042150, 0x14050a23, 0x0a151007, 0x821f1b35, 0x3f162531, 0x20030815, + 0x2609d642, 0x11edd03f, 0x42392f39, 0xfd2705c2, 0x5dd610c0, 0x825dc6ed, 0x39122711, 0x5d5d5d39, 0xcc423311, 0x07ad4208, 0x425d5d21, 0x974208af, + 0x42362005, 0xa5080d98, 0x33010706, 0x44bc7705, 0xc687a3fd, 0x2862a2c6, 0x4431111d, 0x4fb0615d, 0x2a3b7753, 0x382e2f35, 0x9c190264, 0x5101affe, + 0x59fda702, 0x64fdd105, 0x3d2b6b03, 0x42a67723, 0x2736b144, 0x493b7786, 0x009ffd33, 0xfec10001, 0x04ac04f4, 0x001c005d, 0x5358408d, 0x1a42011a, + 0x011a3601, 0x18011a24, 0x1a62010f, 0x1a021a72, 0x1a030403, 0x1b141a1b, 0x1b541a1b, 0x261c1b01, 0x0e180118, 0x13050304, 0x1c401a02, 0x31021c60, + 0x1c10011c, 0x1c021c20, 0x1a050a1e, 0x04181a07, 0x0a0e3f13, 0x3f0a0812, 0x08070404, 0x53421b05, 0x123f2609, 0x10ed2f39, 0x074442d0, 0x10c0fd23, + 0x24f882d6, 0x1711c6ed, 0x8afe9239, 0x833220fb, 0x0c2642f7, 0xac043308, 0x30fe4aaf, 0xacbcbc66, 0x3832044b, 0x535687a3, 0x22292f52, 0x86017043, + 0x01f4fe96, 0xfe00020c, 0xfe5d0400, 0x6d078d1e, 0x26a2677a, 0x369d5021, 0xeb8251fe, 0x07a96718, 0x00234a08, 0x467840c1, 0x23370123, 0x01232501, + 0x56012302, 0x12880121, 0x01126901, 0x7d01018a, 0x016e0101, 0x3a012a01, 0x01190201, 0x011f7601, 0x24011f39, 0x1f0b011f, 0x5b021f01, 0x14090114, + 0x14021439, 0x2301101a, 0x02142300, 0x08028201, 0x0f0e0230, 0x04040104, 0x25001a06, 0x0814060b, 0x1a051f23, 0x0d101435, 0x09190b03, 0x0b090e0e, + 0x05020535, 0x05010404, 0x03090805, 0x08080100, 0xdf443f00, 0x39122d05, 0x1039122f, 0x2f3911ed, 0x1711d010, 0x24065943, 0xd610c0fd, 0x221282c6, + 0x43ddc05d, 0xc025055f, 0x5d5d3911, 0x44038212, 0xcb4409c5, 0x05b86705, 0x23112327, 0x36113311, 0x42048437, 0x052d101f, 0x10fefe75, 0xc6c66e86, + 0x32862c42, 0x101e4223, 0xfffe2d24, 0x1b427b01, 0x0c012705, 0xe6fe6a01, 0x1f424831, 0x454c180c, 0x1e60080a, 0xb1400f01, 0x56011e84, 0x1d14011e, + 0x01128801, 0x5c01017e, 0x013b0101, 0x01012a01, 0x1c010119, 0x01129902, 0x4a01125b, 0x18030112, 0x02123812, 0x02101712, 0xad011ebe, 0x1e9c011e, + 0x8b1e7b01, 0x1e0e021e, 0x1edf0201, 0x011e6801, 0x03011e25, 0x05011e16, 0x01b2011e, 0x01a00201, 0x01019401, 0x01291c82, 0x141e001a, 0x021e0000, + 0x054f410d, 0x82901721, 0x202e0880, 0x801a060b, 0x02089008, 0x011e5908, 0x17051c1e, 0x0110523f, 0x64011044, 0x02107410, 0x160b100d, 0x090e0e09, + 0x5b053f0b, 0x7b026b02, 0x6a410302, 0x41052008, 0x5d20106a, 0x31076b41, 0x715d3939, 0x3911ed71, 0x2f017139, 0x10c0fd5d, 0x71415dd6, 0x46cd2005, + 0x71270634, 0x5d715f71, 0x825d5f5d, 0x83712003, 0xc0102300, 0x0e843911, 0x43391221, 0x5d26099a, 0x15012321, 0x7f411123, 0x37322505, 0x36153311, + 0x07e06818, 0x82060721, 0xa9042d01, 0x86bbfef6, 0x3cbcbc6b, 0x3309862f, 0x230ba242, 0x7401db67, 0x25059e42, 0xe75a010f, 0xa1426e11, 0x08ec8207, + 0xaffec822, 0xd105c705, 0x35000f00, 0x14021b40, 0x040b0e0f, 0x0a110e14, 0x0b071405, 0x07050535, 0x0e03080c, 0x260a4f44, 0x2f3912c0, 0x822f01ed, + 0x82d420c1, 0xeddd2103, 0x21053568, 0x94822111, 0x05823320, 0x3311333f, 0x96bcc705, 0xc6c619fd, 0x8cc6e702, 0x5101affe, 0x27fdd902, 0xb8fdd105, + 0xddfa4802, 0x266f8200, 0x04f4feb9, 0x865d04e6, 0x831a206f, 0x831a206f, 0x071a236f, 0x6f843f0b, 0x430e0521, 0x6f890abe, 0x6f96dc20, 0xafe60430, + 0xbcd1fd93, 0xbc2f02bc, 0x01f4fe86, 0x4918010c, 0xfc21086a, 0x99981845, 0xfe3d2b13, 0x047f0464, 0x0106025d, 0x8f8300c4, 0x00000624, 0xff82e604, + 0x00102b08, 0x7048407b, 0x0f60010f, 0x010f5001, 0x30010f40, 0x0f20010f, 0x010f1001, 0x0e0f100f, 0x01001410, 0x01000014, 0x140e0e0f, 0x02820c0d, + 0x0c090d3a, 0x01000408, 0x08081405, 0x0f023c05, 0x0d030c01, 0x0d070b0b, 0x0d0e0010, 0x0805a949, 0xc0d0c020, 0x2f391211, 0xc0391712, 0x2f01c0fd, + 0xcccdd0fd, 0xddccd010, 0x107d2b87, 0x101887c4, 0x0782082b, 0x2209484b, 0x49150101, 0x2d0805c5, 0x35213521, 0x01013301, 0xf4fde604, 0x90fe7001, + 0x0196fec6, 0xdbf2fd6a, 0x9b019701, 0xbcfcd105, 0x56fe8a59, 0x448aaa01, 0x66fd5903, 0x93189a02, 0x38080a05, 0x4090000e, 0x010e7b57, 0x6b010c74, + 0x0c64010e, 0x010e5b01, 0x4b010c54, 0x0c44010e, 0x010d7001, 0x50010d60, 0x0d40010d, 0x010d2001, 0x0e0d0c0d, 0x0a0b1a0c, 0x0a0b0b14, 0x85d1820d, + 0x00013cdb, 0x0b1a0402, 0x0707090a, 0x0d013d04, 0x060a0a0b, 0x0c000e0b, 0x0c06050b, 0x873f3f00, 0x28cd85ce, 0xfdccc0cd, 0x87c0cccd, 0x47cd9310, + 0x0121088c, 0x84d38801, 0xfe7f2cd2, 0xfe650137, 0xa7febc9b, 0x70fe5901, 0x043005e4, 0x8adbfb5d, 0x4a01b6fe, 0xfc25048a, 0x003c03c4, 0x4436d182, + 0x4805affe, 0x0f00d105, 0x8340be00, 0x38010b48, 0x02074807, 0x454a0547, 0x023a0806, 0x0c0d0f14, 0x0a0e0905, 0x0e09060b, 0x08060b07, 0x050c0403, + 0x09720308, 0x01096301, 0x25010954, 0x09160109, 0x01037e01, 0x036d035d, 0x01032b02, 0x0901031a, 0x14030803, 0x0282090e, 0x530e2008, 0x73056305, + 0x05160305, 0x7d020526, 0x0b5b010b, 0x19020b6b, 0x020b290b, 0x0b060b05, 0x82050c14, 0x110c3102, 0x0c0b0806, 0x0e030809, 0x06050335, 0x2f000108, + 0xed20fd82, 0xc0240382, 0x10c62f01, 0x20068348, 0x2000835d, 0x830c8b18, 0x820f2010, 0xdd182200, 0x06b243ed, 0x11230122, 0x0a588518, 0x33014108, + 0x3abc4805, 0x60fe6afe, 0xfe0702d8, 0x9101e405, 0xfdd99a01, 0x888a01fe, 0x5101affe, 0x9bfd6502, 0xe902e802, 0x5d02a3fd, 0xbdfd20fd, 0x3c000100, + 0x8604f4fe, 0x0f005d04, 0x47407200, 0x0e0f1a02, 0x0324f793, 0x1a090e09, 0x0820dd82, 0xc283ae82, 0xc2841a20, 0x200c1028, 0x600c400c, 0xcb87040c, + 0x3f0e0522, 0x5d20cb93, 0x2105f045, 0x8644c618, 0x23bd8205, 0x1018010f, 0x2107d643, 0xbe820101, 0x01013322, 0x2b080283, 0x44af8604, 0xc1fec3fe, + 0xfeb401db, 0x3b01ed50, 0xfedc3c01, 0x833a0149, 0x0c01f4fe, 0x53fead01, 0x30022d02, 0xa6015afe, 0x6bfedafd, 0x0a4b6718, 0x001b2a08, 0x762e4057, + 0x0b690112, 0x14170401, 0x19100606, 0x1d001402, 0x0d001410, 0x15150d01, 0x190e1a14, 0x09341417, 0x09020407, 0x24018206, 0x01030e01, 0x06986a08, + 0x112f3408, 0x10333333, 0x103232ed, 0x2f3911c0, 0xed5d2f01, 0xc0fdde10, 0xc02f3912, 0x3031c0dd, 0x23215d5d, 0x11070611, 0x23221123, 0x35262722, + 0x14113311, 0x82171617, 0x36320806, 0x04331137, 0x7ea1c6ea, 0xd5130a86, 0x37c68679, 0x9a86b044, 0x7602c685, 0xd7fe1332, 0x71661c01, 0xfefc01da, + 0x5c4bb567, 0xfe7e0102, 0x02310f88, 0xaf8600b1, 0x5d041f35, 0x55001b00, 0x10772e40, 0x12150401, 0x190e0606, 0x820f1a02, 0x0e1d311c, 0x100b001a, + 0x140b020b, 0x0c1a1214, 0x3f121519, 0x0122b086, 0xaf89050c, 0xad8dae82, 0xae8a5d20, 0x1526ad84, 0x23223523, 0xab8b1120, 0x2c08ad84, 0x5270bc1f, + 0xfe110a86, 0x2f2abc8e, 0x24118678, 0x01bc3855, 0xc80e23ad, 0x015801bb, 0x8fcafe96, 0x0107423b, 0x02d6fe2f, 0x02110e06, 0x08ad831d, 0x0000c839, + 0xd1052405, 0x35001300, 0x12671d40, 0x01117701, 0x02010458, 0x0d150014, 0x080a1408, 0x0f0d3406, 0x030b0a0f, 0x00080a01, 0x123fc03f, 0xed332f39, + 0xfd2f0132, 0x42de10c0, 0x8d82059a, 0x2105bf4e, 0x8c822311, 0x33243508, 0x15161732, 0x37c62405, 0xbfdabb45, 0x0801c6c6, 0x8679d5ba, 0x4bb59901, + 0x4ffd465e, 0x8afdd105, 0xda716652, 0x00ffff00, 0x040000b9, 0x0214065f, 0x004b0006, 0x732a0f83, 0x9805e1ff, 0x0602ec05, 0x0f848902, 0x8206994f, + 0x008a230f, 0xe8180000, 0x3b08094d, 0x0016000d, 0x4053001f, 0x011e1934, 0x55011a16, 0x14160114, 0x01135601, 0x5a011159, 0x10190110, 0x010d7501, + 0x0e01077a, 0x21001517, 0x06151816, 0x1818340e, 0x0a34121c, 0x03341c02, 0x21078550, 0xc182ed2f, 0xde10c524, 0x1047c5fd, 0x015d290a, 0x20210010, + 0x37101100, 0x20056650, 0x06954f26, 0x6f500520, 0xda410808, 0xc2fe8afe, 0x8cfec1fe, 0x4201b5bc, 0xbcb93f01, 0x826b13d2, 0x6b81e3e1, 0xfcc40313, + 0x7f73103b, 0x727fe1e1, 0x92fee802, 0x990167fe, 0x6c016e01, 0xcecacad2, 0x82dbf3fe, 0xdb829d9d, 0x9a8ae8b3, 0x08ca829a, 0x6a000326, 0x7104e1ff, + 0x0f007c04, 0x1b001400, 0x2a404500, 0x46011b49, 0x13460118, 0x01114901, 0x001b1510, 0x1b16141d, 0x2d053348, 0x16903f10, 0x1a161601, 0x040c3f12, + 0x5a503f1a, 0x5d2f2108, 0x5d21c082, 0x27c18afd, 0x06071001, 0x26272223, 0x3328bd83, 0x07161732, 0x03202102, 0x2b08b985, 0x7f710420, 0x8afbfa8a, + 0xfb8a7f7f, 0xc57e8afb, 0xfedefe1c, 0x7e021bdc, 0x490c81fd, 0x24019853, 0xfffe2e02, 0x9eadad9f, 0x02010201, 0x9f290782, 0xfe6101b7, 0x5d9e909f, + 0x0561476b, 0x10056422, 0x3808ab82, 0x40470019, 0x01067928, 0x01010668, 0x15181a03, 0x1b181400, 0x901a0a0f, 0x0a0c010c, 0x110f4208, 0x15050d04, + 0x080c173e, 0x013e0318, 0xfd3f000c, 0xedd03fc0, 0xed333f3f, 0x05a24832, 0xddc0de2f, 0xcdfd10c0, 0x5d5d3031, 0x33352101, 0x09314211, 0x36153b08, + 0x11112033, 0x11231533, 0xfd100533, 0x332ab1e2, 0xbcb0928f, 0x01bcbbbc, 0xb1b1b173, 0x039864fe, 0x5345b580, 0x04befc87, 0xfe9b7c5d, 0x98c3fd59, + 0x0100fcfe, 0x64fe0000, 0x97825f04, 0x00152808, 0x7922403c, 0x04680104, 0x001a0101, 0x090b1117, 0x0e900c1a, 0x06080e01, 0x04131142, 0x0e09050f, + 0x010c0c3e, 0x833f0008, 0x228f8692, 0x42cdfdcd, 0xbc4207bd, 0x15332109, 0x33209783, 0x04228e84, 0x8684bc5f, 0xd2fdb923, 0x218984b9, 0x83837c02, + 0x98bafb25, 0x83610598, 0x82002085, 0x02992281, 0xff24193c, 0x0256082e, 0xe403edff, 0x13061a03, 0x07000300, 0x35404f00, 0x05270517, 0x17030537, + 0x37012701, 0x05720301, 0x50054001, 0x03056005, 0x04b10605, 0x72b10003, 0x01400101, 0x01600150, 0x07020103, 0x0401044f, 0x04030205, 0xc03f0000, + 0x2f01c0de, 0xcdd6cd5d, 0xcdfd5d5d, 0x0682fd10, 0x5d303128, 0x2303015d, 0x03822101, 0xa51a0327, 0xfe0f01f4, 0x60ae18f6, 0xd1fd2409, 0x82002f02, + 0x03002673, 0x05720466, 0x087d84d1, 0x7d000b32, 0x0b095340, 0x6e010a7f, 0x0a3f010a, 0x0a5f0a4f, 0x08700a03, 0x01086101, 0x08500840, 0x05060802, + 0x01040607, 0x01007003, 0x30010061, 0x50004000, 0x21083782, 0x6e01027f, 0x024f0102, 0x0202025f, 0x61010470, 0x04300104, 0x04500440, 0x09060403, + 0x03080502, 0x9d820307, 0xc0ddc022, 0xdd249f82, 0xd65d5d5d, 0x9d820382, 0x39395d27, 0x39391211, 0x260e8910, 0x01013031, 0x86231323, 0x72042603, + 0xc288d6fe, 0x2004836f, 0x25048371, 0x95fdd105, 0x03876b02, 0x00007e08, 0x00660001, 0x059f0400, 0x002200f0, 0xc56e40ab, 0x16370116, 0x16b71647, + 0x0112b903, 0x12481238, 0x010fc802, 0x0cb60ca6, 0x010c9702, 0x54010875, 0x02086408, 0x5c01046b, 0x03790104, 0x1d0c0c01, 0x1d20221b, 0x0202181a, + 0x24221f14, 0x1d061a14, 0x20023f18, 0x76010c87, 0x0c65010c, 0x560c4601, 0x0c34020c, 0x0d0a0c01, 0x3f19100d, 0x0120901c, 0x1c201c20, 0x0a3f1021, + 0x013f2102, 0x0acc5308, 0x11ed1024, 0xca4c2f39, 0x105d2305, 0xe482fdc0, 0xde10ed26, 0x2f3912c6, 0x10210b82, 0x541b82c0, 0x5d3b0dcb, 0x26112121, + 0x34352627, 0x32333637, 0x26231517, 0x06072223, 0x16171415, 0x19211117, 0x080808a3, 0x87fd9fa8, 0x726c75df, 0x9c9ddb7a, 0x9f9f900b, 0x52474754, + 0xfe79029b, 0xfed1010d, 0x01f3012f, 0x859002f0, 0x958be6e3, 0x8085a256, 0x67a2a66d, 0x8d010376, 0x78ebfe78, 0x030088fe, 0x52ff7300, 0x96068205, + 0x2e002800, 0x57013700, 0x3266dd40, 0x01321701, 0x72013105, 0x2d66012d, 0x012c0701, 0x5b012079, 0x10770120, 0x010f1701, 0x1701067c, 0x02016701, + 0x01010703, 0x222f371c, 0x19231b23, 0x24252b2c, 0x011a761a, 0x1a671a57, 0x301a2002, 0x031a401a, 0x79011a04, 0x23580123, 0x2f022368, 0x4f233f23, + 0x230b0323, 0x2d821a01, 0x24ab3c08, 0x1a24141a, 0x2e170024, 0x16282729, 0x09081428, 0x0001070a, 0x01157615, 0x15671557, 0x30152002, 0x03154015, + 0x79011504, 0x28580128, 0x2f022868, 0x4f283f28, 0x0f020328, 0x82150128, 0xab400830, 0x00141500, 0x0e030015, 0x1b0f1639, 0x15351b01, 0x1e011e00, + 0x0307292b, 0x0127252f, 0x04220403, 0x0022342f, 0x22232428, 0x151b1a02, 0x120e1216, 0x2c2e370d, 0x1c340a08, 0x12141719, 0x333f000a, 0xfd210082, + 0x29008232, 0x103911c4, 0xc0d0c0dc, 0x0482dd3f, 0xc4fd1025, 0x82391711, 0x2f012902, 0x5dd4ed5d, 0xd0d610cc, 0x21074949, 0x00855d5f, 0xc4c48729, + 0x05c40ec4, 0x8310c4c4, 0x01c42409, 0x48dc1018, 0x1e8505ab, 0x845d5d21, 0x231c8516, 0x5d013031, 0x1e843787, 0x16030138, 0x26231517, 0x33320127, + 0x15333720, 0x23060706, 0x23072722, 0x04822637, 0x1126132d, 0x25363710, 0x16073337, 0x82033717, 0x17162223, 0x08208213, 0x150607ac, 0x82051714, + 0x0f210e6b, 0x5ffe3333, 0x1c01080a, 0x92460eda, 0x2e2f9092, 0x5245ad3a, 0x86ad5e44, 0x01bccabf, 0x46b0413c, 0x94544e50, 0x5dfe524b, 0x46655837, + 0x274cc137, 0xfe960649, 0xeb1007ea, 0xc6fb212b, 0x3821e8c4, 0xb497042e, 0x01f32817, 0x6e01ca5d, 0xc0ce7001, 0x0cb5aa07, 0x80feda19, 0xc1fb0b1c, + 0x9104222f, 0xe14e1609, 0x90c39574, 0x00010000, 0x05e5ff73, 0x00ec0546, 0x4099002b, 0x0118075e, 0x55011406, 0x15590117, 0x01145a01, 0x78010a65, + 0x06190106, 0x1a271d01, 0x21161a1a, 0x162d000e, 0x00180814, 0x38820901, 0x70042e08, 0x2b2b012b, 0x25222728, 0x0e361f3f, 0x17020e46, 0x020e270e, + 0x0e010e06, 0x7f0f6f0c, 0x0f0f020f, 0x1f1d2112, 0x12281c1c, 0x1a020c34, 0x05cd5728, 0x3f563220, 0x32322c05, 0x5d2f3911, 0x5d5d3912, 0x89ed105d, + 0x2f012b0c, 0xc0d610ed, 0x2f3912c0, 0x1643c0fd, 0x5d012808, 0x0706255d, 0x46202306, 0x213105a7, 0x23150532, 0x07222126, 0x17101106, 0x33111716, + 0x09284315, 0x24115008, 0x46053337, 0x90929246, 0xccbeb1fe, 0x4d01c3ca, 0x0f0601f3, 0xe3f4feeb, 0x4a98928a, 0xa7cdbc6a, 0x500a4b3e, 0x01aa9a5f, + 0x6c0ed718, 0xbc2e3821, 0x017c01ca, 0x83c7ce70, 0x9f96c5eb, 0xdbfed9fe, 0x02244fa1, 0x0ca5a5ab, 0xfe8a13c1, 0x82c2027b, 0xb94108e6, 0x170738ff, + 0x29004405, 0x6a40ad00, 0x3d010e7c, 0x020e5d0e, 0x10232203, 0x24250a23, 0x770f670f, 0x0f43020f, 0x0f100101, 0x02020f20, 0x6d010f00, 0x4c030123, + 0x1f010123, 0x02232f23, 0x01230f02, 0x082a820f, 0x0f24ab4c, 0x0f242414, 0x10201010, 0x10031030, 0x1b1d0d10, 0x240d1a1a, 0x1a000c24, 0x111a0c01, + 0x273f060d, 0x17232420, 0x1d04203f, 0x1a100f05, 0x00080d01, 0xdcc0c03f, 0xed3f3fc0, 0xd010c0de, 0xc42f01ed, 0x12eddefd, 0xdc102f39, 0x0682c0ed, + 0x21083553, 0x01835d5f, 0x87240485, 0x10c4c40e, 0x31250482, 0x5d5f0030, 0x08a4465d, 0x0707062a, 0x03112311, 0x27260123, 0x82059c48, 0x0534410d, + 0x33134108, 0x20333607, 0xbc170711, 0x50902e22, 0x502d1a4e, 0x01a9f4bc, 0x0d03029c, 0x85522a51, 0xbbbcbcb0, 0xae55dfaf, 0x5d536dac, 0x7c026701, + 0x275740b6, 0xfda91c0d, 0xfd400130, 0x3e7203f8, 0x15298221, 0x08066147, 0x7401ac3f, 0x59fe20e8, 0x34000500, 0xd0050000, 0x1b00d105, 0x22001f00, + 0x29002500, 0x6540ba00, 0x4b012345, 0x121c0121, 0x23251f1e, 0x26042311, 0x03212027, 0x66115621, 0x03110211, 0x23140321, 0x08028411, 0x18021432, + 0x02151a00, 0x07090d2b, 0x14052821, 0x65070b10, 0x23540123, 0x15212301, 0x08251114, 0x3c050104, 0x1a1f2629, 0x1216200b, 0x273c220f, 0x0b0c191e, + 0x07390182, 0x02031110, 0x08070603, 0xd0c03f00, 0x11c03fc0, 0x2f2f3939, 0xc0c0c010, 0x200382fd, 0x860883c0, 0xc0d02709, 0x5d5d2f2f, 0x19842f01, + 0xc0de1022, 0xc0200282, 0xfd210582, 0x06d443c0, 0x8505c843, 0x42012005, 0x0120057d, 0x0120ad82, 0x2807d858, 0x11333523, 0x11211321, 0x05764833, + 0x0c822120, 0x11030133, 0x25233501, 0x05112303, 0xfef598d0, 0xb943fefb, 0x3b008294, 0x01dd3301, 0x9898b9a7, 0xfeaffe98, 0x55fe89ae, 0x74fe028a, + 0xdf89defe, 0x14feec01, 0xa0270385, 0x01a00401, 0x835ffea1, 0xfea02403, 0x820401fc, 0x83a42003, 0xe1fc2205, 0x081b82db, 0xfffcfe25, 0xffc800ff, + 0x050109e5, 0x002600d1, 0x01000035, 0x05560007, 0x0000002a, 0x0002b60b, 0x00002626, 0x822b0125, 0x00072616, 0x0700005c, 0x2225828d, 0x8223001f, + 0x29270829, 0x31002d00, 0x48013400, 0x1b68af40, 0x01095701, 0x19171410, 0x3433302f, 0x120f3418, 0x0e171613, 0x1834180e, 0x820e1714, 0x34173402, + 0x1a2e3132, 0x0c1b341b, 0x25262c2d, 0x0d250d1b, 0x821b3414, 0x34483902, 0x27253401, 0x1f1e2023, 0x22281f29, 0x291c1d21, 0x2a2b241c, 0x0a250a0b, + 0x142d0982, 0x25140a25, 0x04010a25, 0x00090805, 0x08218209, 0x09001439, 0x09000014, 0x46000307, 0x25290129, 0x17181625, 0x0e34291b, 0x27283233, + 0x0f080b0c, 0x2d30313c, 0x0522232a, 0x1e242612, 0x01191a1d, 0x2e2f3c16, 0x20212b2c, 0x82121304, 0x1b0e2a01, 0x1b1c001f, 0x0d0a0903, 0x07bd410e, + 0x11c0d023, 0x07c04112, 0xc441c020, 0x20078207, 0x8b038210, 0x2f24820f, 0x12c0d010, 0x2f190139, 0x195ddd18, 0xc0d618dd, 0x21053f4e, 0x0082c487, + 0x10188726, 0xc47d872b, 0x450a9f45, 0xdd2008c2, 0x20056f4e, 0x20258210, 0x241486c4, 0x87dd1019, 0x202f8e18, 0x495d8201, 0x3329051e, 0x33032315, + 0x23032115, 0x23038403, 0x23033335, 0x33230382, 0x83132113, 0x82032003, 0x27012606, 0x17230107, 0x83218201, 0x074a080d, 0x8d071723, 0x439a7072, + 0x7af9fedd, 0x80fe77df, 0xfe7cda74, 0x9e45e3f2, 0x6fcb7474, 0xc96d9101, 0x6d94016d, 0x41bcfe95, 0x2f2cfec2, 0x7209022e, 0x41f7fe39, 0xfe5d40ae, + 0x28be42bf, 0xd105376d, 0xfea049fe, 0x2afea0fc, 0x0383d601, 0x0401a027, 0xfeb701a0, 0x2e038549, 0xfcfea9fd, 0xbabaa401, 0x01e7bcfd, 0x42040187, + 0x3b080539, 0x0200dba0, 0x00009700, 0xf2041b06, 0x1f000f00, 0x22403d00, 0x14681458, 0x0f031478, 0x1a1f0d1a, 0x1a1a0811, 0x081a0618, 0x07100710, + 0x0e3f1708, 0x183f081b, 0x3f000805, 0xc02fedc0, 0x26055b5d, 0xdefd2f01, 0x82de10ed, 0x35f38204, 0x06071401, 0x33112123, 0x37322111, 0x33113536, + 0x34112301, 0x11822627, 0x11822320, 0x16176108, 0x721b0615, 0xdafde46b, 0x9f7501ad, 0xfead3a3f, 0x403aad63, 0xad8bfe9e, 0x6ae52602, 0xf2bf0172, + 0xfe02636a, 0x3e43c6fd, 0xfd2d0380, 0x81390102, 0xd2fb433d, 0x6a63f204, 0x010000f2, 0x00003400, 0xd1057505, 0x83001100, 0x11074440, 0x010e1401, + 0x47010e83, 0x0d0e010e, 0x0b0e0b0c, 0x0e0d140c, 0x0c2d0282, 0x11100d0c, 0x11020100, 0x00140102, 0x38028211, 0x13000101, 0x02110b0e, 0x04060814, + 0x080b090d, 0x0505023c, 0x00030904, 0x20c58304, 0x074a493f, 0xce2f0130, 0xc032fdc0, 0x32d61032, 0x0587c100, 0x0583102b, 0xc4107d26, 0xd418c001, + 0x3129118d, 0x5d5d0130, 0x21215d71, 0x06b45c01, 0x11332508, 0x21013301, 0x75052115, 0x1ffdfffe, 0xc69999c6, 0xfdf0d302, 0xfdff0220, 0xfd980204, + 0xa0980268, 0x67fd9902, 0xa0200383, 0x0024c582, 0xee040000, 0x3d08c582, 0x40700017, 0x0e11123f, 0x0d700d30, 0x0d900d80, 0x030b0d04, 0x083f0704, + 0x088f087f, 0x0804089f, 0x0a000206, 0x0f131514, 0x0d090c0b, 0x0e060f08, 0x11051007, 0x12021304, 0x35140103, 0x38820316, 0x820b0d21, 0xddde2bc0, + 0xfd3fcdde, 0x3911dcc0, 0x0382dd39, 0x0382de20, 0x0382cd20, 0xc02f012e, 0xcefdccc0, 0x5ddec0c0, 0x10c0d0c0, 0xb7820584, 0x37112125, 0x82150715, + 0x23b98203, 0x35373507, 0x11280382, 0x04213521, 0xf8ecfdee, 0xc6210082, 0x210082fb, 0x9e82ecfd, 0xaefe2126, 0x9fc2a1c2, 0xfe270382, 0xc5530112, + 0x829fc5a1, 0x01b20803, 0x0500b0ed, 0x6afe2900, 0xb606e507, 0x39001400, 0x5b004900, 0xdc006600, 0x56758140, 0x01566601, 0x69014d69, 0x024c794c, + 0x29014c3a, 0x3974014c, 0x01394501, 0x55011766, 0x17460117, 0x17170701, 0x2c330217, 0x3528032a, 0x03504e38, 0x7f523636, 0x154a014a, 0x07420642, + 0x0d0c0c0a, 0x68003a42, 0x5c015c18, 0x541d2826, 0x50612152, 0x70526052, 0x2e520352, 0x3536282f, 0x2f2f2e33, 0x33382c4e, 0x24265403, 0x1d241958, + 0x635e195c, 0x0d42191f, 0x463e1146, 0x08190406, 0x000a070c, 0x3f33332f, 0xdedd32d4, 0x393912cd, 0xdeddd010, 0xcd393911, 0x0582cd10, 0xcd333f25, + 0x822f3332, 0x0132270b, 0xcd32ce2f, 0x2183dc5d, 0x5d222482, 0x2d82d610, 0x332f3222, 0x102b2482, 0x125dcddc, 0x39172f39, 0x56171233, 0x20080baf, + 0x015d5d5d, 0x23060714, 0x06032722, 0x37362307, 0x36373613, 0x16173233, 0x02071001, 0x26272221, 0x211a8227, 0x12833435, 0x12373628, 0x04373637, + 0x21822707, 0x17240882, 0x01040706, 0x2205704e, 0x60141506, 0x0f83053a, 0x07062727, 0x07020306, 0x25118316, 0x26013613, 0x1e822223, 0x32334209, + 0xe5073637, 0x6c8a5357, 0x250c4b56, 0x802416c6, 0x7f5e591e, 0xfd575281, 0xfea787d0, 0x416871ba, 0xc1a15b41, 0x3d504f6f, 0x30451d1f, 0xe3fe5c3a, + 0x463e138e, 0xd847d5ae, 0x026a4232, 0x279b010c, 0x314a492d, 0x47322f2d, 0xfd292e46, 0xd657479e, 0x4629443c, 0x52283c40, 0x7ae8584c, 0x427bfc5f, + 0x71412d40, 0x01081f48, 0x4c4f881f, 0x39a0fe4d, 0x02622546, 0x524f7e22, 0xd3014c48, 0xfeeda0fe, 0x353647dc, 0x6a4eb8b2, 0x018cac26, 0x6db79553, + 0x1f3c5010, 0x4d013415, 0x85421c96, 0x4c63fb25, 0x3b41423a, 0x423d494c, 0xa0023c43, 0x0e9c7ffd, 0xfe7aca57, 0x8ed7febd, 0x01384022, 0xa8fed917, + 0x642d3e2c, 0x00001245, 0xfe050002, 0x06f20359, 0x0027001e, 0x40a00030, 0x79184960, 0x2f250218, 0x11112c00, 0x28151616, 0x15151212, 0x0c180f14, + 0x282c1b1b, 0x0600211b, 0x32001b0c, 0x13011370, 0x802f7014, 0x2f64022f, 0x162f1801, 0x250f3f2a, 0x7f001f11, 0x123e0112, 0x1f02124e, 0x02122f12, + 0x70131512, 0x16410116, 0x22021661, 0x16100116, 0x14111601, 0x3f0a0813, 0xed2f0004, 0xcdd6c03f, 0x2100825d, 0x0683dd10, 0x39123f35, 0x3911ed39, + 0x015d5d39, 0x105dcd2f, 0x10ccfdd6, 0x83defdd0, 0x39112811, 0x2f332f19, 0x85391211, 0x39010905, 0x055d3031, 0x23060706, 0x33352722, 0x37323316, + 0x06032734, 0x23072707, 0x37361701, 0x36352603, 0x20333637, 0x06071411, 0x03161307, 0x07222334, 0x36131714, 0x5901f203, 0x5f628a53, 0x8c415d0a, + 0x73850601, 0xc469857a, 0x30812201, 0x0107a788, 0x01845259, 0x4e3a4710, 0x5cb40dc2, 0x61050171, 0x4376b068, 0x1bb2133e, 0x01161774, 0xdec6ced7, + 0xf20b02c5, 0x5f02ff53, 0x4881301a, 0x85f5fe41, 0xfd9daed6, 0x82053135, 0x12247681, 0x00f4aefe, 0x00480004, 0x05cc0400, 0x001e00d1, 0x002c0025, + 0x40900031, 0x3b2d2b55, 0x2d19022d, 0x282b2d01, 0x1f3b1f2b, 0x15261f02, 0x1d17001b, 0x01169719, 0x76011685, 0x16650116, 0x16470301, 0x16021657, + 0x2a331b01, 0x142f0625, 0x080c1008, 0x05080a0e, 0x01093035, 0x0f1d2a2e, 0x020c1f0c, 0x0d190c02, 0x10162529, 0x03113524, 0x3f000808, 0xc0ddfd3f, + 0x210283c0, 0x07845d5f, 0x01edde31, 0x10c0de2f, 0xfd10c0d0, 0x10c0c0c0, 0x4c3232dc, 0x3228058f, 0x10c0dc32, 0x325d32ed, 0x5d291082, 0x23013031, + 0x23060706, 0x05f64423, 0x23352e08, 0x21113335, 0x17161732, 0x16231533, 0x33071415, 0x26272601, 0x05152323, 0x15212734, 0x21073621, 0x04323315, + 0xbc5063cc, 0xc6c69f6a, 0x08008280, 0xfd94014c, 0x51296e8b, 0x3d070238, 0x6c38c6fe, 0x02c4613b, 0xcafd043a, 0x45093102, 0xf1a70bfe, 0x45a94003, + 0x03d5fd27, 0x788c7840, 0x495d1501, 0x1d18786f, 0x0401292e, 0x6b0d1846, 0x8c1a20b2, 0x006ca028, 0xf5000300, 0x97059800, 0x51508004, 0x40253406, + 0x08000411, 0x0901050d, 0x050b5409, 0x07015403, 0x46000554, 0xd3820590, 0xd622cb82, 0xb882c0c0, 0x21352123, 0x25038611, 0x5efb9705, 0x0387a204, + 0xa0e00324, 0x0283bcfd, 0x05007808, 0x38ffc800, 0x99062b05, 0x21001800, 0x30002500, 0x8b003400, 0x1b785340, 0x011b6901, 0x17641754, 0x01145602, + 0x66011007, 0x02570102, 0x13161501, 0x2c040d1e, 0x070a2214, 0x80013110, 0x02319031, 0x26333131, 0x15190015, 0x1301130f, 0x33253600, 0x15160814, + 0x2c35221e, 0x1d313333, 0x0b0d3523, 0x312d0309, 0x08040635, 0xc53f0008, 0x3f32edce, 0x32ed33ce, 0x822f3911, 0x39392c05, 0xc0fd2f01, 0x5dd4d610, + 0x82ed10ed, 0x715d2112, 0x2106bc48, 0x8d443912, 0x14012609, 0x15070607, 0x23c88423, 0x17161533, 0x15320182, 0x16150714, 0x27340116, 0x36112726, + 0x11053637, 0x0c841123, 0xda080e89, 0x8e9b2b05, 0x5afeaee6, 0x38aea601, 0x2547cb21, 0xfeac99c6, 0x46304cb3, 0xfe132788, 0xcf02e090, 0x1843317d, + 0x6c449138, 0x01e011fe, 0x6f79d7ca, 0x05c8c90a, 0x03ccc8d1, 0x44821e05, 0x0863c95e, 0x0402cb1f, 0x061c2c6b, 0x601661fe, 0xae01ad2e, 0x48fe52fe, + 0x071a41a8, 0xddfd0203, 0x894a2f0b, 0xd6fd2a02, 0xbe000300, 0x99036aff, 0x25002e04, 0x33002c00, 0x57408a00, 0x31041922, 0x0d071626, 0x2a2d2b0d, + 0x9f008f1d, 0x0300af00, 0x50010071, 0x02006000, 0x0001002f, 0x092a2b35, 0x12011280, 0x1d441d34, 0x1f191d02, 0x021e2f1e, 0x0e22261e, 0x21320431, + 0x16175127, 0x4b093b19, 0x07090209, 0x0a100a00, 0x0a030a20, 0x0551320d, 0x00090704, 0xfdcd333f, 0x115dc432, 0x832f5d39, 0x17112209, 0x270c8439, + 0xc45d2f01, 0x5dd610ed, 0xc4280082, 0x2f3911ed, 0xddc0c0c0, 0x31210382, 0x07344130, 0x35272625, 0x51171633, 0x3721071a, 0x05404135, 0x2623152f, + 0x17161127, 0x06112516, 0x14150607, 0x05484101, 0x99036c08, 0x76794e6a, 0x8c0893a1, 0x333ebfa0, 0x76824e60, 0x3a54403e, 0x1c927208, 0x59fee431, + 0x013b2430, 0x481d2b95, 0x80060190, 0x7e103c52, 0xb04a0578, 0x23010f69, 0x5c3f4c26, 0x10415079, 0x0f04787b, 0x54a91e14, 0x05e2fe12, 0x015c340a, + 0x21140804, 0xa6fe6242, 0x11151f3e, 0x0017f8fe, 0x7300ffff, 0xda0582fe, 0x2602f005, 0x67003200, 0xa52105d5, 0x05876900, 0x18272621, 0x25088bd1, + 0x710482fe, 0x23827c04, 0x23855220, 0x86e20421, 0x1b1a2323, 0x616a0006, 0xff732605, 0x08da05e1, 0x2c478801, 0x01960056, 0x40220075, 0x3450020b, + 0x2e038201, 0x34023470, 0x40c0ffb8, 0x370b0909, 0x83243400, 0x0a676a5a, 0x7104e122, 0x084d9b18, 0x4a020724, 0xf36eb004, 0x1d702506, 0x1c1d0001, + 0x476b6383, 0x20658f05, 0x3265844e, 0x0314401e, 0x01285002, 0x28200203, 0x28802850, 0x84280003, 0x355d2360, 0x03820035, 0x6a24e582, 0xf604e1ff, + 0x06226188, 0xc0824e02, 0x13401932, 0x1c000203, 0x1c501c20, 0x1cb01c80, 0x181c0005, 0x35216885, 0x8f318200, 0x844f2069, 0x40162269, 0x8669860d, + 0x21618762, 0x6182e5ff, 0x0622c389, 0x61824f02, 0x83b70c21, 0x21558460, 0x53923535, 0x96005c22, 0x1522e782, 0xb8930f40, 0xa222b586, 0x77415207, + 0x02062206, 0x20b5b050, 0x2261a257, 0x88de0771, 0xa1512061, 0x82fe2161, 0x2509e741, 0xd6002700, 0x096d9600, 0x82a52006, 0x401d2fcb, 0x28500213, + 0x00032801, 0x030f2e2d, 0x25410225, 0x09096d07, 0x82fe6a22, 0x2a09eb41, 0xd6002600, 0x070100e2, 0x82044b02, 0x14002978, 0x00030e40, 0x00062221, + 0x8c413882, 0x2b352105, 0x28063741, 0x01088b06, 0x46022602, 0x252d8200, 0x78008d00, 0x2d827501, 0x50020d2a, 0x02366036, 0x36360002, 0x63826c82, + 0x089b9d18, 0x8c06c322, 0x47202d82, 0x06222d82, 0x5a828d00, 0x02b60a25, 0x422b2b00, 0x4f8c0aab, 0xaa004322, 0x1a224f82, 0x4f861240, 0x70365023, + 0x20548736, 0x08ad6c5d, 0x8b04e121, 0x82432055, 0x40112755, 0x2b50020c, 0x5b872b60, 0x8b08a342, 0x5602235d, 0x5d828f00, 0x0b40122a, 0x013a5002, + 0x393a0002, 0x0724ab98, 0xba044a02, 0x21065943, 0xad8c2e2f, 0x88c80721, 0x00d722fd, 0x204f878b, 0x214f8242, 0x4f903542, 0xfb885320, 0x00c4d733, + 0x10401500, 0x20371002, 0x50374037, 0x37000437, 0x0a4d432a, 0x0682fe25, 0x87f0058b, 0x4b022259, 0x07fb4305, 0x43383721, 0xc3220bfb, 0x51868405, + 0x2507a941, 0x0002b60a, 0xa1872d2c, 0x82feb22a, 0xd1052905, 0x38002602, 0x21051f44, 0xc5846205, 0x20000124, 0x1f440c21, 0xfeb12606, 0x04570482, + 0x2023825d, 0x21238558, 0x2386d104, 0x091a1923, 0x05434416, 0xe1ffb226, 0x01082905, 0x56224788, 0xe9856200, 0x23500127, 0x23000101, 0x2c4c8422, + 0xff355d00, 0xffb100ff, 0x065704e1, 0x224f888c, 0x86c7044a, 0x1b1c214f, 0x06214f8a, 0x214f8375, 0x37424802, 0x427c2006, 0x01290537, 0x2e602e50, + 0x2e000102, 0x21518d2d, 0x5183a505, 0x42490221, 0xee330537, 0x40180000, 0x28600110, 0x28300101, 0x00022840, 0x82092928, 0x071142cd, 0x5d8cad82, + 0x2a054542, 0x0114401c, 0x2d602d50, 0x82400102, 0x2d802405, 0x842d0003, 0x82358764, 0x21658cb7, 0x65860243, 0x0101272b, 0x27602750, 0x27270002, + 0x20659908, 0x0a134102, 0x01013125, 0x98303100, 0x020721c1, 0x21091341, 0x53832a2b, 0xffff3523, 0x23b58400, 0x2602be07, 0x2b061341, 0x016200d7, + 0xb60a006b, 0x2c390001, 0x2108ab41, 0xa382e1ff, 0x23825320, 0x22050941, 0x8400fdd7, 0x26332121, 0xfe254588, 0x06750682, 0x214587f8, 0xf1414b02, + 0x2f2e2208, 0x09f1410d, 0x05a50523, 0x22458684, 0x414b0207, 0x282108f1, 0x3e478729, 0x04000006, 0x020108e6, 0x003c0026, 0x00070100, 0x01e4ff43, + 0x401b0075, 0x0a50010a, 0x82020a60, 0xb8012905, 0x0ab4d3ff, 0x2501040a, 0x20052e46, 0x26c38200, 0x0464fe3d, 0x828c067f, 0x825c2035, 0x00063435, + 0x0000dd43, 0x6001b513, 0x02097009, 0xb4ddffb8, 0x41040909, 0x2b820541, 0x82fe0626, 0xd105e604, 0x85826187, 0x8500f621, 0x090a21cd, 0x35205483, + 0x04214f87, 0x824f865d, 0xdc0521a9, 0x12312382, 0x0a010d40, 0x0a2f0a0f, 0x0a6f0a4f, 0x5d050a7f, 0x53b81811, 0x23b18908, 0xecff5602, 0x1831b182, + 0x50011040, 0xc001010e, 0x020ed00e, 0x030d0e00, 0x90ae8602, 0x020724ad, 0x46b5044a, 0x012605dd, 0x00010d50, 0xab8a0c0d, 0x04000025, 0x41c807e6, + 0xd720080d, 0x122d5b84, 0x50010b40, 0x00010116, 0x00050916, 0x07e54425, 0x20050341, 0x08034153, 0x85ddd721, 0x081521d5, 0x353c4f83, 0x6c000300, + 0xfb04bdfe, 0x1b001406, 0x2c002800, 0x42401301, 0x0c38053b, 0x2432223c, 0x12271c19, 0xb52a2e08, 0x5114012b, 0x1017171a, 0x04130118, 0x10412007, + 0x26080304, 0x2c0a0742, 0x012b2c2b, 0x8800160a, 0x1c131716, 0xf4ffb804, 0x020909b4, 0x23088355, 0x0c0c0e40, 0x1a220982, 0x1c192e1a, 0xec2a2f2f, + 0x0f0f0b40, 0x06015506, 0x05820d0d, 0xecffb826, 0x09091c40, 0x92260982, 0x3f2e1f2e, 0xb518022e, 0x012e070a, 0x0b0b180a, 0xb80a5502, 0x1940feff, + 0x09820f0f, 0x05822682, 0x77830c20, 0x0d040a23, 0x240b820d, 0xf6102d85, 0x2300832b, 0x5d2bed32, 0x0f870a86, 0x82322b21, 0x2fed2100, 0x3d058553, + 0x3fed3f00, 0x3912ed3f, 0x39123f39, 0x3cfd3c2f, 0x3031ed2f, 0x1123015d, 0x06063523, 0x6a182223, 0x35210a9b, 0x23018221, 0x01331533, 0x0b8e6a18, + 0x14821320, 0xb8fb042e, 0x6ead4dbc, 0x4452edc6, 0x5960b644, 0x123a1c19, 0xb4fcea27, 0xf4044c03, 0x3f1c19fb, 0xfd48081d, 0xff0086e2, 0x050bfcff, + 0x064aff1d, 0x00070053, 0x001efbd7, 0x00020000, 0x0491008a, 0x00980490, 0x002f0023, 0x01374067, 0x0b292d02, 0x1d230208, 0x0811141a, 0x2f020617, + 0x27050105, 0x170f0529, 0x310f1701, 0x2402311f, 0x0e371d89, 0x20012020, 0x0f20292a, 0x2f0e010e, 0x2fed335d, 0x3917125d, 0x85005ded, 0x54432a0b, + 0x05a0b458, 0x5d0205b0, 0x27168359, 0xb4585043, 0x2d83278c, 0x31240e82, 0x27070130, 0x263cff83, 0x37270727, 0x34352626, 0x37273736, 0x33363617, + 0x37171632, 0x16160717, 0x07061415, 0x0b1ad118, 0x90042508, 0x4a2cec6e, 0x24572e34, 0x17e96dec, 0xea1a1618, 0x5724eb6f, 0x25582c2d, 0x18eb71ea, + 0x65171918, 0x6b494b69, 0x28080383, 0xea6e0101, 0x1719161a, 0x25ea71ec, 0x49342b59, 0xeb6eed2b, 0x17181917, 0x26ed6dea, 0x582d3053, 0x7049a924, + 0x6f4a4b6e, 0x08f9826d, 0x59016eb6, 0xec054e08, 0x34000c00, 0x9540e200, 0x0b580b28, 0x0b780b68, 0x01097704, 0x09660956, 0x37092702, 0x03094709, + 0x34653455, 0x01206902, 0x8201205a, 0x0a77010a, 0x1b211301, 0x0a030d2f, 0x0b050304, 0x09021a00, 0x27071a05, 0x760d1b19, 0x31330131, 0x01277617, + 0x45012764, 0x02275527, 0x27342724, 0x0f252702, 0x02281f28, 0x1d792828, 0x011d2801, 0x2b111f1d, 0x0202253e, 0x1379090b, 0x01136b01, 0x135a134a, + 0x3b132b02, 0x11130213, 0x14101400, 0x17141402, 0x0a07113e, 0x09040403, 0x09050701, 0x333f0003, 0x3912c0dc, 0x1033c02f, 0x2f32edd4, 0x5d39125d, + 0x10230082, 0x4f3f32c0, 0x128805e1, 0x39391134, 0xed2f015d, 0x32fddec4, 0x1233eddc, 0xdc103917, 0x015ac4fd, 0x82012007, 0x015d2233, 0xf8711823, + 0x5101200a, 0x352805d2, 0x20331633, 0x26273435, 0x24200182, 0x2312315d, 0xba4e0804, 0x0b207218, 0x89fb2408, 0xd5bd809b, 0xd5c20abc, 0x25380801, + 0xfe944a5b, 0xd67a73f2, 0xab0aa3d2, 0x55415fce, 0x01954bb3, 0x18740111, 0x080d4572, 0xb1e5fc39, 0xd35e4e5e, 0x264ca692, 0x210e1418, 0x608fe448, + 0x7ec95466, 0x7755291f, 0x3f200e2a, 0xe9ff0100, 0xc1051602, 0x0300c502, 0x00b51100, 0x03040105, 0xcd2f0001, 0x71c61001, 0x35340519, 0xfac10521, + 0x02d80528, 0x0100af16, 0x93fd7e02, 0x48072d03, 0x0d3a2b82, 0x030002b3, 0x2f2f0002, 0x31cd2f01, 0x33110130, 0xaf7e0211, 0xb50993fd, 0x27854bf6, + 0x82c20521, 0x00052953, 0x0701b613, 0x05030205, 0xcd202a82, 0x55842b83, 0x11211531, 0xc2051123, 0x02af6bfd, 0x7dfbafc5, 0x83003205, 0x205b8287, + 0x2533872c, 0x04000306, 0x88820003, 0x21213388, 0x26348235, 0x6cfd7d02, 0x82af4303, 0xcefa218c, 0x02213382, 0x20bb827e, 0x838f82c2, 0x07052167, + 0x92849682, 0x9382cd20, 0x95826784, 0x82152121, 0x95022197, 0x32232782, 0x84af7dfb, 0x16022367, 0x33862c03, 0x00060124, 0x36820503, 0x9b892f20, + 0x33266783, 0xbdfc2c03, 0x67839402, 0x82830421, 0x25003733, 0xdb03dbff, 0x1e005305, 0x0b401c00, 0x19110a09, 0x161c1e1e, 0xa082110a, 0x2fcedd24, + 0x6f8232cd, 0xcddedd3d, 0x33013031, 0x17161732, 0x15151616, 0x26343523, 0x23232627, 0x06061411, 0x53262223, 0x960805a1, 0xac26e601, 0x2d3c4f37, + 0x38396334, 0x401c5949, 0x7f6d5c9c, 0x604e7b98, 0x140e5305, 0x66992a39, 0x5f442b67, 0xbdfc2019, 0x7b518779, 0x2e8f6964, 0x00020000, 0x0552ff73, + 0x009606a2, 0x00290020, 0x554c4081, 0x28460128, 0x01275601, 0x1601245a, 0x020c660c, 0x19010968, 0x070e0109, 0x04111e22, 0x1f1a1f1a, 0x136c1d26, + 0x15262b00, 0x1f351d0b, 0x06191a1f, 0x02131613, 0x147e1113, 0x22141401, 0x0e0f3419, 0x1c210211, 0x0607341a, 0x000a0400, 0x33cd333f, 0x823232ed, + 0x34058206, 0x39125d2f, 0x3912115d, 0x2f01ed2f, 0xc4d610ed, 0x393911ed, 0x056c5a2f, 0x5c07c742, 0x072005c7, 0x242edc82, 0x10112627, 0x33352500, + 0x15050415, 0xfd4f2623, 0x116b0805, 0x01213523, 0x06070611, 0x16171015, 0x9278a205, 0xfe767e8a, 0x01d7addd, 0x76420165, 0x11010001, 0x8d626c12, + 0x9598b6a4, 0x78fd5901, 0x98747ee7, 0x2a376e7d, 0x95910228, 0x01caa319, 0x0147017d, 0xaaae1c9b, 0x54eb8204, 0xfb07402c, 0x013f054c, 0xa6fdae6d, + 0xab16ad04, 0xe0fef19e, 0x000084a1, 0x001a0003, 0x055e0500, 0x821700d1, 0x001e3a09, 0x0b5340a2, 0x09060507, 0x050e0d0a, 0x1d1e030e, 0x040e191a, + 0x05140419, 0x3602820e, 0x16121905, 0x17141310, 0x02000f00, 0x19181c1b, 0x0119010f, 0x820f0014, 0x19003e02, 0x02061719, 0x141b3403, 0x181d1e09, + 0x341a0d10, 0x1d0a131c, 0x0e0f051d, 0x04000103, 0x07c95905, 0x82391221, 0xfdc026fc, 0x10c0c0c0, 0x060b51de, 0x19012f23, 0x066a592f, 0x210b7f59, + 0x8159c0d0, 0x33168b08, 0x31c0d010, 0x03232130, 0x13230321, 0x37333523, 0x13213521, 0x3e080182, 0x33172115, 0x03012315, 0x21270103, 0xd35e0507, + 0x927cfd92, 0xd59797c9, 0x01edfe3e, 0x0801cd51, 0xfe5101cd, 0x97d53eed, 0x8c8c7cfe, 0xfe3d9101, 0x9f013d6f, 0x9f0161fe, 0x02aaaaaa, 0x82ccfd34, + 0x01b50806, 0xfe8701fe, 0xaaacfe79, 0x000100aa, 0x05e5ff2e, 0x00ec054a, 0x40f1003d, 0x6631569c, 0x105a0231, 0x01054601, 0x3c323c22, 0x013b3202, + 0x30013b20, 0x39240139, 0x3c3b3901, 0x3d320303, 0x011d2b34, 0x03191b1d, 0x15222012, 0x320c3336, 0x01151e3f, 0x172c1503, 0x3b891214, 0x3bb93ba9, + 0x013b7b03, 0x5a013b69, 0x3b49013b, 0x3c393b01, 0x2c751d36, 0x012c6701, 0x2c012c56, 0x012b7f2e, 0x3420332b, 0x19861976, 0x01194502, 0x1bb71b97, + 0x171b1902, 0x693c171d, 0x0c58010c, 0x010c4901, 0x0c010c3b, 0x700b600e, 0x140b020b, 0x3c3c3401, 0x2e342607, 0x0e340702, 0x0651620a, 0xc0fd2f25, + 0x45115dce, 0xdd220646, 0x09833911, 0x10211288, 0x391085c0, 0x2f015d5d, 0xedc43333, 0x10c0de32, 0x3333c4d4, 0x171132ed, 0xc0de5d39, 0x06821211, + 0x00825d20, 0x21059142, 0xd9562101, 0x37242e06, 0x21041533, 0x35262720, 0x35233734, 0x05005733, 0x21352124, 0x00573536, 0x23072e06, 0x32213635, + 0x15071617, 0x06231533, 0x08018307, 0x4a052169, 0x8705fffb, 0x018b9767, 0xfe0e6b25, 0xfee5fef4, 0x019aa9ee, 0xd54a7749, 0x222bfe80, 0xeb039ffc, + 0x86607a02, 0x5e918686, 0x1901ef0e, 0x03a19df4, 0x21168961, 0xcf69c561, 0xc7011e03, 0x42881f1b, 0xf8596b33, 0xc07c8877, 0x7eaa130b, 0x0a341738, + 0x0f13aa0d, 0x2a333f7a, 0x68ea502d, 0x0fba7977, 0x67232caa, 0x43291029, 0x463806c5, 0x1c009606, 0x92002700, 0x0d095c40, 0x0a020d19, 0x02091a09, + 0x56012665, 0x39080282, 0x225a0125, 0x69215901, 0x04120221, 0x070f1e18, 0x14241d1d, 0x15242900, 0x0114460b, 0x16011437, 0x02142614, 0x157f1214, + 0x1e151501, 0x0f103418, 0x00490212, 0x01003801, 0x5d830019, 0x1c700430, 0x1d1c1c01, 0x06073419, 0x3f000a04, 0xce4333cd, 0x5d5d2107, 0x290adb43, + 0x2f015d5d, 0xc0d610ed, 0xd5433912, 0x069e600d, 0x2508d643, 0x35253637, 0xfd611533, 0x36112705, 0x11053337, 0xd4430706, 0x46280807, 0x757d9246, + 0xa9e2fe76, 0x01adcacc, 0xefdb761c, 0xf8e7d40f, 0xc0fd0ec4, 0x4cc14051, 0x6c749827, 0x06273821, 0xa8129594, 0x08059660, 0xac14b13b, 0xeb780aab, + 0x51fb12b1, 0x04c1b012, 0x4e1a07ad, 0xfe9574e1, 0xff7ba1db, 0xfe8600ff, 0x05020559, 0x002602ec, 0x00000036, 0x018e0307, 0xff000034, 0xfe6e00ff, + 0x04d70359, 0x20178278, 0x21178556, 0x17849700, 0x59fe0026, 0xd105ee04, 0x37201782, 0xe8201786, 0x3e261784, 0xfd0259fe, 0x17829e05, 0x17825720, + 0x8e030623, 0x26458320, 0x020000a4, 0x82cc074a, 0x004c3515, 0x00070100, 0x0187fe8d, 0x40120040, 0x020a020a, 0x080a5e02, 0x2605157a, 0x0034de10, + 0x82c40001, 0xff053641, 0x0003008d, 0x1003b532, 0x01371009, 0x40f0ffb8, 0x37151115, 0x081d8269, 0x1001003a, 0x02800003, 0x0c094003, 0x00020337, + 0x012b2f2f, 0xcd1a2f18, 0x315d5e5f, 0x2b2b5d30, 0x13230305, 0x92af0502, 0xccfe7364, 0xffff3401, 0x0000c800, 0x01083905, 0xf0012602, 0x432d7984, + 0x75019600, 0x01b60a00, 0x050a0b00, 0x05f34e09, 0x0000b92a, 0x8c066604, 0x10022602, 0x06232382, 0x4b1e4300, 0x218605c7, 0xfd020029, 0x0252fe71, + 0x82baff8f, 0x00073293, 0x070f4020, 0x05020603, 0x01800640, 0x02500240, 0x2d858202, 0xde1acd5d, 0x2f01cd1a, 0x31332f33, 0x58560530, 0x8f022506, + 0x1e05e2fa, 0xbe250383, 0x7898fe78, 0x20478200, 0x204782af, 0x2047b051, 0x079c5651, 0x30084786, 0xfe730003, 0x05800964, 0x001400f0, 0x00300028, + 0x2e1f403c, 0x15152d2d, 0x29300303, 0x151f3229, 0x2c2c2f0d, 0x052d3032, 0x341a0c2b, 0x34240212, 0x05ee4308, 0x333f3f23, 0x23018211, 0x11ed2f01, + 0x3922a782, 0xad84ed2f, 0x16018608, 0x02141512, 0x22230606, 0x35022626, 0x36361234, 0x13163233, 0x23022e34, 0x15020e22, 0x33021e14, 0x01023e32, + 0x01132301, 0x04010133, 0x55534e71, 0x8786da9b, 0x51549ada, 0x898adb99, 0x643620d9, 0x8f5a598e, 0x64373564, 0x8e59588f, 0x3c053664, 0xbbc8bafd, + 0x01ca73fe, 0x05280129, 0xdffe6426, 0xdffebbb9, 0xc66766c5, 0xb4ba2001, 0x6cc91f01, 0x9061fd69, 0x50519ae2, 0x9291e19b, 0x504f9ae1, 0x0602e299, + 0x0b6018fa, 0x03002f08, 0x64fe6a00, 0x7c045208, 0x1f001300, 0xdd832700, 0x2424253d, 0x00001b14, 0x29202027, 0x260a1b1a, 0x27292323, 0x0c220524, + 0x040f3f17, 0x9c053f1d, 0x0e1421dd, 0x2e20c882, 0x3e20d882, 0x1e23c882, 0x5b340702, 0x16230562, 0x88363233, 0x420d3bd4, 0x6b6aac79, 0x42417aac, + 0x6a6aad79, 0xc24279ac, 0x8f81808f, 0x907f828e, 0xcc8a0705, 0x882e022a, 0x525299da, 0x8988da99, 0xdb2a0784, 0xd3d3d988, 0xd7d8d3d9, 0xbe8a0303, + 0x733abf82, 0x6c07e5ff, 0x4a006808, 0x70006400, 0x30405d00, 0x561a5563, 0x6b6f706d, 0x0182566f, 0x2d0a2008, 0x151e4115, 0x6a6a6b0a, 0x6f6f6e19, + 0x5b3c5264, 0x553c635b, 0x34193264, 0x28020f3c, 0x84342325, 0x322a08d0, 0xed333f32, 0xed32d432, 0x11ed2f32, 0x11cd2f33, 0x01cd2f39, 0xed2fed2f, + 0x2f393912, 0x1033112f, 0xed10cddd, 0x253031c4, 0xb941030e, 0x1517230c, 0x11822e23, 0x2107ba41, 0xe9823337, 0xfe823e20, 0x2705cf41, 0x36352307, + 0x16323336, 0x0808f341, 0x13022ef9, 0x23042e22, 0x23070622, 0x3233033e, 0x3333041e, 0x0e140515, 0x36350702, 0x33352335, 0x4922ef03, 0x74416956, + 0x3f4e8cc3, 0x4e6dad76, 0x1e083e7d, 0x25403a39, 0x2848623a, 0x447c5f39, 0x930993bf, 0x5f7c44bf, 0x62482839, 0x3a40253a, 0x3e081e39, 0xad724e7d, + 0x8c4e3b75, 0x674174c3, 0x37d04a56, 0x363a4657, 0x33301f36, 0x2c068507, 0x32315644, 0x39343d4a, 0xfea12c42, 0x463019cc, 0xbf5f5d2e, 0x28351e77, + 0x01bf5d17, 0x01b6c422, 0x1269c71f, 0x2319df14, 0x964b0a16, 0xe29f98e3, 0xc4c44492, 0x9fe29244, 0x4b96e398, 0x1a231609, 0x691214df, 0xb6e1fec7, + 0xbfdefec4, 0x3528175d, 0x1e14fd06, 0x4b141e23, 0x45694641, 0x211e1323, 0xbe8f131e, 0x1f364729, 0x5b0c5602, 0x0003009a, 0x06e2ff72, 0x00f40611, + 0x006b0051, 0x405f0077, 0x1a5c6b31, 0x7677745d, 0x825d7672, 0x19260801, 0x052e1a42, 0x7172191a, 0x76753d71, 0x3c596b76, 0x3c6a6262, 0x0a6b6b5c, + 0x33143f3d, 0x47004c04, 0x000a293e, 0x8a41ed3f, 0x2f332205, 0x208b4133, 0x69413220, 0x021e2210, 0x06814215, 0x0e232725, 0x42222303, 0x16200789, + 0x250ea741, 0x3337023e, 0x8b41031e, 0x044b081c, 0x335c4a66, 0x4c361e13, 0x292c1b2e, 0x30071728, 0x8f633d5a, 0x67322d5d, 0x59326fa0, 0x06163c4b, + 0x56483a16, 0x67a06f33, 0x8c633632, 0x305a3d57, 0x29281707, 0x4c2e1b2c, 0x33131e36, 0x5035495d, 0x111c3942, 0x5142391c, 0x41563802, 0x21081e92, + 0x99774983, 0x6b9e6950, 0x130d0736, 0x0f0bbc0c, 0x8bda974f, 0x4f96da8b, 0x21392a18, 0x182a3921, 0x0f83964f, 0x0f4f973a, 0x130cbc0b, 0x6b36070d, + 0x9950699e, 0x3b214977, 0x4e2d2d4e, 0x5f05213b, 0x081b9541, 0xde000128, 0x10041d05, 0x19003406, 0x0c401b00, 0x0b1a0a19, 0x10103c07, 0x000a3c17, + 0xed322f00, 0x01ed2f32, 0x31c4ed2f, 0x98420130, 0x66032110, 0x21174c42, 0x71902205, 0x02003d08, 0xe1ff7300, 0xf0054c06, 0x4d003f00, 0x2d404f00, + 0x14071548, 0x07030221, 0x07401511, 0x1a1a4031, 0x04073140, 0x29153b4f, 0x14023443, 0x0c0c034b, 0x2e343600, 0x24340002, 0x1e33160a, 0x25065344, + 0x2f3912ed, 0x90833917, 0x39171223, 0x2f00822f, 0x1711ed10, 0x31ed1039, 0x37322530, 0x3435032e, 0x2f055544, 0x07021415, 0x36323316, 0x06153337, + 0x26222306, 0x4505d04f, 0x2428054e, 0x17163233, 0x26262315, 0x21074f45, 0x0a863401, 0x17126408, 0x27031236, 0x5231313a, 0x7144213b, 0x924c4c90, + 0x6e7d4672, 0x4a315e4e, 0x5c330a2c, 0x50a44d36, 0x9e4e9042, 0x5f62b4ff, 0xa20001b2, 0x090e1914, 0x710e180b, 0x45437eb4, 0x5402b47e, 0x4a33665f, + 0x5b671831, 0x0d8c6861, 0xbf9b7b2e, 0x83d39974, 0xce79313a, 0xb7fed59c, 0x110f166d, 0x1e080ab1, 0x45212023, 0x03260976, 0x0502ac03, 0x74459a51, + 0x024a0805, 0x34b2aea3, 0xc8568a62, 0x564ef2fe, 0x00002301, 0xff6a0002, 0x04db04e1, 0x0037007c, 0x404b0041, 0x030e2b2a, 0x1b002e03, 0x2e1b383d, + 0x2e1e3d09, 0x093d1e2e, 0x1b254304, 0x3a3f3f16, 0x22283333, 0x28041b3f, 0x050a113f, 0x2a410c3f, 0x0d29410a, 0x11ed1029, 0x30313917, 0x41061401, + 0x2324081c, 0x06062722, 0x450d0543, 0x3223088f, 0x41262637, 0x9f080750, 0x36171405, 0x23343536, 0x85040622, 0x312a454c, 0x0a1c4422, 0x76874b41, + 0x7b39682f, 0x4b4b8cc6, 0x0879c48a, 0x0c0a0b0f, 0xb3b09f0d, 0x070d07a3, 0x58365146, 0x743d3d73, 0x43fe365a, 0x7e3f3a82, 0x3d023e3f, 0x0651de85, + 0x0caa0a0a, 0x5217152c, 0x8888da99, 0x015299db, 0xd303a301, 0x01d8d3d9, 0x738fd048, 0x2c2e65a1, 0xfe749a62, 0x82bc3969, 0x00007eea, 0xff1b0002, + 0x059506e5, 0x002f00ec, 0x4038003a, 0x1507301d, 0x311b1b2b, 0x31201328, 0x1b051115, 0x302b3507, 0x340c0030, 0x34360a16, 0x3f232c82, 0x5ded3fed, + 0x012705ad, 0x2fed332f, 0x823912ed, 0x82322006, 0x163228ee, 0x15151216, 0x42031e21, 0x0e2b0510, 0x24222303, 0x2e270226, 0x42343503, 0x15270520, + 0x3e171614, 0x45210103, 0x6b0805a7, 0xf3960304, 0xaafb5dac, 0xb8895209, 0x64f7926d, 0x7d73360e, 0xfe9e4c88, 0x086fbefb, 0x335b7d4b, 0x07be0605, + 0x0f564c09, 0xfee4a765, 0x0d7d03cf, 0x609a7147, 0x46719c60, 0xc764ec05, 0x1fc8d4fe, 0x4588cb86, 0x1ee35b69, 0x59152633, 0xb10a01b3, 0x754e2903, + 0x1e391c4f, 0x1a31170b, 0x98054e40, 0xfd5aaaf3, 0x7db37272, 0xb37d4341, 0x142ab682, 0x1f05e6ff, 0x2c007c04, 0xe3833300, 0x1a01333b, 0x19131325, + 0x2c0c1a2d, 0x13191a21, 0x33253c01, 0x3d300733, 0x3f070429, 0x05d8410f, 0x0122d785, 0xde82ed2f, 0xe382ef85, 0xc2822120, 0xf1421620, 0x27202709, + 0x27260326, 0xe189022e, 0x16178908, 0x36373617, 0x15123233, 0x23262627, 0x05070622, 0x3ec9fc1f, 0x568f3436, 0x0a31e772, 0xfe6dc65f, 0x03999cea, + 0x4e362f36, 0x9905042c, 0x20210805, 0x96701b49, 0xb7f5e2f4, 0x97969301, 0x1b020cb3, 0x30319967, 0xcd2c5b30, 0x94963628, 0x0d030c01, 0x42603f10, + 0x09192d17, 0x36142813, 0xb7031e20, 0xf8fea179, 0xa2942af3, 0xffff84b2, 0xaffe1b00, 0xec059506, 0x9a032602, 0x07000000, 0x0501b203, 0xffff0000, + 0xf4fe1400, 0x1782ed83, 0x17849b20, 0xac00b322, 0x73291784, 0xf80577fe, 0x0602f005, 0x05e54a00, 0x64fe6c26, 0x7c044304, 0x54200f82, 0x5c201f84, + 0x8d224482, 0x0f82d105, 0x0f843a20, 0x00005626, 0x5d043606, 0x5a200f82, 0x2e084782, 0xffb90001, 0x051b05e6, 0x003a00f0, 0x35234042, 0x1b153018, + 0x180a0a18, 0x1425031b, 0x3c000015, 0x35251424, 0x18183317, 0x2b341e11, 0x47112502, 0x2f2705d0, 0x3912ed3f, 0x4939ed2f, 0xed2c057e, 0x2f391711, + 0x11ed2f2f, 0x01303139, 0x2b072146, 0x031e3335, 0x35363233, 0x35232634, 0x22260685, 0x1115020e, 0x66441123, 0x0ea80808, 0x1e150702, 0x481b0503, + 0x1871b883, 0x22393430, 0x36371f0d, 0x7f89223a, 0x97a0c9cf, 0x76489b8f, 0x49c62f56, 0x697fc88b, 0x1f4982b2, 0x48304f38, 0x012b5173, 0x70b583c0, + 0x0b070332, 0x160fc907, 0x8d9d070f, 0x729c8b8e, 0x1c74757d, 0xfb5f7b48, 0x771804f7, 0x2f3b75b1, 0x3b5f8d5e, 0x14394c61, 0x5c3f1309, 0xffff007b, + 0x6d0486fb, 0x0b0850ff, 0x0d000700, 0xf701dffa, 0x73000200, 0x5d05e5ff, 0x1a00ec05, 0x29002f00, 0x12151540, 0x2014142a, 0x12150715, 0x11341b03, + 0x3425020c, 0x000a0016, 0x3fed323f, 0x2f3fed33, 0x2f3be582, 0x313232ed, 0x2e220530, 0x12343504, 0x32332436, 0x3517021e, 0x35231133, 0x8303030e, + 0x065a4ad7, 0x1137cd08, 0xfc02032e, 0x7890a456, 0xae583057, 0x40ad0501, 0x224b5768, 0x5931c6c6, 0x77146d5f, 0x4d417db7, 0x4563b084, 0x294a5466, + 0x62544c29, 0x7d552b1b, 0xa979cca6, 0x7bd72401, 0x1a2d2112, 0x662ffa5f, 0x0e1f3123, 0xa2595e05, 0xdd9289e2, 0x1f114a94, 0xce031a2c, 0x101c291a, + 0x3d000100, 0x54050000, 0x16007804, 0x10402300, 0x08111100, 0x08091415, 0x540e1316, 0x05140405, 0xed3f3f00, 0x2f01332f, 0x12332f33, 0x31331139, + 0x033e0130, 0x17163233, 0x23032e23, 0x01070622, 0x01330123, 0x3e1e3a03, 0x72355749, 0x029b0671, 0x151d1209, 0xfe2a422c, 0x3ffebde9, 0x035a01cc, + 0x4d77533d, 0x127d7b24, 0x6e0e1821, 0x0407fd72, 0x0087fc5d, 0x34087382, 0x0800005c, 0x00eb059b, 0x404e001a, 0x110f0027, 0x18191a10, 0x17131412, + 0x17121a0f, 0x0f1a1217, 0x08091504, 0x15161c08, 0x03151218, 0x111a1417, 0x0205540c, 0x24898300, 0x333f332f, 0x208e8233, 0x22908311, 0x822f3917, + 0x33112200, 0x89028733, 0x0550439e, 0xa1849e82, 0x3c08a482, 0x30128b06, 0x6c3e5d45, 0x02a0077b, 0x352f2b24, 0xdcc2fe14, 0xcefedafe, 0xcb76feda, + 0x34013901, 0x042d01c9, 0x496b46cc, 0x2b8a7c25, 0xfb4b543c, 0xfbd40453, 0xfbd1052c, 0xfbd6042a, 0x28b1821e, 0x07000056, 0x00780428, 0x08b1831c, + 0x011c0b29, 0x08090a00, 0x07030402, 0x07020a1c, 0x1c0a0207, 0x13140504, 0x05061e13, 0x04105217, 0x05050208, 0x010a0407, 0x84332f00, 0xed3f21af, + 0x2122b19a, 0xa3830323, 0x33011324, 0x5b411313, 0x05074706, 0x04073c08, 0xfef7adea, 0xdafeade3, 0x1701cdc4, 0x13a5f89b, 0x42593c29, 0x96047566, + 0x19252502, 0x0d171d23, 0xa3fc5d03, 0x9ffc5d04, 0x9bfc6103, 0x73414402, 0x82763256, 0x381f2f34, 0x82002d4b, 0xab3a08b1, 0xe7023503, 0x0900d105, + 0x00b40e00, 0x03060101, 0x01cd3f00, 0x3031cd2f, 0x07112301, 0x01330127, 0x18022707, 0x0106c99e, 0x1c01041c, 0x3503c906, 0x08304101, 0x7dfe8301, + 0x3d8e3008, 0x03080923, 0x213d8908, 0xaf821737, 0x17373e08, 0x18023311, 0xe4fe06c9, 0x06e4fe04, 0x90049ec9, 0x7dfe0830, 0x30088301, 0x02004101, + 0xac03b200, 0xb2066e01, 0x07000300, 0x00b71500, 0x01050304, 0x00030507, 0xceddd62f, 0xcd332f01, 0x37848232, 0x13032303, 0x01333523, 0x1c861a6e, + 0x06ababb4, 0x010afeb2, 0xb1fafcf6, 0x07233d90, 0x82020403, 0x0002233e, 0x3d89c42f, 0x26083982, 0x13331303, 0xabab6601, 0x1a861cb4, 0xfcb10106, + 0xfef601fa, 0x00ffff0a, 0x019401b2, 0x029a046e, 0x00ab0307, 0x82e8fd00, 0xfe4c37fa, 0xffca0359, 0x0006008d, 0x0400b40f, 0x00058004, 0x01cd1a2f, + 0x8582c42f, 0x27232208, 0x33132307, 0x9fa2ca03, 0xe3ce9e9f, 0xb9b959fe, 0xffff3401, 0x00005a01, 0x5d044902, 0x1d000602, 0x270a8200, 0x6a01c800, + 0xae037a03, 0x1e2fcf84, 0x07000e40, 0x54050601, 0x54010606, 0x8201020f, 0xed5d2498, 0x82ed2f33, 0x332f21d8, 0x25093665, 0x4efd7a03, 0x0383b202, + 0xa00e032f, 0x00a0bcfd, 0x03a40001, 0x0682013d, 0x2d458214, 0x2c00b50f, 0x01030203, 0x01cd3f00, 0x0d41ed2f, 0x82012a05, 0x06367236, 0x0229fd14, + 0x22c582d7, 0x83d103a4, 0x2081822b, 0x2681820a, 0xfea40201, 0x825f03af, 0x00032909, 0x4000b511, 0x03800203, 0x1a36c485, 0x213031cd, 0x03112311, + 0xaffebb5f, 0x01005101, 0xf4fe3602, 0x299ae402, 0xaee40230, 0x0c01f4fe, 0x79000300, 0xf3061efe, 0x09820206, 0x2400202f, 0x20404400, 0x19011a00, + 0x04120a19, 0x2d01820a, 0xef222422, 0x070f010f, 0x01190712, 0x01820702, 0x21232133, 0x122f2f00, 0x2f2f3939, 0x11cdd610, 0x5dc61039, 0x3f0f8701, + 0x2f3911c6, 0x3132c633, 0x15232530, 0x26340133, 0x07062223, 0x36363315, 0x15163233, 0x06070614, 0x73080d83, 0x37363635, 0x03093636, 0xa3a3eb03, + 0xacc73c01, 0x0838ac4d, 0x60579a2d, 0x262f337b, 0x428f3479, 0x382e2c75, 0xc3fc8ffe, 0x3d033d03, 0x8f03a926, 0x1622a789, 0x58361ca3, 0x2a58455b, + 0xf41e4624, 0x2d5026b4, 0x60fb7b2f, 0xf203f203, 0x00000efc, 0xfe000001, 0x05ee04af, 0x000b00d1, 0x0415402b, 0x00050513, 0x07091402, 0x010d0c07, + 0x030a3508, 0x05073502, 0xed36b082, 0x1132ed3f, 0x2f390112, 0x33cefdce, 0x3031ed2f, 0x33112101, 0x01822311, 0xc46b2120, 0xbc8d2205, 0x05be6b97, + 0xfe8dfb28, 0x05510101, 0x5b83b021, 0xf4fe0a26, 0x5d04ee03, 0x2a255b82, 0x1a041440, 0x205b8205, 0x275b821a, 0x09010c0d, 0x3f020a3f, 0x2f205a85, + 0x03355a9a, 0x876cfeee, 0x6cfe94af, 0xb803e403, 0x52feeafc, 0xb8030c01, 0x21b585a5, 0xb5820a07, 0x000f2208, 0x081e403a, 0x06090913, 0x14020314, + 0x0b030f0b, 0x030f030b, 0x0c010d11, 0x030e0435, 0x0b350206, 0x20be8309, 0x050c7932, 0x24055b4b, 0xed10ed10, 0x83c48632, 0x21c883c6, 0xc8861121, + 0xc6dd0226, 0xc6fbbc8d, 0x0523cc87, 0x87ddfa23, 0x000121d0, 0x0521cf82, 0x29cf82c3, 0x4039000f, 0x0b1a021d, 0x78821a08, 0x0f031a25, 0x8203030b, + 0x2675827a, 0x0e043f0d, 0x863f0206, 0x332f2574, 0x2f0132ed, 0x72827487, 0x39411020, 0x83748c05, 0x260226e2, 0xfcaf87bc, 0x23e6878a, 0x45fcbb03, + 0xeb82ea87, 0xaffec824, 0xeb828a04, 0x23000930, 0x0b001140, 0x05051304, 0x01071402, 0x9d410835, 0x2f01210a, 0x1021d283, 0x0b9941c6, 0xfd8a042a, + 0x97bc8d04, 0x2105c203, 0x20069541, 0x244d82d1, 0x03f4feb9, 0x24c382bb, 0x40220009, 0x204d8210, 0x244d821a, 0x3f01071a, 0x098f4108, 0xce204c86, + 0x03284c8b, 0x87bafdbb, 0x020394af, 0x82078741, 0x01002742, 0x59fec2ff, 0x0a820902, 0x00112708, 0x0f0fb623, 0x050d0005, 0x2c01b80f, 0x0ae110b2, + 0xb12d01b8, 0x3f00ee03, 0x01ed3fed, 0x12332f2f, 0x30312f39, 0xf56a1405, 0x17360805, 0x36323316, 0x35231135, 0xc8090221, 0x0a6374a8, 0x6b2d3f3c, + 0xa501e96e, 0x1cc8c41b, 0x671413b3, 0x9e8403d3, 0x3601ffff, 0xe1038606, 0x07020108, 0x0000d600, 0x11827501, 0x83061324, 0x11840204, 0x1186d920, + 0x8d065a26, 0x5007be03, 0x8e202382, 0x56241186, 0x77048b06, 0xdd202384, 0x32201186, 0xdd204782, 0xdf201184, 0xfb531185, 0x06022207, 0x27358203, + 0x71000100, 0x41050000, 0x0b2dc782, 0x09402400, 0x0d030302, 0x01050706, 0x2dca8209, 0x03e10ab4, 0x3f00e707, 0x32ed3f33, 0xc7840132, 0x43183320, + 0xc2820aba, 0xca41052d, 0xbc3cfebc, 0x03d004ca, 0x8541fcbf, 0x9e200803, 0x00020000, 0x032302b9, 0x00df059d, 0x00150009, 0x080d401c, 0x03100a0a, + 0x0205510d, 0x0f005113, 0x20061741, 0x05195333, 0x3526222a, 0x16322110, 0x34031015, 0x0808a54c, 0x2b023624, 0x7201b3bf, 0x5c9eb8ba, 0x5d637278, + 0x02637178, 0x01f6e723, 0xfefce2df, 0xbfde0122, 0xbdc1a1a2, 0x65829ca4, 0x6582b520, 0x05a82508, 0x001600dd, 0x40330022, 0x0c0c011c, 0x1e18071e, + 0x51211203, 0x09600907, 0x09020970, 0x1551040f, 0x0f511bf1, 0x12287485, 0x392f5d39, 0x172f01ed, 0x11207a82, 0x1521ca83, 0x20738323, 0x06664407, + 0x8b822320, 0x33003427, 0x06070132, 0x06224a16, 0x03223808, 0x523c0f45, 0x7111b48c, 0xd1b89395, 0x01cab7a1, 0xfe55f008, 0x7e050152, 0x76716369, + 0xcf057767, 0x8a981b86, 0x8f8a9a47, 0xfccbddb3, 0x06fe1601, 0x6b9d971d, 0x82645b60, 0xad2d089d, 0xa1032402, 0x1300e005, 0x2d001b00, 0x06101740, + 0x14180014, 0x511a0b03, 0x0e080806, 0x12510401, 0x0e51160f, 0xed3f00f1, 0x1233ed3f, 0x83988839, 0x33352597, 0x13203316, 0x2a07465b, 0x21101120, + 0x23120122, 0x82141522, 0x115b089c, 0x01493c14, 0x916d2431, 0x9cd7b4a0, 0xf5fd8101, 0x18ad0141, 0x71e4d2fb, 0x18843302, 0x9a3e1a01, 0xfeb88b88, + 0x01edfd57, 0xc75001f5, 0x00ffffb7, 0x03efffb9, 0x03ab039d, 0x00c40307, 0x00ccfd00, 0x0001b20b, 0x4b01b800, 0x35353f00, 0x01ffff00, 0x03020023, + 0x03a10392, 0x84ef0007, 0xb109211f, 0x4a201e83, 0x1d821e82, 0x82cf0021, 0x03c7221d, 0x201d82bb, 0x231d93f0, 0xbc03dbff, 0x07220182, 0x1d87f100, + 0x5a850620, 0xb32a3b83, 0xbd030900, 0x0703b903, 0x79883e02, 0x01b80322, 0x79835a83, 0xffe60027, 0x037503e8, 0x201f82a6, 0x203d923f, 0x22b782b5, + 0x82a903a8, 0x88c520b7, 0x890f203d, 0xf30025b7, 0xa5030100, 0x40203d84, 0xb7821f84, 0x5c850220, 0xc5267b83, 0x9103e7ff, 0x5b82ba03, 0x1d844120, + 0x02b30d24, 0x7c820001, 0x7d84f684, 0xf0ffad22, 0xac20f582, 0xc6205f82, 0x12205f88, 0x2e085f87, 0x44000100, 0xd5050000, 0x2b001e06, 0x15404f00, + 0x250c0c08, 0x0d0a0d1c, 0x0000110a, 0x1010242d, 0x04111315, 0x2c01b820, 0xd31929b5, 0x82130b0f, 0x24b62d09, 0x0de11408, 0x3f00e711, 0x33333f33, + 0x2506d052, 0x33c62f01, 0x01821133, 0x2005f746, 0x290c83c4, 0x23013031, 0x22232627, 0x45181506, 0x112507bd, 0x35231123, 0x05315d33, 0x1b881520, + 0x05350f85, 0x413a0ad5, 0x016f772e, 0xbcb3fe53, 0x7fbcf9fd, 0x65bcc57f, 0x21138569, 0x0b830d02, 0x0e5e0527, 0x268e690e, 0x0880439e, 0xd4c82524, + 0x1384ac14, 0x00210983, 0x21c98302, 0xc9821607, 0x31002d3d, 0x17405d00, 0x0908081c, 0x1d04042c, 0x01050514, 0x2e090b0d, 0x242f0000, 0x82182801, + 0x21b32cc3, 0xb82fd311, 0x30b32b01, 0x820b0307, 0x2cb7270f, 0x05e10c1c, 0xd4830901, 0xd421d586, 0x054f46ed, 0x2f25ca84, 0x391233c6, 0x830a842f, + 0x303125e4, 0x21112321, 0x0383cd82, 0xe189d198, 0x23823720, 0x83050721, 0x32d890d5, 0x7755b8c7, 0x2443410a, 0xc9026a79, 0x03d0d011, 0x443efcc2, + 0xdd89065e, 0xcec2312b, 0x0e0eaa14, 0xbb288b6c, 0x05af41c3, 0x840a0721, 0x405626e5, 0x10102418, 0x08b34111, 0x13150128, 0x2c010011, 0xb241d22d, + 0x24b7270e, 0x0de11408, 0xde8a1101, 0x3f24dc83, 0x332f0133, 0x3921da84, 0x41dc8e2f, 0x172c28b6, 0xbc0a0737, 0x85a27576, 0xbdfe4901, 0x2b11b741, + 0x3f4edfe8, 0x6d05bc74, 0x2c8d6b14, 0x2e13b841, 0x07d0c031, 0x0000080b, 0xfe440002, 0x824e0459, 0x00252ad5, 0x404a0029, 0x1005240e, 0x34cd8210, + 0x27000026, 0xb8200d1c, 0x19b22c01, 0x01b827d3, 0x0f28b22b, 0x250d8213, 0xe11424b5, 0x8046e711, 0x24cf830a, 0xed3fedd4, 0x82c88501, 0x103323d5, + 0x8e4633c6, 0x16b04110, 0x35233725, 0x46420433, 0xfd2409a6, 0x7f7fbcf9, 0x220b9a41, 0x46d4d40c, 0x872509b7, 0xbf033efc, 0x0c95419e, 0x8800023d, + 0x8604e1ff, 0x0b00ef05, 0x23001700, 0x151509b6, 0x0c030f19, 0xb23701b8, 0x8212d906, 0x00b12306, 0x274700eb, 0x12332305, 0x98832f39, 0x1102202c, + 0x20211210, 0x02101112, 0x0b832201, 0x83323321, 0x0254080b, 0xf4f5fe87, 0x010c01f3, 0xfef5f50a, 0x8584b5f6, 0x858dacb4, 0x0171011f, 0x01960195, + 0xfe8efe72, 0xfe6dfe6a, 0xfe6d058d, 0xfeb4fee5, 0x01e0feb9, 0x01500118, 0x0019014d, 0xa0000100, 0xac030000, 0x0c00de05, 0x0c402400, 0x0d03030b, + 0x0606050e, 0x020bd809, 0x012c8083, 0xed3f00ea, 0x2f333f32, 0x01121133, 0x22088284, 0x21352121, 0x32352111, 0x11333736, 0xfcac0321, 0xfe2901f4, + 0x0f89b9d7, 0xa3220199, 0x5c8cd703, 0x83c5fa7c, 0x64200855, 0x42040000, 0x1500f005, 0x0c403000, 0x05111100, 0x0b141705, 0x08140501, 0xb33801b8, + 0x1402d90e, 0xed255d8a, 0x2f013912, 0x23e284c4, 0x3031c410, 0x3c086182, 0x34350000, 0x07222326, 0x33363523, 0x14150432, 0x04210100, 0x0122fc42, + 0x8f0601cc, 0x0ec8c881, 0x01dfcec8, 0xfec8fe06, 0xa50a036d, 0x6d019201, 0x7f8878a2, 0xbcdc68c1, 0xfe51fec5, 0x24d382bd, 0x04e1ff44, 0x387d820f, + 0x40470025, 0x22110014, 0x0d021622, 0x0d16111c, 0x1c11160d, 0x00072704, 0x247d8211, 0x051212b3, 0x23078219, 0x0bd91fb2, 0xb1210682, 0x056b4105, + 0x49062251, 0x2f22059c, 0x01823311, 0x31391231, 0x11040130, 0x22210414, 0x16373527, 0x82112033, 0x3523219c, 0x88070547, 0x065d08a5, 0x01c50207, + 0xfee2fe4a, 0x10c1e7fb, 0x4701dbc9, 0x33788d99, 0x7e90b29d, 0xcb0fc0d6, 0x0901d1d8, 0x2703899f, 0xe4cafe38, 0x01ba61f4, 0x7e42017c, 0x7892a38c, + 0xc07b7261, 0x87a4bc5e, 0x02001cb8, 0x00003900, 0xd1059c04, 0x0d000a00, 0x0d403500, 0x0b070209, 0x03030302, 0x01050d0f, 0x2fa38205, 0x06090a40, + 0x0c030d0d, 0xea03d807, 0x333f3f00, 0x332aab82, 0x0132ed33, 0x3911322f, 0xaa82172f, 0x21078048, 0x0c820135, 0x11212708, 0xde9c0401, 0x0235fdba, + 0xfedeb8cd, 0x01cdfd68, 0x014bfeb5, 0x5b03c1b5, 0x9e0281fc, 0x010062fd, 0xe1ff6100, 0x6f822704, 0x001b2a08, 0x100c403a, 0x07071717, 0x00120c1d, + 0xb80a0c0d, 0x14b33a01, 0xb8040e14, 0x1ab23901, 0x01b811eb, 0xd80eb138, 0x3fed3f00, 0x051162ed, 0x33c42f23, 0x27098211, 0x31c41033, 0x33353730, + 0x26081148, 0x21112307, 0x41112115, 0x2d0806b5, 0x11612223, 0xbea8cfbb, 0x9aa5b0c5, 0xfd69030c, 0xef766340, 0xd9fe1401, 0xbb37def6, 0x8ca7ba75, + 0xfd022b95, 0x125afea7, 0xfef5cfdd, 0xff8200ec, 0x8f828120, 0xed05a134, 0x21001600, 0x0a403800, 0x1d0c0c01, 0x0717231d, 0x8f822012, 0x0907b424, + 0x90821a09, 0x15b23724, 0x0f821ad9, 0x410fb121, 0x392508b0, 0x332f01ed, 0x488f8333, 0x022109b8, 0x28848803, 0x00101100, 0x02013221, 0x07b14112, + 0x0f044f08, 0xd1695f11, 0xe19318fa, 0xfe0c01ce, 0xfeffe4df, 0x017201e4, 0x91fd7952, 0x87a4b713, 0xb39aabb7, 0x28aed405, 0xfffef0fe, 0xe0dffd81, + 0x6401dffe, 0x95014901, 0xd1fcca01, 0xdefed5fe, 0xb49ca5c4, 0x4d000100, 0x22040000, 0x0600d105, 0xa9822400, 0x00020227, 0x04080303, 0x30a08200, + 0xd805b338, 0x3f00ea02, 0x0132ed3f, 0x2f39112f, 0x08028233, 0x01303125, 0x21012301, 0x22042135, 0x02db7afd, 0x03edfc9f, 0xfa1805d5, 0xa62b05e8, + 0x00030000, 0x04e0ff75, 0x84f3057f, 0x002d30f7, 0x171c404e, 0x0f0f1f0c, 0x000a1f2a, 0x82041922, 0x2a152c01, 0x15242f2a, 0x2207170c, 0x82271c00, + 0x12b229fb, 0x01b81ceb, 0xd907b139, 0x28069341, 0x39391239, 0x12332f01, 0x054a4739, 0x32240d82, 0x11331133, 0x79820782, 0x26263538, 0x33243435, + 0x14150432, 0x11041507, 0x22230414, 0x25103524, 0x544a3536, 0x06072307, 0xc2411415, 0x27560806, 0x60878301, 0xd4d70701, 0x01f50a01, 0xdfe7fe1c, + 0x02e8fefa, 0x7ea6b57a, 0x15bd9e82, 0x8f94b6ce, 0x03a88cb0, 0x9649061d, 0xd1d6a477, 0x0673f99a, 0xc1fdfe78, 0x01d3e8fa, 0xb574ae02, 0x607e7e67, + 0x6fa38768, 0x9aa68cd3, 0x3c7c757d, 0x6c000200, 0x8c04e3ff, 0xd982ef05, 0x36001f2d, 0x07120940, 0x1c211717, 0x411e0c00, 0x192006d0, 0x2605d041, + 0x01b819eb, 0x870fb137, 0x412f20cd, 0x332509d0, 0x35053031, 0x229c8233, 0x83063700, 0x348508b6, 0x00203300, 0x21001011, 0x21120122, 0x10150622, + 0x00013221, 0xd66b4d18, 0x91140101, 0xfffee1dc, 0x01e12301, 0xfe12010a, 0x6598fe8e, 0xfe1d7202, 0x01a98f94, 0xad059e4e, 0xf70a0126, 0xe4e2f66d, + 0xa3fe1d01, 0x5efeb0fe, 0x230343fe, 0xa3bc4a02, 0x0300bcfe, 0xa3fe8100, 0x26066804, 0x26001f00, 0x5a002c00, 0x1d162040, 0x1a132a1d, 0x09010328, + 0x04012010, 0x2a0d0202, 0x05242e2a, 0x09201a0d, 0x030a2713, 0x26ae8221, 0x1012b43a, 0x82092813, 0x02b32bc7, 0x00ea0300, 0xedcd333f, 0x04832f32, + 0x39391123, 0x058e4111, 0x23058f41, 0x1133172f, 0x33210282, 0x24cb8311, 0x24112311, 0x21d08227, 0x69691105, 0x61352005, 0x8608085a, 0x14151616, + 0x06110106, 0x16141506, 0x35241117, 0xb5022634, 0xaeeefe74, 0x0401aa14, 0xcdebbdfd, 0x0fa6da74, 0xc8ebc6ab, 0x81c4fee6, 0x01fd8291, 0xfe016c07, + 0x075a01a4, 0x0e68ae52, 0xa035cc01, 0x10d1968d, 0x3e0ff1f3, 0xfe0a66b5, 0x94ad2a4d, 0xf002db9c, 0x7909a501, 0xd45b5556, 0xd61444fe, 0x0000604e, + 0xfea40002, 0x052d0497, 0x001800c3, 0x4046001e, 0x17091012, 0x03171906, 0x14031818, 0x1c200b0b, 0x821a0f03, 0x0cb626d0, 0xf7060709, 0x28e48410, + 0x00131618, 0x323f00eb, 0x21dd8232, 0x6d44cd3f, 0x83d68305, 0x83d48303, 0x022628d3, 0x37123435, 0x62113311, 0x15220924, 0xe9820706, 0x04116f08, + 0x02161411, 0xfdf6ed87, 0xae8474e6, 0x898a9018, 0xc2701891, 0x9ad6fe74, 0x2e011414, 0x3b01f9ff, 0xfe4a0118, 0xb25708b7, 0x8cfc126e, 0x58a27112, + 0x01abfe12, 0x2a7303de, 0xeabb6ffe, 0x7a000100, 0x77040000, 0x1d00ee05, 0x11404800, 0x0e00001b, 0x1d0b1d0b, 0x04041506, 0x0006031f, 0x3b01b80c, + 0x0d0d1bb4, 0x01b81806, 0xd912b338, 0x07820307, 0x4606b121, 0x0d5905b1, 0x071a5406, 0x2f393923, 0x065e4a2f, 0x1507022f, 0x35211521, 0x35353636, + 0x11333523, 0x6d431834, 0x20540807, 0x15211111, 0xd7070d02, 0x03fc4803, 0xb0b0647a, 0x9aa5d3f4, 0xfea48111, 0x029001e7, 0x7dc8fe66, 0x31cca60b, + 0x8501b2b6, 0xf7d33901, 0xfe5ec841, 0x85e3fec5, 0x75000200, 0x6e049800, 0x1b009104, 0x1e002700, 0x20250d40, 0x19190119, 0x04220b1f, 0x00121c04, + 0x2f217482, 0x36848233, 0x335d2f33, 0x07253031, 0x22230627, 0x37270727, 0x37343526, 0x83173727, 0x1737277b, 0x14151607, 0x20190107, 0x24080a66, + 0xe8636e04, 0x5062634e, 0x32ea62e9, 0xe961e933, 0x4f61654d, 0x34e861e9, 0x50ebfe33, 0x53526c6e, 0x63fb706d, 0x081982e8, 0x4fe9624b, 0xea4d6462, + 0x3233ea62, 0x51e862e8, 0x014d6461, 0x53516e71, 0x51506f6c, 0x0001006e, 0x05000050, 0x00d10513, 0x40690018, 0x15151617, 0x180a0b17, 0x00060200, + 0x130f0a03, 0x0b0b030a, 0x0d091a19, 0xb43b01b8, 0x050e060e, 0x37088211, 0x02121740, 0x7f151217, 0x020e8f0e, 0x0e01122f, 0x0b120e12, 0x0bd81518, + 0x2d066b46, 0x5d2f2f39, 0x3912115d, 0x32ed1032, 0x04833311, 0x39011222, 0x2105dc42, 0x1783332f, 0xe2822f20, 0x15010123, 0x22018621, 0x86213523, + 0x33013401, 0x13050101, 0xa701f9fd, 0xa5015bfe, 0xfeb55bfe, 0x82a6015a, 0xfda83103, 0x9601cef5, 0xd1059a01, 0x7f51c2fc, 0xafaf7f95, 0x3e260482, + 0x67fd5103, 0xbf829902, 0x00006424, 0xbf826504, 0x00112308, 0x11114050, 0x020d110d, 0x0f130808, 0x0601010b, 0x04000204, 0xb34901b8, 0x0e050f05, + 0xb63701b8, 0x0182050b, 0x820a0221, 0x07b3210a, 0x53067b45, 0xed20054a, 0x684ca884, 0x11332206, 0x051e4533, 0x01303129, 0x23112311, 0x18113335, + 0x08088248, 0xb2011520, 0x038d8dc1, 0x024dfd74, 0x01b8fd48, 0xfe250165, 0x8a2501db, 0xfea32204, 0xcefea154, 0x8d42008a, 0x00283b0a, 0x20184073, + 0x12262600, 0x0928220c, 0x280c280c, 0x04041906, 0x030a102a, 0x83820006, 0xb43b2108, 0x230b260b, 0x3b01b810, 0x20110e40, 0x1f110f11, 0x110b0211, + 0x1c06110b, 0xb33801b8, 0x0307d916, 0xa742a782, 0x2f39230a, 0xa6845d2f, 0x01240484, 0x32c4332f, 0x3320a882, 0x3921c084, 0x83b48211, 0x20b28202, + 0x06b84206, 0xb8823720, 0x4d05bc42, 0x15270504, 0x20232623, 0x82150603, 0x154208cb, 0x15210714, 0x8e33f001, 0x03fc4803, 0xad9e27a5, 0xf6b0b003, + 0x11a09fd1, 0xf8fea77e, 0x9701030e, 0x010469fe, 0xcec8019b, 0xc7a10c4d, 0x1880b849, 0x9d807136, 0xc341f8d2, 0x03dafe5a, 0x2d708094, 0xe7828022, + 0xff222008, 0x059904e4, 0x002b00ed, 0x1e144071, 0x05171e17, 0x2d0f0f27, 0x1b1b1620, 0x000a0108, 0x82012005, 0x02b425da, 0x0819021d, 0x40320882, + 0x09160911, 0x11022926, 0x01022009, 0x09020902, 0xe682230d, 0xeb29b223, 0x21068213, 0xa0460db1, 0x22e48308, 0x82121139, 0x073e42d0, 0xea82e982, + 0x2f20df85, 0x3129ee85, 0x37231330, 0x34352633, 0x24068237, 0x32330012, 0x06845017, 0x21072126, 0x17141506, 0x66080682, 0x32331616, 0x06153337, + 0xac002223, 0x04492e89, 0x5e2f7804, 0xfb550134, 0x9d119acc, 0x33eea6b5, 0xfe300c02, 0x0104050c, 0x8dfe2fba, 0xd3a7ec24, 0xdea70e93, 0x02b5feee, + 0x30218214, 0x01822e35, 0x4d200101, 0xb5bf6bcb, 0x2f283b82, 0xd2b28222, 0x0154c46c, 0x01000027, 0x35fff8ff, 0xe8054604, 0x25002300, 0x820f00b1, + 0x21b433d9, 0x1d0a1010, 0xb23901b8, 0xb90ad917, 0x04003a01, 0x00492f00, 0xed332705, 0x01303132, 0xb4520603, 0x29908205, 0x23133736, 0x37363335, + 0xb289023e, 0x21075608, 0x61830215, 0x39b2b72b, 0x4f460c5d, 0x5b1c5b5f, 0x180df1dd, 0x91b04017, 0x49105853, 0x1b556a57, 0x023b0124, 0xedecfdf4, + 0x199d12be, 0xf5019a9a, 0x74775780, 0x9f1387ab, 0xc3968219, 0x00020080, 0x04e3ff8c, 0x007b049e, 0x0012000a, 0x1108b623, 0x020d1411, 0x218f830b, + 0x9f82f705, 0x1d4c3a20, 0x10112512, 0x00323300, 0x03240582, 0x21101120, 0x47080382, 0xf7fd9502, 0xfdfb0e01, 0xf3fe0c01, 0x01b9fefc, 0x1d480147, + 0x20014802, 0xcdfe3001, 0xe5fee2fe, 0xfe03d4fe, 0x4cfe4afe, 0xb501b501, 0x93000100, 0x8a030000, 0x0c007c04, 0x0bb22100, 0x01b80503, 0x0606b53a, + 0x020bf709, 0xb1207582, 0x26080b4c, 0x332f01ed, 0x4c213031, 0x36200508, 0x3505084c, 0x0109fd8a, 0xa7defe22, 0x0195158e, 0xb9029b18, 0x53430191, + 0x094c1ffc, 0xd8033406, 0x15007704, 0x0f403400, 0x05111100, 0x05010b0b, 0x4c141705, 0x3724050c, 0x14f70eb2, 0x3f225d88, 0xc64811ed, 0x4f2f2008, + 0x21220634, 0xa9480035, 0x05674b05, 0x15162b08, 0x21050014, 0x8cfcd803, 0x7ac6ae01, 0x0bafae71, 0xdac8c1b8, 0xc0fef6fe, 0x019b8202, 0x546de433, + 0x4ca65567, 0xfe9f8ea4, 0xd182d0c2, 0xfe302c08, 0x04e6034f, 0x0027007b, 0x00144050, 0x18242413, 0x1818131e, 0x08031e13, 0x290f0f03, 0xb8130008, + 0x0ab73701, 0x14211e06, 0x821b0614, 0x21b2230b, 0x06820cf7, 0xf906b122, 0x25065949, 0x1239122f, 0x9582ed39, 0x2f391223, 0x05154c33, 0x12259882, + 0x01303139, 0x238b8316, 0x35272023, 0x4c08ff4a, 0x20820f14, 0x07064708, 0xb69b9502, 0xffe9eefe, 0xba0fbb00, 0xaeab97ec, 0x99498a91, 0xc9768fb3, + 0xd2ca0ebf, 0x8593f6c3, 0xd016bb01, 0xf8fee39b, 0xb379ba5d, 0x9ea086a0, 0x7264748f, 0xb962b97d, 0x1db681a5, 0x39000200, 0x980453fe, 0x134c7d04, + 0x4c3a2016, 0xf7210813, 0x4cb28203, 0x25251413, 0x11231123, 0x08134c21, 0xe0982608, 0x0239fdb8, 0xfee0b5ca, 0x40dffd69, 0xed0113fe, 0xfc9603a7, + 0xfdc60259, 0x0100003a, 0x4ffe7100, 0x5c041804, 0x07134c00, 0x07070c27, 0x0d121d00, 0x0d134c00, 0xb811f927, 0x0eb13701, 0x072541f6, 0x2f01ed2f, + 0x1211332f, 0x33392f39, 0x30313311, 0x09134113, 0x134c2220, 0x712b080f, 0x9fd1b111, 0x92a6c5b5, 0x47030c9e, 0x6b615cfd, 0xfe1301e5, 0xfedbf8eb, + 0xbb6fb7a1, 0x2aaf93ab, 0xfe9ff502, 0xe1f01254, 0x82ecfeef, 0xff743aff, 0x057f04e4, 0x001500ed, 0x403c0020, 0x0c0c010c, 0x22111c1c, 0x11161607, + 0x0c444a1f, 0x19d91422, 0x2012154c, 0x84948411, 0x15013093, 0x22232623, 0x33360700, 0x14151232, 0x4c202300, 0x48080f16, 0x5710f903, 0xfafec46f, + 0xcdbbb919, 0xe6f2fefe, 0x6e01e9fd, 0xfd6e5001, 0xa8b7139c, 0x94a6a68b, 0xacd805b5, 0xdcfafe24, 0xecf6fe86, 0x02dcfef6, 0x019701aa, 0xfefcfcc8, + 0xceccfec0, 0x00bfacaf, 0xfe350001, 0x04df0388, 0x11134c5d, 0x05b33725, 0x4cf802f6, 0x033c1613, 0xcf79fddf, 0x0dfd9f02, 0xac03aa03, 0x3605dcfa, + 0x0300009f, 0xdeff6700, 0xf3056c04, 0x2c30f784, 0x1d405000, 0x1e0e160b, 0x091e290e, 0x03182100, 0x142d0182, 0x232e2929, 0x1b210014, 0x06160b11, + 0x28fa8226, 0x1beb11b2, 0xb13901b8, 0x05734506, 0x4c09864a, 0x352b1715, 0x32332434, 0x07141516, 0x4c150415, 0x17201114, 0x080b144c, 0x01df7855, + 0xfdc9d207, 0xfe2401f0, 0xfeeeeeec, 0xb67202eb, 0xa17f7ca3, 0xb8ce0d9a, 0x8aaf8b96, 0x061e03a8, 0xdaa5e56b, 0x70fd9bd0, 0xcdf47e07, 0x01cde9f7, + 0xbe6fa908, 0x63787f68, 0x73a48e60, 0x9ba98dd2, 0x3c80747f, 0x00020000, 0x0461fe73, 0x0077048c, 0x4c210016, 0x23230711, 0x4d0c001d, 0xf9210ee2, + 0x21ca831a, 0x5f42f70f, 0x0c114c07, 0x33350126, 0x12323316, 0x2111114c, 0x45492302, 0x01700806, 0x67501806, 0x9014ffd7, 0x00ffdfdd, 0x01db2401, + 0xfe120108, 0x76abfe98, 0xa90f6b02, 0xaea78fb9, 0x7afeb09b, 0x120126ae, 0xe4fc6ff5, 0xfe2001dd, 0xfeb2fea1, 0x0336fe61, 0x0140011b, 0xa5a6be20, + 0x000300b0, 0x03d1fe81, 0x003605fe, 0x0024001e, 0x405a002a, 0x1c1c151c, 0x26191228, 0x0f090103, 0x0204011f, 0x28280d02, 0x0d05222c, 0x18030a25, + 0x492ebe82, 0x1f190940, 0x0f101226, 0xb82609f6, 0x164c4901, 0xcd3f2a0a, 0x39391233, 0x391132ed, 0x06a84e39, 0x38491220, 0x05e34406, 0x23112523, + 0x0f401811, 0x35262207, 0x0a6f6d10, 0x0807144c, 0x16141565, 0x35361117, 0x7e022634, 0x119dec74, 0x9ceadca0, 0xba748101, 0xab9d0d9a, 0xfec9b7cb, + 0xee6eeed9, 0xfe0255dd, 0x052f01cf, 0x095fa646, 0x862f6e01, 0x1f12017a, 0x360adedf, 0xfe0758a6, 0x7e9322a9, 0x7c02b485, 0x910e4701, 0xfeb7484b, + 0x40a60d9e, 0x0002004f, 0x03edfe7b, 0x007105d5, 0x001d0018, 0x4c134051, 0x14270a0d, 0x1c1f0b0b, 0x82001603, 0x19b425c8, 0x1a0f1910, 0x40250882, + 0x0609060a, 0x24018219, 0x00081808, 0x054a492f, 0x820cb848, 0x113321d5, 0x3324da85, 0x25303133, 0x081b184c, 0x4402106e, 0xd7f2f0d9, 0x16908e73, + 0x5fa9a563, 0x73be6016, 0x1043eafe, 0xd2d90001, 0x01140c01, 0x09aefe53, 0x10439941, 0x42173cfd, 0xfe10448d, 0x02de01aa, 0xc1fe21c4, 0x0000befe, + 0x00790001, 0x04160400, 0x001c007b, 0x1a14404c, 0x090d0000, 0x1c14141c, 0x04060309, 0x030b1e04, 0xb80b0006, 0x1ab43b01, 0x17060c0c, 0xb33901b8, + 0x0307f711, 0x1a4c0782, 0x11c42211, 0x06855b33, 0x21443320, 0x07162605, 0x21152515, 0x0b5d4927, 0x23174808, 0x15222326, 0x01152115, 0x02ad04df, + 0x0164fce0, 0xbf9d9dc0, 0x017983a8, 0xd17d610c, 0xd7014601, 0x020b63d1, 0xc244b29a, 0xa3d4781f, 0x3da831b5, 0x0078bbd5, 0xa3000200, 0x17047700, + 0x1b00ea03, 0x1a002700, 0x4c250a40, 0x134c1314, 0x6317322b, 0x656253a1, 0xa362a252, 0x61a33634, 0x5f6353a2, 0x08068255, 0xfe353648, 0x757354e8, + 0x73705752, 0x34a163da, 0xa162a235, 0x50666056, 0x35a361a3, 0xa261a134, 0x53626452, 0x55727d01, 0x54736e59, 0x01007255, 0x00007c00, 0x5d045004, + 0x7f001800, 0x15161e40, 0x0d0d1115, 0x040a0b17, 0x1a4c0808, 0x121e321e, 0x15121702, 0x0e1f0e0f, 0x12030e2f, 0x480f0c40, 0x08214c20, 0x214cf620, + 0x4c2b200b, 0x11241622, 0x2f331133, 0x2106264c, 0x294c1132, 0x5004301b, 0x7c016cfe, 0x7a0186fe, 0xfeae86fe, 0x827b0185, 0xfe7d3b03, 0x1d01ce6a, + 0x5d042301, 0x782bb0fd, 0x8888776b, 0x20786b77, 0x4afe5b02, 0xd582b601, 0xd5824720, 0xd5820a20, 0x5b001122, 0x2014294c, 0x06294c3b, 0x0f40492b, + 0x1f050f0b, 0x0b2f0205, 0x07324c01, 0x07b33923, 0x05ae51f6, 0x39391227, 0x5d5d2f2f, 0x17344c10, 0x23152523, 0x0a344c35, 0x1521153d, 0x81b88001, + 0xfd420381, 0xfd1f0276, 0xca5401e1, 0x0376caca, 0xb9fe9b1d, 0x8276b289, 0x82772095, 0x04003a95, 0x0028007c, 0x201b407d, 0x12092400, 0x220d0324, + 0x19280d28, 0x030d2819, 0x15324c06, 0x2011152f, 0x4f113f11, 0x0b0f0211, 0x0b2f0b1f, 0x07394c03, 0x16b33722, 0x8410c642, 0x0c8143ae, 0x4232c421, + 0x112008d2, 0x20057550, 0x0e394c33, 0x27353722, 0x230a7c58, 0x06222326, 0x080a394c, 0x7129c33c, 0x77fcd702, 0x9b8b2095, 0x9a9b0101, 0x8287acbe, + 0x5c8a670f, 0x56011963, 0x0104aafe, 0x8358015a, 0xb19a0734, 0x1d617730, 0x7162441f, 0xac31c2ae, 0x787e4e40, 0x1c204462, 0xf1820061, 0xe4ff3e24, + 0xf182fc03, 0x002e4008, 0x20354072, 0x071b201b, 0x3014142a, 0x1f1f1a23, 0x000f010a, 0x01012307, 0x0a1d051f, 0x500e1a0a, 0x02056005, 0x3f01050f, + 0x020e4f0e, 0x1d010e2e, 0x0e05010e, 0x26120e05, 0xb24901b8, 0x8218eb2c, 0x12b12106, 0x8407fc45, 0x5d5d25e6, 0x3333115d, 0x0483d482, 0x28163a4c, + 0x37363736, 0x37262733, 0x33088423, 0x32332436, 0x26230717, 0x21032023, 0x17062107, 0x21070621, 0x08053d4c, 0x2306177a, 0x84c22422, 0x06190504, + 0x08030251, 0x0d070f78, 0x0122560a, 0x7d9ed723, 0x907a0e04, 0x0138dafe, 0x60fe25b6, 0x8d010506, 0xa3fe051f, 0xb98ab111, 0x96040c69, 0xf8fecdac, + 0x0d089501, 0x2a1b083e, 0x1e101e46, 0x3ae4c20f, 0xe4fe4fa0, 0x5354355b, 0x4f9c8c07, 0x00e03c9e, 0xffa6ff01, 0x04fc0303, 0x0023008b, 0x1000b124, + 0xb43b01b8, 0x0b111121, 0x4901bc1d, 0x0b001600, 0x04220582, 0xad692f00, 0x07464c0b, 0x474c1720, 0x36372108, 0x08059350, 0x23262774, 0x07070622, + 0x2f021521, 0xc9c12840, 0x350a5f38, 0x63663438, 0xf1dd3b26, 0xb4ce250f, 0x3a105f58, 0x6b673341, 0x40010a1e, 0x8cfe2202, 0x9812c2e9, 0xcd6f0f0e, + 0x577b5601, 0x9813c3d4, 0x9f880e0f, 0x02007b39, 0x00003000, 0x5d049a04, 0x0a000700, 0x12404300, 0x09020801, 0x04050700, 0x07030a0a, 0x020c0606, + 0x01b80103, 0x0808b43f, 0xbb040a03, 0x25821b01, 0x19010327, 0x3f333f00, 0x05ea5533, 0x8c4e3320, 0x33112105, 0x39200f82, 0x08055054, 0x23032124, + 0x23013301, 0x03032101, 0x7309fe5d, 0xd5ca01c3, 0xfdc9cb01, 0xcd9901c4, 0xe2fe1e01, 0xa3fb5d04, 0x6482a401, 0x00030023, 0x207b82b9, 0x2d7b823a, + 0x0014000c, 0x4048001c, 0x0609040d, 0x01820f18, 0x1c141e30, 0x01b80c1c, 0x061db24c, 0x4001b81b, 0x1f8214b3, 0x3f01be24, 0x7c820c00, 0x01132308, + 0x0100003e, 0xed3f001b, 0x3911ed3f, 0x0139ed2f, 0x1132e610, 0x39391133, 0x39122f2f, 0x30313332, 0xb8482113, 0x10700807, 0x32012121, 0x23263435, + 0x32131123, 0x21343536, 0x01b91123, 0xb1c8ef73, 0x2afe0801, 0x850155fe, 0x9ca27be8, 0xfe9eb2c1, 0x5d04f1e0, 0x33ba7d81, 0xfede3709, 0xaa9302ac, + 0xc4fe4a48, 0x6d64f1fd, 0x0068fec7, 0xff7e0001, 0x047304ec, 0x00170071, 0x000eb531, 0x13071900, 0xb44d01b8, 0x10020c18, 0x3c01be04, 0x1c011600, + 0x3d010a00, 0x1a011000, 0x12219584, 0x55938539, 0x152105da, 0x089d5f23, 0x15333724, 0xa1542306, 0x324a0805, 0xad127304, 0xd8d5badc, 0x149fe3bc, + 0xedfee5ba, 0x4901bdfe, 0x04dc0d01, 0xe184bf0e, 0x7bddc9c5, 0x3a0168ae, 0x04010701, 0x00004001, 0x00b90002, 0x04c30400, 0x0008005d, 0xb52c0010, + 0x120e0e05, 0x0a41000a, 0x11004c01, 0x79820900, 0x1b010122, 0x00228184, 0x81841901, 0xe6100124, 0x7e841132, 0x21113322, 0x2c087085, 0x32331103, + 0x21103524, 0x015501b9, 0xfe5f0156, 0x9fcffe82, 0x0701f28c, 0x5d0410fe, 0xf1fedffe, 0xe4feeffe, 0xd6fcc203, 0x9301cacd, 0x82f38200, 0xf2032171, + 0x0b2e7182, 0x09405300, 0x00000408, 0x0a0a060d, 0x7282bb01, 0x72820c20, 0x15403e28, 0x06500640, 0x04820002, 0x0306602c, 0x06d006c0, 0x0a060602, + 0x8c82be05, 0x8c860220, 0x8c860120, 0x2f391226, 0xed72715d, 0x33299384, 0x332f3311, 0x21303133, 0x095d5121, 0xfcf20335, 0xfd3903c7, 0xfd680283, + 0x047d0298, 0xe3fe965d, 0x877afe8f, 0x82cc2083, 0x00092983, 0x04094039, 0x0b000004, 0x07206482, 0x0a2a8383, 0x3d010500, 0x070202b3, 0x7182bc01, + 0x71820820, 0x6d830720, 0x42068158, 0x2f250610, 0x30312f39, 0x33698501, 0x03211123, 0x02a8fdcc, 0xbbf5fd0b, 0xc7031303, 0xfd94dbfe, 0xe982de83, + 0xff7f2808, 0x04ba04e9, 0x001a0071, 0x180b4046, 0x000b1618, 0x1c161600, 0x01bb0511, 0x001b004d, 0xb53e0118, 0x1919080c, 0x84be0e02, 0x001c2669, + 0x003e0114, 0x08ea4102, 0x39122f22, 0x3921da85, 0x20dc822f, 0x20728311, 0x08e44125, 0x0806a150, 0x16141538, 0x35373233, 0x04213521, 0xfef3cbba, + 0x01a8fedb, 0xe8190150, 0xded212d5, 0xd4deddc6, 0xb9fe73b1, 0x6b54eb01, 0x0d013901, 0x3e010401, 0xe176a962, 0x3de7d5c8, 0x87418af9, 0x61043105, + 0x0b005d04, 0x09403900, 0x01010009, 0x0404080d, 0x4c2f9b82, 0x03000c00, 0x08b43c01, 0x060a0508, 0x821b01bb, 0x4305202a, 0x03410b9a, 0x33332107, + 0x39085b5e, 0x11211133, 0xbe610433, 0xc0c0d6fd, 0x02be2a02, 0x04effd11, 0x0155fe5d, 0xdd4f00ab, 0xac022105, 0x332f6784, 0x00080c40, 0x01050a0a, + 0x0d0c0303, 0x82bf0509, 0x820620ee, 0x820a205f, 0x823e20f4, 0x0019247f, 0x8232ed3f, 0x12112a02, 0xcd2f3901, 0xcd103332, 0x3b618232, 0x11333521, + 0x15213523, 0x02331123, 0xade7fdac, 0xad1902ad, 0x3d0390ad, 0xc3fc9090, 0x42245d82, 0x9802f0ff, 0x0f2e5d82, 0x09402a00, 0x00040d0d, 0x04110b0b, + 0x5a82be0d, 0x5a820e20, 0x3c010822, 0x25085141, 0x39122f01, 0x0382332f, 0x01303125, 0x4f222110, 0x5c83073f, 0xfe980239, 0x14617681, 0x58755560, + 0x01bd01fd, 0x1e97fe59, 0x8e7523a1, 0x41913d02, 0xbd200627, 0x3d39bf84, 0x020b0e40, 0x0a0a0209, 0x0d000001, 0x05040408, 0xb54c01b8, 0x0508020c, + 0x10274109, 0x2005a743, 0x05707633, 0x07823920, 0x2323c982, 0x82110701, 0x01113dc5, 0xbd040133, 0x8b2dfee7, 0x2102bfbf, 0x0112fede, 0x84fe81fd, + 0xd1fd5d04, 0x0efe2f02, 0x20079d42, 0x2d7182c2, 0xb4240005, 0x04070505, 0x4c01bf01, 0xc8820600, 0x04001b24, 0x29413d01, 0x423f2006, 0x2f2005f6, + 0x212f5882, 0x21113311, 0xf7fcc203, 0x044802c1, 0x863efc5d, 0x2c052143, 0x0c254382, 0x09403e00, 0x2433820b, 0x0606090e, 0x2cb08207, 0x020d0b40, + 0x0a080505, 0x0b070404, 0x05de4108, 0xde410720, 0x21a98209, 0x59853311, 0x43391121, 0x40180550, 0x05360b31, 0xb5feb82c, 0xaeb3fe75, 0x014b01ee, + 0x8803ec4e, 0x700290fd, 0xbc8278fc, 0x82027e2a, 0xba000100, 0x67040000, 0x092d7582, 0x09403300, 0x07070001, 0x0303060b, 0x2b758204, 0x02080ab3, + 0x1b01b805, 0x010107b3, 0x19220f82, 0x69823f00, 0x8f333f21, 0x1101226a, 0x2f7e8223, 0x67043311, 0xadd4fdd4, 0xae2202dd, 0x9efc6203, 0x2a08d382, + 0x005703a9, 0x7f000200, 0xff04e9ff, 0x0b007404, 0x2c001700, 0x151500b5, 0x41060f19, 0x004d010a, 0x010c0018, 0x0109003d, 0x8212001c, 0x43032007, + 0xad440644, 0x10012609, 0x00202100, 0x20058435, 0x0bf35625, 0xfeff3108, 0xfefafec5, 0x01cafef7, 0x0101013e, 0xfd3e0103, 0xcac4b7bf, 0xc6c5b5b2, + 0xfcfe2e02, 0x4701bffe, 0x010001fe, 0xaebafe46, 0xefc1cde2, 0xe9c6cee2, 0xb9248783, 0xe4030000, 0x0a32e782, 0x36001100, 0x0f0f07b7, 0x01010c13, + 0x4c01bb02, 0x88821200, 0x82b33e21, 0xbc0b2923, 0x03003e01, 0x02001b01, 0x20123f44, 0x050b5633, 0x32212d08, 0x04141516, 0x33110323, 0x21343520, + 0x01c07901, 0xfef9e44e, 0x859ad2fd, 0xddfe2b01, 0x6dfe9301, 0xaab25d04, 0x3a02c2ac, 0xd4de4efe, 0xfe23ff83, 0x820005cf, 0x162208ff, 0x45002200, + 0x14060c40, 0x0b002014, 0x2420200b, 0x01b80e1a, 0x0023b34d, 0x0a41170b, 0x11003d01, 0x77821c01, 0x08003e24, 0x85821d00, 0x81830b20, 0xeddded25, + 0x4212ed3f, 0x39240597, 0x3311392f, 0x5406044e, 0x262c08d8, 0x11000427, 0x20210010, 0x02141100, 0x080b1758, 0x0f91032b, 0x174157ad, 0xa88f7366, + 0xfee7fe06, 0x013f01b2, 0x01040101, 0x7cfebe3d, 0xb3c7c5b4, 0x0ec9c3b8, 0x1a8a17b2, 0x01128c9c, 0x31178245, 0xfe400106, 0xc6fbfebf, 0x9203e1fe, + 0xeebfd0df, 0x3341cce1, 0xb1043808, 0x0c005d04, 0x4c001300, 0x0c021040, 0x0a040a0c, 0x00011111, 0x430e1500, 0xb222054b, 0xc6820c14, 0x03b34026, + 0xbd0d0503, 0x21061c44, 0x7c440001, 0x47bb8206, 0x33270992, 0x2f39332f, 0x82121133, 0x30312fc6, 0x23012321, 0x21112311, 0x14151632, 0x4b410107, + 0x04410805, 0x81fef0b1, 0x8801c0c9, 0xfef2e8c6, 0x16019e7c, 0xb801f8fe, 0x5d0448fe, 0x52ed94a4, 0x65fee801, 0x0000bcdf, 0xff6e0001, 0x040e04ec, + 0x00240071, 0x130d4032, 0x06062020, 0x0d001926, 0x04101906, 0x247f82be, 0x001a0123, 0x22078216, 0x471c0110, 0x3160087e, 0x35372c0a, 0x20331633, + 0x27263435, 0x57262627, 0x45080914, 0x14150622, 0x021e1716, 0x23041415, 0xb7176e20, 0x711701f2, 0xa1be47bf, 0xd1d9c1fc, 0x75e8a317, 0xb7c35b8a, + 0xf5fe64a0, 0x45f7fecb, 0x41b87eb0, 0x2b102d44, 0xbe8d7694, 0x6168a64e, 0x26523c48, 0x5f7d4125, 0x9d83b8a2, 0x00002f3b, 0x5d044a04, 0x20000700, + 0x030302b6, 0x05010908, 0x003d01bc, 0x001b0106, 0x05544203, 0x3a05056b, 0x01303133, 0x11231121, 0x04213521, 0xbf53fe4a, 0x1b0451fe, 0x3cfcc403, + 0x8299c403, 0xffae24e3, 0x825e04e9, 0x000f2c45, 0x0d00b722, 0x0609110d, 0x82bc070e, 0x010b2242, 0x2046823c, 0x21d9831a, 0x49680133, 0x142a0808, + 0x26222306, 0x11331135, 0x11202110, 0x5e043311, 0xeee9e2f7, 0x011901be, 0x9901be1b, 0xd1e0e3cd, 0x56fdc302, 0x2a01d3fe, 0x5b82ad02, 0xa1823020, + 0x5b826e20, 0x2b000632, 0x01020d40, 0x06030505, 0x04080000, 0xbb030603, 0x05206182, 0x2105fb42, 0x5f833f33, 0x2f331127, 0x11391132, 0x6fac8333, + 0x043505c0, 0xd149fe6e, 0x01c74afe, 0x0460015c, 0x04a3fb5d, 0x0376fc5d, 0x2455828a, 0x0600005c, 0x0855824f, 0x45000c31, 0x04051940, 0x03090a08, + 0x0b0b0102, 0x06030803, 0x0e00000c, 0x09030607, 0xb806030c, 0x0bb41b01, 0x05020808, 0x001901b8, 0x1133333f, 0x87173f33, 0x17122168, 0x6c826983, + 0x03266f87, 0x33012303, 0x02821313, 0xfe4f062f, 0xfaf9cdcd, 0xbbcbfecb, 0xf8bdfce9, 0x237983e9, 0xa5fc5b03, 0x8a267d82, 0x8bfc7603, 0x81827503, + 0xd7824320, 0x81825d20, 0x36000b3a, 0x04011540, 0x0707030a, 0x03020905, 0x05050603, 0x0b0b000d, 0xba0b0908, 0x0920df82, 0x3f227883, 0x204c2f01, + 0x23068505, 0x17113912, 0x0925e282, 0x01013302, 0x08028423, 0x011f0126, 0xc83c013a, 0x9c0164fe, 0xfec4fed2, 0xa401c8bc, 0x5d0466fe, 0xa90157fe, + 0xccfdd7fd, 0x51feaf01, 0x2d023002, 0x24207582, 0x3e207582, 0x08237582, 0x83402000, 0x0a09256d, 0x05080307, 0xee416983, 0x82332005, 0x060f635c, + 0x11010125, 0x82011123, 0x3e043a63, 0xfec356fe, 0x4301ce53, 0x5d044201, 0x2ffe74fd, 0x9702c601, 0xed0113fe, 0x20518200, 0x20518286, 0x3351823b, + 0x402f0009, 0x0700030a, 0x04080b07, 0xbf040701, 0x05003d01, 0x0222c082, 0x4f460800, 0x3f322308, 0xca8532ed, 0x3f05f645, 0x21013521, 0x01152135, + 0xfc3b0421, 0xfdc3024b, 0xfd860358, 0x98df0235, 0x9a972e03, 0xffffd2fc, 0x2505df4b, 0x26028c06, 0x6a82fb03, 0x8d00063e, 0x170000e3, 0xb80d02b1, + 0x09401d01, 0x6e0d0226, 0x06030b0d, 0x35112b25, 0x00352b00, 0xd9282f92, 0x190000dc, 0x0e0e02b2, 0x11223086, 0x30881101, 0x31923482, 0x84e0d621, + 0x860f2061, 0x060f2230, 0x2161920f, 0x9188db05, 0x00db8e29, 0x03b31d00, 0x83101002, 0x260a2731, 0x02110203, 0x94850e11, 0x11219582, 0x28979435, + 0x0000ea43, 0x0c02b21b, 0x2034820c, 0x23c782b2, 0xb4acffb8, 0x998aca89, 0x88d10521, 0x82d82069, 0x84cb8269, 0x21fc8433, 0x67860d01, 0x822b0021, + 0x00430831, 0xfe300002, 0x049d055f, 0x0016005d, 0x40550019, 0x180a1717, 0x0c0d0708, 0x0e091919, 0x0505110b, 0x0e0e0707, 0x090b0a1b, 0xb43f01b8, + 0x190b1717, 0x1b01be0c, 0x0b000f00, 0x13001901, 0x1e010200, 0x4d333f00, 0xd6500e1a, 0x4d392006, 0x312a0720, 0x23060130, 0x34352622, 0x274d0337, + 0x15063106, 0x37323314, 0x03210133, 0x4a5f9d05, 0x7411a98b, 0x3108344d, 0x31ad092f, 0xf8fb0855, 0xfecd9901, 0x909d1a79, 0x404d4430, 0x39322907, + 0x8c0223a0, 0x03000902, 0x0806df41, 0x10008720, 0x1f001c00, 0x19405a00, 0x1f0c0c1a, 0x01060614, 0x1e00021d, 0x1f040e10, 0x0f10031f, 0xc84d210f, + 0x0a402c05, 0x11031d1d, 0x1f0e0409, 0x82bb1703, 0x441020bb, 0x332505a1, 0xc433173f, 0x15d14d32, 0x332f3322, 0xb882c483, 0x9418b083, 0x072208df, + 0x7c462301, 0x09ed4d0b, 0xcdbda534, 0xdbcb9391, 0xfec9a101, 0x767657a5, 0x77765757, 0xfb4dc9fe, 0x63042e07, 0xc5c390cd, 0xfc60de8e, 0x7401060a, + 0x231f8359, 0xa3fb7756, 0x0021c882, 0x20c98604, 0x08d382b7, 0x2000143c, 0x67002300, 0x121e1e40, 0x0c182312, 0x0821070c, 0x23052206, 0x140a0200, + 0x23230302, 0x04040509, 0x07090825, 0x403f01b8, 0x09212111, 0x02020303, 0x140a0f15, 0x1b040f23, 0x67440905, 0x172f2105, 0xb983b882, 0x1584d58c, + 0x39121123, 0x89028239, 0x230725d8, 0x03230137, 0x0320de8d, 0x2a0a7d48, 0x03032101, 0x9595f37c, 0x41c91102, 0x9b30059c, 0x7373a178, 0x38987ba0, + 0x38364b49, 0xf6fe4848, 0x063fdf82, 0xf9cdcdb7, 0xfe1e0149, 0x41ea03e2, 0x908f6e89, 0x0141896d, 0x3b374a4b, 0x36384c49, 0x826ffc4b, 0x082b43e3, + 0x91425320, 0xced72708, 0xb1190000, 0xc4421402, 0xb8182505, 0x18b4f6ff, 0x080a2d43, 0x00020033, 0x0600002e, 0x005d043b, 0x0013000f, 0x10164067, + 0x13030100, 0x110b0b07, 0x020e0e13, 0x0d090404, 0x0201150d, 0x3e01bb00, 0x0a001000, 0x07b63e01, 0x2d018210, 0x0a410b03, 0x0e003d01, 0x06001901, + 0x09821300, 0x210ae048, 0xa37f3f32, 0xed102305, 0x0061ed10, 0x2f332506, 0x392f3912, 0x4f051e45, 0x032405c3, 0x15210123, 0x3e09a24d, 0x23112125, + 0xbea59101, 0x2d04e001, 0x4202aafd, 0x5602befd, 0xa0fef4fc, 0x01a96001, 0x4d78fe88, 0x952507b2, 0x018d8801, 0x84e582b1, 0x8c062eb3, 0x1f042602, + 0x07010000, 0x7e018d00, 0x20e78400, 0x82e78516, 0xb4392506, 0x0d021416, 0x240a7744, 0x04ecff7e, 0x21338373, 0xa744fd03, 0x004a2605, 0x01b11700, + 0x0545441a, 0xc11a0126, 0x0e13181a, 0xdf212f9a, 0x2261823f, 0x871a01b2, 0x4e1b2230, 0x2130881b, 0x52823511, 0xfe7e0032, 0x0473045e, 0x00250071, + 0x1f0b4047, 0x070f1d07, 0x2c080182, 0xb80a1627, 0x26b24d01, 0x01b82404, 0x111bb31e, 0x01bf1307, 0x010d003c, 0x0020001c, 0x003d0119, 0x001a0107, + 0x3f33ed3f, 0x393912ed, 0x05074b3f, 0x2f393922, 0x27067e5c, 0x16333501, 0x27363233, 0x5e05b24a, 0xed4d078f, 0x15333b05, 0x15160706, 0x22230614, + 0x4d096e01, 0x10856c52, 0xd0feb7fe, 0x0d014901, 0xf94fc3dc, 0x8c6b3309, 0x649bc504, 0x27817bfe, 0x4a018791, 0x010401f6, 0x00506340, 0x3fad2906, + 0x982a2219, 0xffff00bb, 0x41057f50, 0xd6270a1b, 0x17000040, 0x411c01b1, 0x1c22061b, 0x1b411c53, 0xdb052312, 0x4b412602, 0x45da2806, 0xb2190000, + 0x86191901, 0x571a2330, 0x4c411b1a, 0x05294507, 0x0000b924, 0x6184c304, 0x0000fe2e, 0xdf000601, 0x1b000013, 0x131302b2, 0x2805b041, 0xddffb814, + 0x011114b4, 0x05804105, 0x23203385, 0x04263383, 0x0406025d, 0xa5830032, 0x03214382, 0x204384f2, 0x214384ff, 0xa584e48d, 0x26063846, 0x0e7e0e01, + 0x410b020c, 0x2f8f0ac1, 0x84dad921, 0x460f20a5, 0x01230638, 0x88120f12, 0x8ca58830, 0xdedf2161, 0x9b463184, 0x0f012307, 0x319e0f10, 0x21059b46, + 0x08411001, 0x16102206, 0x24939210, 0x2602db05, 0x29c38503, 0x0000d78e, 0x0102b31d, 0x31831111, 0x02260a27, 0x120d1201, 0x46c6850f, 0xc984099b, + 0xda21358a, 0x209784d4, 0x0664470d, 0x090e0123, 0x2133860e, 0xc9952b00, 0x00b74326, 0x01b21b00, 0xb2273184, 0xb80e0126, 0x41b489ff, 0x338a092e, + 0x88d10521, 0xcdd8219b, 0x0220658e, 0x2c08658c, 0xba000100, 0x67049cfe, 0x14005d04, 0x0b403b00, 0x00120505, 0x11160c0c, 0xb80f0e0e, 0x15b34c01, + 0xb8100d13, 0x09b61b01, 0x120c0003, 0x26128203, 0x173f0019, 0x4d32c433, 0x39240ded, 0x2530312f, 0x24067f73, 0x36323316, 0x09fa4d37, 0xa6b22308, + 0x47155a69, 0x02546653, 0xddadb0fd, 0x16ae2202, 0x9a1ac1b9, 0x037d6f1a, 0x049efc40, 0x03fffc5d, 0x83820001, 0x5ffeb924, 0x8382f203, 0x001b2a08, + 0x030e4052, 0x14090e0e, 0x00000318, 0x1a1a161d, 0x4c01bb11, 0x19001c00, 0x16b33e01, 0x41151116, 0x003d010b, 0x001b0112, 0x2807821a, 0x01110001, + 0x00050019, 0x0654470b, 0xd951ed20, 0x2f33240c, 0x60393317, 0x3e470566, 0x06152106, 0x52055547, 0xfe2d0c56, 0x31ad09ce, 0x4a5f0855, 0xfe11a98b, + 0x09625293, 0xa0393229, 0x9d1a9f23, 0x52443090, 0x0221086c, 0x06cd4200, 0x0c002508, 0x4a001700, 0x10100d40, 0x00151509, 0x12120e19, 0xb8000204, + 0x18b24c01, 0x01b80211, 0x030eb440, 0xbe0d0003, 0x20069849, 0x53078212, 0x12200772, 0xed279082, 0xf6100132, 0x5e3333c6, 0x39270657, 0x3330312f, + 0x53352311, 0x212b0a83, 0x33112115, 0x21101120, 0x539696b9, 0xa32e0988, 0xf3fe0d01, 0xfd0c0283, 0x7d1e02fe, 0x8e53c201, 0xc9260808, 0xfe7dd2fe, + 0x019d0174, 0xffff009a, 0xe9ff7f00, 0x8c06ba04, 0x01042602, 0x06010000, 0x004bd900, 0x01b21900, 0xcc421e1e, 0x39212506, 0x1a051b21, 0x8f0ba143, + 0x43d62731, 0xb1170000, 0x30861f01, 0x1f321f22, 0x35203088, 0xfe256184, 0x04ba0459, 0x2d618671, 0x008e0307, 0x000000fc, 0x1d01b70c, 0x29861d3d, + 0x05218787, 0x218788db, 0x87844fda, 0x8e441c20, 0x202c8207, 0x08878a1e, 0x00020038, 0x0400004a, 0x005d04d0, 0x00170013, 0x1313405e, 0x0e011101, + 0x02030114, 0x17190602, 0x0a05050d, 0x01bb0608, 0x0018004c, 0x403d0104, 0x0800160f, 0x0308110d, 0x01821709, 0x0b0f0625, 0x821b01bb, 0x50062041, + 0x392908fb, 0x17112f2f, 0x33331133, 0x076b41ed, 0x2408555c, 0x3031c610, 0x0a437101, 0x2115332b, 0x33153335, 0x21350515, 0x05f65215, 0xc06f6f36, + 0x6fbe2a02, 0xd6fdd3fe, 0xdffc2103, 0x26feda01, 0xc27a2103, 0x7a230082, 0x82b0b0b0, 0x82b920db, 0x066122a9, 0x2bdb828c, 0x01000002, 0x07d60006, + 0xb1170000, 0x23092f44, 0x060c1005, 0x230bc344, 0x02000093, 0x20059341, 0x252f8203, 0xfe8d0007, 0xf54400f7, 0x0e47210d, 0x2724318d, 0x16030000, + 0x31856184, 0x14ffd922, 0x1b303182, 0x0f0f01b2, 0xb21d01b8, 0xb8120126, 0x12b4ffff, 0xfb433488, 0x824f2005, 0x8afa2067, 0xffd62235, 0x44678519, + 0x998f08c9, 0x31826f20, 0xdb05d322, 0x6785c982, 0x15ff8e22, 0xcb443182, 0x1201220e, 0x44ce850f, 0xd18309cb, 0x378aac20, 0x17ffda22, 0x19203782, + 0x26069b44, 0x01260940, 0x860e020e, 0x07cd4435, 0x6b828b20, 0x9d8aac20, 0x37ff4322, 0xcf44d385, 0xb4bf210a, 0x4b090841, 0x2f08056b, 0x05f0ff93, + 0x005d0483, 0x001b000f, 0x0413404f, 0x000d040d, 0x1d130b0b, 0x1a1a1018, 0x19131115, 0x0d41150d, 0x0e003e01, 0x1b011600, 0x12001a00, 0x11240b82, + 0x08001901, 0x260a2c54, 0xed333f32, 0x54013232, 0x11280686, 0x332f3912, 0x2f2f3939, 0x20113a54, 0x0a9f5401, 0xfe83052f, 0x15586f8f, 0x506d4d58, + 0xfdbf01fe, 0x07ad5429, 0xfe40012d, 0x23a11eb0, 0x3d028a79, 0x54a3fb91, 0xff2906bb, 0x002d00ff, 0x05130300, 0x084941d1, 0x15ffd822, 0x200f1141, + 0x0c114100, 0x00010027, 0x035ffe93, 0x26db823a, 0x4047001b, 0x84001810, 0x0e032cd0, 0x1d13130e, 0x4115191c, 0x8a3e010c, 0x10eb44d4, 0x2d085d55, + 0x10332f33, 0x103332cd, 0x303132c1, 0xea442321, 0x5523200e, 0xa4200b71, 0x2009e944, 0x057b55db, 0x8809e444, 0xf6ff21c9, 0x3522c982, 0xc9885306, + 0x09ffd722, 0xb122c983, 0x7a421501, 0xb8192505, 0x19b4f6ff, 0x260daf42, 0x03f0ff42, 0x828c0606, 0x00042833, 0x00070100, 0x4225ffd6, 0x14200579, + 0x25064544, 0x10144314, 0xd7470f05, 0x59fe250b, 0x5d04bd04, 0x05203182, 0x03233183, 0x8296008e, 0xb10f2b31, 0xffb80e01, 0x0c0eb4b9, 0x2c840006, + 0x00ffff23, 0x208f82b0, 0x215b84c2, 0x5b830006, 0x93fe8d22, 0x08208f85, 0x08278f85, 0xb446ffb8, 0x48020608, 0x35250676, 0x00020000, 0x083382b9, + 0x5d04dd38, 0x09000300, 0x09403500, 0x00000202, 0x080b0909, 0x4c01b805, 0x02020ab5, 0xbc060305, 0x08001b01, 0x05003d01, 0x3f001901, 0x12333fed, + 0x10012f39, 0x331132e6, 0x1158332f, 0x23032305, 0x8c551313, 0xe4dd2405, 0x55d0838a, 0xfe290690, 0xfbce0132, 0xfc5d04a3, 0x2499823e, 0x0359feb9, + 0x2cc384c2, 0x01000006, 0x4e8e0306, 0xb10f0000, 0x20908201, 0x869089ee, 0x2127828d, 0x8d820500, 0x06b73629, 0x05050707, 0x5801040b, 0x072705a1, + 0x08b33c01, 0x83020108, 0x0a10568f, 0xed208e82, 0xc3468f86, 0x33112706, 0x23032111, 0x1b563335, 0xb3702206, 0x228583b3, 0x82a97f01, 0x2e00217a, + 0xc920ef82, 0x0d37ef82, 0x18404000, 0x0d010a0a, 0x0c080f0d, 0x0103050c, 0x02050b08, 0x82030904, 0x84012001, 0x500c20f2, 0x3f280823, 0x2f393912, + 0x3917122f, 0x560b4377, 0x07220581, 0x6d823735, 0x05152522, 0xc93c7182, 0x9292f7fc, 0xfe1501c1, 0x014802eb, 0x6c8f6c6e, 0x30fe6002, 0xfece8fce, + 0xffff009d, 0x25052356, 0x26028c06, 0x86820804, 0x8d000629, 0x17000024, 0x410c01b1, 0x0c2506f5, 0x050a0c83, 0x0af54109, 0x0000ba24, 0x2f8a6704, + 0x0010df26, 0x01b21900, 0x23076b4f, 0x0d070d01, 0xd3443088, 0xfeba2605, 0x04670459, 0x2461865d, 0x008e0307, 0x052742a0, 0xffb80c24, 0x5e88b4ed, + 0x53208b88, 0xd7268b88, 0x190000fd, 0x9c4a01b1, 0x17012605, 0xb4f9ffb8, 0x248d8d17, 0x04e9ff7f, 0x208d84ff, 0x20bd8509, 0x20bd8315, 0x061c4c02, + 0x461a0224, 0x8642181a, 0x05f55006, 0xd9212f8f, 0x23618235, 0x1b1b02b2, 0x0223ee85, 0x881e001e, 0x8fbd8530, 0x38d62131, 0x04476184, 0x1c022306, + 0x61921c04, 0x82db0521, 0x299185c3, 0x0000338e, 0x0203b31d, 0x594a1d1d, 0x83032005, 0x851b2063, 0x098d4594, 0x4328658f, 0x1b0000f8, 0x191902b2, + 0xb2213482, 0x22cf8226, 0x89b460ff, 0x219995ca, 0x338345dd, 0x68885f82, 0xcc876c20, 0x5d516882, 0x21678405, 0x9d88d105, 0x8434d821, 0x216784ff, + 0x68820940, 0x861a0021, 0x2b00219b, 0x2e086582, 0x7f000300, 0x000593ff, 0x1300b504, 0x23001b00, 0x09403800, 0x021a1d15, 0x1a252222, 0x4d01b80c, + 0x1c1424b4, 0x01be171f, 0x010f003d, 0x821f001c, 0x01052307, 0xb15d001a, 0x081b5d05, 0x2a056a4e, 0x00101116, 0x07272221, 0x83263723, 0x32540809, + 0x01333717, 0x22232601, 0x01141506, 0x32331601, 0x04343536, 0xc5feb947, 0x88bdfafe, 0xb1ac7383, 0x00014001, 0x747188b6, 0xf401c0fc, 0xc7b67c5c, + 0x08fe9802, 0xc7b6825c, 0xfea7ea03, 0xfefcfeeb, 0xe2ac56bf, 0x011701a2, 0x56450101, 0x024cfc97, 0xcfe03f9c, 0xfd272a82, 0xcfe1435f, 0x85ffffc6, + 0x8c0621b7, 0x5520e982, 0x26051942, 0x1700002e, 0x412603b1, 0x032605e8, 0x24265e26, 0xd742020c, 0xff7f260a, 0x06ff04e9, 0x08194153, 0x0026d727, + 0x02b11900, 0x05804121, 0xffb82525, 0x4125b4f4, 0x00380ae9, 0x00800002, 0x04a80600, 0x0010005d, 0x404c0017, 0x0f0f0b0c, 0x090d1717, 0x143d3582, + 0x4d01b804, 0x120a18b2, 0x003d01bb, 0x010e0007, 0x0b0bb33e, 0x01bd0701, 0x000f001b, 0x08be4316, 0x123f3228, 0x10ed2f39, 0x254432ed, 0x33332306, + 0x9a5a2f39, 0x06ca5d05, 0x08089a4f, 0x20230138, 0x33211011, 0x5dfca806, 0x99fee2fe, 0x43014801, 0xa8fd9d03, 0xbcfd4402, 0xf1fc5802, 0x0130fe81, + 0x1b0178d9, 0x0f011201, 0xfe962101, 0x7afe8ee2, 0x6dfe2d03, 0xb94469fe, 0x82f42006, 0x0b2108a5, 0x42001400, 0x11080940, 0x050d1611, 0xbe020101, + 0x15004c01, 0x3e010d00, 0x0c000000, 0x05b63e01, 0x22018200, 0x59ba0302, 0x12250822, 0x2f2f3939, 0x859f8210, 0x5e33209e, 0x34080567, 0x11231525, + 0x20331533, 0x23061411, 0x32331103, 0x26343536, 0xb7700123, 0xd101b3b7, 0x84b1ddf6, 0xa99594ae, 0x5d04e7e7, 0xa7b5fec3, 0xfe2802c1, 0x686b6a62, + 0x06354e61, 0x06b10427, 0x0426028c, 0x058f410c, 0x2950bc20, 0xf7ff240d, 0x431416b4, 0xb9220cab, 0x318c0000, 0x00c1df27, 0x02b21b00, 0x065c5016, + 0xffb81725, 0x8817b494, 0x05134332, 0x59feb926, 0x5d04b104, 0x07246586, 0x94008e03, 0x0f26df82, 0xb81602b1, 0x6089bdff, 0x00ffff27, 0x04ecff6e, + 0x208f840e, 0x268f850d, 0x170000a1, 0x422701b1, 0x0126051f, 0x25275327, 0x1f422001, 0x212f8f0a, 0x8d83b5df, 0x83270121, 0x26b22830, 0xffb82801, + 0x8828b4ff, 0x05895032, 0x8d826e20, 0x71040e2f, 0x48003200, 0x0d021240, 0x17313124, 0x3101820d, 0x1e112a34, 0x270f2a17, 0x3e010b41, 0x1c012100, + 0x07821500, 0x0f000035, 0x0b001a01, 0x1f010500, 0x3f333f00, 0xed3fed33, 0x79393912, 0x392b0512, 0x33112f2f, 0x3311c410, 0x50253031, 0x2e5d056b, + 0x34352305, 0x09842027, 0x2e1bf658, 0xb806ee02, 0x096a5c91, 0x05ca465e, 0x59bbd2fe, 0x022b1701, 0xaca22833, 0xa624a01a, 0x59583721, 0xf4201707, + 0x2c123741, 0x0000aad6, 0x2901b119, 0xb21d01b8, 0x23068226, 0x29b4f8ff, 0x410e3941, 0x022a0505, 0x000d0426, 0x03060100, 0xeb82258e, 0x2701b126, + 0xb4c5ffb8, 0x22086441, 0x59000100, 0x0f3b075f, 0x06b63300, 0x11100707, 0x01b80d01, 0x050eb23d, 0x3f01b809, 0x0a0a02b4, 0x60ba0e07, 0x864d0800, + 0x077f7205, 0x30313329, 0x33112101, 0x82112315, 0x33352101, 0x24077a59, 0xddbfdddd, 0x057e59dd, 0x7fc5fe2b, 0x0a02f6fd, 0x993b017f, 0x84c58200, + 0x8c06216b, 0x0e209382, 0x00229383, 0xc582b6df, 0x0a01b223, 0x06fe410a, 0x0b010b25, 0x4d070608, 0x9d830863, 0x4a33c582, 0x16005d04, 0x02b62800, + 0x18171212, 0x01bf1401, 0x8215003d, 0x01122691, 0x000d0019, 0x05b84107, 0x8507315f, 0x17142292, 0x081f7016, 0x27343523, 0x23998723, 0xa8b41605, + 0x21059341, 0xa0852807, 0x024efc2e, 0x1adab32a, 0x31a624a0, 0x99c4033a, 0x7185a383, 0x032da387, 0x0000428e, 0x0a01b10f, 0xb4e3ffb8, 0x829d870a, + 0xffae2427, 0x845e04e9, 0x840f20cb, 0x018d27cb, 0xb1170000, 0xca861201, 0x126b1224, 0xb7490710, 0x212f8f0b, 0xfb84fed9, 0x86131321, 0x02162230, + 0x43308816, 0x318f0555, 0x194ad620, 0x1405210e, 0x05216192, 0x85b982db, 0xfc8e2991, 0xb31d0000, 0x15150102, 0x21059a46, 0x63820102, 0x94851320, + 0x8f090347, 0x82432065, 0xb21b213c, 0x4d059251, 0xb021052f, 0x89ca89b4, 0x8a892099, 0x12dd25fb, 0xb21b0000, 0x68885f82, 0xcc877220, 0x84080347, + 0xd1052167, 0xd8209d88, 0x19209d82, 0x40266786, 0x12012609, 0x9b861201, 0x08050347, 0xae00012c, 0x5e045ffe, 0x1d005d04, 0x0c403700, 0x14101005, + 0x1f1b1b00, 0x151c1417, 0x1b010941, 0x3d011900, 0x12000300, 0x07001a01, 0xc7500d00, 0x5b332008, 0x122906c4, 0x31332f39, 0x06140130, 0x0ed74b07, + 0x5b112421, 0xc7220ad6, 0xc25006c2, 0xfe0c2207, 0x07e05b75, 0x15e1b624, 0xc3502e2a, 0x322f2405, 0x5b890124, 0x71820aec, 0x0730c784, 0x000b0000, + 0x00270017, 0x0f144043, 0x03091503, 0x1e2c0182, 0x25251818, 0x0c1e2129, 0xbf1f2606, 0x2324a082, 0x1b003c01, 0x122c9e82, 0x1b010000, 0x3f323f00, + 0xc4333fed, 0x07ae4418, 0x54121121, 0x22200ae7, 0x2008f757, 0x0c185706, 0x290e865c, 0xce908802, 0xcb9391cd, 0xf95792cc, 0x80012106, 0x2b09975c, + 0x91c45804, 0x8ec5c390, 0x2202c68f, 0x2008fa57, 0x0dab5c1f, 0x2008b542, 0x08854153, 0x00f1d726, 0x01b11900, 0x2605f048, 0xffb81d01, 0x421db4f8, + 0x5c260d55, 0x4f060000, 0x31828c06, 0x454c1120, 0xb0002105, 0x20058742, 0x06b8420f, 0x0f4a0f23, 0x0c41460d, 0xd622318f, 0x3185ce00, 0x31861120, + 0x11041122, 0x05213192, 0x226388db, 0x82ca008e, 0xb31d2531, 0x12120102, 0x23075242, 0x10130013, 0x8d0fbf49, 0x00062a69, 0x00006c43, 0x0e01b21b, + 0x0516450e, 0xffb80f24, 0x9c89b43e, 0x2405bb42, 0x04000024, 0x20cf843e, 0x05b74313, 0x0000a926, 0x0b01b117, 0x0b249b86, 0x05090b68, 0x4a05424d, + 0x2f8f05bb, 0xfe82d620, 0x7c542f82, 0x0a0d2207, 0x842f920d, 0x215f85cb, 0x8543ab8e, 0x28948405, 0x02260a40, 0x0f060f01, 0x4362850c, 0x658f0985, + 0x84a64321, 0x0a0a21c9, 0x0b24c985, 0xb49cffb8, 0xc9859889, 0xc9828620, 0xc9843b20, 0xc9851420, 0x434cd520, 0x0c64230d, 0x434c020a, 0x212f8f0b, + 0x6384d8df, 0xe35b0c20, 0x0d012605, 0xb4ffffb8, 0x8a32880d, 0x85cd8463, 0x82da2063, 0xb2192363, 0x2e410b01, 0x000c2307, 0x64870d0c, 0x250a155c, + 0x06025d04, 0xb756fb03, 0x3a042107, 0xfc210f84, 0x31a68200, 0x0000b900, 0x5d04d203, 0x24000500, 0x070000b4, 0xd7630302, 0x01012405, 0x5f04003d, + 0xfd4809d3, 0x05606605, 0x2111232d, 0xa6fdd203, 0x031903bf, 0x823cfcc4, 0x0200233a, 0xfb823500, 0x0a82a720, 0x06000334, 0x0d402d00, 0x05050203, + 0x00000401, 0x05010608, 0x4682bc02, 0x3e010622, 0x21072264, 0x635b0133, 0x5f122005, 0x213a0577, 0x13330121, 0xa7040101, 0xcb018efb, 0xb6fed7dc, + 0x5d04b9fe, 0x190334fc, 0xa152e7fc, 0xf2032105, 0xff20ad84, 0x8620bd84, 0x3b206782, 0x04210f83, 0x20cd8814, 0x210f8461, 0xc8820002, 0x3c0c8b63, + 0x403e001b, 0x00181909, 0x1d151500, 0x01bb060f, 0x001c004d, 0xb33f0119, 0x0c121a1a, 0x24de82be, 0x001c0109, 0x20978212, 0x09dd6603, 0x2005aa4e, + 0x23a08239, 0x30313939, 0x24179f63, 0x21352113, 0x12a36304, 0xcfc6b92b, 0xcac7b8b1, 0x0121fe37, 0x0ea863df, 0xcee3b034, 0xcfe4efc4, 0x2bfeebc6, + 0xffff0084, 0x00009300, 0xb784ac02, 0xc7880320, 0x0f84bd20, 0xc7820520, 0x30000122, 0x9429e782, 0x06005d04, 0x0d402b00, 0x2b238204, 0x05050602, + 0x00020108, 0x1b01bb03, 0x02201582, 0x41062154, 0x01390d4b, 0x33012301, 0x5d022301, 0x01bc8ffe, 0xca01cfcb, 0xfc8b03c7, 0xfb5d0475, 0x067b4aa3, + 0x842c0521, 0x84072063, 0x82ba2073, 0x84672063, 0x8208200f, 0x00032273, 0x200f8288, 0x3973820d, 0x00070003, 0x4036000b, 0x00040809, 0x05090d00, + 0x01b80501, 0x0606b33e, 0x35410a02, 0x00192205, 0x06f76801, 0x2105e24c, 0xa25fed2f, 0x2101240a, 0x82032135, 0x82132003, 0x0d042b03, 0x85037bfc, + 0x03cffc29, 0x09832931, 0x98c50328, 0xfd8fb3fd, 0x8d839661, 0x35657f20, 0x06022305, 0xf1840904, 0x7d82b920, 0x7d826520, 0x2a000723, 0x2a6082b5, + 0x41050409, 0x004c0109, 0x62030008, 0x7463065d, 0x09416509, 0x07464618, 0xbf650427, 0x03bfd2fd, 0x059042ac, 0x20063742, 0x20db84e4, 0x205d840a, + 0x205d8282, 0x335d8233, 0x4039000c, 0x070a030f, 0x0001070a, 0x04080e00, 0x0804010b, 0x20097860, 0x0a954c0b, 0x8232ed21, 0x05436ed5, 0x2f393922, + 0x08057e57, 0x01013528, 0x21152135, 0x21011501, 0x4ffc3304, 0x2cfee401, 0x6ffd7f03, 0x2cfebf01, 0x0199c802, 0x957e01b1, 0x2494fe96, 0x5b495efe, + 0x21818407, 0xef83000e, 0x47612420, 0x20ef8205, 0x08918213, 0x7900032d, 0x4605f3ff, 0x11006904, 0x1f001800, 0x12405500, 0x09010c19, 0x02030118, + 0x1c0f0602, 0x0615211c, 0x01b8121f, 0x0c09b43f, 0x82181909, 0x09402508, 0x09030003, 0x022b0182, 0x1c01ba0a, 0x1a010200, 0x463f3f00, 0x102106b4, + 0x05847ced, 0x21080c42, 0x277b172f, 0x25570805, 0x26352315, 0x24343524, 0x15333537, 0x14150416, 0x06060104, 0x17161415, 0x35363633, 0x03272634, + 0xfeefbe3e, 0xf51201e8, 0x1301f5be, 0x53fee7fe, 0x9cadb099, 0xb0ad9cbe, 0x7e7e7199, 0xc5c8f608, 0x74740ced, 0xc8c6f206, 0x07f902f5, 0xad948ba7, + 0x94ad0606, 0x8307a78b, 0x068d62cf, 0x1220cf82, 0x2708cf82, 0x00a50001, 0x04460500, 0x0017005d, 0x120f403e, 0x050f0404, 0x15000905, 0x090c1915, + 0x01b80f12, 0x0603b63e, 0x10160506, 0x1b24bc82, 0x19010500, 0x3321bc82, 0x05bd4a33, 0x3320b589, 0x3125b582, 0x06140130, 0x25b78205, 0x11352624, + 0xab821133, 0xad820582, 0x33112f08, 0xfee84605, 0xf3febdf6, 0xac89bde5, 0xbd92a3bd, 0xd3d8b102, 0x16f3f313, 0xac01d7d1, 0x8e8b47fe, 0xfde20210, + 0x908c0d1e, 0x0100b901, 0x8d826700, 0x040d3208, 0x001f0074, 0x0114404e, 0x12131004, 0x04170d0d, 0x13171713, 0x1d210304, 0xba1a0702, 0x0a003e01, + 0x00b71c01, 0x0503140f, 0xbb031005, 0x13003d01, 0x05564300, 0x3232ed2a, 0x3f331711, 0xc42f01ed, 0x2108e678, 0x8782c410, 0x9d823320, 0x35211133, + 0x11243521, 0x32330034, 0x05101500, 0x21152115, 0x209f8211, 0x05c44f34, 0x46021630, 0x510121fe, 0x3b01d6fe, 0x3b01f0f0, 0x0b82d8fe, 0x8d212908, + 0xa3a3c364, 0x350164c1, 0x5f95cbfe, 0xcf1001a0, 0xfefe0101, 0x9feffece, 0x3501955f, 0x9d6e9a57, 0x6e9cb5b4, 0x00ffff9a, 0x2437c556, 0x04000024, + 0x30e3463e, 0x35823020, 0x8c069a22, 0x22079d5f, 0x63f19d01, 0x18220d2b, 0x2b630c0d, 0x0ec15c0c, 0x01202f86, 0x2208f15c, 0x5c0d0e27, 0x04200ff1, + 0x220a5d58, 0x582b9d01, 0x29220d2b, 0x5d580d0e, 0x0a575710, 0xff9d0123, 0x0e5d583b, 0x318c6182, 0x220e2f52, 0x52429d01, 0x0e220df7, 0x0949191a, + 0x0ed5470c, 0xcd9d0122, 0x220d6b48, 0x480a0b27, 0x67310c6b, 0x0d050000, 0x26028c06, 0x00009204, 0x9d010601, 0x2d2f844b, 0x1d01b822, 0x01260940, + 0x21221c22, 0x1e4d1203, 0x09b56305, 0x6b470420, 0x05755006, 0x50580421, 0x25080675, 0x030a4040, 0x0f0f0808, 0x14140516, 0x4c01bb00, 0x13001500, + 0x05b33f01, 0xbe040005, 0x01003d01, 0x14001b01, 0x66823e01, 0x477a1920, 0x08d56c09, 0x31331130, 0x21113330, 0x21112115, 0x06141120, 0x71502723, + 0x23220805, 0x3d03b911, 0x110182fd, 0xd6fbcf01, 0x8e9aaf38, 0x5d04daba, 0xfee0fe93, 0x89b5a6b1, 0x61686f65, 0x0b4563fe, 0x09f14705, 0x03210f85, + 0x2ba583d2, 0x00007d04, 0x3b000200, 0xc60402ff, 0x2008a582, 0x0011000c, 0x1115404d, 0x0b090f07, 0x0701000d, 0x010d0905, 0x03090d01, 0x0f050413, + 0x003c01bd, 0x29a28209, 0x01050001, 0x0b11b220, 0xb382ba06, 0x83010321, 0x323227ab, 0xed3f333f, 0x2a432f01, 0x69122006, 0xb28306c5, 0x11230528, + 0x11231121, 0x06821233, 0x21332908, 0x03022111, 0xfcb3c604, 0xde5fb2da, 0xfe73db02, 0x168dfed3, 0x0001febd, 0x940100ff, 0x51027601, 0x2a0339fc, + 0xc7fe0ffe, 0x47085d5f, 0x735e0af7, 0x22a95e0f, 0x00010027, 0x06000035, 0x08d98273, 0x6b002931, 0x04011940, 0x12282815, 0x0a232629, 0x1d230304, + 0x03292924, 0x2b242425, 0xb8130302, 0x23b41b01, 0x01270404, 0xb53e01b8, 0x03121215, 0x82bb0a1e, 0x001c28ee, 0xb21b010b, 0x63032529, 0x33240562, + 0x32ed333f, 0x8205b144, 0x443f20e1, 0x5f6309b5, 0x33112305, 0x02823311, 0x0121f583, 0x2c018223, 0x26262726, 0x32352323, 0x16171616, 0x2c188316, + 0x3e373616, 0x23153302, 0x06070622, 0x08208207, 0x2311234d, 0xfe51f602, 0xcd01e575, 0x602d4d57, 0x74942c3c, 0x68393e57, 0x6d4abc4f, 0x735a3e38, + 0x5c452c92, 0x015c4728, 0x75fee5cd, 0xea01bc51, 0x3e0216fe, 0x3662b131, 0x8e5f1ea5, 0xe2014f88, 0x52021efe, 0x1d608e87, 0xab5a40a5, 0x83c2fd35, + 0x82002020, 0x652e08f1, 0xf403e9ff, 0x23007404, 0x14404a00, 0x20102000, 0x14101a14, 0x031a1014, 0x0d0d0207, 0x10000725, 0xb33f01b8, 0x17051111, + 0x003d01be, 0xe383011d, 0x05003e22, 0x7d0a0049, 0x042514dd, 0x23041415, 0x07635122, 0x23214a08, 0x35203335, 0x22232634, 0x36352307, 0x15163233, + 0x02070614, 0xfe0501ef, 0xb2eaeefb, 0x01cecb11, 0xc5f4fe1e, 0x7e1b0199, 0x10abce70, 0xf7c0c3c2, 0x59026a7c, 0xb4a4ee2a, 0xd65ea748, 0x44b586bf, + 0x46aa5b51, 0x8e5e7f91, 0x0c9d6d15, 0x0940373e, 0x05050204, 0x0101070b, 0x4c01b808, 0x06010ab7, 0x02080601, 0x1b01bb09, 0x08000500, 0x6e0b135d, + 0x01270c0c, 0x11330111, 0x82011123, 0x02682702, 0xfdadde21, 0x9c6dd4d4, 0xa3fb2105, 0x5705a86d, 0x152b0853, 0xa5042602, 0x06010000, 0x57f4ce04, + 0x0e250daf, 0x090a0e00, 0x05ca4304, 0x3205b552, 0x040000b9, 0x005e0493, 0x404d0017, 0x1717020d, 0x82011111, 0x04082132, 0x28069748, 0x01120018, + 0x010f003c, 0x2620821b, 0xb33d0103, 0x6f050808, 0x12250d6f, 0x39ed2f39, 0x0a07723f, 0x6c2f3921, 0x33290b18, 0x37363211, 0x33333636, 0x06124217, + 0x93042708, 0x6135fef0, 0x7f5ebebe, 0x689f514f, 0x48394211, 0x6b523661, 0x13feed01, 0x28fe5d04, 0x4f9e9458, 0x6432a301, 0xbe823f9e, 0xff2b0032, + 0x046804fa, 0x0013005d, 0x030b4034, 0x12010012, 0x15240182, 0x09410309, 0x20065460, 0x229b820b, 0x4b190107, 0x3f210572, 0x208682ed, 0x0ae04e2f, + 0x23213808, 0x02032111, 0x27222302, 0x32173335, 0x1337023e, 0xbd680421, 0x110e58fe, 0x2834b0ad, 0x3a223f12, 0x1b062337, 0xc4031503, 0x85fec2fe, + 0x9c06effe, 0xaa632401, 0x4a15027c, 0xb9231345, 0x4b040000, 0xff200881, 0x2205b75f, 0x497404ff, 0x6d4405d7, 0x65042305, 0x0f825d04, 0x37638a20, + 0x08994908, 0x63ffff21, 0x042505ed, 0x03060271, 0x201f84fd, 0x204f822f, 0x212f844a, 0xeb83000e, 0xf8ff2f24, 0xeb823804, 0x3d00103d, 0x010c1540, + 0x100e0f0f, 0x05050010, 0x1200000d, 0x0f0c0d0e, 0xbc0d1003, 0x83001b01, 0x058e44f8, 0x82333f21, 0x059d43e9, 0x2f391225, 0x4c113311, 0x01210667, + 0x08825201, 0x37372a08, 0x01013301, 0x4cfe3804, 0x4844f369, 0x9933390d, 0x3ffe0b37, 0x015401cb, 0xfc5d0430, 0xa30fda75, 0x03177218, 0x027ffd42, + 0x49f18381, 0xc18206a9, 0xa1848f20, 0x240ff948, 0x0402ffb9, 0x38a182cf, 0x4039000b, 0x05050809, 0x0d0b0b0a, 0x0c410104, 0x0c004c01, 0x20010b00, + 0x05257100, 0x04000822, 0x200a5e4a, 0x052a7133, 0x612f3921, 0xa98207da, 0x03822120, 0x2311332c, 0x9cfc1d04, 0xbd2802bf, 0x8d82b272, 0xc803382f, + 0x6bfe3afc, 0x00010000, 0x04000083, 0x39678221, 0xb72f0010, 0x0101000e, 0x0c060912, 0xb63e01b8, 0x04040702, 0xba070f01, 0xef411b01, 0x82332006, + 0x391223f8, 0x3f6d01ed, 0x05117305, 0x20230623, 0x085e8211, 0x33161422, 0x33133732, 0xb2be2104, 0xbe72fea0, 0x917d9281, 0xd101be01, 0x01650141, + 0x7eb5fe68, 0x06023a77, 0xb9246982, 0x40060000, 0x3420d184, 0x0022d184, 0xd1820909, 0x4c01b828, 0x060a0cb3, 0x6882bd02, 0x2a66cc8e, 0x8f332005, + 0x26d082cc, 0x79fa4006, 0x83a501bf, 0x82cd8602, 0x24cd83d1, 0x0602ffb9, 0x2f6382b1, 0x4044000f, 0x0f0f0e0d, 0x05050809, 0x1109090c, 0x25054f5c, + 0x010f0010, 0x6c82b220, 0x1b01b827, 0x04080cb2, 0x093a41ba, 0x333f3222, 0x85063c41, 0x05af696f, 0x6b822120, 0x03871120, 0x23113326, 0xb9fa0006, + 0x71207786, 0xfc206682, 0x03857582, 0x006dfe2a, 0x2c000200, 0x18050000, 0x1427e184, 0x0c403c00, 0x82141405, 0x0f082e15, 0x1302160f, 0xb33e01b8, + 0x02000505, 0x207282be, 0x13954703, 0x73122f21, 0x332805b2, 0x30313311, 0x35211121, 0x08109547, 0xfe7e0122, 0x011002ae, 0xfecf010d, 0x9dac39d2, + 0x03d4b98f, 0x58fe99c4, 0xb8a8abfe, 0x69726489, 0x005efe63, 0x21050f78, 0x83829805, 0x0d00032d, 0x48001600, 0x110a0d40, 0x82110100, 0x07183401, + 0xbb041616, 0x17004c01, 0x3e011500, 0x040707b4, 0x82be0502, 0x01162489, 0x4304003e, 0x33200ad5, 0x20095c5d, 0x09be5211, 0xad722120, 0x0f294805, + 0xbf980528, 0xbf21fbbf, 0x94820b01, 0xac38d326, 0xd4b8909d, 0x2405df6e, 0xa9fe5cfe, 0x219783aa, 0x9783626a, 0xb9000226, 0x52040000, 0x092d9782, + 0x36001200, 0x0d0d06b7, 0x12120314, 0x2a8f8300, 0x01110013, 0x0303b33e, 0x82bc0100, 0x4812208e, 0x888b09ae, 0x31332f26, 0x33113330, 0xb9207f8f, + 0x768d7a8e, 0x6700013a, 0x6c04ecff, 0x1a007104, 0x0b403a00, 0x0d121a1a, 0x1c191901, 0xb81a1207, 0x00247182, 0xbe160a00, 0x10246d82, 0x04001a01, + 0x4905b84b, 0xe5420924, 0x24828206, 0x21013031, 0x07964626, 0x46050778, 0x4e0805b4, 0x21273632, 0x79022d01, 0xcc9cda1a, 0xe2c511c9, 0x49010c01, + 0xe4febbfe, 0xb313cbd9, 0x03e9c0d9, 0x9b0281fd, 0xad84ad9b, 0xfec4fe65, 0xfef0fefb, 0x88aa6acc, 0x0000b8e2, 0xffb90002, 0x048606e9, 0x00120074, + 0x4053001e, 0x0007160e, 0x82001c0d, 0x06202f01, 0x41030202, 0x004c010c, 0x0119001f, 0x9983003d, 0x07821320, 0x1c010a2b, 0x3c010100, 0x030606b3, + 0x09236f04, 0xed219b82, 0x7901823f, 0x11200abb, 0x2305a14d, 0x23112301, 0x362a0a83, 0x00203324, 0x21001015, 0x686c0022, 0x023a080b, 0xbfbf9e16, + 0x300126a7, 0x010001d9, 0xfec9fe38, 0xcefef5fe, 0xbfb32702, 0xc0b2aec5, 0xfd0a02c2, 0xfe5d04f6, 0xfef7d34d, 0xfcfeffb9, 0x2401bffe, 0xd0dfcf02, + 0xcbe5efc1, 0xbd83ecc3, 0x00000637, 0x5d04fe03, 0x13000c00, 0x11404300, 0x000a0211, 0x0800070d, 0x36018202, 0x000c0b15, 0x4001b80a, 0x051313b4, + 0x01bc0c08, 0x010f0019, 0x7a05003e, 0x33200569, 0x3222b083, 0x07822f01, 0x2005667a, 0x28a38332, 0x26013031, 0x33363435, 0x08b28221, 0x23012336, + 0x20231101, 0x01211415, 0xc5e9f2ba, 0xc9c08801, 0x03f081fe, 0xf8feac38, 0xe6011601, 0xa494ed52, 0xb801a3fb, 0x330248fe, 0xdfbc9b01, 0x1e000100, + 0x17050000, 0x173e8b82, 0x0b404200, 0x04040114, 0x0911190a, 0xb8080a09, 0x11b43e01, 0x0c100011, 0x3d010941, 0x80820d00, 0x8c820a20, 0x5b420120, + 0xed3f2109, 0x2009ab6d, 0x24988211, 0x30313339, 0x06814821, 0x60722320, 0x08174b05, 0xfc022408, 0x700a014b, 0xfebefab0, 0xfea603a5, 0x010d0173, + 0x8bc7fbd3, 0xfd6260cc, 0x96c703e7, 0xfedffe96, 0x46b9a4b7, 0x032706c5, 0x028c06d2, 0x537d0426, 0xc82505ab, 0xb1170000, 0x298d8201, 0x2609401d, + 0x08720801, 0x87610406, 0x00013109, 0x04ecff7e, 0x00710481, 0x4044001b, 0x0008140c, 0x1d2b0182, 0x1a020201, 0x4d01bb0e, 0x82001c00, 0x1ab325ae, + 0xbe170b1a, 0x1124b682, 0x05001c01, 0x0b200782, 0x220e5652, 0x43331132, 0x312306a5, 0x6b210130, 0x23200836, 0x1805a842, 0x0809de49, 0xfdbc0331, + 0xd3c3e381, 0xdcc711ba, 0xbbfee5fe, 0x0c014801, 0xd412c9df, 0x1ada9dc1, 0x12027a02, 0x7fdcb10d, 0x340160ab, 0x06011001, 0xb05b3b01, 0x5a9bad7d, + 0x0426078f, 0x04060271, 0x5f52000d, 0x37594e13, 0xc9784220, 0x08578205, 0x0000043e, 0x30000200, 0x4807faff, 0x1a005d04, 0x50002300, 0x12021240, + 0x00232314, 0x00121e17, 0x12001e1e, 0x22092503, 0xb33e01b8, 0x02071414, 0x003d01bc, 0x001b0112, 0xb23e0123, 0xba0a0000, 0x24069048, 0x1033ed3f, + 0x06dd68ed, 0x48182f20, 0x384b0842, 0x11212506, 0x02020321, 0x2405a647, 0x37033e17, 0x10584513, 0xb0034008, 0x0d0e59fe, 0x34819f42, 0x203e1528, + 0x0622383a, 0x0116031b, 0xfacf010b, 0x97b138d6, 0x03d5b692, 0xfedefec4, 0x90f9feef, 0x01019c06, 0x7ba76624, 0x53fe1502, 0xb7a7aefe, 0x696b6689, + 0x8367fe5f, 0x00b924c3, 0x823c0700, 0x821120c3, 0x40522ac5, 0x1a1a0b10, 0x150e0008, 0x21018200, 0x1878071c, 0x1bb22e05, 0x01b80219, 0x070bb53c, + 0x05090007, 0x24c682be, 0x00190104, 0x0a93421a, 0x7d07bb50, 0x1120098c, 0x0282c482, 0x82303121, 0x231121b4, 0x4d06cd47, 0x03220ead, 0x8c7afda3, + 0x21b28205, 0xb285fbd0, 0x1802d42a, 0x5d04e8fd, 0xa4015cfe, 0x6521a986, 0x43a9856c, 0x09200533, 0x133ea982, 0x0b403b00, 0x0d060605, 0x0c0c0015, + 0xbb0f130d, 0x10003d01, 0x3e010900, 0x0d0202b3, 0x9f82bb10, 0x0d000622, 0x5f051f4b, 0x2f20074c, 0x11208b82, 0x33270c82, 0x36013031, 0x82112033, + 0x23342392, 0x2f430722, 0x02210807, 0x018fc632, 0x87f9bf82, 0xabfebf98, 0x73fea103, 0xfe417702, 0x019afeae, 0xfe37f739, 0x96c70307, 0x06254396, + 0x06930427, 0x0426028c, 0x052543a7, 0xa56efe20, 0x6248200d, 0x2f260e57, 0x3804f8ff, 0x2f821506, 0x2f83b020, 0xb2ce0422, 0x240d535b, 0x11151a15, + 0x06cc570d, 0x2306654b, 0x650400ff, 0x0b2ce182, 0x0b403d00, 0x060b0b0a, 0x05050806, 0x20133d49, 0x0a3d4909, 0x493f3321, 0x905f093d, 0x0afe4706, + 0x3502232b, 0x02bf84fe, 0x83febf2e, 0x057248b3, 0xffa3fb22, 0x3408e956, 0x07009005, 0x07b52800, 0x01090404, 0x4c01b802, 0x000508b2, 0x0d3370bc, + 0x5f54c620, 0x055f6909, 0x01113327, 0x6a02bf78, 0x055d54af, 0xfe33012b, 0x00010034, 0x04efffb9, 0x08b98299, 0x51001a2f, 0x15031240, 0x13061702, + 0x1317150b, 0x0b151713, 0x1a191c04, 0x004c01bb, 0x011a001b, 0x1516b519, 0x10000303, 0x003e01be, 0x001a0109, 0x206b8218, 0x08cf7f00, 0xca481120, + 0x61661807, 0x05674507, 0x15211324, 0xe25e1607, 0x17380808, 0x36323316, 0x35213435, 0x23112101, 0xe75603b9, 0xc5eec2af, 0x3b117c5c, 0x9473413e, + 0x01017afe, 0x04bb19fe, 0x16ee9a5d, 0xc7a999c7, 0x12129f14, 0x56fb6e80, 0x37fc0c01, 0xda2da582, 0x80021605, 0x03008c06, 0x00b30d00, 0x08018202, + 0x01cd2f3d, 0x3031cd2f, 0x01230301, 0xf3b38002, 0x8c061101, 0x76018afe, 0x01010000, 0x04410698, 0x008f0784, 0x401a000b, 0x00000b0a, 0x00060607, + 0x00030980, 0xcc1a332f, 0x332f0132, 0x82322f33, 0x06062638, 0x27262223, 0x35938233, 0x04840437, 0xc9a9a8ca, 0xbe02b604, 0x8f0701bf, 0xa5a9aaa4, + 0x4983d3d3, 0xdb043d28, 0x1506fb03, 0x49830900, 0x00000929, 0x00040405, 0x8e020780, 0x21023c49, 0x14330320, 0x03273233, 0xb0fe0ffb, 0xab0fb0fe, + 0x0601b5b4, 0x01c6fe15, 0x82c7c73a, 0x403908bb, 0x8807f8ff, 0x5000d105, 0x12405d00, 0x1942421c, 0x372f0007, 0x37264343, 0x000f5237, 0x01b80036, + 0x4e39b732, 0x07072fe4, 0x01b84541, 0x1c0a4035, 0x43101818, 0x27d51ae4, 0x2d1a820f, 0xd51025b2, 0xed333f00, 0x123f3f32, 0x07822f39, 0x33113922, + 0x013d0e83, 0x3311322f, 0x2f39332f, 0x39123912, 0x33113333, 0x33373031, 0x37373632, 0x26353736, 0x09b44f27, 0x16161722, 0x8305cf4f, 0x07b84f1b, + 0x06060727, 0x16161507, 0x221c8417, 0x86060715, 0x113b0830, 0x22231123, 0x0e070706, 0x22232302, 0x54224027, 0x3e3a2050, 0x2c38bfc6, 0x1f5e4422, + 0x2569808c, 0x74812331, 0x6a41c540, 0x27312a84, 0x2093855b, 0x2b204a5a, 0x7a77631d, 0x823b1e6b, 0x22850822, 0x2b98bd1c, 0x738b2641, 0x7540c541, + 0x2241248b, 0x2877853b, 0x3fa10714, 0x37c3b770, 0x86ba340e, 0x1ba24468, 0x709e8268, 0xfd81026e, 0x9e7f5f7f, 0xa220667f, 0x5c866745, 0x260e256d, + 0x69b75e76, 0x0701a146, 0x79ce987a, 0x024afd65, 0xce7668b6, 0x013f616b, 0xc8000100, 0x2905faff, 0x2800d105, 0x09404400, 0x1d1d0c15, 0x2727022a, + 0x4701b828, 0x261529b2, 0xb53501b8, 0x280b0202, 0x01b81ce4, 0xe41fb232, 0x2806820d, 0x00d50bb3, 0x3f3f00d5, 0x200182ed, 0x6b421812, 0x2f33290a, + 0x30313933, 0x33113313, 0x291f0c41, 0x23112323, 0x758dc6c8, 0xe8832889, 0x531f9224, 0xe8832150, 0x846d7821, 0x1b212fe8, 0x4035bc90, 0xc68ded45, + 0x7ffdd105, 0xc8847b63, 0x85723a21, 0x617321c8, 0x052fc884, 0xdecebb55, 0x00004afd, 0xff450002, 0x82de04ff, 0x001c2cbf, 0x403f0023, 0x101d210c, + 0x820b1108, 0x00252a01, 0x3201b800, 0x07e41bb3, 0x2b078213, 0x0e2323b5, 0xb81fe411, 0x0eb13301, 0xed21bc82, 0x25b9843f, 0x2f01ed3f, 0xbc483911, + 0x0ce34106, 0x35265c08, 0x21332434, 0x21112311, 0x07070622, 0x23230606, 0x21110127, 0x21101120, 0x443f2945, 0x8a382318, 0x07019a83, 0xc61902ed, + 0x8a81fdfe, 0x94242621, 0x0322267e, 0xfee5fed4, 0xa171019c, 0xc77d5945, 0xd52d0c26, 0xfad0c189, 0x6060022f, 0x6d8a9278, 0x02ff0201, 0xfef3fe28, + 0x41ffffe5, 0x08250573, 0x04260203, 0x069d5dd0, 0x77013132, 0x0c401400, 0x26d72b01, 0x2b282b01, 0x251e2829, 0x08067e78, 0x6d00014b, 0xf605ffff, + 0x4f005e04, 0x24407900, 0x05490b16, 0x1a43431d, 0x21323e44, 0x0b05072c, 0x322c0003, 0x44370330, 0x37280044, 0x000f5137, 0x4642082f, 0xb53001b8, + 0x1119191d, 0x01b80036, 0x4e0a402f, 0x44e74f39, 0x29e11be7, 0x230e820f, 0xe11126b2, 0x2106f142, 0xab52333f, 0x4f392009, 0x3326050b, 0x122f3912, + 0x02823917, 0x46331121, 0x068306aa, 0x2112fd42, 0xe1423233, 0x22208307, 0x50373632, 0x07230aa6, 0x42150706, 0x232207fe, 0xff422622, 0x063f080e, + 0x27232306, 0x2c321f6d, 0x7031311b, 0x1b243367, 0x0b194231, 0x254f5e72, 0x4352232c, 0x3f2fbb2f, 0x282c2554, 0x34137967, 0x19354019, 0x6c693223, + 0x2e193136, 0x6d0c1f31, 0x39274d54, 0x82495421, 0x4c7a0822, 0x2b391f53, 0x37155b6f, 0x86452d9b, 0x200a2485, 0x2e485f89, 0x674c1399, 0x013a5f78, + 0x3529fed7, 0x596e7864, 0x472f9901, 0x0a20895f, 0x45868821, 0x4b119b2d, 0x445a9d64, 0xfb0105fe, 0x779d5747, 0x0100014a, 0xffffb900, 0x5d045204, + 0x50002600, 0x0f051040, 0x0f161620, 0x1a0b0313, 0x2502281a, 0x01bb2625, 0x00270045, 0xb6300124, 0x26090202, 0xb8191ce7, 0x1db22f01, 0x06820ce7, + 0xe109b324, 0x0043e100, 0x3f332105, 0x240ad34c, 0x17332f33, 0x052e4139, 0x11331324, 0x12413233, 0x23152405, 0x41070622, 0x4d080b11, 0x26222307, + 0x23262727, 0xb9231123, 0x39b95dbb, 0x6e7d2d2b, 0x3f3e1947, 0x87332420, 0x1d312f92, 0x381f3536, 0x26687614, 0x5dbf3939, 0xfe5d04bb, 0x7c779a28, + 0x51229a4b, 0x0a1e8a61, 0x50858823, 0x56019b22, 0xfe9e9d6b, 0x02000005, 0xc3826100, 0xc3821320, 0x22001a30, 0x10404700, 0x05140a20, 0x08050f1b, + 0x01820a10, 0x0000242a, 0xb32f01b8, 0x1207e719, 0xb5260782, 0x100d2222, 0x09821de7, 0x820db121, 0x110143bd, 0x4b323921, 0xe94406bf, 0x4b242008, + 0x222008c7, 0x82080343, 0x153e08cd, 0x1e612114, 0x25122f38, 0xfafe6924, 0xe701c1c7, 0x34b4a6bc, 0x5b712928, 0xf6021f2c, 0x01799bdf, 0x392a9b38, + 0x0a246a6d, 0xa297e73a, 0xbc01a3fb, 0x3b797792, 0x014f0201, 0xc25a5c78, 0x7741ffff, 0x83062505, 0xd4042602, 0x30052f48, 0x1400f7d3, 0x29010c40, + 0x290126e3, 0x2627293d, 0x09fb421b, 0xf6ff4e24, 0xdf825b06, 0x00484c08, 0x142a4099, 0x0805430b, 0x3e3e1b07, 0x2d2c3f18, 0x29202f3a, 0x030b0507, + 0x2d2f2900, 0x3f3f3403, 0x34342500, 0x2d000f4a, 0x3d082c07, 0x3e01b841, 0x1b170d40, 0x17080717, 0x03070817, 0x41003310, 0x003d010e, 0x01480035, + 0x823f0019, 0x01192603, 0x0026001b, 0x2213820f, 0x82100024, 0x333f250b, 0x3f3f32ed, 0x6e4a0583, 0xed102607, 0x11331132, 0x15174333, 0x4306c555, + 0x1a43161b, 0x13184605, 0x21091743, 0x04422606, 0x11bb0807, 0x07072223, 0x4e27020e, 0x183c421c, 0x939b332f, 0x351a2332, 0x69801947, 0x36261e57, + 0x33bd35a1, 0x26206751, 0x886d4921, 0x193e3f1a, 0x9c933223, 0x38192d33, 0x9f481c47, 0x37312258, 0x35bd33ac, 0x243138aa, 0x95529d4d, 0x8c804b2f, + 0x86240925, 0x9630465e, 0x70655012, 0xfed6019f, 0x705c432a, 0x96174d63, 0x865e4c2a, 0x8b260924, 0x95324880, 0x6b511809, 0x07fea08e, 0x8ea0f901, + 0x0a1d5167, 0x00010000, 0x04efffb9, 0x005d045c, 0x40580025, 0x1f100710, 0x14101717, 0x1b1b0c03, 0x24240227, 0x4c01be25, 0x25002600, 0x13001901, + 0x3e012300, 0x0b0202b3, 0x0109411a, 0x821c003d, 0x820d2012, 0x010b2207, 0x2044821b, 0x0513431b, 0x18055945, 0x4309d946, 0x36210c13, 0x08df5637, + 0x200b1343, 0x08114306, 0x546ebf29, 0x20251f66, 0x85866d4d, 0xa09439ee, 0x371a2e2f, 0x9c9b1d46, 0xad37312a, 0x5d04bf6e, 0x58472afe, 0x164f6270, + 0x872bd383, 0x8a270923, 0x95314980, 0x83855711, 0x020027d2, 0xffff5d00, 0xc982fc03, 0x21001a30, 0x10404c00, 0x0414091f, 0x06040e1b, 0x0182090f, + 0x00002323, 0x20ae82bd, 0x2ab68219, 0x01110006, 0x2121b340, 0x82bc0f0c, 0x011d240d, 0x490c003e, 0x1846056f, 0x0b16430f, 0x36373724, 0xdd4e3537, + 0x0a1a4609, 0x20233e08, 0x5d211415, 0x1a225621, 0xdae36f2c, 0xbf9601c4, 0x17686593, 0x6c7a1f1e, 0xe0022125, 0x01f8feac, 0x536e9517, 0x52081c8e, + 0xfb9c95d2, 0x49c301a3, 0x4f6d6b54, 0x013d0201, 0xffdbb691, 0x057f41ff, 0x028c0625, 0x43d80426, 0x434b0513, 0xb8282105, 0x2505435a, 0x26286328, + 0x16431c25, 0x01002307, 0x2582d100, 0xd1059738, 0x16000300, 0x00030940, 0x01040500, 0x00e400d5, 0x12113f3f, 0x5b513901, 0xc6d12507, 0x2ffad105, + 0x1f205d82, 0xc5222d82, 0x5d820108, 0x0982db20, 0x43000738, 0x7501cbfe, 0x01b61800, 0x26d70505, 0xffb80601, 0x0406b4be, 0x5f850301, 0x82351121, + 0x00b52431, 0x8a5b0200, 0xfe8d2231, 0x24318298, 0x010c4014, 0x20318306, 0x242e8953, 0x00020035, 0x082d8213, 0x01085a21, 0x0a000600, 0x11402400, + 0x040a0a00, 0x0b0c0707, 0x07d50804, 0x01050fe4, 0x5d2f0005, 0x84c63f3f, 0xc624089a, 0x31c61033, 0x03230130, 0x33132303, 0x11331103, 0x8f975a02, + 0xe3b2938e, 0x8606c6d7, 0xf5fe0b01, 0xfff77b01, 0x0020b683, 0x2020db82, 0x48225782, 0x09825007, 0x0b000739, 0x14402c00, 0x08050504, 0x0b010100, + 0x0c0d0808, 0x05010602, 0x8308d509, 0x32d623f4, 0x5d8432cd, 0xc07c3320, 0x35232309, 0x03820533, 0x482f6284, 0x95febdbd, 0xc60cbdbd, 0xc3c38d06, + 0x85b0f8c3, 0x0002225f, 0x225f820e, 0x829c075d, 0x00173bbf, 0x13184034, 0x09171700, 0x1814140a, 0x07131319, 0x11800a0d, 0x150a0303, 0x618314d5, + 0x2f32c629, 0xcd101a33, 0x842f3232, 0x32c62567, 0x32c41033, 0x1433c782, 0x27222306, 0x15222326, 0x33363423, 0x33161732, 0x83013532, 0x655d3bd4, + 0x3f364a52, 0x63704425, 0x413a4753, 0xe4fe4522, 0x7d9c07c6, 0x86453a86, 0x04828a79, 0x8464f821, 0x00022282, 0x22818217, 0x84460751, 0x40202fe1, + 0x0707000e, 0x08040401, 0x05010209, 0x778304d5, 0xd785ce20, 0x22063541, 0x84213521, 0xfd512c5d, 0xfe3a02c6, 0xac06c680, 0x86baf89a, 0x82102049, + 0x073f3949, 0x000c00dd, 0x40240010, 0x10100010, 0x110d0d06, 0x09060c12, 0x0dd50e03, 0x20052541, 0x204d85cc, 0x18bc82c4, 0x3e0a32c8, 0x35363233, + 0x11331103, 0x8c8b3f02, 0x86928e8a, 0xc6dc4441, 0xc09add07, 0x62e59cbe, 0x8423f883, 0x012d085f, 0x5ffebe00, 0xd1059b02, 0x23001200, 0x050d1040, + 0x07070a05, 0x0b001314, 0x0fd508e4, 0x3f00ed02, 0x013f3f33, 0x3912112f, 0x2f33332f, 0x09d17f33, 0xa3735682, 0x02270807, 0x8b4a5f9b, 0x2ec613a9, + 0x5531ad09, 0x1a79fe08, 0x522c909d, 0x2ffac705, 0x23a03932, 0x00ffff00, 0x010000cd, 0x425007a1, 0xda2808a5, 0x7501acfe, 0x0d401600, 0x2206a642, + 0x42070602, 0x002709a3, 0xffd10002, 0x821705eb, 0x0f270891, 0x34001300, 0x0b001140, 0x0b0b0d04, 0x1503040d, 0xd5111013, 0xb80de410, 0x0eb23501, + 0x01b808d5, 0xe502b133, 0x82ed3f00, 0x5fa38201, 0x107508ab, 0x065b410e, 0xfe17053f, 0x16638556, 0x6788675f, 0xfe01c9fe, 0x01c6bafb, 0x264bfea0, + 0xc5a42db0, 0xfa9d3703, 0x0651432f, 0x0000012c, 0xd2058802, 0xdb042700, 0xb782f100, 0x9d01073d, 0x46ffeffd, 0x01b41500, 0x0401d507, 0xb432ffb8, + 0x01010404, 0x35112b25, 0x83353e00, 0x06b143dd, 0x82060221, 0x420f8331, 0x0f8206db, 0xa000df21, 0x0100231f, 0x6582c000, 0x5d047f30, 0x19000300, + 0x000003b5, 0xba010504, 0x13821b01, 0xf4431920, 0xbfc0230e, 0xc9635d04, 0x82942005, 0x063a26a3, 0x0426028c, 0x2b2782eb, 0xfe8d0007, 0x00000077, + 0x0601b117, 0x21065544, 0xc6434706, 0x0024080b, 0x00080002, 0x06370200, 0x000c0068, 0x40340010, 0x00000c13, 0x070d1010, 0x0d0d0606, 0x060c1112, + 0x0e030980, 0x0d217383, 0x22738301, 0x421a32d6, 0x3323064e, 0x8211332f, 0x332f2101, 0x20135342, 0x07534237, 0x06bfe523, 0x06534268, 0x8498f921, + 0xff0222a2, 0x3a6f82ff, 0x008c0646, 0x000a0006, 0x0110402e, 0x0a0a0000, 0x04040307, 0x0b0c0707, 0x6c080405, 0xd62609c1, 0x011211cd, 0x698b2f39, + 0x200a4144, 0x05414446, 0x05bfd423, 0x05414411, 0x8474f921, 0x03002360, 0x61820b00, 0xdb053322, 0x07200982, 0x32340b82, 0x01001240, 0x080b0b01, + 0x08050504, 0x020d0c08, 0x09050106, 0x08206583, 0x4644d286, 0x44d18a07, 0x33200b47, 0x28054744, 0x1805bf08, 0xfac3c3c3, 0x82658425, 0x00b826c5, + 0x058c0100, 0x086941db, 0x97feda2a, 0x19000000, 0x050501b2, 0x42076a41, 0x33820dbc, 0x01209982, 0x4105e36f, 0x4322059d, 0x3382b7fe, 0x33861b20, + 0x0126b226, 0xbfffb806, 0x820c9645, 0x002108ca, 0x04f0ffc0, 0x005d04af, 0x0013000f, 0x040c403b, 0x100d040d, 0x150b0b00, 0x41111013, 0x001b010b, + 0x20c88210, 0x414c180d, 0x3f3f2212, 0x05015701, 0x0b781220, 0x33112416, 0x78af0411, 0xfc220b03, 0xfc77bf11, 0x3eec840d, 0x00020002, 0x053c0200, + 0x000300d1, 0x40280007, 0x0700000d, 0x01010407, 0x09080404, 0x53ba0501, 0xec450603, 0x2f332107, 0x33245682, 0x0130312f, 0x2d065d43, 0xc6fd3c02, + 0x84fe3a02, 0x9a3705bf, 0x51842ffa, 0xad000126, 0x8a025ffe, 0x122fd382, 0x0a402a00, 0x120d0d02, 0x14130f0f, 0x83bd1007, 0x0a002b4c, 0x00001e01, + 0x3f001901, 0x6044333f, 0x6c21200c, 0x68820e21, 0x77580121, 0x132208f0, 0xcf7c32bf, 0x522c2906, 0xa3fb5304, 0xf8ff0200, 0x4732b782, 0x13002706, + 0x3c001700, 0x00131740, 0x14171700, 0xee450a09, 0x45072005, 0xc18307ed, 0x6e841420, 0x4208f145, 0xf3451079, 0x45472017, 0xe9230ff3, 0x452706bf, + 0xf92109f3, 0x21ef83d9, 0xc943ffff, 0x06022507, 0x0000eb04, 0x23050942, 0xdb053302, 0xef200f82, 0xc0200f84, 0xb420f082, 0x2309b743, 0xaffe9d01, + 0x230eb743, 0x0105061b, 0x440b8f73, 0x5198061b, 0x23024d2b, 0xdf053103, 0xc4030600, 0x2a718394, 0x033602b7, 0x00d50526, 0x84ef0006, 0x8263200f, + 0x055b220f, 0x200f82ef, 0x240f86f0, 0x0550030f, 0x200f82f0, 0x2a0f84f1, 0x033d0247, 0x00ed0551, 0x843e0206, 0x027a260f, 0x0509031c, 0x200f82da, + 0x200f843f, 0x265f8249, 0x00dd053c, 0x84c50306, 0x0287240f, 0x84390335, 0x8440201f, 0x0259260f, 0x0525031b, 0x202f82ee, 0x260f8441, 0x03240241, + 0x82e00535, 0x84c6202f, 0xff4d2f0f, 0x033103ee, 0x030701aa, 0xfd94ffc4, 0x701800cb, 0x002b0e53, 0x030100b7, 0x01a00326, 0x84ef0007, 0x5370181f, + 0x8263200d, 0x035b221d, 0x201d82ba, 0x251d93f0, 0x5003daff, 0x1d82bb03, 0x1d87f120, 0x01b80635, 0x353f004b, 0x00ffff00, 0x03080047, 0x01b80351, + 0x883e0207, 0x200e8279, 0x841e824a, 0xff7a261f, 0x030903e7, 0x201f82a5, 0x203d923f, 0x22b78249, 0x82a8033c, 0x88c520b7, 0x180f203d, 0x240a5370, + 0x03000087, 0x203d8439, 0x821f8440, 0xb80222b7, 0x835c8301, 0xff59267b, 0x032503e6, 0x205b82b9, 0x221d8441, 0x1802b30d, 0x260e5370, 0x03efff41, + 0x82ab0335, 0x88c6205f, 0x5370185f, 0x0121080a, 0x02350219, 0x00d5058f, 0x40160008, 0x03010009, 0xf0070103, 0x3f000e01, 0x2f39123f, 0x31322f01, + 0x4edf1830, 0x7c68230c, 0x30828909, 0x2d75a923, 0x08f98255, 0x0000af30, 0xdb058301, 0x4c000602, 0x02000000, 0x00001400, 0xd1050205, 0x0b000700, + 0x12402500, 0x08030509, 0x03140107, 0x06350104, 0x030a3508, 0x56820803, 0xeddefd2a, 0xfd2f0132, 0xce1032cd, 0x21205c83, 0x39052756, 0x21352135, + 0xecfd0205, 0x04ecfdc6, 0x0412fbee, 0xfb0804ee, 0xb00804f8, 0x6282b069, 0x00bd0025, 0x82a80400, 0x23440857, 0x4b408000, 0x1b581b28, 0x011b6802, + 0x1b381b18, 0x1be81bd8, 0x881b6804, 0x211b021b, 0x0b141a1a, 0x12130a0a, 0x010c5711, 0x2321140c, 0x251c0202, 0x01080809, 0x21190000, 0x4a1c191c, + 0x4a11021d, 0x1d231423, 0x1b2d0182, 0x070c081a, 0x0002094a, 0x3f32ed3f, 0x05d05c33, 0x32ed1022, 0x01250282, 0x2f33ed2f, 0x20028233, 0x08fe8211, + 0x32fd337d, 0x32cd325d, 0x11332f32, 0x5ded2f33, 0x30317271, 0x2137135d, 0x2123032e, 0x21072137, 0x3317031e, 0x030e2307, 0x01230123, 0x3e323335, + 0x50bd3702, 0x380d1402, 0xfe3e6953, 0x9b0350db, 0x18fefe50, 0x0417232a, 0x0c8350d2, 0x77b9854f, 0xfdeb1702, 0x7a47cef4, 0x030e415f, 0x5a348cc4, + 0x8c8c2542, 0x45433a14, 0x874b8c1f, 0xb0fd3c66, 0x1c875002, 0x003e593a, 0xffb40001, 0x82b105da, 0x223608ef, 0x24404700, 0x020a0507, 0x1e201422, + 0x111a1a20, 0x11242020, 0x11210f14, 0x1e020503, 0x191a0603, 0x0c34170a, 0x0a0c0606, 0x2f333f00, 0x3232fd10, 0x391711ce, 0xc482333f, 0x0284bd82, + 0x323b1484, 0x14013031, 0x17161607, 0x26262315, 0x20210627, 0x33111100, 0x021e1411, 0x82373233, 0x324208b8, 0x11353617, 0x392b0533, 0x0f2d5f33, + 0x8d509436, 0xdbfef4fe, 0x20c6eafe, 0x53709154, 0x1a0e753f, 0x02c63a0d, 0x0c87c556, 0x30ed1522, 0x0189144c, 0x0337013e, 0x5e7bfc7b, 0x134679a4, + 0xb9680189, 0xb3838a03, 0x00002908, 0xf0054305, 0x2c001900, 0x15151640, 0x08081406, 0x1414171b, 0x08351719, 0x08181515, 0x0203340e, 0x3fed3f00, + 0xedce2f39, 0x32209f82, 0xed279d82, 0x30312f32, 0x83001013, 0x2315398f, 0x022e3435, 0x020e2223, 0x15211115, 0xb4231121, 0x1b012101, 0x16012501, + 0x62348684, 0x032c5b8d, 0xc637fcc9, 0x3d017b03, 0xc2fe3801, 0x5349c9fe, 0x352c7f83, 0xfe73a76d, 0x57feb0cf, 0x46000200, 0xac208182, 0x163b8182, + 0x2e002700, 0x08091740, 0x0c221406, 0x151c290c, 0x350c0912, 0x0b060622, 0x82341708, 0x22848426, 0x4132ed33, 0x33280525, 0x3133cdfd, 0x1e320130, + 0xcf747882, 0x22212805, 0x3435022e, 0x8317023e, 0x1e14258c, 0x11213302, 0x27089a82, 0xd3758d02, 0xdbdb5d9f, 0x7283fec6, 0x5d61a2d3, 0x4b77d49f, + 0x3d3e6789, 0x014c8967, 0x8a6a3f7e, 0x843ef005, 0x87fe8fcd, 0x013c8a82, 0xcf8b46a9, 0x8cc97e8a, 0x5929a84a, 0x8e63658e, 0x7d012c5d, 0x29588d64, + 0x3c000100, 0x8e20a382, 0x1920a382, 0x2008a183, 0x14000203, 0x101b0505, 0x35021214, 0x11001100, 0x16340b05, 0x00080502, 0x11ed3f3f, 0x2f2f3939, + 0x85a285ed, 0x419c85a1, 0x15220724, 0x38413523, 0xb3042105, 0x2c329382, 0x70618e5b, 0xc6205491, 0x25011601, 0x21011b01, 0x87825902, 0x738a0334, + 0x46356da7, 0x535ea479, 0x01370149, 0xfec8fe3e, 0x838200c3, 0xe0ffb427, 0xd0054305, 0x2f838500, 0x10141203, 0x02051b10, 0x03111914, 0x00050535, + 0x0a228382, 0x83850300, 0xceed2f22, 0x680cab41, 0x142a0518, 0x3233021e, 0x3535023e, 0x83851533, 0x03c6b429, 0x2c37fcc9, 0x84628d5b, 0xeafe2e84, + 0xe5fedbfe, 0xd005dffe, 0xfeb08dfe, 0x27848999, 0xc2fec9fe, 0x3d013801, 0x37088382, 0x05000078, 0x00ef0536, 0x403e0029, 0x2600241f, 0x09151f26, + 0x112b2809, 0x14001313, 0x24252928, 0x08273501, 0x12121813, 0x0218340e, 0x32ed3f00, 0x3f39122f, 0xcd3232fd, 0x20059f43, 0x053d4211, 0x31391125, + 0x82150130, 0x4204208b, 0x5b08053c, 0x35270706, 0x3233033e, 0x1415041e, 0x1507020e, 0x11211521, 0x543f3d01, 0x6f94a6b0, 0xa7895640, 0x5df38651, + 0x7c7e3f14, 0xa4513877, 0x37618297, 0x63b0854d, 0x62fbc501, 0x2f813101, 0xab947956, 0x7fbf815d, 0x01695f3e, 0x1e3327ea, 0x6c48240d, 0x766bb48f, + 0x2e8bb2d4, 0x3101b004, 0x3c05e142, 0xd105b904, 0x27000900, 0x09091340, 0x040b0606, 0x06011407, 0x02040435, 0x01350803, 0x05de4208, 0x2107dd42, + 0x54182f33, 0x8582079a, 0x1f042133, 0x03c695fc, 0x02c1fc3f, 0xfed105a5, 0x03fdb08c, 0x0a334300, 0x2a001724, 0x33431540, 0x13192905, 0x07071714, + 0x1735140e, 0x23083243, 0x2f3911ed, 0x43050942, 0x2f431a31, 0x71fb2113, 0x08132e43, 0xb026fd35, 0x00020000, 0x060000b4, 0x00f00558, 0x003b0029, + 0x37214040, 0x051f1f15, 0x12141531, 0x31312515, 0x0714053d, 0x12351531, 0x002a2525, 0x2a020d34, 0x82061a34, 0xedde22dd, 0x438a833f, 0x11270c3a, + 0xed2f3912, 0x18013031, 0x260db182, 0x23153317, 0x4323030e, 0x33290648, 0x13032e33, 0x37043e32, 0x06514323, 0x3d036608, 0x3e75a769, 0xefac61c6, + 0xa9e78c8d, 0x92920964, 0x977b5206, 0x7296514c, 0x95734644, 0x4408f94f, 0x166ca475, 0x29333535, 0x2ff9031a, 0x2120394e, 0x48054e3a, 0x639b6c38, + 0xa2035afc, 0x4a93dd94, 0xa6ea9344, 0x81d299b0, 0x87592c38, 0x5a895c5c, 0x6da9762d, 0x0915fc33, 0x7b55331b, 0x45301a55, 0x33482b2b, 0x27e5831c, + 0x05e1ff50, 0x00d105b6, 0x36061344, 0x140e1011, 0x291d1d0b, 0x1d051523, 0x0b0e3511, 0x17030c0b, 0x410a0034, 0xd88c05b9, 0x05303122, 0x2123be87, + 0x82113311, 0x14112ad0, 0x3227020e, 0x1135023e, 0x08c78621, 0x7797024b, 0x615d9fd4, 0x0172d3a2, 0xdbdbc67d, 0x75d39f5d, 0x3f6a8a4b, 0x894c82fe, + 0x673e3d67, 0x95521f89, 0xd88a7ed1, 0x74014f95, 0xfeb08cfe, 0x8dd58f6b, 0x6230a846, 0x99016495, 0x63976735, 0x30639665, 0x00010000, 0x050000be, + 0x3ea38207, 0x4035001a, 0x10140e1a, 0x041c0010, 0x14190303, 0x1a0f0f00, 0x03341419, 0x1a020909, 0x47030208, 0xa4820592, 0x20050e42, 0x41958232, + 0x9d82057c, 0x3e33112e, 0x1e323303, 0x23151502, 0x23263435, 0x2b089f82, 0xc7be1107, 0x5a4d1d04, 0xcc843363, 0xb5c6488c, 0x536338c7, 0xd105133f, + 0x281830fe, 0x964f101e, 0x78788ddc, 0x1810d2d4, 0x8cfc0d1e, 0x21058942, 0x83826204, 0x1a00052d, 0x05050c40, 0x01140407, 0x42040302, 0x012306d4, + 0x4211ed2f, 0x042a09ce, 0xc652fc62, 0xd105e802, 0xbd86dffa, 0x824f0621, 0x00232b39, 0x011f403d, 0x140e1e14, 0x01821e0c, 0x001f252c, 0x34072114, + 0x35000d16, 0x0182161e, 0x03232024, 0xc2840820, 0x2f2f3926, 0x1032ed10, 0x84062743, 0xed10250d, 0x21013031, 0x22059146, 0x8235023e, 0x144a08d9, + 0x2223040e, 0x1135042e, 0x11231121, 0x02850133, 0x5f4d3001, 0x46592f2f, 0x3f24c52b, 0x376d6455, 0x5b677037, 0xc8fe2643, 0x5d04c7c7, 0x6d574bfe, + 0x3e17163d, 0xaf01596f, 0x895a51fe, 0x11294365, 0x64452912, 0x01015887, 0x9b8253fc, 0x00026308, 0x05e9ff64, 0x00f005da, 0x00450031, 0x4131405d, + 0x2b2d323c, 0x1821042b, 0x15091303, 0x32473c3c, 0x141d1315, 0x2b131a1a, 0x002c2c26, 0x351a1841, 0x21030304, 0x34001d1d, 0x031b0226, 0x0a0e3437, + 0x3fed3f00, 0x2f32ed3f, 0x33113333, 0x113232ed, 0x39122f33, 0x2f332f01, 0x12ed10ed, 0x11ed2f39, 0x1b823917, 0x39121122, 0x2228c782, 0x1e150706, + 0x0e141503, 0x08818e18, 0x21353727, 0x33153311, 0x2aa28232, 0x1e323303, 0x23151702, 0x4501032e, 0xa4080746, 0x27022e34, 0x3a04030e, 0x7d3e7748, + 0x5f67aee4, 0x9593f2ad, 0x255faef4, 0xfe335841, 0x19bac4e7, 0x98501a21, 0x2e478f93, 0x204e595e, 0x685e2710, 0x3eeafc6d, 0x6a6caa76, 0x5f3c74a7, + 0x3b8cebaa, 0x05274762, 0x04141348, 0xf2b37115, 0xa5e78c96, 0xeba85d5b, 0x909d538e, 0x0104357f, 0x01018832, 0x0e264134, 0x101c140b, 0x1f3225e0, + 0x651dfd0d, 0x46457baa, 0x7e60a579, 0x0a5794cc, 0xa1907b31, 0x8c000100, 0xd5040000, 0x1a00d105, 0x16402d00, 0x19140003, 0x14101c19, 0x3409030e, + 0x14001419, 0x03100200, 0x08ba4102, 0x21082443, 0xeb8233ed, 0x11231122, 0x6707e843, 0x3e2506f2, 0x04113702, 0x107a42d5, 0x04143e27, 0x01a3fb5d, + 0x077c42d0, 0xfd210230, 0x10d2d4df, 0x020e1d18, 0x01000000, 0x81825000, 0x05032808, 0x002d00f0, 0x10214042, 0x141a2915, 0x1c29131c, 0x2f221c29, + 0x14220606, 0x23352113, 0x081b0023, 0x05050b06, 0x460b3400, 0x12290811, 0x39ed2f39, 0x332f0139, 0x0555792f, 0xed103923, 0x068d4410, 0x09460720, + 0x15022205, 0x058e4114, 0x342aa982, 0x2123022e, 0x3e322135, 0x0a823502, 0xad015608, 0x4d58581e, 0x58531e15, 0xd3911b51, 0x9da4428a, 0x355e824d, + 0x926333c6, 0x0199fe5e, 0x598d6453, 0x865d3229, 0x110a4305, 0x08cd0c16, 0x3103070b, 0x8755865d, 0x0c0617b0, 0x4a7f6240, 0xc60144fe, 0x2d4b6437, + 0x573c1fb0, 0x31503b37, 0x00020015, 0x05d9ff50, 0x08c3820e, 0x47003535, 0x30405d00, 0x20451d3b, 0x0b060608, 0x15004503, 0x45492020, 0x2a281315, + 0x2f2a132a, 0x34252929, 0x0306022f, 0x1807031d, 0x070b3b34, 0x0e343640, 0x490e0707, 0xde2706c3, 0xed393911, 0x46391711, 0xda8305f3, 0x62423320, + 0x42392006, 0x39250662, 0x14013031, 0x09ce4902, 0x67450420, 0x1e322508, 0x36361702, 0x20070b47, 0x05014123, 0x82010421, 0x2e3722f0, 0x057c4503, + 0x05168008, 0x2a55610e, 0x2f0b183e, 0xfe684779, 0x884796eb, 0x693b426a, 0x7e3b5893, 0x36397d7f, 0xab8c5a3d, 0x5fe38651, 0x7a7d3c10, 0xa9563172, + 0x36608499, 0x5a24d1fc, 0x302e6361, 0x2c606464, 0x20344223, 0xa75f036c, 0x1a68e1fe, 0x30f21933, 0x665f326c, 0x42694a27, 0x31526c3b, 0x22392a17, + 0x818eda4c, 0x6b4282c2, 0x3225ef5d, 0x4a260d1e, 0xfcb5926f, 0x2e1c0cc1, 0x202c1a21, 0x2d211212, 0x4141331b, 0x053f05eb, 0x00f005a2, 0x40280017, + 0x14170114, 0x0e190303, 0x0f0f1014, 0x14350900, 0x03350002, 0x463f0008, 0xf4460569, 0xcefd2805, 0x33253031, 0x48112115, 0xc72311fb, 0x485ffedb, + 0xb02110fb, 0x14f848b0, 0xab000226, 0x52050000, 0x2c087782, 0x00310026, 0x2e28404f, 0x04252718, 0x0e0e1021, 0x2828141f, 0x21142733, 0x2e212626, + 0x04183525, 0x28130000, 0x0e082135, 0x130f0f09, 0x05244c34, 0x39122f22, 0x2605fb46, 0x0132ed33, 0x412f332f, 0x32250592, 0x3912332f, 0x25028239, + 0x33133031, 0x83451632, 0x15172306, 0x82452623, 0x051e2a05, 0x35211515, 0x23371234, 0x08068213, 0x27022e84, 0xb0150206, 0x0b160bcc, 0xc9b0973d, + 0x373b2370, 0x2a131e35, 0x86494565, 0x842f6d79, 0x4871a0d2, 0x4e59fb21, 0x03c6954c, 0xea9a4d11, 0x04544f9d, 0x955b015d, 0x06033a6a, 0x1dd1080b, + 0x5e422424, 0x8361193a, 0x5ab8afa0, 0x01bde4e8, 0x03fda16b, 0xb8f4922c, 0xfe961475, 0x0000c594, 0xffb40001, 0x050206e1, 0x001700d1, 0x15124024, + 0x13131417, 0x06140819, 0x14083517, 0x03340e03, 0xed3f000a, 0x524a333f, 0x30312208, 0x05bc4901, 0x094c1120, 0x023e2c06, 0x15211135, 0xfe2b0523, + 0x4be5fedf, 0x612c08ff, 0x012c5b8e, 0x5602d79d, 0xc8fec3fe, 0x260bf84b, 0x73a76d35, 0x83b08a03, 0xff853477, 0x051105e5, 0x003f00ec, 0x3a2d4059, + 0x001f1535, 0x821f1415, 0x1a200801, 0x2b2b2941, 0x08080a1a, 0x2a302b1a, 0x3a3b242a, 0x1a1a351c, 0x3034240f, 0x09050802, 0x05340f09, 0x32209283, + 0x22075a41, 0x453939ed, 0x33200855, 0x07de5518, 0x102f2f26, 0x33ed10ed, 0x142bac82, 0x2223020e, 0x33352724, 0x4333031e, 0x232406c1, 0x32213521, + 0x2206ee42, 0x4207020e, 0x022006ef, 0x0805fb49, 0x05031e77, 0xe8aa6111, 0xedfe7786, 0x7d340f89, 0x71438c88, 0x2e3066a1, 0xfd699761, 0x990402f4, + 0x805b319d, 0x7081474f, 0x2e0d235d, 0x347a7b75, 0x4b8dc97f, 0x2e4e3a21, 0x3758703a, 0xb175bc01, 0x3c3b3b76, 0x304023e6, 0x6d502d1d, 0x4c683e41, + 0x6e6eb02a, 0x1b365237, 0x18302517, 0x162014db, 0x8a60320c, 0x51653957, 0x0a040d39, 0x0087623b, 0xff000001, 0x055205e1, 0x05d542d1, 0x0e141033, + 0x1403190e, 0x10101701, 0x14340903, 0x0335000a, 0x09d54203, 0x47edce21, 0x132205b8, 0xf4463523, 0x084d4b09, 0x01dbdb23, 0x114b4ba1, 0xfcb02123, + 0x15494b76, 0x31087782, 0x00f00507, 0x40540039, 0x1818162a, 0x29080e09, 0x3b240606, 0x0e353533, 0x1d182415, 0x06131717, 0x30092934, 0x13300707, + 0x350a1d34, 0x30343400, 0x42450034, 0x11ed2708, 0x39122f39, 0x7b41ed39, 0x4eed2006, 0x392306fa, 0x82391233, 0x30312a0a, 0x021e3201, 0x23150517, + 0xbb8b1825, 0x37363108, 0x030e1537, 0x042e2223, 0x023e3435, 0x2e273537, 0x063c0c82, 0x3e352307, 0x2a940103, 0x275e6260, 0xfe14ed01, 0x96d27ea1, + 0xa8885754, 0x68e98551, 0x0808734b, 0x37618344, 0x70c9995a, 0x3830123f, 0x65452240, 0x381e132a, 0xf0053e3b, 0x12251d12, 0x4d9fc6e6, 0x8170bd8a, + 0x593a79bb, 0x27ec016b, 0x240c1d32, 0xaf8d6a46, 0xa9e48669, 0x21040b69, 0x0c131609, 0x08cd1d20, 0x394b060b, 0x822b2008, 0x00152ef5, 0x060f401f, + 0x17080814, 0x08151413, 0x08334b14, 0x2006034f, 0x08604eed, 0x8306ff45, 0x135c4ec5, 0x230a584e, 0x850385fc, 0x08075a4e, 0x0076fc39, 0xff460001, + 0x05d604aa, 0x002a00ee, 0x03234045, 0x25270024, 0x08151e25, 0x022c1408, 0x14120000, 0x13131914, 0x0219340d, 0x25242303, 0x02262604, 0x2f000034, + 0x452f33ed, 0x52410ac1, 0x20148206, 0x052b4433, 0x05333524, 0xa645033e, 0x10b74205, 0x11174f08, 0x27262623, 0x2a0114d7, 0x4984b86e, 0x5ab18b56, + 0x6f757538, 0x783f1431, 0x8d387174, 0x5471c0fe, 0x9768bc8e, 0x315a2d16, 0x8dd20201, 0xbc8b570f, 0x75b47b75, 0x4d301538, 0x3227f238, 0x9c520b1d, + 0xe28c93e4, 0x041369a8, 0x2dfffe48, 0xbf831742, 0x05000032, 0x00f00593, 0x4032001c, 0x0f140d19, 0x0f071405, 0x1e2b0182, 0x16171415, 0x070e160e, + 0x420d1008, 0x3f230610, 0x4c2f3939, 0x9649056a, 0x1e322309, 0x3c411502, 0x82272005, 0x0e3e0806, 0x23151503, 0x023e3435, 0xf490f902, 0x39c664b2, + 0xc6528c66, 0x3e698a4c, 0xfbbc6cc7, 0x9750f005, 0x5efc8bdc, 0x9560a203, 0xfc0a406c, 0x0da0035c, 0x5d916840, 0xdb8d7074, 0x02004f97, 0x89829600, + 0x89825320, 0x00274008, 0x404a003d, 0x283b1f26, 0x15151913, 0x2828150c, 0x14193f00, 0x15321717, 0x34221f00, 0x2d37373b, 0x1513181a, 0x2d081735, + 0x00020734, 0xfd3fed3f, 0x1233cc32, 0xed332f39, 0xed2f0132, 0x4eed2f33, 0x50410800, 0x3e342305, 0xa7833304, 0x040e1422, 0x2805f54d, 0x3e321533, + 0x072e3702, 0x07334605, 0x1e147408, 0x36361706, 0x52321696, 0x8e67a077, 0x2969b6f8, 0x6d675c45, 0xfbb30133, 0xd97bc561, 0x2d2c8ab4, 0x9299907d, + 0x03396382, 0xb0834bee, 0x49795b64, 0x7255331f, 0x687a837f, 0x040e0e24, 0x595d2a60, 0x5d243c50, 0x5792efa9, 0x60788ca0, 0xb0041446, 0x39823101, + 0x32437c5e, 0x2d293244, 0xb178563a, 0x4c84b569, 0x274d3e26, 0x2e3c4f36, 0x3d302729, 0x4b61322a, 0x05210557, 0x36f182f0, 0x402a0019, 0x07090a15, + 0x1b0c0c14, 0x08191417, 0x0c0a0a35, 0x51120818, 0x33210614, 0x0ceb4f39, 0x20061351, 0x0df24f11, 0x210ab642, 0x1551c5c5, 0x0ab84208, 0xb0defe24, + 0xbb4257fe, 0xffff2f0b, 0xe1ffb200, 0xd1052905, 0x38000602, 0x7b470000, 0x05972206, 0x050b42d1, 0x14010237, 0x1e04041b, 0x12101412, 0x161b1c12, + 0x0b0b0534, 0x3501031c, 0x090f4d04, 0x2508794e, 0x31cdfd33, 0x91820130, 0x49112121, 0x352f07f0, 0x16141533, 0x023e3233, 0x99041137, 0x4c3bfefe, + 0x3e260f6d, 0xfad10514, 0xf349b0df, 0x05704c09, 0x030e1d24, 0x99820074, 0xe5ff8626, 0xec050205, 0x36209982, 0xb4239984, 0x43050000, 0x212205d1, + 0xd1431040, 0x07072107, 0x4f09d243, 0x34520804, 0x12305214, 0x25142c52, 0x020076fc, 0x7b828c00, 0x052f3c08, 0x000f00eb, 0x405d0051, 0x152c3132, + 0x15370606, 0x53224d4d, 0x15414143, 0x001c1717, 0x311d2215, 0x1004321c, 0x34031617, 0x103c4341, 0x16434316, 0x480b0310, 0x0b0a3c34, 0x45022734, + 0x173105cb, 0x2f2f2f39, 0xed391211, 0x17113911, 0xed2f0139, 0x093b5432, 0x2f33ed22, 0x6905b746, 0xdb520552, 0x22012105, 0x2206ef43, 0x182e3537, + 0x820a4596, 0x0a314c14, 0x080ce346, 0x9899018c, 0x2b9c9a9a, 0x48487251, 0x012a4f71, 0x919f5132, 0x220e317f, 0x20494d4b, 0x233e5330, 0x75bd8549, + 0x4987bd75, 0x2f523d23, 0x395c743a, 0x9defa252, 0x778fa152, 0x782a0e27, 0x7349978d, 0x2e336ba5, 0x62049a62, 0x65787865, 0x1f395232, 0xfe51391f, + 0x49351d47, 0x1b12e82c, 0x06010a12, 0x634a3413, 0x60844f41, 0x84603636, 0x4f653c4f, 0x0c041038, 0x5588633e, 0x477eac66, 0x132a2317, 0x343e1de6, + 0x734e2921, 0x4b653a4a, 0xab4e002c, 0x39043b05, 0x0700d105, 0x0f402000, 0x04090606, 0x07011407, 0x03050535, 0x00080003, 0xc7423f3f, 0x4e322005, + 0x5008052d, 0x11331123, 0x01211521, 0x02c6c684, 0x054bfdb5, 0xb08cfed1, 0x00ffff00, 0x06f0ff69, 0x02e10524, 0x00fc0106, 0x00020000, 0x0500003c, + 0x00f10550, 0x0033001f, 0x191d4039, 0x20150c19, 0x1b2a3520, 0x00011418, 0x16342f1e, 0x35011811, 0x081d1b1e, 0x060c4425, 0xfd32dd2c, 0xed32dc32, + 0x33cd2f01, 0x485432ed, 0x18332009, 0x250b2f93, 0x022e2223, 0x7e832327, 0x35231524, 0x06440123, 0x025a0809, 0x023e3233, 0x9050ae3c, 0xca7878c8, + 0x93535394, 0x632977ca, 0x05185360, 0x60fca003, 0x2804aec6, 0x417c613b, 0x3b627d41, 0x427d603b, 0x3b607d42, 0xa3024d01, 0x538dba67, 0x6db7854a, + 0x4d88ba6d, 0x1c302414, 0x9faec7fe, 0x4f5c039f, 0x2d2d567c, 0x584f7d56, 0x2b244e7c, 0xdb837a53, 0xe1ff732a, 0xf005da05, 0x32000602, 0x033cdb82, + 0xeaffa400, 0xd1051d06, 0x31002600, 0x50003e00, 0x1b312940, 0x0d370d14, 0x0d2c1520, 0x12380182, 0x05050740, 0x37121532, 0x310d341b, 0x35380c31, + 0x0005031a, 0x0c270707, 0x20059350, 0x081c4932, 0x2d07f844, 0x39121133, 0x102f2f39, 0x103311ed, 0xa35032ed, 0x35272605, 0x17031e33, 0x05ad5011, + 0x33330423, 0x06094511, 0xe8823720, 0xf8823520, 0x01279708, 0x33021e14, 0x040e2211, 0xb1582e03, 0x104099a8, 0x968e7d2c, 0x96bd5f45, 0x654b2b5d, + 0xc6407f75, 0x60aef291, 0xa7957042, 0xa3520caf, 0x78415182, 0xebfd67a8, 0x457a5b35, 0x404a5129, 0x11161b30, 0xd2213222, 0x1d2e3a20, 0x24610204, + 0x486c8f56, 0x1e344f6c, 0x31c8fd0d, 0x5e7fb16f, 0x2b486a91, 0x4924af13, 0x715a5073, 0x01031a42, 0x2b50437c, 0x0387010d, 0x3e2a180c, 0xedff0100, + 0x8601e403, 0x03001306, 0x03b71400, 0x02010000, 0x00010301, 0x2f01cd3f, 0x1c6c32cd, 0x86013507, 0x0f01f4a5, 0xd1fd1306, 0x01002f02, 0xe5032900, + 0x1406b901, 0x00223184, 0x318a0303, 0x31843320, 0x1323012a, 0xfcfeb901, 0x14069e8c, 0xff273185, 0x01c50473, 0x9c390618, 0xfe182a31, 0x06b495f0, + 0x018cfe39, 0x20958274, 0x083182fd, 0xf106d270, 0x20001d00, 0x140f0d40, 0x001b1d09, 0x090e4002, 0x000ec01d, 0x01cc1a2f, 0xdc1a332f, 0x1032cd32, + 0x303132cd, 0x14151601, 0x1415040e, 0x2317021e, 0x3435032e, 0x3435043e, 0x16bc0127, 0x4e5c4e34, 0x0b060234, 0x0d046c09, 0x4e33080c, 0x0d334e59, + 0x2832f106, 0x2c364632, 0x0626382f, 0x0a201f1c, 0x2c231a08, 0x3747321b, 0x25352e2d, 0xdb82201b, 0xc5041324, 0xa986b801, 0x01010225, 0x82020300, + 0x0a0d4114, 0x01231328, 0x95b40401, 0xa988f0fe, 0x3182ae20, 0x06f13908, 0x002a00b4, 0x011c4036, 0x040104e0, 0xd0162900, 0x020ee00e, 0x0e010ee0, + 0x2409161f, 0x0000161a, 0x001a1713, 0x32cd332f, 0xde10322f, 0xdc2f01cd, 0x107271cd, 0x5dcd32de, 0x1323bf82, 0x82262623, 0x470220b5, 0x0227061f, + 0x27262223, 0x4b321635, 0x25080843, 0x15020e22, 0x0a7d3d14, 0x79562e08, 0x445c344b, 0x55402527, 0x080f0831, 0x20080e08, 0x16081628, 0x39142a23, + 0xb8822e4c, 0x49262008, 0x5d804d23, 0x53361933, 0x394a2939, 0x80010122, 0x1c1a1202, 0x1422190b, 0x59412408, 0x82003b35, 0x3b2b08ca, 0x03041e06, + 0x0500a207, 0x05b71500, 0x01040705, 0x00010503, 0x01cedd2f, 0x3912cd2f, 0x0130312f, 0x15331121, 0xfc030421, 0x82038d38, 0x8401222b, 0x373583fe, + 0x07e1ffb4, 0x005d0412, 0x4049002d, 0x1a0f2325, 0x1d0d0a0d, 0x0d181a1a, 0x25080182, 0x2d1a012f, 0x20282823, 0x1807070a, 0x201d3f15, 0x19081b0a, + 0x00050f01, 0x3f33333f, 0x32ed333f, 0x11332f32, 0xec492f33, 0x2f392405, 0x82ed102f, 0x2204820e, 0x4c133031, 0x362106d5, 0x20fe8237, 0x820c8811, + 0x35232109, 0x2105576e, 0x07830706, 0x022e7d08, 0x0abcb435, 0x4f50592d, 0x04034f9e, 0x5a2c0bbc, 0x4e994e4f, 0xaf58bcbc, 0x279e7363, 0x63305f71, + 0x59875c36, 0xfd5d042b, 0x567b4d84, 0x173d4f2f, 0xcb021e3d, 0x7c4e84fd, 0x3c4b2d56, 0xa3fb4203, 0x6052497c, 0x162c5f55, 0x9d6d3914, 0x00010064, + 0x0464feb9, 0x007c0465, 0x40340019, 0x190c0c1b, 0x1b01011a, 0x1a0b0e13, 0x42070a10, 0x11041613, 0x010c1005, 0x080e3e0c, 0xcefd3f00, 0x21052d68, + 0xc6442f01, 0x5901200a, 0x063e0608, 0x15211107, 0x11231121, 0x36361533, 0x15163233, 0x11bc5f04, 0x4e4c5d32, 0xf0024ea6, 0xa18210fd, 0xb664bb33, + 0xee8e01bd, 0x2a537d53, 0x5dfd3c4b, 0x0564fe9f, 0x268c82f9, 0x0000ced9, 0x826c0002, 0x82ff2085, 0x1a2e0885, 0x40002b00, 0x17182240, 0x14151a1a, + 0x02021b14, 0x0a1b262d, 0x081a3e18, 0x211c0516, 0x040f143f, 0x023f291b, 0x0c010a05, 0x333f3f00, 0x038432ed, 0x244e3f20, 0x33332b06, 0x32fd3311, + 0x013031cd, 0x2b411123, 0x3e342806, 0x1e323302, 0x82371702, 0x2315231a, 0x56501103, 0x33500808, 0x43043632, 0x64ac57bc, 0x3d72a164, 0x64b38750, + 0x45494e2d, 0xbcb00c24, 0x4228bcbc, 0x51243f3f, 0x892b547d, 0xfea35293, 0x4b1a0264, 0xd6955049, 0x98dc8d86, 0x1e140a50, 0x42fc3013, 0x021c019f, + 0x0f181278, 0x9a6c3906, 0x46d3c460, 0xbe000100, 0x2020cd82, 0x2208bf82, 0x40320019, 0x0001031a, 0x1b05051a, 0x101a0e13, 0x13420b0e, 0x05120416, + 0x010f0c05, 0x0008033e, 0x4133ed3f, 0x12280944, 0xcdfd2f39, 0x25303133, 0x210a3849, 0x43410706, 0x8264200b, 0x0645418f, 0x25064141, 0x64fe9f9f, + 0x44411804, 0xbefc2305, 0x41415d04, 0x01280806, 0xe1ffb900, 0x14067004, 0x34001f00, 0x11111b40, 0x021d1a1f, 0x120f2102, 0x121e0c1a, 0x0e05103e, + 0x3f181d01, 0x000a0702, 0x34418282, 0x59fd2005, 0x3331072a, 0x312f32ed, 0x35232130, 0x06070606, 0x022e2223, 0x05074735, 0x0807de54, 0x3311372d, + 0x30bc5f04, 0x6a562c5a, 0x32608a58, 0xfdfb02bc, 0x5e321005, 0x5452254d, 0x7cbc2452, 0x28143926, 0x689e6b36, 0x49fe8c04, 0x8323fe9f, 0x24152599, + 0xb1011d31, 0x080ad541, 0x29001825, 0x1f403b00, 0x141a1618, 0x01191313, 0x1b242b01, 0x1a051509, 0x0e133f1f, 0x3f271904, 0x160a0401, 0x4f0c003e, + 0xd34105f0, 0x2f012805, 0x2f3912ed, 0x49113333, 0xcf4106c8, 0x41012013, 0x03210cce, 0x12cd4187, 0x4188fe21, 0xfa241fcd, 0xb8029fa6, 0x2b10cd41, + 0x2f040000, 0x09001406, 0x12402400, 0x29053859, 0x3e07011a, 0x01030505, 0x38593e08, 0x563f2005, 0x2f21060f, 0x0b365933, 0xfdb40331, 0xb502bc0a, + 0x3a024bfd, 0x49fe1406, 0x42e1fc9f, 0x2008051b, 0x7c046a04, 0x30001700, 0x0c0c1940, 0x01011a17, 0x1a0a1119, 0x42070a0e, 0x10041411, 0x0e3e0b05, + 0x2354830c, 0x3f3fed3f, 0x48053847, 0x21210824, 0x05455223, 0x43065d43, 0x6420085b, 0x29095b43, 0x58bc54fc, 0xbdb664bb, 0x14427c02, 0xc1fb2205, + 0x0a57439f, 0x64febe24, 0x7b821906, 0x3d002c31, 0x28404c00, 0x2b0b1a2d, 0x371b002a, 0x820b3711, 0x203f3a01, 0x381d1a1b, 0x112a3e00, 0x161b3211, + 0x0425203f, 0x0c1d051f, 0x0a063f32, 0x838b8300, 0x4c11208c, 0x928207c4, 0x2f2f392d, 0xfd103311, 0xed10cd32, 0x56013031, 0x33210b30, 0x05584333, + 0x5705bb42, 0x172305da, 0x5b051533, 0x51080879, 0x020e2223, 0x6c368205, 0x90476aa0, 0x693a4a75, 0x17d65a95, 0x37746853, 0x6570773b, 0x2abcbc2a, + 0x3c7c776b, 0x6492bb6b, 0xdbfcaa15, 0x2550422b, 0x25405630, 0x3c5230ed, 0x72350222, 0x4d84af62, 0x72a0632d, 0x3a5e7b40, 0x1334604c, 0x22332210, + 0xe38222fb, 0x3a253f08, 0x68321527, 0xd59f6ea0, 0x213d5837, 0x50774e27, 0x50381e88, 0x00020000, 0x04e1ff69, 0x001406fb, 0x00270016, 0x0517402d, + 0x161a0204, 0x17292222, 0x3f1c101b, 0x22050a0b, 0x0502163e, 0x42440101, 0x5ded2006, 0x3a590c58, 0x48232008, 0x022305a0, 0x87012133, 0x211121c6, + 0x4408c682, 0xbbbb8503, 0xb0864ebb, 0x89b46361, 0xb8814552, 0xfd2a0174, 0x6e4f2ca7, 0x506f4242, 0x44c8fe2d, 0x06284a6b, 0x9f49fe14, 0xda9960fe, + 0x9044408a, 0xd0899ce0, 0xccfd478c, 0x3068a473, 0x71a0662f, 0x68359e01, 0x06154297, 0xa3826420, 0x29001536, 0x1a151540, 0x0f170101, 0x0a0c1a0a, + 0x120f4207, 0x0b010e04, 0x42051142, 0x31210c10, 0x0a0e4230, 0x33112323, 0x06684511, 0x44080c42, 0x09420622, 0x07222908, 0x49cdfdb0, 0x00ced952, + 0x02316f85, 0x005d0461, 0x40160005, 0x1a02040a, 0x053e0205, 0x290d820c, 0x01ed3f3f, 0x31cdfd2f, 0xfa831330, 0xbcbe212a, 0x045dfee7, 0x9fa6fa5d, + 0x07213385, 0x2fa3821c, 0x40490031, 0x1a131027, 0x20282d28, 0x281b1a1d, 0x33390182, 0x051a0308, 0x2042181b, 0x081e0a23, 0x0003051c, 0x040b0842, + 0x0c040107, 0x05df4400, 0x8d5d0585, 0x09e94605, 0x6f583220, 0x87112005, 0x021e2cbd, 0x15061415, 0x33021e14, 0x46373632, 0xcf5e08ec, 0x34353805, + 0xb502022e, 0xbc49a250, 0x67b255bc, 0x335e8451, 0x5b2b0907, 0x839a5552, 0x5db83010, 0x3862854d, 0x19020302, 0xc9035335, 0x84fb3d4a, 0x4b2a08eb, + 0x9a673550, 0x41873a65, 0x345a7844, 0x43033b4a, 0x4a7ca3fb, 0x9d6b3651, 0x54593268, 0x54342c53, 0x0200203c, 0xe1ff6a00, 0xd5827304, 0x2e001f37, + 0x27404c00, 0x011a0203, 0x01080b00, 0x1b0e0909, 0x2b2e1d2b, 0x2f018201, 0x181b2330, 0x0a133f28, 0x003e2e0b, 0x081d0103, 0x25062d42, 0xed393912, + 0x30423f32, 0x82d48205, 0xed10260e, 0x39112f32, 0x05dd4a39, 0x3313132b, 0x17031e07, 0x16231521, 0x0b1e4316, 0x26263724, 0xe6872201, 0x34355e08, + 0x81d72726, 0x6d335bb5, 0x01326d6f, 0x49428d13, 0x7ebf8141, 0x4383c280, 0x81b77637, 0x6e01c251, 0x542ec8b6, 0xa6974b79, 0x0d05515a, 0x18b30701, + 0x2b4b4036, 0x81d0549f, 0x5b9bce74, 0x73ce9c5b, 0x6ea0c361, 0xfe59330d, 0x62d3d2da, 0xd0366797, 0x55cf81c6, 0x00010000, 0x0463feb4, 0x38d7825a, + 0x4029001b, 0x1a001915, 0x0e1d0202, 0x051a0c1a, 0x1419010e, 0x0a070242, 0x07344700, 0xf1423f20, 0x33ed2905, 0x23013031, 0x23030e11, 0x2206f445, + 0x4f021e14, 0x332d051f, 0x2ebc5a04, 0x39615955, 0x32608a58, 0x09ec45bc, 0x0263fe27, 0x29392319, 0x05ef4516, 0x45cdfb21, 0x033a07ec, 0xffff0042, + 0x0000b900, 0x14065f04, 0x4b000602, 0x02000000, 0xdfff6400, 0x8f824a04, 0x3d002838, 0x29404f00, 0x25220700, 0x1d211d1b, 0x330a1a07, 0x03173902, + 0x01821d0a, 0x1b293f33, 0x17003912, 0x22020222, 0x422e3301, 0x080a0d0a, 0x06974308, 0x122f3924, 0x2a493939, 0x17122308, 0x464c3239, 0x39112106, + 0x0625b782, 0x15031e07, 0x051c4911, 0x30052f42, 0x032e2737, 0x37363435, 0x06073337, 0x17161415, 0x08ce8703, 0x2e343574, 0x030e2702, 0x3a432203, + 0x366a9d68, 0x70cb55bc, 0x406f9556, 0x7bab6a2f, 0x1c251571, 0x270b0a10, 0x0c0a37c1, 0x4828fb0b, 0x59273962, 0x28285b5c, 0x46547c51, 0x0426496c, + 0x403d43af, 0x73c5a991, 0x4b7b83fe, 0x8e623351, 0xc1ae5a5b, 0x0d4a8ade, 0x192c2621, 0x51172813, 0x0e121264, 0x30fc0817, 0x1739614b, 0x22332211, + 0x94b0694c, 0x924f367e, 0x1348888b, 0x00173c0a, 0x0218402e, 0x03031a00, 0x1a0c1119, 0x42090c0e, 0x0f041411, 0x00080d05, 0x450c033e, 0x2a430869, + 0xfd2f2705, 0x053031cd, 0x3d581533, 0x0f0d4806, 0x4888fe21, 0xfd210d0d, 0x120b489f, 0x08057941, 0x1e064236, 0x3e002900, 0x29404f00, 0x282a133a, + 0x090b2301, 0x341a1809, 0x2a401b1b, 0x0000231b, 0x422f3423, 0x190a1e1b, 0x3f0e0a08, 0x3a010609, 0x00133e28, 0x323f0005, 0x58075349, 0x0b820b38, + 0x230b3958, 0x3233033e, 0x23059b63, 0x020e2223, 0x21118741, 0x79411323, 0x746b080e, 0x907d33b8, 0x553359a2, 0x502d0921, 0x5f67372b, 0xdd822554, + 0x55bc5aa0, 0x92526ad1, 0x2010406e, 0xb26c1e2e, 0x40604120, 0x575d5d2a, 0xb2844b24, 0x1f2c1d67, 0x5f5d0410, 0x0a4579a4, 0x1315bf0b, 0x3f6a4e2b, + 0xe2b37917, 0x7b56fe81, 0x632f514b, 0x91426997, 0xfd4a9996, 0x3e6247d8, 0x3224131b, 0xcd81561f, 0x440c5995, 0x58888d8e, 0x05390557, 0x00140616, + 0x402e001d, 0x1a1d1b18, 0x1f191902, 0x1d0c1a0e, 0x0e011a3e, 0x060a4305, 0x43080649, 0x2f2805cc, 0x31cdfd33, 0x35232130, 0x22120c43, 0x43231521, + 0x0123150e, 0x437cbc78, 0x0223070d, 0x4384fdd5, 0x3708070d, 0x009ff904, 0xfe51ff01, 0x047a0159, 0x0018005d, 0x0c0e401f, 0x161a180a, 0x050a0517, + 0x05110b0b, 0xcd3f000d, 0x39122f32, 0xed2f013f, 0x303132cc, 0x020e1405, 0x022e2223, 0x08094851, 0x0133112c, 0x7d59317a, 0x3e3a124b, 0x0d0a133a, + 0x16302e27, 0x0e29493b, 0x94631bbc, 0x08043263, 0x05b3060a, 0x26090c0d, 0x0451764d, 0x6b820022, 0xe1fffd24, 0xf1875f04, 0x1b2ff082, 0x1a111f1b, + 0x051c0c0e, 0x01103e0d, 0x4942161b, 0xed200bf8, 0xce267682, 0x2f3912ed, 0xf18ced33, 0x490adb57, 0x004405f1, 0x78012109, 0x88090244, 0xed0322f1, + 0x0c00449f, 0x00012b08, 0x0364fe46, 0x007d0481, 0x40340032, 0x1f2c2c1a, 0x0009091b, 0x15151334, 0x2c001b28, 0x150c2e3e, 0x0e13131a, 0x00041a3f, + 0xfd84ed3f, 0x1b63ed20, 0x3031250c, 0x063e3417, 0x08136456, 0x14150660, 0x15213316, 0x022e2221, 0x72593746, 0x37597277, 0x39654c2c, 0x54544f1e, + 0x47170a22, 0x57336256, 0x364f82a6, 0x71777159, 0x34273659, 0xc8fdea01, 0x1d364e30, 0x717238cc, 0x77757473, 0x60423e79, 0x1f0f1f3f, 0x0fc91f2e, + 0x2c0f191f, 0x4a74a064, 0x727b848b, 0x25555f69, 0x209c262b, 0xbb444b39, 0x7c042b08, 0x51000602, 0x01000000, 0xcb823c00, 0x043b2808, 0x0029005d, + 0x001c4037, 0x1c111105, 0x092b231c, 0x05081b0d, 0x231b1805, 0x03101100, 0x1e3e1c08, 0x0005080c, 0x53ed3f3f, 0x332f054c, 0x32ed332f, 0x2f391211, + 0x39122f33, 0x44013031, 0x3322058d, 0xc0830617, 0x0e171723, 0x3ec78905, 0x043e3435, 0x90522002, 0x463e3f6c, 0x5f6002fa, 0x2602eef0, 0x647d7d72, + 0x0133283e, 0x83d2fde0, 0x5b3a3fbe, 0x015b6b70, 0x68521eb9, 0x7e4b4a7d, 0x8436043c, 0x4eab6148, 0x7b77370a, 0x27647179, 0xb8832a2b, 0x77352c26, + 0x5b6c787a, 0xb422af83, 0x934e64fe, 0x1d422524, 0x0c1c0a20, 0x2040934e, 0x4b934e11, 0x0207fa23, 0x0c944e18, 0x02003508, 0x64fe7200, 0x7e040504, + 0x47002e00, 0x24404400, 0x431a002c, 0x2f394040, 0x1b112020, 0x39492f2f, 0x1b1a071b, 0x43072727, 0x34032c16, 0x0c223e20, 0x040c3f34, 0x6007e354, + 0x32200ae6, 0x27059d71, 0x303132ed, 0x042e3425, 0x470a5750, 0x5542058d, 0x22168305, 0x53363637, 0x84080a74, 0x06141504, 0x01033e07, 0x40372470, + 0x7e4b2437, 0xa3585ba5, 0x653e4b7c, 0x65818681, 0x1e160e3e, 0xfd5c0211, 0x384d2e5e, 0x503b221f, 0x0110132e, 0x5d482bd5, 0x44623c32, 0x322a1c25, + 0x09081c2a, 0x38607e46, 0x4a5131f0, 0x466b584c, 0x35618651, 0x68996431, 0x7c889653, 0x565e6670, 0x101d1528, 0x371f9c07, 0x4b252f4e, 0x28274d4c, + 0x3e120243, 0x1e1f3f5d, 0x35325038, 0x3f3c4452, 0x35192d47, 0x7a743a14, 0x06bd5486, 0x7c049239, 0x3f002500, 0x00212040, 0x1b1c2323, 0x0f000005, + 0x14270505, 0x82111a0f, 0x103e2b10, 0x0a0f0a25, 0x04171442, 0x114f0513, 0x46322009, 0x1222064b, 0x9f482f39, 0x59fe8205, 0x604e0ac0, 0x5c1e2008, + 0x5208067b, 0x02211521, 0x465e36c8, 0x65462528, 0x55512340, 0xbcbc2453, 0x525dc055, 0x33457397, 0x012d604f, 0x7036fe14, 0x908d8b44, 0x4c6b4349, + 0x32221329, 0x04bdfc1e, 0x4f4b7b5d, 0x6da46d36, 0x798e9f54, 0x009f042b, 0xb100ffff, 0x5704e1ff, 0x06025d04, 0x42005800, 0x87450693, 0x1c002909, + 0x0202191a, 0x0c1a0e1f, 0x22098545, 0x4d013e1c, 0x934808f4, 0xfd332606, 0x013031cd, 0x14944821, 0x05331125, 0x4888fe16, 0xbc241397, 0x180264fe, + 0x21158a45, 0x1146eff8, 0x12073305, 0x2b007c04, 0x23404300, 0x201a0a23, 0x1a2b200d, 0x01822002, 0x1a172d3c, 0x42070a15, 0x17042623, 0x1d200521, + 0x0a100d42, 0x00080b01, 0x333f333f, 0x058532ed, 0x182f0121, 0x20072871, 0x05e64911, 0x210b854b, 0x324f0635, 0x4a142008, 0x152907c5, 0x32333636, + 0x0715021e, 0x089f5112, 0x63af5826, 0x3660834e, 0x02300f8f, 0x567c4e7c, 0xfc3c4b2d, 0x52497cbe, 0x77a5672e, 0x860baa51, 0x48002012, 0x04210549, + 0x4cbf8264, 0x0221062b, 0x0b2b4c02, 0x2b4c0520, 0x22938423, 0x4c041516, 0x344e192b, 0xffff2e06, 0x59fe6c00, 0x7c044304, 0x4a000602, 0x347d8400, + 0xb6030000, 0x05005d04, 0x0b401800, 0x1a000702, 0x043e0104, 0x3a0e8208, 0x01ed3f3f, 0x3311ed2f, 0x11013031, 0x11211521, 0x3c027a01, 0x5d0408fd, + 0x829f42fc, 0x05914a2e, 0x06120729, 0x002b0014, 0x41254045, 0x21221677, 0x78411701, 0x7ac78706, 0x79410896, 0x4111201c, 0x11201279, 0x23307941, + 0x190221fb, 0x230f7a41, 0xcdfdf904, 0x002e1385, 0x1e000200, 0x9e0464fe, 0x20007c04, 0xc5823300, 0x1a242308, 0x211b0e1a, 0x1c2c3521, 0x1f1a1804, + 0x2f2c0100, 0x0113183f, 0x1f1c3e19, 0x2b0c1d08, 0x09043f26, 0x89430304, 0x333f2a07, 0x32de32fd, 0x2f0132ed, 0x57d282cd, 0x372409f9, 0x15331133, + 0x4c05244f, 0x27210725, 0x053c5311, 0x0808f957, 0x16110790, 0x3e323316, 0xbcb41e02, 0x645d5422, 0x618f5d32, 0xa3794532, 0x4e4c225e, 0x1003224b, + 0xb4bcf0fc, 0x3f239e03, 0x54283759, 0x40224d51, 0x6b424486, 0x039f2a4d, 0x3a1f80be, 0x6d411a2c, 0x99614d8e, 0x140a3869, 0xf9fe131d, 0x0164fe9f, + 0x30f2029c, 0x19233c52, 0xfe1b3528, 0x27282bfe, 0xffff6045, 0xe1ff6a00, 0x7c047104, 0x52000602, 0x03000000, 0x64fe3c00, 0x14068f05, 0x34002700, + 0x59003d00, 0x05342e40, 0x3d151a21, 0x1b001508, 0x0182152f, 0x0f3f1a3d, 0x1b380d0d, 0x3f34151a, 0x2821213d, 0x01203e35, 0x0f0f080d, 0x053f2814, + 0x4c060a08, 0xda47065c, 0x08365005, 0x38054b5e, 0x102f2f39, 0x333311ed, 0x3232ed10, 0x14013031, 0x1123020e, 0x032e1123, 0x050a5827, 0x35032e34, + 0x33023e34, 0x051e1133, 0x043e3201, 0x022e3435, 0x304d0327, 0x178e0805, 0xb2688f05, 0x3dbc88ef, 0x287f9092, 0x8b81300a, 0xb0733789, 0x8d563d77, + 0x569e5eb4, 0x597a92a5, 0x366ffd31, 0x4259666f, 0xaa784126, 0x8d8ebc69, 0x546d4119, 0xcc901002, 0x6efe3c82, 0x14029001, 0xd11b2d21, 0x1b2c3d25, + 0x0f040303, 0x4d6d4b2f, 0x1d47775a, 0x240b16fe, 0x9270533a, 0x1f0c2cfe, 0x4f755435, 0x37597f57, 0x4cf0010f, 0x27342247, 0x01000a1d, 0xe1ffb900, + 0x14069b06, 0x32001d00, 0x1a1b1a40, 0x0c191902, 0x1a0e1f1d, 0x4c4d000c, 0x521c2009, 0x33270607, 0x3f3f32ed, 0x822f2f01, 0x075349de, 0x49532120, + 0x4d14200c, 0x11250854, 0xfd9b0621, 0x09485308, 0x21095449, 0x46533c02, 0x0b55490a, 0x42fc2808, 0x5c000200, 0x49010000, 0x03005c04, 0x21000700, + 0x07071040, 0x06012d03, 0x56070106, 0x56000805, 0x3f000502, 0x63ed3fed, 0x322805e4, 0x0130312f, 0x11331123, 0x01220382, 0x0082ed49, 0x013f0327, + 0x01a4fb1d, 0x3642821d, 0xe0015a00, 0xe6028e02, 0x1b000d00, 0x0d0d0b40, 0x070d060f, 0x8206420a, 0x332f2156, 0x3222c582, 0xf3562f01, 0x05da4705, + 0x16355b08, 0x36323316, 0x488e0237, 0x87454a91, 0x44844345, 0x024b944a, 0x272a2731, 0x2428b52a, 0x01002428, 0x00004600, 0xf005e404, 0x53002500, + 0x0b0b2a40, 0x09190e0e, 0x25000404, 0x10140206, 0x2709090c, 0x251b1419, 0x46101b1b, 0x46060902, 0x020d0c03, 0x34140802, 0x08080221, 0x9a643f00, + 0x32dd2705, 0xed1032ed, 0x78822f32, 0x7982ed20, 0xfd333325, 0x47cd3232, 0xc78306b1, 0x15231522, 0x23051755, 0x35333523, 0x286a0383, 0x06cf5f05, + 0x1232332b, 0xe4041511, 0xc6c7c7c7, 0x350082d6, 0x725d9294, 0x3ac61640, 0xf97fb979, 0x8a6403f3, 0x27fe8a77, 0x0682d901, 0xd7e52631, 0x5ea47946, + 0xeb9c1721, 0xc8fe509e, 0x4617c3fe, 0x3608050f, 0x14067709, 0x56003700, 0x0e112e40, 0x1a2a281a, 0x351a370c, 0x0c283502, 0x280c3535, 0x1a1d3903, + 0x293e0d1b, 0x051d3601, 0x28303035, 0x02164223, 0x16110707, 0x820f010a, 0x3f3325bd, 0x332f3333, 0x3221b982, 0x250a822f, 0x2f01ed3f, 0x595d12ed, + 0x63148205, 0x494c06fe, 0x1121210a, 0x5515554c, 0x09210a5e, 0x096d4f77, 0x4f89fe21, 0x02211379, 0x14814bef, 0x4c8bfa21, 0x994b1680, 0xffb4240e, + 0x828809e1, 0x003b25ef, 0x11344061, 0x2b2eef82, 0x2c0c1a2e, 0x391a3b2c, 0x0c283902, 0xf2823939, 0xf2823d20, 0x3e2d3a25, 0x83052b1d, 0x343922f8, + 0x20f58934, 0x24f59000, 0xfd333fed, 0x28f78cce, 0xed102f32, 0x33ed1032, 0x0d485631, 0x2121fc98, 0x08496415, 0x33113724, 0x5f567709, 0x17004109, + 0x21167656, 0x0441ed03, 0x0f8f5618, 0x00013308, 0x0964feb4, 0x00140677, 0x40510031, 0x1a0e112d, 0x1a2b0a28, 0x021a310d, 0x02020d28, 0x3303280d, + 0x0a1b1a1d, 0x2e2b4207, 0x293e0d04, 0x28051d01, 0xf4414223, 0x0c0b2305, 0x0c483f00, 0x3f3f2105, 0xed21fb82, 0x21fb8832, 0xf789ed10, 0x2108aa55, + 0xf7981123, 0x33363625, 0x82151632, 0x591120ef, 0xbc20051b, 0xd355ee97, 0x0722220d, 0x53e69811, 0xdd8906e2, 0x5e003924, 0xdd823340, 0x132a2c08, + 0x0c1a2c2a, 0x02371a39, 0x370c2a37, 0x032a0c37, 0x1d1a1f3b, 0x012b3e0d, 0x37051f38, 0x252a3232, 0x07021842, 0x0a181307, 0x54123e10, 0xdc82056f, + 0x241bdb42, 0xfd103311, 0x0c354ecc, 0x33112123, 0x14ad4915, 0x490ede41, 0xef8208b5, 0x4214c349, 0xf92216e1, 0xd9499f8e, 0x0fe34217, 0x64fe4808, + 0x14062f0c, 0x71004d00, 0x070a3e40, 0x0324211a, 0x2f2c051a, 0x4449441a, 0x371a393c, 0x37440521, 0x21054437, 0x1a164f04, 0x42000314, 0x06042724, + 0x3801223e, 0x3f3c0516, 0x34370f3f, 0x421c2134, 0x3a0a0f0a, 0x41040808, 0x322008ec, 0x2105ad5b, 0xf441333f, 0x5b2f200e, 0x322006b7, 0x2407fb41, + 0x07062201, 0x1ef54111, 0x241fea54, 0xa250c807, 0x180e4249, 0x42240155, 0x1a551b23, 0x005d0823, 0x00770001, 0x05c60400, 0x001e00d1, 0x6b5740a4, + 0x0a55010f, 0x01095601, 0x1a001e1b, 0x01021800, 0x00010119, 0x05061400, 0x03170515, 0x04041604, 0x0d020505, 0x170c0c15, 0x15151620, 0x061e1a19, + 0x1b140203, 0x17101418, 0x0d0d1701, 0x67191c07, 0x001a011a, 0x67165715, 0x05160216, 0x323a8204, 0x3507031c, 0x3f000813, 0x2f333fed, 0xdccddedd, + 0x8210cd5d, 0x12113203, 0x2f012f39, 0x3333335d, 0x323232ed, 0x2f3232cc, 0x20128333, 0x2e1682ed, 0x877d1033, 0x10c4c404, 0x01c4c487, 0x8a2f1833, + 0x30313d0e, 0x5d5d5d00, 0x15051501, 0x11051525, 0x35023e32, 0x06021433, 0x11232304, 0x35373507, 0x11360382, 0x44031133, 0x5401acfe, 0xbc7aacfe, + 0x6dce4b87, 0x97fcfebf, 0x0082bdcb, 0x7805bc39, 0xc08bc0a1, 0xbefdc0a1, 0x9eda883d, 0xb8e9febf, 0x6b800258, 0x828b6ba1, 0x84013903, 0x0200e7fe, + 0x00005f00, 0xd105a604, 0x25001800, 0x2e405900, 0x031f2013, 0x0b3c0182, 0x0e201927, 0x0b090c0e, 0x07072004, 0x0b0b2000, 0x0e194718, 0x47040719, + 0x19010a01, 0x05250182, 0x030f4724, 0x20e08205, 0x59bc823f, 0xed25052e, 0x10331132, 0x060666ed, 0x32ce1025, 0x82ed2f33, 0x2b1b82dc, 0x3130ed10, + 0x15211501, 0x11231121, 0x2a06e146, 0x04202111, 0x020e1415, 0x83332723, 0x2e342cd0, 0x01232302, 0xfea901b0, 0x8291c057, 0x01380800, 0x010901a3, + 0xc996580a, 0x53adcf70, 0x22406d93, 0xe7628550, 0x8fcb8702, 0x2d01d3fe, 0x028fcb8f, 0x76c7d3bb, 0x8f2e67a5, 0x5a713f16, 0x2746623b, 0x3c000100, + 0x3e060000, 0x3b08c782, 0x405a0027, 0x25200038, 0x20081325, 0x20010910, 0xb0098009, 0x12090309, 0x01131020, 0x13801320, 0x130313b0, 0x1d2f201c, + 0x1d021d7f, 0x0011281d, 0x25251400, 0x1c032612, 0x09081208, 0x3f31cf83, 0x2f39123f, 0xcd2f33cd, 0x2f330111, 0x5ddced5d, 0x20038471, 0x82ce8211, + 0x041e2ac6, 0x23151512, 0x042e3435, 0x21cd8227, 0x0c84050e, 0x3e124d08, 0x33113703, 0xa8579d03, 0x335c7e95, 0x5c4327c0, 0xc03b756b, 0x5e6a7439, + 0x34c02844, 0xa695805d, 0x9a04c055, 0x99683a0a, 0xa9f1fed2, 0xe794c8cb, 0x2d527bae, 0x030cfc09, 0x512b08f6, 0x97e9b07a, 0x01accbc8, 0x6699d312, + 0x35010938, 0x492ecb82, 0xcc040000, 0x2800c705, 0x21403e00, 0xcb831f00, 0x12091f2f, 0x1f1c131f, 0x1d011da0, 0x14001129, 0x20b48200, 0x20b48427, + 0x26b48808, 0x33113333, 0x82d61001, 0xdced22b3, 0x82af8aed, 0x83af89a8, 0x08af850c, 0xe2021195, 0x5a6d7c43, 0x17af2440, 0x50463a29, 0x4f2aaf2b, + 0x172a3b46, 0x5b4124af, 0xaf427b6d, 0x360abd04, 0xfec78f60, 0xe4fea6fb, 0xe18f0501, 0x2e5279aa, 0x04ddfb0b, 0x502d0926, 0x92e4ac79, 0x1c01fbfe, + 0xc90801a9, 0x09325f8f, 0xf6fe0801, 0x00030000, 0x05ebff0f, 0x00de0500, 0x006a004c, 0x40430078, 0x476a2d23, 0x493e703e, 0x505b5f5f, 0x002c2c21, + 0x03030a06, 0x01569056, 0x563e563e, 0x0338761b, 0x091b4810, 0x3fed3f00, 0x393912cd, 0x105d2f2f, 0x823917cd, 0x32cc2cc3, 0x11cd2f33, 0x32ed1033, + 0x49013130, 0x232405a3, 0x15070606, 0x6a075f4a, 0x022b05e3, 0x030e3535, 0x3e323523, 0x5a113702, 0x322508c1, 0x1515021e, 0x05666321, 0x22230229, + 0x36252726, 0x87173736, 0x67172038, 0x35260515, 0x23022e34, 0x15830121, 0xce080a84, 0x83030622, 0x20263618, 0x1407173e, 0x3e1e3451, 0x4d1f4160, + 0x1d13414b, 0x19464b48, 0x3d72a164, 0x263b4b29, 0x3a290704, 0x56172748, 0x22173e6e, 0x463a5c3f, 0x0118385e, 0x5d87549c, 0x573e2232, 0x17432f36, + 0x533b70fe, 0x0e044705, 0x2415151a, 0x4902111b, 0x20102b20, 0x4429101a, 0x81fe2e56, 0x2510a2fe, 0x0e032f3f, 0x302e191b, 0x21262502, 0x1c102720, + 0x8765070e, 0x0a072353, 0x0c90050b, 0x32030910, 0x2a70a269, 0x04080b07, 0x0d08046b, 0x3b820109, 0x39296357, 0x2c294863, 0xa82b5646, 0x48704c27, + 0x2c517449, 0x1a4a2a1d, 0x14042b44, 0x1818252c, 0x04162e25, 0x220e4439, 0x41342c39, 0x2c010d25, 0x182a3921, 0x303a1b76, 0x4a00421f, 0x2c0805af, + 0x79066e05, 0x2b003300, 0x31021540, 0x1b1f334a, 0x330f2727, 0x29150a08, 0x1349241e, 0x00030f0b, 0xed32cc3f, 0x39393232, 0x2f39123f, 0x056b4133, + 0x33353331, 0x34350226, 0x3537023e, 0x33361533, 0x82171632, 0x031e2e07, 0x26262317, 0x11231127, 0x22232626, 0x08078207, 0x1502065e, 0x17021e14, + 0xdf5f1521, 0x7d458573, 0x1c846cb0, 0x1427141f, 0x709b6084, 0x11bf0944, 0x14846c7c, 0x1b1d1529, 0x2c8d8884, 0x0244704f, 0x0158abeb, 0xfa94c01a, + 0xa52086c3, 0x0202038d, 0x6d1ca68e, 0xbe83d4a1, 0x30fe30e2, 0x0302f301, 0x010bfe03, 0xd5fe3cd3, 0x91b468e3, 0x00ab1b68, 0x0032bf83, 0x0100820d, + 0x000c3e02, 0x74010900, 0xb4000400, 0x05829cff, 0x0582b620, 0x24000a22, 0x90200584, 0x0f200582, 0x2e281782, 0xb6000f00, 0x10002eff, 0xce201782, + 0x2c220582, 0x0582e2ff, 0x1d822d20, 0x36001024, 0x0b82ecff, 0x6aff3722, 0x39210582, 0x201d83ff, 0x2205843a, 0x82b0ff3b, 0xff3c2211, 0x20058274, + 0x202f843d, 0x22298444, 0x82d8ff59, 0x845a2011, 0x845b200b, 0x845c2029, 0x845d2011, 0x84902005, 0x82a02011, 0x00112a1d, 0x007eff0f, 0xff100011, + 0x22058260, 0x8288ffb1, 0x84b22005, 0x82b42005, 0x84112089, 0x001d228f, 0x205f82b2, 0x22238224, 0x822400ce, 0x82f62089, 0x82372005, 0x00242323, + 0x0b83ff38, 0xc4ff3922, 0x8f831182, 0x3c002422, 0x24228f82, 0x59825700, 0x58002422, 0x59201d84, 0x24226b82, 0x9b825a00, 0x5c002422, 0xb1200b84, + 0xb2200584, 0xb3200584, 0xb4200584, 0xb5204d84, 0xb6200b84, 0x25200b82, 0xec229582, 0xc1822500, 0x05820a20, 0x4d821120, 0x37002522, 0x25226582, + 0x0b84ab00, 0x8300b121, 0x82b22017, 0x84262005, 0x00262795, 0x00e7ffaf, 0x59830026, 0xad822620, 0x2700ce22, 0x05834182, 0x53821120, 0x3b822720, + 0x3a200b83, 0x27223b82, 0x95823b00, 0xa7822720, 0x2382ec20, 0x11843d20, 0x2382ab20, 0x0f002928, 0x2900d4fe, 0x05841100, 0x6b821d20, 0x1e002922, + 0x22280584, 0x29003c00, 0x9cff2400, 0x37220582, 0x05821e00, 0x0b844420, 0x35844820, 0x05845220, 0x92ff9022, 0xa0201782, 0xa1201784, 0xab201184, + 0xb0204784, 0x2c200b82, 0xe222a182, 0x9b822c00, 0xb2240583, 0x2d00e2ff, 0x2d21dd84, 0x20d78300, 0x2059822d, 0x201182f6, 0x20958290, 0x22dd842d, + 0x8210002e, 0x002e224d, 0x229b8232, 0x8244002e, 0x002e2883, 0x00baff48, 0x8452002e, 0x82582005, 0x002e2453, 0x82b0ff59, 0x845a2011, 0x845c2011, + 0x8491200b, 0x84a0202f, 0x84a1202f, 0x84af2017, 0x84b02011, 0x84b1200b, 0x82b22053, 0x002f2605, 0x0088ff0a, 0x2065822f, 0x20058260, 0x22238226, + 0x842a002f, 0x002d2205, 0x83118264, 0x002f2477, 0x8256ff37, 0x8439200b, 0x823a202f, 0x002f23d7, 0x2f83ff3c, 0x11845920, 0x05845c20, 0x35846420, + 0x2f217783, 0x206b8300, 0x83e3822f, 0x84b22023, 0x84b42029, 0x82b62005, 0x82322005, 0x00e222ef, 0x83ef8232, 0x82372005, 0x003222bf, 0x20ef823b, + 0x20538232, 0x201782ec, 0x2047823d, 0x26fb8232, 0x003300e2, 0x82d4fe0f, 0x84112005, 0x82242005, 0x00332429, 0x8214003c, 0x84442011, 0x8448200b, + 0x84522005, 0x82902005, 0x003322d7, 0x200b84a0, 0x200584a1, 0x203584ab, 0x200b82b0, 0x20718434, 0x20718434, 0x20598434, 0x22ef8235, 0x8235009c, + 0x82c420d7, 0x823c2005, 0x00352471, 0x82d8ff44, 0x2153830b, 0x53830035, 0x58003522, 0x5c221784, 0x1782c9ff, 0x35215983, 0x23598300, 0xffb00035, + 0xb1213583, 0x204183ff, 0x200584b2, 0x227d82b4, 0x82b60035, 0x82362005, 0x00ec226b, 0x836b8236, 0x82242005, 0x00362441, 0x82eaff36, 0xff592211, + 0x200582e2, 0x2011845a, 0x200b845c, 0x200b8490, 0x200582ab, 0x22e98237, 0x823700de, 0x826a2095, 0xfe112105, 0x1d220b83, 0x0b8238ff, 0x05841e20, + 0xf7822220, 0x24003724, 0x118288ff, 0xa7822620, 0x2a003722, 0x32200584, 0x3720dd82, 0xf4205f82, 0x37201782, 0x37207d82, 0x1020c582, 0x46220b82, + 0x058224ff, 0x05844820, 0x2eff4a22, 0x52200b82, 0x55200b84, 0x56224d84, 0x11824cff, 0x0b845820, 0x05845920, 0x05845a20, 0x05845c20, 0x56ff5d22, + 0x64201d82, 0x90225f84, 0x0b827eff, 0x65849120, 0x83ffa021, 0x84a12059, 0x84ab2047, 0x84af20a1, 0x84b02017, 0xffb12111, 0xb220b983, 0x38220582, + 0xd1820f00, 0x11003822, 0x24250584, 0x3800f6ff, 0x21e98300, 0xe9830038, 0xe9843920, 0xe9823920, 0x3900ce23, 0x24e98300, 0xff1d0039, 0x200b82b0, + 0x2205841e, 0x82c4ff24, 0xff44220b, 0x2005829c, 0x20058448, 0x20058452, 0x22178458, 0x82bfff5c, 0x82902017, 0x003922e9, 0x201784a0, 0x830584a1, + 0x0039228f, 0x200b84b0, 0x229582b1, 0x82b20039, 0x843a2005, 0x843a206b, 0x823a206b, 0x0024228f, 0x216b843a, 0x6b83003a, 0x24003a22, 0x6b832384, + 0x83003a21, 0x003a216b, 0x3a246b83, 0xc4ff5500, 0x71832982, 0x5c003a22, 0x3a227182, 0x11849000, 0x3a217183, 0x20718300, 0x83cb823a, 0x82b0204d, + 0x003a2171, 0x3a207183, 0x3b207184, 0xb0246b82, 0x26003b00, 0x3b22f582, 0x05842a00, 0x05843220, 0x6b824420, 0x65823b20, 0x1d82c420, 0x4d825220, + 0x58003b24, 0x0b82e2ff, 0xf5825c20, 0x64003b22, 0x91202384, 0xa0200584, 0xa1202984, 0xaf202384, 0xb0201184, 0xb1200b84, 0xb2202984, 0x3c200582, + 0x3c20d784, 0x74266b82, 0x11003c00, 0x0582defe, 0x38ff1d22, 0x1e200582, 0x24200584, 0x32222384, 0x1182ecff, 0x83ff4421, 0xff472223, 0x220b8288, + 0x827eff48, 0x844a2005, 0x82502005, 0x003c22b9, 0x20058451, 0x20118452, 0x200b8453, 0x200b8454, 0x220b8455, 0x8292ff56, 0x8458202f, 0x84592005, + 0x84902011, 0x84912059, 0x84a02059, 0x84a12059, 0x84ab202f, 0x84af2083, 0x84b02017, 0x84b12011, 0x82b2201d, 0x823d2005, 0x00c424a7, 0x8226003d, + 0x003d221d, 0x8305842a, 0x003d229b, 0x22dd823d, 0x8244003d, 0x003d22ef, 0x22e38248, 0x8452003d, 0xff5a2205, 0x222f82d8, 0x82bfff5c, 0x84642005, + 0x2271832f, 0x84a0003d, 0x84a12029, 0x226b8323, 0x84b0003d, 0x84b1200b, 0x82b22017, 0x00442a05, 0x00f0ff59, 0xff5a0044, 0x200582f6, 0x280b825c, + 0xff0f0045, 0x004500e2, 0x24478211, 0xff5c0045, 0x200b82fb, 0x200b82ab, 0x24958246, 0x004600ec, 0x22418237, 0x84b10046, 0x82b22011, 0x82482005, + 0x00742411, 0x82050049, 0x004922f9, 0x2205840a, 0x8264000c, 0x000d2211, 0x20058232, 0x20dd820f, 0x203b8249, 0x220b82ce, 0x8288ff11, 0x00222205, + 0x2005826e, 0x2023843f, 0x20058440, 0x227d825c, 0x84600049, 0x84ab200b, 0x21a18323, 0xa1830049, 0xb4004922, 0xb6204784, 0x4b200582, 0xec22ad82, + 0xad844b00, 0x9b824b20, 0x4e00ec22, 0x9c205982, 0x48210582, 0x200b83ff, 0x20058452, 0x200584a1, 0x210584b0, 0x1d83ffb1, 0x0582b220, 0x3b845020, + 0x3b845020, 0x3b845020, 0x11845120, 0x11845120, 0x11845120, 0xfb845220, 0xfb845220, 0x1d825220, 0x5200f124, 0x47825b00, 0x1d825220, 0xab200b83, + 0x53200b82, 0x53202384, 0x53202384, 0xfb231782, 0x83005300, 0x00552617, 0x00defe0f, 0x208f8255, 0x200582ec, 0x220b8411, 0x82dcff44, 0xffa0220b, + 0x200582d8, 0x201184ab, 0x204182b1, 0x83d78255, 0x00b42223, 0x2017821e, 0x200582b6, 0x22358257, 0x825700d8, 0x82f6204d, 0x82b12005, 0x8257202f, + 0x22118323, 0x821400b4, 0x82b62011, 0x82592005, 0x004c2277, 0x20298459, 0x837d8259, 0x8244200b, 0x00592429, 0x82eeff48, 0x84522017, 0x84a02005, + 0x84a12011, 0xffab210b, 0xb0222383, 0x1d82f1ff, 0x59205383, 0x5a205384, 0xba224782, 0xa7845a00, 0x47825a20, 0x44200b83, 0x5a229582, 0x0584a000, + 0x83ffab21, 0x20a78311, 0x20a7845a, 0x2429825b, 0x005b00ce, 0x241d8246, 0xff47005b, 0x220b82f6, 0x82e8ff48, 0x844a2005, 0x8452200b, 0x846f200b, + 0x84a1201d, 0x84b0200b, 0xffb1210b, 0xb2203583, 0x5c200582, 0x42227182, 0xb9845c00, 0x71825c20, 0xb9830b83, 0x53825c20, 0x1782ee20, 0x47824720, + 0xc5845c20, 0x83005c21, 0x005c2153, 0x5c22cb83, 0x17845400, 0xcb826f20, 0x9b825c20, 0x2982d820, 0x5c21d783, 0x21d78300, 0xd783005c, 0x83005c21, + 0x845c20d7, 0x845d20d7, 0x825d20d1, 0x00f62253, 0x20a7845d, 0x2053825d, 0x200b82f4, 0x2047824a, 0x8353825d, 0x2253830b, 0x846f005d, 0xffa12111, + 0xe9831183, 0xe9845d20, 0xe9846420, 0xaf006426, 0x6400e7ff, 0xce205982, 0xbf830582, 0x59846f20, 0x11826f20, 0x6f00ec22, 0x91202984, 0xe222d182, + 0xcb829100, 0x37200583, 0x9122e382, 0x53823b00, 0x3c009122, 0x9122fb82, 0x05843d00, 0xe2ffab24, 0x2984a100, 0x2982a120, 0x0b82ec20, 0xf1ff5922, + 0x5b200582, 0xa1221d82, 0x0b845c00, 0x0b82ab20, 0xb400ab28, 0xab002eff, 0x0582b600, 0x2400b122, 0xb1224d82, 0x3b822c00, 0x2d00b128, 0xb1009cff, + 0x23823600, 0x3700b124, 0x0b826aff, 0x1d843920, 0x05843a20, 0xb0ff3b22, 0x3c221182, 0x058274ff, 0x7d823d20, 0x4400b122, 0x59222984, 0x1182d8ff, + 0x0b845a20, 0x29845b20, 0x11845c20, 0x05845d20, 0x11849020, 0x1d82a020, 0x6b84b220, 0x6b84b220, 0x6b84b220, 0x6b84b220, 0x6b84b220, 0x8300b221, + 0x00b2216b, 0xb2206b83, 0xb022dd82, 0xdd82b200, 0x05827420, 0xb2206b83, 0xb2216b84, 0x216b8300, 0x6b8300b2, 0x8300b221, 0x82b2206b, 0x82d820d7, + 0x216b8323, 0x6b8300b2, 0x8300b221, 0x82b3206b, 0x009c226b, 0x241182b3, 0x00b4009c, 0x22e9820f, 0x841100b4, 0x82242005, 0x00b424e3, 0x826e0037, + 0x00392217, 0x22058264, 0x823c003a, 0x843c2005, 0xff562211, 0x220b82ba, 0x82280057, 0x84902005, 0x82ab2029, 0x84b52035, 0x84b5204d, 0x84b6204d, + 0x84b6204d, 0x84b6204d, 0x84b62017, 0x00b6214d, 0xb6214d83, 0x204d8300, 0x235182b6, 0x00b6006e, 0xb6214d83, 0x204d8300, 0x833b86b6, 0x82c3204d, + 0x002e22ef, 0x83ef82c3, 0x823a2005, 0x00c32265, 0x2065823c, 0x201784c4, 0x211784c4, 0x178300c4, 0x1783c420, 0x05130525, 0x82a2ff15, 0xff242a05, + 0x052605a3, 0x056e003d, 0x20118228, 0x2205828c, 0x8262fe16, 0xff182205, 0x220582ba, 0x82ccff1c, 0xff202205, 0x220582d7, 0x8291ff21, 0xff222205, + 0x22058263, 0x82c6ff23, 0xfe242205, 0x2205826d, 0x82ddff25, 0x82272005, 0x05282247, 0x22178429, 0x82afff2b, 0xfe2c2211, 0x20058279, 0x2247842d, + 0x827aff30, 0x8433200b, 0x84352029, 0x8238204d, 0x05312a05, 0x05e9ff31, 0x0031053a, 0x22058214, 0x82b4003d, 0x004f2a05, 0x05420529, 0x05320054, + 0x20058443, 0x22058245, 0x824705f1, 0x05542805, 0x0154054b, 0x844e052f, 0x8251200b, 0x05f82205, 0x20b98253, 0x24058281, 0x053f0055, 0x22118256, + 0x82580588, 0x05c12205, 0x22058259, 0x825a0547, 0x05822205, 0x2105825d, 0x008300fa, 0x46023024, 0x08830100, 0x32200382, 0x0b850382, 0x07000124, + 0x17863200, 0x0b820220, 0x0b863920, 0x19000324, 0x0b864000, 0x238a0420, 0x0c000524, 0x17865900, 0x178a0620, 0x3b000724, 0x17866500, 0x15000822, + 0x5f851982, 0x0e000924, 0x1786a000, 0xc4010d24, 0x0b86ae00, 0x2a000e30, 0x03007202, 0x03040100, 0x0c000200, 0x0b849c02, 0x0b820520, 0xa8021022, + 0x06200b84, 0xb8201784, 0x07200b84, 0xc4201784, 0x08200b84, 0xd4200b84, 0x09200b84, 0x6422c782, 0x0b86e402, 0x0e000124, 0x0b864803, 0x0b820220, + 0x0b865620, 0x32000324, 0x0b866403, 0x238a0420, 0x18000524, 0x17869603, 0x178a0620, 0x76000724, 0x1786ae03, 0xa7820820, 0x0b86f220, 0x1c000924, + 0x0b862404, 0x88030d24, 0x0b864004, 0x54000e24, 0x0b84c807, 0xcb8a0a20, 0x0b820b20, 0x1c081022, 0x0c201784, 0x0e20178a, 0x08210b83, 0x2017842c, + 0x220b8210, 0x8438080e, 0x8213200b, 0x0812220b, 0x200b8446, 0x202f8a14, 0x20478415, 0x20178458, 0x20178a16, 0x203b8419, 0x20178468, 0x2023841b, + 0x200b8476, 0x20238a1d, 0x200b8a1f, 0x202f8424, 0x20238486, 0x200b842d, 0x200b8394, 0x20b38a08, 0x205f8a08, 0x20178a0c, 0x08bf860c, 0x3220a93f, + 0x20363130, 0x7263694d, 0x666f736f, 0x6f432074, 0x726f7072, 0x6f697461, 0x41202e6e, 0x52206c6c, 0x74686769, 0x65522073, 0x76726573, 0x562e6465, + 0x61647265, 0x6552616e, 0x616c7567, 0x20388872, 0x8217863a, 0x82188428, 0x8273200e, 0x35202443, 0x8733332e, 0x7369341a, 0x74206120, 0x65646172, + 0x6b72616d, 0x20666f20, 0x8a656874, 0x7267247b, 0x8370756f, 0x6f632c16, 0x6e61706d, 0x2e736569, 0x8274614d, 0x20772623, 0x74726143, 0x3a6d8965, + 0x70757320, 0x65696c70, 0x6f662064, 0x202e746e, 0x20756f59, 0x2079616d, 0x82657375, 0x83678253, 0x74203f16, 0x7263206f, 0x65746165, 0x6964202c, + 0x616c7073, 0x61202c79, 0x7020646e, 0x746e6972, 0x39826320, 0x07826520, 0x20736129, 0x6d726570, 0x82747469, 0x7962214e, 0x6c249384, 0x6e656369, + 0x18824b83, 0x6f207324, 0x7c822072, 0x08826d20, 0x61836620, 0xb9912c20, 0x6f72702c, 0x74637564, 0x6573202c, 0x3b827672, 0x72202282, 0x69276088, + 0x6877206e, 0x8a686369, 0x82772099, 0x6e692774, 0x64756c63, 0xbd896465, 0x6c6e6f2b, 0x69282079, 0x6d652029, 0x218b8262, 0xc8876874, 0xad9b4182, + 0x64312e84, 0x20676e69, 0x74736572, 0x74636972, 0x736e6f69, 0x82608720, 0x247a8908, 0x6e61203b, 0x82648264, 0x65742865, 0x726f706d, 0x82697261, + 0x6f642775, 0x6f6c6e77, 0x3d416461, 0x4161200d, 0x6523052a, 0x826f2072, 0x68742102, 0x75270883, 0x74757074, 0x83656420, 0x742027e6, 0x6568206f, + 0x5141706c, 0x202e260d, 0x20796e41, 0x232e846f, 0x20657375, 0x7027c582, 0x69686f72, 0x82746962, 0x74682bed, 0x2f3a7074, 0x7777772f, 0x75426d2e, + 0x2e210807, 0x2f6d6f63, 0x6f707974, 0x70617267, 0x662f7968, 0x73746e6f, 0x004e002f, 0x0072006f, 0x0061006d, 0x2c09826c, 0x01790062, 0x0065000d, + 0x006e006a, 0x890382e9, 0x0053221b, 0x22238274, 0x8264006e, 0x00722a05, 0x039a0364, 0x03bd03b1, 0x300382bf, 0x03ba03b9, 0x00a900ac, 0x00320020, + 0x00310030, 0x24098236, 0x0069004d, 0x22578263, 0x8273006f, 0x82662055, 0x0020223b, 0x20698443, 0x20058470, 0x20118261, 0x22098269, 0x822e006e, + 0x8241202d, 0x826c207b, 0x82522007, 0x00672235, 0x201b8268, 0x200d8473, 0x203d8265, 0x20458265, 0x20918276, 0x20298264, 0x82078256, 0x2287847b, + 0x82520061, 0x0067220d, 0x203b8275, 0x91238261, 0x003a2171, 0x20202f8d, 0x1d85318e, 0x73827320, 0xe9826f20, 0x35002022, 0x33226182, 0x35903300, + 0x85826920, 0x73822020, 0x97822020, 0x07827220, 0x77826420, 0x07826d20, 0x6b007222, 0x6f22a582, 0x05826600, 0xb5827420, 0xf7966520, 0x9d826720, + 0xa7826f20, 0x2d887020, 0xf9826320, 0x70006d22, 0x6e204382, 0xe5837d82, 0x4d002e22, 0x74200d82, 0x68206182, 0x77205d82, 0x43202982, 0x74206184, + 0xdb91f184, 0x93822020, 0x41827520, 0xfd827020, 0x23826920, 0x31826420, 0x55826620, 0x41826e20, 0x0b822e20, 0x0b825920, 0x07827520, 0x61006d24, + 0x07827900, 0x2f827520, 0xa7839f83, 0x2d87cf85, 0x6f20d583, 0x63202182, 0x6520a582, 0x65228384, 0x0f822c00, 0x99826420, 0x61827320, 0x13826c20, + 0x11847920, 0x6e006123, 0x20678300, 0x20298270, 0x200b8269, 0x20358474, 0x2009846f, 0x20058465, 0x202b8220, 0x20158273, 0x22918270, 0x826d0072, + 0x20d18341, 0x20358465, 0x83878462, 0x2087837f, 0x201b826c, 0x20258263, 0x2097886e, 0x20558265, 0x200d826d, 0x20b98220, 0x85438272, 0x201187f9, + 0x83c38866, 0x2173419b, 0x4d827020, 0x77826f20, 0x63007524, 0xbd847400, 0x93847320, 0x77867620, 0x67834585, 0x35416320, 0x83c18706, 0x002024d9, + 0x84680077, 0x84682029, 0x830b8389, 0x093341d7, 0xe9867720, 0x63242d83, 0x75006c00, 0x65206b82, 0x7b410382, 0x006f2213, 0x2021826e, 0x20498279, + 0x20538228, 0x24078229, 0x006d0065, 0x208f8262, 0x855d9664, 0x21998f83, 0x5b410061, 0x205d8925, 0x226f8264, 0x8267006e, 0x82722065, 0x0073246d, + 0x82720074, 0x43632011, 0x4f83087b, 0x2020c18f, 0x20203384, 0xf58f2382, 0x47823b20, 0x83070342, 0x006921c9, 0x7420cb83, 0x6d215982, 0x07d54300, + 0x6c215f83, 0x24eb8300, 0x006f0064, 0x23f98477, 0x0061006f, 0x7420e997, 0x20202582, 0x20201f82, 0x3b834182, 0x77826e20, 0xa5826520, 0x20070542, + 0x8787846f, 0x82752011, 0x0070210d, 0x20200583, 0x65215182, 0x07cd4100, 0x6f20ad83, 0x68209d82, 0x6c228b82, 0x09827000, 0x4419a342, 0x6e20056f, + 0x5d8ba384, 0x20072143, 0x06654169, 0x99827220, 0x69006824, 0x03826200, 0x6424e383, 0x68002e00, 0x74207f82, 0x3a225f82, 0x01822f00, 0xdf827720, + 0x15827720, 0xeb446d20, 0x002e2210, 0x203d8263, 0x2023826d, 0x20678274, 0x200b8270, 0x20d38267, 0x20398261, 0x210f8268, 0x4742002f, 0x82732007, + 0x097f4521, 0x6c006122, 0x0f874982, 0x0d82e120, 0x6c201b89, 0x8145d982, 0x8261200b, 0x4564204f, 0xd1820cbb, 0x041e0429, 0x044b0431, 0x823d0447, + 0x88392005, 0x2049831d, 0x243f826e, 0x0061004e, 0x22038276, 0x826e0064, 0x82412091, 0x00722241, 0x200b8275, 0x21138274, 0x00840003, 0x004cff23, + 0x8f088478, 0x00013204, 0x00080004, 0x0010000a, 0x00110005, 0x00ffff07, 0x2122820f, 0x01830001, 0x05820020, 0x9d1d0022, 0x14200f82, 0x02820382, + 0x30951d34, 0x06911d82, 0x48862a09, 0x010df786, 0x82a00207, 0x1282821d, 0x027e2408, 0x0b310101, 0x05060930, 0x02030e2b, 0x3000051a, 0x2b0a0661, + 0x01040106, 0x01023782, 0x3053a004, 0x8a2c3051, 0xa21c2611, 0x001c801e, 0x2401843c, 0x0062004f, 0x20b68273, 0x20c8826c, 0x21038274, 0x0182003e, + 0x8a213021, 0x0429084c, 0x9409c114, 0x1e646a5f, 0xf2bdea0c, 0xcdc9129f, 0x7b8090ea, 0x1882a02f, 0x04823053, 0x038230c2, 0x0203a0aa, 0x13020201, + 0x28a28233, 0x10b83bc3, 0x9c75abd6, 0x240b8284, 0x30c30000, 0x21ad880d, 0x97820501, 0xa6847720, 0x0455032c, 0x55021306, 0x30133153, 0x0c820611, + 0x0a130830, 0x68736157, 0x74676e69, 0x10316e6f, 0x14830e30, 0x0713072d, 0x6d646552, 0x31646e6f, 0x831c301e, 0x130a2211, 0x14ea4915, 0x30213123, + 0x221f831f, 0x89181303, 0x69543e1f, 0x532d656d, 0x706d6174, 0x41435020, 0x0d171e30, 0x39303631, 0x37313730, 0x31353835, 0x200e825a, 0x220e8a38, + 0xd4b28130, 0x300c2299, 0x2999830a, 0x4103130b, 0x2731434f, 0x0d852530, 0x6e1e2208, 0x68706943, 0x44207265, 0x45204553, 0x443a4e53, 0x2d363332, + 0x41443733, 0x3637392d, 0x30253131, 0x20d08523, 0x20d0941c, 0x05a74953, 0x01823023, 0x0b604122, 0x00050127, 0x0f018203, 0x09178200, 0x82020a33, + 0xa2000101, 0x0cb06d38, 0x968f5965, 0x74298047, 0xcb31a165, 0x9f41d9a1, 0xa9ebda53, 0xb66aec3e, 0x7d5caa25, 0xfa3e22a8, 0x738c6ad8, 0x79604f52, + 0x5a8e1229, 0x76162897, 0xa10f77f0, 0x3c90aa52, 0x18a65f6a, 0xd992cc94, 0x6c27fb40, 0xafd1b3b4, 0x41a081a0, 0x916e867e, 0x96153c07, 0xa0cf7dc3, + 0x089ca655, 0x94766b65, 0xbdea4645, 0xb55c5b58, 0xe01dbdad, 0xacf2005b, 0x2c8d4811, 0xc300cb07, 0x2f5e07d2, 0x7a97e0c9, 0xc32f5492, 0xb5a0ba69, + 0xf72ef4e5, 0x74e550ff, 0x6360d9f3, 0x7c0f0d93, 0x611a1247, 0xc9922fec, 0x66b9a9cd, 0xc74e5abc, 0xd979aec2, 0xed889731, 0x1774a900, 0xa442befd, + 0x8e7d535f, 0x60a22002, 0x03221958, 0x3c80078f, 0x2ce6b151, 0x93eea78c, 0xb889b66a, 0x6722a336, 0x19e0463f, 0x0b026fb9, 0x71584984, 0xf3abcc93, + 0xfcbd1ef5, 0x0f006afd, 0x6d0256df, 0xd29516d6, 0x02a39715, 0x01000103, 0x090182a3, 0x05018230, 0x03061d30, 0x040e1d55, 0x73140416, 0x63781777, + 0x7805f110, 0xe08eb621, 0x85f330f1, 0x30a81787, 0x3c1e831f, 0x30180423, 0x23148016, 0x52d9f834, 0xed0a7046, 0xfb76fb40, 0xc3b02bb3, 0x300fb335, + 0x2c208354, 0x304d041f, 0xa049304b, 0x8645a047, 0x060d4a43, 0x6c726322, 0x230e0d4a, 0x2f696b70, 0x2f201582, 0x2106594b, 0xc6412f73, 0x69542c08, + 0x7453656d, 0x50706d61, 0x822e4143, 0x58303122, 0x062b0806, 0x07050501, 0x4c040101, 0x48304a30, 0x30230f87, 0x4a3c8602, 0x6084186e, 0x74726522, + 0x74225999, 0xaf831330, 0x0c042524, 0x52870a30, 0x43080321, 0x0c090e8f, 0x01018203, 0xcae34800, 0x5b6a7bd6, 0x735a8806, 0x8b8f3548, 0xe1d06196, + 0xa4873c0f, 0x844637ce, 0xd919a7fb, 0x4505e31a, 0xe424f538, 0x82a50dc9, 0x8998a9f2, 0x5b626110, 0xeb61d4b8, 0x72d40992, 0xfc10c227, 0x7f74675d, + 0x8a005742, 0xf4524ef3, 0x75d20dcf, 0x9fc9edba, 0x71833f6c, 0xdbd028ab, 0x8f88417c, 0xab70d7dd, 0x56c0f4b5, 0x8d219851, 0x345f8640, 0xca8642fb, + 0xb42433e5, 0x747ef7e2, 0x23da01fe, 0x2ade7342, 0xa19facf0, 0x517511b7, 0x404fcd6f, 0x58242718, 0xf4a5677b, 0xe77a6098, 0x9ae2285e, 0x06d077bf, + 0x092dc05c, 0x2849e0a4, 0xb8e6adca, 0xa7a2c691, 0x338e36de, 0xf9ccffb0, 0x13a03a64, 0x3faf5225, 0xfe20dbe3, 0x413faebc, 0x62d3561e, 0x3eb1fb78, + 0xa28bf965, 0x7797cea7, 0x3d0af8ac, 0xad4ebd2f, 0x6cbb285d, 0x8e2baed4, 0xa4a01290, 0xef46f1ac, 0x4b10bcde, 0x34ff0e0d, 0x3cb7d5dd, 0x06823012, + 0x03823000, 0x0bc544e8, 0xa79b0e27, 0xf7dcb2d8, 0x11c5442c, 0x00050b24, 0x2b447e30, 0x30282254, 0x05f44326, 0x2d421f20, 0x20210808, 0x65646f43, + 0x67695320, 0x676e696e, 0x41435020, 0x31303220, 0x171e3031, 0x3037310d, 0x32313138, 0x20018230, 0x05cc4434, 0x30210e89, 0x459fd474, 0x03200685, + 0x44168545, 0xff08208d, 0x38d757bb, 0x7f06b1d1, 0x6da92d49, 0x7a9f63b3, 0x213ab6ba, 0xae98b45b, 0x81a4d48d, 0xc575c5a0, 0x4082ef2c, 0x5381b72a, + 0x0163f377, 0x37cebc0a, 0x43400384, 0xce4b8257, 0xfdb61fed, 0xc2c96d80, 0xc7055d91, 0x005956dc, 0x57eb0ce1, 0xb8f1fdde, 0x75bf2790, 0xb275fc4a, + 0xc5b65872, 0x62339b48, 0x9495d105, 0x2239bfa5, 0x4d128dad, 0x32da6246, 0x22aace19, 0xb148565c, 0x67c9456f, 0x305d6276, 0x282fa388, 0x2a501fc5, + 0x1adb86d9, 0xc2812511, 0x2e67f5f4, 0xf51d79e7, 0xf4751ce2, 0xfcc7cc4e, 0x800bbfe7, 0xcfff2947, 0x0cb169cd, 0x67eb600b, 0x9b1b84e6, 0x476dfd4d, + 0xc1d9c73a, 0x95f26161, 0x070da112, 0xd82163ae, 0xff1c99f4, 0xee815578, 0x20e879a5, 0xda0a5f82, 0x541953b5, 0x870d5701, 0x7cc28d91, 0x808654f1, + 0x82db62e1, 0x5e263e73, 0xd21240f0, 0x0326d539, 0x3188850d, 0x8b0b0a5f, 0x24078d44, 0x0182307f, 0x056e447b, 0x18042524, 0x98471630, 0x084c2208, + 0x08a94301, 0xae440320, 0xa723080a, 0x211f5d13, 0x03e85589, 0x36179eee, 0x8854f2ea, 0x30af1935, 0x55030651, 0x4a04111d, 0x46a44830, 0x46314430, + 0x34220d68, 0x1e823230, 0x05042e08, 0x33322b13, 0x32313030, 0x3038632b, 0x65356234, 0x39342d61, 0x342d3462, 0x2d383332, 0x32363338, 0x3538642d, + 0x32616631, 0x66343532, 0x0c014563, 0x646e4833, 0xd30550e5, 0x3717aa82, 0x6db52237, 0x0275caa8, 0x19014595, 0x3b110f4f, 0x6f696b70, 0x632f7370, + 0x4d2f6c72, 0x6f436369, 0x67695364, 0x32414350, 0x5f313130, 0x2d260483, 0x302d3730, 0x1f822e38, 0x87613021, 0x010125f4, 0x53305504, 0x1145d982, + 0x02302306, 0x01454586, 0x4560841b, 0x629a0704, 0x0c30742e, 0x1d550306, 0xff010113, 0x00300204, 0x0a0b0345, 0x00050b1b, 0x01028203, 0x4f974d00, + 0x70f17e34, 0xd5e39c93, 0x119c4b1a, 0xc4266b7e, 0xdff424a5, 0xba24d444, 0x89086ab3, 0x31cb9a99, 0xff9b70e7, 0x07b01d14, 0x30e47f39, 0xde22133b, + 0x6795c80e, 0xf87e6ebb, 0x90a4957c, 0xa6933782, 0x0249d383, 0x59adacc1, 0xa7b791ef, 0xa20e0066, 0xdcd4254c, 0x02075de7, 0x653428ca, 0xad83393b, + 0xca8e2a95, 0x3a08e8a0, 0x7b3efe1c, 0x4d944940, 0x0a25548e, 0x0ac7b1e5, 0xc63771ee, 0xf5365e9b, 0xfb4442a7, 0x0db087bc, 0x26d935c0, 0x67ff5f87, + 0xf77428ef, 0x1104308a, 0x4bcc678a, 0x216a6035, 0x078dc3e7, 0xab9b5e83, 0x291f719d, 0xd4110926, 0xd2d382f5, 0xae290736, 0x906d92e8, 0xa8c9007f, + 0x04d0ee5b, 0x0ea1fb65, 0xf2cc5357, 0x9ff38998, 0x06c89315, 0x615263c4, 0x48574f02, 0x75fbf51c, 0xf9b5ca12, 0x5f69c2f4, 0x0d9da1bb, 0xeb278369, + 0x6b1d3e83, 0x0eeec331, 0x4384c4f1, 0x9c31ee87, 0x7c320006, 0xb98a20b7, 0x56ea2308, 0xb2d418b0, 0x37ec15bd, 0x6bd364ed, 0xc6230215, 0x3a87338a, + 0xc0b69bd1, 0xa02c5996, 0x01845301, 0xc17bf25f, 0xd4ecb07a, 0x5ff652d8, 0x59448175, 0x53273816, 0x5ef350bb, 0xd7f7df71, 0xd531dc51, 0x2a35631a, + 0x669f7e97, 0x55cf5f37, 0xcab2ef33, 0xaa232cbc, 0xfbee1e44, 0xe8b44867, 0x8a0fc342, 0x46a25851, 0x5a266102, 0x945cbf19, 0x7040a8e9, 0x4c305be7, + 0x50d4807c, 0xeea5a267, 0xb53deb0e, 0x1e79e5f1, 0x1958f5e1, 0x6d89bb6f, 0x5820e278, 0x48e4ff25, 0xf1afe6b3, 0x170440b2, 0x0cd45046, 0x7d14916c, + 0xf6e2caee, 0x3b1bde26, 0x2e516704, 0xf717a40f, 0x913fff42, 0xa7f83189, 0x3ae5b3bc, 0x332adc52, 0x91644a7f, 0x1165d865, 0xb76adbb6, 0xfc526cb4, + 0x16718bbf, 0x73ce2cc4, 0x5de9a09a, 0x4545c108, 0xec8629a5, 0x5e6d3101, 0x3156c674, 0x0682300b, 0x03823007, 0x0203a0ef, 0x0a020201, 0x34681661, + 0x20008300, 0x0e30471c, 0x315f303a, 0x06113013, 0x2692090a, 0x2cf29389, 0x16190164, 0x6d6f6303, 0x17301931, 0x0920148c, 0x23081d52, 0x2b302d31, + 0x2005d645, 0x09d64524, 0x6f522e08, 0x4320746f, 0x69747265, 0x61636966, 0x41206574, 0x6f687475, 0x79746972, 0x0d171e30, 0x34303730, 0x32313330, + 0x39303335, 0x320d175a, 0x210e8431, 0x0e833033, 0x414b3020, 0x1f6c4a78, 0xa19fff08, 0xdbdfb16c, 0x7c2a9248, 0xe1192e6b, 0xc5e3e2bd, 0x50235199, + 0x18ddcead, 0xee0f244e, 0x4cd1a7d1, 0x203074ad, 0xd507eb11, 0x49159554, 0x92421b94, 0x305c98ae, 0x6b00da26, 0xecbd7be8, 0xf70f0789, 0xf098040e, + 0xcb1fcc89, 0x9d872433, 0x1c67f4f2, 0xe77bfc2c, 0xe7ea1d88, 0xc1a1a34e, 0x8dca5323, 0x09cf45fa, 0xd0af5ed0, 0xa20442b0, 0x936ca6f9, 0xdc28d767, + 0x86b05346, 0x4628e5d0, 0x86ac272e, 0x0c52554f, 0xfb2c03e4, 0x3090906a, 0x59f3876e, 0x7efa9d30, 0xe8b397d6, 0xf87e9721, 0x08f313d2, 0x526d53b7, + 0x9f9045b4, 0x474a0048, 0x29271166, 0xe497a866, 0x4a8106d3, 0xa784f9a2, 0x09144711, 0xed849f82, 0x01fe7855, 0x08501d9a, 0x30100085, 0xdeb7ed46, + 0xc4bb4623, 0xaf9f542d, 0x3141781e, 0xdf9bcc77, 0xa193833b, 0x1db50261, 0xf7fcb10d, 0xce01b29b, 0xff544b22, 0xc2c305f9, 0xde450b20, 0x30ab2607, + 0x30a70182, 0x0871440f, 0x03300525, 0x45ff0101, 0x5c4a0ace, 0x830b2014, 0x040f2a2f, 0x01020304, 0x06103086, 0x06bd4d09, 0x83011521, 0x30002311, + 0x9d4a9881, 0x90813e05, 0x808d8130, 0x82ac0e14, 0x27564060, 0x1325e597, 0x0ae12afc, 0xe4599553, 0xa463a1a4, 0x609e4261, 0x79108233, 0x4aa116ad, + 0x4cada5a0, 0x07f45873, 0x30652e13, 0x05164b50, 0x4730492a, 0x43a04530, 0x3f8641a0, 0x4329164b, 0x722d0825, 0x63746f6f, 0x2e747265, 0x306c7263, + 0x0a104654, 0x46304824, 0x124b4430, 0x4638200a, 0x2f201b10, 0x124b4283, 0x8252200a, 0x85432055, 0x260e4b55, 0x01020a0a, 0x8a971000, 0x44035cc3, + 0xb4e9dd36, 0xcedb77ad, 0x014d5179, 0x71742eb1, 0x130c6d5b, 0x7bbeceab, 0xd42eb88f, 0x6d8ca212, 0x0257b862, 0x13204ecb, 0x7add9950, 0xbb57e240, + 0x1c9a58af, 0x86011de1, 0xf278bbac, 0x3becd08b, 0xbee2ee01, 0xc8050a8f, 0xf0e2488d, 0x4fdd1553, 0xe7e492ab, 0x80d56a8d, 0xf294e6c1, 0x03852f06, + 0x242a91e9, 0xf6fb7022, 0x9978e4fc, 0x07f70d2e, 0x18bc70e2, 0x6b8e9d4e, 0xb895720a, 0x679c39a1, 0x0e51c52d, 0x3f5c62ea, 0x208b9816, 0x1a07e23f, + 0x31ccf932, 0x3d31764a, 0xc80b722b, 0xff3d70ea, 0xdf130a85, 0x8e610ac2, 0x17b8d7f0, 0x7f8b4eeb, 0x5e2b35c5, 0xbcebbfa3, 0x7b420b7d, 0x217253d4, + 0xbbca30ee, 0x5b5c6578, 0x140a1701, 0x14dad20e, 0xb93cf598, 0x2db35866, 0x85f9e72f, 0x5651cc86, 0x94709de8, 0x4c39ac6c, 0xbf79f6d4, 0x627a18aa, + 0x9ba2ef29, 0x77063429, 0x3dc9621a, 0x821f6d1e, 0x2cc70bf0, 0xb343cfbb, 0x7decf9e5, 0xa8a4e3b5, 0x4eb83574, 0x122371c5, 0x3c0b7626, 0x5a718c52, + 0xbc144346, 0x4db0b3b3, 0x429fc867, 0x217980ff, 0x30159e80, 0x1242e866, 0x9ec81a5e, 0x43d02122, 0xbbe92be9, 0x2ccc48f4, 0x8032d8d4, 0x482a264c, + 0xea5a5f24, 0xdea6ef56, 0x3aca9d99, 0x2781bd6f, 0xee110674, 0x9bbf2176, 0x5427c182, 0x3d6ab1b6, 0x6176a189, 0x13a16eb4, 0x47aabfa6, 0xfd6f12f0, + 0xb26c328a, 0xc851dffe, 0x66c9238c, 0x871d9dbd, 0x3d026412, 0x8f59af2d, 0xe521e4b8, 0x63cab0b5, 0x055478b4, 0x502e41d4, 0xa5b094ac, 0xa0b3ab78, + 0xd91a7596, 0x75138792, 0xa8322f22, 0x5ba06e08, 0xa0bf258c, 0x21ca84ef, 0x4f1eebd6, 0x49ee9ac9, 0x6501f7e0, 0x7d0b896f, 0xe6c869c8, 0x97a7ea6e, + 0xff2931ce, 0x5c5bc50e, 0xa11b4dd8, 0x9e2ffad8, 0x16552e3f, 0xa313c96b, 0x078230fd, 0x0582307a, 0x070a4662, 0xd2900e23, 0x20008300, 0x0e374803, + 0x88813022, 0x2254664b, 0x46303032, 0x2920052f, 0x4c232f46, 0x31280910, 0x38303730, 0x39353032, 0x20053446, 0x210e8436, 0x0e833031, 0x2180b04c, + 0xa8500282, 0x020a0a11, 0x8230000f, 0x82020a02, 0xab000102, 0x1072faf0, 0xd8ad2e1c, 0x1082aa6e, 0xf2ba344d, 0x9f2158b6, 0x6b2a1b42, 0xaa505ae9, + 0x1a3806b8, 0x7fba4904, 0xdd1e0cc3, 0x12c66b37, 0x38f00bd8, 0xb00699c2, 0x01d539c8, 0xd3423114, 0x64790d89, 0x60947e87, 0x9eaf6c24, 0x68e99c49, + 0x9bdfd25e, 0x2c0ab253, 0xa9d9afc3, 0x097aae2b, 0x5996d7af, 0x051a60ca, 0xe87666e9, 0x12265232, 0x08abe72f, 0x44b3cf50, 0xc4d85db7, 0xab75032e, + 0x6dcbf368, 0xa15c3af3, 0xba46f416, 0xac6438e0, 0x7835646e, 0x0f63a0a6, 0x9340d32d, 0x07dee3f8, 0x795cd50d, 0xe72949a5, 0x13a0be0d, 0x3d94be77, + 0x2be3fbef, 0x4d1f105a, 0x7aa22856, 0x3a12e072, 0xd85e49b7, 0x9143eded, 0xb27bd983, 0xd91b867b, 0x5d8cb13e, 0x844f89e8, 0x2fa1f21a, 0x3b90e459, + 0x5833ae2d, 0xfe3eb7c5, 0x03b3d332, 0xafb2b13d, 0xd27e3892, 0xf52c809d, 0x2191564e, 0x39c32535, 0x537f646e, 0xad0f9cba, 0xcb842319, 0x8603baf4, + 0xf05ff78d, 0x8cbf52d0, 0xc0bc8794, 0x5f257421, 0xccb62818, 0x25382827, 0x364a3998, 0x92b17ccf, 0xa7231cae, 0x61ec66a9, 0x28e16a1f, 0x885f9d49, + 0xd35d25e2, 0x523e4b21, 0x3f57b5c4, 0xd1f00324, 0xd52f5b7a, 0x5d70e323, 0x7746510f, 0xe100f8b3, 0x8202acbc, 0x15c0db5f, 0xd41bbdb3, 0x39e74b55, + 0x23e90fa1, 0xb818bc49, 0xe4457c44, 0x7a72c3c1, 0x24e772e0, 0x9946bfdf, 0x1cc2efc5, 0x8d83db57, 0x30494dec, 0xdf8eaba7, 0xaf9f5bec, 0x66b0ddfc, + 0x8197c1e2, 0xedd6ed7b, 0x2949e74b, 0xa62813a7, 0x80677da7, 0x78628ae6, 0x842fb25f, 0x5c9c57d7, 0x282877bf, 0xc36dedf1, 0x8f2c8f28, 0xc14f3740, + 0x894485e1, 0xc54c09c4, 0x2f43a5d4, 0x6ef79574, 0x582078f8, 0x605d132c, 0x4f3e9a95, 0xb0da8433, 0x9ede1788, 0xb096f44e, 0x6ca046bc, 0xd6e0d298, + 0x3b478c88, 0x30ed2408, 0x46e90182, 0xba5112fe, 0x14974c09, 0x2f471920, 0x02143008, 0x0a1e0c04, 0x75005300, 0x43006200, 0x47304100, 0x94470c57, + 0x0bf35110, 0x3a2d7235, 0x43903102, 0x4e0514b9, 0xc7a7eae1, 0x8923d131, 0x465a3034, 0x532a05dc, 0x4f305130, 0x4ba04da0, 0xdc464986, 0x694d2b29, + 0x6f6f5263, 0x41726543, 0xf74c7475, 0x305f2b08, 0x32325f33, 0x6c72632e, 0xe6465e30, 0x3052240a, 0x464e3050, 0x42200ae6, 0x9a25e646, 0x3074235f, + 0xbc839f81, 0x81042029, 0x94813097, 0x41918130, 0x2e260824, 0x83813003, 0x6e873f30, 0x16010223, 0x386e9b33, 0x2f73706f, 0x73636f64, 0x6972702f, + 0x7972616d, 0x2e737063, 0x306d7468, 0x36408840, 0x1e343002, 0x001d2032, 0x0065004c, 0x00610067, 0x005f006c, 0x826f0070, 0x00692407, 0x82790063, + 0x0073220d, 0x20178274, 0x201f8274, 0x2003826d, 0x220d826e, 0x451d202e, 0x120a0e50, 0x01028203, 0x86f26700, 0x54e098a5, 0xd32e1a79, 0x226774d8, + 0x11960b9b, 0x999263e1, 0xd27d9642, 0xc1900c79, 0x2c2e5f65, 0x72c3f83e, 0xfe836dd1, 0x0ae83fbe, 0x47bf3bca, 0x69f3a3a9, 0x22bf63db, 0x5d97a535, + 0x7d908465, 0x5550468b, 0x7c920cd8, 0x1c4b1ad2, 0x8b423cf3, 0xfdb0d052, 0x073ee36b, 0xe69b292e, 0xd4a51b3d, 0x94771db5, 0x64e9e239, 0x783d44c9, + 0x13f3237a, 0x7490a67d, 0xcbf48d83, 0x2a460226, 0xbb108ac2, 0x0c05a9a4, 0xfa68ed9b, 0xa0952e68, 0x6b2a3f2a, 0x1f634958, 0x5a6e6909, 0x83e49698, + 0xf38fc0f4, 0xfcde2b46, 0x35bdd03b, 0xae256eef, 0xed27afe5, 0x0ef3ddd0, 0x972899af, 0x3d0e4d98, 0x8908f20b, 0x32c31fd6, 0xc5f0e218, 0x9e5bce2d, + 0x0a3949b4, 0xc6c20ac6, 0xb2e5aead, 0x8815dbd9, 0x38584551, 0x1a277132, 0x27f4b17f, 0x3a2cdef8, 0xb2986920, 0x6e688959, 0x74b7a76f, 0x060540c3, + 0x282a01a6, 0x133f823e, 0xc00b664d, 0xe1f54db3, 0x6f1c7f8f, 0xa7457d15, 0x2a40e576, 0x5dc3a365, 0xc3866252, 0x9736631d, 0xf3dadf86, 0xa116f2f8, + 0xcde1279a, 0xeed097a5, 0xe341635d, 0x879c075b, 0x0677063e, 0x75b106d1, 0x61be141f, 0xdcf0b561, 0xbe041bc6, 0x0ec741df, 0x65deee28, 0xf697ec2f, + 0xd8965ca1, 0x46a1d600, 0x97f359bd, 0x484b09a5, 0x1f809910, 0xc52900d0, 0x3fa59bb1, 0x351e7745, 0xa2a2d2c6, 0x227a7a9f, 0x1f9548fa, 0x2347fbab, + 0xf89ef580, 0x4bb76bbf, 0x75ebe297, 0xeaec1a78, 0x18799937, 0xb3d6ff4b, 0xe6756823, 0x8bfcfaaf, 0xea800beb, 0xfcaf3b69, 0x4c04ed30, 0x75dfdf8e, + 0x3d91636d, 0x4e569dd1, 0x5780bf4f, 0x1178a122, 0xef7a2132, 0x3fb10a41, 0xa4cca8fb, 0x88a1c15d, 0x5671579b, 0xc045484e, 0x769bc942, 0x48800a5b, + 0x9f79fd6b, 0x6d6dbdc1, 0x7352c96a, 0x507a0d13, 0x048231cd, 0x048230b0, 0x010102ac, 0x46958130, 0xd3587fb8, 0x0e0d5406, 0x24096759, 0x30c481a0, + 0x08e15819, 0x31030923, 0x08cc510c, 0x04010224, 0x0d8a1c30, 0x0e310b23, 0x221d8b30, 0x89233015, 0x31043a38, 0x46140416, 0x843e439f, 0xd29d30f6, + 0x71ca08d5, 0x857e9301, 0x300ce01f, 0x29428a64, 0x3056310c, 0x802aa054, 0xb75e0028, 0x5b542013, 0xa1231111, 0x43248026, 0x542018d9, 0x2008b160, + 0x0e445820, 0x82040b09, 0x512e0001, 0x35cb52b0, 0xb2734561, 0x9e900056, 0x3c199ac8, 0x1a9fbd34, 0x1cb5371f, 0xd688d32c, 0x667d2a02, 0x7aecafa2, + 0xdef3e51f, 0x76186fe3, 0x4cd33f83, 0x3d8e6ec1, 0x2e1bb433, 0x3d297100, 0x3b476fbf, 0x85fe2ed5, 0xd720ff44, 0x6dae654f, 0x22de1952, 0xd5c601da, + 0x5c51b642, 0x4b82f55a, 0xf3befa9b, 0x7f5e774c, 0xda841899, 0x9ac2a140, 0xae08c443, 0x10e98314, 0xe6823687, 0xb38bd74d, 0xe215bf9f, 0x41a0e5ce, + 0xf5c2b29f, 0xb6b3f4ed, 0x88d7e327, 0x03f93ba6, 0x109520d8, 0xfea492ce, 0x3b92a55d, 0x32827f66, 0x81fc3da3, 0x18bc5474, 0x3fd922d8, 0xdd527a18, + 0x30980bc4, 0xd6e3d66e, 0x0391c638, 0xfd26b5f5, 0x378a83fb, 0xed5e6a9d, 0xc5c9c8cf, 0xdcef41d7, 0x4e6a43b9, 0x4817f56f, 0x0c36e196, 0xe6971b65, + 0x97fba18f, 0x8227d17b, 0x21e316b6, 0x3de3484a, 0x970febef, 0x3dbbbc81, 0x82a1fcf1, 0x82302802, 0xa3412402, 0x31062409, 0x82150282, 0x02112612, + 0x81300101, 0x78884f8e, 0x5b069342, 0x93420e67, 0x305d220a, 0x22b58918, 0x880b3103, 0x0107230c, 0x0c881c30, 0x31050932, 0x310d170f, 0x31303137, + 0x33393139, 0x5a313533, 0x33109142, 0x387b480f, 0x936b753e, 0x2abc987e, 0xddfce30c, 0x135c2745, 0x090e1051, 0x01820404, 0xf58d7600, 0x73dd1e8e, + 0x332b9e0e, 0xe11cdeae, 0xbaa28d0d, 0x5fd5a809, 0xf1614569, 0x82dd7181, 0x3552df03, 0xd1577550, 0x40550099, 0x89f68382, 0xc75fe756, 0x27b2739c, + 0x21ef7d0e, 0x1af72f13, 0xc91f45bd, 0x479f9022, 0x2dd423b5, 0x4d96eb17, 0xc944f803, 0x825a6b6c, 0x0c7bb1dc, 0xbb7c74b8, 0xcdb51094, 0x24acca44, + 0x90049261, 0x3a42f400, 0x8e244dbb, 0xaa2d142a, 0xc1289315, 0xf8443c34, 0x9ce3aeb8, 0x6df9008f, 0xe07b57e6, 0x984b6aac, 0x9423bcad, 0x477f9747, + 0xec2dee49, 0x9ec31963, 0xd84535a0, 0xc3ccb2ae, 0x61439860, 0x277cece4, 0xab7778ba, 0x8804bb69, 0x2abe55d0, 0xdca66561, 0x51c6ea38, 0xca96ab3f, + 0xe52279f7, 0xc24ef0f0, 0x27e76558, 0x40ab161e, 0xe4844654, 0xdef9f43f, 0x98c30cde, 0x425dafed, 0xdbfd933b, 0x01308a8a, 0x4d5f7484, 0xcb7dd0a0, + 0x469c58b2, 0x00b78fe8, 0x0082003e, 0x03820120, 0x03820c20, 0x03821620, 0x82000221, 0x7405210d, 0x04200582, 0x0b820d82, 0x0a390586, 0xe2006800, + 0x79630300, 0x14006c72, 0x6b657267, 0x616c2200, 0x30006e74, 0x28278300, 0x00ffff00, 0x00000002, 0x330d8a05, 0x00060001, 0x4c020010, 0x00204854, + 0x4d4f521a, 0x00240020, 0x02222785, 0x09860700, 0x08000322, 0x042a0986, 0x0a000900, 0x70737063, 0x05843e00, 0x05844420, 0x05844a20, 0x05845020, + 0x656b5626, 0x5c006e72, 0x62200584, 0x68200584, 0x6e200584, 0x74200584, 0x775e7d82, 0x84022007, 0x9003200b, 0x21108205, 0x04830100, 0x04280590, + 0x12000a00, 0x22001a00, 0x0820c582, 0x20201d82, 0x01222184, 0x0785fa69, 0x85506b21, 0x746c2507, 0xc6660100, 0x4908e383, 0x6403ad01, 0xb4036e03, + 0x5c040204, 0xbc055205, 0x5406c205, 0x84067206, 0xc409a606, 0xac0a7e0a, 0x0c0df60b, 0xc80f360d, 0x2010e20f, 0x10144a10, 0x58173214, 0xb01b861a, + 0x7c1f261f, 0x9c1f8a1f, 0xb41fae1f, 0x0820fa1f, 0x0582fa1f, 0x4420263e, 0x88205a20, 0xd820a220, 0x3021fe20, 0xac217e21, 0x7206ac21, 0x0422f621, + 0x20221222, 0x262e0188, 0x0c0d2622, 0x26202c22, 0x58225222, 0x25830a23, 0x23f62129, 0x24642364, 0x8390275a, 0x262b2b03, 0x322e302b, 0x5c2e5822, + 0x1d835c2e, 0x85162f21, 0xf6212101, 0x4d820183, 0x04220436, 0x8e30c42f, 0x9a309430, 0x262b302b, 0x2022a830, 0x9430162f, 0x30212b83, 0x201982fe, + 0x821b82fe, 0x8231201d, 0x9a302b27, 0xf6214234, 0x76372037, 0x4585ac21, 0x82162f21, 0x22f6220b, 0x22978220, 0x85943020, 0x0422254d, 0x8e309037, + 0x43824b83, 0x0d831b82, 0x15850387, 0x21162f27, 0x22302bf6, 0x2463842c, 0x3a162f9a, 0x30098272, 0x317c3bf6, 0x3d302b04, 0x22c43ede, 0x2b162f2c, + 0x83778330, 0x8e3029e7, 0x0e3f2022, 0x94304234, 0x37237383, 0x820e3f76, 0x3a482e01, 0x216a3f72, 0x414234ac, 0x41723a08, 0x8441822a, 0x6a3f293f, + 0xde3d2037, 0x08410841, 0x0e202382, 0x4127e183, 0x42364298, 0x833c423c, 0x82dd8249, 0x2022214b, 0x2b261183, 0x42423426, 0x55824336, 0x04313b08, + 0x0244f043, 0x0e440844, 0x1e441844, 0x8c459841, 0x40477a46, 0x5c485247, 0xac489248, 0xcc4a0249, 0xd44cea4b, 0xc64dea4b, 0x424fd84e, 0xba507850, + 0x8a52a451, 0x9a545853, 0x01911e44, 0x40223982, 0x01878c45, 0x847a4621, 0x8340204b, 0x21038915, 0x5b827a46, 0x03845c20, 0x63829220, 0xac200387, + 0x73840b86, 0x4a3c5523, 0x217983cc, 0x018fea4b, 0x55404725, 0x83c64dfe, 0xd84e2101, 0x57230187, 0x83424f18, 0x209d8201, 0x21038f78, 0x0185a451, + 0x85585321, 0x9a542101, 0xe9830183, 0x4402582c, 0x5440471e, 0x48ea4b9a, 0x0b844992, 0x5820e983, 0x532de582, 0x521a5958, 0x5a385a8a, 0x539248e2, + 0x31258358, 0xea4b9248, 0xe25a5853, 0x845b1e44, 0x02589841, 0xcf83ae5b, 0x5d305c25, 0x83305cee, 0x8c452535, 0xba50424f, 0x5b273583, 0x5eae5bae, + 0x83085e08, 0x085e27b7, 0x8c450258, 0xd984d84e, 0x1583ac20, 0x5c9e5e29, 0x58ba5030, 0x83245f02, 0xaa622101, 0x64210183, 0x29018368, 0xb4661266, + 0xba66ac48, 0x0191c066, 0x00020027, 0x009cffb4, 0x260382b6, 0xfffb0311, 0x821504b0, 0x82162003, 0x82172003, 0x82182003, 0x82192003, 0x821a2003, + 0x821b2003, 0x821c2003, 0x821d2003, 0x821e2003, 0x827b2003, 0x827e2003, 0x82852003, 0x82952003, 0x829c2003, 0xffa82603, 0x001300e4, 0x224b8224, + 0xc49cff90, 0x8216204d, 0x822e209d, 0x042e269d, 0x0460ff0e, 0x24638210, 0x0488ff11, 0x20078213, 0x200f8263, 0x20038264, 0x20038265, 0x20138270, + 0x20038271, 0x20038272, 0x20038273, 0x201f8274, 0x20038275, 0x20038276, 0x20038277, 0x2023828d, 0x2007828e, 0x20038294, 0x2403829a, 0x0060ffaf, + 0x26a7823d, 0xff2c00ce, 0x822d00e2, 0xff362caf, 0xff3700ec, 0xff39006a, 0x823a00ce, 0xff3b2803, 0xff3c00b0, 0x823d0074, 0x8244201f, 0xff59241b, + 0x825a00d8, 0x825b2007, 0x825c201b, 0x825d200b, 0x82902003, 0xffa0220b, 0x20e782ec, 0x229d82d8, 0x821204a4, 0xff132459, 0x821404d8, 0x82152007, + 0x82162007, 0x82172003, 0x82182003, 0x82192003, 0x821a2003, 0x821b2003, 0x821c2003, 0x821d2003, 0x821e2003, 0xff632403, 0x826404a4, 0x82652003, + 0x82742003, 0x8275200f, 0x82762003, 0x82772003, 0x82782003, 0x82792047, 0x827a2003, 0x827b2003, 0x827e200f, 0x82802003, 0x8285200b, 0x828d2007, + 0x828e202f, 0x84902007, 0x04d822d5, 0x200b8295, 0x2003829a, 0x2003829c, 0x201b82a3, 0x200382af, 0x241b82b2, 0x04aaffcf, 0x361382d1, 0x04c2ffd3, + 0x00c2ffd7, 0xff0f001a, 0xff10007e, 0xffb10060, 0x82b20088, 0xffb42103, 0x250f5f41, 0xff1304b0, 0x5f410488, 0x04b0220d, 0x204d8271, 0x20038272, + 0x20038273, 0x201f8274, 0x20038275, 0x20038276, 0x41038277, 0x8822055f, 0x0b829404, 0x03829a20, 0x5f82af20, 0x5d820120, 0x24007422, 0xce266b82, + 0xf6ff3600, 0x6b823700, 0x07823820, 0xc4ff3930, 0xceff3a00, 0xb0ff3c00, 0xecff5700, 0x13825800, 0x0f825920, 0xe2ff5a24, 0x07825c00, 0x0382b120, + 0x0382b220, 0x0382b320, 0x3382b420, 0x0782b520, 0x5382b620, 0xfbff1024, 0x03821104, 0xf7ff1324, 0x07827004, 0x03827120, 0x03827220, 0x03827320, + 0x13827420, 0x03827520, 0x03827620, 0x03827720, 0x03828e20, 0x17828f20, 0xf2ff9122, 0xf7229382, 0x0f829a04, 0xe3ffb42a, 0xeeffb704, 0x0f000700, + 0x10247582, 0x11000a00, 0x37200782, 0xab208d82, 0xb1200782, 0xb2200f82, 0x04200382, 0xaf23af84, 0x8700e7ff, 0x82082087, 0x82ce202f, 0x82ce202b, + 0x82ce20c1, 0x00ec22b9, 0x20b1823b, 0x2033823c, 0x2003823d, 0x269d82ab, 0xfe0f00c7, 0x821100d4, 0x821d2003, 0x821e204d, 0x00222c03, 0xff24003c, + 0x0037009c, 0x8244001e, 0x82482007, 0x82522025, 0xff902403, 0x82a00092, 0x82a1200f, 0x82ab200b, 0xffb0302f, 0xffd403ce, 0xfffb03e1, 0xfffc0396, + 0x82fd03c2, 0x82fe2003, 0xffff2403, 0x820004c2, 0x82012003, 0x82022003, 0x82032003, 0xff042403, 0x8205049f, 0x82062007, 0x82072003, 0x82082003, + 0x82092003, 0x820a2003, 0x820b2003, 0x820c2003, 0xff0d2803, 0xff0f04e1, 0x821004d2, 0x82112007, 0x82122003, 0x82132013, 0x8214200f, 0xff152407, + 0x82160496, 0x82172003, 0x82182003, 0x82192003, 0x821a2003, 0x821b2003, 0x821c2003, 0x821d2003, 0x821e2003, 0x82212003, 0x8222202b, 0x82232003, + 0x82242003, 0x82252003, 0x82262003, 0x82282003, 0x82292003, 0x822a2003, 0x822b2003, 0x822c2003, 0x822d2003, 0x822e2003, 0x822f2003, 0x82302003, + 0x82312003, 0x82332003, 0x82342003, 0x82352003, 0x82362003, 0x82382003, 0x82392003, 0x823a2003, 0x823b2003, 0x823c2003, 0x823d2003, 0x823e2003, + 0x823f2003, 0x82402003, 0x82412003, 0x82422003, 0x82432003, 0x824420e3, 0x82452007, 0x82462003, 0x82472003, 0x82482003, 0x824a2003, 0x824b2003, + 0x824c2003, 0x824d2003, 0x824e2003, 0x824f2003, 0x82502003, 0x82512003, 0x82522003, 0x82532003, 0x82542003, 0x82572003, 0x82592003, 0x825a2003, + 0x825b2003, 0x825c2003, 0xff5d2403, 0x825e04e1, 0x825f2003, 0x82602003, 0x82612003, 0xff662403, 0x826704d2, 0x82682003, 0x82692003, 0x826a2003, + 0x826b2003, 0x826c2003, 0x826d2003, 0x826e2003, 0x826f2003, 0x82702003, 0x8271202b, 0x82722003, 0x82732003, 0x82742003, 0x82752013, 0x82762003, + 0x82772003, 0x82782003, 0x8279205f, 0x827a2003, 0xff7b2403, 0x827c0496, 0x827d2007, 0x827e2003, 0x827f200b, 0x82802007, 0x82812003, 0x82822003, + 0x82832003, 0x82842003, 0x82852003, 0x8286201b, 0x82872007, 0x82892003, 0x828a2003, 0x828b2003, 0x828e2003, 0x8290204f, 0x82932007, 0x82942003, + 0x8295200b, 0x82962027, 0x8297200b, 0x82982003, 0x82992003, 0x829a2003, 0x829c2017, 0x829d2017, 0x829e200b, 0x829f2003, 0x82a12003, 0x82a22003, + 0x82a52003, 0x82a62003, 0x82a72003, 0x82a92003, 0x82aa2003, 0x82ac2003, 0x82ad2003, 0x82ae2003, 0x82b22003, 0x82b32003, 0x82b52003, 0x82b62003, + 0x82b82003, 0x82b92003, 0x82bb2003, 0x82be2003, 0x82c72003, 0x82ca2003, 0x82cb2003, 0x82d82003, 0x82da2003, 0x82eb2003, 0x82ec2003, 0x82ed2003, + 0x82ee2003, 0x82ef2003, 0x82f02003, 0x82f12003, 0x82f22003, 0x82f32003, 0x82f42003, 0x82f52003, 0x82f62003, 0x82f72003, 0x82f82003, 0x82f92003, + 0xfffa2a03, 0x002e00c2, 0x00e2ff10, 0x280382b1, 0x03e2ffb2, 0x04f7fffd, 0x20038201, 0x20038209, 0x4303820b, 0xfb2209d5, 0x0f822104, 0x03822220, + 0x03822320, 0x03822420, 0x03822520, 0x03823320, 0x03823420, 0x03823520, 0x03823620, 0x03824e20, 0x03824f20, 0x03825020, 0x03825120, 0x03825220, + 0x03825320, 0x03825420, 0x19445720, 0x04fb2614, 0x04fbff75, 0x20038276, 0x20038277, 0x20238282, 0x20038289, 0x200b828e, 0x2407828f, 0x04beff91, + 0x200b8294, 0x200b8299, 0x2007829a, 0x200782ae, 0x2a0382b4, 0x00cfffb7, 0xff0f000b, 0x821100ec, 0xff242403, 0x829000f6, 0xffab2403, 0x821204ec, + 0x82902025, 0x82a32003, 0x82b22003, 0x82b42003, 0xffbc2403, 0x825200fb, 0x009222e7, 0x282d8232, 0x00c4ff44, 0x00baff48, 0x28038252, 0x00ceff58, + 0x00b0ff59, 0x200b825a, 0x2007825c, 0x201f8291, 0x201f82a0, 0x200f82a1, 0x200b82af, 0x340782b0, 0x0092ffb1, 0x0392ffb2, 0x04d3fffd, 0x04f2ff01, + 0x04090004, 0x20078209, 0x2403820b, 0x0485ff0e, 0x2061820f, 0x20938210, 0x20038211, 0x20038213, 0x20278221, 0x20038222, 0x20038223, 0x20038224, + 0x20038225, 0x202b8233, 0x20038234, 0x20038235, 0x20038236, 0x20438243, 0x2007824e, 0x2003824f, 0x20038250, 0x20038251, 0x20038252, 0x20038253, + 0x20038254, 0x20038257, 0x205b8263, 0x20038264, 0x20038265, 0x20638266, 0x20038267, 0x20038268, 0x20038269, 0x2003826a, 0x2003826b, 0x2003826c, + 0x2003826d, 0x2003826e, 0x2003826f, 0x207f8270, 0x20038271, 0x20038272, 0x45038273, 0x82200f79, 0x89205782, 0x8d200382, 0x8e205382, 0x8f281f82, + 0x9104d8ff, 0x9404b0ff, 0x99200b82, 0x9a201782, 0xab240782, 0xae04e1ff, 0xaf24b382, 0xb00485ff, 0xb1280b82, 0xb404d2ff, 0xb704c2ff, 0xc8320382, + 0x4500e1ff, 0x88ff0a00, 0x60ff1000, 0xecff2600, 0x03822a00, 0x64002d24, 0x07823200, 0x56ff372c, 0x92ff3900, 0x9cff3a00, 0x1f823c00, 0x0b825920, + 0x03825c20, 0x1b826420, 0x03829120, 0x0382af20, 0x1782b120, 0x0382b220, 0x0382b420, 0x60ffb624, 0x6182fd03, 0x03820120, 0x03820920, 0x03820b20, + 0x03820f20, 0x96ff102c, 0xbeff1104, 0x88ff1304, 0x0f822104, 0x03822220, 0x03822320, 0x03822420, 0x03822520, 0x03823320, 0x03823420, 0x03823520, + 0x03823620, 0x03824e20, 0x03824f20, 0x03825020, 0x03825120, 0x03825220, 0x03825320, 0x03825420, 0x03825720, 0x03826620, 0x03826720, 0x03826820, + 0x03826920, 0x03826a20, 0x03826b20, 0x03826c20, 0x03826d20, 0x03826e20, 0x03826f20, 0x73827020, 0x03827120, 0x03827220, 0x03827320, 0x200f4747, + 0x20238282, 0x20038289, 0x2097828e, 0x20038294, 0x200b8299, 0x2a07829a, 0x00e1ffae, 0xff0f000a, 0x821100e2, 0xff372203, 0x0e8346ce, 0xa004e22e, + 0xa304e3ff, 0xcf04fbff, 0xa400e7ff, 0x20088f46, 0x24298224, 0x0014003c, 0x46078244, 0xba220983, 0x0f82a000, 0x2c0b8346, 0x038dfffb, 0x03e1fffc, + 0x03cdfffd, 0x200782fe, 0x207782ff, 0x24038200, 0x04cdff01, 0x24078202, 0x04c9ff04, 0x20078205, 0x20038206, 0x20038207, 0x20038208, 0x201b8209, + 0x2007820a, 0x2007820b, 0x0657410c, 0xf1ff1428, 0x8dff1504, 0x03821604, 0x03821720, 0x03821820, 0x03821920, 0x03821a20, 0x03821b20, 0x03821c20, + 0x03821d20, 0x03821e20, 0x37822120, 0x03822220, 0x03822320, 0x03822420, 0x03822520, 0x47822620, 0x03822820, 0x03822920, 0x03822a20, 0x03822b20, + 0x03822c20, 0x03822d20, 0x03822e20, 0x03822f20, 0x03823020, 0x03823120, 0x2f823320, 0x03823420, 0x03823520, 0x03823620, 0x13823820, 0xa7824320, + 0x07824420, 0x03824520, 0x03824620, 0x03824720, 0x03824820, 0x03824a20, 0x03824b20, 0x03824c20, 0x03824d20, 0x2f824e20, 0x03824f20, 0x03825020, + 0x03825120, 0x03825220, 0x03825320, 0x03825420, 0x03825720, 0x23825920, 0x03825a20, 0x03825b20, 0xdf415c20, 0x8278202a, 0x827920ff, 0x827a2003, + 0x827b2003, 0x827c20e3, 0x827d203b, 0x827e2003, 0x827f200b, 0xff802407, 0x828104f1, 0x82822007, 0x82842063, 0x82852007, 0x82862017, 0x82872007, + 0x82892003, 0x828a2013, 0x828b2007, 0x82952003, 0x82962017, 0x82972007, 0x82992003, 0x829c2017, 0x829d200f, 0x829e200b, 0x829f2003, 0x82a12003, + 0x82a22003, 0x82a52003, 0x82a62003, 0x82a72003, 0x82a92003, 0x82aa2003, 0x82ac2003, 0x82ad2003, 0x82ae2003, 0xffb12437, 0x82b304fb, 0x82b5200b, + 0x82b62003, 0x82b82003, 0x82b92003, 0x82bb2003, 0x82bc2003, 0x82be201f, 0x82c72007, 0x82ca2003, 0x82cb2003, 0xffcf2803, 0xffd104f7, 0x82d504e7, + 0x82d820a7, 0x82d9200f, 0x82da2003, 0x82eb2003, 0x82ec2003, 0x82ed2003, 0x82ee2003, 0x82ef2003, 0x82f02003, 0x82f12003, 0x82f22003, 0x82f32003, + 0x82f42003, 0x82f52003, 0x82f62003, 0x82f72003, 0x82f82003, 0x82f92003, 0xfffa2403, 0x420600e1, 0xab2108bb, 0x0dab42ff, 0x10000f31, 0x37009cff, + 0x3c00c4ff, 0x4400ecff, 0x4200d8ff, 0x582007a7, 0x5c220f82, 0xab42c9ff, 0x82b02008, 0x82b12023, 0x82b2202b, 0xffb42403, 0x82b600ba, 0x450a2003, + 0xec2a0aa1, 0xeaff3600, 0xe2ff5900, 0x39845a00, 0x9000e222, 0xab240782, 0xa304ecff, 0xf1248182, 0xdefe0f00, 0x6a226b82, 0x07821100, 0x38ff1d24, + 0x03821e00, 0x2205a749, 0x82260088, 0x822a2077, 0xff322203, 0x204582ce, 0x208f82f4, 0x248b82ba, 0xff460010, 0x268f8224, 0xff4a0024, 0x8252002e, + 0x8255200b, 0xff562433, 0x8258004c, 0x82592007, 0x825a2003, 0x825c2003, 0xff5d2403, 0x82640056, 0xff90243f, 0x8291007e, 0xffa02443, 0x82a10010, + 0x82ab202f, 0x82af206b, 0x82b0200f, 0xffb1380b, 0xffb2006a, 0xffd4036a, 0xfffb03c2, 0xfffc0360, 0xfffd037c, 0x82fe034a, 0xffff2407, 0x8200047c, + 0xff012403, 0x8202044a, 0xff032407, 0x82040485, 0x82052007, 0x82062003, 0x82072003, 0x82082003, 0x82092003, 0x820a201f, 0x820b2007, 0x820c2007, + 0xff0d2407, 0x820f0469, 0xff10242b, 0x8211048e, 0xff122407, 0x82130489, 0x8214200b, 0xff15240b, 0x82160460, 0x82172003, 0x82182003, 0x82192003, + 0x821a2003, 0x821b2003, 0x821c2003, 0x821d2003, 0x821e2003, 0x82212003, 0x8222204b, 0x82232003, 0x82242003, 0x82252003, 0x82262003, 0x8228205b, + 0x82292003, 0x822a2003, 0x822b2003, 0x822c2003, 0x822d2003, 0x822e2003, 0x822f2003, 0x82302003, 0x82312003, 0x82322003, 0x82332003, 0x82342033, + 0x82352003, 0x82362003, 0x82382003, 0x82392013, 0x823a2083, 0x823b2003, 0x823c2003, 0x823d2003, 0x823e2003, 0x823f2003, 0x82402003, 0x82412003, + 0x82422003, 0x82432003, 0x8244202b, 0x82452003, 0x82462003, 0x82472003, 0x82482003, 0x824a2003, 0x824b2003, 0x824c2003, 0x824d2003, 0x824e2003, + 0x824f2057, 0x82502003, 0x82512003, 0x82522003, 0x82532003, 0x82542003, 0x82572003, 0x82592003, 0x825a2023, 0x825b2003, 0x825c2003, 0xff5d2403, + 0x825e0469, 0x825f2003, 0x82602003, 0x82612003, 0x82662003, 0x8267206f, 0x82682003, 0x82692003, 0x826a2003, 0x826b2003, 0x826c2003, 0x826d2003, + 0x826e2003, 0x826f2003, 0x82702003, 0x82712003, 0x82722003, 0x82732003, 0xff742403, 0x8275048e, 0x82762003, 0x82772003, 0x82782003, 0x82792013, + 0x827a2003, 0xff7b2403, 0x827c0460, 0x827d206f, 0x827e2003, 0x827f200b, 0x82802007, 0x82812017, 0x82822007, 0x82832097, 0x8284200b, 0x8285200b, + 0x8286201b, 0x82872007, 0x82882003, 0x82892013, 0x828a201b, 0x828b200b, 0x828c2003, 0x828e200f, 0xff8f2857, 0xff900441, 0x82910489, 0xff92240f, + 0x82930472, 0x82942007, 0x82952017, 0x8296203b, 0x82972027, 0x82982003, 0x82992013, 0x829a203b, 0x829b2017, 0x829c2023, 0x829d201b, 0x829e2017, + 0x829f2003, 0xffa02403, 0x82a10466, 0x82a22007, 0xffa32403, 0x82a40475, 0x82a5200f, 0x82a6200b, 0x82a72003, 0x82a82003, 0x82a9203b, 0x82aa2007, + 0x82ac2003, 0x82ad2003, 0x82ae2003, 0x82b02013, 0xffb12457, 0x82b20422, 0x82b3207f, 0x82b42013, 0x82b52037, 0x82b62007, 0x82b72003, 0x82b8200b, + 0x82b92007, 0x82ba2003, 0x82bb200b, 0x82bc2007, 0x82be207b, 0x82c72007, 0x82c82003, 0x82ca203b, 0x82cb2007, 0xffd12403, 0x82d304c2, 0xffd5240f, + 0x82d70463, 0x82d8202b, 0xffd92413, 0x82da045a, 0x82eb2007, 0x82ec2003, 0x82ed2003, 0x82ee2003, 0x82ef2003, 0x82f02003, 0x82f12003, 0x82f22003, + 0x82f32003, 0x82f42003, 0x82f52003, 0x82f62003, 0x82f72003, 0x82f82003, 0x82f92003, 0xfffa2403, 0x4908007c, 0xec210e91, 0x0b914900, 0xfbffb224, + 0xe743c900, 0x43ce2006, 0xb02806e7, 0xb0ff1e00, 0xc4ff2400, 0x2606874d, 0xff52009c, 0x8258009c, 0xff5c270f, 0xff9000bf, 0x8f4d00ba, 0x009c2605, + 0x00defeab, 0x201b82b0, 0x057f4eb1, 0xfffb032d, 0xfffc03a7, 0xfffd03d8, 0x82fe03cf, 0xffff2407, 0x820004d8, 0xff012403, 0x820204cf, 0xff032807, + 0xff0404e7, 0x820504bf, 0x8206200b, 0x82072003, 0x82082003, 0x82092003, 0x820a201f, 0x820b2007, 0x820c2007, 0xff0d2407, 0x820f04e3, 0xff102407, + 0x821104ec, 0x82122003, 0x82132003, 0x82142003, 0xff15243f, 0x821604a7, 0x82172003, 0x82182003, 0x82192003, 0x821a2003, 0x821b2003, 0x821c2003, + 0x821d2003, 0x821e2003, 0x82212003, 0x8222204b, 0x82232003, 0x82242003, 0x82252003, 0x82262003, 0x82282053, 0x82292003, 0x822a2003, 0x822b2003, + 0x822c2003, 0x822d2003, 0x822e2003, 0x822f2003, 0x82302003, 0x82312003, 0x82332003, 0x8234202f, 0x82352003, 0x82362003, 0x82382003, 0x82392013, + 0x823a207f, 0x823b2003, 0x823c2003, 0x823d2003, 0x823e2003, 0x823f2003, 0x82402003, 0x82412003, 0x82422003, 0x82432003, 0x824420e3, 0x8245202f, + 0x82462003, 0x82472003, 0x82482003, 0x824a2003, 0x824b2003, 0x824c2003, 0x824d2003, 0x824e2003, 0x824f2057, 0x82502003, 0x82512003, 0x82522003, + 0x82532003, 0x82542003, 0x82572003, 0x82592003, 0x825a2023, 0x825b2003, 0x825c2003, 0xff5d2403, 0x825e04e3, 0x825f2003, 0x82602003, 0x82612003, + 0x82662003, 0x82672017, 0x82682003, 0x82692003, 0x826a2003, 0x826b2003, 0x826c2003, 0x826d2003, 0x826e2003, 0x826f2003, 0xff702403, 0x827104ec, + 0x82722003, 0x82732003, 0x82742003, 0x82752003, 0x82762003, 0x82772003, 0x82782003, 0x827920b7, 0x827a2003, 0xff7b2403, 0x827c04a7, 0x827d2033, + 0x827e2003, 0x827f200b, 0x82802007, 0x82812017, 0x82822007, 0x82832097, 0x8284200b, 0x8285200b, 0x8286201b, 0x82872007, 0x82892003, 0x828a2017, + 0x828b2007, 0x828e2003, 0x8290204f, 0x82932003, 0x82942027, 0x82952007, 0x82962027, 0x82972017, 0x82982003, 0x82992013, 0x829a202b, 0x829c2017, + 0x829d2017, 0x829e2013, 0x829f2003, 0x82a12003, 0x82a22003, 0x82a52003, 0x82a62003, 0x82a72003, 0x82a92003, 0x82aa2003, 0x82ac2003, 0x82ad2003, + 0x82ae2003, 0x82b2203b, 0x82b3203b, 0x82b5200b, 0x82b62003, 0x82b82003, 0x82b92003, 0x82bb2003, 0x82be2003, 0x82c72003, 0x82ca2003, 0x82cb2003, + 0x82d82003, 0x82da2003, 0x82eb2003, 0x82ec2003, 0x82ed2003, 0x82ee2003, 0x82ef2003, 0x82f02003, 0x82f12003, 0x82f22003, 0x82f32003, 0x82f42003, + 0x82f52003, 0x82f62003, 0x82f72003, 0x82f82003, 0x82f92003, 0xfffa2403, 0x43cb00d8, 0xff240925, 0xff1d0024, 0x20072543, 0x0c2543ce, 0xc4ff5522, + 0x200a2943, 0x092943c4, 0x29433382, 0x03b02a0d, 0x03e3fffc, 0x03d3fffd, 0x240782fe, 0x04e3ffff, 0x24038200, 0x04c4ff01, 0x20078202, 0x20e18203, + 0x20798204, 0x200b8205, 0x20038206, 0x20038207, 0x24038208, 0x04d3ff09, 0x2007820a, 0x2007820b, 0x2207820c, 0x4ce7ff0d, 0xfb2506eb, 0xfbff1104, + 0x05294304, 0x4304fb21, 0xb0210529, 0x23955404, 0x20131b4d, 0x205b8226, 0x20038228, 0x20038229, 0x2003822a, 0x2003822b, 0x2003822c, 0x2003822d, + 0x2003822e, 0x2003822f, 0x20038230, 0x20038231, 0x20ab8232, 0x20b78233, 0x20038234, 0x20038235, 0x20038236, 0x20178238, 0x20178239, 0x2003823a, + 0x2003823b, 0x2003823c, 0x2003823d, 0x2003823e, 0x2003823f, 0x20038240, 0x20038241, 0x20038242, 0x20e78243, 0x202f8244, 0x20038245, 0x20038246, + 0x20038247, 0x20038248, 0x2003824a, 0x2003824b, 0x2003824c, 0x2003824d, 0x20f3824e, 0x2003824f, 0x20038250, 0x20038251, 0x20038252, 0x20038253, + 0x20038254, 0x20038257, 0x20238259, 0x2003825a, 0x2003825b, 0x2403825c, 0x04e7ff5d, 0x2003825e, 0x2003825f, 0x20038260, 0x4d038261, 0xfb2129b3, + 0x0d2d5304, 0x430d134f, 0xb0220d2d, 0x6f827c04, 0x03827d20, 0xb0ff7e24, 0x07827f04, 0x22052d43, 0x828204e3, 0x82832097, 0x828420e3, 0x82852013, + 0x8286201b, 0x82872007, 0x82892003, 0x828a2017, 0x828b2007, 0xff8e2303, 0x2d4304fb, 0x04ec2205, 0x200b8294, 0x20278295, 0x20178296, 0x20038297, + 0x203b8298, 0x202b8299, 0x2017829a, 0x2017829c, 0x2013829d, 0x2003829e, 0x2003829f, 0x200382a1, 0x200382a2, 0x200382a5, 0x200382a6, 0x200382a7, + 0x200382a9, 0x200382aa, 0x200382ac, 0x200382ad, 0x433b82ae, 0xe322052d, 0x0f82b504, 0x0382b620, 0x0382b820, 0x0382b920, 0x0382bb20, 0x0382be20, + 0x0382c720, 0x0382ca20, 0x0382cb20, 0x0382d820, 0x0382da20, 0x0382eb20, 0x0382ec20, 0x0382ed20, 0x0382ee20, 0x0382ef20, 0x0382f020, 0x0382f120, + 0x0382f220, 0x0382f320, 0x0382f420, 0x0382f520, 0x0382f620, 0x0382f720, 0x0382f820, 0x0382f920, 0xe3fffa2e, 0x10004a00, 0x2600b0ff, 0x2a00f6ff, + 0x32200382, 0x4f4d0382, 0x00c42a05, 0x00c4ff52, 0x00e2ff58, 0x201f825c, 0x20178264, 0x4d038291, 0xc422055b, 0x0b82af00, 0x2605b34a, 0xffb200b0, + 0x82fd03b0, 0xff01244d, 0x820904f2, 0x460b2007, 0xd32a0813, 0xd8ff1104, 0xc4ff1304, 0x13822104, 0x03822220, 0x03822320, 0x03822420, 0x03822520, + 0x200fd54f, 0x2013824e, 0x2003824f, 0x20038250, 0x20038251, 0x20038252, 0x20038253, 0x20038254, 0x2c3f4557, 0x7104d822, 0x72207782, 0x73200382, + 0x74200382, 0x75207f82, 0x76200382, 0x77200382, 0x82200382, 0x89204b82, 0x8e200382, 0x8f200b82, 0x91240782, 0x9404bfff, 0x99200b82, 0x9a200b82, + 0xae200782, 0xb94f0782, 0x04d32e05, 0x04b0ffb4, 0x04eeffb7, 0x00e1ffc8, 0x065744dd, 0x654b7420, 0xff24340c, 0xff3200b0, 0xff4400ec, 0xff470074, + 0xff480088, 0x824a007e, 0xff502403, 0x8251009c, 0x82522003, 0x8253200b, 0x82542007, 0x82552007, 0xff562407, 0x82580092, 0x82592003, 0x5190200b, + 0x74220833, 0x1f82a100, 0x2205514b, 0x82b000ec, 0x82b1200b, 0xffb2344f, 0xffd40374, 0xfffb03d8, 0xfffc0347, 0xfffd0388, 0x82fe035b, 0xffff2407, + 0x82000488, 0xff012403, 0x82020469, 0x82032007, 0xff042403, 0x82050479, 0x82062007, 0x82072003, 0x82082003, 0xff092403, 0x820a045b, 0x820b2007, + 0x820c2007, 0x820d2007, 0x820f2023, 0xff102407, 0x82110491, 0x82122003, 0x82132003, 0x82142003, 0xff152417, 0x82160447, 0x82172003, 0x82182003, + 0x82192003, 0x821a2003, 0x821b2003, 0x821c2003, 0x821d2003, 0x821e2003, 0x82212003, 0x8222204b, 0x82232003, 0x82242003, 0x82252003, 0x82262003, + 0x82282053, 0x82292003, 0x822a2003, 0x822b2003, 0x822c2003, 0x822d2003, 0x822e2003, 0x822f2003, 0x82302003, 0x82312003, 0x82322003, 0x82332003, + 0x823420b7, 0x82352003, 0x82362003, 0x82382003, 0x82392013, 0x823a2003, 0x823b2003, 0x823c2003, 0x823d2003, 0x823e2003, 0x823f2003, 0x82402003, + 0x82412003, 0x82422003, 0x82432003, 0x824420ab, 0x82452007, 0x82462003, 0x82472003, 0x82482003, 0x824a2003, 0x824b2003, 0x824c2003, 0x824d2003, + 0x824e2003, 0x824f2097, 0x82502003, 0x82512003, 0x82522003, 0x82532003, 0x82542003, 0x82572003, 0x82592003, 0x825a2023, 0x825b2003, 0x825c2003, + 0x825d2003, 0x825e2057, 0x825f2003, 0x82602003, 0x82612003, 0x82662003, 0x82672017, 0x82682003, 0x82692003, 0x826a2003, 0x826b2003, 0x826c2003, + 0x826d2003, 0x826e2003, 0x826f2003, 0xff702403, 0x82710491, 0x82722003, 0x82732003, 0x82742003, 0x82752003, 0x82762003, 0x82772003, 0x82782003, + 0x8279204b, 0x827a2003, 0xff7b2403, 0x827c0447, 0x827d2033, 0x827e2003, 0x827f200b, 0x82802007, 0x82812017, 0x82822007, 0x82832097, 0x82842007, + 0x82852003, 0x8286201b, 0x82872007, 0x82882003, 0x82892043, 0x828a201b, 0x828b200b, 0x828c2003, 0x828e200f, 0xff8f2403, 0x82900457, 0xff912807, + 0xff9204b0, 0x82930483, 0x8294201b, 0x8295200f, 0x8296203b, 0x8297200b, 0x82982003, 0x82992003, 0x829a203b, 0x829b2017, 0x829c2023, 0x829d201b, + 0x829e2013, 0x829f2003, 0x82a12003, 0x82a22003, 0x82a52003, 0x82a62003, 0x82a72003, 0x82a92003, 0x82aa2003, 0x82ac2003, 0x82ad2003, 0x82ae2003, + 0x82b2203f, 0x82b3203f, 0x82b5200b, 0x82b62003, 0x82b82003, 0x82b92003, 0x82bb2003, 0x82be2003, 0xffc22403, 0x82c704cf, 0x82ca2007, 0x82cb2003, + 0x82d82003, 0x82da2003, 0x82eb2003, 0x82ec2003, 0x82ed2003, 0x82ee2003, 0x82ef2003, 0x82f02003, 0x82f12003, 0x82f22003, 0x82f32003, 0x82f42003, + 0x82f52003, 0x82f62003, 0x82f72003, 0x82f82003, 0x82f92003, 0xfffa2803, 0x00150088, 0x53c4ff10, 0x3224082b, 0x3d00ecff, 0x270ea344, 0x00d8ff5a, + 0x00bfff5c, 0x44072753, 0xec2109a3, 0x05a34400, 0xb200ce22, 0x2f058b58, 0xc2ff8f04, 0xbeff9104, 0x59000300, 0x5a00f0ff, 0x5c204982, 0x04200782, + 0x2006c14f, 0x224782ec, 0x82ab00fb, 0x82042063, 0x00ec2275, 0x20798237, 0x200d82b1, 0x200382b2, 0x280d8201, 0x00110074, 0x003c0005, 0x2603820a, + 0x0064000c, 0x8232000d, 0x827e2039, 0x00ce222b, 0x24ab8211, 0x006e0022, 0x2017823f, 0x20038240, 0x205b825c, 0x20078260, 0x4b1782ab, 0x00210675, + 0x202f82b4, 0x830382b6, 0x86ec207d, 0x00ec227d, 0x223f8207, 0x8248009c, 0x82522063, 0x82a12003, 0x82b02003, 0x070d5003, 0x9b880720, 0xf1ff5924, + 0x19825b00, 0x07825c20, 0xecffab24, 0x0782d304, 0xb98f0520, 0x0b201584, 0x2e06a944, 0xfe1100ec, 0xff4400de, 0xffa000dc, 0x82ab00d8, 0x2ccd870b, + 0x001e00b4, 0x031e00b6, 0x000900d4, 0x207f8206, 0x22f982d8, 0x82b100f6, 0x82b22025, 0x00b42203, 0x201d8214, 0x22df8214, 0x844cff0f, 0x8211201d, + 0x05bf5007, 0x5200ee24, 0x4f84eeff, 0x0782a120, 0x1782ab20, 0x8782b020, 0x4f843986, 0x93820920, 0x3582ba20, 0xff217d82, 0x207d82ba, 0x222d82ec, + 0x82ab00ec, 0x847d860b, 0x820c2025, 0x00ce2221, 0x22cf8246, 0x82f6ff47, 0x00e822fd, 0x2407824a, 0x00e8ff52, 0x2013826f, 0x410782a1, 0xbb410505, + 0x20a78206, 0x20578213, 0x208d8642, 0x20578242, 0x213d82d8, 0x3d8500ee, 0x3d86ee20, 0x5400ee22, 0x6f204582, 0x0421a19d, 0x206182d5, 0x20a1840b, + 0x852d8246, 0x86f42041, 0x86f42041, 0x00f62641, 0x00f4ffa1, 0x06fd41b1, 0x5b041221, 0x032047a1, 0x200ccd54, 0x08715703, 0xfbffb224, 0x93840300, + 0x31087142, 0xf1ffd304, 0xcf040100, 0x0900d8ff, 0xf1ff0e04, 0x03826304, 0x03826420, 0x03826520, 0x03828d20, 0xe1ff9124, 0x1b829204, 0x03829b20, + 0x2b83af20, 0xffd4032d, 0x032c00f7, 0x04b0fffb, 0x82d8ff03, 0x04b02133, 0x4a05af5d, 0x3920255f, 0x3a203382, 0x3b200382, 0x3c200382, 0x3d200382, + 0x3e200382, 0x3f200382, 0x40200382, 0x41200382, 0x42200382, 0x63200382, 0x64205f82, 0x65200382, 0xc75d0382, 0x04b0220d, 0x2013827e, 0x20038280, + 0x20278283, 0x20078285, 0x2003828d, 0x200b8293, 0x20078295, 0x20078298, 0x2007829c, 0x220382af, 0x82a4ffcf, 0x04a425df, 0x00b0ffd5, 0x5d13075f, + 0x075f45a7, 0x00f62127, 0x28cb075f, 0xff2400cd, 0xff90009c, 0x063d489c, 0xfc03602a, 0xfd03b0ff, 0xfe0388ff, 0xff240782, 0x0004b0ff, 0x01240382, + 0x020488ff, 0x03200782, 0x04200382, 0x05200382, 0x06200382, 0x07200382, 0x08200382, 0x09240382, 0x0a04a7ff, 0x0b200782, 0x0c200782, 0x0d280782, + 0x0e049cff, 0x0f04d8ff, 0x12220b82, 0x5942e1ff, 0x27875306, 0x22048822, 0x23206f82, 0x24200382, 0x25200382, 0x26200382, 0x28204782, 0x29200382, + 0x2a200382, 0x2b200382, 0x2c200382, 0x2d200382, 0x2e200382, 0x2f200382, 0x30200382, 0x31200382, 0x33200382, 0x34202f82, 0x35200382, 0x36200382, + 0x38200382, 0x39201382, 0x3a200382, 0x3b200382, 0x3c200382, 0x3d200382, 0x3e200382, 0x3f200382, 0x40200382, 0x41200382, 0x42200382, 0x43200382, + 0x44200382, 0x45200382, 0x46200382, 0x47200382, 0x48200382, 0x4a200382, 0x4b200382, 0x4c200382, 0x4d200382, 0x4e200382, 0x4f20e782, 0x50200382, + 0x51200382, 0x52200382, 0x53200382, 0x54200382, 0x57200382, 0x59200382, 0x5a202382, 0x5b200382, 0x5c200382, 0x5d240382, 0x5e049cff, 0x5f200382, + 0x60200382, 0x61200382, 0x63240382, 0x6404d8ff, 0x65200382, 0x66200382, 0x67202382, 0x68200382, 0x69200382, 0x6a200382, 0x6b200382, 0x6c200382, + 0x6d200382, 0x6e200382, 0x6f200382, 0x22104143, 0x827c0460, 0x827d2013, 0x056f5303, 0x8004b022, 0x81200b82, 0x82200382, 0x83208382, 0x84200782, + 0x6f530382, 0x04b02205, 0x200b8287, 0x206b8288, 0x201b8289, 0x200b828a, 0x2003828b, 0x200f828c, 0x2803828d, 0x0488ff8f, 0x04e1ff90, 0x240b8291, + 0x0491ff92, 0x531b8293, 0xb022056b, 0x0b829704, 0x03829820, 0x37829920, 0x1b829b20, 0x22056753, 0x829e04b0, 0x829f2013, 0xffa02403, 0x82a10441, + 0x82a22007, 0xffa32803, 0xffa404cf, 0x82a504e3, 0x82a6200b, 0x82a72003, 0x82a82003, 0x82a9205b, 0x82aa2007, 0x82ab2003, 0x82ac200b, 0x82ad2007, + 0x82ae2003, 0x82af200b, 0x82b0206f, 0xffb12403, 0x82b20460, 0x82b3207f, 0x82b42017, 0x82b52043, 0x82b62007, 0x82b72003, 0x82b8201b, 0x82b92007, + 0x82ba2003, 0x82bb201f, 0x82bc2007, 0x82be2037, 0x82c02007, 0x82c1208f, 0x82c32007, 0x82c7200f, 0x82c82007, 0x82ca202b, 0x82cb2007, 0xffd12403, + 0x82d304bf, 0xffd42407, 0x82d504c4, 0x82d7201f, 0x82d8200b, 0x82d92003, 0x82da2067, 0x82eb2007, 0x82ec2003, 0x82ed2003, 0x82ee2003, 0x82ef2003, + 0x82f02003, 0x82f12003, 0x82f22003, 0x82f32003, 0x82f42003, 0x82f52003, 0x82f62003, 0x82f72003, 0x82f82003, 0x82f92003, 0xfffa2a03, 0x00e500b0, + 0x002eff0f, 0x2e038211, 0x009cff24, 0x006e0037, 0x00640039, 0x823c003a, 0x006e2a01, 0x00baff56, 0x00280057, 0x341b8290, 0x032effab, 0x03f2ffd4, + 0x0310fffb, 0x039efffc, 0x0376fffd, 0x240782fe, 0x049effff, 0x24038200, 0x0476ff01, 0x20078202, 0x20038203, 0x20038204, 0x20038205, 0x20038206, + 0x20038207, 0x20038208, 0x201f8209, 0x2007820a, 0x2007820b, 0x2407820c, 0x047aff0d, 0x20f9820e, 0x240b820f, 0x04abff10, 0x200b8211, 0x24958212, + 0x04cfff13, 0x24138214, 0x0410ff15, 0x20038216, 0x20038217, 0x20038218, 0x20038219, 0x2003821a, 0x2003821b, 0x2003821c, 0x2003821d, 0x2003821e, + 0x204f8221, 0x20038222, 0x20038223, 0x20038224, 0x20038225, 0x203f8226, 0x20038228, 0x20038229, 0x2003822a, 0x2003822b, 0x2003822c, 0x2003822d, + 0x2003822e, 0x2003822f, 0x20038230, 0x20038231, 0x202f8233, 0x20038234, 0x20038235, 0x20038236, 0x20138238, 0x20038239, 0x2003823a, 0x2003823b, + 0x2003823c, 0x2003823d, 0x2003823e, 0x2003823f, 0x20038240, 0x20038241, 0x20038242, 0x20038243, 0x20038244, 0x20038245, 0x20038246, 0x20038247, + 0x20038248, 0x2003824a, 0x2003824b, 0x2003824c, 0x2003824d, 0x2057824e, 0x2003824f, 0x20038250, 0x20038251, 0x20038252, 0x20038253, 0x20038254, + 0x20038257, 0x20238259, 0x2003825a, 0x2003825b, 0x2403825c, 0x047aff5d, 0x2003825e, 0x2003825f, 0x20038260, 0x24038261, 0x04a7ff63, 0x20038264, + 0x20038265, 0x20238266, 0x20038267, 0x20038268, 0x20038269, 0x2003826a, 0x2003826b, 0x2003826c, 0x2003826d, 0x2003826e, 0x2003826f, 0x202b8270, + 0x20038271, 0x20038272, 0x24038273, 0x04cfff74, 0x20038275, 0x20038276, 0x20038277, 0x20238278, 0x20038279, 0x2403827a, 0x0410ff7b, 0x2007827c, + 0x2003827d, 0x200b827e, 0x2007827f, 0x20038280, 0x20038281, 0x20a38282, 0x20078283, 0x20038284, 0x201b8285, 0x20078286, 0x24038287, 0x0460ff88, + 0x201b8289, 0x200b828a, 0x2003828b, 0x200f828c, 0x2067828d, 0x205b828e, 0x2427828f, 0x04b0ff90, 0x24138291, 0x0438ff92, 0x201f8293, 0x20178294, + 0x20178295, 0x200b8296, 0x20038297, 0x20038298, 0x203f8299, 0x2017829a, 0x2023829b, 0x201b829c, 0x2013829d, 0x2003829e, 0x2403829f, 0x0407ffa0, + 0x200782a1, 0x240382a2, 0x047fffa3, 0x200782a4, 0x200382a5, 0x200382a6, 0x240382a7, 0x0426ffa8, 0x200782a9, 0x240382aa, 0x0457ffab, 0x200782ac, + 0x200382ad, 0x205382ae, 0x288782af, 0x04bcffb0, 0x044effb1, 0x208782b2, 0x241782b3, 0x0494ffb4, 0x200782b5, 0x200382b6, 0x200382b7, 0x200382b8, + 0x200382b9, 0x202b82ba, 0x240782bb, 0x0444ffbc, 0x200782be, 0x244b82c0, 0x0488ffc1, 0x200382c3, 0x204382c6, 0x201382c7, 0x200782c8, 0x200782ca, + 0x200382cb, 0x204f82d1, 0x20d782d3, 0x201f82d4, 0x20b782d5, 0x203f82d7, 0x201782d8, 0x203782d9, 0x200782da, 0x200382eb, 0x200382ec, 0x200382ed, + 0x200382ee, 0x200382ef, 0x200382f0, 0x200382f1, 0x200382f2, 0x200382f3, 0x200382f4, 0x200382f5, 0x200382f6, 0x200382f7, 0x200382f8, 0x2e0382f9, + 0x009efffa, 0x00d40302, 0xffd50409, 0x10c000ec, 0x00030b0f, 0x05050a26, 0x06057fff, 0x07200382, 0x08200382, 0x09200382, 0x0a200382, 0x0b200382, + 0x0c200382, 0x0d200382, 0x0e2a0382, 0x2e007fff, 0x2eff3700, 0x03823900, 0x9cff3a2a, 0x2eff3c00, 0x2800fb03, 0x2006656a, 0x069553d8, 0x15047f22, + 0x16201382, 0x17200382, 0x18200382, 0x19200382, 0x1a200382, 0x1b200382, 0x1c200382, 0x1d200382, 0x1e200382, 0x2d690382, 0x0f5d530d, 0x75047f26, + 0x76047fff, 0x77200382, 0x7b200382, 0x7e202f82, 0x85200382, 0x8d240382, 0x8e0460ff, 0x91241382, 0x9404d8ff, 0x95200782, 0x9a201382, 0x9c200782, + 0xaf200782, 0xb02c1b82, 0xb404e1ff, 0xb70488ff, 0xc604b0ff, 0xc8240782, 0x2b00e1ff, 0x20ac4565, 0xc8816332, 0xd4030130, 0x01000900, 0xe1ffa304, + 0xd4030300, 0x2b51e1ff, 0x03152e08, 0x04c2fffb, 0x04d2ff04, 0x04f1ff12, 0x200b8215, 0x20038216, 0x20038217, 0x20038218, 0x20038219, 0x2003821a, + 0x2003821b, 0x2003821c, 0x2003821d, 0x2003821e, 0x202f8243, 0x2007827b, 0x2003827e, 0x20038285, 0x203b8290, 0x20078295, 0x2003829c, 0x05ab4eb2, + 0x00500023, 0x312010cf, 0xb7203c03, 0x2e06814c, 0xfffd0372, 0xfffe0338, 0xffff0372, 0x82000472, 0x82022003, 0xff032403, 0x82050461, 0x82062007, + 0x82072003, 0x82082003, 0xff092403, 0x820a0438, 0x820b2007, 0x820c2007, 0xff0e2807, 0xff120466, 0x82130480, 0x82142007, 0x29694c2f, 0x22043822, + 0x23204382, 0x24200382, 0x25200382, 0x26200382, 0x28204f82, 0x29200382, 0x2a200382, 0x2b200382, 0x2c200382, 0x2d200382, 0x2e200382, 0x2f200382, + 0x30200382, 0x31200382, 0x38200382, 0x39200382, 0x3a206f82, 0x3b200382, 0x3c200382, 0x3d200382, 0x3e200382, 0x3f200382, 0x40200382, 0x41200382, + 0x42200382, 0x44200382, 0x45202b82, 0x46200382, 0x47200382, 0x48200382, 0x4a200382, 0x4b200382, 0x4c200382, 0x4d200382, 0x4e200382, 0x4f207f82, + 0x50200382, 0x51200382, 0x52200382, 0x53200382, 0x54200382, 0x57200382, 0x59200382, 0x5a202382, 0x5b200382, 0x5c200382, 0x63200382, 0x6420ef82, + 0x65200382, 0x74200382, 0x75200382, 0x76200382, 0x77200382, 0x78200382, 0x79207382, 0x7a200382, 0x094c0382, 0x04722205, 0x4c33827d, 0x72220509, + 0x17828004, 0x0f828120, 0x57828220, 0x0b828320, 0x0b828420, 0x2205094c, 0x82870472, 0xff88240b, 0x8289043e, 0x828a201b, 0x828b200b, 0xff8c2403, + 0x828d045d, 0x828e2057, 0x828f2003, 0xff902417, 0x82910480, 0xff922413, 0x82930441, 0x8294203f, 0x05094c17, 0x97047222, 0x98202f82, 0x99201382, + 0x9a202782, 0x9b201782, 0x094c2382, 0x04722205, 0x201b829e, 0x2403829f, 0x0419ffa0, 0x200782a1, 0x200382a2, 0x242b82a3, 0x0454ffa4, 0x200b82a5, + 0x200382a6, 0x200382a7, 0x203b82a8, 0x200782a9, 0x200382aa, 0x200b82ab, 0x200782ac, 0x200382ad, 0x200b82ae, 0x205382af, 0x200382b0, 0x204382b1, + 0x208782b2, 0x241782b3, 0x0458ffb4, 0x200782b5, 0x200382b6, 0x200b82b7, 0x200782b8, 0x200382b9, 0x20a382ba, 0x200782bb, 0x208382bc, 0x200782be, + 0x200382c7, 0x203b82c8, 0x200782ca, 0x670382cb, 0xc92a054f, 0x7cffd304, 0x22ffd504, 0x2f82d704, 0x1782d820, 0x0b82d920, 0x0782da20, 0x0382eb20, + 0x0382ec20, 0x0382ed20, 0x0382ee20, 0x0382ef20, 0x0382f020, 0x0382f120, 0x0382f220, 0x0382f320, 0x0382f420, 0x0382f520, 0x0382f620, 0x0382f720, + 0x0382f820, 0x0382f920, 0x72fffa29, 0xfb031500, 0x7204d8ff, 0x7b20276b, 0x7e202b82, 0x85200382, 0x95200382, 0x9c200382, 0xa0240382, 0xa304e1ff, + 0xa8200382, 0xcf200382, 0xd1240f82, 0x0600f7ff, 0x2018e36c, 0x106f82b8, 0xdd02eb1f, 0x2f104220, 0x21080185, 0x2e100398, 0x205f0215, 0xe4136339, + 0xfb031226, 0x1504a1ff, 0x16200382, 0x17200382, 0x18200382, 0x19200382, 0x1a200382, 0x1b200382, 0x1c200382, 0x1d200382, 0x1e200382, 0x7b200382, + 0x7e200382, 0x85200382, 0x92240382, 0x9504e1ff, 0x9b200782, 0x9c2e0782, 0x0e00a1ff, 0xcfff0e04, 0xf7ff1204, 0x07826304, 0x03826420, 0x03826520, + 0x03828d20, 0x13829020, 0x0782af20, 0x0782b020, 0x0382b220, 0xfbffb428, 0xf2ffb704, 0x0b82c804, 0xe7ffcf24, 0x39820800, 0x3582d320, 0x6404d326, + 0x6504d3ff, 0x8d200382, 0xaf200382, 0x31830382, 0x00272582, 0xfffc0367, 0x82fe03b5, 0xffff2403, 0x820004b5, 0x82022003, 0x82052003, 0x82062003, + 0x82072003, 0x82082003, 0x820a2003, 0x820c2003, 0x82262003, 0x82282003, 0x82292003, 0x822a2003, 0x822b2003, 0x822c2003, 0x822d2003, 0x822e2003, + 0x822f2003, 0x82302003, 0x82312003, 0x82382003, 0x82442003, 0x82452003, 0x82462003, 0x82472003, 0x82482003, 0x824a2003, 0x824b2003, 0x824c2003, + 0x824d2003, 0x82592003, 0x825a2003, 0x825b2003, 0x825c2003, 0x827c2003, 0x827d2003, 0x827f2003, 0x82812003, 0x82842003, 0x82862003, 0x82872003, + 0x828a2003, 0x828b2003, 0x82962003, 0x82972003, 0x829d2003, 0x829e2003, 0x829f2003, 0xffa02403, 0x82a10460, 0x82a22007, 0xffa32803, 0xffa4049a, + 0x82a504b0, 0x82a6200b, 0x82a72003, 0x82a82003, 0x82a9201f, 0x82aa2007, 0x82ac2003, 0x82ad2003, 0xffb02803, 0xffb104f1, 0x82b30488, 0xffb4240b, + 0x82b504b9, 0x82b62007, 0xffb72403, 0x82b804f7, 0x82b92007, 0x82ba2003, 0x82bb200b, 0x82bc2007, 0x82be2027, 0x82c72007, 0x82c82003, 0x82ca2037, + 0x82cb2007, 0x077b5903, 0x97ffd528, 0xcfffd704, 0x1382d804, 0x2b82d920, 0x0782da20, 0x0382eb20, 0x0382ec20, 0x0382ed20, 0x0382ee20, 0x0382ef20, + 0x0382f020, 0x0382f120, 0x0382f220, 0x0382f320, 0x0382f420, 0x0382f520, 0x0382f620, 0x0382f720, 0x0382f820, 0x0382f920, 0xb5fffa2a, 0x0e040800, + 0x6304c2ff, 0x64200382, 0x65200382, 0x8d200382, 0xaf200382, 0xb1200382, 0xb4268182, 0x1b00ddff, 0x9f82fb03, 0x03820e20, 0xfbff1224, 0x07821504, + 0x03821620, 0x03821720, 0x03821820, 0x03821920, 0x03821a20, 0x03821b20, 0x03821c20, 0x03821d20, 0x03821e20, 0x03826320, 0x03826420, 0x03826520, + 0x03827b20, 0x03827e20, 0x03828520, 0x03828d20, 0x47829020, 0x07829520, 0x03829c20, 0x0382af20, 0x0f82b020, 0x0382b220, 0xfbffc824, 0x6d822700, + 0x9382fc20, 0x1004d726, 0x1104e4ff, 0x13220382, 0x7582e0ff, 0x1604fc26, 0x1704fcff, 0x18200382, 0x19200382, 0x1a200382, 0x1b200382, 0x1c200382, + 0x1d200382, 0x1e200382, 0x62220382, 0xcb82f9ff, 0x6404d726, 0x6504d7ff, 0x70200382, 0x71203f82, 0x72200382, 0x73200382, 0x74200382, 0x75204b82, + 0x76200382, 0x77200382, 0x7b200382, 0x7e203382, 0x85200382, 0x8d200382, 0x8e202f82, 0x94201382, 0x95200382, 0x9a200f82, 0x9c200782, 0xaf200782, + 0xb7201782, 0xba385782, 0x01000700, 0xecffd504, 0xfd034100, 0x0104daff, 0x0404c4ff, 0x09040a00, 0x0b200b82, 0x0d240382, 0x0f04f4ff, 0x10223382, + 0xb782f0ff, 0x1304f022, 0x1f240782, 0x20040e00, 0x21200382, 0x22201f82, 0x23200382, 0x24200382, 0x25200382, 0x0b6a0382, 0x8243200f, 0x824e204b, + 0x824f2017, 0x82502003, 0x82512003, 0x82522003, 0x82532003, 0x82542003, 0x82572003, 0x825d2003, 0x825e2063, 0x825f2003, 0x82602003, 0x82612003, + 0x82662003, 0x82672073, 0x82682003, 0x82692003, 0x826a2003, 0x826b2003, 0x826c2003, 0x826d2003, 0x826e2003, 0x826f2003, 0x82702003, 0x8271208f, + 0x82722003, 0x82732003, 0x82742003, 0x82752003, 0x82762003, 0x82772003, 0x82822003, 0x8289205f, 0x828e2003, 0xff8f240b, 0x829104ef, 0x009224f3, + 0x82940407, 0x8299200f, 0x829a2017, 0x829b2007, 0x82ae200f, 0x00ba240b, 0x7e2b000a, 0x0436ac9d, 0xc2ff0500, 0xc2ff0a00, 0xf1ff3201, 0xf1ff1a02, + 0x08000100, 0x058288ff, 0xf7ff1a2a, 0x11000200, 0xab0069ff, 0x01260382, 0xb9ffec03, 0x2d825b00, 0x2d82b020, 0x1000b026, 0x8c00d8ff, 0xa9222782, + 0xa163b0ff, 0x82b32008, 0x82b4200b, 0x82b52003, 0x82b62003, 0xffbd2c03, 0xff3802b0, 0xfffd03d8, 0x820104ec, 0x00042403, 0x82090420, 0x820b2007, + 0x000d2703, 0xff0e0404, 0x194204a4, 0x04dd2e05, 0x04eaff11, 0x04d0ff13, 0x0407001f, 0x20038220, 0x20238221, 0x20038222, 0x20038223, 0x20038224, + 0x20038225, 0x20038233, 0x20038234, 0x20038235, 0x20038236, 0x204f8243, 0x2007824e, 0x2003824f, 0x20038250, 0x20038251, 0x20038252, 0x20038253, + 0x20038254, 0x20038257, 0x2067825d, 0x2003825e, 0x2003825f, 0x20038260, 0x24038261, 0x04a8ff62, 0x187b8263, 0x42070540, 0xea222929, 0xa7827104, + 0x03827220, 0x03827320, 0xaf827420, 0x03827520, 0x03827620, 0x03827720, 0x6f828220, 0x03828920, 0x5b828d20, 0x0f828e20, 0xe0ff8f27, 0xabff9104, + 0x052d4204, 0x9904d022, 0x9a201b82, 0x9b201782, 0xa020df82, 0xa4200382, 0xa8240382, 0xae040e00, 0xaf201782, 0xb03a3382, 0xb404f9ff, 0xb704c4ff, + 0xc804b6ff, 0x3b00f9ff, 0x2800b300, 0x2800b500, 0x2982fb03, 0x29820420, 0x07820d20, 0x03820e20, 0x03821020, 0x03821220, 0xcd821320, 0x07821420, + 0x03821520, 0x03821620, 0x03821720, 0x03821820, 0x03821920, 0x03821a20, 0x03821b20, 0x03821c20, 0x03821d20, 0x03821e20, 0x20075d41, 0x204b8243, + 0x200f825d, 0x2003825e, 0x2003825f, 0x20038260, 0x20038261, 0x20038262, 0x20038263, 0x20038264, 0x20038265, 0x205f8274, 0x20038275, 0x20038276, + 0x20038277, 0x20138278, 0x20038279, 0x2003827a, 0x2003827b, 0x2003827e, 0x20038280, 0x20038285, 0x2003828d, 0x2423828e, 0x04f4ff8f, 0x200b8290, + 0x200b8294, 0x20078295, 0x2007829a, 0x21f1889c, 0xf183040e, 0x0f82af20, 0x0382b220, 0x0382b420, 0x8b82ba20, 0x0e00bc36, 0xb3003100, 0xb500ecff, + 0xfb03ecff, 0x0e04ecff, 0x1004deff, 0x11200782, 0x12240382, 0x1304daff, 0x14240382, 0x1504d7ff, 0x16200f82, 0x17200382, 0x18200382, 0x19200382, + 0x1a200382, 0x1b200382, 0x1c200382, 0x1d200382, 0x1e200382, 0x1f240382, 0x2004f9ff, 0x62200382, 0x63203382, 0x64204b82, 0x65200382, 0xc7700382, + 0x04da2211, 0x205b8275, 0x20038276, 0x20038277, 0x202f8278, 0x20038279, 0x2003827a, 0x2047827b, 0x2003827e, 0x200b8280, 0x20078285, 0x203f828d, + 0x2023828e, 0x20038290, 0x20038294, 0x20138295, 0x2007829a, 0x2007829c, 0x2e1b82af, 0x00daffb2, 0x00b30004, 0x00b40028, 0x82b50009, 0x82b62007, + 0x00422607, 0x0060ff11, 0x850382ab, 0x86282019, 0x82282019, 0x03b426e7, 0x04f4fffd, 0x20038201, 0x20038209, 0x2a03820b, 0x0404000d, 0x0419000e, + 0x82fcff14, 0x04b426eb, 0x04b4ff16, 0x20038217, 0x20038218, 0x20038219, 0x2003821a, 0x2003821b, 0x2003821c, 0x2003821d, 0x2203821e, 0x82a8ff1f, + 0x04a822eb, 0x203f8221, 0x20038222, 0x20038223, 0x20038224, 0x20038225, 0x20038233, 0x20038234, 0x20038235, 0x20038236, 0x2003824e, 0x2003824f, + 0x20038250, 0x20038251, 0x20038252, 0x20038253, 0x20038254, 0x43038257, 0x6320132f, 0x64208f82, 0x65200382, 0x78200382, 0x79209782, 0x7a200382, + 0x7b200382, 0x7e207b82, 0x80200382, 0x82200b82, 0x85203b82, 0x89200b82, 0x8d200782, 0x95202782, 0x99200b82, 0x9c200b82, 0xae200782, 0xaf2a0782, + 0x0d001900, 0x07000404, 0x03820d04, 0x31821120, 0x07824320, 0x20138342, 0x201b8270, 0x20038271, 0x30038272, 0x00fcff73, 0xffa90006, 0xffbd00d8, + 0xff8f04d8, 0x057d45f6, 0x04f9ff31, 0x00f9ff9b, 0xfffb0315, 0xff0404e0, 0x821504e7, 0x82162007, 0x82172003, 0x82182003, 0x82192003, 0x821a2003, + 0x821b2003, 0x821c2003, 0x821d2003, 0x821e2003, 0x07154203, 0x33824320, 0x0f827b20, 0x03827e20, 0x03828520, 0x03829520, 0x03829c20, 0x5582a020, + 0x1000722a, 0x460088ff, 0x5200f2ff, 0x56240382, 0x5c00fbff, 0x6f200382, 0x79200b82, 0x7a200382, 0x7b200382, 0x7c200382, 0x7d200382, 0xa1200382, + 0xa9200382, 0xb0202f82, 0x43180782, 0x002308df, 0x82b6000e, 0x82b92003, 0x82bd2037, 0xffc2241b, 0x82e300b0, 0x82ea200b, 0x82fa2003, 0x82fc2003, + 0xfffe282b, 0xff1e01f2, 0x823101fb, 0x82472007, 0x826e2003, 0x82702003, 0x82742003, 0x82822013, 0x82892003, 0x8292200b, 0x82ce2007, 0x82d02007, + 0xffd72403, 0x821602f2, 0x82192003, 0xff1b2803, 0xff1c02fb, 0x821f02f7, 0x82272003, 0x822b2003, 0x822c2013, 0x82342013, 0xff382603, 0xff8a0388, + 0xe28947fb, 0x9104b424, 0x5b45caff, 0x04f02106, 0x28118947, 0x00470007, 0x0060ff05, 0x2003820a, 0x20038210, 0x200382a9, 0x06a97eb1, 0xad7eb320, + 0x7eb52006, 0x002905b1, 0x0260ffbd, 0x0360ff38, 0x205182fd, 0x24038201, 0x04230004, 0x20078209, 0x2403820b, 0x045aff0e, 0x2c07820f, 0x048cff10, + 0x04a4ff11, 0x046fff13, 0x200f8221, 0x20038222, 0x20038223, 0x20038224, 0x20038225, 0x20038233, 0x20038234, 0x20038235, 0x20038236, 0x20438243, + 0x2007824e, 0x2003824f, 0x20038250, 0x20038251, 0x20038252, 0x20038253, 0x20038254, 0x20038257, 0x205b8262, 0x20038263, 0x20038264, 0x20038265, + 0x20138266, 0x20038267, 0x20038268, 0x20038269, 0x2003826a, 0x2003826b, 0x2003826c, 0x2003826d, 0x2003826e, 0x2003826f, 0x20878270, 0x20038271, + 0x20038272, 0x20038273, 0x20938274, 0x20038275, 0x24038276, 0x046fff77, 0x20238282, 0x20038289, 0x2053828d, 0x200f828e, 0x20038294, 0x200f8299, + 0x2007829a, 0x2c0782ae, 0x005affaf, 0xffb3003a, 0xffb500d8, 0x066f45d8, 0x6f45d720, 0x4ada2046, 0xec200e69, 0x450e3776, 0x8c23296f, 0x4a04d2ff, + 0xda29057d, 0xdaff9004, 0xfcff9104, 0x0f774504, 0xe0ffa024, 0x0382a304, 0xd7ffaf28, 0xecffb004, 0x2782b204, 0xf6ffb728, 0xe7ffbc04, 0x0f82c804, + 0xecffd728, 0x0f003c00, 0x854538ff, 0x26ed8207, 0xff0404bd, 0x820e04dd, 0x82112021, 0x82122051, 0xff132425, 0x821404f9, 0xff15240f, 0x821604bd, + 0x82172003, 0x82182003, 0x82192003, 0x821a2003, 0x821b2003, 0x821c2003, 0x821d2003, 0x821e2003, 0xff1f2403, 0x822004a1, 0x82432003, 0x82632047, + 0x82642037, 0x82652003, 0x0ebb4403, 0x82740421, 0x82752057, 0x82762003, 0x82772003, 0x0df77303, 0x7e04bd22, 0x80204b82, 0x85203782, 0x8c200782, + 0x8d200782, 0x8e200382, 0x90202782, 0x94209382, 0x95200782, 0x9a201782, 0x9c200782, 0xa0220782, 0xe982b4ff, 0xa804ec26, 0xaf04c0ff, 0xb0202782, + 0xb220bb82, 0xba222782, 0xed820700, 0xed82ec20, 0xd704fc22, 0xd9202b82, 0x4426f182, 0xd8ffa900, 0x0982b300, 0xe1ffb424, 0x0782b500, 0x0782b620, + 0xd8ffbd30, 0xe4fffd03, 0xd2ff0104, 0x26000404, 0x0b820904, 0x03820b20, 0xbeff0e24, 0x07820f04, 0xd7ff1028, 0xe0ff1104, 0x51821204, 0xc8ff1324, + 0x13822104, 0x03822220, 0x03822320, 0x03822420, 0x03822520, 0x3b823320, 0x03823420, 0x03823520, 0x03823620, 0x47824320, 0x17824e20, 0x03824f20, + 0x03825020, 0x03825120, 0x03825220, 0x03825320, 0x03825420, 0x03825720, 0xcaff6224, 0x63826304, 0x03826420, 0x03826520, 0x13826620, 0x03826720, + 0x03826820, 0x03826920, 0x03826a20, 0x03826b20, 0x03826c20, 0x03826d20, 0x03826e20, 0x03826f20, 0x8b827020, 0x03827120, 0x03827220, 0x03827320, + 0x93827420, 0x03827520, 0x03827620, 0x03827720, 0x23828220, 0x03828920, 0x53828d20, 0x0f828e20, 0xb7829020, 0x07829420, 0x13829920, 0x07829a20, + 0x0782ae20, 0x1b82af20, 0x0700b228, 0x0d041a00, 0xdd82f4ff, 0x1204fc29, 0x1304f0ff, 0x4c04deff, 0xbf411333, 0x04de2211, 0x202b8275, 0x20038276, + 0x20038277, 0x2003828e, 0x203f8290, 0x20078294, 0x2003829a, 0x415382a3, 0xf0340587, 0x0a00ba04, 0xfcffc804, 0x0f004d00, 0x100060ff, 0x1100a4ff, + 0xa9240782, 0xab00b0ff, 0xb1200782, 0xb2200f82, 0x03480382, 0x4b00200e, 0xa42a0523, 0xa4fffb03, 0xd7fffd03, 0x03820104, 0xf9ff0424, 0x07820904, + 0x03820b20, 0x92ff0e24, 0x0f821404, 0xa4ff1524, 0x03821604, 0x03821720, 0x03821820, 0x03821920, 0x03821a20, 0x03821b20, 0x03821c20, 0x03821d20, + 0x03821e20, 0x8eff1f24, 0x03822004, 0x3b822120, 0x03822220, 0x03822320, 0x03822420, 0x03822520, 0x03823320, 0x03823420, 0x03823520, 0x03823620, + 0x57824320, 0x07824e20, 0x03824f20, 0x03825020, 0x03825120, 0x03825220, 0x03825320, 0x03825420, 0x03825720, 0x7f826220, 0x03826320, 0x03826420, + 0x03826520, 0x33827820, 0x03827920, 0x03827a20, 0x6f827b20, 0x03827e20, 0x0b828020, 0x2b828220, 0x0b828520, 0x07828920, 0x27828d20, 0xcaff8f28, + 0xdeff9204, 0x13829504, 0x13829920, 0x0b829b20, 0x0b829c20, 0x0382a020, 0xabffa824, 0x1382ae04, 0x2782af20, 0xbeffbc2c, 0xd2ffd904, 0xfb031000, + 0xc747e0ff, 0x12bb4728, 0x003a002b, 0x0060ff0f, 0x00b0ff11, 0x240382ab, 0x005000b3, 0x200382b4, 0x260382b5, 0x035000b6, 0x4cddfffb, 0x69820987, + 0xecff0924, 0x03820b04, 0x26056749, 0xff1604dd, 0x821704dd, 0x82182003, 0x82192003, 0x821a2003, 0x821b2003, 0x821c2003, 0x821d2003, 0x821e2003, + 0xff1f2403, 0x822004bd, 0x249b4c03, 0x9b4c6382, 0x0062231f, 0x4f490407, 0x04dd220d, 0x2467827e, 0x04fcff80, 0x209b8282, 0x200b8285, 0x20078289, + 0x20078295, 0x20078299, 0x2407829c, 0x00ecffae, 0x20e98239, 0x20e98a88, 0x21e98628, 0xe9850028, 0xe98aea20, 0x714dec20, 0x20e98508, 0x20e982ea, + 0x26e982ea, 0xff1804ea, 0x821904ea, 0x821a2003, 0x821b2003, 0x821c2003, 0x821d2003, 0x821e2003, 0xff1f2203, 0x21e982d0, 0xe9a504d0, 0x9f04ec21, + 0x20e58de9, 0x21e582ea, 0xe58904ea, 0x8504ea21, 0x04ea21e5, 0xea21e585, 0x26e58304, 0xff100033, 0x82b100b0, 0x82b22003, 0x00b32203, 0x22e58231, + 0x82b50031, 0x00b62607, 0xff380231, 0x06e348b0, 0x6d50da20, 0x4ee98310, 0xda210947, 0x11615004, 0x3404da26, 0x3504daff, 0x36200382, 0x61500382, + 0x85d58b37, 0x82da20cd, 0x04da28c9, 0x04d0ff8f, 0x82e4ff91, 0x82da20cd, 0x04da28c9, 0x000700bc, 0x820f0050, 0xff1028c5, 0xff1100d8, 0x82ab0088, + 0x72b12003, 0xa94206d7, 0x21d98305, 0xd9850050, 0xfb03d824, 0xdd89d0ff, 0x51e0ff21, 0x13220c4b, 0x1d4c0400, 0x04d02206, 0x20698216, 0x20038217, + 0x20038218, 0x20038219, 0x2003821a, 0x2003821b, 0x2003821c, 0x2003821d, 0x2403821e, 0x049eff1f, 0x51038220, 0x0941156b, 0x516b820e, 0x6220336b, + 0x4c132b4e, 0xd0220c29, 0x8b827e04, 0x20072541, 0x230b8285, 0x04daff89, 0x22052f4e, 0x829204c0, 0x82942077, 0x829520d7, 0x82992017, 0x829a2017, + 0x829b200b, 0x829c2013, 0x82ae200f, 0xffbc290f, 0x002800d2, 0x00b0ff10, 0x22056f50, 0x50b200b0, 0xb020085f, 0x45083745, 0x14230733, 0x4404f4ff, + 0xfb4423ff, 0x8278201f, 0x82792047, 0x827a2003, 0x82802003, 0xff822403, 0x828904d7, 0xff8f2603, 0xff9104d2, 0x21b582e7, 0xdb4404e7, 0x04e72605, + 0x00d7ffae, 0x26898230, 0xff0104f9, 0x820904f9, 0x820b2003, 0x05ab4f03, 0x11040e22, 0x2008af4f, 0x2299820e, 0x822204f9, 0x8223201b, 0x82242003, + 0x82252003, 0x82332003, 0x82342003, 0x82352003, 0x82362003, 0x824e2003, 0x824f2003, 0x82502003, 0x82512003, 0x82522003, 0x82532003, 0x82542003, + 0x82572003, 0x0ba34f03, 0x5b827020, 0x03827120, 0x03827220, 0x03827320, 0x0e007424, 0x03827504, 0x03827620, 0x03827720, 0x2f828220, 0x03828920, + 0x20059f4f, 0x069b4f0e, 0xb9820e20, 0x9a04f922, 0xae201f82, 0x8f4f1b82, 0x46002706, 0xe1ff0500, 0x03820a00, 0x23084745, 0xb400d8ff, 0x2905274a, + 0xd8ffb600, 0xd6fffb03, 0xfb820304, 0xdeff0434, 0xbeff0e04, 0xe6ff1004, 0xeaff1104, 0xcdff1204, 0x1b821304, 0xceff1424, 0x07821504, 0x03821620, + 0x03821720, 0x03821820, 0x03821920, 0x03821a20, 0x03821b20, 0x03821c20, 0x03821d20, 0x03821e20, 0x03821f20, 0x03822020, 0x29174118, 0x4748de20, + 0x8270200c, 0x0d8f5177, 0x7504d622, 0x76204f82, 0x77200382, 0x78200382, 0x79208b82, 0x7a200382, 0x7b200382, 0x7e200f82, 0x80200382, 0x83200b82, + 0x8520bf82, 0x37480b82, 0x04d62205, 0x20bb8290, 0x20138293, 0x20138294, 0x20038295, 0x200b8298, 0x2007829a, 0x2003829c, 0x24e382af, 0x00cdffb2, + 0x22f9823a, 0x82fd03a8, 0x820120f5, 0x05a14703, 0x0b04da2e, 0x0e04daff, 0x100492ff, 0x13040700, 0x15240382, 0x1604a8ff, 0x17200382, 0x18200382, + 0x19200382, 0x1a200382, 0x1b200382, 0x1c200382, 0x1d200382, 0x1e200382, 0x21200382, 0x22204382, 0x23200382, 0x24200382, 0x25200382, 0x33200382, + 0x34200382, 0x35200382, 0x36200382, 0x9d470382, 0x04da2105, 0x471bf754, 0x74200b99, 0x75207f82, 0x76200382, 0x77200382, 0x7b200382, 0x7e206782, + 0x82200382, 0x8520a382, 0x89200782, 0x8d200782, 0x8e20ab82, 0x94201b82, 0x95200382, 0x6b431382, 0x04072205, 0x200b829c, 0x2a7382ae, 0x0092ffaf, + 0x00050035, 0x820a001f, 0x05994403, 0x47003e21, 0x3e260543, 0x84fffb03, 0x4582fd03, 0xd2ff0422, 0x22089144, 0x8284ff15, 0x048422f1, 0x20078217, + 0x20038218, 0x20038219, 0x2003821a, 0x2003821b, 0x2003821c, 0x2003821d, 0x4403821e, 0x4320137d, 0x6d444782, 0x827b201f, 0x827e203b, 0x20c58503, + 0x065f4584, 0x9204c426, 0x9504d7ff, 0xc1831782, 0x0b829b20, 0x0b829c20, 0x98ffa02a, 0xf9ffa304, 0x9effa804, 0x21057745, 0x114bd0ff, 0x00d72206, + 0x22b18210, 0x840b04d2, 0x04d22271, 0x2007824f, 0x20038250, 0x20038251, 0x20038252, 0x20038253, 0x20038254, 0x20038257, 0x20038282, 0x22038289, + 0x43c2ff8f, 0xd22c06e1, 0xe7ff9b04, 0x8c004700, 0xb300b0ff, 0x24100f43, 0xff0304dd, 0x06514cf6, 0x0743ca20, 0x04c02706, 0x04caff14, 0x5748ff15, + 0x82392025, 0x823a203f, 0x823b2003, 0x823c2003, 0x823d2003, 0x823e2003, 0x823f2003, 0x82402003, 0x82412003, 0x82422003, 0x82432003, 0x8263204f, + 0x82642057, 0x82652003, 0xff742403, 0x827504c0, 0x82762003, 0x82772003, 0x82782003, 0x82792013, 0x827a2003, 0x827b2003, 0x827e202b, 0x82802003, + 0x8283200b, 0x8285203b, 0xff8c240b, 0x828d04be, 0x828e200f, 0xff90282b, 0xff9104cd, 0x829304fc, 0x8294201b, 0x8295200f, 0x8298201f, 0x829a200b, + 0x829c200b, 0xffa0240b, 0x82a304d0, 0xffa4282b, 0xffa804e7, 0x82af04e0, 0x82b0200b, 0x82b22007, 0x82b72037, 0xffbc241f, 0x82c804f9, 0x82d7200f, + 0xffd93203, 0x002a00f9, 0x00d8ffc3, 0x03d8ffc4, 0x04abfffb, 0x20598209, 0x2203820b, 0x4de4ff12, 0xab220657, 0x17821604, 0x03821720, 0x03821820, + 0x03821920, 0x03821a20, 0x03821b20, 0x03821c20, 0x03821d20, 0x03821e20, 0x33824e20, 0x03824f20, 0x03825020, 0x03825120, 0x03825220, 0x03825320, + 0x03825420, 0x03825720, 0x220d3f4d, 0x827e04ab, 0x82802033, 0x828220a1, 0x8285201b, 0x8289200b, 0x828f2007, 0x82902003, 0x82922077, 0x82952003, + 0x82992013, 0x829b200f, 0x829c200b, 0xffb2320b, 0x002800e4, 0x03b0ff8c, 0x040700fb, 0x04deff0e, 0x20bf8213, 0x55418214, 0x4b542741, 0x0f35590b, + 0x5f829d8c, 0x03827e20, 0x85209d83, 0xdd4d0782, 0x04de2205, 0x206f828e, 0x248d8291, 0x040a0092, 0x200b8294, 0x201b8295, 0x2007829a, 0x200f829b, + 0x2d0b829c, 0x00deffaf, 0xffb3000a, 0xffb400b0, 0x495700cf, 0x82cf2005, 0x04ca21a9, 0x280bf941, 0x04caff8d, 0x00caffaf, 0x08c34f20, 0xe582fd20, + 0x20077541, 0x205f820e, 0x200f8221, 0x20038222, 0x20038223, 0x20038224, 0x41038225, 0x63201f5d, 0x64203782, 0x65200382, 0x82200382, 0x89202f82, + 0x8d200382, 0x8f240b82, 0x9904f0ff, 0xae200b82, 0xaf200382, 0xb4250f82, 0xb704e6ff, 0x05d748ff, 0x10006f28, 0x2300a4ff, 0x3153e1ff, 0x828c2028, + 0x0535532b, 0xb000a425, 0x4d00f2ff, 0x2d530719, 0x00a42405, 0x53c2ffc2, 0xa4206a2d, 0x21062d53, 0xb75a04e0, 0x04072605, 0x04e0ff09, 0x5a03820b, + 0xe02219b3, 0x1f822204, 0x03822320, 0x03822420, 0x03822520, 0x2211b35a, 0x824e0407, 0x824f2017, 0x82502003, 0x82512003, 0x82522003, 0x82532003, + 0x82542003, 0x82572003, 0x29755803, 0x5a04f021, 0xe0221d9f, 0x4f828904, 0x20059f5a, 0x0e9f5aca, 0x5a04e021, 0xe034099f, 0xf4ffb004, 0xe7ffb404, + 0x0700ba04, 0xf4ffc804, 0x0e040600, 0xc1500d82, 0x828d200b, 0xffaf2a0f, 0x002500e7, 0x00a4ff05, 0x5303820a, 0x8821052b, 0x052b5300, 0xfb038824, + 0x3582fcff, 0x12048e22, 0x242a7f5c, 0x048eff63, 0x20038264, 0x5c038265, 0x8e220d5b, 0x47829004, 0x53829520, 0x03829c20, 0x2005c951, 0x22a7828e, + 0x82b204e0, 0xffb42617, 0xffb704da, 0x06694490, 0x2100ec2a, 0x38ffb300, 0x60ffb400, 0x38258d82, 0x60ffb600, 0x0df74203, 0x4204ef21, 0xef2035f7, + 0xef259d82, 0xefff6504, 0x09f74204, 0x8f04ef22, 0xf7429182, 0x82ef2009, 0x82f92095, 0x00f93889, 0xff0900e1, 0xff1000f7, 0xff2300aa, 0xff2600dd, + 0xff2a00e7, 0x823200b0, 0x82342007, 0xff382803, 0xff3900d8, 0x823a00ec, 0x823c2003, 0x003f2403, 0x8246003e, 0x82472013, 0x82482003, 0x824a2003, + 0x82522003, 0x82542003, 0xff572803, 0xff5800fb, 0x825900d3, 0xff5a243f, 0x825c00c4, 0x82642007, 0x82672043, 0x82682003, 0x826f201f, 0x82702003, + 0x82712003, 0x82722003, 0x82732003, 0x82792003, 0x827a2003, 0x827b2003, 0x827c2003, 0x827d2003, 0x827e2003, 0x827f2043, 0x82802003, 0x82812003, + 0x828a2003, 0x828b2013, 0xff8c2803, 0x009000e1, 0x82910012, 0x009f244f, 0x82a10009, 0xffa92413, 0x82ae00a4, 0x82af200f, 0x82b02003, 0x82b1200f, + 0x82b220c7, 0x82b92003, 0x82ba207b, 0x82bd20af, 0xffc2241f, 0x82cf009f, 0x82d0201f, 0x82d12003, 0x82d22003, 0x82d32027, 0x82d42003, 0x82e82003, + 0x82e9200f, 0x82ea2027, 0x82f6202f, 0x82f72003, 0x82fb2013, 0x82fc2013, 0x82fd2007, 0x82fe2007, 0xffff2407, 0x820701d8, 0x820a2003, 0x820c2003, + 0xff222403, 0x822301fb, 0xff242c07, 0xff2c01d3, 0xff2d01e7, 0x822e01b9, 0xff2f240f, 0x823001e1, 0x82312003, 0xff32240b, 0x824601c2, 0x8247201b, + 0x824b200b, 0x824d2003, 0xff502403, 0x825101b0, 0x826d2007, 0x826e2017, 0x826f2007, 0x82702007, 0x82762007, 0x8277204f, 0x82782007, 0x8279204f, + 0x827a2007, 0x827b2007, 0x827c2007, 0x827d2007, 0x827e2007, 0xff7f2807, 0xff8001ec, 0x828101c4, 0x82822007, 0x00862447, 0x82880112, 0x8289203f, + 0x828b201f, 0x828c2013, 0x828d201b, 0x828e2007, 0x828f2007, 0x82902007, 0x82912007, 0x82922007, 0x00a6242b, 0x82b30125, 0x82b8202b, 0xffba280f, + 0x00bb01f7, 0x82bd0109, 0x82be200b, 0x82bf203b, 0x82c220af, 0x82c4205f, 0x82c52027, 0x82c7200b, 0x82cc2003, 0x82ce200b, 0x82d0201b, 0x82d12003, + 0x82d3201b, 0x82d62003, 0x82d72003, 0x82d8200f, 0xffdd2407, 0x82f601e7, 0x82f92003, 0x82fc2003, 0xffff30fb, 0x000502f1, 0xff090209, 0xff0d02e1, + 0x821602d8, 0x82192003, 0xff1a2c03, 0xff1b02c2, 0xff1f02b0, 0x822202ee, 0x8228201b, 0x822b2013, 0x82342003, 0xff382613, 0xff8c03aa, 0x2d2710fb, + 0x6f240801, 0xc2ff1000, 0x26067946, 0xff4800ec, 0x825200f1, 0xff6f2403, 0x827000ec, 0x82712007, 0x82722003, 0x82732003, 0x82792003, 0x827a2003, + 0x827b2003, 0x827c2003, 0x827d2003, 0x05854603, 0xa900f126, 0xb000a4ff, 0xb1200f82, 0xb2204b82, 0xfd420382, 0x00c22205, 0x284782fc, 0x01ecfffe, + 0x01f1ff0a, 0x2003820c, 0x20038231, 0x200f8247, 0x2007824b, 0x2003824d, 0x2003826e, 0x20038270, 0x20038289, 0x200382ce, 0x241b82d0, 0x02f1ffd7, + 0x2003820d, 0x24038216, 0x02ecff19, 0x2007821c, 0x06a3591f, 0x0b822820, 0x03822b20, 0xc2ff3822, 0x61e29b59, 0x6a242125, 0xc2ff1000, 0x223a3348, + 0x82b200c2, 0x7533483f, 0x3348c220, 0x04ec2406, 0x53c4ff01, 0x2f48085f, 0x04ec2119, 0x2111c960, 0x4c1804c4, 0x3f530bef, 0x492b481f, 0x8904ec25, + 0x4804ecff, 0xec20152b, 0x2a0a2b48, 0xffb404ec, 0x00ba04f4, 0x54280007, 0xd836066d, 0xf7ff1200, 0xe1ff1d00, 0xd8ff2400, 0xe1ff2d00, 0xfbff5b00, + 0x03825d00, 0x0f826220, 0x03826320, 0x1f829020, 0x0782ab20, 0x0382ac20, 0x0382ad20, 0x0382c620, 0x0382c820, 0xfbffe528, 0xd8ff0201, 0x03820401, + 0x0b822820, 0x07824420, 0xe1ff6224, 0x07828401, 0xf7ff8624, 0x0782a701, 0x0382a920, 0x0382af20, 0x1f82d220, 0x1b82e120, 0x0b82e820, 0xf7ffec24, + 0x03821302, 0xfbff1d26, 0xfbff2702, 0x3c18236f, 0x00ea0401, 0x04010059, 0x004300fa, 0xffbb0001, 0x0002007f, 0x00040084, 0x00000005, 0x2801820a, + 0x000f0002, 0x00030011, 0x2401821d, 0x00240006, 0x3ed58227, 0x00290029, 0x002c000b, 0x000c002f, 0x003d0032, 0x00440010, 0x001c0046, 0x00490048, + 0x824b001f, 0x00212201, 0x2801824e, 0x00500022, 0x00230053, 0x22018255, 0x82570027, 0x82282001, 0x825d206b, 0x00622c3d, 0x002e0064, 0x00680067, + 0x826f0031, 0x00332e01, 0x007d0079, 0x008a0034, 0x0039008b, 0x22018291, 0x829f003b, 0x003c2401, 0x82a200a1, 0x00aa2861, 0x003f00ae, 0x82b600b1, + 0x00b92669, 0x004a00bb, 0x240182be, 0x00c3004d, 0x226782c4, 0x82c600c6, 0x00c83269, 0x005100c8, 0x00d400cb, 0x00e00052, 0x005c00e2, 0x080182e4, + 0xe9005fa3, 0x6000ec00, 0xf900f800, 0x02016400, 0x66000201, 0x04010401, 0x07016700, 0x68000701, 0x0d010d01, 0x10016900, 0x6a001001, 0x1a011a01, + 0x1c016b00, 0x6c001d01, 0x21012101, 0x23016e00, 0x6f002301, 0x27012701, 0x2b017000, 0x71002d01, 0x38013801, 0x44017400, 0x75004401, 0x5a015a01, + 0x5c017600, 0x77005c01, 0x5e015e01, 0x60017800, 0x79006001, 0x62016201, 0x6d017a00, 0x7b007001, 0x73017301, 0x77017f00, 0x80007701, 0x79017901, + 0x7b018100, 0x82007b01, 0x7d017d01, 0x7f018300, 0x84008201, 0x09018201, 0x018800b1, 0x00890188, 0x018b0189, 0x018b0092, 0x009f019f, 0x01a20193, + 0x019400a5, 0x00a701a7, 0x01a90198, 0x019900a9, 0x00ab01ab, 0x01ad019a, 0x019b00af, 0x00b301b3, 0x01b5019e, 0x019f00b5, 0x00bd01b7, 0x01c401a0, + 0x01a700c4, 0x00cc01cc, 0x01ce01a8, 0x01a900cf, 0x00d201d2, 0x01d701ab, 0x01ac00d7, 0x00dc01db, 0x01de01ad, 0x01af00e6, 0x00e801e8, 0x01eb01b8, + 0x01b900ec, 0x00ef01ee, 0x01f201bb, 0x01bd00f2, 0x00f601f6, 0x01f801be, 0x01bf00f8, 0x00fe01fa, 0x020102c0, 0x02c50002, 0x00060204, 0x020a02c7, + 0x02ca000b, 0x000e020e, 0x021202cc, 0x02cd0012, 0x00160216, 0x021802ce, 0x02cf0018, 0x001b021b, 0x021d02d0, 0x02d1001d, 0x00260225, 0x022a02d2, + 0x02d4002a, 0x00340233, 0x023602d5, 0x03d70038, 0x00890389, 0x038b03da, 0x03db008b, 0x00d403d4, 0x03d603dc, 0x03dd00d6, 0x00dc03db, 0x03ef03de, + 0x03e000ef, 0x000104fb, 0x040304e1, 0x04e80006, 0x002f0409, 0x043104ec, 0x04130136, 0x01470439, 0x04490419, 0x04280149, 0x0180044e, 0x04820429, + 0x045c0185, 0x01890488, 0x048b0460, 0x04620196, 0x01a40498, 0x04a7046e, 0x047b01a7, 0x01ab04ab, 0x04ad047c, 0x047d01b3, 0x01b704b6, 0x04b90484, + 0x048601bb, 0x01c804bd, 0x04ca0489, 0x049501ca, 0x01d004cf, 0x04d20496, 0x049801d4, 0x01d804d6, 0x04da049b, 0x049e01da, 0x01e504e5, 0x04ea049f, + 0x04a001ea, 0x01f204f2, 0x05fa04a1, 0x00a20104, 0x00480102, 0x00500005, 0x10480024, 0x3c010300, 0x0300023c, 0x0702e801, 0x36020000, 0x20003602, + 0xca049c04, 0x02002100, 0x05001001, 0x01104200, 0x08080159, 0x04000222, 0x2d012b01, 0x9f010000, 0x0300a501, 0xbd01a701, 0x7b040a00, 0x21009b04, + 0xf4030200, 0xfb000500, 0x012b0110, 0x91031008, 0x01103f01, 0x08a3013f, 0x4e000222, 0x3d002400, 0x62000000, 0x1a006800, 0x91009000, 0xc6002100, + 0x2300cb00, 0xd400cd00, 0xe0002900, 0x31220182, 0x0182e200, 0xe4003222, 0x33220182, 0x0182e700, 0xe9003422, 0x35220182, 0x0182eb00, 0xf6003622, + 0x37280182, 0xf900f800, 0xfb003800, 0x3a220182, 0x0182fd00, 0x013bcd08, 0x00020102, 0x0104013c, 0x013d0004, 0x00060106, 0x0108013e, 0x013f0009, + 0x000b010b, 0x010d0141, 0x0142000d, 0x000f010f, 0x01110143, 0x01440011, 0x00130113, 0x01150145, 0x01460015, 0x00170117, 0x01190147, 0x01480019, + 0x001b011b, 0x011d0149, 0x014a001d, 0x001f011f, 0x0121014b, 0x014c0021, 0x00230123, 0x0125014d, 0x014e0025, 0x00270127, 0x0129014f, 0x01500029, + 0x00380138, 0x01440151, 0x01520044, 0x00460146, 0x01480153, 0x01540048, 0x004a014a, 0x014c0155, 0x0156004c, 0x004e014e, 0x01500157, 0x01580050, + 0x00520152, 0x01540159, 0x015a0054, 0x00560156, 0x0158015b, 0x015c0058, 0x005a015a, 0x015c015d, 0x015e005c, 0xb3080182, 0x60015f00, 0x60006001, + 0x62016201, 0x64016100, 0x62006401, 0x67016701, 0x69016300, 0x64006901, 0x6b016b01, 0x6d016500, 0x66006d01, 0x6f016f01, 0x71016700, 0x68007101, + 0x73017301, 0x75016900, 0x6a007501, 0x77017701, 0x79016b00, 0x6c007901, 0x7b017b01, 0x7d016d00, 0x6e007d01, 0x7f017f01, 0x81016f00, 0x70008101, + 0x84018401, 0x86017100, 0x72008601, 0x88018801, 0x8b017300, 0x74008b01, 0x8d018d01, 0x8f017500, 0x76008f01, 0x91019101, 0x89037700, 0x78008903, + 0x8b038b03, 0xfb037900, 0x7a007a04, 0xcb04cb04, 0x0100fa00, 0x0a000000, 0x7c04e800, 0x0c437318, 0x616c3a26, 0x5e006e74, 0x08357318, 0x08000e30, + 0x12000d00, 0x1e001900, 0x30002600, 0x35823500, 0x3a002b28, 0x40003f00, 0x25884500, 0x09000d3a, 0x13000e00, 0x1f001a00, 0x31002700, 0x01003600, + 0x3b002c00, 0x46004100, 0x08717318, 0x4f52342c, 0x5a00204d, 0xffff0000, 0x79820f00, 0x05820520, 0x1b001436, 0x23002000, 0x32002800, 0x02003700, + 0x3c002d00, 0x47004200, 0x10242384, 0x06000b00, 0x15383d82, 0x1c001700, 0x24002100, 0x33002900, 0x03003800, 0x3d002e00, 0x48004300, 0x0c342586, + 0x11000700, 0x18001600, 0x22001d00, 0x2a002500, 0x39003400, 0x2f2e9982, 0x44003e00, 0x4a004900, 0x63733263, 0x0584be01, 0x0584c420, 0x0584ca20, + 0x0584d020, 0x6c64d626, 0xdc016769, 0xe2200584, 0xe8260584, 0x6d6f6e64, 0x0584ee01, 0x0584f420, 0x0583fa20, 0x84000221, 0x66062605, 0x02636172, + 0x2005840c, 0x20058416, 0x20058420, 0x2605842a, 0x756e6c34, 0x843e026d, 0x84442005, 0x844a2005, 0x84502005, 0x6c562605, 0x026c636f, 0x2005845c, + 0x22288262, 0x84680272, 0x846e2005, 0x84742005, 0x847a2005, 0x6f802105, 0x02210682, 0x20058486, 0x2005848c, 0x20058492, 0x26058498, 0x64726f9e, + 0x84a4026e, 0x84ac2005, 0x70b42105, 0xbc202f83, 0xc2200584, 0xc8200584, 0xce200584, 0xd4260584, 0x746c6173, 0x0584da02, 0x0584e020, 0x0584e620, + 0x0584ec20, 0x6973f226, 0xf802666e, 0xfe200584, 0x03210583, 0x20058404, 0x2605840a, 0x636d7310, 0x84160370, 0x841c2005, 0x84222005, 0x84282005, + 0x732e2605, 0x03313073, 0x20058434, 0x2005843a, 0x20058440, 0x20058446, 0x2805824c, 0x73520332, 0x03737075, 0x20058458, 0x2005845e, 0x20058464, + 0x2005846a, 0x21f68370, 0x05847603, 0x05847c20, 0x05848220, 0x05848820, 0x00008e27, 0x02000100, 0x20058300, 0x20058403, 0x20059004, 0x8b11841c, + 0x84082005, 0x26059511, 0x00050003, 0x82070006, 0x2209a721, 0x84090001, 0x2005974f, 0x821d8401, 0x01002304, 0x06820b00, 0x0a200599, 0x05951d84, + 0x0c000224, 0x1f820d00, 0x0122078f, 0x35840e00, 0x11200597, 0x10201d84, 0x0f200584, 0x12200590, 0x05971184, 0x1d841520, 0x05841420, 0x05901320, + 0x11841a20, 0x05841920, 0x05901820, 0x11841b20, 0x059c1720, 0x1d841620, 0x3d080593, 0x003e001e, 0x004e0046, 0x005e0056, 0x006e0066, 0x007e0076, + 0x008e0086, 0x009e0096, 0x00ae00a6, 0x00be00b6, 0x00ce00c6, 0x00de00d6, 0x00ee00e6, 0x01fe00f6, 0x010e0106, 0x011e0116, 0x71410026, 0x85f02005, + 0x06012107, 0x0c200786, 0x78280786, 0x00000300, 0xce010100, 0x06230f85, 0x830600a0, 0xa606210f, 0xca200f86, 0xe6200786, 0x07210785, 0x20078602, + 0x22078630, 0x830400ba, 0xd607212f, 0x27870f86, 0x08216f86, 0x2117854e, 0x0786b808, 0x0785ea20, 0x86600921, 0x857c2007, 0x540c2107, 0xb2200786, + 0x0d210785, 0x2007861e, 0x20078672, 0x2007868e, 0x210785f8, 0x07862a0e, 0x7f854020, 0x86a20e21, 0x00de2e0f, 0x000e0002, 0x03890304, 0x038b038a, + 0x2a0d828c, 0x00f90002, 0x010000fa, 0x8420011f, 0x0008240d, 0x828d0301, 0x0001222d, 0x080f8274, 0x2f006460, 0xbd04a204, 0xbf04be04, 0xc104c004, + 0xc304c204, 0xc504c404, 0xc704c604, 0xc904c804, 0x9d049c04, 0x9f049e04, 0xa104a004, 0xa404a304, 0xa604a504, 0xa804a704, 0xaa04a904, 0xac04ab04, + 0xae04ad04, 0xb004af04, 0xb204b104, 0xb404b304, 0xb604b504, 0xb804b704, 0xba04b904, 0xbc04bb04, 0x6382ca04, 0xda010222, 0x2008474d, 0x080f822e, + 0x21004844, 0x82047d04, 0x95048f04, 0x97049604, 0x99049804, 0x9b049a04, 0x7c047b04, 0x7f047e04, 0x81048004, 0x84048304, 0x86048504, 0x88048704, + 0x8a048904, 0x8c048b04, 0x8e048d04, 0x91049004, 0x93049204, 0x47829404, 0x794c0320, 0x09db8211, 0x80000806, 0x0a010601, 0x12010e01, 0x1a011601, + 0x22011e01, 0x2a012601, 0x32012e01, 0x3a013601, 0x42013e01, 0x4a014601, 0x52014e01, 0x5a015601, 0x62015e01, 0x6a016601, 0x72016e01, 0x7a017601, + 0x82017e01, 0x8a018601, 0x92018e01, 0x9a019601, 0xa2019e01, 0xaa01a601, 0xb201ae01, 0xba01b601, 0xc201be01, 0xca01c601, 0xd201ce01, 0xda01d601, + 0xe201de01, 0xea01e601, 0xf201ee01, 0xfa01f601, 0x0202fe01, 0x0a020602, 0x12020e02, 0x1a021602, 0x22021e02, 0x2a022602, 0x32022e02, 0x3a023602, + 0x42023e02, 0x4a024602, 0x52024e02, 0x5a025602, 0x62025e02, 0x6a026602, 0x72026e02, 0x7a027602, 0x82027e02, 0x8a028602, 0x92028e02, 0x9a029602, + 0xa2029e02, 0xaa02a602, 0xb202ae02, 0xba02b602, 0xc202be02, 0xca02c602, 0xd202ce02, 0xda02d602, 0xe202de02, 0xea02e602, 0xf202ee02, 0xfa02f602, + 0x0403fe02, 0xfb030100, 0xfc200382, 0xfd200382, 0xfe200382, 0xff240382, 0x00040100, 0x01200382, 0x02200382, 0x03200382, 0x27820382, 0x82050421, + 0x82062007, 0x82072003, 0x82082003, 0x82092003, 0x820a2003, 0x820b2003, 0x820c2003, 0x820d2003, 0x820e2003, 0x820f2003, 0x82102003, 0x82112003, + 0x82122003, 0x82132003, 0x82142003, 0x82182003, 0x821c2003, 0x82232003, 0x82282003, 0x824d2003, 0x82512003, 0x82692003, 0x821f2003, 0x82552003, + 0x82192003, 0x821e2003, 0x82572003, 0x82582003, 0x82762003, 0x82172003, 0x822b2003, 0x82152003, 0x822c2003, 0x822e2003, 0x82392003, 0x823b2003, + 0x823c2003, 0x823e2003, 0x824e2003, 0x82502003, 0x82522003, 0x82662003, 0x82682003, 0x826a2003, 0x82492003, 0x825e2003, 0x82792003, 0x82322003, + 0x82742003, 0x82592003, 0x82332003, 0x823d2003, 0x825f2003, 0x82212003, 0x82222003, 0x82162003, 0x821b2003, 0x82262003, 0x82272003, 0x82312003, + 0x822a2003, 0x82452003, 0x82462003, 0x82482003, 0x824a2003, 0x824b2003, 0x82532003, 0x825a2003, 0x825b2003, 0x825d2003, 0x82632003, 0x826e2003, + 0x826b2003, 0x82782003, 0x827a2003, 0x823f2003, 0x821a2003, 0x82242003, 0x82252003, 0x822f2003, 0x82292003, 0x822d2003, 0x82342003, 0x82362003, + 0x82352003, 0x82382003, 0x82372003, 0x82422003, 0x82402003, 0x823a2003, 0x82412003, 0x82432003, 0x82442003, 0x82472003, 0x824c2003, 0x82302003, + 0x82542003, 0x824f2003, 0x825c2003, 0x82602003, 0x82622003, 0x826f2003, 0x826c2003, 0x82672003, 0x826d2003, 0x82712003, 0x82752003, 0x821d2003, + 0x82202003, 0x82562003, 0x82732003, 0x82702003, 0x82722003, 0x82772003, 0x00612603, 0x04640402, 0x24098265, 0x000200cb, 0x12874b4d, 0xaf00ac26, + 0xba002300, 0x27280182, 0xd400c600, 0xe0002800, 0x37220182, 0x0182e200, 0xe4003822, 0x39220182, 0x0182e700, 0xe9003a22, 0x3b220182, 0x0182eb00, + 0xf6003c22, 0x3d280182, 0xf900f800, 0xfb003e00, 0x40220182, 0x0182fd00, 0x0141df08, 0x00020102, 0x01040142, 0x01430004, 0x00060106, 0x01080144, + 0x01450009, 0x000b010b, 0x010d0147, 0x0148000d, 0x000f010f, 0x01110149, 0x014a0011, 0x00130113, 0x0115014b, 0x014c0015, 0x00170117, 0x0119014d, + 0x014e0019, 0x001b011b, 0x011d014f, 0x0150001d, 0x00210121, 0x01230151, 0x01520023, 0x00250125, 0x01270153, 0x01540027, 0x00290129, 0x01380155, + 0x01560038, 0x00440144, 0x01460157, 0x01580046, 0x00480148, 0x014a0159, 0x015a004a, 0x004c014c, 0x014e015b, 0x015c004e, 0x00500150, 0x0152015d, + 0x015e0052, 0x00540154, 0x0156015f, 0x01600056, 0x00580158, 0x015a0161, 0x0162005a, 0x005c015c, 0x015e0163, 0x0164005e, 0x00600160, 0x01620165, + 0x01660062, 0x00640164, 0x01820167, 0x68009308, 0x69016901, 0x6b016900, 0x6a006b01, 0x6d016d01, 0x6f016b00, 0x6c006f01, 0x71017101, 0x73016d00, + 0x6e007301, 0x75017501, 0x77016f00, 0x70007701, 0x79017901, 0x7b017100, 0x72007b01, 0x7d017d01, 0x7f017300, 0x74007f01, 0x81018101, 0x84017500, + 0x76008401, 0x86018601, 0x88017700, 0x78008801, 0x8b018b01, 0x8d017900, 0x7a008d01, 0x8f018f01, 0x91017b00, 0x7c009101, 0x89038903, 0x8b037d00, + 0x7e008b03, 0xa203a203, 0x02007f00, 0x01000800, 0x0382bb00, 0x12000124, 0x07820300, 0x03821220, 0x00002224, 0x03820100, 0x1f821d20, 0x1d820220, + 0x0000bb26, 0x0e050505, 0x02201382, 0x13220382, 0x1b821c00, 0x1a000239, 0xfb040a00, 0xfd04fc04, 0xff04fe04, 0x01050005, 0x03050205, 0x8e000405, + 0x2e398223, 0x05070506, 0x05090508, 0x050b050a, 0x820d050c, 0x08238b49, 0x13002c28, 0xd603d503, 0xd803d703, 0xda03d903, 0xdc03db03, 0xde03dd03, + 0xe003df03, 0xe203e103, 0xe403e303, 0xe603e503, 0x5983e703, 0x03e80323, 0x247d84fa, 0x03260052, 0x080d82f2, 0xea03e920, 0xec03eb03, 0xee03ed03, + 0xf003ef03, 0xf303f103, 0xf603f403, 0xf903fa03, 0xf803f703, 0x2394f503, 0x2584f220, 0x2782f520, 0xf9202383, 0x02245382, 0x07000a00, 0x00220182, + 0xdf821300, 0x84000128, 0x0b008500, 0x01829600, 0xa6000d22, 0x0e220182, 0x0182bc00, 0xf5000f22, 0x102c0182, 0x95019501, 0x7c031100, 0x12007c03, + 0xe720bb82, 0x0f413382, 0x00012623, 0x00010012, 0x26038208, 0x00390204, 0x829e0002, 0x00012209, 0x20098231, 0x2003820a, 0x240f849d, 0x00440002, + 0x240d8252, 0x0313002c, 0x141741df, 0xe103e02e, 0xe703e303, 0xe403e603, 0xe203e503, 0x09202b82, 0x3982b9b5, 0x00322e08, 0x04db0416, 0x04de04dd, + 0x04dc04df, 0x04e504e4, 0x04e104e0, 0x04e304e2, 0x04ec04eb, 0x04ee04ed, 0x04f004ef, 0x04f204f1, 0x04f404f3, 0x28a984f5, 0x002c002c, 0x00cb0000, + 0x08bd82ce, 0xf800f82e, 0x38010500, 0x06003801, 0x5a015a01, 0x5c010700, 0x08005c01, 0x5e015e01, 0x60010900, 0x0a006001, 0x03040304, 0x39040b00, + 0x0c004204, 0x122e3f82, 0xe6040600, 0xe804e704, 0xf704f604, 0x1182f804, 0x01062408, 0x00a201a2, 0x01ad0100, 0x010100ad, 0x00bc01bc, 0x04830402, + 0x04030083, 0x00930493, 0x04980404, 0x82050098, 0x26220827, 0xe9041000, 0xd204ea04, 0xd004cf04, 0xd304d104, 0xd504d404, 0xd704d604, 0xd904d804, + 0xfa04f904, 0x2582da04, 0xdf010e24, 0x4d82e001, 0x01e53208, 0x010200e5, 0x00ee01ee, 0x01f20103, 0x020400f2, 0x00070207, 0x020e0205, 0x0206000e, + 0x00120212, 0x02270207, 0x02080027, 0x00330233, 0x04a30409, 0x22ab82a3, 0x82a704a7, 0x04bc30ab, 0x040c00bc, 0x00c204c1, 0x04c7040d, 0x820f00c7, + 0x001a3657, 0x03c7030a, 0x03c903c8, 0x03cb03ca, 0x03cd03cc, 0x03cf03ce, 0x0bed42d0, 0x00080133, 0x03fb0381, 0x03fd03fc, 0x04ff03fe, 0x04010400, + 0x09fd8202, 0x05040406, 0x07040604, 0x09040804, 0x0b040a04, 0x0d040c04, 0x0f040e04, 0x11041004, 0x13041204, 0x15041404, 0x17041904, 0x1e041804, + 0x23041c04, 0x2e042804, 0x2c042b04, 0x3e043904, 0x3c043b04, 0x4e044d04, 0x50045204, 0x57045104, 0x6a046604, 0x69046804, 0x55041f04, 0x76045804, + 0x49040304, 0x79045e04, 0x74043204, 0x33045904, 0x21045f04, 0x27042204, 0x1b041604, 0x31042604, 0x45042a04, 0x48044604, 0x4b044a04, 0x5a045304, + 0x5d045b04, 0x63046404, 0x6b046e04, 0x7a047804, 0x1a043f04, 0x25042404, 0x29042f04, 0x34042d04, 0x35043604, 0x37043804, 0x40044204, 0x41043a04, + 0x44044304, 0x4c044704, 0x54043004, 0x5c044f04, 0x62046004, 0x6c046f04, 0x6d046704, 0x75047104, 0x20041d04, 0x73045604, 0x72047004, 0x61047704, + 0x3d046504, 0x4e000200, 0x5d004400, 0x69000000, 0x1a008100, 0xa100a000, 0xb0003300, 0x35220182, 0x0182b900, 0xd5003622, 0x37220182, 0x0182e100, + 0xe3003822, 0x39220182, 0x0182e500, 0xe8003a22, 0x3b220182, 0x0182ea00, 0xec003c22, 0x3d220182, 0x0182f700, 0xfa003e22, 0x3f220182, 0x0182fc00, + 0x0040eb08, 0x00ff00fe, 0x01030141, 0x01430003, 0x00050105, 0x01070144, 0x01450007, 0x000a010a, 0x010c0146, 0x0147000c, 0x000e010e, 0x01100148, + 0x01490010, 0x00120112, 0x0114014a, 0x014b0014, 0x00160116, 0x0118014c, 0x014d0018, 0x001a011a, 0x011c014e, 0x014f001c, 0x001e011e, 0x01200150, + 0x01510020, 0x00220122, 0x01240152, 0x01530024, 0x00260126, 0x01280154, 0x01550028, 0x002a012a, 0x01390156, 0x01570039, 0x00450145, 0x01470158, + 0x01590047, 0x00490149, 0x014b015a, 0x015b004b, 0x004d014d, 0x014f015c, 0x015d004f, 0x00510151, 0x0153015e, 0x015f0053, 0x00550155, 0x01570160, + 0x01610057, 0x00590159, 0x015b0162, 0x0163005b, 0x005d015d, 0x015f0164, 0x0165005f, 0x00610161, 0x01630166, 0x01670063, 0x00650165, 0x01820168, + 0x69009b08, 0x6a016a01, 0x6c016a00, 0x6b006c01, 0x6e016e01, 0x70016c00, 0x6d007001, 0x72017201, 0x74016e00, 0x6f007401, 0x76017601, 0x78017000, + 0x71007801, 0x7a017a01, 0x7c017200, 0x73007c01, 0x7e017e01, 0x80017400, 0x75008001, 0x82018201, 0x85017600, 0x77008501, 0x87018701, 0x89017800, + 0x79008901, 0x8c018c01, 0x8e017a00, 0x7b008e01, 0x90019001, 0x92017c00, 0x7d009201, 0x8a038a03, 0x8c037e00, 0x7f008c03, 0x10051005, 0x02008000, + 0x22004a00, 0x7e047b04, 0x8c047f04, 0x694b8d04, 0x047c280a, 0x0480047d, 0x4b820481, 0x8b200e61, 0x5d4b2782, 0x06914b0a, 0x49828a20, 0x2e010438, + 0x00003301, 0xc101be01, 0xc3010600, 0x0a00d901, 0x3a023a02, 0x3d4c2100, 0x3f214c06, 0x201b7d4c, 0x2c6382ca, 0x02080202, 0x02000035, 0x00370237, + 0x080f822e, 0x26005228, 0x14001300, 0x16001500, 0x18001700, 0x1a001900, 0x1c001b00, 0x84000700, 0x7c038500, 0xf5009600, 0xbc009501, 0x25a6a600, + 0x01000225, 0x4603d503, 0x1a3605a9, 0xc4030a00, 0xf000ef00, 0x3e02f100, 0xc5033f02, 0x41024002, 0x2747c603, 0xab87450c, 0x04000e2a, 0xea04e904, + 0xfa04f904, 0x0220c382, 0x23056f45, 0xc204c104, 0x00230d83, 0x450c001e, 0xda2016a1, 0x0c3b1f82, 0xe501e501, 0xee010000, 0x0100ee01, 0xf201f201, + 0x07020200, 0x03000702, 0x82020e02, 0x022d0857, 0x00120212, 0x02270205, 0x02060027, 0x00330233, 0x04a30407, 0x040800a3, 0x00a704a7, 0x04bc0409, + 0x040a00bc, 0x00c704c7, 0x0001000b, 0x2603823e, 0x00060008, 0x8216000e, 0x00242e75, 0x0330002a, 0x000300d2, 0x034c0049, 0x220784d3, 0x82d1034f, + 0x00492273, 0x220582bf, 0x82d4034c, 0x004d2205, 0x200582c0, 0x2039824f, 0x24278201, 0x001a0002, 0x1e9f480a, 0x0020ac82, 0x28200085, 0x02240682, + 0x676e6c64, 0x0b830782, 0x85731621, 0x823e200b, 0x4116360f, 0x2c6e6d72, 0x72794320, 0x47202c6c, 0x2c6b6572, 0x74614c20, 0x0515956e, 0x8dc2fcfa, + 0x000000bf, +}; + +static const unsigned int verdanab_compressed_size = 166620; +static const unsigned int verdanab_compressed_data[166620 / 4] = +{ + 0x0000bc57, 0x00000000, 0x3c390300, 0x00000400, 0x00010025, 0x82150000, 0x00043e04, 0x49534450, 0x9d328447, 0xac0200c0, 0x1d0000b0, 0x454447b4, + 0x05260046, 0xca02007a, 0x28258264, 0x4f50471e, 0x802f8553, 0x080f824e, 0x00008420, 0x5347be59, 0xd77c4255, 0x03003f3c, 0x00004424, 0x534fa414, + 0xde73322f, 0x0000d97c, 0x2f82d801, 0x44566038, 0xf174584d, 0x00006d7c, 0x00000c18, 0x6d63e005, 0x4afd7061, 0x5b82bc26, 0x0000ec2b, 0x76631808, + 0x8d6e2074, 0x3d1b828c, 0x00001c32, 0x70661403, 0x69f06d67, 0x00005dec, 0x00000426, 0x6167f606, 0x18007073, 0x8f822100, 0x4f82a020, 0x6c67103c, + 0x7dfd6679, 0x0000cabe, 0x0200084b, 0x65681852, 0xf1eb6461, 0x0000893f, 0x1f825c01, 0x82683621, 0x50112310, 0x0f82710f, 0x0f829420, 0x6d68243c, + 0x82147874, 0x00007a22, 0x00003802, 0x656bd415, 0x4db86e72, 0x0200c4b7, 0x2382209d, 0x6f6c0e2c, 0xcc066163, 0x00007675, 0x1f823035, 0x616dd828, + 0x5d097078, 0x1b821b08, 0x3f82b820, 0x656d202c, 0xad2e6174, 0x03005c34, 0x0f82e838, 0x616e542b, 0xfdfa656d, 0x02006ec9, 0x292f829e, 0x6f704e0e, + 0x78ff7473, 0x9f82d300, 0x1f828020, 0x7270202c, 0x52447065, 0x00000293, 0xef82fc2c, 0x01001f23, 0x2d068200, 0xfc987b54, 0x0f5fb002, 0x1b00f53c, + 0x00830008, 0x536cad23, 0x2b0783f8, 0xf14b0ed6, 0x93fd9afb, 0x9308a80d, 0x09222b82, 0x31840200, 0x05830020, 0xfe0b0827, 0x0e000052, 0x221f8238, + 0x86a80d71, 0x84348317, 0x75052103, 0x05821183, 0x07007a26, 0x05006800, 0x102c3982, 0x5a004000, 0x6e030000, 0x0300f606, 0x03241d82, 0xbc028b04, + 0x08241982, 0x33059a05, 0x25205282, 0x03390785, 0x03d300a0, 0x02000805, 0x0304080b, 0x02040405, 0x0600a004, 0x200040ff, 0x2058825b, 0x25038210, + 0x20534d00, 0x01820020, 0x06fdff2f, 0x0059fe1e, 0x010b08ca, 0x010020ae, 0x231b839f, 0xd1056304, 0x20230782, 0x86080300, 0x20638292, 0x3f038300, + 0xcb003803, 0xa700b304, 0x9500f006, 0x8600b005, 0x8f002d0a, 0x7900e606, 0xa700a802, 0xc1005904, 0xa6200382, 0xcc201782, 0xda281f82, 0x2300e402, + 0x6e00d703, 0xb7240782, 0x7b008405, 0x70241782, 0x0a01b005, 0xb9200782, 0x8c200382, 0x54200382, 0xa4200382, 0x86200382, 0x9c200382, 0x63200382, + 0x68200382, 0xe1206382, 0x4d200382, 0x47834382, 0x0782f920, 0xef04ec36, 0xb6079300, 0x36069100, 0x18061800, 0xca05be00, 0xa4066700, 0x77200782, + 0x34240382, 0x7d06be00, 0xb32c0f82, 0x5e04be00, 0x71047b00, 0x2b062a00, 0x19241782, 0x9507be00, 0xc6201b82, 0xcd240382, 0xdd056700, 0x06210785, + 0x321b8242, 0x056d00af, 0x06290074, 0x06a9007f, 0x0918001c, 0x83420007, 0xe5052707, 0x89050900, 0xc7825a00, 0xb382f820, 0x0782bd20, 0x7f82c620, + 0xb005c524, 0xbb82f0ff, 0x5805762c, 0x98055600, 0xb504aa00, 0x07825800, 0x50055a28, 0x61035800, 0x0b842b00, 0xaa00b32c, 0xa000bc02, 0xc6ff3903, + 0x0b845e05, 0x7708aa25, 0x8205aa00, 0x7e052117, 0xaa202f84, 0x03212783, 0x243f82fa, 0x035f00bf, 0x3e3782a5, 0x05a100b3, 0x071e0033, 0x052d00d6, + 0x051a005a, 0x041e0035, 0x055400c6, 0x049800b0, 0x829b0159, 0x82c92007, 0x849d207f, 0x83fb82f7, 0x820520f7, 0x860620f3, 0x84bf83d3, 0x82582093, + 0x84038e97, 0x825020a3, 0x82038a77, 0x0268249f, 0x82faffbc, 0x82f52003, 0x88ee2003, 0x8b9f839b, 0x8b978303, 0x00b02603, 0x00b304f2, 0x208f82b4, + 0x200382bc, 0x2003829a, 0x20038297, 0x280382dd, 0x00b40587, 0x00b607aa, 0x2403867a, 0x01b0058e, 0x200382e5, 0x2cb78237, 0x00c008fa, 0x00cd0604, + 0x00780865, 0x200f82b1, 0x820387da, 0x05342437, 0x82aa00c5, 0x057c2e07, 0x06640096, 0x052900f4, 0x042b00ac, 0x20ff824e, 0x28fb82c8, 0x067f00c8, + 0x083500c0, 0x82d78225, 0xef042797, 0x38037000, 0x3f82cb00, 0x0382d820, 0x37828620, 0x07824420, 0x72069e30, 0xcc062200, 0xcc06d900, 0x64082601, + 0x2741b700, 0x26738207, 0x00150967, 0x828b0867, 0x00b026ff, 0x00000899, 0x20bf8299, 0x2403820b, 0x00a8027b, 0x20038220, 0x2c8b867b, 0x0035056b, + 0x00e5051e, 0xff840309, 0x2e5782b3, 0x00590400, 0x015904d9, 0x00d20526, 0x82d8052b, 0x23fb8203, 0xb700e402, 0x35203382, 0x35243f82, 0x8f00380e, + 0x05236783, 0x87be0077, 0x230b8307, 0x7b005e04, 0x71200382, 0x7b200786, 0x03888383, 0xa9007f23, 0x21038606, 0xf783bc02, 0x051a0125, 0x821d01b0, + 0x82472003, 0x05562403, 0x821f02b0, 0x829a2007, 0x82b22003, 0x824e2003, 0x82c02003, 0x051b3803, 0x02180023, 0x051800d0, 0x046d00af, 0x055f00bf, + 0x045a0089, 0x825400c6, 0x069b289f, 0x051c00a4, 0x8357006f, 0x26c384bb, 0x05be00e1, 0x82aa0098, 0x06ec2cd7, 0x040801f0, 0x041701c8, 0x82e600c8, + 0x09e02403, 0x82b30074, 0x82c72003, 0x82b12003, 0x066524e3, 0x8267007d, 0x835a202b, 0x275b88ab, 0x046700ca, 0x055800b5, 0x98260787, 0xb0055a00, + 0xfb83f0ff, 0x5822e784, 0x07885600, 0xbe00a426, 0x5a000a07, 0x77208384, 0x50207782, 0x07873782, 0xbe001922, 0x7921e382, 0x21078205, 0xeb822e04, + 0x74200783, 0xc6209782, 0xb3202782, 0xcd20078a, 0x7e288382, 0x42065800, 0xfa03be00, 0x07851782, 0x8f886a20, 0x29007427, 0x2b00a503, 0x2a078305, + 0x062b00b9, 0x05a9007f, 0x87a100b3, 0x070b4107, 0x67820788, 0x53820620, 0x009e0723, 0x20db835d, 0x2d5b8205, 0x5b00ae04, 0x5800ce05, 0x0a004804, + 0xa3825107, 0x2f08cf82, 0xcb00a005, 0x9e00c804, 0xbd00bf0a, 0x7b000f08, 0xa000d205, 0xe5ff9a06, 0x7500d202, 0x7500ee04, 0x91002d0a, 0x0f005003, + 0x9200d504, 0x8300d602, 0x0b820383, 0x0782b120, 0xff877020, 0x41082341, 0x0341072b, 0x410f860f, 0x07900767, 0x0b41b320, 0x00b32206, 0x28d38239, + 0x005e0429, 0xffbc0276, 0x240782f6, 0x00bc027b, 0x2007862d, 0x2a07861c, 0x007104a0, 0xff39032a, 0x822b06c6, 0x005e2337, 0x038305aa, 0x21056741, + 0x57410634, 0x0d5f4117, 0x57416720, 0x0f4f410f, 0x09270f8f, 0x07420007, 0x422d00d6, 0x0223075f, 0x87aa00c2, 0xc00833ff, 0x25080400, 0xcd065600, + 0x7e056500, 0x38035800, 0x2f87e100, 0x3f88078f, 0x2000a822, 0x25054745, 0xfc059a00, 0x93428100, 0x82b12006, 0x82a72007, 0x02c52403, 0x42a000a8, + 0x023705ff, 0x00b00519, 0xff6106c7, 0xffc806eb, 0xff0208eb, 0xffa405eb, 0x82bf07eb, 0x82842003, 0xffc32503, 0xffbc02eb, 0x2f051345, 0x06be0018, + 0x05220072, 0x05be0077, 0x065a0089, 0x21060346, 0x9b432b06, 0x07ff4505, 0x00b80523, 0x20ab8289, 0x211f8367, 0x2b82dd05, 0x68007826, 0x29007405, + 0x062f9b83, 0x0718001c, 0x068b00cf, 0x043500c0, 0x847b005e, 0x009827af, 0x00ae045a, 0xd345055b, 0x05a12e05, 0x059f00a6, 0x05aa00bb, 0x041e0035, + 0x25178565, 0x77009a05, 0x8b41bc02, 0x00352406, 0x82c50516, 0x8233200b, 0x44a5201f, 0x052705b3, 0x04aa0098, 0x8458007f, 0x00152a3b, 0x00880705, + 0x0027079e, 0x20bb825b, 0x201384ee, 0x831b857e, 0x21bf8313, 0x8f824907, 0x9b821920, 0x4100ef21, 0x8b8205ab, 0x042f8f83, 0x092a0071, 0x091200c7, + 0x07be00b7, 0x8329007d, 0xe50523db, 0xcb830a00, 0x00360625, 0x82100618, 0x461820eb, 0x062305ef, 0x832a00bb, 0xec08294b, 0xa7051200, 0xc4064e00, + 0x03831b82, 0x07822b20, 0x1200c324, 0x07829507, 0x0747b320, 0x21078206, 0x4b47dd05, 0x060b4105, 0x9e070a26, 0x1c065d00, 0xcc205382, 0x4c282382, + 0x4f098300, 0x6b09be00, 0x42247782, 0x80082900, 0x6b821382, 0x00ef0525, 0x8290095c, 0x005c240b, 0x82580511, 0x009324eb, 0x826b0573, 0x824020eb, + 0x008830ff, 0x00500525, 0x00fe0758, 0x00b4042d, 0x82c30541, 0x20038313, 0x2407825e, 0x061900ad, 0x200782a4, 0x830382c2, 0x200783fb, 0x20378298, + 0x059f43c9, 0x0035052d, 0x00ba071e, 0x005a055a, 0x82d5051a, 0x00792823, 0x00050874, 0x821a08aa, 0x00f2240b, 0x827f070a, 0x82322007, 0x00d9242f, + 0x82f40757, 0x0074220b, 0x246b8322, 0x2900b305, 0x217b8204, 0x4782d804, 0x5f00bf34, 0xa000bc02, 0xeeffbc02, 0xc6ff3903, 0x19001908, 0x2b822808, + 0x05212382, 0x05bf415e, 0x77830520, 0xbe001922, 0x08273383, 0x0acc0000, 0x83be005a, 0xc8042313, 0x2f450d01, 0x20078207, 0x200382a6, 0x210386d9, + 0x008e00b2, 0x444f0721, 0xc52a06bb, 0xef05a900, 0x0000a100, 0x0382ecfc, 0x0000b524, 0x0782fefb, 0xb0056d28, 0xb0051a01, 0x0785b0ff, 0x01210b83, + 0x05e74556, 0x1d240784, 0x2e02b005, 0x5b200f82, 0x5d200382, 0x2920038e, 0x2e106b45, 0x05180036, 0x06560058, 0x05f3ff36, 0x996aff58, 0x9d27871f, + 0x44052007, 0x178916ab, 0x5022b782, 0x27979bff, 0x20069344, 0x390786aa, 0x007106a0, 0x00500567, 0x00190554, 0x0040041c, 0x00ec0829, 0x00fe0712, + 0xab44062d, 0x20078806, 0x056741b3, 0x00e50524, 0x73470509, 0x21078306, 0xaf821c06, 0x1a005a2a, 0x83004c06, 0x74007905, 0xbe240782, 0xaa00b305, + 0x06205787, 0x8306c744, 0x2c038213, 0x00b00500, 0x00b30499, 0xffee0440, 0x220b829c, 0x82ca0569, 0x2103827f, 0x33827708, 0x2800c62e, 0xbe00b80a, + 0x24000709, 0x9a005107, 0x263d7b82, 0x29007405, 0x14000009, 0x0a005e05, 0x1400dd05, 0xf900f006, 0xbe001806, 0xab00c804, 0x00001000, 0xab424e02, + 0x24079207, 0xff7e053f, 0x24179297, 0x007e0567, 0x074f4458, 0xa347079f, 0x4406200f, 0x079f067f, 0x900f7343, 0x0098360f, 0xfb00005a, 0x00b005a5, + 0x00b90aa9, 0xffab055f, 0x02ab05e9, 0x8703857e, 0xe9ff330b, 0x25000004, 0x67007d06, 0x18003606, 0x0e00af05, 0xab46ca05, 0x82bf2006, 0x06af4933, + 0x00bc0233, 0x00e90298, 0x00c4068d, 0x00c305be, 0xfd0000aa, 0x2e038271, 0x00d10a81, 0x00d20967, 0x005e0858, 0x822f0767, 0x0016242f, 0x45f80696, + 0x08270547, 0x060f001e, 0x870f004e, 0xcd062107, 0x48059f4a, 0xfb220883, 0x9f82ab00, 0xa7069a22, 0xec2e1782, 0xc6091e00, 0x7a084200, 0x0f042d00, + 0x0383c800, 0x00820223, 0x2f03879e, 0x10011605, 0xe1003803, 0xc0004204, 0xa700a802, 0x06300383, 0x05a902b3, 0x014102c2, 0x0700005e, 0x0579006c, + 0x042cab82, 0x070a0048, 0x062900ec, 0x050a0086, 0x23060f46, 0xc6ff3903, 0x2006b345, 0x20078256, 0x20038237, 0x2003824e, 0x27cf831b, 0x2b00ac05, + 0xc300c804, 0xd1200382, 0xc1200382, 0x634b0b85, 0x06334609, 0x0782d320, 0x0382cb20, 0xac200783, 0xbb260782, 0x2b009a06, 0x0382cf08, 0x2b00d524, + 0x0382e505, 0x00983e08, 0x00ae0470, 0x00f90482, 0x000e054e, 0x0043053c, 0x000f0527, 0x008d055f, 0x00d0046d, 0x004e0531, 0x00830554, 0x0058054c, + 0x0008055b, 0x00410578, 0x0013056a, 0x00970564, 0x00e4041a, 0x240f864a, 0x00be040e, 0x3a33820c, 0x0043046e, 0x0059047d, 0x00a2043b, 0x002d0535, + 0x008e0427, 0x0061053d, 0x827b0464, 0x82392057, 0x007b264b, 0x00c10461, 0x3217825a, 0x0088045f, 0x00de0469, 0x000c056d, 0x007e044a, 0x82a10435, + 0x8290200f, 0xff082233, 0x2a878290, 0x001b051b, 0x00fa04a4, 0x82a8056f, 0x82cd2007, 0x006b3403, 0x008c05a4, 0x00a60571, 0x00f703a4, 0x0008047c, + 0x82750539, 0x006a2417, 0x828806a4, 0x00b6281b, 0x00e005a6, 0x82090570, 0x2007830b, 0x3c37846c, 0x00cd045a, 0x007e0524, 0x00280594, 0x00ac071b, + 0x003e0542, 0x00290520, 0x00b50409, 0x22678458, 0x9f1b0043, 0x72072307, 0x03831300, 0x038f8f83, 0x03829f83, 0x83042e21, 0x20039aa3, 0x839f8205, + 0x842b8323, 0x87cb83c7, 0x00a62203, 0x82d78736, 0x827920db, 0x82412003, 0x825d2003, 0x837c2003, 0xb7072203, 0x20078300, 0x200f866c, 0x20fb8b3e, + 0x84ff8204, 0x828e2003, 0x007222ef, 0x8c678326, 0x00e02303, 0x03990570, 0x1b826720, 0x702a0383, 0x6f009e07, 0xa4000b05, 0x03896c05, 0x5a20af82, + 0x24200392, 0x03881382, 0x007e0523, 0x2303a394, 0x4200ac07, 0x0523038b, 0x8b090029, 0xb5042303, 0x03875800, 0x2608ff41, 0x05a20073, 0x82280074, + 0x83a4206f, 0xa605211b, 0xdf289b82, 0xf7037000, 0x75057c00, 0x33220b82, 0xfb411b00, 0xd8042307, 0xe7847b00, 0x1782a320, 0xa4000926, 0x6900a904, + 0x24213782, 0x29678205, 0x6100b106, 0x20003e05, 0x3782a906, 0x31009b22, 0x5d203f82, 0x43227b84, 0x23821b00, 0x7b41a420, 0x823f8407, 0x9b05232f, + 0x83844000, 0x4b824120, 0x4b821b20, 0xa3007326, 0x4300ba05, 0xcd2e8784, 0x8d07a400, 0x2b051200, 0xb2055600, 0x0384a600, 0x27824920, 0x2500cd22, + 0xa3838b84, 0x7000e023, 0x22878705, 0x846f00fa, 0x000f2287, 0x21878716, 0x2f82c705, 0x7c006c30, 0xa400e807, 0xa4000208, 0x45006206, 0xeb825407, + 0x03823b20, 0x5c002224, 0x1f830e08, 0x06f6ff27, 0x0421003f, 0x20138473, 0x2043826f, 0x06ff415a, 0x08045d2a, 0x66083900, 0x2e083300, 0x44233b82, + 0x83052100, 0x215f827f, 0xab84a405, 0xcf83a220, 0x012a0537, 0x01c4067b, 0x01c3054f, 0x00ec0829, 0x002b0673, 0x005c06be, 0x2b078347, 0x7e00fe07, + 0xaa005e05, 0x61007405, 0xcf820783, 0x43844d20, 0x5b006c22, 0x03230783, 0x82c7000f, 0x82342003, 0x82982003, 0x82202003, 0x82172003, 0x821e2003, + 0x82282003, 0x82432003, 0x82c12003, 0x06c72803, 0x04c700f0, 0x86ecff5f, 0x8323832f, 0x02172437, 0x82a900c2, 0x82802003, 0x021f2403, 0x82faffc2, + 0x85f02003, 0xebff2313, 0x1b849506, 0x0f820220, 0x1782a320, 0x1786f820, 0x1b831f86, 0x03f0ff25, 0x824500bb, 0x82992003, 0x82682003, 0x82622003, + 0x82282003, 0x825b2003, 0x86532003, 0x82342007, 0xa7432007, 0xc8042b27, 0xbc020d01, 0xb005a000, 0x03824700, 0xc106b226, 0x6506a900, 0x9f280382, + 0x72064d00, 0x75063800, 0x14260b82, 0xbe056e00, 0x0b83b900, 0x00130831, 0x009d06a8, 0x002c0650, 0x00de04b9, 0x82e507b9, 0x00953017, 0x005a066a, + 0x00560584, 0x002f065c, 0x828a066e, 0x005e241f, 0x82e306a4, 0x000e3a3b, 0x00940696, 0x00ed0500, 0x007f0664, 0x00d605a9, 0x0071077a, 0x006e0628, + 0x821f8478, 0x261f8213, 0x00fd055a, 0x82200682, 0x001f242f, 0x82d90496, 0x009e2e57, 0x0057065d, 0x00cd0646, 0x00300767, 0x070f5295, 0x1a022108, + 0x0202ccff, 0x8d02b5ff, 0x6d021d00, 0x25049aff, 0x79083b00, 0xb305a100, 0xe705aa00, 0x0b065a00, 0xb3200782, 0xd3240f82, 0x05055a00, 0xaa220b84, + 0x1b856107, 0x03252383, 0x08aa0008, 0x200f8282, 0x531f829e, 0xaa22053b, 0xaf823205, 0x75223783, 0x23826400, 0xd002a12a, 0xbc0598ff, 0x0904c5ff, + 0x5782b782, 0xff5d0323, 0x256383fa, 0x5000d304, 0x53846e05, 0xee05a126, 0x7008a100, 0x98247786, 0x34045a00, 0x0f835782, 0x33828520, 0x58007e3a, + 0x3c00ea06, 0xa1002b07, 0xe1003803, 0x6e00d703, 0x3a00b005, 0xa1006f0b, 0x0e210387, 0x820b8535, 0x82512017, 0x066e2403, 0x821e00c6, 0x06282e07, + 0x061e002b, 0x003c004d, 0x00010000, 0x2f008301, 0xf8000c00, 0x0800ff08, 0xfeff0800, 0x0a000900, 0x0a200582, 0x0b220584, 0x0b820b00, 0x0c000c22, + 0x0d280582, 0xfdff0d00, 0x0e000e00, 0x0f220582, 0x05820f00, 0x05841020, 0x11001122, 0x12280b82, 0xfcff1200, 0x13001300, 0x14220582, 0x05821500, + 0x05841520, 0x16001622, 0x17280b82, 0xfbff1700, 0x18001800, 0x19220582, 0x05821a00, 0x1b001a22, 0x1b200582, 0x1c280584, 0xfaff1c00, 0x1d001d00, + 0x1e220582, 0x05821e00, 0x20001f22, 0x20200582, 0x21280584, 0xf9ff2100, 0x22002200, 0x23220582, 0x05822300, 0x25002422, 0x25220582, 0x05822600, + 0x05822620, 0x2700f82a, 0xf8ff2700, 0x28002800, 0x29220582, 0x05822900, 0x2b002a22, 0x2b200582, 0xf72a0582, 0x2c002c00, 0x2d00f7ff, 0x05822d00, + 0x2e002e22, 0x2f220582, 0x05823000, 0x31003026, 0x3100f6ff, 0x32220584, 0x0b823200, 0x33003322, 0x34220582, 0x05823400, 0x36003526, 0x3600f5ff, + 0x37220584, 0x0b823700, 0x38003822, 0x39220582, 0x05823900, 0x3b003a28, 0x3b00f4ff, 0x05823c00, 0x3d003c22, 0x3d200582, 0x3e220584, 0x0b823e00, + 0x3f003f28, 0x4000f3ff, 0x05824100, 0x05844120, 0x42004222, 0x43220b82, 0x05824300, 0x44004428, 0x4500f2ff, 0x05824600, 0x47004622, 0x47200582, + 0x48220584, 0x0b824800, 0x49004928, 0x4a00f1ff, 0x05824a00, 0x4c004b22, 0x4c220582, 0x05824d00, 0x05844d20, 0x4e004e28, 0x4f00f0ff, 0x05824f00, + 0x51005022, 0x51220582, 0x05825200, 0x05825220, 0x5300ef2a, 0xefff5300, 0x54005400, 0x55220582, 0x05825500, 0x57005622, 0x57260582, 0xeeff5800, + 0x05845800, 0x59005922, 0x5a220b82, 0x05825a00, 0x5c005b22, 0x5c260582, 0xecff5d00, 0x05845d00, 0x5e005e22, 0x5f220b82, 0x05825f00, 0x60006022, + 0x61260582, 0xebff6200, 0x05846200, 0x63006322, 0x64220b82, 0x05826400, 0x65006522, 0x66280582, 0xeaff6700, 0x68006700, 0x68200582, 0x69220584, + 0x0b826900, 0x6a006a22, 0x6b280582, 0xe9ff6b00, 0x6d006c00, 0x6d200582, 0x6e220584, 0x0b826e00, 0x6f006f22, 0x70280582, 0xe8ff7000, 0x72007100, + 0x72200582, 0x73220584, 0x0b827300, 0x74007422, 0x75280582, 0xe7ff7500, 0x76007600, 0x77220582, 0x05827800, 0x05847820, 0x79007922, 0x7a280b82, + 0xe6ff7a00, 0x7b007b00, 0x7c220582, 0x05827d00, 0x05847d20, 0x7e007e22, 0x7f280b82, 0xe5ff7f00, 0x80008000, 0x81220582, 0x05828200, 0x83008222, + 0x83200582, 0x84280584, 0xe4ff8400, 0x85008500, 0x86220582, 0x05828600, 0x88008722, 0x88200582, 0x89280584, 0xe3ff8900, 0x8a008a00, 0x8b220582, + 0x05828b00, 0x8d008c22, 0x8d220582, 0x05828e00, 0x05828e20, 0x8f00e22a, 0xe2ff8f00, 0x90009000, 0x91220582, 0x05829100, 0x93009222, 0x93200582, + 0xe12a0582, 0x94009400, 0x9500e1ff, 0x05829500, 0x96009622, 0x97220582, 0x05829800, 0x99009826, 0x9900e0ff, 0x9a220584, 0x0b829b00, 0x05849b20, + 0x9c009c22, 0x9d260b82, 0xdfff9e00, 0x05849e00, 0xa0009f22, 0xa0200b82, 0xa1220584, 0x0b82a100, 0xa300a228, 0xa300deff, 0x0582a400, 0x0584a420, + 0xa600a522, 0xa6200b82, 0xa7280584, 0xddffa700, 0xa900a800, 0xa9200582, 0xaa220584, 0x0b82ab00, 0x0584ab20, 0xac00ac28, 0xad00dcff, 0x0582ae00, + 0xaf00ae22, 0xaf220582, 0x0582b000, 0x0584b020, 0xb100b128, 0xb200dbff, 0x0582b200, 0xb400b322, 0xb4220582, 0x0582b500, 0xb600b522, 0xb6200582, + 0xda2a0582, 0xb700b700, 0xb800daff, 0x0582b900, 0xba00b922, 0xba220582, 0x0582bb00, 0x0582bb20, 0xbc00d92a, 0xd9ffbc00, 0xbd00bd00, 0xbe220582, + 0x0582bf00, 0xc000bf22, 0xc0260582, 0xd8ffc100, 0x0584c100, 0xc200c222, 0xc3220b82, 0x0582c400, 0xc500c422, 0xc5200582, 0xd72a0582, 0xc600c600, + 0xc700d7ff, 0x0582c700, 0xc800c822, 0xc9220582, 0x0582ca00, 0xcb00ca28, 0xcb00d6ff, 0x0582cc00, 0x0584cc20, 0xcd00cd22, 0xce220b82, 0x0582cf00, + 0xd000cf26, 0xd000d5ff, 0xd1220584, 0x0b82d100, 0xd200d222, 0xd3220582, 0x0582d300, 0xd500d423, 0x840382ff, 0x00d62205, 0x200b82d7, 0x220584d7, + 0x82d800d8, 0x00d9280b, 0x00d3ffda, 0x82db00da, 0x00db2205, 0x200582dc, 0x220584dc, 0x82dd00dd, 0x00de280b, 0x00d2ffde, 0x82e000df, 0x84e02005, + 0x00e12205, 0x200b82e2, 0x280584e2, 0xffe300e3, 0x00e400d1, 0x220582e5, 0x82e600e5, 0x00e62205, 0x200582e7, 0x280584e7, 0xffe800e8, 0x00e900d0, + 0x220582e9, 0x82eb00ea, 0x84eb2005, 0x00ec2205, 0x280b82ec, 0xffed00ed, 0x00ee00cf, 0x220582ee, 0x82f000ef, 0x00f02205, 0x220582f1, 0x82f200f1, + 0x82f22005, 0x00ce2a05, 0xfff300f3, 0x00f400ce, 0x220582f4, 0x82f600f5, 0x00f62205, 0x200582f7, 0x2a0582f7, 0x00f800cd, 0x00cdfff8, 0x82f900f9, + 0x00fa2205, 0x280582fb, 0xfffc00fb, 0x00fc00cc, 0x220582fd, 0x82fe00fd, 0x84fe2005, 0x00ff2205, 0x210b82ff, 0x615c0000, 0x00142807, 0x00010003, + 0x821a0100, 0x00062103, 0x8206cb5b, 0x02022507, 0x00020000, 0xe608008d, 0x03000001, 0x07060504, 0x0b0a0908, 0x0f0e0d0c, 0x13121110, 0x17161514, + 0x1b1a1918, 0x1f1e1d1c, 0x23222120, 0x27262524, 0x2b2a2928, 0x2f2e2d2c, 0x33323130, 0x37363534, 0x3b3a3938, 0x3f3e3d3c, 0x43424140, 0x47464544, + 0x4b4a4948, 0x4f4e4d4c, 0x53525150, 0x57565554, 0x5b5a5958, 0x5f5e5d5c, 0x62006160, 0x66656463, 0x6a696867, 0x6e6d6c6b, 0x7271706f, 0x76757473, + 0x7a797877, 0x7e7d7c7b, 0x8281807f, 0x86858483, 0x8a898887, 0x8e8d8c8b, 0x9291908f, 0x96959493, 0x9a999897, 0x9e9d9c00, 0xa2a1a09f, 0xa6a5a4a3, + 0xaaa9a8a7, 0xadac03ab, 0xb1b0afae, 0xb5b4b3b2, 0xb9b8b7b6, 0xbdbcbbba, 0xc1c0bfbe, 0xc5c4c300, 0xc9c8c7c6, 0xcdcccbca, 0x00d0cfce, 0xd4d3d2d1, + 0x00d7d6d5, 0xdcdbdad9, 0x00dfdedd, 0x82fe0604, 0xdce208f4, 0x06008000, 0x7e005c00, 0x8f017f01, 0xa1019201, 0xff01b001, 0x37021b02, 0xc7025902, + 0xdd02c902, 0x06030303, 0x0c030903, 0x26032303, 0x47033303, 0x8a037e03, 0xa1038c03, 0xd603ce03, 0x4f040d04, 0x79045f04, 0x87047d04, 0x97049304, + 0xa3049d04, 0xb504a904, 0xd904bf04, 0xf704e904, 0x56051d05, 0x87055f05, 0x8f058a05, 0x851e3f0e, 0xcb1e9e1e, 0xf91ef11e, 0x22201520, 0x30202620, + 0x3a203420, 0x3e203c20, 0x70204420, 0x89207920, 0xbe20b520, 0x0521f020, 0x16211321, 0x22212021, 0x2e212621, 0x02225e21, 0x0f220622, 0x15221222, + 0x1e221a22, 0x48222b22, 0x65226122, 0x02250025, 0x10250c25, 0x18251425, 0xab25a125, 0xcf25ca25, 0x6a26e625, 0x732c6d2c, 0x8ca71fa7, 0x17fb04fb, + 0xfdffe6ff, 0xe582ffff, 0xa0002022, 0xa026dd84, 0xfa01af01, 0xdd841802, 0xdd82c620, 0x0003d822, 0x0822dd82, 0xdd8a0b03, 0xdd828420, 0xa3038e22, + 0x0128dd82, 0x51040e04, 0x7c047804, 0x903cdd82, 0x9a049604, 0xa804a204, 0xb804ac04, 0xe804d804, 0x1a05f604, 0x59053105, 0x89056105, 0x8020dd84, + 0xa028dd82, 0xf21ecc1e, 0x17201220, 0x2f24dd82, 0x39203220, 0x7426dd88, 0xa0207f20, 0xdd90b820, 0xdd865b20, 0xdd821120, 0xdd861920, 0x64226022, + 0xaa20dd8e, 0x712add8a, 0x88a71ba7, 0x13fb00fb, 0xdd83e5ff, 0x82e3ff21, 0xfffa32df, 0x00a60014, 0x018aff99, 0x00850171, 0xfe000031, 0x2215820f, + 0x82b80000, 0xffb52a05, 0x009c0028, 0xfc4b005e, 0x201782a0, 0x2e118217, 0x00edff00, 0x00d8fd00, 0xff1bff00, 0x8210ff19, 0xfdf7260b, 0xfef1fdf5, + 0x3b1b83f0, 0xb9fdc7fd, 0x84fec4fe, 0xe0ffe2ff, 0xdeffdfff, 0x77f4daff, 0x04e50be3, 0x80e4bde3, 0x00231f83, 0x8385e000, 0x84e02907, 0x56e1f9e0, + 0x54e377e0, 0x03830d83, 0xe0b3e23b, 0xe12be038, 0xdf5de223, 0xe079df6a, 0xde3ce068, 0xdea2de96, 0xde00008b, 0x240382a6, 0xde71de74, 0x2507825f, + 0xde7ede30, 0x0d83de7d, 0xde6e2008, 0xdb9edb6b, 0xdbeeda96, 0xdd5ddb73, 0xd737d71a, 0x5c8d5c34, 0x0a000025, 0x03000057, 0x820100b8, 0x82da2055, + 0x27028c03, 0x00008802, 0x92028802, 0x96200582, 0x0227188b, 0x0200008c, 0x82bc0296, 0x21d18239, 0x1b852603, 0x853c0321, 0x00002507, 0x4c033a03, + 0x07930b87, 0x033e0325, 0x8252034c, 0x03662227, 0x271f8968, 0x6c036203, 0xaa038003, 0x098d1189, 0x829e0321, 0x83038231, 0x9a032115, 0x039d0583, + 0x007a0324, 0x47410300, 0x03d00b05, 0x8400a300, 0x7c038500, 0xe6009600, 0x8e008600, 0x9d008b00, 0xa400a900, 0x8a001000, 0x83000001, 0xf0009300, + 0x8d00f100, 0x88009700, 0xdc000101, 0x9e00ef00, 0xf300aa00, 0xf400f200, 0xac00a200, 0xc600c800, 0x6200ad00, 0x90006300, 0xca006400, 0xc7006500, + 0xce00c900, 0xcc00cb00, 0xe700cd00, 0xd1006600, 0xd000cf00, 0x6700ae00, 0x9100ee00, 0xd200d400, 0x6800d300, 0xeb00e900, 0x6a008900, 0x6b006900, + 0x6c006d00, 0xa0006e00, 0x71006f00, 0x72007000, 0x75007300, 0x76007400, 0xe8007700, 0x7a007800, 0x7b007900, 0x7c007d00, 0xa100b700, 0x7e007f00, + 0x81008000, 0xec00ea00, 0x4401b900, 0x02014501, 0x04010301, 0xfb000501, 0x4601fc00, 0x48014701, 0xfd004901, 0x0601fe00, 0x08010701, 0x4a01ff00, + 0x4c014b01, 0x4e014d01, 0x09014f01, 0x0b010a01, 0x50010c01, 0xf6005101, 0x5201f700, 0x54015301, 0x56015501, 0x58015701, 0x5a015901, 0x5c015b01, + 0x5e015d01, 0x60015f01, 0xf8006101, 0x3801d500, 0x62013901, 0x64016301, 0x66016501, 0x0e010d01, 0x68016701, 0x10010f01, 0x12011101, 0xe100e000, + 0x14011301, 0x6a016901, 0x16011501, 0x6b013a01, 0x6d016c01, 0x6f016e01, 0x17017001, 0xaf001801, 0x1901b000, 0x71011a01, 0x1b017201, 0x1d011c01, + 0x73011e01, 0xf9007401, 0xe200fa00, 0x1f01e300, 0x21012001, 0x75012201, 0x77017601, 0x79017801, 0x7b017a01, 0x23017c01, 0x25012401, 0x7d012601, + 0x7f017e01, 0x81018001, 0xba008201, 0x28012701, 0x2a012901, 0xe500e400, 0xd6008301, 0xd900df00, 0xdb00da00, 0xd700de00, 0x4c02dd00, 0xbd034d02, + 0xbf037b03, 0x9d014a02, 0x9f019e01, 0xa0018a01, 0xa201a101, 0xa501a401, 0xa701a601, 0x2b01a801, 0xaa01a901, 0xac01ab01, 0xad012c01, 0xaf01ae01, + 0xb101b001, 0xb301b201, 0xb501b401, 0xb701b601, 0x2d01b801, 0xba01b901, 0xbc01bb01, 0xbe01bd01, 0xc001bf01, 0xc201c101, 0xc3012e01, 0x2f01c401, + 0xc5013001, 0xc701c601, 0xc901c801, 0xcb01ca01, 0xcd01cc01, 0x3a02ce01, 0xd001cf01, 0x32013101, 0x3301d101, 0xd301d201, 0xd501d401, 0xd701d601, + 0xd901d801, 0xdb01da01, 0xdd01dc01, 0xdf01de01, 0xe101e001, 0xe301e201, 0xe501e401, 0x28028f03, 0x2a022902, 0x2c022b02, 0x2e022d02, 0x30022f02, + 0x32023102, 0x90033302, 0x35023402, 0x37023602, 0x8c028b02, 0xb703b603, 0x96029502, 0x98029702, 0x9a029902, 0xb903b803, 0x9c029b02, 0x9e029d02, + 0x9b039a03, 0x9d039c03, 0x92019101, 0x75037403, 0x77037603, 0x79037803, 0xb100a502, 0x3802b200, 0xb5003401, 0xc300b600, 0xb3009301, 0xc400b400, + 0x8200a602, 0x8700c100, 0xc500b403, 0x3c013b01, 0x3e02a702, 0xc5033f02, 0x41024002, 0x3601c603, 0xc803c703, 0xca03c903, 0xcc03cb03, 0xce03cd03, + 0xd003cf03, 0xa902a802, 0xf500aa02, 0xab029501, 0x3701ac02, 0xae02ad02, 0x7a03af02, 0xb002bc00, 0xb202b102, 0xb402b302, 0x86038503, 0x88038703, + 0x12051105, 0x73056f05, 0x70057105, 0x99007405, 0xc200ed00, 0x8f00a500, 0xd103b502, 0xc000bf00, 0xd303d203, 0xae029600, 0x55594240, 0x4d4e5354, + 0x3848494c, 0x34353637, 0x30313233, 0x2c2d2e2f, 0x28292a2b, 0x24252627, 0x20212223, 0x1c1d1e1f, 0x18191a1b, 0x14151617, 0x10111213, 0x0c0d0e0f, + 0x08090a0b, 0x04050607, 0x00010203, 0x18b0012c, 0x19b15843, 0x211b2b07, 0x2d592121, 0x1a200f86, 0xb0280f8d, 0xf2102503, 0x1200b021, 0x1b20248c, + 0xb121248d, 0x200f8e1c, 0x200f8e1d, 0x280f881e, 0x1400b04e, 0x432346b0, 0x2b588344, 0xe64600b1, 0xb01300b0, 0x00b01401, 0x01256583, 0x00b04d13, + 0x2b898612, 0x236a6445, 0x19b06945, 0x60606443, 0x44273182, 0xb0201023, 0x862ff046, 0x2db0848a, 0x430a0bb1, 0x0a654323, 0xb1002c2d, 0x0a820b0a, + 0x09820b20, 0x70252b82, 0x3e4601b1, 0x31088401, 0x3a454602, 0x080002b1, 0xb02c2d0d, 0x02b02b12, 0x03834525, 0x40b06a24, 0x0882608b, 0x82442321, + 0x201982fa, 0x23198913, 0x8cc0ffb8, 0x00201a8b, 0x24853682, 0x13b00023, 0x2509842b, 0x4306b001, 0x778407b0, 0x69202708, 0xb06140b0, 0xb1208b00, + 0x8c8ac02c, 0x620010b8, 0x640c2b60, 0x5c616423, 0x6103b058, 0xb12c2d59, 0x45250300, 0x0d825468, 0x0a827982, 0x20686027, 0x232504b0, 0x28048444, + 0x2503b01b, 0x20684520, 0x820f828a, 0x6068211b, 0x23210f82, 0x94358244, 0x28a78217, 0x87584316, 0xb01bc021, 0x25078212, 0x2b11b045, 0x398247b0, + 0xe47a4729, 0x458a031b, 0x83206918, 0x8a8a270e, 0xa0b02087, 0x1d8b5851, 0x82b02121, 0x59593b23, 0x2c2d1859, 0x23458a20, 0x44606845, 0x6a452c2d, + 0x012c2d42, 0x2c2d2f18, 0x08822121, 0x22071a41, 0x826a6064, 0x6a45227d, 0x25a78361, 0x8a206a45, 0xab84658b, 0x9b848c20, 0x45252a84, 0x69452368, + 0x28259f61, 0x64458a8a, 0x61644523, 0x82668364, 0xb043235d, 0x06845440, 0x5a540023, 0x24e08458, 0x446140b0, 0x84128659, 0x83402006, 0x25042919, + 0x40b04520, 0x21594460, 0x23056c41, 0x4358524b, 0x45241d82, 0x1b446123, 0x8805a742, 0x86602011, 0x20108211, 0x210a8645, 0x5a822001, 0x82492321, + 0x20b02840, 0x00b02063, 0x82235852, 0x8338203c, 0x38652504, 0x38638a00, 0x57824382, 0x2d015926, 0x58504b2c, 0xb0313588, 0x23102505, 0x00f58a20, + 0x236001b0, 0x2c2deced, 0x20118a01, 0x24118661, 0xf5102506, 0x3d1c8300, 0x60462346, 0x23468a8a, 0x608a4620, 0xffb8618a, 0x20236280, 0xb18a2310, + 0x708a4b4b, 0x75826045, 0xb0585023, 0x2e178201, 0xb01b8bba, 0xb0598c46, 0x01686010, 0x822c2d3a, 0x250329d7, 0x3f585246, 0x5911211b, 0x50200e87, + 0x00270e87, 0xb04307b0, 0x820b4306, 0x58522498, 0x822504b0, 0x86492002, 0x82612006, 0x58542e52, 0xb0432021, 0x59585500, 0x5440b01b, 0x200b8358, + 0x850b8254, 0x821b2007, 0xffb824f4, 0x825938c0, 0x05364100, 0x58524b24, 0xec836543, 0x0b836882, 0x21310a86, 0x23640c21, 0x40b88b64, 0x2c2d6200, + 0x5180b021, 0x2c0f8558, 0x1b620020, 0x2f4000b2, 0x02b0592b, 0x20198360, 0x211987c0, 0x19835515, 0x19878020, 0x602e3e88, 0x2c2d2123, 0x000100b4, + 0xb0150000, 0x02882608, 0x16100f29, 0x3a684513, 0x9a1601b0, 0x8565201e, 0x13b0261f, 0x1b035843, 0x83a28202, 0x1b022209, 0x08098303, 0x232b0a30, + 0xb03c2010, 0x2c2d2b17, 0x8a2b28b0, 0xd0202310, 0x2b10b023, 0xc05805b0, 0x20593c1b, 0x00b01110, 0x2c2d0112, 0x4b23534b, 0x20585a51, 0x05428a45, + 0x86118508, 0xb0202ae9, 0x23452503, 0x68612345, 0x0662438a, 0x88446021, 0x25238635, 0x4b2100b0, 0x0c875854, 0x54430228, 0x2b48b058, 0x0e45211b, + 0x84b02005, 0x8449200f, 0x2397830f, 0x58504302, 0x31847486, 0x2a082788, 0x014b0012, 0x2d42544b, 0x0002b12c, 0x0123b142, 0x40b15188, 0x5a538801, + 0x0010b958, 0x54882000, 0x0102b258, 0x42604302, 0x8224b159, 0xb958251b, 0x40000020, 0x02201584, 0x14831583, 0x20202283, 0x49830c83, 0x2f825220, + 0x2f840820, 0x40b91b25, 0x84800000, 0x8404202a, 0x230f8410, 0x0001b863, 0x24851384, 0x01241382, 0x02b86300, 0x10201385, 0xb1212784, 0x22688426, + 0x82020040, 0x85042019, 0x84402019, 0x202d8219, 0x20138204, 0x20138508, 0x20138480, 0x21008359, 0xee8300b1, 0x050a402d, 0x09400840, 0x0d020c40, + 0x82b11b02, 0x829982b5, 0x01ba2d11, 0x01090000, 0x010cb300, 0xb11b010d, 0xa3823582, 0xb8271682, 0x09b18001, 0x84b21b40, 0x82802021, 0x59402121, + 0x00235f82, 0x82558880, 0x257a8606, 0xb3585a55, 0x3682000c, 0x69820584, 0x00834220, 0x452c2d3d, 0x4b236818, 0x20235851, 0xb0642045, 0x7c585040, + 0x608a6859, 0x2c2d4459, 0x82b082b0, 0x01b02189, 0x2a080583, 0x2321585b, 0x1a20b010, 0x108a1bc9, 0x002d59e5, 0x0954b100, 0x008901bc, 0x001c012a, + 0xb2250155, 0x411fffea, 0x00250173, 0x82240132, 0x0024240f, 0x82070101, 0x00232207, 0x20078421, 0x24058222, 0x011f00ff, 0x2017865a, 0x24078659, + 0x00610187, 0x24178214, 0x01480057, 0x202f8256, 0x82178556, 0x00802611, 0x01ef0001, 0x200f827e, 0x2023827d, 0x2411822b, 0x007b017c, 0x20078220, + 0x200f827b, 0x20078211, 0x2417867a, 0x00780179, 0x200f8225, 0x200f8278, 0x2007821c, 0x23078677, 0x005e0176, 0x73227383, 0x07847201, 0x17827220, + 0x1f821520, 0x73867120, 0x07867020, 0x07866f20, 0x1f866c20, 0x0f866b20, 0x07866a20, 0x07866920, 0x07866820, 0xffb26427, 0x01bd1f11, 0x2d7e8663, + 0xb2610162, 0xb8401f15, 0x13b36001, 0x07833613, 0x100cb227, 0x010e4136, 0x20878660, 0x2007865f, 0x2907855e, 0x6101c0ff, 0x36100db3, 0x0f82bf00, + 0x0c000124, 0xe3824f01, 0xfb821320, 0x10b24e32, 0x01b81fff, 0xff0fb24d, 0x4c01bc1f, 0x4b012a00, 0x29201582, 0x28201585, 0xb8241583, 0x13b21d01, + 0x0b222383, 0x068304b2, 0x03b20a22, 0x17200683, 0xbc221483, 0x3b410901, 0x08012105, 0x07201c85, 0x1a221c85, 0x4e8316b2, 0x64861520, 0x4e851420, + 0x64851320, 0x15820620, 0x64820420, 0x01b20522, 0x04334883, 0xff000b40, 0x24e7e81f, 0x11e6e71f, 0xc0ffb81f, 0x82d66440, 0xd94027cb, 0x1192d701, + 0x0382cd1f, 0x0382cc20, 0x0382cb20, 0x0382ca20, 0x0382c920, 0x0382c120, 0x249ba924, 0x03829c1f, 0x209b9a3c, 0x289b991f, 0x1b929b1f, 0x1598f11f, + 0x1998a71f, 0x2a98971f, 0x2598961f, 0x0b82951f, 0x01984023, 0x312e8298, 0x9401f20f, 0x931f1992, 0x911f2b92, 0x001f2192, 0x68830192, 0x925c5608, + 0x0f36100b, 0x2fbc1fbc, 0xbb2f03bc, 0x10b90001, 0xb80f02b9, 0x01b50001, 0xf87ff820, 0x20f71002, 0x03f740f7, 0x1001f57f, 0x02f420f4, 0xee50ee20, + 0x3fec2f02, 0x03ec4fec, 0xd570d530, 0x28b2b302, 0x11b3b21f, 0x3fb32f1f, 0x70b060b3, 0x05d470b0, 0x1f24e4e5, 0x210382e3, 0x6083e42f, 0x82c2b321, + 0x216883c8, 0x0882b4ff, 0x2e7fd224, 0x0382d11f, 0x207fd028, 0x117fcf1f, 0x0382c01f, 0x0382bf20, 0xbe8f2708, 0x0f02beff, 0xbdff01bd, 0x11afb101, + 0x01af701f, 0xa820a810, 0x30898b02, 0x2f898a1f, 0x337f891f, 0x1884881f, 0x0382871f, 0x4984862c, 0x1184851f, 0x3a84831f, 0x4682841f, 0xa0aa6f33, + 0xf0aab0aa, 0xa14004aa, 0x205c1001, 0x035c405c, 0x285182f3, 0x1f187f82, 0x1f4a7f81, 0x20078280, 0x2071827e, 0x0803827d, 0x607f5079, 0x037f707f, + 0x1f210f10, 0x1f2a1516, 0x1f210607, 0x1f2a1819, 0x1f210304, 0x1f2a1213, 0x2a0f2d2c, 0x29280e2b, 0x0e27260f, 0x220f2524, 0x21200e23, 0x0e1f1e0f, + 0x0d1d1c1b, 0x0d1a1918, 0x0d171615, 0x0d141312, 0x0c11100f, 0x0c0e0d0c, 0x0c0b0a09, 0x0c080706, 0x0c050403, 0x0c020100, 0x0f800f10, 0x80064002, + 0x03400206, 0x0f020380, 0x4f003f00, 0x04007f00, 0x822f000f, 0x1d40220a, 0x080c826f, 0xcf00bf23, 0x0800ff00, 0x1f083b1b, 0x1f083a0f, 0x1f083903, + 0x1f083800, 0xb0013350, 0x4b004b12, 0x13b04254, 0x37078201, 0x33b04253, 0x08b84b2b, 0x32b05200, 0x09b04b2b, 0xb1585b50, 0x598e0101, 0xb02b1582, + 0x01b88802, 0x04b05400, 0x8202b888, 0x43122706, 0xb8585b5a, 0x1e831901, 0xb01b8524, 0x28834312, 0x8001b826, 0x1b8d8d85, 0x09851382, 0x2b59592e, + 0x4b64b01d, 0x70b05853, 0x32b0591d, 0x90240883, 0x2b00591d, 0x73240082, 0x73737374, 0x02940782, 0x8316b121, 0x5264337d, 0x04e9b142, 0x68452345, + 0x23e9b061, 0x45e9b044, 0x0b83eab0, 0x4423ea23, 0x8b3a8601, 0x824e8243, 0x824f8754, 0x82028320, 0x22028720, 0x82752b00, 0x2b73221c, 0x97729074, + 0x975e2087, 0x8bc08418, 0x5e182d1c, 0x1406002b, 0x00000a00, 0x1f00d105, 0x00200587, 0x0423008a, 0x83230063, 0xe1ff210e, 0xdd200584, 0x0b820584, + 0xff64fe23, 0xc30b83f5, 0x82082003, 0x20038344, 0x2300aa00, 0x2902d101, 0x2a942eaa, 0x018f0135, 0x01800186, 0x01770154, 0x0175016d, 0x01400169, + 0x82590163, 0x82832005, 0x006f220d, 0x3c3484ae, 0x01e900a5, 0x01190120, 0x0101010e, 0x01110123, 0x01fb0007, 0x011d0125, 0x00040113, 0x200f820a, + 0x202582ec, 0x220382f4, 0x849d0000, 0x01f42605, 0x02f3003a, 0x200b84e1, 0x2c05828b, 0x00d400bf, 0x00ed00e4, 0x000e01fe, 0x340182be, 0x00670067, + 0x00a100aa, 0x01580058, 0x0127011e, 0x00480139, 0x205d82ee, 0x242b821c, 0x00b1009a, 0x202382b9, 0x343382c8, 0x00e600db, 0x010801f0, 0x0176015a, + 0x0294018a, 0x0247020d, 0x0827825a, 0x43011842, 0x4d028901, 0x2404fb02, 0x77010700, 0x67011202, 0xf401ba03, 0x15010601, 0xba002401, 0xda00cc00, + 0x1800b003, 0xe000a001, 0xb3022d03, 0x4c007800, 0x3401d300, 0xa5034001, 0x1f032a03, 0xa502d102, 0x02926982, 0x0014062f, 0x0564000a, 0x001f00d1, + 0x05d105a7, 0x27228df0, 0x23006304, 0x0000a000, 0x21110742, 0x374259fe, 0x65fc2705, 0xeafee8ff, 0x2982aafe, 0x86fe1f24, 0x3f8d57fe, 0x07420da7, + 0xe9ff2109, 0x30084982, 0xfea00017, 0xfe59fe5f, 0x0078fefd, 0xfc870087, 0xfed8ff83, 0xfb2cfdbc, 0xff2eff7e, 0x0100001b, 0x011c0123, 0x00040111, + 0x00f400fc, 0x00d300e1, 0x221382be, 0x82190120, 0x00083413, 0x00e900fe, 0x011d01be, 0x00090113, 0x00d900ff, 0x827600b9, 0x220d852f, 0x86eb00f5, + 0x00f0282f, 0x01e600e0, 0x820c0120, 0x0178293d, 0x01180189, 0x00e8ff08, 0x3e200085, 0x038b0682, 0x0f829220, 0x0000f42f, 0x00003602, 0x0000ce03, + 0x0000f604, 0x21128207, 0x07823a07, 0x0000ca28, 0x00005808, 0x03823809, 0x03829a20, 0x0000ea24, 0x0382220a, 0x0a251382, 0x0b0000ae, 0x2803826c, + 0x0c0000de, 0x0e0000cc, 0x2f038220, 0x0f0000d0, 0x100000c8, 0x110000ee, 0x12000064, 0x14250782, 0x1400000e, 0x24038256, 0x150000ca, 0x33038252, + 0x160000b0, 0x1700003e, 0x18000038, 0x190000b6, 0x1a00009c, 0x1b255b82, 0x1c0000c2, 0x23038268, 0x1d0000e2, 0x1e292782, 0x1e000066, 0x1f0000da, + 0x24038242, 0x210000c8, 0x33038246, 0x2200008a, 0x2300009e, 0x2400008c, 0x25000060, 0x26000012, 0x27254782, 0x2800001e, 0x82038296, 0x8229209f, + 0x242a2443, 0x822b0000, 0x162d2997, 0xec2d0000, 0x7a2e0000, 0xc6240382, 0x1a2f0000, 0x62200382, 0xd6240382, 0x02300000, 0x67820382, 0x00503135, + 0x00f03100, 0x00f23200, 0x009a3300, 0x00723400, 0x82003500, 0x00f42303, 0x37823600, 0x00d43624, 0x33823700, 0x03833820, 0x39281f82, 0x39000078, + 0x3a0000fc, 0x3b248782, 0x3b00004a, 0x3c293782, 0x3d00006e, 0x3e000086, 0x34038228, 0x3f0000b2, 0x40000060, 0x41000070, 0x420000aa, 0x4300007c, + 0x82038220, 0x824420d7, 0xe044308f, 0xc6450000, 0x04460000, 0x8a470000, 0x82490000, 0x3049216b, 0x33820782, 0x53824920, 0x82dc4921, 0x00fe240b, + 0x822a4a00, 0x82522003, 0x82762003, 0x00982303, 0xe3824c00, 0x7b824d20, 0x009a4d25, 0x82bc4d00, 0x00de2403, 0x820a4e00, 0x822e2003, 0x25278203, + 0x0000c04e, 0x0382424f, 0x4f207782, 0x4f202382, 0x4f242382, 0x500000ee, 0x5021f382, 0x2007823c, 0x20038266, 0x20038288, 0x240382ba, 0x510000e6, + 0x2703825c, 0x520000dc, 0x530000f8, 0x5528e382, 0x5500008c, 0x560000e4, 0x572d1782, 0x58000056, 0x5a0000fc, 0x5b000072, 0x20038254, 0x2703829c, + 0x5c0000fa, 0x5d0000ca, 0x5f24df82, 0x60000050, 0x6028af82, 0x610000de, 0x62000084, 0x63248382, 0x6300000c, 0x64257782, 0x650000a6, 0x82038274, + 0x8266201b, 0xe2663c3b, 0xd8670000, 0x7a680000, 0xac690000, 0x766b0000, 0xd66c0000, 0xc86d0000, 0x826e0000, 0x826e209b, 0x826f2097, 0x08702507, + 0x32710000, 0xda240382, 0x62720000, 0xbb820382, 0x00647325, 0x82947300, 0x82c42003, 0x00f42303, 0x93827400, 0x006a7624, 0x8f827600, 0x00ce7624, + 0x5f827700, 0x2f827720, 0x00227825, 0x826c7800, 0x24738203, 0x00006879, 0x24338279, 0x0000cc79, 0x2017827a, 0x205b827c, 0x2413827c, 0x0000b47c, + 0x24cf827d, 0x0000307e, 0x25e7827e, 0x0000187f, 0x0382667f, 0x0000e824, 0x03827081, 0x81203382, 0x81206782, 0x82256782, 0x82000034, 0x82038264, + 0x82822013, 0x82822013, 0x2c832477, 0x82830000, 0x92832197, 0xc2200782, 0xf2230382, 0x82840000, 0x5684215f, 0x8e200782, 0xea230382, 0x82850000, + 0x828520e3, 0x068625e3, 0x38860000, 0xa6240382, 0x0e870000, 0x17820382, 0x73828720, 0x00428829, 0x00e88800, 0x828a8900, 0x82ba2003, 0x00dc2403, + 0x820c8a00, 0x822e2003, 0x007c2c03, 0x005c8b00, 0x00d88c00, 0x82088d00, 0x822a2003, 0x282b8203, 0x0000968e, 0x0000da8e, 0x2877828f, 0x0000ec8f, + 0x0000a090, 0x250b8291, 0x0000e091, 0x03823292, 0x93245b82, 0x93000004, 0x93216f82, 0x2307825a, 0x95000088, 0x96246782, 0x960000ae, 0x97202382, + 0x97294b82, 0x97000036, 0x9800005e, 0x20038230, 0x2003825c, 0x20038290, 0x230382be, 0x9a0000f0, 0x9c290782, 0x9c000006, 0x9d000034, 0x82038224, + 0x049e2507, 0x329f0000, 0x60200382, 0x8c200382, 0xab820382, 0x0018a029, 0x009aa000, 0x8200a100, 0x826e2003, 0x82cc2003, 0x00fe2403, 0x8220a200, + 0x824e2003, 0x82702003, 0x82a82003, 0x00d42403, 0x8202a300, 0x20d38203, 0x216b82a3, 0x0b8280a3, 0xa3248b82, 0xa40000d0, 0xa520e382, 0xa5242782, + 0xa600009e, 0xa621a782, 0x230782c6, 0xa70000f4, 0xa720bb82, 0xa7212b82, 0x200b8298, 0x240382ca, 0xa80000fc, 0x2803821e, 0xa9000064, 0xaa000054, + 0x82038246, 0x82ab2027, 0x82ad2017, 0x82ae2027, 0x82ae200f, 0x92af2943, 0xdaaf0000, 0x12b00000, 0xbc270382, 0xe2b20000, 0x82b30000, 0xeeb329ab, + 0xbeb40000, 0x0ab50000, 0x90280382, 0xfeb60000, 0x0eb80000, 0x5e200382, 0x92200382, 0xe0240382, 0x36b90000, 0xe8230382, 0x82ba0000, 0x52ba21bf, + 0xa7820782, 0x82acba21, 0x00de2407, 0x8208bb00, 0x21638203, 0x078276bb, 0x0382a420, 0xbb20bb82, 0xbc254382, 0xbc000026, 0x2003825c, 0x2003827e, + 0x820382b2, 0x40be24eb, 0x82bf0000, 0x82bf2013, 0xcebf2dcf, 0x82c00000, 0x32c10000, 0x0ac20000, 0x23820382, 0x003ac329, 0x008ec300, 0x8244c400, + 0x209b8203, 0x205382c5, 0x29db82c6, 0x00004ec6, 0x0000f6c6, 0x038218c7, 0x00004223, 0x820383c8, 0x6cc924cb, 0x82c90000, 0xb8c9242f, 0x82ca0000, + 0xa0cb28c7, 0xdccb0000, 0x82cc0000, 0x82cc20bf, 0x82cc204b, 0x82cc206b, 0x4acd257f, 0x7acd0000, 0x9c230382, 0x82ce0000, 0xeace25c3, 0x16cf0000, + 0x38200382, 0x6e200382, 0x37820382, 0x82cccf21, 0x25438207, 0x0000c8d0, 0x03829ed1, 0x0382ca20, 0xd2250f82, 0xd200001a, 0x2703823c, 0xd400009c, + 0xd5000000, 0xd5256b82, 0xd60000e4, 0x82038208, 0x5ad6213f, 0x8c200782, 0x17820382, 0x7b82d620, 0x1782d720, 0x002cd725, 0x8260d700, 0x20178203, + 0x201782d7, 0x28ab82d7, 0x000036d8, 0x000062d8, 0x20f382d9, 0x240782da, 0x0000bcda, 0x208b82db, 0x259782db, 0x0000d6db, 0x038224dc, 0x03823420, + 0x03827020, 0xdd25eb82, 0xdd000036, 0x24038272, 0xde0000b6, 0x82038202, 0x96de21c3, 0x63820782, 0x007cdf24, 0x5b82df00, 0x9382df20, 0xe382e020, + 0x006ce024, 0x1382e000, 0x1382e020, 0x1383e020, 0x0000ac23, 0x206382e1, 0x203f82e1, 0x256f82e1, 0x00000ce2, 0x03821ce2, 0x03826a20, 0xe3256f82, + 0xe3000076, 0x82038286, 0xa6e3294f, 0x78e40000, 0x88e50000, 0xc0200382, 0xf8230382, 0x82e60000, 0x42e621f3, 0x64200782, 0x8a200382, 0xb2270382, + 0xc2e70000, 0x82e80000, 0x82e9203f, 0xd4e92487, 0x82ea0000, 0xecea2587, 0x04ec0000, 0xc6240382, 0x5aed0000, 0x1f820382, 0x00aaee2d, 0x00baee00, + 0x005eef00, 0x823cf000, 0x28e78203, 0x0000d0f1, 0x00009ef2, 0x251782f3, 0x0000caf3, 0x038200f4, 0x03822220, 0x03824420, 0x03826820, 0x0000a824, + 0x03827af5, 0x0000b028, 0x0000f6f6, 0x038206f7, 0x03821620, 0x03824e20, 0xf8244782, 0xf90000aa, 0xfa2d8782, 0xfa000038, 0xfb00006a, 0xfc0000b6, + 0x82038228, 0x82fc200f, 0x08fd24af, 0x82fd0000, 0xf2fd3d2b, 0x02fe0000, 0xd0ff0000, 0x38010100, 0x0a020100, 0x42030100, 0x8c040100, 0x52050100, + 0x62200382, 0x72200382, 0x82200382, 0x23820382, 0x82e00521, 0x00f02207, 0x266e8201, 0x00fa0601, 0x82ec0701, 0x00fc2403, 0x826a0801, 0x00f42403, + 0x82600901, 0x00e83803, 0x00aa0a01, 0x007e0b01, 0x00300c01, 0x006e0d01, 0x007a0e01, 0x82640f01, 0x00742703, 0x008e1001, 0x53821101, 0x00bc1125, + 0x825e1201, 0x201f8203, 0x2c3b8213, 0x01005015, 0x0100da15, 0x0100c616, 0x24438217, 0x01009018, 0x218b8219, 0x0782b019, 0x0100c024, 0x03820e1a, + 0x01001e24, 0x0382201b, 0x03827c20, 0x01008c23, 0x2543821c, 0x0100cc1c, 0x03823c1d, 0x1e2d9f82, 0x1e010040, 0x1f0100c8, 0x20010082, 0x82038248, + 0x0c2229ab, 0xf6220100, 0xc2230100, 0xee230382, 0x82250100, 0x2c2525e3, 0x44260100, 0x54200382, 0x97820382, 0x97822620, 0x0084262c, 0x00a22701, + 0x007e2801, 0x1f822901, 0x1b822920, 0x1b822a20, 0x57822a20, 0x77822b20, 0x006c2b24, 0xd7822b01, 0x9b822c20, 0x00362d24, 0xd3822d01, 0x002e2e24, + 0x8f822f01, 0xa3822f20, 0x00623024, 0x2b823001, 0x5f823220, 0x3324038f, 0x34010026, 0x34294382, 0x350100ce, 0x3601009a, 0x20038222, 0x82038252, + 0x7636215f, 0xea230782, 0x82370100, 0x3838253f, 0x18390100, 0xa6270382, 0x323a0100, 0x823b0100, 0xd43b2dbb, 0x783c0100, 0x5e3d0100, 0x023e0100, + 0xa3820382, 0x009c3f24, 0xff824001, 0x007c4125, 0x82a04101, 0x82c42003, 0x00e82303, 0x2f824201, 0xd7824220, 0x82684221, 0x8296200b, 0x20f38203, + 0x24fb8242, 0x01002043, 0x21178243, 0x07826e43, 0x0382a420, 0x0100dc24, 0x03820044, 0x03822420, 0x03824820, 0x03826c20, 0x03829020, 0x0382b420, + 0x0382d820, 0x0100fc24, 0x03823c45, 0x03827020, 0x03829420, 0x0382b820, 0x46205f82, 0x46209b82, 0x46254782, 0x46010066, 0x20038296, 0x240382ba, + 0x470100ea, 0x8203820e, 0x8247202f, 0x82472047, 0x82472047, 0xf4472547, 0x28480100, 0xe7820382, 0xe3824820, 0xf7824820, 0x00be4824, 0x0b824901, + 0x000c4a24, 0x5b824a01, 0x00d24a24, 0x37824c01, 0x1b824d20, 0x00724e2c, 0x00464f01, 0x006e5001, 0x0b825101, 0x00f65125, 0x82745201, 0x82842003, + 0x00942803, 0x005a5301, 0x820e5401, 0x00c62703, 0x00bc5501, 0x23825601, 0x00265724, 0x1b825701, 0xd3825720, 0x73825720, 0x00c45729, 0x00885801, + 0x82365901, 0x00d02403, 0x82545a01, 0x82862003, 0x00d62403, 0x82425b01, 0x00f82703, 0x00705d01, 0xbf825e01, 0x004e5f24, 0x77826001, 0x00be6025, + 0x82566201, 0x00f42b03, 0x00c86301, 0x00a66401, 0x83826601, 0x006a6724, 0x07826801, 0x00cc6829, 0x00e46901, 0x10d86a01, 0x52020300, 0x0100fc24, + 0x0382206b, 0x03824420, 0x03826820, 0x0382a820, 0x0100e424, 0x0382186c, 0x03823c20, 0x03827420, 0x0382b020, 0x0382d620, 0x0100fa24, 0x03823e6d, + 0x03827220, 0x0382a420, 0x0382ce20, 0x6e251382, 0x6e01001c, 0x20038240, 0x20038264, 0x20038290, 0x240382c8, 0x6f0100ec, 0x20038210, 0x20038234, + 0x20038258, 0x82038280, 0xd46f215b, 0xf6240782, 0x22700100, 0x73820382, 0x826c7021, 0x21338207, 0x0782b470, 0x0382d620, 0x71254f82, 0x7101001e, + 0x2003824a, 0x20038270, 0x20038294, 0x240382be, 0x720100e2, 0x20038206, 0x24038232, 0x73010054, 0x82038246, 0x86742457, 0x82750100, 0x26762533, + 0x4e760100, 0x82200382, 0xb6200382, 0xea230382, 0x82770100, 0x98773147, 0x8e780100, 0xba790100, 0x3c7b0100, 0x207c0100, 0x44200382, 0xeb820382, + 0x828c7c21, 0x82b22007, 0x00de2403, 0x82287d01, 0x824c2003, 0x826e2003, 0x2c3f8203, 0x0100fe7d, 0x0100ee7e, 0x0100d27f, 0x34d78281, 0x0100da82, + 0x01004283, 0x01006c84, 0x01006e85, 0x01005686, 0x21738287, 0x07823e87, 0x66200b83, 0x76200782, 0x8f820382, 0x00968725, 0x82788801, 0x008a2303, + 0x1f828901, 0xbf828920, 0x006c8a25, 0x821c8b01, 0x825a2003, 0x20938203, 0x254f828b, 0x01001a8c, 0x03822c8c, 0x03826020, 0x8c21eb82, 0x820782b4, + 0xf28c25e7, 0x1e8d0100, 0x4a200382, 0x8e240385, 0x8e01000a, 0x8e202382, 0x8f251f82, 0x8f010024, 0x24038292, 0x900100e0, 0x2003822e, 0x2003829a, + 0x820382ac, 0xd0902163, 0xe2200782, 0xf4240382, 0x04910100, 0x73820382, 0x67829120, 0x93829220, 0xf7829320, 0x00409325, 0x825c9301, 0x209b8203, + 0x20a38293, 0x214f8293, 0x0f82d293, 0x94256f82, 0x9401000e, 0x2f038230, 0x95010050, 0x96010044, 0x97010064, 0x98010066, 0x98253382, 0x990100c4, + 0x2703822c, 0x9a0100c8, 0x9b01008e, 0x9b20b782, 0x9c283b82, 0x9c01006a, 0x9d0100c6, 0x9e200b82, 0x9f242b82, 0xa001007c, 0xa120b382, 0xa1244b82, + 0xa20100f6, 0xa3241b82, 0xa4010056, 0xa5294f82, 0xa501003c, 0xa60100f0, 0x2703826e, 0xa70100d6, 0xa801005a, 0xa829e382, 0xa90100aa, 0xaa010048, + 0x82038206, 0x54ab28e3, 0x0cac0100, 0x82ad0100, 0xdead24af, 0x82ae0100, 0x7eaf25eb, 0x56b00100, 0xee270382, 0xe6b10100, 0x82b20100, 0x90b325d3, + 0x26b40100, 0xd0230382, 0x82b50100, 0xb8b525b3, 0x2eb60100, 0xd7820382, 0x0046b729, 0x00c2b701, 0x8222b801, 0x00a22403, 0x8232b901, 0x007a2403, + 0x8244ba01, 0x00f22303, 0x0b82bb01, 0x00f8bb28, 0x00b6bc01, 0x7382bd01, 0x0008be25, 0x8258be01, 0x00bc2303, 0x2382bf01, 0x0046c024, 0x6b82c001, + 0x0080c129, 0x00f0c101, 0x8220c201, 0x82522003, 0x82822003, 0x24678203, 0x0100ecc2, 0x28bb82c3, 0x0100dcc3, 0x0100ccc4, 0x240383c5, 0xc60100fe, + 0x240382c0, 0xc70100f4, 0x82038224, 0x18c824af, 0x82c80100, 0x82c820db, 0xaec8216f, 0xbe200b82, 0xee230382, 0x82c90100, 0x82c9204f, 0x82c9204f, + 0x82c9204f, 0xecc9254f, 0x22ca0100, 0x33820382, 0xc382cb20, 0x5782cb20, 0x3382cc20, 0x00accc24, 0x0b82cc01, 0x0000cd24, 0xc382cd01, 0x0004ce25, + 0x8234ce01, 0x82662003, 0x829a2003, 0x20778203, 0x291382cf, 0x010038cf, 0x01006ecf, 0x038220d0, 0x03825420, 0xd1258382, 0xd1010028, 0x2003825a, + 0x82038284, 0x30d22463, 0x82d20100, 0xc2d2250f, 0x3ed30100, 0x2f820382, 0x82a0d321, 0x82ca2007, 0x00fa2403, 0x822ad401, 0x825c2003, 0x828c2003, + 0x24238203, 0x0100f6d4, 0x201382d5, 0x251382d5, 0x010046d6, 0x038276d6, 0x0100a824, 0x038262d7, 0x0100f224, 0x038222d8, 0x03825620, 0x03828020, + 0x0382b020, 0x0100e224, 0x0382c8d9, 0x0100f823, 0x201b82da, 0x242b82da, 0x0100dada, 0x202f82db, 0x215382db, 0x0b82bcdb, 0x0100ee24, 0x03821edc, + 0x03825420, 0x03828820, 0xdc201382, 0xdd201382, 0xdd201f82, 0xdd257382, 0xde0100f4, 0x20038226, 0x20038258, 0x20038290, 0x230382c6, 0xdf0100f6, + 0xdf201382, 0xdf208782, 0xdf211382, 0x820f82c0, 0x24e0257f, 0x34e00100, 0x44200382, 0x86240382, 0x14e10100, 0x13820382, 0x1382e120, 0x1382e120, + 0x0002e225, 0x8212e201, 0x218b8203, 0x0782a2e2, 0x0382b220, 0x0100c224, 0x038240e3, 0x03825020, 0xe3201382, 0xe4201382, 0xe4290b82, 0xe4010060, + 0xe5010070, 0x20038232, 0x82038242, 0xa4e628cb, 0xdce60100, 0x82e70100, 0x82e72043, 0x72e72113, 0x33820b82, 0x00d4e725, 0x8204e801, 0x21678203, + 0x078264e8, 0x03827420, 0x0100fc24, 0x03820ce9, 0x03821c20, 0x0382b820, 0x0382c820, 0x0100fe2c, 0x0100fcea, 0x0100c4eb, 0x03827aec, 0x0100ac23, + 0x219782ed, 0x0782c6ed, 0x0382d620, 0x0382e620, 0xee25db82, 0xee010006, 0x20038216, 0x20038226, 0x20038236, 0x200382bc, 0x820382cc, 0x54ef297b, + 0xbaef0100, 0x2ef00100, 0xb4240382, 0x38f10100, 0xd0230382, 0x82f20100, 0xf8f2288f, 0xbef30100, 0x82f40100, 0x82f42023, 0x82f5204b, 0xe0f52943, + 0xf0f50100, 0x00f60100, 0x2b820382, 0x0048f624, 0xbf82f701, 0x00d4f724, 0xe382f801, 0x8290f821, 0x00c22407, 0x822cf901, 0x007c2403, 0x8224fa01, + 0x82562003, 0x82a62003, 0x00f02703, 0x0050fc01, 0x4782fd01, 0x6382fd20, 0x0002fe29, 0x005cff01, 0x822e0002, 0x00e63003, 0x00160102, 0x00820202, + 0x005e0302, 0x82140402, 0x82442003, 0x82762003, 0x82ac2003, 0x00de2403, 0x823c0502, 0x00aa2403, 0x82460602, 0x00962403, 0x82020702, 0x826e2003, + 0x00a22403, 0x822a0802, 0x82622003, 0x82722003, 0x82e02003, 0x00f02303, 0x47820902, 0x82900921, 0x00c22307, 0x1f820a02, 0x82880a21, 0x00f62307, + 0x0b820b02, 0x82600b21, 0x00e82407, 0x82380c02, 0x00a42403, 0x82400d02, 0x82502003, 0x82be2003, 0x243b8203, 0x0200000e, 0x215b820e, 0x07827e0e, + 0x03828e20, 0x03829e20, 0x0382ae20, 0x0e211f82, 0x820782ce, 0xee0e218f, 0xfe240782, 0x0e0f0200, 0xc3820382, 0x824a0f21, 0x82662007, 0x82842003, + 0x21938203, 0x0782c00f, 0x0f258b82, 0x100200fc, 0x2003821e, 0x2003823e, 0x2003828a, 0x8203829a, 0xda112987, 0x98120200, 0x1c130200, 0xca230382, + 0x82140200, 0xcc14253f, 0x82150200, 0x1b820382, 0x00541624, 0x13821702, 0x2b821720, 0x00861824, 0x4f821802, 0xb7821920, 0x43821a20, 0x001a1b24, + 0x83821b02, 0x7b821d20, 0x00881d24, 0x2b821e02, 0x3b821e20, 0x00d01f29, 0x004c2002, 0x82362102, 0x20b38203, 0x24c38222, 0x02001423, 0x20838223, + 0x20438224, 0x20db8224, 0x205f8225, 0x25f38226, 0x02001827, 0x03826228, 0x0382b220, 0x0200c224, 0x03829c29, 0x0200ac24, 0x0382ae2a, 0x2b205b82, + 0x2b293782, 0x2b02005e, 0x2c0200d2, 0x2003821a, 0x820382b6, 0xd62d29f3, 0x782e0200, 0x3a2f0200, 0xd4280382, 0x72300200, 0x32310200, 0x87820382, + 0x00183225, 0x82303302, 0x00d62403, 0x825c3402, 0x20538203, 0x25178235, 0x02007c36, 0x03820637, 0x02008a2c, 0x02008c38, 0x02002239, 0x03821e3a, + 0x0200aa24, 0x0382203b, 0x3c307382, 0x3c020080, 0x3d020090, 0x3e020040, 0x3f02002a, 0x4025fb82, 0x40020002, 0x82038212, 0x94412527, 0x1a420200, + 0x1b820382, 0xd7824220, 0x005e4324, 0xe7824402, 0x00464425, 0x82604502, 0x82e22003, 0x00f22b03, 0x00584602, 0x000a4702, 0x3b824802, 0x00104935, + 0x00084a02, 0x00624b02, 0x006a4c02, 0x005a4d02, 0x82224e02, 0x00f43803, 0x00c04f02, 0x00505102, 0x00185202, 0x00000102, 0x06000700, 0x82030000, + 0xb7142506, 0x00040206, 0x2f240383, 0x00cdddcd, 0x31260483, 0x21112130, 0x04822511, 0x25820120, 0x0580fa24, 0x0783fb00, 0x08820020, 0x02000024, + 0x0482cb00, 0xd1056d22, 0x2b083d84, 0x03164026, 0x07020203, 0xdd0005ce, 0xdd03d204, 0x055f054f, 0x094f0502, 0x5d2f5d01, 0x00e4fde4, 0x2f32fd2f, + 0x0130313f, 0x01032103, 0x02344f82, 0xbafe2e6d, 0xfe9b012e, 0x0594016c, 0x04dcfbd1, 0x012ffa24, 0x0027b182, 0x04c703a7, 0x8414060c, 0x40362453, + 0x82070623, 0x01032954, 0x030fcf00, 0x03700360, 0x04300082, 0x100700cf, 0x7f076f07, 0x2f070407, 0x02094009, 0xed2b6082, 0xed5d2f33, 0x2f333f00, + 0x83393912, 0x03232163, 0x04250183, 0x3ce23c0c, 0x250382b1, 0xb3fd1406, 0x03834d02, 0x0025b082, 0x06000095, 0x08b58258, 0x1f001b7a, 0x6340cb00, + 0x0a010956, 0x161d1e09, 0x15301520, 0x15501540, 0x15701560, 0x0cb21506, 0x1413100f, 0x0807140b, 0x2f171c1f, 0x4f183f18, 0x6f185f18, 0x06187f18, + 0x0205b218, 0x06191a01, 0x8f117f19, 0x03049011, 0xde060004, 0x19000004, 0x19021940, 0x21202119, 0x0d022170, 0x11de1411, 0x010b700d, 0x011a170b, + 0xb810041d, 0x0c40c0ff, 0x1037100c, 0x021e13cd, 0x0c040905, 0x0f201083, 0x0c341082, 0x0f070fcd, 0x0b041813, 0x000b0314, 0x17123f2f, 0x2bed2f39, + 0x01290486, 0x33335d2f, 0x5d2f2fe4, 0x85dc8211, 0x30312409, 0x82c01087, 0x5dfd2100, 0xc0210482, 0x2a0c8cc0, 0x21015d01, 0x21152103, 0x84132303, + 0x21352303, 0x03822113, 0x21033327, 0x33033313, 0x081b8205, 0xfe580632, 0x1a014ec4, 0xf15baafe, 0x59f8fe59, 0xf2fe5af5, 0xfe4d4a01, 0x566101db, + 0x070156f5, 0xff57f557, 0xf4fed4fd, 0x030d0150, 0xf0c9fe89, 0x62019efe, 0xf0270383, 0x01ef3701, 0x83a7fe59, 0xed210803, 0x0000c4fe, 0xfe860003, + 0x063c0597, 0x00280028, 0x0036002f, 0x2100b9e6, 0x094084ff, 0x0b37100f, 0x2a04827c, 0xe0ffb81e, 0x0e098440, 0x82200837, 0x05850804, 0x14171426, + 0x25272528, 0x4212362f, 0x64175701, 0x651f6517, 0x74316b2e, 0x792e741f, 0x02000f31, 0x200e2a34, 0x0d09401b, 0x1b201b37, 0x16199c24, 0x0f25292d, + 0x03003033, 0x1c5f060a, 0x056f1c01, 0x0502057f, 0x0a010a50, 0x050a9c0e, 0x1c292506, 0x2f192f19, 0x5f195f1c, 0x190e041c, 0x0304341c, 0x0106208c, + 0x0a402006, 0x20203710, 0x16068b30, 0x09380000, 0x008b2d09, 0x2f160116, 0x2f33ed5d, 0x122f3311, 0x20078239, 0x2d0d822b, 0x115d3917, 0x00393912, + 0xed33332f, 0x01835d2f, 0x82171221, 0x3322081b, 0x112f2b2f, 0x54433939, 0x5d0f4058, 0x6d25500f, 0x7425600f, 0x7f297025, 0x595d0733, 0x2b5d3031, + 0x0282012b, 0x07041431, 0x26112311, 0x33112724, 0x11171616, 0x82262627, 0x34352602, 0x33353724, 0x20108315, 0x08108223, 0x161715f4, 0x06350116, + 0x16141506, 0x27263401, 0x05363615, 0xebe4fe3c, 0xdafe70ae, 0xef5c2d53, 0x9b5c6176, 0x013e3838, 0x5caef110, 0x472c47f7, 0xe2506bbc, 0x425bfdd5, + 0xa1014469, 0x5e42356b, 0xf2a9ad01, 0x0195fe10, 0x27340165, 0x3c322401, 0x16120109, 0x2e2e3815, 0xd4956387, 0x04e7e916, 0xe0fe1d2c, 0xfe073629, + 0x01b32c10, 0x3905e805, 0xfe342f34, 0x08393a21, 0x003b09f8, 0x8f000500, 0x9e09e1ff, 0x0b00ee05, 0x1b000f00, 0x33002700, 0x56408400, 0x0d0d0c0f, + 0x140f0ec1, 0x090f0e0e, 0x09090603, 0x04190613, 0x037fca25, 0x1f030301, 0x0f0709ca, 0xca2b0e06, 0x19011970, 0x13ca3119, 0x2c0c2319, 0x350c3a0e, + 0x4c0c430e, 0x7c0c730e, 0x0e0c080e, 0x1616be2e, 0x0e0cbe28, 0x35101006, 0x0000be1c, 0x0600be22, 0x5d2f0601, 0xed2f33ed, 0x122f3311, 0x09833939, + 0x5d2f2f24, 0x08823f00, 0x2fed5d23, 0x3907853f, 0x8730315d, 0x872b2e05, 0x1401c47d, 0x26222306, 0x33363435, 0x01251632, 0x0f8b0121, 0x2634012b, + 0x15062223, 0x32331614, 0x330b8b36, 0xdce61904, 0xdeeae5e3, 0x0c03e2e0, 0xf3fef4fc, 0x86030c03, 0xf9251187, 0x54544a54, 0x2103834a, 0x09878505, + 0xf90c042f, 0xf7f2f3f0, 0xfad2efef, 0xfbd1052f, 0x2a0d86f9, 0x70a04c01, 0x70a1a170, 0x8660fe70, 0x00c80808, 0x79000300, 0x0a07e1ff, 0x2e00f005, + 0x4d004000, 0x00b91801, 0x4084ff2c, 0x370d09b8, 0x2619260a, 0x2b302b20, 0x2c63424f, 0x2c730270, 0x0f030f08, 0x1f031f2c, 0x2f272c2c, 0x31422b2c, + 0x302c3f24, 0x43034c3e, 0x4f244210, 0x402c4f26, 0x403d403c, 0x433f433e, 0x5f075947, 0x5d3d502c, 0x62036f42, 0x6f3f623d, 0x7f446a42, 0x75037f02, + 0x7f3f703e, 0x272d2242, 0x733e4826, 0x3e3e023e, 0x4241022e, 0x70010e0e, 0x294f013e, 0x297f296f, 0x263e2903, 0x00042d27, 0x420e9435, 0x29010241, + 0x1a00072e, 0x05944b04, 0x3e650013, 0x01023e70, 0x37100f40, 0x10094001, 0x29082d37, 0x0b40277f, 0x27273710, 0x3e142026, 0x207f2f3b, 0x203b3184, + 0xb82e1406, 0x1340c0ff, 0x2e371009, 0x4f2f4f2e, 0x147f3b01, 0x007e4514, 0x41080108, 0x5d3105a2, 0x2b2f3311, 0x2f391712, 0x113911ed, 0x2f323912, + 0x2708822b, 0x005d2b2b, 0x3fed3f2f, 0xfd211782, 0x081b8211, 0x875d5d24, 0xc005c010, 0x041087c0, 0xc0c0c05d, 0x5d003031, 0x212b5d01, 0x06062721, + 0x35242023, 0x36373634, 0xef423736, 0x2f0b8306, 0x17163233, 0x14151616, 0x06060706, 0x21110107, 0x01280983, 0x27263401, 0x22232626, 0x15291483, + 0x36171614, 0x06011336, 0x08098306, 0x331616b8, 0x0a073632, 0x648b24fe, 0xecfe86f1, 0x2932c5fe, 0x2a2e6627, 0x1e1b1c4c, 0xd13e3c3c, 0x41be7990, + 0x241b413d, 0x016f8027, 0x50750132, 0xfc7d0146, 0x18172052, 0x2b111034, 0x6020151a, 0x9739384d, 0x341455fe, 0x62282634, 0x7e69442f, 0xcdff4e4f, + 0x31327e55, 0x441f1946, 0x3b5e2628, 0x33317b46, 0x2a2c303f, 0x6e2e4577, 0x235a3431, 0x4201f3fe, 0x47d8766f, 0x6e04b3fe, 0x10103d34, 0x0e110808, + 0x6e3b2d37, 0xfc6b2c3a, 0x147b01e3, 0x61433f67, 0x1b20201f, 0xa7000100, 0x0102c703, 0x03001406, 0x11401d00, 0x01030202, 0x0300cf00, 0x037f0310, + 0x057f0303, 0x55465d01, 0x05524606, 0x46010221, 0x3982084a, 0x64fec124, 0x3982b303, 0x00152708, 0x4f2c403c, 0x4b024b01, 0x5f074f06, 0x6f075f01, + 0x6f026f01, 0x7f076f06, 0x7f027f01, 0x0e077f06, 0x1b010007, 0x32820f08, 0xc00f002f, 0x1016b504, 0x2f33edf4, 0x3f00335d, 0x0856823f, 0x21015d31, + 0x10110226, 0x15213712, 0x06070606, 0x12141502, 0x17161617, 0x87feb303, 0xc0b9b9c0, 0x93517901, 0x494b3c3f, 0x50973c3e, 0x01e164fe, 0x821b01dc, + 0xe1dc3101, 0x7cb9491d, 0xa4defe77, 0x7ceafeab, 0x0047c176, 0xa6205c82, 0x98208f82, 0x20088f87, 0x03400244, 0x14441340, 0x13500350, 0x03600260, + 0x14601360, 0x03700270, 0x14701370, 0x0400120e, 0x2903821b, 0x0b040401, 0x17b600c0, 0x8f8cf610, 0x02104208, 0x36352107, 0x12363736, 0x27023435, + 0x35272626, 0x03121621, 0xfec0b998, 0x3b985087, 0x3c4b493e, 0x0151933f, 0x02b9c079, 0xfee5fe3c, 0x471de124, 0x017c77c0, 0x01a4ab16, 0xb97c7722, + 0xfee11d49, 0x248d8224, 0x041602cc, 0x088d82e4, 0x9100117f, 0x08667140, 0x08021169, 0x18110808, 0x29111808, 0x4f112908, 0x49054f02, 0x400b4008, + 0x5e11490e, 0x58055e02, 0x510b5108, 0x6711580e, 0x6f026f01, 0x600b6005, 0x740f680e, 0x7d027d00, 0x79077505, 0x730b7309, 0x88107a0e, 0x06012110, + 0x40040006, 0x0f040204, 0x0a010ae0, 0x000c0a04, 0xeb101100, 0x04050b0d, 0x060e0203, 0x080cb00d, 0x00eb0907, 0x2f0c010c, 0x3939f45d, 0x3917ed10, + 0x25078210, 0x33333f00, 0x02845d2f, 0x31334608, 0x5d015d30, 0x13250701, 0x27051323, 0x05372525, 0x25033303, 0xe4040517, 0x0bc0fe6f, 0xc6fe08d5, + 0xfe63016d, 0x39016c9e, 0x0108d407, 0x9afe6f3d, 0xdaa54403, 0x5a019dfe, 0xd3d1a6d2, 0x5a01d5a7, 0xa6d3a5fe, 0x37df82d0, 0x060000da, 0x002c0516, + 0x402d000b, 0x01df0219, 0xd6010a04, 0x0007df08, 0xb42c0984, 0x2007df06, 0x020d700d, 0xede42f5d, 0xe4218882, 0x24078600, 0x21013031, 0x35018811, + 0xebfd1606, 0xebfdeefe, 0x12011502, 0x10021502, 0x1002f0fd, 0x07830c01, 0x61820020, 0xfe233708, 0x016a028e, 0x00030089, 0x0f244031, 0x18020f01, + 0x1f011f00, 0x2f002902, 0x39022f01, 0x3f013f00, 0xdb020b02, 0x0004d903, 0x7f0200d4, 0x2f020202, 0x1000ed5d, 0x6382edf4, 0x01015d30, 0x6a021323, + 0xc5df98fe, 0x05fd8901, 0x4f83fb02, 0x06026e26, 0x26036903, 0x1c314f82, 0xd7011040, 0x60001002, 0x00000200, 0x4f052f02, 0x24a88205, 0x005d2f33, + 0x823c832f, 0x6903219e, 0x02233483, 0x82200106, 0x82b72087, 0x842d2023, 0x401b2687, 0x01d90211, 0x29fe8200, 0x015f014f, 0x017f016f, 0x74830105, + 0x21203683, 0x02253682, 0x018afe2d, 0x822a8276, 0xfe7b2635, 0x06c704bc, 0x2d6d8214, 0x030f4036, 0xc3010100, 0x02140302, 0x71830302, 0xe8ffb829, + 0x10090e40, 0x83180037, 0x205e8204, 0x26bb8201, 0x2b2b2f33, 0x462f3f00, 0x01300933, 0xc7040121, 0xcdfee7fc, 0x14061603, 0x5807a8f8, 0x3308ad82, + 0x05e1ff70, 0x00ef0540, 0x00230017, 0x45314045, 0x4a0a4502, 0x74164a0e, 0x7b0a7402, 0x08167b0e, 0x123a9b1b, 0x1202124a, 0x359b2107, 0x02064506, + 0x89181906, 0x0023fb83, 0x42891e25, 0xed210517, 0x05294a11, 0x3fed5d23, 0x08ed825d, 0x14015d68, 0x06060702, 0x27262223, 0x34350226, 0x36363712, + 0x17163233, 0x10051216, 0x06222326, 0x33161011, 0x40053632, 0xe84a4844, 0x49eca7aa, 0x4a44424a, 0xaba4ec4a, 0x42494ae8, 0x7b6a7dfe, 0x796c6a7b, + 0xe9026c79, 0x5fd7febc, 0x62646361, 0xbc230162, 0x631e01c2, 0x64656262, 0xbce1fe62, 0xe5e50e01, 0xf7fef0fe, 0x8582eaea, 0x0a013a08, 0xec040000, + 0x0f00d505, 0x1f403500, 0x067fa905, 0x0c060601, 0x9c030e06, 0x0ea80f01, 0x038a0e0c, 0x00a80205, 0x6f033f03, 0x2f030303, 0x1032f45d, 0xe41039ed, + 0x32fd2f00, 0x24b3833f, 0x21213031, 0x22018211, 0x82363235, 0x823720a5, 0xec043d09, 0x3a011efc, 0x8448c6fe, 0x0434342c, 0x33014b01, 0x13030401, + 0x191511f3, 0x2ffb3c50, 0x56087182, 0x0000b900, 0xee054a05, 0x8b001d00, 0x7c0e3040, 0x0237100d, 0x21111411, 0x3411250d, 0x4711340d, 0x62115611, + 0x0a157415, 0x0f0f0200, 0x0713990b, 0x019a1c02, 0x1c600060, 0x1c700070, 0xffb81c04, 0x091640c0, 0x00003710, 0x8908021c, 0x16011680, 0x101f8c16, + 0x41020010, 0x102a05ae, 0xed5d2ff6, 0x2f333912, 0xa3845d2b, 0x33ed2e08, 0x5854432f, 0x020f1b40, 0x021f180b, 0x022f181b, 0x183b182b, 0x055b184a, + 0x056b185b, 0x177f186b, 0x31595d0d, 0x2b015d30, 0x36352121, 0x2dc38224, 0x23263435, 0x23070622, 0x33243611, 0x4c460420, 0x21360806, 0x6ffb4a05, + 0x510d0186, 0x7b836679, 0x2057cb5c, 0x8b150147, 0x26011801, 0xb85b918d, 0xf69d0227, 0x754fda61, 0x6f6655ae, 0x4b013b4c, 0xd7eb3e1f, 0x5487fe8d, + 0xed831c8d, 0xe1ff8c2c, 0xf0052305, 0x96004000, 0xed847040, 0xf2832f20, 0x0b0b6108, 0x0b1b3203, 0x0b2b3212, 0x2e22102e, 0x0b3a3223, 0x2e340f3a, + 0x3d343234, 0x32460b49, 0x01513d45, 0x19510b59, 0x01643c52, 0x19640b6a, 0x01763861, 0x38740b7a, 0x1e3d3e1b, 0x011f609c, 0x2c30301f, 0x34091f99, + 0x110d0d07, 0x26190999, 0x1f4f3a8a, 0x1f021f5f, 0x31891731, 0x043d3a1f, 0x4203030c, 0x33055a42, 0x122f3311, 0x2fed3917, 0xed2f5d2f, 0x33ed3f00, + 0x39123f2f, 0x2f240582, 0x3939ed5d, 0x2b21f784, 0x07324701, 0x4a222321, 0x33220544, 0x07413632, 0x26272505, 0x11232326, 0x19410e8c, 0x08694707, + 0x1615af08, 0x31b80416, 0x5456533a, 0xfeb9a2e3, 0x562753f7, 0x883a63ef, 0x3c2c252f, 0x3b8a3131, 0x784e5552, 0x2e2c2c2a, 0x266a2723, 0x2567dc5e, + 0x911a0152, 0x5245d48d, 0x337e9a50, 0x2aba0272, 0xb6695d70, 0x3a433f41, 0x34470124, 0x1920134c, 0x47414347, 0x0103100f, 0x13120a0a, 0x372d3d3f, + 0x410c1210, 0x2143013d, 0x3129313d, 0xc37c5e8c, 0x2a070e1b, 0x54000200, 0x5f05fcff, 0x0a00d105, 0x72000d00, 0x07294d40, 0x160d0601, 0x4a072f0d, + 0x590d4607, 0x6c0d5407, 0x7a0d6607, 0x0b0d7507, 0x600d500c, 0x030d700d, 0x0706060d, 0x0d010906, 0x37824f9b, 0x057f3008, 0x03050503, 0x4f030607, + 0x020a5f0a, 0x0c09070a, 0x010a8b04, 0x061f0f01, 0x0602062f, 0x33115d2f, 0x39ed332f, 0x5d2f3239, 0x123f2f00, 0x835d2f39, 0x30312f0c, 0xdd108701, + 0x01c0045d, 0x23015d5d, 0x01822111, 0x21012e08, 0x11213311, 0xcb5f0501, 0x2ffd91fe, 0x8701b902, 0xfec6fdcb, 0xfe57014f, 0x015b01a5, 0xfc60031a, + 0xfd1a0296, 0x000100e6, 0x05e1ffa4, 0x08af822a, 0x70002b52, 0x7c0b4e40, 0x0b37100d, 0x2d081b08, 0x330d2d08, 0x3b083b03, 0x4111330c, 0x41084903, + 0x58174a11, 0x692a5308, 0x10087908, 0x9b1a1e1e, 0x269a2226, 0x0a061f06, 0x06990e0a, 0x8b222019, 0x110b401f, 0x89141f37, 0x140a1f20, 0x2d000089, + 0x0a010a00, 0xed28ae84, 0xed393912, 0x2fed2b2f, 0x2a08e141, 0x2f32fd2f, 0x015d3031, 0x8214012b, 0x230628f9, 0x11272626, 0x41161633, 0xc88211cb, + 0x5e441520, 0x16520806, 0x53572a05, 0xb399ef5c, 0x5b2a4ef7, 0x933f68d2, 0x2f23222b, 0x3e983625, 0x2c3ea55a, 0x46fd2304, 0x7b245f1f, 0x665b46c1, + 0xc774f801, 0x01494c47, 0x49012237, 0x261d4836, 0x3443401f, 0x1521174b, 0x48030f1f, 0x02f3e3fe, 0x372a2f03, 0x020000b5, 0xf7828600, 0x05484608, + 0x002500ed, 0x406a003d, 0x3309304b, 0x4038300a, 0x410a4309, 0x541c5038, 0x5523501e, 0x621e6424, 0x740a7331, 0x7310740e, 0x731c721b, 0x061d1237, + 0x16209c2f, 0x209b1a16, 0x3b071206, 0x1d19069c, 0x0c161635, 0x20ef8229, 0x22518210, 0x45353f00, 0x12240c33, 0x39122f39, 0x3f22f582, 0xf1823912, + 0x12ed2f23, 0x85f58339, 0x093e45f3, 0x32332426, 0x23111716, 0x8705064a, 0x360123ed, 0x1b4a3536, 0x4a142008, 0x86080911, 0x4c544805, 0x868fd551, + 0x605b4fdd, 0x0162665a, 0xae49d839, 0x811b261a, 0x16d6c052, 0x5763ab4d, 0x64534095, 0x251f39fe, 0x6224252a, 0x28602c34, 0x1c293102, 0x50212c4c, + 0xca73fb01, 0x494e4a45, 0x1001564b, 0x3001c4bd, 0x147c7075, 0x0ddbfe05, 0x2ea8bc21, 0x3a2c2839, 0x228cfec4, 0x5d49505d, 0x14151c1c, 0x232e0a0f, + 0x1f2a9f7b, 0x01001e1d, 0x00009c00, 0xd1052b05, 0x4d000600, 0x01033040, 0x028b0100, 0x82400302, 0x03e60818, 0x0206059a, 0x4b000301, 0x02025b02, + 0x023f022a, 0x025f024f, 0x027b026f, 0x04020206, 0x00080000, 0x2f040104, 0x2f33115d, 0x5d2f3912, 0x3939125d, 0xfd3f2f00, 0x30315d32, 0xed108701, + 0x0101c087, 0x11210121, 0xfd2b0521, 0x0254fe5e, 0x0403fdbc, 0xfba9048f, 0x01b40457, 0x0003001d, 0x05deff63, 0x00f3054d, 0x002e001c, 0x40c00040, + 0x14290355, 0x3d183329, 0x4d184131, 0x5f015431, 0x5f11590a, 0x5e2c591b, 0x54395431, 0x63076a3f, 0x6511650b, 0x6b1b6315, 0x740e7c32, 0x7a197415, + 0x02061832, 0x2c30352f, 0x2c532c40, 0x2c62355f, 0x357f2c72, 0x1a0c3508, 0x2003042c, 0x3b07139c, 0x1d19039c, 0xffb8168a, 0x191f40c0, 0x1616371b, + 0x100d3500, 0x2c19892f, 0x00100000, 0x42000002, 0x10108926, 0x091f8a38, 0xb44d0901, 0x395d2608, 0x3911ed39, 0x3ad08239, 0x3f00ed2b, 0x12ed3fed, + 0x435d3917, 0x16405854, 0x323b321b, 0x3203324b, 0x8204353b, 0x2c3b2ba5, 0x29042984, 0x1211202c, 0x03835d39, 0x30315928, 0x0414015d, 0xfa4e2221, + 0x37362805, 0x35262635, 0x45212434, 0x152305be, 0x45011616, 0xf64b05d3, 0x36172407, 0x83341336, 0x8427202b, 0x05144311, 0x4d05d108, 0xdafeaffe, + 0x4c4deca5, 0x82a18349, 0x0148017a, 0x01140107, 0x9c888439, 0x7563fe96, 0x1f4b2461, 0x4c43261d, 0x2e45611c, 0x70481f28, 0x2b2b7e21, 0x20789545, + 0x2c241f56, 0xfcc6a001, 0x9e3b3c44, 0x41ad705b, 0x78b63c06, 0xabcde2b1, 0x063aa66a, 0x2802c83b, 0x11125a4c, 0x3b233711, 0x230c2142, 0xfd563616, + 0x304a487e, 0x27102c0f, 0x7b68456f, 0x3e171413, 0x00020000, 0x05e3ff68, 0x00ef052a, 0x003d0025, 0x39434060, 0x3c243c22, 0x49224a29, 0x5a294924, + 0x5f125a10, 0x5a1a5f15, 0x6b3a5e1b, 0x7902743a, 0x7a0f7d05, 0x123a7c28, 0x9c382014, 0x179c2c17, 0x0a072006, 0x069b0e0a, 0x09261419, 0x89261d09, + 0x323f0000, 0xed2f1d89, 0xed2f3311, 0x26061b43, 0x3f2f32fd, 0x43ed3912, 0x0225081b, 0x23040607, 0x0b0f4422, 0x6b483720, 0x35262406, 0x48210034, + 0x18430568, 0x43062008, 0x78080918, 0x05363437, 0x6a62602a, 0x4ad1c6fe, 0x1e281bac, 0x964e606f, 0x0d4c3b36, 0x546f9557, 0x63533f99, 0x0e014d01, + 0x5b4ed78b, 0x2f81fe5c, 0x2a4c1d29, 0x1f214727, 0x23252a27, 0x6a2d385f, 0x3c03031d, 0x6ebefebb, 0x07127777, 0x200e2501, 0x872d2a27, 0x2935325f, + 0x93c13b2b, 0x492d01ef, 0xf6fe564b, 0x2b9d7a87, 0x211b1c20, 0x46486820, 0x161b1c5f, 0x290b0c17, 0x00020000, 0x080482e1, 0x63045722, 0x07000300, + 0x0f401d00, 0x0502d901, 0x0705d906, 0x4fd00006, 0x2f010101, 0x3939ed5d, 0x3fed2f00, 0x2906264a, 0x21112111, 0x8afe5702, 0x03837601, 0x01da0227, + 0x019dfb89, 0x25428289, 0x8efe4d00, 0x47869402, 0x33404639, 0x060f050f, 0x051f0418, 0x0428061f, 0x062f052f, 0x053f0438, 0x840b063f, 0x07db2d5e, + 0xd40608d9, 0x045f044f, 0x047f046f, 0x6b870082, 0x4a32fd21, 0x6e8406d0, 0x82015d21, 0x0113236c, 0x70851323, 0x98fe3d24, 0x7183c5df, 0xfd26fd23, + 0x05df4a05, 0xf9ffcc37, 0x33050406, 0x5d000600, 0x04053c40, 0xc2040605, 0x03140203, 0x08c28203, 0x0604052c, 0x140100c2, 0x03010000, 0x05040003, + 0x25001501, 0x58005500, 0x7a016a01, 0x00000601, 0x00600030, 0x00040070, 0x08200100, 0x0b4b0870, 0x05e34305, 0x312f332e, 0x2b2e8730, 0xc4107d08, + 0x182e0487, 0x35080884, 0x01350105, 0x06010111, 0x05c8fa04, 0x0359fc38, 0x2b0207a7, 0xfe2b02e4, 0xfe81fee1, 0x00020083, 0x050901f9, 0x002304f7, + 0x00070003, 0x05204033, 0x010606d6, 0x758202d6, 0x1f000022, 0x40206a82, 0x052a6a82, 0x01500000, 0x09200101, 0x6d820970, 0x2f335d22, 0xed226d85, + 0x59412f33, 0xf705250a, 0xfe0402fb, 0x03270383, 0xfc0c0117, 0x820c01e6, 0xec0021a0, 0x2420e582, 0x2c08e584, 0x033f4061, 0x04020304, 0x140605c2, + 0x03060505, 0x02040302, 0x140001c2, 0x05000101, 0x03050105, 0x2a011a01, 0x5a005701, 0x75006501, 0x84e58b00, 0x83e8857a, 0x20e9997a, 0x33e78301, + 0x24060111, 0xa703c8fa, 0x380559fc, 0xd5fd2402, 0x7e011f01, 0x1f220182, 0xeb82d5fd, 0x00937a08, 0x057f0400, 0x001c00ef, 0x40890020, 0x140a0467, + 0x2d18140a, 0x22052d03, 0x3f033f18, 0x4e183205, 0x42054e03, 0x5f184313, 0x5f035f02, 0x520d5c04, 0x6f185414, 0x64046c03, 0x6414640a, 0x790a7018, + 0x75147013, 0x06091c18, 0x16701a08, 0x12161601, 0x08041ad7, 0x1ece1f08, 0x1f1fd220, 0x094fcf06, 0x0902097f, 0x1709d10f, 0x00010000, 0x17002200, + 0x17021710, 0x33115d2f, 0x20b6822f, 0x05ce44ed, 0xfd2f0025, 0x823f2f32, 0x115d2203, 0x05694912, 0x07061429, 0x15070606, 0x49361121, 0x664a065e, + 0x32b50808, 0x11210104, 0x3b7f0421, 0x5f973636, 0x7347a0fe, 0x81433b3f, 0x4bb54875, 0x0a014028, 0x2201f789, 0x6cfe7ffe, 0x65049401, 0x39399b65, + 0x01e4255a, 0x2d281351, 0x64436a28, 0x01313e55, 0xda3b1b31, 0x0801ebfa, 0x00020000, 0x071bff91, 0x00ee0524, 0x00520045, 0x0f5e4087, 0x2f051f05, + 0x2f012f00, 0x2f1f2f02, 0x2d212e20, 0x24282b27, 0x4a2d202c, 0x66276a40, 0x74097d45, 0x7e217a0d, 0x742d7327, 0x16527b4e, 0xc84a1818, 0x07c61a14, + 0x0bc85007, 0xc6303333, 0x37430b14, 0x0443c624, 0xb2461708, 0x0eb34d1a, 0x331a0e33, 0xb01e3d03, 0x2a540303, 0x013d00b0, 0x31e7823d, 0xed2f3311, + 0x2f391712, 0xed2fed2f, 0x3f003939, 0xeb822fed, 0x2f21f382, 0x831882ed, 0x30313004, 0x1216015d, 0x07021415, 0x06062721, 0x51022223, 0x332705b4, + 0x35171632, 0x47331133, 0x06200b81, 0x24066550, 0x37363233, 0x202b8315, 0x07fc4c24, 0x32332426, 0x26110104, 0x08099153, 0x703506ae, 0xfe3c507f, + 0x6a391006, 0x44caa364, 0x4d9c373b, 0xe81c6642, 0x5e2324aa, 0x85e45553, 0x5957e57f, 0x5757696f, 0xd95580e6, 0x6db85d54, 0x72c9feb7, 0x74847f71, + 0xb13b0171, 0xfe3101b0, 0x2c4629b1, 0x63566860, 0x02054e34, 0xc2c7fe70, 0x5fdffe8c, 0x012d264e, 0xb77ae40d, 0x31484044, 0xd0fc3e1b, 0xa955b94f, + 0x545654ff, 0xfe575564, 0xfeaa9cfa, 0x5a5657fa, 0x15c2191f, 0x73747e16, 0xbac14601, 0x74763d01, 0x22fc7c86, 0x1315f801, 0x989e92a8, 0x00020029, + 0x06000018, 0x00d1051e, 0x000a0007, 0x065240ae, 0x0a090902, 0x81010208, 0x4f081082, 0x04030a09, 0x06050582, 0x07380637, 0x0744064b, 0x0754065b, + 0x0762066d, 0x0771067e, 0x0802000a, 0x70930302, 0x000a010a, 0x0401090a, 0x7a050607, 0x03060106, 0x03020105, 0x08070604, 0x05090a09, 0x0505000a, + 0xffb80002, 0x0a1240df, 0x21053710, 0x00380482, 0x00010c0f, 0x010c1f0c, 0x115d2f05, 0x2b2f5d33, 0x17125d2b, 0x3f2f0039, 0x2f220683, 0x3856ed5d, + 0x4d093305, 0x7d054d00, 0x04057d00, 0x5d01595d, 0xc0fd1087, 0x0584c0c0, 0x43c00830, 0x3fb45854, 0x02094d09, 0x21595d00, 0x01820321, 0x21012908, + 0x1e06020b, 0xfd6773fe, 0x7dfe67d8, 0xba012602, 0x01b7b72b, 0x05d3fe2d, 0x026dfcd1, 0x00eafd16, 0xbe000300, 0xb8050000, 0x4908e582, 0x00240015, + 0x405a0033, 0x58144b3b, 0x69155402, 0x70156402, 0x720d700c, 0x12130823, 0x1e00942c, 0x60021e10, 0x021eaf1e, 0x1d071e1e, 0x2d030893, 0x7e160793, + 0x0f0f2c12, 0x007d2507, 0x2c1e35b8, 0x34b5077f, 0x32fdf610, 0xa846f410, 0x00ed2405, 0x833fed2f, 0x715d210a, 0x28069a4c, 0x06070614, 0x11212306, + 0x0b6c4c21, 0x99460120, 0x4c232005, 0xc7470696, 0x08a54c05, 0xb8056708, 0xd3584c57, 0x0276fda2, 0x52a7b442, 0x68725355, 0x14feab92, 0x7d2a2f25, + 0x5b3c2471, 0x20342580, 0x2d42375e, 0x1c54569e, 0x3c3b8ca2, 0x6cc8012d, 0x384238aa, 0x2918d105, 0x6c5d912b, 0x1d082ea5, 0x25cf01b6, 0x0310124a, + 0x1106c5fe, 0xd2fd4917, 0x0d134d47, 0x028dfe02, 0x00531919, 0x67000100, 0x6e05e3ff, 0xf982ee05, 0x00b9862b, 0xb384ff2b, 0x1537100d, 0x2a0785b8, + 0xc2ffb811, 0x0c095540, 0x823e2f37, 0x08590804, 0x231d181d, 0x29042603, 0x2f092f08, 0x5923231d, 0x57045902, 0x561c590a, 0x7a037524, 0x132f0f09, + 0x136f133f, 0x1304137f, 0x0c911a13, 0x302d2004, 0x702d602d, 0x2d2d042d, 0x13009126, 0x35b82d13, 0x354f3500, 0x2003355f, 0x34b7067d, 0x5dedf410, + 0x0032f610, 0x2f33ed3f, 0x5704845d, 0x052107ff, 0x0b274322, 0x16171622, 0x5405e84a, 0xf74b0cf2, 0x37920807, 0x06061133, 0x03060607, 0xe7fea65f, + 0x6a6f6565, 0x1f016165, 0x40975eaa, 0x2c296d43, 0x3736551c, 0x92514980, 0x4f493b3e, 0x49963d3c, 0x313a8946, 0x38281b54, 0x80493866, 0x6161621d, + 0xb1be2201, 0x63672001, 0x1311156c, 0x97fe142f, 0x20204218, 0x393b332c, 0xbc8c86bc, 0x2a2f3736, 0x18421d24, 0x2c199cfe, 0x00161510, 0x00be0002, + 0x053d0600, 0x000e00d1, 0x403c001d, 0x5512592a, 0x6a02651b, 0x7902760d, 0x9216060d, 0x92170308, 0x0a7d0f07, 0x2a827a00, 0x1f1fb82f, 0x501f401f, + 0x7f17031f, 0x101eb507, 0x21e982f6, 0x0d425df4, 0x2fe48205, 0x07021401, 0x21230406, 0x04322111, 0x05121617, 0x080dfe41, 0xbe3d063d, 0xfcfe6d91, + 0x02f3fdb2, 0x0801b61c, 0xfeb19a5a, 0x3b746b73, 0x61617c7b, 0x693d8089, 0xd0e70262, 0x4258b7fe, 0x3dd10534, 0xc1fe5e38, 0x3bd193d5, 0x5cfc151d, + 0xc93c2119, 0x83010000, 0xf30421a5, 0x0b32a582, 0x1a404700, 0x06309109, 0x06600640, 0x06800670, 0x008206b0, 0x05012708, 0x0a030291, 0xb8080191, + 0x0f40c0ff, 0x08371510, 0x00000804, 0x7f09060d, 0x100cb501, 0x1132fdf6, 0x33332f33, 0xb8422b2f, 0x51ed2008, 0x1120070d, 0x1135ae82, 0xfbf30421, + 0xfd3504cb, 0xfd850249, 0x05b7027b, 0xfee0fed1, 0x200382ff, 0x20798790, 0x387982e9, 0x40420009, 0x30910514, 0x60024002, 0x02020302, 0x08910107, + 0x03030703, 0x31738300, 0x370d0911, 0x2f0b0000, 0x020b4f0b, 0x077f0502, 0x75830ab5, 0x76825d20, 0x2f332b24, 0x2d432f00, 0x0a9c4705, 0xe9327282, + 0x7b0253fd, 0x82fe85fd, 0xb1042b04, 0xe0feebfe, 0x658284fd, 0x6700012f, 0xe305e1ff, 0x2400ee05, 0x00b99600, 0x05af420f, 0xb80b2908, 0x2440e0ff, + 0x23370c09, 0x2b072b05, 0x581b2317, 0x661c5416, 0x71076905, 0x7a077d05, 0x0c1b7112, 0x232f9222, 0x2302236f, 0x393d8c83, 0x23371009, 0x2f030923, + 0x6f0d3f0d, 0x040d7f0d, 0x92140d0d, 0x931d0409, 0x232f1303, 0x3c24824f, 0x0d060023, 0x007e210d, 0x26402600, 0x057d1a01, 0x25061506, 0xb7060306, + 0x5df61025, 0x2bb483ed, 0x112f33ed, 0x5d2f3912, 0x3fed3f00, 0x5d200b82, 0x2b210c83, 0x34bf825d, 0x2b012b5d, 0x23040625, 0x10110020, 0x04322100, + 0x26231117, 0x0ac14226, 0x50081382, 0x21113736, 0xe3052111, 0xa4b6fe64, 0x52fe84fe, 0x8401b201, 0xa30a0193, 0x326c1c2b, 0x66579b3a, 0x493f42a6, + 0x00010601, 0xfe163516, 0x55af02d7, 0x9d014d27, 0x5b016c01, 0x4f35a901, 0x4d15a3fe, 0x3c2e201b, 0x79b93c3e, 0x02fafef7, 0x01240102, 0x05fd4119, + 0xf5053208, 0x0b00d105, 0x2b404200, 0x08309103, 0x08600840, 0x08800870, 0x080608b0, 0x070a0508, 0x12050103, 0x007f0209, 0x0d000db6, 0x0d600d50, + 0x7f030803, 0x05fa4105, 0xf6105d29, 0x3f0032fd, 0x83333f33, 0x0ef841d1, 0xfef5052b, 0xfec9fd80, 0x02800180, 0x28038237, 0x0570fd90, 0x02dffdd1, + 0x24738221, 0x0300007b, 0x087384e3, 0x22403926, 0x06930409, 0x93030a03, 0xa10b0801, 0x05037f0a, 0x0300a102, 0x0d030301, 0x300d1f0c, 0x700d400d, + 0x115d040d, 0xf4365e83, 0xf4fd1032, 0xfd2f0032, 0x32fd3f32, 0x21213031, 0x23113311, 0x03822111, 0xe3033335, 0xf4f498fc, 0xf4f46803, 0xc1030801, + 0xf8fe0801, 0x82003ffc, 0xff2a2467, 0x82c603e9, 0x00183767, 0x591c4032, 0x93150102, 0x0a0a0317, 0x1306920e, 0x150a1717, 0x2282807f, 0x7f1a0022, + 0x21073f50, 0x6682ed5d, 0x5c820020, 0x543f2f21, 0x0623057e, 0x4c060607, 0x35200d23, 0x2d086f82, 0x46c60321, 0x98ce4945, 0x2445b667, 0x69516830, + 0x06171871, 0xd502abfe, 0xab62b501, 0x0f453f3b, 0x122e010e, 0x3132381f, 0x51025b75, 0x61411201, 0x2c063305, 0x0b00d105, 0x1c404501, 0x19110c02, + 0x08024e01, 0x05830c09, 0x87151121, 0x002a080b, 0x43020002, 0x3b405855, 0x08350239, 0x0845024d, 0x0865026d, 0x0207027b, 0x81010302, 0x08000b00, + 0x01028009, 0x0b0a0302, 0x1147000a, 0x0a0b2907, 0x05030a05, 0x0902010a, 0x40330982, 0xb800010d, 0x1040c0ff, 0x00371009, 0x06040d00, 0x41040807, + 0x4a0807a7, 0x33113917, 0x175d2b2f, 0x2f002f39, 0x3917123f, 0xc0108700, 0xfd05c008, 0x8701c004, 0xc008fd10, 0x43595d00, 0x60405854, 0x0b150b04, + 0x09390929, 0x095d0b36, 0x096d026b, 0x0b760979, 0x1402040a, 0x64035002, 0x74036002, 0x840b7402, 0x0920238f, 0x94843724, 0x010b4228, 0x09200908, + 0x9c88371d, 0x010b4d27, 0x02000807, 0x2c998304, 0x0b330b22, 0x010a4002, 0x0a0b020a, 0x209f8703, 0x429f850c, 0x01200543, 0x84063f44, 0x5d5d219b, + 0x31229d85, 0xa0875d30, 0xc0042b24, 0xa2825d01, 0x82082b21, 0x5d012da3, 0x2b2b0059, 0x212b2b01, 0x11070121, 0x3f057a52, 0xfe2c0601, 0x5a43fe29, + 0x800180fe, 0xbd011402, 0x5402bafd, 0x0519fe6d, 0x025efdd1, 0x004ffda2, 0x08057d41, 0x05f00421, 0x000500d1, 0x02144023, 0x01910403, 0x00600000, + 0x00030070, 0x7f040700, 0x1006b501, 0x5711edf6, 0x3f210561, 0x06c75531, 0xfbf00423, 0x235082ce, 0xfbd105b2, 0x06214387, 0x2f4382d7, 0xb9d7000c, + 0xd0ff0a00, 0x10091140, 0x30054e01, 0x02200583, 0x032a0584, 0x40c0ffb8, 0x37100d42, 0x04824004, 0x0b0b3908, 0x0b2b0b1b, 0x0c090003, 0x100b0f0a, + 0x1f0a1c09, 0x2c03260b, 0x2f0a2f04, 0x3b0a3b0b, 0x49094f0b, 0x840b7a0a, 0x940b8a09, 0x9b0a9709, 0x0a36140b, 0x027f0a59, 0x0a04057f, 0x13294683, + 0x0537120e, 0x37100c80, 0x25048302, 0x030a0205, 0x17820409, 0x100fb424, 0x08834c00, 0x0d1f4022, 0x40220983, 0x0f820b0b, 0x04000b33, 0x03090703, + 0x05090b07, 0xb6007f02, 0x010e000e, 0x282c8205, 0x371009b7, 0xb5078205, 0x21dd820d, 0x04825d2b, 0x39391122, 0x28055e41, 0x2b2b2b2f, 0x31391712, + 0x26078230, 0x5d5d015d, 0x82002b2b, 0x21213409, 0x01210111, 0x21112111, 0x06210101, 0xfe82fed7, 0x82f7feec, 0x01963603, 0x014f01be, 0x03be014e, + 0x0279fde5, 0x051bfc87, 0x0215fdd1, 0x055741eb, 0x05080634, 0x000900d1, 0x0700b9bd, 0x0b40e0ff, 0x4e01120d, 0x05832002, 0x82b80721, 0x0951220f, + 0x830f8320, 0x4f3d0805, 0x02074002, 0x0780028f, 0x16020602, 0x06000202, 0x06200610, 0x06490147, 0x00060778, 0x01012d02, 0x02010807, 0x03060304, + 0x30062303, 0x53014001, 0x70016001, 0x07067701, 0x07020106, 0x25ca8240, 0xb6008007, 0xd7820b0b, 0x100db627, 0x010b0037, 0x24e28602, 0xb5048002, + 0x24e2840a, 0xfdf6102b, 0x42e4822b, 0x22080944, 0xb0585443, 0x58524b11, 0x01070b40, 0x06820202, 0x06061407, 0x2b2e8707, 0x59c47d87, 0x005d0159, + 0x8272715d, 0x212b21f8, 0x5108f686, 0x08062111, 0x88fd8efe, 0xcb01a0fe, 0x60011f02, 0x02fcfe03, 0xabfcd105, 0x00005503, 0xff670002, 0x056606e1, + 0x000b00f0, 0x40530023, 0x29052720, 0x700b2907, 0x7f057001, 0x070b7f07, 0x40099215, 0x0b091809, 0x04094c00, 0x40039221, 0xe8ffb803, 0x0f831340, + 0x0f13032e, 0x25b8007d, 0x1b01253f, 0x24b7067d, 0x5d20aa82, 0x00270382, 0x1a002b3f, 0x86ed1018, 0x30312606, 0x0010015d, 0x05f84521, 0x53002021, + 0x79500c92, 0x0630080a, 0xfe68fe66, 0xfe99fe98, 0x01980168, 0x01660167, 0x3803fe9a, 0x33323e36, 0x81494885, 0x3d3f3236, 0x4a863232, 0xe802864a, + 0x5dfe9cfe, 0x6401a301, 0xa1372482, 0x20fd5ffe, 0x867db944, 0x363c3abc, 0xc5383c34, 0x3bbb8582, 0x8339383b, 0xbe2708d3, 0x8b050000, 0x1000d105, + 0x47001f00, 0x10531940, 0x04750f66, 0x07921903, 0x92180907, 0x1109030a, 0x4a003a7d, 0x47000200, 0x0c3a0584, 0x21000037, 0x2140211f, 0x7f071902, + 0x1020b509, 0x5d32fdf4, 0x2b2f3311, 0x8447ed5d, 0x0a344506, 0x4a112321, 0xaa4807b0, 0x0539080e, 0x5941468b, 0xfeefa3db, 0x8e780280, 0x5f5a4bc3, + 0x2d4473fe, 0x425f723c, 0x2b7f626e, 0xfb032125, 0x5841bf64, 0x051bfe5a, 0x3b3131d1, 0x5b3f8ab8, 0xfe051812, 0x20241842, 0x08b18359, 0x57fe673e, + 0xf0056606, 0x34001700, 0x2b407900, 0x31292d29, 0x2b743325, 0x317b2d7b, 0x1f073475, 0x4f941b1f, 0x1c230123, 0x92092918, 0x182f402f, 0x4c000b09, + 0x9215042f, 0xb8294029, 0x2040e8ff, 0x293b0f83, 0x4f801813, 0x20290129, 0x2034292a, 0x7d032c04, 0x3f36b832, 0x7d0f0136, 0x4135b72c, 0x1224069d, + 0x2f2f3917, 0xa441d582, 0x3912290d, 0x32ed5d3f, 0x5d30312f, 0x20179f41, 0x05614a13, 0x46113321, 0x26250535, 0x00242726, 0x06d74111, 0x69040222, + 0x3412aa41, 0x7964045b, 0x26167029, 0x77878338, 0x3a3a3bb1, 0xfeb2fe05, 0x07dc418b, 0x6f01f022, 0x3312b841, 0x5663dffe, 0xf8fe0b1c, 0x363b140d, + 0x13589035, 0x57019901, 0x0805e741, 0xfe99fe69, 0x007ffef7, 0x00be0002, 0x05580600, 0x000e00d1, 0x4079001f, 0x1a100c52, 0x3d102c10, 0x5c104d10, + 0x50195510, 0x66106c1a, 0x0b107f1a, 0x0f811011, 0x1f330f1f, 0x1f731f43, 0x08151f03, 0x4f113f93, 0x03117f11, 0x07141111, 0x0f031593, 0x011f7014, + 0x00010f70, 0x1c1f1c7d, 0x210f0f14, 0x21402120, 0x7f120802, 0x4920b514, 0x1229077f, 0xed2f3939, 0x2f005d5d, 0x06844933, 0x5d39122b, 0x87013031, + 0x01c0fd10, 0x0ea24c5d, 0x58210121, 0xc54c052f, 0x04560808, 0x27382e01, 0x768b4568, 0x282a7c5c, 0xfe570225, 0xb16afe2b, 0x840282fe, 0x5453be84, + 0x048e9963, 0x17503809, 0x6ffe0710, 0x4b1f2012, 0x220236fc, 0xd105defd, 0x9f32321e, 0x45d0a578, 0x6d000100, 0x6605e5ff, 0x3300ec05, 0x00b9d300, + 0x4080ff22, 0x37100d0e, 0x04828008, 0x091e052a, 0xb81f370e, 0x2340e2ff, 0x2b080882, 0x181b180b, 0x1b3a0136, 0x1b4a0145, 0x09653351, 0x13750976, + 0x31771778, 0x0d0c1a0c, 0x004e0010, 0x40f4ffb8, 0x01100d0b, 0x0908114e, 0x2b260f82, 0x40f8ffb8, 0x0f82092c, 0x02002608, 0x2b1a1100, 0x3f031d04, + 0x21210121, 0x041d9325, 0x07300720, 0x07030770, 0x03930b07, 0x7d2b2013, 0x207d111a, 0x2240821a, 0x820940c0, 0x00002f68, 0x34b70635, 0x3311e610, + 0x39392b2f, 0x87582fed, 0x05a84c06, 0x12112408, 0x54433917, 0x04194058, 0x3a2b142b, 0x4a2b3511, 0x5a2b4511, 0x6b2b5511, 0x7b2b6511, 0x0c2b7411, + 0x822b595d, 0x09d06400, 0x5a210021, 0x04200588, 0x210bad58, 0x9d542627, 0x17042505, 0x24262311, 0x0809ce61, 0x17161691, 0x66051616, 0xc0fe8bfe, + 0x78edfeb9, 0x2701772a, 0x24722388, 0x5053392c, 0xbc52bb54, 0x017501a5, 0x1f019325, 0xfe5a2969, 0x5f3088fb, 0x5a38272c, 0x5797527d, 0xd401a3ab, + 0x41edfedc, 0x5f650132, 0x120e0c66, 0x47313536, 0x1b231413, 0xd09bd13d, 0x2b390701, 0x6148a9fe, 0x3d0f120d, 0x1a3f3b27, 0x381c2011, 0x000100c1, + 0x05000029, 0x00d1054b, 0x402c0007, 0x9104011a, 0x00030306, 0x057f015b, 0x01047f5b, 0x08090404, 0x09400910, 0x4903097f, 0xe42705b3, 0x2f00e4fd, + 0x5f32fd3f, 0x0531095c, 0xfe2ffe4b, 0x052ffe80, 0xfbb10422, 0x01b1044f, 0x24538220, 0x05e1ffa9, 0x085382d6, 0x3800112a, 0x07112540, 0x35920c03, + 0x75034503, 0x13030303, 0x11807f10, 0x11021190, 0x13401311, 0x007f0801, 0x9f078f07, 0x2f070307, 0x27054c4b, 0x3f00ed5d, 0x333fed5d, 0x68435f82, + 0x21113005, 0x33161411, 0x11353632, 0xfed60521, 0x82b9feb0, 0x01b13c01, 0x90928282, 0x02820185, 0xfeecfe1b, 0x012601da, 0xfcb70313, 0x92989b5f, + 0x82a103a1, 0x0018247d, 0x82040600, 0x0006367d, 0x0500b98e, 0x0f40c0ff, 0x4e001009, 0x02060200, 0x03020500, 0x05715003, 0x100a0f25, 0x82210337, + 0x82002004, 0x08002931, 0x33112f03, 0x2b2b5d2f, 0x1220dd82, 0x3e056350, 0x4205320b, 0x60055205, 0x05057005, 0x3031595d, 0x40585443, 0x5804072d, + 0x04050206, 0x82820605, 0x05260835, 0x02038104, 0x28012703, 0x4c014302, 0x7d017202, 0x00220602, 0x00420322, 0x00730342, 0x5d060373, 0x10875d01, + 0x0382c0fd, 0x01c00829, 0x2b00595d, 0x82210101, 0x06013801, 0xfee1fd04, 0x01e1fd52, 0x01680193, 0xfad10568, 0xfbd1052f, 0x831604ea, 0x00422489, + 0x82c50800, 0x010c28bb, 0x0b00b974, 0x83b4c0ff, 0xb80821ba, 0x2720c482, 0x03210983, 0x3dca8740, 0x09080503, 0x02060c0b, 0x08020306, 0x007a0e0f, + 0x06030675, 0x370f0a21, 0xdfffb800, 0x08830e40, 0x1f0e002b, 0x600e400e, 0x2f06030e, 0x25dc825d, 0x005d2b2b, 0xb6423f3f, 0x245a8305, 0x1009b3e0, + 0x21598237, 0x0782b7e0, 0x82200321, 0x2b2b2204, 0x08e7862b, 0x08746a74, 0x03020b74, 0x371d1740, 0x100e5403, 0x41024e37, 0x4d084904, 0x460a4209, + 0x50025f0b, 0x5c085804, 0x6f0a5409, 0x69046102, 0x65096a08, 0x790b660a, 0x70097f08, 0x8b0b760a, 0x8b048402, 0x880a8409, 0x94029b0b, 0x94099b04, + 0xfb01f40a, 0x020d2005, 0x021f0402, 0x022f0410, 0x023e0420, 0x08390431, 0x0a32093d, 0x040c0b36, 0x40e0ffb8, 0x37321e09, 0x04822002, 0x0d870a20, + 0x0d830920, 0xc0221b82, 0x83820940, 0x88830220, 0xd6271b82, 0x1d153d40, 0x822a0937, 0x7f340804, 0x0b020102, 0x0100810c, 0x01047000, 0x7f070804, + 0x06060506, 0x12050901, 0x22051d01, 0x33052d01, 0x43053c01, 0x56054c01, 0x62055901, 0x72056d01, 0x10057d01, 0x28058f41, 0x10875dc0, 0x5dc0c0fd, + 0x84ef8201, 0x5d5d2602, 0x5d2b2b00, 0x23048259, 0x2101012b, 0x21210283, 0x2a078213, 0xfec50813, 0xfe57fe6f, 0x82fcfef5, 0x016f3805, 0x1201e591, + 0x05017f01, 0xfad105f0, 0xfcca032f, 0xfbd10536, 0x830104ff, 0x42002003, 0x0b2f0a75, 0x00b9f800, 0x40f4ff0b, 0x01100a0b, 0x830c054e, 0x83082005, + 0x097a21d7, 0x02210f82, 0x08058320, 0x04020b2f, 0x14021b08, 0x020f0408, 0x021f0800, 0x0a370810, 0x0843024c, 0x0853025c, 0x027f0866, 0x790c0870, + 0x75037501, 0x7a077705, 0x060b7a09, 0x08ec8303, 0x0a0b0045, 0x08050605, 0x09040807, 0x09220912, 0x3a092902, 0x80090209, 0x010a030a, 0x0b060502, + 0x02000708, 0x07290107, 0x07780739, 0x070407f2, 0x01060682, 0x02000a08, 0x04030604, 0xdfffb80a, 0x10090940, 0x82210637, 0x83002004, 0x8217200d, + 0x83042008, 0x060a2a0d, 0x0b0a0605, 0x00000404, 0x09785b0d, 0x2f391724, 0x00822b2f, 0x3f2f0030, 0x30313917, 0xfd108701, 0xc087715d, 0x675310c0, + 0x240b8205, 0xc008c008, 0x25048310, 0x5d01c005, 0xb5695d00, 0x21212105, 0x08063f41, 0x0121015a, 0x44fe0406, 0xb9febffe, 0x100258fe, 0xbb01fbfd, + 0x3f013601, 0xf8fda901, 0x16feea01, 0xe302ee02, 0xd00130fe, 0x01002cfd, 0x00000900, 0xd105dc05, 0xa2000800, 0xff0700b9, 0x100cb4d0, 0xb8074e01, + 0x3c40e0ff, 0x4e010b09, 0x083b0634, 0x084b0644, 0x12070204, 0x75075207, 0x0623da82, 0x82820807, 0x06073938, 0x05040581, 0x043c013b, 0x044c014b, + 0x04680458, 0x04710170, 0x07010408, 0x052e2c82, 0x40e8ffb8, 0x000d0c0d, 0x0203054c, 0xed821f00, 0xe1211182, 0x33f68340, 0x07015c00, 0x5c057f01, + 0x0a1f0400, 0x0a040402, 0x010a3f09, 0x2506dd44, 0xe41039ed, 0xf5822b2b, 0x17122b22, 0x8208fa46, 0x05ae4cfc, 0x2b2b0027, 0x21110101, 0x38dd8211, + 0xfddc0501, 0xfd80fedb, 0x01b401d2, 0x05370142, 0xfd6ffcd1, 0x032e02c0, 0x210582a3, 0x9c820040, 0xd5825a20, 0xd5823d20, 0x00092108, 0x333b405d, + 0x49073303, 0x43034302, 0x07030507, 0x02810808, 0x02021403, 0x1f020f03, 0x20022f02, 0x0734d082, 0x03069103, 0x91080202, 0x09090401, 0x03080403, + 0x0b070702, 0x02231c83, 0x605d2f02, 0x332205ea, 0x7b572f2f, 0x69312009, 0x5d2108ec, 0x848e8321, 0x3d053793, 0xe6021dfb, 0x97043efd, 0x0d031bfd, + 0x9a031701, 0xe4fe2001, 0x8d836bfc, 0x78fef83d, 0x14069403, 0x25000700, 0xcd051540, 0xcd060002, 0x00000301, 0x0140bf06, 0x6d300101, 0x332009d7, + 0x340a715a, 0x21112115, 0x64fd9403, 0x9dfe9c02, 0x78fe6301, 0xfaf09c07, 0x24d98244, 0x05bcfebd, 0x2b4b8209, 0x40360003, 0x0300010f, 0x0102c303, + 0x0126ce82, 0x02000201, 0x6d64ffb8, 0x01212e23, 0xfe090521, 0x01e7fccd, 0x07bcfe36, 0x20538258, 0x209f82c6, 0x279f8462, 0x04124021, 0x030007cd, + 0xbf239f82, 0x87050000, 0x3333239c, 0x9b88ed2f, 0x99823520, 0x03213525, 0x8264fd62, 0x829d2097, 0xf078249f, 0x83f0bc05, 0xc53f08e7, 0x2c068002, + 0x0600d105, 0x34404900, 0x051a021a, 0x0652055c, 0x0365016a, 0x0370017f, 0x0670057f, 0x0501020a, 0x0301030f, 0x37100b40, 0x03050303, 0x0040002f, + 0x70000002, 0x40040104, 0x5a087008, 0x002c0621, 0x2b2f333f, 0x3939125d, 0x5d013031, 0x35051144, 0xfe2c0633, 0xfe7cfec0, 0x02c2fe9b, 0x8202f926, + 0xc7fd3702, 0x73825103, 0xfef0ff2e, 0xffc005a2, 0x00030075, 0xca01b611, 0x05254c82, 0x33112f02, 0x06e0652f, 0x0521353f, 0x0530fac0, 0xd3a2fed0, + 0x76010100, 0xcc030305, 0x04008c06, 0x00b93100, 0xb3e0ff04, 0x4d86820d, 0x03210605, 0x05f04f03, 0x100c092f, 0x01007037, 0x2f020000, 0x2b5d2f33, + 0x20058200, 0x2387822b, 0x0123012b, 0xcc2af482, 0x01a0fef6, 0x0103055f, 0xb8821475, 0xff565808, 0x04b704e2, 0x000f0083, 0x40660030, 0x05180f47, + 0x4918192c, 0x591c4905, 0x6b1c5905, 0x6b0f6905, 0x7225761c, 0x0d2d7029, 0x1f1ff101, 0x4027162b, 0x27370f0d, 0x2ba72327, 0x16a70d10, 0x011f3016, + 0xba2f8430, 0x01322f32, 0x281f280f, 0x07282802, 0x31bb1984, 0x82edf610, 0x105d3979, 0x3232fdf6, 0xed3f2f00, 0x2f32fd3f, 0x3912112b, 0x3031ed2f, + 0x0635015d, 0x2507736a, 0x32331616, 0x0e841736, 0x2622232a, 0x37363435, 0x35372436, 0x2105945e, 0x68641123, 0x11580805, 0x49520321, 0x39362caa, + 0x4017180c, 0x2a6f3644, 0x3526561d, 0xd8a04472, 0x0164656e, 0x94989f28, 0x212cca59, 0x81010139, 0x11013301, 0x25019bfe, 0x0e1506ea, 0x23354111, + 0x1314142c, 0x3e168a2c, 0xc6171812, 0x2d9c7b9a, 0x0609262d, 0x113f475d, 0x290f0f01, 0x04fdcabd, 0x3208fd82, 0x05eaffaa, 0x0014063e, 0x001d0010, + 0x45244038, 0x571d4501, 0x7f0f660f, 0x06197f05, 0x100e9614, 0x981b0009, 0x11081603, 0x1fbc0083, 0x840b1706, 0x841eb908, 0xf41022d3, 0x52d684ed, + 0x10210515, 0x2abc8200, 0x11210727, 0x36361121, 0x5f123233, 0x11200655, 0x7908dd84, 0xdbfe3e05, 0x408e5edb, 0x01a7fe0f, 0x71ad5368, 0x8dfee6d5, + 0x6c338366, 0x31462731, 0x41028c8f, 0xb2fef7fe, 0x06382628, 0x42dafd14, 0xfecdfe52, 0x1fa296eb, 0x0eccfd1d, 0x0100a80a, 0xe2ff5800, 0x82047104, + 0x88002700, 0x03302340, 0x193b093f, 0x03401b31, 0x084c0445, 0x194c094c, 0x1f4b1b44, 0x1f6b1f5b, 0x260e207c, 0x37100c20, 0xd6ffb814, 0x37100db3, + 0xe0ffb80e, 0x10821540, 0x09401036, 0x10303710, 0x17101001, 0x3f100c97, 0xb8240124, 0x1f40c0ff, 0x243b1482, 0x00971d24, 0x24001016, 0x247f2410, + 0x292f2403, 0x60292401, 0x831a0129, 0x8228bb06, 0x115d2cdd, 0x5d2f5d33, 0xed3f0033, 0x4a2b2f33, 0x2b2005af, 0x24051f50, 0x27262205, 0x05aa4126, + 0x5457eb82, 0x05156e0b, 0x36376608, 0x11333736, 0xf3020606, 0x595af393, 0x5b5e6962, 0xc27380ee, 0x3b153354, 0x4162292b, 0x929f9b90, 0x22246d44, + 0x55331634, 0x49461eb9, 0x9d95de49, 0x42474be4, 0xcdfe2832, 0x16173012, 0xa29db71d, 0x14151fa8, 0xcdfe152c, 0x02002f28, 0xe1ff5a00, 0x1406ee04, + 0x20001300, 0x28403e00, 0x1a4a0a4a, 0x20031071, 0x3be5822a, 0x0f0d2003, 0x18001237, 0x01100e97, 0x1605961e, 0x84021411, 0x1b22ba00, 0x21bb0883, + 0x1024c282, 0x3232fdf6, 0x2f23c082, 0x833fed3f, 0x215d2bba, 0x06063521, 0x11022223, 0x38683634, 0x21112106, 0x080c3e5b, 0xfeee0438, 0x6aa25d98, + 0x4853f6cd, 0x6561c244, 0x68014481, 0x542698fe, 0x728e8e23, 0x756e317e, 0x3c01484c, 0xdd8f0c01, 0x2b534b4f, 0xfbde0121, 0x10270222, 0xa59db10e, + 0xa7822595, 0xff586108, 0x04fc04e2, 0x00150086, 0x406e001c, 0x2b022453, 0x3c02330a, 0x4d02430a, 0x430a4d05, 0x5a104c0e, 0x550a5b05, 0x6b06691b, + 0x60146009, 0x79027417, 0x740e7409, 0xf1011414, 0x190c1c1c, 0x001012a7, 0x53081008, 0x73086308, 0x08080508, 0x160c9804, 0x84160909, 0x2f1ebc00, + 0x011c011e, 0x1dbb0f84, 0x5d20cf83, 0x3320d782, 0x2205cc64, 0x43ed3f5d, 0x2120074f, 0x500a654e, 0x7e080731, 0x26262511, 0x07062223, 0xc8fcfc04, + 0x72b4b908, 0x7a283ed6, 0xaefe83d8, 0x550198fe, 0x12012901, 0x9afe1401, 0x68706a03, 0xef010886, 0x2f528c84, 0x2c31dffe, 0x19013001, 0x45011601, + 0xfcfeebfe, 0x6c727155, 0x00010077, 0x0300002b, 0x001e0682, 0x40400018, 0x04000024, 0x0b011598, 0x11a70e08, 0x0a0a0d0f, 0x0f1a0000, 0x021a1f1a, + 0x11080f08, 0x5f0f840c, 0x020d6f0d, 0x335d2f0d, 0x733939ed, 0x39240507, 0x3f2f002f, 0x3f270d82, 0x312f32fd, 0x84230130, 0x158a0892, 0x21152115, + 0x23112111, 0x34353335, 0x16323336, 0x1b820317, 0x6a2c4d18, 0xfe16014b, 0x9a98fef6, 0x50dedb9a, 0x0c053282, 0x6d4c1207, 0x91fcf409, 0x1ff46f03, + 0x090bcece, 0x5a000200, 0xee0459fe, 0x26008204, 0x55003300, 0x164e3840, 0x334e2d4e, 0x335d165d, 0x336a1669, 0x0c7a087d, 0x337a2375, 0x1824150b, + 0x1021972b, 0x96310f26, 0x0e0a0a18, 0x091c0697, 0x27241b09, 0xba008415, 0x1b832e35, 0xf61034bb, 0xfdf410ed, 0xdc553232, 0xed2f2b07, 0x12ed3f3f, + 0x30313939, 0x5c5b255d, 0x0c066205, 0x06353526, 0x00222306, 0x20093742, 0x0f374237, 0x515a7c08, 0x7590e551, 0x422c53e3, 0x7d644bbe, 0x411c1f21, + 0xffec619e, 0x42474e00, 0x955b65c1, 0x5d010d3d, 0x5a1f98fe, 0x798e8e24, 0x81683677, 0x3e3dd89e, 0x01141c37, 0x252b1a19, 0x46642022, 0x013e3515, + 0x8b22011c, 0x4e464bca, 0xfc32262b, 0x0dfd01ff, 0xa292a30f, 0x00002280, 0x00aa0001, 0x06120500, 0x00160014, 0x01234038, 0x3c151315, 0x04157011, + 0x080d1001, 0x0e101395, 0x82010d00, 0x30182bd6, 0x02186018, 0x0d840b10, 0x274217b9, 0xedf62305, 0xd4882f00, 0x11212122, 0x21051e5a, 0x26550622, + 0x36363f05, 0x15163233, 0x96fe1205, 0x4d14110e, 0x3b653145, 0x680198fe, 0xb66cb160, 0x442d02cd, 0x96822087, 0xe4fc232f, 0xd3fd1406, 0xd3d4504b, + 0x00020000, 0x200482a0, 0x2885821c, 0x00070003, 0x05214031, 0x05b1539e, 0x00060339, 0x04010f02, 0x0584009d, 0x1001009d, 0x50010201, 0x70096009, + 0x765d0309, 0x3f220646, 0x04585d3f, 0x21372506, 0x12022111, 0x0a296783, 0x7c0184fe, 0x01a06304, 0x25548211, 0x59fec6ff, 0x59829002, 0xe1821220, + 0x2840413c, 0x011a010a, 0x009e1402, 0x20151015, 0x00150315, 0x0f11a710, 0x970b0707, 0x11821c03, 0x840e1034, 0x18ba0013, 0x0601182f, 0xf4105d2f, + 0x3232fd3c, 0x9f572f2f, 0x22688406, 0x5714055d, 0x35250b9f, 0x21352311, 0x08788335, 0xb8ea9020, 0x1c25a162, 0x681a5a1e, 0x3d02d54c, 0x7f0181fe, + 0x11d5be14, 0x0a020109, 0x038e7c0e, 0x8d84f408, 0x20056d41, 0x088d8252, 0xc8000b5d, 0x020d5440, 0x0b0e090d, 0x091f011f, 0x092f012d, 0x0238013f, + 0x014e093f, 0x015d094b, 0x016e095f, 0x017f096d, 0x0b86097d, 0x0ba102a9, 0x0bb202bf, 0x0bf502ca, 0x03020219, 0x0b008701, 0x1f080f00, 0x4a080208, + 0x30090109, 0x09371711, 0x0b300288, 0x01023710, 0xffb80302, 0x821b40d8, 0x033e080b, 0x070a0b0a, 0x02000800, 0x0f0a0503, 0x430b3305, 0x730b530b, + 0xb80a040b, 0x1e40c0ff, 0x0a37100c, 0x030a0b02, 0x00100000, 0x0d2f0002, 0x400d0001, 0x020d700d, 0x05840308, 0xf6100cb9, 0xa04532fd, 0x39172305, + 0xde542b2f, 0x313f3106, 0x10870030, 0xc0082bc0, 0x2bfd052b, 0x5dc00471, 0x2105c957, 0x1c575d01, 0x52053d0b, 0xc5fe5dfe, 0x0198fe62, 0x01840168, + 0x016cfe9f, 0x8efe77e9, 0x5ffc1406, 0x1cfef001, 0x21056d42, 0xff821202, 0x1d000325, 0x82021240, 0x41842010, 0x052b06d6, 0x05700560, 0x5d2f5d03, + 0x572f00ed, 0xcd410615, 0x852c8205, 0x073c0837, 0x008204d6, 0x405e0028, 0x03160441, 0x281c151c, 0xa616a718, 0xb616b71b, 0x9526081b, 0x1711101a, + 0x0e04021f, 0x10149509, 0x1e0e0f0f, 0x17aa1f84, 0x11028401, 0xaa0e840d, 0x02100200, 0x2a290082, 0x302a0029, 0x702a502a, 0x07de592a, 0x1032fd25, + 0x42f439ed, 0x172106c9, 0x056d4739, 0xcc421120, 0x3615260e, 0x16323336, 0x20058417, 0x2b1c8a15, 0x96fef404, 0x49121208, 0x28643542, 0x3308ef83, + 0x6f67aa5d, 0xcc6c30aa, 0xfebdb662, 0x11120796, 0x562d434a, 0xe4fc1c03, 0x73523102, 0x2b212424, 0x04e4fc18, 0x52497c63, 0x685b6063, 0x25fdcdda, + 0x72533102, 0x1f201782, 0x82088343, 0x158343dd, 0x83430f20, 0x43b68533, 0x92822083, 0x504b2c08, 0x0200d3d4, 0xddff5800, 0x86042605, 0x23000b00, + 0x12402100, 0x10099815, 0x16039821, 0xbc00830f, 0x06831b25, 0xf61024bb, 0x68f410ed, 0xfc50051f, 0x00102208, 0x193d5621, 0xfe260525, 0x82dcfebd, + 0xbd430801, 0x22014501, 0x41012601, 0x232345fe, 0x5a202024, 0x25513434, 0x21222721, 0x31395920, 0xfe310259, 0x01c1feeb, 0x0115013f, 0xfe3e0117, + 0x2bdafdc0, 0x86636b79, 0x1c222928, 0x6788272a, 0x2729875c, 0x82002124, 0xaa2e08a1, 0x3e0564fe, 0x13008204, 0x3f002000, 0x02442b40, 0x20440f44, + 0x13520f52, 0x13640f65, 0x1c7f0879, 0x11961709, 0x1e0f0c10, 0x0b160697, 0xb882141b, 0x1b0e222c, 0xb90c8409, 0xfdf61021, 0xbf823232, 0x3f3f0023, + 0x6a0282ed, 0x11240caa, 0x15211121, 0x08135749, 0x48455539, 0x866068b6, 0x0198fe46, 0x71ad5368, 0x8dfee9d2, 0x6c337970, 0x28522431, 0x41028c8f, + 0x4e4ae48b, 0xfe252950, 0x75ff052c, 0xccfe5242, 0x94a4ecfe, 0xcbfd1d1f, 0x82a7080e, 0xfe5a24ab, 0x86ee0464, 0x403b3dab, 0x4a0a4a27, 0x5b204d1a, + 0x70206b20, 0x07207a10, 0x100e9718, 0x961e0f12, 0x1b011605, 0x460c5648, 0xa78a0638, 0x48112121, 0x1c460e54, 0x98fe3110, 0xce69a858, 0x444853f5, + 0x815f61c2, 0x5d010d48, 0x250a5548, 0x0a0264fe, 0x58484647, 0x32262309, 0x5748d3fc, 0x01310809, 0x0000aa00, 0x6704d803, 0x38001200, 0x700c01b7, + 0x0000020c, 0xc0ffb804, 0x100a1740, 0x0f950437, 0x090f0b0f, 0x14000008, 0x0c01142f, 0xb9098407, 0x061b4413, 0xa1822f20, 0x2bfd3f22, 0x47059c56, + 0x07200577, 0x08084841, 0x03171622, 0x661720d8, 0x44764d22, 0x680198fe, 0x134ab077, 0x0c031230, 0x18140808, 0x630410fd, 0x024366a5, 0x28086682, + 0xff5f0001, 0x047a04e1, 0x00300082, 0x32104082, 0x4718492f, 0x7901752f, 0x751b790b, 0xb81f0723, 0x2140e0ff, 0x0537100e, 0x38048220, 0x1101113b, + 0x04281a00, 0x2150031d, 0x09402101, 0x21213710, 0x101da725, 0x20aa8307, 0x2f0e8213, 0xa70e0707, 0x28211603, 0x83111a83, 0x00071a21, 0x0a311783, + 0x00370e09, 0x32703200, 0x5d2f0701, 0x2b2f3311, 0x0a235512, 0x794a2b20, 0x4f112005, 0x2b210545, 0x07c76a2b, 0x16331128, 0x16161716, 0xa36c3233, + 0x6a272006, 0x322005d1, 0x2205884a, 0x76062223, 0x228205c0, 0x7a047b08, 0xf1fec8fe, 0x214af496, 0x3841471b, 0x666a518e, 0x8928543c, 0x01949938, + 0x7e0a0133, 0x501f41e7, 0x775769cd, 0x7f376436, 0x01888e40, 0x38d5ae64, 0x13280122, 0x21171a2d, 0x25292e2f, 0x0f150911, 0xa27ea928, 0xfe1d33d7, + 0x304537e4, 0x152a282c, 0x2510150b, 0x0001009f, 0x03eaff2b, 0x00a40578, 0x404a001b, 0x1b050a2c, 0x0b0f0205, 0x0b020b70, 0xa7070d10, 0x1b0f0a0b, + 0xeb82171b, 0x82400e21, 0x1d002c29, 0x08011d0f, 0x0a84100d, 0x83076f08, 0x333323e6, 0xec8432fd, 0x46335d21, 0x333b05b6, 0x2f3939ed, 0x5d30315d, + 0x23060625, 0x11352622, 0x11333523, 0x15211121, 0x86141121, 0x372f08e8, 0x3a780333, 0xcdd25e82, 0x68019494, 0xaffe5101, 0x470e0f02, 0x125b1c44, + 0x110f0a1e, 0x0d02ceaa, 0xfe4101f4, 0x72fef4bf, 0x2323583b, 0x820a1829, 0xa1270877, 0x0905e1ff, 0x16006304, 0x29403e00, 0x061a060a, 0x135b134c, + 0x077f136c, 0x0207137a, 0x0f090515, 0x16059511, 0x48021401, 0x0b2b083a, 0x17b90884, 0x5dedf610, 0x4dfdf610, 0x0e4905b1, 0x06334b05, 0x8f8a9782, + 0x21112808, 0x98fe0905, 0xba73a664, 0x0b6a01c9, 0x454d1314, 0x0134702e, 0x4f4c7c68, 0xdb02d1d6, 0x7155d3fd, 0x22222525, 0x821c0321, 0x001e2489, + 0x82150500, 0x06220889, 0x00b98100, 0xb4c0ff05, 0x4e00100e, 0xe0ffb805, 0x0d092840, 0x05b04e00, 0x19011601, 0x58054702, 0x01820405, 0x82870621, + 0x04053832, 0x03020386, 0x026b0164, 0x027b0174, 0xffb80004, 0x092140df, 0x8303370f, 0x05003504, 0x020f0302, 0x0375007a, 0x08000002, 0x084f082f, + 0x10030002, 0x2f242f82, 0x33115d5d, 0x26069970, 0x01303139, 0x555d2b2b, 0x00270a3a, 0x2b2b005d, 0x82210101, 0x05013801, 0xfe4ffe15, 0x0152fe68, + 0x0104017d, 0xfb630401, 0xfc63049d, 0x820403fc, 0x002d247a, 0x82a90700, 0x000c27ad, 0x0b00b9ce, 0x3b55e0ff, 0x40e02307, 0xb782097b, 0x83200321, + 0x093e0805, 0x19040602, 0x29041602, 0x39042602, 0x30023f01, 0x33093b04, 0x4f01490a, 0x4b044002, 0x5b0a4309, 0x5c045502, 0x6c0a5309, 0x6c046402, + 0x7d0a6109, 0x7d047002, 0x1c0a7209, 0x0c860b02, 0xe2830c01, 0x08042008, 0x07140704, 0x0107f402, 0x05068607, 0x5e015106, 0x6a016505, 0x7f017105, + 0x08750605, 0x55020b73, 0x0f29089b, 0xb8000802, 0x1940dfff, 0x077b5309, 0x000e0030, 0x10061006, 0x400e200e, 0x060e600e, 0xf7832f06, 0x552b2b21, + 0x5d200599, 0xf783f982, 0xc0715d23, 0x82fe82c0, 0x83012005, 0x21fa83f9, 0xfd820303, 0x13132608, 0x07131321, 0xfea4fea9, 0xfee1e582, 0x01a7fe7d, + 0x01f0c07a, 0x04bde43f, 0x029dfb63, 0x040bfdf5, 0x03fafc63, 0x33038306, 0x00010000, 0x0500001a, 0x00630440, 0xb9fe000b, 0xe0ff0800, 0x01218683, + 0x0581544e, 0x20022f2a, 0x59025608, 0x4a020408, 0x08259b82, 0x40b6ffb8, 0x3e088226, 0x0b13051c, 0x0b35053a, 0x0343014e, 0x094e0743, 0x03560159, + 0x07560558, 0x0b570959, 0x53200b0e, 0xe0220546, 0x08822c40, 0x200f9454, 0x082d494b, 0x2d0a9254, 0x0701074b, 0x40d0ffb8, 0x37171111, 0x92548807, + 0x040f2608, 0xdfffb800, 0x204582b3, 0x051f420a, 0x54061e41, 0x2f280f91, 0x0400010d, 0x04020410, 0x20051f42, 0x12975412, 0x97542b20, 0x540b820a, + 0x2b230b97, 0x82005d2b, 0x2b400803, 0x0321212b, 0x01012103, 0x21131321, 0xfe400501, 0xfef6f05c, 0xfebb0164, 0xeca4014c, 0xfe9d01ed, 0xfe50014b, + 0x023102b0, 0x01b6fe32, 0x00d7fd4a, 0xfe1e0001, 0x04170564, 0x00070063, 0x0000b9a2, 0x8206f742, 0x40e031b2, 0x000d0943, 0x4a05084e, 0x59035805, + 0x05036605, 0x30082282, 0x04050605, 0x01b901ab, 0x02870102, 0xa4000203, 0x0207b607, 0x05068607, 0x07030b06, 0x25031805, 0x38052b03, 0x7b056a03, + 0x7a037502, 0x0b067405, 0x25f28302, 0x370f0923, 0x04822106, 0x05000237, 0x06450635, 0x050f0602, 0x02021b04, 0x4f092f09, 0x06000209, 0x85118210, + 0x3f0023f4, 0x8b523f2f, 0x24cc8206, 0x5dfd1087, 0x830484c0, 0x430120e9, 0x132d0818, 0xa5022101, 0x72010001, 0x7afe90fd, 0x2bd282b2, 0x028d017a, + 0x0101fad6, 0x005b04a4, 0x5424d182, 0x73040000, 0x2508d182, 0x40760009, 0x08070355, 0x082b081b, 0x0845083b, 0x37082604, 0x96088508, 0xb308a308, + 0xd508c508, 0x0908e508, 0xa0548808, 0x021c3d05, 0x0743024c, 0x0765026a, 0x0775027a, 0x97030707, 0x08020f06, 0x04000197, 0x08040300, 0x072bea82, + 0x07200710, 0x0b070703, 0x5401022f, 0x5d2305a9, 0x54391712, 0x2e0806aa, 0x3132fd3f, 0x05875d30, 0x715d2b2e, 0x21c47d87, 0x21013521, 0x01152111, + 0xfb730421, 0xfd5002e1, 0xfdfc03c8, 0xe75202b9, 0x07017502, 0x828cfde3, 0x984408a3, 0xe70478fe, 0x2b001406, 0x2c404600, 0x1f021002, 0x1f131013, + 0x213e202b, 0x1d480d48, 0x20092775, 0x0acd091f, 0xcb14000a, 0xcb2b0013, 0x20001400, 0x240f1b09, 0x050900c0, 0xed33332f, 0x392f3939, 0x2f00332f, + 0x22056d69, 0x823939fd, 0x21012d7c, 0x35352622, 0x23232634, 0x36323335, 0x36230982, 0x5b152133, 0x15270664, 0x15070614, 0x46151616, 0x4b080571, + 0xe7043333, 0xe7c2eefe, 0x4646b09e, 0xc2e79eb0, 0x3c721201, 0x22222161, 0x9d91919d, 0x62202222, 0x78fe723c, 0xb293bec5, 0xb28bf68b, 0xe0c5be93, + 0x631a1912, 0xbc8c6d4e, 0xbc371837, 0x634e6d8c, 0x00111a1a, 0x9b010100, 0xbe0278fe, 0x0325c182, 0x0d401700, 0x24d28202, 0x053001be, 0x057a4b4f, + 0x2e05794b, 0x21112101, 0xddfebe02, 0x78fe2301, 0x82009c07, 0xfec92422, 0x84180578, 0x404e30f5, 0x03160332, 0x13161325, 0x3f152b25, 0x82284914, + 0xcd002fa0, 0x21092b2b, 0x0a0022cb, 0x092209cb, 0x30828015, 0x101a2622, 0x0029f482, 0x40053f05, 0x2f050305, 0x20fc855d, 0x6afd8a71, 0xe9820669, + 0x0622de82, 0xfd832123, 0x3636372a, 0x36343535, 0x26263537, 0x26290782, 0x23262627, 0x32213523, 0x24218216, 0x05333316, 0x21f68418, 0xf68beefe, + 0x3c61212c, 0xc2120172, 0x46b09ee7, 0xf796cb01, 0xe0121927, 0xb293bec5, 0x08c9838b, 0x45019d22, 0xef035706, 0x56002b00, 0x063a1140, 0x0c4c1c35, + 0x2243114c, 0x0e190305, 0xb8193710, 0x2440e7ff, 0x21080882, 0xd6251616, 0x00030003, 0x1919d60f, 0x0403250f, 0x00b42b16, 0xb4152d00, 0x16011600, + 0x2d702d20, 0x826d5d02, 0x2f002509, 0x2f3333ed, 0x2f2a0482, 0x30312b2b, 0x0202015d, 0xba832223, 0x4867bd82, 0x21072808, 0x32331210, 0x86161716, + 0x055e5d02, 0x06376408, 0xd7d90157, 0x2a2b6b47, 0x41182443, 0x21351d17, 0x12113e3c, 0xf2fe020b, 0x6e44d3de, 0x22452a2d, 0x211f3918, 0x42391b35, + 0x020c1110, 0xb8feef03, 0x1c21a0fe, 0x1d2a451d, 0x231f1853, 0xa236313e, 0x014f014e, 0x1c1c2359, 0x4b1d2846, 0x3a1f2221, 0x5b963535, 0x00ffff00, + 0x06000018, 0x0289071e, 0x82240026, 0x072c08f4, 0x45008e00, 0x24007501, 0x02031940, 0x10011050, 0x10032605, 0x30102010, 0x04105010, 0x0b100002, + 0x2b250005, 0x00355d35, 0x35355d2b, 0x3d85f582, 0x008f3608, 0x00150012, 0x40130121, 0x00020033, 0x03021302, 0x01157093, 0x3fc51915, 0x020c4f0c, + 0x0c1f0c06, 0x0c3f0c2f, 0x0ccf0cbf, 0x0c070cff, 0x06141500, 0x1f050512, 0x0a306d03, 0x306d2c20, 0xb0163707, 0x10b01c0f, 0x30092009, 0x06090309, + 0x01120f09, 0x13040302, 0x78821514, 0x01230f27, 0x231f2300, 0x064a6d01, 0x39171228, 0x2fed5d2f, 0x744e2bed, 0x5d2f2307, 0x526ded71, 0x14302708, + 0x02131514, 0x99828101, 0x6d151421, 0x073405d6, 0x4c120806, 0x5d124306, 0x6e125206, 0x7f126106, 0x0a127006, 0x2108796d, 0xdf5c3031, 0xc0c03306, + 0xc0fd1087, 0x59c008c0, 0x40585543, 0x4d143f2c, 0x4ca60214, 0x8706905b, 0x5d002340, 0xb46d3031, 0x26262707, 0x33363435, 0xfb821632, 0x020b0722, + 0x54059455, 0xcb6d05a3, 0x0c42080a, 0x8acc352a, 0x2837cc8a, 0x01b7b745, 0x3b3b4d44, 0x3c3c4c4d, 0xfe2d014c, 0x288b05d3, 0xb57f3c6c, 0x6d3e7fb5, + 0x02b3fc25, 0x04eafd16, 0x52523f25, 0x54533f3f, 0x67000100, 0x6e0559fe, 0x4200ee05, 0xef6cb000, 0x09402f0c, 0x3637100d, 0x370c092a, 0xc2ffb811, + 0xf56c6a40, 0x3b3b2526, 0x1c37c83f, 0x210efb6c, 0xfd6c0031, 0x0092270b, 0x343a3a13, 0x7c8220b1, 0x30000135, 0x2d130603, 0x440044b8, 0x445f444f, + 0x067d2003, 0x6d1043b7, 0x1126050a, 0x5d2f3917, 0x245432fd, 0x39122706, 0x2f33ed3f, 0x10823f5d, 0x5d303134, 0x012b2b2b, 0x26052b2b, 0x02262724, + 0x37123435, 0xf6422436, 0x6a112006, 0x784a0d57, 0x55362007, 0x072305ca, 0x51151614, 0x35210556, 0x057a4b33, 0xa75a0327, 0x6464ebfe, 0x23286d6f, + 0x5a9e3b35, 0x23a0c703, 0x18172d85, 0x53502a5c, 0x6161011a, 0x6d200160, 0x3e082333, 0x0f113f1a, 0xafa2122e, 0x0bc80d0b, 0xff505018, 0x00be00ff, + 0x08f30400, 0x00260201, 0x01000028, 0x008d0007, 0x00750110, 0x010e4016, 0x0f010f50, 0x00012605, 0x03020c0f, 0x00352b25, 0x85355d2b, 0x0806232f, + 0x2f82c707, 0x2f843120, 0x8c00d722, 0x17222f87, 0x2f831701, 0x050a1723, 0x262f8909, 0x06e1ff67, 0x82890766, 0x8432202f, 0x008e222f, 0x0899438f, + 0x29012933, 0x10032605, 0x402a202a, 0x042a602a, 0x272a0002, 0x0a994306, 0xa9246d82, 0xd605e1ff, 0x38203d84, 0x68203d86, 0x02223d85, 0x6e845001, + 0x1800022f, 0x18501820, 0x01041870, 0x07151800, 0x09d74311, 0x56263d82, 0xb704e2ff, 0x7b828c06, 0x3d824420, 0x8d00062d, 0x0a0000d8, 0x340002b6, + 0x822e2832, 0x20219228, 0x30218243, 0x020e4013, 0x33203310, 0x00033330, 0x2f193133, 0x20f88225, 0x2c2b9200, 0x0000bad6, 0x020a400f, 0x0001357f, + 0x20279035, 0x2a758814, 0x0000c98e, 0x0203b70c, 0x83343700, 0x3535214c, 0x52204b88, 0xd7212388, 0x209985c8, 0x2347843e, 0x00030035, 0x2708bb85, + 0x000f00ba, 0x0048003c, 0x0f7f40b1, 0x19390318, 0x3d391418, 0x49363d2c, 0x4a1c4905, 0x59364a2c, 0x591c5905, 0x6b36592c, 0x2f09555a, 0xc5401439, + 0x313f312f, 0x37463102, 0x2b033146, 0x0814635a, 0x2e0a3b25, 0x2e1a3405, 0x2e2a3415, 0x43063425, 0x342b37af, 0x2e012e20, 0x34af3d2e, 0x011f1934, + 0xba3b843c, 0x5a4a2f4a, 0x49200b7f, 0x2b0b7f5a, 0xed2f3912, 0x125d2f33, 0x5ded3939, 0x250d8b5a, 0x2f331711, 0x925a5d2f, 0x3736212d, 0x250b5644, + 0x11151616, 0x47180321, 0xaa5a0a13, 0xa9362f22, 0xb9614f81, 0x6ab88685, 0xfec9c854, 0x7344249b, 0x22b85a08, 0x071e0e36, 0x815b9024, 0x6180adac, + 0xb3172094, 0x0504fdb2, 0x55563e8c, 0x2c069344, 0x0459fe58, 0x00820471, 0x40b30039, 0x1c2d5a28, 0x09202d26, 0x4625370c, 0x200f325a, 0x2510821f, + 0xc8363232, 0x385a1c2e, 0x2822080d, 0x4f243f00, 0xb8240224, 0x2c40c0ff, 0x24371009, 0x00981d24, 0x2b313116, 0x700030b1, 0x00000200, 0x495a0601, + 0x013b2b09, 0x3b603b24, 0x06831a01, 0x495a3abb, 0x39122109, 0x210a9644, 0x97445d2b, 0x442b2006, 0x2b200598, 0x5d220082, 0x585a2605, 0x118d4425, + 0x8cd60226, 0x5e5455eb, 0x22196a5a, 0x44356224, 0x54270a82, 0x484a031b, 0x5a92d948, 0x0f231878, 0x44100b25, 0x582a0d77, 0xfc04e2ff, 0x26028c06, + 0x9b434800, 0x43ec2005, 0x20230501, 0x43000f1e, 0x218f059b, 0x85e24321, 0x981e2021, 0xf4d62121, 0x21212185, 0x20438d1d, 0x30658814, 0x0000eb8e, + 0x030d4013, 0x23702340, 0x23000202, 0x2a288420, 0xff00355d, 0x006800ff, 0x84be0200, 0x82d52091, 0x00072591, 0x0083fe8d, 0x01254f83, 0x02060600, + 0x21938403, 0x2382faff, 0x238a5020, 0x84fe4322, 0x05212386, 0x23238405, 0xf5ff0200, 0x24082382, 0x008c06c8, 0x000a0003, 0x0627403f, 0x370f093e, + 0x09080506, 0x02080809, 0x047f010f, 0x04020870, 0x84000408, 0x06065608, 0x600c2608, 0x030c700c, 0x335d2f5d, 0x2f2f32fd, 0x3f2f005d, 0x2f332f33, + 0x31393912, 0x21212b30, 0x23372111, 0x13230727, 0x051a5633, 0x7defb631, 0xffeaeb7c, 0xd5a06304, 0x008901d5, 0x82eeff03, 0x06ce226d, 0x2d6d8214, + 0x000b0007, 0x06134049, 0x0a0a0905, 0x6a820909, 0x0b40052d, 0xbd053710, 0xffb80804, 0x821740c0, 0xbd08220b, 0x20778209, 0x24778609, 0x700d600d, + 0x2477870d, 0xed2f2bed, 0x847a8b2b, 0x207d8279, 0x08635801, 0xebfebc26, 0x35fe1501, 0x7e820583, 0xfe110129, 0x001101ef, 0x5900ffff, 0x523f054d, + 0x51002602, 0x06010000, 0x000cd700, 0x10401500, 0x20240001, 0x40243024, 0x24000424, 0x45160e17, 0x58260745, 0x2605ddff, 0x2d828c06, 0x2d845220, + 0x00e78d31, 0x0c401100, 0x70264002, 0x26000226, 0x97000626, 0x82432029, 0xb60a2529, 0x25250002, 0x35202383, 0x4b8f7982, 0x2182d620, 0x14401a33, + 0x2a002400, 0x27202420, 0x27302430, 0x28000206, 0x212f8424, 0x31885d01, 0x7d881420, 0x31828e20, 0x0d401328, 0x702a4003, 0x7f46022a, 0x832b880b, + 0x20a985d7, 0x207f86d7, 0x824f8531, 0xffa12421, 0x840905e1, 0x855820cb, 0x84e220cb, 0x400129cb, 0x02197019, 0x09191900, 0x298ff588, 0x420a4321, + 0x18210559, 0x83238318, 0x37218fcb, 0x000002d6, 0x2014401a, 0x201a2018, 0x3018301d, 0x061d301a, 0x171b0001, 0xcb842f84, 0xcb833185, 0x8e307d85, + 0x130000fe, 0x40020d40, 0x021d701d, 0x1a1d0001, 0x5d212a84, 0x089a8235, 0x00f20041, 0x06be0487, 0x000b0014, 0x0327403c, 0x000b0a07, 0x05060401, + 0x080606cc, 0x02e00000, 0x09080704, 0x0206010a, 0x00e005b3, 0x70033003, 0x4f030303, 0x2f5d010d, 0x17ede65d, 0x00e61039, 0x822f333f, 0x312f3908, + 0x13250130, 0x35051323, 0x03330305, 0xfebe0425, 0x05fe0594, 0x6c0194fe, 0x013b0682, 0x05aa036c, 0x2803d8fc, 0x0105e605, 0x0577fe89, 0x00020000, + 0x04ac02b4, 0x82f00500, 0x17240875, 0x21403400, 0x0955035a, 0x0965036a, 0x03cb1504, 0x09cb0f03, 0x20b10c07, 0x00000100, 0x0600b112, 0x19400601, + 0xed267183, 0xed5d2f33, 0x06823f00, 0x825ded21, 0x374d186f, 0x4607200a, 0x04380a13, 0xb1b1f500, 0xb2b1f5f5, 0x536fe4f4, 0x51717052, 0x4e046f53, + 0xb0f2f2b0, 0x52260383, 0x55537475, 0x7f827471, 0xfebc6208, 0x05f70497, 0x002200c3, 0x40930029, 0x22012c69, 0x33013b17, 0x3b1c3317, 0x45014a1f, + 0x4a1c4517, 0x54015a1f, 0x6f1b6017, 0x6f1f601c, 0x7e1b7020, 0x7e1f741c, 0x15131420, 0x01195c12, 0x1e232419, 0x1913981d, 0x050f1012, 0x057f056f, + 0x06030503, 0x22012253, 0x2205981e, 0x15122306, 0x9d03041d, 0x06c67530, 0x1906042d, 0x00000c06, 0x0084272b, 0x4d0c010c, 0x1222052b, 0x08823939, + 0x00391729, 0xed33332f, 0x82125d2f, 0x823f200d, 0x39112109, 0x0c820882, 0x2305a054, 0x11231107, 0x230aa545, 0x11331137, 0x08075677, 0x363611b9, + 0x11053337, 0x14150606, 0x33f70416, 0x8bae5ba5, 0x57514ed9, 0xdb525460, 0xa471ae79, 0x8326311e, 0x307d595d, 0x7223fe31, 0x15438582, 0xa4fe0833, + 0x51095901, 0x89d54946, 0x4749d996, 0x3b01084a, 0x390cc1fe, 0x20d9fe0d, 0x5cfd1250, 0x7e2d460e, 0xb618a002, 0x00a58f87, 0x9a000100, 0x2d050000, + 0x2000ee05, 0x52407900, 0x1d2a0e21, 0x13320e30, 0x13420e42, 0x12520e52, 0x11670e64, 0x0e741260, 0x12701176, 0x05181b0e, 0x101008a9, 0x01089b14, + 0x4002070c, 0x0237100b, 0x1f014a1f, 0x8b1b1802, 0x70056008, 0x60050205, 0x06190119, 0x1905060f, 0x0002040f, 0x50002200, 0x12250778, 0x2f2f3917, + 0x05d9442f, 0x0039112d, 0x2b32fd2f, 0xed39123f, 0x4f2f2f33, 0x2121050c, 0x26e38221, 0x33352335, 0x18243411, 0x080a3643, 0x21151559, 0x06142115, + 0x05211507, 0x7c6dfb2d, 0x01b0b054, 0xb388f227, 0x864c2d35, 0x017f683a, 0x5f4bfeb5, 0x0103034a, 0x90902219, 0xbf0501d9, 0xfe0f21f6, 0x77272fc8, + 0x59d9c66b, 0x000b28b2, 0xfe970002, 0x05190578, 0x003b00f0, 0xb9d0004d, 0x6fff2d00, 0x100f0e40, 0x82800f37, 0x280c2a04, 0x2a371009, 0x40d6ffb8, + 0x08088289, 0x21182d85, 0x381c3636, 0x491c453a, 0x5b085b3a, 0x5426541d, 0x6908693b, 0x641d6b14, 0x7a3b6626, 0x74497644, 0x150b124d, 0x151b3304, + 0x423f3314, 0x424f4b30, 0x155c4b40, 0x425b3353, 0x426f4b54, 0x427f4b60, 0x15104b70, 0x25424b07, 0x0a280633, 0x9c302c2c, 0x0e0e0728, 0x600a9c12, + 0x704b6f42, 0x044b7f42, 0x044b8915, 0x2c3f0745, 0x2c022c4f, 0x21428933, 0x8b3c0d25, 0x072c250d, 0x00001e04, 0x008b454f, 0x421e011e, 0x1725062f, + 0x2f2fed39, 0x21048239, 0x5a492f5d, 0x33ed2306, 0x03823f2f, 0x2306b257, 0x012b2b5d, 0x23510282, 0x04142106, 0x5706bb6c, 0x42180eb9, 0x32200892, + 0x2011c057, 0x8a421805, 0x17ab080a, 0x36171616, 0x7a190536, 0xfe54625c, 0x65e2febb, 0x2249f7fe, 0x8962c339, 0x2f2e2e77, 0xbab24091, 0x53667363, + 0x13015101, 0x2051e971, 0x7263c131, 0x2a2e2e8e, 0xbcaf4e8c, 0x4b5499fe, 0x2d3c531a, 0x1d4a553f, 0x44272f5e, 0xab6b5f02, 0x8a350733, 0x21daa45a, + 0x24220118, 0x26383d39, 0x29141331, 0x84a73814, 0x0749a060, 0x9e5b9038, 0xfe1a1fd6, 0x41411cde, 0x132f2634, 0x38192911, 0x4738bcab, 0x101a091b, + 0x38345720, 0x1e0a1a48, 0x00551c0c, 0x00dd0001, 0x04d304b1, 0x000b00a5, 0x7f144023, 0x09090109, 0x01067003, 0x824f0606, 0x0d202c1b, 0x5d020d4f, + 0x2f335d2f, 0x822f005d, 0x31210804, 0x00341330, 0x15003233, 0x22230014, 0x2901dd00, 0x2901d2d2, 0xd2d2d7fe, 0xab02d7fe, 0xfe2801d2, 0x230a82d8, + 0x002801d8, 0x30083b82, 0x0495fe87, 0x00d105e4, 0x403f000d, 0x01085527, 0x06060501, 0x030cc602, 0x0400b005, 0x04020410, 0x1fb00204, 0x0d40010d, + 0x0d600d50, 0x0f0d0d03, 0x227a8200, 0x82115d2f, 0xed712465, 0x44712f33, 0x2f27058f, 0x5d30313c, 0x83112301, 0x24220801, 0x24343524, 0xe4042121, + 0xfed497ca, 0x01ebfeed, 0x020f0130, 0x0695fe1e, 0x0378f988, 0xcff306bc, 0x7783e8d0, 0xffaa6208, 0x066405f2, 0x002d001e, 0x324a406f, 0x422d320f, + 0x532d420f, 0x632c5b1a, 0x722c6a14, 0x0a297014, 0x97112a2b, 0x12a71812, 0x07012103, 0x03960b07, 0x272a1d16, 0x2f061f11, 0x03067006, 0x1f841506, + 0x02272f27, 0x00830e27, 0x03271106, 0x2fbc001d, 0xb91d841c, 0xedf6102e, 0x1711e610, 0x2fed1039, 0x2d02825d, 0x0039122f, 0x32fd3f2f, 0x39123f2f, + 0x59432fed, 0x14012305, 0x70612104, 0x34352609, 0x32112326, 0x27068336, 0x11150622, 0x00341121, 0x080ce87c, 0xfe640556, 0x2300ffd1, 0x11281971, + 0x78592141, 0x6b69a39c, 0x5f685957, 0x2e0198fe, 0xc18d0701, 0xa6404043, 0x01ddba7d, 0x0af4eed4, 0x05100104, 0x716f7c0d, 0x620b015f, 0x80544e66, + 0x04c2fb70, 0x0a01f420, 0x80313238, 0x11bd8849, 0x00d01a09, 0x7a000400, 0x3c072eff, 0x3806f945, 0x00370028, 0x2200b9df, 0x8640e0ff, 0x1a370d09, + 0x10091c19, 0x18ec1937, 0x82018228, 0x293d0809, 0x7915260f, 0x0415760f, 0x12260c29, 0x12760c79, 0x01394004, 0x250fec29, 0x2502251f, 0x182b2825, + 0x184b183b, 0x186f185f, 0x1b311805, 0x011d20ec, 0x18af0c1d, 0x003a061d, 0x00600043, 0x086b8270, 0xaf120034, 0x06350600, 0x06030645, 0xc5311e28, + 0x181e1a1a, 0x1ec5301d, 0xc7150206, 0x35091e1d, 0x6f034c03, 0x04037f03, 0xc70f0303, 0x094a093a, 0x00040902, 0xbf4c5d3f, 0x43230807, 0x11405854, + 0x15820f8d, 0x15920f9d, 0x15a20fad, 0x15b20fbd, 0x2f595d08, 0x12332fed, 0x12ed2f39, 0x882f0139, 0x5d2f272c, 0x5d2f32fd, 0x11823939, 0x005d5d2e, + 0x0130315d, 0xfd10872b, 0x2b00c02b, 0x200b5974, 0x0a657403, 0x01210726, 0x11231123, 0x21096d41, 0xe5533427, 0x53152005, 0x07250511, 0xfe05fe3c, + 0x2401829a, 0x01fb0105, 0x25018266, 0x75febefb, 0x0182e9fe, 0x8b017524, 0x01821701, 0xfebd8b3f, 0x56fbfef1, 0x5b4701d4, 0x373b366e, 0x172d556a, + 0x2941191b, 0x4c353343, 0x02161717, 0x833b8b8f, 0x2232824b, 0x846ffe91, 0x016f3f42, 0x3c018391, 0x5d03c4fe, 0x5e211d0e, 0x227a5e46, 0x0e2d1bea, + 0x0ff3070e, 0x00321112, 0xa5410300, 0x3325080c, 0x7d40c200, 0x332f252f, 0x333f253f, 0x334f254f, 0x335f255f, 0x336f256f, 0x20701c70, 0x2a70257f, + 0x337f2e70, 0x12ac4110, 0x2501352a, 0x1eb32c18, 0x1e18af0c, 0x32159441, 0xc62f3333, 0x0125201b, 0xc6292525, 0x15020621, 0x41211bc7, 0x33263995, + 0xed2f5d2f, 0x94412f33, 0x2fed220b, 0x068d4133, 0x410ce075, 0x05200b86, 0x4605095c, 0x15220565, 0x41182623, 0x372109df, 0x22824133, 0x4aabfe38, + 0xffdd4294, 0x50d00c01, 0x3a153c94, 0x75714489, 0x8b536d79, 0x7e411529, 0x6380081f, 0xcff82523, 0x1d2afad0, 0x8e372ece, 0x4290878c, 0x00020023, + 0x06fd028e, 0x00d105f9, 0x0016000e, 0x600a408e, 0x700d6f0b, 0x040d7f0b, 0xc0ffb80c, 0x100d4e40, 0x2c0c1c37, 0x670c3c0c, 0x0200040b, 0x030c0603, + 0x042a041a, 0x0403043a, 0x03010d0b, 0x07080604, 0x10121215, 0x0315c513, 0x02070b0d, 0x01001faf, 0xaf070000, 0x400f4f09, 0x500f5f14, 0x140f0414, + 0x14af100f, 0x13101300, 0x13031360, 0x0807544c, 0x33ed2f2b, 0x11ed5d2f, 0x3f003939, 0x2f3332fd, 0x2f391712, 0x4339175d, 0x0fb45854, 0x020c0f04, + 0x3031595d, 0x5d012b5d, 0x23112301, 0x27018203, 0x21112311, 0x05211313, 0x44080e82, 0x21352311, 0x15c2f906, 0x1ab488b2, 0x923b01b8, 0xfb320198, + 0xcfc3cff6, 0xfd026102, 0x74fe3602, 0xc3fd9301, 0x9efed402, 0xfd9d6201, 0x9d3702c9, 0x01010000, 0x040305e5, 0x008c063b, 0xb9270004, 0xc0ff0400, + 0x23d482b6, 0x00030404, 0x496be083, 0x6b032008, 0x15350c49, 0x04132301, 0xf6a0fe3b, 0x148c06f7, 0x89018bfe, 0x01020000, 0x20478237, 0x06db4c79, + 0x40312408, 0x0105061e, 0x0201022f, 0x00200102, 0x00400030, 0x01be0003, 0x30042001, 0x03044004, 0x2f05be04, 0x82335ded, 0x83002003, 0x39122556, + 0x01303139, 0x2706bd4c, 0xd7fe7904, 0xe7fd2901, 0x05210583, 0x06b74c03, 0x00010032, 0x05a9fffa, 0x006405f7, 0x40800013, 0x12110e4c, 0x44085982, + 0x07080b0d, 0x0c0c0304, 0xc102020d, 0x03140c03, 0x036f0c03, 0x01030301, 0x07d60412, 0x0c010c0f, 0x0e110c07, 0x0c0bd608, 0x030d0302, 0x0d130306, + 0x0f000a04, 0x0f400f1f, 0x0f040f70, 0x010a500f, 0x7015200a, 0x06a54615, 0x39171224, 0x88822f2f, 0xed2f0028, 0x33333939, 0x07835d2f, 0x5d2f3222, + 0x2608276e, 0xc43c3c87, 0x8210873c, 0x013c2504, 0x13210321, 0x3720ae82, 0x13200382, 0x3d080b82, 0x21072111, 0x65fdf705, 0x95f1fe96, 0xc301aefe, + 0x02d3fd6a, 0x1301889a, 0xfe52018a, 0x2e026b3d, 0x9bfe0e01, 0x0c016501, 0x010c01f8, 0xfebafe46, 0x0200f8f4, 0x00000400, 0xd1053c08, 0xd1820300, + 0x40966908, 0x49052709, 0x00030203, 0xffb80605, 0x091540f8, 0x82063710, 0x27080707, 0x7c082907, 0x010c0308, 0x0d047f0f, 0x40c0ffb8, 0x3715103f, + 0x0708040d, 0x12120d09, 0x75070515, 0x21070207, 0x07370f0a, 0x00509205, 0x00700060, 0x910f0003, 0x0c400c30, 0x0c700c60, 0x0cb00c80, 0x0c070c06, + 0x0b130300, 0x08930391, 0x13911003, 0x3f22de82, 0xec83eded, 0x2fed5d2d, 0x2f01ed5d, 0x33115d2b, 0x8233332f, 0x2b2f21f9, 0x2c068d46, 0x2bfd1087, + 0x01c0c0c0, 0x1121015d, 0x82df8323, 0x20e98207, 0x2e038411, 0x6301a702, 0x2bfe9090, 0x0271fea2, 0x18d50563, 0x2907c340, 0xb002cefb, 0xd5fc0f02, + 0x40186cfe, 0xfe2209cd, 0x8f8200e0, 0xff65b408, 0x06660672, 0x000c0038, 0x00310019, 0x09a040f3, 0x0b1f040e, 0x120e192b, 0x272b1a1f, 0x07030701, + 0x1b031409, 0x270a250a, 0x07133106, 0x1b131419, 0x271a251a, 0x142b0720, 0x1e2b1b20, 0x272b252a, 0x24302a20, 0x303f2532, 0x2440313f, 0x2f492540, + 0x314f304f, 0x01680e57, 0x1e7f0e66, 0x2a71227a, 0x25222e71, 0x2f300100, 0x0e24262f, 0x231a310d, 0x2f2f2623, 0x14231a8f, 0x7a231a1a, 0x0226751a, + 0x0d000206, 0x23931104, 0x042f1a26, 0x0404202c, 0x75132c93, 0x02267a1a, 0x0a170e01, 0x2f1a297e, 0x1d042623, 0x3f33b829, 0x7e170133, 0x1032b71d, + 0x475dedf4, 0x112b06b0, 0x005d3939, 0x123fed3f, 0x82fd3917, 0x4339080b, 0xb04b5854, 0x4058510c, 0x3b240f09, 0x03314f24, 0x2e2e2431, 0x3159595d, + 0x0e875d30, 0x0e872b2e, 0x0587c47d, 0x3cc40e3c, 0x10873c05, 0xc43c0e3c, 0x5d003c05, 0x01015d01, 0x5e4f1816, 0x01012309, 0x3e5b2626, 0x16143106, + 0x35022603, 0x32210010, 0x33371716, 0x15121603, 0xc2080b82, 0x07272622, 0xfda80423, 0x3f702de3, 0x39318f48, 0x63fd1f37, 0x6d2f1a02, 0x397e4e3a, + 0xc11c4034, 0x9801766c, 0xc5776701, 0xc4d27b56, 0x68fe786d, 0xd17398fe, 0x04cf9b53, 0x2423fd19, 0x443c3b26, 0xa8547ebe, 0xdc02d8fd, 0x40322224, + 0x5a89c339, 0x66adfe99, 0x01b72901, 0x2ea10167, 0xfbfea42e, 0xbcd5fe64, 0x5dfe9cfe, 0x00cf2e32, 0xb1000300, 0xc7076000, 0x1a00b904, 0x38002900, + 0x3d405f00, 0x25162507, 0x29351638, 0x10482f38, 0x15071668, 0x270c1209, 0x330606d7, 0x010c3fd7, 0x18d71e0c, 0xd72d180c, 0x3f1b2f12, 0xb31b021b, + 0x000f2a24, 0x30203a00, 0x30023030, 0x010f00b3, 0xed5d2f0f, 0x4b33115d, 0x3322090e, 0x1282ed2f, 0x11200582, 0x0be94818, 0xe3822320, 0x23060623, + 0x66fb8322, 0x122207b8, 0x16413405, 0x16072506, 0x36323316, 0x5805bc6b, 0x900805ac, 0x07363637, 0x46414fc7, 0xd9816baf, 0x8fd0544c, 0x1101fdd0, + 0x4dd783df, 0xd08cd551, 0x6dfdfefd, 0x275e445d, 0x361d4429, 0x8376529c, 0x9a380dfd, 0x67817852, 0x32696163, 0x9702211e, 0x4944d98d, 0x8a848744, + 0xf0320181, 0x2e010901, 0x84878586, 0x7df0cefe, 0x3634308c, 0x66624481, 0x6563cb94, 0x94758599, 0x4433535d, 0x00010000, 0x060000da, 0x00c90516, + 0x403f000f, 0xd6020e0b, 0x0d0a0401, 0x07df08d6, 0x40c0ffb8, 0x37100c16, 0xdf0b0f07, 0x3913820d, 0x060207b4, 0x112007df, 0x5d021170, 0x1032f42f, + 0x103939ed, 0x2f0032f4, 0x0982e42b, 0x32fd2f23, 0x06357f31, 0x83053443, 0x16062d05, 0x1602c4fa, 0x1502eafd, 0x15021201, 0x16310782, 0xa0010c01, + 0x11020c01, 0xf4feeffd, 0x000060fe, 0x287d8602, 0x000600ce, 0x406b000a, 0x154c1847, 0x013d3917, 0x014b0232, 0x017f0244, 0x03060270, 0xd6090003, + 0x09040508, 0x4501040a, 0x0029c182, 0x00400030, 0x00700060, 0x23cf8205, 0x0c700c20, 0x332fa082, 0x125d5d2f, 0x2f003917, 0x2f332fed, 0x185d3031, + 0x220f234c, 0x82110101, 0x87012001, 0x3c053ba6, 0xab0355fc, 0x3c05c4fa, 0xb0015c01, 0xb0011201, 0xe5fee1fe, 0x85fde7fe, 0xa58e0c01, 0x4a406f23, + 0xd54b1803, 0x003d2f16, 0x004b0632, 0x007f0644, 0x05060670, 0xa5880105, 0x01014a23, 0x23a58b00, 0x0101014f, 0x5d20a886, 0xaa82a9a3, 0x0325a987, + 0x0555fcab, 0x2fa9833c, 0x50fe0c03, 0x19011f01, 0x1f011b01, 0xe2fb50fe, 0x0138a982, 0x00003400, 0xd1057c05, 0x85001800, 0x16174940, 0x7f161817, + 0x15141415, 0x4e080382, 0x0e12150c, 0x0018170c, 0x18011701, 0x1401007f, 0x08000100, 0x06090104, 0x090c0f7f, 0x060fca0c, 0x00011410, 0x05ca0213, + 0x103f102f, 0x108f104f, 0x0b101004, 0x16001815, 0x120b0315, 0xc03f3f00, 0x1211c0d0, 0xc05d2f39, 0x3912c0fd, 0x82dd1039, 0x2f012107, 0xc42f0482, + 0x87d6c0de, 0xc100102b, 0x107d0587, 0x821801c4, 0x10c62619, 0x2b1087c4, 0x250e8208, 0x01013031, 0x01872115, 0x86213521, 0x21013101, 0x7c050101, + 0x3b0111fe, 0x3901c7fe, 0x90fec7fe, 0x0f820785, 0xa2011330, 0x09010901, 0xcdfcd105, 0xd94ed92d, 0x04827171, 0x33032d25, 0x8302ecfd, 0xaa2308b0, + 0x1b0564fe, 0x16006304, 0x28403f00, 0x0f7b047a, 0x1503137a, 0x05030209, 0x96110f0c, 0x0b011606, 0x6414021b, 0x702607df, 0x0a0e0318, 0x1c6d0b84, + 0x39fd2408, 0x442f3f00, 0x312e05d9, 0x21215d30, 0x06062327, 0x27262223, 0x01822111, 0x16169b08, 0x37363233, 0x1b052111, 0x0710c1fe, 0x42496b2c, + 0x98fe226f, 0x6c2d6801, 0x2d713337, 0x26506801, 0xfe213639, 0xfcff051c, 0x1f1e24e1, 0x001f0323, 0x7c000200, 0x2b05e0ff, 0x1f00ef05, 0x78002e00, + 0x02045840, 0x03100212, 0x02222b15, 0x1b230320, 0x02342b20, 0x13380a30, 0x25341b34, 0x0a400244, 0x1b44134a, 0x04542544, 0x27541a53, 0x1a641764, + 0x1a741774, 0x23060f19, 0x060c0c98, 0x1519191d, 0x29041d96, 0x1a160698, 0x1226200f, 0x00091a83, 0x83263000, 0x09100900, 0x7c4f0902, 0xed392606, + 0x2f393911, 0x23c18200, 0x112f32fd, 0x8205fa4b, 0x140123c8, 0xc8830702, 0x34350028, 0x16323300, 0x454d3417, 0x23072706, 0x33363611, 0x7c450020, + 0x08564405, 0x2b05a208, 0xef5b5c6d, 0xe4fee898, 0x5dd41c01, 0x900144a8, 0x639b4e98, 0x61f65e1c, 0x1f013101, 0x5f2d7efe, 0x62826a38, 0x19746052, + 0x4f030903, 0x749ffebc, 0x09016d71, 0x3101eed1, 0x18093a3d, 0x359ea916, 0x291e0133, 0xfdc0fe30, 0x912a28db, 0xa7726c8f, 0x0042158f, 0xff640001, + 0x05470543, 0x000c00d1, 0x03464091, 0x100b0308, 0x13091308, 0x200b100a, 0x200a2508, 0x3408340b, 0x4608400b, 0x5a0b400a, 0x50085003, 0x6403690b, + 0x700b6408, 0x160b7008, 0x04800809, 0x0a090403, 0x0202800b, 0x01037a03, 0x080d8207, 0x040a0746, 0xffb80c02, 0x091e40c0, 0x0c0c370d, 0x3f0e2f0e, + 0x6f0e4f0e, 0x050e7f0e, 0x0b030902, 0x05910804, 0x910b0203, 0xed2f0001, 0x39ed3f39, 0x01393911, 0x33115d2f, 0x17122b2f, 0x5d2f2f39, 0x10873031, + 0x3c01d0fd, 0x32080582, 0x5d01c004, 0x01112105, 0x11211101, 0x01150121, 0xfb470521, 0xfd11021d, 0xfdbf04fa, 0xfedb011c, 0xbd07031b, 0x23021701, + 0x1c013802, 0xf6fde0fe, 0x8211fe55, 0xff2924cd, 0x82cb063f, 0x0b2808cd, 0x20403700, 0x00050703, 0x030a9109, 0x90007f04, 0x01010120, 0x01010d0f, + 0x010d3f0d, 0x90097f05, 0x0801082f, 0xede45d2f, 0x5d207c82, 0x00280783, 0x3232fd3f, 0x3031332f, 0x8205e67e, 0x11233474, 0xe9cb0621, 0x30fe80fe, + 0x06e980fe, 0xfab304a2, 0x8374058c, 0x1e012203, 0x2c698200, 0x0500002b, 0x00630481, 0x4045000b, 0x3169842f, 0x040f0aa7, 0x0fa40084, 0x400d1f0d, + 0x60015001, 0x6e820501, 0x4f0d0f33, 0x7f0d5f0d, 0x8405040d, 0x084fa409, 0x086f085f, 0x86788703, 0x3c3c2177, 0x3531778d, 0x9d810521, 0xb4fe98fe, + 0x059d98fe, 0xfc6f0356, 0x20038591, 0x087582f4, 0x59fe1e23, 0x1e063004, 0x32001d00, 0x00001d40, 0x011a9804, 0x98130f0f, 0x00001c0b, 0x020f600f, + 0x8407000f, 0xc94f180f, 0xfd332407, 0x6f5d2f32, 0xd3710670, 0x1411270c, 0x26222306, 0x1f5e3527, 0x34113b06, 0x16323336, 0x1b300417, 0x572c4d18, + 0x42dddc52, 0x171b348e, 0x49602951, 0xdb71dddc, 0x7f4e3d06, 0xe5d5bbfb, 0x06fe0a0a, 0x047a5313, 0x0be2d845, 0x02000009, 0x3c029800, 0xf0050404, + 0x5b088d82, 0x406a002d, 0x1c1c0248, 0x2c1c1207, 0x3b1c2307, 0x73037a07, 0x092d7b18, 0x0e00c61f, 0x0e600e50, 0x0e040e70, 0x01051a0e, 0x05c82b01, + 0x16161ae1, 0x071ac812, 0xbd021f0e, 0x012f7000, 0x172f2f00, 0x174f173f, 0x25171703, 0x010800bd, 0xed5d2f08, 0x115d2f33, 0xfd2f5d33, 0x3f003232, + 0x1021bb82, 0x221182fd, 0x82391211, 0x30312319, 0x1b74015d, 0x35262705, 0x36373634, 0x7c503736, 0x23072205, 0x05556e35, 0xb1760120, 0x044c080e, + 0x33e2fe04, 0xa87a6a8f, 0xe64d544e, 0x4673737a, 0x2c19219d, 0xe1ee63c2, 0x873ce2fe, 0x0b2d2922, 0x38321312, 0x54025927, 0x9e482f5f, 0x267f5e7c, + 0x04071f24, 0x0d34394b, 0x98220cd8, 0xbb88fea1, 0x0d0b1105, 0x241c2c33, 0x230f100f, 0x7f24f583, 0x49043602, 0x2108f582, 0x0023000b, 0x091b402d, + 0x02090603, 0xe103c921, 0x0709c915, 0x0000bd0f, 0x01257025, 0x0600bd1b, 0x63480601, 0x00ed2406, 0x56fded3f, 0x022a0574, 0x35022223, 0x32332434, + 0x50180112, 0x096b0c36, 0x32332106, 0x3e085a82, 0xffe6e6ff, 0xe8e50001, 0x1ca2fefd, 0x19191b1a, 0x40292947, 0x1b1f191c, 0x2e451819, 0x13044528, + 0x0100ffdd, 0xffdedd00, 0x48fe00ff, 0x4e5c5924, 0x1c20216c, 0x711e2117, 0x20665050, 0x82191d1f, 0x0035241c, 0x828b0600, 0x396608a1, 0x57408200, + 0x0a541128, 0x27531254, 0x2d532953, 0x0e072f53, 0x02042b92, 0x1a091f37, 0x1f021a19, 0x37100940, 0x1f1f1a1a, 0x911e3801, 0x4fa1371c, 0x7f026f02, + 0x1f020302, 0x601a40a1, 0x031a701a, 0x701d7f1a, 0x08390239, 0x251a027d, 0x3b313139, 0x1d013b1f, 0x001d7d14, 0x2f250125, 0x2fed335d, 0x2f33115d, + 0x58541233, 0x825d2005, 0x00ed280e, 0x3939ed2f, 0x79332f32, 0x3f25054f, 0x5d3031ed, 0x2b521821, 0x08c46309, 0x1614152b, 0x17161617, 0x21112111, + 0x09a35635, 0x32332423, 0xfa621804, 0x15210909, 0xfd8b0621, 0x264f3d34, 0x2a2a2524, 0x5b57842b, 0x292b2c7f, 0x61222227, 0x0134fd2f, 0x389353da, + 0x61654238, 0xac18015f, 0x611101b4, 0x3643655e, 0x01579038, 0x25e801da, 0x6d2f3434, 0x30854a5d, 0x31393832, 0x57488730, 0x442b2c78, 0x0118fe1c, + 0x60213f20, 0x75b94345, 0x5253d880, 0x50525b5d, 0xbd7181dc, 0x22614442, 0x0003003f, 0x07e2ff56, 0x008604d1, 0x003d0036, 0x40d6004f, 0x0b200da3, + 0x1a0b3710, 0x1a193102, 0x04253114, 0x04353125, 0x11340d3a, 0x440a3135, 0x44084d03, 0x491e4911, 0x5b035045, 0x59115208, 0x6b45591e, 0x601e6a09, + 0x6a386335, 0x7a037445, 0x75117409, 0x7427741f, 0x7435742b, 0xf101174f, 0x21f1413d, 0x303d2112, 0x3a182d04, 0x291033a7, 0x37100a40, 0xa7252929, + 0x0b00102d, 0x0b500b10, 0x0b700b60, 0x070b0b05, 0x4d160f98, 0x011618a7, 0x123e843d, 0x00043021, 0x370c0c41, 0x1b410084, 0x1f51bc00, 0x4f512f51, + 0x04517f51, 0x2a1f2a0f, 0x472a2a02, 0x50bb1b84, 0x06b77910, 0x3911e42c, 0x2f33ed10, 0x3917122f, 0x4c1832fd, 0x3f200796, 0x2b231182, 0x8211ed3f, + 0xed2f2d14, 0x3031ed2f, 0x012b5d5d, 0x17161621, 0x280a7e76, 0x06272422, 0x06060706, 0x14cd7923, 0x17163227, 0x20333636, 0x079c7600, 0x26260122, + 0x080e5943, 0xfcd10724, 0x313d05d5, 0x6f4b8031, 0x69283fd1, 0xfe998ed7, 0x6b1f6ce8, 0x6e914132, 0x6370d5aa, 0xa0210160, 0xf079958d, 0x993d0807, + 0xca4d48d5, 0x010f0173, 0x039afe0f, 0x82656d67, 0x1ac8fe08, 0x3689530f, 0x150e3b33, 0x3c364d15, 0x4fef017b, 0x1b1f1f68, 0xdffe3150, 0x5f59322b, + 0x1d174a17, 0x7e9bc523, 0x282b2d99, 0x080b7a09, 0x343b2808, 0xebfe4032, 0x6f55fcfe, 0xfe776c74, 0x217b4070, 0x10121007, 0x341d3541, 0x33131412, + 0x58000300, 0x26055eff, 0x4d00e504, 0x250805c3, 0x096c40b8, 0x44014925, 0x56274a1b, 0x50245023, 0x5f2f5b25, 0x65315f30, 0x60246023, 0x6f2f6c25, + 0x7c316f30, 0x924d1101, 0x4dad2010, 0x75240592, 0x02267a1a, 0x200a974d, 0x06974da7, 0xa704102a, 0x0e01162c, 0x29840a17, 0x2806924d, 0x841733bc, + 0x1032bb1d, 0x073f55f4, 0x39391123, 0x0e8d4d00, 0x58510926, 0x012409b4, 0x2009884d, 0x0f8a4d01, 0x1087c429, 0xc40ec4c4, 0x4d003c05, 0x26201c88, + 0x2208884d, 0x4d161607, 0xd9080888, 0x92fea503, 0x312a451c, 0x25231f5f, 0x0131fe0b, 0x2e4b1e77, 0x22245535, 0x5fb80e29, 0x01450165, 0x459c5e22, + 0x57b6af79, 0xfebdfe5f, 0x3f9956dc, 0xe902ae8b, 0x12130efe, 0x7b2c2623, 0xfe68316d, 0x19fd019c, 0x262a1d17, 0x673e678e, 0xec50dafe, 0x01170191, + 0xa622253e, 0x8fe64df2, 0xc1feebfe, 0x00be1e21, 0x70000200, 0x5c04e2ff, 0x0300d105, 0x84002000, 0x050f6440, 0x051d140f, 0x052c141a, 0x0f250d25, + 0x0d32053c, 0x054f0f32, 0x0f410d41, 0x055a1e4f, 0x0e500c50, 0x1e5a1753, 0x0d60056b, 0x146a0e64, 0x057a1e6b, 0x1d76147f, 0x131c1e7f, 0x12120710, + 0x0303ce01, 0x2001207f, 0x07d71c20, 0x03d20216, 0x40cf1003, 0x02137013, 0x040a1313, 0xd1192204, 0x0a100a00, 0x47490a02, 0x26078207, 0x00ed2f33, + 0x6532fd3f, 0xa84d0524, 0x11212806, 0x04061321, 0x46242223, 0x2126070f, 0x07060611, 0x3a490606, 0x333d0806, 0x6cfe8503, 0x40d79401, 0xf789f6fe, + 0x363bdefe, 0x015f9736, 0x3f734760, 0x7581443a, 0x284bb548, 0x0801c904, 0x3b1b67fa, 0x9b65b0da, 0x255a3939, 0x13affee4, 0x69292d28, 0x3e556443, + 0x20f18231, 0x896d18cb, 0x06063d0d, 0x0302ce01, 0x03dd0405, 0x4fdd05d2, 0x02025f02, 0x01094f02, 0xe45d2f5d, 0x2f00e4fd, 0x20529c83, 0x21132505, + 0x66022113, 0x07257a83, 0x012e5efe, 0x32668446, 0x0024042f, 0x00d80001, 0x0309061d, 0x0005003a, 0x821c402b, 0x04d6375d, 0x0000b401, 0x0030001f, + 0x0060044f, 0x00060070, 0x07200400, 0x0e4d0770, 0x00ed2805, 0x2f33ed2f, 0x82253031, 0x21112ee8, 0xe3fe0906, 0x3105ecfb, 0x0110021d, 0x084b820d, + 0x2dff8634, 0x2f076907, 0x83000800, 0x01660c40, 0x07020766, 0x06700807, 0xffb80601, 0x092640f4, 0x0306370e, 0x02700302, 0x6f070201, 0x02087f08, + 0x10090c08, 0x37820837, 0x10010430, 0x44024001, 0x05016403, 0xdfffb800, 0x17821e40, 0x00010122, 0x022b7982, 0x040a0000, 0x0606ca03, 0x820f0807, + 0x08230837, 0x0a700a20, 0x2f005d02, 0x39125d2f, 0x01ed2f39, 0x2f33112f, 0x2b2f335d, 0x8730315d, 0x5d2bdd10, 0x845dc0c0, 0x08260807, 0x015d01c0, + 0x23012301, 0x01012135, 0x81fc6907, 0xef3cfeb1, 0x5201f101, 0x2f07bd02, 0xd503fef7, 0x0610fdd3, 0x7b82004a, 0xff442e08, 0x05650538, 0x002b00f0, + 0x0a3e4066, 0x3206300f, 0x40253024, 0x40244006, 0x641b6f25, 0x0b0c0923, 0x1e8b0708, 0x221d2221, 0x00091520, 0x3d04831d, 0x01220005, 0x1e080b22, + 0x282121a7, 0x04000012, 0x16072896, 0x12961a16, 0x32fd2f00, 0x03823f2f, 0x82121121, 0x3939289b, 0x5d2f0130, 0x822f3317, 0x10872b00, 0xc0fdc0c0, + 0x3031c0c0, 0xcd7a5d00, 0x07072506, 0x03211521, 0x0622d882, 0xc3582306, 0x13372709, 0x37333523, 0x02823636, 0x32339008, 0x65051716, 0x2a5a1a2a, + 0x1711705e, 0xc2fe1d01, 0x4e701740, 0x2f61ab4b, 0x1d202e79, 0x6f622a57, 0xd2b33811, 0x4e761520, 0x3553bd4b, 0xc504376a, 0x76571209, 0x66fed9a9, + 0x2e31ad8d, 0x01080a26, 0x61110a19, 0xd9730175, 0x2faa8bd1, 0x0909222f, 0x9e000200, 0x52064b00, 0x1900c604, 0x84003300, 0x043a5c40, 0x1e3a1234, + 0x18422c34, 0x5906254c, 0x59105603, 0x692a561d, 0x69106603, 0x792a661d, 0x79107603, 0x0c2a761d, 0xd6302727, 0x82231a1d, 0x6f320803, 0x0d2a012a, + 0x03d6160d, 0x00d60900, 0x10032a03, 0x10092a23, 0x1603301d, 0x19002708, 0x1a1ab433, 0x260d0c35, 0x352027b4, 0x5d023570, 0x3939ed2f, 0x05833311, + 0x3917122f, 0x33172f00, 0xed2f2fed, 0x5d2f2f33, 0x20098633, 0x0b576b5d, 0x06222326, 0x36122107, 0x1646f583, 0x02012505, 0x26222306, 0x2106a647, + 0x686b1221, 0x33210806, 0x06373632, 0xd9d61352, 0x4d44b560, 0x4f4c2770, 0x12f3fe0d, 0xa047d7d9, 0x235c6572, 0x01084b55, 0x211b930d, 0x1b835d64, + 0xfec10439, 0x5dfdfefb, 0x6f353f38, 0xfb04018c, 0x294b573e, 0x89fd788c, 0x83fafbfe, 0x82782013, 0x01580813, 0x4c573e04, 0x00788328, 0x00220002, + 0x05500600, 0x000300d1, 0x407c0006, 0x06040935, 0x16041906, 0x35043a06, 0x45044a06, 0x56045906, 0x06050a06, 0x00810405, 0x06050300, 0x02010182, + 0x0332023d, 0x0342024d, 0x0351025e, 0x0371027e, 0xffb80008, 0x092240df, 0x21013710, 0x002b0482, 0x080f0800, 0x0870081f, 0x82010003, 0x821f2000, + 0x01052e12, 0x91060302, 0xed2f0001, 0x2b39123f, 0x05746f01, 0x72303121, 0x213b0d81, 0x13210121, 0x50060101, 0x3a02d2f9, 0xfe4cba01, 0x05d2fed2, + 0x034dfbd1, 0x82cafc36, 0x00d926a7, 0x04a60580, 0x08a582a4, 0x40000d2b, 0x046a2b40, 0x0b6a0665, 0x047b0d65, 0x0b7b0675, 0x0a080d75, 0x00dc0307, + 0xd5070b0c, 0x082f081f, 0x0803085f, 0x00040508, 0x258283d5, 0x39ed5d2f, 0x05843339, 0x392c8182, 0x5d303139, 0x01350125, 0x01050511, 0x032b0685, + 0x02a6fd33, 0x01d2fe5a, 0x8773022e, 0x01802b09, 0xce0187cf, 0xdfdfcdfe, 0x0a88cdfe, 0x02000028, 0x80002601, 0x8786f305, 0x40422f08, 0x6c02632d, + 0x6c096304, 0x7c02730b, 0x7c097304, 0x080c080b, 0x0501dc05, 0x1fd50003, 0x5f012f01, 0x01010301, 0xd5070a0c, 0x087f0820, 0x89920802, 0x11010127, + 0x01112525, 0x2a068605, 0x01a6fdf3, 0x02d2fe2e, 0x878dfd5a, 0x4f022c09, 0x330131fe, 0x3301dfdf, 0x898732fe, 0x00002a0a, 0x00b70003, 0x01ad0700, + 0x08098289, 0x0b000722, 0x28403c00, 0x060a0905, 0x60025004, 0x03027002, 0x0801d902, 0x040909cf, 0x000505cf, 0x0d1f01cf, 0x302d0282, 0x600d4f0d, + 0x050d7f0d, 0xed2f5d5d, 0x25028433, 0x5ded2f00, 0x8e523917, 0x21012305, 0x03832111, 0xfe150227, 0x025e01a2, 0x230589cc, 0x77fe8901, 0x9d6d0385, + 0x08200807, 0x00260201, 0x01000024, 0x00430007, 0x0075013c, 0x020e4016, 0x0b010b50, 0x00022605, 0x07060c0c, 0x2609336a, 0x06000018, 0x88c7071e, + 0x00d7222f, 0x222f871b, 0x830e010e, 0x0b18212f, 0x67242f8b, 0x6606e1ff, 0x636a2f84, 0x00d72205, 0x222f878f, 0x83270127, 0x06b3632f, 0x2b007308, + 0x0200355d, 0x00006700, 0xd1059008, 0x29001600, 0x3e407c00, 0x132a0d25, 0x2625222a, 0x134b0d44, 0x27552159, 0x126b0e64, 0x127f0e73, 0x3091060c, + 0x60034003, 0x80037003, 0x0603b003, 0x02090303, 0x16921b91, 0x17910703, 0x06030992, 0x011a6f7f, 0xffb8041a, 0x101740c0, 0x1a043714, 0x09040010, + 0x7d242b09, 0x10151005, 0x10031025, 0xf6102ab7, 0x0d57ed5d, 0x2b2f2c06, 0x32fd5d2f, 0xeded2f00, 0x4deded3f, 0x11210823, 0x21018721, 0x416c2422, + 0x16032809, 0x22113332, 0x47060722, 0x17240620, 0x90081616, 0x3c081857, 0xd6fea06c, 0xb9b29d7c, 0x0501609a, 0x6c2e52b6, 0x395f4f40, 0x66324939, + 0x27717168, 0x0b2c575b, 0x4b2a7108, 0xda3b0160, 0x5e4801ca, 0x49fb3b3c, 0x05a40304, 0x391b1406, 0xcf9792ce, 0x00181339, 0x58000300, 0x3708ddff, + 0x24008604, 0x43002b00, 0x6f409700, 0x1d03110b, 0x1d14111a, 0x112a0325, 0x04351d25, 0x193a1735, 0x11450342, 0x1742134a, 0x23601949, 0x03752660, + 0x0d132373, 0x37100b20, 0x100d2208, 0x2bf10137, 0x032b1e12, 0x21a7280f, 0x1b983210, 0x23112b4b, 0x1615983e, 0x01392183, 0x0c0c2c84, 0x2c008425, + 0x45bc0018, 0x3801457f, 0x44bb1883, 0x5dedf610, 0x07184b10, 0x3917ed22, 0x2b09164b, 0x1712ed3f, 0x31ed2f39, 0x5d2b2b30, 0x2a10104b, 0x06062726, + 0x11002023, 0x4a210010, 0xe0600ffe, 0x080e5705, 0x30451720, 0x36362305, 0x044b3708, 0xf19d330e, 0x85d85258, 0xbafedffe, 0x22014501, 0x514cdb85, + 0xf64a83da, 0x24a6210c, 0x220fb47b, 0x4a23231f, 0x4d2f0cfc, 0x014d4742, 0x0116013e, 0x4f3e0117, 0x4a4f4242, 0x932008f0, 0x390fc97b, 0x00792b27, + 0x02990001, 0x03170510, 0x0003001c, 0x010a4016, 0x000002d6, 0x29630005, 0x83002007, 0x21012deb, 0x17052111, 0x7e0482fb, 0x0c011002, 0x07213185, + 0x25319f67, 0x32f96707, 0x3184ce06, 0x0b000226, 0x3804c703, 0x0806315b, 0x4540582f, 0x05050106, 0x031f021f, 0x071f061f, 0x032f022f, 0x072f062f, + 0x033f023f, 0x073f063f, 0x05450145, 0x055a0159, 0x056a016a, 0x01060514, 0x249082da, 0x4f020fd3, 0x31008202, 0x0610d304, 0x090f0601, 0x095f092f, + 0x5d2f5d03, 0x038233ed, 0xed3f002c, 0x30313939, 0x23015d01, 0x03832101, 0xea380428, 0x7001ddfe, 0x06847dfe, 0x02c7032b, 0x02b3fd4d, 0x0002004d, + 0x2085827b, 0x088589a8, 0x0901083d, 0x10001005, 0x10041003, 0x20002007, 0x20042003, 0x32003207, 0x30043003, 0x4a014b07, 0x55015605, 0x66016605, + 0x07061405, 0x0003da02, 0x060fd304, 0x0602064f, 0x00d30006, 0x98020102, 0x23012285, 0x28868213, 0xfe880213, 0x039deadd, 0x21058390, 0x76181406, + 0x012008e6, 0xc7226882, 0x85842d02, 0x1f402b2c, 0x021f0106, 0x022f031f, 0xff83032f, 0x59014526, 0x0a016a01, 0x1020f385, 0xde856482, 0x0221dc87, + 0x21d1882d, 0xcd830100, 0x87880221, 0x01082247, 0x83c98210, 0x26c183c5, 0x0156014b, 0x830a0166, 0x8aac85b5, 0x859e8247, 0x2294859a, 0x57030000, + 0x2c20068d, 0x3f067d45, 0x7f204035, 0x020b7001, 0xdf08d80b, 0x0106d605, 0x06df02d8, 0x000be204, 0x05cf0b01, 0x0d200ae2, 0x0c3e6f18, 0x10edf426, + 0x5dedf4fd, 0x4505b44a, 0x042d0776, 0x01acfe22, 0xfaf40154, 0xfe3c05c4, 0x270b830c, 0x4301e903, 0x0c01e4fc, 0x432b0382, 0x00020000, 0x0673ff6b, + 0x840d0685, 0x40573f71, 0x4f00403f, 0x5f005002, 0x60046f02, 0x7f007006, 0x014f0802, 0x015f0340, 0x056f0350, 0x8c820760, 0x08038208, 0x03000507, + 0x01ed0301, 0x040220ed, 0xed000206, 0x0130ed02, 0x01020150, 0x09700920, 0x2f195d02, 0x11e4e45d, 0x2f003939, 0x11eeee1a, 0x30313917, 0x095d015d, + 0xfc850607, 0x03f3fcf3, 0xfe91010d, 0x016ffe6f, 0xfcc00291, 0x034d03b3, 0x01b3fc4d, 0xfe4ffeb1, 0xffff004f, 0x64fe1e00, 0x14061705, 0x5c002602, + 0x06010000, 0x00ce8e00, 0x0d401300, 0x500e4002, 0x0001020e, 0x02060b0e, 0x5d352b25, 0x262b8335, 0x05000009, 0x828907dc, 0x823c202b, 0x00073a2b, + 0x011e008e, 0x401e0075, 0x50010213, 0x05090109, 0x0f000226, 0x0f000101, 0x0cc7730c, 0xb3ff0128, 0xd1030000, 0xed82da05, 0x0f403627, 0x01010003, + 0x053377c1, 0x11820220, 0xe1ffb829, 0x10090e40, 0x821f0237, 0x30002104, 0x02297282, 0x2f5d332f, 0x3f002b2b, 0x08925d2f, 0x2101012f, 0xfcd10301, + 0x03f3feef, 0xfada0511, 0x084b8226, 0x00000131, 0x5805e3ff, 0x3300ee05, 0xf5405a01, 0x00013227, 0x0d970d57, 0x24080302, 0xe824d801, 0x0324f824, + 0x68295802, 0x03297829, 0x01275701, 0x82272702, 0x17ee0820, 0x01021797, 0x00011727, 0x15681558, 0x48031578, 0x682d582d, 0x042d782d, 0x182d0801, + 0x382d282d, 0x4700042d, 0x67115711, 0x04117711, 0x17110701, 0x37112711, 0x25330411, 0x22b801c5, 0x22e822c8, 0x87227703, 0x08220222, 0x280bc51c, + 0x98195819, 0x0419d819, 0x0e301919, 0x38122811, 0x78126812, 0x12120412, 0x040e9116, 0x372c272d, 0x772c672c, 0x2c2c042c, 0x13309128, 0x2b572b47, + 0x2b772b67, 0x25b50004, 0x030225c5, 0x19c719b7, 0x19870102, 0x58021997, 0x47020119, 0x67135713, 0x04137713, 0x010b5a00, 0x11132b03, 0x02012507, + 0x181f1925, 0x23230123, 0x111f1a1a, 0x3335b82d, 0x09051f0b, 0x1f340000, 0x34b7057d, 0x35583548, 0x5d5f0002, 0x12edf410, 0x113c2f39, 0x10393912, + 0x39113cf6, 0x5d2f332f, 0x5f393911, 0x3233115d, 0x01835d5f, 0x5f240484, 0xed3f005d, 0x33201a82, 0x2e820585, 0x3c5d2f26, 0x5dde3cfd, 0x21860583, + 0x01303122, 0x38850986, 0x5e827120, 0x372d4782, 0x35262633, 0x23373634, 0x00363337, 0x09bb6621, 0x0721072c, 0x15060621, 0x33171614, 0xce452307, + 0x337f0805, 0x23060611, 0x30030020, 0x0202013a, 0x4f306b02, 0x0177013a, 0x78eda320, 0x7ccd582c, 0x012cc97d, 0xebfe3027, 0x02020302, 0x298a30d5, + 0xda7c8ac5, 0xdf93284d, 0xfedbfe97, 0x0f023789, 0x15291486, 0x86172f18, 0x402401ff, 0x5797fe3c, 0x86798b6f, 0x15183116, 0x7a861329, 0xfe576e93, + 0x0139479c, 0x00070125, 0x00d90001, 0x04330380, 0x000600a4, 0x6a184025, 0x7b066504, 0x04067504, 0x4a00dc03, 0x3f2d0526, 0x03015f01, 0xed5d2f01, + 0x2f003939, 0x09224aed, 0x4a091b4a, 0x00230911, 0x82260101, 0x8480204d, 0x40212b4d, 0x6c026314, 0x7c027304, 0xf9490404, 0x017f2206, 0x49498b01, + 0x032106e2, 0x13d14980, 0x02003f08, 0x00002b00, 0x1e063205, 0x1e001a00, 0x38405a00, 0x1d009e1c, 0x1d201d10, 0x19001d03, 0x15980219, 0x0e060b01, + 0x090f11a7, 0x1d18180d, 0x1b84099d, 0x20ba089d, 0x201f200f, 0x06032070, 0x4818060f, 0x102a1257, 0xe4fde4f6, 0x2f002f33, 0xcd823f2f, 0x32fd3f25, + 0x825d3f2f, 0x260026d1, 0x15062223, 0x07a24815, 0x095d4818, 0x05231522, 0x34081482, 0x244f3a03, 0x07034363, 0x6dfe98fe, 0x9a9a98fe, 0x804bd3d5, + 0xe5011a2f, 0x680198fe, 0x4e131205, 0x9dfb096b, 0x8cfc7403, 0x1ff46f03, 0x090bcdcf, 0x110109fe, 0x06935700, 0xbd822e20, 0x5d001d32, 0x056c3c40, + 0x057b136c, 0x1804137b, 0xa7010019, 0x0821ba82, 0x38ba820e, 0x0a600d1b, 0x0a020a70, 0x1b180c0a, 0x1fba1a84, 0x1f1f1f0f, 0x1f701f40, 0x17491804, + 0xf6102715, 0x391139ed, 0xc0875d2f, 0x333fed26, 0x005d3031, 0x20060648, 0x1c491815, 0x2124350a, 0x37171632, 0x26112111, 0x312e4503, 0x2f22294b, + 0xf6fe1601, 0x0135bd83, 0x511d010f, 0xfee626e0, 0x2a051f98, 0x4611150c, 0xfcf41e31, 0x2abb8291, 0x1ccad41d, 0xecf91604, 0x83051a05, 0x07496dbd, + 0x6200132e, 0x12074340, 0x04010013, 0x30cc0506, 0x3008076c, 0x100f0e0b, 0x09060811, 0x060a0acc, 0x000c030c, 0x055f6d10, 0x0d0c0b2b, 0x0112110e, + 0x03b3020a, 0x0a656d09, 0x5d011534, 0x32f65d2f, 0x3917ed10, 0x0032f610, 0x39122f3f, 0x0c822f39, 0x825d2f21, 0x6d312004, 0x3521086f, 0x05736d05, + 0x15251522, 0x220a776d, 0x6d93fe6d, 0x0882067b, 0xfe016d29, 0x0184fe05, 0x84e6057c, 0x73012301, 0x08848dfe, 0xb736b383, 0x2d02d001, 0x03005903, + 0x0d401700, 0x0001d902, 0x4f0100d0, 0xbe427f01, 0x087a4805, 0xfe2d0229, 0x0176018a, 0x838901d0, 0xff352433, 0x8242023c, 0x0003240a, 0x4622402f, + 0xd92717f5, 0x2fd30004, 0x18023f02, 0x2e117b75, 0xeaddfe42, 0xfd89019d, 0x004d02b3, 0x82000200, 0x6204214d, 0x07244d84, 0x41405400, 0x212d1148, + 0x124808d9, 0x276e880a, 0xed5d2f33, 0xedf41000, 0x48069348, 0x7884070d, 0x85050d48, 0x3c82847e, 0xff8f0007, 0x05a80de1, 0x000b00ee, 0x001b000f, + 0x00330027, 0x004b003f, 0x0f6a40a4, 0x1d7c180c, 0x09250810, 0x063d0637, 0x037fca25, 0x1f030301, 0x0f0709ca, 0x3d430e06, 0x1970ca2b, 0x49191901, + 0x13ca3137, 0x2c0c2319, 0x257c180e, 0x46342c19, 0x403a3abe, 0x4d3434be, 0x18014d4f, 0x210f317c, 0x474d115d, 0x397c1805, 0x07714e0f, 0x3f3f2f23, + 0x20db83ed, 0x3d7c185d, 0x1425213c, 0x22063056, 0x61163233, 0x15260509, 0x32331614, 0x7c180436, 0x052f2e55, 0xe3dce631, 0xe0deeae5, 0x4ad9fee2, + 0x834a5454, 0x697c1803, 0xf9a52828, 0xf7f2f3f0, 0x18f6efef, 0x4e07797c, 0x0722070b, 0x0b4e02f7, 0x00d62a07, 0x006b0143, 0x0002b60a, 0x05d34d0f, + 0x22129378, 0x4d0000d6, 0x012905cf, 0x0c010c50, 0x00012605, 0x0c937810, 0x00001824, 0x5f4e1e06, 0x008d220a, 0x2a2f8532, 0x010d5002, 0x0226050d, + 0x4e0d0d00, 0xbe260b2f, 0xf3040000, 0xf3788907, 0x848e2008, 0x4026235f, 0x6086021a, 0x111f022d, 0x11701140, 0x11100103, 0x84110001, 0x355d286b, + 0x2b00355d, 0x9235355d, 0x0043229f, 0x219f8e07, 0x0d740d0d, 0x82308205, 0x007b242f, 0x84e30300, 0x822c209f, 0x00072469, 0x8756ff8d, 0x010e222f, + 0x23cf830e, 0x09040e0e, 0x2009ff4e, 0x202f8271, 0x222f8aee, 0x8e57ffd6, 0x0c10215f, 0x5f842f8b, 0x5f85cf84, 0x2f848e20, 0x28052f49, 0x050c010c, + 0x11000226, 0x84c88301, 0x8fc78934, 0xff432297, 0x21678e4c, 0x678b0d0d, 0xe1ff6724, 0x97846606, 0x2205674f, 0x828d008d, 0x401c272f, 0x26500213, + 0x66822601, 0x40261022, 0x850bc473, 0x223586fd, 0x85002600, 0x00d62135, 0x22089d4f, 0x82240124, 0x07a17335, 0x2f8c0020, 0x2008317a, 0x742f9043, + 0x2f860601, 0xe1ffa924, 0x9584d605, 0x5d413820, 0x29002105, 0x142ac587, 0x26051401, 0x14140001, 0x5d411107, 0x222f8f09, 0x876800d6, 0x0116222f, + 0x212f8316, 0x2f9b1216, 0x8c004322, 0x1a272f82, 0x50011140, 0x83130113, 0x0113242f, 0x83131300, 0x055a4132, 0x0001003b, 0x020000aa, 0x00630412, + 0x401d0003, 0x010f0212, 0x01008400, 0x01020110, 0xf34b1850, 0x082c8218, 0x01010029, 0x0403051a, 0x008c0697, 0x40360006, 0x1b020b09, 0x02010202, + 0xffb80503, 0x0d0c40c0, 0x05053710, 0x70006003, 0x82000200, 0x82b52010, 0x0000280f, 0x2f332f04, 0x83005d2b, 0x07675705, 0x21072735, 0x97043301, + 0xb8b9f8fe, 0x4101fcfe, 0xdb0305fb, 0x828901db, 0x1d37085b, 0x94040005, 0x19005206, 0x22403a00, 0x02380229, 0x09191902, 0x70100fca, 0x0d100210, + 0xca160d10, 0x16091003, 0x190d0403, 0x0c0000b0, 0xed2f0db0, 0x12ed2f33, 0x82003917, 0x2f332308, 0x0e825d2f, 0x5d303123, 0x05945501, 0x21057266, + 0x95543623, 0x042d080a, 0x82910a94, 0x1f23552f, 0x2131194b, 0x9b06db03, 0x2456307b, 0x301b4025, 0x52060224, 0x1525a3a9, 0x3a402713, 0x1523b497, + 0x36402314, 0x378f8200, 0x04420547, 0x00140669, 0x40160003, 0x10ca020b, 0x02015f01, 0x02000001, 0x0020cc82, 0x312e6e82, 0x35210130, 0xfc690421, + 0x052203de, 0x3183d242, 0x04562308, 0x065b04e7, 0x000d0064, 0x0d174028, 0x06600650, 0x06030670, 0x3fc60a06, 0x0d030103, 0x070000b1, 0xb68406b1, + 0x33233f83, 0x74335d2f, 0x333b0841, 0x32331614, 0x5b043536, 0xcbb8b8ca, 0x4e5351df, 0xb2640655, 0x67bcc1cb, 0x82676565, 0x1f022559, 0x91030305, + 0x15208b84, 0x402b8b82, 0x0237100b, 0xd00001d6, 0x82ed2f01, 0x822b20fe, 0x11212c46, 0xfe910321, 0x0572018e, 0x82110103, 0x9a013aa4, 0x16046004, + 0x0b00ba06, 0x21001700, 0xc50f1140, 0xc5150909, 0x60af0c03, 0x21c38200, 0x8784af12, 0x14585d20, 0x74ed2005, 0x16291ac8, 0xb98586b8, 0xb88685b9, + 0x07b47ab6, 0x808d052a, 0x8181acad, 0x3e81adac, 0x2906867a, 0xb2010100, 0xee0359fe, 0x01821400, 0x15402433, 0x021d020c, 0x023d022d, 0x07071204, + 0x1c03c80b, 0x21f9820e, 0x74592f06, 0x312f2407, 0x60055d30, 0x34270d3b, 0x16333526, 0x7eee0316, 0x55250933, 0x0401df02, 0x06077e56, 0x174d5326, + 0x3f120c3b, 0x2708d583, 0x0403054e, 0x008c06dd, 0x00070003, 0x0504b33e, 0xffb80301, 0x0d2040c0, 0x03033710, 0x60006001, 0x70007004, 0x00000404, + 0x2d058547, 0x20040204, 0x02063006, 0x335d2f06, 0x04822f33, 0x23059b71, 0x3939122b, 0x0123f282, 0x82231323, 0xdd042603, 0xb3dbf4fe, 0x21048374, + 0x14548c06, 0x82002007, 0xfec026d3, 0x00f4035f, 0x2cd3850a, 0x041c040f, 0x043b042b, 0x14140a04, 0x27d38210, 0xb00d0000, 0x33ed2f06, 0x83051961, + 0x057942d3, 0x36343524, 0x355a3337, 0xf420080a, 0xab238030, 0xd60105b6, 0x55600301, 0x09155f2a, 0x0b0d77fe, 0x392399a5, 0x261f1911, 0x0a18523d, + 0x1b206983, 0x9820d582, 0x27075543, 0x05140504, 0x02050602, 0x0c20d984, 0x0220d984, 0x200e5543, 0x10554303, 0x01230130, 0x04371721, 0xfbbffe98, + 0x0801bffe, 0xca85b8b9, 0xe3e32108, 0x18000100, 0xf5040000, 0x0d00d105, 0x1b406b00, 0x0303020b, 0x0405080a, 0x0404090a, 0x140a03c7, 0x023a0d82, + 0x0408050b, 0xb8090309, 0x2140c0ff, 0x09371209, 0x03060109, 0x0801910c, 0x9d82030a, 0x03377a83, 0x080f0000, 0x03057f0b, 0x100eb502, 0xfd3232f6, + 0x2f331132, 0x822f395d, 0x3fed35fc, 0x2b2f3912, 0x3917122f, 0x2e873031, 0xc47d872b, 0x87c4c410, 0x2c080382, 0x07112121, 0x21113735, 0x01150111, + 0xf5042111, 0xababcefb, 0x56018001, 0xb202aafe, 0xff8cdb01, 0xfefa0289, 0xff14011a, 0x31feeffe, 0x39a58500, 0x1406b902, 0x6e000b00, 0x04011f40, + 0x0a000505, 0x0b000607, 0x05c70606, 0x0d821400, 0x0107042b, 0x050b040a, 0x37100b40, 0x2ca9830b, 0x37100e20, 0x0b0b0505, 0x03010803, 0x322c8200, + 0x07058401, 0x0c0d0404, 0x0d400d0f, 0x0d600d50, 0x82115d04, 0x33332499, 0x823232fd, 0x832f20a7, 0x2f3323a6, 0xa8912b2b, 0x82070121, 0x08aa85a4, + 0xb9023721, 0x9c98fe9d, 0x9d68019c, 0xfd7e7103, 0x7f26020d, 0x08037ce9, 0x0080c6fd, 0x6d00ffff, 0x4605e5ff, 0x3620055d, 0x0724b082, 0x1400df00, + 0x2a079745, 0x05360136, 0x37000126, 0x45001a34, 0x5f2a09c7, 0x7a04e1ff, 0x26028c06, 0x2f825600, 0xdf000623, 0x0553799e, 0x84313421, 0x26518225, + 0x0500005a, 0x8201083d, 0x853d2021, 0xeaff2151, 0x0b225187, 0x51830b01, 0x050a0d23, 0x24518906, 0x04000054, 0x20518473, 0x2051855d, 0x8751858a, + 0x01022125, 0x094b4618, 0x00072308, 0x01134023, 0x06000201, 0x06070506, 0x3001be00, 0x70094f09, 0x2f5d0309, 0x003939ed, 0x3f2f332f, 0x37442f33, + 0x18fe8205, 0x08075d46, 0x2301dd47, 0x1e03f602, 0x1e0364f8, 0x00020000, 0x0600001c, 0x00d1053d, 0x00250012, 0x5a424063, 0x66235316, 0x75116a02, + 0x06117902, 0x94081b1e, 0x0b400b30, 0x0b030b60, 0x921a070b, 0x921f030c, 0x1d700907, 0x1e1d1d01, 0xce6e1813, 0x1f273207, 0x50274027, 0x0b1b0327, + 0x07097f1e, 0xf61026b5, 0x2d7d8232, 0x5df6105d, 0x2f3911ed, 0x2f002f5d, 0x6c563fed, 0x39392105, 0x2a07cc66, 0x11212304, 0x11333523, 0x18043221, + 0x2b0be46e, 0x11211521, 0x37363233, 0x3d063636, 0x07e86e18, 0x18a2a221, 0x250fea6e, 0xc3fe3d01, 0x6e188961, 0x02240bee, 0x4102e9a7, 0x0af16e18, + 0xe9d5fe28, 0x211970fe, 0xdf82c93c, 0xddff5726, 0x26061105, 0x4c08dd82, 0x40d10034, 0x35232392, 0x44014023, 0x76224015, 0x70137601, 0x701a7015, + 0x0b247623, 0x1f241a24, 0x1a350430, 0x04401f33, 0x18563443, 0x18652056, 0x04702064, 0x150d1174, 0x04232018, 0x40160206, 0x16371009, 0xa72c2116, + 0x0f300f20, 0x056e6f40, 0x061c3008, 0x001c2121, 0x16069832, 0x4f012340, 0x6f175f17, 0x70170317, 0x18220122, 0x04121517, 0x7f1b1f26, 0x401b021b, + 0x2037100d, 0x03032322, 0x82011b40, 0x1b1b3302, 0x03832609, 0x362f36bc, 0x09832f01, 0xf61035bb, 0x03825ded, 0x6a391221, 0x2b2305ce, 0x8217125d, + 0x260c820a, 0x3fed3f00, 0x83112f33, 0x82ed2018, 0x432b2d04, 0x00b65854, 0x8f161016, 0x595d0316, 0x2006f752, 0x05d65f01, 0x56182020, 0x26250ac5, + 0x27052726, 0x2a058237, 0x16162135, 0x07173717, 0x73031616, 0x222005f0, 0x0806e85e, 0x26bd046f, 0xfec6fe2e, 0xfee8fed7, 0x4b4c57c1, 0x7e4d70ca, + 0x3d601634, 0xfe4db1fe, 0x01358d50, 0x30380bc7, 0x378f4ce4, 0x0305f568, 0x783c6b32, 0x73747779, 0x53200474, 0xbcfe73c6, 0x28018dfe, 0xbf7a0001, + 0x21444144, 0x3a893919, 0x3f61b084, 0x04191155, 0xaf5e2226, 0xfd8c393b, 0x103f1ae8, 0x818a2727, 0xffbba58e, 0x000900ff, 0x08dc0500, 0x08435301, + 0x434b8d20, 0x06fb4209, 0x050b0b22, 0x530a4d43, 0x8c20059f, 0x21089f53, 0xfb42d88d, 0x0a0a2a05, 0x2b250206, 0x00020035, 0x085182be, 0xd1058b51, + 0x21001200, 0x1e404f00, 0x04751250, 0x2f921b02, 0x1a070107, 0x300c2092, 0x030c400c, 0x09070c0c, 0x1309030a, 0xffb8007d, 0x091040c0, 0x0000370c, + 0x01234023, 0x7f071a0c, 0x1022b509, 0x3232fdf6, 0x2f33115d, 0x2f00ed2b, 0x3939123f, 0x82ed5d2f, 0x30312f02, 0x0614015d, 0x23060607, 0x11211123, + 0xe95c1521, 0xd3681805, 0x47480810, 0xaae75143, 0x0180fee1, 0xc58fea80, 0xfe615c52, 0x3d314073, 0x5e45616c, 0x262e8767, 0x661a0320, 0x614f41bd, + 0xd105fafe, 0x3a332fe1, 0x5a4189ba, 0xfe061612, 0x21271442, 0x02000053, 0x64feaa00, 0x14063e05, 0x20001300, 0x1b495318, 0x53180020, 0x11203149, + 0x3b495318, 0xfdb00723, 0x4a5318da, 0x0100320f, 0x1002ec00, 0x1c030406, 0x28000300, 0xd6011b40, 0x05776002, 0x60004032, 0x06007000, 0x01500000, + 0x05200101, 0x5d020570, 0x20067447, 0x056a44ed, 0x04062208, 0x1805e8fa, 0x0c011002, 0x08010100, 0xe8052600, 0x0b000605, 0x00b97400, 0xb3e0ff02, + 0x0137100b, 0x200785b8, 0x21078200, 0x10821340, 0x82200821, 0x83072004, 0x83062004, 0x860b2004, 0x860a201f, 0x82092007, 0x83402007, 0x83052018, + 0x83042004, 0x83032004, 0x070f3604, 0x076f073f, 0x04300703, 0x04020450, 0x005d2f19, 0x30315d2f, 0x2000842b, 0x39058401, 0x0702092b, 0x01270101, + 0x01013701, 0x4bfee805, 0xfebbb501, 0xbb4bfe4b, 0x0484b501, 0x04b50122, 0x0f8b0d82, 0x01221e82, 0xb78200b5, 0x02172808, 0x05da0336, 0x000c00d5, + 0x0515402a, 0x090606e6, 0xe6030b03, 0x0505e901, 0x090c0c02, 0x0302e40b, 0x39ed332f, 0x482f2f32, 0x3f21051c, 0x053b5933, 0x33357208, 0x32352311, + 0x11333736, 0xfdda0333, 0x72e2d946, 0xcfee098b, 0x01bc3602, 0x4c3bb2aa, 0x01001dfd, 0x3602e600, 0xef050d04, 0x54001d00, 0x061a3a40, 0x181d1513, + 0x15231a1f, 0x1b2d182d, 0x067b033a, 0x187b1174, 0x01022f0b, 0x01e71c02, 0x0b400fe9, 0x0f0f370f, 0x0413e80b, 0x1c300000, 0x1c021c70, 0x16e50802, + 0x02101610, 0x2f33332f, 0x3912ed2f, 0x2680835d, 0x2b2f33ed, 0x8232fd3f, 0x015d24fd, 0x18363521, 0x680b6f79, 0x3a0806ea, 0x06070614, 0x04210706, + 0x45d9fc0d, 0x37703496, 0x89394f51, 0xbf411737, 0x46c9b960, 0x24632278, 0x3602a601, 0x296029bd, 0x3b366957, 0xed20303f, 0x8c922617, 0x1e699451, + 0x82001a47, 0x02e024b3, 0x82f4031e, 0x2b3608b3, 0x20407700, 0x2412011b, 0x2421012d, 0x24442435, 0x057b2455, 0x29092073, 0x0fe61228, 0xbf13af13, + 0x07130313, 0x40c0ffb8, 0x370f0c2e, 0xe70b0707, 0xea032213, 0x0c82401e, 0x1e1e2708, 0x0422e71a, 0x1f25e517, 0x1201127f, 0x1f12e50e, 0x06042528, + 0x00600030, 0x06000002, 0x5d2f332f, 0xed391712, 0xd3825d2f, 0x843f0021, 0x391221ce, 0x2f220683, 0x3546ed5d, 0x0c886a06, 0x4d183420, 0x088207b9, + 0x69062221, 0xe58208d0, 0x16158808, 0xd9f40316, 0x37ae81d5, 0x4c9f2a16, 0x5f416363, 0x4c4b8999, 0x9b425953, 0xb2401729, 0x61d3b277, 0x036d574c, + 0x24928c3c, 0x2f17d816, 0x2c30382e, 0x2e322bc3, 0xd5163029, 0x76782716, 0x08196f5a, 0xffff6f11, 0xffffb300, 0xda05eb08, 0x3b022600, 0x270000a6, + 0xa502bb00, 0x07010000, 0xde04f000, 0x2c00c9fd, 0x0e021e40, 0x0e0f0218, 0x0e700e3f, 0x20010e03, 0x5f0b400b, 0x040b7f0b, 0x0120000b, 0x0102015f, + 0x85355d11, 0x3f002202, 0x244d8235, 0x080000c7, 0x204d85d6, 0x204d85ba, 0x394d83c8, 0xa9043e02, 0x3000cafd, 0x02031f40, 0x02031810, 0x13011340, + 0x010b4001, 0x50830b00, 0x4c830320, 0x40013024, 0x4e850301, 0x35205284, 0x51835082, 0x0000b12b, 0xef050709, 0xf1002600, 0x215184d1, 0x51862703, + 0x5182da20, 0x19402625, 0x82330203, 0x36203251, 0x36023640, 0x202e0001, 0x402e302e, 0x052e7f2e, 0x8497852e, 0x00390847, 0x00650001, 0x051d0500, + 0x001100d1, 0x0c28404a, 0x06cb090f, 0x91020b06, 0x057f055f, 0x10050502, 0x1091010b, 0x03080803, 0x13000003, 0x0a05010e, 0x2f0e0f7f, 0x2f0b010b, + 0x0572495d, 0x2f33112a, 0x2f392f33, 0x2fed3f00, 0x2907a446, 0x313939ed, 0x15210130, 0x03821121, 0xe6470583, 0x052d0805, 0x026cfd1d, 0x0194fd6c, + 0xfea0fe60, 0x04b0b08c, 0xfbb10408, 0xdbbae0fe, 0x0101fffe, 0xfff503db, 0xff6700ff, 0x07e305e1, 0x002602d9, 0x3ec9832a, 0x9c00d900, 0x1a007501, + 0x50011140, 0x01280128, 0x28502810, 0x28280002, 0x2b250915, 0x8200355d, 0x263382c5, 0x0459fe5a, 0x826406ee, 0x824a2033, 0x00063033, 0x0000fdd9, + 0x0002b60a, 0x261d343a, 0x50352b25, 0x955007f5, 0xffda220a, 0x2d558256, 0x010c4014, 0x0d010d50, 0x0f0e0001, 0x29820a03, 0x00394f83, 0xfe6d0001, + 0x05660559, 0x004800ec, 0x2200b9e3, 0x134080ff, 0x0837100d, 0x2f048280, 0x0c09203c, 0x091e0537, 0xb81f370e, 0x5f40e2ff, 0x0b310882, 0x3a181b18, + 0x3435361b, 0x451b4a36, 0x58364435, 0x746c1819, 0x7442080b, 0x41411036, 0x1c3dc845, 0x02000206, 0x11343700, 0x1d062b1a, 0x01213f03, 0xd6252121, + 0x0720041d, 0x07700730, 0x0b070703, 0x401303d6, 0x3ab14840, 0x1ad12b20, 0x201ad111, 0x05363a03, 0xc0ffb834, 0x63820940, 0x4a34342f, 0x1049b706, + 0x2f3311e4, 0xed39172b, 0x05a3632f, 0xed3f0025, 0x845d2f33, 0x12112104, 0x216d6c18, 0x5854432b, 0x172b07b4, 0x595d022b, 0x304c183f, 0x0606220c, + 0x796c1823, 0x1415252f, 0x16160706, 0x0f364c18, 0x36181929, 0xedfeb91a, 0x18772a78, 0x27238d6c, 0xa3ab5698, 0x0302b3bd, 0x2e0a094e, 0x3f020215, + 0x5f650132, 0x120f0b66, 0x18313536, 0x2a199a6c, 0xc1381d1f, 0x3ae89c9a, 0x4e164115, 0x31080838, 0x00010000, 0x0459fe5f, 0x0082047a, 0x40a30045, + 0x492f3217, 0x622f4718, 0x790b7933, 0x7423751b, 0x20390833, 0x1f370c09, 0x40e0ffb8, 0x37100e29, 0x04822005, 0x423e3e2f, 0x3b1c3ac8, 0x00110111, + 0x281a3134, 0xe2581806, 0x181c2014, 0x3f08e258, 0xb1453d3d, 0x83282137, 0x1a83111a, 0x33370321, 0xb8310705, 0x0a40c0ff, 0x31370e09, 0x47704731, + 0x08eb5818, 0x2b0ea541, 0x33ed3f2b, 0x115d2b2f, 0x5d391712, 0x24057c41, 0x5d2b2b2b, 0x05c05005, 0x29f45818, 0x25147641, 0x35189902, 0x59189619, + 0x29210c08, 0x08591888, 0x7c882316, 0x6f410401, 0x0219330a, 0x01223602, 0x1a2d1328, 0x2e2f2216, 0x08112529, 0x59180f16, 0x77261416, 0x1430ac71, + 0x6b411742, 0xff290809, 0xff6700ff, 0x086e05e3, 0x00260201, 0x01000026, 0x008d0007, 0x00750166, 0x010f4018, 0x37013750, 0x01374001, 0x0a353700, + 0x0aa74312, 0xe2ff582a, 0x8c067104, 0x46002602, 0x06313182, 0x00e98d00, 0x0a400f00, 0x012b3001, 0x0a282b00, 0x922a840f, 0x00df2259, 0x07ad4374, + 0x36013622, 0x34215682, 0x43568209, 0x558f07fd, 0x85d0df21, 0x84402055, 0x85082055, 0x005a0855, 0xff5a0002, 0x066f05e1, 0x001b0014, 0x40560028, + 0x4a0a4a36, 0x03107122, 0x100d2a28, 0x0d200337, 0x181b370f, 0x1515ca12, 0x2000160e, 0x01100e97, 0x16059626, 0x111d1914, 0x02041514, 0x00181984, + 0x83232aba, 0x1029bb08, 0xf610edf6, 0x17fd3232, 0x002f2f32, 0x3f2fed3f, 0x46683fed, 0x30312405, 0x185d2b2b, 0x21118364, 0x01832135, 0x15331524, + 0x7f180123, 0x64180bca, 0xfe27108b, 0x014601ba, 0x18818168, 0x3b189164, 0x7070cf9f, 0x0261fccf, 0xb10e1027, 0x2595a59d, 0xff010000, 0x055c06f0, + 0x002f07c0, 0x1d596818, 0xd35c0625, 0x59000100, 0x1f573077, 0x57d92008, 0xd922081f, 0x87414200, 0x50022705, 0x020e010e, 0x25571100, 0x06854505, + 0xe2ff5626, 0x6406b704, 0x08474e18, 0xc9d92f08, 0x40190000, 0x37000214, 0x37203710, 0x37503740, 0x00063760, 0x2e283137, 0x355d2b25, 0x00020000, + 0x065ffe18, 0x00d10587, 0x011e001b, 0x1082b363, 0x54430231, 0x1d5a4058, 0x021c1e1d, 0x07088101, 0x181e1d08, 0x081a3f80, 0x4d054d35, 0x7d057d08, + 0x20180408, 0x03370c09, 0x011e7093, 0x1e01081e, 0x7a05041d, 0x03060106, 0x0f131305, 0x141c17c8, 0x1ab00c14, 0x0505051a, 0x0802080a, 0x18dfffb8, + 0x29094980, 0x01200f08, 0x201f2008, 0x3a720501, 0x2b2b2505, 0x2f39125d, 0x2a08e651, 0x17125d3f, 0xed5d2f39, 0x182b3031, 0x2514c752, 0x4d1d3f65, + 0xaba6021d, 0x1c21a284, 0x23a48902, 0x07070409, 0x0129a792, 0x06040302, 0x1e1d1c07, 0x20b19d0a, 0x82b28901, 0x2ab390a4, 0x012b3939, 0xfd10875d, + 0x84c0c0c0, 0xc0083005, 0x30315d00, 0x27372459, 0x01210321, 0x52230121, 0x152109b5, 0x059c5906, 0x04020b33, 0xfd4e0a6e, 0x7dfe67d8, 0xba012602, + 0x02ef2602, 0x05c55202, 0x80303608, 0x86b6ab23, 0x1d2cb7b7, 0x05d3fee4, 0x162ffad1, 0x523d1628, 0x0dc80a18, 0x3b99a50b, 0x16026602, 0x0000eafd, + 0xfe560002, 0x047e055f, 0x000f0083, 0x40810043, 0x6b6a1859, 0x203f241a, 0x18370c09, 0x37140c50, 0x363a3a30, 0x3b1c3ec8, 0x41b0333b, 0x03411f01, + 0xba2f8410, 0x01452f45, 0x0a7d6a18, 0x4f184420, 0x172109fd, 0x0aae4132, 0x0c856a18, 0x735d2b21, 0x17200fd4, 0x231ab870, 0x11150420, 0x20121241, + 0xee4f1836, 0x41162c08, 0x2a6f3644, 0x3527551d, 0x18a04472, 0x2014996a, 0x0c2d4191, 0x6a180720, 0x2c2119a6, 0x099a7027, 0xfdcabd23, 0x0b4c4104, + 0x007d4a22, 0x2005d159, 0x05295206, 0x00002728, 0xdf000701, 0x75435b00, 0x50203806, 0x00020120, 0x14091e21, 0x00352b25, 0x0035115d, 0xff5a0003, + 0x4e6d07e1, 0x2431064b, 0x2c407400, 0x2256214c, 0x22032266, 0x370c0916, 0x4f69184a, 0x2222220f, 0x52691821, 0xb8213a0a, 0x2040c0ff, 0x21370c0a, + 0x14112321, 0x00a08402, 0x230200d0, 0x008f0000, 0x3659829f, 0x1b012630, 0x25bb0883, 0x5dedf410, 0x5d335d2f, 0x2f3232fd, 0x442b2f33, 0x332806f5, + 0x30312f33, 0x015d2b2b, 0x2013f544, 0x41671811, 0x0101230d, 0xf1441323, 0x7d691810, 0x1104260c, 0x9deaddfe, 0x83691875, 0xfc042819, 0x4d02b3fd, + 0x5200ffff, 0x023706a7, 0x00e70006, 0x00010000, 0x055ffebe, 0x00d10546, 0x40680020, 0x82201c2e, 0xd08018f4, 0x17173215, 0x1c1bc813, 0x01910a0c, + 0xb0101818, 0x010c1e1e, 0x36fd8308, 0x3715100f, 0x0c080408, 0x0906220c, 0x21b5017f, 0x32fdf410, 0x822f3311, 0x112b21dd, 0x26060d44, 0x3f33ed2f, + 0x522f32fd, 0xf48206bc, 0x28692120, 0x82112008, 0x114a4309, 0x17033625, 0x1804a7fd, 0x21080181, 0x0f56fbfe, 0x80302507, 0x04b6ab23, 0x220b1669, + 0x431a2e0c, 0x3e08084a, 0x00002f23, 0xfe580002, 0x04fc045f, 0x00290086, 0x40930030, 0x2b18246a, 0x3c183320, 0x4c0e4320, 0x4d184310, 0x5a204d1b, + 0x55205b1b, 0x6914602f, 0x601f6b1c, 0x740e742b, 0x79187414, 0x8307141f, 0x174608fa, 0x0c3030f1, 0x1012a72d, 0x1e000c22, 0x1e531e10, 0x1e731e63, + 0x1a1e1e05, 0x02160c98, 0x06c82802, 0x2503031c, 0x090d09b0, 0x1f0f0321, 0x16842a1f, 0x322f32bc, 0x84173001, 0x1031bb0f, 0x5d32fdf6, 0x33edf410, + 0x5244122f, 0x823f200a, 0x125d220f, 0x20fc8439, 0x23fb82ed, 0x3337045d, 0x21073244, 0x78183736, 0x152108ee, 0x090e6321, 0x14060728, 0x33161415, + 0x98590332, 0xc9042305, 0xf8840915, 0xfe010225, 0x18c8feda, 0x20079f6a, 0xb76a18fc, 0xa75b2e07, 0x55600159, 0x6a03d42a, 0x08866870, 0x055644cb, + 0x20172408, 0x2c011511, 0x16010501, 0xebfe4501, 0x847efcfe, 0xfe2f528c, 0x082c24df, 0x3d1a160b, 0x71a50352, 0x5c776c72, 0xdf2212fd, 0x2b430500, + 0x0e012505, 0x01010e50, 0x082f5618, 0x35115d22, 0x51182d82, 0xdf320fc5, 0x130000f1, 0x40020e40, 0x90208020, 0x20000320, 0xae48121d, 0x2e598605, + 0x020108f0, 0x002f0026, 0x00070100, 0x866aff8d, 0x50082259, 0x23598208, 0x03030808, 0x82068543, 0x0079242d, 0x84cf0200, 0x854f202d, 0x94fe212d, + 0x21082d82, 0x40174043, 0x02034002, 0x03700270, 0x03a002a0, 0x03c002c0, 0x03f002f0, 0xffb80308, 0x0d09b3c0, 0x07820237, 0x82134021, 0x08012c08, + 0x089f086f, 0x010308ef, 0x5d060600, 0xb28205ae, 0x5d2b2b23, 0x08588271, 0x00be0026, 0x060b0500, 0x00050014, 0x40500009, 0x56064a17, 0x03076607, + 0x0c092007, 0x09080837, 0x04030201, 0x06080191, 0x23084b83, 0x370c0a19, 0x083f0606, 0x00000801, 0x00700060, 0x0b000003, 0x017f0408, 0xf6100ab5, + 0x331133ed, 0x5d2f5d2f, 0x2805c343, 0x2f333f3f, 0x2b013031, 0x05cd425d, 0x23011338, 0xfbf00413, 0x028001ce, 0xddfe1bb2, 0xd1059dea, 0xf4044ffb, + 0x3361b3fd, 0x00aa2305, 0x935a0400, 0x00072c05, 0x4a13403c, 0x66055604, 0x83050305, 0x05052681, 0x01000204, 0x207d8304, 0x237d820f, 0x06060404, + 0x2207615c, 0x44fd5d2f, 0x2f220532, 0x6d8a333f, 0x6b822120, 0xfe120227, 0x02680198, 0x0929697f, 0x83020021, 0xf00423e7, 0xe784d105, 0x25403e25, + 0x822fd907, 0x870820c8, 0x20d026df, 0x07070107, 0x87d88901, 0x25d683d7, 0x5d2f3912, 0x8d4900ed, 0xed5d2305, 0xd5853031, 0x11210323, 0x24d58721, + 0x018afe2a, 0x24d58376, 0x89012801, 0x836d8200, 0x064e38d3, 0x00030014, 0x40340007, 0x06d90521, 0x01020106, 0xd0040801, 0x8701065f, 0x017f2bc4, + 0x090f0103, 0x09400930, 0xce845d03, 0x3f206583, 0x63866d82, 0x61820120, 0x3c2acb86, 0x6c0194fe, 0x34fc1406, 0x3f428901, 0x08062105, 0x2622bb82, + 0x11423100, 0xa8003d05, 0x18007501, 0x50011040, 0x3001010c, 0x020c400c, 0x060c0c00, 0x5d2b2508, 0x355d0035, 0x8f823182, 0x06120527, 0x0026028c, + 0x051d4b51, 0xf5541020, 0x191a2505, 0x2b25140e, 0xbe222183, 0x538c0000, 0x9d00df22, 0x20069342, 0x2454830c, 0x050a0d00, 0x09934209, 0xdf214f8f, + 0x224f860d, 0x85160e17, 0x060d5f4f, 0x2208dd5e, 0x829600dd, 0x401e344f, 0x2a020313, 0x03012a50, 0x402a2002, 0x2a00022a, 0x83000625, 0x21a782a6, + 0x52183511, 0xdd2b13eb, 0x130000f5, 0x02030d40, 0x8c702a40, 0x0607412f, 0x01085822, 0x35206382, 0x20060741, 0x2ab38550, 0x23502302, 0x23000201, + 0x8c181522, 0xd80323b3, 0x2d828c06, 0x2d855520, 0x0060ff32, 0x40110000, 0x165f010c, 0x0002166f, 0x050a1516, 0x27478a83, 0x22598b07, 0x863900df, + 0x50222259, 0x22598322, 0x891c1520, 0x006a2459, 0x8ae70300, 0xffdf2259, 0x2759824f, 0x0001b60a, 0x0f0a1316, 0x59050f41, 0x8d220ff5, 0x51854400, + 0x5036012a, 0x00010136, 0x1f1a3637, 0xf3595189, 0xb78d210f, 0x23055f41, 0x231a3334, 0x49082583, 0xfe290001, 0x054b0559, 0x001c00d1, 0x08324051, + 0x370c0920, 0x53110d0d, 0x19011c09, 0x02031bd7, 0x060c0c18, 0x094014b1, 0x14143710, 0x01e20019, 0x7fe21ad0, 0x19190119, 0x1e101d1e, 0x1e7f1e40, + 0x12115d03, 0xe45d2f39, 0x0682e4fd, 0x32fd2b29, 0x2f2f002f, 0x4e32fd3f, 0x0123063e, 0x4f331121, 0x342c1081, 0x11232726, 0x05211121, 0x592ffe4b, + 0x2d0ce94d, 0xfefa0101, 0x0422052f, 0x1263fbb1, 0xc74d193f, 0x2a173c08, 0x01b10409, 0x00010020, 0x0359fe2b, 0x00a40578, 0x4069002f, 0x1b050a3f, + 0x83240205, 0x180f20b0, 0x3611fa66, 0xc82d2929, 0x28281c25, 0x2222b100, 0x400e0704, 0x1c1c011c, 0x18310f31, 0x21170867, 0x544b3912, 0x22bb8309, + 0x82ed333f, 0x315d2911, 0x055d2b30, 0x26352634, 0x16146718, 0x50061521, 0x02241161, 0xc6ca0150, 0x10266718, 0x13251223, 0x0b445001, 0x1c0b4a26, + 0xc9ac030d, 0x10386718, 0x0904f726, 0x112d1203, 0xff35fb87, 0x002900ff, 0x084b0500, 0x00260201, 0x01000037, 0xffdf0007, 0x06ef41e0, 0x0a500a29, + 0x0b000101, 0x41070608, 0x2c0806ef, 0x2b000200, 0x9804eaff, 0x1b003607, 0x81001f00, 0x1e485540, 0x1d651d55, 0x1d041d75, 0x370d0a14, 0x051b050a, + 0x011f4f02, 0x1e1e1f1f, 0x1234410a, 0x301c0f3b, 0x6f1c5f1c, 0x1c1c041c, 0x300e1e1e, 0x50004000, 0x04007f00, 0x0f210000, 0x17394121, 0x332f3925, + 0x41005d2f, 0x12200a33, 0x31241184, 0x2b015d30, 0x1c506818, 0x23030125, 0x18780313, 0x28155468, 0xe0e92001, 0x110f0a77, 0x596818aa, 0x35062511, + 0x2302ddfd, 0x08e95c18, 0x2602f023, 0x05c56200, 0x6700db3d, 0x24003601, 0x01021940, 0x01152015, 0x1530150f, 0x1570156f, 0x020515e0, 0x62180001, + 0x352305a0, 0x44725d00, 0xa126051d, 0x0905e1ff, 0x3d82ba06, 0x00005830, 0xdb000601, 0x160000fe, 0x01020c40, 0x2e820f1a, 0x09171d28, 0x2b012516, + 0xc1543535, 0x0f016306, 0x6d00dd28, 0x2a007501, 0x6b820940, 0x01155036, 0xb8180102, 0x1040c0ff, 0x2037180e, 0xcf188f18, 0x18000318, 0x8305de62, + 0x8b5d2042, 0x888c2071, 0x0bdd2571, 0xb70c0000, 0x18236c83, 0x82250106, 0x127f5d28, 0x25008d22, 0x222c6782, 0x0d010a40, 0x01010d50, 0x0d010d5f, + 0x092c6883, 0x00371909, 0x06050c0d, 0x5d2b2b25, 0x1121d382, 0x5d3b8235, 0x8d250f8b, 0x1a0000c4, 0x213085b1, 0x30830d0e, 0x020d6f22, 0x5d213586, + 0x2631832b, 0x0500005a, 0x5d89073d, 0xda2208ed, 0x6d82ffff, 0x0f40182e, 0x0b500b01, 0x0c700101, 0x0d0c0001, 0x638e6483, 0x31821420, 0x2105ef5d, + 0x4d449eda, 0x20268505, 0xd7861835, 0x0103240f, 0x47030491, 0x072f080a, 0xb5037f02, 0xedf61006, 0x5d2f3311, 0x5ded3f00, 0x043008ed, 0xfe4efdf0, + 0x04320480, 0x054ffbb1, 0x030000d1, 0x0cd78418, 0x60002725, 0x18274340, 0x080dd984, 0x30912533, 0x60264026, 0x26260326, 0x0a921503, 0x2a091a09, + 0x04090309, 0x03059221, 0x03250315, 0x27130303, 0x06262726, 0xb8007d0f, 0x01293f29, 0xb7067d1b, 0x2c788228, 0xedf4105d, 0x2f393912, 0x5d3f002f, + 0x740282ed, 0x84180855, 0x132322e6, 0x18211121, 0x2426ea84, 0x0125fe1d, 0xef8418db, 0x30012324, 0xef833401, 0xff5d4208, 0x054107f2, 0x001d00e2, + 0x002b0024, 0x213f4062, 0x6a94261b, 0xa0189018, 0x0418b018, 0x25092218, 0x9f0c6594, 0x180c020c, 0x03190b0c, 0x037d1e0b, 0x182509ee, 0x0904221b, + 0x7d290c7f, 0x0c00ee12, 0x281c82b0, 0x3f2c2d0c, 0x702d502d, 0x0694452d, 0x10edf425, 0x823917ed, 0x5c0020f3, 0xfb82073b, 0x1805a358, 0x2108579c, + 0x40181507, 0x65080caa, 0x15213537, 0x34031616, 0x36112726, 0x06110536, 0x16141506, 0x5f588a06, 0xf55e5c62, 0x9d82fea2, 0x625b5bfe, 0x0157595e, + 0x7e019f06, 0x987cfda5, 0xfd81a58e, 0x8594925c, 0xd94aa304, 0x4dda8a8c, 0xa30b564d, 0x4d570ba3, 0x8c8bd84d, 0x57494cd2, 0x0998980c, 0x900cfe53, + 0x3cfd13b4, 0x02ceb11d, 0x96ab16c4, 0xe752b39d, 0xee042505, 0x10008204, 0x4a3bf382, 0x1c1b1440, 0x1c3a1c2b, 0x1d04174a, 0x37100a2a, 0x0f0a2003, + 0xffb80d37, 0x821a40e0, 0x0f0f3b08, 0x100b9615, 0x05961b01, 0x02110e16, 0x1fba0084, 0xbb088318, 0xedf6101e, 0x7718fd10, 0xe54d0d5e, 0x0010260a, + 0x17163233, 0x0de24d35, 0xee043508, 0x9d6898fe, 0x01f3d064, 0x9058d008, 0xfe68016c, 0x34552c98, 0x7d738084, 0x53756e31, 0x013d0141, 0x0111010b, + 0x755f3548, 0xf901d3fc, 0x9d9f2122, 0x002590b3, 0x6708ad82, 0x05ddff58, 0x00140625, 0x00280019, 0x1b19407f, 0x3b0f2b0f, 0x4504470f, 0x681c4a18, + 0x7c0d7810, 0x4a200921, 0x1d37100b, 0x40c0ffb8, 0x3713111f, 0x001d191d, 0x490f100f, 0x040f600f, 0x12060f0f, 0x00139816, 0x06469826, 0x16160601, + 0x40acffb8, 0x37100e17, 0x130f1d14, 0x1603831a, 0xbc031314, 0x2313132a, 0x29bb0983, 0x3328d382, 0x11e6102f, 0xed103939, 0x2f350482, 0x5d3f002b, + 0x32fd3fed, 0x5d2f3912, 0x2b2f3333, 0x5d2b3031, 0x0d455f01, 0x20053c5f, 0x07b64115, 0x227e0620, 0x046d0809, 0xfe604d78, 0xfee8feb3, 0x53b9fedf, + 0x61be4449, 0x0359bf61, 0x5643feee, 0x624a83cd, 0x2e2d6e32, 0x6e6e863b, 0x56fe0380, 0xe9fe92da, 0x3401b8fe, 0xbe8d0501, 0x12504246, 0xe52c7048, + 0x943606f8, 0xc173dffd, 0x2c33094f, 0xa3628e2d, 0x0000adae, 0xff5b0001, 0x046f04e1, 0x003d0083, 0x0d1240af, 0x19120507, 0x20010307, 0x3a37100d, + 0x8204822a, 0xb3d621fe, 0x18250782, 0x40e0ffb8, 0x08088225, 0xa72c0c3c, 0x2bcf2b8f, 0x2b032bdf, 0x7f16032b, 0x401a011a, 0x1a370c0a, 0x16981e1a, + 0x703d6010, 0xb83d023d, 0x2440c0ff, 0x3d370c09, 0x0398393d, 0x740c6416, 0x4019020c, 0x022b502b, 0x1582402b, 0x83242b2a, 0x2b0c1010, 0x00090419, + 0x23082883, 0x3710090e, 0x2f3f0000, 0x8333013f, 0x103ebb09, 0x115dedf6, 0x122b2f33, 0xed2f3917, 0x2f5d2b2f, 0xed3f005d, 0x5d200f82, 0x11260585, + 0x5d2f3912, 0x645d39ed, 0x06894605, 0x26262727, 0x37363435, 0x67068535, 0x1122058c, 0x4e182623, 0x1725090e, 0x33331616, 0x0f0e7715, 0x04336508, + 0x98dd756f, 0x4e4dc86c, 0x5b75765b, 0x4749636b, 0xd58d6ac7, 0xb331273e, 0x1e4a2f61, 0x24312b20, 0x7d355929, 0x25563fa9, 0x27302722, 0x67315b26, + 0x38273bca, 0x27222d2a, 0x625d8127, 0x1a072590, 0x79595b84, 0x2f242324, 0x18f4fe12, 0x0b0a0b39, 0x2c2b1f2c, 0xe4010907, 0x330b0c05, 0x0e312429, + 0x26430b0d, 0x08066742, 0x8604c432, 0x29001100, 0x16405c00, 0x01430133, 0x01731844, 0x0da70e04, 0x09981b0f, 0x03982710, 0xffb80f16, 0x0b1040e0, + 0x8315370f, 0x030f0c09, 0x8f003006, 0x3105e068, 0x130f1040, 0x0d000037, 0x2b002b0d, 0x06832101, 0x21412abb, 0x2f332b06, 0x17125d2b, 0x002bed39, + 0x0183ed3f, 0x18303121, 0x280af753, 0x21171632, 0x16162115, 0xb8451801, 0x26052516, 0xdcfebdfe, 0xbd2d0182, 0x22014501, 0x0240803f, 0x2af6fe06, + 0xa5731842, 0x10132622, 0xfea743f4, 0xa873189b, 0x01290813, 0x00000a00, 0x63043e04, 0x30000700, 0x01031b40, 0x0f06a704, 0x02000500, 0x00058402, + 0x02031003, 0x08090303, 0x0970094f, 0x055e4a02, 0x10edc424, 0xd9662fc4, 0x30312405, 0x82112101, 0x21352b01, 0x9afe3e04, 0x9afe98fe, 0x48183404, + 0x60080748, 0x58000200, 0xf90664fe, 0x1d008304, 0x70002400, 0x0f6f2b40, 0x02020f7f, 0x200e120e, 0x3e1d3e0e, 0x4e1d4e1f, 0xa721071f, 0x0f0f101a, + 0x06a72217, 0x03440334, 0x03760366, 0x1b050304, 0xc0ffb811, 0x0d091f40, 0x22111137, 0x05840417, 0x831e0c05, 0x0f26bc00, 0x50263f26, 0x04267026, + 0xbb0c8314, 0x08434625, 0x39ed2f39, 0x2b2f3339, 0x5d2f3f00, 0x3f32fd33, 0x3031ed3f, 0x015d015d, 0x82050010, 0x2626379b, 0x35262627, 0x21371234, + 0x15020615, 0x11171614, 0x20333636, 0x55450100, 0x06760805, 0xfe9bfef9, 0x909afec4, 0x64595bf2, 0x6f01726e, 0x8f967862, 0x01659017, 0xfe890172, + 0xa59c928d, 0xfe480289, 0x14befefb, 0x8c0177fe, 0x494a540b, 0x01a281cc, 0x5a217b17, 0xaf87fdfe, 0x9a0319b4, 0xe7fe0601, 0xa794e6fe, 0x1449fd09, + 0x020000bb, 0x59fef0ff, 0xaeffc005, 0x07000300, 0x0f402000, 0x0101ef02, 0x05ef0608, 0x0000041c, 0x2f020509, 0x2f331133, 0x1c510033, 0x21052407, + 0x82112135, 0xc0052503, 0xd00530fa, 0xca320383, 0x78abfe78, 0x00ffff00, 0x040000cb, 0x00d105d5, 0x39820026, 0x07012308, 0x68020400, 0x1e000000, + 0x02031340, 0x0dcf0d00, 0x0d030dff, 0x05000001, 0x11200501, 0x5d2f5d01, 0x03833535, 0x01002808, 0x54029e00, 0xf0053a04, 0x5c001600, 0xff1400b9, + 0x091340e0, 0x1143370c, 0x05701153, 0x15751470, 0x14f615e0, 0x82b81507, 0x82242017, 0x01240817, 0x0d701310, 0x080d0d01, 0x0e0413cc, 0xb0be0103, + 0x0200c000, 0x10180000, 0x0d00be0b, 0x0d020db0, 0x32fd5d2f, 0x5d23b182, 0x513f00ed, 0x332806d7, 0x5d2b3031, 0x21012b01, 0x0d417a18, 0x36152f08, + 0x16323336, 0xfe3a0415, 0x100e0bd6, 0x54243543, 0x01d8fe31, 0x598f4e28, 0x5402a698, 0x6c37be01, 0x191c1d19, 0x0383fd1d, 0x413b6383, 0x6682a7ac, + 0xe1ffbd24, 0xe182790a, 0x004e2c08, 0x4017015d, 0x04180a21, 0x13181b4d, 0x31183e4d, 0x4a13444d, 0x44484a18, 0x6917674d, 0x0d397f4d, 0x100e2a0b, + 0xffb84237, 0x5b0940d6, 0x3d200785, 0x3b20c283, 0x3c080d82, 0x461a0011, 0x50033b04, 0x403f013f, 0x3f371009, 0x3ba7433f, 0x3501354f, 0x371e353b, + 0x344fa721, 0x34023470, 0x03343124, 0x40a7572c, 0x02295029, 0x562b2929, 0x07032c98, 0x40c0ffb8, 0x07a55b2d, 0x20132408, 0x1f34372b, 0x10200084, + 0x20200220, 0x0606331a, 0x1d388446, 0x3f1a2f3e, 0x031a9f1a, 0x3e1a3e1a, 0x42008411, 0x37080593, 0x0000370e, 0x015f0f5f, 0x33663356, 0x22844f02, + 0x3301330f, 0x842a5633, 0x2b012b10, 0xf6105eb5, 0x3332fd5d, 0xed395d2f, 0x33115d5d, 0x33ed2b2f, 0x5d2f2f33, 0xed393912, 0x25078f65, 0x2f003939, + 0x0e823f2f, 0xed3f2b27, 0x5d2f3912, 0x053358ed, 0x82393921, 0x2f5d2129, 0x4508f35b, 0x01200629, 0x5b050a6b, 0x362714ef, 0x21112335, 0x64062311, + 0x322a097b, 0x16161716, 0x21353317, 0x4e452115, 0x1415210c, 0x16211884, 0x708b1816, 0x0ae1080e, 0x77e5fb79, 0x121550c5, 0x692f2e48, 0x3c3f5d3a, + 0x194d1863, 0xa5036f71, 0x109ca5fe, 0xc049171b, 0x98fe868c, 0xa976f101, 0x04534842, 0x01570174, 0x4bbe2e31, 0x1739c563, 0x4947834f, 0x1d414c52, + 0x698b184c, 0x2420cdf8, 0x3036581f, 0x215e4e1d, 0x5601191e, 0x2734d2a3, 0x310f1a01, 0x39201716, 0x22352728, 0x2c0a1b08, 0x170f76a9, 0x03b6fc04, + 0x172e1f4a, 0xb9fd524d, 0x2e2bd105, 0xd7699d31, 0x2f2819d7, 0x3deefe1c, 0x2e2c3339, 0x1a0a1638, 0x02a13008, 0x1a4c3853, 0x67fe0c17, 0x44242710, + 0x7b000200, 0x6407e9ff, 0x0b00d105, 0x62002400, 0x0e693c40, 0x23932101, 0x1a161603, 0x09131293, 0x03069304, 0x0193030a, 0x0e094023, 0x23162337, + 0x7f210b16, 0x24012480, 0x260f2624, 0x2640261f, 0x2f941803, 0x5d2f2c0c, 0xfd1032f4, 0x115d32f4, 0x4a5d2f33, 0x2b24057b, 0x32fd2f00, 0x2506224f, + 0x3031ed3f, 0x9418215d, 0x7d180a32, 0x112b14fa, 0x03211121, 0xf498fce3, 0x826803f4, 0x81560803, 0xb83d3c3c, 0x3c94597f, 0x474f2520, 0x15134c39, + 0x02ddfe0d, 0x030801a3, 0xfe0801c1, 0xad3ffcf8, 0x3e3cac60, 0x010e0f46, 0x371e1324, 0x5178332e, 0x12016502, 0x00ffff00, 0x0559fea0, 0x00140629, + 0x004c0026, 0x00070100, 0x0099024d, 0x40190000, 0x20020310, 0x0282011a, 0x20ba1a37, 0x20af2070, 0xf4105d02, 0x34345d5d, 0xff020000, 0x050000e5, + 0x323382f9, 0x001a0016, 0x4c244071, 0x66185617, 0x16180318, 0x18370c09, 0x0808077e, 0x17181837, 0x0d100100, 0x10139508, 0x170d0f0e, 0x40c0ffb8, + 0x370c0a25, 0x19301717, 0x0b101901, 0xbf0d8084, 0x3f19020d, 0xef0dcf0d, 0x0d0d030d, 0xba008402, 0x1f1c0f1c, 0x2867821c, 0x2f33edf6, 0xfd5d335d, + 0x2c058232, 0x2f002b2f, 0x12ed3f3f, 0x333f3939, 0x053f4e2f, 0x0f347e18, 0x2806f243, 0x13230101, 0x96fef905, 0x387e180e, 0xf9fb250f, 0x9deaddfe, + 0x0a3e7e18, 0x7c630428, 0xd3d4504b, 0x23543903, 0x00013b05, 0x02520375, 0x00d105c3, 0xb92d0003, 0xdaff0000, 0x370d09b3, 0xd6ffb803, 0x08821040, + 0x03010127, 0x01007003, 0x21f88200, 0x28660201, 0x228a8405, 0x832b2b01, 0xc3022b72, 0xe0eea0fe, 0x81fdd105, 0x22827f02, 0x04214b83, 0x254b84df, + 0xb9590007, 0x4d850400, 0x4d820720, 0x00215583, 0x205d8ab8, 0x225d8220, 0x88030706, 0x020f3160, 0x04700201, 0x04020401, 0x06010600, 0x5d01091f, + 0xf8546e82, 0x005d2106, 0x116e7482, 0x822b2005, 0x20798300, 0x21f08223, 0x7d83df04, 0x8289ae20, 0x043f8684, 0xe1ff9100, 0xee059e09, 0x1f001b00, + 0x37002b00, 0x2440c000, 0x12871255, 0x0e401b02, 0x830d3710, 0x1c1f3b04, 0x1ec11d1d, 0x1e1e141f, 0x0603091f, 0x06230909, 0xb81b0429, 0x5d40c0ff, + 0x21820d0a, 0x57080482, 0x1b700d7f, 0x171b1b02, 0x01037fca, 0x0d030d03, 0x0709ca11, 0xca2f061f, 0x29012970, 0x23ca3529, 0x1c231e19, 0x1c3a1e2c, + 0x1c431e35, 0x1c731e4c, 0x1c081e7c, 0x26be321e, 0x1cbe2c26, 0x2020061e, 0x00000d39, 0x00510010, 0x14000003, 0x660600be, 0x03067606, 0xed5d2f06, + 0x3320d182, 0x210db675, 0x14833f2f, 0x823fed21, 0x71332006, 0x5d230523, 0x755d2b2b, 0x0c8209b9, 0x0606012d, 0x35242223, 0x32330034, 0x49151716, + 0x152b059d, 0x32331614, 0x01333736, 0x44012101, 0x352205a0, 0xa9753634, 0x0324080e, 0x4f8e4ab4, 0x01f3feef, 0x984fea0b, 0x71392e47, 0x79726841, + 0x2a704d65, 0xfc64032e, 0x03f3fef4, 0xe693030c, 0x3b109b75, 0x23256b02, 0x01e4e6fc, 0xf8252505, 0x8297383a, 0x333d868c, 0x2ffa6e02, 0xf9fbd105, + 0x080f8d75, 0x0002006e, 0x03e8ff0f, 0x00d30515, 0x002b001b, 0x241b408b, 0x630a540a, 0x8603860a, 0x2017051d, 0x14370e09, 0x37100c20, 0x0b100b00, + 0xffb81c02, 0x1009b3c0, 0xffb80537, 0x093540eb, 0x1a00370f, 0x051c0b01, 0x16051b1b, 0xc50f1212, 0xc5250916, 0x12120305, 0x080faf1f, 0x8f082f01, + 0xff089f08, 0x1b080408, 0x0b8f1c00, 0x1abd0b01, 0x01030800, 0x10364183, 0x2f013712, 0xfd33172b, 0x332f325d, 0xed715d2f, 0x3f002f33, 0xdb453fed, + 0x39172606, 0x315d2b2b, 0x2c048230, 0x34113713, 0x16323336, 0x07061415, 0x052c4111, 0x21060159, 0xda490735, 0x0f61080f, 0x78a3beb1, 0x2ab1847c, + 0x644d191b, 0xb0398237, 0x6701478d, 0x0a0a2d64, 0x0f0f1a09, 0x0d0b081c, 0x01c0c701, 0x82e8b1b3, 0xceee5c6d, 0x284c2efe, 0x2caa491a, 0xaa808f2b, + 0x905c024b, 0x1f1e376a, 0x160f0c0e, 0x5870150e, 0x92000200, 0x42040000, 0x0300b003, 0x25000700, 0xf0071540, 0xf0050101, 0x29068503, 0x03100300, + 0x03030330, 0xae825d2f, 0x2f00ed22, 0x31310583, 0x11211330, 0x21111321, 0xb0039211, 0x034c50fc, 0x30068318, 0xe8fc6403, 0x00001803, 0x01830001, + 0x035202bd, 0x2f4f828c, 0x020b4017, 0x00000302, 0x02300200, 0x5d2f0202, 0x2f25f882, 0x30312f33, 0x293b8201, 0x31fe5202, 0x31fe8c03, 0x1e82cf01, + 0x0728338a, 0x13402300, 0x0202f006, 0x04258382, 0x060000f0, 0x8b3d87f0, 0x20418381, 0x83858205, 0x83012545, 0x3701c9fe, 0x4c224b85, 0x8182c9fe, + 0x8800b133, 0xf9032204, 0x21000b00, 0x09091440, 0x032f030f, 0x29c4824f, 0x00000606, 0x00a00090, 0x8a850003, 0x63188f82, 0xb12f0d51, 0xb6b70201, + 0xfefe0201, 0xfefeb7b6, 0x83b74002, 0xb6b7250a, 0x0201fefe, 0x7026a383, 0x6602aa01, 0x5582a003, 0x65001733, 0x10060b40, 0x06372623, 0x371a1710, + 0xf0ffb800, 0x830c82b3, 0x15402107, 0x12271082, 0x0c0606f0, 0x830900f0, 0x1009251c, 0x03370e0b, 0x18822183, 0x40210783, 0x24108213, 0x0303f015, + 0x2721820f, 0x09300920, 0x09040960, 0x20055f41, 0x4100822b, 0x08820563, 0x30312b24, 0xfa643201, 0x34352306, 0x4d6d1736, 0x34353207, 0x686b0126, + 0x68689393, 0x49699293, 0x48486766, 0x83958267, 0x2903830e, 0x4948674c, 0x48496666, 0x57610067, 0x61892008, 0x24080857, 0x014300d8, 0x401e0075, + 0x500c0215, 0x0c00010c, 0x0c200c10, 0x02040c40, 0x060b0c00, 0x352b2507, 0x115d005d, 0x61378235, 0x14200561, 0x37086161, 0x0000cfd8, 0x02144019, + 0x33203310, 0x33503340, 0x33b03360, 0x34330006, 0x63066161, 0xd6221249, 0x69827000, 0x0c40142a, 0x37503701, 0x38000101, 0x5b064963, 0x7370091f, + 0x00463905, 0x00060100, 0x0000dcd6, 0x010e4013, 0x2c202c00, 0x00032c40, 0x2303282c, 0x200ca363, 0x20c38307, 0x242b8226, 0x00da0007, 0x06e15277, + 0x3550352b, 0x36200101, 0x37360001, 0x054e5b09, 0x71215d89, 0x85bd8306, 0x82da205d, 0x8211205d, 0x29002989, 0x00022930, 0x25032829, 0x790ad957, + 0xd8220c13, 0x5b82feff, 0x1c40243d, 0x010d5001, 0x0f000c00, 0x0f100c10, 0x0f300c30, 0x0d700d50, 0x0d000108, 0x4103020c, 0x9d580526, 0x04e22205, + 0x206784fc, 0x39998248, 0xebd80006, 0x40170000, 0x001d0012, 0x301d3020, 0x051e7020, 0x201f0002, 0x31841311, 0x00ffff22, 0x24058179, 0x002602d9, + 0x21c98428, 0x435c00d9, 0x500f2607, 0x0001010f, 0x415d8512, 0x435c0683, 0x82642005, 0x305d852d, 0x0000f8d9, 0x020e4013, 0x23502340, 0x00032360, + 0x0e435c23, 0x220bdb79, 0x410c00da, 0x0d20067d, 0x0123c882, 0x840f0e00, 0x20598cb7, 0x2a598814, 0x0000edda, 0x020a400f, 0x82011f60, 0x09995caf, + 0xe1ff6723, 0x05c17905, 0xaf842a20, 0xa600d622, 0x1c255582, 0x50011440, 0x2dae8229, 0x20291029, 0x04297f29, 0x03252900, 0x5d5a2503, 0x05236908, + 0x23698c20, 0x01d62808, 0xb60a0000, 0x69380002, 0x57840823, 0x69890721, 0xda220879, 0x7969a100, 0x50262206, 0x26588226, 0x02271027, 0x87282700, + 0x35112154, 0x83087969, 0x824a20b3, 0x0006238b, 0x558502da, 0x1d373623, 0x05035926, 0x59fe673f, 0xee05e305, 0xbb003800, 0xff0f00b9, 0x0d094084, + 0x202d3710, 0x0b370c09, 0x40e0ffb8, 0x18088228, 0x330b879f, 0x05662659, 0x05710769, 0x127a077d, 0x280d1b71, 0x2f922203, 0x088b9f18, 0x18094821, + 0x08188b9f, 0x36323223, 0x311c2ec8, 0x2bb10031, 0x234f232f, 0x2b042302, 0x25042327, 0x210d0d06, 0x3a25257e, 0x1a013a40, 0x9a9f187d, 0x10392208, + 0x9a9f18f4, 0x3917230a, 0x47625d2f, 0x05004608, 0x115d2208, 0x2b2f3912, 0x3912ed5d, 0x2b5d3031, 0x052b012b, 0x20273434, 0x00101100, 0x17043221, + 0x26262311, 0x09d95027, 0x36231382, 0x82211137, 0x12b25801, 0x02930326, 0x52fe84fe, 0x1eb79f18, 0x6cc44224, 0x97670202, 0x174a270a, 0x9b010610, + 0x9f186c01, 0xfd261ac8, 0x11371921, 0xca591d14, 0x00002308, 0xe3410003, 0x26002e06, 0x38003300, 0x43406900, 0x2d4e164e, 0x4189184e, 0x34342311, + 0x89183535, 0x21081145, 0x34013470, 0x36093634, 0x27241b09, 0xba008415, 0x1b832e3a, 0xf61039bb, 0xfdf610ed, 0x39123232, 0x8f582f39, 0xed2f2108, + 0x20054d4a, 0x20118233, 0x55891831, 0x03132735, 0x04013521, 0x89185aee, 0xb0262b5a, 0x01a1fee3, 0x8918814c, 0x05272960, 0x1477fe46, 0x43007501, + 0x052705e5, 0x020108f5, 0x432b0026, 0x81200635, 0x122e1882, 0x50010b40, 0x00010110, 0x0b060c10, 0x895d2b25, 0x202b840b, 0x202b864b, 0x082b821b, + 0x22402c23, 0x0f400e40, 0xa00ea002, 0xc00ec00f, 0xf00ef00f, 0x5001060f, 0xef1b9f1b, 0x011b031b, 0x0e171b00, 0x08428300, 0x355d115e, 0x0200715d, + 0x00003900, 0xd1057d06, 0x17001300, 0x40406200, 0x1601120e, 0x0bcb0804, 0x91050c0b, 0x17401730, 0x17701760, 0x17b01780, 0x100b1706, 0x07040317, + 0x0007030c, 0x150f1200, 0x027f0303, 0x190019b6, 0x19601950, 0x0b090903, 0x0603160e, 0x18b5077f, 0x17edf610, 0x5d2f3339, 0x002b0786, 0x17123f2f, + 0xed5d2f39, 0x822f3912, 0x865a1818, 0x3335250b, 0x21152135, 0x33210382, 0x08048201, 0x887d0621, 0xc9fd80fe, 0x858580fe, 0x37028001, 0xfd888001, + 0x04c9fdf8, 0x02b0fb50, 0x0470fd90, 0x82a9d850, 0x88fe2300, 0xea82a0a0, 0x29003e08, 0x12050000, 0x1e001406, 0x31405100, 0x1d131d01, 0x1d70193c, + 0x0e141704, 0x121111ca, 0x080d1801, 0x12101b95, 0x0f150d00, 0xba008402, 0x60203020, 0x15140220, 0x840b0317, 0xb90d0f11, 0x0619691f, 0x2f21a283, + 0x20a0822f, 0x209c823f, 0x219f8339, 0x8c4d3939, 0xa68a1805, 0x8523200b, 0x211521a6, 0x142a8718, 0x0181812c, 0xfe460168, 0x6cb160ba, 0x754ccdb6, + 0xd52d080b, 0xcf7070cf, 0xd4504bee, 0x020000d3, 0x00007600, 0xc707ed03, 0x25000b00, 0x3a406100, 0xca150c0c, 0x1c701c0f, 0x1c191c02, 0x0fca2219, + 0x08534e0f, 0x0cb0253e, 0x0c19b018, 0x0aa10b08, 0x0205197f, 0x010300a1, 0x26270303, 0x2730271f, 0x27702740, 0x24054178, 0x3232ed5d, 0x2b0382fd, + 0xed2fed2f, 0x32ed2f00, 0x3332ed3f, 0x4e0b717c, 0x13200b4e, 0x4e187c7c, 0x0a20094f, 0x210d857c, 0x857c7a9c, 0x09524e08, 0x7cbf0621, 0x9821078f, + 0x078f7cb3, 0xf6ff0222, 0x2708dc82, 0x004306c8, 0x001d0003, 0x04294045, 0x0fc80d04, 0x11140114, 0xc81a1114, 0x0f020707, 0x04af1d01, 0x0411af10, + 0x00118400, 0x2b05cc7d, 0x701f601f, 0x2f5d031f, 0x32fd335d, 0x3f20bf85, 0x2120bb8f, 0xc260b399, 0xb62d0805, 0x2a716d0a, 0x3b1b1c47, 0x021f2317, + 0x6f7305ac, 0x231f4829, 0x192a1a2d, 0x01630402, 0x258dabe0, 0x32261415, 0x23a69148, 0x41201715, 0x33a28235, 0x00007b00, 0x8907e303, 0x0f000b00, + 0x2d404c00, 0x0c0cca0f, 0x2c087241, 0x010e400f, 0x0b080f0e, 0x037f0aa1, 0x0772410e, 0x1f101129, 0x40113011, 0x41117011, 0xf4240672, 0xfd103232, + 0x2f220482, 0xbd4f2f71, 0x21b68206, 0x6a413031, 0x2103220b, 0x0aa44f35, 0xdefc2324, 0x3f412203, 0xaf052609, 0x000200d2, 0x378c822d, 0x0014068f, + 0x00070003, 0x061a402c, 0x020505ca, 0x0607010f, 0x06840007, 0x24062041, 0x70096009, 0x07204109, 0x3f206b82, 0x21216787, 0x415f8237, 0x7d280500, + 0x62029efd, 0xd2df6304, 0xd920db89, 0x1938db82, 0x00b96300, 0x40f4ff16, 0x37100e3a, 0x6012500c, 0x03127012, 0xc6161212, 0x250a6042, 0x130cb119, + 0x604212b1, 0x87122005, 0x1a1b29ed, 0x1b301b1f, 0x1b701b40, 0x231c6042, 0x2b335d2f, 0x1425f28e, 0x26222306, 0x062a7e35, 0x29095142, 0xc0b5cd2f, + 0x564edfc3, 0x01414f54, 0xd1062909, 0xb6c7c7b6, 0x63696963, 0x1c20b583, 0xa13e0482, 0x03006406, 0x38001100, 0x0a042140, 0x07c50e0a, 0x010f0207, + 0x0b04af11, 0x00040aaf, 0x10410a84, 0x60132406, 0x42137013, 0x2f211131, 0x218a8433, 0x828c1321, 0x08051f41, 0x99a98f25, 0x3abaa2a1, 0x043e4a4f, + 0xb5010263, 0x66b6c1c2, 0x00647775, 0xfe7b0001, 0x0528045f, 0x002000d1, 0x67354058, 0xcd510585, 0x010d2106, 0x2c057967, 0xb01e1818, 0xa10b0810, + 0x7f0a100a, 0x071f4103, 0x1f212229, 0x40223022, 0x42227022, 0x1028080d, 0xf41039ed, 0x32fd2f32, 0x26059356, 0x32fd332f, 0x6732fd3f, 0x33240575, + 0x21112311, 0x33220382, 0x75672111, 0xf9012312, 0xc75182fe, 0xedfe2105, 0x410d7167, 0xfe24092b, 0x212211f8, 0x08087167, 0x00341e39, 0xa0000200, + 0xc2025ffe, 0x17001406, 0x4c001b00, 0x20143240, 0x19370c09, 0x101a009e, 0x031a201a, 0x0f02001a, 0x0b0f0f05, 0x101c13c8, 0x16b00810, 0x84049d18, + 0x419d1916, 0x1d2c0642, 0x1d701d60, 0x5d2f5d03, 0xe4fd33e4, 0x24084348, 0x5d3f3f2f, 0x21b182ed, 0xd1533736, 0x07614f05, 0x06155108, 0x26222306, + 0x21013435, 0x01a92111, 0x02966801, 0x254f5b03, 0x2f091e55, 0xb3a42379, 0x84fe7c01, 0x30477c01, 0x9dfbec03, 0x3f192615, 0xc80e1450, 0x9aa40b0d, + 0x0138052e, 0xffff0011, 0xe9ff2a00, 0x01081f04, 0x2d002602, 0x07010000, 0x88ffd600, 0x2a07417c, 0x7f01011d, 0x1d00011d, 0x49181719, 0x003206f1, + 0xfec6ff02, 0x06020359, 0x0012008c, 0x40530019, 0xd7831532, 0x1a010a30, 0x15130201, 0x50184017, 0x18180218, 0x8f181717, 0x4023097f, 0x82130117, + 0x0e10340f, 0xba001384, 0x011b2f1b, 0x105d2f06, 0x32fd32f4, 0x602f332f, 0xed210786, 0xd16a1833, 0x2b5d2108, 0x2a06d87f, 0x16163311, 0x35363233, + 0x18352311, 0x18081e78, 0x390e8e8f, 0x9091ef72, 0x14fffeeb, 0x0911d5be, 0x0e0a0201, 0x08038e7c, 0xd5d5a0f4, 0xd7838901, 0x59febe26, 0xd1052c06, + 0x2e20d782, 0x0623d782, 0x5ed7dc00, 0x1a2305f9, 0x6300050c, 0xaa260597, 0x520559fe, 0x21821406, 0x21824e20, 0xdc00072f, 0x000072ff, 0x0a400f00, + 0x011a5f01, 0x20278200, 0x2ef5840a, 0xaa000100, 0x52050000, 0x0b006304, 0x1840c800, 0x2461df8f, 0x0200080f, 0xdf8f1803, 0x18f42031, 0x274edf8f, + 0x12fe6104, 0x1cfef001, 0x2508ff82, 0x0459febe, 0x00d105f0, 0x4042001a, 0x09200c27, 0x0302370c, 0x07019104, 0xc8151111, 0x10101c0d, 0x0a0ab118, + 0x42180001, 0x1c2b07ac, 0xb5017f04, 0xedf4101b, 0x6e2f3311, 0x2f220cfb, 0xe76a3fed, 0x1266640a, 0xfde50229, 0x028001d9, 0x63d5feb2, 0x01280c7a, + 0x4ffbd105, 0x2e0fe0fe, 0x2308964a, 0x0028174d, 0x342d9782, 0x700259fe, 0x18001406, 0x2c404400, 0x3997830a, 0xc8130f0f, 0x00021c0b, 0x0e0e0104, + 0x16e0b108, 0x0d401601, 0x16163710, 0x5b438404, 0x601a3406, 0x031a701a, 0xed5d2f5d, 0x5d2b2f39, 0x002f32fd, 0x643f2f2f, 0x212206fc, 0xfe641123, + 0x8c012415, 0x646801e2, 0x06230ef9, 0x6400fa14, 0x10210bf3, 0x0775422b, 0xd1050823, 0x059f6702, 0xdc000623, 0x057542fb, 0x040a1822, 0x220a7542, + 0x82820412, 0x42512021, 0x73200675, 0x26067542, 0x0001257f, 0x820d1725, 0x355d2127, 0x00241a82, 0x0659febe, 0x00374b82, 0x40d8001a, 0x40024f5d, + 0x028f0207, 0x06020780, 0x74021602, 0x830c0319, 0x060033ee, 0x06200610, 0x06490146, 0x00060778, 0x01012b02, 0x94410206, 0x08073805, 0x03040201, + 0x10030306, 0x01770167, 0x30062302, 0x52014001, 0x18016001, 0x2f0e0fa7, 0x1cb60a10, 0xc0ffb81c, 0x37100db6, 0x02011c00, 0xb7390a82, 0x02371009, + 0x1bb50480, 0x2bedf410, 0xf6102b5d, 0x112bfd32, 0x5d5d3939, 0x051d4a2f, 0xfd3f2608, 0x54432f32, 0x2b194058, 0x3b072402, 0x4b073402, 0x5b074402, + 0x6d075402, 0x7f076202, 0x0c077002, 0x3031595d, 0x2022825d, 0x37a718b0, 0x5d2b2a1b, 0x35057271, 0x11211101, 0x18048321, 0x080c8293, 0x36363747, + 0x7ffd9f04, 0xcb01a0fe, 0x60011f02, 0x9a6dbee7, 0x64241b1f, 0x1345191a, 0x0e031b19, 0x02fcf303, 0xb7fcd105, 0x21fa4903, 0x0713dbbe, 0x0f0c0801, + 0x34120e0a, 0x00010000, 0x0559feaa, 0x00820412, 0x40440023, 0x08f1562a, 0x221e1e25, 0x561c1ac8, 0x1d3a08f2, 0x1784011d, 0x253025ba, 0x10022560, + 0xb90d840b, 0xfdf41024, 0xf6105d32, 0x614a33ed, 0x05134207, 0x35045d22, 0x2014c35a, 0x21ae8b11, 0xd756a803, 0xb7ea3710, 0x1c1aa163, 0x602a4718, + 0xc9019632, 0x25208744, 0xfc232022, 0xdd5604e4, 0x2dfd2c05, 0x0612ecc3, 0x0f080101, 0x63ffff00, 0x0721053b, 0x082f6989, 0x8f00d822, 0x24054364, + 0x01255002, 0x33a28350, 0xbaffb825, 0x0b090a40, 0x25000237, 0x25000624, 0x5d2b352b, 0x2605dd69, 0x05ddff58, 0x82140626, 0x8252203b, 0x000635fc, + 0x0000e7d8, 0x00144019, 0x30270024, 0x50273024, 0x06257025, 0x5d203488, 0xd9206d89, 0xd9226d88, 0xb14c8d00, 0x50022605, 0x0002012a, 0x8b5f852a, + 0x8864205d, 0xe6d9215d, 0x8605874f, 0x26bb8224, 0x0659febe, 0x69d10558, 0x06230687, 0x85eadc00, 0x202e2321, 0xa94f0f14, 0x03550808, 0x006704d8, + 0x40560027, 0x700c0113, 0x2021020c, 0x26370c09, 0x22c80226, 0x1713131c, 0x40c0ffb8, 0x37100a1e, 0x0f0f9517, 0x091b0f0b, 0x29121208, 0x2501292f, + 0x05b11f25, 0x841b0c05, 0x1028b909, 0x3932fdf4, 0x2f32fd2f, 0x2f33115d, 0x3f2f3f00, 0x322bfd3f, 0x05a0412f, 0x465d2b21, 0x34240527, 0x11212726, + 0x2006f44b, 0x07216017, 0x390ccb68, 0x502a5c96, 0xfe010155, 0x776801eb, 0x30134ab0, 0x66172012, 0x44764d22, 0xbb76018c, 0x18d23506, 0x2b104d53, + 0xa563040f, 0x02024366, 0x0808a9fe, 0x24fd1814, 0x2007e343, 0xbf431800, 0x00d62212, 0x072b472b, 0x01013829, 0x00013840, 0x43083438, 0x5d2105bf, + 0x692f8235, 0xd6200fcb, 0x22067d65, 0x821a3135, 0x35360825, 0x29000100, 0x4b050000, 0x0f00d105, 0x27404500, 0xcc000a0d, 0x090f0303, 0x03069104, + 0x08010c0f, 0x090c0d5b, 0x0501007f, 0x01047f5b, 0x10110404, 0x11401110, 0x2b64117f, 0x33e42a06, 0x3232fd33, 0x002f2fe4, 0x056f622f, 0x1c7bed20, + 0x21352205, 0x20018611, 0x2b078215, 0xe7fefa01, 0x2ffe1901, 0x2ffe2205, 0xe7310782, 0x5d0280fe, 0x016f01e5, 0xfee0fe20, 0xa3fde591, 0x08838200, + 0xeaff2b30, 0xa4057803, 0x65002200, 0x050a3b40, 0x0f02051b, 0x020f700f, 0x0715180f, 0x030a0aca, 0xa70b1114, 0x220f0e0f, 0x03a71e22, 0x12161616, + 0x33824012, 0x0f240036, 0x08080124, 0x1811150c, 0x0e0c0a84, 0x01076f03, 0x175d2f07, 0x2f249283, 0x115d2f33, 0x33220382, 0x6c493911, 0x333f2105, + 0xaf4d9a82, 0x5d2f2505, 0x255d3031, 0x2305b048, 0x33352335, 0xae830383, 0x15211529, 0x14231533, 0x58161716, 0x66680535, 0x8a8a2106, 0x22079669, + 0x1802e5e5, 0x320cbf90, 0xf4c7d472, 0xbffe4101, 0x37d4c7f4, 0x2923234f, 0x68000a18, 0xc7220861, 0x61682602, 0x00d72206, 0x05db4267, 0x1f500126, + 0x1f000101, 0x42055368, 0x4f6805db, 0x67522005, 0xd72108dd, 0x05a94512, 0x09172422, 0x2606c76c, 0x05e1ffa9, 0x888907d6, 0x00d8224d, 0x354d8268, + 0x0114401c, 0x20011450, 0x40133013, 0x04137013, 0x15140001, 0x27541107, 0xb37e1809, 0x04d8210f, 0x2f059143, 0x301a0017, 0x501a3017, 0x06187018, + 0x1a190001, 0x5d206584, 0xd920b589, 0xd9226788, 0xb5876900, 0xb5821820, 0xb5911820, 0xb5886420, 0x85ffd921, 0x851d20b5, 0x01003cb5, 0x5ffea900, + 0xd105d605, 0x5d002800, 0x20243c40, 0x15370c09, 0x03070311, 0x1835920c, 0x08070aa7, 0x1b1f1f20, 0x201c23c8, 0x26b01820, 0x03142603, 0x807f1007, + 0x02119011, 0x402a1111, 0x7f08012a, 0xa7180700, 0xb8710e1a, 0xed5d2f0c, 0x3939123f, 0x052b3031, 0x20230622, 0xa7181100, 0x11220a28, 0x62180214, + 0x964a0aed, 0x03363907, 0x182a0f90, 0xb1feb9fe, 0x92828201, 0x82018590, 0x0201b4ba, 0x5f2a5560, 0x3906c071, 0x01021b03, 0x03130124, 0x9b5ffcb7, + 0x03a19298, 0xcc4afca1, 0x1939f5fe, 0x514b2620, 0x24182208, 0x20d98200, 0x2ad982a1, 0x006304c9, 0x40590029, 0x8220273a, 0x060a2bd9, 0x134c061a, + 0x136c135b, 0x9218077f, 0x24080ba4, 0x1e222218, 0x231c26c8, 0x29b01b23, 0x84021429, 0x302bba17, 0x022b602b, 0xb908840b, 0xedf4102a, 0xfdf6105d, + 0x0de57532, 0x5d24d484, 0x3736042b, 0x84059d42, 0x068e42d7, 0x23146f4b, 0x010b9503, 0x10cd9218, 0x03029722, 0x2f22d98a, 0x92181893, 0xfb2310dd, + 0x7324169d, 0xff2d099c, 0x004200ff, 0x08c50800, 0x00260201, 0x24e4823a, 0x01d60007, 0x07fd41b1, 0x01011127, 0x060d1100, 0x08415200, 0x00002d26, + 0x8c06a907, 0x5a202b82, 0x20212b86, 0x05ff4100, 0x45182686, 0xd6221215, 0x4f872100, 0x4f820d20, 0x05090d22, 0x45184f89, 0xd6210f11, 0x234d85c5, + 0x0206080c, 0x3f05bd45, 0x030000aa, 0x001e0667, 0x40230010, 0x120b0513, 0x0000020b, 0x010d9804, 0x08000009, 0x11b90984, 0x26073147, 0x312f32fd, + 0x5b015d30, 0x112106fb, 0x05db5a21, 0x6703172a, 0x2c4d181b, 0x98fe4b5e, 0x089e9d18, 0xfb6e4b28, 0xce820494, 0x42820bce, 0x00033008, 0x06000018, + 0x0000081e, 0x00190016, 0x40e10025, 0x070d0f73, 0x1b0d1f11, 0x2f111610, 0x39102b0d, 0x660d590d, 0x0b107610, 0x17191818, 0x82810102, 0x19182127, + 0x08258c18, 0x4c165008, 0x5a164306, 0x6b165506, 0x79166406, 0x0a167606, 0x054d004d, 0x057d007d, 0x40930304, 0x0f190119, 0x020d700d, 0xc51d0c0d, + 0x10161006, 0x1003102f, 0x18190010, 0x05051606, 0x2370230f, 0x0a052302, 0x02050500, 0xdfffb800, 0x100a2b40, 0x82210537, 0x132e0804, 0x090c100f, + 0x1310b01a, 0xb0201301, 0x09300920, 0x09060902, 0x05041613, 0x01270f00, 0x271f2700, 0x5d2f0501, 0x2f5d3311, 0x2f391712, 0x0282ed5d, 0x3939122b, + 0x2b2b2f33, 0x2f2f005d, 0x2014825d, 0x82128233, 0x18058203, 0x2411a98c, 0x21215d01, 0x20018203, 0x05ce6601, 0x1521132f, 0x15161605, 0x0b070614, + 0x26340102, 0x07f35923, 0xfe1e063d, 0xf6fd7b73, 0x027dfe71, 0x6e352a0c, 0x5101bd59, 0x8263f2fe, 0xa3592837, 0x183a01ad, 0x0807454d, 0xfe2d015e, + 0x281305d3, 0x945c3c6c, 0x14090124, 0x659c1eea, 0xfd256d3e, 0xfeb2012b, 0x3fad034e, 0x3f3f5252, 0x00005453, 0xff560003, 0x07b704e2, 0x000f00ba, + 0x004c0040, 0x699940d3, 0x02347b34, 0x3d03180f, 0x3d141819, 0x2c3d3426, 0x05493a3d, 0x2c4a1c49, 0x3a4a3446, 0x1c590559, 0x3a592c59, 0x0a708918, + 0x20163d3a, 0x02323032, 0x44313232, 0x2f350fc5, 0x4f353f35, 0x4a350435, 0x03354a3b, 0x157c8918, 0x0a3f2a08, 0x1a38052e, 0x2a38152e, 0x0638252e, + 0x3b2baf47, 0x38043531, 0x2e012e20, 0x412e3434, 0x193838af, 0x8440011f, 0x2f4eba3f, 0x0b83794e, 0xf6104d27, 0x5d2f33ed, 0x2406825d, 0x39123232, + 0x0618632f, 0xed39172d, 0x3f2f005d, 0x32ed3fed, 0x83112b2f, 0x17112517, 0x5d2f2f33, 0x5d241e83, 0x015d3031, 0x212a9579, 0x7a413736, 0x41012008, + 0x0582057a, 0x18211121, 0x2a338d89, 0x01bb5368, 0x60ddfe4e, 0x1855697b, 0x210a9289, 0xa4794b3d, 0x4ba41819, 0x0e370809, 0x8a24071e, 0x21905f5b, + 0xfe142301, 0x68991bfd, 0x1720905f, 0x04fdb2b3, 0x5b3e7d05, 0x4e3f3f5a, 0x00ffff50, 0x08000004, 0x0201083c, 0x00900026, 0x00070100, 0x435d028d, + 0x022905c9, 0x02011750, 0x08151700, 0x08194409, 0xe2ff5626, 0x8c06d107, 0xa0202b82, 0x012c2b85, 0x0000009a, 0x0003b60a, 0x0b1b5352, 0x2405ef4e, + 0x0672ff65, 0x204f8466, 0x21238591, 0xbd488d00, 0x50032c05, 0x10030134, 0x34000134, 0x59202034, 0x582409db, 0x26055eff, 0xa1205384, 0x06232f82, + 0x85e78d00, 0x3c258551, 0x00010035, 0x02da02e1, 0x00630457, 0x40160003, 0x02d9010c, 0x4fd0030f, 0x02054f02, 0x05357502, 0x0130312f, 0x02211121, + 0x018afe57, 0x01da0276, 0x12ed4489, 0xa4014322, 0x0127d385, 0x01010e50, 0x440e0e00, 0x43221aed, 0xd384f500, 0x4f922688, 0xbe018d22, 0x0f204f87, + 0x0f214f82, 0x224f9a0f, 0x8646018d, 0x8726864f, 0x8907214f, 0x22088d45, 0x82b2018e, 0x401a2a4f, 0x50010210, 0x00020112, 0x20548212, 0x05924512, + 0x00355d25, 0x8235355d, 0x05954533, 0x95451420, 0x018e2208, 0x2257821f, 0x8f0b4011, 0x129d452e, 0x41004322, 0x0a20af87, 0x0a215a82, 0x1a9d450a, + 0x45ce4321, 0x0921059d, 0x079d4509, 0x03202008, 0x062d02c7, 0x00030014, 0x0245b73d, 0x01660156, 0xffb80003, 0x0c09b3c0, 0xffb80337, 0x821740d0, + 0x82012008, 0x0f300813, 0x00000100, 0x100d4005, 0x0b400237, 0x2f023711, 0x2f332b2b, 0x333f005d, 0x0130312f, 0x015d2b2b, 0x02012103, 0x90fe9d2d, + 0x14062301, 0x4d02b3fd, 0x2e054018, 0x07698518, 0x00284208, 0x216740aa, 0x30252a12, 0x42173212, 0x52174212, 0x64165212, 0x60156712, 0x75127416, + 0x79167015, 0x20230f17, 0x0206c605, 0x1c1f0808, 0x0c1fc609, 0x06020c70, 0x14140c02, 0x010c9b18, 0x40020710, 0x08a2820c, 0x014a2728, 0x1c022723, + 0x0c058b20, 0x08700860, 0x60210802, 0x0a1d011d, 0x08061306, 0x0204131d, 0x002a0000, 0x2f020102, 0x537a115d, 0x822f2005, 0x260283ca, 0x1132fd33, + 0x18003939, 0x2e0a8285, 0xb2585443, 0x5d010c0f, 0x39ed5d59, 0x832f3339, 0x0800210e, 0x0d820e82, 0x22053858, 0x4a373636, 0x35250684, 0x32332434, + 0x07384c16, 0x21151522, 0x31080185, 0x15070606, 0xfb2d0521, 0x1056626d, 0xb3b5b5a9, 0x88f22501, 0x4c2d35b3, 0x80683a86, 0x49feb501, 0x36feb701, + 0x0331570f, 0x1a160107, 0x88ae4f5e, 0x851878ae, 0x392009ab, 0x54080e82, 0x0b1a643a, 0x81000200, 0x7e05e6ff, 0x1e003005, 0x5b002500, 0x04251b40, + 0x03630355, 0x17600460, 0x0371196f, 0x17710470, 0x110a197f, 0x370c0920, 0xc0ffb80d, 0x100d1f40, 0x25a70137, 0xa7221525, 0x010e301b, 0x96070e0e, + 0x0e0e1615, 0x0000831f, 0x83012527, 0x82e18218, 0x055762fa, 0x2f21f882, 0x053778ed, 0x64182b20, 0xda820c47, 0x67113321, 0x615c05f6, 0x20058205, + 0x055d5c25, 0x7e052f08, 0x47067dfc, 0x55913535, 0x362f8c48, 0x272d1c4f, 0x924b366d, 0xfe94fe51, 0x0175017c, 0x01280139, 0x0381fe27, 0x95717975, + 0x5d3f0209, 0x0082247c, 0x19162408, 0xbefe1431, 0x130d2a0f, 0x015e0111, 0x013e013d, 0xfec4fe71, 0x8e835dd8, 0xffff8d84, 0xe0ffb300, 0x1805e508, + 0x3310cf48, 0xcf044102, 0x3800c6fd, 0x03042540, 0x29101902, 0x13100210, 0x133a0982, 0x13401320, 0x000b0102, 0x400b200b, 0x040b7b0b, 0x01200100, + 0x5d02015f, 0x02853511, 0x00353527, 0x35355d3f, 0x24598235, 0x09e0ffb1, 0x8948183d, 0x001d280c, 0x02070100, 0x82270541, 0x40412259, 0x254f8218, + 0x33293319, 0x59833302, 0x36203638, 0x36503630, 0x2e2e0103, 0x40c0ffb8, 0x370d0909, 0x06100600, 0x0d820601, 0x100eb224, 0x5f822b37, 0x65842b20, + 0x00206287, 0xa7206382, 0xbd836384, 0x00ce3f28, 0xbb002700, 0x638a1803, 0x2624bd86, 0x26022629, 0x29316383, 0x29502920, 0x10210102, 0x40212021, + 0x00000321, 0x05127b10, 0xc525bd93, 0xfa08e0ff, 0x21598305, 0x5984ec40, 0x85b50221, 0xe4042159, 0x3a2bbd82, 0x03042740, 0x290e1902, 0x830e020e, + 0x20113959, 0x50113f11, 0x09010311, 0x093f0920, 0x0003097b, 0x10050f05, 0x03057005, 0x24085b90, 0xa0000100, 0xad0259fe, 0x0300a600, 0x0a403000, + 0x004b0109, 0x01660156, 0xffb80004, 0x0c0ab3ca, 0xffb80337, 0x821682d6, 0x02032808, 0x0200001c, 0x432f332f, 0x253e09ee, 0x02132301, 0xeaddfead, + 0xb3fda69d, 0xff004d02, 0xfeb201ff, 0x00ee0359, 0x00060214, 0xa28200dc, 0x05190227, 0x06970303, 0x245d828c, 0x0309401f, 0x21518340, 0x5c820203, + 0x09b5c02b, 0xd000370b, 0x2bed2f03, 0x25538200, 0x0130312b, 0x2a822303, 0x49ec4928, 0x77fe8c06, 0x31828901, 0x0305c724, 0x3b84e904, 0x0b00072d, + 0x15404800, 0xd60a0506, 0x82020909, 0xb4072386, 0x40824006, 0xb40a0625, 0x84ffb80b, 0x060b214b, 0xaa825583, 0xcf2e5682, 0x0103400b, 0x335d2f03, + 0x2f322bfd, 0x0282ed2b, 0x12256383, 0x39ed2f39, 0x23688539, 0x21112101, 0x032c0383, 0x49c34982, 0xf5febc02, 0xe9fc0b01, 0x7c850583, 0x8d188082, + 0x370807b3, 0x0000ebff, 0xd1054906, 0x24002600, 0x0701002b, 0xd2fd9d01, 0x260045ff, 0x0e021940, 0x4f0e0203, 0xff0e8f0e, 0x0001030e, 0x7f003f00, + 0x100f0200, 0x5d02101f, 0x3535115d, 0x00240382, 0xffff353f, 0x43203f84, 0x27253f82, 0x50012800, 0x3a418900, 0x01154020, 0x4f01030f, 0x020c8f0c, + 0x010f000c, 0x01200110, 0x0104016f, 0x82355d2f, 0x213b8802, 0x3b844407, 0x4f012b22, 0x28223b8a, 0x3b821c40, 0x20111025, 0x89115011, 0x10052842, + 0x6f052005, 0x85050405, 0x885d2042, 0x29052143, 0x2c224384, 0x438a4601, 0x23403022, 0x01224382, 0x82840c50, 0xc00ca024, 0x8682040c, 0x02100229, + 0x026f0220, 0x820f0204, 0x1140235c, 0x4b845d03, 0x86357121, 0xe1ff2b4b, 0xf0055807, 0x32002700, 0x4b8af200, 0x402c2108, 0x0327021f, 0x2920290f, + 0x0203293f, 0x8f274f27, 0xb027a027, 0x0527c027, 0x0f060001, 0x02063f06, 0x89061241, 0x7b072193, 0x3c229384, 0x938e9f01, 0x03092108, 0x0e200e0f, + 0x0e700e3f, 0x09000104, 0x8f094f01, 0x0309ff09, 0x04100009, 0x04400420, 0x04040470, 0x4b8a9286, 0x93838e20, 0x01bb0123, 0x084b8a03, 0x1e402a20, + 0x01032b01, 0x2b8f2b4f, 0x2b032ba0, 0x8f1c0f00, 0x031c9f1c, 0x202d0f1c, 0x9f2d3f2d, 0xda83042d, 0x835d1121, 0x040027d9, 0x00009dff, 0x6b421f03, + 0x0f3b0808, 0x19405900, 0xd60e080b, 0x07060d0d, 0x02060607, 0xb10b0105, 0x0b09400a, 0xb10e0a37, 0xc0ffb80f, 0x0c091a40, 0x040a0f37, 0x04070fbd, + 0x00078400, 0x02011001, 0x60115001, 0x5a117011, 0x332107b2, 0x087b42fd, 0x2f333f24, 0x7e422f33, 0x21212b07, 0x03032111, 0x23010323, 0x03833311, + 0x3305ba5a, 0x3b9b3b2c, 0xe3e34a02, 0xe3e361fd, 0x29026304, 0x890177fe, 0x4c0a8542, 0x052705df, 0x000602d1, 0x60000024, 0xb820062f, 0x25240f84, + 0x02000000, 0x0c696e18, 0x0a409436, 0x01080007, 0x01180017, 0xffb80604, 0x0d2e40f0, 0x10043710, 0x38270482, 0x06050105, 0x82810405, 0x833720ec, + 0x01823f0a, 0x024c0201, 0x025c0343, 0x026e0353, 0x027f0361, 0x00080370, 0x40e0ffb8, 0x3710092b, 0x04822001, 0x0503023e, 0x01010003, 0x0f080000, + 0x30081f08, 0x04087008, 0x7a010501, 0x03020102, 0x1801d706, 0x013a5482, 0xed2b2f00, 0x39125d3f, 0x115d2f01, 0x175d2f33, 0x312b2b39, 0x10875d30, + 0x0483c0fd, 0x5dc00828, 0x5d2b2b01, 0x6e182121, 0xcf851981, 0x84f30421, 0x842820cf, 0x005a24df, 0x843d0500, 0x883d200f, 0x84f520ef, 0x842b200f, + 0x827b200f, 0x84e320c2, 0x842c200f, 0x00be240f, 0x842c0600, 0x002e240f, 0x41010000, 0x0039072f, 0x408d0006, 0x0800070a, 0x18001704, 0xb8030404, + 0x2e40f8ff, 0x01370f0d, 0x20048208, 0x22c48338, 0x82810102, 0x8337203a, 0x0482330a, 0x054c0504, 0x055c0643, 0x056e0653, 0x057f0661, 0x0d410670, + 0x09252505, 0x20043710, 0x09410482, 0x00022f09, 0x02040104, 0x01057a04, 0x04000305, 0x20820d18, 0x2b2f0023, 0x06074133, 0x33115d25, 0x18315d2f, + 0x4107846f, 0x01290d06, 0x06210121, 0xfe70fe1e, 0x2a018288, 0x012f027a, 0xfb3504a8, 0x41d105cb, 0x06210505, 0x20c584d7, 0x20d58830, 0x200f8408, + 0x08d58231, 0x8900032c, 0x2f050000, 0x0300d105, 0x0b000700, 0x1d404f00, 0x051f050f, 0x0503058f, 0x090606f2, 0x0302f201, 0x0809f20a, 0x12094005, + 0x9d82e037, 0xc0ffb833, 0x14091240, 0x05050437, 0x04020304, 0x0d080809, 0xae8b1800, 0x17122f07, 0x2b2f2f39, 0x3f002b5d, 0x12ed3fed, 0x69182f39, + 0x0324072f, 0x13211121, 0x052b0382, 0x045afb2f, 0xbefb32a6, 0x83324204, 0x9d042509, 0x99fc3401, 0x62230382, 0x56003401, 0x0525076b, 0x000602f0, + 0x22998232, 0x82be0001, 0x82f52099, 0x00073f99, 0x03174027, 0x01030691, 0x007f0105, 0x090009b6, 0x09600950, 0x057f0403, 0xf61008b5, 0x03825ded, + 0x332f0027, 0x3031ed3f, 0x065d5421, 0xfef5052a, 0xfec9fd80, 0x04370580, 0x4105057a, 0x05210507, 0x20f7848b, 0x205d8433, 0x205d8268, 0x315d822d, + 0x40bf000c, 0x770b076e, 0x0a37020b, 0x08660856, 0xd8820877, 0x09080326, 0x0304f308, 0x65080183, 0xf30b0a0b, 0x09020302, 0x8b0a7f0a, 0x0a9b030a, + 0x0ad90ac8, 0x08030203, 0x0401910b, 0x05910804, 0x032f0403, 0x0354033f, 0x03b003aa, 0x50032005, 0x80037003, 0xa7039503, 0xfd03e203, 0x00030803, + 0x09450109, 0x09900955, 0x09b009a0, 0x400609e0, 0xb8090109, 0x0e40c0ff, 0x09371b09, 0x0b040307, 0x06070809, 0x12820002, 0x0d09b629, 0x0e000037, + 0x76112f02, 0x2f270686, 0x72715d2b, 0x54715d33, 0x2f3205a9, 0x393911ed, 0x715d3031, 0xed871001, 0x10c00887, 0x06830587, 0x715d0122, 0x0120f582, + 0x0805aa58, 0x21011526, 0x3bfb2d05, 0x03fe0f02, 0x4efd9204, 0x14fed201, 0x2001ed02, 0xb101e501, 0xe0fe1b01, 0xfe4d78fe, 0xffff0044, 0x2207d955, + 0x82000602, 0x07f94b71, 0x82d10521, 0x003c210f, 0x18241f83, 0x04060000, 0x4a080f84, 0x0000003b, 0x008b0001, 0x05440700, 0x002300d1, 0x1b39405a, + 0x56941806, 0x75096c09, 0x19090309, 0x08030922, 0x22080310, 0x0123207f, 0x2f7f1123, 0x23100110, 0x07181b07, 0x0800107f, 0x08022570, 0x20242508, + 0x60254025, 0x5e257025, 0xc42506ef, 0x103939ed, 0x059e50c4, 0x632f0021, 0xd98306d1, 0x0614012f, 0x07060607, 0x26112111, 0x26262726, 0x07e55235, + 0x08821720, 0x37363624, 0x11823636, 0x44074508, 0xf7555457, 0xa585fea8, 0x565553fc, 0x26267b01, 0x01456e25, 0x246e467b, 0x7b012527, 0xdc96a903, + 0x0f524847, 0x4701b9fe, 0x4948520f, 0x280296da, 0x7a56d8fd, 0x0c33292b, 0x75fc8b03, 0x2d2a310d, 0x28025d71, 0x0afd7b18, 0x8d002731, 0x651d65b5, + 0xb8020221, 0x0cb3c0ff, 0x82143710, 0x13402107, 0x192f0882, 0x04021425, 0x1f920b16, 0x18012604, 0x83271691, 0x103b2517, 0x40173719, 0x3f080482, + 0x25012520, 0x7f026fb2, 0xbf029f02, 0x2f020402, 0xb2190119, 0x14701460, 0x14b01490, 0x7d081404, 0x271c1402, 0x1f292222, 0x02293f29, 0x00177d0e, + 0x2f1c011c, 0x5dedc45d, 0xc42f3311, 0xed393912, 0x5d20fe82, 0x2b290383, 0xed2f002b, 0xed3f3939, 0x06e14412, 0x11212122, 0x0ac45418, 0x0c027c18, + 0x1035022b, 0x00202100, 0x07021411, 0xf67b1815, 0xa0ba2309, 0x6a82baa0, 0xfd2f612b, 0xccda0134, 0x019801cc, 0x20018251, 0x08098298, 0xe801da29, + 0x2f343425, 0xc1a85d6d, 0x7857a8c1, 0x1c442b2c, 0x200118fe, 0x1e01513f, 0x010601c8, 0xfeacfe54, 0xe2fec8fa, 0x18003f51, 0x20122d52, 0xc362188e, + 0x18092026, 0x82332b6c, 0xff5a316f, 0x06ee04e1, 0x0126028c, 0x0100002e, 0xe39d0106, 0x23059b59, 0x10081e21, 0x20051150, 0x2021825b, 0x2021846f, + 0x2d218530, 0x0f0000b7, 0x40010a40, 0x41000141, 0xc958073e, 0x24498205, 0x0564feaa, 0x20278412, 0x202785c6, 0xf343181f, 0x00a1240f, 0x831f0200, + 0xd5002121, 0x3105cb47, 0x000088fe, 0x01b60b00, 0x02040700, 0x2b012503, 0x47820035, 0xddff9f24, 0x47840705, 0x4784d120, 0x83fb9e21, 0x0309286f, + 0x22000102, 0x8217071f, 0x35352194, 0x00204882, 0x27086f83, 0x001b0661, 0x00330018, 0x444e4072, 0x550a5433, 0x6913612a, 0x69236516, 0x7a137225, + 0x7a237316, 0x302f0b25, 0x0537100e, 0x2e080483, 0xa7201516, 0x27032121, 0x31010ca7, 0x08160398, 0x2012151b, 0x370c0a40, 0x12832420, 0x19082012, + 0x35bc0083, 0x2e013530, 0xb9088407, 0x5bf61034, 0x122a05e9, 0xed2f3939, 0x39122b2f, 0x4c453f00, 0x39393607, 0x2b2b3031, 0x0014015d, 0x27262223, + 0x34112111, 0x16322124, 0x05285217, 0x16161522, 0x07b05918, 0x36323524, 0x837a3435, 0x117b0807, 0x32331616, 0xfe610536, 0xb063dbe6, 0x0198fe47, + 0x7b220135, 0x4a4948bd, 0xb19c7888, 0x2f318efe, 0x26487f2d, 0x4e6c9599, 0x191b533a, 0x2b6a2516, 0xbd01988b, 0x28f7fec9, 0x052afe27, 0x31fff0c8, + 0x558f3131, 0x1126bb77, 0x4481c51d, 0x12191b56, 0x547a59ea, 0x2223285b, 0xdafc2d5b, 0x0079100e, 0xfe1e0001, 0x04170564, 0x00080063, 0x56554075, + 0x75076607, 0x06070307, 0x82870807, 0x0607371b, 0x05050486, 0x0b1b030f, 0x22001b00, 0x4b003500, 0x6c005c00, 0x2c827c00, 0x05042908, 0x05260514, + 0x0544053a, 0x05630553, 0x05b00573, 0x01000509, 0x00058401, 0xb0041004, 0x04040304, 0x0a0f090a, 0x0a5f0a2f, 0x0806535a, 0x10edc43c, 0x2f5d2fc4, + 0x3f3f005d, 0x87013031, 0x1087c0fd, 0x00c008fd, 0x1101015d, 0x21011121, 0x17050101, 0x98fe2ffe, 0x7a0140fe, 0x00010d01, 0xb8fb6304, 0xb70149fe, + 0x4cfd4804, 0x8b82b402, 0xfe5b3f08, 0x067a0464, 0x002f0014, 0x651b4052, 0x1a1d0128, 0x2d001b98, 0x1b070f97, 0x100e4019, 0x191a1a37, 0x073f1c12, + 0xffb80701, 0x091340a0, 0x1c07370c, 0x03850b07, 0x31103103, 0x12832301, 0xfe7a30bb, 0x33ed3606, 0x5d2b2f33, 0x3939122f, 0x3f002b2f, 0xed3fed2f, + 0x5d303139, 0x05864125, 0x36352137, 0x26343536, 0x26222323, 0x37363435, 0x35373636, 0x15213521, 0x06467d06, 0x16161722, 0x53080282, 0x16323333, + 0x25233204, 0xcefe435a, 0x3b4e4250, 0x59e5ec88, 0x6dc6494f, 0xab0330fe, 0x5d5fe07a, 0x0b0c0470, 0x6e242a2d, 0x6f473d43, 0x396e2ca2, 0x1848c360, + 0x383d7b49, 0x82d8d94d, 0xc06870ee, 0xe1f80859, 0x6a6cb248, 0x381f70e8, 0x163a2123, 0x00390513, 0xaa2cdf82, 0x120564fe, 0x16008204, 0x26403b00, + 0x24055b5e, 0x15700574, 0x08575e05, 0x011b0129, 0x18ba0084, 0x18601830, 0x200e58b3, 0x23c782fd, 0x12ed3f3f, 0x0120c883, 0x18151679, 0x221458b3, + 0x5e0364fe, 0x3a08103d, 0x00030000, 0x05deff77, 0x00170623, 0x00240017, 0x40620031, 0x44034422, 0x4a0f4a09, 0x1e660415, 0x26021e76, 0x0124cf98, + 0x1e062424, 0x0b1e12a7, 0x0012370d, 0xb806a72c, 0x8340e2ff, 0x0622080c, 0x84182516, 0x002f001f, 0x33000002, 0x10842624, 0x020c200c, 0x0c100c00, + 0x5d2f0c02, 0x1132fd71, 0x05822f33, 0x2b3f0023, 0x080282ed, 0x2f391221, 0x315ded5d, 0x14015d30, 0x06060702, 0x27262223, 0x34350226, 0x36363712, + 0x17163233, 0x6c251216, 0x07220ab4, 0x7d412105, 0x36322105, 0x71081f82, 0x3a282305, 0xc9cde83f, 0x233e3fed, 0xef3d3f24, 0x3eedcac7, 0x98fe243d, + 0x1d1c1f03, 0x583b3a59, 0x031b201d, 0x24fedc01, 0x1c221901, 0x5d3b3c5a, 0x021d1d1b, 0xd4fe74f7, 0x9998766b, 0x20017778, 0x1401807a, 0x9b987576, + 0xe7fe7677, 0x38a45510, 0x37333238, 0xf94ca540, 0x3845b055, 0x413b3737, 0xffff00b4, 0x0000aa00, 0x63041202, 0xd5000602, 0xa9630000, 0x00653908, + 0x40c10018, 0x38082389, 0x62174917, 0x74036202, 0xa5089303, 0x0908b408, 0x1839e482, 0x03020202, 0x01250115, 0x01450135, 0x01640155, 0x01a40174, + 0x010901b4, 0x08358287, 0x0a0b0857, 0x09130903, 0x0903096a, 0x17181718, 0x18351825, 0x18551845, 0x58051874, 0x02187618, 0x03020809, 0x100c0104, + 0x01140010, 0x0f0c1414, 0x01050f06, 0x02181709, 0x0f1f0501, 0x0f020f2f, 0x1000000f, 0x2f000200, 0x1a00011a, 0x1a701a40, 0x84030802, 0x1019b905, + 0x079b63f6, 0x5d2f3329, 0x2f003917, 0x823f3f2f, 0x33240809, 0x1712112f, 0x30315d39, 0x10875d01, 0xc05dd5c0, 0x01c004c0, 0x5dfd1087, 0x5d01c008, + 0x21215d00, 0x21110701, 0x01260182, 0x32333636, 0xd55e3316, 0x05072207, 0x8fb31852, 0x154e0809, 0x1f5e9a36, 0x0a111660, 0x51351329, 0xe9014d1f, + 0x0492fe7b, 0x0110fe63, 0x0253455a, 0x0402c3fe, 0x005f2925, 0x00160001, 0x06200500, 0x00070014, 0x2b4d4095, 0x69053806, 0x77017806, 0x06067903, + 0x05020302, 0xa4060504, 0x0201b601, 0x20828601, 0xab023808, 0x0203b903, 0x05048703, 0x07050604, 0x2b071407, 0x38072205, 0x4b073505, 0x5b074005, + 0x68075005, 0x74076105, 0x7c047a00, 0x11077105, 0xdfffb800, 0x0f091e40, 0x82210437, 0x00022e04, 0x040f0504, 0x00000006, 0x4f092f09, 0x230e8209, + 0x04020410, 0x0950aa18, 0x18391221, 0x210965ad, 0xea83c05d, 0x8208c021, 0x82012001, 0x01033ceb, 0x21030121, 0x81fe2005, 0xfee1fef8, 0xb6ce018c, + 0xd8029101, 0x580428fd, 0x4300bc01, 0x1b22067b, 0xc9826304, 0x2c404628, 0x100d2012, 0x04830337, 0x05020832, 0x100f0b14, 0x00160596, 0x001b0a08, + 0x16841301, 0x2d057f43, 0x0d031870, 0xb90a8409, 0xfdf41017, 0x04825d3c, 0x00393928, 0xed3f3f3f, 0x84843c3f, 0x212b2b23, 0xbf891827, 0x03112613, + 0x2c0710dc, 0xbe89186b, 0x9dfb2f20, 0x1e00ffff, 0x15050000, 0x06026304, 0xf2825900, 0x00015b08, 0x0464fe56, 0x001406ae, 0x40880040, 0x240e0a0c, + 0x3624241b, 0x0536551b, 0xe0ffb825, 0x0e0b2740, 0x79166937, 0x30160216, 0x0c2f2f97, 0x2098211e, 0x0c973a00, 0x19161b03, 0x1f202f2f, 0x8328121f, + 0x01043f19, 0xa0ffb804, 0x0c090b40, 0x08040437, 0x12192085, 0xc0ffb800, 0x0f820e40, 0x4200002a, 0x3401422f, 0x41bb1283, 0x20062745, 0x05337c2b, + 0x2f5d2b2a, 0x2f3912ed, 0x122f332f, 0x2f21e282, 0x070e60ed, 0x30315d28, 0x14055d2b, 0x32450706, 0x5827200a, 0x352005fe, 0x23250686, 0x21152135, + 0x093a4522, 0x11333322, 0x12490e82, 0x33710805, 0x17163233, 0xae041616, 0xcefe435a, 0x3e4b3b57, 0x43ba6f99, 0xa1ba4a43, 0x52669872, 0xfee003ea, + 0x2e5d49f1, 0x2b372e27, 0xd7396b2d, 0x9685c1fe, 0x7e303238, 0x6f475b4c, 0x31252324, 0x1848c360, 0x35397652, 0x34343550, 0xc69b6198, 0x87190b27, + 0x27744f61, 0x14f8f40a, 0x314c171a, 0x15154c3b, 0x68fdfe10, 0x144f485e, 0x2d390a13, 0xff006e2c, 0xadb418ff, 0x06022407, 0x48005200, 0x3e300707, + 0x11008604, 0x3a001e00, 0x401a2440, 0x0537100e, 0x063f0483, 0x0f981503, 0x03971c10, 0x121b0816, 0x01004983, 0x1920bc00, 0xb9088407, 0xfdf6101f, + 0x7ef61032, 0x6f45058b, 0x2b2b2105, 0x230acf47, 0x36363736, 0x2305d97f, 0x15062223, 0x0806ba47, 0xf5fe3e39, 0x379363f4, 0x4f5498fe, 0x0182d649, + 0xfe380118, 0x6870728d, 0x14612c6f, 0x45028b8d, 0x3099fef4, 0x042bfe1f, 0x43b78025, 0xd6fe453e, 0x9eb5dcfe, 0x69fe6c87, 0x82a80610, 0x582b0878, + 0x7a0464fe, 0x2c008204, 0x23405a00, 0x27452735, 0x1a552b44, 0x16781a65, 0x1c071a74, 0x37100921, 0x98231c1c, 0x1b031018, 0x410b9729, 0x163707de, + 0x04370c09, 0x08041c1c, 0x102e0f85, 0x00000200, 0x1283262e, 0x67102dbb, 0xed310532, 0x2f2f3333, 0x2f005d2b, 0xed3f3fed, 0x312b2f33, 0x16c54130, + 0xb356ca82, 0x05377206, 0x14154f08, 0x32333316, 0x607a0416, 0x53cdfe3d, 0x373b4c40, 0x4a4ac972, 0x555d6958, 0xc59180e9, 0x37172f2a, 0x3b68282b, + 0xb8a38f8d, 0x31a37d32, 0x1843c167, 0x363b774f, 0x4344424f, 0xe3998dd5, 0x4347464c, 0x15d4fe14, 0x1b15162c, 0xa5ac87a6, 0xdd8200b5, 0xff9f2808, + 0x040705dd, 0x00170063, 0x161b402c, 0x980f0f07, 0x03660356, 0x15160302, 0x19ba0084, 0x19af1960, 0x06840902, 0x4e1018b9, 0x3f2c0623, 0x333fed5d, + 0x14013031, 0x24202104, 0x22085e4c, 0x4c363233, 0x2d08055b, 0xddfe0705, 0xf4feeefe, 0x6a01d9fe, 0x5217180b, 0x1451433e, 0x6a010f13, 0xe5da9c01, + 0xc702dde2, 0x635ba9fd, 0x2722292b, 0x566c2526, 0x7f825702, 0x64fe0524, 0x7f821005, 0x000b5a08, 0x0b5140d2, 0x14080402, 0x24022b08, 0x44024b08, + 0x60026f08, 0x74027b08, 0x05290b08, 0x05790b26, 0x05890b76, 0x03060b86, 0x0b020102, 0x050a0b00, 0x07080506, 0x34090408, 0x02094b09, 0x17113009, + 0x0a880937, 0x02010a03, 0x080b0605, 0x07340007, 0x0702074b, 0x40d0ffb8, 0x201a8212, 0x22b01807, 0x001b290b, 0xb3dfffb8, 0x0a371009, 0x40210782, + 0x21088223, 0x04822106, 0x04830420, 0x05060a2e, 0x040b0a06, 0x0d000004, 0x0d4f0d2f, 0x4f0cdf44, 0x2b2e059a, 0x3f002b2b, 0x3139173f, 0x10870130, + 0xb0182bfd, 0x5d251925, 0x21015d00, 0x20028401, 0x08058213, 0xfe100552, 0xfef2fe87, 0x018efeee, 0x0166fea9, 0x0401ff79, 0x65fe7101, 0x110264fe, + 0x0903effd, 0x09fef602, 0x11fdf701, 0x00010000, 0x0664fe9e, 0x006304ea, 0x40550023, 0x26061b35, 0xa7180118, 0x09490939, 0x09030976, 0x10081922, + 0x221b080f, 0x84112384, 0x3205254e, 0x250f1084, 0x08800810, 0x25080803, 0x50253f24, 0x49257025, 0x392708ed, 0x2fc41039, 0x82ed2fed, 0x391226b1, + 0xed5d2f39, 0x27244e5d, 0xea064508, 0xe551565f, 0x8c96fe86, 0x61555bd4, 0x23296a01, 0x01346522, 0x2264356a, 0x6a012725, 0xb77ce201, 0x0b43393b, + 0x890177fe, 0x3b403a0d, 0x81027eb5, 0x6c57a1fd, 0x05201e20, 0x7bfc8503, 0x231f1e06, 0x5f025d63, 0x5b24cd83, 0xcc06dfff, 0x2c08cd82, 0x40720037, + 0x6f155723, 0x7f356016, 0x79197716, 0x07357232, 0x09253425, 0x0f160603, 0x982a0d21, 0x40341606, 0x18371009, 0x40c0ffb8, 0x08088226, 0x00843021, + 0x0013841b, 0x0a092634, 0x13188426, 0x25102500, 0x250325a0, 0x0f383925, 0x50393f39, 0x4f396f39, 0x0d4f070c, 0x2fe88405, 0x3f002b2b, 0x3f3939ed, + 0x2f391712, 0x5d013031, 0x22050f4f, 0x46262223, 0x4418070b, 0x16250d06, 0x36323316, 0xdd8f1837, 0x36850808, 0x02343536, 0x16213527, 0x34cc0612, + 0x86ae3c39, 0x0c3fac6b, 0x806bac3f, 0x343939b6, 0x82018283, 0x150d8f8b, 0x262e4112, 0x6801113d, 0x2e2e3511, 0x11121241, 0x82018d8e, 0xf5018680, + 0x4d4bc160, 0x4d4d545d, 0x4c4c5e54, 0x01b761bf, 0x77179126, 0x38a8cffe, 0x372a3059, 0x51020b10, 0x100baffd, 0x65282a39, 0x2e01a832, 0xfe89177a, + 0xffffffd4, 0x020000ee, 0x021406ce, 0x00770006, 0x00ffff00, 0x05ddff9f, 0x080f8207, 0xd101262a, 0x06010000, 0x00fb8e00, 0x02b11e00, 0xc0ffb81d, + 0x1a161140, 0x701d4037, 0x031d801d, 0x181d0001, 0x2b251707, 0x352b5d35, 0x21075545, 0xc5678c06, 0x9d012907, 0x0a0000e8, 0x270002b6, 0x4d05ea67, + 0x9d201297, 0x2006b56a, 0x8246851b, 0xff5b2421, 0x83cc06df, 0xd4012143, 0x2205df4d, 0x4e00bd00, 0x3b230503, 0x4e001338, 0x7218054d, 0x28083c73, + 0x29000100, 0xed060000, 0x2500d105, 0x19405900, 0x1f1f9216, 0x911a1e06, 0x9209031b, 0x40071806, 0x0737100b, 0x7d0f1707, 0x08eb8300, 0x0b09192e, + 0x27000037, 0x2750270f, 0x1d1d1a02, 0x707f171f, 0x201a011a, 0x2f180118, 0xfd5d335d, 0x2f2f3232, 0x2f33115d, 0x3912ed2b, 0x2f002b2f, 0x21081247, + 0x67183031, 0x92440885, 0x26342506, 0x23262627, 0x2006d252, 0x08078211, 0x17163249, 0xed061616, 0xaf584853, 0x4336709e, 0x161d195e, 0x5e1b1b10, + 0xfef2fe53, 0x054efe80, 0x012ffe03, 0x4ec39d51, 0xde01464d, 0x463ab76d, 0x1e1a013a, 0x293e1b19, 0x1b1c4225, 0x046ffd20, 0xfe2001b1, 0x2cf5fee0, + 0x53b73c3d, 0x5d08050f, 0x0108f004, 0xeb012602, 0x07010000, 0x24008d00, 0x1c007501, 0x09011340, 0x01010950, 0x09600920, 0x00030970, 0x05040809, + 0x355d2b25, 0x35115d00, 0x67000100, 0x8905e3ff, 0x3600ee05, 0x19409a00, 0x25492c26, 0x2d552359, 0x0f7a0974, 0x2b741b7f, 0x01093472, 0x370f0936, + 0xcaffb817, 0x08820940, 0x0d20322a, 0xb81d370f, 0x1c40e0ff, 0x283d0882, 0x40273092, 0x03276027, 0x06122727, 0x100c4019, 0x20191937, 0x36041293, + 0x40c0ffb8, 0x280e8226, 0x932f3636, 0x27271606, 0x05a94a18, 0x38002608, 0x385f3800, 0x7f292602, 0x0c150c05, 0x0c030c25, 0xf41037b7, 0x5d32fd5d, + 0x5d2f3311, 0x002f3333, 0x2f33ed3f, 0x2504842b, 0x2f391211, 0x4918ed5d, 0x0725099e, 0x22230606, 0x070f4c24, 0x2e482420, 0x11172105, 0x220bc678, + 0x4c112107, 0x68080b12, 0x89053337, 0x484d5b32, 0xfeab6593, 0x726766e2, 0x0166686c, 0x9b59ae21, 0x2b714544, 0x434b2229, 0x484d9936, 0x533b3e7f, + 0xfd8c0212, 0x3e580a66, 0x544c8e3b, 0x58343997, 0x1556271c, 0x15121324, 0x01616162, 0x01b1bf21, 0x6a656720, 0x2a101014, 0x1baafe14, 0x291b2137, + 0x7b272921, 0x72e4fe59, 0x272a2d98, 0x3e1a1d27, 0x07ab6917, 0x02ec0525, 0x56360006, 0x7b241479, 0xe3030000, 0x32517418, 0xe9ff2a26, 0xd105c603, + 0x36085782, 0x0000002d, 0xff120002, 0x056b09f6, 0x000e00d1, 0xb989003d, 0x96ff1d00, 0x100c1d40, 0x101e0037, 0x9207021e, 0x37403730, 0x37033770, + 0x91181637, 0x28280335, 0x422c0206, 0x123705c0, 0x24f22c37, 0x37169208, 0x16167f08, 0x597d0035, 0x760f660f, 0x830f030f, 0x0913361d, 0x0f0f370b, + 0x013f0f3f, 0x35008018, 0x35023510, 0x332f2835, 0x055c7a2f, 0xfd5d2b3c, 0xfd2f3911, 0xed2f0032, 0x432bfd2f, 0x2cb45854, 0x37100e40, 0x2f32592b, + 0xa141ed3f, 0x2b5d2206, 0x05d84201, 0x42112321, 0x252a05e7, 0x06070614, 0x11212306, 0x08820621, 0x0b820220, 0x23230282, 0x71272622, 0x37260666, + 0x36131236, 0xff423736, 0x07a20807, 0x1b1b10de, 0xf2f2535e, 0x1b1b653f, 0x538d011d, 0x8cc55b48, 0x66fe51fd, 0x0d060605, 0x4c222135, 0x52923126, + 0x0e0f6b32, 0x3c0f1709, 0x394c1334, 0x0307060e, 0x35018004, 0x4d4cc999, 0x25d30146, 0x201b1c42, 0x192085fe, 0x6d344318, 0x37493ab7, 0x7062b104, + 0xedfeca5c, 0x24725a59, 0x0208382f, 0x02014d01, 0x01431010, 0x68060123, 0xd5fd9ef5, 0xb73c3d2c, 0xbe000200, 0x5b090000, 0x0e00d105, 0x5c002700, + 0x1e172640, 0x21309207, 0x21702140, 0x16212103, 0x08031b1f, 0x201a1692, 0x167f081f, 0x31411a16, 0x090f2f0d, 0x0f0f370b, 0x01297f29, 0x1a7f191d, + 0x704d28b5, 0x412f2006, 0xed2c052c, 0x2f003939, 0x333fed2f, 0x5d2f3912, 0x41054b5c, 0x1120171e, 0x26080a44, 0x16171632, 0x41ce0716, 0xfd281408, + 0x0180fed9, 0x01270280, 0xc821f283, 0x2df2944d, 0x6ffd9102, 0xd5fdd105, 0xd5fd2b02, 0xde823c2d, 0xe1440020, 0x82fa2005, 0x1d3408df, 0x2d404c00, + 0x1759174a, 0x1a010802, 0x700b6791, 0x0b0b020b, 0x91030701, 0x01130304, 0x12127f13, 0x501f0f1f, 0x0306021f, 0x7f000706, 0x01012003, 0x335d2f01, + 0x2608d644, 0x332f00ed, 0x8432fd3f, 0x391221cc, 0x8505c960, 0x05104ab6, 0x15161622, 0xe185c682, 0x0706223e, 0x80fe6f03, 0x17053afe, 0xeb512ffe, + 0x45ae6a62, 0x7efe4e42, 0x7d202111, 0x3c60346a, 0x0806af44, 0x2011d121, 0xa6343732, 0x0102fe72, 0x2f7b5339, 0x09092e2d, 0xbe00ffff, 0x2b060000, + 0x26020108, 0x4400f201, 0x603405bd, 0x18007501, 0x50011040, 0x60010123, 0x02237023, 0x05212300, 0x08052554, 0x00355d29, 0xff0a0002, 0x07dd05f6, + 0x001600bc, 0x40c90024, 0x1615065b, 0x3a152415, 0x4f024901, 0x07035a03, 0x14161515, 0x83121381, 0x15630801, 0x01008216, 0x14131200, 0x00050116, + 0x060b0b07, 0x07f20f02, 0x401d0f17, 0x601d501d, 0x211d041d, 0x1f1a0fc8, 0x1a1a021a, 0xc0240300, 0x1dc01e17, 0x01370126, 0x12460145, 0x01640154, + 0x0a070174, 0x40c0ffb8, 0x37100d0c, 0x010a120a, 0x1305171d, 0xe0ffb800, 0x10091440, 0x26000037, 0x262f261f, 0x83201302, 0x0113250c, 0x2b5d2f13, + 0x08744e18, 0x485d2b21, 0x230805ed, 0xed5d2f33, 0x2f335d2f, 0x585443ed, 0xff0f00b9, 0x0d09b2c0, 0x32592b37, 0x1712112f, 0x10870139, 0xc008c0fd, + 0x08270683, 0x003031c0, 0x1801015d, 0x0810a98b, 0x01210197, 0x04061301, 0x27242223, 0x33161621, 0x05373632, 0x2fe2fddd, 0x7f41417a, 0x1fc0463f, + 0x346a1517, 0xfd0e7b63, 0x01a101a3, 0xc5310172, 0xffe8fe01, 0x01e8feff, 0x58025001, 0x02586e6e, 0x59fbd105, 0x1f1e7e67, 0x01030712, 0x260d0645, + 0xfd5a041f, 0x01c2023e, 0xd4d4baeb, 0x62616dba, 0x0001006c, 0x05a0febe, 0x00d105f5, 0x4040000b, 0x03020628, 0x00099104, 0x0f80090b, 0x004f0100, + 0x007f005f, 0x02000003, 0xb6077f06, 0x500d000d, 0x030d600d, 0xb5027f03, 0x06864b0c, 0x2f39122c, 0x00ed715d, 0xed332f2f, 0xb259333f, 0x21113109, + 0xa9022111, 0x800115fe, 0x80013702, 0x9ffe15fe, 0x4d2f8882, 0x2ffab304, 0xffffa0fe, 0x00001800, 0x5c051e06, 0x8d4306ab, 0xb4052105, 0x25088182, + 0x00210012, 0x1a22404e, 0x400c3092, 0x030c700c, 0x0b070c0c, 0x1b030891, 0x0a000792, 0x130a0a01, 0x6600567d, 0x90827600, 0xffb82008, 0x090c40c0, + 0x0000370b, 0x7f1b0c23, 0x1022b507, 0x1132fdf6, 0x5d2b2f33, 0x5d2f33ed, 0x44ed2f00, 0x864708a0, 0x05b54206, 0x55056255, 0xb144075b, 0xb4052106, + 0x33067444, 0xf9fc8504, 0xc69c3701, 0xfe464d4c, 0x1b1b1073, 0xf4f4535e, 0x30059644, 0x3ab76dde, 0xd1053749, 0xf5fee0fe, 0xb73c3c2d, 0x0a764477, + 0x26116b5d, 0x00be0001, 0x82f00400, 0x000525cf, 0x03144023, 0x35e95418, 0x2a000226, 0x7406aafe, 0x45084582, 0x0013000d, 0x521c4055, 0x02117211, + 0x030a9110, 0x9207130c, 0x10050103, 0x070a0a80, 0x0c0c7f0e, 0xb8008001, 0x1440c0ff, 0x00370e09, 0x150f1500, 0x152f151f, 0x077f1303, 0x05800407, + 0x2f39ed2f, 0x33115ded, 0x08832b2f, 0x0c821220, 0x332f002c, 0x3232fd2f, 0x3031ed3f, 0x1641015d, 0x36332605, 0x11211112, 0x080c8233, 0x0702022d, + 0x9ffe7406, 0x9ffe78fc, 0x047b7471, 0xedfd9357, 0x79138cfe, 0x01aafe56, 0x02a5fe5b, 0x6202f377, 0x50fb5b01, 0xf0fe9003, 0x5db333fe, 0x62080f95, + 0x12000100, 0xda080000, 0x3b00d405, 0x4e401201, 0x1a040e0b, 0x37042b0b, 0x1a140e1b, 0x37142b1b, 0x0824012b, 0x36240f2b, 0x0835013a, 0x0843014c, + 0x36400f4e, 0x08660169, 0x56293414, 0x03296629, 0x37378029, 0x561c3439, 0x031c661c, 0x0c0e801c, 0x0e01020e, 0x01371009, 0x003b007f, 0xffb80807, + 0x826d40f2, 0x0842080e, 0x0a09097f, 0x031c2129, 0x3b94242d, 0x0e0c0a07, 0x02073937, 0xf2310206, 0x18f2142d, 0x0904182d, 0x03220302, 0x200a2f00, + 0x300a3f3b, 0x400a4f3b, 0x600a6f3b, 0x3140083b, 0x31023150, 0x023b0131, 0x31822924, 0xf4002208, 0x4f057f04, 0x15150115, 0x0c070a08, 0x07211c0e, + 0x3d0ff409, 0x3d050501, 0x3f3d1f3c, 0x6f3d403d, 0x06d54b3d, 0x3917f427, 0x105d2f32, 0x360785fd, 0x3f2f005d, 0x33333917, 0xed2fed2f, 0x40585443, + 0x0940310a, 0x8314370d, 0x2b2b2704, 0x39172f59, 0xd84311fd, 0xc02b2405, 0x84fd1087, 0x825d2004, 0x315d3208, 0x215d0130, 0x11230121, 0x01231121, + 0x26260121, 0x24028427, 0x32112323, 0x06cf4836, 0x33161622, 0x36221d82, 0x02843736, 0x21058753, 0x41470622, 0x07420805, 0x33feda08, 0xfe5d85fe, + 0x85fe6282, 0xf30138fe, 0x11263c22, 0x3e191925, 0x51165828, 0x3eb39c36, 0x39122a0e, 0x7e014f60, 0x123b5c55, 0xb33c1028, 0x1357339a, 0x18362d58, + 0x2b142617, 0x63022539, 0x03849dfd, 0x14fa4d08, 0x452c645a, 0x011a191a, 0x85750347, 0x75246a1e, 0xfd6a0252, 0x7a4c0196, 0x82246127, 0xbdfe0378, + 0x4e171715, 0x165c612c, 0x00010000, 0x05e3ff4e, 0x00ee053a, 0x40a50040, 0x7d326810, 0x7c097f08, 0x702d700d, 0x07327331, 0xe0ffb82c, 0x1027f582, + 0x0d200e37, 0x83323710, 0x0923250d, 0x20083710, 0x5d080482, 0x931e3a3b, 0x1f401f30, 0x1f031f60, 0x3034061f, 0x370f0d40, 0x92293030, 0xb80a0434, + 0x2e40c0ff, 0x0a370f0c, 0x0692110a, 0x5f3a4f13, 0x7d26023a, 0x3776376d, 0x1f1f3702, 0x0a03373a, 0x005a7d17, 0x00020066, 0x313142b8, 0x0c0a400a, + 0x2b2f0a37, 0xf6102f33, 0x1712ed5d, 0x5d2f2f39, 0x284a5ded, 0x054c5910, 0x4d2b2b21, 0x24210864, 0xa24e1827, 0x18372009, 0x2208bc52, 0x50211121, + 0x3420051d, 0x08065059, 0x112307cb, 0x20332436, 0x06141504, 0x16161507, 0x05161617, 0x5c58593a, 0xfea1b7fe, 0x1c2474eb, 0x7b483971, 0x2c824f51, + 0x25233031, 0xfe4b6f25, 0x4b0801ee, 0x171f1c6c, 0x844d8195, 0x2b4e413c, 0x27016625, 0x013201a0, 0x3683a533, 0x40323177, 0xb26bbc01, 0x35413f3c, + 0x1050012c, 0x1f1b153b, 0x4d1d1b1a, 0x17483a3d, 0x0a011015, 0x3a181517, 0x1e444b2c, 0x14271714, 0x3d253901, 0xb87faabf, 0x2d090f1f, 0x007b2a29, + 0x00be0001, 0x050c0600, 0x000900d1, 0x0b2c40a2, 0x2b081b08, 0x37033608, 0x55084608, 0x07240703, 0x073f0230, 0x074f0240, 0x075e0252, 0x00020607, + 0x01060702, 0x08030402, 0xb8080303, 0x1640d2ff, 0x0337100c, 0x2c04835e, 0x40020708, 0x02371009, 0x0bb6007f, 0x0769770b, 0x07010b22, 0xb7200a82, + 0x07211782, 0x7ade187f, 0x2b2b210f, 0x2805b35d, 0xb9585443, 0x20ff0700, 0x214582b7, 0x0482bc02, 0x592b2b22, 0xd0201386, 0x30201384, 0x31251385, + 0x5d015d30, 0x90d31821, 0x0c063708, 0x96fd8afe, 0x760192fe, 0x99013f02, 0x21fcdf03, 0x7ffcd105, 0xd1458103, 0x0c062305, 0xd182bc07, 0xdd001724, + 0xd39d5640, 0x100f0a33, 0x10501040, 0x10041060, 0x0d0fc814, 0x0d020d1f, 0x35e78c0d, 0x0a0fc017, 0x0a600a1f, 0x0a040a70, 0x107fc011, 0x100a1001, + 0xfd990400, 0x87191921, 0x8c1920fd, 0x101822fd, 0x056778f6, 0x112bed27, 0x2b2b3939, 0x36751811, 0x2d074108, 0x4106d547, 0x03200e0e, 0x410ca647, + 0x8d200d1c, 0x410f9847, 0x8b47092d, 0x003a080d, 0x052b0600, 0x001f00d4, 0x0f7640df, 0x271c1f1c, 0x241d2f1c, 0x4a1b3c1e, 0x631b6f1b, 0x7812751e, + 0x0c1d701b, 0x16010602, 0x32012401, 0x52014201, 0x87017401, 0x0901c601, 0x34828101, 0x12984b08, 0x12b612a6, 0x1b461d03, 0x1b701b50, 0x0d121b03, + 0x361f2512, 0x700d601f, 0x120d040d, 0x14041d1b, 0x6092021f, 0x08080108, 0x02060700, 0x0314f218, 0x00050307, 0x1f161f06, 0x0d6f1f49, 0x1f750d7f, + 0xffb81f06, 0x0b1440c0, 0x2f833710, 0x7f051f2c, 0x17170117, 0x21602140, 0x74470002, 0x37102a05, 0x08210000, 0xb5057f04, 0x08744720, 0x2f332b08, + 0x2b39175d, 0x2f2f005d, 0x43ed3f3f, 0x18b45854, 0x370d0940, 0x1211592b, 0xfd5d2f39, 0x39171239, 0x1087015d, 0x5dc05dd9, 0x08823031, 0xc05dfd23, + 0x070c4500, 0x215f2120, 0x12f34405, 0xfe2b5108, 0x5e48fe29, 0x800180fe, 0x1b1a3e2f, 0x3515223e, 0xacaa4d12, 0x6f135033, 0x37375b52, 0x59022146, + 0xd105a7fd, 0x0f02a1fd, 0x3a4f1413, 0x87206324, 0xbdfe0373, 0x55696a54, 0x01000012, 0xf6ff1200, 0xd1050506, 0x53002100, 0xff0800b9, 0x0c124096, + 0x092dba82, 0x03020910, 0x01032091, 0x02061313, 0x36d18317, 0x37120915, 0x010ff217, 0x23b6007f, 0x20008003, 0x20022010, 0x822f1220, 0x10ed24d2, + 0x4c00edf4, 0x172006f9, 0x2707f94c, 0x31ed3f2f, 0x212b5d30, 0x2520e04c, 0x80fe0506, 0xc64c56fe, 0x36382212, 0x06c64c15, 0xac4c9020, 0x120e2113, + 0x4807ac4c, 0xef630659, 0x6405200f, 0x67240be5, 0x6606e1ff, 0x2e656563, 0x6700ffff, 0x6e05e3ff, 0x0602ee05, 0x62002600, 0x00211079, 0x05954b01, + 0x00d10527, 0x40a20016, 0x2e934b41, 0x4b030021, 0x0a201379, 0x2006794b, 0x0b774b03, 0x181f1824, 0x774b182f, 0x3f002317, 0x6c4bfd2f, 0x1b5e4b3b, + 0x22164d4b, 0x18000300, 0x4beea55d, 0x042006c3, 0x080a5564, 0xaafebe30, 0xd1058506, 0x3d000b00, 0x02060f40, 0x04080b03, 0x7f050191, 0x80000808, + 0xc0ffb80a, 0x0e091240, 0x0d0a0a37, 0x0d3f0d2f, 0x04030d4f, 0x434c017f, 0x079a4a05, 0xfd2f0024, 0x424c2f32, 0x3321080c, 0x24052111, 0x80019afb, + 0x80013402, 0x059ffe93, 0x044cfbd1, 0xfd4cfbb4, 0x0001008d, 0x05000083, 0x086d828e, 0x3400192a, 0x11431e40, 0x096c095c, 0x140c0203, 0x00050591, + 0x00030c18, 0x007f0117, 0x7f0d1bb6, 0x0c010c00, 0x10ed5d2f, 0x0032fdf6, 0x12225d82, 0x185f2f39, 0x21212205, 0x06625e11, 0x3a582620, 0x3472820c, + 0x7280fe8e, 0xb16887a5, 0x014d4443, 0x20221082, 0x80286e79, 0x34848228, 0x32191827, 0x71a63636, 0x9ffe2602, 0x2d2e7757, 0x02070a2e, 0x05bb47a7, + 0x84910821, 0x403a23f7, 0xf8820a23, 0x9204082a, 0x007f0901, 0x057f08f5, 0xf52fe582, 0x05010d0f, 0x200c0d05, 0x600d400d, 0x4a0d700d, 0xed240754, + 0xedf4fd10, 0x3f21f483, 0x0e374d33, 0xf8910827, 0x017f012d, 0x820385ab, 0x044a23f5, 0x0382fbb6, 0xfe236b83, 0x822509aa, 0x000f246b, 0x832e404b, + 0x830c206b, 0x0d0f236c, 0x1c827f80, 0x7f090023, 0x2174870c, 0x74820500, 0x0f10112e, 0x3f111f11, 0x60115f11, 0x115d0511, 0x5d21fc82, 0x227684f4, + 0x825d2f33, 0xfd2f237a, 0x7c903232, 0x11331127, 0xf8c40721, 0x228089fa, 0x899ffe94, 0x4cfb2b83, 0x02008dfd, 0x00002900, 0x8782e606, 0x000e2208, + 0x40510021, 0x30920726, 0x701b401b, 0x1b1b031b, 0x19911816, 0x16920803, 0x2f7f081b, 0x16160116, 0x0d3d5119, 0x0b090a2a, 0x230f0f37, 0x1901230f, + 0x27053755, 0x3911fd5d, 0x32fd5d2f, 0x510cb24d, 0x32261b32, 0x16161716, 0x2c515905, 0x39fe2814, 0x35014703, 0x5149c4a1, 0x04311426, 0xfd2001b1, + 0x3c3a2fd5, 0x000300b7, 0x070000be, 0x29c184c2, 0x0023001f, 0x54214058, 0xc682010c, 0x19401929, 0x19031970, 0x83171619, 0x032222c4, 0x22be8d21, + 0x82100e15, 0x7f2130be, 0x4025b620, 0x02257025, 0x167f0819, 0x631024b5, 0xfd2b05e6, 0x5d2b2f32, 0x3f2f00ed, 0x183fed2f, 0x99083d62, 0x25c884ca, + 0x21112101, 0xcc942704, 0x0180012c, 0x4cc79b35, 0x0e02464d, 0x0c8280fe, 0x2111ea52, 0xef51d105, 0xb6fd2105, 0x454fc882, 0x000e260a, 0x4047001f, + 0x8dd1931e, 0x090c22ce, 0x84ce830b, 0x09cc47c5, 0xc0a9c282, 0xa153bc9f, 0x08b68712, 0x00010025, 0x05e3ff5c, 0x00ee0588, 0x40900036, 0x551a250c, + 0x76235919, 0x051c7606, 0xccffb812, 0x100c0940, 0x823d2b37, 0xb8302504, 0x4840e0ff, 0x0d21ab82, 0x21048220, 0x594c921e, 0x34230808, 0x012d7f09, + 0x93262d2d, 0x10700434, 0x17101001, 0x20130993, 0x0103792e, 0x030a7f1d, 0x032a031a, 0x56b80303, 0x2e3c0575, 0x1f011f20, 0x0f1f1f2e, 0x5d2f0f01, + 0x5d2f3333, 0xf6105d2f, 0x115ded5d, 0xed3f0039, 0x09837818, 0x75563920, 0x16012e09, 0x02141512, 0x23040607, 0x26272622, 0x0d504c26, 0x11213723, + 0x20138221, 0x0a474c26, 0x37368c08, 0x32333636, 0x64b90404, 0x6767766b, 0x5fb2dffe, 0x704541a3, 0x561e251d, 0x5f8a3d33, 0x3f3c9843, 0x69fd0c5b, + 0x52108e02, 0x43873939, 0x383e8d53, 0x372a1d57, 0xa63d4c60, 0x1a01ac57, 0xfe612505, 0xfebfb2ec, 0x696161cf, 0x29131219, 0x1951010c, 0x271d193d, + 0x962d2c25, 0x5a1c0174, 0x2327277a, 0x401c1e27, 0x18540116, 0x15101423, 0x02000066, 0xe1ffbe00, 0xf0052909, 0x2d001700, 0x4c406e00, 0x247b207c, + 0x2d732876, 0x41911804, 0x3a080521, 0x1f041f70, 0x032d1f20, 0x2292092b, 0x15031c04, 0x1b132b92, 0x7f0f251f, 0x181c1805, 0x1803182c, 0x7d031b18, + 0x251a250a, 0x2503252a, 0x2f1f2fb8, 0x2f402f3f, 0x7f1a1e03, 0x422eb51b, 0x5d2406d2, 0x2f3912ed, 0x00280483, 0x3fed3f2f, 0x1712ed3f, 0x20052141, + 0x3656185d, 0x074f7f0f, 0x21065050, 0xdb681221, 0x04063207, 0x07002023, 0x3b343630, 0x47803131, 0x31347d47, 0x0809823d, 0x4948818d, 0xfe4dfc82, + 0x0180fef0, 0x331f0180, 0x2b017e01, 0x91015f01, 0xfe615f62, 0xb9febaec, 0x6f0175fe, 0x827db944, 0x373b3bbf, 0xc5383c34, 0x3abc8582, 0x013a383b, + 0x056dfd5f, 0x01e0fdd1, 0xfe31010e, 0xac98fe60, 0x6765e1fe, 0x006f0170, 0x11000200, 0x9e050000, 0x1000d105, 0x7c001f00, 0x063a0c40, 0x075b064a, + 0x04670360, 0xffb80405, 0x090a40d6, 0x04033710, 0x06050581, 0xe0ffb806, 0x100c3740, 0x110f0637, 0x4f033f93, 0x82037f03, 0x00340800, 0x030f9312, + 0x095a0500, 0x1902067b, 0x0604097d, 0x7b040903, 0x12050105, 0xb6007f01, 0x20210f21, 0x40213021, 0x105d0421, 0x2f32fdfd, 0x2f39175d, 0x2f005ded, + 0x22070557, 0x4a2b3912, 0xc02405d6, 0x215d2b01, 0x2a07df4f, 0x37363435, 0x21333636, 0x60231101, 0x3d080bf6, 0x82fe9e05, 0xfe89fed1, 0x87bd0139, + 0x444e6599, 0xb8027ec3, 0x57be82fe, 0x24222c5e, 0x67262226, 0xfd220254, 0x3a6902de, 0xaa72acd4, 0xfd2d2f36, 0x0b91015d, 0x31511921, 0x1e1a5133, + 0x5518000e, 0x04260743, 0x00060283, 0xf9830044, 0xff735608, 0x063b05dd, 0x0027001d, 0x4057003c, 0x590d5a39, 0x741f6510, 0x05377408, 0x972e0622, + 0x25102500, 0x06252502, 0x01159716, 0x0636983a, 0x22160601, 0x09151534, 0x034a832b, 0x3ebc0301, 0x09008334, 0x09450910, 0x5d2f0903, 0x5df610ed, + 0x2f3912ed, 0x3f003912, 0x0741535d, 0x31391223, 0x57641830, 0x82362010, 0x372421da, 0x5005f475, 0xea82069f, 0x03163225, 0x4f353636, 0x1421055c, + 0x06da6106, 0x3632b508, 0x5044a704, 0xe6feb5fe, 0xd3fecafe, 0x49191911, 0xa0fe5342, 0x41140163, 0x344a6e42, 0x6c3e3d84, 0x07241922, 0x6268b14f, + 0x2a24ecae, 0x6b386f89, 0x20170143, 0x263f621c, 0x40b10357, 0xf7fe8bc3, 0x7a01c3fe, 0xa53f7901, 0x3f9e6263, 0x090f5051, 0xf5fe020c, 0x04050503, + 0x320b0a0a, 0x48691e29, 0xfd3c3f36, 0x68712726, 0x23159379, 0x890f250a, 0x39353da1, 0x0300001d, 0x0000aa00, 0x63041005, 0x1e001500, 0x65002700, + 0x03092340, 0x10740319, 0xa7231203, 0x8f011b0f, 0xdf1bcf1b, 0x1b1b031b, 0x08a71a07, 0x07a7240f, 0x24128416, 0xf0ffb80f, 0x370e09b3, 0xf4360782, + 0x0b091440, 0x070f0f37, 0xbc00831f, 0x01292f29, 0x0784241b, 0x194328b9, 0xedf42905, 0x2b2f3912, 0xed39122b, 0x2208b846, 0x1839ed71, 0x58097b83, + 0x595007de, 0x34012906, 0x15232326, 0x13363233, 0x11200883, 0x44080882, 0x36411005, 0xfd689744, 0x7b8f0254, 0x3b3b3874, 0x7f5d435f, 0x534b5bfe, + 0x4f49c4be, 0xea515332, 0x01544af0, 0x2a7e5153, 0x63042535, 0x6a201f10, 0x217d5349, 0x018b170b, 0xe0343e4e, 0x4980fe3b, 0x43fffe3b, 0x05856600, + 0x82360421, 0x000529e3, 0x01174027, 0x030f0498, 0x36066d5b, 0x70076007, 0x84020207, 0x1006b903, 0x115dedf6, 0x005d2f33, 0x7bed3f2f, 0x112d0528, + 0xfd360421, 0x0398fedc, 0xfc69038c, 0x273e8297, 0x25000200, 0x3d05eafe, 0x0d240a82, 0x55001300, 0x053c4b82, 0x0f0a9810, 0xa707130c, 0x0a851003, + 0x840e070a, 0x85010c0c, 0xc0ffb800, 0x0d0b1940, 0x33056854, 0x153f152f, 0x00851303, 0x02071007, 0x85040707, 0x39ed2f05, 0x82073b5a, 0x54ed2009, + 0xfd26056e, 0xed3f3232, 0x7987332f, 0x6d541120, 0x233b0808, 0x05070206, 0xfdbffe3d, 0x5dbffe6a, 0xa0035b4c, 0xf726fe74, 0xfe395111, 0xfe1a01ea, + 0x9e1102e6, 0x0101c901, 0x6d0298fc, 0x76c2feb9, 0x5800ffff, 0xfc04e2ff, 0x06028604, 0x83004800, 0x002d3cfb, 0x04d10700, 0x00350065, 0x250b40dc, + 0x02282a17, 0x10092001, 0xffb80837, 0x828c40e0, 0x26ff3008, 0x31332601, 0x0119ff33, 0x0e0c0e19, 0x82860102, 0x07730829, 0x09098608, 0x26191e0a, + 0xa7212a03, 0x0c0a0735, 0x0731330e, 0xbf02af2a, 0x11020202, 0x0904952e, 0x2a041502, 0x000f202a, 0x35340a3b, 0x35440a4b, 0x35540a5b, 0x33660c69, + 0x35700a7f, 0x402d300a, 0x2d2d022d, 0x21023501, 0x07333126, 0x8404f600, 0x4f123f05, 0x12120212, 0x0c070a08, 0x071e190e, 0x370ff609, 0x0502371f, + 0x0f363705, 0x40372f37, 0x54376037, 0x33281847, 0xfd39172f, 0x125d2f32, 0x35540682, 0x87c02306, 0x0382fd10, 0x875ddd25, 0x7b5ddd10, 0x35540532, + 0x2532540f, 0xd1073b08, 0xe5fe62fe, 0x669afe66, 0x62fee5fe, 0x221c8301, 0x37481e18, 0x2a4f1162, 0x0c358d8b, 0x46351029, 0x6366015a, 0x2a0f3141, + 0x8c942d0c, 0x620f5526, 0x161c4938, 0xbd011c24, 0x038343fe, 0x42025108, 0x43373215, 0x022c0134, 0x50165d64, 0x01265c1c, 0x013dfec3, 0x521a572a, + 0x026c5516, 0x4037d4fe, 0x00143931, 0x41000100, 0x5804e1ff, 0x3d008304, 0x1440a800, 0x03190309, 0x0d4d084d, 0x0d5d085c, 0x0b720b61, 0x35092c7e, + 0xb3e0ffb8, 0x2f370b09, 0x6c080783, 0x2b37100d, 0x40d6ffb8, 0x370f0d22, 0x8fa71b3b, 0xdf1ccf1c, 0x1c1c031c, 0x2d903106, 0x2d022da0, 0x370c0a40, + 0x98292d2d, 0xb80a1031, 0x2e40c0ff, 0x0a370c09, 0x06980e0a, 0x0e203b16, 0x1c4f3710, 0x232e1c01, 0x1c2e3783, 0x09043b37, 0xbc008314, 0x5f3f2f3f, + 0x033f7f3f, 0x0f0b4009, 0x2b2f0937, 0xedf6105d, 0x2f391712, 0x5d2f2fed, 0x0a27542b, 0x12115d23, 0xf1671839, 0x08265408, 0x210a945c, 0xa9493536, + 0x5c352006, 0x0e8605c6, 0x07062224, 0xeb5a1123, 0x05265408, 0x58045508, 0xc651505e, 0x6ce39370, 0x66c44f28, 0x2a1f6926, 0x1d22272b, 0x8aac4459, + 0x2f206f28, 0x1d222a29, 0xbd472b4e, 0xf53e2749, 0x47b87080, 0x567b5c4b, 0x3e018463, 0x29298960, 0x01253222, 0x0a412c11, 0x2e2a100c, 0x0a0b302b, + 0x0802e406, 0x1f26300b, 0x0a0a0c2a, 0x30081a82, 0x2232130d, 0x58762522, 0x09188e5a, 0x0000811a, 0x00aa0001, 0x04190500, 0x00090063, 0x5a0a405a, + 0x7f026f02, 0x04077402, 0xc0ffb807, 0x100c1840, 0x06075437, 0x08030f2d, 0x10094002, 0x00840237, 0x830b0bba, 0x0a0a291c, 0x0b603710, 0x03020b70, + 0x3808fb53, 0x0ab90484, 0x2bedf610, 0x102b5d39, 0x392bfdf4, 0x123f2f00, 0x30313917, 0x0acf532b, 0xfe190539, 0xfe18fea3, 0x015d01d6, 0x024e01c4, + 0x0451fdaf, 0x0299fd63, 0x85020067, 0x55062189, 0x17228982, 0x8b8e9400, 0x8a82b420, 0x83100a21, 0x0e202c77, 0x10103710, 0x1401148f, 0x880d0dc6, + 0xbd17299d, 0x0d0b400a, 0xbd110a37, 0x13202484, 0x10230b82, 0x8904100a, 0x191921b4, 0x1922b488, 0xb48d1970, 0xb4871820, 0xb482fd20, 0x39391223, + 0x06ad792f, 0x3327bd83, 0x335ded2f, 0x8d332b2f, 0x140326c5, 0x26222306, 0x072d5b35, 0x7c2cd38c, 0xe0dadbdf, 0x48021601, 0x02475b5a, 0x0129e089, + 0xcfcea3f2, 0x5f6163a2, 0x0bd96b65, 0x001c7508, 0x4f6740c0, 0x561b4f1a, 0x5c0b5302, 0x64016819, 0x711b6f0b, 0xa302090f, 0xc501b501, 0x2a010301, + 0x01371009, 0x001c0087, 0x3418241a, 0x94187418, 0x0f180418, 0x0a7b0f0a, 0x110a0f01, 0x181a1c08, 0xa7021503, 0x08010820, 0x00070108, 0x15150115, + 0x0f060f11, 0x1c0d0105, 0x1c551c34, 0x1c751c63, 0x180f0a05, 0x01021c1a, 0xffb81407, 0x0c1b40c0, 0x1414370f, 0x2f05bf45, 0x00011e2f, 0x701e401e, + 0x0308021e, 0x1db90584, 0x240bd76b, 0x5d39172b, 0x06d86b00, 0x39121128, 0x11fd5d2f, 0x08823917, 0x5d013927, 0x5dd91087, 0x058c48c0, 0x64532b20, + 0x0b555814, 0xfe52053a, 0x73d3fe60, 0x680198fe, 0x0f324c64, 0x93370c2a, 0x0f552683, 0x1a473c62, 0x30060844, 0x3dfe6304, 0x1a582901, 0x5f621652, + 0x3cd4fe02, 0x06f3433b, 0xff192c08, 0x040305f9, 0x00210063, 0x3925403b, 0x020c490c, 0x0f219802, 0x17131300, 0x84010f95, 0x0f23ba00, 0x90231f23, + 0x85030323, 0x53a02020, 0xdb75094f, 0x32fd2105, 0xed20bb82, 0x20064c5e, 0x07df5806, 0x23060626, 0x11232622, 0x32209f83, 0x08060159, 0x0521373e, + 0xfe98fe03, 0x020303d7, 0x1e1f2807, 0x81282345, 0x09602f3c, 0x0a14040b, 0x4312371a, 0x08040a2d, 0x03d10303, 0x37534b68, 0x4140caa1, 0x26201c4c, + 0x02200107, 0xc140110a, 0x72b446bd, 0x20063f43, 0x08a782fa, 0x77000c21, 0x09064240, 0x0a2f0a1f, 0x044d0b3a, 0x0b06047e, 0x37100d40, 0x0529051a, + 0x0a4b054f, 0x82600304, 0x54023c0d, 0x05371009, 0x0903020a, 0x100b4004, 0x07040437, 0x010f090b, 0x0b0a0907, 0x82020503, 0x0e0e21d4, 0x20065474, + 0x064f5705, 0x07840538, 0xf6100db9, 0x102b2bed, 0x1711edf4, 0x332f0039, 0x3912333f, 0x58432b2f, 0x5d2b3e05, 0x215d2b01, 0x23031121, 0x11211103, + 0x21010121, 0xa1fefa05, 0xfeff9eff, 0x018701ab, 0x2e018221, 0xfeb90287, 0xfdcc0134, 0xfe630447, 0x42fe0102, 0x1820077b, 0x0b36b182, 0x24403b00, + 0x08309703, 0x08700840, 0x05080803, 0x010f070a, 0x87830905, 0x0d300d2d, 0x0d700d60, 0x84030803, 0x4e0cb905, 0x7d87087c, 0x39775d20, 0x2b77830a, + 0x98fe1805, 0x98fe62fe, 0x9e016801, 0xdf220382, 0x6d8221fe, 0x83017d23, 0x10056b00, 0xaa000125, 0x83050000, 0x00072b7d, 0x03174027, 0x000f06a7, + 0xf9820105, 0x64300921, 0x0420053e, 0x08207082, 0xa377f082, 0x25658613, 0x6f036e04, 0xc08291fc, 0x2706cb73, 0x0282043e, 0x00530006, 0x582bdb83, + 0x7104e2ff, 0x27008204, 0x18408800, 0x08492de8, 0x10092022, 0x1d242437, 0x10160097, 0x24102400, 0x24032420, 0x293f2924, 0x295f294f, 0x06831a03, + 0xf41028bb, 0x2005fe48, 0x050f4633, 0xed3f5d31, 0x2b5d2f33, 0x2b2b3031, 0x22055d2b, 0x71262726, 0x332006dd, 0x4210e16a, 0x33230588, 0x18060611, + 0x23442de8, 0x000a0001, 0x07d96c18, 0x1f403437, 0xa7040103, 0x05b00f06, 0x00050001, 0x00058402, 0x9f031003, 0x18008203, 0x270cdd6c, 0x2f32fd33, + 0x3f005d2f, 0x40490682, 0xdd6c1807, 0xffff2113, 0x0807b973, 0x00060267, 0x0000005c, 0xfe5a0003, 0x06600764, 0x00230014, 0x003d0030, 0x7e4f4072, + 0x730d7e08, 0x7f1f731a, 0x063c7f2d, 0x1e1b001d, 0x0604090c, 0x21983527, 0x2e3b1018, 0x16060f98, 0x00561b0b, 0x00661259, 0x24041269, 0x09f70084, + 0x2b1e1b31, 0x0c840904, 0xf7128438, 0x0c100c00, 0x3f0c0c02, 0x203f103e, 0x7f3f403f, 0x06d4483f, 0x10edfd28, 0x103917ed, 0xa382edfd, 0xac823f20, + 0x12230383, 0x4b3f3917, 0xde74090a, 0x06062505, 0x11022223, 0x2505124d, 0x11171632, 0x8d181121, 0x760812e8, 0x23262611, 0x14150622, 0x36323316, + 0x454a6007, 0x526faf46, 0x9cfe206c, 0xe2547429, 0x42444dfe, 0x6d5265b6, 0x2a640124, 0xf4e14d85, 0x898193fe, 0x15182919, 0x8389192a, 0x2f0f38fd, + 0x8381891c, 0x02331489, 0x4de3914b, 0x10284b4e, 0xc6013bfe, 0x2e012118, 0xd98f0b01, 0x264e4a4d, 0xfed80115, 0xfe251529, 0xa8e2fedf, 0xfd050499, + 0xa2040486, 0x037b029a, 0x82a8a205, 0xff48080f, 0x001a00ff, 0x04400500, 0x00060263, 0x0000005b, 0xfeaa0001, 0x048a05ea, 0x000b0063, 0x060f403f, + 0x080b0f02, 0x0501a704, 0x00080884, 0xffb80a85, 0x091440c0, 0x0a0a370d, 0x2f0d1f0d, 0x5f0d4f0d, 0x8404040d, 0x100cb901, 0x24056a4b, 0x2f39ed2b, + 0x14d154ed, 0xfc490436, 0x01680161, 0x7468019c, 0x6304bffe, 0x6c0394fc, 0xf3fd94fc, 0x74246f82, 0xcf040000, 0x163f6f82, 0x1b404700, 0x071a060d, + 0x02030e74, 0x5f981109, 0x02056f05, 0x15000505, 0x14000f09, 0x83008401, 0x130e2a7b, 0x00003719, 0x00840a18, 0x75b91809, 0x542b2009, 0x5d2008e3, + 0x540de454, 0x04320ee1, 0x5a98fecf, 0xd1b765ac, 0x1e0a6a01, 0x1960601c, 0x91821a52, 0x19138231, 0xb201a4b7, 0x554afefe, 0x05222327, 0x45040204, + 0x0721053f, 0x0893825b, 0x3e000b24, 0x060a2740, 0x04080f02, 0x840901a7, 0x8408f800, 0x01840405, 0x100500f8, 0x03059f05, 0x0c0d0505, 0xe1540d10, + 0x21df5405, 0xf95b0727, 0x0167014f, 0x4103853e, 0x03210703, 0x0573416c, 0x82cf0721, 0x000f246f, 0x832f404b, 0x830c206f, 0x0d0e2770, 0x09000085, + 0x758b0c84, 0x77822020, 0x0505042c, 0x110f1011, 0x115f113f, 0x778c117f, 0x542f3921, 0x06231bdf, 0x891cfa8e, 0x0a874180, 0x26068b41, 0x000a0002, + 0x84ae0500, 0x1e3b08f7, 0x1f405300, 0x180fa704, 0x1802181f, 0xa7151318, 0xa7050f16, 0x84051813, 0x00161313, 0x7a0c0783, 0xb80c020c, 0x1340c0ff, + 0x0c370f09, 0x201f200c, 0x206f202f, 0x10160003, 0x72160216, 0x1866058c, 0x10e15405, 0x30672320, 0x35400811, 0x32211121, 0x16161716, 0x51563c04, + 0x4436c4c4, 0x010c1110, 0x44374472, 0x87fd7b91, 0xc702a0fe, 0x95791301, 0x013d3c43, 0xfe484878, 0x16171fdb, 0x92561c30, 0x032e372e, 0x89fef46f, + 0x972d3223, 0x2105f34e, 0xb984d406, 0x20001c26, 0x1a405400, 0x1621bb82, 0x228c821f, 0x83141316, 0x0f1f22b9, 0x22b68b1e, 0x82100e19, 0x841e2eb6, + 0x0f22ba1d, 0x2f221f22, 0x04227022, 0x21dc8216, 0xd45421b9, 0x4e012019, 0x372207c3, 0xed673636, 0x20ba8609, 0x21c38201, 0xbe917c03, 0x87670121, + 0xfee624bc, 0x8f680198, 0x630421c2, 0xfe21c185, 0x26bb822d, 0x00aa0002, 0x86ee0400, 0x404522c5, 0x8bc38e17, 0x091122c0, 0x24c0830f, 0x1e4f1e2f, + 0x49b88402, 0x2f220729, 0xc8545d2b, 0x9db49c0b, 0x0e6d41b0, 0x0037aa87, 0x57000100, 0x8104e2ff, 0x2a008204, 0x46b79700, 0x752a4907, 0x61200307, + 0x12250716, 0x37100d30, 0x200d8326, 0x2108822e, 0x0482200b, 0x6fa7182b, 0xef19df19, 0x19700319, 0x290882cf, 0x09191903, 0x01244028, 0xc2464024, + 0x28a72b05, 0x010d4f10, 0xc0ffb80d, 0x11822040, 0x0d0d2708, 0x1609a714, 0x8417251a, 0x0301034a, 0x2c4f2cbc, 0x25022c5f, 0x2f192519, 0x2f0c010c, + 0x2f33335d, 0xf6105d2f, 0xc354fd5d, 0x5d2b2406, 0x8233ed3f, 0x121125f5, 0x715d2f39, 0x20073c6b, 0x05ca7801, 0x69060621, 0x17200782, 0x22054466, + 0x54213521, 0x98080cbd, 0x03163233, 0x666859c0, 0x98f85a5a, 0x3159b96e, 0x2c2d3711, 0xa491516c, 0x01fdfd0c, 0x70a613fe, 0x2b2f6944, 0x62311345, + 0xe48760d4, 0xd845fe03, 0x4ae8989f, 0x252d4b4b, 0x2c0e1d01, 0x8d1d1516, 0x6f70e574, 0x3214151b, 0x291d010e, 0x0000412c, 0xffaa0002, 0x049c07dd, + 0x00120086, 0x405a002a, 0x01084938, 0x07309800, 0x07700740, 0x07120703, 0x1c100308, 0x04100a98, 0x1098280f, 0x0d480316, 0x220d0701, 0x01003f84, + 0x16030000, 0x2cbc0d83, 0x06012c60, 0xb9038402, 0x0687422b, 0x20078854, 0x0b89545d, 0x3031fd27, 0x1123015d, 0x2d018221, 0x33243633, 0x10110020, + 0x00202100, 0xcd4d3625, 0x0b785307, 0x36323808, 0xfedbed02, 0xe9680198, 0xf028012b, 0x3e012001, 0xe2fec0fe, 0xc7fefefe, 0x2321e002, 0x571e1f23, + 0x24503235, 0x1d242521, 0x2f39571e, 0xfee20158, 0xfe63041e, 0x82e0c97a, 0xfeeb3a26, 0x01c1feeb, 0x792b390a, 0x2787636b, 0x2a1c2328, 0x64638c27, + 0x25262682, 0x08e98221, 0x0000222d, 0x6304ca04, 0x19001000, 0x06b57000, 0x020c160c, 0xd0ffb807, 0x37100db4, 0xffb80403, 0x093840e0, 0x86043710, + 0x06060505, 0x54a7110f, 0xa7260a73, 0x05000f0f, 0x27824006, 0x54831621, 0x052f0573, 0x37100b20, 0x84011205, 0x0f1b9200, 0x835d011b, 0x2b2f26fd, + 0xed2f3917, 0x0b6f542b, 0x2106e14b, 0x6f5400c0, 0x15340817, 0x04331614, 0xa199feca, 0x6dfef3fe, 0x75714201, 0x95373e49, 0xfe9d025c, 0x534ad599, + 0x86015152, 0xb8017afe, 0x5d899b33, 0x26262d7e, 0x1801fffd, 0x464f4043, 0x2005114a, 0x7b6818e2, 0xeb8e230c, 0xd5180000, 0x240814e3, 0x29000100, + 0x140567fe, 0x3b001406, 0x47406d00, 0x1e1e1304, 0x0e3a1e2f, 0x14721272, 0x20071d72, 0x370d0a20, 0x0804832a, 0x03090c34, 0x100606ca, 0x020d0007, + 0x10109539, 0x1b229727, 0x25050a02, 0x84300225, 0x303dba19, 0x023d603d, 0x030c0a09, 0x05068401, 0x103cb902, 0xfd3232f6, 0xf8823217, 0x3912ed2a, + 0x002f2f2f, 0x3fed3f2f, 0x3f200a82, 0xed200d82, 0x2a05e763, 0x2111015d, 0x33352311, 0x83152135, 0x099d4f01, 0x14151622, 0x42064d4c, 0xbe4905ec, + 0x36362405, 0x65343435, 0xa708066c, 0x12020622, 0x818198fe, 0x46016801, 0xb45fbafe, 0x348d526b, 0x02033c32, 0x4a570402, 0x3967b34c, 0x55272c61, + 0x23272479, 0x02010104, 0x15140b02, 0x6932414a, 0xe4fc1c03, 0x70cfd504, 0x4aeecf70, 0x32352f51, 0x752f70a2, 0x4e76344b, 0x504ef5b4, 0x01030145, + 0x302d1906, 0x55229ab7, 0x324f172e, 0x2021552f, 0xff002125, 0x00aa00ff, 0x06360400, 0x0226028c, 0x0100000b, 0xba8d0006, 0xb60a0000, 0x08090001, + 0x2b250101, 0x00010035, 0x04e2ff58, 0x00820478, 0xb595002a, 0x0c4a0546, 0xffb81702, 0x0d0940d0, 0x30253710, 0x11250482, 0x40e0ffb8, 0x2108822a, + 0x04822001, 0xa71f2608, 0x70011e6f, 0xdf1ecf1e, 0x1e1e031e, 0x1340030f, 0x09401301, 0x13133710, 0x100fa71a, 0x2a012a4f, 0x40c0ffb8, 0x2a118224, + 0xa7232a2a, 0x131e1603, 0x54131e1d, 0x3944070a, 0x84202a05, 0x09010945, 0xf6102bbb, 0x050f4b5d, 0x2f391723, 0x0a124b2f, 0x23512b20, 0x08394405, + 0x205d2520, 0x09b54908, 0x2209706f, 0x44211521, 0x67080548, 0x33373636, 0xc7497804, 0x59f59373, 0x5c6c625a, 0x6f81f05a, 0x13314ed0, 0x722b254c, + 0x17a27140, 0xfbfdfc01, 0x4a8e9e0d, 0x3d282776, 0x2134310f, 0x49484731, 0xe1a295de, 0x31424749, 0x10e3fe24, 0x1c141232, 0x79e5726d, 0x14141d88, + 0xffff0e2f, 0xe1ff5f00, 0x82047a04, 0x56000602, 0xffff0000, 0x0000a000, 0x14061c02, 0x4c200f82, 0xa9720f83, 0x9fef180f, 0x211f8207, 0x2a82004d, + 0x19002e08, 0xd507f9ff, 0x0b006304, 0x69003a00, 0x1e492740, 0x0fa70401, 0x02341f34, 0x15133434, 0x25053298, 0x21952925, 0x3413a705, 0x13138405, + 0x0b4b4632, 0x0f09183d, 0x3c0c0c37, 0x3c013c30, 0x370e0940, 0x32208515, 0x32023230, 0x332f2532, 0x6bed5d2f, 0x5d2005db, 0x200a126f, 0x07005832, + 0x5d303122, 0x4e155f46, 0x32471ddd, 0x63062106, 0x21112e47, 0xf44ee1fe, 0x48c6201c, 0x0b4f1709, 0x055d4717, 0x0805c751, 0x04e40727, 0x000b0063, + 0x40610024, 0x1ba71424, 0x0f1ba704, 0x021e1f1e, 0x18131e1e, 0x05170f1d, 0x1b1e13a7, 0x13138405, 0x0b1a4117, 0x0f091535, 0x260c0c37, 0x262f261f, + 0x265f264f, 0x84161a04, 0x6e25b917, 0xed2012fb, 0x2605655f, 0x2fed335d, 0x413031ed, 0x11201515, 0x210df96e, 0xff927206, 0x98fe7226, 0x8e016801, + 0x47093648, 0x02290e85, 0x04fefd02, 0x0185fe63, 0x6eda867b, 0x2d0805f3, 0x14061205, 0x50001e00, 0x1d033040, 0x1d751d16, 0x0e141703, 0x12111151, + 0x95080d18, 0x0112101b, 0x15080d01, 0x0084020f, 0x201f20ba, 0x67182060, 0xed200ffa, 0x29057844, 0x3f002f2f, 0xed3f3fc4, 0x74443912, 0x215d2107, + 0x440d487f, 0x15200e7d, 0x440d507f, 0x6021075f, 0xfa6718b1, 0x05214418, 0x06520527, 0x0226028c, 0x05214412, 0x00232c08, 0x0a400f00, 0x01205f01, + 0x061f2000, 0x5d2b2519, 0x02000035, 0x64fe1e00, 0x55061705, 0x15000700, 0x3f40b800, 0x054a0508, 0x18590358, 0x253b99e7, 0x370f090a, 0x04822106, + 0x0e083608, 0x40c0ffb8, 0x37100e30, 0x128f0e0e, 0x0bc61201, 0x35050002, 0x02064506, 0x050f060b, 0xbd151b04, 0x0ebd0f08, 0x02060e08, 0x172f1702, + 0x0002174f, 0x02061006, 0x05d74a06, 0x3939122c, 0xed2fed2f, 0x3f2f3f00, 0x0c845d33, 0x28068b53, 0x5d2b2b01, 0x5dfd1087, 0x2b0484c0, 0xc008c008, + 0x01015d01, 0x13210121, 0x9b530482, 0xa502310c, 0x72010001, 0x7afe90fd, 0x014bfeb2, 0xdfca027a, 0x290a9d53, 0xd6028d01, 0xa40101fa, 0x9d535b04, + 0xe8fe220e, 0x05215105, 0x23403a38, 0x030f060a, 0x0500a708, 0x037f8502, 0x030203df, 0x84090503, 0x2151ba00, 0x05205108, 0x4d46ed20, 0xed5d2506, + 0xed332f00, 0x330d6462, 0x05211121, 0xfe69fe18, 0x0169fec0, 0x019e0168, 0x01e8fe68, 0xfc235d82, 0x6171038f, 0x043d05db, 0x006b07f0, 0x40260007, + 0x00060614, 0x02030391, 0x06068005, 0x01091f09, 0xb5027f01, 0x06ef4d08, 0x3f265882, 0x312f33ed, 0xdb420130, 0x3e023106, 0xdd0280fe, 0xb1045501, + 0xd1054ffb, 0x46fd9a01, 0xaa264d82, 0x36040000, 0x4d82ce05, 0x4d822520, 0x98000327, 0x05020f03, 0x204d8285, 0x224d8270, 0x8cb90284, 0x8a3f204d, + 0xfe12264c, 0x01590298, 0x05ab5933, 0xfd6b0124, 0x4d82009b, 0x02cc2908, 0x03350710, 0x0003001c, 0x01094021, 0x014f02d6, 0x0002015f, 0xb6c0ffb8, + 0x00370f0d, 0x2f010500, 0x2b2f3311, 0xed2f005d, 0x29053850, 0x97f93507, 0x10026906, 0x86820c01, 0xbe002108, 0xdd090000, 0x0900f005, 0x21001500, + 0xba002500, 0x01420e40, 0x0153064f, 0x0167065e, 0x06060177, 0x40354882, 0x37100d18, 0x0229012f, 0x013f072b, 0x1b59023d, 0x02071b68, 0x2513825e, + 0x5effb807, 0x08824840, 0xca253b08, 0x22702260, 0x1f222202, 0x700d00c9, 0x0d0d020d, 0x0413c919, 0x07080302, 0x03060104, 0x23222301, 0xbe1c0a22, + 0x1001107f, 0x06000a10, 0x40070201, 0x07371009, 0xaf007080, 0x85820200, 0x0abe1625, 0x5302270a, 0x0228064d, 0x26b50480, 0x2bedf610, 0xed2ab682, + 0x5d2f3912, 0x39112bfd, 0x09831139, 0x392d0e82, 0x2f002f2f, 0x3917123f, 0x2f33ed3f, 0x2203845d, 0x532b3031, 0x01240662, 0x21112111, 0x012c0482, + 0x22230214, 0x24343502, 0x05123233, 0x0ae55818, 0x21014d08, 0x74052115, 0xfefda2fe, 0xc101aafe, 0x56019f01, 0xe6ff6904, 0x0001ffe6, 0xfefde8e5, + 0x61615cd8, 0x5d615e5c, 0x02e3fd5e, 0x0340fdc0, 0x0506fcfa, 0x03bffcd1, 0xdd42fe41, 0x000100ff, 0xffffdedd, 0x8a8ddf00, 0x848e8d8a, 0xd401fe84, + 0x2005c941, 0x46275305, 0x01002608, 0x2f020d01, 0xd5050c03, 0x1d000800, 0xe6030e40, 0x03070404, 0x0703e901, 0x0203e400, 0x39ed332f, 0x3f3f002f, + 0x06c54133, 0x32352335, 0x03333736, 0xeaebfe0c, 0xf2089570, 0x5f022f02, 0x824a47b6, 0x10e62091, 0xa1018d9d, 0x02005908, 0x3602a600, 0xe6052d04, + 0x0d000a00, 0x32405400, 0x140d040c, 0x060d020d, 0x07460706, 0x07660756, 0x07760670, 0x07060c05, 0xe60d0109, 0x057f056f, 0x03050502, 0xe9030307, + 0x040c0700, 0x010009e3, 0x332f0501, 0xfd33332f, 0x002f3232, 0x39123f3f, 0x39ed5d2f, 0x39391139, 0x2e05556b, 0xc0045ddd, 0x21152301, 0x01112135, + 0x82331121, 0x04290805, 0xfafea72d, 0xcb0126fe, 0xfea71501, 0x02bafe57, 0x01c5c5fb, 0xfde60105, 0xfe5201cf, 0x000100ae, 0x031c02d9, 0x00da05f0, + 0x088d821e, 0x056b0e35, 0x1402057c, 0x1ce61114, 0x0703151c, 0x40c0ffb8, 0x370e0c0e, 0xe70b0707, 0xe718ea03, 0xb8000315, 0x0f40e2ff, 0x18370b09, + 0x161615e3, 0xe50e0615, 0x82060000, 0x059d4390, 0x002bed2a, 0xed3fed3f, 0x112b2f33, 0xfd229882, 0x01542f32, 0x22232805, 0x33352726, 0x18331616, + 0x2008c748, 0x08b44b11, 0xf0033008, 0xbc67d8dd, 0x963e173f, 0x6b696539, 0x27673e85, 0x36fed002, 0xb4153f13, 0xa27203c0, 0xd81521b4, 0x4738261a, + 0x030b3939, 0x78ce0d02, 0x84940102, 0x043522b1, 0x08b1820b, 0x46000625, 0x01032c40, 0x02e30100, 0x03000302, 0x020305e8, 0x490039e9, 0x7a006a00, + 0x03010400, 0x100c5e02, 0x82400237, 0x000227ac, 0x05000200, 0x304f0501, 0x2b8e0805, 0x5d39392b, 0xed3f3f00, 0x01303139, 0x87ed1087, 0x210101c0, + 0x21352101, 0x25fe0b04, 0xe201d0fe, 0x3203f7fd, 0x23fd1205, 0x00d7ce02, 0x02b20003, 0x0516041a, 0x001900f4, 0x00370028, 0x0f3a4091, 0x09150f0b, + 0x360b3a16, 0x3c153a12, 0x4a0b4a2c, 0x5b0b592b, 0x7522652b, 0x02060d22, 0x10160319, 0x10260329, 0x2fe63504, 0x0416260a, 0x1dea0310, 0x0f0410e6, + 0xe41a0120, 0xc0ffb813, 0x261e1740, 0xe4201337, 0x0ae4290d, 0x0416130d, 0xd0820006, 0xe4320031, 0x33ed2f06, 0x17125d2f, 0xed2fed39, 0x82ed2b2f, + 0x3fed219f, 0x5d390d83, 0x40585443, 0x4b2c3b11, 0x662c5b2c, 0x05237623, 0x2c1d2623, 0x12112f35, 0x21028239, 0x6041595d, 0x18352008, 0x2208b684, + 0x60163233, 0x22200a71, 0x2a068361, 0x13363617, 0x26272634, 0x83062726, 0x33af0811, 0x16043632, 0xe1d0d2e1, 0x44526158, 0xcdc2b2e5, 0x5a61534d, + 0x3b46d3fe, 0x3d2e4b34, 0x1f103718, 0x493f1517, 0x200b4215, 0x38415e2b, 0x7933035e, 0x4f7c9aa0, 0x2a06276d, 0x8c794666, 0x79467388, 0x63250624, + 0x3c2e5801, 0x361e2a37, 0x04120a19, 0x70fe471d, 0x081b302f, 0x46160415, 0x31483a28, 0x00020000, 0x07e1ff67, 0x00f00572, 0x0035001d, 0x274e406f, + 0x6f072905, 0x040c7f0c, 0x1b2fc80c, 0x03151b01, 0x2703000b, 0x1a090a92, 0x7a092a09, 0x04090409, 0x03059233, 0x03250315, 0x03040375, 0xb1101413, + 0x1b0c0918, 0x7d210603, 0x8240373f, 0x3720084d, 0x37803720, 0x37ef37df, 0x067d2d04, 0xf61036b7, 0xd6105ded, 0x1712ed5d, 0xc4fdd439, 0xed5d3f00, + 0x12270282, 0xdd3f3939, 0x1831ed5d, 0x210cc084, 0xed821704, 0xfc823520, 0x51333521, 0x16210508, 0x17ba6416, 0xfe66063d, 0xfe98fe68, 0x0168fe99, + 0xdf670198, 0x15614401, 0x0b184551, 0xb10e0ae8, 0x19131381, 0x3922b70e, 0x424993a1, 0x13185628, 0x9f247b22, 0x8d3f0988, 0xb9443cfe, 0x3abc867d, + 0xc364363c, 0x3bbb2505, 0x0039383b, 0x2c08cd82, 0x05ddff58, 0x009c058f, 0x0035001d, 0x1943b74d, 0x1c671c54, 0xffb80e03, 0x092540c0, 0x1b15370d, + 0x000f0dc6, 0x09982403, 0x03983010, 0x080b4116, 0x00831e28, 0x832a37bc, 0xfe83bb06, 0x2005e65e, 0x4ffc83dc, 0xfd2c051e, 0x2b3031cd, 0x0010015d, + 0x11002021, 0x32210582, 0x76f99116, 0x145106f7, 0x3637230d, 0x85180536, 0x44230cc6, 0x8668357c, 0x4f8f29f8, 0x8bfe3a3b, 0x5a202024, 0x0c70f918, + 0x23231f33, 0xebfe3102, 0x3f01c1fe, 0x17011501, 0x11123e01, 0x08f9874e, 0x10849330, 0x6375c54b, 0x22292886, 0x88272a1c, 0x29875c67, 0x27212427, + 0x0100792b, 0xe1ffa900, 0x0a070807, 0x46001f00, 0x1e1b2d40, 0xc81f1901, 0x64180310, 0x182f0c2f, 0x0f1cb114, 0x01213f7f, 0x21002100, 0x187f0801, + 0x230b2064, 0xed5dde10, 0x2007ed41, 0x20ee833f, 0x2aee8700, 0x14112111, 0x36323316, 0x82211135, 0x0aec4104, 0xfed60525, 0x82b9feb0, 0x01b12801, + 0x90928282, 0x86410185, 0x81b12bd8, 0xecfe1b02, 0x2601dafe, 0x64181301, 0xc488090d, 0x098d9f23, 0x32af8200, 0x06e1ffa1, 0x009c053b, 0x405c0024, + 0x1a060a40, 0x18231b06, 0x08090264, 0x241e0839, 0x020f15c8, 0x110f0905, 0x01160595, 0x21b1191d, 0x30840214, 0x02004000, 0x261f2600, 0x5f260001, + 0xb0269f26, 0x0526c026, 0xb908840b, 0xedf61025, 0xd610715d, 0x8332ed5d, 0x3f2f25c4, 0x39123fed, 0x5d27c684, 0x06352121, 0x6c222306, 0xca8e0f88, + 0x98fe0933, 0xba73a664, 0x0b6a01c9, 0x454d1314, 0x0134702e, 0x26cd8827, 0xd64f4c7c, 0x18db02d1, 0x8e0adaf6, 0xfc4208cb, 0xfe1105ec, 0x008c0669, + 0x403e0016, 0x14400326, 0x06033718, 0x140c0506, 0x05010560, 0x04900480, 0x40050402, 0x05370d09, 0x098f1105, 0x0902099f, 0x2f1100b0, 0x125deddd, + 0xcd2b2f39, 0x5d2f005d, 0x0a82cdd4, 0x312bc52b, 0x06140130, 0x35231507, 0x07e86536, 0x46080a83, 0xfe163233, 0xb2394b69, 0x2126302f, 0x0318251f, + 0x782b4e13, 0x49f20579, 0x703b1449, 0x1827300c, 0x7309091d, 0x005c0c06, 0xb5fc0100, 0x27fe59fe, 0x03006aff, 0x09401300, 0x02010230, 0xbe001c01, + 0x00ed2f01, 0x4a5dcd3f, 0xfe3205a7, 0x018efe27, 0x0159fe72, 0xffff0011, 0x0305fefb, 0xb78254fe, 0x43000725, 0x820088fa, 0x6dfc2111, 0xc3201182, + 0x8d201184, 0x00271183, 0x051a0102, 0x82010603, 0x06260811, 0x3f000a00, 0x020b0d40, 0x0902021b, 0x0a090102, 0xb8050304, 0x0e40c0ff, 0x0537100d, + 0x09070305, 0x00700060, 0x12820002, 0x1182b520, 0x0400002a, 0x2b2f332f, 0x00cdd65d, 0x33080783, 0x2f391712, 0x015d3031, 0x21072721, 0x03213301, + 0x97041323, 0xb8b9f8fe, 0x4101fcfe, 0xd0ab02fb, 0x03057cb3, 0x8901dbdb, 0x0a01f6fe, 0xb0ff0200, 0x97040305, 0x41207386, 0x08207386, 0x08207382, + 0x0f207386, 0x09227385, 0x74940407, 0x75941020, 0x03230123, 0x25758a21, 0xd0b3ddfd, 0x768a0701, 0x052beb85, 0x00520781, 0x001d0006, 0x84174073, + 0x400a2feb, 0x0a371814, 0x130c0d0d, 0x01020c1b, 0xf585030c, 0x81852820, 0x900b803b, 0x0c0b020b, 0x370d0940, 0x8f180c0c, 0x02109f10, 0x1807b010, + 0x37100940, 0x219a9418, 0xf7412bd4, 0x2f33260a, 0x3917122b, 0x08fd412f, 0x20071f41, 0x15054225, 0x0221bc8a, 0x1010422b, 0xdbdb0325, 0x422c8901, + 0x02281115, 0x03051a01, 0x01089704, 0x2024d582, 0x0e407000, 0x0926d584, 0x37100b20, 0xcc850201, 0xcc842e20, 0x030a2208, 0xca1d1414, 0x0a7f0a00, + 0x100a0a02, 0x070f17ca, 0x60070f01, 0x03077007, 0xb0130307, 0xb0200414, 0x2ed29407, 0xd610edd6, 0x2f2f00ed, 0xedd4715d, 0x825d2f33, 0x12112203, + 0x24d98239, 0x30313939, 0x22d2872b, 0x6b060601, 0x232405ea, 0x23070622, 0x23075554, 0x37363233, 0x0130d58a, 0x82910a3e, 0x2023552f, 0x2131194a, + 0x9b06db03, 0x0997b318, 0x0805a741, 0xa9750129, 0x131525a3, 0x973a4027, 0x141424b4, 0x00364023, 0x56010200, 0x5b04e704, 0x0d008c07, 0x4c001100, + 0x10111940, 0x18500d10, 0x3107c370, 0x033fc60a, 0x20110301, 0x0e37100c, 0x40c0ffb8, 0x08820e13, 0x2f101f2f, 0x10100210, 0x00b10d06, 0x06b10700, + 0x20b2822f, 0x25b282ed, 0x312bcd5d, 0xc184002b, 0x33335d26, 0x0130cd2f, 0x20054f4f, 0x05ff4433, 0x03132208, 0x5b041323, 0xcbb8b8ca, 0x4e5351df, + 0xb3d07655, 0xb264067c, 0x67bcc1cb, 0x01676565, 0x01f6fe28, 0x238d910a, 0x0f0f1014, 0xb82a8d90, 0x1840e0ff, 0x1037100c, 0x04820e40, 0x200e1026, + 0x0e0e020e, 0x27238dae, 0x8a210323, 0xb33a248d, 0x890701d0, 0x8b1e208e, 0x00c1378b, 0x0024000d, 0x1146406d, 0x37181440, 0x13141411, 0x0013221a, + 0x24410313, 0x06a02405, 0x41060604, 0x803b0526, 0x02129012, 0x09401312, 0x1313370d, 0x9f178f1f, 0xb0170217, 0x0e400e30, 0x92030e90, 0x5ded22a0, + 0x07c044cd, 0x2f33ed25, 0x4239125d, 0x3a410aca, 0x4237200d, 0x4d4116d0, 0x42392009, 0xcb890fcf, 0xd342c320, 0x041d2613, 0x089404e7, 0x3ed98201, + 0x404e0027, 0x0c201030, 0x06003710, 0x241b0306, 0xd0117fca, 0x17110211, 0x0e0f1eca, 0x82700e60, 0x28dc85b9, 0x061bb01a, 0x0d0eb027, 0x05f241b1, + 0xd4edd422, 0x3005b742, 0x5d2fed5d, 0x5dddedd4, 0x3912c4ed, 0x3031332f, 0x42ba8d2b, 0xbd891ab8, 0x42180121, 0xc78918b8, 0x429d0121, 0x012e10bc, + 0x11052e02, 0x8c06ab03, 0x5b001600, 0x39460b40, 0xffb8320a, 0x0e2540c0, 0x09143710, 0xc7010590, 0x05600550, 0x09494602, 0x49461020, 0x2129820b, + 0xfc820eb4, 0xdd2f1123, 0x0a52462b, 0x5e5d5e24, 0x56462bd4, 0xab03211e, 0x460f7541, 0x02261256, 0x3c065b01, 0x3f445604, 0x407b2b06, 0x0d400209, + 0x028b3710, 0x79821d01, 0x143d4026, 0x40103718, 0x2d080482, 0x6fc51d14, 0xff0a7f0a, 0x070a030a, 0x170fc510, 0x70170f01, 0x01170217, 0x0d400502, + 0x0f053711, 0x02039003, 0x033f030f, 0x030303cf, 0x4944af20, 0x09402109, 0x00364d82, 0x0014af13, 0xd6332f04, 0x5d2b2fed, 0x2f00edd6, 0x2bcd715d, + 0x06823939, 0xdd3ced32, 0x2b3ced5d, 0x5d30312b, 0x2723012b, 0x21372307, 0x19a67a18, 0xf9560436, 0xf8f58687, 0x0af60b01, 0x49257a79, 0x14272925, + 0xb808261d, 0x062e0c8b, 0xad4f4f3c, 0x84511801, 0x0d121014, 0x07872320, 0x01020023, 0x20e5825d, 0x28e58254, 0x0011000d, 0x110fb665, 0x20028201, + 0x20e28211, 0x219f82b4, 0x08821011, 0x0c234034, 0x00103710, 0xc006b010, 0xc0060206, 0x0f0a010a, 0xd2830103, 0xd4827f20, 0x6f030427, 0x02107f10, + 0x2027830e, 0x3127820c, 0xb00d100e, 0xb0070010, 0xd4ed2f06, 0xcd2fed39, 0xd4845d2b, 0x5dcd5d22, 0x2b20d682, 0x7121e582, 0x0e5e4431, 0xdb823720, + 0xbf54043c, 0xd4bcbebe, 0x4d5a5d4b, 0x5ea9bc63, 0xae584207, 0x512357af, 0xcebf2351, 0xa38e00ce, 0xa38f6120, 0x30207b84, 0x00217b83, 0x26a3960e, + 0x0e700e60, 0x82401002, 0x0e102423, 0xac0eb00d, 0x2307239f, 0x9f8a2127, 0xbca94d24, 0xa0890701, 0x9f8e0f20, 0x00242808, 0x1114408d, 0x1a131414, + 0x0f01220f, 0xbf227022, 0x8f220322, 0xb8130113, 0x4740c0ff, 0x1337100d, 0x30031300, 0x41060106, 0x4f311148, 0x021f5f1f, 0x09401312, 0x13133713, + 0x1fb01f30, 0x068a4402, 0xa00e9024, 0x8944cf0e, 0x00b02105, 0x3321bb85, 0x05b8452f, 0x5dcd5d22, 0x22078a44, 0x445dcd71, 0x2b29068c, 0x715d2f5d, + 0x2f3912cd, 0x0f6b41c5, 0x8f442720, 0x097e4116, 0x2e2e1c30, 0x1a28186b, 0x0e1a1915, 0x1b320e02, 0xea895648, 0x382b5730, 0x05542f0f, 0x11121719, + 0x055d0508, 0x99413908, 0x0027250d, 0x241bb178, 0x1830e683, 0x24371917, 0x11cf11bf, 0x01117f02, 0x40170e11, 0x17240f82, 0x1e011e0f, 0x0a2a1c83, + 0x1e37100d, 0x01067000, 0x0e830a06, 0x1b822220, 0x030f0a23, 0x052443d0, 0x2a055142, 0x1b1bb01a, 0x0eb02706, 0x85b00d0e, 0xedd425ed, 0x10ed103c, + 0x00200382, 0x2b20d883, 0x5d24f384, 0xdd3c2bcd, 0x2b21e682, 0x20e48f3c, 0x19724737, 0xd420e789, 0x2c182943, 0x72580607, 0x281a5773, 0x51fb1a28, + 0x062d437a, 0x00310786, 0x06290102, 0x08e10566, 0x00060001, 0x408f001d, 0x0e294916, 0x0e400c26, 0x1b0c3710, 0x2d20d883, 0x0f33e782, 0x021b011b, + 0x03030c01, 0x0570050f, 0x0f050502, 0x49030103, 0x28820839, 0x24093949, 0x40c0ffb8, 0x493b820e, 0x70230642, 0x82000100, 0x82b52012, 0x4a002011, + 0xd4210650, 0x0ce6442b, 0x2305da4f, 0xc42b5d2f, 0x2808ec44, 0x2721015d, 0x33012307, 0x16e44105, 0xfdfe882a, 0x01ffaeaf, 0x9002f137, 0x260ffe44, + 0xabab6606, 0x464a4b01, 0x23080f70, 0x1800ffff, 0x1e0659fe, 0x2602d105, 0x00002400, 0x4b020701, 0x0000bb05, 0x02b60a00, 0x050e0d00, 0x352b2500, + 0x56262382, 0xb70459fe, 0x23828304, 0x23864420, 0x23853220, 0x34330824, 0x23852f19, 0x0effbf18, 0x00560225, 0x84750143, 0x0f102147, 0xff254788, + 0x06b704e2, 0x2247888c, 0x8514054a, 0x361d2247, 0x22478b35, 0x88ed0744, 0x824e208f, 0x00613847, 0x0203b21e, 0xc0ffb80f, 0x16131040, 0x400f0037, + 0x030f700f, 0x830b0f00, 0x2b5d2258, 0x23a38435, 0xbb05e2ff, 0x062c5b88, 0x00ba4e02, 0x03b70c00, 0x31350c02, 0x23825a84, 0x00f3ff25, 0x8a1e0600, + 0x844f205b, 0x4013295b, 0x1f02030d, 0x020f6f0f, 0x35265187, 0xffff0035, 0xad8c6aff, 0x4f020622, 0x2b845182, 0x7f356f23, 0x20578735, 0x272b845d, + 0x00001800, 0x01082406, 0x0629b586, 0x00435c02, 0x15401b00, 0x83528203, 0x0fa026ab, 0x0ff00fc0, 0x215f8c06, 0xb1825600, 0x52073b22, 0x22060d41, + 0x82500206, 0x4011285f, 0x7f02030b, 0x85000135, 0x205d8ab5, 0x205d8a1e, 0x835d8257, 0x184f86db, 0x8409cdf8, 0x00442623, 0x02060100, 0x414d8a51, + 0x4d870603, 0x4159fe21, 0x00270905, 0x00d60027, 0x41610143, 0x142908f9, 0x00030e40, 0x00051514, 0x070e4125, 0x03423520, 0x075f4109, 0x00260024, + 0x2d42bad6, 0x00322d05, 0x40180000, 0x3a080311, 0x252f193b, 0x6d88bb83, 0x17423784, 0x0206220d, 0x21bb8758, 0x63820b11, 0x2208bb41, 0x4207b704, + 0x06220717, 0xbb415202, 0x41372007, 0x002008bb, 0x5920478f, 0x532047a2, 0x5a2047a2, 0xc1204798, 0x20089941, 0x2047a254, 0x4147975b, 0x55200a93, + 0xfe254793, 0x071e0659, 0x053942d9, 0x00270027, 0x014300d9, 0x088d4175, 0x13401d30, 0x01115002, 0x1b000311, 0x2500051c, 0x35410002, 0x352b2606, + 0x355d1100, 0x079b4300, 0x85640621, 0x260023ab, 0x9741d900, 0x40142b0a, 0x4108030e, 0x252f1942, 0x4a410c02, 0x352b2106, 0xbe2b3382, 0xf30459fe, + 0x2602d105, 0x41002800, 0x782a05c5, 0x0a000000, 0x0e0001b6, 0xf343010f, 0x82582006, 0x04fc2223, 0x20238286, 0x20238648, 0x2423848d, 0x201f1902, + 0x2423860f, 0x040000be, 0x85df84f3, 0xff563947, 0x007501ec, 0x01104015, 0x1d101d00, 0x1d701d40, 0x0c1d0004, 0x2b250302, 0x5826ab85, 0xfc04e2ff, + 0x53888c06, 0x51054a22, 0x2f825382, 0x2e00022c, 0x2e402e30, 0x2d042e70, 0x5d831d2e, 0x5f842f85, 0x87c70721, 0xd70021a7, 0x752b8982, 0x0b401200, + 0x01195001, 0x84190001, 0x0035225a, 0x85d3835d, 0x8652205b, 0x00062a5b, 0x0000ebd7, 0x0002b60a, 0x844f842a, 0x000023f5, 0xad8a0106, 0x4d844e20, + 0x0d40162b, 0x10500102, 0x00010201, 0x834f8510, 0x21518650, 0xad88ec05, 0x4e020622, 0x0c255182, 0x190203b7, 0x82528521, 0xb0ff2123, 0x200e0141, + 0x21539d4f, 0x01419bff, 0x0206220c, 0x2053914f, 0x21f58200, 0xa788e105, 0x5c020632, 0x16000000, 0x100102b2, 0x40c0ffb8, 0x370f0909, 0x3b43a886, + 0x22f78205, 0x88076c05, 0x500221f7, 0x172d5182, 0x02031140, 0x21202100, 0x21602130, 0x43af8604, 0xb34106fd, 0x0206220d, 0x215d8257, 0xfd8ab70c, + 0x3175ff20, 0x20818406, 0x22cf8248, 0x93510206, 0x59fe21a5, 0x2309fb41, 0xd6002700, 0xb7422982, 0x82782005, 0x401d2e51, 0x50100113, 0x00020110, + 0x03021615, 0x085b4125, 0x00352b26, 0x0035115d, 0x3f826383, 0x24080b42, 0xd6002600, 0x058942eb, 0x3d828d20, 0x0e401429, 0x27261903, 0x4125000f, + 0x2b21086c, 0x24338235, 0x0300007b, 0x209784e3, 0x336d822c, 0xff560207, 0x00750157, 0x010a400f, 0x00011180, 0x09041011, 0x2a076942, 0x020000aa, + 0x028c063d, 0x84d50026, 0x034a2229, 0x635782d4, 0x8f820549, 0xfe254d85, 0x05e30359, 0x852382d1, 0x044b224d, 0x080543b9, 0x71834983, 0x59fea026, + 0x14061c02, 0x4c202382, 0x4b224784, 0x2384f203, 0x0a000223, 0x5647840b, 0x063b05b3, 0x00f0050a, 0x0025001a, 0x0b1c4037, 0x27007d1b, 0x0a157d1c, + 0x1c171415, 0x82140a91, 0x222d0801, 0x0417920f, 0x13049222, 0x3fed3f00, 0x393911ed, 0xed102f2f, 0x01391211, 0x10edc62f, 0x31c5fdde, 0x07100130, + 0x27202106, 0x11262726, 0x2f048221, 0x06072223, 0x36112307, 0x16172021, 0x17162101, 0x4e080182, 0x36373233, 0xbfb70a06, 0x9ffea4fe, 0x292770b0, + 0x992c1704, 0x8285654e, 0xf127643a, 0x5c010d01, 0x7bfeb6c0, 0x0e0668fd, 0x453d8135, 0x024d5896, 0xcea0fee8, 0x8d86d2d9, 0xe7380196, 0x1f452141, + 0x76540153, 0x1cfeced9, 0x3bb9312a, 0x8267751c, 0x542e08b7, 0xf804e2ff, 0x13008604, 0x3b001800, 0x14082040, 0x151a0083, 0x15070e83, 0x100d0e98, + 0x0d1f0d0f, 0x070d0702, 0x980a170d, 0x98171010, 0xbb891604, 0xba825d20, 0xbb8fed20, 0x21351125, 0x83222102, 0x853320b4, 0x336608b4, 0xb1f80432, + 0xfddefeab, 0x103803da, 0xaadc9bfe, 0x01ede828, 0xfeccb43a, 0x062dfe95, 0x3d02e7d7, 0x9ba2e2fe, 0x017e1902, 0x21018110, 0xfe96855d, 0x0000e33b, + 0x001c0001, 0x05f00400, 0x000d00d1, 0x0016402d, 0x0502030f, 0x07090b7f, 0x0b940805, 0x01070202, 0x07030c91, 0x3f3f0012, 0x2f3911ed, 0x01c0fdc0, + 0x0582ce2f, 0xc610cd22, 0x08050354, 0x11211523, 0x35231121, 0x04211133, 0x014efdf0, 0xfec3fe3d, 0x04a2a280, 0xfeb10432, 0x59fde9df, 0x02e9a702, + 0x20638341, 0x22638229, 0x8a630436, 0x84842063, 0x84ca2063, 0x0c972263, 0x2163980f, 0x638a2115, 0xdcfd3637, 0xbafe4601, 0x818198fe, 0x69038c03, + 0x31fecfcb, 0x01cfcf01, 0x08c582c5, 0xaafe127a, 0xd405db08, 0xad003b00, 0x39465d40, 0x01392701, 0x0c20131a, 0x7f0a090a, 0x0b140c0b, 0x090e0b0c, + 0x07201307, 0x03040339, 0x14393a7f, 0x3a393a3a, 0x293b7f02, 0x05350423, 0x7f052330, 0x04353907, 0x23299130, 0x201a212f, 0x090e0c14, 0x21149113, + 0x09912320, 0x08050408, 0x03210708, 0x3b070b0a, 0x0302913a, 0x00011207, 0xc0d03f2f, 0xd010c0fd, 0x39123fc0, 0x10c0d02f, 0xed2a0c84, 0x11393911, + 0xd0103912, 0x0a833911, 0xfd2f0124, 0x1283dcd0, 0xedd6392d, 0x2b108733, 0x01c47d87, 0x8318d010, 0x87d62112, 0x2c820d84, 0x5d303127, 0x1121015d, + 0x6c4c1823, 0x26272309, 0x36782627, 0x16172909, 0x11331617, 0x37361121, 0x36200184, 0x21061374, 0x01840607, 0x08330126, 0x6d9ffedb, 0x0b6b4c18, + 0x2541433d, 0x584d322a, 0x991a691a, 0x331740b4, 0x59392432, 0x365f7e01, 0x32183324, 0x8294b83d, 0x4e583016, 0x28341d2d, 0x012b270f, 0xaafebc3b, + 0x18025601, 0x08086e4c, 0x60ab2746, 0x4701332b, 0x3a897103, 0x3b266672, 0x96fd6a02, 0x6a243801, 0x7486723a, 0x2cbdfe03, 0x1a5a751c, 0x1ffe1a45, + 0x2d000100, 0xd207eafe, 0x33006504, 0x6940b900, 0x071d1118, 0x0cab0c8b, 0x0c030cbb, 0x840a090a, 0x08076b41, 0x8407113c, 0xb431a431, 0x03310331, + 0x32840304, 0x32321431, 0x84023231, 0x3301330d, 0x2f042026, 0x8405202c, 0x07010700, 0x2c042f31, 0x2b202697, 0x121d181e, 0x11090e0c, 0x1d1e1297, + 0x7541ca20, 0x0f1e2706, 0x33070b0a, 0x75419732, 0xfd5d292b, 0x3939dcc0, 0x5dd63911, 0x22087641, 0x8210185d, 0x06754112, 0xc0105d26, 0x30313911, + 0x410f7541, 0x72410973, 0x0971410d, 0x07331327, 0x5ebffed2, 0x0aa979fe, 0x35292d39, 0x5c176268, 0x3c957c17, 0x25216016, 0x6166015e, 0x17312023, + 0x82e6672e, 0x68622a14, 0xde2c2a35, 0x01eafea6, 0x09a97916, 0x5c226008, 0x022c0177, 0xab2c6b56, 0xc3011716, 0x16013dfe, 0x572b5714, 0xd4fe02c1, + 0xfe205e77, 0x010000b5, 0xaafebe00, 0xd4052c06, 0x66002100, 0x031f3740, 0x207f0304, 0x2020141f, 0x1021201f, 0x051d040a, 0x217f0218, 0x7f050a23, + 0x041d1f07, 0x0a109118, 0x910a0817, 0x01056f04, 0x08070505, 0x42202103, 0x3f260ca1, 0x5d2f3912, 0x9242edc0, 0x10c02a0a, 0x11c6edd5, 0x39113939, + 0x06944211, 0x420a0a41, 0x37200867, 0x080c6842, 0x06330128, 0x779ffe2c, 0xfe5e48fe, 0x5b800180, 0x1e44372c, 0x5a56513e, 0x196419a2, 0x2338566f, + 0x01455933, 0xaafed96f, 0x49185601, 0x043207e6, 0x38752820, 0x36358f6f, 0x38bdfe03, 0x26aa6224, 0x31701dfe, 0x54053105, 0x1d006504, 0x3e406f00, + 0x1ba01b80, 0x1b031bb0, 0x8433de82, 0x1c141b1c, 0x1d1c1b1c, 0x19040a0f, 0x84021605, 0x420a1f1d, 0x1b2b051b, 0x97160419, 0x08150a0f, 0x8304970a, + 0x1d0f22de, 0x0c0a421c, 0xdd8bde83, 0xc0fd5d24, 0xde8ed610, 0xab580120, 0x05614305, 0x4743e082, 0x3313260f, 0xbffe5405, 0x065c7761, 0x304f6327, + 0x983b2e17, 0x07be417a, 0x41b0e921, 0x043207be, 0x013dfe63, 0x562c552c, 0xfe02576a, 0x1f5f77d4, 0xd382b5fe, 0x00be3108, 0x052b0600, 0x002300d4, + 0x066d40b5, 0x02221622, 0x2b011229, 0x03210102, 0x14181408, 0x1c0f1402, 0xa40123b6, 0x237e0123, 0x6f235f01, 0x26020223, 0x01268882, 0x007f0102, + 0x34821423, 0x251c3008, 0x0e03020f, 0x7f060b04, 0x08010800, 0x1c052123, 0x1b0b1491, 0x0e100d09, 0x910b090e, 0x02790605, 0x01026b01, 0x0f010259, + 0x02021f02, 0x82040602, 0x09082a01, 0x08000103, 0xd03f0012, 0x25ff82c0, 0x122f2f39, 0x00825d39, 0xedc01026, 0x392f3911, 0x290a7e44, 0xdec0fd5d, + 0xc0c0ddc0, 0xf942d610, 0x5d5f2107, 0x11200082, 0x12312f82, 0x00303139, 0x5d5d015d, 0x15012121, 0x11231123, 0x25018221, 0x33113736, 0x68443611, + 0x0c674405, 0x29fe2b31, 0x5e71b9fe, 0x800180fe, 0x2971203e, 0x411c103a, 0xbf330efd, 0xfd8501eb, 0xfdd105a7, 0x010b03a1, 0x38d5fe8f, 0x41331e6d, + 0x32080afd, 0xaa000100, 0x52050000, 0x1e006504, 0x6140a100, 0x1c01012b, 0x49123902, 0x0f120212, 0x441e3419, 0x1e00021e, 0x01010f01, 0x0102011e, + 0x141e0084, 0x822f1e00, 0x20192132, 0x08061b41, 0x0800842d, 0x08a00810, 0x080408b0, 0x19051c1e, 0x180b1297, 0x2f100d09, 0x0e0e010e, 0x05970b09, + 0x0201027d, 0x01042004, 0x04060406, 0x410f0908, 0x5d200d1b, 0xc025ec82, 0x2f3911ed, 0x1619415d, 0x8a455d20, 0x0a174105, 0x21215d23, 0x10134103, + 0x2f0a0f43, 0x60fe5205, 0xfe5c71d3, 0x38680198, 0x3c1e7124, 0x320a2d42, 0x01d73801, 0x0443fe5c, 0x013dfe63, 0xfe5e0106, 0x426e37fa, 0xd743072d, + 0x882c0806, 0x0f00d105, 0x28404500, 0x0e0f7f02, 0x007f040b, 0x600e500e, 0x110e030e, 0x007f050a, 0x0b070107, 0x01055f91, 0x0c070505, 0x910e0308, + 0x23076a46, 0x12c03fed, 0xed27c182, 0xfd5d2f01, 0x83dc10c0, 0x66dd2004, 0xb8410529, 0x11212105, 0x21080183, 0xfe880633, 0xc9fdb29f, 0x800180fe, + 0x80013702, 0x01aafe93, 0xfd900256, 0xfdd10570, 0xfb2102df, 0x8343004c, 0x048c2206, 0x24838263, 0x0223403f, 0x23838384, 0x010e1084, 0x84287f83, + 0x07100700, 0x970b0702, 0x0f227e84, 0x7e8d970e, 0x05257d9f, 0x9bbffe8c, 0x08bc78fe, 0xeafe7425, 0x78011601, 0xfc3108c1, 0xffff0094, 0x00000900, + 0xd105dc05, 0x3c000602, 0x2e0f8300, 0x0564fe1e, 0x02630417, 0x00c40106, 0x87010000, 0x0030081f, 0x407f0010, 0x010f4248, 0x23010f30, 0x0f14010f, + 0x010c0801, 0x100f0e0f, 0x0c0d7f0e, 0x4f0c0d14, 0x0c0d010d, 0x00100f07, 0x10010f01, 0x1401007f, 0x01363a82, 0x107f0503, 0x07090109, 0x02940508, + 0x0b0b0c01, 0x0010070d, 0xb9480d0e, 0xd0c02805, 0x391211c0, 0x4839392f, 0x5d3705be, 0xddd0cdfd, 0x00102b87, 0x7d0587c1, 0x1001c410, 0x5ddd18d0, + 0x82082b87, 0x3031230b, 0x00835d00, 0x48010121, 0x23080675, 0x35213521, 0x01012101, 0xdbfddc05, 0xcefe3201, 0xd0fe80fe, 0xd2fd3001, 0x4201b401, + 0xd1053701, 0xd9516ffc, 0xd927ea83, 0xfda3033f, 0x824002c0, 0x08d5868a, 0x000e002a, 0xa2404073, 0x4302010d, 0x0d00010d, 0x0d020d10, 0x0c0e0d0c, + 0x140a0b84, 0x0b200a0b, 0x070a0b01, 0x01000e0d, 0x840e010d, 0x0236c286, 0x07098404, 0x01ca0407, 0x060b0a0a, 0x0b0c000e, 0x001b060f, 0xbd863f3f, + 0xcd20bb84, 0x5f24ba9e, 0x2101015d, 0xb682ba83, 0xb7842120, 0x2ffe172e, 0xbcfe4401, 0xcafe98fe, 0x40fe3601, 0x09a36b18, 0xdeded929, 0xfd4804d9, + 0x82b4024c, 0xfe1831b3, 0x051506aa, 0x000f00d1, 0x0d40406a, 0x0e09050c, 0x39088282, 0x0b070e09, 0x04030806, 0x0308050c, 0x03080309, 0x14090e7f, + 0x0e090e0e, 0x060b050f, 0x050c7f0b, 0x0c050c14, 0x110f7f02, 0x0c0b0608, 0x0f030809, 0x0302910e, 0x01120605, 0xb3832f00, 0x83c0fd21, 0x2f012505, + 0xedd610c6, 0x29068044, 0x18873311, 0x7d872b10, 0x00820fc4, 0x83067746, 0x822120a4, 0x010129b4, 0xfe150633, 0xbffe6c9f, 0x12a62719, 0xfed64b35, + 0x015601aa, 0x0216feea, 0xfee302ee, 0xfdd00130, 0x8220fe2c, 0xfe1a26b7, 0x044405ea, 0x08b78263, 0x7340ac35, 0x67010da0, 0x020d770d, 0xaf010d46, + 0x074b0107, 0x077b076b, 0x010ac203, 0x0ab00aa0, 0x010a3602, 0xcd010a15, 0x04af0104, 0x3e0204bf, 0x041a0104, 0x9702042a, 0x8b8420ea, 0x868420ea, + 0x878420ea, 0x0f0f23ea, 0xeaad970e, 0x23055542, 0x015d5d5d, 0x24055e42, 0x03231121, 0x08f68303, 0x21131331, 0x05331301, 0x67bffe44, 0x64fef6f0, + 0x4cfebb01, 0xedeca401, 0x4bfe9d01, 0xeafec4fa, 0x50011601, 0x3102b0fe, 0xb6fe3202, 0xd7fd4a01, 0x8200bdfe, 0x00833cf5, 0x058e0500, 0x001d00d1, + 0x042c4053, 0x17000619, 0x10171701, 0x007f021b, 0x427f101f, 0x172c056a, 0x161b0e17, 0x07099219, 0x06090204, 0x21080182, 0x030e1c01, 0x3f001201, + 0x3912c03f, 0x112f2f39, 0x10333333, 0x113232ed, 0x2f012f39, 0xd610ed5d, 0x0a82c0fd, 0xddc05d31, 0x213031c0, 0x07061121, 0x06112311, 0x60272223, + 0x172105e9, 0x08018216, 0x1133113c, 0x21113736, 0x80fe8e05, 0x2b715a6a, 0x9182da3e, 0x21328201, 0x71271e3c, 0x8001576d, 0x0e162702, 0x0d01e8fe, + 0xd9746802, 0x9ffe2602, 0x172d45b7, 0x6c01050c, 0x0f028efe, 0xb583a702, 0x00742208, 0x04cf0400, 0x001b0063, 0x0434405b, 0x15000617, 0x15021510, + 0x02191015, 0x101d0084, 0x010da084, 0x05284331, 0x030d202a, 0x0e15150d, 0x98171419, 0x0123be86, 0x8a0f0e1a, 0x88bc82bd, 0x935d20bb, 0x231522bd, + 0x82bd8c35, 0x823220bb, 0x047008bb, 0x4298fecf, 0x3735714c, 0x017168af, 0x4022286a, 0x013c5271, 0x0e820168, 0x04b5c30c, 0x01aa5c55, 0x93fefeb2, + 0x010f2b33, 0x09e1fe14, 0x01000402, 0x0000be00, 0xd105c905, 0x29001300, 0x7f021440, 0x080d1500, 0x0f0d0a7f, 0x06060892, 0x01030b0a, 0x3f00120a, + 0x39123fc0, 0x32ed332f, 0xc0fd2f01, 0x31edd610, 0x11212130, 0x23262734, 0x21110722, 0x27080182, 0x17323336, 0xc9051516, 0x42327efe, 0xfe616fc5, + 0xe9800180, 0x9182dab5, 0x45b76101, 0x59fd115b, 0xd9fdd105, 0xd9746831, 0x28068972, 0x14061205, 0x4b000602, 0x2a0f8300, 0x06e1ff67, 0x02f0050a, + 0x84890206, 0x063d4e0f, 0x8a250f82, 0x03000000, 0x081f8300, 0xf0056635, 0x16000b00, 0x43002100, 0x20082a40, 0x07022018, 0x021b171b, 0x12171207, + 0x180e0802, 0x170c020e, 0x1823007d, 0x0c067d16, 0x1e181891, 0x04099210, 0x4f03921e, 0x2f210715, 0x20b682ed, 0x050f4fc5, 0x00825d20, 0x22099564, + 0x4f050020, 0x06210714, 0x0b0f4f07, 0x66fe6624, 0x01829afe, 0x97016724, 0x01826801, 0xfe983b08, 0x62451b61, 0x31649c9e, 0x02050a20, 0x0731fdc7, + 0x43893c0f, 0x4f61a14a, 0x99fee802, 0xa10160fe, 0x69016601, 0x60fe9f01, 0x72517db9, 0x20633770, 0x2fccfe16, 0x1c39b72e, 0xc3826075, 0xff582608, + 0x042605dd, 0x000f0086, 0x00230018, 0x1019402f, 0x25008319, 0x2f831a18, 0x10080108, 0x1e1a1a97, 0x100c9814, 0x090c4f1e, 0x5d21b283, 0x4fb386fd, + 0x112707c3, 0x21363710, 0x88161720, 0x210521b3, 0x0806bf4f, 0x05363749, 0xfea3a626, 0xa3e3fee2, 0x01a4a6a7, 0xa31f011d, 0x0f83fea5, 0x6e733b2d, + 0x0110303c, 0x0e25fed8, 0x6f753d30, 0x0911243a, 0xe4fe3102, 0x9e9b9a9e, 0x1c011b01, 0x9d9a9b9e, 0x4b3962aa, 0xd3693746, 0x484b3c73, 0x471d3c2c, + 0x3a08053f, 0x04b30564, 0x001b0082, 0x01244041, 0x171a8403, 0x1d1a1600, 0x00840a0f, 0x020c100c, 0x95080a0c, 0x0d10110f, 0x1997170f, 0x1a03120c, + 0x001b0197, 0x3fc0fd3f, 0x3f3fedd0, 0x4732ed33, 0xde2c05bf, 0x10c0ddc0, 0x3031cdfd, 0x33112101, 0x200a2942, 0x05294215, 0x30081382, 0x05331523, + 0xa154fdb3, 0x6080261f, 0x0198fe71, 0xc2b7c668, 0xa1a15d64, 0x0164fea1, 0xb1c10208, 0xfc43473a, 0x7c6304e4, 0xc66d749b, 0xf8fe2dfe, 0x24998394, + 0x0564fe00, 0x08998212, 0x36001724, 0x84011e40, 0x0b111900, 0x000c8409, 0x020e100e, 0x9506080e, 0x0f101311, 0x97090e0f, 0x12011b0c, 0x94833f00, + 0xcd259186, 0x10c0cdfd, 0x0cb642de, 0x83113321, 0x86212099, 0x12052390, 0x898496fe, 0x44fdaa23, 0x218b86aa, 0x84842d02, 0xf8fe5026, 0xf7040801, + 0x83838884, 0xe3189920, 0x32082ee9, 0x03400002, 0x066d04c7, 0x00030014, 0x401f0007, 0x0100030d, 0x07050602, 0x03020504, 0x3f000004, 0x01c0dec0, + 0xcdddcd2f, 0xcdddddde, 0x03013031, 0x82210121, 0x6d042803, 0x0190fe9d, 0x84cafe23, 0x14062506, 0x4d02b3fd, 0x00280383, 0x9cff0300, 0x4d055203, + 0x08537918, 0x15402f37, 0x080b0a09, 0x07060507, 0x03000201, 0x01090704, 0x07030b05, 0x22598203, 0x82c0ddc0, 0xdedd215b, 0x10235d82, 0x8610cddd, + 0x23012361, 0x03862313, 0xfe4d0526, 0x42e0eea0, 0x45200483, 0x0daca518, 0x81fd4708, 0x00007f02, 0x00690001, 0x052f0500, 0x002100f0, 0x1c26404c, + 0x011f3f0b, 0x0101171f, 0x211a1e13, 0x02051323, 0x1c1c171e, 0x090b1b20, 0x2018180c, 0x0f010f70, 0x01200409, 0xcd3f0012, 0x115dcd3f, 0x11ce2f39, + 0x0682cd39, 0xe0828582, 0xc0d6102a, 0x2f3912c6, 0xc45dddc0, 0x37057e45, 0x34350026, 0x32333637, 0x26231517, 0x06072223, 0x16171415, 0x15211117, + 0x39080184, 0x2f052111, 0xfefa54fd, 0xe98781e0, 0x991aa4b3, 0x404a897b, 0x02894a40, 0x0151feac, 0x0173fe8d, 0x02c101af, 0xeff91e01, 0xf1549790, + 0x8f5e6c88, 0x016b5d8f, 0xb2c17301, 0x3344ffc1, 0x7f860806, 0x52066e05, 0x30002a00, 0xbd003700, 0x37186640, 0x01301801, 0x23182308, 0x31370c02, + 0x9f0b1514, 0x09150115, 0x16172d2e, 0x3007160a, 0x061a192b, 0x1a011a9f, 0x1c222304, 0x1f1b051b, 0x0605392a, 0x7d350b0a, 0x10201010, 0x10b010a0, + 0x2b221004, 0x1c19172d, 0x1f14041e, 0x14922d31, 0x15161a1b, 0x04000414, 0x2e30372a, 0x0b049223, 0x0c06050a, 0x13040709, 0x33333f00, 0xd0c0dd33, + 0x32fd10c0, 0x11c43232, 0x0c863f39, 0x1711c435, 0x39391139, 0xed5d2f01, 0xcddeddd4, 0xd0d0d610, 0x82c4877d, 0x18012300, 0x09875ddd, 0x128fde20, + 0x0130312f, 0x255d5d5d, 0x07060706, 0x26372307, 0x2a048427, 0x37103526, 0x33372536, 0x84171607, 0x23112604, 0x36012726, 0x21018337, 0x0a820133, + 0x03171622, 0x8b083082, 0x05171415, 0x9290466e, 0x22a91f95, 0xa92e4f50, 0x384eac44, 0x5301c6cf, 0x5821ac1f, 0x3dac2b46, 0x3e2c122b, 0x2ff6fe30, + 0x2a6e6b2f, 0xd3fe281b, 0xeffe4e51, 0x9138573d, 0x63252541, 0x012a3520, 0x1b0c6e64, 0xcd6fdd95, 0x6501bd92, 0x6405cad3, 0x8b140b6c, 0xfe0913c4, + 0xfc213597, 0x210e05a5, 0x02182156, 0xfc0120e7, 0x0316328b, 0x5fa73d9c, 0x005d8685, 0x67000100, 0x6e05e3ff, 0x3200ee05, 0x33405b00, 0x06180608, + 0x2f112702, 0x31081782, 0x84202c34, 0x1d011d7f, 0x08107d1b, 0x272c0801, 0x2026982a, 0x110c1024, 0x162d1e1e, 0x00040c92, 0x1d323204, 0x1304922d, + 0x32ed3f00, 0x39122f32, 0x3e42ed3f, 0x32d42205, 0x30108232, 0xfd5d2f01, 0xc0fd5dde, 0xc05dde10, 0x5d3031c0, 0x2ee08225, 0x26272023, 0x36371011, + 0x16173221, 0x45231117, 0x062b06c5, 0x11171015, 0x37361521, 0x83323336, 0x22232215, 0x080c8307, 0x05333737, 0x9690466e, 0xcba7fea3, 0x01cbcfd4, + 0x5d8aab5f, 0x87972c7c, 0x73ae4940, 0x01ae4a3a, 0x544d2168, 0x20271a5f, 0x6c5a3e3e, 0x1b2a7c79, 0x35206328, 0x01ccc32b, 0x3ffb8275, 0x3c1a26cf, + 0x2e8297fe, 0xbe386e16, 0x7ce2fe85, 0x45a53502, 0xfe043430, 0xff2c10a9, 0x1821611e, 0x4208f583, 0x0738ffaa, 0x004a05d6, 0x40710025, 0x010b7939, + 0x0d1f1e0e, 0x1f0d0e1f, 0x0c20210b, 0x0c200b20, 0x84171a0d, 0x201f0a16, 0x08018400, 0x080a0f84, 0x1e219506, 0x1f201c23, 0x1a951315, 0x0f19101c, + 0x47160d0c, 0xc02b0564, 0x3f3fc0dc, 0xde32ed33, 0x83d010c0, 0x2f013af9, 0xeddefdc0, 0xdc10cdd4, 0xcdd6c0ed, 0x7d103911, 0xc404c487, 0x39121101, + 0x23088310, 0x5d003031, 0x240a8747, 0x01230335, 0x09944735, 0x36153e08, 0x13173233, 0x33360333, 0xd6071120, 0x221996fe, 0xfe734e7c, 0x01a9a996, + 0x7b221a52, 0x98fe7051, 0xa9c56801, 0xacae66c2, 0x016f7e8c, 0xb6310273, 0xfc434533, 0xb8fe80e4, 0xb5679202, 0x080b8334, 0x7c63049d, 0x54018c9b, + 0xfe48f0fe, 0x00030059, 0x06000028, 0x00d1059a, 0x001e001b, 0x40db0022, 0x011e668a, 0x36011e47, 0x1e05011e, 0x1e021e15, 0x111c1112, 0x03201f04, + 0x14110420, 0x54113411, 0x05118411, 0x032b030b, 0x035b033b, 0x1105038b, 0x7f032003, 0x1c14111c, 0x7b206b11, 0x21200220, 0x027f1c13, 0x161a0018, + 0x500102af, 0x70026002, 0x021f0302, 0x0d240201, 0x05210709, 0xa00b0f7f, 0x076f0107, 0x0002077f, 0x08070107, 0x94040105, 0x0b1a1c1f, 0x120f1622, + 0x191e2094, 0x8222210c, 0x14072701, 0x02031011, 0x28500703, 0x49c02005, 0x102105f6, 0x220082c0, 0x82c0c0fd, 0xc0c42107, 0xc0260782, 0x5d5d2f01, + 0x0a82c05d, 0xc0de1024, 0x0b84d610, 0xfd200882, 0x184f2d82, 0x87102308, 0x0383c4c4, 0x25057243, 0x1123015d, 0xf3550321, 0x23352606, 0x21113335, + 0x360d8313, 0x15231533, 0x23352533, 0x15232705, 0xfe929a06, 0x80fef88e, 0x8296a0fe, 0xcb013400, 0x012001ff, 0x92929260, 0xfe8e0efe, 0x01658df6, + 0x856ffe91, 0xe5e52203, 0x250885e5, 0xe5e56ffe, 0x0e82df06, 0xffff0036, 0xe1ffbe00, 0xd105730a, 0x35002600, 0x07010000, 0xf9055600, 0x2e06ff57, + 0x0f0f2626, 0x00352b25, 0x00240004, 0x82e30800, 0x1f7a0823, 0x27002300, 0xfd002b00, 0x26028240, 0x01250a01, 0x2801141a, 0x3b2b1413, 0x022b6b2b, + 0x100e0a2b, 0x112a2912, 0x0c0b082a, 0x0707100f, 0x272a1011, 0x06260605, 0x012a2214, 0x1b1f262a, 0x18172019, 0x1e011823, 0x02191a1d, 0x23191802, + 0x22151621, 0x03042415, 0x03220325, 0x23042515, 0x01040826, 0x2a2b9405, 0x1e222324, 0x171a270b, 0x130f1216, 0x25262994, 0x0c1d2021, 0x01822728, + 0x19140733, 0x11101418, 0x02031415, 0x12070603, 0xd0c03f00, 0x2a0383c0, 0x11c0d010, 0x2f393912, 0x85c0102f, 0x84fd2000, 0x260d8b06, 0x17cc2f01, + 0x417d1039, 0x0125065b, 0x39dd1018, 0x05e44439, 0x13821020, 0xd6240f82, 0x5dcc10c0, 0x1d941385, 0x835d2f21, 0x0594412e, 0x03210122, 0x35280186, + 0x35232721, 0x13210333, 0x03290186, 0x07231533, 0x17232521, 0x20188233, 0x08078307, 0xfee30838, 0x57fe6cbd, 0x6bcafe6e, 0xfe6c57fe, 0x3d0501bd, + 0x016c8ac8, 0x32015a91, 0x667f016b, 0x015e3101, 0xc88a6c87, 0xfd05013d, 0x513bc1c7, 0x3d3f69fe, 0xc2fdfe3d, 0xb6415133, 0x20148314, 0x080086e5, + 0x02000026, 0x00009a00, 0xf204bd06, 0x1e000f00, 0x1b403500, 0x11100d00, 0x05181908, 0x08010800, 0x01170f06, 0x101a0e17, 0x18290b83, 0x3f001205, + 0xce5dddc0, 0x2704832f, 0xdd5d2f01, 0xde10cdde, 0xcf820482, 0x06071437, 0x33112121, 0x37322111, 0x21113536, 0x34112301, 0x21232627, 0x08018211, + 0x15163240, 0x7981bd06, 0xa5fdfffe, 0x7b5f01f8, 0x3401252b, 0x25f833fe, 0xa1fe782e, 0x9702ccfe, 0xbf01c6f9, 0x026369f3, 0x2174feea, 0x19033e1c, + 0x110116fd, 0xfc211a40, 0xc6f2046c, 0x010000f9, 0x9d822600, 0xd1052c35, 0x8d001100, 0x0cae5640, 0x010c9901, 0x3a010c8e, 0x8228010c, 0x01280808, + 0x01013a01, 0x14010ea0, 0x020e240e, 0x0c0b0c0e, 0x140e0d7f, 0x100d0e0d, 0x140111a0, 0x02112411, 0x01020111, 0x1411007f, 0x10383e82, 0x7f020b13, + 0x0c040608, 0x0b0e0a0d, 0x02119408, 0x0a040505, 0x04000103, 0x29056d43, 0xc02f3912, 0xc0c0fdc0, 0x2d59d010, 0xd4102106, 0x2f06014f, 0xd0105d5d, + 0x872b1887, 0x5d01c47d, 0x5d30315d, 0x21220085, 0xde820121, 0x33352322, 0x22080582, 0x21012101, 0x2c062115, 0xe9fd29fe, 0x989880fe, 0x14028001, + 0xc3fdbd01, 0xd0fd3d02, 0x8afd7602, 0x85e57602, 0x8afd2206, 0x24d383e5, 0x05000029, 0x08d3824b, 0x8e001749, 0x05104f40, 0x13041104, 0x03120302, + 0x0c0d1112, 0x080d0809, 0x0e07060f, 0x0d510e07, 0x300d2001, 0x030d400d, 0x030c150d, 0x085e0704, 0x3f082f01, 0x03084f08, 0x05090008, 0x137f0602, + 0x080c0f10, 0x14030407, 0x82169101, 0x200e253b, 0x0b0d010d, 0xde28cc82, 0xcddedd5d, 0xdec0fd3f, 0x01230682, 0x82c1c02f, 0xc0c22ad5, 0x5d5dddce, + 0x10c0d0c0, 0x230783cc, 0x04877d10, 0x20052044, 0x20ee8201, 0x210c8710, 0xc6823031, 0x07153723, 0x25038215, 0x07352111, 0x03833735, 0x11211128, + 0xfe4b0521, 0x0082d72f, 0x8480fe21, 0x052f2905, 0xbab10422, 0x9683dc83, 0xfe220382, 0x0986bf57, 0xa4017a08, 0x05002001, 0x6afe1400, 0xb606ec08, + 0x35001000, 0x51004300, 0xa4005b00, 0x48325840, 0x3a4c034a, 0x282d0128, 0x2f240326, 0x11414430, 0x30112001, 0x3c110211, 0x05073c04, 0x3c0b0a08, + 0x525d0036, 0x4e172422, 0x4c571d4c, 0x2a242b2a, 0x2b2f2b1f, 0x32482b02, 0x032d282f, 0x5020224e, 0x52172015, 0x19595415, 0x400b3c15, 0x0440380d, + 0x0a121502, 0x2f000805, 0xd03f3333, 0x2cea8232, 0x10393912, 0x11deddd0, 0x10cd3939, 0x2e0582cd, 0xc0cdcd3f, 0xcd5dddcd, 0x32c62f01, 0x82cddccd, + 0x3502821e, 0xdeddd610, 0xcd32dedd, 0x10391132, 0xdd5d5dd4, 0x171132c4, 0x03825d39, 0x1033fb82, 0x03272221, 0x36210706, 0x21121337, 0x01161732, + 0x82060710, 0x05944e12, 0x33363435, 0x37361732, 0x37363712, 0x36270706, 0x17253637, 0x82160706, 0x49342024, 0x333807ec, 0x01363732, 0x27262710, + 0x03060706, 0x33160702, 0x23262520, 0x14150622, 0x03091882, 0xb5feec08, 0x0c4b426c, 0x16adfe25, 0x01498324, 0x635e9170, 0xc7db68fd, 0xbea8fcfe, + 0x3695d87d, 0x504d6714, 0x43172435, 0xa15c3a31, 0xe7c613b0, 0x326c0167, 0x91de6a42, 0x75a901b1, 0x1b182147, 0x213f4022, 0x27e6fc18, 0x443c8433, + 0x54485f17, 0x4901988f, 0x403a5ffc, 0x4767382c, 0xfe33011c, 0xa0fe49cd, 0x62254639, 0x3d013602, 0xb001544f, 0xe6fe73fe, 0x26658b8b, 0x216a4e2d, + 0x4d0173c3, 0x146db798, 0x10593c4c, 0x421c786b, 0xa3850a85, 0x55e684fc, 0x4049543d, 0x023e5353, 0x7905018e, 0xca570a9e, 0xfe69fe44, 0x9d6a93ca, + 0x642d3e27, 0x02000047, 0x59fe0a00, 0x1b062a05, 0x30002500, 0x31406200, 0x17171c1c, 0x181b1b18, 0x1d191a18, 0x83201316, 0x83130d2c, 0x2c072f04, + 0x1d2f2600, 0x1716041c, 0x0022982a, 0x1c19181b, 0x0e121917, 0x0b0d9811, 0x333f001b, 0xd63f32ed, 0xcddd10cd, 0x3911ed3f, 0x2805314a, 0x39dcdecd, + 0x10ccfd39, 0x281082fd, 0x1933cddc, 0x112f332f, 0x29048233, 0x14013031, 0x13070607, 0x06821516, 0x22238e08, 0x16333527, 0x34353233, 0x27030327, + 0x13012107, 0x35260337, 0x17322110, 0x27340716, 0x15222326, 0x36171714, 0x30422a05, 0x9c2c9890, 0x5f62bc7a, 0x665c5d0a, 0x85ff511c, 0x01e2fe69, + 0x8594bc77, 0x96a50124, 0x18d0695e, 0x1865331c, 0xf3047f35, 0xc2658a9e, 0x32a4c9fd, 0x134052ac, 0x288c1bb2, 0xfe200164, 0x02c5deac, 0xc1c6fea4, + 0x5581dc01, 0x4f483e01, 0x2e27369e, 0xac4e3e8c, 0x000400b1, 0x05000014, 0x00d105d6, 0x0024001d, 0x08ff822b, 0x3d407046, 0x28012c39, 0x2a2c012c, + 0x011e3927, 0x1a7d251e, 0x191c171d, 0x321a0116, 0x2e062429, 0x0a0e087f, 0x06080c10, 0x01092e91, 0x0f1c292d, 0x020c1f0c, 0x280d180c, 0x23101624, + 0x08031191, 0x3f3f0012, 0xc0c0ddfd, 0x5d200283, 0xde2f0684, 0xc02f01ed, 0x10c0dec0, 0xc0c0c0fd, 0x8232dc10, 0xc0dc2500, 0x5d32ed10, 0x5d2a0882, + 0x0130315d, 0x06070623, 0x62442321, 0x05b34705, 0x17202908, 0x15331716, 0x07141523, 0x27262533, 0x15232326, 0x21273405, 0x07362115, 0x32331521, + 0x2468d605, 0xdcfeb346, 0xaa80feef, 0x25080082, 0x06017802, 0x57238a96, 0xfd4f044b, 0x49221cf5, 0xc00142c4, 0x0141fe01, 0xfe3504bc, 0x03d76e75, + 0xb2466c49, 0x06821bfe, 0x6c522008, 0x5a625e01, 0x240c6ca2, 0x0e1dbe22, 0x0b81481d, 0x8519520a, 0x0003004c, 0x050000f9, 0x822a05f7, 0x00073d09, + 0x4025000b, 0x0b000411, 0x05010a0d, 0x050bd609, 0x0701d603, 0x2f0005d6, 0x10eddefd, 0x1023ca85, 0x18c0c0d6, 0x20088356, 0x26b78221, 0xfbf70521, + 0x87fe0402, 0x1e042503, 0xe4fc0c01, 0xe6220382, 0x58820c01, 0xbe005f08, 0xb80538ff, 0x17009906, 0x22001e00, 0x2f002b00, 0x45407600, 0x1b131615, + 0x1f27040d, 0x2c6f070a, 0x2e2c2c01, 0x18007d23, 0x01137f7d, 0x133f132f, 0x13bf13af, 0x002f1304, 0x000200af, 0x7f2e2231, 0x08010800, 0x1f1b1516, + 0x2e2e2791, 0x91211a2f, 0x2803090b, 0x0806912f, 0xce3f0012, 0x038332ed, 0x2f391127, 0x3932ed33, 0x05c34f39, 0xd45dd627, 0x10ed715d, 0x241582ed, + 0xc0c0c05d, 0x220382dd, 0x42393911, 0x05230577, 0x82352315, 0x333524b3, 0x82171615, 0x14152f01, 0x01041507, 0x36112734, 0x11053637, 0x0a821123, + 0x0c882620, 0xb805ac08, 0xf0fe9ea3, 0x0105feae, 0x3b66aefb, 0xda294fd5, 0x14fe3d01, 0x10144165, 0x017dedfe, 0x2c1e79ee, 0xfe162885, 0xc8017d8f, + 0x057579d5, 0xd105c8c8, 0x0803c9c8, 0x5e48891f, 0x3f0860df, 0x1d6a3b01, 0x2e15e2fe, 0x3b017825, 0x49fec5fe, 0x03092384, 0x4a1094fe, 0x73018729, + 0x01008dfe, 0x6affab00, 0x2e041c04, 0x68002f00, 0x2e2b3a40, 0x17140028, 0x04201911, 0x2807071d, 0x0022e511, 0x09e52831, 0x1f202219, 0x02232f23, + 0x172e2b23, 0x260f0414, 0x201d1ee7, 0x0a000709, 0x0a200a10, 0xe70f0a03, 0x16070405, 0xcd333f00, 0x825dc4fd, 0x220782ec, 0x83391711, 0x2f01270a, + 0xd610edc4, 0x1482edc4, 0x1123fe82, 0x83393912, 0x05014103, 0x23150727, 0x35272635, 0x25fd8233, 0x34353233, 0x01832627, 0x37343528, 0x33353736, + 0xd44e1615, 0x14152305, 0x01831617, 0x1c046308, 0x928d5c83, 0x431c9cd7, 0xae767445, 0x413c122a, 0x5d81fd82, 0x87ba9291, 0xacb0971a, 0x4540142d, + 0x2601e989, 0x133e5992, 0x48037880, 0x2f1c2ff8, 0x0813284e, 0x431b0a0d, 0x415a88d6, 0x066c7212, 0x4d68ee3c, 0x0d09162b, 0x003c1d0b, 0x6700ffff, + 0x660659fe, 0x2602f005, 0x00003200, 0x4b020701, 0x3d4ae905, 0x06272207, 0x05376900, 0x59fe5826, 0x86042605, 0x52202382, 0x46202386, 0x67242390, + 0x6606e1ff, 0x09f3e718, 0x00560224, 0x5b69018f, 0x28292105, 0xff254788, 0x062605dd, 0x2247888c, 0x8637054a, 0x83238947, 0x8a902047, 0x844e2047, + 0x40263b47, 0x5002031c, 0x02030128, 0x28102800, 0x28802850, 0x28c02890, 0x000728d0, 0x5d832428, 0x65355d21, 0xdd220911, 0x6388e805, 0x4e020637, + 0x240000e7, 0x280203b2, 0x40c0ffb8, 0x37161316, 0x28202800, 0x20428230, 0x20448260, 0x643e8706, 0x3f2005a7, 0x4f20c38e, 0x1a227b84, 0x7b881040, + 0x7f236c83, 0x825d0128, 0x8200202f, 0xffff2373, 0xd38c97ff, 0x4f020622, 0x0c216f82, 0x84a783b7, 0x35352498, 0x8300ffff, 0x8a7020d3, 0x005c22d3, + 0x22f7828f, 0x9b17401d, 0x203782ce, 0x225b8258, 0x41520768, 0x0622062f, 0xcbaa5002, 0x200f8f41, 0x8f738457, 0x20618399, 0x26998426, 0x01000052, + 0x93510206, 0x59fe21bd, 0x2709d941, 0xd6002700, 0x75018f00, 0x32082942, 0x02164021, 0x28012850, 0x2e2d0003, 0x02250006, 0x4101287f, 0x01680893, + 0xfe582209, 0x09f94159, 0x00260024, 0x6b42e7d6, 0x65462005, 0x3c860649, 0xcd693986, 0x21c18205, 0x9b837207, 0x25820220, 0x00070138, 0x018d008d, + 0x40180075, 0x38500210, 0x38100201, 0x00023840, 0xfd413838, 0x67002005, 0xdd28065f, 0x8c068f05, 0x47022602, 0x0021cd83, 0x26cd828d, 0x020c4011, + 0x8b703840, 0x0591412b, 0x43205b8c, 0x002bd383, 0x020b4012, 0x02013750, 0x83373700, 0x08b56756, 0x4320558d, 0x0a215582, 0x912488b6, 0x0afb424d, + 0x423a3b21, 0x9b890bfb, 0x42020721, 0x238909fb, 0x0721f184, 0x85bf82c7, 0x89d720f1, 0x82432095, 0x36432195, 0x52209590, 0xd720eb88, 0x20379582, + 0xb84302b1, 0x1440c0ff, 0x00371811, 0x30432043, 0xdf434043, 0x85000543, 0x2b5d2238, 0x05ef4335, 0x05720723, 0x436387f0, 0x38210aef, 0x25ab8839, + 0x8f0559fe, 0x5b869c05, 0x23820720, 0x8907ef43, 0x82a92023, 0x05d62723, 0x002602d1, 0xcb410038, 0x00c82905, 0xb60a0000, 0x15140001, 0xa1204787, + 0x09222382, 0x23826304, 0x23865820, 0x23867820, 0x091a1923, 0x055b4416, 0xe1ffa926, 0x0108d605, 0x56304788, 0x75016800, 0x00b90d00, 0xb4f6ff01, + 0x11071617, 0x00202682, 0xa120b782, 0x09222782, 0x4b888c06, 0x66054a22, 0x27844b82, 0x1cb4fb25, 0x8600091b, 0x214f8227, 0x4f830807, 0x83480221, + 0x8d002173, 0x122c4f84, 0x50010b40, 0x00010122, 0x1f072222, 0x5d212983, 0x21538535, 0x53833b06, 0x42490221, 0x0220052f, 0x2721c185, 0x824e8427, + 0x204d8f21, 0x204d8943, 0x224d8221, 0x84072121, 0x204d9477, 0x224d8643, 0x45082626, 0x4d8e0647, 0xeb8c0220, 0x85242521, 0x2197904b, 0xeb850207, + 0x01b60a25, 0x8c292b00, 0xbd07234b, 0xe7862602, 0x9982d720, 0x83006b21, 0x202d2123, 0x47884884, 0x23825220, 0xd720df85, 0x32219186, 0x25458825, + 0x080759fe, 0x45870a07, 0x054b0222, 0x2107c541, 0x45882322, 0x0659fe25, 0x869c053b, 0x82072045, 0x07c54123, 0x87282721, 0x00093247, 0x08dc0500, + 0x00260201, 0x0100003c, 0x00430007, 0x9199181e, 0x0104210d, 0x26087541, 0x0564fe1e, 0x828c0617, 0x825c202b, 0x0006242b, 0x4100ce43, 0x092307ef, + 0x41020609, 0x092606c7, 0xdc0559fe, 0x5187d105, 0x82217582, 0x059d4100, 0x84090a21, 0x20df824c, 0x2223821e, 0x86630420, 0x21998249, 0x2382f906, + 0x0b401030, 0x0a4f0a01, 0x0a7f0a6f, 0x5d040a9f, 0x29823511, 0x02219f8e, 0x269f8456, 0x0001b60a, 0x83030d0e, 0x8b4d8472, 0x02072497, 0x8628054a, + 0x0c0d2171, 0x47879684, 0x88c70721, 0x89d720e7, 0x011624e7, 0x18160001, 0x201117a0, 0x24e78852, 0x0000ced7, 0x2171820a, 0x4d840815, 0x00030023, + 0x31bf825a, 0x0014066f, 0x0028001b, 0x4068002c, 0x4a0a4a40, 0xda187122, 0x2b2c1df7, 0x2c1c2aa7, 0x002b2c2b, 0x1d191408, 0x0901db18, 0x83232e3d, + 0x102dbb08, 0xf610edf6, 0x17ed3232, 0x112f2f32, 0x2f393912, 0xed3f002f, 0x822fed3f, 0x644e1804, 0x06957d0a, 0x0ab35618, 0x83213521, 0x33152501, + 0x11012315, 0x0aa85618, 0x16820120, 0xee045808, 0xa25d98fe, 0x53f6cd6a, 0x61c24448, 0xfe448165, 0x014601ba, 0xfe818168, 0x23542698, 0x7e728e8e, + 0x60016e31, 0xd5032bfc, 0x01484c75, 0x8f0c013c, 0x534b4fdd, 0xcf9f212b, 0xfccf7070, 0x10270261, 0xa59db10e, 0x41fd2595, 0xfbffffcf, 0xff0005a5, + 0x0052061c, 0x7cd70007, 0x290805e1, 0x6e00a900, 0xc7040305, 0x2f002300, 0x12409a00, 0x116c0b6c, 0x23601d60, 0x117e0b7e, 0x23701d70, 0xffb80908, + 0x1009b3dc, 0x07821337, 0x821f4021, 0x24012108, 0x1b200482, 0x6c320483, 0x64086c02, 0x7c1a6414, 0x71087c02, 0x081a7114, 0x2b82b800, 0x37100d23, + 0x2107820a, 0x08822f40, 0x82241221, 0x831c2004, 0xb12d3104, 0x2302080b, 0x11141a1d, 0x05051708, 0x2417b127, 0x0e2e1089, 0xb12a2020, 0x33ed2f0e, + 0x3917122f, 0x088700ed, 0x2b303122, 0x5d210082, 0x08058501, 0x06270724, 0x26222306, 0x37270727, 0x34352626, 0x37273736, 0x33363617, 0x37171632, + 0x16160717, 0x07061415, 0x744e3427, 0x16410805, 0x05363233, 0x2ad0a003, 0x5a353859, 0xd2a3d12c, 0x1b171617, 0x29d19cd0, 0x5638365d, 0xd1a2d228, + 0x1718151c, 0x464662b7, 0x46466363, 0xa1110162, 0x171818cf, 0xd0a3d119, 0x3738552a, 0x9dd22e5b, 0x083082d1, 0xa2d01567, 0x315931d0, 0xbb275c37, + 0x47626247, 0x00636345, 0x5f000200, 0x0f0a4f01, 0x0c00f005, 0xc2003600, 0x0b287640, 0x46020b48, 0x09170109, 0x09370927, 0x01056d03, 0x3901055a, + 0x026d0105, 0x01025a01, 0x33010239, 0x210d2f35, 0x23131b1f, 0x012f0f83, 0x0d831b2f, 0x03040a03, 0x84000b05, 0x02010200, 0x07840509, 0x05fe5e29, + 0x33354608, 0x0f272919, 0x022a1f2a, 0x211f2a2a, 0x27a72d11, 0x090b0204, 0x14001113, 0x14021410, 0x11a71914, 0x04030a07, 0x07010904, 0x00030905, + 0xc0dd333f, 0xc02f3912, 0xedd41033, 0x125d2f32, 0x32c01039, 0x3911ed3f, 0x820c8439, 0x2f013307, 0xfddec45d, 0xed5ddc32, 0x39171233, 0x5ddced10, + 0xf24ac4fd, 0x06db5f08, 0x5d5d0124, 0x5c18015d, 0x01270b42, 0x23060714, 0x4b112720, 0x24210c07, 0x05d95911, 0x26231124, 0x044b2223, 0x0a042306, + 0x5c18fe0f, 0x26080d6c, 0x9dc96bfa, 0xc4f0fee1, 0x499f8321, 0x1333d04f, 0xfe9b4e4a, 0xd89dc8d3, 0xb41fb3f3, 0x1736ced2, 0x01a4524d, 0x186e0116, + 0x080d935c, 0xcc01fd3f, 0x015a5067, 0x11255c28, 0x0817305d, 0x4f210c10, 0x65c40001, 0xe4fe5050, 0x19345c7c, 0x220e100a, 0x01000048, 0x1602e9ff, + 0xc502c105, 0x11000300, 0x010500b5, 0x00010304, 0x1001cd2f, 0x05d16bc6, 0x05213534, 0x0528fac1, 0xaf1602d8, 0x7e020100, 0x2d0393fd, 0x2b824807, + 0x02b30d3a, 0x00020300, 0x2f012f2f, 0x013031cd, 0x02113311, 0x93fdaf7e, 0x4bf6b509, 0x05212785, 0x295382c2, 0xb6130005, 0x02050701, 0x2a820503, + 0x2b83cd20, 0x15305584, 0x11231121, 0x6bfdc205, 0xafc502af, 0x32057dfb, 0x5b828784, 0x33872c20, 0x00030625, 0x82000304, 0x21338888, 0x34823521, + 0xfd7d0226, 0xaf43036c, 0xfa218c82, 0x213382ce, 0xbb827e02, 0x8f82c220, 0x05216783, 0x84968207, 0x82cd2092, 0x82678493, 0x15212195, 0x02219782, + 0x23278295, 0xaf7dfb32, 0x02236784, 0x862c0316, 0x06012433, 0x82050300, 0x892f2036, 0x2667839b, 0xfc2c0333, 0x839402bd, 0x83042167, 0x00373382, + 0x03dbff25, 0x005305db, 0x401c001e, 0x110a090b, 0x1c1e1e19, 0x82110a16, 0xcedd24a0, 0x8232cd2f, 0x05ac546f, 0x1732333a, 0x16161716, 0x35231515, + 0x26272634, 0x14112323, 0x22230606, 0x36343526, 0x85081a82, 0xac26e601, 0x2d3c4f37, 0x38396334, 0x401c5949, 0x7f6d5c9c, 0x604e7b98, 0x140e5305, + 0x66992a39, 0x5f442b67, 0xbdfc2019, 0x7b518779, 0x2e8f6964, 0x00020000, 0x057fff67, 0x005206e3, 0x002b0024, 0x073a4066, 0x022b172b, 0x28172807, + 0x25070f02, 0x0412238c, 0x0f2a1c1c, 0x02211f21, 0x00167e21, 0x0b7d2a2d, 0x21171216, 0x1e232392, 0x10921c26, 0x2504120f, 0x931e1d20, 0x04000607, + 0x333f0013, 0x32ed33cd, 0x07823232, 0x1132ed30, 0xceed2f39, 0x2f013911, 0xc4d610ed, 0x0e825ded, 0xcec0c027, 0x31c0c0fd, 0x06465b30, 0x2420c182, + 0x2105375a, 0xba4e3525, 0x11b50805, 0x26272623, 0x32171127, 0x11231137, 0x06110121, 0x10150607, 0xa861e305, 0xfeae7982, 0xd9d7bcc9, 0xae3701ba, + 0xa5836670, 0x8747732b, 0x5f481d92, 0xfda10161, 0x884d664e, 0x1e272655, 0x17656407, 0x6c01ceb5, 0xb6d45c01, 0x0565681a, 0xfe501a14, 0x4a2756a3, + 0x011cfc04, 0x011a010e, 0x03d9fd19, 0x81491db7, 0x0079feed, 0x18000300, 0x1e060000, 0x1700d105, 0x1e001a00, 0x6840be00, 0x17b717a7, 0xb806a802, + 0x070b0206, 0x0a090605, 0x0e050e0d, 0x1a1d1e03, 0x19040e19, 0x0e057f04, 0x050e0514, 0x10161219, 0x00171413, 0x1c18000f, 0x1901021b, 0x01012801, + 0x0806820f, 0x0f007f2a, 0x700f0014, 0x19000100, 0x0d101a19, 0x131d9318, 0x011cc00a, 0x06171e1c, 0x1b930302, 0x1e1e0914, 0x030e0f05, 0x05040001, + 0x2607b357, 0xc02f3912, 0x82fdc0c0, 0xde102203, 0x2509865d, 0x2f19012f, 0xad555ddd, 0x87102207, 0x850082c4, 0xd0012505, 0xdd1019c0, 0x10201985, + 0x1029168a, 0x3031c0d0, 0x21215d5d, 0x28018203, 0x33352313, 0x21352337, 0x08018213, 0x1723153e, 0x01231533, 0x27010727, 0x1e060721, 0xfd6773fe, + 0x7dfe67d8, 0x37c46f6f, 0xd74f01fb, 0x01d7ba01, 0xc437fb4f, 0x45acfd6f, 0x330a0144, 0x0133dbfe, 0x01d3fe2d, 0xe595e52d, 0xbbfd4502, 0x5f260683, + 0x86fec8c8, 0xd4829595, 0xff0eb208, 0x057e05e5, 0x002d00ec, 0x56a740f0, 0x2c820124, 0x70022c92, 0x2c61012c, 0x012c5201, 0x2c202c10, 0x62285202, + 0x03288228, 0x22012843, 0x02283228, 0x2c012814, 0x2d250128, 0x6d105d27, 0x03108d10, 0x2d01104c, 0x02103d10, 0x8d01101b, 0x02149d14, 0x6e01147f, + 0x145d0114, 0x2f141f01, 0x14100214, 0x077d170d, 0x0f152f25, 0x2f1f7d01, 0x4f0d3f0d, 0x740d030d, 0x1f61011f, 0x1e211f01, 0x20171025, 0x03178017, + 0x17b017a0, 0x28931702, 0x1401142f, 0x01077b2c, 0x0d060907, 0x012f011f, 0xaf03018f, 0x0201bf01, 0x2c109301, 0x931b032c, 0x93030421, 0x086e6209, + 0x5dfdc02b, 0x11cec071, 0xdd105d39, 0x2e0b885d, 0x5d2f015d, 0xc0ddedc4, 0xedc4d410, 0x57393911, 0x05820513, 0x11c0dd23, 0x080e8a12, 0x5d303124, + 0x21062101, 0x11333720, 0x27202104, 0x35232726, 0x36373633, 0x21352137, 0x23262736, 0x11230522, 0xd8522124, 0x06550806, 0x21070607, 0x56fc7e05, + 0x011f0101, 0xfe2ae145, 0xfec1fefb, 0x0ce4afeb, 0x8c427f3c, 0xaffdbc48, 0x6b02a003, 0xfee3664b, 0x030129fc, 0x09011801, 0x4501e2ae, 0x4b8a4493, + 0x015e02b2, 0xfe4d9991, 0x6c5437d7, 0x3c52e5ec, 0x59e5381f, 0x01451b26, 0x6e563225, 0x210f82e8, 0xa3433621, 0x6e370806, 0x22005206, 0x4e002d00, + 0x09112840, 0x07148c24, 0x182a1d1d, 0x00010000, 0x0d7d2a2f, 0x19191118, 0x1491241c, 0x00041113, 0x1d222209, 0x06079123, 0x3f001309, 0x5dedcd33, + 0xcd2105c4, 0x28088533, 0x10ed2f01, 0x12c05dd6, 0x05305839, 0x25303122, 0x0621b983, 0x158d4307, 0xee831120, 0x11053322, 0x69082384, 0x16171015, + 0x90466e05, 0x0f0d3f4a, 0xc3b9feae, 0x01c3cfd4, 0x475bae4c, 0xb92c7c5d, 0x2a888696, 0xd7fd281b, 0x46861c28, 0x63508b3f, 0x0b153520, 0x646b0202, + 0x01ccbb08, 0xd3650175, 0x6c6409c6, 0x3c1a140a, 0x1f9e97fe, 0x6b1944fc, 0x03bd1821, 0x2f0a07bd, 0xfea77783, 0x00487dff, 0x6d00ffff, 0x660559fe, + 0x2602ec05, 0xd5823600, 0x8e030724, 0x3d4a5701, 0x34362106, 0x26070f4d, 0x0459fe5f, 0x8282047a, 0x85562023, 0xf3002123, 0x33212386, 0x20238731, + 0x22478229, 0x82d1054b, 0x85372023, 0x40012123, 0x0a212386, 0x07a94a08, 0x59fe2b26, 0xa4057803, 0x63822382, 0x03060124, 0x414b628e, 0xb4ab2506, + 0x1b061c1e, 0x2606414b, 0x02000098, 0x821c08ee, 0x834c2025, 0x8d002e49, 0x9001b3fe, 0x0a401200, 0x02060b02, 0x3fd71865, 0xde102407, 0x82010034, + 0x5952081b, 0x8dff3c02, 0x2e000300, 0x091003b5, 0xb8013710, 0x1240f0ff, 0x0f371511, 0x05160100, 0x03028000, 0x370c0940, 0x2f000203, 0x18012b2f, + 0x31cd1a2f, 0x5d5e5f30, 0x03052b2b, 0x3c021323, 0x738cd8d7, 0x3401ccfe, 0xbe00ffff, 0x0c060000, 0x26020108, 0x7584f001, 0x5000432d, 0x0a007501, + 0x0b0001b6, 0x4d09050a, 0xaa2a05f3, 0x19050000, 0x26028c06, 0x23821002, 0x43000624, 0x218b00d8, 0xfd020029, 0x0252fe71, 0x82baff8f, 0x0722088f, + 0x0f402000, 0x02060307, 0x80064005, 0x50024001, 0x00020202, 0x1acd5d2f, 0x01cd1ade, 0x332f332f, 0xcd183031, 0x022507db, 0x05e2fa8f, 0x2403831e, + 0x98fe78be, 0x21fe8278, 0x478281fd, 0x47b07f20, 0x38557f20, 0x08478607, 0x67000321, 0xd10a64fe, 0x1300f005, 0x2f002700, 0x28404e00, 0x2d2e2e2f, + 0x292c282d, 0x7d142a29, 0x82002c2b, 0x2a0a3401, 0x280a7d1e, 0x29312d2d, 0x1b2c0f2e, 0x040f9219, 0x43059223, 0x3f2305c8, 0x8211333f, 0x2f012b01, + 0x39122fed, 0x112f2f39, 0x0f82ed33, 0x11200a82, 0x9908bf84, 0x06021401, 0x24222304, 0x34350226, 0x33243612, 0x12160432, 0x022e3405, 0x020e2223, + 0x021e1415, 0x023e3233, 0x01211305, 0x21011321, 0xb45fda05, 0xa3a4fdfe, 0x5fb4fdfe, 0x0201b460, 0x0301a2a3, 0x71fe60b5, 0x396b5432, 0x33536c39, + 0x3c6d5230, 0x30516d3c, 0x01ea4304, 0xfed6fd59, 0x6dfea08d, 0xe8025b01, 0xcbe2feb1, 0x01cb6d6d, 0x01b3b11e, 0x6d6dc91f, 0xb2e1fec9, 0x3575bd87, + 0x88bc7635, 0x3778bb84, 0xe2bc7837, 0x01fae002, 0x63049c01, 0x58000300, 0xd20964fe, 0xef948604, 0xef888320, 0xef8a8320, 0x100f9829, 0x16059823, + 0x82ed3f00, 0x20ef9f01, 0x20db820e, 0x20ed822e, 0x21db823e, 0xeb97021e, 0xea042508, 0x8cd9964e, 0x4e96da8b, 0x89d99750, 0x4e96d98c, 0x39208bfe, + 0x4c2a2d4e, 0x371d233b, 0x4e333350, 0x1a041b35, 0x312ae78c, 0x4f98de8f, 0x8fde984f, 0x0783df8f, 0x6591df31, 0x1e215185, 0x5b69874e, 0x27275382, + 0x8a518253, 0xff6737e3, 0x08f707e1, 0x004e0093, 0x0075005b, 0x5b2d4057, 0xb066745a, 0x01825a67, 0x7d330a3e, 0x0a7d1e47, 0x6c6cca63, 0x5575ca74, + 0x5a595454, 0x7575675a, 0x42921b36, 0x282e040f, 0x2806d841, 0x333f3232, 0x2f3332ed, 0x3e028233, 0x10332f39, 0xed2f32ed, 0x2fed2f01, 0x393912ed, + 0xed102f2f, 0x31cd10c4, 0x030e2530, 0x41262223, 0x362805da, 0x021e3233, 0x2e231117, 0x06201282, 0x3207d941, 0x031e3337, 0x023e3233, 0x23263435, + 0x07020e22, 0x823e1123, 0x1616270f, 0x02141512, 0x3b820606, 0x82141321, 0x36352f15, 0x35233536, 0x2e223733, 0x06222304, 0x23832307, 0x041e3808, + 0x04153333, 0x564b232a, 0xe0893d65, 0x8343569e, 0x4b2b7dc0, 0x25264646, 0x2c272514, 0x2a6b661b, 0x323d684a, 0x1c363f4b, 0x3f361a26, 0x673e314e, + 0x666b2a4a, 0x82272c1b, 0x2663081f, 0x2b4b4646, 0x4282c07f, 0x89e09e56, 0x1530b07a, 0x2f374c2f, 0xe1d3692e, 0x3e4d6240, 0x39253d3a, 0x08db0b3b, + 0x46765a38, 0x3b445339, 0x87344d41, 0x1f2d1c59, 0x01c05f10, 0x01b6c423, 0x056ac920, 0xfe090f09, 0x10170fcf, 0x7ff7f908, 0x203a7aba, 0x27274736, + 0x3a203647, 0xf77fba7a, 0x171008f9, 0x8231010f, 0x05450822, 0xdffec668, 0xddfec4ba, 0x063f5fc0, 0x394a2978, 0x06600223, 0x1bae2f28, 0x1a1f1a11, + 0x53453511, 0x1229527d, 0x121b201b, 0x030000cc, 0xe2ff5f00, 0x1c07d006, 0x52004500, 0x57006c00, 0x5d6b2d40, 0x51525eb0, 0x0801825e, 0x84361525, + 0x15840526, 0x6363ca5a, 0x4c6cca6b, 0x51504b4b, 0x6c6c5e51, 0x10983308, 0x0040102b, 0x1621983b, 0x41ed3f00, 0xcd261e91, 0x31c4ed10, 0x6c412530, + 0x07063607, 0x36361123, 0x021e3233, 0x020e1415, 0x27262223, 0x23060623, 0x07984222, 0x11171623, 0x060c4f23, 0x24058343, 0x031e3337, 0x1d8c4103, + 0x30b23c08, 0x54132a44, 0x28412e52, 0x476b390c, 0x3872ad74, 0x89c37b39, 0x06319e6a, 0x896a9533, 0x43397bc3, 0x4766a87a, 0x280c396b, 0x55512e41, + 0x30442a13, 0x38414c31, 0x381c111c, 0x416b4c41, 0xe0220783, 0x83416141, 0x2eda3a15, 0xae4f7e57, 0x01181ba3, 0x4f141108, 0x8b8bda97, 0x4d4f96da, + 0x4f4c3a39, 0x370b8396, 0x11144f97, 0x1b18f8fe, 0x7e4faea3, 0x3b212e57, 0x4e2d2d4e, 0x4704213b, 0x3d1c7641, 0x05960001, 0x06400400, 0x0019004b, + 0x180c401b, 0x070bb00a, 0x181010ca, 0x00190bca, 0xd242332f, 0x31c42306, 0x79420130, 0xb9032110, 0x21172b42, 0xde410505, 0x02380811, 0xe1ff6700, + 0xf005a006, 0x4c003e00, 0x29404a00, 0x15087f47, 0x08030525, 0x3f80121e, 0x3f3f3508, 0x4e030835, 0x422d7d00, 0x0d0d4a92, 0x32913a05, 0x28920504, + 0x22931813, 0x3e064245, 0x2f3912ed, 0x2f01ed39, 0x391712ed, 0x102f2f2f, 0x171132ed, 0x31ed1039, 0x1e140130, 0x44261702, 0x1532084c, 0x16070214, + 0x3e323332, 0x11333702, 0x22230606, 0x05832726, 0x41095c45, 0x0e2207d6, 0x71430502, 0x15c80805, 0x36171614, 0x2df60136, 0x445d8b5c, 0xa9845051, + 0x86ab595a, 0x0e555e52, 0x24150e1b, 0x09132121, 0x49396136, 0x92434d9c, 0xdcfeb84e, 0xb7626ccc, 0x12a20401, 0x0b060e1b, 0x78480a0c, 0x3c032f55, + 0x2e1f3f3a, 0x383d0f1e, 0xe802423c, 0x487eb170, 0x07015c07, 0x83d399b3, 0xce79313a, 0xe6feae9c, 0x0804026a, 0xe2fe080c, 0x1b18080a, 0xc6671a19, + 0xb4ba2001, 0x6cc91f01, 0xe4fe0304, 0x7d420203, 0x8c884fb6, 0x446d4d29, 0x4740bf83, 0x020000ce, 0xddff5800, 0x84043d05, 0x41003700, 0x29404a00, + 0x032e8538, 0x2e032b0e, 0x3d850007, 0x3d3d1d2e, 0x43032e1d, 0x3f168526, 0x33333aa7, 0x1b98212b, 0x11a72b10, 0x0ba70416, 0x41067c45, 0x06271a29, + 0x36323307, 0x41153337, 0xeb420816, 0x05645a07, 0x24056e46, 0x35262617, 0x06994534, 0x1714a908, 0x34353636, 0x05062223, 0x10363920, 0x09193c1e, + 0x7a404d44, 0x42793639, 0x4b9beb9f, 0x83d3944f, 0x0c0a150d, 0x41552f0d, 0x67421f26, 0x3c363148, 0x45458165, 0xfe3e6583, 0x27255746, 0x02282952, + 0x4cbb6a3d, 0x0cf30a0a, 0x17151414, 0x88db9b53, 0x559cdd88, 0x2a03fb03, 0x4f588155, 0x06375d80, 0x736eb045, 0x2c2e65a1, 0xb1839a62, 0x62892d56, + 0x000065b6, 0xff0f0002, 0x05b707e2, 0x002e00f0, 0x403a0039, 0x7d072f1e, 0x1b111b2a, 0x80270511, 0x057d3020, 0x2a91071b, 0x0c002f2f, 0x35131692, + 0x00040092, 0xed3fed3f, 0x4505705c, 0x2f08097e, 0x3132ed33, 0x04320130, 0x15151216, 0x33031e21, 0x33372432, 0x23030e11, 0x26262422, 0x35032e27, + 0x21373634, 0x14150615, 0x023e1716, 0x2e210324, 0x6e081982, 0xcd04020e, 0xc61201a3, 0x0ba1fb6f, 0x5c966f46, 0x761c01ae, 0x98925023, 0xfeb262a4, + 0x0f7acee3, 0x4174a261, 0x3c010e08, 0x1549421d, 0x0a01bf74, 0x09c602c1, 0x4e7d5a37, 0x37577a4e, 0xbe5bf005, 0x78c9dcfe, 0x2c5b8e63, 0xa1fe5b6a, + 0x11202f1e, 0xa2f8a756, 0x8d60370a, 0x2a4f265f, 0x3a40380d, 0xe1870b4f, 0xa2fd5aa2, 0x2e54784b, 0x86785530, 0x052308e7, 0x008604fa, 0x00320029, + 0x32194031, 0x13228401, 0x180a130a, 0x1f29842a, 0x32a70118, 0x1026a72d, 0x410f9804, 0x2f2405d9, 0xcd2f01ed, 0x85065d46, 0x162126de, 0x37323316, + 0x26d98236, 0x06070606, 0x87272023, 0x853320da, 0x373628da, 0x00202136, 0x46262511, 0x7608055a, 0xc8fcfa05, 0x71b5b808, 0x283f6a6c, 0x6a36733d, + 0xb5affe85, 0x794a11a1, 0x0a062f57, 0x3f3715e4, 0x01aa7824, 0x0112012a, 0x039afe14, 0x5734706a, 0x01042740, 0x298b85ef, 0xdffe3028, 0x160b2319, + 0x07f28698, 0x486b4829, 0x091f3b1d, 0x3a30302a, 0xa372af05, 0xfcfeebfe, 0x1a717255, 0xff3c5538, 0xfe0f00ff, 0x05b707a0, 0x032602f0, 0x0000009a, + 0x01b20307, 0x84000070, 0x83e82017, 0x201782e7, 0x2217849b, 0x84da00b3, 0xfe672417, 0x82660657, 0x0006222f, 0x2a0f8434, 0x0464fe5a, 0x028204ee, + 0x84540006, 0x0042260f, 0x05c50800, 0x200f82d1, 0x200f843a, 0x2254822d, 0x826304a9, 0x825a200f, 0x013a0847, 0xefffab00, 0xf005a505, 0x3f003a00, + 0x17352140, 0x081d7e30, 0x171d1d17, 0x24120308, 0x7d12257f, 0x94173500, 0x200f1818, 0x25042b92, 0x0005930f, 0x3f2fed2f, 0x2f3912ed, 0x284239ed, + 0x064a4405, 0x31391124, 0x02460130, 0x33113806, 0x3233031e, 0x2e343536, 0x3e352702, 0x26343503, 0x15062223, 0x43112111, 0x15200612, 0xaa082782, + 0x031e1507, 0x8d4ba505, 0x61357eca, 0x1e121e35, 0x5815221f, 0x71461f62, 0x304d3853, 0x6e605e15, 0x4482fe64, 0x92a0e492, 0x24458ed7, 0x452a4f3c, + 0x012f5574, 0x77b174c8, 0x0108093d, 0x0709061b, 0x34675e03, 0x02162f49, 0x2c1703f8, 0x55482e43, 0x09fc6878, 0xb8770104, 0x6336427e, 0x6642558a, + 0x0813374e, 0x79593a0e, 0xfbffff00, 0xff0d049a, 0x000b08b2, 0xfa0d0007, 0x00f701ce, 0xff670002, 0x05e905e5, 0x001800ec, 0x4029002d, 0x280f1415, + 0x7d1e127f, 0x03101305, 0x0a0f9219, 0x14912304, 0x3f001300, 0x333fed32, 0x842f3fed, 0x323224e7, 0x48053031, 0x35270d84, 0x35211121, 0x4a13030e, + 0x6e080a62, 0x032e1137, 0xe37eda02, 0xb46265ad, 0x613a9bfd, 0x01204753, 0x3081fe7f, 0x68685f5a, 0x3465935f, 0x52916d3f, 0x2e35422a, 0x38301716, + 0xbe631b41, 0xb3b51901, 0x71cf2501, 0x182c2214, 0x662ffa5f, 0x0e1f3123, 0x8347eb04, 0xb27671b8, 0x110a3c77, 0x4d030d16, 0x0a12180f, 0x00010000, + 0x0600001e, 0x00780414, 0x402f0016, 0x01160516, 0x82160400, 0x02300801, 0x02030d0e, 0x100a9811, 0x01040f02, 0x3f332f00, 0x2f01ed3f, 0x12332f33, + 0x2f2f3939, 0x11333311, 0x21303133, 0x01210121, 0x33033e13, 0x23171632, 0x0806c742, 0xfe64032d, 0x0152fe68, 0xa404017d, 0x73614e20, 0x06a0a643, + 0x242002f0, 0x1b1c2013, 0xfc63040e, 0x5de101fc, 0xa21c4778, 0x112f23a8, 0x83293b25, 0x4230087f, 0xee090000, 0x1a00ec05, 0x25404a00, 0x00011a0b, + 0x0208090a, 0x1a070304, 0x0707020a, 0x041a0a02, 0x06131405, 0x10941705, 0x05020804, 0x0a040703, 0x90828e83, 0x87333321, 0x82172092, 0x82948692, + 0x829a8797, 0x1321219b, 0x0629a08e, 0xfe340707, 0xfef5fe57, 0x080582fc, 0x91016f3d, 0x011201e5, 0xa405017f, 0x82634517, 0x05b3b053, 0x262102f7, + 0x03153529, 0x0536fcca, 0x04fffbd1, 0x02fffb01, 0x59885fb2, 0x25aea92a, 0x00574a31, 0x002d0001, 0x04a20800, 0x841c0078, 0x881c20ad, 0x851c20ad, + 0x861c20ad, 0x109822ad, 0x20ad8210, 0x26ada80f, 0x01210303, 0x82131321, 0x0d4e4102, 0xfe4d0636, 0xfee1e582, 0x01a7fe7d, 0x01f0c07a, 0x1670e43f, + 0x44735b44, 0x3e075541, 0x0916191f, 0x0bfdf502, 0xfafc6304, 0xfafc0603, 0x7e5acf01, 0xa8a22450, 0x200e2f23, 0x82002736, 0x02c833af, 0x054703d0, + 0x000900f0, 0x0100b40e, 0x00030601, 0xf654cd3f, 0x23200805, 0x01270711, 0x27070133, 0xc6d97402, 0x093b010d, 0xc50e3b01, 0x9001d002, 0xaa01122c, + 0x2c1256fe, 0x09233d8e, 0x89080308, 0x3762083d, 0x01230117, 0x33111737, 0x0ec57402, 0xfe09c5fe, 0xd9c60dc5, 0x122c6004, 0xaa0156fe, 0x90012c12, + 0x9e000200, 0xe4018703, 0x03001507, 0x15000700, 0x030400b7, 0x05070105, 0xd62f0003, 0x2f01cedd, 0x3132cd33, 0x23030130, 0x11210103, 0x34e40121, + 0x300132e0, 0x1a01e6fe, 0xe5fd1507, 0x72fc1b02, 0x41901a01, 0x0007032a, 0x00050106, 0xc62f0006, 0x13244188, 0x03133313, 0x9e244182, 0x1634e032, + 0x03233f83, 0x821b0287, 0x01743e41, 0x00ffff1a, 0x016f019e, 0x02fd04e4, 0x00ab0307, 0x00e8fd00, 0xfe100101, 0xff020459, 0x2d44828d, 0x0400b40f, + 0x00058004, 0x01cd1a2f, 0x8b82c42f, 0x07272135, 0x04331321, 0x72f7fe02, 0xfcfbfe72, 0x8659fefb, 0x82340186, 0x00e12b45, 0x04570200, 0x00060263, + 0x0a82001d, 0x01c00027, 0x04810309, 0x32d78423, 0x000b401a, 0x05060107, 0x010606d6, 0x2f0002d6, 0x432f33ed, 0xf4630528, 0x81032509, 0xc1023ffd, + 0x03210383, 0x06e86317, 0xa7000128, 0x01023d03, 0x43821406, 0x00b6112f, 0x020203cf, 0x3f000103, 0x2f012f33, 0x051541ed, 0x4a01022a, 0x14064ac6, + 0xd70229fd, 0xa7228182, 0x2d83c703, 0x0a208182, 0x01258182, 0xa0fea902, 0x29098304, 0xb5110003, 0x03004001, 0xc6850080, 0x31cd1a38, 0x11212130, + 0x01a90221, 0xfe9ffe61, 0x010000a0, 0xe8fe4102, 0x35828103, 0x00232b83, 0x8c010340, 0x2111352b, 0xfe810311, 0x01e8fec0, 0x03000018, 0x1efe7900, + 0x0206f306, 0x202f0982, 0x44002400, 0x1a002040, 0x0a191901, 0x820a0412, 0x24222d01, 0x010fef22, 0x0712070f, 0x07020119, 0x21240182, 0x2f002123, + 0x2805364f, 0x11cdd610, 0x5dc61039, 0x3f0f8701, 0x2f3911c6, 0x3132c633, 0x15232530, 0x26340133, 0x07062223, 0x36363315, 0x15163233, 0x06070614, + 0x4d080d83, 0x37363635, 0x03093636, 0xa3a3eb03, 0xacc73c01, 0x0838ac4d, 0x60579a2d, 0x262f337b, 0x428f3479, 0x382e2c75, 0xc3fc8ffe, 0x3d033d03, + 0x8f03a926, 0x1622a789, 0x58361ca3, 0x2a58455b, 0xf41e4624, 0x2d5026b4, 0x60fb7b2f, 0xf203f203, 0xeb820efc, 0xfe29003e, 0x054b05aa, 0x000b00d1, + 0x06114023, 0x01000380, 0x0108097f, 0x030a9108, 0x05069102, 0xed29ac82, 0x0132ed3f, 0xcdfdcd2f, 0x05757cde, 0x21113324, 0x03822311, 0x4b052138, + 0xfe932ffe, 0x2ffeb29f, 0xb1042205, 0x8dfd6cfc, 0xb1045601, 0x55832001, 0xeafe0a26, 0x63043e04, 0x852d5586, 0x84020003, 0x08010709, 0x020f0aa7, + 0x22558aa7, 0x7ccefdce, 0x558606cb, 0x0421353a, 0x749afe3e, 0xfe9bbffe, 0x0334049a, 0xfd88fd6f, 0x031601f3, 0x0100f46f, 0x0721a983, 0x3ca982c1, + 0x4030000f, 0x03000018, 0x0b0d7f02, 0x0607800a, 0x0c01037f, 0x030e0491, 0x0b910206, 0x22b08309, 0x83333f32, 0xddfd28b2, 0xedce2fed, 0x422f3911, + 0x64830857, 0xba872120, 0x01340223, 0x21be8280, 0xbf879afb, 0xfbb40423, 0x21c38e4c, 0xc3825006, 0x84206f88, 0x85236f82, 0x82840607, 0x04a7266f, + 0x02060f0e, 0x826fa5a7, 0xfe0c26d4, 0x019c01cc, 0x21d88268, 0xd98261fc, 0xd9830220, 0xfc6c0323, 0x24dd8994, 0x04aafebe, 0x28dd82f0, 0x40210009, + 0x060b0010, 0x27df8280, 0x08910107, 0x07910203, 0x21068641, 0xd2822f01, 0x84ce1021, 0x062f41ce, 0xfdf00423, 0x22c4824e, 0x413204b2, 0x42820781, + 0x00010027, 0x04eafeaa, 0x87bb8236, 0x03852a4d, 0x01078402, 0x020f0898, 0x224d9ba7, 0x82dcfd36, 0x039b26a2, 0xfd69038c, 0x829b838e, 0x01002742, + 0x59fec6ff, 0x0a829002, 0x00117208, 0x110f4030, 0x010e9f10, 0x0e200e00, 0x130e0e02, 0x01be0e05, 0x01100063, 0x010a0013, 0x01030061, 0xed3f0020, + 0x2f01ed3f, 0x5d2f3912, 0x3133335d, 0x06140530, 0x11272223, 0x33161733, 0x11353632, 0x02213523, 0xb4b6ec90, 0x37311c74, 0xd54c682a, 0xbf143d02, + 0x02011ad4, 0x8e7c0c0c, 0xfff40803, 0x061a01ff, 0x08970478, 0x00070201, 0x010000d6, 0x26118275, 0x045c0656, 0x82d9075b, 0x86d92011, 0x82372011, + 0x07792223, 0x20118289, 0x2011868e, 0x2011824e, 0x203584dd, 0x201186dd, 0x2011821b, 0x20118498, 0x541185df, 0x02220715, 0x35820306, 0x00010027, + 0x0500002b, 0x35d58281, 0x4036000b, 0x02020b11, 0x034f031f, 0x0d030302, 0x0507060a, 0xd7830801, 0xd7820a20, 0x19010722, 0x192bd782, 0x3f3f3f00, + 0x013232ed, 0x8333332f, 0x113321db, 0x0123db82, 0x84211123, 0x2fd58201, 0xfe9d8105, 0xfeb4fe98, 0x56059d98, 0x91fc6f03, 0x26080385, 0x020000f4, + 0x2202c300, 0xe1050504, 0x15000900, 0x09402300, 0x170a0a07, 0xe60d0310, 0x2301b805, 0x00e613b2, 0x412501b8, 0x59830634, 0x22295683, 0x21103526, + 0x06141120, 0x0a825d03, 0x64022408, 0xa101ccd5, 0x41cba101, 0x44525144, 0x474e5145, 0xf6ea2202, 0x21fedf01, 0xe001eaf6, 0x9f807da1, 0x827b839c, + 0x82d1206d, 0x0507226d, 0x086b82e0, 0x4800202c, 0x0b012140, 0x111d1d0b, 0x35062522, 0x17060206, 0x1f061117, 0x7008601f, 0x08040208, 0x0e080801, + 0xbb14e604, 0x1a002301, 0x84830e00, 0xed3f3322, 0x2105b741, 0xe7823912, 0x5d331123, 0x850e8211, 0x231525e9, 0x07222326, 0x20068a44, 0x08a08223, + 0x21003441, 0x14150132, 0x36323316, 0x22233435, 0x3e1eb703, 0x7325f266, 0xe0ab907b, 0x01d9cab3, 0x3a0e0110, 0x4850b2fe, 0x3ea34840, 0x1dc8d005, + 0x859e36c4, 0xd0e0b999, 0xfd1201fc, 0x7b6032fb, 0x82914553, 0x02c13fab, 0x05f70324, 0x001400e3, 0x403c001c, 0x06101519, 0x00191e06, 0x1b1b060b, + 0x087f086f, 0xa3860b02, 0x82bb1321, 0x8217209d, 0x002322a3, 0x20a38d3f, 0x25a08333, 0x01303133, 0x89823335, 0x7b5b3720, 0x206c0807, 0x21001011, + 0x23120122, 0x33141522, 0x200f0132, 0x24fc5941, 0xac927674, 0x9f01b0e7, 0xeffee2fe, 0x148a0166, 0x3caa89aa, 0x1cc83402, 0x859c32c0, 0x52febc98, + 0xf0fefffe, 0x0c010402, 0xffff8a98, 0xeeffc300, 0xad030504, 0xc4030703, 0xccfd0000, 0x01b20b00, 0x01b80000, 0x353f0089, 0xffff0035, 0x02001701, + 0xa103da03, 0xef000703, 0x07241f84, 0x180100b2, 0x1b821c82, 0x00e60027, 0x030d0402, 0x201b82bb, 0x241b90f0, 0x03eaffe0, 0x201b84f4, 0x231b84f1, + 0x0300b109, 0x39835685, 0x3982a620, 0xb2032d26, 0x3e020703, 0xb3231d85, 0x83030001, 0x27738356, 0xe8ffd300, 0xa603ea03, 0x3f251d82, 0xccfdfaff, + 0x203b8d00, 0x22b182cb, 0x82ac0301, 0x84c520b1, 0x820b201d, 0x890e20b1, 0xd30023b1, 0xd1820100, 0x40203d83, 0xb18b1f84, 0xe6ffac26, 0xc0031004, + 0x41205982, 0x0d221b84, 0x788202b3, 0x7b843c86, 0xf0ffbb26, 0xaf03f103, 0xc6205d82, 0x13205d88, 0x00202086, 0x08054b43, 0x067f063e, 0x0029001e, + 0x0f234079, 0x5f1a2f1a, 0x081a031a, 0x29092424, 0x010d500c, 0x112b0d0d, 0x29802940, 0x15232902, 0x03151410, 0x17410411, 0x27006201, 0x0e000501, + 0x24006301, 0x1f001301, 0x18200f82, 0x13200f82, 0x14200f82, 0x10240f82, 0x0d001901, 0x0a200382, 0x09200f82, 0x3f230f82, 0x823f3fed, 0x44ed2003, + 0x172d055e, 0x2f332f33, 0x3912115d, 0x12335d2f, 0x2b0c8239, 0x30315dce, 0x26272301, 0x15062223, 0x07bb4118, 0x2406f16c, 0x17322110, 0x201a8815, + 0x370e8335, 0x321b7f06, 0x4d682b34, 0xf6fe1601, 0x6bfe98fe, 0x9a9a98fe, 0x7193b901, 0xa1201586, 0x05270b83, 0x490c0d0c, 0x43f40970, 0x1f2408ca, + 0xfe149c01, 0x09831384, 0x00020027, 0x0800002b, 0x08f3822f, 0x2f002b32, 0x22408e00, 0x2e2e232f, 0x1e001403, 0x0707061e, 0x031f020b, 0x01030001, + 0x0b310303, 0x0f0f0e1c, 0x2c200b0a, 0x1d412c01, 0x2f006001, 0x28000401, 0x2120ec82, 0x0820ec82, 0x1e20dc82, 0x1920dc82, 0x12200f82, 0x0d200f82, + 0x0e200f82, 0x0a200f82, 0x7744f882, 0x82042007, 0x41012013, 0x01410700, 0xed3f2507, 0x332f0171, 0x3326f782, 0x2f391211, 0x07435d5d, 0x20118205, + 0x46138311, 0x212108ef, 0x22018311, 0x84333523, 0x0e0441f5, 0x25200e87, 0x05272382, 0xfe07031e, 0x416dfe98, 0xa836140c, 0x3b1a6d8d, 0x44622625, + 0x98fe1103, 0x63046801, 0x74039dfb, 0xe1448cfc, 0x0d164106, 0x0a0ffe27, 0x01976d4c, 0x06134211, 0x2b082508, 0x2b001e06, 0x1b407f00, 0x1d1d122b, + 0x09050504, 0x261f0125, 0x01260001, 0x092d2626, 0x0e0e0c1a, 0xba250908, 0x292ded82, 0x20b36301, 0x41202424, 0x00050115, 0x20f28207, 0x24f2821b, + 0x00620117, 0x200f8210, 0x200f820b, 0x200f820c, 0x20288208, 0x20038204, 0x0b124102, 0x833fed21, 0x2f332401, 0x413fed10, 0x13410d12, 0x30312408, + 0x41152101, 0x2121050a, 0x120c4111, 0x2124342f, 0x37171732, 0x26112111, 0x05152223, 0x1815421e, 0x1d010f2d, 0xe696724f, 0x476898fe, 0x426304f6, + 0x2e081319, 0x0ecad41d, 0xecf91612, 0xa9101a05, 0x2b000200, 0x3c0559fe, 0x24001e06, 0x5c002800, 0x0f0f1140, 0x00152a13, 0x07131717, 0x20131212, + 0x82250125, 0x006026ed, 0x00040128, 0x20e98221, 0x20e9821a, 0x20d98215, 0x20e98216, 0x28e58212, 0x0061010c, 0x00200105, 0x20ed8910, 0x060243ed, + 0xe9827120, 0x11331122, 0x8307ff41, 0x471120e0, 0xf7410d67, 0x82252013, 0x21022314, 0x7e471b03, 0x59fe2609, 0x9a9a98fe, 0x09e04101, 0xe0411b20, + 0x47892006, 0x0d290994, 0x6f038cfc, 0x9c011ff4, 0x09db4114, 0x7000023f, 0x2805e1ff, 0x0b00ef05, 0x25001700, 0x151509b6, 0x0c030f19, 0x007001be, + 0x000b0106, 0x22078212, 0x461d0100, 0x05260dd5, 0x10110020, 0x05842100, 0x02220122, 0x08053a46, 0x2634115c, 0xcbfecc02, 0x2801d9fe, 0x35013401, + 0xd5fe2701, 0x4e97cffe, 0x6c798c59, 0x70011f50, 0x96019701, 0x8bfe7101, 0x74fe6efe, 0xf50485fe, 0xffeafcfe, 0x1e01d2f0, 0x0000feef, 0x00820001, + 0x05410400, 0x000c00d8, 0x000a4034, 0x01050b0b, 0x0e0d0303, 0x7201b806, 0x090505b2, 0x138201bd, 0x01020027, 0x01010072, 0x2d8a821c, 0x2f333f32, + 0x011211ed, 0x32cd2f39, 0xf44b1033, 0x11200806, 0x36323521, 0x21112137, 0x41fc4104, 0xd5fe2b01, 0x010999bd, 0x011a0146, 0xfde2022b, 0x53fb6e60, + 0x4e206783, 0x37086782, 0x00ee05ab, 0x40510013, 0x16101324, 0x36102610, 0x3f100310, 0x05050105, 0x34122415, 0x12130212, 0x0b021201, 0x0940020b, + 0x0a02480c, 0x6f01bf07, 0x0b010d00, 0x12000200, 0x7e870982, 0x33ed5008, 0x332b2f01, 0x5d33112f, 0x2f39125d, 0x115d335d, 0x21303133, 0x00001121, + 0x22233435, 0x36112307, 0x15042033, 0x04210110, 0x01a3fbab, 0xcc2b0165, 0xd120bbc3, 0x010f01ef, 0x02a3fd24, 0x010601a1, 0x7f64011c, 0x520186b9, + 0xfed6e764, 0x836afe8f, 0x3c31089b, 0xb404e1ff, 0x2500f005, 0x15405200, 0x1d221400, 0x03171722, 0x0f010f20, 0x0f08270f, 0x1c1d011d, 0x6f01b819, + 0x13001fb2, 0xb37001b8, 0x1f061414, 0x229782bd, 0x820c000a, 0x01062797, 0xed3f001d, 0x8c823f32, 0x1039ed25, 0x820132ed, 0x3f988493, 0x11332f33, + 0x31393912, 0x16160130, 0x21041415, 0x37112720, 0x36323316, 0x23263435, 0x20331123, 0x6b08ae8b, 0x03070614, 0xfeb59966, 0xfebdfead, 0xd526c3e1, + 0x6d8b90d1, 0x0164ac64, 0xdfc0dd01, 0x01e2ee26, 0x9d490109, 0x0f130388, 0xfee388ba, 0x013b015f, 0x4b79617e, 0xad18015b, 0x3a017c91, 0x84b3be5e, + 0x00001dbd, 0x00270002, 0x05160500, 0x000a00d1, 0x404e000d, 0x09090a17, 0x0701072b, 0x04010b0b, 0x0f0d0f04, 0x02061f06, 0x01070c06, 0x0923c283, + 0x83040609, 0x0b0b2c07, 0x01ba0703, 0x0103000a, 0x843f001c, 0x333325c2, 0x3912ed2f, 0x0c82c486, 0x495d3321, 0x2e080ba3, 0x33112101, 0x05011121, + 0x9cfecd16, 0x9d0242fd, 0xfdcd8501, 0x0175fecf, 0x019afe66, 0x03230166, 0x01b5fc48, 0x0009fef7, 0xff5f0001, 0x82b304e1, 0x192a088b, 0x10404400, + 0x2015150e, 0x06060106, 0x000b101b, 0x080a0b00, 0xb47201b8, 0x020c1212, 0x7001be04, 0x1d011800, 0x6f010f00, 0x87820c00, 0x3fed3f2e, 0x391232ed, + 0x0132ed2f, 0x112f332f, 0x0805234a, 0x31c4106d, 0x33113730, 0x35203316, 0x07222134, 0x11211123, 0x33361521, 0x14150420, 0x5f202100, 0x01c1c729, + 0xa2bdfe2e, 0xde031da3, 0x6c4b52fd, 0x28010b01, 0xf1feaffe, 0x013ad8fe, 0xdef07a33, 0xfe400330, 0xe70af9dd, 0xe1fefbdd, 0x00020000, 0x05e1ff6d, + 0x00ed0535, 0x00210016, 0x00104042, 0x1c1c0c0c, 0x20072312, 0x01120f20, 0x821e0712, 0x09b3239b, 0x9a820f09, 0x15007128, 0x19000b01, 0x9e827201, + 0x83058543, 0x01392799, 0x11335d2f, 0x0b821133, 0x99833320, 0x2311012a, 0x06222326, 0x32333607, 0x003f9085, 0x21001011, 0x33100132, 0x34353632, + 0x07072223, 0x7627b304, 0x16bebc8b, 0x01cfc690, 0x82b8fe15, 0xd4440899, 0xa201bbfe, 0xfd988e01, 0x7867debd, 0x015b69f8, 0xe1fecd05, 0x73c3b133, + 0xfef0e9ff, 0x016b01d9, 0x0196014b, 0xfe3efcc0, 0xfc8384b5, 0x00006d34, 0x00310001, 0x058e0400, 0x000600d1, 0x01134033, 0x02030002, 0x083a0182, + 0x051f050f, 0x0503054f, 0x01bc0400, 0x0105006f, 0x0102000a, 0x3f3f001c, 0xa58232ed, 0x08063053, 0x31331170, 0x21010130, 0x21112101, 0xb6fd8e04, + 0x6e0258fe, 0x5d0427fd, 0x42fbbe04, 0x2301ae04, 0x54000300, 0xf604dfff, 0x1600f305, 0x2e002200, 0x26405900, 0x0023170c, 0x09090304, 0x300f1919, + 0x2b2b012b, 0x031f1530, 0x150f2503, 0x152f151f, 0x000c1503, 0x17172323, 0x01be2806, 0x01120072, 0x011c001d, 0x01060071, 0xed3f000b, 0x3912ed3f, + 0x77823311, 0x33207d82, 0x2105ff42, 0x08855d2f, 0x82391721, 0x26353785, 0x33243435, 0x14150420, 0x04150706, 0x21001411, 0x34352420, 0x4f553601, + 0x16142406, 0x44060316, 0x118205d1, 0x01277f08, 0x3501e963, 0x010001f8, 0x0188792b, 0xfebdfe25, 0xfedffef6, 0x5cd102cc, 0x7053576f, 0x74cfc159, + 0x80587086, 0xf3029959, 0xaefe6f06, 0x75a6ccdf, 0x74063c97, 0xfecaf2fe, 0xebcee6f8, 0x69550e01, 0x3f545846, 0xff484538, 0x63795d00, 0x49516178, + 0x0000365a, 0xff4c0002, 0x051605e3, 0x001500ef, 0x40400021, 0x1606110f, 0x001e2316, 0x0d09400b, 0x08060b48, 0xb47201b8, 0x010e2020, 0xd582be04, + 0xdd821420, 0x70011b24, 0xdd860e00, 0x00423220, 0x332b2106, 0x2e051547, 0x11173031, 0x20331633, 0x22230613, 0x45343500, 0x21270696, 0x2e340122, + 0x82222302, 0x336808ca, 0x5a2cce32, 0x307b018c, 0xfed1e77e, 0x015101f7, 0x012c010a, 0xfe58fe43, 0x6002aa6c, 0x49623407, 0x46ff7760, 0x31200102, + 0x016b6f01, 0x01eedc09, 0xfe9dfe2b, 0xfe5dfeb1, 0x993e0349, 0x81407d65, 0x0300f175, 0xbcfe5b00, 0x2106f804, 0x25001f00, 0x83002b00, 0x201a2b40, + 0x10130320, 0x0a260310, 0x1503000a, 0x03291d1d, 0x2d3c0182, 0x23012314, 0x1f0d0f05, 0x260d020d, 0x1a200a1a, 0x17100320, 0x7201b819, 0x211313b2, + 0xb3250682, 0x09061011, 0x38d582bb, 0x01270003, 0x0000b372, 0x01b80302, 0xcd3f001c, 0x10ed2f33, 0xcd2f32ed, 0x2e0882ed, 0x39121132, 0x11331139, + 0x5d2f0133, 0x425d3333, 0x11230842, 0x822f3333, 0x27038515, 0x11253031, 0x27241123, 0x0538fb82, 0x35262411, 0x35372434, 0x17161533, 0x27262311, + 0x15160411, 0x11010414, 0x8508fc82, 0x36110116, 0x02263435, 0xd9fea8fb, 0x01a62cbd, 0xe0e2fe18, 0xa8ec0c01, 0x98299bfc, 0xef0e01d6, 0x83fee9fe, + 0x0d014ec8, 0xfe014abb, 0x094001bb, 0x59160154, 0x36220113, 0xdca7a3c4, 0x14c3c517, 0x55eafe3a, 0x2bf0fe0e, 0xffaaafba, 0x0d014003, 0x3a397410, + 0xe5feb1fe, 0x3a358412, 0x78000200, 0x8f0497fe, 0x1800c305, 0x61001d00, 0x19101840, 0x06091819, 0x18181706, 0x0b0f1303, 0x0b020b1f, 0x031c1f0b, + 0xf9820f0d, 0x0909b239, 0x7201be1a, 0x06000700, 0x12002901, 0x73011000, 0x191616b2, 0x827301bb, 0x0100243c, 0x823f001d, 0xed1022fb, 0x20068632, + 0x4ae58401, 0x8e61080c, 0x24052905, 0x00101100, 0x11331125, 0x7908e786, 0x11333736, 0x23110706, 0x11061111, 0xfec30210, 0x01d0fee5, 0xa7190132, + 0x7f359f86, 0x356d8371, 0xf4a7a580, 0x29011417, 0x0b010701, 0x01163b01, 0x0cc3fe3a, 0x6ceafe4a, 0x103dfd13, 0x47ecfe71, 0x02acfe11, 0x30b80245, + 0xdbfec9fe, 0x6a000100, 0xec040000, 0x1e00ee05, 0x1b406400, 0x141c141d, 0x04010410, 0x1c200b04, 0x020b0e0e, 0x060c0006, 0x010b0f03, 0xbb18160b, + 0xc1826f01, 0xc1820020, 0x0c1c1c2d, 0xb37301b8, 0x12060d0d, 0x820b01bd, 0x820420dc, 0x0106211a, 0x2305a447, 0xed2f3912, 0x2305d741, 0x175d2f01, + 0x8207bb41, 0x335d3815, 0x31391211, 0x07060130, 0x21112115, 0x35363611, 0x33352335, 0x18243411, 0x0807d042, 0x15150683, 0x8a021521, 0x0b039514, + 0x636f7efb, 0x2101b0b0, 0x2d9fccee, 0x7e6f9478, 0x5d028901, 0xfe0b50d5, 0x1f2e01d3, 0xce019778, 0xf2c50c01, 0x59b7fe36, 0xceb0727b, 0x00020000, + 0x04740064, 0x00bf04b0, 0x0027001b, 0x1438406a, 0x041b1702, 0x16192525, 0x19190000, 0x0d061029, 0x1f1f0409, 0x08080e0b, 0x100d170b, 0x1c1c0414, + 0x15151612, 0x120f0f0e, 0x091b0206, 0x04222204, 0x08010100, 0x00040707, 0x21af822f, 0x01821133, 0x39171222, 0x01200b8b, 0x11210c83, 0x82158233, + 0x82d384c8, 0x30cb820a, 0x23062707, 0x27072722, 0x34352637, 0x17372737, 0x28cb8236, 0x16071737, 0x01071415, 0x09504422, 0xb0049408, 0x6c50d197, + 0x99d35369, 0xd2332fd5, 0x6856d391, 0x96d45365, 0xfe3032d2, 0x64644aaa, 0x6665494a, 0xd2980d01, 0x98d33131, 0x6c6950d2, 0xd393d455, 0x98d22e2f, + 0x6d6854d2, 0x6469014e, 0x63634949, 0x00644949, 0x1a000100, 0x7d050000, 0x1800d105, 0x3a407700, 0x170c1516, 0x13130202, 0x1010050c, 0x030c0e12, + 0x09001807, 0x010c0f09, 0x0606090c, 0x050e0e0d, 0x0202050a, 0x0f181711, 0x2f121f12, 0x8f126f12, 0xaf129f12, 0x12120712, 0x01bc180a, 0x8216000a, + 0x010a2603, 0x3f3f001c, 0x23d3823f, 0x3339125d, 0x83063645, 0x2f012b07, 0xcc10335d, 0x1032cd32, 0xee8432cd, 0x12332f23, 0x82108239, 0x150122f2, + 0x6f018721, 0x4f1805a6, 0x7d300761, 0x5501f9fd, 0x5301adfe, 0xa6feadfe, 0x5401acfe, 0x56320382, 0x8a01fafd, 0x2e012e01, 0xa8fcd105, 0xba5cba36, + 0x04827373, 0x6a032426, 0x2402dcfd, 0x4a24cf82, 0xc1040000, 0x2408cf82, 0x40520011, 0x03100c10, 0x0b130909, 0x00060f0f, 0x03030605, 0x6f01b80e, + 0x04000bb2, 0x407301b8, 0x050f0509, 0x2601820b, 0x01bc0a01, 0x8207006f, 0x840120ba, 0x44ed20ba, 0x10260626, 0xed1032ed, 0x6e422f01, 0x33112205, + 0x2516822f, 0x15253031, 0x947f3521, 0x11212105, 0xb5820182, 0xfe4c023d, 0x0390908e, 0x028bfde7, 0x01c3fd3d, 0xe0e0e04c, 0xfe1304de, 0xfefafee1, + 0x43decee0, 0x2a080a0b, 0x407e0025, 0x1e1e241c, 0x100b1117, 0x11111d10, 0x0707030e, 0x20090900, 0x0e010e0f, 0x09041717, 0x7401b800, 0x230c23b5, + 0x8220110e, 0x0f403109, 0x1f1d0f18, 0x2390021d, 0x1d231d01, 0xbf1b0523, 0x1520a482, 0x20081943, 0x06194305, 0x5d27ac85, 0x33ed335d, 0x82331132, + 0x2f0128b2, 0x5d2f2f33, 0x832f3333, 0x050c4c02, 0x12113325, 0x43331139, 0x37200a25, 0x3721c182, 0x20048235, 0x09284335, 0x82211121, 0x143f08cb, + 0x02152107, 0x0352295c, 0x987efb0b, 0x01af9822, 0x2301b0b0, 0x2d9fccec, 0x01ed9676, 0x0262fe9e, 0xc301a001, 0xfe0b2a6f, 0x332001e1, 0x4a2fc170, + 0xf2c57ac0, 0x58c5fe36, 0x4bc0e8fe, 0x82c10f1f, 0x0e2708ed, 0xd504e1ff, 0x2800ee05, 0x1c407900, 0x0814141b, 0x600d5023, 0x0d0d020d, 0x0808132a, + 0x06060105, 0x00001d05, 0x82220516, 0x6f2108e3, 0x05261840, 0x13081616, 0x031d1d00, 0x8f132f1a, 0x0313af13, 0x1a131a13, 0x01bd260b, 0x000f001d, + 0x20f28211, 0x4af2820b, 0x39200590, 0x1123d782, 0x5a113333, 0xea85059a, 0x0f83e682, 0x0382e783, 0x85335d21, 0x231325e8, 0x37263337, 0x36210482, + 0x07074400, 0x07210727, 0x14150621, 0x08068217, 0x33161652, 0x11333732, 0x00222306, 0x343d8a98, 0x3c720706, 0x59013f51, 0x24b2f8f8, 0x5af7aaa9, + 0xfe42ae01, 0x0104046d, 0xe1fe3f82, 0xe17ab221, 0xeccb207d, 0x01a8fef7, 0x3d40b9f7, 0x0e01fab9, 0x8ba6fe5e, 0x2522b9db, 0x6db91620, 0xb0fe897a, + 0x001c0168, 0x2308f782, 0x0436ff0c, 0x00ed05c1, 0x403a0025, 0x23232412, 0x1a111110, 0x0e0e0005, 0x23001111, 0xbd1f0323, 0x18006001, 0x0a20ca82, + 0x03280782, 0x3fed2f00, 0x2f3912ed, 0x22051543, 0x44c4c433, 0x31250521, 0x02030130, 0x08175521, 0x23133726, 0x37363335, 0xcd440182, 0x27680805, + 0x06222326, 0x15210707, 0x3f450703, 0x6f5951fe, 0x2c32301f, 0x3a13535c, 0x0b08d4ba, 0x011f020b, 0x5771d714, 0x2a373329, 0x1a105662, 0x9e022201, + 0x60fe38fe, 0x0c050114, 0x017d670d, 0x4442cd84, 0xd6d21143, 0x0cfbfe13, 0xac70650b, 0x020000cd, 0xe2ff6e00, 0x83041f05, 0x13000b00, 0x0a402a00, + 0x15121209, 0x01030f0e, 0x2407b34d, 0x01100029, 0x4adb8271, 0x444b052d, 0x30312107, 0x080db44d, 0x33101159, 0x02101132, 0xfedefec7, 0x013701c9, + 0x01210122, 0xfec6fe37, 0xecedede2, 0x0136011e, 0x01170118, 0xfec1fe3c, 0xfef1feeb, 0xfe8e03c2, 0x01bcfebc, 0x00430145, 0x007d0001, 0x04fa0300, + 0x000c007e, 0x00114036, 0x3f050b0b, 0x03010101, 0x060d0e03, 0x09010505, 0x822901bd, 0x01022297, 0x08a94d70, 0x2f391223, 0x05aa4d33, 0xab4d5d20, + 0x03333711, 0x0183fcfa, 0xaaebfe15, 0x38010c93, 0x011401fc, 0x5753ffc1, 0x678296fc, 0x00003b26, 0x82042104, 0x3f37e382, 0x02121440, 0x05051010, + 0x15130213, 0x40020b0b, 0x02481109, 0x82bf0709, 0x820d2064, 0x0002226e, 0x20098213, 0x07594300, 0x994d3220, 0x85112006, 0x31392678, 0x35212130, + 0x05054b00, 0x11232c08, 0x16323336, 0x21011015, 0x1afc2104, 0xa98e8d01, 0xbe18a296, 0xfef9edcf, 0xf802024f, 0x429e1501, 0x2501527b, 0xfe98aa47, + 0x82f5fede, 0xfe352483, 0x82530457, 0x00253883, 0x00164052, 0x1c132222, 0x0e031717, 0x1c09270e, 0x0940091c, 0x4d094813, 0x12280792, 0xb27001b8, + 0xbd1f1313, 0x09228f82, 0x8f820c00, 0x2b010629, 0x32ed3f00, 0x4d2f393f, 0x2b220690, 0x92842f33, 0x122f3325, 0x4d123339, 0x00280791, 0x11272021, + 0x32331633, 0x4b06904d, 0xa88406ae, 0x15044c08, 0x03070614, 0xfeb09013, 0xfeedfecb, 0xb424bde7, 0x6172fcda, 0x7d7967aa, 0x23c4bec0, 0x01d9f1d6, + 0x01818f25, 0x91c90ba8, 0x52f7fee3, 0xec743801, 0x15016756, 0x77924d5e, 0xbd5a3701, 0x1dc07fb3, 0x00020000, 0x0570fe27, 0x4d78040b, 0x073a078f, + 0x09030b0b, 0x03030202, 0x058f0d0f, 0x09400501, 0x0c05480d, 0x01b80107, 0x8f4db371, 0xb3712105, 0x07212182, 0x22c882ba, 0x4d2a0103, 0x2b200e8f, + 0x43058f48, 0x312505bb, 0x11232530, 0x4d018221, 0x0b3c078f, 0xfda2fed3, 0x0192024d, 0xd2fdd37f, 0xfe3784fe, 0x01c70139, 0xfc33030e, 0xfee301c9, + 0x01378b82, 0x57fe3d00, 0x62045604, 0x46001900, 0x150e1340, 0x74066415, 0x4d300206, 0x00230594, 0x4d08100b, 0x01200692, 0x2906924d, 0x010f002b, + 0x010c0070, 0x924d0028, 0x01392408, 0x5333c42f, 0x10240526, 0x133031c4, 0x200e914d, 0x08914d11, 0x293d2c08, 0x0d01cbab, 0xa07ec9fe, 0xfd9f031d, + 0x01503f87, 0xfe2a0100, 0xfee8fecd, 0x01a3fef3, 0xf2fd6830, 0xfe380330, 0x09fffeeb, 0x4dffe8f8, 0x23080593, 0x05e2ff64, 0x00ed0515, 0x00200015, + 0x0115404a, 0x1b640b0b, 0x111b1b01, 0x1f1f0622, 0x111f110f, 0x1d061102, 0x0823a183, 0x4b020e08, 0x0b270699, 0x72011800, 0x43010e00, 0x994b056b, + 0x079a4d07, 0x9b4d5d20, 0x03202a09, 0x00323336, 0x21001415, 0x0b9a4d20, 0x23105c08, 0x04070722, 0x8e6c2799, 0x9d2ca0fe, 0x0901ceb5, 0xf1fec9fe, + 0xc2fed3fe, 0x8e019801, 0xe7c7fd92, 0x67e86a5d, 0xcf05015e, 0xfe2fe1fe, 0xfafe75a2, 0xdafefbed, 0x51016401, 0xbf019701, 0xaafe4bfc, 0x07017f90, + 0x01007038, 0x86fe2700, 0x63044304, 0x31000600, 0x02011140, 0x82020603, 0x05083301, 0x480c0940, 0xbc040005, 0x05007001, 0x02002801, 0x994d2a01, + 0x4d2b2006, 0x60081299, 0xfeb6fd43, 0xfd650270, 0x031c0459, 0x0433fb53, 0x001601c7, 0xff540003, 0x05e604de, 0x001500f3, 0x002c0020, 0x24314067, + 0x02163416, 0x0b162100, 0x09030904, 0x440e1818, 0x29300129, 0x14292901, 0x03031e2e, 0x1f140f23, 0x03142f14, 0x0c010014, 0x2121040b, 0x26061616, + 0x007201be, 0x001d0111, 0x4d07821b, 0x17210ca4, 0x0ba44d39, 0x2108a54d, 0xa74d5d00, 0x04322508, 0x17071415, 0x4d05d44e, 0xa54d0da6, 0x6a56080c, + 0xed2801d1, 0xec0e01e2, 0xfe320102, 0xfee8fece, 0x02d2fee6, 0x53705abe, 0x337e6752, 0x57708874, 0x028c657e, 0xf46606f7, 0xa4ceebb1, 0x7c0b58ef, + 0xf8feceff, 0x01febbe4, 0x49784f01, 0x483c505c, 0x63e6fe61, 0x6279647c, 0x35595451, 0x61000200, 0x15055efe, 0xf3828204, 0x46001f2f, 0x06111340, + 0x0116640b, 0x1b211616, 0x05d64b00, 0x2105a34d, 0xa34d1e1e, 0x422b2008, 0x29200609, 0x200cab42, 0x05ac425d, 0x33391222, 0x4d07ab42, 0x122110a5, + 0x061d4a21, 0x2ae18c08, 0x7601865d, 0xd3de812f, 0x4c0100ff, 0x2a010301, 0x5ffe3b01, 0x02a47dfe, 0xf4fe254d, 0x70807561, 0x017dfe74, 0x77013228, + 0xe50c0170, 0xfe2e01e9, 0xfeb1fe9c, 0x0334fe5b, 0x87e30130, 0x00888081, 0x5a000300, 0x7604cffe, 0x1f007405, 0x2c002600, 0x2d408600, 0x02212119, + 0x02101013, 0x010a0a27, 0x150d0202, 0x2a2a1d1d, 0x1624062e, 0x06240224, 0x0d1f0d0f, 0x0d030d2f, 0x270a1a20, 0x1700271a, 0x01124119, 0x01130073, + 0x82210028, 0x00112207, 0x22098210, 0x82090007, 0x0002260b, 0x001c0103, 0x45098228, 0x3f230567, 0x8232edcd, 0xed3f2203, 0x0ea94d32, 0x11332f22, + 0x8305954e, 0x07a84d08, 0x11058d08, 0x27261123, 0x17163311, 0x35262435, 0x11373634, 0x17160333, 0x27262315, 0x15161615, 0x35010614, 0x14150606, + 0x36151316, 0x02263435, 0xa7fda8b7, 0xfeef9c26, 0xd1e2c1ff, 0x9eca01a8, 0xeeb39524, 0x95feefd8, 0xee53535a, 0xfe073ba1, 0x072601d6, 0x5b040147, + 0xa42ee712, 0x13b38c89, 0xfcfe0601, 0x4ff8340d, 0x9922dd0b, 0x02ce9492, 0x2a07cebe, 0xfe293333, 0x660de2e5, 0x0200312a, 0xdafe5f00, 0x8c052c04, + 0x1d001800, 0x1a405800, 0x2d0aa34d, 0x1c050b14, 0x1c021c15, 0x031f030f, 0xa54d0302, 0x01b82607, 0x0607b272, 0x22068310, 0x82191616, 0x18b12306, + 0x994e0000, 0x25058505, 0x335d2f01, 0xe78b2f5d, 0x25303127, 0x34350026, 0x20d98200, 0x24d98511, 0x33373611, 0x069a4d15, 0x14154508, 0xfefa7802, + 0xfd1c01e1, 0x308b82a7, 0x4c91904d, 0xa7a66730, 0x011231cc, 0x01e0d119, 0x4d01141e, 0x3c0cb0fe, 0xfd1238f7, 0xf63f10dd, 0xa8fe113a, 0x1c024e02, + 0x00eae727, 0x69000100, 0x5b040000, 0x1c008404, 0x1830bb82, 0x040d1b13, 0x0a001e04, 0x07020d0a, 0x03071a0c, 0x3b05684f, 0x01b81715, 0x0011b26f, + 0x7401b80b, 0x0c0c1ab4, 0x01bd1106, 0x00070029, 0x00700103, 0x250a8b4d, 0x1032ed33, 0x8a4d32ed, 0x061d4b0b, 0x07060127, 0x21112517, 0x05864d03, + 0x34355108, 0x17323336, 0x23262313, 0x21151522, 0x06590215, 0x6602015f, 0xb0010ffc, 0xc0e89595, 0x1e027fa5, 0x01a76b53, 0x79c4012c, 0xfe010834, + 0x260a01f0, 0xb1b61480, 0xfe2abc9d, 0x618f2fe1, 0x020000b6, 0x2e006d00, 0x2e046f04, 0x27001b00, 0x3d407000, 0x290a834d, 0x19401920, 0x29191902, + 0x884d1006, 0x4d5d204d, 0x25200989, 0x0827894d, 0x9c9e6f42, 0x5a6b6d58, 0x31a0a09e, 0x9e979d36, 0x5b666f58, 0x369e9d9f, 0x4c9afe33, 0x4c4c6767, + 0x9ecd6867, 0x9d34349c, 0x6a589d9e, 0x9a9f5773, 0x9d30319e, 0x685e9c9f, 0x7801576d, 0x684a4a68, 0x69494b67, 0x0806b74c, 0x6304c440, 0x85001600, + 0x0d114440, 0x13140f0d, 0x010f150b, 0x0f120404, 0x06020b0f, 0x08001606, 0x10040b08, 0x10981088, 0x11011002, 0x0c880c08, 0x0c020c98, 0x16150d05, + 0x113f112f, 0x11af114f, 0x315111bf, 0x0d112a05, 0x160a0d11, 0x002801bc, 0x4d038213, 0x392c0891, 0x5d5d2f2f, 0x33113912, 0x33115d33, 0x01250585, + 0xcc10332f, 0x4c128232, 0x1221062a, 0x200e8239, 0x052e4c11, 0x944d0120, 0x21013510, 0xc4041313, 0x5d0179fe, 0x680198fe, 0xa8fe98fe, 0x690197fe, + 0x5a380382, 0x8a017ffe, 0x6204bcb7, 0x4bb8bbfd, 0xb76363b7, 0x4602b84b, 0x4601b9fe, 0x2408d782, 0x04000035, 0x00640459, 0x405b0011, 0x03100c28, + 0x03130808, 0x050f0f0a, 0x03000606, 0x04880400, 0x04020498, 0x270f8205, 0x120e180e, 0x050b0e48, 0x02260182, 0x7001bc0a, 0xbb820700, 0x924d0220, + 0x822b200c, 0x831120a5, 0x22b682bc, 0x54332f33, 0x984d06b8, 0x8515200f, 0x2e023bb7, 0x8b8b92fe, 0xd5fd9903, 0x0dfef301, 0x7d7d0c01, 0x3103b67d, + 0xe6b8ebfe, 0x0f43b67e, 0x5d4c0807, 0x26008704, 0x1c408700, 0x1e262620, 0x04061616, 0x101e2804, 0x0a0e0c10, 0x06030c0a, 0x0c0f2406, 0x1a180c01, + 0x407001b8, 0x0a001422, 0x210b240a, 0x0f1e0e0e, 0x0b1f0b0f, 0x2f030b2f, 0x0f8f010f, 0x0c400f01, 0x0f0b480f, 0xbd140f0b, 0x20062a43, 0x082a4371, + 0x2f393927, 0x715d2b2f, 0x0eb54c5d, 0x83059d46, 0x220384bc, 0x8239122f, 0x10a04d02, 0x20059f4d, 0x08c04c36, 0xd6840620, 0x07146a08, 0x2d021521, + 0x8602371f, 0x12970cfc, 0x9a9b9b8b, 0x84b3d1ed, 0x9e7d6727, 0x6301081d, 0x01029dfe, 0x477b0165, 0xf0fe071d, 0x571a0a01, 0x4d754d75, 0xfe28d2b6, + 0x0c7a36d6, 0x1a287533, 0x0100750b, 0xe3ff2700, 0x8a046504, 0x71002900, 0x161b1240, 0x2503161b, 0x1f1f150f, 0x0a1a0107, 0x011f0300, 0xb47501b8, + 0x18021a02, 0x08088207, 0x09174021, 0x020f0915, 0x2f02021f, 0x6f095f09, 0x04099f09, 0x09020902, 0x01be210d, 0x01270072, 0x8213001d, 0x820d2007, + 0x052c55f7, 0x5d20ee82, 0x1021ec82, 0x088a4eed, 0x33333323, 0x68e48232, 0x312e06ee, 0x37231330, 0x37343533, 0x33373607, 0xda822436, 0x23039108, + 0x07222326, 0x06210721, 0x06072117, 0x33162107, 0x13333732, 0x24222306, 0x502a8bb2, 0x171f7105, 0x37012e4a, 0x019ac6eb, 0xe297851f, 0x317d012a, + 0x05059dfe, 0x08266001, 0x23e1fe01, 0x1c64c4e5, 0xdadba901, 0x9301d9fe, 0x191f3076, 0xca2a4c01, 0xf6fe49da, 0x3775b564, 0x03126031, 0xf8fe66c1, + 0x0000e04e, 0xfe90ff01, 0x04ff039f, 0x00210087, 0x201c4048, 0x23161600, 0x0010111f, 0x0f050311, 0x020e1f0e, 0x0f0f000e, 0x101f1f10, 0xbd1b0310, + 0x1420d082, 0x0a20d082, 0xa74d0782, 0x112f2109, 0x21054354, 0x078217c4, 0x2f331124, 0xab4d3912, 0x12372513, 0x11173221, 0x0805545e, 0x2107078d, + 0x31660215, 0x493dfe37, 0x302f1a62, 0x154f5929, 0x10d4ba27, 0x74bd013d, 0x37342751, 0x11515629, 0x0124010b, 0xfe90feaf, 0x03011460, 0x895e0d0d, + 0x6dcb2c01, 0xfe12a001, 0x660f0ef6, 0x00cb3c6c, 0x001b0002, 0x04280500, 0x00070063, 0x405c000a, 0x0a04051d, 0x03080a09, 0x44070702, 0x06060106, + 0x034b020c, 0x1f030f01, 0x03033f03, 0x01ba0703, 0x0101004b, 0x080f407c, 0x0a6b0208, 0x0a020a7b, 0x480e0910, 0x01ba040a, 0x8202004d, 0x3f3f2a1b, + 0x125d2b33, 0x3fed2f39, 0x061a5e01, 0x11335d2f, 0x11391712, 0x30313333, 0x21072125, 0x08018401, 0x68030327, 0xfe436dfe, 0x01c50189, 0xfec60182, + 0x0172fe86, 0xbdbd8101, 0x9dfb6304, 0x89019f01, 0x00030000, 0x040000a4, 0x229582c6, 0x8214000d, 0x404e3da1, 0x0404071e, 0x24091010, 0x17170117, + 0x1b140d1d, 0x010da01b, 0x1a1a060d, 0x1401148f, 0xbe242182, 0x0d007c01, 0x13208082, 0x00200782, 0x2a428c82, 0x5d2f2205, 0x05975933, 0x85821120, + 0xb0503920, 0x39123905, 0x21133031, 0x14151620, 0x15041507, 0x21230414, 0x34353201, 0x13152323, 0x5d080684, 0xce01a411, 0xbbd23801, 0xf7fe0501, + 0x01dcfdf5, 0x6db6a1d6, 0xa4c8db91, 0x86856304, 0x300742b2, 0x02b1a6d6, 0xdf6c739c, 0x83883ffe, 0x0000f5fe, 0xff6f0001, 0x049e04ea, 0x00150079, + 0x0c0f4030, 0x00400020, 0x17000002, 0x01110f06, 0x01be0411, 0x01140076, 0x0108004e, 0x010e0077, 0x4260004c, 0x82958305, 0x30312a8c, 0x26231101, + 0x10112023, 0x052a5021, 0x08066b4b, 0x2a9e0427, 0xe0fec497, 0x8bd32101, 0xfefbbe26, 0x01a4fee6, 0xed19015e, 0xb8fe1d04, 0xfed5fe86, 0xd4fe71d3, + 0x0140015e, 0x20018205, 0x346b8245, 0x050000a4, 0x00630438, 0x000e0007, 0x040a402a, 0x09100c0c, 0x219782a0, 0x7482be08, 0x4d010124, 0x07820900, + 0x4b010022, 0x33257c8b, 0x11333031, 0x24798221, 0x11032100, 0x3f078233, 0xa601a421, 0x7efeee02, 0x524b9ffe, 0xa9fe5a01, 0xcefd6304, 0xe4feebfe, + 0xc3fd5003, 0x1d012001, 0xa4244f82, 0x52040000, 0x26086782, 0x4047000b, 0x0800040f, 0x010d0800, 0xa00a0a06, 0x09010101, 0x407b01b8, 0xc0067009, + 0x06060206, 0x01be0501, 0x82020078, 0x820a2078, 0x86012007, 0x39122478, 0x5aed5d2f, 0x39220806, 0x815c2f2f, 0x11212105, 0x35054645, 0xfc520421, + 0xfdae0352, 0xfd1202b9, 0x044702ee, 0x9bf7fe63, 0x7586cfe8, 0x75821f20, 0x3b000922, 0x04257582, 0x0b000007, 0x2d64820a, 0x070107a0, 0x7901b805, + 0x070202b3, 0x6782bc01, 0x6f820820, 0x6b830720, 0x82ed3f21, 0x2069896a, 0x5f0d822f, 0x15200585, 0x11336b82, 0xfd1f0421, 0xfef901e8, 0x039dfe07, + 0x9f59037b, 0x8244fefe, 0x0867825c, 0xe9ff7139, 0x79040605, 0x53001a00, 0x180b1640, 0x16181801, 0x00000c11, 0x20011633, 0x16160116, 0x1806111c, + 0x407c01b8, 0x9f090d09, 0x19190119, 0x01be0f14, 0x01090079, 0x8214004e, 0x41032007, 0x6b8206da, 0x39125d22, 0xf34d7c82, 0x06764206, 0x2530312d, + 0x20230406, 0x00341100, 0x41172021, 0x3c0805f3, 0x32331614, 0x35213537, 0x39060521, 0xfe8ad4fe, 0x018ffecb, 0x0126016e, 0xba26ce0d, 0x9ac3fee0, + 0xfe466fa7, 0x484002ed, 0x40013f20, 0x01f60a01, 0xf4fe5d50, 0xb9c0fe65, 0xde941ca2, 0x05174100, 0x82010521, 0x000b28ba, 0x0911404a, 0x82018f00, + 0x05210800, 0x0404080d, 0x050105a0, 0x7601b803, 0x08301040, 0x08700840, 0x08e00890, 0x05080805, 0x01bb060a, 0x2638824d, 0x004b0105, 0x843f333f, + 0x0a2641a1, 0x41335d21, 0x11210890, 0x37018321, 0x91fe0105, 0x90fe82fe, 0x7e017001, 0xc4016f01, 0x63043cfe, 0x7b0185fe, 0x7c244282, 0x7a030000, + 0x35247b84, 0x06080f40, 0x0a2e1182, 0x0f01050a, 0x09030103, 0x7901bf05, 0x68820600, 0x02000a22, 0xfd410982, 0x5b322005, 0x2508055b, 0x103332cd, + 0x31325dcd, 0x35212130, 0x35231133, 0x11231521, 0xfd7a0333, 0x02c8c802, 0xffc7c7fe, 0xffff6502, 0x4d829bfd, 0xeeff3924, 0x5f826103, 0x4200102e, + 0x0c001a40, 0x0e010c90, 0x120c0e0c, 0x22050050, 0x824e480c, 0x060624e1, 0x82be0e03, 0x420f2060, 0x814106df, 0x2f01230a, 0x84592b5d, 0x115d2105, + 0x0127d382, 0x22210414, 0x68331127, 0x21080504, 0x03213521, 0xfefefe61, 0x2278a5f7, 0x4a747064, 0x8502effe, 0xdae8b001, 0x2a1e0123, 0x8c01676c, + 0x5b4100ff, 0x30df8506, 0x08194058, 0x14090404, 0x0b02010b, 0x000a0a05, 0x357a82a0, 0x84002401, 0x09000200, 0xb54d01b8, 0x10092002, 0xffb80848, + 0x0782b6f0, 0x05080224, 0x8f82bc06, 0x4b010523, 0x27f88400, 0x39123f3f, 0x3f2b2b39, 0x33219182, 0x2092822f, 0x220e822f, 0x8332335d, 0x21212495, + 0x50110701, 0x013e058d, 0x3efe7a05, 0xfe3b94fe, 0x016d0193, 0xfe940195, 0x36ae0128, 0x630488fe, 0xb5014bfe, 0x8f8511fe, 0x042d042c, 0x00050063, + 0x140d4027, 0x7d823400, 0xa0040726, 0x02010101, 0x04226e83, 0x6e857701, 0x6884ed20, 0x5d391225, 0x83213031, 0x04212c5a, 0x0177fc2d, 0x04160273, + 0x87b5fc63, 0x82e320d7, 0x000c3547, 0x1b27408f, 0x03040104, 0x5a060a0a, 0x0b49010b, 0x50000b01, 0x01324f82, 0x09530e07, 0x44090401, 0x06090209, + 0x0107a006, 0xe5820b07, 0x0502b237, 0xc0ffb80a, 0x100d2340, 0x010a3248, 0x0a140a04, 0x05030a24, 0x300e8240, 0x0b01053d, 0x2b051b05, 0x050a0305, + 0x07040408, 0x20908308, 0x84ff8b07, 0x2b5d26f3, 0x112b5d5d, 0x229f8433, 0x655d3311, 0x0882063d, 0x8405264a, 0x180320af, 0x3d0901a1, 0xdaa3fee3, + 0xb4fedddf, 0x10019101, 0x8c011201, 0x4bfe9c02, 0x64fdb501, 0xd3fd6304, 0xc9832d02, 0x0000a624, 0xc9821005, 0x7d000939, 0x01090940, 0x08010848, + 0xb8060b08, 0x0e40e0ff, 0x06480d09, 0x82a00303, 0x828620dd, 0xffb83bbf, 0x0f2e40b8, 0x07404810, 0x32020750, 0x07040107, 0x07240714, 0x01028903, + 0x16824802, 0x5f024f33, 0x023d0202, 0x1b020b01, 0x03022b02, 0x08040207, 0x05534105, 0x2408c241, 0x39391233, 0x82be825d, 0x29c68203, 0x325d2f01, + 0x112b3311, 0x30432f39, 0x11012406, 0x82211121, 0x10053104, 0x37fea5fe, 0x6a01bafe, 0x4801b801, 0xa6fd5a02, 0x2d08ad82, 0x004902b7, 0x70000200, + 0x7005e9ff, 0x0b007a04, 0x30001400, 0x20000f40, 0x13130113, 0x06540e16, 0x06020694, 0x7801be0c, 0x4e010900, 0x48441100, 0x0606550a, 0x31335d24, + 0xb9620130, 0x34400805, 0x00202100, 0x14112025, 0x11203316, 0xfe700510, 0xfed9fea6, 0x01abfed6, 0x011c0163, 0xfd680119, 0x85fcfe80, 0x0203017f, + 0xfefffe31, 0x014401b9, 0x4a01ff04, 0xfe3fb4fe, 0x01ab96c0, 0x00400141, 0x08052946, 0x04b80428, 0x000a0063, 0x403b0011, 0x0f240710, 0x020f0f01, + 0x01010c13, 0x020102a0, 0x7a01b800, 0x020c0cb3, 0x7a01bc0b, 0xd0470300, 0x0e4e4508, 0xf3839284, 0x04202d08, 0x23041415, 0x32331103, 0x02233435, + 0x0190fe14, 0x013901ad, 0xdeecfe2e, 0xd2d66ebb, 0xa6fe5a01, 0xc4b76304, 0x0e02d8b6, 0x8f96dbfe, 0x32087d82, 0x05aefe70, 0x007a046f, 0x001e0015, + 0x0015404e, 0x0d130a0a, 0x1d200613, 0x201d1d01, 0x940d5418, 0x160d020d, 0x007801ba, 0xb54e0110, 0x02540244, 0x82be0202, 0x00083388, 0x0079011b, + 0x010a0000, 0x333f004b, 0x5deddded, 0x1d41ed3f, 0x11333508, 0x332f3912, 0x16253031, 0x33373233, 0x20230615, 0x35002403, 0x22053041, 0x41010214, + 0x4008072d, 0x9907e003, 0x7d215354, 0x1999feaa, 0xcffe00ff, 0x21015e01, 0x61011f01, 0xfe55fed5, 0x017f84fd, 0x196f1204, 0x490122ec, 0xec3b0113, + 0x41010801, 0xf7fec0fe, 0x03ddfec3, 0x93c0fe22, 0x014101ae, 0x053b4140, 0x0476053e, 0x000c0063, 0x40620013, 0x0e0c0226, 0x3b012b0a, 0x010a0201, + 0x01011901, 0x54004401, 0xd3822482, 0x15111124, 0x85450e05, 0x030c2905, 0xb37e01b8, 0x0d050e0e, 0x0620c883, 0x200d1944, 0x06165fed, 0x28077c53, + 0x2f331133, 0x5d5d335d, 0x05ff625d, 0x0121212d, 0x11211123, 0x15043221, 0x41010714, 0x3c080564, 0x44fe7605, 0xfe6bc5fe, 0xf60e0290, 0xfee72001, + 0xbdd46f33, 0x75fe8b01, 0xa3a96304, 0x910164d6, 0x8796e3fe, 0x5a000100, 0x7d04ecff, 0x24007704, 0x14403a00, 0x06202013, 0x00192606, 0x063b510f, + 0x1019062c, 0x7b01be04, 0x4c012300, 0x07821600, 0x4e011023, 0x052b4900, 0x2f013922, 0x8205fe51, 0x063b6289, 0x34353228, 0x26272726, 0xc0593526, + 0x06470809, 0x17161415, 0x1415021e, 0x5d202304, 0x9ddbeb2a, 0xc331a44e, 0xdf2901aa, 0xb028ece9, 0x4c5153dd, 0x69bbb778, 0xfeecd3fe, 0x220142d5, + 0x26225a89, 0xa3300c2b, 0x4ad39d80, 0x3267f4fe, 0x15272822, 0x688f4a23, 0x8200c9b7, 0x00243fa7, 0x04a80400, 0x00070063, 0x000a4027, 0x03050202, + 0x01090803, 0x7701bc05, 0x4d010600, 0xcc470300, 0x11322e05, 0x2f390112, 0xce1033ce, 0x21013031, 0x25018411, 0x76fea804, 0xf88291fe, 0x54038428, + 0x5403acfc, 0x4f830f01, 0xe9ff9424, 0x4f82ec04, 0x2500102b, 0x0e0e00b6, 0x0f060912, 0x204782be, 0x22038207, 0x8276010b, 0x834c204f, 0x013f21e9, + 0x82050951, 0x0414254d, 0x35242021, 0x14235282, 0x82363233, 0xec043f07, 0xfafed9fe, 0xdcfef9fe, 0x6fbd6e01, 0x016f014f, 0xe9e9c89a, 0xfdc802c9, + 0x8070ef98, 0xb3826702, 0x00001b24, 0x63820d05, 0x5b000637, 0x023a1e40, 0x01021901, 0x01013702, 0x01010116, 0x04000505, 0x052a4b3b, 0x06030225, + 0x82ba0600, 0xff053477, 0x0d1040c0, 0x05324810, 0x14050401, 0x03052405, 0x4b030205, 0x1224092b, 0x2b5d5d39, 0x2b4b9083, 0x33112305, 0x02825d5d, + 0x01219982, 0x38018221, 0xfe0d0501, 0xfe8afe41, 0x01750143, 0x0410010b, 0x049dfb63, 0x0239fd63, 0x248782c7, 0x07000042, 0x0887826b, 0xc0000c27, + 0x052b4f40, 0x19050901, 0x34050205, 0x04160104, 0x16080401, 0x360a260a, 0x190a030a, 0x39092909, 0x03090309, 0x23a9853b, 0x06010124, 0x0229ab82, + 0x030b0b01, 0x0c060308, 0x2a498224, 0x3f070e00, 0x02064f06, 0x6401062b, 0x9f8306ed, 0x4d010927, 0x08080bb2, 0x20bf82b8, 0x20bf8320, 0x26558208, + 0x08240814, 0x82400303, 0x033d280e, 0x1b030b01, 0x82032b03, 0x09f24645, 0x4b010222, 0x8305925d, 0x05ef45d5, 0x5d20db82, 0x1127d382, 0x335d2f33, + 0x86391712, 0x210682e0, 0xec8b5d33, 0x33094e75, 0xb8fe6b07, 0xcdd383fe, 0xbcfe80fe, 0xdbaa6801, 0xb4cd5901, 0x0223f883, 0x826ffd91, 0x023527fc, + 0x0239fdcb, 0xb78200c7, 0x00002039, 0x63041d05, 0x68000b00, 0x03051440, 0x04040701, 0x030b0a0a, 0x62090d03, 0x01200595, 0x1f20bb83, 0x322aac82, + 0x01040101, 0x01240114, 0xbb840703, 0x0b010727, 0x2b071b07, 0x21328207, 0xb282be08, 0x03820620, 0x4d010222, 0x4d205382, 0x3f21be83, 0x26be8639, + 0x332b2f01, 0x632f3912, 0x112a069c, 0x01303133, 0x01211313, 0xad832101, 0x01012608, 0x01f4ecb7, 0x0158fe7e, 0xf772feb0, 0x0183fefb, 0x045afeae, + 0x01c9fe63, 0xfde1fd37, 0xfe4e01bc, 0x023802b2, 0x20a7822b, 0x37a78609, 0x405e0008, 0x057b061a, 0x01052f01, 0x0a010519, 0x03050105, 0x74080307, + 0x022a2282, 0xb8080302, 0x01b24d01, 0xb4830704, 0xb4831120, 0x2408a946, 0x05030704, 0x080e43ba, 0x9d841220, 0x3f33112b, 0x10322f01, 0x12325dce, + 0x23058239, 0x325d5d5d, 0x01249d82, 0x01112111, 0x053ba082, 0xfe38fe1d, 0x012ffe85, 0x010d018a, 0xfd630400, 0x0164fe39, 0xfed30290, 0x829b0165, + 0x002a08e5, 0x04000058, 0x0063046b, 0x40410009, 0x03080918, 0x01061402, 0x06010621, 0x0f040b06, 0x2f021f02, 0x07020302, 0x7801bf04, 0x76820500, + 0x08000222, 0x4908c44b, 0x332506c6, 0x5d2f3912, 0x0889825d, 0x30313331, 0x01352121, 0x15211121, 0x6b042101, 0x2e02edfb, 0xd303effd, 0x5502cefd, + 0x016c02ec, 0x98fdf30b, 0x00ffff00, 0x0500001b, 0x028c0628, 0x82fb0326, 0x00063d7e, 0x0000118d, 0x0e02b117, 0x404f01b8, 0x0e022609, 0x030c0e7f, + 0x112b2506, 0x352b0035, 0x64202f89, 0xd9272f88, 0x190000c9, 0x870e02b2, 0x00112530, 0x0a0a0b11, 0x34823085, 0xd6216192, 0x206184cd, 0x2261860f, + 0x880f040f, 0x20618a30, 0x29618814, 0x0000cc8e, 0x0203b31d, 0x31831010, 0x03260a27, 0x11021102, 0x8263850e, 0x35112195, 0xc789358a, 0x00b64328, + 0x02b21b00, 0x34820c0c, 0xc782b220, 0xb6ffb825, 0x870b0eb4, 0x89998bca, 0xcbd82169, 0x3384cb84, 0x0d22fc83, 0x67860d01, 0x822b0021, 0x02003e31, + 0x5ffe1b00, 0x6304dc05, 0x18001500, 0x1f405f00, 0x18180b0c, 0x00100609, 0x06060404, 0x082d8244, 0x091a0d27, 0x0a1f0a0f, 0x4b030a3f, 0x120a010a, + 0xb27e01b8, 0xba0e0602, 0x07004b01, 0x17b47c01, 0x0b180917, 0x004d01ba, 0x2a108209, 0x12333f3f, 0x3fed2f39, 0x4feddc33, 0x33220a8c, 0xa95fcc2f, + 0x31332a05, 0x23060130, 0x37341120, 0x05974f27, 0x07072332, 0x37323306, 0x03210133, 0x8152dc05, 0x45059ffe, 0x3f0aa44f, 0x080102a5, 0x094d51bd, + 0x010144fc, 0x1877fe81, 0x471d3e01, 0x6304bdbc, 0x151e9dfb, 0x600222b0, 0x4105b54f, 0x253405eb, 0x1d001100, 0x7e002000, 0x1b693840, 0x0d3b1b01, + 0x14020d4b, 0x203dbc83, 0x15011566, 0x074b071b, 0x01073402, 0x070f0407, 0x02202003, 0x10441111, 0x22101001, 0x06655002, 0x01034b34, 0x01b80103, + 0x1e0a407c, 0x0a12021e, 0x03200f04, 0xd382bc18, 0xd3821120, 0x23066344, 0x32cc3317, 0xd78adb83, 0x1139122a, 0x5d2f3317, 0x115d335d, 0x6f500685, + 0x26272c06, 0x33363435, 0x14151632, 0x62210107, 0x03210bd9, 0x08855021, 0x5c0aa735, 0xb98584ba, 0xfeac015c, 0x3becfe86, 0x3d3b4d4d, 0x50b64c4b, + 0x18370592, 0x82845309, 0x8080adab, 0x05dffb57, 0x403f558b, 0x3c3d5552, 0x8b14fc58, 0x00e922ef, 0x30ed8214, 0x40840023, 0x00140235, 0x04131300, + 0x18011866, 0x32d5834b, 0x011e6923, 0x01044b1e, 0x040d0604, 0x0b232303, 0x82440808, 0x25072ef9, 0x1f0c0f0b, 0x030c3f0c, 0x0c010c4b, 0x2bec830a, + 0x1b21210b, 0x0214150b, 0x1b060d13, 0x0b20ed83, 0x0820ed82, 0x3f290382, 0x33333f3f, 0x33cd32dc, 0x85f09511, 0x5d3321ef, 0x33281d82, 0x31393912, + 0x05150130, 0x2724ec85, 0x01210721, 0x3722fe84, 0xd2630337, 0x24f8820a, 0xfffe4404, 0x20ee8495, 0x05e24146, 0x5c0aa726, 0x4ba16286, 0x0625fa8a, + 0x5cfa14e9, 0x2df582a5, 0x03bdbdfd, 0x845309fa, 0xec189c6f, 0x004184fe, 0x01322208, 0x08794375, 0x49435220, 0xc6d72708, 0xb1190000, 0x12431402, + 0xb8182505, 0x18b4fdff, 0x2b0a7b43, 0x13000200, 0xf7060000, 0x0f006304, 0x732d0982, 0x10002340, 0x11070313, 0x0e030b11, 0x08018209, 0x10040230, + 0x020d200d, 0x020f010d, 0x023f021f, 0x01022b03, 0x01b80a02, 0xc007b67b, 0x04070107, 0x7801bc0b, 0x4b010e00, 0x7c010f00, 0x011111b4, 0x10830512, + 0x4d010422, 0x2c05ff4c, 0x1232ed3f, 0x3fed2f39, 0x5d3911ed, 0x05f3422f, 0x335d2f22, 0x2c05375c, 0x2f333339, 0x31391733, 0x21030130, 0x08745001, + 0x21113108, 0x11212511, 0x73ec0123, 0xf4019afe, 0xc9fdf004, 0xfdfd0302, 0x71fc3702, 0x0d01f3fe, 0xfe070173, 0xfe6304f9, 0xcde89df7, 0x0701f8fe, + 0x005d01f6, 0xc184f382, 0x028c062e, 0x001f0426, 0x00070100, 0x00cf018d, 0x1720f584, 0x0682f585, 0x17b45a25, 0x440d0215, 0x6f240ad3, 0x9e04eaff, + 0x03213383, 0x050345fd, 0x00003c26, 0x1901b117, 0x40293182, 0x19012609, 0x111719c5, 0x212f9a0c, 0x618202df, 0x1801b223, 0x22308718, 0x87161955, + 0x35112130, 0x40085282, 0x5bfe6f00, 0x79049e04, 0x4a002700, 0x07231740, 0x07070000, 0x201f0e1f, 0x02134013, 0x19291313, 0x0e010e0f, 0x7601bc17, + 0x4e011100, 0x7e010400, 0x1b2126b2, 0x007701ba, 0x004c0109, 0xdc33ed3f, 0x0a554bed, 0x39121127, 0x112f332f, 0x07db7433, 0x3535362b, 0x022e2227, + 0x21001035, 0x06bd5032, 0x3806b152, 0x14151607, 0x01222306, 0x4f4d17ae, 0x8401614f, 0x0183d9c1, 0xed19015e, 0x09c052cb, 0x045b5c36, 0xfe85a7c9, + 0x6424bb74, 0x26131554, 0x019cf88a, 0x5c450105, 0x2709ca52, 0x1147132f, 0xffffb79c, 0x41054753, 0xd6270a23, 0x17000004, 0x861a01b1, 0x561a22f2, + 0x21f2881a, 0x2f880035, 0x26021422, 0x28065341, 0x00000eda, 0x1701b219, 0x23308617, 0x19185f18, 0x820a2341, 0x00a42431, 0x84380500, 0x00fe2e61, + 0x00060100, 0x0000eddf, 0x1102b21b, 0x2b318211, 0x120226b2, 0xb4d9ffb8, 0x04010f12, 0x200b5b46, 0x2633832e, 0x06026304, 0x83003204, 0x21438275, + 0x43845204, 0x4384ff20, 0x84078d21, 0x860f20a5, 0x9c0f2574, 0x0b020d0f, 0x850ac941, 0x8264202f, 0x212f85a5, 0xa584a6d9, 0x30870f20, 0x12031223, + 0x4630870c, 0x618f0533, 0x84b0df21, 0x07ff4631, 0x0e0f0123, 0x21319e0f, 0x9384afd6, 0x93861020, 0x100c1022, 0x35203088, 0x1420c389, 0x8e299388, + 0x1d0000a5, 0x110102b3, 0x05ff4611, 0x12010225, 0x850f1202, 0x09ff4695, 0x35899785, 0x00a2da28, 0x01b21b00, 0x34820d0d, 0x0126b228, 0xffffb80e, + 0x35860eb4, 0x932b0021, 0x000725cb, 0x0056ff43, 0x0f24358c, 0xb47cffb8, 0x6989cf95, 0x699fd820, 0x00010034, 0x0597fea6, 0x00630410, 0x40880015, + 0x0500130a, 0x99820d48, 0x12173508, 0x40e0ffb8, 0x480d090b, 0xa00f0f12, 0x14100110, 0xb34d01b8, 0x13011386, 0x40b8ffb8, 0x48100f2f, 0x13501340, + 0x01133202, 0x13141304, 0x89031324, 0x480e010e, 0x28081682, 0x0e5f0e4f, 0x010e3d02, 0x0e1b0e0b, 0x13030e2b, 0x10030d0e, 0x4d01bd11, 0x77010a00, + 0x10000300, 0x3f004b01, 0x123fedd4, 0x0a1a5017, 0x1b503f20, 0x3339270a, 0x25303133, 0x7f7a0614, 0x01372109, 0x2c082850, 0x5e88c2de, 0x302f2b24, + 0xfe02404e, 0x07315024, 0xe2be3734, 0x0b0a011b, 0x025b520a, 0x04a6fd06, 0x011ffe63, 0xd78200e1, 0x5ffea424, 0xd7825204, 0x58001a27, 0x0d021540, + 0x29018216, 0x1a091210, 0x151b1c1a, 0xd2831919, 0x01b8182e, 0x1515b37b, 0x0b411410, 0x11007801, 0x0526a382, 0x0b007e01, 0x0d821900, 0xa9850120, + 0xdced3323, 0x0f1655ed, 0x18453320, 0x21a78206, 0xf9472121, 0x48152006, 0x2120050f, 0x1521a983, 0x23018321, 0xa7fe5204, 0x2606f847, 0x9ffe8152, + 0x5581fe05, 0x1e2809a3, 0xc822b015, 0x1c3e0118, 0x2108ad55, 0x2d430002, 0x317e8206, 0x404e0018, 0x08110f11, 0x111a1515, 0x04030d00, 0xcc82a004, + 0x01b80127, 0x0404b27d, 0x29068210, 0x000d0db3, 0x7701be0c, 0xb1820500, 0xa1561120, 0x39122d0a, 0x2f33ed2f, 0x5d2f01ed, 0x33332f33, 0x27059e5f, + 0x30313912, 0x35231133, 0x2e08b356, 0x23153315, 0x36323315, 0x23263435, 0x567676a4, 0x370807bb, 0x36d5d555, 0xd8b6afe2, 0x01c9ef01, 0xfecefdab, + 0x03e4feeb, 0xf0c9ad65, 0x969c999b, 0x7100ffff, 0x0605e9ff, 0x26026406, 0x00000104, 0xd9000601, 0x19000025, 0x1e1e01b2, 0x25062843, 0x1b214221, + 0xfd431a06, 0x2031850b, 0x2731888c, 0x000018d6, 0x1f01b117, 0x1f223086, 0x30881f35, 0x83003521, 0x59fe2561, 0x79040605, 0x032a2f87, 0x0000748e, + 0x1d01b70c, 0x27861d65, 0x14208588, 0xda215388, 0x2185842f, 0x54861c1c, 0x1d4b1d23, 0x08858a1e, 0x00020030, 0x05000036, 0x0063046f, 0x00170013, + 0x121c4081, 0x010f1010, 0x8f030f14, 0x02020102, 0x090c1906, 0x17060b0b, 0x06a00505, 0xba0f0601, 0xda824d01, 0xb37e2408, 0x070d1111, 0xb27e01b8, + 0xbb160a0a, 0x0d007e01, 0x78010400, 0x00170c40, 0x02171017, 0x170d170d, 0x82bc0c05, 0x49052029, 0x122d0952, 0x2f2f3939, 0x10ed105d, 0xed2f33ed, + 0x20038211, 0x06ac573f, 0x6a08e977, 0x312205a2, 0x844f0130, 0x23112705, 0x21353335, 0x03822115, 0x05153322, 0x30560582, 0x6e6e2107, 0x30053256, + 0xfe23fe6e, 0xfde30282, 0xfe38011d, 0xc7e302c8, 0x230082b9, 0xa2a2a2c7, 0x27068144, 0x8c060105, 0x02042602, 0x0623ae82, 0x44fed600, 0x04230db1, + 0x45060c10, 0x7c240b45, 0x7a030000, 0x03202f84, 0x07252f82, 0x35ff8d00, 0x0d774500, 0x0d0f4a22, 0x7920318c, 0x7e223182, 0x61826406, 0xd9223185, + 0x318223ff, 0x01b21922, 0x21097945, 0x64881200, 0x2005ad44, 0x20338241, 0x22658abe, 0x8527ffd6, 0x08494565, 0x5d20978f, 0x9f223182, 0x65881406, + 0x26ff8e22, 0x4b453182, 0x1203220e, 0x459a850f, 0xcf85094b, 0xda203789, 0x9d823784, 0x420d0d21, 0x0e220605, 0x35860e03, 0x41074b45, 0x43220f03, + 0x4b4510ff, 0xb4b62210, 0x08d38b0f, 0x00020030, 0x07eeff7c, 0x00630410, 0x001c0010, 0x0e134054, 0x140c0c00, 0x1106191e, 0x12161b1b, 0x1401140f, + 0x1041151a, 0x17007901, 0x1b004d01, 0x09821400, 0x4b011224, 0x59570e00, 0xed3f2112, 0x3206ff4d, 0x103332cd, 0x113232cd, 0x332f3912, 0x013031c6, + 0x57230414, 0x01200c5f, 0x310add57, 0xf2fe1007, 0x23709ded, 0x456a6959, 0x8502effe, 0xed576afc, 0x64012e07, 0x0123ccaa, 0x696a2a1e, 0xfbff8c01, + 0x07fc579d, 0x00ffff27, 0x0300006c, 0x0a53418e, 0x25ffd822, 0x4105b941, 0x0220091b, 0x270c1b41, 0x7c000100, 0x12045ffe, 0x1a26e582, 0x14404f00, + 0x11820617, 0x1419192f, 0x03091210, 0x120f0d0d, 0x13181201, 0x20d28341, 0x081c4515, 0xe0821220, 0xe8821020, 0xa3581920, 0xed3f2308, 0xa658eddc, + 0x2f332305, 0xe082cc33, 0x4d07ab58, 0x1c450716, 0x0bba5807, 0x1b45c120, 0x5899200c, 0x174505c7, 0x82d48609, 0x823e20d3, 0x06b522d3, 0x08274252, + 0x21ffd722, 0xb122d383, 0x3c471501, 0xb8192505, 0x19b4ffff, 0x260df342, 0x03eeff39, 0x828c06d9, 0x00042833, 0x00070100, 0x4242ffd6, 0x3383058d, + 0x26094029, 0x154d1501, 0x48100611, 0xfe250b6b, 0x047a0559, 0x20318263, 0x23318305, 0x54018e03, 0x0f2b3182, 0xb80e01b1, 0x0eb4aaff, 0x8400060c, + 0x0509492c, 0x842d0421, 0x0006215b, 0x8d225b83, 0x8f85d3fe, 0x8f850920, 0xffb80928, 0x0709b47b, 0x30840502, 0x00352b22, 0x2d050155, 0x63049f04, + 0x09000300, 0x1a404500, 0x14820301, 0x020b2308, 0x0202023b, 0x09140809, 0x09020934, 0x05a0080b, 0xbf060501, 0x08004d01, 0x05007701, 0x01004b01, + 0x0d820300, 0x3fcd3f22, 0x24089c58, 0x5d391211, 0x06aa4c11, 0x13230325, 0x82112113, 0x9f042501, 0xf477eaf3, 0x2a07ad58, 0xc1013ffe, 0x63049dfb, + 0x8300b5fc, 0x59fe23ab, 0xd5842d04, 0x0323ab84, 0x85f8008e, 0xb80826d5, 0x08b4f4ff, 0x86a48606, 0x052759a1, 0x3b000924, 0x29591840, 0x090b2f05, + 0x0801083f, 0xa0040408, 0x07010101, 0x34590808, 0x39122310, 0xba47332f, 0x5d2f2305, 0x3d591133, 0x21272209, 0x09415935, 0x01cffe23, 0x21908331, + 0xd282fae4, 0x00262408, 0x04350400, 0x000d0063, 0x141d4044, 0x020d340d, 0x090f010d, 0x03060707, 0x0103060c, 0x02050b08, 0x82030904, 0x06012201, + 0x20fc82bc, 0x099f590c, 0x39391227, 0x17122f2f, 0x08ef6f39, 0x0807ac59, 0x37350734, 0x25112111, 0x21110515, 0x77fc3504, 0x73018686, 0xf1fe0f01, + 0x14011602, 0x0261e361, 0xc5a1fe6c, 0xf7fec5e3, 0xa600ffff, 0x10050000, 0x26028c06, 0x494c0804, 0x0736440b, 0x0d710d25, 0x4209050b, 0x2f8f0a13, + 0x254bdf20, 0x07815005, 0x0c0d0124, 0x30870a0d, 0x26050545, 0x0559fea6, 0x86630410, 0x03072461, 0x416d018e, 0x0c25056f, 0xb4f7ffb8, 0x882d870c, + 0x8852208b, 0x82d7208b, 0xb1172392, 0xc2441301, 0x05172206, 0x215a8817, 0x2f820035, 0xe9ff7024, 0xbb847005, 0xbb850920, 0x00002726, 0x1802b117, + 0x02242f85, 0x16184718, 0x5206a242, 0x2f850509, 0x5f826420, 0xd9262f85, 0x19000017, 0x054d02b2, 0x1b022407, 0x87151b00, 0x8fbb8530, 0x19d62161, + 0x19206184, 0x19226186, 0x30881901, 0x1420918a, 0x8e296188, 0x1d000018, 0x1a0203b3, 0x05094b1a, 0x63830320, 0x63851820, 0x8f09bd45, 0xf4432865, + 0xb21b0000, 0x4e161602, 0xa52208f6, 0x999e18b4, 0x8320dd21, 0x885f8233, 0x87452068, 0x526882cc, 0x67850571, 0xd8209d89, 0xff829d82, 0x40266784, + 0x17022609, 0x9b861700, 0x822b0021, 0x005d08ff, 0xff670003, 0x04700596, 0x001300ab, 0x0021001a, 0x1c27406d, 0x040a0714, 0x1b152009, 0x0c040011, + 0x20020213, 0x20200120, 0x0909230c, 0x940c5419, 0x070c020c, 0x04141c0a, 0x01b81708, 0x0f094078, 0x1b150011, 0x0f131304, 0x004e01ba, 0xb379011e, + 0x05080805, 0x004c01b8, 0x102f333f, 0x260482ed, 0xed103917, 0x6b391711, 0x11270503, 0x5d2f3912, 0x82c41033, 0x74112010, 0x6b080552, 0x00101116, + 0x07272221, 0x11263723, 0x32210034, 0x01333717, 0x20232601, 0x01011411, 0x11203316, 0xc9a70434, 0xd9fea6fe, 0xb58090c3, 0x6301b7c0, 0x8fb21c01, + 0xbbfcb863, 0x543a7801, 0xed01f5fe, 0x623d7ffe, 0xe7030a01, 0xfef4feaa, 0x47b9feff, 0x01a0e89a, 0x4a01ff13, 0xd1fc7746, 0xfe20d101, 0x300167c0, + 0x012e24fe, 0xffff7e41, 0x0625e985, 0x0426028c, 0x054b4255, 0x00001c26, 0x2503b117, 0x2605e941, 0x25402503, 0x43020c23, 0x4b410a07, 0x41522005, + 0xd72708e9, 0x19000013, 0x411e02b1, 0x222505b2, 0xb4fcffb8, 0x08b24122, 0x00352008, 0x6f000200, 0x23070000, 0x0f006304, 0x63001800, 0x0c0c1d40, + 0x00081808, 0x180e0e0a, 0x8201000f, 0x18270812, 0x040f141a, 0x94045401, 0x0d040204, 0xb67b01b8, 0x0a010ac0, 0x4111010a, 0x0077010a, 0x00780109, + 0x004d0106, 0x4317000e, 0x322308fd, 0x61eded3f, 0x96500705, 0x115d2206, 0x82018433, 0x30312816, 0x00202121, 0x50211011, 0x0121089c, 0x05b45123, + 0x07332d08, 0xfe25fc23, 0x0282fea5, 0xfdcf03e5, 0xfd0302c8, 0xfc3802fd, 0xa9c1376f, 0x0135c7a5, 0x0216011b, 0x9cf7fe32, 0x4802cde9, 0x8e929588, + 0x2007a945, 0x30b982bb, 0x0015000c, 0x09114046, 0x12011224, 0x0e170212, 0x06e85b05, 0x7b01bb22, 0x0d209982, 0x0521b382, 0x5801820e, 0x39290d92, + 0xed102f2f, 0x2f01ed10, 0x209b825d, 0x05e54133, 0x25303123, 0x23978315, 0x15043233, 0x0806f45b, 0x34353628, 0xfd012326, 0x5901a7fe, 0x0401f5c5, + 0xbff2f3fe, 0x696f9c4e, 0x04b5b598, 0xb2ba9e63, 0x2202e6be, 0x564acdfe, 0x6d46474c, 0x76052705, 0x26028c06, 0x334f0c04, 0x1702210a, 0x2305ab41, + 0x170a1702, 0x220d9543, 0x8c0000a4, 0xd2df212f, 0x260c5f43, 0x9fffb817, 0x431417b4, 0xa4260df9, 0x760559fe, 0x63866304, 0x8e030730, 0x00006001, + 0x02b10f00, 0xb8ffb816, 0x2d8716b4, 0x5a248d82, 0x7d04ecff, 0x0d208d84, 0xb6268d85, 0xb1170000, 0x8d852801, 0x5a280126, 0x200d2628, 0x8f0a3942, + 0x9ddf282f, 0xb2190000, 0x87272701, 0x280b2230, 0x21308725, 0x52823511, 0xfe5a0030, 0x047d0459, 0x00330077, 0x021b4054, 0x0182080f, 0x24132408, + 0x18183232, 0x0f2b1335, 0x2f1f1f1f, 0x2b1f031f, 0x41281018, 0x007b010b, 0x004e0122, 0x007e010b, 0x82160005, 0x0000260d, 0x004c0110, 0x07b14d3f, + 0x2f013927, 0x12c4335d, 0x05a76c39, 0x2f2f3927, 0x30313311, 0x05755125, 0x33352729, 0x36323316, 0x71233536, 0xad5b0993, 0x03103116, 0xa0c70547, + 0x57174d88, 0x134a4747, 0xdcd5fe05, 0x2b17ba5b, 0xa12b3409, 0x23c818b0, 0x565b4239, 0x2119c05b, 0x4741f6fe, 0x95d62712, 0xb1170000, 0x16412901, + 0x02292206, 0x08164129, 0x83003521, 0x0515412f, 0x04260223, 0x059d480d, 0x00e0002d, 0xb10f0000, 0xffb82701, 0x8727b4d9, 0x0a195c2c, 0x000f2908, + 0x0f11404d, 0x0c0c0101, 0x060a400d, 0x10110707, 0x0d0e0d01, 0xb47701b8, 0x0a090559, 0x7d01b809, 0x0a0259b5, 0xba0e070a, 0x2608fc63, 0x332f3912, + 0x8411002b, 0x11013803, 0x2f183912, 0xcc1a3333, 0x10332f33, 0x013031cc, 0x15331521, 0x4c211123, 0x112b05ba, 0xfea80421, 0xfed2d276, 0x5cd3d391, + 0xd629054b, 0x014bfec9, 0x01d6c9b5, 0x26af830f, 0x04000024, 0x828c06a8, 0x820e20af, 0x00062aaf, 0x00008edf, 0x0a01b219, 0x25e0860a, 0x080b010b, + 0x2d4e0706, 0x82b78308, 0x04a83ce1, 0x00170063, 0x050f403b, 0x17141212, 0x0a150101, 0x18191414, 0x01bc1401, 0x82160077, 0x010e30a6, 0x0208b27e, + 0x4b01b813, 0xdc333f00, 0x5ced3fed, 0xcc2405e0, 0xcd1033cd, 0xa583bc83, 0x41331121, 0xb3820fe1, 0x0120ad84, 0x2207c641, 0x5d0e4b4a, 0xc0320700, + 0xb0a11852, 0x3d23c818, 0x54036f3e, 0xffff0f01, 0x87852400, 0x0724b986, 0xe7008e03, 0x25056941, 0xe6ffb80a, 0xb5870ab4, 0x94242982, 0xec04e9ff, + 0x0f20e384, 0x8d20e384, 0x2005df4e, 0x24e28614, 0x12146814, 0x0b614a07, 0x64202f85, 0x2f855982, 0x00ebd927, 0x01b21900, 0x23308714, 0x11170317, + 0x91473087, 0x20618f05, 0x223182d6, 0x4a01b117, 0x032108c3, 0x21308815, 0x91880035, 0x61881420, 0x00ea8e27, 0x02b31d00, 0x05f44601, 0x02260a27, + 0x17021701, 0x47638514, 0x658f0991, 0x00f14328, 0x01b21b00, 0xc8821212, 0x0126b228, 0xd2ffb814, 0x999e14b4, 0x830bdd21, 0x475f8233, 0x08820591, + 0xcc876020, 0x85089147, 0x219d8967, 0xff84e9d8, 0x40266784, 0x13012609, 0x9b861301, 0x08059147, 0x94000121, 0xec045ffe, 0x1e006304, 0x0d403e00, + 0x150f0f05, 0x1d1e1e0b, 0x1516201d, 0x010b411d, 0x8216004d, 0x01072c03, 0x000d007e, 0x00770119, 0x43110003, 0xdd2205fd, 0xa85e3fed, 0x05015107, + 0x01303127, 0x020f0614, 0x07e76006, 0x37341124, 0xbb5e2626, 0xdbf8220c, 0x05a15901, 0xfe815226, 0xe0cf049f, 0x2308c35e, 0x0b14e2b7, 0x2406aa51, + 0xe11a2232, 0x08cf5eaf, 0x20086d41, 0x086d41ff, 0x45eddb22, 0x230e0954, 0x1a140514, 0x20156d41, 0x24358852, 0x0000e5d7, 0x05a95519, 0x0126b228, + 0xfeffb81e, 0xd5411eb4, 0x0042260d, 0x066b0700, 0x2831828c, 0x01000011, 0x008d0007, 0x0e594ffa, 0x0e103322, 0x8f0cfb49, 0x01d62131, 0x002f3082, + 0x1101b117, 0x404f01b8, 0x11012609, 0x920d1102, 0x88142031, 0x008e2263, 0x223282ff, 0x4202b31d, 0x40280506, 0x0102260a, 0x10130013, 0x8f0fcd49, + 0x00432269, 0x243782ad, 0x0e01b21b, 0x053d420e, 0xffb81025, 0x8810b478, 0x05d7426c, 0x00000924, 0xd1841d05, 0x39431320, 0x00f92105, 0x0c209d83, + 0x0c249d86, 0x050a0c76, 0x4a056e4d, 0x2f8f05cb, 0x84ccd621, 0x08b74b2f, 0x090d1122, 0xcd832f92, 0x8e245f85, 0x1d0000cb, 0x9484cb82, 0x0f23cb84, + 0x850c0f10, 0x09074332, 0x4324658f, 0x1b00008b, 0x2806b344, 0x0c0126b2, 0xb499ffb8, 0x8568880c, 0x005823c9, 0x9b410400, 0x85142005, 0x23998ec9, + 0x020b0d7a, 0x8f0b514c, 0x8ddf262f, 0xb2190000, 0x09514c01, 0x0a0d0522, 0x618b3087, 0x6185cb83, 0x8493da21, 0x0b0b2131, 0x22072c41, 0x8d0d0c09, + 0x001b2a31, 0x04280500, 0x03060263, 0x087557fb, 0x0f84c620, 0x8200fc21, 0xa20021a4, 0xe94db382, 0xb7202e05, 0xa0020700, 0x01030103, 0x007701bc, + 0x08295f04, 0x2464ed20, 0x30312105, 0x31053462, 0xe4fd2d04, 0x8b0391fe, 0xadfc5303, 0x02006304, 0x61822800, 0x09824b20, 0x06000333, 0x04b26400, + 0xffb80300, 0x093340e0, 0x0203480e, 0x24058220, 0x01050502, 0x05d36324, 0x5b060839, 0x013f0101, 0x2b02014f, 0x010f0101, 0x0102011f, 0x057b056b, + 0x82100502, 0x02052227, 0x207282bc, 0x09465006, 0x5d2b3322, 0x5d217982, 0x05e36b5d, 0x11391226, 0x2b332b33, 0x3606f167, 0x03031321, 0xddfa4b05, + 0x9501c801, 0x04dada0b, 0x029bfc63, 0x49e2fd1e, 0x04210521, 0x20df8452, 0x24ef84ff, 0x04000058, 0x210f836b, 0x0f841404, 0x0000a424, 0x0f840105, + 0x00000224, 0x51660300, 0x0c310808, 0x19001500, 0x28405600, 0x030f1918, 0x640114a0, 0x14200114, 0x1b141401, 0x0109940f, 0x09010955, 0xbf18af17, + 0x188d0218, 0x01187901, 0x12001818, 0x28a982be, 0x004c0106, 0x0078010d, 0x08fb6300, 0xaf832f20, 0x84084c5d, 0x313926bb, 0x00200130, 0x054b6515, + 0x21003423, 0x084c6513, 0x21352128, 0x1501f502, 0x82666601, 0x66300808, 0xfe011901, 0x01868cee, 0xa8fe6611, 0x7a045801, 0xfefdb4fe, 0x01b9feff, + 0xff070141, 0xfafe4a01, 0xb693b9fe, 0x47014901, 0x00c85dfe, 0x7c00ffff, 0x7a20c282, 0x0320cd84, 0x0f85dd88, 0xdd820520, 0x1b000122, 0x1735ed82, + 0x06006304, 0x1f405500, 0x16010437, 0x3a040104, 0x03190103, 0x3e2f8201, 0x05060601, 0x01023b01, 0x021f020f, 0xb8060202, 0x0d404b01, 0x007b006b, + 0x09100002, 0x4a00480e, 0x2b220dcc, 0xd6833f5d, 0x332f3225, 0x63391211, 0x21360e5f, 0xecfe9202, 0xc5019dfe, 0xc2017501, 0xc7028bfe, 0x630439fd, + 0x8d419dfb, 0xe3052105, 0x07209f84, 0xa6209f84, 0x10208f82, 0x08200f84, 0x03209f82, 0x00226c82, 0x9f825d04, 0x0700033e, 0x45000b00, 0x03070c40, + 0x0a0b0b03, 0x0202060d, 0x01b8050a, 0xdf0a407b, 0x06490106, 0x0221a982, 0x05dd670a, 0x01004b23, 0x05136d01, 0x3fed3f2a, 0x2f3912ed, 0x01ed5d5d, + 0x96839482, 0xa6420683, 0x21033305, 0x21132135, 0x5d042111, 0xe2031efc, 0x036ffc28, 0x09832891, 0x0159032a, 0xea6efd0a, 0x090145fd, 0x2507454f, + 0x06027a04, 0x8d820904, 0xa4000122, 0x00209d82, 0x07278d82, 0x0d402c00, 0x82018f00, 0x6c092000, 0xbd200505, 0x27064a65, 0x01050001, 0x333f004b, + 0x210ae35b, 0x226a3031, 0x21113105, 0x92fe0005, 0x92fe80fe, 0x54035c04, 0x6304acfc, 0x0421ff85, 0x20ef84b8, 0x7561840a, 0x3f0805d3, 0x000c0063, + 0x2c164062, 0x030b0103, 0x033b031b, 0x0b080303, 0x06020909, 0x010c1406, 0xc0ffb80c, 0x0e0b0d40, 0x0e0c0c48, 0x01020f05, 0xb8080402, 0x0ab57801, + 0x01030309, 0x4d01bd05, 0x0b000200, 0x260a4762, 0x33113912, 0x4332ed33, 0x2f2b05a2, 0x2f335d2b, 0x392f3912, 0x6a5d3339, 0x012305ba, 0x82211101, + 0x15220898, 0x5b042101, 0x92010efc, 0xcd037cfe, 0x5901f5fd, 0x2f029afe, 0x3e010601, 0x01011e01, 0x4ef7f7fe, 0xa749f3fe, 0x21ad8408, 0x0f83000e, + 0x71630920, 0x06022305, 0xbd821304, 0x00035d08, 0x06f2ff61, 0x00710451, 0x0013000e, 0x40670018, 0x010a1428, 0x03011307, 0x06160c02, 0x02150102, + 0x8f164f01, 0x16640216, 0x02021674, 0x1a160216, 0x1f050f11, 0x18050205, 0x7d01b80f, 0x0a0a07b4, 0x01bb0807, 0x0014004e, 0xb27d0113, 0xb8020300, + 0x3f004c01, 0x32ed32dd, 0x2f32cd3f, 0x08bb4a18, 0x2f2f3923, 0x2400825d, 0x17113311, 0x08db8233, 0x2530314d, 0x24352115, 0x35251011, 0x11041521, + 0x06010414, 0x21171415, 0x27343536, 0x94fe0f04, 0x4202befd, 0x42026c01, 0x81fdd1fe, 0x6c01dddd, 0x7e70dcdc, 0x9c01307e, 0x72339001, 0x5bfe1e72, + 0x9802f1c9, 0x1bc9c41d, 0x1bc6c91b, 0x6400ffff, 0xd18206eb, 0xd1821220, 0x00012c08, 0x0600007c, 0x0063042d, 0x40510015, 0x130d0019, 0x01131401, + 0x16041113, 0x0e040104, 0x1601050d, 0x0c050105, 0x01bd1409, 0x820f004d, 0x00032b03, 0xb47c0106, 0x050e0e11, 0x0e82ba0a, 0x4b010529, 0x123f3f00, + 0x82332f39, 0x013f2cc2, 0x5ddc332f, 0x5d32325d, 0x64cc3311, 0x14220546, 0xba830506, 0x08051867, 0x21111771, 0x11353611, 0xfe2d0621, 0x97fedafe, + 0xfffeddfe, 0x01bc6801, 0x6801bc69, 0xe2d6ce02, 0x1df8f81e, 0x9501d4e5, 0x1de173fe, 0x75fd8b02, 0x8d01e717, 0x31000100, 0x6a050000, 0x1b007a04, + 0x29406300, 0x01260116, 0x01860136, 0x29131904, 0x03138913, 0x12021301, 0x160f0d0d, 0x1a021d16, 0x1f070f04, 0x05070207, 0x1414000f, 0x010b4111, + 0x82120078, 0x0118289d, 0x010a0079, 0x8203004e, 0x8202200f, 0xed3f210f, 0x32280183, 0x3939332f, 0x335d2f01, 0x27050f4d, 0x11c41033, 0x5d5d3939, + 0x29068f58, 0x34112435, 0x04202124, 0xbd821015, 0x3424b484, 0x14152223, 0xa62c9482, 0xc6fe6c01, 0x05016501, 0x5f010b01, 0x24080982, 0xaaa7fd6d, + 0x9b01eded, 0x080165fe, 0x2c01701a, 0xc8f4f2ca, 0x1a71d5fe, 0x9b01f8fe, 0xe7e7a15a, 0xffff00a1, 0x37d75700, 0xf9820920, 0x47061d21, 0x21652fb5, + 0x9d01280e, 0x170000df, 0x470d02b1, 0x0223051e, 0x650d160d, 0x215e0d21, 0x9d01220e, 0x202f83c4, 0x06206501, 0x210e0123, 0x10835e0e, 0x220b6d59, + 0x8d269d01, 0x0e2c212f, 0x580d3b59, 0x01240e69, 0x0044ff9d, 0x6182318d, 0x530c6d59, 0x01220e11, 0x2f83329d, 0x2109e14f, 0xd953171a, 0x0ea7480d, + 0xe39d0122, 0x10485f84, 0x280b2207, 0x0d3d490b, 0x00004031, 0x8c067905, 0x92042602, 0x0601000f, 0x841f9d01, 0x07b85b2f, 0x1e1b1e25, 0x6612031d, + 0x04200f43, 0x56063f48, 0x31080619, 0x006304d7, 0x0013000b, 0x03124044, 0x0e200808, 0x150e0e01, 0x13130500, 0x000100a0, 0x7d01b812, 0x000505b3, + 0x7901be04, 0x4d010100, 0x7b011300, 0xba720000, 0x72ed2009, 0x2f2008b9, 0x0805257f, 0x21113333, 0x33152111, 0x04141120, 0x35322723, 0x23232634, + 0xdc03a411, 0x01f191fd, 0xd7fefed5, 0x734fc358, 0xfe630498, 0xaafea3fe, 0x83ebc0a8, 0xfefe413e, 0x06594500, 0x8208c748, 0x00a3240f, 0x832e0400, + 0x7d0423a7, 0xa7820001, 0xfdfe4323, 0x05d76905, 0x00113408, 0x001d4054, 0x110e0a01, 0x0f050f07, 0x6f090f09, 0x0e010209, 0x010e0909, 0x1f041303, + 0x0f050105, 0x007801ba, 0xb24d0109, 0xb80d060b, 0x04b27801, 0x83b80201, 0x32cd24b0, 0x453232ed, 0x172b06e9, 0x2f2f2f39, 0x1133115d, 0x82393912, + 0x46332005, 0xba820566, 0x83123321, 0x212a0804, 0x03022311, 0xb1fe6b05, 0xb2fe75fd, 0x9f03b659, 0xf021fe7a, 0xfdfe8713, 0xfdfe0301, 0x85010c02, + 0xa6fcd501, 0xf1fe5102, 0xa348befe, 0x05854212, 0x082c4560, 0x00010030, 0x07000012, 0x0067047c, 0x40710029, 0x24142318, 0x1d011d24, 0x14292828, + 0x03131304, 0x0a010a2b, 0x2901290f, 0x7701b827, 0x041515b4, 0x08820023, 0x1212b326, 0x0f412913, 0x2520da82, 0x1f280382, 0x1b007601, 0x13004d01, + 0x09200382, 0x0a200b82, 0x2a09a76e, 0x3fed3f3f, 0x2f39123f, 0x5e3939ed, 0xc429053f, 0x2f33325d, 0x33113339, 0x21098210, 0xfc823911, 0x21012338, + 0x26272601, 0x36112323, 0x17163233, 0x11371616, 0x36161121, 0x00793637, 0x07222305, 0x21820706, 0x11235208, 0x45110321, 0x4afefcfe, 0x4f1d7b01, + 0x58345f3a, 0x2e8c7b42, 0x014b4360, 0x4d45486d, 0x61719246, 0x3d5b3639, 0x7b012943, 0xfcfe4bfe, 0x0193fe45, 0x025cfea4, 0x5a801b3e, 0x5b043001, + 0x0447bc5a, 0x50feb001, 0x8b974604, 0xd0fe0450, 0xfd27715d, 0x202183c2, 0x08fd8200, 0xe9ff563e, 0x7a04b404, 0x5b002400, 0x21001140, 0x151c1221, + 0x0e0e0315, 0x09091c26, 0xb8181b1c, 0x1eb37901, 0xb8112400, 0x0d407d01, 0x128f127f, 0x12df12cf, 0x06121204, 0x4e01bd1e, 0x0c000900, 0x2206bc49, + 0x8332ed3f, 0x825d20e8, 0xed1025e9, 0x332f0132, 0x13aa4318, 0x43180420, 0x232709aa, 0x32333523, 0x18263435, 0x0809ea51, 0x0706143c, 0x8e81a503, + 0xdafec7fe, 0x27c1c2fe, 0xc4d2ecf9, 0x5cc3d4e6, 0x25c8f649, 0x0101e2ec, 0x69822801, 0x8f0b4902, 0x47ba9d6f, 0x7e611901, 0x296fd871, 0x16015b32, + 0x628c9046, 0xc7821494, 0x23097f71, 0x040c4084, 0x3207314b, 0xb8070b09, 0x0e40e0ff, 0x07480e09, 0x09a00000, 0x82860901, 0xffb82d4b, 0x0f2d40b8, + 0x01404810, 0x32020150, 0x24088d6b, 0x06010689, 0x3b168248, 0x065f064f, 0x01063d02, 0x061b060b, 0x0103062b, 0xbe090806, 0x08004d01, 0x04004b01, + 0x03240382, 0x3f004d01, 0x12200082, 0x320e8571, 0x2b331133, 0x2f391211, 0x31332b33, 0x01110130, 0x83211121, 0xed012b04, 0x6a01b901, 0x38feb9fe, + 0x8071a5fe, 0x9dfb2105, 0x20058c71, 0x073b59ff, 0x2602552d, 0x0000a504, 0xce040601, 0x5d0000f9, 0x10240b73, 0x090a1001, 0x7309fd63, 0x20080579, + 0x70043905, 0x4c001400, 0x0e141240, 0x00000108, 0x39010e1b, 0x080e010e, 0x0f050404, 0x007601bd, 0x26a0820e, 0x01030014, 0x7308b378, 0x2f2613ff, + 0xed3f39ed, 0xae822f01, 0x5d5d2f22, 0x23054a7c, 0x21213031, 0x0805dd6f, 0x36321134, 0x17363637, 0x07222311, 0x39050706, 0xc9fe43fe, 0x0192fe33, + 0x5f503f6e, 0x35ccc562, 0x394c4972, 0x58fea801, 0x50fe6304, 0x50978f47, 0x5ad5fe0d, 0xba824061, 0xff250033, 0x042905f3, 0x00120063, 0x1011403c, + 0x01001103, 0x2d018211, 0x1f0a0f14, 0x020a020a, 0x77010941, 0x97821200, 0x9f820c20, 0x4c010722, 0x83071e67, 0x185d2088, 0x20084743, 0x05034a33, + 0x02073308, 0x27222302, 0x32173311, 0x13373636, 0xfe290521, 0x0ce2fe93, 0x57e6d81b, 0x4126263d, 0x1b15254c, 0x5403d603, 0xfe72feb0, 0x14010ddd, + 0xeea35704, 0x234b6b01, 0x0ca14c12, 0x860fa54a, 0x0400272f, 0x04060263, 0x0945008a, 0x08634a07, 0x2507cd65, 0x06027904, 0x1f84fd03, 0x00002424, + 0x2f84a804, 0x83000e21, 0xff1624f1, 0x82fd04f3, 0x000f2ef1, 0x0b134041, 0x0f0c0e0e, 0x0d110000, 0x06466905, 0xb80f0c25, 0x82b44d01, 0x0c032216, + 0x0d1176bc, 0x1139122c, 0x2f013f33, 0x1233335d, 0x03822f39, 0xf6821120, 0x02010123, 0x06b25e21, 0x01372a08, 0x04130121, 0x7e5efefd, 0x726a96fe, + 0x47574e16, 0x0129fe54, 0xeb1e017d, 0x97fc6304, 0x0110f9fe, 0x03312526, 0x02fdfd2e, 0x4ab58303, 0xc582064b, 0xa5848f20, 0x240f9949, 0x05fdfea4, + 0x3ea58278, 0x4047000b, 0x010a3918, 0x05080b0a, 0x30010b4f, 0x050b0105, 0x040d050b, 0x010101a0, 0x82094106, 0x820320a2, 0x00092603, 0x00780104, + 0x059e410b, 0x8e49ce20, 0x07195805, 0x33115d24, 0xc9753311, 0x21112108, 0x212d0e82, 0x7afc2a04, 0x80016e01, 0xfe796d01, 0x269f82b2, 0xfc5903a7, + 0x77effdab, 0x04210591, 0x247782c8, 0xb72b000f, 0x2d4f820d, 0x04060911, 0xb47a01b8, 0x0e010b0b, 0x6a82ba07, 0x4b010123, 0x06106c00, 0x332f0126, + 0x332f3912, 0x2305fe41, 0x11202306, 0x30050171, 0x04211337, 0xa092fec8, 0x0146fe84, 0x5642d570, 0x2b698201, 0x86012990, 0xaffe7601, 0xec011cb7, + 0x21050d43, 0xdd843b07, 0x12404136, 0x09000508, 0x5b01098f, 0x09050109, 0x040d0905, 0x0a410a01, 0x06206882, 0x02200382, 0x08200382, 0x7684db84, + 0x3f20d883, 0x39237584, 0x845d2f2f, 0x057a42d8, 0x21207882, 0x07270383, 0x0169f93b, 0x8528016d, 0x23d88203, 0xfc5b03a5, 0x00200382, 0xfe237383, + 0x84b407fd, 0x404829d9, 0x0f0f0e15, 0x0508090c, 0x75827685, 0x04110533, 0x01b80f01, 0x060ab252, 0x4d01b802, 0x04080cb2, 0x09664cba, 0x333f3223, + 0x20778e33, 0x09767a33, 0x33267c86, 0x67062111, 0x7e893dfa, 0xb3fe7922, 0xfc2c8189, 0x00f2fda8, 0x45000200, 0xfb050000, 0x1227f984, 0x11404200, + 0x82121205, 0x0e083715, 0x4002140e, 0x02480e0a, 0x7c01b811, 0x000505b3, 0x7701be02, 0xfd820300, 0x3e481220, 0x422b2010, 0x2f23057e, 0x82331133, + 0x487c84fc, 0x2908093d, 0x01112323, 0x0280fec5, 0xd501f3ee, 0x59cef4fe, 0x0396c2c3, 0xfe100153, 0xad9bfe77, 0x878aebc8, 0x0300effe, 0x0000a200, + 0x8382b206, 0x00032708, 0x0014000d, 0x0015404c, 0x44100a01, 0x10220110, 0x01100101, 0x07041610, 0x13041414, 0xb47b01b8, 0x02040707, 0x8682be05, + 0x86821420, 0x8d770420, 0x6eed2008, 0x01200510, 0x4106774e, 0x01200e8c, 0x918c9382, 0xfeb2062f, 0xf96e0192, 0xee6f01f0, 0xf8fed601, 0x729583d1, + 0xfe240584, 0xb495fe84, 0x02209786, 0x04219783, 0x339782d5, 0x00100009, 0x060d4037, 0x0c010c44, 0x0300120c, 0x0f001010, 0xb3258d82, 0x01000303, + 0x208c82bc, 0x09134110, 0x4505ca6c, 0x2f25050d, 0x3031335d, 0x207c8f33, 0x8b758da2, 0x012c0871, 0xeaff5c00, 0x7904b404, 0x58001a00, 0x010d1b40, + 0x19741964, 0x01193802, 0x19011920, 0x1c1a191a, 0x09401207, 0x1312480c, 0x7a01bb16, 0x1a319382, 0xdfb67c01, 0x00000100, 0x01bd100a, 0x0007004c, + 0x23168204, 0x004e010a, 0x22084647, 0x7132ed10, 0x392605ed, 0x5d5d2f2f, 0x9082335d, 0x26210122, 0x20082e47, 0x05d75c00, 0x33116908, 0x36323316, + 0x70012137, 0xa918d301, 0x2acab06d, 0x1a01f9d7, 0xa7fe5901, 0xeadbc6fe, 0x95c8b025, 0x27fe04b7, 0x6d61b602, 0x63190187, 0xfafec2fe, 0xcbfeeafe, + 0x91220163, 0x00007083, 0xffa40002, 0x049e07e9, 0x0012007a, 0x4060001b, 0x151a0d15, 0x000f0007, 0x1a02004f, 0x1d001a00, 0x02020603, 0x09411803, + 0x10007901, 0x1324a582, 0x0a007801, 0x0131a382, 0x0d407601, 0x06400630, 0x06900670, 0x03060604, 0x0b0c7204, 0xed5d2f23, 0x4101823f, 0x11230bd1, + 0x83113333, 0x422320bf, 0x36220562, 0xc5513324, 0x01242406, 0x82141122, 0x116c08c1, 0xa4b60210, 0x6e0192fe, 0x47013cb6, 0x011901db, 0xfeabfe5f, + 0xfefefedd, 0xfa4b02b7, 0x01fb7c7e, 0x043dfec3, 0xbe84fe63, 0xfcb3fed5, 0xb9fefffe, 0xfe8802fc, 0x01ac95c0, 0x00400141, 0x00f6ff02, 0x04c80400, + 0x000c0063, 0x404c0013, 0x0d000a16, 0x0850070d, 0x02080801, 0x0c0c0b15, 0x01021f11, 0xb80a0002, 0x13b37e01, 0xbe0c0513, 0x2706c46e, 0x007a010f, + 0x004d0105, 0x2208a149, 0x835d2f01, 0x055d5ca7, 0x3911332c, 0x01303139, 0x24343526, 0xb6822133, 0x01233708, 0x23110121, 0x33141522, 0x01e78b01, + 0x0e02f620, 0xfe6b90fe, 0x0344fec5, 0xd4bd8662, 0xd664dd01, 0x9dfba9a3, 0x75fe8b01, 0x1d015102, 0x01009687, 0x00002100, 0x9582d805, 0x4600172b, + 0x0e140d40, 0x09190404, 0x3193820f, 0xb807090c, 0x10b47b01, 0x0a0f0910, 0x78010941, 0x84820c00, 0x94820920, 0x8b420120, 0xed3f2209, 0x068e4232, + 0x82113321, 0x2a0b8293, 0x30313333, 0x32333521, 0x41233435, 0x3e080545, 0x15211121, 0x15163221, 0x03230414, 0x9a8b31a2, 0xfe92fed3, 0xfe41049e, + 0xe407018f, 0xd4fafefc, 0xfe676fee, 0x015a033c, 0xa6f7fe09, 0xc5ab9ca8, 0x00ffff00, 0x040000a2, 0x028c063a, 0x557d0426, 0xff260555, 0xb1170000, + 0xd34d0901, 0x09012505, 0x040709a7, 0x08095d63, 0x6f00013b, 0xc604eaff, 0x23007904, 0x12405300, 0x12230a0a, 0x1a011a20, 0x0f01251a, 0x22120112, + 0x01b80102, 0x1a0d407c, 0x22df0a15, 0x01227001, 0x1f0f2222, 0x007a01be, 0x004e0115, 0x23078205, 0x004c010f, 0x20085852, 0x05817e39, 0x335d2f22, + 0x5d2bcb82, 0x2f333912, 0x21013031, 0x18161415, 0x0807e06e, 0x2306075a, 0x10110020, 0x17322100, 0x23111716, 0x23262726, 0x21070622, 0x27feb203, + 0x8bb4a8a8, 0x12241921, 0xfed0bc27, 0x01a7fec7, 0xdd190159, 0x2a2b2b9d, 0xa29f2315, 0x0117aa6e, 0x05d101d3, 0x19698c62, 0x06d7fe12, 0x33014a0f, + 0x07011801, 0x113e3d01, 0x0ce0fe10, 0x616d6717, 0x5a2bf983, 0x7d04ecff, 0x06027704, 0x83000d04, 0x0fed530f, 0x20375b4f, 0x05157e39, 0x28085782, + 0x00000004, 0xff330002, 0x04fb07f3, 0x00190063, 0x40610020, 0x2020131b, 0x1f110200, 0x02113f11, 0x11001100, 0x1c1c160a, 0x050f4922, 0x01b81f31, + 0x134fb67b, 0x00131301, 0x010b4102, 0x49110077, 0x20200a1a, 0x53090942, 0xed220699, 0x4d712f01, 0x053c4d07, 0x45113321, 0x072305b2, 0x49060206, + 0x11200b2a, 0x2a0b2e45, 0xfeca0315, 0x52140ee3, 0x4956acc7, 0x23080937, 0xfed501ef, 0xc258d6fd, 0x540397c1, 0xe5fefdad, 0x14010d9c, 0xefa25704, + 0x69fe6b01, 0xc4aba3fe, 0xf4787ceb, 0x21059d4e, 0xc982c507, 0x1800113f, 0x18406e00, 0x0818180b, 0x24140e00, 0x14000114, 0x1a041400, 0xa0030307, + 0x09040104, 0x20b682bd, 0x36ae8217, 0x0102000b, 0x070f4076, 0x30010b4f, 0x02079007, 0x070b070b, 0x82be0500, 0x0104241d, 0x8918004b, 0x123f23d0, + 0xc2823939, 0xed105d23, 0x057e6510, 0x8605094e, 0x0a8946d5, 0x8f462120, 0x03152210, 0x08fc7f92, 0x01ef6e26, 0xd5fbfed6, 0x012ac683, 0x043bfec5, + 0x0186fe63, 0xc082fe7a, 0x84c3ac21, 0x067f43c0, 0xc182cc20, 0x00132108, 0x050e4043, 0x150d0606, 0x0c000012, 0x130d0f0c, 0x7801bb0e, 0x09001000, + 0x02b37b01, 0xbc100c02, 0x0c20a582, 0x20067577, 0x05ae4d3f, 0x32ed1025, 0x61332f01, 0x33270808, 0x36013031, 0x82112033, 0x23342392, 0x99840722, + 0x023f9f82, 0x0187a8f0, 0xc18ffead, 0x91fe6248, 0x3f04a0fe, 0x9c0290fe, 0xfe97fe28, 0xb82001a5, 0x4342fe1a, 0x594a057e, 0x39052706, 0x26028c06, + 0x7943a704, 0x005f2605, 0x01b11700, 0x06794318, 0x64801821, 0x16260e65, 0xfd04f3ff, 0x2f825506, 0x2f83b020, 0xb1ce0428, 0xb2190000, 0xc6641301, + 0x0a162407, 0x590c1016, 0x112106ca, 0x25228235, 0xf1fea400, 0xed820005, 0x37000b2a, 0x0b0a0e40, 0x0508010b, 0x2007db49, 0x25df82ba, 0xb24d0102, + 0x8948090b, 0xc633230a, 0xeb543f3f, 0x12332206, 0x0f824839, 0xfe2a022d, 0x016e017a, 0xfe6e0180, 0x49b0fe7a, 0x210805d6, 0xf1fe9dfb, 0x00010000, + 0x040000a2, 0x0098052d, 0x40270007, 0x0404070b, 0x02a00109, 0x00050201, 0x674801bc, 0x01022705, 0x3f3f004b, 0x5d87c6ed, 0x9d6b3120, 0x11022708, + 0x490291fe, 0xf0584201, 0x35012305, 0xb984bbfd, 0x05f4ff23, 0x08b9824d, 0x55001932, 0x03161840, 0x05010115, 0x01112405, 0x15111511, 0x180b191b, + 0x0119a018, 0x01b81919, 0x0314b44b, 0xbf0e0003, 0x08007a01, 0x02004c01, 0x79011700, 0x4d263e82, 0x32ed3f00, 0xc283ed3f, 0x4e42cf84, 0x05c94708, + 0x30313927, 0x07152113, 0x0f621804, 0x6d162007, 0x400806a0, 0x11213735, 0x2b04a421, 0xfb3801ba, 0x248e53e6, 0x6d4e4d3a, 0xfebbad81, 0x049dfe89, + 0x40c7f363, 0xbbb3f9fe, 0x1c09010d, 0x4b524850, 0xa0fcce6f, 0x7b010100, 0xbd030305, 0x04008c06, 0x01b51100, 0x27808204, 0xcd2f0002, 0x39cd2f01, + 0x2f05c173, 0xbd030135, 0x01a1fee3, 0xfe8c064c, 0x75011477, 0x28083182, 0x052e064f, 0x00bc077f, 0xb715000d, 0x0607000d, 0x030a0006, 0xcd332f00, + 0x332f0132, 0x303132cc, 0x21040601, 0x21272420, 0x27958316, 0x017f0537, 0xfffeeafe, 0xea330182, 0x02500101, 0x596d6d59, 0xb8bc0702, 0x6db8d6d6, + 0x826d6161, 0x290127ea, 0x9d04e404, 0x4f995506, 0x23061425, 0x86352622, 0x9d04374f, 0xe0dadcde, 0x48021601, 0x0249595a, 0xcfa25506, 0x6163a3ce, + 0x4982685c, 0x73004608, 0x7808efff, 0x4a00e005, 0x18408000, 0x1b241b1c, 0x3f1a1a08, 0x35114040, 0x7b01243f, 0x24240124, 0x0111004c, 0x006801ba, + 0xb216014a, 0xbb41082d, 0x19006a01, 0x6a013e00, 0x191c1cb5, 0x41401a19, 0x0016010f, 0x201f8234, 0x20078236, 0x24078225, 0x00070124, 0x2003821a, + 0x200b8210, 0x22078211, 0x823fed3f, 0x3fed2a02, 0x332f3912, 0xed10ed2f, 0x0b714e39, 0x25081483, 0x33392f33, 0x31391211, 0x32331330, 0x36373736, + 0x26353736, 0x26262727, 0x24112323, 0x16171716, 0x11333316, 0x1b861121, 0x2311172a, 0x07070622, 0x15070606, 0x04201b87, 0x21202d87, 0xb9081b85, + 0x7327020e, 0x15333a25, 0x598e261f, 0x17182fce, 0x011e3b30, 0x242ac112, 0x4a485221, 0x4a4b7d01, 0x32232150, 0x3a1dfad1, 0x1d181534, 0x33db6b75, + 0x3c2f181e, 0xbce2fe24, 0x4e1d2a29, 0x83fe4b61, 0x1a5c564a, 0xb459222a, 0x361e01d5, 0x607c6653, 0xad2b0a14, 0x01354e52, 0xa9720f1d, 0x02437b84, + 0x47b2fd4e, 0x5dbd8477, 0x36e3fe0e, 0x5e62524d, 0xc0300a18, 0xfe365366, 0xaf7d10e1, 0xfd556997, 0x4f700290, 0x7b7a976f, 0x00000a31, 0xffbe0001, + 0x05c705ef, 0x002600df, 0x130d4049, 0x0a0a1b01, 0x25012628, 0x24132625, 0xb36a01b8, 0x26000202, 0x16010b41, 0x68011b00, 0x07821c00, 0x07820b20, + 0x07010a22, 0x07213982, 0x08374100, 0x4939ed21, 0x2f260743, 0x31391233, 0x0e411330, 0x01be2e25, 0x675c697e, 0xce312321, 0x37341efe, 0x3fed8317, + 0x191e2fdf, 0xfe253d2c, 0x292cbfe7, 0x69657020, 0xd10582fe, 0x7648b1fd, 0x0e61ba84, 0x562de2fe, 0x3222ce84, 0xce8465be, 0xb3793508, 0xfd487597, + 0x02000091, 0xf0ff4700, 0xd1059e05, 0x21001900, 0x12404a00, 0x10700f1a, 0x23101001, 0x191e1e07, 0x0b010b3f, 0x01b81208, 0x2121b36c, 0x0941000d, + 0x1920c082, 0x1020c882, 0x1c240382, 0x0d006a01, 0x18070242, 0x82085140, 0x220b82c2, 0x4133335d, 0x372808f1, 0x35262635, 0x11212110, 0x0806c141, + 0x2506064a, 0x20231101, 0x33161415, 0x38362847, 0x92291411, 0x29028378, 0x80feb302, 0x175e67d0, 0xfed02620, 0xc9da03eb, 0x9a83f5fe, 0x42381e01, + 0x0a25a14e, 0x017ecb31, 0x022ffaa1, 0x885b4b31, 0x0310749f, 0xba91012e, 0xffff6671, 0x08057f41, 0x02090821, 0x00d00426, 0x00070100, 0x0192008d, + 0xb117007d, 0x01b82a01, 0x26094009, 0x2a5f2a01, 0x551c2628, 0x5108079d, 0x7e000100, 0x8007f3ff, 0x45006e04, 0x1d408b00, 0x1922192a, 0x3b181806, + 0x310f3c3c, 0x221f220f, 0x01226402, 0x22012241, 0x0f004722, 0x5f01ba00, 0x19014500, 0x3d062ab2, 0x006301bb, 0x013a0017, 0x1a094063, 0x01174f1a, + 0x3b181717, 0x19010f41, 0x23823100, 0x07823220, 0x07822320, 0x13012224, 0x03821800, 0x0b820e20, 0x07820f20, 0x200a1a43, 0x101b435d, 0x43335d21, + 0x37210f1c, 0x0a1a4337, 0x1a433620, 0x05194318, 0x11333323, 0x0e184306, 0x0606bb08, 0x46287e27, 0x73281924, 0x1312286e, 0xd61a352e, 0x192739b7, + 0x012e4f3d, 0x48412e66, 0xb93b271c, 0x2e371ad2, 0x6d2a1211, 0x21192e6e, 0xb6e12849, 0x44212e35, 0x9afe2e41, 0x2144412e, 0xf3ab2e2e, 0x42561c01, + 0x1708156a, 0x29332f6e, 0x460c1701, 0x3c416696, 0x4dfeb301, 0x99664d30, 0xe9fe0c43, 0x6e2f2f2d, 0x6c130817, 0xe4fe5642, 0x7985480c, 0x3dfe3356, + 0x5633c301, 0x0d547a79, 0xaa000100, 0x0d05f4ff, 0x25006204, 0x19405b00, 0x481a0113, 0x020b580b, 0x0b140b04, 0x0b030b24, 0x0127250b, 0x13252424, + 0x6301b822, 0x01034fb6, 0x24000303, 0x19010b41, 0x5f011900, 0x07821b00, 0x07820c20, 0x13010b26, 0x13010000, 0x20091a43, 0x0a1b435d, 0x435d5d21, + 0x3e220c1d, 0x10443302, 0x062b4405, 0x080c1141, 0x6601aa36, 0x1e524d40, 0x73702926, 0x333119c0, 0x7f281317, 0x21192c7f, 0xa9fa284f, 0x48172e2e, + 0x9afe405f, 0x4cfe6204, 0x6d654e30, 0xe8fe0e56, 0x6d343720, 0x6f120816, 0x0b30d883, 0x3b787954, 0x003efe4e, 0x61000200, 0xca04f4ff, 0x183dd182, + 0x52001f00, 0x15061640, 0x0e1a1a09, 0x38010f8f, 0x0f0f010f, 0x9f001d21, 0x00090109, 0x20b882bd, 0x2ac08218, 0x01100006, 0x1919b364, 0x82bc0e0c, + 0x011a240d, 0x420c0064, 0x12210504, 0x06875339, 0x82335d21, 0x822f20c1, 0x113323c7, 0x11453912, 0x05f44105, 0x36343522, 0x44057c4c, 0x272005fc, + 0x0806814c, 0x49286137, 0x451b1822, 0x02bceaee, 0x639afea6, 0x21184d4f, 0x03e4b92e, 0xe7caab03, 0x3b441b01, 0x50081543, 0xfbaa90de, 0x337c019e, + 0x457c583c, 0x015a020b, 0xff958b20, 0x058941ff, 0x028c0625, 0x48d40426, 0x16210585, 0x061d6700, 0x0940152a, 0x4a290126, 0x1b252729, 0x080a1343, + 0xf0ff4d50, 0x67044007, 0x8d004b00, 0x1c2f1f40, 0x1b071c27, 0x4242411b, 0x276b3710, 0x48273801, 0x03275827, 0x004d2727, 0x1001100f, 0x7801ba00, + 0x4b014b00, 0x44072fb2, 0x007901bb, 0x013f0019, 0x1e094079, 0x01194f1e, 0x411b1919, 0x4b010f41, 0x23823700, 0x07823820, 0x07822820, 0x4d012724, + 0x03821b00, 0x0b820f20, 0x864d1020, 0x3fed2606, 0x39123fed, 0x0b15432f, 0x11335d25, 0x435d2f33, 0x36201115, 0x210d1643, 0x18433233, 0x32332110, + 0x46073546, 0xb5081934, 0x4d250606, 0x0e263020, 0x96a72d1b, 0x28131733, 0x6d271827, 0x1a207e96, 0x3a383e19, 0x3d396c01, 0x281a163d, 0x296b8785, + 0x11292818, 0xa7993017, 0x28111a2d, 0xeafe1f2c, 0x1a1e2790, 0xfe394045, 0x453e3a94, 0x99311e1b, 0x0801fcfe, 0x7748292f, 0x751c0620, 0x011e2e38, + 0x765d0409, 0x012f5358, 0x3857fea9, 0x4c87584a, 0x1ff7fe04, 0x1d74382d, 0x48772006, 0xf7fe2830, 0x5c88640f, 0x46fe334f, 0x532fba01, 0x0c53965c, + 0xa4000100, 0xee04f1ff, 0x27006704, 0x1b405f00, 0x1b27141c, 0x0c69010c, 0x480c3801, 0x0c0c020c, 0x26012729, 0x0127a026, 0xb8241427, 0x27437901, + 0x41262a06, 0x004b010b, 0x0078011c, 0x2007821d, 0x2607820d, 0x004d010c, 0x434d0100, 0xe1550e27, 0x5d2f2606, 0x39125d5d, 0x0b474633, 0x2f1d2241, + 0x516e01a4, 0x1a163d3d, 0x6b868628, 0x28291829, 0x30060141, 0x2031260e, 0x2a94f0fe, 0x4244191e, 0x0492fe51, 0x29e38463, 0xfe044b88, 0x382b21f7, + 0xe3831c75, 0x32263108, 0x5e0ef7fe, 0x344e5c8d, 0x020046fe, 0xf3ff5b00, 0x6304c704, 0x1f001800, 0x13404e00, 0x0a1a0714, 0x0f0f0e1a, 0x1f001d21, + 0x0a54010a, 0xbd000a01, 0x1820bd82, 0x072ac582, 0x7e011100, 0x0c1f1fb3, 0x0d82bc0f, 0x7a011a23, 0x42d38300, 0xb4560516, 0x435d2005, 0x3320052d, + 0x42092b43, 0x4a46060a, 0x072b430d, 0x215b3908, 0x0f142525, 0x01d86b29, 0xfe3b02e7, 0x3d517591, 0xcc24190e, 0x86fd02e3, 0x0801d4bd, 0x6f292f1f, + 0xc2540618, 0x9dfb4101, 0x35319101, 0x0d478e63, 0x19015502, 0xffff9584, 0x25059141, 0x26028c06, 0x2d43d804, 0x05b34b05, 0xb34b2b20, 0xa62b2506, + 0x1d27292b, 0x340a2d43, 0x020000c7, 0x00d10547, 0xb5190003, 0x04000003, 0x01ba0105, 0x29398207, 0x3f3f0016, 0x39011211, 0x5352332f, 0x01c72605, + 0xfad10580, 0x2061822f, 0x22318234, 0x8201088a, 0x82db2061, 0x00073b27, 0x01befe43, 0xb21b0075, 0xb8050501, 0x26b20901, 0xffb80701, 0x0407b4d8, + 0xd1690301, 0x20358208, 0x20358298, 0x22358aee, 0x82b3fe8d, 0xb1172135, 0xdb462d82, 0x3c072305, 0x32870507, 0x2c823520, 0x82200021, 0x08f33904, + 0x00060001, 0x402b000a, 0x0400020a, 0x07070a04, 0xb80a0b0c, 0x02b41601, 0x08292b82, 0x000701b8, 0xcd32de3f, 0x38a98639, 0x39cc2f33, 0x23013031, + 0x13230727, 0x21110133, 0xeff30211, 0xeaeb7c7d, 0x28a182ff, 0xd5780680, 0xf78901d5, 0x82c583ff, 0x821720ed, 0x07f7225d, 0x39098289, 0x000b0007, + 0x00124032, 0x04040101, 0x080b0505, 0x020c0d08, 0x05010606, 0x5e82ba09, 0x1601082a, 0xce3f3f00, 0x33113232, 0x23050d41, 0x11332f33, 0xff5b0382, + 0x21012405, 0x83032111, 0xfef72667, 0xfe1501eb, 0x21058335, 0x6a820165, 0xfe110127, 0xf81101ef, 0x236c8477, 0x1e000200, 0x2e086d82, 0x00bd07f0, + 0x00170013, 0x0013b147, 0x400001b8, 0x0b0b0a1e, 0x19141417, 0x075b1318, 0x077b076b, 0x800d0703, 0x11641154, 0x11031174, 0x8316030a, 0x8414207d, + 0x32de277d, 0xcd1a5d32, 0xdf6a5d32, 0x82332005, 0x4b1a207d, 0x06220587, 0x71502223, 0x12232805, 0x16173233, 0x84373233, 0xf02608f4, 0x40716c0b, + 0x231f4e4d, 0x0eac021f, 0x168644d9, 0xfe02431a, 0x07800183, 0x3a8badbd, 0x0148323a, 0x76105f37, 0x9b8743f8, 0x9b822820, 0x0941e620, 0x40242d06, + 0x0202030b, 0x09040407, 0x05010208, 0x04208283, 0xce208284, 0xcd207b88, 0x3521f983, 0x26688421, 0x0242fde6, 0x82e1fdbe, 0xd2b721f0, 0x4320eb89, + 0xc83a4f82, 0x0b00d307, 0x2e000f00, 0x000b1040, 0x0f050506, 0x10110c0c, 0x0980050b, 0x54830d03, 0x54840c20, 0x1a32de23, 0x4c5788cd, 0x1426055a, + 0x11202306, 0xca821433, 0x61843520, 0x9aa8c82a, 0x38babdfe, 0xb9fe8851, 0xd329bf82, 0x7701c1b6, 0xf8db7962, 0x30bb852d, 0xfec10001, 0x05f5025f, + 0x001100d1, 0x0c0a402c, 0x2cb78200, 0x12130606, 0x6e01b80e, 0x090602b2, 0x286682ba, 0x00070108, 0xdc333f3f, 0x07be41ed, 0x1833cc21, 0x2208ae43, + 0x76112111, 0x022a0793, 0xfe8152f5, 0x8001069f, 0xfb6902ab, 0x77fe3205, 0x073e0118, 0xfac70566, 0xb0151e2f, 0x00ffff22, 0x22d782c7, 0x42890747, + 0xda2608f7, 0x7501b2fe, 0xf7421900, 0x09402706, 0x03060126, 0xc2420706, 0x35112107, 0x00252e82, 0x06e9ffc7, 0x349f8245, 0x00140010, 0x000c403c, + 0x06060f0d, 0x16030d0f, 0x41121114, 0x2099820c, 0x24a18211, 0x006a010d, 0x280b8210, 0x01090006, 0x01030069, 0x051b4e17, 0x013f3f2a, 0x1712332f, + 0x2f2f2f39, 0x1420b183, 0x24053051, 0x36323316, 0x21b78235, 0x04820121, 0x45062208, 0x7cadedff, 0x5a605b20, 0x02ddfe60, 0x0182faa3, 0xd3b50180, + 0x24011df9, 0x02ce9331, 0xfa120165, 0x05b3432f, 0xecff3008, 0x97030000, 0x2700d205, 0x5001db04, 0x07010000, 0xd3fd9d01, 0x1c0046ff, 0xb80401b1, + 0x01b40701, 0x01041004, 0xb485ffb8, 0x01010404, 0x825d2b25, 0x353f21bd, 0x0526f387, 0x040602d1, 0x428200db, 0x35430020, 0x297dfd6a, 0xa9000100, + 0x18020000, 0x19456304, 0x04052907, 0x4d01ba01, 0x4b010000, 0x220e1945, 0x666f01a9, 0x802006ed, 0xd6263182, 0x26028c06, 0x2782eb04, 0x8d000727, + 0x00009bfe, 0x05e34400, 0x09404f26, 0x4a070126, 0x200ee344, 0x3a31821f, 0x005e06a4, 0x000e000a, 0x0a10402e, 0x0506c000, 0x0b0b0e05, 0x050a0f10, + 0x830d0308, 0x840b2070, 0x32de2270, 0x0ffe43cc, 0x21062b43, 0x2a433233, 0xa8a43505, 0xbabdfe9a, 0xbffe8988, 0x5e066f01, 0x7701c1b6, 0xa2f9dbdb, + 0x00239983, 0x82faff02, 0x06cd2467, 0x8206008c, 0x402a2269, 0x084b450e, 0x00060224, 0xf36f0804, 0x32de2309, 0x274339cd, 0x0e4a4508, 0x4a45cd20, + 0x01c62a06, 0xd503056f, 0xf98901d5, 0x235c8474, 0xf0ff0300, 0xd0225d82, 0x4b451406, 0x01012416, 0x83090506, 0x84082063, 0x32ce23c9, 0x4b452f32, + 0x45d0201c, 0x5c20094b, 0x4b456b83, 0xecf92105, 0xff236d84, 0x82a900ff, 0x061c226d, 0x08654114, 0x8bfeda24, 0x87430000, 0x404f2607, 0x06012609, + 0x0c874302, 0xffffff23, 0x203382eb, 0x0a994141, 0x75fe4322, 0xb3463382, 0x464f2006, 0xb62005b3, 0x2a0db346, 0xa9000200, 0xee05eeff, 0x43006304, + 0x0b2805bd, 0x0c0c000e, 0x14051116, 0x2205bc43, 0x8211004d, 0x7b0e20cf, 0x062806df, 0x77010900, 0x4c010300, 0x200abc43, 0x05936811, 0x2914d97b, + 0x05112111, 0xeef2feee, 0xd17b719b, 0xbbfa2308, 0xcb7b6f01, 0x20f2840e, 0x22898202, 0x41c00200, 0xa145065f, 0x09082508, 0xba050102, 0x2106aa54, + 0xa1453f3f, 0xfdc02b15, 0xfdbe0242, 0x056f01e9, 0x4141d242, 0x01002906, 0x5ffea300, 0x6204d702, 0x2a0c3545, 0xb80e1312, 0x02b27e01, 0x82ba0a06, + 0x820720d6, 0x23354557, 0x3545d720, 0x9a6f2105, 0x310d3545, 0x9efb5804, 0x22b0151e, 0xf8ff0200, 0xca020000, 0xf9463e06, 0x004d222d, 0x21848214, + 0xf9463f3f, 0x46ca202f, 0x8b2413f9, 0x3e066f01, 0x210af946, 0x4942c2f9, 0x0418280b, 0x04060263, 0x420000eb, 0x422074c7, 0x23099342, 0xabfe9d01, + 0x17238582, 0x490601b1, 0x062206ab, 0x11490623, 0x06f9420a, 0x452caff9, 0x87032202, 0x0600e105, 0x0082c403, 0x992a8d82, 0x5c033602, 0x0600d505, + 0x0f84ef00, 0x0f826820, 0xef058f22, 0xf0200f82, 0x62240f84, 0x76031e02, 0xf1200f84, 0x28200f84, 0xaf261f82, 0x0600e605, 0x0f843e02, 0x1c025b26, + 0xda057203, 0x3f200f82, 0x53200f84, 0x89225f82, 0x5f82e005, 0x0f84c520, 0x35025b24, 0x1f848d03, 0x0f844020, 0x1a023426, 0xf4059803, 0x41202f82, + 0x43260f84, 0x79032402, 0x2f82e305, 0x0f84c620, 0xedff452e, 0xac038703, 0xc4030701, 0xcbfd82ff, 0x0fed7b18, 0x0099002b, 0x035c0301, 0x000701a0, + 0x271f84ef, 0x0000b207, 0x353f0018, 0x6820cb83, 0x8f221b82, 0x1b82ba03, 0x1b90f020, 0xe9ff6224, 0x1b847603, 0x1b84f120, 0x0db17b18, 0x39822820, + 0xb103af26, 0x3e020701, 0xb3231d85, 0x18020001, 0x2608ed7b, 0x03e7ff5b, 0x82a50372, 0x923f201d, 0x8253203b, 0x038922b1, 0x20b182ab, 0x23b188c5, + 0x8901b80e, 0x95849482, 0x00005b24, 0x3d848d03, 0x1f844020, 0x0120b182, 0x3426b187, 0x9803e5ff, 0x5982bf03, 0x1b844120, 0x02b30d22, 0x0eed7b18, + 0xefff4326, 0xae037903, 0xc6205d82, 0x13205d88, 0x09ed7b18, 0x020d0136, 0x050c032f, 0x000700d5, 0x060f4028, 0x0301035f, 0x00040100, 0x032b0682, + 0x01ba0601, 0x01010022, 0x4e3f0024, 0x210805d9, 0xc6322f01, 0x3031335d, 0x23112101, 0x33373235, 0xebfe0c03, 0xf211fcea, 0x5f022f02, 0xffff91b6, + 0x9345a000, 0x00062306, 0x0a82004c, 0x47003008, 0x69050000, 0x0300d105, 0x25000b00, 0x09011240, 0x050b0007, 0x0807077f, 0x0a910508, 0x03029100, + 0xdefd3f00, 0x013f32ed, 0x32cdfd2f, 0x8432ce10, 0x5821205a, 0x053e07a1, 0x05defa69, 0xfe2ffe22, 0x052ffe80, 0x01b10422, 0xfc45fd20, 0x011603ea, + 0x01000020, 0x5b82b200, 0x5b822920, 0x00214708, 0x54444075, 0x1a170117, 0x68011918, 0x19380119, 0x19e81948, 0x18891903, 0x08090f18, 0xa6101108, + 0x0a120112, 0x2188890f, 0x21022198, 0x07230202, 0x00010606, 0x18191a00, 0xcb1a1708, 0xcb21121b, 0x05090110, 0x8b8307cb, 0x32de3224, 0x908332fd, + 0xea823320, 0x33332f30, 0x3911332f, 0xfd5d332f, 0xcd5d3232, 0x0d823232, 0x2f336a08, 0x72715ded, 0x315d3912, 0x21371330, 0x21232626, 0x21072137, + 0x3317031e, 0x030e2307, 0x01210107, 0x3e323335, 0x50b23702, 0x7b1daf01, 0x50effe56, 0xff502704, 0x161c0f00, 0x50ff020e, 0x6f4d13c1, 0x6f02518c, + 0xb9fd49fe, 0x415331c6, 0x89030d2f, 0xda5143da, 0x2a240ada, 0x3eda102c, 0x103d556b, 0x2202c2fd, 0x352919d4, 0x24e3831c, 0x06a0ffa9, 0x38e3829b, + 0x404b0022, 0x110c0e27, 0x037f0509, 0x01190000, 0x03010300, 0x7f192403, 0x31f68200, 0x09031904, 0x22010d0c, 0x0d14981f, 0x1314110d, 0xb7823f00, + 0x32fd1027, 0x393911cc, 0x23c7823f, 0x3912ed5d, 0x8205ba5c, 0xce323c14, 0x01303132, 0x11353633, 0x06141121, 0x17161607, 0x26262311, 0x23060627, + 0x83110020, 0x1e470813, 0x36323302, 0x8fb50337, 0x09820110, 0x3d673208, 0x64a94422, 0xfea1ee51, 0x01aefeb3, 0x69421f82, 0x193b234a, 0x4f37a901, + 0x4afca203, 0x10264e2b, 0x7bfe1c2b, 0x451a7144, 0x01220149, 0xfcb60318, 0x4c724e5e, 0x84080725, 0x000031bd, 0xf005f105, 0x32001700, 0x0b0b1a40, + 0x01007f17, 0x193d0082, 0x0e7f0c09, 0x0a01910c, 0x92050d0a, 0x080d0414, 0xed3f3f00, 0xce2f3911, 0xed2f01ed, 0x22ab8332, 0x822f32ed, 0x352127a4, + 0x22232634, 0x0d421506, 0x3e342306, 0xa3823302, 0xd6053408, 0x90857efe, 0xc6038292, 0x7efe3afc, 0xa4f7a754, 0x50014701, 0xa16f3203, 0xfe9b9892, + 0xfee0feef, 0x8ab70390, 0xfe4b90d4, 0x00ecfeda, 0x004d0002, 0x829f0600, 0x16200883, 0x34002700, 0x01021b40, 0x05277f16, 0x7d212905, 0x0b010b1f, + 0x16910205, 0x1c042727, 0x04041092, 0x33268687, 0x2f0132ed, 0x8782ed5d, 0xcdfd3323, 0x08fe5933, 0x087a9118, 0x021e3708, 0x34011115, 0x2223022e, + 0x1415020e, 0x2133021e, 0xf3fe9f06, 0xe2fe7efe, 0x6bb8f68c, 0x8cf6b86b, 0x69b7f58b, 0x4b297efe, 0x69414169, 0x4b29294c, 0x1e01416a, 0x99839002, + 0x70012108, 0x92db9248, 0x448cd792, 0x84c68442, 0x3c01b0fe, 0x21426342, 0x496c4522, 0x254b6e4a, 0x38000100, 0x7220ad82, 0x1738ad82, 0x17402e00, + 0x7f020017, 0x0b190404, 0x91010d7f, 0x0c170c17, 0x11920804, 0x3925a788, 0x01ed2f2f, 0x8aa6832f, 0x053041a5, 0x35211526, 0x32210010, 0x0621a883, + 0x2d9a8372, 0x85909282, 0x50017efe, 0xf8a34701, 0x8a8554a7, 0x9ba10332, 0x6fa19298, 0x01140184, 0xd4904b26, 0x00d9fe8a, 0x2d087f82, 0x05e1ffa9, + 0x00d105f1, 0x40300017, 0x170c0c19, 0x0115007f, 0x0b191515, 0x16087f0e, 0x0e0e910c, 0x9212030a, 0x3f001303, 0x2f393fed, 0xaf41ceed, 0x2373820d, + 0x35022e22, 0x3706ae41, 0x32331614, 0x21353536, 0xb0fed605, 0xf7a4b9fe, 0x820154a7, 0x3afcc603, 0x01278b83, 0xfe1b0282, 0x83dafeec, 0xb7032777, + 0xe0fe92fe, 0x8d84edfe, 0x2b088182, 0x0500006e, 0x00f00592, 0x403e0027, 0x181c171f, 0x237d1118, 0x7f1c2923, 0x0707051a, 0x161b1d1a, 0x081a9118, + 0x05050c07, 0x040c9200, 0x32308782, 0x3f39122f, 0x33cc32fd, 0x2f332f01, 0x12ed1033, 0x32359782, 0x3139112f, 0x0e220130, 0x11230702, 0x3233033e, + 0x15161604, 0x210d8214, 0x636c2115, 0x324e0805, 0x3435023e, 0x6202022e, 0x626d763c, 0x7c362c27, 0xa5458b84, 0x74cc1901, 0x4e79522a, 0xe0fa3f01, + 0x525d7501, 0x455181a2, 0xcf049874, 0x2c49341d, 0x33276101, 0xb1640d1f, 0xa84e8df0, 0x0728829b, 0x9301e4fe, 0xb97e4177, 0x6dab7878, 0xb5820033, + 0xb582b920, 0xd105643e, 0x2b000900, 0x09091640, 0x06010600, 0x07040b06, 0x9106017f, 0x03020404, 0x08019108, 0x41063441, 0x33240733, 0x2130312f, + 0x3308e944, 0xe4fbd504, 0x29038201, 0x9a02d7fc, 0x92fed105, 0xddfde0fe, 0x3b0b4143, 0x402e0015, 0x150a0a18, 0x1701017f, 0x0c007f08, 0x00000c01, + 0x12920509, 0x0c910904, 0xed235984, 0x422f3911, 0x3d4306b6, 0x103b4312, 0x43b8fa21, 0xfd230e39, 0x43e0fe7f, 0xa8390c37, 0xe0070000, 0x3000ee05, + 0x48003f00, 0x7d312640, 0x282a2b05, 0x3a0b3a7f, 0x3d018205, 0x007f1641, 0x28180118, 0x2b3a930b, 0x9211362b, 0x93360420, 0x12170000, 0x2f333f00, + 0x8b833fed, 0x2d084543, 0x112f2f39, 0xcdfd1033, 0x31ed1033, 0x45432530, 0x35212107, 0x08074143, 0x11211195, 0x33043e34, 0x15041e32, 0x23113315, + 0x020e1415, 0x021e1401, 0x35363233, 0x0e222335, 0x831b0502, 0x415296d4, 0x0164a576, 0xaf753a2a, 0x75aa6d75, 0x447efe3d, 0xccbca178, 0xbeca6166, + 0x98487da7, 0xcf8f4c98, 0x301bc7fe, 0x5a512843, 0x36411ea9, 0x75415a23, 0x996161a2, 0x4015396a, 0x2a284967, 0xfc557f54, 0x73890375, 0x3b5f88b5, + 0x5434171b, 0x136ba57c, 0x5e88e0fe, 0x0140729e, 0x273c29b0, 0x88514b12, 0x00341e0b, 0x50000200, 0x9d06e1ff, 0x4400d105, 0x1c3b052d, 0x7f140016, + 0x29171711, 0x0b1f7d1d, 0x0b020b2f, 0x11911700, 0x03121414, 0x43069222, 0xe7880604, 0xfd332f28, 0x3031cd32, 0xc0821101, 0x08a79518, 0x2006df41, + 0x072a4421, 0x3e324908, 0x90053502, 0x8bf5b769, 0x69b7f48c, 0x8cf4b769, 0x82011e01, 0x71fd0d01, 0x6a41e2fe, 0x4c29294b, 0x69414169, 0x4303294b, + 0xc88caefe, 0x873d3c80, 0xdb939bd9, 0x6e014993, 0xe0fe92fe, 0x49704b26, 0x22456b4a, 0x42634221, 0x20067342, 0x08ab82e6, 0x33001e23, 0x7f111b40, + 0x13011300, 0x1e032013, 0x0101007f, 0x92191e01, 0x000a0a04, 0x00130303, 0xce3f0012, 0x059c723f, 0x5d2f0122, 0x42066045, 0x3328067b, 0x3233033e, + 0x1115041e, 0x08088f41, 0x3b020736, 0x82017efe, 0x51401405, 0x9b51345f, 0x2f55748a, 0x693c7efe, 0x2c13508d, 0x05112a2d, 0x0d60fed1, 0x250d1519, + 0x967f6445, 0xfaddfe56, 0x29548057, 0x090d0904, 0x21060343, 0x8f82ed04, 0x1a00052f, 0x05050c40, 0x017f0407, 0x91040303, 0x25808201, 0x2f013fed, + 0xf24211ed, 0xed042b09, 0x8201ccfb, 0xd105b202, 0xc9854ffb, 0x82760721, 0x001f3639, 0x1225403f, 0x0110007f, 0x05211010, 0x041f1d7f, 0x6f015f7f, + 0x84478201, 0x119128d3, 0x03030505, 0x8318920b, 0xedde26d3, 0x332f393f, 0x26d282ed, 0xdc32fd5d, 0x823911ed, 0x2ad586db, 0x1e141121, 0x3e323302, + 0x82113502, 0x020e280a, 0x022e2223, 0x85233535, 0x550234d9, 0x2641301b, 0x1b304126, 0x904c8201, 0xd28585d1, 0x82d34d92, 0x928308d7, 0x3a210bfe, + 0x2a19192a, 0xf501213a, 0xd18982fe, 0x8d46498e, 0x005e8cd2, 0x6a000200, 0x3d06e0ff, 0x2d00f005, 0x79003f00, 0x383d4840, 0x15011516, 0x2c092e1b, + 0x2c292c19, 0x29032c03, 0x1b0b0b0d, 0x01386f7d, 0x38103800, 0x41383802, 0x02297d2e, 0x002d2d7f, 0x33290129, 0x16132292, 0x0b121515, 0x1f0c0f08, + 0x0c0c020c, 0x04089212, 0x02912c3d, 0x3f000300, 0x3f32eddd, 0x5d2f32ed, 0x33113912, 0x833f3311, 0x2f3325cd, 0x12ed10ed, 0x5d20cd82, 0x33271882, + 0x5d393912, 0x82391211, 0x30313a20, 0x33152113, 0x3233033e, 0x23111716, 0x2223032e, 0x1e150706, 0x0e141503, 0x25df8204, 0x36343504, 0x38432337, + 0x08f78205, 0x022e3498, 0x6a060627, 0x3b548201, 0x59b3a896, 0x1b51c067, 0x5b707935, 0x1b401c16, 0x538cb764, 0x9e856036, 0xb45d5db2, 0x386388a1, + 0x01b24f54, 0x7d623c8a, 0x5b784141, 0xba7c3e37, 0x0562557c, 0x3f2888d1, 0x1f1d162a, 0x473d7dfe, 0x04030923, 0xa1742204, 0xb46f78cb, 0x2143688d, + 0x8f694421, 0xea7971b9, 0x5d34fe69, 0x2b2b5989, 0x55598457, 0x0f547b9b, 0x0000e351, 0x00840001, 0x05b10500, 0x001c00d1, 0x031b4035, 0x1c1c7f01, + 0x007f131e, 0x1c110111, 0x040a9219, 0x0182000a, 0x03120326, 0x3f001203, 0x22054963, 0x47103311, 0xed20086e, 0x2305584a, 0x0e231121, 0x2e22dd82, + 0x8e483504, 0x2f042a09, 0x7efe8201, 0x543d0e05, 0x06944265, 0x82012208, 0x4985643c, 0x042f5d2f, 0x019dfb63, 0x16190aa0, 0x6042210f, 0x025c9b7f, + 0x5ee9fd40, 0x14265284, 0x088f8315, 0x00005c2c, 0xf005c004, 0x38003000, 0x7d111d40, 0x007f1c2c, 0x1f1f011f, 0x06063226, 0x92241626, 0x1e0c2626, + 0x92000612, 0x00040c07, 0x0370333f, 0x39ed2305, 0xfe6f2f01, 0xed5d2305, 0x4746edd4, 0x021e210c, 0x22054646, 0x8215031e, 0x2e34269b, 0x11212302, + 0x074c4621, 0x2c2e4308, 0x225f6969, 0x7b7c2f1e, 0xe0801c6a, 0x492760a7, 0x72484068, 0x8afe2b4f, 0x396c5534, 0xad0140fe, 0x314f6736, 0x04564c33, + 0x1d1309da, 0x0c3a0114, 0x2a040910, 0x3f658f5b, 0x123b5267, 0x5e431008, 0x25824376, 0x34c94808, 0x0117314b, 0x3d1e0820, 0x20392e36, 0x0002000a, + 0x05dcff6e, 0x00ee05ad, 0x004b003b, 0x2d23405c, 0x20283725, 0x47053f7d, 0x08100800, 0x4d080802, 0x3f371347, 0x2505422d, 0x4292002a, 0x48100d40, + 0xffb83c42, 0x820e40c0, 0x323c2909, 0x12132a13, 0x1914920d, 0xfd2dde83, 0xdd3f3fce, 0xed2bde2b, 0x12393911, 0x21e58239, 0xce66cdc4, 0xfd392205, + 0x820f82c4, 0x1e3225e9, 0x36361702, 0x47079a45, 0x1e21063c, 0x4af48404, 0x0e220729, 0xc4452303, 0x32132506, 0x26263736, 0x08070649, 0x3f0f02ae, + 0x49817876, 0x76490e15, 0x7e474c96, 0x2d245b6d, 0x84858644, 0xa6ba6143, 0x1539668d, 0x26273c29, 0x2e2a1845, 0x833c6098, 0x5a458c8a, 0x314578a0, + 0x4d809d67, 0xa5514091, 0x192b204e, 0x3a210c0a, 0x180b8702, 0x69321c27, 0x70b2803c, 0x46362033, 0x2e5e0126, 0x29071b35, 0xb092724f, 0x72773b64, + 0x2f152d69, 0x318ffe13, 0x4f313672, 0x53281d37, 0x7e49547c, 0x49fe365e, 0x221d2c2e, 0x0e1a150c, 0x0e171c0f, 0x50000100, 0x8a060000, 0x1500f005, + 0x18402e00, 0x03037f14, 0x0917010c, 0x010c1f7f, 0x020a0a0c, 0x040f9206, 0x12029115, 0x2907dc67, 0xed5d2f01, 0x3911c410, 0xe949ed2f, 0x11414905, + 0x71fd8a22, 0x230d3f49, 0xe0fe2001, 0x220f3d49, 0x660069fd, 0x05210575, 0x087982b7, 0x2a002130, 0x26404700, 0x21221428, 0x190b1c02, 0x01237f7f, + 0x222c2323, 0x1c00007f, 0x21281c01, 0x01011491, 0x1b912211, 0x92110c12, 0x3f000407, 0x0164c6fd, 0x32ed2105, 0xc4268d82, 0x2f3912ed, 0x9282fd5d, + 0x39113928, 0x13303139, 0xf4432111, 0x1e63080d, 0x15151202, 0x3e343521, 0x21013702, 0x27022e34, 0x01ab0206, 0xa5893700, 0xa14870c1, 0x4b1e2c53, + 0x5e16444d, 0xf68a3c96, 0xedfa6cba, 0x202d1e0e, 0x0e020901, 0x539f7c4b, 0x4303292c, 0x92552001, 0x1a193c6a, 0x332593fe, 0x454e0d1f, 0xfed59024, + 0xc0faa8ea, 0xaca59b43, 0x82dcfd54, 0x11497eba, 0x4aedfe7d, 0x063c0509, 0x00d105e3, 0x402a0015, 0x147f0216, 0x17010b14, 0x0b007f0d, 0x020c0b01, + 0x11031591, 0x21060147, 0x4141c4ed, 0x41b48205, 0x064a0641, 0x05024a09, 0xe3061124, 0x034af3fe, 0x92822909, 0xd1058590, 0x6afde0fe, 0x2809014a, + 0x989b5ffc, 0xa103a192, 0x08778200, 0xe3ff9643, 0xef05aa05, 0x53003f00, 0x33383240, 0x7d001f7d, 0x126f125f, 0x0003127f, 0x02121012, 0x28411212, + 0x01090018, 0x92183809, 0x1a101a00, 0x0f1a1a02, 0x29922227, 0x0f0a042e, 0x13050892, 0xfd333f00, 0x820383c6, 0xed5d2290, 0x219c8239, 0x4d45c4c6, + 0xedd42d05, 0x01303133, 0x04060614, 0x27242223, 0x0a4a9718, 0x2108c443, 0x324a2326, 0x08ea4309, 0x05058f08, 0xfec066aa, 0xfea2afeb, 0x2d2475ed, + 0x3d929183, 0x5830a5ab, 0xe4fd4c7b, 0x66491202, 0x89901d40, 0x606c7e4d, 0x8b3f2530, 0x9a458f8f, 0x264c99e6, 0x24406648, 0x37484f51, 0x6ebc0121, + 0x34427aaf, 0x2250012d, 0x76172a39, 0x2a483968, 0x1220010f, 0x50273825, 0x2c221442, 0x1a2f0119, 0x320c1825, 0x3f56875e, 0x0f3c546b, 0x2b1a0604, + 0x0064503c, 0xff000001, 0x053a06e1, 0x001500d1, 0x031a4032, 0x7f0b157f, 0x010a000a, 0x0a150a15, 0xc3420017, 0x15132405, 0x42030291, 0x521809c3, + 0x3125096a, 0x21111130, 0x05794111, 0x15213522, 0x21078c41, 0x774b8f02, 0x07874105, 0x01b10423, 0x05754120, 0x41846f21, 0x02220787, 0x7b820097, + 0xff645008, 0x056105e1, 0x003f00f0, 0x2a1e403b, 0x19013403, 0x0d344119, 0x01231f7d, 0x02032a23, 0x00913002, 0x1e19043a, 0x1e921217, 0xfd3f0013, + 0x3f3911c6, 0x2f32ed33, 0x2f013939, 0x12c4ed5d, 0x11c42f39, 0x30313939, 0x25231101, 0x22232622, 0x4715040e, 0x372f068b, 0x030e1133, 0x26242223, + 0x3e343526, 0x46353304, 0x9f4b05c1, 0x1e720805, 0x53051702, 0x08b0fe1a, 0x75380911, 0x2b49616e, 0x4b907246, 0x6172844f, 0x853f252c, 0xa8377c82, + 0x73cde4fe, 0x86765933, 0x390f458f, 0x4c1b4442, 0x2127266b, 0x32554b44, 0x5d67692e, 0xfe9a0423, 0x1201b18f, 0x775b3f29, 0x597a484b, 0x4c331a31, + 0x23a2fe31, 0x520e2032, 0x5194e69d, 0x435f7990, 0x1a080423, 0x1c1d1219, 0x170d3201, 0x1f140910, 0xd7571225, 0xd6052105, 0x133be982, 0x12402300, + 0x02027f13, 0x007f0815, 0x050a010a, 0x01041092, 0x3f00120a, 0x4bed3fc4, 0x31240752, 0x11212130, 0x4b088e4e, 0x864e0e4e, 0xa1a1260a, 0xfc9b9892, + 0x0a494b5f, 0x7a000134, 0x7c0597ff, 0x2e00ef05, 0x2c404b00, 0x27012503, 0xba457d20, 0x01303806, 0x13101300, 0x13031320, 0x27272503, 0x01700160, + 0x010301b0, 0x45280000, 0xc62909b3, 0xcd10332f, 0x3911325d, 0x258a8239, 0x2f3912c6, 0x6141ed5d, 0x11132305, 0x7a460533, 0x0bb64206, 0x0805ac45, + 0x1117156a, 0x27032e23, 0x0e012de3, 0x5085ab5b, 0x629b6c39, 0x636f793f, 0x7438292a, 0x63508c7e, 0x688fa9bf, 0xcb9f603a, 0x14309e6b, 0x132b2c2c, + 0x67012f01, 0x8a5d3092, 0x607d435a, 0x48361f39, 0x27610128, 0x240d1e33, 0xa9896946, 0x8abe7464, 0x56040752, 0x241880fe, 0x000a171d, 0x00280001, + 0x05c80600, 0x002200f0, 0x00234040, 0x22081082, 0x7f19017f, 0x011a5f1a, 0x01011a00, 0x241a011a, 0x080a7f07, 0x11000800, 0x0222121a, 0x00041192, + 0x47c4fd3f, 0x012205ed, 0x3f6bed2f, 0x315d280a, 0x11210130, 0x44020e22, 0x034c05ce, 0x116e0805, 0x2e341121, 0x39042304, 0x69567efe, 0x7efe143a, + 0xbd88582a, 0xf39797f4, 0x295887bc, 0x16087efe, 0x39553b26, 0x1c03bb01, 0x3e867048, 0xa04f1314, 0x365e8093, 0x98836238, 0xb8fc50a3, 0x632b2103, + 0x29445962, 0x00020000, 0x05000078, 0x00ee05ce, 0x00340024, 0x2f2f4050, 0x36001111, 0x700f501c, 0x0a0f020f, 0x0130007d, 0x147f1530, 0xbe837d28, + 0x30921c32, 0x30703060, 0x15253002, 0x13911611, 0x05922512, 0xed20b382, 0xcd2bb582, 0x105d3912, 0x5d2f01ed, 0x82edd4ed, 0x5d332d04, 0x39121133, + 0x3031392f, 0x023e3413, 0x0814564e, 0x072e376e, 0x15062225, 0x17041e14, 0x78032e37, 0xadef9543, 0xc31001a3, 0x7559356c, 0xfa420141, 0x777501cc, + 0x52687a43, 0x9484321a, 0x6384959d, 0x5e4d023a, 0x846a4264, 0x05257482, 0x89734e04, 0x94505304, 0xb4684572, 0xaf6089f1, 0x04237393, 0x9301e4fe, + 0x533d2377, 0x323c2830, 0x5841362f, 0x3b42d273, 0x2e37412a, 0x011d302e, 0x3a73aa70, 0x0805c542, 0x05e30625, 0x001700f0, 0x171d4036, 0x04007f02, + 0x0e040401, 0x7f0b1901, 0x0e010e00, 0x02029200, 0x1192080c, 0x420c0404, 0xbf8205d0, 0x1021d084, 0x220982c4, 0x46c4fd5d, 0xdb4205f5, 0x0839500a, + 0x3950e320, 0x5ffc231d, 0x3b50b603, 0x05d62311, 0x4f4300d1, 0x11112206, 0x2e838215, 0x12080108, 0x920e0309, 0x3f001303, 0x43c43fed, 0x0120094f, + 0x50102746, 0x26500c2a, 0x08244611, 0x5a000126, 0x94060000, 0x1c366982, 0x1c403800, 0x19027f1b, 0x7f100119, 0x191e010f, 0x03099216, 0x01821009, + 0x031a0223, 0x06e5471c, 0x4e391221, 0xed260582, 0xc4100132, 0xf682ed2f, 0xa946c420, 0x05674a06, 0x35029308, 0x14152135, 0x3233021e, 0x21113736, + 0xfd940611, 0x41110571, 0x79346557, 0x0164a9de, 0x82633c82, 0x2f613147, 0x20018201, 0xa001e0fe, 0x0e15190c, 0x87d3924d, 0x8460a9d2, 0x13142351, + 0x4ffb4803, 0x82000100, 0x8505e1ff, 0x4300ef05, 0x2b406400, 0x107d002e, 0x16160116, 0x7d39450b, 0x010b0023, 0x6f1e5f0b, 0x031e7f1e, 0x3f011e4b, + 0x1e0b011e, 0x1e2b1e1b, 0x703c6003, 0xb83c023c, 0x1240e0ff, 0x1e480e09, 0x342f113c, 0x04282d92, 0x0a92110b, 0x8c4a1305, 0xed332705, 0x39391132, + 0x00835d2b, 0x5d2f0125, 0x4111edd6, 0xc64608b3, 0x022e2105, 0x2706c746, 0x3435023e, 0x032e2726, 0x35220282, 0xca823e34, 0xa5181e20, 0x850807ca, + 0x1415020e, 0x031e1716, 0x05161617, 0xfeb46185, 0x97549fff, 0x2a488b90, 0x98948837, 0x55652d45, 0x2a515c37, 0x29595b5a, 0x2855865e, 0x90edab5e, + 0x868c8e41, 0x762f293a, 0x2b3e857f, 0x73324c5d, 0x4e4d2964, 0xadab2c50, 0xb76ed401, 0x1e0f4a84, 0x65011e2c, 0x1d344b2d, 0x303c230c, 0x0a144631, + 0x0e151312, 0x8169531e, 0x7eae694e, 0x261b0e45, 0x26a9fe18, 0x0e192e3f, 0x3b2b3923, 0x0f091544, 0x380e1512, 0x6d4500c2, 0x402d3f0c, 0x007f1319, + 0x02011001, 0x09150101, 0x010b007f, 0x0901010b, 0x04109205, 0x3f001209, 0xe482ed3f, 0x21062642, 0x0654ed5d, 0x1977450d, 0x4505fe53, 0x53080c78, + 0x96000200, 0xb105e1ff, 0x3d00f005, 0x6c005100, 0x1c1f4040, 0x7d25487d, 0x7f486f39, 0x397e0248, 0x01396f01, 0x39483948, 0x3e0c5307, 0x002e127d, + 0x06070107, 0x022f162f, 0x2a92342f, 0x0c1f0c07, 0x05099243, 0x05020519, 0x2d170000, 0x924d132a, 0x3f000417, 0x2a05ef75, 0x39ed5d33, 0x10331139, + 0x825d32ed, 0xd6c430a8, 0x121139ed, 0x2f2f3939, 0x105d5d5d, 0x52ed10ed, 0x35220c7b, 0x9141032e, 0x14152107, 0x2007b14d, 0x09814802, 0x2105ac4d, + 0xb04e1403, 0x06155106, 0xe1029d08, 0x7591a658, 0x44152225, 0x3d204e4c, 0x591c3a59, 0x8180d99d, 0x87599fd9, 0x60824c8a, 0xf4aa5936, 0xb3fecb9b, + 0x7e311c71, 0x4248968e, 0x3b395f7a, 0x25e5725d, 0x28294e3d, 0x21203748, 0x29274836, 0x02253e4e, 0x3324149f, 0x0a0d011f, 0x04070d12, 0x574a3a10, + 0x5e92642e, 0x915e2e2d, 0x2a9d6c64, 0x61400c05, 0xb1694a7e, 0x3a324780, 0x32213501, 0x2d111122, 0x55463d4f, 0x9e01102e, 0x13263a28, 0x283a2613, + 0x11253928, 0x00392511, 0xb9000100, 0xd9040000, 0x0700d105, 0x15402800, 0x092d1083, 0x007f0106, 0x00030103, 0x03060691, 0x07d14d04, 0x01ed2f28, + 0xc4fd5d2f, 0xdb45c410, 0x11212105, 0x3b080182, 0x62fdd904, 0x82017efe, 0x43039e02, 0xd105bdfc, 0xffff92fe, 0xf2ff5d00, 0xe2054107, 0xfc010602, + 0x02000000, 0x00004600, 0xef05df05, 0x31001300, 0x29404b00, 0x7f2a0a2d, 0x7f201530, 0x2d081b82, 0x2b001501, 0x0315002b, 0x0f281433, 0x01257f92, + 0x151b2525, 0x2c30912b, 0x9205122e, 0x3f00041b, 0xc4de3fed, 0x3912c4fd, 0x33ed5d2f, 0x27612f01, 0x105d2305, 0x148210ed, 0x3031c422, 0x250ca855, + 0x01023e32, 0x1f431133, 0x14152906, 0x2223020e, 0x15232726, 0x5708a382, 0x23352115, 0x3f233904, 0x55343457, 0x3f25213c, 0x57322e53, 0x0dfc2540, + 0xe59b4ea0, 0x9fe99797, 0xc49d6152, 0x3d9a5463, 0xfc770304, 0xa07efe89, 0x5639ed03, 0x3a1f1d3a, 0x4e383757, 0x31171732, 0x02bcfd4f, 0x90be6a73, + 0xbb894d54, 0x72b5816e, 0xe1231b35, 0x5050e0fe, 0x672ae982, 0x6606e1ff, 0x0602f005, 0xcd823200, 0x95000322, 0xf4350f82, 0x0a00d105, 0x3e001500, + 0x28404c00, 0x057f1531, 0x107d3820, 0x3a018220, 0x7f00401a, 0x011a0028, 0x9221151a, 0x05053105, 0x2f920616, 0x200b1b03, 0x44161992, 0x32230513, + 0x4212ed3f, 0x1044057a, 0x2f392207, 0x82ed852f, 0x1e1430ec, 0x22111702, 0x3e01020e, 0x2e343503, 0x4a032702, 0x172c06e8, 0x35052e11, 0x33043e34, + 0x051e1121, 0x9608f882, 0x1e080204, 0x26234233, 0x021c3242, 0x4f6c3f34, 0x6c4f2d2d, 0xfed3c63f, 0x221c9587, 0x439b937a, 0x6f7a7b36, 0x53313355, + 0x3c807b6f, 0x9d467601, 0x406d8d9b, 0xc7b98e56, 0x233c04c6, 0x040f1c2e, 0x1e0e0101, 0x0398fc31, 0x314b351e, 0x172e4b38, 0x4b4cfd03, 0x19210147, + 0x031e2d36, 0x1806b601, 0x70553b29, 0x5a754848, 0xfd142941, 0x2c1705c9, 0x56836243, 0x4a6e9865, 0x0000122c, 0x03200001, 0x062d02c7, 0x00030014, + 0xd300b610, 0x03da0102, 0xed3f0003, 0x82ed2f01, 0x21032fc1, 0x9d2d0201, 0x230190fe, 0xb3fd1406, 0x2f834d02, 0x2f827b20, 0x2f848820, 0x0c401729, + 0x0200d300, 0x89020210, 0x835d2035, 0x23012836, 0xfe880213, 0x889deadd, 0xccff3c35, 0x2202c504, 0x04004e06, 0x70b42900, 0x00020100, 0xb6c0ffb8, + 0x00480f0c, 0x82040300, 0x0db52c0a, 0x04044810, 0x332f0003, 0x83012b2f, 0x5d5f2104, 0x15207e82, 0x222b4883, 0xf7f6a0fe, 0xfe144e06, 0x8289018b, + 0xb5ff337f, 0xef01c504, 0x1c00f106, 0x10401e00, 0x095f0219, 0x914c0901, 0x1c122c06, 0xcc2f000c, 0xcd5d2f01, 0x82cddd5d, 0x164a083e, 0x040e1415, + 0x17161415, 0x35032e23, 0x35043e34, 0x01272634, 0x4e3416d9, 0x0b344e5c, 0x0d04d111, 0x4e33080c, 0x05334e59, 0x32f10608, 0x3c4f3928, 0x2637302e, + 0x0814310e, 0x1b292016, 0x303b4d36, 0x0d253630, 0x01000b19, 0xbd821d00, 0xbd9f7320, 0xbd8e0120, 0x3501232a, 0xf6730221, 0x5f01a0fe, 0x7525b282, + 0xff010014, 0x0847829a, 0xb406232b, 0x2e002600, 0x17171840, 0x1f04251f, 0x0a40040e, 0x1704480e, 0x16d016c0, 0x22001602, 0x2f000009, 0xd610cddc, + 0x2f01cd5d, 0x2908822b, 0x2f3911cd, 0x23133031, 0xb8442626, 0x052a4309, 0x32163526, 0x023e3233, 0x4108d582, 0x15062223, 0x0aa55114, 0x805d3408, + 0x536d3c4b, 0x6a492831, 0x080f0842, 0x20080e08, 0x41081628, 0x045b5736, 0x234926c5, 0x335d804d, 0x39533619, 0x203a5434, 0x02940101, 0x0b19160f, + 0x6a752429, 0xe382003b, 0x1e063b35, 0xa2070304, 0x18000500, 0x07000a40, 0xaf020104, 0x82040104, 0x83dd20d4, 0x10cd368a, 0x013031c6, 0x15331121, + 0xfc030421, 0x2703a138, 0x84011e06, 0x083782ea, 0xe1ffa15c, 0x6304cf07, 0x67002a00, 0x03183f40, 0x10100084, 0xa00b840d, 0x0bf00100, 0x010bdf01, + 0x0bc00ba0, 0x010b9f02, 0x0b300b00, 0x00030b80, 0x2c0b000b, 0x1e6f8421, 0x011e1001, 0x1f010c1e, 0x95080b0f, 0x1b952615, 0x10101816, 0x332f000f, + 0xed3f3311, 0x3f32edd4, 0x2f01c4c4, 0xa04a5d5d, 0x825d2007, 0xed102300, 0x03822f33, 0x48052249, 0x21290921, 0x23030e35, 0x06272622, 0x52058206, + 0x4e0808a4, 0x8303023e, 0x23086a01, 0x6336424a, 0xfe6a0128, 0x57532d96, 0xa970385f, 0x63ca6d30, 0x6a01bcb7, 0x434a2307, 0x332e2b16, 0x1c034701, + 0x7351cffd, 0x182b2149, 0x9dfb1c03, 0x2939227c, 0x5b616217, 0x02ced968, 0x53cffddb, 0x07204873, 0x82001911, 0xfeaa31e7, 0x04330564, 0x001d0082, + 0x0c254043, 0x0100841d, 0x10240082, 0x0e0b131f, 0x103cf283, 0x070a1002, 0x01011895, 0x1018130e, 0x1b0f0f11, 0x000ea70c, 0x3f3fed2f, 0x3912333f, + 0x3220b682, 0xfd22cd82, 0x3248c4c4, 0x47c62005, 0x2e240547, 0x06222302, 0x0808ff75, 0x033e1530, 0x021e3233, 0xfe120515, 0x50250896, 0x3c643148, + 0xdffc2103, 0x680198fe, 0x615b5b30, 0x63905b36, 0x6dc00135, 0x33556f3b, 0xf0fd2320, 0x8f82f4fe, 0x257cff2e, 0x3514283a, 0x00699f6a, 0x5a000200, + 0xd3201182, 0x2c08a182, 0x0029001c, 0x01264045, 0x181e841b, 0x04010400, 0x2b1c041c, 0x0e2f8324, 0x1a180e01, 0x97211e0f, 0x1d041013, 0x16099627, + 0xa71c1b03, 0x25a48401, 0x3f3932ed, 0x9d5c32ed, 0x2f392e07, 0xc4335d2f, 0x3031c4fd, 0x21112321, 0x09625211, 0x17289f83, 0x33112137, 0x26261125, + 0x4c08bb82, 0x33161415, 0xd3053632, 0x2c98fee5, 0x345e5754, 0x4076a667, 0x7abf8445, 0x43444b2e, 0x5d010d28, 0x26b3fde5, 0x8e8e2354, 0x6e317e72, + 0x0a0264fe, 0x11233524, 0x86d89852, 0x60a5da7a, 0x131f140b, 0x2aa9fc32, 0x0e102702, 0x95a59db1, 0x07634125, 0xc182f720, 0x001d2508, 0x1b23403f, + 0x03008401, 0x031d0301, 0x111f0e1d, 0x0e00840c, 0x0e020e10, 0x1695090c, 0x0f101110, 0x1d1b030e, 0x2f22bc85, 0xbb82333f, 0x5d2f0124, 0xf747c4fd, + 0x20b98806, 0x09614134, 0x2d075d41, 0xf7053311, 0x0d96fee5, 0x31404e2a, 0x5c413c64, 0xfee52e0c, 0x43c90364, 0x202e5170, 0x04e4fc23, 0x085a4163, + 0x4231fe21, 0x200805e5, 0x14062c05, 0x41001b00, 0x0e022440, 0x0c001184, 0x190c0c01, 0x8403001d, 0x19101900, 0x001a1902, 0x2f9b8311, 0x000d0d16, + 0x00a70310, 0xed3f000f, 0x2f39122f, 0x39219a82, 0x289c873f, 0xfdc45d2f, 0x013031c6, 0x094a5521, 0x21240982, 0x07060635, 0x0806bc42, 0x030b0232, + 0x0adffc21, 0x2e444f27, 0x68013470, 0x5a3398fe, 0xba73532a, 0x046a01c9, 0xfef4fe63, 0x507145df, 0x0121222c, 0x7c5dfd5c, 0x27143a26, 0x8c04d1d6, + 0x380bf941, 0x0027001a, 0x1b274045, 0x00168419, 0x02020102, 0x011a000c, 0x8322291a, 0x31ac822f, 0x1c0f1716, 0x1011971f, 0x96251b02, 0xa7191607, + 0xa2821b01, 0xf9419e84, 0xc4102207, 0x23b1825d, 0xc4ed335d, 0xf741a384, 0x41012012, 0xfd210df7, 0x35f641b3, 0x010dfb23, 0x0df741c6, 0x00002208, + 0x1406a304, 0x2b000900, 0x05081740, 0x030b0005, 0x00008407, 0x00020010, 0x0f03a706, 0xa7070001, 0x05a84200, 0x23084a41, 0x333031c6, 0x3406db5c, + 0x01aa1121, 0xfd910268, 0x063a026f, 0xfe4ffe14, 0xfeb5fdf4, 0x06b143f4, 0x82043d2a, 0x39001b00, 0x1b0c2040, 0x2305b143, 0x0b111d0e, 0x30064b42, + 0x1695070a, 0x0f0f1110, 0x1b0ea70b, 0x3f2f0001, 0x0c4942ed, 0xfd5d2f22, 0x21226382, 0x45421121, 0x2111210a, 0x2213a543, 0x436dfb2b, 0x02210aa3, + 0x05a2432d, 0xfe54fc24, 0xa04305f4, 0x0251080a, 0x64feaa00, 0x85043907, 0x3f002e00, 0x40406900, 0x35013570, 0x84012d0c, 0x0f3f123f, 0x3f0c010c, + 0x0c3f0000, 0x22412003, 0x2000841e, 0x20022010, 0xdf2fcf01, 0xa72f022f, 0x6012502d, 0x03127012, 0x17071212, 0x23102898, 0x1b200f21, 0x1607983a, + 0x83b08200, 0x391127b1, 0xfdc45d2f, 0x1a41c45d, 0x39173106, 0x5d2f2f2f, 0xed103311, 0x5dcd1032, 0x23013031, 0x30055b49, 0x3435022e, 0x3333023e, + 0x2223032e, 0x1115040e, 0x22cc8821, 0x5f013317, 0x9f08083d, 0x35023e32, 0x4b913907, 0x7676c088, 0x40417db7, 0x9477b77c, 0x5b3e2105, 0x796f273f, + 0xfe3b6078, 0x25680198, 0x56a59075, 0x65a0d57e, 0x05fe9c0e, 0x263a289c, 0x3c220e13, 0x233d2f2e, 0x2bdb010e, 0x437bad6a, 0x528f6b3d, 0x3b688e52, + 0x20303a1a, 0x5c391f0b, 0x7afc5c86, 0x34baff05, 0x2f1d3952, 0xfe6d9d65, 0x2f2415f4, 0x252f1a19, 0x3b332116, 0x0002001b, 0x05e1ff5a, 0x001406d3, + 0x0025000e, 0x111b4033, 0x08258414, 0x27130813, 0x1f2f8300, 0x09141f01, 0x0f2511a7, 0x161a9805, 0x3f00000f, 0xc421f382, 0x06b74efd, 0x0b82e882, + 0x0c46e182, 0x11352105, 0x0125c583, 0x11331121, 0x0cf65b23, 0x01334108, 0x523b20cd, 0xce736633, 0x2641552f, 0x6801b901, 0xa05ee5e5, 0xd57777d4, + 0x9d585ea1, 0x02e17fd7, 0x55815834, 0x019b9f29, 0x6f441c40, 0x4ffe8c03, 0xbefef4fe, 0x488ed38b, 0x99e29649, 0x4489cf8c, 0x20079b44, 0x25a58212, + 0x40340019, 0x4c42191d, 0x1b0c2205, 0x9fda180e, 0x95073008, 0x0d10140f, 0x011b0c00, 0x3f3f2f00, 0x45ed333f, 0x112105f2, 0x080a5b12, 0x450b4842, + 0x0c230aec, 0x44424f28, 0x02210f8b, 0x0588442d, 0x0748fb25, 0x45d3fdb0, 0x013208e4, 0x64feaa00, 0x6304f402, 0x20000500, 0x04041140, 0x26430207, + 0x0f012906, 0x1b00a703, 0x3fed3f00, 0x3106ac4d, 0x11133031, 0x11331121, 0xe26801aa, 0xff0564fe, 0x13430dfb, 0xd8072107, 0x3b08c582, 0x405c0032, + 0x0f842338, 0x01308432, 0x00010fa0, 0x80013001, 0xa0019001, 0x010f0501, 0x3416010f, 0x6f841418, 0x16100116, 0x0f311601, 0x19951114, 0x0017101e, + 0x2d301b15, 0x16050295, 0xde82e083, 0x6f83e485, 0x2c097a45, 0xedc4105d, 0x3031ed10, 0x06352121, 0x07995806, 0x46343521, 0xf68608e7, 0xab611420, + 0x36323f06, 0x07211137, 0x4f96fed8, 0x86546fbc, 0x0302325f, 0x662db602, 0x0196fe33, 0x625a276a, 0x13823265, 0x03333f08, 0x240d0203, 0x6e3b3542, + 0x7d6a012b, 0x6c395448, 0x3816649d, 0xfa193a3c, 0x47fb231e, 0xd3fdb007, 0x16283923, 0x639c6d39, 0x3542451b, 0x425a340c, 0x031f2525, 0x0200001b, + 0xddff5a00, 0xeb823005, 0x001f2008, 0x405d0032, 0x0e0b0834, 0x01840203, 0x3201001d, 0x0e0a2f25, 0xa0180183, 0x582f012f, 0x82004910, 0x2f210806, + 0x2f832534, 0x2a180118, 0x32161398, 0x0300a70a, 0x0f091d01, 0x3f000001, 0x3912333f, 0x3fc4fd39, 0x065741ed, 0x5d2b5d3e, 0xc6fd3912, 0x11391211, + 0xed103333, 0x39391132, 0x13133031, 0x031e0721, 0x23152117, 0x8705da60, 0x263723f9, 0x6c5e0126, 0x3466080b, 0xa1b42726, 0x2d6a5f01, 0x336b6966, + 0x2c684c01, 0xe8974833, 0x96e8a0a0, 0x96623048, 0x01994566, 0x467052eb, 0x554a321f, 0x48542323, 0x04414431, 0xd24901cb, 0x40372f14, 0xa146ed25, + 0xa5d8755e, 0xce9d5e62, 0x99b15871, 0x3f201d76, 0x5325cbfe, 0x7d676187, 0x48171744, 0x9f647188, 0x01000044, 0x64fea100, 0xf3820905, 0x37001931, + 0x840d2040, 0x010a5f0e, 0x0a010a00, 0x46011b0a, 0x0a2a06a7, 0x140f9507, 0x0b1b0e16, 0xdd83000f, 0x2707a842, 0x2f3912ed, 0xedd45d5d, 0x2121cb82, + 0x0a5c4911, 0x2207fd47, 0x426a01a1, 0x012306a7, 0x4898fe68, 0x06230890, 0x4222fc14, 0x032705a9, 0x0201fa1c, 0x48392618, 0x0126068e, 0x0000aa00, + 0x89821205, 0x89821620, 0x84161f27, 0x0001015f, 0x37008201, 0x0b0f180d, 0x100d0084, 0x0b0d020d, 0x13109508, 0x01000e10, 0xc42f000c, 0x200e3143, + 0x2789825d, 0x34112121, 0x26262726, 0x36083d42, 0x32333636, 0x12051516, 0x110e96fe, 0x31454d14, 0x98fe3b65, 0x19606801, 0x080e600e, 0xfd14064a, + 0xd4504bd3, 0x000200d3, 0x04e2ff50, 0x001306cc, 0x003d0029, 0x3c284049, 0x221e2628, 0x1a141d83, 0x8404111a, 0x01070035, 0x2d3f0707, 0x01113f84, + 0x28142611, 0x001d043c, 0x0c953235, 0x00060716, 0xed3f332f, 0x39173f32, 0x2807f341, 0x3911edc4, 0xed33332f, 0x26008232, 0x1e013031, 0x4a111502, + 0x2e390576, 0x12343502, 0x032e2737, 0x37373435, 0x06060721, 0x17161415, 0x16070617, 0x520a8301, 0x352205c5, 0xc5822634, 0x06277208, 0x825ca703, + 0x2e98fe47, 0x406e625b, 0x2a5c9065, 0x2060d8d3, 0x1e142634, 0x27790130, 0x1215080a, 0x4b4557f4, 0x2a38befe, 0x223d2d1a, 0x14367651, 0x3525353b, + 0x46b9033c, 0xfe83d4ad, 0x3a277d91, 0x6a401327, 0x01ae4988, 0x153fd583, 0x1c2f2a27, 0x42583830, 0x150d1c11, 0x51a80c1d, 0xf9fe2d48, 0x2d40955c, + 0x24162b43, 0x934b3422, 0x252b3d89, 0x0b51494b, 0x001b2308, 0x1922403d, 0x01010084, 0x01011b00, 0x0c1b011b, 0x840a0f1d, 0x0c010c00, 0x1495070a, + 0x0f0d0f10, 0x12481a0c, 0x114f4905, 0x82ed5d21, 0x0c0747f3, 0x210b4d49, 0x4c49b1fd, 0xfc43082b, 0x02000095, 0xe2ff6400, 0x1e06f304, 0x3c002900, + 0x2a404c00, 0x3c841909, 0x1c011c00, 0x142f3e1c, 0x27288332, 0x10240000, 0x2f240224, 0x29149728, 0x95373c0f, 0x1b1c161f, 0x08970f0a, 0x3f000005, + 0x4132ed33, 0x6045059d, 0x33332905, 0x3232edc6, 0x5d2f3912, 0x5b050a46, 0x0e260b9c, 0x031e0702, 0x8a441115, 0x37362809, 0x34011123, 0x4127022e, + 0x7008079c, 0x0137023e, 0xa88a364f, 0x733873c6, 0x2c161c44, 0x2e2e4536, 0x1e495158, 0x5ca2dc7f, 0xc05198fe, 0x629f7462, 0x79362f2b, 0x5b312703, + 0x1c235484, 0x1c382e1d, 0x3c3b3f28, 0x5c630426, 0x0e4578a2, 0x0ed9fe11, 0x1f070f15, 0x1e2f4f38, 0x97f0b276, 0x447c91fe, 0x966a3956, 0x84f7635e, + 0x19fd0c01, 0x52718f54, 0x59d16817, 0x15293e29, 0x161b0f06, 0x06494a00, 0x06ee2808, 0x00190014, 0x17204039, 0x04008401, 0x0c040401, 0x840f1b00, + 0x0c100c00, 0x97010c02, 0x0f0d0018, 0x09951417, 0x42030416, 0x7d440689, 0x58102005, 0x31230670, 0x42230130, 0x2620067f, 0x0808f04c, 0x11373629, + 0xe5ee0521, 0x543398fe, 0xba3f6057, 0x096a01c9, 0x2e464e27, 0x4d023470, 0xf8fa0805, 0x283a247c, 0x02d1d615, 0x4ad3fddb, 0x04280543, 0xff0100cd, + 0x0259fe98, 0x3408cb82, 0x30001400, 0x84141c40, 0x125f124f, 0x0003126f, 0x12120112, 0x09001615, 0x0f130901, 0x08970d0a, 0x3f001c05, 0x3f32ed33, + 0x115d2f01, 0x5d2f3912, 0x3031ed5d, 0x06b05105, 0x33112f08, 0x32331616, 0x1135023e, 0x35260221, 0x5f5b9064, 0x1b1c2487, 0x3c341742, 0x6801081e, + 0x67965f14, 0x01091137, 0x1d0e0a02, 0x03486540, 0x758200fc, 0xe1ffc537, 0x14061205, 0x37001b00, 0x840c1f40, 0x010f000a, 0x1b1d0f0f, 0x09a14402, + 0x0f16142f, 0x1a0f0b0e, 0x00000097, 0x2f3fed3f, 0x05e04b33, 0x83ceed21, 0x82c4207c, 0x4403207c, 0x35200ca3, 0x2b06a94a, 0x023b2311, 0x4d2a0d4f, + 0x3c643141, 0x200ca544, 0x0ba644e5, 0x7c9dfb22, 0x0807a544, 0x00800333, 0xfe000001, 0x04ca0364, 0x00340086, 0x2e224040, 0x000a8320, 0x020a100a, + 0x0a150a15, 0x00832a36, 0x0a202a00, 0x2d0f0a2a, 0x141b3097, 0x1b16970f, 0x05094110, 0x3911ed27, 0x11331139, 0x08425933, 0xc4fd1029, 0x34153031, + 0x5137023e, 0x045a05ec, 0x026e080b, 0x020e1415, 0x15030e07, 0x21331614, 0x2e222111, 0x76634002, 0x45623e36, 0x483d2824, 0x494e2920, 0x1f161e43, + 0x396a5e50, 0x5992ba61, 0x3e8d784f, 0x1c314227, 0xe701161d, 0x5f3b64fd, 0x30a32442, 0x387e7e76, 0x58606c40, 0x2d46332b, 0x34271614, 0x1429011f, + 0x2b131f27, 0x4482ad68, 0x38899396, 0x353a3f23, 0xfe221a19, 0x5b4326f4, 0x7945ffff, 0x82042b05, 0x51000602, 0x01000000, 0xe182faff, 0x04302508, + 0x00280063, 0x1c1f4039, 0x15831916, 0x1012000d, 0x28120212, 0x242a2812, 0x24060683, 0x03240d1d, 0x97270f15, 0x2005134c, 0x88da8217, 0x333327d8, + 0x313232ed, 0xb6830130, 0x3e34352b, 0x032e3704, 0x37363435, 0x06ea4421, 0x84050e21, 0x034f08d5, 0x2ebefd30, 0x342a4458, 0x3e555e4e, 0x3e664c09, + 0x0151551b, 0xa767588d, 0x5721029b, 0x2b45595b, 0x7e011516, 0x331764fe, 0x873d3b52, 0x47657d85, 0x61602d0d, 0x9c553063, 0x60953037, 0x0936a965, + 0x726c5f23, 0x1a205c6b, 0x00010020, 0x5064fea1, 0x69260651, 0x03184040, 0x50500084, 0x50202020, 0x00340c50, 0x95260800, 0x15181810, 0x1b0f161b, + 0xc43f3f00, 0xfd331133, 0x54500483, 0x50c42014, 0x11201353, 0x23495350, 0x180201fa, 0x08155450, 0x50000257, 0x830464fe, 0x2c008b04, 0x60004600, + 0xff3200b9, 0x0b1440f0, 0xa432480f, 0x42000142, 0x0e834201, 0x1a260e07, 0xb8383883, 0x1e40c0ff, 0x0e480c09, 0x48380e38, 0x002f8323, 0x0002003f, + 0x23000732, 0x97253d23, 0x983d1b28, 0x3f001013, 0x11ed3fed, 0x33331139, 0x05b54633, 0x2f2f393b, 0xc4fd102b, 0xed103311, 0x2b325d5d, 0x34173031, + 0x3637023e, 0x042e3435, 0x29098235, 0x041e3233, 0x060e1415, 0x93421415, 0x14012506, 0x1707020e, 0x0809bd42, 0x1e141596, 0x44285002, 0x2711335b, + 0x27394439, 0x5fbc975e, 0x68788240, 0x5e392c4e, 0x5e787e78, 0x4b022c39, 0x5d37f2fc, 0xe4012745, 0x090c0703, 0x455c3302, 0x40291428, 0x2d381b2b, + 0x2026201d, 0x514b22c8, 0x2f212d56, 0x5a545027, 0x5f417265, 0x15326391, 0x795e442c, 0x7f85434b, 0x52626e79, 0xfe3a1642, 0x503418f4, 0x260dd502, + 0x04142d2a, 0x6b696732, 0x32432536, 0x32200f1d, 0x4e471f22, 0x01000054, 0x0000aa00, 0x8104e404, 0x48002500, 0x22232840, 0x0f05841d, 0x22081582, + 0x05000d00, 0x0f050501, 0x840d1127, 0x0f100f00, 0x0a0d0f02, 0x12101895, 0x97220f10, 0x000f2500, 0x4d32d42f, 0x122a0fca, 0x105d2f39, 0x31c632fd, + 0xe1872530, 0x21057951, 0x924a3315, 0x07550809, 0x02211133, 0x3a543397, 0x43321c20, 0x335e2628, 0x5e01a2fe, 0x58461804, 0x85533f6c, 0x3e26315c, + 0xfded284f, 0x933f7cb3, 0x2f3b8e95, 0x1d142c43, 0x04e3fc24, 0x35157c63, 0x5b322030, 0x97514f80, 0xfe317789, 0xffff00f4, 0xe1ffa100, 0x63040905, + 0x58000602, 0x31c78300, 0x0564fea1, 0x001406ee, 0x403e001b, 0x17841924, 0x00820100, 0x1b000c26, 0x0e1d1b01, 0x4506f645, 0x022306f4, 0x431a1607, + 0x33280686, 0x3f3f32ed, 0xed5d2f01, 0x2006974f, 0x058647c4, 0x23030e23, 0x05d76b22, 0x2409a649, 0xfdee0533, 0x089449b3, 0x220aaa49, 0x4964fee5, + 0x02230994, 0x49d3fddb, 0x042305ac, 0x845cf9cd, 0xff4f0897, 0x04cf07e1, 0x002f0082, 0x0d3b4060, 0x0a258423, 0xa01a8417, 0x1aa0010a, 0x1af01ac0, + 0x011a9f03, 0x1a301a00, 0x0a031a80, 0x311a0a1a, 0x2f6f8402, 0x012f1001, 0x95070a2f, 0x1925162a, 0x951f2223, 0x0b0d1012, 0x3f000f00, 0xed3f32c4, + 0x45c42f32, 0xb75306a9, 0xed10250a, 0xc4fdc510, 0x480d564a, 0x5448083e, 0x8635200a, 0x53a120d7, 0x2d330ab5, 0x325c5958, 0x3a64894f, 0x250896fe, + 0x6136424a, 0x8294fe28, 0x315d2713, 0x38638851, 0xb7536304, 0x22822c09, 0x2d192c3a, 0xfd729f64, 0x53310220, 0xfc2a05cc, 0x39227ee4, 0x6332182a, + 0xbd4d5f90, 0x4de98208, 0x0f200dbd, 0x200ebd4d, 0x25bd4d0f, 0x4d0b0450, 0x00501dbd, 0xffff2e0b, 0x59fe5a00, 0x8204ee04, 0x4a000602, 0x34958400, + 0x20040000, 0x05006304, 0x15402500, 0x04100400, 0x07040402, 0x09d24d03, 0x00009723, 0x08d14d2f, 0xf1505d20, 0x01aa2b07, 0x040e0268, 0xfea9fc63, + 0x2d4500f4, 0x06280806, 0x002f0014, 0x0d3e4064, 0x0a248422, 0x19841724, 0xa00124a0, 0xf019c019, 0x199f0319, 0x30190001, 0x03198019, 0x19241924, + 0x370cc441, 0x24162a25, 0x1f22191b, 0x10120d95, 0x0f01000b, 0x3f3f3f00, 0x2f32ed33, 0x7e550584, 0xed10260d, 0xed103311, 0x0dc74132, 0x3b431120, + 0x41112006, 0x304c0ac7, 0x087d550a, 0x2326c741, 0xcdfdcd04, 0x2311c841, 0x1a0248fb, 0x0809c941, 0x0000023b, 0x210564fe, 0x20008204, 0x4f002e00, + 0x830e2c40, 0x2a012a10, 0x1c23302a, 0x1f841904, 0x1b1e0001, 0x60275024, 0x03277027, 0x13131827, 0x971a0121, 0x21231c1f, 0x04100997, 0x21df8202, + 0xde823f33, 0x112ae282, 0xcd332f39, 0x013f325d, 0x0d822f2f, 0x2505404a, 0x113031ed, 0xe1511133, 0x6a142008, 0x272205a9, 0xde822115, 0x1121b808, + 0x07220123, 0x33161615, 0x34353632, 0x01b8022e, 0x59501d68, 0x98692a5c, 0x7b412e61, 0x472271b2, 0x03163c42, 0xfefffc01, 0xd902b898, 0x551c5a5f, + 0x1f65672e, 0x0c013f33, 0x22755703, 0x3c152637, 0x57458064, 0x073c6a93, 0xb80e140e, 0x64fef4fe, 0x7c039c01, 0x0f0cb33c, 0x362a3945, 0xffff0c20, + 0xddff5800, 0x86042605, 0x52000602, 0x03000000, 0x64fe3c00, 0x1406b406, 0x13000800, 0x60003f00, 0x0e243640, 0x25338415, 0x831c3303, 0x01330009, + 0x09100900, 0x33093302, 0x002c4109, 0x84000100, 0x38013810, 0x1598330e, 0x2d040303, 0x2b97320f, 0x1b252623, 0x4914a704, 0xe4830640, 0xed34f383, + 0x5d2f0132, 0x12c65ded, 0x2f2f3939, 0xed105d5d, 0x10333311, 0x2705e047, 0x35171614, 0x01020e22, 0x2724dd82, 0x01033e11, 0x20069b5a, 0x28fd8207, + 0x1127032e, 0x17031e33, 0x05475911, 0x01337c08, 0x295769cb, 0x031d3446, 0x7a583174, 0x5c784149, 0x57b4fe37, 0x62869dad, 0x916f4238, 0xfe449e9d, + 0x9caf5998, 0x32222a81, 0x3f98988c, 0x4f90c97a, 0x78694e2d, 0xc9043f81, 0xc7013135, 0xfd25170a, 0x455b3936, 0xd2fd0b2d, 0x6b431f02, 0x17fe4904, + 0x4f37220b, 0x645e926f, 0x3855799d, 0x72fe031d, 0x20058e01, 0x0117302a, 0x3140242a, 0x6c02021e, 0x73543712, 0x4a603b4d, 0x4b112236, 0x27080541, + 0x14062b07, 0x31001900, 0x1b181940, 0x14008416, 0x0c190914, 0x0f150984, 0x1114000a, 0x17160695, 0x000001a7, 0x3fed322f, 0x2a054245, 0x39122fed, + 0x10ed332f, 0x4d3031c4, 0x364b05b6, 0x2111240d, 0x4ba10315, 0x7c550836, 0x22022108, 0x2306344b, 0x22fc8c04, 0x2b05344b, 0x91fc1c03, 0x00fffff4, + 0x020000e1, 0x0981b918, 0x6e00012f, 0x69038401, 0x11002603, 0x14402700, 0x39a28200, 0x07071300, 0x09201111, 0x0c11480d, 0x03000695, 0x32332f00, + 0x112b32ed, 0x8a830133, 0x315d3308, 0x06060130, 0x27262223, 0x33031e11, 0x37023e32, 0xcd546903, 0x5baa5f76, 0x5e5b5526, 0x666f3b30, 0x06022a5d, + 0x473b3949, 0x2f192001, 0x1e0d1624, 0x54822532, 0x003a3408, 0x058e0500, 0x002500f0, 0x0e27404b, 0x0501090a, 0x7f060325, 0x097f0c10, 0x27090901, + 0x25197f17, 0x02cb1018, 0xcb0a060e, 0x080c0c04, 0x041f9214, 0x73001208, 0x332305cc, 0x82de32ed, 0x01323180, 0x3912ed2f, 0x33335d2f, 0xcd3232fd, + 0x32cd1032, 0x15218982, 0x346c1823, 0x3523220a, 0x06505a33, 0x48211521, 0x022a0626, 0x8e051515, 0xfebdbdbd, 0x0082d17e, 0x656f5936, 0x5c7efe66, + 0x947bd79f, 0x034892dc, 0xd95dd964, 0x5501abfe, 0x3d2f0682, 0xa192989b, 0xd58a523d, 0x904b4b90, 0x41538ad4, 0x4d0805a9, 0x1406c50a, 0x67003100, + 0x01043d40, 0x84191784, 0x84242731, 0x0117b022, 0x22b02280, 0x01226f02, 0x22302200, 0x22311702, 0x03173122, 0x10840f33, 0x010c010c, 0x23001897, + 0x1f220f0d, 0x2c951417, 0x26271609, 0x00030426, 0x1133332f, 0xc7823f33, 0x3f323222, 0x20059a6d, 0x065d5eed, 0x21051a5a, 0xc749ed10, 0x4d212005, + 0xd2501419, 0x0769460b, 0xfe5d0623, 0x112e4dac, 0x4c260421, 0x424d1341, 0x09fc5016, 0x860a554c, 0x82e820f7, 0x334d08f7, 0x44407400, 0x31841b1e, + 0x19840300, 0x0c840e02, 0x31b00c11, 0xb00c8001, 0x0c6f020c, 0x300c0001, 0x1931020c, 0x31190c0c, 0x84293503, 0x26012610, 0x0032971b, 0x0931310c, + 0x2316952e, 0x1e1e1116, 0x020e1d10, 0x0f002897, 0xfd323f00, 0x090241ce, 0x41069c6e, 0x11270a01, 0xc6fd1033, 0x4132ed10, 0xf18c0804, 0x41096058, + 0x0721141d, 0x157558c7, 0x58151f41, 0x03211689, 0x16654e80, 0xfea10023, 0x06054264, 0x40683e08, 0x840e113f, 0x840a2724, 0x0184310c, 0x800124b0, + 0x0201b001, 0x0001016f, 0x02013001, 0x01010c24, 0x3303240c, 0x1910841b, 0x070a1901, 0x0e102c95, 0x27002597, 0x21240f1a, 0x11161695, 0x059d4710, + 0x3f332f25, 0x823f32ed, 0x06154e04, 0x410b0642, 0xb6570701, 0x0e35220f, 0x0b1d5c03, 0x11373623, 0x07bc4621, 0xfec50a23, 0x08c44796, 0x2420f194, + 0x20085949, 0x08965502, 0x94a40621, 0x0cab55ed, 0x6708f782, 0x14068b0d, 0x8d004a00, 0x182e5640, 0x14311b84, 0x84401684, 0x02844a0a, 0x1bb00248, + 0x01161001, 0x0a300a00, 0xb0030ab0, 0x029f0102, 0x30020001, 0x161b0202, 0x0a02020a, 0x4c041b16, 0x23108426, 0x11142301, 0x18103695, 0x49002f97, + 0x2e0f2431, 0x4820952b, 0x05059545, 0x1b021620, 0x1b161a00, 0x332f3f00, 0x333f332f, 0x3222f784, 0x1541333f, 0x5d2f210f, 0x11200084, 0x10212082, + 0x091c41ed, 0x45159c55, 0x1e4b141b, 0x09956509, 0x558b0d21, 0x394111b1, 0x55262014, 0x4c4125c5, 0x15da5518, 0x51420120, 0x00352b08, 0x353e406b, + 0x02178433, 0x59441a17, 0x22802205, 0x0e544401, 0x54443720, 0x27023405, 0x97332627, 0x0e230018, 0x1717220f, 0x2c95141f, 0x4b341607, 0x32290969, + 0x333f3311, 0x332fed3f, 0x053e4d11, 0x2b054559, 0xed105d5d, 0x11ed1033, 0xcefd1033, 0x5b0b135b, 0x8a5e0cbf, 0x059c4b0f, 0x02063324, 0x924b9ffd, + 0x155e4411, 0xf9acfe22, 0x4417a84b, 0x4e081462, 0x68fa8003, 0x00010000, 0x05000051, 0x00d1056e, 0x4089001e, 0x001e1b43, 0x0218001a, 0x01011901, + 0x06140000, 0x17051505, 0x04160403, 0x02050504, 0x0c0c7d0d, 0x15162017, 0x1e1a1915, 0x7f020306, 0x1714181b, 0x1c070d0d, 0x15001a19, 0x82040516, + 0x1c25082f, 0x13910703, 0xed3f0012, 0xdd2f333f, 0xcddccdde, 0x11cddd10, 0x012f3912, 0x3333332f, 0x323232ed, 0x2f3232cc, 0x20118333, 0x2e1582ed, + 0x877d1033, 0x10c4c404, 0x01c4c487, 0x8a2f1833, 0x3031390e, 0x15051501, 0x11051525, 0x35023e32, 0x06021421, 0x11212304, 0x35373507, 0x11380382, + 0x75031521, 0x0701f9fe, 0x814ff9fe, 0x8f013c65, 0xdafed779, 0xaab1feae, 0x25080082, 0xa9057301, 0x9b9494f0, 0x74fe9af0, 0x74ae743a, 0xb5e7fec3, + 0x65d90155, 0x618b63f0, 0x8f0161f0, 0x020000bc, 0xef826e00, 0xef825c20, 0x001a3308, 0x40550027, 0x0102022d, 0x15158b22, 0x1c080c29, 0x0e8b0104, + 0x000b0a07, 0x1c0e1ccb, 0x01cb0407, 0x1c7f010a, 0x1c021c8f, 0x05011c01, 0x060fcb27, 0xcb660805, 0x5b392005, 0x1124071b, 0x32ed1033, 0xdc82dd83, + 0x1132cd24, 0xd7832f33, 0x01313024, 0x01832115, 0x35233523, 0x22038333, 0x6e322111, 0x2323057a, 0x83331103, 0x2e342cd1, 0x66022302, 0x81fe7f01, + 0x82969efe, 0x01680800, 0x9be495f5, 0xe39f554f, 0x5b89908f, 0x28143d6f, 0x02436c4b, 0xf3d9804c, 0xd980d9f3, 0x6932ac02, 0xb38171a3, 0xac023270, + 0x482a2dfe, 0x4e37345e, 0x01001832, 0x00001e00, 0xd205a806, 0x67002000, 0xa0004240, 0xf00eb00e, 0x8b0e030e, 0x0f1d1d0f, 0x30088b05, 0x08200108, + 0x08500840, 0x08a00880, 0x08e008d0, 0x0f0808f0, 0x222d0182, 0x185f8b15, 0x1802187f, 0x10100d21, 0x222b8200, 0x8216031e, 0x83072016, 0x3f3f2bda, + 0x332f3912, 0x01331133, 0x7d4dd610, 0x10712207, 0x23d782ed, 0x325ded10, 0xa770d782, 0x82112005, 0x11272ebf, 0x030e1121, 0x35211115, 0x36361234, + 0x080d8237, 0x9114043f, 0xfe61aff3, 0x70532f9e, 0x3f9efe40, 0xfe305370, 0xf1b1669e, 0x0462018c, 0xef8a1a96, 0xc6e6a9fe, 0xdd9c0f01, 0xfc145594, + 0x1488037b, 0x9fdf9453, 0xe8c6f1fe, 0x8aef5901, 0xfe3a0118, 0x31d182c4, 0x05000028, 0x00d1056c, 0x405a0024, 0x10100035, 0x57821001, 0x0a072b08, + 0x0a400a30, 0x0a800a50, 0x110a1104, 0x0f17260a, 0x1a5f011a, 0x1a021acf, 0x08120f25, 0x00120112, 0x23102121, 0x10081803, 0xc48a0808, 0xc5855d20, + 0x4acd7121, 0x102505a5, 0x103311cd, 0x21c485cd, 0x6b4c1505, 0x23c38805, 0x043e3411, 0x7f08c283, 0x81436703, 0x27476073, 0x3920ccfe, 0xcdfe2c4c, + 0x233b4f2c, 0x4829cdfe, 0x43817463, 0xbc043301, 0x8057320c, 0xfe98eeb5, 0x97690194, 0x144f8dd3, 0xc8033dfc, 0xd88d4c12, 0x0197fe9c, 0xb6f19c6c, + 0x0b2f5580, 0xebfe1301, 0x00030000, 0x06e1ff1e, 0x00ef050d, 0x0068004a, 0x40490079, 0x3b4b2a24, 0x5e463b6e, 0x4f5a555e, 0x291e554f, 0x03000629, + 0x60554c55, 0x553b0155, 0x7519553b, 0x190e0335, 0xcd21be82, 0x83b0863f, 0x393923ae, 0x01821133, 0x03832f20, 0x3222bf84, 0xf3493130, 0x06062206, + 0x05f54907, 0x4e153321, 0x272005f3, 0x35250682, 0x37023e32, 0x08a97811, 0x021e3224, 0x7b421515, 0x2e222c08, 0x36110102, 0x14173736, 0x8233021e, + 0x17352228, 0x05735514, 0x022e3424, 0x14830123, 0x83353321, 0x22cd080a, 0x4c04020e, 0x23273b19, 0x4e141940, 0x3c1f0233, 0x682c3e5c, 0x1c09465e, + 0x2a767769, 0x447caf6c, 0x39452601, 0x24040a29, 0x052a4b3a, 0x1f508668, 0x477a5a34, 0x2350815e, 0x8a53d801, 0x46213663, 0x2c124d6e, 0x67fe272d, + 0x5903503c, 0x13190f06, 0x131b210d, 0x0c212555, 0x20131b1f, 0xfc294937, 0x34210f7f, 0x10060726, 0x190b161c, 0xe6010f16, 0x221c1a1d, 0x580b190d, + 0x0f0a3062, 0x10d30f13, 0x250a1219, 0x057ea360, 0x80030507, 0x080a0803, 0x603d6101, 0x734a3875, 0x5a36294e, 0x325b3f74, 0x3f4a7b59, 0x053b5f79, + 0x9b01150d, 0x3f19f5fe, 0x2d180e26, 0x2a1b1423, 0x330e1530, 0x38200a49, 0x1d342b2f, 0x1f76010a, 0x7f182936, 0x08198219, 0x27190b4d, 0x3c000100, + 0x11060000, 0x35007906, 0x14402900, 0x29291b1f, 0x2a170b00, 0x169b241e, 0x0303110c, 0x08009a34, 0x32ed3f00, 0xed32cc3f, 0x39393232, 0x332f3912, + 0x21313033, 0x26331121, 0x3e343502, 0x33353702, 0x33363615, 0x82171632, 0x00162808, 0x26262113, 0x60231127, 0x072005c8, 0x43080882, 0x1415030e, + 0x2117021e, 0x8efaba05, 0x4a7464cc, 0x8985cf8d, 0x0d101e0f, 0xf8890d1a, 0xfe171801, 0x465c128d, 0x0e1a0d89, 0x890e1e10, 0x192d4128, 0x30554025, + 0x1d011803, 0xa5050160, 0x7cb4e684, 0x018c9d1b, 0x23080082, 0xfe2e9b8c, 0x93f0feb2, 0x9ffe26a8, 0x01018701, 0x7bfe0202, 0x44165e01, 0x6c528061, + 0x1b587ea9, 0x01000000, 0x0a200282, 0x2a2c0582, 0x0500c000, 0x13053c00, 0xa2ff1505, 0x24220582, 0x0582a3ff, 0xa4ff3b22, 0x3c280582, 0x1705eeff, + 0xe6fd3b05, 0x3c220582, 0x0582fefd, 0x93fd3e24, 0x11841905, 0x83051921, 0x05192111, 0x1a2c1183, 0xb6ff3b05, 0x3c051a05, 0x1d05d2ff, 0x1d201d84, + 0x1d201d84, 0x21201d84, 0x87220b82, 0x23822a05, 0x0582c020, 0x30202383, 0x37201184, 0x37203584, 0x40203584, 0x40203584, 0x40203584, 0x44203584, + 0x44201184, 0x44201184, 0x46201184, 0x46201184, 0x46201184, 0xd0221182, 0x11844705, 0x11844720, 0x23844720, 0x11844a20, 0x11844a20, 0x11844a20, + 0x11845720, 0x11845720, 0x11845720, 0x11846420, 0x11846420, 0x11836420, 0x00830020, 0x66034824, 0x08830100, 0x32200382, 0x0b850382, 0x07000124, + 0x17863200, 0x04000224, 0x0b863900, 0x16000324, 0x0b863d00, 0x0c000424, 0x0b864700, 0x0b820520, 0x0b865320, 0x0b820620, 0x0b865f20, 0x3b000724, + 0x0b866b00, 0x15000822, 0x5f855582, 0x0e000924, 0x1786a600, 0xc4010d24, 0x0b86b400, 0x2a000e30, 0x03007802, 0x03040100, 0x0e000200, 0x0b86a202, + 0x1e000424, 0x0b84b002, 0x17820520, 0xce020a22, 0x04240b86, 0xd8021a00, 0x06200b84, 0x06221782, 0x0b86f202, 0x16000424, 0x0b84f802, 0x17820720, + 0x0e030822, 0x04240b86, 0x16031800, 0x08200b84, 0x0c221782, 0x0b862e03, 0x1c000424, 0x0b843a03, 0x00000926, 0x56036400, 0x01200b86, 0x77858382, + 0x47840920, 0x1786ba20, 0x2c000324, 0x0b86c203, 0xd6205383, 0x05200b86, 0xee205f82, 0x06240b86, 0x06041800, 0x07240b86, 0x1e047600, 0x08240b86, + 0x64032a00, 0x09240b86, 0x94041c00, 0x0d230b86, 0x87048803, 0x000e246b, 0x84380854, 0x820a2017, 0x080e2277, 0x240b868c, 0x081e0004, 0x200b849a, + 0x2217820b, 0x86b80812, 0x0004240b, 0x84ca0822, 0x820c200b, 0x08082217, 0x240b86ec, 0x08180004, 0x200b84f4, 0x2217820e, 0x860c0910, 0x0004240b, + 0x841c0920, 0x8210200b, 0x09122217, 0x820b863c, 0x4e092147, 0x13200b84, 0x06221782, 0x0b867009, 0x16000424, 0x0b847609, 0x17821420, 0x85090e21, + 0x0014258f, 0x091e0004, 0x15208f85, 0x14211782, 0x208f8509, 0x22178215, 0x84cc0924, 0x8416202f, 0x86f0202f, 0x202f830b, 0x200b84fe, 0x21178219, + 0x83850a14, 0x2f831920, 0x84300a21, 0x821b2017, 0x0a0a2217, 0x240b8654, 0x0a1a0004, 0x200b845e, 0x2017821d, 0x06c74106, 0x2f821d20, 0xc7411620, + 0x841f2006, 0x8478202f, 0x821f2023, 0x0a1a2217, 0x200b8482, 0x22178224, 0x869c0a0c, 0x0004240b, 0x84a80a1c, 0x842d200b, 0x86c4202f, 0x205f830b, + 0x200b83ce, 0x0a674108, 0x67410b82, 0x8a082008, 0x880b82bf, 0x8a0c20bf, 0x880b822f, 0x410c202f, 0x0b820a7f, 0x00044108, 0xa9f40818, 0x31303220, + 0x694d2036, 0x736f7263, 0x2074666f, 0x70726f43, 0x7461726f, 0x2e6e6f69, 0x6c6c4120, 0x67695220, 0x20737468, 0x65736552, 0x64657672, 0x7265562e, + 0x616e6164, 0x646c6f42, 0x3a203588, 0x20201486, 0x0b821583, 0x3d827320, 0x2e352024, 0x17863333, 0x17862d20, 0x20353883, 0x61207369, 0x61727420, + 0x616d6564, 0x6f206b72, 0x68742066, 0x24818a65, 0x756f7267, 0x2c168370, 0x706d6f63, 0x65696e61, 0x614d2e73, 0x27238274, 0x61432077, 0x72657472, + 0x203a7688, 0x70707573, 0x6465696c, 0x6e6f6620, 0x59202e74, 0x6d20756f, 0x75207961, 0x53826573, 0x16836782, 0x6f74203f, 0x65726320, 0x2c657461, + 0x73696420, 0x79616c70, 0x6e61202c, 0x72702064, 0x20746e69, 0x20398263, 0x29078265, 0x70207361, 0x696d7265, 0x4e827474, 0x84796221, 0x696c2493, + 0x836e6563, 0x2418824b, 0x726f2073, 0x207c8220, 0x2008826d, 0x20618366, 0x2cb9912c, 0x646f7270, 0x2c746375, 0x72657320, 0x823b8276, 0x88722022, + 0x6e692760, 0x69687720, 0x998a6863, 0x74827720, 0x636e6927, 0x6564756c, 0x2bbd8964, 0x796c6e6f, 0x29692820, 0x626d6520, 0x74218b82, 0x82c88768, + 0x84ad9b41, 0x6964312e, 0x7220676e, 0x72747365, 0x69746369, 0x20736e6f, 0x08826087, 0x3b247a89, 0x646e6120, 0x65826482, 0x6d657428, 0x61726f70, + 0x75826972, 0x776f6427, 0x616f6c6e, 0x0d3d4164, 0x2a416120, 0x72652305, 0x02826f20, 0x83687421, 0x74752708, 0x20747570, 0xe6836564, 0x6f742027, + 0x6c656820, 0x0d514170, 0x41202e26, 0x6f20796e, 0x75232e84, 0x82206573, 0x727027c5, 0x6269686f, 0xed827469, 0x7474682b, 0x2f2f3a70, 0x2e777777, + 0x077b426d, 0x6f632e3d, 0x79742f6d, 0x72676f70, 0x79687061, 0x6e6f662f, 0x002f7374, 0x0065004e, 0x82720067, 0x00742405, 0x82560061, 0x00722207, + 0x20098264, 0x2003826e, 0x281d8e20, 0x01750074, 0x006e000d, 0x892790e9, 0x82662019, 0x90642041, 0x2015851f, 0x20658446, 0x861d9074, 0x88032717, + 0xc403bd03, 0x0582bf03, 0x238fb120, 0xa92a1b8c, 0x32002000, 0x31003000, 0x09823600, 0x69004d24, 0xc1826300, 0x73006f28, 0x66006f00, 0x13827400, + 0x09824320, 0x70007222, 0x61200584, 0x69201182, 0x6e220982, 0x19822e00, 0x6c004122, 0x20220182, 0x35825200, 0x68006722, 0x73201b82, 0x52201582, + 0x73209982, 0x7620fb84, 0x64200582, 0x42202982, 0x6c233182, 0x91006400, 0x8f3a205d, 0x8700209b, 0x053d412b, 0x59827320, 0x6e006f22, 0x35205582, + 0x33224782, 0x2f8e3300, 0x2f8e2d20, 0x20096d41, 0x22c18269, 0x82610020, 0x82742039, 0x826120cf, 0x0065227d, 0x220f826d, 0x826b0072, 0x006f2213, + 0x20198466, 0x20a18268, 0x22979220, 0x82670020, 0x006f2235, 0x20f78275, 0x83bd8220, 0x8263202d, 0x826d2007, 0x8261200f, 0x8469208f, 0x822e20e3, + 0x82612039, 0x827420f5, 0x006522fb, 0x20518277, 0x20618443, 0x91fd8474, 0x822020ed, 0x22518393, 0x826c0070, 0x826520d7, 0x82202093, 0x20df8387, + 0x22dd8274, 0x82590020, 0x82752061, 0x826d2045, 0x82792045, 0x82752007, 0x8665202f, 0x20cf85a7, 0x20218266, 0x2071826e, 0x20038220, 0x2019826f, + 0x20a58263, 0x832d8265, 0x822c2071, 0x8264200f, 0x82732057, 0x826c20a3, 0x00792113, 0x61201183, 0x6420ad82, 0x70201982, 0x69202982, 0x74200b82, + 0x73853584, 0x0f866520, 0x67826120, 0x35822020, 0x23826520, 0x41826d20, 0x5d827420, 0x62219d85, 0x20878300, 0x20df8474, 0x20b58420, 0x20db8263, + 0x8597886e, 0x82732031, 0x826f2053, 0x8420203b, 0x00722237, 0x414f846d, 0xc3850563, 0x73418983, 0x82702021, 0x006f2643, 0x00750064, 0x83498263, + 0x07474233, 0x11826920, 0xcf846520, 0x63206785, 0x87060741, 0x22d983c1, 0x82770020, 0x202983a7, 0x16334168, 0x85007721, 0x202d83e9, 0x20cd8263, + 0x206b8275, 0x20038265, 0x412f822e, 0x6f220f7b, 0x21826e00, 0x2824fd83, 0x29006900, 0x65242182, 0x62006d00, 0x6420fd82, 0x83855d96, 0x5b41998f, + 0x205d8927, 0x226f8264, 0x8267006e, 0x82722065, 0x0073246d, 0x82720074, 0x43632011, 0x73200879, 0xc18f1982, 0x33842020, 0x23822020, 0x09826820, + 0x29422183, 0x823b2007, 0x0703422d, 0xcb85c983, 0x59827420, 0xd3436d20, 0x215f8308, 0xeb83006c, 0x6f006424, 0xf9847700, 0x61006f23, 0x20e99700, + 0x43258274, 0x5542055b, 0x82652009, 0x822020a5, 0x82722017, 0x846f206f, 0x20118787, 0x210d8275, 0x05830070, 0x51822020, 0x76006522, 0xd742cd84, + 0x826f2005, 0x8268202d, 0x006c228b, 0x1ca34270, 0x20056d44, 0x8ba3846e, 0x055d425d, 0xf383fd83, 0x20053f42, 0x205f8268, 0x83038262, 0x006424e3, + 0x8268002e, 0x8274207f, 0x003a225f, 0x2101822f, 0x01830077, 0x6d002e22, 0x2210e944, 0x8263002e, 0x826d20bf, 0x82742023, 0x82702067, 0x8267200b, + 0x826120d3, 0x82682039, 0x432f200f, 0x732008a9, 0x4e202182, 0x1d83b382, 0x5b826920, 0x8519e945, 0x824c201d, 0x00682269, 0x20f78261, 0x2209826f, + 0x44750074, 0x20210ec3, 0x20219100, 0x20798447, 0x87299073, 0x00462817, 0x006c00e9, 0x82f6006b, 0x82e92055, 0x0f6b462b, 0x37871f8f, 0xb7827320, + 0xb3827420, 0x59986f20, 0x5f46218d, 0x22698311, 0x82480074, 0x826c20cf, 0x8466207b, 0x8d7d8f4f, 0x4150201d, 0x75220649, 0xcd456200, 0x90792006, + 0x4123937d, 0xaf910b63, 0x04331d8c, 0x043e041f, 0x0443043b, 0x04380436, 0x043d0440, 0x8f39044b, 0x20239463, 0x18854754, 0x4b201989, 0x0123eb83, + 0x8f6e0031, 0x89002051, 0x004b2819, 0x00650072, 0x826b0070, 0x0f0d41eb, 0x4c201b8b, 0x64221f82, 0x1d486900, 0x23198912, 0x00030000, 0xff230084, + 0x84d30075, 0x20048f08, 0x2a218201, 0x000a0008, 0xff050010, 0x820f00ff, 0x0001211e, 0x00200183, 0x00220582, 0x0f829d1d, 0x03821420, 0x1d340282, + 0x1d823095, 0x2a090691, 0xf7864886, 0x0207010d, 0x821d82a0, 0x24081282, 0x0101027e, 0x09300b31, 0x0e2b0506, 0x051a0203, 0x06613000, 0x01062b0a, + 0x37820104, 0xa0040102, 0x30513053, 0x26118a2c, 0x801ea21c, 0x843c001c, 0x004f2401, 0x82730062, 0x826c20c6, 0x827420f0, 0x003e2103, 0x30210182, + 0x084c8a21, 0xbf140429, 0x38371944, 0x73a1dbc5, 0x9df4e3d0, 0xa2694b9d, 0xa04ea84b, 0x30531882, 0x30c20482, 0xa0aa0382, 0x02010203, 0x82331302, + 0xbcb928a2, 0xe3574e0f, 0x82386566, 0x0000240b, 0x880d30b9, 0x050121ad, 0x77209782, 0x032ca684, 0x13060455, 0x31535502, 0x06113013, 0x08300c82, + 0x61570a13, 0x6e696873, 0x6e6f7467, 0x0e301031, 0x072d1483, 0x65520713, 0x6e6f6d64, 0x301e3164, 0x2211831c, 0x4c15130a, 0x3123142e, 0x831f3021, + 0x1303221f, 0x3e1f8918, 0x656d6954, 0x6174532d, 0x5020706d, 0x1e304143, 0x36310d17, 0x37303930, 0x38353731, 0x825a3634, 0x8a38200e, 0x8130220e, + 0x2299d4b2, 0x830a300c, 0x130b2999, 0x434f4103, 0x25302731, 0x22080d85, 0x69436e1e, 0x72656870, 0x45534420, 0x4e534520, 0x4642363a, 0x44322d36, + 0x392d3235, 0x31314332, 0x85233025, 0x941c20d0, 0x4b5320d0, 0x302305e5, 0x41220182, 0x01270b60, 0x82030005, 0x82000f01, 0x0a330917, 0x01018202, + 0x335c9d00, 0x020f373a, 0xf2a4a293, 0xae5dca4e, 0x15dd7f9e, 0x0213f1bd, 0xd99a07a8, 0x2bb36541, 0x1c349fdb, 0x4a79e329, 0x6dca9c95, 0x48f8e760, + 0x1b0ecdf0, 0x3707ed49, 0x183a293c, 0xfbfd899e, 0x67af9c2c, 0x9c1574ff, 0x22058809, 0xd4abc70d, 0x2010ab39, 0xbd7f2f12, 0xc0fd189a, 0xc78c43c7, + 0x371c374d, 0x27199e1e, 0xdc09e6e7, 0xc1240c81, 0xe80bf48d, 0xbe4d9ac5, 0xa275f6f3, 0xe12254e1, 0x3cf2bbb6, 0x646d198e, 0x0d5c8ae6, 0x283bd241, + 0xc142946e, 0x610f571c, 0x40de7ff8, 0x7a50c6ad, 0x10408e60, 0xc5e50222, 0x4c1976d9, 0x7b10c9ee, 0x21bc7ac3, 0x7a92f6c2, 0x89265f22, 0x64fcef9e, + 0x4c018189, 0x34d67bff, 0x5d87c785, 0x6dc28b2c, 0x13b70ff2, 0x224dfd23, 0x2634b780, 0xb4d024b8, 0xe0f78298, 0x9c9a8f88, 0x2bb6b24e, 0xe70d2f9c, + 0x16dd81a7, 0x293855aa, 0x0393413f, 0x7191d8fa, 0x010302c1, 0x82a30100, 0x82300901, 0x1d300501, 0x1d550306, 0x0416040e, 0xfc351014, 0x9b50f4a9, + 0x2d47585e, 0xe0d7ce4a, 0x1dc111b7, 0x831f30f9, 0x04233c1e, 0x80163018, 0xf8342314, 0x704652d9, 0xfb40ed0a, 0x2bb3fb76, 0xb335c3b0, 0x8354300f, + 0x041f2c20, 0x304b304d, 0xa047a049, 0x4c438645, 0x6322064b, 0x4b4c6c72, 0x6b70230e, 0x15822f69, 0x974d2f20, 0x2f732106, 0x2c08c641, 0x656d6954, + 0x6d617453, 0x41435070, 0x3122822e, 0x08065830, 0x0501062b, 0x01010705, 0x4a304c04, 0x0f874830, 0x86023023, 0x18ac4c3c, 0x65226084, 0x59997472, + 0x13307422, 0x2524af83, 0x0a300c04, 0x03215287, 0x0e8f4308, 0x82030c09, 0x51000101, 0x9bc0cc8a, 0x80c001c6, 0x58d87b1a, 0x7a1822a0, 0xf4ee7939, + 0x70f5badd, 0x4e79e6e2, 0x9ad56c3c, 0x07950c9d, 0xd7f47e91, 0x9820186e, 0xfdf2e047, 0x40cf90ce, 0xdfea1c00, 0x9b4c9429, 0x3c66d5d5, 0x1125d1d1, + 0x5e34bc92, 0x55fa0605, 0x9bbf721a, 0xb23d99b8, 0xad569088, 0x55214549, 0x35233bcb, 0x15591438, 0xef8b8447, 0x18d8d03f, 0x96ad046f, 0x42bfd1e7, + 0xaee4871b, 0xadf8cf69, 0x33da59b7, 0x8f35f3e8, 0x9d3b8b39, 0x3af51a2f, 0x5548505a, 0x0a80e0d0, 0x3c8a5b16, 0x658c896a, 0x6c986017, 0x40c33d4a, + 0xea5d1555, 0xbdcfd99b, 0x8f379dc6, 0x77ae4413, 0xf350ce7c, 0x7e77a00b, 0x6f5bb30e, 0x98c04e7b, 0x2c420842, 0x432fe3d8, 0xab037b26, 0x5389fd12, + 0xe547e0b1, 0x3f3a9f87, 0x6299f93b, 0x85af9045, 0x57427f92, 0xd10d7c66, 0xd82c9223, 0x99e3b382, 0xd465a6b4, 0x8c27db33, 0x30e929ad, 0x30000682, + 0x44e80382, 0xc3290ac5, 0xd8a79b0e, 0x2cf7dcb2, 0x20008300, 0x0b3541c3, 0x00050b24, 0x2b447e30, 0x30282254, 0x05f44326, 0x2d421f20, 0x20210808, + 0x65646f43, 0x67695320, 0x676e696e, 0x41435020, 0x31303220, 0x171e3031, 0x3037310d, 0x32313138, 0x20018230, 0x05cc4434, 0x30210e89, 0x459fd474, + 0x03200685, 0x44168545, 0xff08208d, 0x38d757bb, 0x7f06b1d1, 0x6da92d49, 0x7a9f63b3, 0x213ab6ba, 0xae98b45b, 0x81a4d48d, 0xc575c5a0, 0x4082ef2c, + 0x5381b72a, 0x0163f377, 0x37cebc0a, 0x43400384, 0xce4b8257, 0xfdb61fed, 0xc2c96d80, 0xc7055d91, 0x005956dc, 0x57eb0ce1, 0xb8f1fdde, 0x75bf2790, + 0xb275fc4a, 0xc5b65872, 0x62339b48, 0x9495d105, 0x2239bfa5, 0x4d128dad, 0x32da6246, 0x22aace19, 0xb148565c, 0x67c9456f, 0x305d6276, 0x282fa388, + 0x2a501fc5, 0x1adb86d9, 0xc2812511, 0x2e67f5f4, 0xf51d79e7, 0xf4751ce2, 0xfcc7cc4e, 0x800bbfe7, 0xcfff2947, 0x0cb169cd, 0x67eb600b, 0x9b1b84e6, + 0x476dfd4d, 0xc1d9c73a, 0x95f26161, 0x070da112, 0xd82163ae, 0xff1c99f4, 0xee815578, 0x20e879a5, 0xda0a5f82, 0x541953b5, 0x870d5701, 0x7cc28d91, + 0x808654f1, 0x82db62e1, 0x5e263e73, 0xd21240f0, 0x0326d539, 0x3188850d, 0x8b0b0a5f, 0x24078d44, 0x0182307f, 0x056e447b, 0x18042524, 0x98471630, + 0x084c2208, 0x08a94301, 0xae440320, 0xa723080a, 0x211f5d13, 0x03e85589, 0x36179eee, 0x8854f2ea, 0x30af1935, 0x55030651, 0x4a04111d, 0x46a44830, + 0x46314430, 0x34220d68, 0x1e823230, 0x05042e08, 0x33322b13, 0x32313030, 0x3038632b, 0x65356234, 0x39342d61, 0x342d3462, 0x2d383332, 0x32363338, + 0x3538642d, 0x32616631, 0x66343532, 0x0c014563, 0x646e4833, 0xd30550e5, 0x3717aa82, 0x6db52237, 0x0275caa8, 0x19014595, 0x3b114d51, 0x6f696b70, + 0x632f7370, 0x4d2f6c72, 0x6f436369, 0x67695364, 0x32414350, 0x5f313130, 0x2d260483, 0x302d3730, 0x1f822e38, 0x87613021, 0x010125f4, 0x53305504, + 0x1145d982, 0x02302306, 0x01454586, 0x4560841b, 0x629a0704, 0x0c30742e, 0x1d550306, 0xff010113, 0x00300204, 0x0a0ecd43, 0x02820318, 0x974d0001, + 0xf17e344f, 0xe39c9370, 0x9c4b1ad5, 0x266b7e11, 0xf424a5c4, 0x24d444df, 0x086ab3ba, 0xcb9a9989, 0x9b70e731, 0xb01d14ff, 0xe47f3907, 0x22133b30, + 0x95c80ede, 0x7e6ebb67, 0xa4957cf8, 0x93378290, 0x49d383a6, 0xadacc102, 0xb791ef59, 0x0e0066a7, 0xd4254ca2, 0x075de7dc, 0x3428ca02, 0x83393b65, + 0x8e2a95ad, 0x08e8a0ca, 0x3efe1c3a, 0x9449407b, 0x25548e4d, 0xc7b1e50a, 0x3771ee0a, 0x365e9bc6, 0x4442a7f5, 0xb087bcfb, 0xd935c00d, 0xff5f8726, + 0x7428ef67, 0x04308af7, 0xcc678a11, 0x6a60354b, 0x8dc3e721, 0x9b5e8307, 0x1f719dab, 0x11092629, 0xd382f5d4, 0x290736d2, 0x6d92e8ae, 0xc9007f90, + 0xd0ee5ba8, 0xa1fb6504, 0xcc53570e, 0xf38998f2, 0xc893159f, 0x5263c406, 0x574f0261, 0xfbf51c48, 0xb5ca1275, 0x69c2f4f9, 0x9da1bb5f, 0x2783690d, + 0x1d3e83eb, 0xeec3316b, 0x84c4f10e, 0x31ee8743, 0x3200069c, 0x8a20b77c, 0xea2308b9, 0xd418b056, 0xec15bdb2, 0xd364ed37, 0x2302156b, 0x87338ac6, + 0xb69bd13a, 0x2c5996c0, 0x845301a0, 0x7bf25f01, 0xecb07ac1, 0xf652d8d4, 0x4481755f, 0x27381659, 0xf350bb53, 0xf7df715e, 0x31dc51d7, 0x35631ad5, + 0x9f7e972a, 0xcf5f3766, 0xb2ef3355, 0x232cbcca, 0xee1e44aa, 0xb44867fb, 0x0fc342e8, 0xa258518a, 0x26610246, 0x5cbf195a, 0x40a8e994, 0x305be770, + 0xd4807c4c, 0xa5a26750, 0x3deb0eee, 0x79e5f1b5, 0x58f5e11e, 0x89bb6f19, 0x20e2786d, 0xe4ff2558, 0xafe6b348, 0x0440b2f1, 0xd4504617, 0x14916c0c, + 0xe2caee7d, 0x1bde26f6, 0x5167043b, 0x17a40f2e, 0x3fff42f7, 0xf8318991, 0xe5b3bca7, 0x2adc523a, 0x644a7f33, 0x65d86591, 0x6adbb611, 0x526cb4b7, + 0x718bbffc, 0xce2cc416, 0xe9a09a73, 0x45c1085d, 0x8629a545, 0x6d3101ec, 0x56c6745e, 0x82300b31, 0x82300706, 0x03a0ef03, 0x02020102, 0x6816610a, + 0x00830034, 0x30471c20, 0x5f303a0e, 0x11301331, 0x92090a06, 0xf2938926, 0x1901642c, 0x6f630316, 0x3019316d, 0x20148c17, 0x085b5409, 0x302d3123, + 0x05d6452b, 0xd6452420, 0x522e0809, 0x20746f6f, 0x74726543, 0x63696669, 0x20657461, 0x68747541, 0x7469726f, 0x171e3079, 0x3037300d, 0x31333034, + 0x30333532, 0x0d175a39, 0x0e843132, 0x83303321, 0x4b30200e, 0x6c4a7841, 0x9fff081f, 0xdfb16ca1, 0x2a9248db, 0x192e6b7c, 0xe3e2bde1, 0x235199c5, + 0xddcead50, 0x0f244e18, 0xd1a7d1ee, 0x3074ad4c, 0x07eb1120, 0x159554d5, 0x421b9449, 0x5c98ae92, 0x00da2630, 0xbd7be86b, 0x0f0789ec, 0x98040ef7, + 0x1fcc89f0, 0x872433cb, 0x67f4f29d, 0x7bfc2c1c, 0xea1d88e7, 0xa1a34ee7, 0xca5323c1, 0xcf45fa8d, 0xaf5ed009, 0x0442b0d0, 0x6ca6f9a2, 0x28d76793, + 0xb05346dc, 0x28e5d086, 0xac272e46, 0x52554f86, 0x2c03e40c, 0x90906afb, 0xf3876e30, 0xfa9d3059, 0xb397d67e, 0x7e9721e8, 0xf313d2f8, 0x6d53b708, + 0x9045b452, 0x4a00489f, 0x27116647, 0x97a86629, 0x8106d3e4, 0x84f9a24a, 0x144711a7, 0x849f8209, 0xfe7855ed, 0x501d9a01, 0x10008508, 0xb7ed4630, + 0xbb4623de, 0x9f542dc4, 0x41781eaf, 0x9bcc7731, 0x93833bdf, 0xb50261a1, 0xfcb10d1d, 0x01b29bf7, 0x544b22ce, 0xc305f9ff, 0x450b20c2, 0xab2607de, + 0xa7018230, 0x71440f30, 0x30052508, 0xff010103, 0x4a0ace45, 0x0b20145c, 0x0f2a2f83, 0x02030404, 0x10308601, 0xbd4d0906, 0x01152106, 0x00231183, + 0x4a988130, 0x813e059d, 0x8d813090, 0xac0e1480, 0x56406082, 0x25e59727, 0xe12afc13, 0x5995530a, 0x63a1a4e4, 0x9e4261a4, 0x10823360, 0xa116ad79, + 0xada5a04a, 0xf458734c, 0x652e1307, 0x164b5030, 0x30492a05, 0xa0453047, 0x8641a043, 0x29164b3f, 0x2d082543, 0x746f6f72, 0x74726563, 0x6c72632e, + 0x10465430, 0x3048240a, 0x4b443046, 0x38200a12, 0x201b1046, 0x4b42832f, 0x52200a12, 0x43205582, 0x0e4b5585, 0x020a0a26, 0x97100001, 0x035cc38a, + 0xe9dd3644, 0xdb77adb4, 0x4d5179ce, 0x742eb101, 0x0c6d5b71, 0xbeceab13, 0x2eb88f7b, 0x8ca212d4, 0x57b8626d, 0x204ecb02, 0xdd995013, 0x57e2407a, + 0x9a58afbb, 0x011de11c, 0x78bbac86, 0xecd08bf2, 0xe2ee013b, 0x050a8fbe, 0xe2488dc8, 0xdd1553f0, 0xe492ab4f, 0xd56a8de7, 0x94e6c180, 0x852f06f2, + 0x2a91e903, 0xfb702224, 0x78e4fcf6, 0xf70d2e99, 0xbc70e207, 0x8e9d4e18, 0x95720a6b, 0x9c39a1b8, 0x51c52d67, 0x5c62ea0e, 0x8b98163f, 0x07e23f20, + 0xccf9321a, 0x31764a31, 0x0b722b3d, 0x3d70eac8, 0x130a85ff, 0x610ac2df, 0xb8d7f08e, 0x8b4eeb17, 0x2b35c57f, 0xebbfa35e, 0x420b7dbc, 0x7253d47b, + 0xca30ee21, 0x5c6578bb, 0x0a17015b, 0xdad20e14, 0x3cf59814, 0xb35866b9, 0xf9e72f2d, 0x51cc8685, 0x709de856, 0x39ac6c94, 0x79f6d44c, 0x7a18aabf, + 0xa2ef2962, 0x0634299b, 0xc9621a77, 0x1f6d1e3d, 0xc70bf082, 0x43cfbb2c, 0xecf9e5b3, 0xa4e3b57d, 0xb83574a8, 0x2371c54e, 0x0b762612, 0x718c523c, + 0x1443465a, 0xb0b3b3bc, 0x9fc8674d, 0x7980ff42, 0x159e8021, 0x42e86630, 0xc81a5e12, 0xd021229e, 0xe92be943, 0xcc48f4bb, 0x32d8d42c, 0x2a264c80, + 0x5a5f2448, 0xa6ef56ea, 0xca9d99de, 0x81bd6f3a, 0x11067427, 0xbf2176ee, 0x27c1829b, 0x6ab1b654, 0x76a1893d, 0xa16eb461, 0xaabfa613, 0x6f12f047, + 0x6c328afd, 0x51dffeb2, 0xc9238cc8, 0x1d9dbd66, 0x02641287, 0x59af2d3d, 0x21e4b88f, 0xcab0b5e5, 0x5478b463, 0x2e41d405, 0xb094ac50, 0xb3ab78a5, + 0x1a7596a0, 0x138792d9, 0x322f2275, 0xa06e08a8, 0xbf258c5b, 0xca84efa0, 0x1eebd621, 0xee9ac94f, 0x01f7e049, 0x0b896f65, 0xc869c87d, 0xa7ea6ee6, + 0x2931ce97, 0x5bc50eff, 0x1b4dd85c, 0x2ffad8a1, 0x552e3f9e, 0x13c96b16, 0x8230fda3, 0x82307a07, 0x0a466205, 0x900e2307, 0x008300d2, 0x37480320, + 0x8130220e, 0x54664b88, 0x30303222, 0x20052f46, 0x232f4629, 0x2809104c, 0x30373031, 0x35303238, 0x05344639, 0x0e843620, 0x83303121, 0x80b04c0e, + 0x50028221, 0x0a0a11a8, 0x30000f02, 0x020a0282, 0x00010282, 0x72faf0ab, 0xad2e1c10, 0x82aa6ed8, 0xba344d10, 0x2158b6f2, 0x2a1b429f, 0x505ae96b, + 0x3806b8aa, 0xba49041a, 0x1e0cc37f, 0xc66b37dd, 0xf00bd812, 0x0699c238, 0xd539c8b0, 0x42311401, 0x790d89d3, 0x947e8764, 0xaf6c2460, 0xe99c499e, + 0xdfd25e68, 0x0ab2539b, 0xd9afc32c, 0x7aae2ba9, 0x96d7af09, 0x1a60ca59, 0x7666e905, 0x265232e8, 0xabe72f12, 0xb3cf5008, 0xd85db744, 0x75032ec4, + 0xcbf368ab, 0x5c3af36d, 0x46f416a1, 0x6438e0ba, 0x35646eac, 0x63a0a678, 0x40d32d0f, 0xdee3f893, 0x5cd50d07, 0x2949a579, 0xa0be0de7, 0x94be7713, + 0xe3fbef3d, 0x1f105a2b, 0xa228564d, 0x12e0727a, 0x5e49b73a, 0x43ededd8, 0x7bd98391, 0x1b867bb2, 0x8cb13ed9, 0x4f89e85d, 0xa1f21a84, 0x90e4592f, + 0x33ae2d3b, 0x3eb7c558, 0xb3d332fe, 0xb2b13d03, 0x7e3892af, 0x2c809dd2, 0x91564ef5, 0xc3253521, 0x7f646e39, 0x0f9cba53, 0x842319ad, 0x03baf4cb, + 0x5ff78d86, 0xbf52d0f0, 0xbc87948c, 0x257421c0, 0xb628185f, 0x382827cc, 0x4a399825, 0xb17ccf36, 0x231cae92, 0xec66a9a7, 0xe16a1f61, 0x5f9d4928, + 0x5d25e288, 0x3e4b21d3, 0x57b5c452, 0xf003243f, 0x2f5b7ad1, 0x70e323d5, 0x46510f5d, 0x00f8b377, 0x02acbce1, 0xc0db5f82, 0x1bbdb315, 0xe74b55d4, + 0xe90fa139, 0x18bc4923, 0x457c44b8, 0x72c3c1e4, 0xe772e07a, 0x46bfdf24, 0xc2efc599, 0x83db571c, 0x494dec8d, 0x8eaba730, 0x9f5becdf, 0xb0ddfcaf, + 0x97c1e266, 0xd6ed7b81, 0x49e74bed, 0x2813a729, 0x677da7a6, 0x628ae680, 0x2fb25f78, 0x9c57d784, 0x2877bf5c, 0x6dedf128, 0x2c8f28c3, 0x4f37408f, + 0x4485e1c1, 0x4c09c489, 0x43a5d4c5, 0xf795742f, 0x2078f86e, 0x5d132c58, 0x3e9a9560, 0xda84334f, 0xde1788b0, 0x96f44e9e, 0xa046bcb0, 0xe0d2986c, + 0x478c88d6, 0xed24083b, 0xe9018230, 0x5112fe46, 0x974c09ba, 0x47192014, 0x1430082f, 0x1e0c0402, 0x0053000a, 0x00620075, 0x30410043, 0x470c5747, + 0xf3511094, 0x2d72350b, 0x9031023a, 0x0514b943, 0xa7eae14e, 0x23d131c7, 0x5a303489, 0x2a05dc46, 0x30513053, 0xa04da04f, 0x4649864b, 0x4d2b29dc, + 0x6f526369, 0x7265436f, 0x4c747541, 0x5f2b08f7, 0x325f3330, 0x72632e32, 0x465e306c, 0x52240ae6, 0x4e305030, 0x200ae646, 0x25e64642, 0x74235f9a, + 0x839f8130, 0x042029bc, 0x81309781, 0x91813094, 0x26082441, 0x8130032e, 0x873f3083, 0x0102236e, 0x6e9b3316, 0x73706f38, 0x636f642f, 0x72702f73, + 0x72616d69, 0x73706379, 0x6d74682e, 0x40884030, 0x34300236, 0x1d20321e, 0x65004c00, 0x61006700, 0x5f006c00, 0x6f007000, 0x69240782, 0x79006300, + 0x73220d82, 0x17827400, 0x1f827420, 0x03826d20, 0x0d826e20, 0x1d202e22, 0x0a0e5045, 0x02820312, 0xf2670001, 0xe098a586, 0x2e1a7954, 0x6774d8d3, + 0x960b9b22, 0x9263e111, 0x7d964299, 0x900c79d2, 0x2e5f65c1, 0xc3f83e2c, 0x836dd172, 0xe83fbefe, 0xbf3bca0a, 0xf3a3a947, 0xbf63db69, 0x97a53522, + 0x9084655d, 0x50468b7d, 0x920cd855, 0x4b1ad27c, 0x423cf31c, 0xb0d0528b, 0x3ee36bfd, 0x9b292e07, 0xa51b3de6, 0x771db5d4, 0xe9e23994, 0x3d44c964, + 0xf3237a78, 0x90a67d13, 0xf48d8374, 0x460226cb, 0x108ac22a, 0x05a9a4bb, 0x68ed9b0c, 0x952e68fa, 0x2a3f2aa0, 0x6349586b, 0x6e69091f, 0xe496985a, + 0x8fc0f483, 0xde2b46f3, 0xbdd03bfc, 0x256eef35, 0x27afe5ae, 0xf3ddd0ed, 0x2899af0e, 0x0e4d9897, 0x08f20b3d, 0xc31fd689, 0xf0e21832, 0x5bce2dc5, + 0x3949b49e, 0xc20ac60a, 0xe5aeadc6, 0x15dbd9b2, 0x58455188, 0x27713238, 0xf4b17f1a, 0x2cdef827, 0x9869203a, 0x688959b2, 0xb7a76f6e, 0x0540c374, + 0x2a01a606, 0x3f823e28, 0x0b664d13, 0xf54db3c0, 0x1c7f8fe1, 0x457d156f, 0x40e576a7, 0xc3a3652a, 0x8662525d, 0x36631dc3, 0xdadf8697, 0x16f2f8f3, + 0xe1279aa1, 0xd097a5cd, 0x41635dee, 0x9c075be3, 0x77063e87, 0xb106d106, 0xbe141f75, 0xf0b56161, 0x041bc6dc, 0xc741dfbe, 0xdeee280e, 0x97ec2f65, + 0x965ca1f6, 0xa1d600d8, 0xf359bd46, 0x4b09a597, 0x80991048, 0x2900d01f, 0xa59bb1c5, 0x1e77453f, 0xa2d2c635, 0x7a7a9fa2, 0x9548fa22, 0x47fbab1f, + 0x9ef58023, 0xb76bbff8, 0xebe2974b, 0xec1a7875, 0x799937ea, 0xd6ff4b18, 0x756823b3, 0xfcfaafe6, 0x800beb8b, 0xaf3b69ea, 0x04ed30fc, 0xdfdf8e4c, + 0x91636d75, 0x569dd13d, 0x80bf4f4e, 0x78a12257, 0x7a213211, 0xb10a41ef, 0xcca8fb3f, 0xa1c15da4, 0x71579b88, 0x45484e56, 0x9bc942c0, 0x800a5b76, + 0x79fd6b48, 0x6dbdc19f, 0x52c96a6d, 0x7a0d1373, 0x8231cd50, 0x8230b004, 0x0102ac04, 0x95813001, 0x587fb846, 0x0d5405d3, 0x0967590f, 0xc481a024, + 0xe1581930, 0x03092308, 0xcc510c31, 0x01022408, 0x8a1c3004, 0x310b230d, 0x1d8b300e, 0x23301522, 0x043a3889, 0x14041631, 0x37620a03, 0xfb6b33be, + 0x15d0ebd2, 0xab304737, 0x6b1eec3f, 0x428a6430, 0x56310c28, 0x2aa05430, 0xe1602880, 0x5c542014, 0xa12311e5, 0x43248026, 0x542018d9, 0x2008ef62, + 0x0e445820, 0x82040b09, 0x5d4a0001, 0xaa19685f, 0x24d405a6, 0x29621853, 0xc620dfa5, 0x4a4e4b0f, 0x18806791, 0x21281bf4, 0x224411cd, 0xebcf8e31, + 0xa97c4d65, 0xb86a37c7, 0xe4e3778c, 0xc5063299, 0xabff6c9a, 0x195a7adf, 0xb163e203, 0x44e7d652, 0x6b3f01b0, 0xf53a1c2b, 0xe49a2b2f, 0xe28728f4, + 0xc841d1e9, 0x2338cb0f, 0xf9c05756, 0xbf56a88e, 0xa7056630, 0x2f96b287, 0xde76bbb8, 0x499c81c8, 0xe1b43ac4, 0x1758db0a, 0xb23bacf4, 0xad2468dd, + 0x2ef6df8a, 0x76ffa9bc, 0x218a70ae, 0x9baeb51d, 0x41d671d6, 0x9ccb408d, 0x8d84109e, 0xd84fff75, 0x6a8d0300, 0x9270b6e3, 0x1fc0d1c0, 0x42d72ee4, + 0x8dbdd200, 0xdc1277be, 0xdf3e149c, 0x2cf050e9, 0x55b7f5b7, 0x7f0607ab, 0x1d1bb83c, 0x00bd6fa1, 0x5c3eace6, 0xf5ab9130, 0x26194f6b, 0x822eb622, + 0x6dd8d804, 0x04aa1a0e, 0xdacc858b, 0xa1c61af8, 0x45468c44, 0x259950d3, 0x82a1b284, 0x82302802, 0xa3412402, 0x31062409, 0x82150282, 0x02112612, + 0x81300101, 0x78884f8e, 0x5b059342, 0x93420f67, 0x305d220a, 0x22b58918, 0x880b3103, 0x0107230c, 0x0c881c30, 0x31050932, 0x310d170f, 0x31303137, + 0x33393139, 0x5a343533, 0x33109142, 0xba95dee7, 0x5afdb96e, 0xdbfee41f, 0x70f58a0a, 0xb78ad28a, 0x090e1051, 0x01820404, 0x86607a00, 0x44cfa7ff, + 0xd5d85281, 0xabfe8c6a, 0xbd05ba13, 0x33a69721, 0x52800b5a, 0x4930c0d0, 0xe458fe20, 0xfe832e13, 0x2cfd301b, 0xa87455e4, 0x8561a19d, 0xe7df8b22, + 0x79851342, 0x8ca04b5f, 0x0484f664, 0x57a1bf1c, 0x28989ea9, 0x7e3dc9fb, 0xbaf1a2ce, 0x7bacb997, 0xdb7f2eef, 0xebaaf5e1, 0x7687ead6, 0xe5f35cc6, + 0x6dbc3de3, 0xe6110a56, 0x25201e35, 0xd4764b20, 0x1a21d59a, 0x8c114d8f, 0x168533e9, 0xc9c43f01, 0x3d0da775, 0xba3b49fd, 0x98afbc75, 0x32089ae4, + 0x8661d63c, 0x6c76f01c, 0x9dace2c7, 0x332ab6a9, 0x59b1fc08, 0xb861d914, 0x69ca5e7a, 0x3165db31, 0x3eb11016, 0x5da61d81, 0x0fe6928a, 0x3ffa27e1, + 0xef3a4d08, 0x94339f3b, 0xa8b667c3, 0x45311433, 0x146b2652, 0xc63fee7c, 0xc20fbc75, 0xbc0e3000, 0x9faa5fe1, 0xe6095e7a, 0xb17841f0, 0x162d707c, + 0xb09ad4e2, 0xfccdc580, 0x008200ef, 0x03820120, 0x03820c20, 0x03821620, 0x82000221, 0x7405210d, 0x04200582, 0x0b820d82, 0x0a390586, 0xe2006800, + 0x79630300, 0x14006c72, 0x6b657267, 0x616c2200, 0x30006e74, 0x28278300, 0x00ffff00, 0x00000002, 0x330d8a05, 0x00060001, 0x4c020010, 0x00204854, + 0x4d4f521a, 0x00240020, 0x02222785, 0x09860700, 0x08000322, 0x042a0986, 0x0a000900, 0x70737063, 0x05843e00, 0x05844420, 0x05844a20, 0x05845020, + 0x656b5626, 0x5c006e72, 0x62200584, 0x68200584, 0x6e200584, 0x74200584, 0x775e7d82, 0x84022007, 0x9003200b, 0x21108205, 0x04830100, 0x04280590, + 0x12000a00, 0x22001a00, 0x0820c582, 0x20201d82, 0x01222184, 0x07857450, 0x85ca5121, 0xee522507, 0x644d0100, 0x0123e383, 0x823e039a, 0x84270801, + 0x8404d603, 0x2405d604, 0xb4080608, 0xd809ce08, 0xb00aa20a, 0x120da20a, 0x5610180d, 0x42136410, 0x0a172416, 0x831a0c1a, 0x1a202100, 0x26280185, + 0xd604d604, 0x5610a20a, 0x04851584, 0x301a3026, 0x361aa20a, 0x5c220c82, 0x5183621a, 0x03272183, 0x1bd603d6, 0x83421e14, 0x261a2a03, 0xac210a17, + 0xd621621a, 0x213d8221, 0x6f82d604, 0x03830620, 0xa2206f82, 0x6d824b83, 0xd8095628, 0x120d201a, 0x71820c1a, 0x80222628, 0x06081a1a, 0x6b83120d, + 0x09d62225, 0x83d622d8, 0x2997857d, 0xdc220c1a, 0xba25a20a, 0x4789b408, 0x82b40821, 0x831a207f, 0x120d2103, 0x03834b83, 0x1a421323, 0x834b8320, + 0x1a1a218b, 0x03870d83, 0x08231585, 0x82a20a06, 0x83362009, 0x0c1a2163, 0xce208d82, 0x0a2d2983, 0x17180db0, 0x2624160a, 0x08361a10, 0x831f8206, + 0x26ff85f5, 0x225a261a, 0x84120ddc, 0x26b422bb, 0x3001825a, 0x26ce0894, 0x22d604b6, 0x085428dc, 0x087628ce, 0x82cf82ce, 0xb626293f, 0x2416ba25, + 0x54285428, 0x5a202382, 0xa2281382, 0x8229e428, 0x88298829, 0x1a214883, 0x82cb8226, 0x27118308, 0xdc22261a, 0xd6038229, 0x3908d983, 0xa02a8e2a, + 0xac2aa62a, 0xbc2ab62a, 0x2a2ce428, 0xde2d182d, 0xfa2ef02d, 0x4a2f302f, 0x6a31a02f, 0x72338832, 0x64348832, 0xe0357635, 0x58371637, 0x28394238, + 0x383bf639, 0x0191bc2a, 0xde223982, 0x01872a2c, 0x4b834982, 0x1583de20, 0x1822038a, 0x0185fa2e, 0x30206182, 0x4a200388, 0x73840986, 0x31da3b23, + 0x2179836a, 0x018f8832, 0x3cde2d25, 0x8364349c, 0x208f8201, 0x23038576, 0xe035b63d, 0x9d820183, 0x038f1620, 0x85423821, 0xf6392101, 0x3b210185, + 0x83018338, 0xa03e29e9, 0xde2dbc2a, 0x8832383b, 0x0b847982, 0x3f20e983, 0x392de582, 0x39b83ff6, 0x41d64028, 0x39302f80, 0x312583f6, 0x8832302f, + 0x8041f639, 0x2242bc2a, 0xa03ee428, 0xcf834c42, 0x44ce4225, 0x83ce428c, 0x2a2c2535, 0x5837e035, 0x42273583, 0x444c424c, 0x83a644a6, 0xa64423b7, + 0x1982a03e, 0xd9847620, 0x15834a20, 0x423c4529, 0x3e5837ce, 0x83c245a0, 0x48492101, 0x4b210183, 0x29018306, 0x524db04c, 0x584d4a2f, 0x01915e4d, + 0x03110027, 0x04b0fffb, 0x20038215, 0x20038216, 0x20038217, 0x20038218, 0x20038219, 0x2003821a, 0x2003821b, 0x2003821c, 0x2003821d, 0x2003821e, + 0x2003827b, 0x2003827e, 0x20038285, 0x20038295, 0x2a03829c, 0x00adffa8, 0xff0e0414, 0x82100460, 0xff11240d, 0x82130488, 0x82632007, 0x8264200f, + 0x82652003, 0x82702003, 0x82712013, 0x82722003, 0x82732003, 0x82742003, 0x8275201f, 0x82762003, 0x82772003, 0x828d2003, 0x828e2023, 0x82942007, + 0x829a2003, 0xffaf2403, 0x822b0060, 0x82d82097, 0x04db2255, 0x24118212, 0x04d8ff13, 0x22a78414, 0x821604d8, 0x8217200b, 0x82182003, 0x82192003, + 0x821a2003, 0x821b2003, 0x821c2003, 0x821d2003, 0x821e2003, 0xff632403, 0x826404db, 0x82652003, 0x82742003, 0x8275200f, 0x82762003, 0x82772003, + 0x82782003, 0x82792047, 0x847a2003, 0x04d822cf, 0x2013827e, 0x22d38480, 0x828d04d8, 0x828e202f, 0x8490200f, 0x04d8228d, 0x200b8295, 0x2003829a, + 0x2003829c, 0x201b82a3, 0x200382af, 0x241b82b2, 0x04c5ffcf, 0x261382d1, 0x04e7ffd3, 0x8ce7ffd7, 0x04b022ff, 0x8de38213, 0x04b022ff, 0x20358271, + 0x20038272, 0x20038273, 0x201f8274, 0x20038275, 0x20038276, 0x85038277, 0x048822ff, 0x200b8294, 0x8303829a, 0x031326ff, 0x04f2ffd4, 0x20038210, + 0x24038211, 0x04e4ff13, 0x20078270, 0x20038271, 0x20038272, 0x20038273, 0x20138274, 0x20038275, 0x20038276, 0x20038277, 0x2003828e, 0x2217828f, + 0x82d7ff91, 0x04e42249, 0x280f829a, 0x04d0ffb4, 0x00c9ffb7, 0x2a4d82b8, 0xfffb03f4, 0xfffc03b1, 0x82fd03e7, 0x82fe2003, 0x82ff2003, 0x820020bd, + 0x82012003, 0x82022003, 0x82032003, 0xff042403, 0x820504cd, 0x82062007, 0x82072003, 0x82082003, 0x82092003, 0x820a2003, 0x820b2003, 0x820c2003, + 0xff0d2603, 0xff0f04f4, 0x229d82ed, 0x821104f4, 0x8212200b, 0x82132013, 0x8214200f, 0xff152407, 0x821604b1, 0x82172003, 0x82182003, 0x82192003, + 0x821a2003, 0x821b2003, 0x821c2003, 0x821d2003, 0x821e2003, 0x82212003, 0x8222202b, 0x82232003, 0x82242003, 0x82252003, 0x82262003, 0x82282003, + 0x82292003, 0x822a2003, 0x822b2003, 0x822c2003, 0x822d2003, 0x822e2003, 0x822f2003, 0x82302003, 0x82312003, 0x82332003, 0x82342003, 0x82352003, + 0x82362003, 0x82382003, 0x82392003, 0x823a2003, 0x823b2003, 0x823c2003, 0x823d2003, 0x823e2003, 0x823f2003, 0x82402003, 0x82412003, 0x82422003, + 0x82432003, 0x824420e3, 0x82452007, 0x82462003, 0x82472003, 0x82482003, 0x824a2003, 0x824b2003, 0x824c2003, 0x824d2003, 0x824e2003, 0x824f2003, + 0x82502003, 0x82512003, 0x82522003, 0x82532003, 0x82542003, 0x82572003, 0x82592003, 0x825a2003, 0x825b2003, 0x825c2003, 0xff5d2403, 0x825e04f4, + 0x825f2003, 0x82602003, 0x82612003, 0xff662403, 0x826704ed, 0x82682003, 0x82692003, 0x826a2003, 0x826b2003, 0x826c2003, 0x826d2003, 0x826e2003, + 0x826f2003, 0x82702003, 0x8271202b, 0x82722003, 0x82732003, 0x82742003, 0x82752013, 0x82762003, 0x82772003, 0x82782003, 0x8279205f, 0x827a2003, + 0xff7b2403, 0x827c04b1, 0x827d2007, 0x827e2003, 0x827f200b, 0x82802007, 0x82812003, 0x82822003, 0x82832003, 0x82842003, 0x82852003, 0x8286201b, + 0x82872007, 0x82892003, 0x828a2003, 0x828b2003, 0x828e2003, 0x8290204f, 0x82932007, 0x82942003, 0x8295200b, 0x82962027, 0x8297200b, 0x82982003, + 0x82992003, 0x829a2003, 0x829c2017, 0x829d2017, 0x829e200b, 0x829f2003, 0x82a12003, 0x82a22003, 0x82a52003, 0x82a62003, 0x82a72003, 0x82a92003, + 0x82aa2003, 0x82ac2003, 0x82ad2003, 0x82ae2003, 0x82b22003, 0x82b32003, 0x82b52003, 0x82b62003, 0x82b82003, 0x82b92003, 0x82bb2003, 0x82be2003, + 0x82c72003, 0x82ca2003, 0x82cb2003, 0x82d82003, 0x82da2003, 0x82eb2003, 0x82ec2003, 0x82ed2003, 0x82ee2003, 0x82ef2003, 0x82f02003, 0x82f12003, + 0x82f22003, 0x82f32003, 0x82f42003, 0x82f52003, 0x82f62003, 0x82f72003, 0x82f82003, 0x82f92003, 0xfffa2a03, 0x032b00e7, 0x04e4fffd, 0x20038201, + 0x20038209, 0x4303820b, 0xf222093b, 0x0f822104, 0x03822220, 0x03822320, 0x03822420, 0x03822520, 0x03823320, 0x03823420, 0x03823520, 0x03823620, + 0x03824e20, 0x03824f20, 0x03825020, 0x03825120, 0x03825220, 0x03825320, 0x03825420, 0x7f435720, 0x04f22614, 0x04f2ff75, 0x20038276, 0x20038277, + 0x20238282, 0x20038289, 0x200b828e, 0x2407828f, 0x04d9ff91, 0x200b8294, 0x200b8299, 0x2007829a, 0x200782ae, 0x260382b4, 0x00bcffb7, 0x82120406, + 0x82902011, 0x82a32003, 0x82b22003, 0x82b42003, 0xffbc2403, 0x824200f2, 0x82ca20c7, 0x04d72ac7, 0x041c0004, 0x04d7ff09, 0x2403820b, 0x04ceff0e, + 0x2021820f, 0x203f8210, 0x20038211, 0x24038213, 0x04caff21, 0x20038222, 0x20038223, 0x20038224, 0x20038225, 0x202b8233, 0x20038234, 0x20038235, + 0x20038236, 0x20438243, 0x2007824e, 0x2003824f, 0x20038250, 0x20038251, 0x20038252, 0x20038253, 0x20038254, 0x20038257, 0x205b8263, 0x20038264, + 0x20038265, 0x20638266, 0x20038267, 0x20038268, 0x20038269, 0x2003826a, 0x2003826b, 0x2003826c, 0x2003826d, 0x2003826e, 0x2003826f, 0x207f8270, + 0x20038271, 0x20038272, 0x44038273, 0x82200f8b, 0x89205782, 0x8d200382, 0x8e205382, 0x8f281f82, 0x9104d8ff, 0x9404b0ff, 0x99200b82, 0x9a201782, + 0xab240782, 0xae04f4ff, 0xaf20b382, 0xb0202382, 0xb1280b82, 0xb404edff, 0xb704e7ff, 0xc8260382, 0x3200f4ff, 0x1582fd03, 0x03820120, 0x03820920, + 0x03820b20, 0x03820f20, 0xb1ff102c, 0xd9ff1104, 0x88ff1304, 0x0f822104, 0x03822220, 0x03822320, 0x03822420, 0x03822520, 0x03823320, 0x03823420, + 0x03823520, 0x03823620, 0x03824e20, 0x03824f20, 0x03825020, 0x03825120, 0x03825220, 0x03825320, 0x03825420, 0x03825720, 0x03826620, 0x03826720, + 0x03826820, 0x03826920, 0x03826a20, 0x03826b20, 0x03826c20, 0x03826d20, 0x03826e20, 0x03826f20, 0x73827020, 0x03827120, 0x03827220, 0x03827320, + 0x200fc345, 0x20238282, 0x20038289, 0x2097828e, 0x20038294, 0x200b8299, 0x2007829a, 0x36c982ae, 0xffa00403, 0xffa304d0, 0xffcf04f2, 0x039800de, + 0x0396fffb, 0x82f4fffc, 0x03e022df, 0x200782fe, 0x202b82ff, 0x22eb8400, 0x820204e0, 0xff042407, 0x820504d2, 0x82062007, 0x82072003, 0x82082003, + 0xff092403, 0x820a04e0, 0x820b2007, 0x410c2007, 0x1428060b, 0x1504faff, 0x160496ff, 0x17200382, 0x18200382, 0x19200382, 0x1a200382, 0x1b200382, + 0x1c200382, 0x1d200382, 0x1e200382, 0x21200382, 0x22203782, 0x23200382, 0x24200382, 0x25200382, 0x26200382, 0x28204782, 0x29200382, 0x2a200382, + 0x2b200382, 0x2c200382, 0x2d200382, 0x2e200382, 0x2f200382, 0x30200382, 0x31200382, 0x33200382, 0x34202f82, 0x35200382, 0x36200382, 0x38200382, + 0x43201382, 0x4420a782, 0x45200782, 0x46200382, 0x47200382, 0x48200382, 0x4a200382, 0x4b200382, 0x4c200382, 0x4d200382, 0x4e200382, 0x4f202f82, + 0x50200382, 0x51200382, 0x52200382, 0x53200382, 0x54200382, 0x57200382, 0x59200382, 0x5a202382, 0x5b200382, 0x5c200382, 0x202a9341, 0x20ff8278, + 0x20038279, 0x2003827a, 0x20e3827b, 0x203b827c, 0x2003827d, 0x200b827e, 0x2007827f, 0x20178280, 0x20078281, 0x20638282, 0x20078284, 0x20178285, + 0x20078286, 0x20038287, 0x20138289, 0x2007828a, 0x2003828b, 0x20178295, 0x20078296, 0x20038297, 0x20178299, 0x200f829c, 0x200b829d, 0x2003829e, + 0x2003829f, 0x200382a1, 0x200382a2, 0x200382a5, 0x200382a6, 0x200382a7, 0x200382a9, 0x200382aa, 0x200382ac, 0x200382ad, 0x243782ae, 0x04f2ffb1, + 0x200b82b3, 0x200382b5, 0x200382b6, 0x200382b8, 0x200382b9, 0x200382bb, 0x201f82bc, 0x200782be, 0x200382c7, 0x200382ca, 0x280382cb, 0x04e4ffcf, + 0x04deffd1, 0x20a782d5, 0x200f82d8, 0x200382d9, 0x200382da, 0x200382eb, 0x200382ec, 0x200382ed, 0x200382ee, 0x200382ef, 0x200382f0, 0x200382f1, + 0x200382f2, 0x200382f3, 0x200382f4, 0x200382f5, 0x200382f6, 0x200382f7, 0x200382f8, 0x260382f9, 0x00f4fffa, 0x82a30401, 0x03cf3205, 0x03e7ffd4, + 0x0360fffb, 0x03b3fffc, 0x036ffffd, 0x240782fe, 0x04b3ffff, 0x24038200, 0x046fff01, 0x24078202, 0x04ceff03, 0x20078204, 0x20038205, 0x20038206, + 0x20038207, 0x20038208, 0x201f8209, 0x2007820a, 0x2007820b, 0x2407820c, 0x047cff0d, 0x242b820f, 0x04eaff10, 0x24078211, 0x04dcff12, 0x200b8213, + 0x240b8214, 0x0460ff15, 0x20038216, 0x20038217, 0x20038218, 0x20038219, 0x2003821a, 0x2003821b, 0x2003821c, 0x2003821d, 0x2003821e, 0x204b8221, + 0x20038222, 0x20038223, 0x20038224, 0x20038225, 0x205b8226, 0x20038228, 0x20038229, 0x2003822a, 0x2003822b, 0x2003822c, 0x2003822d, 0x2003822e, + 0x2003822f, 0x20038230, 0x20038231, 0x20038232, 0x20338233, 0x20038234, 0x20038235, 0x20038236, 0x20138238, 0x20838239, 0x2003823a, 0x2003823b, + 0x2003823c, 0x2003823d, 0x2003823e, 0x2003823f, 0x20038240, 0x20038241, 0x20038242, 0x202b8243, 0x20038244, 0x20038245, 0x20038246, 0x20038247, + 0x20038248, 0x2003824a, 0x2003824b, 0x2003824c, 0x2003824d, 0x2057824e, 0x2003824f, 0x20038250, 0x20038251, 0x20038252, 0x20038253, 0x20038254, + 0x20038257, 0x20238259, 0x2003825a, 0x2003825b, 0x2403825c, 0x047cff5d, 0x2003825e, 0x2003825f, 0x20038260, 0x20038261, 0x206f8266, 0x20038267, + 0x20038268, 0x20038269, 0x2003826a, 0x2003826b, 0x2003826c, 0x2003826d, 0x2003826e, 0x2003826f, 0x20038270, 0x20038271, 0x20038272, 0x24038273, + 0x04eaff74, 0x20038275, 0x20038276, 0x20038277, 0x20138278, 0x20038279, 0x2403827a, 0x0460ff7b, 0x206f827c, 0x2003827d, 0x200b827e, 0x2007827f, + 0x20178280, 0x20078281, 0x20978282, 0x200b8283, 0x200b8284, 0x201b8285, 0x20078286, 0x20038287, 0x20138288, 0x201b8289, 0x200b828a, 0x2003828b, + 0x200f828c, 0x2857828e, 0x0454ff8f, 0x04dcff90, 0x240f8291, 0x0497ff92, 0x20078293, 0x20178294, 0x203b8295, 0x20278296, 0x20038297, 0x20138298, + 0x203b8299, 0x2017829a, 0x2023829b, 0x201b829c, 0x2017829d, 0x2003829e, 0x2403829f, 0x04c2ffa0, 0x200782a1, 0x240382a2, 0x04c8ffa3, 0x200f82a4, + 0x200b82a5, 0x200382a6, 0x200382a7, 0x203b82a8, 0x200782a9, 0x200382aa, 0x200382ac, 0x200382ad, 0x201382ae, 0x245782b0, 0x0447ffb1, 0x207f82b2, + 0x201382b3, 0x203782b4, 0x200782b5, 0x200382b6, 0x200b82b7, 0x200782b8, 0x200382b9, 0x200b82ba, 0x200782bb, 0x207b82bc, 0x200782be, 0x200382c7, + 0x203b82c8, 0x200782ca, 0x240382cb, 0x04e7ffd1, 0x240f82d3, 0x0491ffd5, 0x202b82d7, 0x241382d8, 0x0475ffd9, 0x200782da, 0x200382eb, 0x200382ec, + 0x200382ed, 0x200382ee, 0x200382ef, 0x200382f0, 0x200382f1, 0x200382f2, 0x200382f3, 0x200382f4, 0x200382f5, 0x200382f6, 0x200382f7, 0x200382f8, + 0x240382f9, 0x00b3fffa, 0x08a14703, 0xf2ffb232, 0xfb03b700, 0xfc0394ff, 0xfd03d8ff, 0xfe03bcff, 0xff240782, 0x0004d8ff, 0x01240382, 0x0204bcff, + 0x03280782, 0x0404deff, 0x0504b6ff, 0x06200b82, 0x07200382, 0x08200382, 0x09200382, 0x0a201f82, 0x0b200782, 0x0c200782, 0x0d240782, 0x0f04d0ff, + 0x10240782, 0x1104ecff, 0x12200382, 0x13200382, 0x14200382, 0x15243f82, 0x160494ff, 0x17200382, 0x18200382, 0x19200382, 0x1a200382, 0x1b200382, + 0x1c200382, 0x1d200382, 0x1e200382, 0x21200382, 0x22204b82, 0x23200382, 0x24200382, 0x25200382, 0x26200382, 0x28205382, 0x29200382, 0x2a200382, + 0x2b200382, 0x2c200382, 0x2d200382, 0x2e200382, 0x2f200382, 0x30200382, 0x31200382, 0x33200382, 0x34202f82, 0x35200382, 0x36200382, 0x38200382, + 0x39201382, 0x3a207f82, 0x3b200382, 0x3c200382, 0x3d200382, 0x3e200382, 0x3f200382, 0x40200382, 0x41200382, 0x42200382, 0x43200382, 0x4420e382, + 0x45202f82, 0x46200382, 0x47200382, 0x48200382, 0x4a200382, 0x4b200382, 0x4c200382, 0x4d200382, 0x4e200382, 0x4f205782, 0x50200382, 0x51200382, + 0x52200382, 0x53200382, 0x54200382, 0x57200382, 0x59200382, 0x5a202382, 0x5b200382, 0x5c200382, 0x5d240382, 0x5e04d0ff, 0x5f200382, 0x60200382, + 0x61200382, 0x66200382, 0x67201782, 0x68200382, 0x69200382, 0x6a200382, 0x6b200382, 0x6c200382, 0x6d200382, 0x6e200382, 0x6f200382, 0x70240382, + 0x7104ecff, 0x72200382, 0x73200382, 0x74200382, 0x75200382, 0x76200382, 0x77200382, 0x78200382, 0x7920b782, 0x7a200382, 0x7b240382, 0x7c0494ff, + 0x7d203382, 0x7e200382, 0x7f200b82, 0x80200782, 0x81201782, 0x82200782, 0x83209782, 0x84200b82, 0x85200b82, 0x86201b82, 0x87200782, 0x89200382, + 0x8a201782, 0x8b200782, 0x8e200382, 0x90204f82, 0x93200382, 0x94202782, 0x95200782, 0x96202782, 0x97201782, 0x98200382, 0x99201382, 0x9a202b82, + 0x9c201782, 0x9d201782, 0x9e201382, 0x9f200382, 0xa1200382, 0xa2200382, 0xa5200382, 0xa6200382, 0xa7200382, 0xa9200382, 0xaa200382, 0xac200382, + 0xad200382, 0xae200382, 0xb2203b82, 0xb3203b82, 0xb5200b82, 0xb6200382, 0xb8200382, 0xb9200382, 0xbb200382, 0xbe200382, 0xc7200382, 0xca200382, + 0xcb200382, 0xd8200382, 0xda200382, 0xeb200382, 0xec200382, 0xed200382, 0xee200382, 0xef200382, 0xf0200382, 0xf1200382, 0xf2200382, 0xf3200382, + 0xf4200382, 0xf5200382, 0xf6200382, 0xf7200382, 0xf8200382, 0xf9200382, 0xfa320382, 0xb800d8ff, 0xb0fffb03, 0xd0fffc03, 0xcafffd03, 0x0782fe03, + 0xd0ffff24, 0x03820004, 0xc4ff0124, 0x07820204, 0x95820320, 0x2d820420, 0x0b820520, 0x03820620, 0x03820720, 0x03820820, 0xcaff0924, 0x07820a04, + 0x07820b20, 0x07820c20, 0xdeff0d22, 0x2506a74a, 0xff1104f2, 0xdd4204f2, 0x04f22105, 0x2105dd42, 0x635004b0, 0x13d74a23, 0x5b822620, 0x03822820, + 0x03822920, 0x03822a20, 0x03822b20, 0x03822c20, 0x03822d20, 0x03822e20, 0x03822f20, 0x03823020, 0x03823120, 0xab823220, 0xb7823320, 0x03823420, + 0x03823520, 0x03823620, 0x17823820, 0x17823920, 0x03823a20, 0x03823b20, 0x03823c20, 0x03823d20, 0x03823e20, 0x03823f20, 0x03824020, 0x03824120, + 0x03824220, 0xe7824320, 0x2f824420, 0x03824520, 0x03824620, 0x03824720, 0x03824820, 0x03824a20, 0x03824b20, 0x03824c20, 0x03824d20, 0xf3824e20, + 0x03824f20, 0x03825020, 0x03825120, 0x03825220, 0x03825320, 0x03825420, 0x03825720, 0x23825920, 0x03825a20, 0x03825b20, 0x03825c20, 0xdeff5d24, + 0x03825e04, 0x03825f20, 0x03826020, 0x03826120, 0x21296f4b, 0xfb4f04f2, 0x0d7b4c0d, 0x220de142, 0x827c04b0, 0x827d206f, 0xff7e2403, 0x827f04b0, + 0x05e14207, 0x8204d022, 0x83209782, 0x8420e382, 0x85201382, 0x86201b82, 0x87200782, 0x89200382, 0x8a201782, 0x8b200782, 0x8e230382, 0x4204f2ff, + 0xec2205e1, 0x0b829404, 0x27829520, 0x17829620, 0x03829720, 0x3b829820, 0x2b829920, 0x17829a20, 0x17829c20, 0x13829d20, 0x03829e20, 0x03829f20, + 0x0382a120, 0x0382a220, 0x0382a520, 0x0382a620, 0x0382a720, 0x0382a920, 0x0382aa20, 0x0382ac20, 0x0382ad20, 0x3b82ae20, 0x2205e142, 0x82b504d0, + 0x82b6200f, 0x82b82003, 0x82b92003, 0x82bb2003, 0x82be2003, 0x82c72003, 0x82ca2003, 0x82cb2003, 0x82d82003, 0x82da2003, 0x82eb2003, 0x82ec2003, + 0x82ed2003, 0x82ee2003, 0x82ef2003, 0x82f02003, 0x82f12003, 0x82f22003, 0x82f32003, 0x82f42003, 0x82f52003, 0x82f62003, 0x82f72003, 0x82f82003, + 0x82f92003, 0xfffa2603, 0x033900d0, 0x240982fd, 0x04d7ff01, 0x20078209, 0x4503820b, 0xca2a0583, 0xd8ff1104, 0xc4ff1304, 0x13822104, 0x03822220, + 0x03822320, 0x03822420, 0x03822520, 0x200f4d4d, 0x2013824e, 0x2003824f, 0x20038250, 0x20038251, 0x20038252, 0x20038253, 0x20038254, 0x2caf4457, + 0x7104d822, 0x72207782, 0x73200382, 0x74200382, 0x75207f82, 0x76200382, 0x77200382, 0x82200382, 0x89204b82, 0x8e200382, 0x8f200b82, 0x91240782, + 0x9404b6ff, 0x99200b82, 0x9a200b82, 0xae200782, 0x314d0782, 0x04ca3a05, 0x04b0ffb4, 0x04c9ffb7, 0x00f4ffc8, 0xffd403c0, 0xfffb03d8, 0xfffc033e, + 0x22f18288, 0x82fe0352, 0xffff2407, 0x82000488, 0xff012403, 0x8202047c, 0x82032007, 0xff042403, 0x82050482, 0x82062007, 0x82072003, 0x82082003, + 0xff092403, 0x820a0452, 0x820b2007, 0x820c2007, 0x820d2007, 0x820f2023, 0xff102407, 0x821104a4, 0x82122003, 0x82132003, 0x82142003, 0xff152417, + 0x8216043e, 0x82172003, 0x82182003, 0x82192003, 0x821a2003, 0x821b2003, 0x821c2003, 0x821d2003, 0x821e2003, 0x82212003, 0x8222204b, 0x82232003, + 0x82242003, 0x82252003, 0x82262003, 0x82282053, 0x82292003, 0x822a2003, 0x822b2003, 0x822c2003, 0x822d2003, 0x822e2003, 0x822f2003, 0x82302003, + 0x82312003, 0x82322003, 0x82332003, 0x823420b7, 0x82352003, 0x82362003, 0x82382003, 0x82392013, 0x823a2003, 0x823b2003, 0x823c2003, 0x823d2003, + 0x823e2003, 0x823f2003, 0x82402003, 0x82412003, 0x82422003, 0x82432003, 0x824420ab, 0x82452007, 0x82462003, 0x82472003, 0x82482003, 0x824a2003, + 0x824b2003, 0x824c2003, 0x824d2003, 0x824e2003, 0x824f2097, 0x82502003, 0x82512003, 0x82522003, 0x82532003, 0x82542003, 0x82572003, 0x82592003, + 0x825a2023, 0x825b2003, 0x825c2003, 0x825d2003, 0x825e2057, 0x825f2003, 0x82602003, 0x82612003, 0x82662003, 0x82672017, 0x82682003, 0x82692003, + 0x826a2003, 0x826b2003, 0x826c2003, 0x826d2003, 0x826e2003, 0x826f2003, 0xff702403, 0x827104a4, 0x82722003, 0x82732003, 0x82742003, 0x82752003, + 0x82762003, 0x82772003, 0x82782003, 0x8279204b, 0x827a2003, 0xff7b2403, 0x827c043e, 0x827d2033, 0x827e2003, 0x827f200b, 0x82802007, 0x82812017, + 0x82822007, 0x82832097, 0x82842007, 0x82852003, 0x8286201b, 0x82872007, 0x82882003, 0x82892043, 0x828a201b, 0x828b200b, 0x828c2003, 0x828e200f, + 0xff8f2403, 0x82900444, 0xff912807, 0xff9204b0, 0x8293047a, 0x8294201b, 0x8295200f, 0x8296203b, 0x8297200b, 0x82982003, 0x82992003, 0x829a203b, + 0x829b2017, 0x829c2023, 0x829d201b, 0x829e2013, 0x829f2003, 0x82a12003, 0x82a22003, 0x82a52003, 0x82a62003, 0x82a72003, 0x82a92003, 0x82aa2003, + 0x82ac2003, 0x82ad2003, 0x82ae2003, 0x82b2203f, 0x82b3203f, 0x82b5200b, 0x82b62003, 0x82b82003, 0x82b92003, 0x82bb2003, 0x82be2003, 0xffc22403, + 0x82c704bc, 0x82ca2007, 0x82cb2003, 0x82d82003, 0x82da2003, 0x82eb2003, 0x82ec2003, 0x82ed2003, 0x82ee2003, 0x82ef2003, 0x82f02003, 0x82f12003, + 0x82f22003, 0x82f32003, 0x82f42003, 0x82f52003, 0x82f62003, 0x82f72003, 0x82f82003, 0x82f92003, 0xfffa3e03, 0x03030088, 0x04f4ffd4, 0x04e7ff8f, + 0x00d9ff91, 0xffd30401, 0x030100fa, 0x001c00d4, 0x23058302, 0xecffd504, 0xcf2a1582, 0x0900d8ff, 0xfaff0e04, 0x03826304, 0x03826420, 0x03826520, + 0x03828d20, 0x3d829120, 0x1c009224, 0x03829b04, 0x3b85af20, 0x00e4ff2b, 0xfffb032c, 0xff0304b0, 0x203382d8, 0x068756b0, 0x2025cb46, 0x20338239, + 0x2003823a, 0x2003823b, 0x2003823c, 0x2003823d, 0x2003823e, 0x2003823f, 0x20038240, 0x20038241, 0x20038242, 0x205f8263, 0x20038264, 0x56038265, + 0xb0220d9f, 0x13827e04, 0x03828020, 0x27828320, 0x07828520, 0x03828d20, 0x0b829320, 0x07829520, 0x07829820, 0x07829c20, 0x0382af20, 0xdbffcf22, + 0xdb20ef82, 0xb022e382, 0x0944cb00, 0x03602a06, 0x03b0fffc, 0x0388fffd, 0x200782fe, 0x202582ff, 0x24038200, 0x0488ff01, 0x22d18402, 0x820404b0, + 0x82052007, 0x82062003, 0x82072003, 0x82082003, 0xff092403, 0x820a0494, 0x820b2007, 0x820c2007, 0xff0d2207, 0x22f9829c, 0x820f04d8, 0xff12220b, + 0x060141f4, 0x2227f34d, 0x82220488, 0x8223206f, 0x82242003, 0x82252003, 0x82262003, 0x82282047, 0x82292003, 0x822a2003, 0x822b2003, 0x822c2003, + 0x822d2003, 0x822e2003, 0x822f2003, 0x82302003, 0x82312003, 0x82332003, 0x8234202f, 0x82352003, 0x82362003, 0x82382003, 0x82392013, 0x823a2003, + 0x823b2003, 0x823c2003, 0x823d2003, 0x823e2003, 0x823f2003, 0x82402003, 0x82412003, 0x82422003, 0x82432003, 0x82442003, 0x82452003, 0x82462003, + 0x82472003, 0x82482003, 0x824a2003, 0x824b2003, 0x824c2003, 0x824d2003, 0x824e2003, 0x824f20e7, 0x82502003, 0x82512003, 0x82522003, 0x82532003, + 0x82542003, 0x82572003, 0x82592003, 0x825a2023, 0x825b2003, 0x825c2003, 0xff5d2403, 0x825e049c, 0x825f2003, 0x82602003, 0x82612003, 0xff632403, + 0x826404d8, 0x82652003, 0x82662003, 0x82672023, 0x82682003, 0x82692003, 0x826a2003, 0x826b2003, 0x826c2003, 0x826d2003, 0x826e2003, 0x416f2003, + 0x602210e9, 0x13827c04, 0x03827d20, 0x2205db4d, 0x828004b0, 0x8281200b, 0x82822003, 0x82832083, 0x82842007, 0x05db4d03, 0x8704b022, 0x88200b82, + 0x89206b82, 0x8a201b82, 0x8b200b82, 0x8c200382, 0x8d200f82, 0x8f280382, 0x900488ff, 0x9104f4ff, 0x92240b82, 0x9304a4ff, 0xd74d1b82, 0x04b02205, + 0x200b8297, 0x20038298, 0x20378299, 0x241b829b, 0x0460ff9c, 0x200f829d, 0x2003829e, 0x2403829f, 0x0454ffa0, 0x200782a1, 0x280382a2, 0x04bcffa3, + 0x04d0ffa4, 0x200b82a5, 0x200382a6, 0x200382a7, 0x205b82a8, 0x200782a9, 0x200382aa, 0x200b82ab, 0x200782ac, 0x200382ad, 0x200b82ae, 0x206f82af, + 0x200382b0, 0x205382b1, 0x207f82b2, 0x201782b3, 0x204382b4, 0x200782b5, 0x200382b6, 0x201b82b7, 0x200782b8, 0x200382b9, 0x201f82ba, 0x200782bb, + 0x203782bc, 0x200782be, 0x208f82c0, 0x200782c1, 0x200f82c3, 0x200782c7, 0x202b82c8, 0x200782ca, 0x240382cb, 0x04b6ffd1, 0x240782d3, 0x04c4ffd4, + 0x201f82d5, 0x200b82d7, 0x200382d8, 0x206782d9, 0x200782da, 0x200382eb, 0x200382ec, 0x200382ed, 0x200382ee, 0x200382ef, 0x200382f0, 0x200382f1, + 0x200382f2, 0x200382f3, 0x200382f4, 0x200382f5, 0x200382f6, 0x200382f7, 0x200382f8, 0x360382f9, 0x00b0fffa, 0xffd403da, 0xfffb03d7, 0xfffc0310, + 0xfffd0379, 0x82fe0351, 0xffff2407, 0x82000479, 0xff012403, 0x82020451, 0x82032007, 0x82042003, 0x82052003, 0x82062003, 0x82072003, 0x82082003, + 0x82092003, 0x820a201f, 0x820b2007, 0x820c2007, 0xff0d2407, 0x820e045f, 0x820f20cd, 0xff10240b, 0x821104a2, 0x8212200b, 0xff132469, 0x821404bc, + 0xff152413, 0x82160410, 0x82172003, 0x82182003, 0x82192003, 0x821a2003, 0x821b2003, 0x821c2003, 0x821d2003, 0x821e2003, 0x82212003, 0x8222204f, + 0x82232003, 0x82242003, 0x82252003, 0x82262003, 0x8228203f, 0x82292003, 0x822a2003, 0x822b2003, 0x822c2003, 0x822d2003, 0x822e2003, 0x822f2003, + 0x82302003, 0x82312003, 0x82332003, 0x8234202f, 0x82352003, 0x82362003, 0x82382003, 0x82392013, 0x823a2003, 0x823b2003, 0x823c2003, 0x823d2003, + 0x823e2003, 0x823f2003, 0x82402003, 0x82412003, 0x82422003, 0x82432003, 0x82442003, 0x82452003, 0x82462003, 0x82472003, 0x82482003, 0x824a2003, + 0x824b2003, 0x824c2003, 0x824d2003, 0x824e2003, 0x824f2057, 0x82502003, 0x82512003, 0x82522003, 0x82532003, 0x82542003, 0x82572003, 0x82592003, + 0x825a2023, 0x825b2003, 0x825c2003, 0xff5d2403, 0x825e045f, 0x825f2003, 0x82602003, 0x82612003, 0xff632403, 0x82640494, 0x82652003, 0x82662003, + 0x82672023, 0x82682003, 0x82692003, 0x826a2003, 0x826b2003, 0x826c2003, 0x826d2003, 0x826e2003, 0x826f2003, 0x82702003, 0x8271202b, 0x82722003, + 0x82732003, 0xff742403, 0x827504bc, 0x82762003, 0x82772003, 0x82782003, 0x82792023, 0x827a2003, 0xff7b2403, 0x827c0410, 0x827d2007, 0x827e2003, + 0x827f200b, 0x82802007, 0x82812003, 0x82822003, 0x828320a3, 0x82842007, 0x82852003, 0x8286201b, 0x82872007, 0xff882403, 0x82890460, 0x828a201b, + 0x828b200b, 0x828c2003, 0x828d200f, 0x828e2067, 0x828f205b, 0xff902427, 0x829104b0, 0xff922413, 0x82930438, 0x8294201f, 0x82952017, 0x82962017, + 0x8297200b, 0x82982003, 0x82992003, 0x829a203f, 0x829b2017, 0x829c2023, 0x829d201b, 0x829e2013, 0x829f2003, 0xfea02403, 0x82a104f4, 0x82a22007, + 0xffa32403, 0x82a4046c, 0x82a52007, 0x82a62003, 0x82a72003, 0xffa82403, 0x82a90401, 0x82aa2007, 0xffab2403, 0x82ac0444, 0x82ad2007, 0x82ae2003, + 0x82af2053, 0xffb02887, 0xffb10485, 0x82b20429, 0x82b32087, 0xffb42417, 0x82b5045d, 0x82b62007, 0x82b72003, 0x82b82003, 0x82b92003, 0x82ba2003, + 0x82bb202b, 0xffbc2407, 0x82be040d, 0x82c02007, 0xffc1244b, 0x82c30488, 0x82c62003, 0x82c72043, 0x82c82013, 0x82ca2007, 0x82cb2007, 0x82d12003, + 0x82d3204f, 0x82d420d7, 0x82d5201f, 0x82d720b7, 0x82d8203f, 0x82d92017, 0x82da2037, 0x82eb2007, 0x82ec2003, 0x82ed2003, 0x82ee2003, 0x82ef2003, + 0x82f02003, 0x82f12003, 0x82f22003, 0x82f32003, 0x82f42003, 0x82f52003, 0x82f62003, 0x82f72003, 0x82f82003, 0x82f92003, 0xfffa2a03, 0x050a0079, + 0x056cff05, 0x20038206, 0x20038207, 0x20038208, 0x20038209, 0x2003820a, 0x2003820b, 0x2003820c, 0x2803820d, 0x006cff0e, 0x00fb032a, 0x06555e28, + 0xa54bd820, 0x046c2206, 0x20138215, 0x20038216, 0x20038217, 0x20038218, 0x20038219, 0x2003821a, 0x2003821b, 0x2003821c, 0x2003821d, 0x5d03821e, + 0x6d4b0d7d, 0x046c260f, 0x046cff75, 0x20038276, 0x20038277, 0x202f827b, 0x2003827e, 0x20038285, 0x20fb828d, 0x2413828e, 0x04d8ff91, 0x20078294, + 0x20138295, 0x2007829a, 0x2007829c, 0x2c1b82af, 0x04f4ffb0, 0x0488ffb4, 0x04b0ffb7, 0x320782c6, 0x00f4ffc8, 0xfffb0315, 0xff0404e7, 0xff1204ed, + 0x821504fa, 0x8216200b, 0x82172003, 0x82182003, 0x82192003, 0x821a2003, 0x821b2003, 0x821c2003, 0x821d2003, 0x821e2003, 0x82432003, 0x827b202f, + 0x827e2007, 0x82852003, 0x82902003, 0x8295203b, 0x829c2007, 0x48b22003, 0x00230579, 0x44b70050, 0x972e0695, 0x38fffd03, 0x97fffe03, 0x97ffff03, + 0x03820004, 0x03820220, 0xb4ff0324, 0x07820504, 0x03820620, 0x03820720, 0x03820820, 0x38ff0924, 0x07820a04, 0x07820b20, 0x07820c20, 0xc2ff0e22, + 0xc1229782, 0x07821304, 0x2f821420, 0x22297d44, 0x82220438, 0x82232043, 0x82242003, 0x82252003, 0x82262003, 0x8228204f, 0x82292003, 0x822a2003, + 0x822b2003, 0x822c2003, 0x822d2003, 0x822e2003, 0x822f2003, 0x82302003, 0x82312003, 0x82382003, 0x82392003, 0x823a206f, 0x823b2003, 0x823c2003, + 0x823d2003, 0x823e2003, 0x823f2003, 0x82402003, 0x82412003, 0x82422003, 0x82442003, 0x8245202b, 0x82462003, 0x82472003, 0x82482003, 0x824a2003, + 0x824b2003, 0x824c2003, 0x824d2003, 0x824e2003, 0x824f207f, 0x82502003, 0x82512003, 0x82522003, 0x82532003, 0x82542003, 0x82572003, 0x82592003, + 0x825a2023, 0x825b2003, 0x825c2003, 0x82632003, 0x826420ef, 0x82652003, 0x82742003, 0x82752003, 0x82762003, 0x82772003, 0x82782003, 0x82792073, + 0x827a2003, 0x051d4403, 0x7d049722, 0x1d443382, 0x04972205, 0x20178280, 0x200f8281, 0x20578282, 0x200b8283, 0x440b8284, 0x9722051d, 0x0b828704, + 0x9aff8824, 0x1b828904, 0x0b828a20, 0x03828b20, 0xa6ff8c24, 0x57828d04, 0x03828e20, 0x17828f20, 0xc1ff9024, 0x13829104, 0x54ff9224, 0x3f829304, + 0x17829420, 0x22051d44, 0x82970497, 0x8298202f, 0x82992013, 0x829a2027, 0x829b2017, 0x051d4423, 0x9e049722, 0x9f201b82, 0xa0240382, 0xa1042cff, + 0xa2200782, 0xa3200382, 0xa4242b82, 0xa5048bff, 0xa6200b82, 0xa7200382, 0xa8200382, 0xa9203b82, 0xaa200782, 0xab200382, 0xac200b82, 0xad200782, + 0xae200382, 0xaf200b82, 0xb0205382, 0xb1200382, 0xb2204382, 0xb3208782, 0xb4241782, 0xb50499ff, 0xb6200782, 0xb7200382, 0xb8200b82, 0xb9200782, + 0xba200382, 0xbb20a382, 0xbc200782, 0xbe208382, 0xc7200782, 0xc8200382, 0xca203b82, 0xcb200782, 0x9f580382, 0x04d22a05, 0x04b3ffd3, 0x0447ffd5, + 0x202f82d7, 0x201782d8, 0x200b82d9, 0x200782da, 0x200382eb, 0x200382ec, 0x200382ed, 0x200382ee, 0x200382ef, 0x200382f0, 0x200382f1, 0x200382f2, + 0x200382f3, 0x200382f4, 0x200382f5, 0x200382f6, 0x200382f7, 0x200382f8, 0x2a0382f9, 0x0097fffa, 0xfffb0315, 0x821504d8, 0x82162003, 0x1fd36103, + 0x23827b20, 0x03827e20, 0x03828520, 0x03829520, 0x03829c20, 0xf4ffa024, 0x0382a304, 0x0382a820, 0x0f82cf20, 0xe4ffd124, 0x55821200, 0x5582aa20, + 0x1604aa26, 0x1704aaff, 0x18200382, 0x19200382, 0x1a200382, 0x1b200382, 0x1c200382, 0x1d200382, 0x1e200382, 0x7b200382, 0x7e200382, 0x85200382, + 0x92200382, 0x95204582, 0x9b200782, 0x9c2e0782, 0x0e00aaff, 0xbcff0e04, 0xe4ff1204, 0x07826304, 0x03826420, 0x03826520, 0x03828d20, 0x13829020, + 0x0782af20, 0x0782b020, 0x0382b220, 0xf2ffb428, 0xd7ffb704, 0x0b82c804, 0xdeffcf24, 0x39820800, 0x3582ca20, 0x6404ca26, 0x6504caff, 0x8d200382, + 0xaf200382, 0x31830382, 0xa582c820, 0xfc036726, 0xfe03beff, 0xff240382, 0x0004beff, 0x02200382, 0x05200382, 0x06200382, 0x07200382, 0x08200382, + 0x0a200382, 0x0c200382, 0x26200382, 0x28200382, 0x29200382, 0x2a200382, 0x2b200382, 0x2c200382, 0x2d200382, 0x2e200382, 0x2f200382, 0x30200382, + 0x31200382, 0x38200382, 0x44200382, 0x45200382, 0x46200382, 0x47200382, 0x48200382, 0x4a200382, 0x4b200382, 0x4c200382, 0x4d200382, 0x59200382, + 0x5a200382, 0x5b200382, 0x5c200382, 0x7c200382, 0x7d200382, 0x7f200382, 0x81200382, 0x84200382, 0x86200382, 0x87200382, 0x8a200382, 0x8b200382, + 0x96200382, 0x97200382, 0x9d200382, 0x9e200382, 0x9f200382, 0xa0240382, 0xa10460ff, 0xa2200782, 0xa3280382, 0xa404bfff, 0xa504b0ff, 0xa6200b82, + 0xa7200382, 0xa8200382, 0xa9201f82, 0xaa200782, 0xac200382, 0xad200382, 0xb0280382, 0xb104faff, 0xb30488ff, 0xb4240b82, 0xb504ccff, 0xb6200782, + 0xb7240382, 0xb804e4ff, 0xb9200782, 0xba200382, 0xbb200b82, 0x214a0782, 0x04be2205, 0x200b82c7, 0x203782c8, 0x200782ca, 0x4a0382cb, 0xd5280715, + 0xd7048eff, 0xd804bcff, 0xd9201382, 0xda205382, 0xeb200782, 0xec200382, 0xed200382, 0xee200382, 0xef200382, 0xf0200382, 0xf1200382, 0xf2200382, + 0xf3200382, 0xf4200382, 0xf5200382, 0xf6200382, 0xf7200382, 0xf8200382, 0xf9200382, 0xfa2a0382, 0x0800beff, 0xe7ff0e04, 0x03826304, 0x03826420, + 0x03826520, 0x03828d20, 0x0382af20, 0x8182b120, 0xe6ffb426, 0xfb031b00, 0x0e209f82, 0x12240382, 0x1504f2ff, 0x16200782, 0x17200382, 0x18200382, + 0x19200382, 0x1a200382, 0x1b200382, 0x1c200382, 0x1d200382, 0x1e200382, 0x63200382, 0x64200382, 0x65200382, 0x7b200382, 0x7e200382, 0x85200382, + 0x8d200382, 0x90200382, 0x95204782, 0x9c200782, 0xaf200382, 0xb0200382, 0x24061960, 0x00f2ffc8, 0x206d8227, 0x269382f5, 0xff1004dc, 0x821104eb, + 0xff132203, 0x267582e0, 0xff1604f5, 0x821704f5, 0x82182003, 0x82192003, 0x821a2003, 0x821b2003, 0x821c2003, 0x821d2003, 0x821e2003, 0xff622203, + 0x26cb82ea, 0xff6404dc, 0x826504dc, 0x82702003, 0x8271203f, 0x82722003, 0x82732003, 0x82742003, 0x8275204b, 0x82762003, 0x82772003, 0x827b2003, + 0x827e2033, 0x82852003, 0x828d2003, 0x828e202f, 0x82942013, 0x82952003, 0x829a200f, 0x829c2007, 0x82af2007, 0x82b72017, 0x00ba3857, 0x04010016, + 0x00ecffd5, 0xfffd0341, 0xff0104cd, 0x000404c4, 0x8209041e, 0x820b200b, 0xff0d2403, 0x820f04fb, 0xff102233, 0x22b782f0, 0x821304f0, 0x001f2407, + 0x82200429, 0x82212003, 0x8222201f, 0x82232003, 0x82242003, 0x82252003, 0x0fb95503, 0x4b824320, 0x17824e20, 0x03824f20, 0x03825020, 0x03825120, + 0x03825220, 0x03825320, 0x03825420, 0x03825720, 0x63825d20, 0x03825e20, 0x03825f20, 0x03826020, 0x03826120, 0x73826620, 0x03826720, 0x03826820, + 0x03826920, 0x03826a20, 0x03826b20, 0x03826c20, 0x03826d20, 0x03826e20, 0x03826f20, 0x8f827020, 0x03827120, 0x03827220, 0x03827320, 0x03827420, + 0x03827520, 0x03827620, 0x03827720, 0x5f828220, 0x03828920, 0x0b828e20, 0xccff8f24, 0xf3829104, 0x16009224, 0x0f829404, 0x17829920, 0x07829a20, + 0x0f829b20, 0x0b82ae20, 0x1e00ba3a, 0x05000400, 0x0a00e7ff, 0x3201e7ff, 0x1a02faff, 0x0100faff, 0x88ff0800, 0x1a2a0582, 0x0200e4ff, 0x7cff1100, + 0x0382ab00, 0xec030126, 0x5b00ccff, 0xb0202d82, 0xb0262d82, 0xd8ff1000, 0x27828c00, 0xb0ffa924, 0x0b82b100, 0x0382b220, 0x0b82b320, 0x0382b420, + 0x0382b520, 0x0382b620, 0xb0ffbd2c, 0xd8ff3802, 0xe5fffd03, 0x03820104, 0x20000424, 0x07820904, 0x03820b20, 0x0b000d26, 0xa4ff0e04, 0x2a066b41, + 0xff1104d8, 0xff1304dd, 0x821f04c9, 0x8220209b, 0x82212003, 0x82222023, 0x82232003, 0x82242003, 0x82252003, 0x82332003, 0x82342003, 0x82352003, + 0x82362003, 0x82432003, 0x824e204f, 0x824f2007, 0x82502003, 0x82512003, 0x82522003, 0x82532003, 0x82542003, 0x82572003, 0x825d2003, 0x825e2067, + 0x825f2003, 0x82602003, 0x82612003, 0xff622403, 0x826304af, 0x8264207b, 0x82652003, 0x297b4103, 0x7104dd22, 0x7220a782, 0x73200382, 0x74200382, + 0x7520af82, 0x76200382, 0x77200382, 0x82200382, 0x89206f82, 0x8d200382, 0x8e205382, 0x8f270f82, 0x9104e0ff, 0x4104baff, 0xc922057f, 0x1b829904, + 0x17829a20, 0xdf829b20, 0x0382a020, 0x0382a420, 0x2900a824, 0x1782ae04, 0x3382af20, 0xeaffb03a, 0xc4ffb404, 0x9bffb704, 0xeaffc804, 0xb3003b00, + 0xb5002800, 0xfb032800, 0x04202982, 0x0d202982, 0x0e200782, 0x10200382, 0x12200382, 0x13200382, 0x1420cd82, 0x15200782, 0x16200382, 0x17200382, + 0x18200382, 0x19200382, 0x1a200382, 0x1b200382, 0x1c200382, 0x1d200382, 0x1e200382, 0x5d410382, 0x82432007, 0x825d204b, 0x825e200f, 0x825f2003, + 0x82602003, 0x82612003, 0x82622003, 0x82632003, 0x82642003, 0x82652003, 0x82742003, 0x8275205f, 0x82762003, 0x82772003, 0x82782003, 0x82792013, + 0x827a2003, 0x827b2003, 0x827e2003, 0x82802003, 0x82852003, 0x828d2003, 0x828e2003, 0xff8f2423, 0x829004fb, 0x8294200b, 0x8295200b, 0x829a2007, + 0x889c2007, 0x042921f1, 0xaf20f183, 0xb2200f82, 0xb4200382, 0xba200382, 0xbc368b82, 0x31002900, 0xecffb300, 0xecffb500, 0xe5fffb03, 0xf2ff0e04, + 0x07821004, 0x03821120, 0xcdff1224, 0x03821304, 0xdcff1424, 0x0f821504, 0x03821620, 0x03821720, 0x03821820, 0x03821920, 0x03821a20, 0x03821b20, + 0x03821c20, 0x03821d20, 0x03821e20, 0xeaff1f24, 0x03822004, 0x33826220, 0x4b826320, 0x03826420, 0x03826520, 0x1b827020, 0x03827120, 0x03827220, + 0x03827320, 0x57827420, 0x03827520, 0x03827620, 0x03827720, 0x2f827820, 0x03827920, 0x03827a20, 0x1f827b20, 0x03827e20, 0x0b828020, 0x07828520, + 0x3f828d20, 0x23828e20, 0x03829020, 0x03829420, 0x13829520, 0x07829a20, 0x07829c20, 0x1b82af20, 0xcdffb22e, 0xb3000400, 0xb4002800, 0xb5001c00, + 0xb6200782, 0x42260782, 0xc4ff1100, 0x0382ab00, 0x28201985, 0x28201986, 0xb426e782, 0xfbfffd03, 0x03820104, 0x03820920, 0x03820b20, 0x0b000d2a, + 0x0a000e04, 0xf5ff1404, 0xb426eb82, 0xb4ff1604, 0x03821704, 0x03821820, 0x03821920, 0x03821a20, 0x03821b20, 0x03821c20, 0x03821d20, 0x03821e20, + 0xafff1f22, 0xaf22eb82, 0x3f822104, 0x03822220, 0x03822320, 0x03822420, 0x03822520, 0x03823320, 0x03823420, 0x03823520, 0x03823620, 0x03824e20, + 0x03824f20, 0x03825020, 0x03825120, 0x03825220, 0x03825320, 0x03825420, 0x03825720, 0x20132f43, 0x208f8263, 0x20038264, 0x20038265, 0x20978278, + 0x20038279, 0x2003827a, 0x207b827b, 0x2003827e, 0x200b8280, 0x203b8282, 0x200b8285, 0x20078289, 0x2027828d, 0x200b8295, 0x200b8299, 0x2007829c, + 0x2a0782ae, 0x000a00af, 0x0004040d, 0x820d0416, 0x82112003, 0x82432031, 0x13834207, 0x1b827020, 0x03827120, 0x03827220, 0xf5ff7330, 0xa9000600, + 0xbd00d8ff, 0x8f04d8ff, 0xcf44e2ff, 0xeaff3105, 0xeaff9b04, 0xfb031500, 0x0404e0ff, 0x1504f6ff, 0x16200782, 0x17200382, 0x18200382, 0x19200382, + 0x1a200382, 0x1b200382, 0x1c200382, 0x1d200382, 0x1e200382, 0x15420382, 0x82432007, 0x827b2033, 0x827e200f, 0x82852003, 0x82952003, 0x829c2003, + 0x82a02003, 0x00722a55, 0x0088ff10, 0x00d7ff46, 0x24038252, 0x00f2ff56, 0x2003825c, 0x200b826f, 0x20038279, 0x2003827a, 0x2003827b, 0x2003827c, + 0x2003827d, 0x200382a1, 0x202f82a9, 0x200782b0, 0x200782b1, 0x240382b2, 0x002900b4, 0x200382b6, 0x203782b9, 0x240f82bd, 0x00b0ffc2, 0x200b82e3, + 0x200382ea, 0x200382fa, 0x282b82fc, 0x01d7fffe, 0x01f2ff1e, 0x20078231, 0x20038247, 0x2003826e, 0x20038270, 0x20138274, 0x20038282, 0x200b8289, + 0x20078292, 0x200782ce, 0x240382d0, 0x02d7ffd7, 0x20038216, 0x28038219, 0x02f2ff1b, 0x02e4ff1c, 0x2003821f, 0x20038227, 0x2013822b, 0x2013822c, + 0x26038234, 0x0388ff38, 0x46f2ff8a, 0xb424e2db, 0xd7ff9104, 0x21065b45, 0xdb4604f0, 0x00162811, 0xff050047, 0x820a0060, 0x82102003, 0x82a92003, + 0x82b12003, 0x82b22003, 0x82b32003, 0x82b42003, 0x82b52003, 0x82b62003, 0xffbd2803, 0xff380260, 0x82fd0360, 0x82012051, 0x00042203, 0x0acb6828, + 0x0f047522, 0x102c1382, 0x110493ff, 0x1304a4ff, 0x21047eff, 0x22200f82, 0x23200382, 0x24200382, 0x25200382, 0x7d5b0382, 0x8243200f, 0x1fcb6843, + 0x75ff6224, 0x03826304, 0x03826420, 0x03826520, 0x47826620, 0x03826720, 0x03826820, 0x03826920, 0x03826a20, 0x03826b20, 0x03826c20, 0x03826d20, + 0x03826e20, 0x03826f20, 0x22119359, 0x8275047e, 0x82762097, 0x82772003, 0x68822003, 0x752208cf, 0x0f828e04, 0x03829420, 0x13829920, 0x07829a20, + 0x0782ae20, 0x75ffaf2c, 0xb3003a00, 0xb500d8ff, 0x6f45d8ff, 0x45dc2006, 0xe720466f, 0x210ebb49, 0x6f4504e5, 0xff8c2337, 0xcf4904ed, 0x04cd2905, + 0x04cdff90, 0x04f5ff91, 0x240f7745, 0x04e0ffa0, 0x280382a3, 0x04dcffaf, 0x04e5ffb0, 0x282782b2, 0x04e2ffb7, 0x04f6ffbc, 0x300f82c8, 0x00e5ffd7, + 0xff0f003c, 0xff110038, 0xffab0060, 0x26ed8260, 0xff0404ae, 0x820e04d8, 0x82112021, 0x82122051, 0xff132425, 0x821404ea, 0xff15240f, 0x821604ae, + 0x82172003, 0x82182003, 0x82192003, 0x821a2003, 0x821b2003, 0x821c2003, 0x821d2003, 0x821e2003, 0xff1f2403, 0x8220049c, 0x82432003, 0x82632047, + 0x82642037, 0x82652003, 0x0ebb4403, 0x1d650420, 0x04f62211, 0x20278279, 0x2003827a, 0x2047827b, 0x2003827e, 0x200b8280, 0x20078285, 0x2007828c, + 0x2003828d, 0x208b828e, 0x20938290, 0x20078294, 0x20178295, 0x2007829a, 0x2207829c, 0x82b4ffa0, 0x04e526e9, 0x04b9ffa8, 0x202782af, 0x20bb82b0, + 0x222782b2, 0x821600ba, 0x04e522ed, 0x200f82c8, 0x202b82d7, 0x2ef182d9, 0xffa90044, 0xffb300d8, 0xffb400ec, 0x82b500f4, 0x82b62007, 0xffbd3007, + 0xfffd03d8, 0xff0104eb, 0x000404ed, 0x82090433, 0x820b200b, 0xff0e2403, 0x820f04d2, 0xff102807, 0xff1104dc, 0x821204e0, 0xff132451, 0x822104cf, + 0x82222013, 0x82232003, 0x82242003, 0x82252003, 0x82332003, 0x8234203b, 0x82352003, 0x82362003, 0x82432003, 0x824e2047, 0x824f2017, 0x82502003, + 0x82512003, 0x82522003, 0x82532003, 0x82542003, 0x82572003, 0xff622403, 0x826304d7, 0x82642063, 0x82652003, 0x82662003, 0x82672013, 0x82682003, + 0x82692003, 0x826a2003, 0x826b2003, 0x826c2003, 0x826d2003, 0x826e2003, 0x826f2003, 0x82702003, 0x8271208b, 0x82722003, 0x82732003, 0x82742003, + 0x82752093, 0x82762003, 0x82772003, 0x82822003, 0x82892023, 0x828d2003, 0x828e2053, 0x8290200f, 0x829420b7, 0x82992007, 0x829a2013, 0x82ae2007, + 0x82af2007, 0x00b2281b, 0x041a0016, 0x82fbff0d, 0x04f529dd, 0x04f0ff12, 0x04f2ff13, 0x4113854b, 0xb76011bf, 0x828e200d, 0x82902037, 0x8294203f, + 0x829a2007, 0x82a32003, 0x05874153, 0xba04f034, 0xc8041e00, 0x4d00f5ff, 0x60ff0f00, 0xdbff1000, 0x07821100, 0xb0ffa924, 0x0782ab00, 0x0f82b120, + 0x0382b220, 0x200e0348, 0x05234b00, 0xfb03db2a, 0xfd03a4ff, 0x0104dcff, 0x04240382, 0x0904eaff, 0x0b200782, 0x0e240382, 0x1404b0ff, 0x15240f82, + 0x1604a4ff, 0x17200382, 0x18200382, 0x19200382, 0x1a200382, 0x1b200382, 0x1c200382, 0x1d200382, 0x1e200382, 0x1f240382, 0x20049bff, 0x21200382, + 0x22203b82, 0x23200382, 0x24200382, 0x25200382, 0x33200382, 0x34200382, 0x35200382, 0x36200382, 0x43200382, 0x4e205782, 0x4f200782, 0x50200382, + 0x51200382, 0x52200382, 0x53200382, 0x54200382, 0x57200382, 0x62200382, 0xed5b7f82, 0x04ea220d, 0x20378279, 0x2003827a, 0x206f827b, 0x2003827e, + 0x200b8280, 0x202b8282, 0x200b8285, 0x20078289, 0x2833828d, 0x04d7ff8f, 0x04f2ff92, 0x20138295, 0x20138299, 0x200b829b, 0x200b829c, 0x240382a0, + 0x04baffa8, 0x201382ae, 0x2c2782af, 0x04d2ffbc, 0x00edffd9, 0xfffb0310, 0x28c747e0, 0x2b12bb47, 0x0f003a00, 0x110060ff, 0xab00b0ff, 0xb3240382, + 0xb4005000, 0xb5200382, 0xb6240382, 0xfb035000, 0x820b874c, 0x4c092069, 0x67490687, 0x25a57305, 0xaeff1f24, 0x03822004, 0x82249b4c, 0x1f9b4c63, + 0x16006223, 0x0d4f4904, 0xdd73d820, 0x04f52206, 0x249f8282, 0x04d8ff85, 0x20078289, 0x20078295, 0x20078299, 0x2407829c, 0x00e5ffae, 0x20e98239, + 0x20e98a88, 0x21e98628, 0xe9850028, 0x714ddd20, 0x8d358209, 0x04dd26e9, 0x04ddff16, 0x20038217, 0x20038218, 0x20038219, 0x2003821a, 0x2003821b, + 0x2003821c, 0x2003821d, 0x2203821e, 0x82c9ff1f, 0x04c921e9, 0xe521e9a5, 0x8de99f04, 0x82dd20e5, 0x04dd21e5, 0x2205354a, 0x828504e5, 0x21e5856f, + 0xe58504dd, 0x8304dd21, 0x003326e5, 0x00b0ff10, 0x200382b1, 0x220382b2, 0x824400b3, 0x004422e5, 0x260782b5, 0x024400b6, 0x82b0ff38, 0x04cd24e5, + 0x4fcdff01, 0x142210bf, 0x474ef5ff, 0x04cd210a, 0x2211b34f, 0x823404cd, 0x82352037, 0x82362003, 0x37b34f03, 0xcd85d58b, 0x8904cd22, 0x8f264f82, + 0x9104c9ff, 0xcd82ebff, 0xc982cd20, 0xbc04cd28, 0x50001600, 0xc5820f00, 0xd8ff1028, 0x88ff1100, 0x0382ab00, 0x354fb120, 0x201b8207, 0x42d582b4, + 0xd98305a9, 0xfb03d824, 0xdd89c9ff, 0x50e0ff21, 0x13220c9d, 0x1d4c0b00, 0x04c92206, 0x20698216, 0x20038217, 0x20038218, 0x20038219, 0x2003821a, + 0x2003821b, 0x2003821c, 0x2003821d, 0x2403821e, 0x0491ff1f, 0x20038220, 0x41998221, 0x6b822009, 0xbd504e20, 0x4e622032, 0x294c132b, 0x04c9220c, + 0x418b827e, 0x85200725, 0x89200b82, 0x2f4e6782, 0x04b92205, 0x20778292, 0x20d78294, 0x20178295, 0x20178299, 0x200b829a, 0x2013829b, 0x200f829c, + 0x2a0f82ae, 0x00edffbc, 0xff100028, 0x42a900b0, 0x3b450a13, 0x45b02005, 0x33450837, 0xff142307, 0xff4404fb, 0x1ffb4423, 0x47827820, 0x03827920, + 0x03827a20, 0x03828020, 0xdcff8224, 0x03828904, 0xedff8f26, 0xf6ff9104, 0xf621b582, 0x05db4404, 0xae04f626, 0x3000dcff, 0xea268982, 0xeaff0104, + 0x03820904, 0x03820b20, 0x2205ab4f, 0x4f110429, 0x292008af, 0xea229982, 0x1b822204, 0x03822320, 0x03822420, 0x03822520, 0x03823320, 0x03823420, + 0x03823520, 0x03823620, 0x03824e20, 0x03824f20, 0x03825020, 0x03825120, 0x03825220, 0x03825320, 0x03825420, 0x03825720, 0x200ba34f, 0x205b8270, + 0x20038271, 0x20038272, 0x24038273, 0x04290074, 0x20038275, 0x20038276, 0x20038277, 0x202f8282, 0x4f038289, 0x2920059f, 0x20069b4f, 0x22b98229, + 0x829a04ea, 0x82ae201f, 0x068f4f1b, 0x00460027, 0x00f4ff05, 0x4503820a, 0xff230847, 0x82b400d8, 0x82b52003, 0xffb62803, 0xfffb03d8, 0x820304c2, + 0xff0428fb, 0xff0e04f2, 0x821004d2, 0xff112603, 0xff1204dd, 0x06b359be, 0x1504e222, 0x16202382, 0x17200382, 0x18200382, 0x19200382, 0x1a200382, + 0x1b200382, 0x1c200382, 0x1d200382, 0x1e200382, 0x1f200382, 0x20200382, 0x39200382, 0x3a204f82, 0x3b200382, 0x3c200382, 0x3d200382, 0x3e200382, + 0x3f200382, 0x40200382, 0x41200382, 0x42200382, 0x43200382, 0x47487382, 0x8270200b, 0x0d8f5177, 0x5904c221, 0xe2260d37, 0xe2ff7904, 0x03827a04, + 0x67827b20, 0x03827e20, 0x0b828020, 0x4b828320, 0x0b828520, 0xbb828d20, 0x07828e20, 0xbb829020, 0x13829320, 0x0b829420, 0x03829520, 0x0b829820, + 0x07829a20, 0x03829c20, 0x2382af20, 0xbeffb224, 0xf9823a00, 0xfd03af22, 0x01208182, 0xa1470382, 0x04e72e05, 0x04e7ff0b, 0x04b0ff0e, 0x04160010, + 0x24038213, 0x04afff15, 0x20038216, 0x20038217, 0x20038218, 0x20038219, 0x2003821a, 0x2003821b, 0x2003821c, 0x2003821d, 0x2003821e, 0x20438221, + 0x20038222, 0x20038223, 0x20038224, 0x20038225, 0x20038233, 0x20038234, 0x20038235, 0x47038236, 0xe722059d, 0x63824f04, 0x03825020, 0x4713d177, + 0x74200b99, 0x75207f82, 0x76200382, 0x77200382, 0x7b200382, 0x7e206782, 0x82200382, 0x85203b82, 0x89200782, 0x8d200782, 0x8e20ab82, 0x94201b82, + 0x95200382, 0x99201382, 0x9a201382, 0x9c200b82, 0xae200b82, 0xaf2a7382, 0x3500b0ff, 0x0c000500, 0x03820a00, 0x21054347, 0x99440019, 0x03192c05, + 0x037dfffb, 0x04cdfffd, 0x44b7ff04, 0x15220891, 0xf1827dff, 0x17047d22, 0x18200782, 0x19200382, 0x1a200382, 0x1b200382, 0x1c200382, 0x1d200382, + 0x1e200382, 0x7d440382, 0x82432013, 0x1f6d4447, 0x3b827b20, 0x03827e20, 0x77828220, 0x07828520, 0x07828920, 0xc4ff8f28, 0xdcff9204, 0x0f829504, + 0x0f829920, 0x0b829b20, 0x0b829c20, 0x98ffa02a, 0xeaffa304, 0x91ffa804, 0x22057745, 0x4b04c9ff, 0xdc220511, 0xb1821000, 0x0b04ed26, 0x4e04edff, + 0x4f200382, 0x50200382, 0x51200382, 0x52200382, 0x53200382, 0x54200382, 0x57200382, 0x82200382, 0x89200382, 0x8f220382, 0xe143ddff, 0x04ed2c06, + 0x00f6ff9b, 0xff8c0047, 0x43b300b0, 0xd824100f, 0xe2ff0304, 0x2006514c, 0x060743d7, 0x1404b924, 0x295ad7ff, 0x82392028, 0x823a203f, 0x823b2003, + 0x823c2003, 0x823d2003, 0x823e2003, 0x823f2003, 0x82402003, 0x82412003, 0x82422003, 0x056d4c03, 0x6404d722, 0x65205b82, 0x74240382, 0x7504b9ff, + 0x76200382, 0x77200382, 0x78200382, 0x79201382, 0x7a200382, 0x7b210382, 0x074b48ff, 0x8304d722, 0x85203b82, 0x8c240f82, 0x8d04d2ff, 0x8e201b82, + 0x90282b82, 0x9104beff, 0x9304f5ff, 0x94201b82, 0x95200f82, 0x98201f82, 0x9a200b82, 0x9c200b82, 0xa0240b82, 0xa304c9ff, 0xa4282b82, 0xa804f6ff, + 0xaf04e0ff, 0xb0200b82, 0xb2200782, 0xb7203782, 0xbc241f82, 0xc804eaff, 0xd7200f82, 0xd9320382, 0x2a00eaff, 0xd8ffc300, 0xd8ffc400, 0xbafffb03, + 0x59820904, 0x03820b20, 0xebff1222, 0x2206574d, 0x821604ba, 0x82172017, 0x82182003, 0x82192003, 0x821a2003, 0x821b2003, 0x821c2003, 0x821d2003, + 0x821e2003, 0x824e2003, 0x824f2033, 0x82502003, 0x82512003, 0x82522003, 0x82532003, 0x82542003, 0x82572003, 0x82782003, 0x093f4d8d, 0x7e04ba22, + 0x80203382, 0x82201382, 0x85201b82, 0x89200b82, 0x8f200782, 0x90200382, 0x92207782, 0x95200382, 0x99201382, 0x9b200f82, 0x9c200b82, 0xb2320b82, + 0x2800ebff, 0xb0ff8c00, 0x1600fb03, 0xf2ff0e04, 0xbf821304, 0x41821420, 0x54274155, 0x87580b4b, 0x559d8c0f, 0x5b82071d, 0x0b828520, 0x07828c20, + 0x6f828d20, 0x6f828e20, 0x8d829120, 0x1e009224, 0x0b829404, 0x1b829520, 0x07829a20, 0x0f829b20, 0x0b829c20, 0xf2ffaf2d, 0xb3000a00, 0xb400b0ff, + 0x5700bcff, 0xbc200549, 0xd723a982, 0x41ff6304, 0x8d2009f9, 0xaf240b82, 0x2000d7ff, 0x2008c34f, 0x41e582fd, 0x0e200775, 0x21205f82, 0x22200f82, + 0x23200382, 0x24200382, 0x25200382, 0x5d410382, 0x8263201f, 0x82642037, 0x82652003, 0x82822003, 0x8289202f, 0x828d2003, 0xff8f240b, 0x829904f0, + 0x82ae200b, 0x82af2003, 0xffb4250f, 0xffb704d2, 0x2805d748, 0xff10006f, 0xff2300db, 0x283153f4, 0x2b828c20, 0xbb82a120, 0x3782a920, 0x0782b020, + 0x5307194d, 0xdb24052d, 0xe7ffc200, 0x206a2d53, 0x062d53db, 0x095ae020, 0x04162606, 0x04e0ff09, 0x5a03820b, 0xe0211905, 0x0f997804, 0x2211055a, + 0x824e0416, 0x1b457843, 0x21297558, 0xf15904f0, 0x04e0221d, 0x266b8289, 0x04f0ff8e, 0x59d7ff8f, 0xe0220ef1, 0xf1599a04, 0x04e03408, 0x04fbffb0, + 0x04f6ffb4, 0x041600ba, 0x00fbffc8, 0x820e0406, 0x0bc1500d, 0x0f828d20, 0xf6ffaf2a, 0x05002500, 0x0a00dbff, 0x2b530382, 0x00882105, 0x20052b53, + 0x06d95b88, 0x12049b22, 0x242ad15b, 0x049bff63, 0x20038264, 0x5b038265, 0x9b220dad, 0x47829004, 0xf5ff9524, 0x03829c04, 0x2005c951, 0x22a7829b, + 0x82b204e0, 0xffb42617, 0xffb704cd, 0x06694467, 0x2100e527, 0x38ffb300, 0x05b95300, 0xb6003825, 0x420360ff, 0xcc210df7, 0x35f74204, 0x9d82cc20, + 0x6504cc25, 0x4204ccff, 0xcc2209f7, 0x91828f04, 0x2009f742, 0x209582cc, 0x388982ea, 0x00e100ea, 0x00e4ff09, 0x00c5ff10, 0x00e6ff23, 0x00deff26, + 0x00b0ff2a, 0x20078232, 0x28038234, 0x00d8ff38, 0x00ecff39, 0x2003823a, 0x2403823c, 0x0019003f, 0x20138246, 0x20038247, 0x20038248, 0x2003824a, + 0x20038252, 0x28038254, 0x00f2ff57, 0x00caff58, 0x243f8259, 0x00c4ff5a, 0x2007825c, 0x20438264, 0x20038267, 0x201f8268, 0x2003826f, 0x20038270, + 0x20038271, 0x20038272, 0x20038273, 0x20038279, 0x2003827a, 0x2003827b, 0x2003827c, 0x2003827d, 0x2043827e, 0x2003827f, 0x20038280, 0x20038281, + 0x2013828a, 0x2803828b, 0x00f4ff8c, 0x00370090, 0x244f8291, 0x001c009f, 0x241382a1, 0x00dbffa9, 0x200f82ae, 0x200382af, 0x200f82b0, 0x20c782b1, + 0x200382b2, 0x207b82b9, 0x20af82ba, 0x241f82bd, 0x00cdffc2, 0x201f82cf, 0x200382d0, 0x200382d1, 0x202782d2, 0x200382d3, 0x200382d4, 0x200f82e8, + 0x202782e9, 0x202f82ea, 0x200382f6, 0x201382f7, 0x201382fb, 0x200782fc, 0x200782fd, 0x240782fe, 0x01d8ffff, 0x20038207, 0x2003820a, 0x2403820c, + 0x01f2ff22, 0x2c078223, 0x01caff24, 0x01deff2c, 0x01ccff2d, 0x240f822e, 0x01f4ff2f, 0x20038230, 0x240b8231, 0x01e7ff32, 0x201b8246, 0x200b8247, + 0x2003824b, 0x2403824d, 0x01b0ff50, 0x20078251, 0x2017826d, 0x2007826e, 0x2007826f, 0x20078270, 0x204f8276, 0x20078277, 0x204f8278, 0x20078279, + 0x2007827a, 0x2007827b, 0x2007827c, 0x2007827d, 0x2807827e, 0x01ecff7f, 0x01c4ff80, 0x20078281, 0x24478282, 0x01370086, 0x203f8288, 0x201f8289, + 0x2013828b, 0x201b828c, 0x2007828d, 0x2007828e, 0x2007828f, 0x20078290, 0x20078291, 0x242b8292, 0x016e00a6, 0x202b82b3, 0x280f82b8, 0x01e4ffba, + 0x011c00bb, 0x200b82bd, 0x203b82be, 0x20af82bf, 0x205f82c2, 0x202782c4, 0x200b82c5, 0x200382c7, 0x200b82cc, 0x201b82ce, 0x200382d0, 0x201b82d1, + 0x200382d3, 0x200382d6, 0x200f82d7, 0x200782d8, 0x204b82dd, 0x200382f6, 0x200382f9, 0x30fb82fc, 0x02faffff, 0x021c0005, 0x02f4ff09, 0x02d8ff0d, + 0x20038216, 0x2c038219, 0x02e7ff1a, 0x02b0ff1b, 0x02c9ff1f, 0x201b8222, 0x20138228, 0x2003822b, 0x26138234, 0x03c5ff38, 0x10f2ff8c, 0x08016f3f, + 0x10006f24, 0x7946e7ff, 0x00ec2606, 0x00faff48, 0x24038252, 0x00ecff6f, 0x20078270, 0x20038271, 0x20038272, 0x20038273, 0x20038279, 0x2003827a, + 0x2003827b, 0x2003827c, 0x2403827d, 0x00f4ff8c, 0x460782a1, 0xfa220585, 0x4b82b100, 0x0382b220, 0x2205fd42, 0x82fc00e7, 0xfffe2847, 0xff0a01ec, + 0x820c01fa, 0x82312003, 0x82472003, 0x824b200f, 0x824d2007, 0x826e2003, 0x82702003, 0x82892003, 0x82ce2003, 0x82d02003, 0xffd7241b, 0x820d02fa, + 0x82162003, 0xff192403, 0x821c02ec, 0x07a35907, 0x0b822820, 0x03822b20, 0xe7ff3822, 0x60e29b59, 0x6a242177, 0xe7ff1000, 0x223a3348, 0x82b200e7, + 0x7533483f, 0x3348e720, 0x04e52406, 0x60c4ff01, 0x2f4808d1, 0x04e52119, 0x2111c960, 0xef7704c4, 0x1f3f530b, 0x25492b48, 0xff8904e5, 0x2b4804e5, + 0x48e52015, 0xe52a0a2b, 0xfbffb404, 0x1600ba04, 0x6d542800, 0x00d82e06, 0x00e4ff12, 0x00f4ff1d, 0x00d8ff24, 0x2407822d, 0x00f2ff5b, 0x2003825d, + 0x200f8262, 0x20038263, 0x201f8290, 0x200782ab, 0x200382ac, 0x200382ad, 0x200382c6, 0x280382c8, 0x01f2ffe5, 0x01d8ff02, 0x20038204, 0x200b8228, + 0x24078244, 0x01f4ff62, 0x24078284, 0x01e4ff86, 0x200782a7, 0x200382a9, 0x200382af, 0x201f82d2, 0x201b82e1, 0x240b82e8, 0x02e4ffec, 0x26038213, + 0x02f2ff1d, 0x18f2ff27, 0x36188344, 0x00ea0401, 0x0401006c, 0x005200fa, 0xffbb0001, 0x0002006c, 0x8205007e, 0x00002201, 0x2401820a, 0x000f0001, + 0x22138211, 0x82240024, 0x00293613, 0x00060029, 0x002f002c, 0x00320007, 0x000b0034, 0x003d0036, 0x203b820e, 0x08ed8253, 0x55005524, 0x59001800, + 0x19005c00, 0x63006200, 0x67001d00, 0x1f006800, 0x7d007900, 0x8a002100, 0x26008b00, 0x01829100, 0x9f002822, 0x292a0182, 0xa200a100, 0xaa002a00, + 0x5182ae00, 0xb600b12c, 0xb9003100, 0x3700bb00, 0x0182be00, 0xc3003a28, 0x3b00c400, 0x0182c600, 0xc8003d22, 0x3e2e0182, 0xd400cb00, 0xe0003f00, + 0x4900e200, 0x0182e400, 0x004c580a, 0x00ec00e9, 0x00f8004d, 0x015100f9, 0x00020102, 0x01040153, 0x01540004, 0x00070107, 0x010d0155, 0x0156000d, + 0x00100110, 0x011a0157, 0x0158001a, 0x001d011c, 0x01210159, 0x015b0021, 0x00230123, 0x0127015c, 0x015d0027, 0x002d012b, 0x0138015e, 0x01610038, + 0x00440144, 0x015a0162, 0x0163005a, 0x005c015c, 0x015e0164, 0x0165005e, 0x00600160, 0x01620166, 0x01670062, 0x0070016d, 0x01730168, 0x016c0073, + 0x00770177, 0x0179016d, 0x016e0079, 0x007b017b, 0x017d016f, 0x0170007d, 0x0082017f, 0x01840171, 0x01750084, 0x00890188, 0x018b0176, 0x01780092, + 0x009f019f, 0x01a20180, 0x018100a5, 0x00a701a7, 0x01a90185, 0x018600a9, 0x00ab01ab, 0x01ad0187, 0x018800af, 0x00b301b3, 0x01b5018b, 0x018c00b5, + 0x00bd01b7, 0x01c4018d, 0x019400c4, 0x00cc01cc, 0x01ce0195, 0x019600cf, 0x00d201d2, 0x01d70198, 0x019900d7, 0x00dc01db, 0x01de019a, 0x019c00e6, + 0x00e801e8, 0x01eb01a5, 0x01a600ec, 0x00ef01ee, 0x01f201a8, 0x01aa00f2, 0x00f601f6, 0x01f801ab, 0x01ac00f8, 0x00fe01fa, 0x020102ad, 0x02b20002, + 0x00060204, 0x020a02b4, 0x02b7000b, 0x000e020e, 0x021202b9, 0x02ba0012, 0x00160216, 0x021802bb, 0x02bc0018, 0x001b021b, 0x021d02bd, 0x02be001d, + 0x00260225, 0x022a02bf, 0x02c1002a, 0x00340233, 0x023602c2, 0x03c40038, 0x00890389, 0x038b03c7, 0x03c8008b, 0x00d403d4, 0x03d603c9, 0x03ca00d6, + 0x00dc03db, 0x03ef03cb, 0x03cd00ef, 0x000104fb, 0x040304ce, 0x04d50006, 0x002f0409, 0x043104d9, 0x04000136, 0x01470439, 0x04490406, 0x04150149, + 0x0180044e, 0x04820416, 0x04490185, 0x01890488, 0x048b044d, 0x044f0196, 0x01a40498, 0x04a7045b, 0x046801a7, 0x01ab04ab, 0x04ad0469, 0x046a01b3, + 0x01b704b6, 0x04b90471, 0x047301bb, 0x01c804bd, 0x04ca0476, 0x048201ca, 0x01d004cf, 0x04d20483, 0x048501d4, 0x01d804d6, 0x04da0488, 0x048b01da, + 0x01e504e5, 0x04ea048c, 0x048d01ea, 0x01f204f2, 0x05fa048e, 0x008f0104, 0x00480102, 0x00500005, 0x10480024, 0x3c010300, 0x0300023c, 0x0702e801, + 0x36020000, 0x20003602, 0xca049c04, 0x02002100, 0x05001001, 0x01104200, 0x08080159, 0x04000222, 0x2d012b01, 0x9f010000, 0x0300a501, 0xbd01a701, + 0x7b040a00, 0x21009b04, 0xf4030200, 0xfb000500, 0x012b0110, 0x91031008, 0x01103f01, 0x08a3013f, 0x4e000222, 0x3d002400, 0x62000000, 0x1a006800, + 0x91009000, 0xc6002100, 0x2300cb00, 0xd400cd00, 0xe0002900, 0x31220182, 0x0182e200, 0xe4003222, 0x33220182, 0x0182e700, 0xe9003422, 0x35220182, + 0x0182eb00, 0xf6003622, 0x37280182, 0xf900f800, 0xfb003800, 0x3a220182, 0x0182fd00, 0x013bcd08, 0x00020102, 0x0104013c, 0x013d0004, 0x00060106, + 0x0108013e, 0x013f0009, 0x000b010b, 0x010d0141, 0x0142000d, 0x000f010f, 0x01110143, 0x01440011, 0x00130113, 0x01150145, 0x01460015, 0x00170117, + 0x01190147, 0x01480019, 0x001b011b, 0x011d0149, 0x014a001d, 0x001f011f, 0x0121014b, 0x014c0021, 0x00230123, 0x0125014d, 0x014e0025, 0x00270127, + 0x0129014f, 0x01500029, 0x00380138, 0x01440151, 0x01520044, 0x00460146, 0x01480153, 0x01540048, 0x004a014a, 0x014c0155, 0x0156004c, 0x004e014e, + 0x01500157, 0x01580050, 0x00520152, 0x01540159, 0x015a0054, 0x00560156, 0x0158015b, 0x015c0058, 0x005a015a, 0x015c015d, 0x015e005c, 0x35080182, + 0x60015f00, 0x60006001, 0x62016201, 0x64016100, 0x62006401, 0x67016701, 0x69016300, 0x64006901, 0x6b016b01, 0x6d016500, 0x66006d01, 0x6f016f01, + 0x71016700, 0xb1497101, 0x69700806, 0x75017501, 0x77016a00, 0x6b007701, 0x79017901, 0x7b016c00, 0x6d007b01, 0x7d017d01, 0x7f016e00, 0x6f007f01, + 0x81018101, 0x84017000, 0x71008401, 0x86018601, 0x88017200, 0x73008801, 0x8b018b01, 0x8d017400, 0x75008d01, 0x8f018f01, 0x91017600, 0x77009101, + 0x89038903, 0x8b037800, 0x79008b03, 0x7a04fb03, 0xcb047a00, 0xfa00cb04, 0x01000000, 0x0a240382, 0x7c04e800, 0x0cbf5918, 0x616c3a28, 0x5e006e74, + 0x1d820400, 0xffff0034, 0x08000e00, 0x12000d00, 0x1e001900, 0x30002600, 0x17823500, 0x3a002b28, 0x40003f00, 0x25884500, 0x09000d22, 0x13342982, + 0x1f001a00, 0x31002700, 0x01003600, 0x3b002c00, 0x46004100, 0x08ed5918, 0x4f523427, 0x5a00204d, 0x3e558300, 0x000a000f, 0x000f0005, 0x001b0014, + 0x00230020, 0x00320028, 0x00020037, 0x003c002d, 0x84470042, 0x00102423, 0x8206000b, 0x0015383d, 0x001c0017, 0x00240021, 0x00330029, 0x00030038, + 0x003d002e, 0x86480043, 0x000c3425, 0x00110007, 0x00180016, 0x0022001d, 0x002a0025, 0x82390034, 0x002f2e99, 0x0044003e, 0x634a0049, 0x01637332, + 0x200584be, 0x200584c4, 0x200584ca, 0x260584d0, 0x696c64d6, 0x84dc0167, 0x84e22005, 0x64e82605, 0x016d6f6e, 0x200584ee, 0x200584f4, 0x210583fa, + 0x05840002, 0x72660626, 0x0c026361, 0x16200584, 0x20200584, 0x2a200584, 0x34260584, 0x6d756e6c, 0x05843e02, 0x05844420, 0x05844a20, 0x05845020, + 0x6f6c5626, 0x5c026c63, 0x62200584, 0x72222882, 0x05846802, 0x05846e20, 0x05847420, 0x05847a20, 0x826f8021, 0x86022106, 0x8c200584, 0x92200584, + 0x98200584, 0x9e260584, 0x6e64726f, 0x0584a402, 0x0584ac20, 0x8370b421, 0x84bc202f, 0x84c22005, 0x84c82005, 0x84ce2005, 0x73d42605, 0x02746c61, + 0x200584da, 0x200584e0, 0x200584e6, 0x260584ec, 0x6e6973f2, 0x84f80266, 0x83fe2005, 0x04032105, 0x0a200584, 0x10260584, 0x70636d73, 0x05841603, + 0x05841c20, 0x05842220, 0x05842820, 0x73732e26, 0x34033130, 0x3a200584, 0x40200584, 0x46200584, 0x4c200584, 0x32280582, 0x75735203, 0x58037370, + 0x5e200584, 0x64200584, 0x6a200584, 0x70200584, 0x0321f683, 0x20058476, 0x2005847c, 0x20058482, 0x25058488, 0x0000008e, 0x5b180001, 0x04250bb9, + 0x01000000, 0x20058b00, 0x8b11841c, 0x84082005, 0x26059511, 0x00050003, 0x82070006, 0x2209a721, 0x84090001, 0x2005974f, 0x821d8401, 0x01002304, + 0x06820b00, 0x0a200599, 0x05951d84, 0x0c000224, 0x1f820d00, 0x0122078f, 0x35840e00, 0x11200597, 0x10201d84, 0x0f200584, 0x12200590, 0x05971184, + 0x1d841520, 0x05841420, 0x05901320, 0x11841a20, 0x05841920, 0x05901820, 0x11841b20, 0x059c1720, 0x1d841620, 0x3d080593, 0x003e001e, 0x004e0046, + 0x005e0056, 0x006e0066, 0x007e0076, 0x008e0086, 0x009e0096, 0x00ae00a6, 0x00be00b6, 0x00ce00c6, 0x00de00d6, 0x00ee00e6, 0x01fe00f6, 0x010e0106, + 0x011e0116, 0x71410026, 0x85f02005, 0x06012107, 0x0c200786, 0x78280786, 0x00000300, 0xce010100, 0x06230f85, 0x830600a0, 0xa606210f, 0xca200f86, + 0xe6200786, 0x07210785, 0x20078602, 0x20078630, 0x055d42ba, 0x86d60721, 0x8627870f, 0x4e08216f, 0x08211785, 0x200786b8, 0x210785ea, 0x07866009, + 0x07857c20, 0x86540c21, 0x85b22007, 0x1e0d2107, 0x72200786, 0x8e200786, 0xf8200786, 0x0e210785, 0x2007862a, 0x217f8540, 0x0f86a20e, 0x0200de2e, + 0x04000e00, 0x8a038903, 0x8c038b03, 0x022a0d82, 0xfa00f900, 0x1f010000, 0x0d842001, 0x01000824, 0x2d828d03, 0x74000122, 0x60080f82, 0x042f0064, + 0x04bd04a2, 0x04bf04be, 0x04c104c0, 0x04c304c2, 0x04c504c4, 0x04c704c6, 0x04c904c8, 0x049d049c, 0x049f049e, 0x04a104a0, 0x04a404a3, 0x04a604a5, + 0x04a804a7, 0x04aa04a9, 0x04ac04ab, 0x04ae04ad, 0x04b004af, 0x04b204b1, 0x04b404b3, 0x04b604b5, 0x04b804b7, 0x04ba04b9, 0x04bc04bb, 0x226382ca, + 0x4dda0102, 0x2e200849, 0x44080f82, 0x04210048, 0x0482047d, 0x0495048f, 0x04970496, 0x04990498, 0x049b049a, 0x047c047b, 0x047f047e, 0x04810480, + 0x04840483, 0x04860485, 0x04880487, 0x048a0489, 0x048c048b, 0x048e048d, 0x04910490, 0x04930492, 0x20478294, 0x117b4c03, 0x0609db82, 0x01800008, + 0x010a0106, 0x0112010e, 0x011a0116, 0x0122011e, 0x012a0126, 0x0132012e, 0x013a0136, 0x0142013e, 0x014a0146, 0x0152014e, 0x015a0156, 0x0162015e, + 0x016a0166, 0x0172016e, 0x017a0176, 0x0182017e, 0x018a0186, 0x0192018e, 0x019a0196, 0x01a2019e, 0x01aa01a6, 0x01b201ae, 0x01ba01b6, 0x01c201be, + 0x01ca01c6, 0x01d201ce, 0x01da01d6, 0x01e201de, 0x01ea01e6, 0x01f201ee, 0x01fa01f6, 0x020202fe, 0x020a0206, 0x0212020e, 0x021a0216, 0x0222021e, + 0x022a0226, 0x0232022e, 0x023a0236, 0x0242023e, 0x024a0246, 0x0252024e, 0x025a0256, 0x0262025e, 0x026a0266, 0x0272026e, 0x027a0276, 0x0282027e, + 0x028a0286, 0x0292028e, 0x029a0296, 0x02a2029e, 0x02aa02a6, 0x02b202ae, 0x02ba02b6, 0x02c202be, 0x02ca02c6, 0x02d202ce, 0x02da02d6, 0x02e202de, + 0x02ea02e6, 0x02f202ee, 0x02fa02f6, 0x000403fe, 0x82fb0301, 0x82fc2003, 0x82fd2003, 0x82fe2003, 0x00ff2403, 0x82000401, 0x82012003, 0x82022003, + 0x82032003, 0x21278203, 0x07820504, 0x03820620, 0x03820720, 0x03820820, 0x03820920, 0x03820a20, 0x03820b20, 0x03820c20, 0x03820d20, 0x03820e20, + 0x03820f20, 0x03821020, 0x03821120, 0x03821220, 0x03821320, 0x03821420, 0x03821820, 0x03821c20, 0x03822320, 0x03822820, 0x03824d20, 0x03825120, + 0x03826920, 0x03821f20, 0x03825520, 0x03821920, 0x03821e20, 0x03825720, 0x03825820, 0x03827620, 0x03821720, 0x03822b20, 0x03821520, 0x03822c20, + 0x03822e20, 0x03823920, 0x03823b20, 0x03823c20, 0x03823e20, 0x03824e20, 0x03825020, 0x03825220, 0x03826620, 0x03826820, 0x03826a20, 0x03824920, + 0x03825e20, 0x03827920, 0x03823220, 0x03827420, 0x03825920, 0x03823320, 0x03823d20, 0x03825f20, 0x03822120, 0x03822220, 0x03821620, 0x03821b20, + 0x03822620, 0x03822720, 0x03823120, 0x03822a20, 0x03824520, 0x03824620, 0x03824820, 0x03824a20, 0x03824b20, 0x03825320, 0x03825a20, 0x03825b20, + 0x03825d20, 0x03826320, 0x03826e20, 0x03826b20, 0x03827820, 0x03827a20, 0x03823f20, 0x03821a20, 0x03822420, 0x03822520, 0x03822f20, 0x03822920, + 0x03822d20, 0x03823420, 0x03823620, 0x03823520, 0x03823820, 0x03823720, 0x03824220, 0x03824020, 0x03823a20, 0x03824120, 0x03824320, 0x03824420, + 0x03824720, 0x03824c20, 0x03823020, 0x03825420, 0x03824f20, 0x03825c20, 0x03826020, 0x03826220, 0x03826f20, 0x03826c20, 0x03826720, 0x03826d20, + 0x03827120, 0x03827520, 0x03821d20, 0x03822020, 0x03825620, 0x03827320, 0x03827020, 0x03827220, 0x03827720, 0x02006126, 0x65046404, 0xcb240982, + 0x4d000200, 0x2612894b, 0x00af00ac, 0x82ba0023, 0x00272801, 0x00d400c6, 0x82e00028, 0x00372201, 0x220182e2, 0x82e40038, 0x00392201, 0x220182e7, + 0x82e9003a, 0x003b2201, 0x220182eb, 0x82f6003c, 0x003d2801, 0x00f900f8, 0x82fb003e, 0x00402201, 0x080182fd, 0x020141df, 0x42000201, 0x04010401, + 0x06014300, 0x44000601, 0x09010801, 0x0b014500, 0x47000b01, 0x0d010d01, 0x0f014800, 0x49000f01, 0x11011101, 0x13014a00, 0x4b001301, 0x15011501, + 0x17014c00, 0x4d001701, 0x19011901, 0x1b014e00, 0x4f001b01, 0x1d011d01, 0x21015000, 0x51002101, 0x23012301, 0x25015200, 0x53002501, 0x27012701, + 0x29015400, 0x55002901, 0x38013801, 0x44015600, 0x57004401, 0x46014601, 0x48015800, 0x59004801, 0x4a014a01, 0x4c015a00, 0x5b004c01, 0x4e014e01, + 0x50015c00, 0x5d005001, 0x52015201, 0x54015e00, 0x5f005401, 0x56015601, 0x58016000, 0x61005801, 0x5a015a01, 0x5c016200, 0x63005c01, 0x5e015e01, + 0x60016400, 0x65006001, 0x62016201, 0x64016600, 0x67006401, 0x08018201, 0x01680093, 0x00690169, 0x016b0169, 0x016a006b, 0x006d016d, 0x016f016b, + 0x016c006f, 0x00710171, 0x0173016d, 0x016e0073, 0x00750175, 0x0177016f, 0x01700077, 0x00790179, 0x017b0171, 0x0172007b, 0x007d017d, 0x017f0173, + 0x0174007f, 0x00810181, 0x01840175, 0x01760084, 0x00860186, 0x01880177, 0x01780088, 0x008b018b, 0x018d0179, 0x017a008d, 0x008f018f, 0x0191017b, + 0x037c0091, 0x00890389, 0x038b037d, 0x037e008b, 0x00a203a2, 0x0002007f, 0x00010008, 0x240382bb, 0x00120001, 0x20078203, 0x24038212, 0x00000022, + 0x20038201, 0x201f821d, 0x261d8202, 0x050000bb, 0x820e0505, 0x82022013, 0x00132203, 0x391b821c, 0x001a0002, 0x04fb040a, 0x04fd04fc, 0x05ff04fe, + 0x05010500, 0x05030502, 0x238e0004, 0x062e3982, 0x08050705, 0x0a050905, 0x0c050b05, 0x49820d05, 0x2808238b, 0x0313002c, 0x03d603d5, 0x03d803d7, + 0x03da03d9, 0x03dc03db, 0x03de03dd, 0x03e003df, 0x03e203e1, 0x03e403e3, 0x03e603e5, 0x235983e7, 0xfa03e803, 0x52247d84, 0xf2032600, 0x20080d82, + 0x03ea03e9, 0x03ec03eb, 0x03ee03ed, 0x03f003ef, 0x03f303f1, 0x03f603f4, 0x03f903fa, 0x03f803f7, 0x202394f5, 0x202584f2, 0x832782f5, 0x82f92023, + 0x00022453, 0x8207000a, 0x00002201, 0x28df8213, 0x00840001, 0x000b0085, 0x22018296, 0x82a6000d, 0x000e2201, 0x220182bc, 0x82f5000f, 0x01102c01, + 0x00950195, 0x037c0311, 0x8212007c, 0x82e720bb, 0x230f4133, 0x12000126, 0x08000100, 0x04260382, 0x02003902, 0x09829e00, 0x31000122, 0x0a200982, + 0x9d200382, 0x02240f84, 0x52004400, 0x2c240d82, 0xdf031300, 0x2e141741, 0x03e103e0, 0x03e703e3, 0x03e403e6, 0x82e203e5, 0xb509202b, 0x083982b9, + 0x1600322e, 0xdd04db04, 0xdf04de04, 0xe404dc04, 0xe004e504, 0xe204e104, 0xeb04e304, 0xed04ec04, 0xef04ee04, 0xf104f004, 0xf304f204, 0xf504f404, + 0x2c28a984, 0x00002c00, 0xce00cb00, 0x2e08bd82, 0x00f800f8, 0x01380105, 0x01060038, 0x005a015a, 0x015c0107, 0x0108005c, 0x005e015e, 0x01600109, + 0x040a0060, 0x00030403, 0x0439040b, 0x820c0042, 0x00122e3f, 0x04e60406, 0x04e804e7, 0x04f704f6, 0x081182f8, 0xa2010624, 0x0000a201, 0xad01ad01, + 0xbc010100, 0x0200bc01, 0x83048304, 0x93040300, 0x04009304, 0x98049804, 0x27820500, 0x00262208, 0x04e90410, 0x04d204ea, 0x04d004cf, 0x04d304d1, + 0x04d504d4, 0x04d704d6, 0x04d904d8, 0x04fa04f9, 0x242582da, 0x01df010e, 0x084d82e0, 0xe501e532, 0xee010200, 0x0300ee01, 0xf201f201, 0x07020400, + 0x05000702, 0x0e020e02, 0x12020600, 0x07001202, 0x27022702, 0x33020800, 0x09003302, 0xa304a304, 0xa722ab82, 0xab82a704, 0xbc04bc30, 0xc1040c00, + 0x0d00c204, 0xc704c704, 0x57820f00, 0x0a001a36, 0xc803c703, 0xca03c903, 0xcc03cb03, 0xce03cd03, 0xd003cf03, 0x330bed42, 0x81000801, 0xfc03fb03, + 0xfe03fd03, 0x0004ff03, 0x02040104, 0x0609fd82, 0x04050404, 0x04070406, 0x04090408, 0x040b040a, 0x040d040c, 0x040f040e, 0x04110410, 0x04130412, + 0x04150414, 0x04170419, 0x041e0418, 0x0423041c, 0x042e0428, 0x042c042b, 0x043e0439, 0x043c043b, 0x044e044d, 0x04500452, 0x04570451, 0x046a0466, + 0x04690468, 0x0455041f, 0x04760458, 0x04490403, 0x0479045e, 0x04740432, 0x04330459, 0x0421045f, 0x04270422, 0x041b0416, 0x04310426, 0x0445042a, + 0x04480446, 0x044b044a, 0x045a0453, 0x045d045b, 0x04630464, 0x046b046e, 0x047a0478, 0x041a043f, 0x04250424, 0x0429042f, 0x0434042d, 0x04350436, + 0x04370438, 0x04400442, 0x0441043a, 0x04440443, 0x044c0447, 0x04540430, 0x045c044f, 0x04620460, 0x046c046f, 0x046d0467, 0x04750471, 0x0420041d, + 0x04730456, 0x04720470, 0x04610477, 0x003d0465, 0x004e0002, 0x005d0044, 0x00690000, 0x001a0081, 0x00a100a0, 0x82b00033, 0x00352201, 0x220182b9, + 0x82d50036, 0x00372201, 0x220182e1, 0x82e30038, 0x00392201, 0x220182e5, 0x82e8003a, 0x003b2201, 0x220182ea, 0x82ec003c, 0x003d2201, 0x220182f7, + 0x82fa003e, 0x003f2201, 0x080182fc, 0xfe0040eb, 0x4100ff00, 0x03010301, 0x05014300, 0x44000501, 0x07010701, 0x0a014500, 0x46000a01, 0x0c010c01, + 0x0e014700, 0x48000e01, 0x10011001, 0x12014900, 0x4a001201, 0x14011401, 0x16014b00, 0x4c001601, 0x18011801, 0x1a014d00, 0x4e001a01, 0x1c011c01, + 0x1e014f00, 0x50001e01, 0x20012001, 0x22015100, 0x52002201, 0x24012401, 0x26015300, 0x54002601, 0x28012801, 0x2a015500, 0x56002a01, 0x39013901, + 0x45015700, 0x58004501, 0x47014701, 0x49015900, 0x5a004901, 0x4b014b01, 0x4d015b00, 0x5c004d01, 0x4f014f01, 0x51015d00, 0x5e005101, 0x53015301, + 0x55015f00, 0x60005501, 0x57015701, 0x59016100, 0x62005901, 0x5b015b01, 0x5d016300, 0x64005d01, 0x5f015f01, 0x61016500, 0x66006101, 0x63016301, + 0x65016700, 0x68006501, 0x08018201, 0x0169009b, 0x006a016a, 0x016c016a, 0x016b006c, 0x006e016e, 0x0170016c, 0x016d0070, 0x00720172, 0x0174016e, + 0x016f0074, 0x00760176, 0x01780170, 0x01710078, 0x007a017a, 0x017c0172, 0x0173007c, 0x007e017e, 0x01800174, 0x01750080, 0x00820182, 0x01850176, + 0x01770085, 0x00870187, 0x01890178, 0x01790089, 0x008c018c, 0x018e017a, 0x017b008e, 0x00900190, 0x0192017c, 0x037d0092, 0x008a038a, 0x038c037e, + 0x057f008c, 0x00100510, 0x00020080, 0x0422004a, 0x047e047b, 0x048c047f, 0x0a694b8d, 0x7d047c28, 0x81048004, 0x614b8204, 0x828b200e, 0x0a5d4b27, + 0x2006914b, 0x3849828a, 0x012e0104, 0x01000033, 0x00c101be, 0x01c30106, 0x020a00d9, 0x003a023a, 0x063d4c21, 0x4c3f214c, 0xca201b7d, 0x022c6382, + 0x35020802, 0x37020000, 0x2e003702, 0x28080f82, 0x00260052, 0x00140013, 0x00160015, 0x00180017, 0x001a0019, 0x001c001b, 0x00840007, 0x007c0385, + 0x01f50096, 0x00bc0095, 0x2525a6a6, 0x03010002, 0xa94603d5, 0x001a3605, 0x00c4030a, 0x00f000ef, 0x023e02f1, 0x02c5033f, 0x03410240, 0x0c2747c6, + 0x2aab8745, 0x0404000e, 0x04ea04e9, 0x82fa04f9, 0x450220c3, 0x0423056f, 0x83c204c1, 0x1e00230d, 0xa1450c00, 0x82da2016, 0x010c3b1f, 0x00e501e5, + 0x01ee0100, 0x010100ee, 0x00f201f2, 0x02070202, 0x02030007, 0x5782020e, 0x12022d08, 0x05001202, 0x27022702, 0x33020600, 0x07003302, 0xa304a304, + 0xa7040800, 0x0900a704, 0xbc04bc04, 0xc7040a00, 0x0b00c704, 0x3e000100, 0x08260382, 0x0e000600, 0x75821600, 0x2a00242e, 0xd2033000, 0x49000300, + 0xd3034c00, 0x4f220784, 0x7382d103, 0xbf004922, 0x4c220582, 0x0582d403, 0xc0004d22, 0x4f200582, 0x01203982, 0x02242782, 0x0a001a00, 0x821e9f48, + 0x850020ac, 0x82282000, 0x64022406, 0x82676e6c, 0x210b8307, 0x0b857316, 0x0f823e20, 0x72411636, 0x202c6e6d, 0x6c727943, 0x7247202c, 0x202c6b65, + 0x6e74614c, 0xfa051595, 0x9051e48a, +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/config.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/config.cpp new file mode 100644 index 0000000..c9703b9 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/config.cpp @@ -0,0 +1,406 @@ +// used: [win] winapi +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#include + +#include "config.h" +// used: getworkingpath +#include "../core.h" +// used: l_print +#include "../utilities/log.h" +// used: integertostring +#include "../utilities/crt.h" +// used: heapalloc, heapfree +#include "../utilities/memory.h" + +// used: formatter implementation +#if defined(CS_CONFIGURATION_BINARY) +#include "../../extensions/binary.h" +#elif defined(CS_CONFIGURATION_JSON) +#include "../../extensions/json.h" +#elif defined(CS_CONFIGURATION_TOML) +#include "../../extensions/toml.h" +#endif + +// default configurations working path +static wchar_t wszConfigurationsPath[MAX_PATH]; + +#pragma region config_user_data_type + +std::size_t C::UserDataType_t::GetSerializationSize() const +{ + std::size_t nTotalDataSize = 0U; + + for (const UserDataMember_t& member : vecMembers) + nTotalDataSize += sizeof(FNV1A_t[2]) + member.nDataSize; + + return nTotalDataSize; +} + +#pragma endregion + +#pragma region config_variable_object + +void C::VariableObject_t::SetStorage(const void* pValue) +{ + // check is available to store value in the local storage + if (this->nStorageSize <= sizeof(this->storage.uLocal)) + { + CRT::MemorySet(&this->storage.uLocal, 0U, sizeof(this->storage.uLocal)); + CRT::MemoryCopy(&this->storage.uLocal, pValue, this->nStorageSize); + } + // otherwise use heap memory to store it + else + { + CS_ASSERT(this->storage.pHeap != nullptr); // tried to access non allocated storage + + CRT::MemorySet(this->storage.pHeap, 0U, this->nStorageSize); + CRT::MemoryCopy(this->storage.pHeap, pValue, this->nStorageSize); + } +} + +std::size_t C::VariableObject_t::GetSerializationSize() const +{ + std::size_t nSerializationSize = this->nStorageSize; + + // denote a custom serialization size when it different from the storage size + switch (this->uTypeHash) + { + // lookup for array data type + case FNV1A::HashConst("bool[]"): + case FNV1A::HashConst("int[]"): + case FNV1A::HashConst("unsigned int[]"): + case FNV1A::HashConst("float[]"): + case FNV1A::HashConst("char[][]"): + // arrays also serialize their size + nSerializationSize += sizeof(std::size_t); + break; + // lookup for user-defined data type + default: + { + for (const UserDataType_t& userType : vecUserTypes) + { + if (userType.uTypeHash == this->uTypeHash) + { + nSerializationSize = sizeof(std::size_t) + userType.GetSerializationSize(); + break; + } + } + break; + } + } + + return nSerializationSize; +} + +#pragma endregion + +bool C::Setup(const wchar_t* wszDefaultFileName) +{ + if (!CORE::GetWorkingPath(wszConfigurationsPath)) + return false; + + CRT::StringCat(wszConfigurationsPath, CS_XOR(L"settings\\")); + + // create directory if it doesn't exist + if (!::CreateDirectoryW(wszConfigurationsPath, nullptr)) + { + if (::GetLastError() != ERROR_ALREADY_EXISTS) + { + L_PRINT(LOG_ERROR) << CS_XOR("failed to create configurations directory, because one or more intermediate directories don't exist"); + return false; + } + } + + // @note: define custom data types we want to serialize + AddUserType(FNV1A::HashConst("KeyBind_t"), + { + UserDataMember_t{ FNV1A::HashConst("uKey"), FNV1A::HashConst("unsigned int"), &KeyBind_t::uKey }, + UserDataMember_t{ FNV1A::HashConst("nMode"), FNV1A::HashConst("int"), &KeyBind_t::nMode } + }); + + AddUserType(FNV1A::HashConst("ColorPickerVar_t"), + { + UserDataMember_t{ FNV1A::HashConst("bRainbow"), FNV1A::HashConst("bool"), &ColorPickerVar_t::bRainbow }, + UserDataMember_t{ FNV1A::HashConst("flRainbowSpeed"), FNV1A::HashConst("float"), &ColorPickerVar_t::flRainbowSpeed }, + UserDataMember_t{ FNV1A::HashConst("colPrimary"), FNV1A::HashConst("Color_t"), &ColorPickerVar_t::colValue }, + }); + + AddUserType(FNV1A::HashConst("TextOverlayVar_t"), + { + UserDataMember_t{ FNV1A::HashConst("bEnable"), FNV1A::HashConst("bool"), &TextOverlayVar_t::bEnable }, + UserDataMember_t{ FNV1A::HashConst("flThickness"), FNV1A::HashConst("float"), &TextOverlayVar_t::flThickness }, + UserDataMember_t{ FNV1A::HashConst("colPrimary"), FNV1A::HashConst("Color_t"), &TextOverlayVar_t::colPrimary }, + UserDataMember_t{ FNV1A::HashConst("colOutline"), FNV1A::HashConst("Color_t"), &TextOverlayVar_t::colOutline } + }); + + AddUserType(FNV1A::HashConst("FrameOverlayVar_t"), + { + UserDataMember_t{ FNV1A::HashConst("bEnable"), FNV1A::HashConst("bool"), &FrameOverlayVar_t::bEnable }, + UserDataMember_t{ FNV1A::HashConst("flThickness"), FNV1A::HashConst("float"), &FrameOverlayVar_t::flThickness }, + UserDataMember_t{ FNV1A::HashConst("flRounding"), FNV1A::HashConst("float"), &FrameOverlayVar_t::flRounding }, + UserDataMember_t{ FNV1A::HashConst("colPrimary"), FNV1A::HashConst("Color_t"), &FrameOverlayVar_t::colPrimary }, + UserDataMember_t{ FNV1A::HashConst("colOutline"), FNV1A::HashConst("Color_t"), &FrameOverlayVar_t::colOutline } + }); + + AddUserType(FNV1A::HashConst("BarOverlayVar_t"), + { + UserDataMember_t{ FNV1A::HashConst("bEnable"), FNV1A::HashConst("bool"), &BarOverlayVar_t::bEnable }, + UserDataMember_t{ FNV1A::HashConst("bGradient"), FNV1A::HashConst("bool"), &BarOverlayVar_t::bGradient }, + UserDataMember_t{ FNV1A::HashConst("bUseFactorColor"), FNV1A::HashConst("bool"), &BarOverlayVar_t::bUseFactorColor }, + UserDataMember_t{ FNV1A::HashConst("flThickness"), FNV1A::HashConst("float"), &BarOverlayVar_t::flThickness }, + UserDataMember_t{ FNV1A::HashConst("colPrimary"), FNV1A::HashConst("Color_t"), &BarOverlayVar_t::colPrimary }, + UserDataMember_t{ FNV1A::HashConst("colSecondary"), FNV1A::HashConst("Color_t"), &BarOverlayVar_t::colSecondary }, + UserDataMember_t{ FNV1A::HashConst("colBackground"), FNV1A::HashConst("Color_t"), &BarOverlayVar_t::colBackground }, + UserDataMember_t{ FNV1A::HashConst("colOutline"), FNV1A::HashConst("Color_t"), &BarOverlayVar_t::colOutline } + }); + + // create default configuration + if (!CreateFile(wszDefaultFileName)) + return false; + + // store existing configurations list + Refresh(); + + return true; +} + +#pragma region config_main + +void C::Refresh() +{ + // clear and free previous stored file names + vecFileNames.clear(); + + // make configuration files path filter + wchar_t wszPathFilter[MAX_PATH]; + CRT::StringCat(CRT::StringCopy(wszPathFilter, wszConfigurationsPath), CS_XOR(L"*" CS_CONFIGURATION_FILE_EXTENSION)); + + // iterate through all files with our filter + WIN32_FIND_DATAW findData; + if (const HANDLE hFindFile = ::FindFirstFileW(wszPathFilter, &findData); hFindFile != INVALID_HANDLE_VALUE) + { + do + { + vecFileNames.push_back(new wchar_t[CRT::StringLength(findData.cFileName) + 1U]); + CRT::StringCopy(vecFileNames.back(), findData.cFileName); + + L_PRINT(LOG_INFO) << CS_XOR("found configuration file: \"") << findData.cFileName << CS_XOR("\""); + } while (::FindNextFileW(hFindFile, &findData)); + + ::FindClose(hFindFile); + } +} + +void C::AddUserType(const FNV1A_t uTypeHash, const std::initializer_list vecUserMembers) +{ + if (vecUserMembers.size() == 0U) + return; + + UserDataType_t userDataType; + userDataType.uTypeHash = uTypeHash; + + for (const auto& userDataMember : vecUserMembers) + userDataType.vecMembers.push_back(userDataMember); + + vecUserTypes.emplace_back(CRT::Move(userDataType)); +} + +bool C::SaveFileVariable(const std::size_t nFileIndex, const VariableObject_t& variable) +{ + const wchar_t* wszFileName = vecFileNames[nFileIndex]; + + wchar_t wszFilePath[MAX_PATH]; + CRT::StringCat(CRT::StringCopy(wszFilePath, wszConfigurationsPath), wszFileName); + +#if defined(CS_CONFIGURATION_BINARY) + if (BIN::SaveVariable(wszFilePath, variable)) +#elif defined(CS_CONFIGURATION_JSON) + if (JSON::SaveVariable(wszFilePath, variable)) +#elif defined(CS_CONFIGURATION_TOML) + if (TOML::SaveVariable(wszFilePath, variable)) +#endif + { + return true; + } + + return false; +} + +bool C::LoadFileVariable(const std::size_t nFileIndex, VariableObject_t& variable) +{ + const wchar_t* wszFileName = vecFileNames[nFileIndex]; + + wchar_t wszFilePath[MAX_PATH]; + CRT::StringCat(CRT::StringCopy(wszFilePath, wszConfigurationsPath), wszFileName); + +#if defined(CS_CONFIGURATION_BINARY) + if (BIN::LoadVariable(wszFilePath, variable)) +#elif defined(CS_CONFIGURATION_JSON) + if (JSON::LoadVariable(wszFilePath, variable)) +#elif defined(CS_CONFIGURATION_TOML) + if (TOML::LoadVariable(wszFilePath, variable)) +#endif + { + return true; + } + + return false; +} + +bool C::RemoveFileVariable(const std::size_t nFileIndex, const VariableObject_t& variable) +{ + const wchar_t* wszFileName = vecFileNames[nFileIndex]; + + wchar_t wszFilePath[MAX_PATH]; + CRT::StringCat(CRT::StringCopy(wszFilePath, wszConfigurationsPath), wszFileName); + +#if defined(CS_CONFIGURATION_BINARY) + if (BIN::RemoveVariable(wszFilePath, variable)) +#elif defined(CS_CONFIGURATION_JSON) + if (JSON::RemoveVariable(wszFilePath, variable)) +#elif defined(CS_CONFIGURATION_TOML) + if (TOML::RemoveVariable(wszFilePath, variable)) +#endif + { + return true; + } + + return false; +} + +bool C::CreateFile(const wchar_t* wszFileName) +{ + const wchar_t* wszFileExtension = CRT::StringCharR(wszFileName, L'.'); + + // get length of the given filename and strip out extension if there any + const std::size_t nFileNameLength = (wszFileExtension != nullptr ? wszFileExtension - wszFileName : CRT::StringLength(wszFileName)); + wchar_t* wszFullFileName = new wchar_t[nFileNameLength + CRT::StringLength(CS_CONFIGURATION_FILE_EXTENSION) + 1U]; + + // copy filename without extension + wchar_t* wszFullFileNameEnd = CRT::StringCopyN(wszFullFileName, wszFileName, nFileNameLength); + *wszFullFileNameEnd = L'\0'; + // append correct extension to the filename + CRT::StringCat(wszFullFileNameEnd, CS_XOR(CS_CONFIGURATION_FILE_EXTENSION)); + + // add filename to the list + vecFileNames.push_back(wszFullFileName); + + // create and save it by the index + if (SaveFile(vecFileNames.size() - 1U)) + { + L_PRINT(LOG_INFO) << CS_XOR("created configuration file: \"") << wszFullFileName << CS_XOR("\""); + return true; + } + + L_PRINT(LOG_WARNING) << CS_XOR("failed to create configuration file: \"") << wszFullFileName << CS_XOR("\""); + return false; +} + +bool C::SaveFile(const std::size_t nFileIndex) +{ + const wchar_t* wszFileName = vecFileNames[nFileIndex]; + + wchar_t wszFilePath[MAX_PATH]; + CRT::StringCat(CRT::StringCopy(wszFilePath, wszConfigurationsPath), wszFileName); + +#if defined(CS_CONFIGURATION_BINARY) + if (BIN::SaveFile(wszFilePath)) +#elif defined(CS_CONFIGURATION_JSON) + if (JSON::SaveFile(wszFilePath)) +#elif defined(CS_CONFIGURATION_TOML) + if (TOML::SaveFile(wszFilePath)) +#endif + { + L_PRINT(LOG_INFO) << CS_XOR("saved configuration file: \"") << wszFileName << CS_XOR("\""); + return true; + } + + L_PRINT(LOG_WARNING) << CS_XOR("failed to save configuration file: \"") << wszFileName << CS_XOR("\""); + return false; +} + +bool C::LoadFile(const std::size_t nFileIndex) +{ + const wchar_t* wszFileName = vecFileNames[nFileIndex]; + + wchar_t wszFilePath[MAX_PATH]; + CRT::StringCat(CRT::StringCopy(wszFilePath, wszConfigurationsPath), wszFileName); + +#if defined(CS_CONFIGURATION_BINARY) + if (BIN::LoadFile(wszFilePath)) +#elif defined(CS_CONFIGURATION_JSON) + if (JSON::LoadFile(wszFilePath)) +#elif defined(CS_CONFIGURATION_TOML) + if (TOML::LoadFile(wszFilePath)) +#endif + { + L_PRINT(LOG_INFO) << CS_XOR("loaded configuration file: \"") << wszFileName << CS_XOR("\""); + return true; + } + + L_PRINT(LOG_WARNING) << CS_XOR("failed to load configuration file: \"") << wszFileName << CS_XOR("\""); + return false; +} + +void C::RemoveFile(const std::size_t nFileIndex) +{ + const wchar_t* wszFileName = vecFileNames[nFileIndex]; + + // unable to delete default config + if (CRT::StringCompare(wszFileName, CS_XOR(CS_CONFIGURATION_DEFAULT_FILE_NAME CS_CONFIGURATION_FILE_EXTENSION)) == 0) + { + L_PRINT(LOG_WARNING) << CS_XOR("unable to remove default configuration file: \"") << wszFileName << CS_XOR("\""); + return; + } + + wchar_t wszFilePath[MAX_PATH]; + CRT::StringCat(CRT::StringCopy(wszFilePath, wszConfigurationsPath), wszFileName); + + if (::DeleteFileW(wszFilePath)) + { + // erase and free filename from the list + vecFileNames.erase(vecFileNames.cbegin() + nFileIndex); + + L_PRINT(LOG_INFO) << CS_XOR("removed configuration file: \"") << wszFileName << CS_XOR("\""); + } +} + +#pragma endregion + +#pragma region config_get + +std::size_t C::GetVariableIndex(const FNV1A_t uNameHash) +{ + for (std::size_t i = 0U; i < vecVariables.size(); i++) + { + if (vecVariables[i].uNameHash == uNameHash) + return i; + } + + return C_INVALID_VARIABLE; +} + +#pragma endregion + +#pragma region config_user_types +void ColorPickerVar_t::UpdateRainbow() +{ + // @todo: improve + optimize this code + // progress rainbow color + if (this->bRainbow) + { + const float flTime = static_cast(ImGui::GetTime()); + // create a rainbow color with copied alpha + float arrRainbowColors[] = { + sin(flTime * this->flRainbowSpeed) * 0.5f + 0.5f, + sin(flTime * this->flRainbowSpeed * MATH::_PI / 3) * 0.5f + 0.5f, + sin(flTime * this->flRainbowSpeed * MATH::_PI / 3) * 0.5f + 0.5f, + this->colValue.Base() + }; + + // set the rainbow color + this->colValue = Color_t::FromBase4(arrRainbowColors); + } +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/config.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/config.h new file mode 100644 index 0000000..56ad983 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/config.h @@ -0,0 +1,462 @@ +#pragma once +// used: [stl] vector +#include +// used: [stl] type_info +#include +// used: [win] undname_no_arguments +#include + +#include "../common.h" +#include "../sdk/datatypes/color.h" + +// used: l_print +#include "../utilities/log.h" +// used: heapalloc, heapfree +#include "../utilities/memory.h" +// used: fnv1a hashing +#include "../utilities/fnv1a.h" + +#pragma region config_definitions +#define C_ADD_VARIABLE(TYPE, NAME, DEFAULT) const std::size_t NAME = C::AddVariable(FNV1A::HashConst(#NAME), FNV1A::HashConst(#TYPE), DEFAULT); + +#define C_ADD_VARIABLE_ARRAY(TYPE, SIZE, NAME, DEFAULT) const std::size_t NAME = C::AddVariableArray(FNV1A::HashConst(#NAME), FNV1A::HashConst(#TYPE "[]"), DEFAULT); + +#define C_ADD_VARIABLE_ARRAY_ARRAY(TYPE, SIZE, SUBSIZE, NAME, DEFAULT) const std::size_t NAME = C::AddVariableArray(FNV1A::HashConst(#NAME), FNV1A::HashConst(#TYPE "[][]"), DEFAULT); + +#define C_INVALID_VARIABLE static_cast(-1) + +#define C_GET(TYPE, NAME) C::Get(NAME) +#define C_SET(TYPE, NAME, VALUE) C::Set(C::GetVariableIndex(FNV1A::HashConst(#NAME)), VALUE) + +#define C_GET_ARRAY(TYPE, SIZE, NAME, INDEX) C::Get(NAME)[INDEX] +#pragma endregion + +#pragma region config_user_types +enum class EKeyBindMode : int +{ + HOLD = 0, + TOGGLE +}; + +struct KeyBind_t +{ + constexpr KeyBind_t(const char* szName, const unsigned int uKey = 0U, const EKeyBindMode nMode = EKeyBindMode::HOLD) : + szName(szName), uKey(uKey), nMode(nMode) { } + + bool bEnable = false; + const char* szName = nullptr; + unsigned int uKey = 0U; + EKeyBindMode nMode = EKeyBindMode::HOLD; +}; + +struct ColorPickerVar_t +{ + // default constructor + constexpr ColorPickerVar_t(const Color_t& colValue = Color_t(255, 255, 255), const bool bRainbow = false, const float flRainbowSpeed = 0.5f) : + colValue(colValue), bRainbow(bRainbow), flRainbowSpeed(flRainbowSpeed) { } + + // @note: other contructors will only construct Color_t object and set rainbow to false and speed to 0.5f + + // 8-bit color constructor (in: [0 .. 255]) + constexpr ColorPickerVar_t(const std::uint8_t r, const std::uint8_t g, const std::uint8_t b, const std::uint8_t a = 255) : + colValue(r, g, b, a), bRainbow(false), flRainbowSpeed(0.5f) { } + + // 8-bit color constructor (in: [0 .. 255]) + constexpr ColorPickerVar_t(const int r, const int g, const int b, const int a = 255) : + colValue(r, g, b, a), bRainbow(false), flRainbowSpeed(0.5f) { } + + // 8-bit array color constructor (in: [0.0 .. 1.0]) + explicit constexpr ColorPickerVar_t(const std::uint8_t arrColor[4]) : + colValue(arrColor), bRainbow(false), flRainbowSpeed(0.5f) { } + + // 32-bit packed color constructor (in: 0x00000000 - 0xFFFFFFFF) + explicit constexpr ColorPickerVar_t(const ImU32 uPackedColor) : + colValue(uPackedColor), bRainbow(false), flRainbowSpeed(0.5f) { } + + // 32-bit color constructor (in: [0.0 .. 1.0]) + constexpr ColorPickerVar_t(const float r, const float g, const float b, const float a = 1.0f) : + colValue(r, g, b, a), bRainbow(false), flRainbowSpeed(0.5f) { } + + + + void UpdateRainbow(); + + Color_t colValue = Color_t(255, 255, 255, 255); + bool bRainbow = false; + float flRainbowSpeed = 0.5f; +}; + +/// hold config variables for text component overlay +struct TextOverlayVar_t +{ + constexpr TextOverlayVar_t(const bool bEnable, const bool bIcon, const float flThickness = 1.f, const Color_t& colPrimary = Color_t(255, 255, 255), const Color_t& colOutline = Color_t(0, 0, 0)) : + bEnable(bEnable), bIcon(bIcon), flThickness(flThickness), colPrimary(colPrimary), colOutline(colOutline) { } + + bool bEnable = false; + bool bIcon = false; + float flThickness = 1.f; + Color_t colPrimary = Color_t(255, 255, 255); + Color_t colOutline = Color_t(0, 0, 0); +}; + +/// hold config variables for frame/box component overlay +struct FrameOverlayVar_t +{ + constexpr FrameOverlayVar_t(const bool bEnable, const float flThickness = 1.f, const float flRounding = 0.f, const Color_t& colPrimary = Color_t(255, 255, 255), const Color_t& colOutline = Color_t(0, 0, 0)) : + bEnable(bEnable), flThickness(flThickness), flRounding(flRounding), colPrimary(colPrimary), colOutline(colOutline) { } + + bool bEnable = false; + float flThickness = 1.f; + + float flRounding = 0.f; + + Color_t colPrimary = Color_t(255, 255, 255); + Color_t colOutline = Color_t(0, 0, 0); +}; + +/// hold config variables for bar component overlay +struct BarOverlayVar_t +{ + constexpr BarOverlayVar_t(const bool bEnable, const bool bGradient = false, const bool bUseFactorColor = false, const float flThickness = 1.f, const Color_t& colPrimary = Color_t(255, 255, 255), const Color_t& colSecondary = Color_t(255, 255, 255), const Color_t& colBackground = Color_t(), const Color_t& colOutline = Color_t(), const bool background = true, const bool outline = true) : + bEnable(bEnable), bGradient(bGradient), bUseFactorColor(bUseFactorColor), flThickness(flThickness), colPrimary(colPrimary), colSecondary(colSecondary), colBackground(colBackground), colOutline(colOutline), bBackground(background), bOutline(outline) { } + + bool bEnable = false; + bool bGradient = false; + bool bShowValue = false; + bool bOutline = false; + bool bGlowShadow = false; + bool bBackground = false; + bool bUseFactorColor = false; + float flThickness = 1.f; + + Color_t colPrimary = Color_t(255, 255, 255); + Color_t colSecondary = Color_t(255, 255, 255); + Color_t colShadow = Color_t(56, 255, 125); + + Color_t colBackground = Color_t{15, 15, 15, 55}; + Color_t colOutline = Color_t{ 0, 0, 0, 55 }; +}; + +#pragma endregion + +/* + * CONFIGURATION + * - cheat variables serialization/de-serialization manager + */ +namespace C +{ + // member of user-defined custom serialization structure + struct UserDataMember_t + { + // @todo: not sure is it possible and how todo this with projections, so currently done with pointer-to-member thing, probably could be optimized + template + constexpr UserDataMember_t(const FNV1A_t uNameHash, const FNV1A_t uTypeHash, const T C::*pMember) : + uNameHash(uNameHash), uTypeHash(uTypeHash), nDataSize(sizeof(std::remove_pointer_t)), uBaseOffset(reinterpret_cast(std::addressof(static_cast(nullptr)->*pMember))) { } // @test: 'CS_OFFSETOF' must expand to the same result but for some reason it doesn't + + // hash of custom variable name + FNV1A_t uNameHash = 0U; + // hash of custom variable type + FNV1A_t uTypeHash = 0U; + // data size of custom variable type + std::size_t nDataSize = 0U; + // offset to the custom variable from the base of class + std::size_t uBaseOffset = 0U; + }; + + // user-defined custom serialization structure + struct UserDataType_t + { + [[nodiscard]] std::size_t GetSerializationSize() const; + + FNV1A_t uTypeHash = 0U; + std::vector vecMembers = {}; + }; + + // variable info and value storage holder + struct VariableObject_t + { + // @test: it's required value to be either trivially copyable or allocated/copied by new/placement-new operators, otherwise it may cause UB + template requires (!std::is_void_v && std::is_trivially_copyable_v) + VariableObject_t(const FNV1A_t uNameHash, const FNV1A_t uTypeHash, const T& valueDefault) : + uNameHash(uNameHash), uTypeHash(uTypeHash), nStorageSize(sizeof(T)) + { +#ifndef CS_NO_RTTI + // store RTTI address if available + this->pTypeInfo = &typeid(std::remove_cvref_t); +#endif + + // @todo: do not call setstorage, instead construct it by placement-new operator + // allocate storage on the heap if it doesnt't fit on the local one + if constexpr (sizeof(T) > sizeof(this->storage.uLocal)) + this->storage.pHeap = MEM::HeapAlloc(this->nStorageSize); + + SetStorage(&valueDefault); + } + + VariableObject_t(VariableObject_t&& other) noexcept : + uNameHash(other.uNameHash), uTypeHash(other.uTypeHash), nStorageSize(other.nStorageSize) + { +#ifndef CS_NO_RTTI + this->pTypeInfo = other.pTypeInfo; +#endif + + if (this->nStorageSize <= sizeof(this->storage.uLocal)) + CRT::MemoryCopy(&this->storage.uLocal, &other.storage.uLocal, sizeof(this->storage.uLocal)); + else + { + this->storage.pHeap = other.storage.pHeap; + + // prevent it from being freed when the moved object is destroyed + other.storage.pHeap = nullptr; + } + } + + VariableObject_t(const VariableObject_t& other) : + uNameHash(other.uNameHash), uTypeHash(other.uTypeHash), nStorageSize(other.nStorageSize) + { +#ifndef CS_NO_RTTI + this->pTypeInfo = other.pTypeInfo; +#endif + + if (this->nStorageSize <= sizeof(this->storage.uLocal)) + CRT::MemoryCopy(&this->storage.uLocal, &other.storage.uLocal, sizeof(this->storage.uLocal)); + else if (other.storage.pHeap != nullptr) + { + this->storage.pHeap = MEM::HeapAlloc(this->nStorageSize); + CRT::MemoryCopy(this->storage.pHeap, other.storage.pHeap, this->nStorageSize); + } + } + + ~VariableObject_t() + { + // check if heap memory is in use and allocated + if (this->nStorageSize > sizeof(this->storage.uLocal) && this->storage.pHeap != nullptr) + MEM::HeapFree(this->storage.pHeap); + } + + VariableObject_t& operator=(VariableObject_t&& other) noexcept + { + // check if heap memory is in use and allocated + if (this->nStorageSize > sizeof(this->storage.uLocal) && this->storage.pHeap != nullptr) + MEM::HeapFree(this->storage.pHeap); + + this->uNameHash = other.uNameHash; + this->uTypeHash = other.uTypeHash; + this->nStorageSize = other.nStorageSize; + +#ifndef CS_NO_RTTI + this->pTypeInfo = other.pTypeInfo; +#endif + + if (this->nStorageSize <= sizeof(this->storage.uLocal)) + CRT::MemoryCopy(&this->storage.uLocal, &other.storage.uLocal, sizeof(this->storage.uLocal)); + else + { + this->storage.pHeap = other.storage.pHeap; + + // prevent it from being freed when the moved object is destroyed + other.storage.pHeap = nullptr; + } + + return *this; + } + + VariableObject_t& operator=(const VariableObject_t& other) + { + // check if heap memory is in use and allocated + if (this->nStorageSize > sizeof(this->storage.uLocal) && this->storage.pHeap != nullptr) + MEM::HeapFree(this->storage.pHeap); + + this->uNameHash = other.uNameHash; + this->uTypeHash = other.uTypeHash; + this->nStorageSize = other.nStorageSize; + +#ifndef CS_NO_RTTI + this->pTypeInfo = other.pTypeInfo; +#endif + + if (this->nStorageSize <= sizeof(this->storage.uLocal)) + CRT::MemoryCopy(&this->storage.uLocal, &other.storage.uLocal, sizeof(this->storage.uLocal)); + else if (other.storage.pHeap != nullptr) + { + this->storage.pHeap = MEM::HeapAlloc(this->nStorageSize); + CRT::MemoryCopy(this->storage.pHeap, other.storage.pHeap, this->nStorageSize); + } + + return *this; + } + + /// @tparam bTypeSafe if true, activates additional comparison of source and requested type information, requires RTTI + /// @returns: pointer to the value storage, null if @a'bTypeSafe' is active and the access type does not match the variable type + template requires (std::is_object_v) + [[nodiscard]] const T* GetStorage() const + { + /* +#ifndef CS_NO_RTTI + // sanity check of stored value type and asked value type + if constexpr (bTypeSafe) + { + if (const std::type_info& currentTypeInfo = typeid(std::remove_cvref_t); this->pTypeInfo != nullptr && CRT::StringCompare(this->pTypeInfo->raw_name(), currentTypeInfo.raw_name()) != 0) + { + if (char szPresentTypeName[64] = {}, szAccessTypeName[64] = {}; + MEM::fnUnDecorateSymbolName(this->pTypeInfo->raw_name() + 1U, szPresentTypeName, CS_ARRAYSIZE(szPresentTypeName), UNDNAME_NO_ARGUMENTS) != 0UL && + MEM::fnUnDecorateSymbolName(currentTypeInfo.raw_name() + 1U, szAccessTypeName, CS_ARRAYSIZE(szAccessTypeName), UNDNAME_NO_ARGUMENTS) != 0UL) + { + L_PRINT(LOG_ERROR) << CS_XOR("accessing variable of type: \"") << szPresentTypeName << CS_XOR("\" with wrong type: \"") << szAccessTypeName << CS_XOR("\""); + } + + CS_ASSERT(false); // storage value and asked data type mismatch + return nullptr; + } + } +#endif*/ + + // check is value stored in the local storage + if (this->nStorageSize <= sizeof(this->storage.uLocal)) + return reinterpret_cast*>(&this->storage.uLocal); + + // otherwise it is allocated in the heap memory + CS_ASSERT(this->storage.pHeap != nullptr); // tried to access non allocated storage + return static_cast*>(this->storage.pHeap); + } + + template requires (std::is_object_v) + [[nodiscard]] T* GetStorage() + { + return const_cast(static_cast(this)->GetStorage()); + } + + // replace variable contained value + void SetStorage(const void* pValue); + /// @returns: the size of the data to be serialized/de-serialized into/from the configuration file + [[nodiscard]] std::size_t GetSerializationSize() const; + + // hash of variable name + FNV1A_t uNameHash = 0x0; + // hash of value type + FNV1A_t uTypeHash = 0x0; +#ifndef CS_NO_RTTI + // address of RTTI type data for value type + const std::type_info* pTypeInfo = nullptr; +#endif + // value storage size in bytes + std::size_t nStorageSize = 0U; + + // value storage + union + { + void* pHeap; + std::uint8_t uLocal[sizeof(std::uintptr_t)]; // @test: expand local storage size to fit max possible size of trivial type so we can minimize heap allocations count + } storage = { nullptr }; + }; + + // create directories and default configuration file + bool Setup(const wchar_t* wszDefaultFileName); + + /* @section: main */ + // loop through directory content and store all user configurations filenames + void Refresh(); + /// register user-defined data structure type and it's member variables + /// @param[in] vecUserMembers member variables of structure that needs to be serialized/de-serialized + void AddUserType(const FNV1A_t uTypeHash, std::initializer_list vecUserMembers); + /// write/re-write single variable to existing configuration file + /// @returns: true if variable has been found or created and successfully written, false otherwise + bool SaveFileVariable(const std::size_t nFileIndex, const VariableObject_t& variable); + /// read single variable from existing configuration file + /// @remarks: when the version of cheat is greater than version of the configuration file and @a'variable' wasn't found, this function saves it and updates the version to the current one, note that it doesn't affect to return value + /// @returns: true if variable has been found and successfully read, false otherwise + bool LoadFileVariable(const std::size_t nFileIndex, VariableObject_t& variable); + /// erase single variable from existing configuration file + /// @returns: true if variable did not exist or was successfully removed, false otherwise + bool RemoveFileVariable(const std::size_t nFileIndex, const VariableObject_t& variable); + /// create a new configuration file and save it + /// @param[in] wszFileName file name of configuration file to save and write in + /// @returns: true if file has been successfully created and all variables were written to it, false otherwise + bool CreateFile(const wchar_t* wszFileName); + /// serialize variables into the configuration file + /// @param[in] nFileIndex index of the exist configuration file name + /// @returns: true if all variables were successfully written to the file, false otherwise + bool SaveFile(const std::size_t nFileIndex); + /// de-serialize variables from the configuration file + /// @param[in] nFileIndex index of the exist configuration file name + /// @returns: true if all variables were successfully loaded from the file, false otherwise + bool LoadFile(const std::size_t nFileIndex); + /// remove configuration file + /// @param[in] nFileIndex index of the exist configuration file name + void RemoveFile(const std::size_t nFileIndex); + + /* @section: values */ + // all user configuration filenames + inline std::vector vecFileNames = {}; + // custom user-defined serialization data types + inline std::vector vecUserTypes = {}; + // configuration variables storage + inline std::vector vecVariables = {}; + + /* @section: get */ + /// @returns: index of variable with given name hash if it exist, 'C_INVALID_VARIABLE' otherwise + [[nodiscard]] std::size_t GetVariableIndex(const FNV1A_t uNameHash); + + /// @tparam T type of variable we're going to get, must be exactly the same as when registered + /// @returns: variable value at given index + template + [[nodiscard]] T& Get(const std::size_t nIndex) + { + return *vecVariables[nIndex].GetStorage(); + } + + // @todo: get rid of templates, so it doesn't compile duplicates and we're able to merge things to .cpp + /// add new configuration variable + /// @returns: index of added variable + template requires (!std::is_array_v) + std::size_t AddVariable(const FNV1A_t uNameHash, const FNV1A_t uTypeHash, const T& valueDefault) + { + vecVariables.emplace_back(uNameHash, uTypeHash, valueDefault); + return vecVariables.size() - 1U; + } + template + bool Set(const std::size_t nIndex, const T& value) + { + if (nIndex < vecVariables.size()) + { + vecVariables[nIndex].SetStorage(&value); + return true; + } + + return false; + } + /// add new configuration array variable initialized by single value + /// @returns: index of added array variable + template requires (std::is_array_v) + std::size_t AddVariableArray(const FNV1A_t uNameHash, const FNV1A_t uTypeHash, const std::remove_pointer_t> valueDefault) + { + using BaseType_t = std::remove_pointer_t>; + + T arrValueDefault; + for (std::size_t i = 0U; i < sizeof(T) / sizeof(BaseType_t); i++) + arrValueDefault[i] = valueDefault; + + vecVariables.emplace_back(uNameHash, uTypeHash, arrValueDefault); + return vecVariables.size() - 1U; + } + + /// add new configuration array variable with multiple values initialized + /// @returns: index of added array variable + template requires (std::is_array_v) + std::size_t AddVariableArray(const FNV1A_t uNameHash, const FNV1A_t uTypeHash, std::initializer_list>> vecValuesDefault) + { + using BaseType_t = std::remove_pointer_t>; + + T arrValueDefault; + CRT::MemorySet(arrValueDefault, 0U, sizeof(T)); + CRT::MemoryCopy(arrValueDefault, vecValuesDefault.begin(), vecValuesDefault.size() * sizeof(BaseType_t)); + + vecVariables.emplace_back(uNameHash, uTypeHash, arrValueDefault); + return vecVariables.size() - 1U; + } + + inline void RemoveVariable(const std::size_t nIndex) + { + vecVariables.erase(vecVariables.begin() + nIndex); + } +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/convars.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/convars.cpp new file mode 100644 index 0000000..44f0f8f --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/convars.cpp @@ -0,0 +1,193 @@ +// used: [stl] vector +#include +// used: [stl] find_if +#include + +#include "convars.h" + +// used: convar interface +#include "interfaces.h" +#include "../sdk/interfaces/ienginecvar.h" +// used: l_print +#include "../utilities/log.h" + +// used: getworkingpath +#include "../core.h" + +inline static void WriteConVarType(HANDLE hFile, const uint32_t nType) +{ + switch ((EConVarType)nType) + { + case EConVarType_Bool: + ::WriteFile(hFile, CS_XOR("[bool] "), CRT::StringLength(CS_XOR("[bool] ")), nullptr, nullptr); + break; + case EConVarType_Int16: + ::WriteFile(hFile, CS_XOR("[int16] "), CRT::StringLength(CS_XOR("[int16] ")), nullptr, nullptr); + break; + case EConVarType_UInt16: + ::WriteFile(hFile, CS_XOR("[uint16] "), CRT::StringLength(CS_XOR("[uint16] ")), nullptr, nullptr); + break; + case EConVarType_Int32: + ::WriteFile(hFile, CS_XOR("[int32] "), CRT::StringLength(CS_XOR("[int32] ")), nullptr, nullptr); + break; + case EConVarType_UInt32: + ::WriteFile(hFile, CS_XOR("[uint32] "), CRT::StringLength(CS_XOR("[uint32] ")), nullptr, nullptr); + break; + case EConVarType_Int64: + ::WriteFile(hFile, CS_XOR("[int64] "), CRT::StringLength(CS_XOR("[int64] ")), nullptr, nullptr); + break; + case EConVarType_UInt64: + ::WriteFile(hFile, CS_XOR("[uint64] "), CRT::StringLength(CS_XOR("[uint64] ")), nullptr, nullptr); + break; + case EConVarType_Float32: + ::WriteFile(hFile, CS_XOR("[float32] "), CRT::StringLength(CS_XOR("[float32] ")), nullptr, nullptr); + break; + case EConVarType_Float64: + ::WriteFile(hFile, CS_XOR("[float64] "), CRT::StringLength(CS_XOR("[float64] ")), nullptr, nullptr); + break; + case EConVarType_String: + ::WriteFile(hFile, CS_XOR("[string] "), CRT::StringLength(CS_XOR("[string] ")), nullptr, nullptr); + break; + case EConVarType_Color: + ::WriteFile(hFile, CS_XOR("[color] "), CRT::StringLength(CS_XOR("[color] ")), nullptr, nullptr); + break; + case EConVarType_Vector2: + ::WriteFile(hFile, CS_XOR("[vector2] "), CRT::StringLength(CS_XOR("[vector2] ")), nullptr, nullptr); + break; + case EConVarType_Vector3: + ::WriteFile(hFile, CS_XOR("[vector3] "), CRT::StringLength(CS_XOR("[vector3] ")), nullptr, nullptr); + break; + case EConVarType_Vector4: + ::WriteFile(hFile, CS_XOR("[vector4] "), CRT::StringLength(CS_XOR("[vector4] ")), nullptr, nullptr); + break; + case EConVarType_Qangle: + ::WriteFile(hFile, CS_XOR("[qangle] "), CRT::StringLength(CS_XOR("[qangle] ")), nullptr, nullptr); + break; + default: + ::WriteFile(hFile, CS_XOR("[unknown-type] "), CRT::StringLength(CS_XOR("[unknown-type] ")), nullptr, nullptr); + break; + } +} + +inline static void WriteConVarFlags(HANDLE hFile, const uint32_t nFlags) +{ + if (nFlags & FCVAR_CLIENTDLL) + ::WriteFile(hFile, CS_XOR("[client.dll] "), CRT::StringLength(CS_XOR("[client.dll] ")), nullptr, nullptr); + else if (nFlags & FCVAR_GAMEDLL) + ::WriteFile(hFile, CS_XOR("[games's dll] "), CRT::StringLength(CS_XOR("[games's dll] ")), nullptr, nullptr); + + if (nFlags & FCVAR_PROTECTED) + ::WriteFile(hFile, CS_XOR("[protected] "), CRT::StringLength(CS_XOR("[protected] ")), nullptr, nullptr); + + if (nFlags & FCVAR_CHEAT) + ::WriteFile(hFile, CS_XOR("[cheat] "), CRT::StringLength(CS_XOR("[cheat] ")), nullptr, nullptr); + + if (nFlags & FCVAR_HIDDEN) + ::WriteFile(hFile, CS_XOR("[hidden] "), CRT::StringLength(CS_XOR("[hidden] ")), nullptr, nullptr); + + if (nFlags & FCVAR_DEVELOPMENTONLY) + ::WriteFile(hFile, CS_XOR("[devonly] "), CRT::StringLength(CS_XOR("[devonly] ")), nullptr, nullptr); + + ::WriteFile(hFile, CS_XOR("\n"), CRT::StringLength(CS_XOR("\n")), nullptr, nullptr); +} + +bool CONVAR::Dump(const wchar_t* wszFileName) +{ + wchar_t wszDumpFilePath[MAX_PATH]; + if (!CORE::GetWorkingPath(wszDumpFilePath)) + return false; + + CRT::StringCat(wszDumpFilePath, wszFileName); + + HANDLE hOutFile = ::CreateFileW(wszDumpFilePath, GENERIC_WRITE, FILE_SHARE_READ, nullptr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, nullptr); + if (hOutFile == INVALID_HANDLE_VALUE) + return false; + + // @todo: maybe remove this redundant? and put it inside CRT::String_t c'tor + const std::time_t time = std::time(nullptr); + std::tm timePoint; + localtime_s(&timePoint, &time); + + CRT::String_t<64> szTimeBuffer(CS_XOR("[%d-%m-%Y %T] asphyxia | convars dump\n\n"), &timePoint); + + // write current date, time and info + ::WriteFile(hOutFile, szTimeBuffer.Data(), szTimeBuffer.Length(), nullptr, nullptr); + + for (int i = I::Cvar->listConvars.Head(); i != I::Cvar->listConvars.InvalidIndex(); i = I::Cvar->listConvars.Next(i)) + { + CConVar* pConVar = I::Cvar->listConvars.Element(i); + if (pConVar != nullptr) + { + // dump to file + WriteConVarType(hOutFile, pConVar->nType); + + CRT::String_t<526> szBuffer(CS_XOR("%s : \"%s\" "), pConVar->szName, pConVar->szDescription[0] == '\0' ? CS_XOR("no description") : pConVar->szDescription); + ::WriteFile(hOutFile, szBuffer.Data(), szBuffer.Length(), nullptr, nullptr); + + // write flags + WriteConVarFlags(hOutFile, pConVar->nFlags); + } + } + + ::CloseHandle(hOutFile); + + return true; +} + +bool CONVAR::Setup() +{ + bool bSuccess = true; + + m_pitch = I::Cvar->Find(FNV1A::HashConst("m_pitch")); + bSuccess &= m_pitch != nullptr; + + m_yaw = I::Cvar->Find(FNV1A::HashConst("m_yaw")); + bSuccess &= m_yaw != nullptr; + + sensitivity = I::Cvar->Find(FNV1A::HashConst("sensitivity")); + bSuccess &= sensitivity != nullptr; + + game_type = I::Cvar->Find(FNV1A::HashConst("game_type")); + bSuccess &= game_type != nullptr; + + game_mode = I::Cvar->Find(FNV1A::HashConst("game_mode")); + bSuccess &= game_mode != nullptr; + + mp_teammates_are_enemies = I::Cvar->Find(FNV1A::HashConst("mp_teammates_are_enemies")); + bSuccess &= mp_teammates_are_enemies != nullptr; + + sv_autobunnyhopping = I::Cvar->Find(FNV1A::HashConst("sv_autobunnyhopping")); + bSuccess &= sv_autobunnyhopping != nullptr; + + cam_idealdist = I::Cvar->Find(FNV1A::HashConst("cam_idealdist")); // flaot + bSuccess &= cam_idealdist != nullptr; + + cam_collision = I::Cvar->Find(FNV1A::HashConst("cam_collision")); // flaot + bSuccess &= cam_collision != nullptr; + + cam_snapto = I::Cvar->Find(FNV1A::HashConst("cam_snapto")); // flaot + bSuccess &= cam_snapto != nullptr; + + c_thirdpersonshoulder = I::Cvar->Find(FNV1A::HashConst("c_thirdpersonshoulder")); // flaot + bSuccess &= c_thirdpersonshoulder != nullptr; + + c_thirdpersonshoulderaimdist = I::Cvar->Find(FNV1A::HashConst("c_thirdpersonshoulderaimdist")); // flaot + bSuccess &= c_thirdpersonshoulderaimdist != nullptr; + + c_thirdpersonshoulderdist = I::Cvar->Find(FNV1A::HashConst("c_thirdpersonshoulderdist")); // flaot + bSuccess &= c_thirdpersonshoulderdist != nullptr; + + c_thirdpersonshoulderheight = I::Cvar->Find(FNV1A::HashConst("c_thirdpersonshoulderheight")); // flaot + bSuccess &= c_thirdpersonshoulderheight != nullptr; + + c_thirdpersonshoulderoffset = I::Cvar->Find(FNV1A::HashConst("c_thirdpersonshoulderoffset")); // flaot + bSuccess &= c_thirdpersonshoulderoffset != nullptr; + + cl_interpolate = I::Cvar->Find(FNV1A::HashConst("cl_interpolate")); // flaot + bSuccess &= cl_interpolate != nullptr; + + cl_interp_ratio = I::Cvar->Find(FNV1A::HashConst("cl_interp_ratio")); // flaot + bSuccess &= cl_interp_ratio != nullptr; + + return bSuccess; +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/convars.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/convars.h new file mode 100644 index 0000000..747539c --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/convars.h @@ -0,0 +1,42 @@ +#pragma once + +class CConVar; + +namespace CONVAR +{ + // dump convars to file + bool Dump(const wchar_t* wszFileName); + // setup convars + bool Setup(); + + inline CConVar* m_pitch = nullptr; + inline CConVar* m_yaw = nullptr; + inline CConVar* sensitivity = nullptr; + + inline CConVar* game_type = nullptr; + inline CConVar* game_mode = nullptr; + + inline CConVar* mp_teammates_are_enemies = nullptr; + + inline CConVar* sv_autobunnyhopping = nullptr; + + inline CConVar* cam_idealdist = nullptr; + + inline CConVar* cam_collision = nullptr; + + inline CConVar* cam_snapto = nullptr; + + inline CConVar* c_thirdpersonshoulder = nullptr; + + inline CConVar* c_thirdpersonshoulderaimdist = nullptr; + + inline CConVar* c_thirdpersonshoulderdist = nullptr; + + inline CConVar* c_thirdpersonshoulderheight = nullptr; + + inline CConVar* c_thirdpersonshoulderoffset = nullptr; + + inline CConVar* cl_interpolate = nullptr; + + inline CConVar* cl_interp_ratio = nullptr; +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/csig/sigscan.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/csig/sigscan.cpp new file mode 100644 index 0000000..7818fbb --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/csig/sigscan.cpp @@ -0,0 +1,57 @@ + +#include "sigscan.hpp" +#include "../../utilities/log.h" +#include "../memory/memadd.h" +CSigScan::CSigScan(const char* name, const char* libraryName, const std::initializer_list& data) { +#ifdef SDK_ENABLE_LOGGING + m_Name = name; +#else + m_Name = ""; +#endif + + m_LibraryName = libraryName; + + m_Data.reserve(data.size()); + m_Data.insert(m_Data.end(), data.begin(), data.end()); + + CSigScanManager::Get().ScheduleScan(this); +} + +void CSigScan::FindSignature() { + auto& library = CMemory::GetModule(m_LibraryName); + if (!library) { + L_PRINT(LOG_WARNING) << CS_XOR("\"signature\" Couldn't find {} because {} was not loaded."); + } + + for (size_t i = 0; i < m_Data.size(); ++i) { + // Faster than m_Data[] in debug builds because of _STL_VERIFY. + const auto& data = m_Data.data()[i]; + + m_Value = library->FindPattern(data.m_Signature); + if (m_Value.IsValid()) { + if (data.m_Procedure) { + data.m_Procedure(m_Value); + } + + L_PRINT(LOG_INFO) << CS_XOR("\"signature\" Couldn't find " << m_Name << " because{} " << m_Value.Get() << "was not loaded " << i << " | index."); + } + } + + L_PRINT(LOG_ERROR) << CS_XOR("\"signature\" Couldn't find "); + +} + +void CSigScanManager::ScheduleScan(CSigScan* sigScan) { m_ScheduledScans.emplace_back(sigScan); } + +void CSigScanManager::ProcessScans() { + for (size_t i = 0; i < m_ScheduledScans.size(); ++i) { + // Faster than m_ScheduledScans[] in debug builds because of _STL_VERIFY. + const auto& scheduledScan = m_ScheduledScans.data()[i]; + + scheduledScan->FindSignature(); + scheduledScan->FreeData(); + } + + // No need to keep the scans in memory if we're done with them. + std::vector().swap(m_ScheduledScans); +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/csig/sigscan.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/csig/sigscan.hpp new file mode 100644 index 0000000..8023d32 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/csig/sigscan.hpp @@ -0,0 +1,52 @@ +#pragma once + +#include "../pointer/pointer.hpp" +#include +#include + +class CSigScan { + public: + using ProcedureFn = std::function; + + struct SigData_t { + std::span m_Signature; + ProcedureFn m_Procedure; + }; + + CSigScan(const char* name, const char* libraryName, const std::initializer_list& data); + + void FindSignature(); + auto FreeData() { std::vector().swap(m_Data); } + + auto GetPtr() const { return m_Value; } + + template + auto GetPtrAs() const { + return m_Value.Get(); + } + + CSigScan(const CSigScan&) = delete; + CSigScan& operator=(const CSigScan&) = delete; + + private: + const char* m_Name; + const char* m_LibraryName; + + std::vector m_Data; + + CPointer m_Value; +}; + +class CSigScanManager { + public: + static CSigScanManager& Get() { + static CSigScanManager inst; + return inst; + } + + void ScheduleScan(CSigScan* sigScan); + void ProcessScans(); + + private: + std::vector m_ScheduledScans; +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/fnv1a.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/fnv1a.hpp new file mode 100644 index 0000000..1d0b1b9 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/fnv1a.hpp @@ -0,0 +1,5 @@ +#pragma once + +namespace fnv1a { + constexpr uint32_t Hash(const char* str) noexcept { return (*str ? (Hash(str + 1) ^ *str) * 0x01000193 : 0x811c9dc5); } +} // namespace fnv1a diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/gui.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/gui.cpp new file mode 100644 index 0000000..e69de29 diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/gui.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/gui.hpp new file mode 100644 index 0000000..e69de29 diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/hooks.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/hooks.cpp new file mode 100644 index 0000000..338d4df --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/hooks.cpp @@ -0,0 +1,693 @@ +#include "hooks.h" + +// used: variables +#include "variables.h" + +// used: game's sdk +#include "../sdk/interfaces/iswapchaindx11.h" +#include "../sdk/interfaces/iviewrender.h" +#include "../sdk/interfaces/cgameentitysystem.h" +#include "../sdk/interfaces/ccsgoinput.h" +#include "../sdk/interfaces/iinputsystem.h" +#include "../sdk/interfaces/iengineclient.h" +#include "../sdk/interfaces/inetworkclientservice.h" +#include "../sdk/interfaces/iglobalvars.h" +#include "../sdk/interfaces/imaterialsystem.h" +#include "../core/memory/cmodule.hpp" +#include "../features/visuals/overlay.h" +#include "../features/visuals/overlay.h" +#include "../features/legit/legit.h" +#include "../features/lagcomp/lagcomp.h" +#include "../features/skins/ccsinventorymanager.hpp" +#include "../cstrike/features/skins/skin_changer.hpp" +#include "../cstrike/features/antiaim/antiaim.hpp" + +// used: viewsetup +#include "../sdk/datatypes/viewsetup.h" + +// used: entity +#include "../sdk/entity.h" + +// used: get virtual function, find pattern, ... +#include "../utilities/memory.h" +// used: inputsystem +#include "../utilities/inputsystem.h" +// used: draw +#include "../utilities/draw.h" + +// used: features callbacks +#include "../features.h" + +// used: game's interfaces +#include "interfaces.h" +#include "sdk.h" + +// used: menu +#include "menu.h" +#define STB_OMIT_TESTS +#include "stb.hh" +#include "../sdk/interfaces/events.h" +#include "../cstrike/features/legit/legit.h" +#include "spoofcall/invoker.h" +#include "convars.h" +#include "../sdk/interfaces/ienginecvar.h" +#include "../cstrike/features/rage/rage.h" +#include "spoofcall/virtualization/VirtualizerSDK64.h" +#include +#include +#define SDK_SIG(sig) stb::simple_conversion::build::value +IDXGIDevice* pDXGIDevice = NULL; +IDXGIAdapter* pDXGIAdapter = NULL; +IDXGIFactory* pIDXGIFactory = NULL; +#define MEMORY_VARIABLE(var) var, "H::" #var + +namespace sigs { + + CSigScan GetHitboxSet("C_BaseEntity::GetHitboxSet", "client.dll", + { + {SDK_SIG("E8 ? ? ? ? 48 85 C0 0F 85 ? ? ? ? 44 8D 48 07"), [](CPointer& ptr) { ptr.Absolute(1, 0); }}, + {SDK_SIG("41 8B D6 E8 ? ? ? ? 4C 8B F8"), [](CPointer& ptr) { ptr.Absolute(4, 0); }}, + }); + CSigScan GetBoneName("CModel::GetBoneName", "client.dll", + { + {SDK_SIG("48 8B CE E8 ? ? ? ? 48 8B 0F"), [](CPointer& ptr) { ptr.Offset(0x4); }}, + }); + CSigScan HitboxToWorldTransforms("C_BaseEntity::HitboxToWorldTransforms", "client.dll", + { + {SDK_SIG("E8 ? ? ? ? 4C 8B A3"), [](CPointer& ptr) { ptr.Absolute(1, 0); }}, + }); + + + CSigScan ComputeHitboxSurroundingBox("C_BaseEntity::ComputeHitboxSurroundingBox", "client.dll", + { + {SDK_SIG("E9 ? ? ? ? F6 43 5B FD"), [](CPointer& ptr) { ptr.Absolute(1, 0); }}, + }); +} +#define CS2_SDK_SIGs(sig) \ + stb::simple_conversion::build::value +#define COMPUTE_HITBOX_SURROUNDING_BOX CS2_SDK_SIGs("E9 ? ? ? ? F6 43 5B FD") + +bool H::Setup() +{ + VIRTUALIZER_MUTATE_ONLY_START; + if (MH_Initialize() != MH_OK) + { + L_PRINT(LOG_ERROR) << CS_XOR("failed to initialize minhook"); + + return false; + } + L_PRINT(LOG_INFO) << CS_XOR("Initializing ShadowVMT & SilentInlineHoooking"); + + SilenthkPresent.Setup(I::SwapChain->pDXGISwapChain); + SilenthkPresent.HookIndex((int)VTABLE::D3D::PRESENT, Present); + SilenthkPresent.HookIndex((int)VTABLE::D3D::RESIZEBUFFERS, ResizeBuffers); + + I::Device->QueryInterface(IID_PPV_ARGS(&pDXGIDevice)); + pDXGIDevice->GetAdapter(&pDXGIAdapter); + pDXGIAdapter->GetParent(IID_PPV_ARGS(&pIDXGIFactory)); + + Silentdxgi.Setup(pIDXGIFactory); + Silentdxgi.HookIndex((int)VTABLE::DXGI::CREATESWAPCHAIN, CreateSwapChain); + + + if (pDXGIDevice) { + pDXGIDevice->Release(); + pDXGIDevice = nullptr; + } + + if (pDXGIAdapter) { + pDXGIAdapter->Release(); + pDXGIAdapter = nullptr; + } + + if (pIDXGIFactory) { + pIDXGIFactory->Release(); + pIDXGIFactory = nullptr; + } + + // fnGetClientSystem = reinterpret_cast(MEM::ResolveRelativeAddress(MEM::FindPattern(CLIENT_DLL, CS_XOR("E8 ? ? ? ? 48 8B 4F 10 8B 1D ? ? ? ?")), 0x1, 0x0)); + // L_PRINT(LOG_INFO) << CS_XOR("captured fnGetClientSystem \"") << CS_XOR("\" interface at address: ") << L::AddFlags(LOG_MODE_INT_SHOWBASE | LOG_MODE_INT_FORMAT_HEX) << reinterpret_cast(fnGetClientSystem); + + MEM::FindPatterns(CLIENT_DLL, CS_XOR("E8 ? ? ? ? 48 8B 4F 10 8B 1D ? ? ? ?")).ToAbsolute(1, 0).Get(MEMORY_VARIABLE(fnGetClientSystem)); + MEM::FindPatterns(CLIENT_DLL, CS_XOR("48 83 EC 28 B9 ? ? ? ? E8 ? ? ? ? 48 85 C0 74 3A 48 8D 0D ? ? ? ? C7 40 ? ? ? ? ?")).Get(MEMORY_VARIABLE(fnCreateSharedObjectSubclassEconItem)); + MEM::FindPatterns(CLIENT_DLL, CS_XOR("E9 ? ? ? ? CC CC CC CC CC CC CC CC CC CC CC CC CC CC CC 49 8B C0 48")).ToAbsolute(1, 0).Get(MEMORY_VARIABLE(fnSetDynamicAttributeValueUint)); + MEM::FindPatterns(CLIENT_DLL, CS_XOR("E8 ? ? ? ? 48 63 BB ? ? ? ? 48 8D 68 28 83 FF FF")).ToAbsolute(1, 0).Get(MEMORY_VARIABLE(fnGetInventoryManager)); + MEM::FindPatterns(CLIENT_DLL, CS_XOR("48 89 5C 24 08 48 89 74 24 10 57 48 83 EC 20 48 8D 99 60")).Get(MEMORY_VARIABLE(SetMeshGroupMask)); + MEM::FindPatterns(CLIENT_DLL, CS_XOR("48 89 5C 24 10 48 89 6C 24 18 56 57 41 57 48 83 EC 20 83 79 10 00 49 8B F1 41 8B E8 4C 8B FA 48 8B D9 74 72 44 8B 49 14 48 8B 39 41 FF C9 45 8B D9 45 23 D8 41")).Get(MEMORY_VARIABLE(fnFindMaterialIndex)); + + SilentEntitySystem.Setup(I::GameResourceService->pGameEntitySystem); + SilentEntitySystem.HookIndex(14, OnAddEntity); + SilentEntitySystem.HookIndex(15, OnRemoveEntity); + + SilentInput.Setup(I::Input); + SilentInput.HookIndex((int)VTABLE::CLIENT::MOUSEINPUTENABLED, MouseInputEnabled); + SilentInput.HookIndex((int)VTABLE::CLIENT::CREATEMOVE, CreateMove); + + spoof_call(_fake_addr, &EntCache::CacheCurrentEntities); + + // @ida: class CViewRender->OnRenderStart call GetMatricesForView + CS_ASSERT(hkGetMatrixForView.Create(MEM::FindPattern(CLIENT_DLL, CS_XOR("40 53 48 81 EC ? ? ? ? 49 8B C1")), reinterpret_cast(&GetMatrixForView))); + + CS_ASSERT(hkSetViewModelFOV.Create(MEM::FindPattern(CLIENT_DLL, CS_XOR("40 53 48 83 EC 30 33 C9 E8 ? ? ? ? 48 8B D8 48 85 C0 0F 84 ? ? ? ? 48 8B 00 48 8B CB FF 90 ? ? ? ? 84 C0 0F 84 ? ? ? ? 48 8B CB")), reinterpret_cast(&SetViewModelFOV))); + + + CS_ASSERT(hkFOVObject.Create(MEM::FindPattern(CLIENT_DLL, CS_XOR("40 53 48 81 EC 80 00 00 00 48 8B D9 E8 ?? ?? ?? ?? 48 85")), reinterpret_cast(&GetRenderFov))); + + CS_ASSERT(hkInputParser.Create(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 8B C4 4C 89 48 20 55 56 41 56 48 8D 68 B1 48 81 EC D0 00 00 00")), reinterpret_cast(&InputParser))); + + // client.dll; 40 55 53 41 55 41 57 48 8D AC 24 ?? ?? ?? ?? 48 81 EC ?? ?? ?? ?? 48 8B 02 + CS_ASSERT(hkGameEvents.Create(MEM::FindPattern(CLIENT_DLL, CS_XOR("40 55 53 41 55 41 57 48 8D AC 24 ?? ?? ?? ?? 48 81 EC ?? ?? ?? ?? 48 8B 02")), reinterpret_cast(&HandleGameEvents))); + + // I could just do VTABLE too idx: 15 + //CS_ASSERT(hkPredictionSimulation.Create(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 8B C4 4C 89 40 18 48 89 48 08 55 53 56 57 48")), reinterpret_cast(&PredictionSimulation))); + + // @ida: ClientModeShared -> #STR: "mapname", "transition", "game_newmap" + CS_ASSERT(hkLevelInit.Create(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 89 5C 24 ? 56 48 83 EC ? 48 8B 0D ? ? ? ? 48 8B F2")), reinterpret_cast(&LevelInit))); + + // @ida: ClientModeShared -> #STR: "map_shutdown" + CS_ASSERT(hkLevelShutdown.Create(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 83 EC ? 48 8B 0D ? ? ? ? 48 8D 15 ? ? ? ? 45 33 C9 45 33 C0 48 8B 01 FF 50 ? 48 85 C0 74 ? 48 8B 0D ? ? ? ? 48 8B D0 4C 8B 01 48 83 C4 ? 49 FF 60 ? 48 83 C4 ? C3 CC CC CC 48 83 EC ? 4C 8B D9")), reinterpret_cast(&LevelShutdown))); + + CS_ASSERT(hkDrawObject.Create(MEM::FindPattern(SCENESYSTEM_DLL, CS_XOR("48 8B C4 48 89 50 ? 55 41 56")), reinterpret_cast(&DrawObject))); + + //CS_ASSERT(hkCameraInput.Create(MEM::GetVFunc(I::Input, VTABLE::CLIENT::CAMERA), reinterpret_cast(&CameraInput))); + + //CS_ASSERT(hkSendInputMessage.Create(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 89 5C 24 ? 48 89 74 24 ? 48 89 7C 24 ? 41 56 48 81 EC ? ? ? ? 49 8B D9")), reinterpret_cast(&SendNetInputMessage))); + + CS_ASSERT(hkFrameStageNotify.Create(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 89 5C 24 10 56 48 83 EC 30 8B 05")), reinterpret_cast(&FrameStageNotify))); + + CS_ASSERT(hkSetModel.Create(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 89 5C 24 10 48 89 7C 24 20 55 48 8B EC 48 83 EC 50")), reinterpret_cast(&SetModel))); + + CS_ASSERT(hkEquipItemInLoadout.Create(MEM::GetVFunc(CCSInventoryManager::GetInstance(), 54u), reinterpret_cast(&EquipItemInLoadout))); + + CS_ASSERT(hkOverrideView.Create(MEM::GetVFunc(I::Input, 9u), reinterpret_cast(&OverrideView))); + + CS_ASSERT(hkAllowCameraChange.Create(MEM::GetVFunc(I::Input, 7u), reinterpret_cast(&AllowCameraAngleChange))); + + //CS_ASSERT(hkPreFireEvent.Create(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 89 5C 24 ? 56 57 41 54 48 83 EC 30 48 8B F2")), reinterpret_cast(&FireEventClientSide))); + + F::RAGE::rage->BuildSeed(); + F::LAGCOMP::lagcomp->Initialize(); + + //F::LAGCOMP::lagcomp->Initialize(); + + VIRTUALIZER_MUTATE_ONLY_END; + + return true; +} + + +void H::Destroy() +{ + skin_changer::Shutdown(); + MH_DisableHook(MH_ALL_HOOKS); + MH_RemoveHook(MH_ALL_HOOKS); + + MH_Uninitialize(); + + SilenthkPresent.UnhookAll(); + Silentdxgi.UnhookAll(); + SilentInput.UnhookAll(); + SilentEntitySystem.UnhookAll(); +} +// client.dll; 40 55 53 41 55 41 57 48 8D AC 24 ?? ?? ?? ?? 48 81 EC ?? ?? ?? ?? 48 8B 02 +// xref: "winpanel-basic-round-result-visible" + +using namespace F::RAGE; + +void* CS_FASTCALL H::InputParser(CCSInputMessage* Input, CCSGOInputHistoryEntryPB* InputHistoryEntry, char a3, void* a4, void* a5, void* a6) +{ + auto original = hkInputParser.GetOriginal(); + + auto result = original(Input, InputHistoryEntry, a3, a4, a5, a6); + + if (!SDK::Cmd) + return result; + + if (I::Engine->IsConnected() || I::Engine->IsInGame() && SDK::LocalPawn && SDK::LocalPawn->GetHealth() > 0 ) { + + if (rage->sub_tick_data.command == F::RAGE::impl::command_msg::silent) { + // modify predicted sub tick viewangles to our rage bestpoint forcing silent w predicted cmds + Input->m_view_angles = rage->sub_tick_data.best_point_vec; + Input->m_view_angles.clamp(); + + InputHistoryEntry->m_pViewCmd->m_angValue = rage->sub_tick_data.best_point; + InputHistoryEntry->m_pViewCmd->m_angValue.Clamp(); + rage->sub_tick_data.response = impl::response_msg::validated_view_angles; + + } + else + rage->sub_tick_data.response = impl::response_msg::empty; + + if (F::RAGE::rage->rage_data.rapid_fire) { + if (rage->sub_tick_data.command == impl::command_msg::rapid_fire) { + // override angles just to prevent + Input->m_view_angles = rage->sub_tick_data.best_point_vec; + Input->m_view_angles.clamp(); + InputHistoryEntry->m_pViewCmd->m_angValue = rage->sub_tick_data.best_point; + InputHistoryEntry->m_pViewCmd->m_angValue.Clamp(); + + // override tickcount + InputHistoryEntry->m_nPlayerTickCount = 0; + Input->m_player_tick_count = 0; + + // perform shooting + SDK::Cmd->m_nButtons.m_nValue |= IN_ATTACK; + } + else + SDK::Cmd->m_nButtons.m_nValue &= ~IN_ATTACK; + } + + if (rage->sub_tick_data.command == impl::command_msg::teleport) { + // overflow viewangles + // send new msg to sv + // maybe change our shoot pos? idk + } + } + + + return result; +} +//40 53 48 83 EC 20 48 8B D9 E8 ?? ?? ?? ?? 48 C7 83 D0 +void CS_FASTCALL H::CameraInput(void* Input, int a1) { + //auto horiginal = hkCameraInput.GetOriginal(); + + //if (!I::Engine->IsConnected() || !I::Engine->IsInGame() || !SDK::LocalPawn || !cheat->alive) + // return horiginal(Input, a1); + + //auto backup = *(Vector_t*)((uintptr_t)Input + 0x5390); + //// store old camera angles + + //// call original + //horiginal(Input, a1); + + //*(Vector_t*)((uintptr_t)Input + 0x5390) = backup; +} + +float CS_FASTCALL H::GetRenderFov(uintptr_t rcx) +{ + const auto oFOV = hkFOVObject.GetOriginal(); + + if (!I::Engine->IsConnected() || !I::Engine->IsInGame()) + { + oFOV(rcx); + } + else if (!SDK::LocalController || !SDK::LocalController->IsPawnAlive()) // Checking if your spectating and alive + { + oFOV(rcx); + } + else + { + auto localPlayerController = SDK::LocalController; + auto localPlayerPawn = I::GameResourceService->pGameEntitySystem->Get(localPlayerController->GetPawnHandle()); + + if (C_GET(bool, Vars.bFOV) && !localPlayerPawn->IsScoped()) + { + return C_GET(float, Vars.fFOVAmount); + } + else + { + oFOV(rcx); + } + } +} + +float CS_FASTCALL H::SetViewModelFOV() +{ + const auto oSetViewModelFOV = hkSetViewModelFOV.GetOriginal(); + + if (C_GET(float, Vars.flSetViewModelFOV) == 0.f) + return oSetViewModelFOV(); + + return C_GET(float, Vars.flSetViewModelFOV); +} +// client.dll; 40 55 53 41 55 41 57 48 8D AC 24 ?? ?? ?? ?? 48 81 EC ?? ?? ?? ?? 48 8B 02 +// xref: "winpanel-basic-round-result-visible" +void CS_FASTCALL H::HandleGameEvents(void* rcx, IGameEvent* const ev) +{ + const auto original = hkGameEvents.GetOriginal(); + if (!I::Engine->IsConnected() || !I::Engine->IsInGame() || !SDK::LocalPawn || !cheat->alive) + return original(rcx, ev); + + switch (const char* event_name{ ev->GetName() }; FNV1A::Hash(event_name)) { + case FNV1A::HashConst(CS_XOR("player_death")): { + auto controller = SDK::LocalController; + if (!controller) + break; + + const auto event_controller = ev->get_player_controller("attacker"); + if (!event_controller) + return; + + skin_changer::OnPreFireEvent(ev); + + F::LEGIT::legit->Events(ev, F::LEGIT::events::player_death); + + } break; + case FNV1A::HashConst(CS_XOR("round_start")): { + auto controller = SDK::LocalController; + if (!controller) + break; + + // fix skins not showing up on round start event + Vars.full_update = true; + + // reset some shit related to legitbot + F::LEGIT::legit->Events(ev, F::LEGIT::events::round_start); + + } break; + default: + break; + } + + original(rcx, ev); +} +bool init = false; +HRESULT __stdcall H::Present(IDXGISwapChain* pSwapChain, UINT uSyncInterval, UINT uFlags) +{ + auto hResult = SilenthkPresent.GetOg((int)VTABLE::D3D::PRESENT); + + if (!init && I::RenderTargetView == nullptr) + { + if (SUCCEEDED(pSwapChain->GetDevice(__uuidof(ID3D11Device), (void**)&I::Device))) + { + I::Device->GetImmediateContext(&I::DeviceContext); + DXGI_SWAP_CHAIN_DESC sd; + pSwapChain->GetDesc(&sd); + IPT::hWindow = sd.OutputWindow; + ID3D11Texture2D* pBackBuffer; + pSwapChain->GetBuffer(0, __uuidof(ID3D11Texture2D), (LPVOID*)&pBackBuffer); + I::Device->CreateRenderTargetView(pBackBuffer, NULL, &I::RenderTargetView); + pBackBuffer->Release(); + D::InitImGui(); + init = true; + } + + else + return hResult(pSwapChain, uSyncInterval, uFlags); + } + + D::Render(); + + return hResult(pSwapChain, uSyncInterval, uFlags); +} +#include"../dependencies/imgui/imgui_impl_dx11.h" +#include"../dependencies/imgui/imgui_impl_win32.h" + +HRESULT CS_FASTCALL H::ResizeBuffers(IDXGISwapChain* pSwapChain, std::uint32_t nBufferCount, std::uint32_t nWidth, std::uint32_t nHeight, DXGI_FORMAT newFormat, std::uint32_t nFlags) +{ + ImGui_ImplDX11_InvalidateDeviceObjects(); + + auto hResult = SilenthkPresent.GetOg((int)VTABLE::D3D::RESIZEBUFFERS); + if (SUCCEEDED(hResult)) + I::CreateRenderTarget(pSwapChain); + + return hResult(pSwapChain, nBufferCount, nWidth, nHeight, newFormat, nFlags); +} + +HRESULT __stdcall H::CreateSwapChain(IDXGIFactory* pFactory, IUnknown* pDevice, DXGI_SWAP_CHAIN_DESC* pDesc, IDXGISwapChain** ppSwapChain) +{ + auto hResult = Silentdxgi.GetOg((int)VTABLE::DXGI::CREATESWAPCHAIN); + I::DestroyRenderTarget(); + L_PRINT(LOG_INFO) << CS_XOR("render target view has been destroyed"); + + return hResult(pFactory, pDevice, pDesc, ppSwapChain); + +} + +long H::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) +{ + if (D::OnWndProc(hWnd, uMsg, wParam, lParam)) + return 1L; + + return ::CallWindowProcW(IPT::pOldWndProc, hWnd, uMsg, wParam, lParam); +} + +void* CS_FASTCALL H::OnAddEntity(void* rcx, CEntityInstance* pInstance, CBaseHandle hHandle) { + spoof_call(_fake_addr, EntCache::OnAddEntity, pInstance, hHandle); + + return SilentEntitySystem.GetOg(14)(rcx, pInstance, hHandle); +} + +void* CS_FASTCALL H::OnRemoveEntity(void* rcx, CEntityInstance* pInstance, CBaseHandle hHandle) { + spoof_call(_fake_addr, EntCache::OnRemoveEntity, pInstance, hHandle); + + return SilentEntitySystem.GetOg(15)(rcx, pInstance, hHandle); +} + +ViewMatrix_t* CS_FASTCALL H::GetMatrixForView(CRenderGameSystem* pRenderGameSystem, IViewRender* pViewRender, ViewMatrix_t* pOutWorldToView, ViewMatrix_t* pOutViewToProjection, ViewMatrix_t* pOutWorldToProjection, ViewMatrix_t* pOutWorldToPixels) +{ // Call the original function + const auto oGetMatrixForView = hkGetMatrixForView.GetOriginal(); + ViewMatrix_t* matResult = oGetMatrixForView(pRenderGameSystem, pViewRender, pOutWorldToView, pOutViewToProjection, pOutWorldToProjection, pOutWorldToPixels); // get view matrix + SDK::ViewMatrix = *pOutWorldToProjection; + // get camera position + // @note: ida @GetMatrixForView(global_pointer, pRenderGameSystem + 16, ...) + SDK::CameraPosition = pViewRender->vecOrigin; + + // keep bounding box updated + if (I::Engine->IsConnected() && I::Engine->IsInGame()) + spoof_call(_fake_addr, &F::VISUALS::OVERLAY::CalculateBoundingBoxes); + + + return matResult; +} +// SendNetInputMessage - 48 89 5C 24 ? 48 89 74 24 ? 48 89 7C 24 ? 41 56 48 81 EC ? ? ? ? 49 8B D9 + +int64_t CS_FASTCALL H::SendNetInputMessage(CNetInputMessage* a1, int64_t a2, int64_t a3, int64_t a4, int64_t a5, int64_t a6) +{ + const auto bres = hkSendInputMessage.GetOriginal(); + + return bres(a1, a2, a3, a4, a5, a6); +} + +#include "..\cstrike\sdk\datatypes\usercmd.h" +#include "../features/misc.h" +#include "../features/misc/movement.h" + +void H::AllowCameraAngleChange(CCSGOInput* pCSGOInput, int a2) +{ + const auto Original = hkAllowCameraChange.GetOriginal(); + + if (!I::Engine->IsInGame() || !I::Engine->IsConnected() || pCSGOInput == nullptr) + return Original(pCSGOInput, a2); + + CUserCmd* pCmd = pCSGOInput->GetUserCmd(); + if (pCmd == nullptr) + return Original(pCSGOInput, a2); + + QAngle_t angOriginalAngle = pCmd->m_csgoUserCmd.m_pBaseCmd->m_pViewangles->m_angValue; + pCmd->m_csgoUserCmd.m_pBaseCmd->m_pViewangles->m_angValue = F::ANTIAIM::angStoredViewBackup; + Original(pCSGOInput, a2); + pCmd->m_csgoUserCmd.m_pBaseCmd->m_pViewangles->m_angValue = angOriginalAngle; +} + +bool CS_FASTCALL H::CreateMove(CCSGOInput* pInput, int nSlot, bool nUnk, std::byte nUnk2) +{ + const bool bResult = SilentInput.GetOg((int)VTABLE::CLIENT::CREATEMOVE)(pInput, nSlot, nUnk, nUnk2); + + if (!I::Engine->IsConnected() || !I::Engine->IsInGame()) + return bResult; + + CUserCmd* pCmd = SDK::Cmd = pInput->GetUserCmd(); + if (pCmd == nullptr) + return bResult; + + F::ANTIAIM::angStoredViewBackup = pCmd->m_csgoUserCmd.m_pBaseCmd->m_pViewangles->m_angValue; + + SDK::LocalController = CCSPlayerController::GetLocalPlayerController(); + if (SDK::LocalController == nullptr) + return bResult; + + SDK::LocalPawn = I::GameResourceService->pGameEntitySystem->Get(SDK::LocalController->GetPawnHandle()); + if (SDK::LocalPawn == nullptr) + return bResult; + + F::ANTIAIM::RunAA(pCmd); + + cheat->alive = SDK::LocalPawn->GetHealth() > 0 && SDK::LocalPawn->GetLifeState() != ELifeState::LIFE_DEAD; + cheat->onground = (SDK::LocalPawn->GetFlags() & FL_ONGROUND); + cheat->canShot = SDK::LocalPawn->CanShoot(I::GlobalVars->nTickCount); + + if (cheat->alive) { + auto network = I::NetworkClientService->GetNetworkClient(); + if (network && Vars.full_update) { + network->Update(); + Vars.full_update = false; + } + + // process legit bot + if (C_GET(bool, Vars.legit_enable)) { + F::LEGIT::legit->SetupAdaptiveWeapon(SDK::LocalPawn); + F::LEGIT::legit->Run(pCmd); + } + + F::LAGCOMP::lagcomp->Start(pCmd); + + + // we should run engine pred here for movement features etc + // in order to predict ( velocity, flags, origin ) + // setup menu adaptive weapon with rage data + if (C_GET(bool, Vars.rage_enable)) { + F::RAGE::rage->SetupAdaptiveWeapon(SDK::LocalPawn); + F::RAGE::rage->Run(SDK::LocalPawn, pInput, pCmd); + } + + F::MISC::MOVEMENT::ProcessMovement(pCmd, SDK::LocalController, SDK::LocalPawn); + } + + return bResult; +} +#include "../features/misc/movement.h" +void CS_FASTCALL H::PredictionSimulation(CCSGOInput* pInput, int nSlot, CUserCmd* pCmd) +{ + static auto bResult = SilentInput.GetOg((int)VTABLE::CLIENT::PREDICTION); + + if (!I::Engine->IsConnected() || !I::Engine->IsInGame()) + return bResult(pInput, nSlot, pCmd); + + CUserCmd* commandnr = pInput->GetUserCmd(); + if (commandnr == nullptr) + return bResult(pInput, nSlot, pCmd); + + auto predicted_local_controller = CCSPlayerController::GetLocalPlayerController(); + if (predicted_local_controller == nullptr) + return bResult(pInput, nSlot, pCmd); + + auto pred = I::GameResourceService->pGameEntitySystem->Get(predicted_local_controller->m_hPredictedPawn()); + if (pred == nullptr) + return bResult(pInput, nSlot, pCmd); + + // run auto stop w predicted cmd +// F::RAGE::rage->AutomaticStop(pred, pred->ActiveWeapon(), pCmd); + + // fix our command number members for predicted values (move correction etc) + + return bResult(pInput, nSlot, pCmd); +} + + +double CS_FASTCALL H::WeaponAcurracySpreadClientSide(void* a1) { + static auto fnWeaponAcurracySpreadClientSide = hkWeapoSpreadClientSide.GetOriginal(); + + if (C_GET(bool, Vars.remove_weapon_accuracy_spread)) + return 0.0; + + return fnWeaponAcurracySpreadClientSide(a1); +} + +double CS_FASTCALL H::WeaponAcurracySpreadServerSide(void* a1) { + static auto fnWeaponAcurracySpreadServerSide = hkWeapoSpreadServerSide.GetOriginal(); + + if (C_GET(bool, Vars.remove_weapon_accuracy_spread)) + return 0.0; + + return fnWeaponAcurracySpreadServerSide(a1); +} + + +bool CS_FASTCALL H::FireEventClientSide(void* rcx, IGameEvent* event, bool bServerOnly) +{ + const auto oPreFire = hkPreFireEvent.GetOriginal(); + + return oPreFire(rcx, event, bServerOnly); +} + +bool CS_FASTCALL H::MouseInputEnabled(void* pThisptr) +{ + return MENU::bMainWindowOpened ? false : SilentInput.GetOg((int)VTABLE::CLIENT::MOUSEINPUTENABLED)(pThisptr); +} +void CS_FASTCALL H::SetModel(void* rcx, const char* model) { + const auto oSetModel = hkSetModel.GetOriginal(); + skin_changer::OnSetModel((C_BaseModelEntity*)rcx, model); + return oSetModel(rcx, model); +} + +bool CS_FASTCALL H::EquipItemInLoadout(void* rcx, int iTeam, int iSlot, + uint64_t iItemID) { + const auto oEquipItemInLoadout = hkEquipItemInLoadout.GetOriginal(); + skin_changer::OnEquipItemInLoadout(iTeam, iSlot, iItemID); + return oEquipItemInLoadout(rcx, iTeam, iSlot, iItemID); +} + +void CS_FASTCALL H::FrameStageNotify(void* rcx, int nFrameStage) +{ + const auto oFrameStageNotify = hkFrameStageNotify.GetOriginal(); + + if (I::Engine->IsConnected() && I::Engine->IsInGame()) + skin_changer::OnFrameStageNotify(nFrameStage); + + + return oFrameStageNotify(rcx, nFrameStage); +} + +__int64* CS_FASTCALL H::LevelInit(void* pClientModeShared, const char* szNewMap) +{ + const auto oLevelInit = hkLevelInit.GetOriginal(); + // if global variables are not captured during I::Setup or we join a new game, recapture it + if (I::GlobalVars == nullptr) + I::GlobalVars = *reinterpret_cast(MEM::ResolveRelativeAddress(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 89 0D ? ? ? ? 48 89 41")), 0x3, 0x7)); + + return oLevelInit(pClientModeShared, szNewMap); +} +//0x8D4C00000D1C8310 +// client.dll 7FFB83FD0000 +__int64 CS_FASTCALL H::LevelShutdown(void* pClientModeShared) +{ + const auto oLevelShutdown = hkLevelShutdown.GetOriginal(); + // reset global variables since it got discarded by the game + I::GlobalVars = nullptr; + + return oLevelShutdown(pClientModeShared); +} + +void CS_FASTCALL H::OverrideView(void* pClientModeCSNormal, CViewSetup* pSetup) +{ + const auto oOverrideView = hkOverrideView.GetOriginal(); + if (!I::Engine->IsConnected() || !I::Engine->IsInGame()) + return hkOverrideView.GetOriginal()(pClientModeCSNormal, pSetup); + + if (!SDK::LocalController->IsPawnAlive() || !SDK::LocalController) + return hkOverrideView.GetOriginal()(pClientModeCSNormal, pSetup); + + static auto progress = 0.f; + if (C_GET(bool, Vars.bThirdperson)) + { + auto bezier = [](const float t) + { + return t * t * (3.0f - 2.0f * t); + }; + + progress = MATH::clamp(progress + I::GlobalVars->flFrameTime * 6.f, 40.f / C_GET(float, Vars.flThirdperson), 1.f); + + CONVAR::cam_idealdist->value.fl = C_GET(float, Vars.flThirdperson) * (C_GET(bool, Vars.bThirdpersonNoInterp) ? 1.f : bezier(progress)); + CONVAR::cam_collision->value.i1 = true; + CONVAR::cam_snapto->value.i1 = true; + CONVAR::c_thirdpersonshoulder->value.i1 = true; + CONVAR::c_thirdpersonshoulderaimdist->value.fl = 0.f; + CONVAR::c_thirdpersonshoulderdist->value.fl = 0.f; + CONVAR::c_thirdpersonshoulderheight->value.fl = 0.f; + CONVAR::c_thirdpersonshoulderoffset->value.fl = 0.f; + + I::Input->bInThirdPerson = true; + } + else + { + progress = C_GET(bool, Vars.bThirdperson) ? 1.f : 0.f; + I::Input->bInThirdPerson = false; + } + + oOverrideView(pClientModeCSNormal, pSetup); +} +//8D4C7FFB91198310 +void CS_FASTCALL H::DrawObject(void* pAnimatableSceneObjectDesc, void* pDx11, material_data_t* arrMeshDraw, int nDataCount, void* pSceneView, void* pSceneLayer, void* pUnk, void* pUnk2) +{ + const auto oDrawObject = hkDrawObject.GetOriginal(); + if (!I::Engine->IsConnected() || !I::Engine->IsInGame()) + return oDrawObject(pAnimatableSceneObjectDesc, pDx11, arrMeshDraw, nDataCount, pSceneView, pSceneLayer, pUnk, pUnk2); + + if (SDK::LocalController == nullptr || SDK::LocalPawn == nullptr) + return oDrawObject(pAnimatableSceneObjectDesc, pDx11, arrMeshDraw, nDataCount, pSceneView, pSceneLayer, pUnk, pUnk2); + + if (!F::OnDrawObject(pAnimatableSceneObjectDesc, pDx11, arrMeshDraw, nDataCount, pSceneView, pSceneLayer, pUnk, pUnk2)) + oDrawObject(pAnimatableSceneObjectDesc, pDx11, arrMeshDraw, nDataCount, pSceneView, pSceneLayer, pUnk, pUnk2); +} + diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/hooks.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/hooks.h new file mode 100644 index 0000000..bcc1adc --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/hooks.h @@ -0,0 +1,150 @@ +#pragma once + +// used: [d3d] api +#include +#include + +// used: chookobject +#include "../utilities/detourhook.h" +#include "..\sdk\entity_handle.h" +// used: viewmatrix_t +#include "../sdk/datatypes/matrix.h" +#include "../core/sdk.h" +#include "../sdk/entity.h" +#include "../core/silentvmt/ShadowVMT.h" +#include "../core/silentvmt/InlineHook.h" +namespace VTABLE +{ + namespace D3D + { + enum + { + PRESENT = 8U, + RESIZEBUFFERS = 13U, + RESIZEBUFFERS_CSTYLE = 39U, + }; + } + + namespace DXGI + { + enum + { + CREATESWAPCHAIN = 10U, + }; + } + + namespace CLIENT + { + enum + { + CREATEMOVE = 5U, + CAMERA = 7U, + PREDICTION = 15U, + MOUSEINPUTENABLED = 14U, + FRAMESTAGENOTIFY = 33U, + + }; + } + + namespace INVENTORY + { + enum { + + EQUIPITEMLOADOUT = 54U, + + }; + } +} +class CNetInputMessage; +class CRenderGameSystem; +class IViewRender; +class CCSGOInput; +class CViewSetup; +class IGameEvent; +class C_BaseModelEntity; +class material_data_t; +class CGCClientSystem; +class CGCClientSharedObjectTypeCache; +class CCSGOInputHistoryEntryPB; +class CCSInputMessage; +namespace sigs { + extern CSigScan GetHitboxSet; + extern CSigScan HitboxToWorldTransforms; + extern CSigScan ComputeHitboxSurroundingBox; + extern CSigScan GetBoneName; +} // namespace signatures + +namespace H +{ + bool Setup(); + void Destroy(); + + /* @section: handlers */ + // d3d11 & wndproc + HRESULT WINAPI Present(IDXGISwapChain* pSwapChain, UINT uSyncInterval, UINT uFlags); + HRESULT CS_FASTCALL ResizeBuffers(IDXGISwapChain* pSwapChain, std::uint32_t nBufferCount, std::uint32_t nWidth, std::uint32_t nHeight, DXGI_FORMAT newFormat, std::uint32_t nFlags); + HRESULT WINAPI CreateSwapChain(IDXGIFactory* pFactory, IUnknown* pDevice, DXGI_SWAP_CHAIN_DESC* pDesc, IDXGISwapChain** ppSwapChain); + long CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); + + // game's functions + ViewMatrix_t* CS_FASTCALL GetMatrixForView(CRenderGameSystem* pRenderGameSystem, IViewRender* pViewRender, ViewMatrix_t* pOutWorldToView, ViewMatrix_t* pOutViewToProjection, ViewMatrix_t* pOutWorldToProjection, ViewMatrix_t* pOutWorldToPixels); + bool CS_FASTCALL CreateMove(CCSGOInput* pInput, int nSlot, bool nUnk, std::byte nUnk2); + void CS_FASTCALL PredictionSimulation(CCSGOInput* pInput, int nSlot, CUserCmd* cmd); + void CS_FASTCALL AllowCameraAngleChange(CCSGOInput* pCSGOInput, int a2); + + double CS_FASTCALL WeaponAcurracySpreadServerSide(void* a1); + bool CS_FASTCALL FireEventClientSide(void* rcx, IGameEvent* event, bool bServerOnly); + double CS_FASTCALL WeaponAcurracySpreadClientSide(void* a1); + bool CS_FASTCALL EquipItemInLoadout(void* rcx, int iTeam, int iSlot, uint64_t iItemID); + bool CS_FASTCALL MouseInputEnabled(void* pThisptr); + void* CS_FASTCALL OnAddEntity(void* rcx, CEntityInstance* pInstance, CBaseHandle hHandle); + void* CS_FASTCALL OnRemoveEntity(void* rcx, CEntityInstance* pInstance, CBaseHandle hHandle); + void CS_FASTCALL FrameStageNotify(void* rcx, int nFrameStage); + __int64* CS_FASTCALL LevelInit(void* pClientModeShared, const char* szNewMap); + __int64 CS_FASTCALL LevelShutdown(void* pClientModeShared); + void CS_FASTCALL OverrideView(void* pClientModeCSNormal, CViewSetup* pSetup); + void CS_FASTCALL DrawObject(void* pAnimatableSceneObjectDesc, void* pDx11, material_data_t* arrMeshDraw, int nDataCount, void* pSceneView, void* pSceneLayer, void* pUnk, void* pUnk2); + void CS_FASTCALL HandleGameEvents(void* rcx, IGameEvent* const event); + void CS_FASTCALL SetModel(void* rcx, const char* model_name); + int64_t CS_FASTCALL SendNetInputMessage(CNetInputMessage* a1, int64_t a2, int64_t a3, int64_t a4, int64_t a5, int64_t a6); + void CS_FASTCALL CameraInput(void* Input, int a1); + float CS_FASTCALL SetViewModelFOV(); + float CS_FASTCALL GetRenderFov(uintptr_t rcx); + void* CS_FASTCALL InputParser(CCSInputMessage* a1, CCSGOInputHistoryEntryPB* a2, char a3, void* a4, void* a5, void* a6); + + inline ShadowVMT SilenthkPresent{ }; + inline ShadowVMT Silentdxgi{ }; + inline ShadowVMT SilentInput{ }; + inline ShadowVMT SilentEntitySystem{ }; + inline ShadowVMT SilentInvetoryManager{ }; + inline CCSInventoryManager* (*fnGetInventoryManager)(); + inline CGCClientSystem* (*fnGetClientSystem)(); + inline void* (CS_FASTCALL* fnSetDynamicAttributeValueUint)(void*, void*, + void*); + inline CEconItem* (*fnCreateSharedObjectSubclassEconItem)(); + inline void(CS_FASTCALL* SetMeshGroupMask)(void*, uint64_t); + + inline int(CS_FASTCALL* fnFindMaterialIndex)(void*, void*, int, bool); + + inline CBaseHookObject hkGetMatrixForView = {}; + inline CBaseHookObject hkSetViewModelFOV = {}; + inline CBaseHookObject hkFOVObject = {}; + inline CBaseHookObject hkGameEvents = {}; + inline CBaseHookObject hkLevelInit = {}; + inline CBaseHookObject hkDrawObject = {}; + inline CBaseHookObject hkLevelShutdown = {}; + inline CBaseHookObject hkWeapoSpreadClientSide = {}; + inline CBaseHookObject hkWeapoSpreadServerSide = {}; + inline CBaseHookObject hkPreFireEvent = {}; + inline CBaseHookObject hkFrameStageNotify = {}; + inline CBaseHookObject hkSetModel = {}; + inline CBaseHookObject hkEquipItemInLoadout = {}; + inline CBaseHookObject hkPredictionSimulation = {}; + inline CBaseHookObject hkSendInputMessage = {}; + inline CBaseHookObject hkAllowCameraChange = {}; + inline CBaseHookObject hkCameraInput = {}; + inline CBaseHookObject hkOverrideView = {}; + inline CBaseHookObject hkInputParser = {}; + + +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/imfonts.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/imfonts.h new file mode 100644 index 0000000..b07fbed --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/imfonts.h @@ -0,0 +1,3217 @@ +#pragma once + +static const unsigned int weapon_icons_size = 41193; +static const unsigned int weapon_icons_data[41196 / 4] = +{ + 0x0000bc57, 0x00000000, 0xd8b80000, 0x00000400, 0x00010037, 0x000d0000, 0x00030080, 0x54464650, 0x73e37b4d, 0xb800008d, 0x281582bc, 0x4544471c, + 0x00270046, 0x200f8267, 0x2c0f8294, 0x2f534f26, 0x74d05732, 0x010000a0, 0x2c0f8258, 0x616d6360, 0xdc361d70, 0x0200003c, 0x241382b8, 0x73616776, + 0x20178270, 0x202f8210, 0x3807828c, 0x796c6708, 0xdda24066, 0x0400000d, 0xb10000b4, 0x61656860, 0x60161464, 0x201b82ca, 0x210382dc, 0x10826836, + 0x0def1023, 0x203b8299, 0x280f8214, 0x746d6824, 0x130cc478, 0x820f823f, 0xfe00294f, 0x61636f6c, 0x16dfafaf, 0x30203f82, 0x84281f82, 0x7078616d, + 0x31025200, 0x38201f82, 0x20270f82, 0x656d616e, 0x82d04cf8, 0x14b6214f, 0xc22c1382, 0x74736f70, 0x4f3e3125, 0xd8b70000, 0xb3201f82, 0x012ddb84, + 0x19e00000, 0x0f5f8d16, 0x0b00f53c, 0x24168204, 0xebd20000, 0x2d3382ed, 0xded40000, 0x0000832e, 0x2d0dbfff, 0x1882c103, 0x02000822, 0x02830582, + 0x0000012a, 0xc0ffc003, 0x9a0d0000, 0x0d210e83, 0x8349842d, 0x2003870a, 0x2411843e, 0x002f0241, 0x21128410, 0x008f0002, 0x7607032c, 0x05009001, + 0x99020000, 0x1c82cc02, 0x07858f20, 0x00eb0125, 0x82090133, 0x21028b0f, 0x0d8a1001, 0x45665023, 0x220e8264, 0x84760001, 0x03402483, 0x844000c0, + 0x2304820f, 0x5a036303, 0x20230682, 0x82040100, 0x21028306, 0x05835501, 0x002b6582, 0xcd080000, 0x4d095300, 0x82085d00, 0x66082807, 0x4d085300, + 0x82095200, 0xcd082303, 0x13845100, 0x5000cd22, 0x54340782, 0x5d008006, 0x4f00000a, 0x57004d05, 0x4b00e605, 0x55000005, 0x59210382, 0x2c338209, + 0x65006606, 0x5a009a05, 0x5b004d07, 0x2b4b8205, 0x5a00b309, 0x5d009a0a, 0x61001a06, 0x4f204f82, 0x62260382, 0x5d001a0c, 0x17821a09, 0x6400b326, + 0x5b009a0d, 0x0a2b3783, 0x0b530080, 0x0b56001a, 0x824d004d, 0x824a2003, 0x08622417, 0x825200cd, 0x0c533603, 0x0a550080, 0x0a6200e6, 0x075e0066, + 0x0b6300e6, 0x0960004d, 0x30138266, 0x0553009a, 0x02560033, 0x02540000, 0x025800e6, 0x2607821a, 0x035700cd, 0x8261009a, 0x0451280b, 0x035e0000, + 0x82620000, 0x03662403, 0x825900e6, 0x8a00200f, 0x82032000, 0x2203830b, 0x8201001c, 0x00002409, 0x84030070, 0x001c2409, 0x82540004, 0x00102211, + 0x20118210, 0x2c138200, 0x00390020, 0x005d005b, 0xfffdff76, 0x261982ff, 0x00200000, 0x82410030, 0x85612011, 0xe4ff2911, 0xceffd5ff, 0xcaffcdff, + 0x8e414384, 0x202e830b, 0x26158201, 0x00060100, 0x83030100, 0x2507820e, 0x00000002, 0x008d0002, 0x00000124, 0x008d0004, 0x07060529, 0x0b0a0908, + 0x860e0d0c, 0x100f3c17, 0x14131211, 0x18171615, 0x1c1b1a19, 0x201f1e1d, 0x24232221, 0x28272625, 0x822a0029, 0x2c2b3523, 0x302f2e2d, 0x34333231, + 0x38373635, 0x3c3b3a39, 0x403f3e3d, 0x02401882, 0x0880088c, 0x10000800, 0x4e011800, 0x2c04c202, 0xc6067e05, 0x160bf008, 0x580f340d, 0xea12b411, + 0xc815ca14, 0xc417ae16, 0x1c1a5019, 0xe61d5a1c, 0xf220921f, 0xbe25b823, 0xf0285827, 0x9a2cc02a, 0xe02fd02d, 0x02336431, 0xa436c835, 0x023c1439, + 0xee3df43c, 0xba41803f, 0xa0449443, 0xe6472246, 0x7a4c544a, 0xa64d4c4d, 0xaa4f9a4e, 0x0a515e50, 0x94531652, 0x2e557454, 0x0857a456, 0xde57aa57, + 0x0100b058, 0x24080d41, 0x39000002, 0x310fa202, 0x08da0053, 0x00a50253, 0x010000d6, 0x0e37013e, 0x028b0701, 0x0722062a, 0x26232622, 0x012e2706, + 0x08820283, 0x23012a27, 0x26272622, 0x85268506, 0x21328917, 0x118b2606, 0x35822320, 0x23822987, 0x2c894185, 0x27010e25, 0x82353626, 0x2d028d74, + 0x33011e17, 0x1e331632, 0x36321701, 0x0b823a33, 0x11823620, 0x0e820286, 0x16251782, 0x26343536, 0x250b8227, 0x1415013a, 0x92822322, 0x33201484, + 0x4a822f82, 0x2f8a3220, 0x3616ad08, 0xf4073137, 0x01173018, 0x0b060308, 0x111f0e05, 0x35244121, 0x2e17376f, 0x0b170b16, 0x1d0a160a, 0x2f171d3a, + 0x19351717, 0x01040803, 0x0b020104, 0x0d1b0d04, 0x0710240f, 0x2b0e0209, 0x0a20122e, 0x03030704, 0x1a0d0805, 0x0b140a0c, 0x0c183418, 0x1a0b0c19, + 0x0a180b0b, 0x0908240f, 0x05030709, 0x06100706, 0x1610160b, 0x27160f21, 0x09110814, 0x05060b06, 0x01080407, 0x1b0c1201, 0x632b3762, 0x172c1631, + 0x07214120, 0x0a040712, 0x070f0703, 0x031a351a, 0x0a060204, 0x070e0706, 0x1d142915, 0x13091d39, 0x02030109, 0x01020607, 0x112c0082, 0x07081121, + 0x09040502, 0x08090304, 0x0f820582, 0x172f1836, 0x0f091409, 0x4a240f1d, 0x31613025, 0x02244523, 0x02050227, 0x052d6582, 0x1c0e060c, 0x0c251309, + 0x03050d10, 0x08008201, 0x0905022e, 0x050c0405, 0x07010306, 0x01080301, 0x05050a05, 0x1b010110, 0x04512305, 0x05110802, 0x0707060b, 0x02070101, + 0x02010302, 0x04020406, 0x013b7582, 0x1905040a, 0x0c1c0b0b, 0x01020b05, 0x190b0703, 0x0e160202, 0x0a172f16, 0x82050815, 0x08033b1a, 0x1d10230f, + 0x563b1a39, 0x091c1a20, 0x03020904, 0x03010407, 0x01040101, 0x04840201, 0x82010321, 0x8201208a, 0x040d2300, 0x0b830601, 0x07050823, 0x2514820f, + 0x02030101, 0x8e820306, 0x82140c21, 0x3a698205, 0x00020002, 0x08d7005d, 0x01aa02de, 0x0032011c, 0x032e0100, 0x23222627, 0x8227012a, 0x26222102, + 0x02830882, 0x85062221, 0x3c352208, 0x20028301, 0x220e8334, 0x83011c15, 0x16142102, 0x07252388, 0x2e272606, 0x890e8801, 0x012a2a0b, 0x06073023, + 0x23010e33, 0x23518606, 0x15062227, 0x60820e82, 0x0725308a, 0x2627010e, 0x83238206, 0x247e8305, 0x16060706, 0x24668707, 0x33011e17, 0x3002873a, + 0x3e371632, 0x16363701, 0x37363233, 0x16173236, 0x05924214, 0x9b421183, 0x832c8607, 0x17162220, 0x05b34216, 0x2c831620, 0x32214788, 0x23c38814, + 0x013b3233, 0x2984db86, 0x36254482, 0x023a3332, 0x43608336, 0x25240508, 0x1407011e, 0x2324f883, 0x34352622, 0x3b082584, 0x08173632, 0x6d6d37de, + 0x0e07366d, 0x162c1606, 0x46489048, 0x2915468e, 0x04080514, 0x11070c06, 0x060c1020, 0x0f02020e, 0x22120702, 0x060d0611, 0x06060405, 0x01020309, + 0x08100802, 0x073d0282, 0x08050709, 0x070f0803, 0x02091009, 0x02020203, 0x03070301, 0x09080708, 0x0d070812, 0x2e0e8206, 0x0802020a, 0x01030202, + 0x09060e06, 0x82070911, 0x050a2f3d, 0x0f070d05, 0x14070e17, 0x20402008, 0x3682100a, 0x02080131, 0x03020701, 0x21100406, 0x12251210, 0x82071108, + 0x0f072a2e, 0x06060707, 0x02040804, 0x08168203, 0x0602086a, 0x1007090a, 0x08061120, 0x01060209, 0x0f030403, 0x05010f20, 0x040d0601, 0x0a050b04, + 0x10030912, 0x070f0502, 0x12070306, 0x0a051223, 0x06020104, 0x010b0b02, 0x060a0504, 0x45142a14, 0x7f404489, 0x22407f80, 0x60322243, 0x1a341f2e, + 0x0607c0fe, 0x0c050302, 0x09060c18, 0x0e070508, 0x040b0407, 0x1009c401, 0x01081111, 0x21080082, 0x44220c0a, 0x05090422, 0x04020103, 0x45230409, + 0x0a0e0623, 0x04050101, 0x010b0102, 0x02020901, 0x08820402, 0x02010438, 0x05010403, 0x04020303, 0x01010506, 0x02030507, 0x0d091001, 0x55820d1c, + 0x0528fc82, 0x0f02050d, 0x07030301, 0x02244f82, 0x02040102, 0x062a2d82, 0x01030b0d, 0x03010607, 0x3d830403, 0x03030722, 0x12224782, 0x80821224, + 0x06010528, 0x2211050c, 0x2e820511, 0x04052608, 0x0f161805, 0x04081728, 0x1102080c, 0x13030511, 0x00000302, 0x53000200, 0x53080001, 0xe9007f02, + 0x0000f900, 0x084f4501, 0x022e0626, 0x07012e27, 0x062a0f82, 0x06162326, 0x23012e15, 0x0582011c, 0x06142723, 0x24178207, 0x06072622, 0x250b8226, + 0x27062615, 0x11822226, 0x0e822720, 0x42012e21, 0x232205a2, 0x38452206, 0x210b860b, 0x1a451614, 0x45372008, 0x32200b44, 0x11861783, 0x32210b85, + 0x05c64236, 0x16202f86, 0x35450e84, 0x013a2205, 0x05ba4233, 0x82011e21, 0x32172323, 0x4a823516, 0x36214188, 0x86118216, 0x84148220, 0x16172238, + 0x466e8c32, 0x05210537, 0x0733433c, 0x16063708, 0x07012a17, 0x5f2fea07, 0x1e3e1f30, 0x312f5e2f, 0x30606261, 0x03040e04, 0x06030207, 0x02010103, + 0x04020304, 0x06010102, 0x05010303, 0x05020301, 0x01060402, 0x0a840205, 0x08052108, 0x0b0d180b, 0x3e1e0c16, 0x2b562b1f, 0x181f3d1f, 0x2c161830, + 0x19381e16, 0x07112918, 0x081b010f, 0x5d083983, 0x1709050b, 0x080e0809, 0x18080f09, 0x210f1e32, 0x20442210, 0x050b120a, 0x2c11050c, 0x0d1b0e15, + 0x06091108, 0x190b0508, 0x0f22160d, 0x07060b08, 0x0b0a0d09, 0x08100807, 0x02010302, 0x1f100505, 0x050a050f, 0x05070f07, 0x0f090408, 0x0511020a, + 0x0e04060c, 0x02070103, 0x07050704, 0x9c82080d, 0x09034c08, 0x0a0e0903, 0x03020502, 0x16090305, 0x0909070a, 0x360d1a0d, 0x6f39346b, 0x20412232, + 0x1a0b180c, 0x66fb1b34, 0x040a0501, 0x010b160b, 0x20100101, 0x0d620211, 0x08040618, 0x02050604, 0x0f080102, 0x0106010a, 0x02010701, 0x82030201, + 0x85f28203, 0x0102210a, 0x04201f82, 0x8982f482, 0x60820682, 0x05227682, 0x43820606, 0x48081482, 0x09020104, 0x070e0404, 0x1313170a, 0x150b192b, + 0x040e0c0d, 0x05050e02, 0x04030204, 0x03050203, 0x13060c03, 0x0303081f, 0x030a0b01, 0x0b010107, 0x010e0c03, 0x0b030505, 0x07030801, 0x0b030209, + 0x090e070f, 0x01010c0a, 0x21ec8304, 0x56820d06, 0x04020a24, 0xc7820205, 0x03040624, 0x02830108, 0x05010224, 0x76820301, 0x08201482, 0x02220a82, + 0x1d820103, 0x09060822, 0x2f082582, 0x18080204, 0x23381413, 0x091a3217, 0x0f070913, 0x0e028207, 0x01040704, 0x53000200, 0xed070801, 0xd4007802, + 0x0000e100, 0x27012e01, 0x0607012e, 0x22097e42, 0x42061617, 0xff4705d8, 0x21058605, 0xf0420622, 0x26272505, 0x26060706, 0x27220582, 0x08862226, + 0x11833e83, 0x8d450e82, 0x46178505, 0xea420503, 0x2206240c, 0x88261627, 0x84152011, 0x0f7e4274, 0x37013e2a, 0x32333632, 0x011e1736, 0x1a431a88, + 0x20088508, 0x05ba4233, 0x15011e24, 0xb1453614, 0x20298405, 0x82058303, 0x1e0522ce, 0x07a24801, 0x17364608, 0x813dba07, 0x0a110c40, 0x06031006, + 0x180c060b, 0x0107060a, 0x080a0201, 0x0b04070e, 0x0d1a0d04, 0x1c295228, 0x170b1c39, 0x040a040c, 0x08090307, 0x08080706, 0x04080608, 0x08050c02, + 0x0b060904, 0x040a0305, 0x28138208, 0x0c050705, 0x020b0205, 0x25208207, 0x04080905, 0x01820207, 0x070e3f08, 0x3a316131, 0x783c3a77, 0x0d190d3b, + 0x08050e05, 0x22030a07, 0x05100c07, 0x060c1b0e, 0x11100106, 0x060c120a, 0x2e17060d, 0x0c130c16, 0x170b160c, 0x7038172f, 0x0a150a38, 0x0e041105, + 0x5e821216, 0x0c140b28, 0x07162814, 0x9a82070f, 0x16142308, 0x01030105, 0x04010801, 0x0b030302, 0x1e040603, 0x13241303, 0x3a122411, 0x552a3a76, + 0x31265054, 0x67822851, 0xddf82308, 0x03040507, 0x0c0c0815, 0x0e290403, 0x281aff01, 0x08010311, 0x02010705, 0x0b060204, 0x07060409, 0xe3821507, + 0x46820120, 0x04090428, 0x080b1a0e, 0x1a82060a, 0x02010934, 0x0203040c, 0x03030506, 0x03030a02, 0x0407050c, 0x0a820803, 0x04050234, 0x06040405, + 0x01020804, 0x0506010e, 0x04010505, 0x86820b05, 0x02022108, 0x08070304, 0x05030e13, 0x04010102, 0x030f0306, 0x09210302, 0x0c1a3319, 0x1e120d17, + 0x03050408, 0x08245482, 0x07050a17, 0x20830882, 0x030a0430, 0x09040201, 0x09020410, 0x050f0803, 0x0e820409, 0x0d010134, 0x17260c06, 0x01060e07, + 0x03030202, 0x08040204, 0x5c820a07, 0x01012a08, 0x150e0405, 0x4319131e, 0x050b0624, 0x0c100a96, 0x04030f06, 0x10150d0c, 0x0000000a, 0x00520002, + 0x03d30754, 0x00bf002c, 0x07a342d8, 0x22098e42, 0x4a272622, 0x222105b8, 0x08bb4a06, 0x06220723, 0x05ca4223, 0x2208a445, 0x4b15010e, 0x26240c00, + 0x17062223, 0x8505b245, 0x26062238, 0x058e4217, 0x83160621, 0x422c8a17, 0x6d42059a, 0x3e372805, 0x34363701, 0x83361635, 0x013e2208, 0x20088917, + 0x0f884532, 0x42263621, 0x03210db2, 0x20928217, 0x83728405, 0x842620bd, 0x36322142, 0x3c085783, 0x07070616, 0x1f35169d, 0x2c3b692b, 0x4120325f, + 0x172f1721, 0x01070e07, 0x2e080207, 0x040e050c, 0x260e1b0b, 0x10072857, 0x04070307, 0x07040904, 0x170b0707, 0x3e83450b, 0x030e1d0f, 0x26258201, + 0x04030b06, 0x820b0706, 0x0622080c, 0x02130806, 0x05070303, 0x0806050a, 0x0a020401, 0x02021306, 0x06060624, 0x06050203, 0x02020f06, 0x1a820205, + 0x0f045b08, 0x020f0409, 0x09050937, 0x09110805, 0x3522451d, 0x0701044b, 0x0e070207, 0x1c39160a, 0x09040608, 0x471d0d13, 0x06060c24, 0x1e0f1b08, + 0x1a101d4b, 0x0a0b0409, 0x07042f07, 0x0d060b08, 0x1c371c06, 0x41336632, 0x45233b85, 0x0415373e, 0xe4f91220, 0x15172410, 0x17151420, 0x9d820808, + 0x0f193436, 0x2c1c0f1f, 0x150e0807, 0x4d2a6201, 0x20523324, 0x070a2918, 0x042d9e82, 0x11010102, 0x020b0a03, 0x0e0a0310, 0x32858205, 0x04010201, + 0x03010601, 0x06030103, 0x222e1102, 0x82081008, 0x8302200c, 0x05053e0e, 0x03030207, 0x06030a0e, 0x0109070a, 0x05070802, 0x01010c08, 0x01110c05, + 0x0a120808, 0x21d28208, 0x2e820706, 0x1223122e, 0x060e1f10, 0x070e0712, 0x03070202, 0x1232dd82, 0x570d0912, 0x070d0736, 0x0c031205, 0x03160917, + 0xb5820102, 0x0a184508, 0x040b0d18, 0x0a1d110b, 0x0c150115, 0x23071120, 0x05130102, 0x02040a08, 0x0f080205, 0x05050905, 0x121e2b06, 0x223e372e, + 0xbe244e28, 0x02021012, 0x210d0c05, 0x172d1716, 0x01022e17, 0x1d330a05, 0x00173e1e, 0x02340082, 0x94005200, 0xed02d308, 0xaa019401, 0x3e010000, + 0x012e3701, 0x24068f42, 0x1e232226, 0x051e4d01, 0x26222322, 0x22210b83, 0x841a8326, 0x06dd4a0b, 0x23830620, 0xe24c2f85, 0x84072005, 0x420b8523, + 0x3b8208d7, 0x06161722, 0x26210e83, 0x214a8506, 0xae4d1407, 0x07224b09, 0x3c352629, 0x26342701, 0x4a263435, 0x1c2a0688, 0x26141501, 0x07140615, + 0x2382012e, 0x06220728, 0x07010e23, 0xdb4d2614, 0x20058205, 0x42a18223, 0x748205ef, 0x17823420, 0x21058f4a, 0x95821506, 0x8205ac4b, 0x2606231d, + 0x74822627, 0xc2830288, 0x27243882, 0x0e072622, 0x06275684, 0x06141514, 0x82011e17, 0x16172c74, 0x32363336, 0x17163233, 0x82333216, 0x07ae4802, + 0x02881182, 0x013e3722, 0x33252c82, 0x32333632, 0x07604b26, 0x14861620, 0x85013e21, 0x3a172117, 0x16202385, 0x36273587, 0x33011c37, 0x82151416, + 0x16142102, 0x8205274c, 0x22ef8229, 0x4c363435, 0xb14b0545, 0x872f8205, 0x013e255c, 0x013a3732, 0x37225882, 0x56823a25, 0x06219282, 0x052f4c07, + 0x4608ec82, 0x08373626, 0x0e1d0e9a, 0x40295228, 0x4221407f, 0x14241321, 0x070c0106, 0x09030306, 0x08100707, 0x080e0508, 0x03050308, 0x08100809, + 0x080c0a05, 0x0402030d, 0x09110808, 0x090e0406, 0x05050307, 0x0810090a, 0x82100606, 0x0404280b, 0x09100909, 0x82100405, 0x054b083b, 0x11080906, + 0x01050408, 0x08070e02, 0x20010408, 0x09140903, 0x12010904, 0x03070302, 0x01050902, 0x10080208, 0x11231108, 0x01010409, 0x01010724, 0x07040201, + 0x2110070f, 0x03010610, 0x01020208, 0x020d0202, 0x060a1309, 0x8202060c, 0x0502231b, 0x00820205, 0x060d062d, 0x010f1d0f, 0x05020203, 0x83060204, + 0x0451082c, 0x05050704, 0x0a030b03, 0x0d070913, 0x05030407, 0x05060607, 0x1f10050b, 0x162f1710, 0x030d190e, 0x0802010e, 0x03050102, 0x03070e04, + 0x05010306, 0x050d0401, 0x1c0c170c, 0x09051c39, 0x08070704, 0x08040303, 0x1109070e, 0x030e0309, 0x05060503, 0x2d838304, 0x08050107, 0x180c0402, + 0x041b080d, 0x6e820a02, 0x1d0e0623, 0x242f820f, 0x03060205, 0x298e8203, 0x04080401, 0x060f1f10, 0x1b82060a, 0x05033c08, 0x02100101, 0x01011001, + 0x20040904, 0x130a203e, 0x05020408, 0x432d592d, 0x43878787, 0x4e102010, 0x62fe4394, 0x060e1a0d, 0x08030208, 0x040d0409, 0x06070f08, 0x0c05020c, + 0x82820109, 0x140a3478, 0x0c160c07, 0x04050c06, 0x0e011606, 0x01010605, 0x820d1905, 0x01012698, 0x03041606, 0x2c2a8209, 0x021b0601, 0x09070d01, + 0x01180701, 0x34458210, 0x01031b08, 0x0108060f, 0x04020101, 0x0609050b, 0x08130404, 0x25368203, 0x0c05070d, 0x05820706, 0x01050837, 0x0e090101, + 0x3f1f0e1d, 0x09020920, 0x19132813, 0x0c061933, 0x23ad8206, 0x05060a05, 0x04201d83, 0x09226782, 0x27820201, 0x04020222, 0x042c0682, 0x06010402, + 0x010b0401, 0x030c0905, 0x0b3b1783, 0x05020302, 0x03040101, 0x06040201, 0x3019060b, 0x0d180d1a, 0x06040c05, 0x83050103, 0x2333851f, 0x01010c04, + 0x0f215582, 0x264e8209, 0x0f040208, 0x82030803, 0x8204205f, 0x010c2256, 0x21508203, 0x74820101, 0x0202122e, 0x0f1f0f05, 0x04112211, 0x04020407, + 0x07210282, 0x220c8203, 0x820f1e0f, 0x0507224a, 0x824a8203, 0x31062f30, 0x06094728, 0x0206130b, 0x0c040b01, 0x53440712, 0x00512d05, 0x025308e8, + 0x016c0197, 0x01000078, 0x2605f943, 0x1e27012e, 0x440e1501, 0x1e21075c, 0x05414401, 0x17842720, 0x0e240b8c, 0x012a0701, 0x82054744, 0x06f04832, + 0x22202686, 0x21095344, 0xae511416, 0x058a4c0f, 0x26202982, 0x26212684, 0x05294406, 0x4905bd49, 0x232805c0, 0x26372636, 0x06141506, 0x05834782, + 0x0736262a, 0x22071622, 0x16262736, 0x11822682, 0x012e3522, 0x06241786, 0x26062316, 0x8c831d83, 0x06230623, 0x0e295222, 0x4a05a047, 0x3d47095f, + 0x0ef64907, 0x011e3323, 0x85028217, 0x1636211d, 0x17250b91, 0x1c15011c, 0x224d8501, 0x82011e15, 0x2041862f, 0x073e4436, 0x41843a20, 0x33214787, + 0x0a864f32, 0x820b504d, 0x013124f8, 0x82372606, 0x162c0864, 0x37060706, 0x0b0c7607, 0x0207050e, 0x04080604, 0x06100205, 0x04030804, 0x02040905, + 0x03100407, 0x04020605, 0x05040705, 0x050c0508, 0x03270b82, 0x06030805, 0x83010202, 0x0656081f, 0x06030208, 0x03060107, 0x06060a04, 0x06040405, + 0x01020309, 0x05051303, 0x04010305, 0x05030201, 0x0d040202, 0x04060605, 0x0b050f04, 0x27140a14, 0x356f3517, 0x07132613, 0x0802070e, 0x070b0602, + 0x09050b04, 0x110a0911, 0x04090308, 0x03040703, 0x0602010b, 0x5c820103, 0x04032508, 0x01060101, 0x06040305, 0x06030303, 0x03070203, 0x08080502, + 0x03040601, 0x03070404, 0x01040503, 0x03010204, 0x4a080a82, 0x0d060c06, 0x32190d18, 0x35733a19, 0x0b213e20, 0x120e0b16, 0x080d0708, 0x06061008, + 0x0d060808, 0x10211005, 0x0b091307, 0x170a060f, 0x0b180b0f, 0x08060d07, 0x1007060c, 0x060d0609, 0x050d1a0e, 0x0b08050b, 0x0d160c05, 0x820c3c18, + 0x100c2b35, 0x181c0804, 0x09142918, 0xe382070f, 0x0d06022e, 0x010d0509, 0x1a0c040b, 0x030c0c0c, 0x03364d82, 0x3e1f0a23, 0x3e7e3f1f, 0x0c040805, + 0x0a060815, 0x01030104, 0x1a821103, 0x140a063f, 0x203f2009, 0x0e29562b, 0x0f070e1b, 0x15291505, 0x37112311, 0x48fc376f, 0x07111a0f, 0x20b48212, + 0x08da8202, 0x1a075826, 0x050a0207, 0x04020607, 0x0508060a, 0x040a0305, 0x06020609, 0x02030513, 0x040b0303, 0x06010607, 0x05040511, 0x05210b82, + 0x305b8207, 0x0304040e, 0x050d0101, 0x03010806, 0x06040310, 0x082d8204, 0x01080725, 0x07051004, 0x05090303, 0x04030503, 0x040b0401, 0x05060605, + 0x01060610, 0x040d0201, 0x07030e0a, 0x83030a0a, 0x340f823d, 0x02030904, 0x02020a02, 0x02020409, 0x02050204, 0x04040501, 0x2288820b, 0x82030201, + 0x04022470, 0x82070303, 0x07012a13, 0x02010401, 0x09020108, 0x21338209, 0x2a820103, 0x05010123, 0x20148202, 0x20038205, 0x3d008201, 0x1a080305, + 0x091b0d17, 0x01010403, 0x140a0c08, 0x0b130a08, 0x080a130c, 0x341b080f, 0x54820a1a, 0x0d091823, 0x2090821a, 0x24558204, 0x06050c04, 0x20558309, + 0x3c718203, 0x04070101, 0x09051207, 0x160c1619, 0x0820110b, 0x07072516, 0x14060c0e, 0x07050309, 0x26f98202, 0x150c050c, 0x820e060a, 0x03012a3a, + 0x0c080202, 0x0d1b361b, 0x29708202, 0x04070801, 0x0b02060a, 0x0d830201, 0x03060238, 0x050c1504, 0x04020408, 0x152b1605, 0x07122413, 0xaffe070e, + 0xfb82200e, 0x83060821, 0x01002b3c, 0x09015300, 0x77025308, 0x2d4b8d01, 0x2e312308, 0x65482701, 0x31302105, 0x2c05db47, 0x23012a27, 0x2207012e, + 0x30170706, 0x2f098231, 0x07010e27, 0x23222330, 0x22230626, 0x22312326, 0x16271283, 0x31231714, 0x82150614, 0x2606223c, 0x26168227, 0x22151614, + 0x87221526, 0x0622222f, 0x22578527, 0x8515010e, 0x26062244, 0x25118207, 0x30151416, 0x2f820139, 0x56820b82, 0x15232222, 0x0b820582, 0x17011e28, + 0x2223012e, 0x7b841506, 0x23243b82, 0x1c232226, 0xe4443b83, 0x15302406, 0x44141516, 0x2d820737, 0x15012a22, 0x26243082, 0x012a0722, 0x27232d82, + 0x82171614, 0x84222048, 0x22062763, 0x07220627, 0x17832623, 0x23209482, 0x3e225282, 0x70853501, 0x2a822482, 0x0e21dd82, 0x20ec8201, 0x82948527, + 0x06262105, 0x0884ef83, 0x0622ee83, 0x4e840714, 0xe7822320, 0x16216c82, 0x09684406, 0x48013e21, 0x1182059e, 0x7a4e3720, 0x16362108, 0x2b05034c, + 0x07061617, 0x32071606, 0x26343736, 0x2205e656, 0x82362627, 0x16172126, 0x48096544, 0x37220595, 0x02833616, 0x373c4d84, 0x07272622, 0x162e17ed, + 0x03162f17, 0x02010306, 0x03050201, 0x070e0701, 0x010d190d, 0x04260e82, 0x0d1a0d04, 0x0a830101, 0x01241d82, 0x050b0401, 0x07832083, 0x012a1582, + 0x05030503, 0x05020717, 0x39820102, 0x01251083, 0x08040204, 0x21498204, 0x13820702, 0x05281583, 0x0c06060c, 0x04020107, 0x02211e83, 0x2b158204, + 0x09020403, 0x0401090d, 0x030a0301, 0x08245182, 0x03060403, 0x02251882, 0x03020203, 0x831c8201, 0x0103234a, 0x22821309, 0x06212d83, 0x23518303, + 0x09030407, 0x08224282, 0x9c820710, 0x04223b82, 0x27820308, 0x02202d82, 0x05240082, 0x0a140a02, 0x6a827582, 0x1f840b20, 0x0b050135, 0x13281206, + 0x11162c16, 0x743a1121, 0x2344223a, 0x82142814, 0x0e092f52, 0x14291508, 0x03031408, 0x03080501, 0x44820703, 0x820f0621, 0x0d6608c5, 0x0a081106, + 0x05030913, 0x0b1e0d05, 0x1b122412, 0x381c1b37, 0x2b572c1c, 0x0c142a15, 0x1c0f0d19, 0x060e090e, 0x010b180d, 0x02060206, 0x09120902, 0x0a0f0601, + 0x01010e05, 0x20120302, 0x0e1d0f11, 0x1b010406, 0x3e1f1c37, 0x43874320, 0x13203f1f, 0x1f101326, 0x1c412210, 0x19041207, 0xef011934, 0x07070603, + 0xe0820b10, 0x01233283, 0x82070401, 0x010123e9, 0x01820301, 0x0120c783, 0x5a820e84, 0x05240882, 0x04080b03, 0x4705e443, 0x148206ea, 0x03820220, + 0x02030725, 0x84050304, 0x07022521, 0x04010202, 0x27077541, 0x02010a02, 0x03010208, 0x16822482, 0x02865682, 0x07840320, 0x01010324, 0x1f830308, + 0x3c821e82, 0x02020423, 0x822b8205, 0x8201203c, 0x2013843f, 0x22058301, 0x82112311, 0x130a2807, 0x05090609, 0x82040704, 0x0308296a, 0x03010303, + 0x02030403, 0x0128ad82, 0x020a0105, 0x0c030202, 0x27083b82, 0x0a060206, 0x040c180c, 0x07010609, 0x0504070e, 0x142f1608, 0x04030407, 0x140a040a, + 0x0b0b0a09, 0x04020102, 0x0b020605, 0x03233c82, 0x82091005, 0x0122080a, 0x0b020307, 0x0a140a06, 0x0e060c07, 0x03010f1f, 0x0c020803, 0x0b060916, + 0x0d1c0e09, 0x01041104, 0x66820b02, 0x01010324, 0x9c820d0f, 0x6c820120, 0x030b2a08, 0x0917200a, 0x04010b0e, 0x50000a00, 0x54080d01, 0xf3007102, + 0x0c01ff00, 0x25011901, 0x3b013201, 0x52014401, 0x00006801, 0x088b4801, 0x47222621, 0x8548057d, 0x822e2009, 0x220283a0, 0x52260623, 0x154d061c, + 0x22232307, 0xe751020e, 0x20088308, 0x06484306, 0x430ef647, 0x33260872, 0x1e151632, 0x3f851701, 0x480a685a, 0x37220538, 0x38913632, 0x9c433720, + 0x32162105, 0x22052c52, 0x4f011e17, 0xa04f05ee, 0x48272005, 0x36240b68, 0x013e0716, 0x82059f43, 0x3e35241d, 0x52321701, 0xed430aef, 0x05fc5408, + 0x48053121, 0x3f20091d, 0x220a2948, 0x8b25013f, 0x89172018, 0x8b37200c, 0x84022031, 0x06072217, 0x822d8536, 0x0e172508, 0x012e2701, 0x0725ae82, + 0x07363730, 0x05154525, 0x3a20ec82, 0x20088684, 0x3127032e, 0x65341908, 0x18331b33, 0x05050b06, 0x2e160705, 0x22432217, 0x1a142815, 0x1a0c1933, + 0x0814820c, 0x0b0f0729, 0x0b081007, 0x1d080508, 0x1a31190f, 0x12132714, 0x30191320, 0x67673319, 0x4a253264, 0x0d190d23, 0x040b1f0e, 0x82060408, + 0x104e0804, 0x0b110908, 0x190b140b, 0x47221a33, 0x1b371b25, 0x2f1c391d, 0x33192f5f, 0x0a160b19, 0x05030202, 0x17291804, 0x301c381c, 0x964b2f61, + 0x214b2546, 0x0409180c, 0x170b041e, 0x02040311, 0x1e060b05, 0x64302043, 0x17311732, 0x21152a16, 0x08822140, 0x162c1523, 0x25998205, 0x0504040d, + 0x02830502, 0x0408012b, 0x10021003, 0x230e090a, 0x2c34820b, 0x05010101, 0x09070609, 0x05090403, 0x261a8205, 0x2d030305, 0x82040101, 0x22113e33, + 0x34673312, 0x18182e17, 0x341a1830, 0x19402318, 0x0f0d1c0e, 0x94f80f1d, 0x0713180e, 0x38248210, 0x49010202, 0x0811190e, 0x04010310, 0x01020302, + 0x1a0e0302, 0x03110810, 0x2a0d8202, 0x0d470201, 0x1107101a, 0x82050303, 0xf7fd2126, 0x0f230c83, 0x82040404, 0x3a012426, 0x820e1c0c, 0x06032302, + 0x3e820d02, 0x140d3108, 0x3d06030b, 0x08040804, 0x24090309, 0x0201010f, 0x0803d201, 0x32633203, 0x0a204221, 0x06070a13, 0x5d5e2e06, 0x15022f5e, + 0x070e0704, 0x06040e18, 0x04254482, 0x05020209, 0x24768302, 0x04030405, 0x32b08203, 0x02020b08, 0x07090104, 0x0804110b, 0x01010211, 0x820f0506, + 0x0b053722, 0x180c1014, 0x070e0610, 0x050d1209, 0x0c06050a, 0x08110905, 0x02820d08, 0x170e0729, 0x081b0f0c, 0x82040d06, 0x02062e7b, 0x01030103, + 0x02100301, 0x02050b06, 0x3db58317, 0x09060304, 0x21101e1f, 0x0a0f0816, 0x0c052305, 0x020d0313, 0x13050706, 0x1c130d19, 0xd482060d, 0x82010421, + 0x08012234, 0x827f8303, 0x0c2108b5, 0x09110903, 0x030d150e, 0x0b030309, 0x15301002, 0x0308120c, 0x0a020307, 0x01070301, 0x04060901, 0x21618204, + 0xb3830108, 0x01062208, 0x04020101, 0x060d0602, 0x02020703, 0x02010107, 0x1d1f0d09, 0x02112011, 0x0f6c0305, 0x08040724, 0x2b938208, 0x0e1b0103, + 0x07040b20, 0x04090508, 0x7c26d082, 0x050b1f0e, 0xc4820805, 0x02010325, 0x861e0d05, 0x0102220c, 0x250b82cc, 0x06060404, 0x1882060a, 0x1a0d1938, + 0x0c190c0c, 0x0e510503, 0x16060920, 0x0905030b, 0x01010402, 0xb782080f, 0x02010123, 0x8276823f, 0x820120ba, 0x0503234f, 0xc0820301, 0x00820020, + 0x54000836, 0x54088600, 0x7700f502, 0xac009000, 0x3601cf00, 0x6b014f01, 0x20059148, 0x06904c03, 0x23012a25, 0x4c23012e, 0x21440778, 0x271d8308, + 0x26353426, 0x013e3736, 0x220b755e, 0x55140607, 0xd04309fa, 0x26362105, 0x47094953, 0x1e44099d, 0x012e280d, 0x011f2627, 0x83013e25, 0x0616213c, + 0x82091b4d, 0x06362460, 0x860e1337, 0x05534464, 0x250ae147, 0x010e023f, 0x164d0607, 0x89528605, 0x431a821d, 0xa64407bf, 0x0b6e5405, 0x27260624, + 0x4f853426, 0x3482c08c, 0x974c0e20, 0x84208309, 0x08f744c0, 0x16141722, 0x210dd944, 0x56823703, 0xbbd23120, 0x0736373f, 0x5124e803, 0x1f2b5654, + 0x150a203e, 0x0306030a, 0x06040204, 0x0904030e, 0x02070505, 0x080c8201, 0x130e0b96, 0x1c101c32, 0x14020305, 0x05010409, 0x070d1608, 0x0c080a1b, + 0x09221206, 0x0501020b, 0x0811070b, 0x1211170a, 0x0b070b29, 0x03090101, 0x03020804, 0x25070701, 0x0e1e1311, 0x02011c09, 0x100a0701, 0x0e240c04, + 0x271f3d1f, 0x8044274f, 0x0f1a0d3c, 0xfc0e0f1d, 0x0b1003ba, 0x0a08100b, 0x0802020f, 0x070e080a, 0x05040f07, 0x13090412, 0x0f0b390a, 0x060b070a, + 0x08060802, 0x16090810, 0x02030305, 0x01010202, 0x0408050d, 0x180c0204, 0x081f0c0d, 0x01010308, 0x34085982, 0x14060703, 0x0d1a0d07, 0x040d2010, + 0x170a0403, 0x1a0d0d0b, 0x5f2f6207, 0x1c371c37, 0x21214221, 0x11081d46, 0x03040608, 0x171d2108, 0x070b0e39, 0x03040903, 0x2cdc820b, 0x0f21080a, + 0x0a040b07, 0x160f0913, 0x085b8304, 0x08120724, 0x22090911, 0x07221119, 0x07061008, 0x4d070403, 0x091a0e1d, 0x0b020105, 0x02070409, 0x1c091303, + 0xbd821c38, 0x4c4e2837, 0x0a062349, 0x0498fc05, 0x100b0b0f, 0x030e0909, 0x070b0702, 0x21bc830f, 0xbc861104, 0x0c070927, 0x07080305, 0x24db8207, + 0x04030515, 0x43bc9001, 0x04220525, 0xbc8b0507, 0x820c1621, 0xe10128bc, 0x0c152018, 0x82050404, 0x010125ef, 0x08050203, 0x6d085a82, 0x12090902, + 0x0f241409, 0x05081514, 0x140a1116, 0x13291609, 0x0f090e09, 0x13050b19, 0x0b160809, 0x2c23421f, 0x36192c5b, 0x101f1116, 0x10102d14, 0x12080d2a, + 0x070e090b, 0x0f0b150a, 0x12110e24, 0x0c0d0101, 0x0d0e1d09, 0x30120b26, 0x02020803, 0x05040702, 0x360f0908, 0x09110b22, 0xbb0a0a14, 0x02021e08, + 0x3b08070d, 0x04070a0b, 0xfb820804, 0x1d08073a, 0x12251307, 0x020a2ffe, 0x0a13090c, 0x05051004, 0x0606050b, 0x0812080c, 0x2c08ea83, 0x0407040a, + 0x150bb803, 0x14140b0b, 0x200f162e, 0x081a0b0f, 0x0b060407, 0x1d0d0b17, 0x04070610, 0x0d0b160d, 0x1c4a190c, 0x0c060c2f, 0x30708303, 0x2f030c01, + 0x0d200c13, 0x0a0c2a1e, 0x3412160f, 0x08cf8213, 0x07150747, 0x0909160b, 0x1401031d, 0x12241105, 0x17213c1e, 0x5328172d, 0x11211124, 0x090c3e10, + 0x1c121225, 0x13231211, 0x09141526, 0x14090f1c, 0x102e0609, 0x09080c07, 0x04040104, 0x050a0504, 0x241e1505, 0x04090413, 0x36bcd5cf, 0x00020000, + 0x0626005d, 0x005b0316, 0x00de00c2, 0x012e0100, 0x58013e35, 0x232c0b4a, 0x0e072622, 0x06220701, 0x23362627, 0x2405c044, 0x2227012a, 0x82178206, + 0x22028326, 0x83232622, 0x8306200e, 0x012e2123, 0x07221782, 0x32831606, 0x82220621, 0x8227202f, 0x223e8211, 0x5d151606, 0x162005e2, 0x8206b358, + 0x05f75423, 0x2105a444, 0x17871415, 0x17010e22, 0x33272984, 0x3e37011e, 0x832e3301, 0x09eb5005, 0x2305584c, 0x3435013e, 0x2506a044, 0x33013a33, + 0x7260033a, 0x01272108, 0xa54d7582, 0x20c98205, 0x8327833c, 0x83322021, 0x0757087e, 0x03011406, 0x040d0101, 0x09020115, 0x0a130b0b, 0x080a0b08, + 0x0203071f, 0x010f0102, 0x07080504, 0x6e37070d, 0x11231137, 0x07030305, 0x5d2f060c, 0x162c162f, 0x320a0a0c, 0x170f3263, 0x06170810, 0x06051404, + 0x08050522, 0x09200f05, 0x040d0e06, 0x08020309, 0x82100402, 0x0c220853, 0x020a0504, 0x04020503, 0x24111017, 0x0f080b0b, 0x1209130a, 0x1b1a1125, + 0x08030306, 0x060a0602, 0x48821b10, 0x09013608, 0x070e070f, 0x242e582e, 0x1204254a, 0x03060303, 0x04050d05, 0x2b0d180b, 0x1428150f, 0x0d0a150b, + 0x0608050b, 0x1b0c0e14, 0x21432111, 0x67676733, 0x040e0a34, 0x08238207, 0xfd021033, 0x11220803, 0x0b0d250d, 0x01020409, 0x21111128, 0x02021c11, + 0x0aee0207, 0x0d0b0b14, 0x0a040402, 0x0c03030e, 0x04010506, 0x020a0204, 0x0c040101, 0x21e98201, 0x0a820105, 0x010f4108, 0x0603010a, 0x04041804, + 0x08041b04, 0x020c0f17, 0x02010601, 0x030f0203, 0x08071308, 0x13090a0d, 0x0507110a, 0x0f0f1005, 0x0301010a, 0x0e191c04, 0x0f060e18, 0x0d190c06, + 0x1d264c25, 0x230b1e3c, 0x02324482, 0x0d020301, 0x0f0b240a, 0x3d1f0f1d, 0x112e1b1f, 0x1283110a, 0x47820220, 0x2d150d33, 0x09280f14, 0x0b021609, + 0x10132713, 0xcdfe1027, 0x2f6b8212, 0x09060b05, 0x12251307, 0x1331031a, 0x000d1f0f, 0x04330082, 0x25004f00, 0x5a039309, 0x0c019100, 0x4a012c01, + 0x4e010000, 0xae460a77, 0x23172708, 0x0607010e, 0x02822326, 0x42262221, 0x0624067f, 0x15071716, 0x27231684, 0x600f012e, 0x1525088a, 0x14171614, + 0x2c2c8306, 0x012f0622, 0x2e35012e, 0x26342701, 0x0a895a27, 0x20065347, 0x062f4226, 0x23823720, 0x36227382, 0x05821716, 0x06823520, 0x15163228, + 0x33363217, 0x05823216, 0x21011f24, 0x208a1735, 0x20833320, 0x86011e21, 0x08ee5a19, 0x010e0724, 0x73842317, 0x3f662620, 0x06142106, 0x0f218882, + 0x60a08501, 0x8a5708d2, 0x05114706, 0x843e3521, 0x8235209c, 0x3437249e, 0x84333736, 0x853720f8, 0x3e37221b, 0x230f8201, 0x012a0527, 0x200f2f54, + 0x2218831e, 0x83263637, 0x05232527, 0x23072622, 0x21055247, 0x96831733, 0x3f21c483, 0x081b8301, 0x23012aef, 0x09038804, 0x090e0505, 0x04060d07, + 0x0702010b, 0x01080303, 0x51010602, 0x0b020302, 0x1d0f0b1c, 0x1a351a0f, 0x170e1d0e, 0x02161020, 0x3e1c0a02, 0x1321131e, 0x17153416, 0x0805080a, + 0x06040911, 0x08070305, 0x1f1a4017, 0x010c1c3e, 0x12201401, 0x05010202, 0x01090202, 0x080e1d10, 0x0f0d0910, 0x143a0a10, 0x0603030a, 0x18150815, + 0x02050208, 0x190f0404, 0x101d0e0e, 0x040c170c, 0x3d1f0403, 0x1325121f, 0x080d220d, 0x01d61102, 0x04060203, 0x0f0e170f, 0x180c101e, 0x0103070c, + 0x0940803f, 0x04030e02, 0x2e160209, 0x0c0b0306, 0x55010402, 0x17371604, 0x211c361b, 0x180c1a38, 0x05080202, 0x22451f0a, 0x11226527, 0x0d08070c, + 0x1516110b, 0x3c1e1731, 0x0b05021d, 0x02080905, 0x12231302, 0x09010502, 0x21080205, 0x06260f0d, 0x088b820d, 0x07010937, 0x19071506, 0x33fd071f, + 0x13112311, 0x0907111c, 0x02050602, 0x0f060c06, 0x1d0e111d, 0x04332f0f, 0x05080102, 0x04350d11, 0x0b210d74, 0x05190d04, 0x03070302, 0x241d8214, + 0x2f0f1e0f, 0x2e8d8231, 0x190d1205, 0x2e031932, 0x06040a06, 0x83020104, 0x0d082bb5, 0x1f080d19, 0x1a361a0a, 0x71820603, 0x01015d08, 0x05030102, + 0x35140f19, 0x0b020a19, 0x02010215, 0x050a0302, 0x10190d0d, 0x0f1c391c, 0x2714101a, 0x08191114, 0x0c03050e, 0x0a150b0f, 0x020a0502, 0x1f100206, + 0x1224120f, 0x13214120, 0x2c191327, 0x0407141c, 0x060c130a, 0x29140106, 0x0e1b0d1c, 0x01010806, 0x0c060305, 0x03011b01, 0x182f7182, 0x01010104, + 0x2e030d03, 0x07080f08, 0x82020107, 0x191021a3, 0x06251982, 0x0202090f, 0x2c29820a, 0x1b130507, 0x0b310e16, 0x091e3c1e, 0x322c8308, 0x180a170a, + 0x070d0611, 0x0b041906, 0x02130c04, 0x82191a02, 0x381a289d, 0x20522319, 0x8202030b, 0x1405253b, 0x04090410, 0x063adf82, 0x0e190e05, 0x21132514, + 0x4a221e41, 0x09142524, 0x081b0702, 0x33170905, 0x8482ba24, 0x0b05082b, 0x0c190c06, 0x04060b06, 0x3384820d, 0x0e101707, 0x10090d18, 0x05030607, + 0x0d0e0d07, 0x06140c1a, 0x06391783, 0x20131218, 0x00060f09, 0x57000200, 0xd4042400, 0x98005a03, 0x0000b700, 0x05d26301, 0x66062221, 0x032010be, + 0x85451183, 0x16262105, 0x2706d242, 0x0607010e, 0x14161716, 0x820be945, 0x1415211a, 0x36261482, 0x37013e37, 0xda4a3632, 0x0c476905, 0x37343629, + 0x1617013e, 0x4a363732, 0x36210728, 0x43268234, 0xc066058a, 0x82172008, 0x36342226, 0x28448235, 0x01272634, 0x1415011c, 0x27818626, 0x3c353626, + 0x32343501, 0x69822a84, 0x15066008, 0x0c02ce04, 0x050a050c, 0x14070c04, 0x6633152a, 0x020a0332, 0x0c030503, 0x69350c17, 0x1235696a, 0x0f081325, + 0x1b301807, 0x0a06070c, 0x090c0614, 0x010a0405, 0x121c4802, 0x08040308, 0x050b0604, 0x0507120b, 0x0e0d0d06, 0x4d27132e, 0x082e1127, 0x02030701, + 0x02040305, 0x02050904, 0x82010206, 0x0c112b2c, 0x160c1014, 0x254b260b, 0x1c822415, 0x00820120, 0x0e090431, 0x1e0d1024, 0x3265320d, 0x0203090f, + 0x8203083a, 0x08178228, 0x20fe0525, 0x381c0c2c, 0x0b2c0c1c, 0x0d250208, 0x042b582c, 0x02050207, 0x1e093003, 0x23010102, 0x03030201, 0x820f0501, + 0x132b0856, 0x0c0f0705, 0x12173415, 0x222a1121, 0x1016090d, 0x0c081209, 0x25110c16, 0x25492412, 0x10183117, 0x050f0c19, 0x01050101, 0x8204180f, + 0x020c3273, 0x12091109, 0x14091223, 0x080f080a, 0x090d3814, 0x084f8205, 0x06090130, 0x0b151603, 0x11080c18, 0x05130a08, 0x02031509, 0x060c1f02, + 0x0c060303, 0x06050606, 0x1a0b180b, 0xccfe1931, 0x130a150a, 0x05070502, 0xc582071e, 0xf6821420, 0x00091b33, 0x4b000200, 0x73052600, 0x94005a03, + 0x0000a700, 0x07af4701, 0x28058f44, 0x17160607, 0x1415011e, 0x200e8206, 0x05f84127, 0x41071d51, 0x232208fe, 0xb354012a, 0x22372905, 0x36262726, + 0x15011c37, 0x44089858, 0x2e2305e0, 0x693c2701, 0x4860052c, 0x1632270a, 0x33361617, 0x0284033a, 0x65330121, 0xc14505e3, 0x05956805, 0x82063221, + 0x0517217a, 0x22215d82, 0x85818206, 0x35840821, 0x05233634, 0x14210a73, 0x4f271428, 0x162a1627, 0x0302360c, 0x06010402, 0x51280212, 0x13291328, + 0x0a0b160b, 0x19110b0d, 0x0e1c1409, 0x07080f08, 0x10010216, 0x060d060d, 0x013e7b3e, 0x28140203, 0x060d0e0d, 0x0b162b19, 0x0f0b0c18, 0x28041108, + 0x0a0a150b, 0x04070106, 0x0e071c04, 0x0a06060a, 0x02070d0d, 0x2b020e01, 0x2a545454, 0x7473743a, 0x254c263a, 0x03081109, 0x0a020101, 0x06020805, + 0x07080106, 0x013b5682, 0x02040101, 0x4e2803fe, 0x020d1128, 0x28502811, 0x12030f0d, 0x4c18c002, 0x82030203, 0x8201201a, 0x11042c00, 0x08142813, + 0x16030812, 0x82020405, 0x0203327b, 0x04020702, 0x441f0d27, 0x14291522, 0x0e163216, 0x23a08313, 0x18371614, 0x26082d82, 0x11224420, 0x29101120, + 0x175b2512, 0x06050a05, 0x29140a19, 0x08110814, 0x08070b07, 0x03010102, 0x01020a0b, 0x82030d09, 0x03042286, 0x30018201, 0x06150402, 0x7d1b341b, + 0x3f091210, 0x4409100d, 0x2f008200, 0x00550002, 0x03970425, 0x0093005a, 0x010000c4, 0x26053347, 0x2a232226, 0x84062301, 0x16222105, 0x8206ad41, + 0x36222111, 0x26210b8a, 0x4a268227, 0x06210511, 0x08da4126, 0x8805254e, 0x4e08820e, 0x27200bb7, 0x2e205f85, 0x2306c949, 0x33321633, 0x4607eb5a, + 0x352b05fe, 0x36373634, 0x36323716, 0x82323633, 0x3e352605, 0x06052701, 0x05685314, 0xeb490582, 0x08b35205, 0x82060d47, 0x36262154, 0x36214b83, + 0x236c8216, 0x01960407, 0x0a2afe82, 0x190d160c, 0x68341932, 0x3a4d0434, 0x03053405, 0x091a351a, 0x05050914, 0x0e1e0e04, 0x0f3c783c, 0x82020f1d, + 0x0f330800, 0x030d0303, 0x09040404, 0x12090a19, 0x031c0b06, 0x11120103, 0x0a14122c, 0x05090305, 0x0f0b160a, 0x10090916, 0x0d170103, 0x301b351b, + 0x32093062, 0x83190516, 0x02390860, 0x0c170a05, 0x08051c03, 0x3c1d080f, 0x264f271d, 0x01021e08, 0x04010203, 0x220e1215, 0x1f3f1f0f, 0x14142714, + 0x01010105, 0x0b019dfe, 0x16081708, 0x6119162a, 0x1e0c0c01, 0x37618210, 0x0a0b2101, 0x190e0d15, 0x040b0603, 0x02021408, 0x31180e0a, 0x02180218, + 0x0228aa82, 0x101e0fde, 0x0607160a, 0x24082b82, 0x0302010d, 0x020d0201, 0x05050705, 0x2a0f0915, 0x10421712, 0x0d0c0b0f, 0x190e171a, 0x19331a0c, + 0x1d214020, 0x2550833c, 0x0a050b05, 0x46820a13, 0x060d0337, 0x120c190d, 0x3f211020, 0x01570820, 0x01010201, 0x04010707, 0x821d820c, 0x11132556, + 0x01030404, 0x2c280082, 0x152b150d, 0x06170af1, 0x3e080d84, 0x26030302, 0x0e0e2211, 0x04280103, 0x06061a0d, 0x0904050b, 0x06070201, 0x130e190a, + 0x13060104, 0x0f210e03, 0x00030000, 0x04250059, 0x0059038e, 0x01d400ce, 0x0100001e, 0x26273634, 0x49363706, 0x1420079e, 0x6d45b482, 0x3c353606, + 0x010e2301, 0x23223635, 0x2326022a, 0x2615011c, 0x06142322, 0x05b14807, 0x07061624, 0x02821406, 0x32161723, 0x057e5817, 0x21058158, 0x11460616, + 0x87172005, 0x08464229, 0x010e1522, 0x2206e361, 0x58173614, 0xde5c05ab, 0x611e2005, 0x16240541, 0x27263435, 0x240b1f4c, 0x3e37013e, 0x05465101, + 0x013a3322, 0x17210282, 0x82238232, 0x823620ae, 0x05644229, 0x33221785, 0xc0821632, 0x372a1482, 0x17163601, 0x06012622, 0xa76c2726, 0x06072107, + 0x21078746, 0x4e823634, 0x4205fa58, 0x372105ce, 0x294b8232, 0x27303506, 0x012e2326, 0x55822627, 0x36373622, 0x16204982, 0x08061862, 0x07011c8a, + 0x04038b04, 0x03020905, 0x2c160824, 0x3b763b16, 0x17030303, 0x172f1804, 0x0306110a, 0x0a09010c, 0x62626231, 0x08110831, 0x0e050514, 0x01060406, + 0x05070401, 0x01010201, 0x02030405, 0x12071307, 0x07060c23, 0x0b090101, 0x010a0203, 0x0604020b, 0x070e0403, 0x03020403, 0x06060202, 0x0d3a0501, + 0x06090305, 0x240c060f, 0x19341a0d, 0x0a0a0e0a, 0x12060a14, 0x080a0317, 0x01040407, 0x04020802, 0x0a04040b, 0x01070202, 0x062b5482, 0x39713907, + 0x03183118, 0x82080412, 0x0b0b365d, 0x0e092306, 0x371c0e1c, 0x0242091c, 0x02010303, 0x050394fc, 0x395c8201, 0x070c0119, 0x24120e08, 0x20402112, + 0x01010110, 0x0d01010a, 0x16030412, 0x9f820a06, 0x07122808, 0x090c1208, 0x04060a15, 0x060f0204, 0x12090105, 0x08010a07, 0x162d1605, 0x040a170e, + 0x0302010f, 0x03120425, 0x820a0405, 0x01012f0a, 0x04061906, 0x040c0202, 0x0501010b, 0x4083010a, 0x110c5508, 0x0a150a0b, 0x0a0a1709, 0x19040505, + 0x07110706, 0x04010306, 0x03040402, 0x08101c09, 0x0c070a0c, 0x05170505, 0x03031003, 0x11060318, 0x0d1b0d07, 0x07060f05, 0x26100710, 0x04040511, + 0x0b050805, 0x0f190b17, 0x030e0307, 0x07030202, 0x06030108, 0x03060306, 0x0736e782, 0x0f340c04, 0x09091808, 0x1b0f080f, 0x0d190d0f, 0x090a180a, + 0xa2820916, 0x0805013b, 0x30020513, 0x09120905, 0x060b1010, 0x190c0504, 0x351a1936, 0x0119fd1a, 0x25de8202, 0x0102088e, 0x0a82020e, 0x0b0c1322, + 0x12350282, 0x070c0a0b, 0x03020905, 0x110f082e, 0x060c0b0b, 0x12010104, 0x2ed78202, 0x0d050203, 0x0e200d08, 0x05010e06, 0x82010106, 0x03082872, + 0x08112312, 0x82000810, 0x00023900, 0x08260053, 0x005a03fb, 0x008c0064, 0x012f0100, 0x21270721, 0x15230727, 0x43080182, 0x35072735, 0x21152327, + 0x21352315, 0x0f15022f, 0x27072701, 0x14070622, 0x0f021f16, 0x1e011f01, 0x011e1701, 0x010e020f, 0x0f010e07, 0x37270501, 0x013f1713, 0x033f021f, + 0x013f013e, 0x35013f21, 0x15333527, 0x17280182, 0x17372137, 0x27023f21, 0x2f212c82, 0x07e94204, 0x36833f20, 0x06072809, 0x37011f16, 0x3634012f, + 0x021f033f, 0x08f80815, 0x0a46fe07, 0x0da9fe0a, 0x1c2b960a, 0x48080a0b, 0xfeafd2fe, 0x175c09c7, 0x072b131e, 0x02090810, 0x350a0504, 0x260b0103, + 0x0604130e, 0x140a0203, 0x090a1a10, 0x0103040e, 0x49031035, 0x16161a0a, 0x17961525, 0x06023a0e, 0x46010603, 0x1e070703, 0x090d9131, 0x06095701, + 0x0905bf01, 0x55fa0204, 0x473f1d15, 0x19252a1f, 0x03020104, 0x1305080a, 0x0910170d, 0x0501010b, 0x060a0b06, 0x11050602, 0x100aa423, 0x1e2d0302, + 0x06010409, 0x17142a06, 0x0a1a010d, 0x07060527, 0x39190d02, 0x02261c5e, 0x0a050807, 0x15060303, 0x050d0c21, 0x0d050509, 0x23291a09, 0x5227274a, + 0x1703472b, 0x03360123, 0x0c030503, 0x10050508, 0x0308058c, 0x18063103, 0x1a153206, 0x04030605, 0x35381e0d, 0x413cecfe, 0x02020304, 0x14091d10, + 0x09120a0b, 0x06040a06, 0x0f1a0c13, 0x180d1608, 0x0a1d0e07, 0x24170812, 0x0e090101, 0x02000009, 0x26006500, 0x5f03f605, 0xb4017b01, 0x55010000, + 0x1e240505, 0x06141501, 0x23064148, 0x36372632, 0x5906c55c, 0x1522053a, 0x1d821614, 0x17301724, 0x68443516, 0x16322e05, 0x15011c15, 0x32231626, + 0x16261736, 0x210b8235, 0x11830616, 0x23261427, 0x010f2622, 0x05e74806, 0x0f060729, 0x27261401, 0x51270626, 0xad440700, 0x23222407, 0x44070622, + 0x3e8208bc, 0x17321422, 0x830af750, 0x08354526, 0x23012a2d, 0x2627012a, 0x013c3536, 0x82010e35, 0x3435265f, 0x3d343526, 0x29178401, 0x15162223, + 0x22272226, 0x4d822306, 0x82101f45, 0x06072262, 0x057b4432, 0x21068d4e, 0x8c84012e, 0x2a272624, 0x9b833501, 0x27513420, 0x3e372208, 0x55f68201, + 0x1a820b6c, 0x56373521, 0x27250972, 0x3435012e, 0x47808206, 0x0e840593, 0x7c662620, 0x22388608, 0x74373635, 0x4d82059a, 0x27013e2c, 0x26173616, + 0x011e3336, 0xa4491415, 0x33012b05, 0x3b16023a, 0x26343101, 0xef6f0337, 0x011e2108, 0x8505d84f, 0x20de8257, 0x82ea8427, 0x141522bd, 0x23398206, + 0x26331632, 0x15225683, 0x22823634, 0xfd023536, 0x05111c11, 0x0204050d, 0x5a2d0101, 0x252d5b5a, 0x0305264c, 0x02310c82, 0x0d020201, 0x07120903, + 0x01080701, 0x0b040402, 0x34048202, 0x0c010301, 0x08150904, 0x01010902, 0x18070709, 0x07020105, 0x38008302, 0x050e0303, 0x2f264c26, 0x05032f5e, + 0x2e060b02, 0x090f0c09, 0x020c0d04, 0x231c8204, 0x06070903, 0x27082484, 0x1b021301, 0x160c1b37, 0x0305090b, 0x05050303, 0x03260409, 0x130f1d0f, + 0x02091326, 0x05142914, 0x07010207, 0x05040205, 0x02277e82, 0x04010502, 0x82010204, 0x01033f60, 0x02030303, 0x13060904, 0x06130902, 0x10152715, + 0x0b051320, 0x10160706, 0x03070202, 0xab820602, 0x82010121, 0x030134ad, 0x0707110b, 0x05020716, 0x10080103, 0x02010302, 0x82010106, 0x8205209d, + 0x07192750, 0x06061008, 0xb7820407, 0x12820320, 0x03040422, 0x3883cd82, 0x04010929, 0x0c060202, 0x821b0706, 0x01022571, 0x11050a0b, 0x32086f82, + 0x2a150615, 0x5d5e2f15, 0x01012f5e, 0x05044502, 0x07150608, 0x020c180c, 0x12030813, 0x08100101, 0x020b140e, 0x0d02090e, 0x07030703, 0x393e3209, + 0x82030107, 0x01012a73, 0x44030401, 0x040b1209, 0x24738207, 0x01120207, 0x23bf8303, 0x0f020201, 0x08240782, 0x04030202, 0x0332d582, 0x01080104, + 0x02100305, 0x0402020b, 0x030a0402, 0x91820103, 0x07020532, 0x07040710, 0x03010803, 0x01070804, 0x09010c03, 0x04231e82, 0x85010309, 0x080a2300, + 0x0282070f, 0x091e092d, 0x0a080c04, 0x0d060913, 0x82060206, 0x180830a9, 0x05090a07, 0x0e080903, 0x5e2f0e20, 0x8211032f, 0x07053bd4, 0x7339081f, + 0x030d0339, 0x0b1a0805, 0x130c0c01, 0x20010108, 0x06020b01, 0x65820506, 0x05060538, 0x08030a03, 0x0803080d, 0x050a0502, 0x0c030609, 0x05180a02, + 0x3a820602, 0x99820220, 0x01090131, 0x09040407, 0x101b1205, 0x02080e07, 0x82030104, 0x03093689, 0x110f220b, 0x06040d1d, 0x010d0203, 0x070a0d09, + 0x06060208, 0x27be8207, 0x05040a04, 0x02080808, 0x0b333d82, 0x020a0102, 0x06040902, 0x1e0f0815, 0x07150a0f, 0x82020904, 0x02012f3d, 0x01030201, + 0x02030206, 0x03040704, 0xd182090f, 0x04820b20, 0x0f030532, 0x01010401, 0xfe051207, 0x041408a1, 0x150c0102, 0x0438ff82, 0x04030909, 0x0b030b0a, + 0x03110303, 0x02010301, 0x1103071b, 0x050c0504, 0x052b6082, 0x010e0405, 0x04040504, 0x82000406, 0x00033a00, 0x0526005a, 0x005a032d, 0x01dc00cc, + 0x0100000d, 0x3e333216, 0x3a163301, 0x20068202, 0x05084337, 0x3305b751, 0x2a071416, 0x16062701, 0x23010e07, 0x36072606, 0x011e1716, 0x22056655, + 0x82031e23, 0x0e17230b, 0xf0430701, 0x22272207, 0x07534d06, 0x61270321, 0x062305ef, 0x4f141516, 0x7d5e0758, 0x0c3a5207, 0x0e223e82, 0x5c822701, + 0x27262225, 0x8235013c, 0x08005335, 0x37013e2b, 0x26272636, 0x36262706, 0x850b8227, 0x012e220e, 0x53208537, 0x36210518, 0x82b08316, 0x25ad8205, + 0x0517013a, 0x5d830622, 0x3e220c82, 0x3c822701, 0x06260522, 0x15209d82, 0x2205d24f, 0x8215011e, 0x824c8264, 0x36342218, 0x832a8435, 0x361621c1, + 0x83057344, 0x02ba08b2, 0x1b361b4b, 0x290d1b0d, 0x29525252, 0x09040202, 0x07040913, 0x04020506, 0x072a552a, 0x2b562b07, 0x02040304, 0x4f27060c, + 0x0c140d27, 0x06020503, 0x160b070e, 0x2221120b, 0x0f061121, 0x03060305, 0x0e050101, 0x06070506, 0x10070e08, 0x06061020, 0x1e1e0f02, 0x1c0d0f1f, + 0x030a070e, 0x01010402, 0x160d1a0b, 0x2513172e, 0x0f220f12, 0x0705120f, 0x0f070814, 0x01010204, 0x06031108, 0x0502090f, 0x2f5d2f03, 0x10040a05, + 0x06030624, 0x0b150a07, 0x0b060c05, 0x0a06091b, 0x142a1213, 0x14010208, 0x01060f2a, 0x08090201, 0x01010b06, 0x08040507, 0x060c0704, 0x0c050c05, + 0x98820b18, 0x060c0622, 0x42299382, 0x72fe4284, 0x01020502, 0x08288203, 0x07030536, 0x03090101, 0x1d11e401, 0x0d040110, 0x0b080302, 0x17100e06, + 0x01080a09, 0x01020601, 0x0a09160d, 0x1e01010d, 0x1e422013, 0x01041710, 0x18070802, 0x0341030c, 0x85829182, 0x23820120, 0x040d2a08, 0x01030b03, + 0x10230f01, 0x10221101, 0x01010407, 0x04100102, 0x05040602, 0x36010307, 0x366c6b6c, 0x03162a16, 0x0c060304, 0x24728205, 0x07010b01, 0x08358201, + 0x2f081030, 0x305e5f5f, 0x062d5b2d, 0x12090910, 0x0f1e0e0a, 0x08050b09, 0x08020208, 0x08070506, 0x1c0f1b05, 0x2b161c38, 0x0f1e0f16, 0x08090804, + 0x5582060d, 0x01012e08, 0x0d070205, 0x110d0206, 0x20183319, 0x1a0e2040, 0x1626150d, 0x0b0c2d14, 0x12050105, 0x10060607, 0x0b081006, 0x0c060715, + 0x050c0809, 0x84898202, 0x0101212f, 0x3b827a82, 0x01060c25, 0x82010224, 0x052108f7, 0x06030107, 0x02040604, 0x010f02a7, 0x08030503, 0x200f0a0e, + 0x090b050b, 0x240f0c17, 0x03050411, 0x08638202, 0x1b0a082f, 0x0620150e, 0x080f0607, 0x1c0d111d, 0x020d0b0b, 0x00050000, 0x0627005b, 0x005a03e3, + 0x00e600d6, 0x010601f3, 0x01000034, 0x16171614, 0x055e4b06, 0x7c4b0720, 0x522a2005, 0x07250637, 0x0607010e, 0x05916914, 0x58051c4c, 0xa9730548, + 0x73162006, 0x0721068b, 0x07024322, 0x50010e21, 0x0243057d, 0x05bd5805, 0xf0422720, 0x013e240b, 0x5c323637, 0x11820d69, 0x08431620, 0x833e2006, + 0x3233223e, 0x22208326, 0x43333236, 0x362a052c, 0x06323316, 0x15163233, 0x26483614, 0x3a332205, 0x890e8201, 0x033a2105, 0x82088c50, 0x23808208, + 0x06360537, 0x2325a882, 0x06072622, 0x21128232, 0x0f853733, 0x83360621, 0x8217200c, 0x2102823e, 0x06773632, 0x26222206, 0x06c55617, 0x82160621, + 0x05ed4e3c, 0x26342723, 0x44fc8223, 0xb1860729, 0x84263621, 0xc25008f9, 0x0101021c, 0x04070201, 0x05010402, 0x09140a06, 0x7878783d, 0x2f5c2f3c, + 0x07070510, 0x0401020a, 0x0d103508, 0x13170847, 0x2d141736, 0x071b1210, 0x03060c01, 0x0b030108, 0x0a15080b, 0x080c170c, 0x04010105, 0x05110201, + 0x02020708, 0x0c090c01, 0x39334982, 0x19311911, 0x100e2815, 0x31080303, 0x0a140a1e, 0x82081b0b, 0x047c085d, 0x0806060a, 0x0c1d0b05, 0x0909080e, + 0x0c060c0d, 0x050d0506, 0x0a101b16, 0x150b071b, 0x0e180d0c, 0x0407010b, 0x180d0408, 0x041b0710, 0x02020101, 0x04060312, 0x07020904, 0x08200906, + 0x05040503, 0x2513050c, 0x38703912, 0x11090b0b, 0x67331123, 0x1d336766, 0x1c0d1d3a, 0x080e080b, 0x01020506, 0xdefd0802, 0x0c092b05, 0x16030b18, + 0x03380c02, 0xfe122612, 0x12083305, 0x2e011124, 0x59080582, 0x24117d12, 0x0a150a12, 0x01071202, 0x190d0211, 0x0433080c, 0x0f08c3fc, 0x030d0d09, + 0x02080904, 0x05060409, 0x050f1106, 0x150c021f, 0x0509050c, 0x16100f08, 0x1b151a4a, 0x0101060a, 0x0a120602, 0x33030623, 0x0a161e15, 0x150d0a12, + 0x0817060d, 0x11041d04, 0x08122110, 0xc9820721, 0x11048e08, 0x133b1c0e, 0x0f0d0810, 0x2503171e, 0x0523050a, 0x0305020e, 0x05020206, 0x0c071c01, + 0x14080c17, 0x0f0d0c07, 0x0c0d180d, 0x0d0b0807, 0x0101150e, 0x01010203, 0x1b321813, 0x12397940, 0x2d151224, 0x0a150b16, 0x0d030408, 0x02040604, + 0x08090803, 0x0301030d, 0x03030101, 0x0101230a, 0x08050a0b, 0x03060202, 0x04080407, 0x060c040a, 0x02022703, 0x09010802, 0x04040106, 0x06030b01, + 0x0503040d, 0x02080606, 0x02040f28, 0x0e010b02, 0x083c8204, 0x02070151, 0xfe0c0402, 0x030805a1, 0x110e0203, 0x08030e18, 0x05040503, 0x0215230f, + 0x03060308, 0x120c180c, 0x02100b0f, 0x13130506, 0x130d1d0b, 0x11040707, 0x0000000f, 0x005d0003, 0x03e30426, 0x00e7005a, 0x000701f7, 0x011c0100, + 0x23260607, 0x7c150622, 0x22210562, 0x06374f16, 0x23262226, 0x0e070626, 0x06251d84, 0x011c2726, 0x24028215, 0x06072614, 0x07b34a16, 0x2607f051, + 0x3c353622, 0x4f343501, 0x262005d1, 0x200b4443, 0x08037f27, 0x26204182, 0x2005e942, 0x8471822b, 0x2306224a, 0x202c8222, 0x60238406, 0x3528098d, + 0x1e17011e, 0x17303301, 0x07228783, 0x5d4a2206, 0x012a2606, 0x06273127, 0x05544f36, 0x17433320, 0x24058205, 0x36353632, 0x081a6034, 0x32211786, + 0x05b64a26, 0x8305e043, 0x16322614, 0x32160517, 0x05484333, 0x82262221, 0x011721d5, 0xd082f182, 0x2c086d82, 0x2e37013e, 0xe3042301, 0x0a27070c, + 0x0d040110, 0x0e234622, 0x0d010105, 0x01020201, 0x03112211, 0x1109041a, 0x0914090e, 0x0f182e1b, 0x08138204, 0x150a0336, 0x1931190a, 0x100f0103, + 0x0a0c1a0d, 0x06020609, 0x04060301, 0x02091108, 0x0d070603, 0x0f380c0a, 0x09050a08, 0x1604040d, 0x0f1e0f04, 0x1b0c0c02, 0x0a110b04, 0x07264182, + 0x0b08030d, 0x43820302, 0x01024208, 0x9e501d01, 0x080f084f, 0x02010303, 0x28100504, 0x12241312, 0x030d1c0e, 0x02010115, 0x150b0910, 0x1528150a, + 0x2a244824, 0x33192a53, 0x02010419, 0x1024100c, 0x05020906, 0x2f180903, 0x04070318, 0x08468305, 0x390a0644, 0x0201110b, 0x0c170b12, 0xfe07070c, + 0x192d1708, 0x06062413, 0x1d0a163b, 0x0d050e0a, 0x0809c8fd, 0x06020201, 0x0704080d, 0x11c80204, 0x04070c16, 0x1a0b0d12, 0x04080b0e, 0x070d0608, + 0x05320101, 0x8182110b, 0x07014908, 0x2d5c2d0f, 0x09091009, 0x0f030505, 0x0d1b0d03, 0x021a351a, 0x1b05390a, 0x03111c36, 0x1203080e, 0x0f1d0e03, + 0x0c254b25, 0x1b0c0b0b, 0x01060c0a, 0x09050901, 0x03030312, 0x0b0b160c, 0x07020b16, 0x02030302, 0x060f0204, 0x273df082, 0x2c172751, 0x0e140e16, + 0x010b0e05, 0x01030403, 0x0a030707, 0x02010103, 0x0c010301, 0x05e64a01, 0x0b051229, 0x01020209, 0x820e0204, 0x08ff82d3, 0x04020d3f, 0x1c0e091a, + 0x022a0a15, 0x1008e90b, 0x02021d1a, 0x0a290705, 0x0b013301, 0x10080f07, 0x321a101e, 0x00020119, 0x00050000, 0x0924005a, 0x015a033d, 0x01c201a4, + 0x02e501d5, 0x01000007, 0x059c421e, 0x16171626, 0x36163336, 0x2a061749, 0x0e27010e, 0x26060701, 0x45061415, 0x07200529, 0x16210e83, 0x073d5215, + 0x0d520e84, 0x51342007, 0x062205c1, 0x2c832623, 0x013e2323, 0x223b8435, 0x83011e23, 0x0730254d, 0x16062306, 0x490cd862, 0x2e21052d, 0x05a24c01, + 0x23200585, 0x83098c5b, 0x05e16757, 0x33203582, 0x6c494b84, 0x080e6808, 0x850bab45, 0x2023842c, 0x20058203, 0x23908635, 0x32363336, 0x46086e7f, + 0x3e200f8d, 0x17239c83, 0x56173632, 0x834e05f0, 0x36142405, 0x87263435, 0x82088332, 0x323322ff, 0x27148216, 0x33013a33, 0x14150632, 0x23076174, + 0x1c153632, 0x16231182, 0x87263637, 0x3516211a, 0x2305c77c, 0x16170632, 0x34242682, 0x33163435, 0x16215f82, 0x05fe5206, 0x15210b82, 0x82118214, + 0x17362117, 0x50861482, 0x40183220, 0x3e240f31, 0x36343701, 0x2f82ad82, 0x9b823720, 0x17011e23, 0x05a84705, 0x89063221, 0x05c4432a, 0x35263225, + 0x84361401, 0x4736207f, 0x2325055b, 0x25152622, 0x06c45d36, 0x841e1721, 0x060268a1, 0x4a05d153, 0xf7640525, 0x057a4107, 0x08276508, 0x090e0caf, + 0x05250101, 0x04032609, 0x1b080a09, 0x0f140e0c, 0x08090402, 0x05060307, 0x19060619, 0x090e0705, 0x02020512, 0x05020204, 0x0a040302, 0x03033114, + 0x05030104, 0x0f040b03, 0x0f061314, 0x09100807, 0x01122611, 0x0e190d02, 0x040e1e0d, 0x07010307, 0x01080702, 0x09010305, 0x11080812, 0x090c0209, + 0x2b05a574, 0x02011405, 0x0b050203, 0x07110805, 0x033c4e82, 0x26130b03, 0x0f0f1012, 0x19142713, 0x0d061735, 0x060f0806, 0x02031203, 0x07030407, + 0x30080582, 0x060b0602, 0x02031109, 0x18060605, 0x10201106, 0x05023b05, 0x29140812, 0x0b130815, 0x2313300f, 0x2d17234c, 0x31613115, 0x52525229, + 0x035a1129, 0x369e8204, 0x14152b02, 0x9f501428, 0x274e2750, 0x130d1f0d, 0x21100f20, 0x820f0813, 0x0b062986, 0x11090f18, 0x060c0609, 0x04205c82, + 0x0b376282, 0x05090a03, 0x1f030202, 0x050a0505, 0x02020404, 0x0205011e, 0x82050110, 0x01042221, 0x26e38211, 0x020f0102, 0x82070b02, 0x02012113, + 0x072b8b83, 0x06061a01, 0x0302070c, 0x820f0201, 0x020626e0, 0x0301020e, 0x280b8203, 0x07050502, 0x0908011a, 0x080f821e, 0x0d070221, 0x08030906, + 0x10221002, 0x1c386e37, 0x0a041d39, 0x07150a04, 0x01010c03, 0x0e0e0301, 0x82050c05, 0x0a092c36, 0x2baefd02, 0x2b565556, 0x82203f20, 0x04270843, + 0x25120409, 0x3f7e3f12, 0x06183018, 0x0107060d, 0x0f557cfe, 0x0d0b150b, 0x1b07050d, 0x0a170a0b, 0xa3fd4e16, 0x82160707, 0x0c3008d1, 0x0f06080c, + 0x0b290e08, 0x0e075afe, 0x01060107, 0x0c050201, 0x25110e1b, 0x12231111, 0x02041812, 0x03050304, 0x1223120f, 0x031d381c, 0x1538121b, 0x04202582, + 0x08067e45, 0x0b1d0c39, 0x02010409, 0x0a0c0406, 0x0e020808, 0x03021107, 0x09010102, 0x03070403, 0x270e2b07, 0x2412274d, 0x070f0712, 0x0301080a, + 0x1b121a07, 0x28522812, 0x06023706, 0x8201031d, 0x03023c00, 0x07100703, 0x05060e07, 0x11221102, 0x03041f05, 0x050a0302, 0x25274e28, 0x820b254a, + 0x0103211f, 0x05334d83, 0x070e0806, 0x23172e17, 0x120a2244, 0x06110a09, 0x82032605, 0x02012229, 0x08988309, 0x05090b43, 0x1204081a, 0x01020803, + 0x12090404, 0x11240e09, 0x05071608, 0x12080302, 0x0a210309, 0x250f1f11, 0x310d2448, 0x04100c08, 0x03050906, 0x22110812, 0x1d1d0e12, 0x02060f1d, + 0x254f251b, 0x1b274d26, 0x286a8207, 0x05030b01, 0x0b0b0c0c, 0x26718204, 0x0b051403, 0x82020220, 0x010224c7, 0x82040103, 0x0a082f08, 0x020b160b, + 0x13020305, 0x0d030302, 0x15820202, 0x02010929, 0x040a0a04, 0x820d0102, 0x03012327, 0x26820607, 0x07070e2d, 0x06080301, 0x02010e04, 0x83060302, + 0x82022056, 0x2a03822c, 0x04020708, 0x02030109, 0x83160d02, 0x18043d15, 0x040a0308, 0x0d050d06, 0x0c020413, 0x0c1b0a02, 0x07060d27, 0x021c92fe, + 0x120f0b0e, 0x23234f83, 0x821d1088, 0x091b266a, 0x0a020508, 0x379f8246, 0x06264b26, 0x05080418, 0x050e0303, 0x0a080f06, 0x11091813, 0x020b0e08, + 0x08224782, 0x4b48030b, 0x0a403305, 0x0144032d, 0x014a0127, 0x01000075, 0x2627011e, 0xe8471716, 0x37262206, 0x430e823e, 0xdf6306d4, 0x0bf55d05, + 0x06262724, 0x964b2207, 0x010e2107, 0x63088d45, 0x118506fd, 0x86010e21, 0x012a2132, 0x8506d461, 0x22062117, 0x23222f82, 0x14820622, 0x832a2721, + 0x3627223b, 0x21418526, 0x29842e23, 0x250a7c79, 0x15011c15, 0x80821614, 0x92820582, 0x033e3725, 0x53163637, 0x1724085c, 0x3233011e, 0x595ca484, + 0x05295c08, 0x4b361621, 0x3e2106a2, 0x05114901, 0x36243b83, 0x26363734, 0x37223e85, 0x11823214, 0x83263521, 0x3a332526, 0x16323303, 0x2505fa57, + 0x37163633, 0x17823436, 0x2406c245, 0x36273634, 0x053e4516, 0x05231183, 0x8307030e, 0x37262360, 0x30822606, 0x82069645, 0x25d8823f, 0x0523013a, + 0xd0822606, 0x2722d982, 0x6a86012e, 0x4f011e21, 0x1184051a, 0x36204982, 0xca828e82, 0x0a07ce08, 0x03020125, 0x09010203, 0x1b0d0b2c, 0x01110b0e, + 0x02040101, 0x05020104, 0x0c3a0604, 0x0401060a, 0x3a1e1528, 0x3a743a1d, 0x03052008, 0x19050408, 0x06120807, 0x0613010a, 0x0703080d, 0x04010303, + 0x0206230c, 0x11060511, 0x0a0c0c08, 0x02030c04, 0x0804030f, 0x0c1a0d05, 0x33193219, 0x34173365, 0x0e1d1317, 0x120f150a, 0x10071019, 0x0c170c09, + 0x221b361b, 0x1b0d2244, 0x0414060d, 0x08080709, 0x3515080d, 0x376e3716, 0x040a2914, 0x05070502, 0x050e0503, 0x880c1709, 0xdcb20406, 0x461e14c2, + 0x090a1a1b, 0x120f100a, 0x44151611, 0x071b0c21, 0x090d0106, 0x0d060406, 0x060c0505, 0x0a080903, 0x2b09050c, 0x1224130b, 0x070d2110, 0x2c508211, + 0x071f0301, 0x04030104, 0x09080603, 0x08ce8307, 0x061e1166, 0x08010406, 0x3062310c, 0x63646332, 0x14281332, 0x0f0e1c0d, 0x200e1101, 0x01020c0e, + 0x05020305, 0x120f0605, 0x2a081228, 0x05030705, 0x11f4f808, 0x11b9d7b9, 0x02010702, 0x030e0206, 0x05020101, 0x2141200f, 0x7d7d7d3e, 0x0506043e, + 0x02020101, 0x0f410998, 0x0c101f10, 0x0202041c, 0x08020403, 0x03020809, 0x4a086d82, 0x11080a13, 0x1a210a0b, 0x060f1e0f, 0x0303042d, 0x82020404, + 0x03040202, 0x04090102, 0x28130e01, 0x0a150a12, 0x100a130b, 0x2e020209, 0x03011c07, 0x05090507, 0x01010405, 0x0e1d0907, 0x01030904, 0x06020202, + 0x0c0a0401, 0x82050b06, 0x081737b1, 0x03050803, 0x0e030401, 0x23040404, 0x01180a0d, 0x05081b01, 0x91820201, 0x0101012b, 0x0d040309, 0x030b0404, + 0x083f8209, 0x0a170446, 0x20070b19, 0x0a060605, 0x0c0a130a, 0x1f050c19, 0x0f400703, 0x060b2411, 0x39010328, 0x08053d45, 0x3b111203, 0x17361b17, + 0x1d1c461c, 0x080b030d, 0x200a0425, 0x1120100d, 0x0a112312, 0x14060616, 0x02040905, 0x053da682, 0x17010109, 0x08060a06, 0x07060c06, 0x220a070f, + 0x04230508, 0x0b0a3307, 0x06060101, 0x8376820c, 0x172308a3, 0x04050501, 0x27130b1d, 0x07130813, 0x09010e04, 0x0205021c, 0x1b090705, 0x09200a0b, + 0x453b059d, 0x8203073d, 0x08d982f5, 0x14092145, 0x40071426, 0x7a010702, 0x03010413, 0x0816080e, 0x08071a0a, 0x180d0907, 0x020c0809, 0x07080d02, + 0x01010236, 0x1b060504, 0x081b0906, 0x61000400, 0x9e052600, 0x02015a03, 0x18010b01, 0x00002d01, 0x42063401, 0x272705c7, 0x34352636, 0x4b362336, + 0x232306ed, 0x48230626, 0x2222050d, 0x4b790706, 0x07302c08, 0x010e2306, 0x17140607, 0x4c23012a, 0x1620097b, 0x2105bd43, 0x214c3233, 0x24488206, + 0x17160637, 0x1c4b1816, 0x820b820a, 0x077e431d, 0x5c161721, 0x1522061c, 0x02821614, 0x69561720, 0x85058405, 0x3233220e, 0x234d8316, 0x26271636, + 0x2005f349, 0x0bc24934, 0xab843720, 0x013c3522, 0x6e827185, 0x27240282, 0x3a333236, 0x8c851182, 0x82070621, 0x011e2180, 0x3c212983, 0x4c1d8201, + 0x1627067e, 0x2f343536, 0x85013e01, 0x201d8329, 0x821e8205, 0x14162402, 0x53012e05, 0x222306c9, 0x82372726, 0x830e20e5, 0x217682e2, 0x8b833635, + 0x16076008, 0x19980506, 0x084f0d07, 0x03030603, 0x050c0108, 0x1f0e090d, 0x0f0c0b0b, 0x480d1b0c, 0x48919091, 0x13316231, 0x04050816, 0x06050605, + 0x03070d0c, 0x05010102, 0x0e050301, 0x03090d1a, 0x03180507, 0x01010504, 0x191f0401, 0x08050916, 0x080f0305, 0x040a0106, 0x12081307, 0x24081225, + 0x82040308, 0x10062f29, 0x0a061020, 0x04020404, 0x07020102, 0x2f820e0d, 0x0802023b, 0x0409040c, 0x0a070501, 0x0f130606, 0x0b0a1309, 0x33090912, + 0x04040306, 0x25258201, 0x02030101, 0x02830403, 0x0f042208, 0x020c0707, 0x172f1709, 0x0414301a, 0x04080304, 0x10244824, 0x0302010d, 0x3c0d2606, + 0x0a040406, 0x36398207, 0x09041102, 0x0202020a, 0x20110114, 0x051b0910, 0xd9fa0606, 0x6f640203, 0x35080573, 0x0f050603, 0x037c0402, 0x12050303, + 0x06020c0a, 0x32011603, 0x041f0709, 0xc3020702, 0x0b06020b, 0x08010401, 0x0d060810, 0x07051a0c, 0x11090805, 0x10110201, 0x60820504, 0x08072608, + 0x05030504, 0x060d0603, 0x07080107, 0x06070708, 0x773b060c, 0x161d183b, 0x0a160b14, 0x08081c08, 0x1305042b, 0x25d78202, 0x02090204, 0xb5830502, + 0x0a022408, 0x010a0304, 0x0c052f03, 0x1d0f0d1c, 0x0e1f0e10, 0x03021506, 0x38200d05, 0x0710071e, 0x0d070d08, 0x820d0a24, 0x01022683, 0x11060d02, + 0x05704707, 0x04060331, 0x0f070f06, 0x42180f1c, 0x1e3b1c18, 0x820f1d10, 0x012d0834, 0x09200702, 0x0f07060c, 0x10010108, 0x1e0f1d0f, 0x47201e3b, + 0x1215050c, 0x3c0c230c, 0x090b3b76, 0x12100704, 0x07021404, 0x0702090e, 0x34b08207, 0x0a2a0909, 0x0913092b, 0x0a030803, 0x0904671f, 0x04070404, + 0x2a978203, 0x0c04110a, 0x08010804, 0x82210306, 0x0320081a, 0x0008060d, 0x00040000, 0x073e004f, 0x014303d5, 0x01150108, 0x002b0128, 0x013e0100, + 0x33163627, 0x4507a06a, 0x332205f8, 0x08821632, 0x06141529, 0x27061615, 0x5f23012a, 0x142a0504, 0x012a2306, 0x27012e27, 0x14590626, 0x05de4205, + 0x6f08fc4c, 0x34200ac3, 0x2205f55e, 0x82012e35, 0x200b8608, 0x07876834, 0x07010e25, 0x5a272606, 0x5382057a, 0x68162221, 0x30250682, 0x34273437, + 0x294c1836, 0x5a362007, 0x3e210c15, 0x05516101, 0x06222325, 0x82260623, 0xb14c1830, 0x242f8208, 0x33262227, 0x829c8326, 0x2223229f, 0x829c8216, + 0x2202838a, 0x43072206, 0x05820511, 0x33163424, 0xe784011e, 0x3a370125, 0x50323701, 0x37220642, 0x68831636, 0xd6820120, 0x82010e21, 0x821720ca, + 0x2e372208, 0x213d8301, 0x46181614, 0x580809df, 0x03162601, 0x01020294, 0x2d151518, 0x8b452d5b, 0x0b468b8b, 0x09090744, 0x0f320908, 0x0b132c14, + 0x02010103, 0x18301811, 0x020b150b, 0x11030101, 0x08080a0f, 0x32030910, 0x050e0702, 0x05030905, 0x230d1916, 0x0915090f, 0x0f051907, 0x09030508, + 0x02060103, 0x03020302, 0x3c2d8204, 0x1c150e02, 0x0e09161b, 0x0f170d0a, 0x20193c22, 0x0405030d, 0x3f050103, 0x1c381c0d, 0x2b008201, 0x0e041002, + 0x01040514, 0x07010903, 0x01232e82, 0x82030b04, 0x04012f9e, 0x060e0304, 0x17336633, 0x130a133e, 0x50820616, 0x23830120, 0x3e038608, 0x773c3d7b, + 0x0704103b, 0x02060302, 0x04020601, 0x010d0f14, 0x4822471f, 0x55294890, 0x0d1b0d2a, 0x06060107, 0x04069709, 0x100dd601, 0x061d0502, 0x0314240e, + 0x117a0305, 0x0c13182d, 0x05070801, 0x110a0907, 0x0b141008, 0x02011cfe, 0x04023503, 0x06250305, 0x1229110d, 0x02040a13, 0x0f0b0701, 0x070b0f36, + 0x18301901, 0x11030a03, 0x1e0f0e08, 0x0b03060f, 0x12112211, 0x23101121, 0x10200f0f, 0x080d6315, 0x82a88305, 0x062c08ae, 0x11090d0a, 0x04080309, + 0x07050506, 0x20100714, 0x08110711, 0x12081008, 0x25131221, 0x0a300604, 0x07050e05, 0x0104020b, 0x46843b18, 0x04282982, 0x0a030e09, 0x01070604, + 0x4283b882, 0x250f0f37, 0x1e432110, 0x04040904, 0x10090408, 0x12211108, 0x05090e0a, 0x261f821a, 0x0812050a, 0x82102011, 0x0608255b, 0x04010106, + 0x73083382, 0x2e150a1c, 0x1f3f2016, 0x10060e07, 0x366c3602, 0x061f3e1f, 0x0705060c, 0x01010105, 0x11080703, 0x0b2c0d09, 0x0a081015, 0x7afe0803, + 0x0412210d, 0x120e051f, 0x02050302, 0x04171135, 0x0e140403, 0x09070d1d, 0x04070102, 0xfe0e190a, 0x00060592, 0x00620005, 0x03df073f, 0x001e0048, + 0x005a003c, 0x005e0173, 0x16060100, 0x33011c17, 0x3233013a, 0x06141536, 0x45052342, 0x072605d1, 0x0507010e, 0x44182634, 0x804f0806, 0x14172108, + 0x21064068, 0x1d893601, 0x45852720, 0x220a5a52, 0x83012a37, 0x16322151, 0x152f3882, 0x1617011e, 0x013c3532, 0x27363435, 0x43011e05, 0xab460624, + 0x06222205, 0x201e8307, 0x22278206, 0x4a011c07, 0x99430599, 0x22072205, 0x51471806, 0x21268209, 0x7d620622, 0x2627230b, 0x14822706, 0x210bfc4a, + 0x63823626, 0x4a089046, 0xc08405f3, 0x22230322, 0x34221a84, 0x724a2726, 0x3a33230d, 0x87563303, 0x013e2405, 0x46343637, 0xea59058d, 0x4fbd8205, + 0x3221096e, 0x221a8236, 0x82063435, 0x25c3823e, 0x17363237, 0x32441416, 0x055f4405, 0x8905145e, 0x05910832, 0x0101085e, 0x070f0701, 0x03010e02, + 0x1a171a13, 0x1d090d12, 0x0e08070b, 0xfe0c2310, 0x16110df4, 0x150b162b, 0x040b030b, 0x06040e06, 0x0406040f, 0x18100c01, 0x541b1928, 0x17062602, + 0x0d190c04, 0x271b351a, 0x0601274f, 0x3c1e060e, 0x2142201e, 0x090b150a, 0x080a2c01, 0x0a050601, 0x01080302, 0x0d010102, 0x2c010c05, 0x0d16060d, + 0x2a150e1f, 0x050a0516, 0x02020203, 0x10070108, 0x02040303, 0x03020402, 0x11090d03, 0x0103052e, 0x083c0205, 0x2f878206, 0x1c1f0301, 0x0d204019, + 0x10060e1a, 0x01100a07, 0x03221882, 0x05820306, 0x32075608, 0x060a0b10, 0x2f071105, 0x4c253d72, 0x0c180c25, 0x0a07010b, 0x31180a14, 0x04090418, + 0x05012103, 0x1d0f0c11, 0x5e5e2f0f, 0x01202f5e, 0x01020201, 0x1f0f0c0e, 0x6869340f, 0x31173468, 0x1e371d17, 0x5a5a5a2d, 0x0303052d, 0x04070f08, + 0x030c0b0a, 0x04092004, 0x31008201, 0x0f040205, 0x6a35101e, 0x0d1a0d35, 0x0b051205, 0xb882050e, 0x06090a23, 0x821b8218, 0x0b2e082d, 0x09060908, + 0x1b0d0812, 0x190c0502, 0x1b341b0c, 0x240c6001, 0x010e010f, 0x01120302, 0x0a081506, 0x1210192c, 0x02070a0e, 0x230e0602, 0xdf822a0e, 0x04114e08, + 0x08060c06, 0x20130818, 0x0a0b120b, 0x40012e0a, 0x02060509, 0x1b041f03, 0x0106050b, 0x0c070707, 0x0b170c07, 0x150b0305, 0x07330b0a, 0x05470b79, + 0x06070203, 0x0b130802, 0x13081608, 0x15081326, 0x04020908, 0x12251216, 0x1701020b, 0x24ea8205, 0x14164123, 0x3bd28215, 0x03030102, 0x0710080c, + 0x060d190d, 0x0311060f, 0x060a0501, 0x4224050d, 0x03030202, 0x01231e82, 0x82080b0e, 0x03083acd, 0x01091309, 0x09020305, 0x26145915, 0x532a254b, + 0x03061229, 0x2e040504, 0x085d8206, 0x050f0b38, 0x0e0b1b05, 0x14081415, 0x04090409, 0x04040402, 0x06030e15, 0x050a0d06, 0x040c0304, 0x04011007, + 0x0a140a0a, 0x0c0a0f0a, 0x09060106, 0x1c0d0a13, 0x18311814, 0x0f4e1204, 0x0b252f05, 0x015a039f, 0x01490139, 0x01000055, 0x566b0632, 0x432a2006, + 0x2e680615, 0x16222106, 0x21099d46, 0x094e012e, 0x6a118205, 0x14250618, 0x06222322, 0x85328407, 0x0e352126, 0x14203e84, 0x53067949, 0x81530687, + 0x4e118411, 0xee430848, 0x22148706, 0x43061415, 0xe5590657, 0x860e8507, 0x203b8b74, 0x09124a26, 0x8a473320, 0x22058205, 0x7b371632, 0x75530d53, + 0x06537b05, 0x83361421, 0x05964a08, 0xd4822c82, 0x45530582, 0x2e418805, 0x34353426, 0x013e3726, 0x37013e33, 0x57150632, 0x06200651, 0x21058443, + 0x41821617, 0x1d823220, 0x22051723, 0x4ee18206, 0x23240531, 0x2523012a, 0x8205a356, 0x1e600809, 0x108f0b01, 0x0d060804, 0x49240e1c, 0x2a552a25, + 0x0d112312, 0x0b060c18, 0x03020906, 0x0b102906, 0x16030914, 0x0b130b04, 0x0b285228, 0x06010202, 0x01020805, 0x1a010201, 0x2c592d02, 0x0a285529, + 0x1d070a15, 0x1c010d07, 0x0e061b37, 0x04010407, 0x08020206, 0x13210d05, 0x280e130a, 0x0e042650, 0x54083082, 0x050e0803, 0x16060d06, 0x11081222, + 0x05070507, 0x160c200a, 0x0a061426, 0x050b0405, 0x04030707, 0x09050408, 0x03040201, 0x0c1a0e09, 0x09132714, 0x1f10030a, 0x0c0e050d, 0x03060c06, + 0x4d27051b, 0x2b572b26, 0x1a317342, 0x0b061735, 0x030b1007, 0x03020105, 0x082f8202, 0x2d09049e, 0x351b371b, 0x356b6a6b, 0x050b180b, 0x080c0408, + 0x1427140d, 0x0b090f0b, 0x06030106, 0x080c0a1f, 0x0c0e0d0a, 0x04050609, 0x11074702, 0x1a0d1124, 0x366d360d, 0x010a120a, 0x160a0303, 0x0a0c100b, + 0x27050e05, 0x7038274e, 0x1d387070, 0x06011d3a, 0x060b0203, 0x090c170b, 0x041e0a02, 0x4f12250e, 0x2f174e9c, 0x0a480f17, 0x0717b8f8, 0x0c14090b, + 0x0605490a, 0x29151d04, 0x055dfc15, 0x7e3a0607, 0x44874540, 0xd5020301, 0x01070b49, 0x01020101, 0x0f080601, 0x1305071a, 0x02040308, 0x042ca782, + 0x0a0b0204, 0x03010404, 0x0a130909, 0x05212082, 0x27228202, 0x42030209, 0x0609060b, 0x15390f82, 0x0d250d02, 0x33132614, 0x35193162, 0x14290e17, + 0x06020802, 0x2110070e, 0x38c78210, 0x04448943, 0x07030407, 0x01030602, 0x030a0a02, 0x04040407, 0x07180303, 0x08b9820b, 0x15112030, 0x0d07162b, + 0x060c0402, 0x04091509, 0x4e260612, 0x0d260e27, 0x04070d07, 0x02020101, 0x02020402, 0x2c142849, 0x04110617, 0x120c1a08, 0x4f821125, 0x21080282, + 0x01014d1c, 0x0505031c, 0x08080407, 0x170d1309, 0x080d012a, 0x02010209, 0x14080a05, 0x01060309, 0x9f820801, 0x070f083f, 0x0102050c, 0x05050905, + 0x1a05050f, 0x0e020201, 0x0d1a0d08, 0x01030704, 0x13040303, 0x20ea8202, 0x08268204, 0x0f030339, 0x0e30a20f, 0x0e040108, 0x24022914, 0x5e332449, + 0x00170b2e, 0x00020000, 0x0840005a, 0x004103a7, 0x00db00c4, 0x16170100, 0x06221706, 0x23260623, 0x2223012a, 0x43270706, 0x4347051e, 0x16142109, + 0x2a06be56, 0x15140607, 0x1e07010e, 0x82011f01, 0x17152223, 0x06f25622, 0x012e2722, 0x4a062360, 0x232c0a62, 0x1e151614, 0x010e0701, 0x27032e23, + 0x08823582, 0x2e230582, 0x84012f01, 0x05894306, 0x81513720, 0x33352105, 0x17202a82, 0x32220b82, 0x1285021e, 0x013e3524, 0x02821e17, 0x05840320, + 0x36330123, 0x06e54a16, 0x15270884, 0x3233013a, 0x823e3716, 0x25152988, 0x1d062221, 0x33161401, 0x20059051, 0x08938336, 0x9f082320, 0x01090206, + 0x14183018, 0x43221426, 0x17291822, 0x0c04050a, 0x1522140d, 0x29295129, 0x16822952, 0x120d013f, 0x25121536, 0x0a0d1411, 0x0101050b, 0x0d060601, + 0x2511040a, 0x070f0811, 0x09030704, 0x08038207, 0x250b1145, 0x18090902, 0x26181728, 0x1b120b0e, 0x01060204, 0x02305827, 0x01030405, 0x011e3c1e, + 0x1d0d0903, 0x0407040c, 0x386a3202, 0x0f020401, 0x03020515, 0x08120914, 0xd0050c05, 0x140b1409, 0x50291120, 0x82285150, 0x0250084d, 0x1a481309, + 0x2e224422, 0x2d5b5a5a, 0x2a2b552b, 0x08042b55, 0x02031404, 0x0f020801, 0x01010e1d, 0x13162b16, 0x5027132a, 0xeefd0828, 0x12133ffd, 0xa2511213, + 0x0f52a2a2, 0x010e0b38, 0x090d040d, 0x0a144a02, 0x01050a14, 0x07011109, 0x07122215, 0x1627ae82, 0x070c1230, 0x82050202, 0x226808b6, 0x0916040e, + 0x09040a04, 0x06151d10, 0x0601030a, 0x02020103, 0x25050d04, 0x23172252, 0x050a0519, 0x08090204, 0x2c12141f, 0x1d183018, 0x151c1d3c, 0x5554552a, + 0x070c052a, 0x09031b07, 0x04080501, 0x030f1a0a, 0x2c010302, 0x56202f5a, 0x0c150c1c, 0x06081008, 0x0c180d06, 0x040e1709, 0x0b050104, 0x19090c17, + 0x0108120a, 0x01255682, 0x01030303, 0x27028401, 0x45160706, 0x1426131c, 0x02206f82, 0x0521fa82, 0x0874820b, 0x1499052e, 0x13122313, 0x430b0e03, + 0x0006050b, 0x00640003, 0x03420a21, 0x00180060, 0x0091012b, 0x26340100, 0x17162223, 0x2e272606, 0x010e2701, 0x2306f544, 0x0137013e, 0x2e051b4c, + 0x34372632, 0x26223736, 0x07010e07, 0x42012e17, 0x2e820692, 0x23062623, 0x06d75922, 0x20074a50, 0x05564226, 0x55453520, 0x07162106, 0x220a087d, + 0x7d232207, 0x6d820c38, 0x61590282, 0x54352007, 0x69840864, 0x06262722, 0x60422c82, 0x82788206, 0x06162697, 0x2e010e23, 0x09ae5901, 0x27062623, + 0x82988326, 0x2a3321b7, 0x2d439784, 0x212e8405, 0x40832223, 0x3620ac84, 0x8209b454, 0x0ae749b5, 0x20072f4d, 0x46538226, 0x17220862, 0x0b843216, + 0xcf490120, 0x20058505, 0x07dd4237, 0x26363722, 0xa5497482, 0x33162607, 0x34353432, 0x232f8216, 0x011d1415, 0x2505b44a, 0x16171632, 0x6c543736, + 0x05875005, 0x36211786, 0x704e1817, 0x013a2108, 0x21081f6d, 0x44513233, 0x15162305, 0xad830614, 0x4d052008, 0x0e0d1840, 0x03130702, 0x12010207, + 0x1f090c0f, 0x0e1d0e11, 0x03030814, 0x050301b7, 0x820d1a0d, 0x015d0816, 0x07210801, 0x8b040b06, 0x05010801, 0x080e060c, 0x04140708, 0x03081b08, + 0x07100b1f, 0x6b360711, 0x1e356b6b, 0x15131d3b, 0x02060309, 0x050b0902, 0x0101010a, 0x0c1b0603, 0x01060801, 0x130a0202, 0x1c381c09, 0x02072708, + 0x07030102, 0x01110c04, 0x0b010304, 0x05010203, 0x180d0709, 0x086e820c, 0x0613075a, 0x0809070a, 0x09070415, 0x06050206, 0x0d051207, 0x05060911, + 0x0d070806, 0x273e410b, 0x2243210e, 0x08040a04, 0x1f0c0e08, 0x0202080a, 0x03040905, 0x10080103, 0x1d3a1e07, 0x08091409, 0x280d0502, 0x0a08040b, + 0x05090811, 0x1b0e0b05, 0x07080a0e, 0x13051e06, 0x0f081326, 0x013a4182, 0x0b274e27, 0x2b050420, 0x02030c0e, 0x10220804, 0x352a542a, 0x35696969, + 0x4b821009, 0x0d082308, 0x351b0d19, 0x06050b1a, 0x070d130b, 0x17060507, 0x0a140a09, 0x04041c05, 0x1c030113, 0x15230805, 0xa9820610, 0x05061f38, + 0x2a532905, 0x092e5c2e, 0x0a030509, 0x050e0404, 0x01010a04, 0xd1820505, 0xa04f0a09, 0x2a522950, 0x0c0c3012, 0x0b040d19, 0x0b150b07, 0x041c060a, + 0x19070807, 0x34161a32, 0x4120151d, 0x24a00120, 0x04073801, 0x15080418, 0x151e0c0a, 0x01010312, 0x010f1d03, 0x181c043d, 0x0b160b06, 0x1f040404, + 0x06018107, 0x12090b09, 0x01040401, 0x07101202, 0x13030102, 0x01050905, 0x11080104, 0x1a341a09, 0x0a050907, 0x2b150d15, 0x26502714, 0x01070204, + 0x09030603, 0x10020912, 0x0517040b, 0x2c0d1a0d, 0x19062e5d, 0x01020203, 0x05020b01, 0x0402020b, 0x190d0f0d, 0x0e0c0b06, 0x03030805, 0x28100607, + 0x0c0d0c12, 0x0201090e, 0x3a181607, 0x10083a73, 0x092c0d08, 0x0b0e0b07, 0x02030b35, 0x07140701, 0x09151813, 0x0b0e0512, 0x03031305, 0x050f1c0f, + 0x0709050c, 0x1932190e, 0x160e1107, 0x180b0c01, 0x172f1710, 0x0c397139, 0x07120b1f, 0x0305080c, 0x05190104, 0x03010406, 0x08140705, 0x160b0c0d, + 0x1b070920, 0x2b88820f, 0x0a050105, 0x02040207, 0x070b0a0a, 0x91827b82, 0x05050434, 0x21111103, 0x01100511, 0x0d090303, 0x31190d19, 0xa6820318, + 0x1b205d08, 0x0700000a, 0x26005b00, 0x5a032d0d, 0xc500ba00, 0xdc00ca00, 0xee00e700, 0x00001101, 0x3f272501, 0x0f352701, 0x15172701, 0x23152707, + 0x27353335, 0x012f030f, 0x0f232737, 0x05072302, 0x2707012f, 0x020f1707, 0x0f062227, 0x011f1502, 0x011e1507, 0x2307031f, 0x07032f35, 0x23072327, + 0x17251683, 0x0f010e07, 0x301b8204, 0x013f1327, 0x0715032f, 0x0f23022f, 0x17071501, 0x214f8223, 0x4e833507, 0x1f331324, 0x02820501, 0x3533272c, + 0x35371737, 0x033f1733, 0x47820533, 0x17013f34, 0x3f353735, 0x15170501, 0x3f33031f, 0x17013e02, 0x4982011e, 0x83331721, 0x21352125, 0x25209482, + 0x173a6982, 0x23353733, 0x23373307, 0x21272515, 0x2517030f, 0x013e013f, 0x2f263435, 0xa7820501, 0x33203082, 0x01257882, 0x022f3315, 0x50108207, + 0x458205d2, 0x012e2727, 0x3f362635, 0x24108201, 0x1f161417, 0x207c8201, 0x08338236, 0xfd290d6a, 0x010c01a7, 0x8b1050c1, 0x171e071c, 0x03025606, + 0x05070603, 0x02110201, 0x08090505, 0x0c091bfe, 0x02180318, 0x030c0402, 0x06010403, 0x11010802, 0x1d050601, 0x06c60511, 0x030a1e15, 0x297b130e, + 0x03070506, 0x040f1d08, 0x0a050904, 0x07013902, 0xa6b90505, 0x0f090304, 0x020b2a10, 0x20840121, 0x4c026d7d, 0x019c7c25, 0x41081982, 0x058b0302, + 0x04670104, 0x01220102, 0x23010c22, 0x04580222, 0x01080d0b, 0x0d160db5, 0x02090306, 0x0603091b, 0x0e05e601, 0x11030402, 0x04085001, 0x0e0a0408, + 0x02020405, 0xc14f128b, 0x04054c02, 0x9a82e9fb, 0x2f1f5708, 0x0c075907, 0x58045453, 0xfe046efd, 0x050c0f88, 0xa3010815, 0x08070b05, 0xfa0b0707, + 0x056105ac, 0x63040504, 0x6f040403, 0x0504027d, 0x0ab60472, 0x06050c32, 0x0c050401, 0x09091105, 0x05030301, 0x020b0c16, 0x76100809, 0x0401030a, + 0x012d0217, 0x03090118, 0x01820105, 0x08183408, 0x05280b02, 0x04140702, 0x12030403, 0x04051d08, 0x03050411, 0x15022109, 0x01040702, 0x05080302, + 0x07090270, 0x152c1729, 0x37073666, 0x4f754506, 0x82030322, 0x3708229f, 0x084a8211, 0x04080242, 0x030b0a6f, 0x21012b0c, 0x1018170c, 0x02050108, + 0x180c0248, 0x44020b03, 0x3f4e1b1c, 0x05041a47, 0x5d010405, 0x03041205, 0x090c0107, 0x0f020901, 0x08058c02, 0x0d023006, 0x01550c17, 0x02090526, + 0x3708f882, 0x010e0a08, 0x33200501, 0x03030771, 0x05080101, 0x0694040a, 0x06240501, 0x07b2077c, 0x4a030d11, 0x4d1f0805, 0x02810d0d, 0x33070c06, + 0x05010308, 0x090c1106, 0xf4070610, 0x21082b82, 0x07040307, 0x090e9a07, 0xfa020205, 0x0f090c04, 0x080e0708, 0x080d040a, 0x0e060911, 0x08080c08, + 0x13820f17, 0x0f0b2b08, 0x0b150910, 0x02000015, 0xf2ff5300, 0x8d03fc08, 0x28011e00, 0x07010000, 0x1715010e, 0x0727010f, 0x0e020f23, 0x011e1701, + 0xcf453317, 0x26362d05, 0x17252327, 0x011f3337, 0x2f23010f, 0x272b0483, 0x0e232723, 0x2f012b01, 0x82070501, 0x2307280a, 0x07061407, 0x831e011f, + 0x011f2243, 0x223a8215, 0x820f0616, 0x3634281d, 0x013e013f, 0x8226022f, 0x82272007, 0x010f285f, 0x030f010e, 0x822f2622, 0x42198315, 0x272006ba, + 0x1e841783, 0x2506845a, 0x06020f06, 0xae493726, 0x022f2105, 0x82095661, 0x1f01213d, 0x2305e077, 0x2622012b, 0x2f212082, 0x05d74201, 0x013e022c, + 0x3f352533, 0x23351702, 0xa4820616, 0x23072322, 0x34241882, 0x17333736, 0x333a6483, 0x37151632, 0x15173735, 0x1733013f, 0x15333533, 0x15071533, + 0x17233523, 0x50821e33, 0x14831084, 0x1723038b, 0x84211715, 0x3776082d, 0x013e3717, 0x0417013b, 0x0404078b, 0x0e160503, 0x06081b06, 0x04010537, + 0x4b060903, 0x080b2015, 0x08032f36, 0x13045e0a, 0x05370f0e, 0x31070505, 0x060e0a0a, 0x0431051f, 0x04050118, 0xfe03092d, 0x060811be, 0x09430507, + 0x12080707, 0x03010809, 0x01010202, 0x08020c0d, 0x1c312a0a, 0x050f0402, 0x09080102, 0x140a0902, 0x2b106153, 0x170c471a, 0x4e6e400b, 0x25820705, + 0x05063a08, 0x030c0815, 0x0e080817, 0x10443e0e, 0x0f050213, 0x1103030b, 0x1328160f, 0x52090208, 0x01050752, 0x0a190e19, 0x05040f0a, 0x05023221, + 0x01050404, 0x1f1a280e, 0x0c080322, 0x3a0d820d, 0x0682080b, 0x0b07060c, 0x0e0c2304, 0x0e020201, 0x07150d24, 0x1b12bb02, 0x82112a1f, 0x020e2470, + 0x820e0527, 0x0a0426ae, 0x02022607, 0x08008207, 0x17150b53, 0x10226a58, 0x16160d0f, 0x0e09370c, 0x05010808, 0x10261124, 0x0f271026, 0x4e1e1027, + 0x06590114, 0x140a2909, 0x02012b0a, 0x071c0304, 0x0505f901, 0x0617060b, 0x020e0101, 0x120a6407, 0x02080608, 0x07080b02, 0x16054d53, 0x0701b210, + 0x0a191a0a, 0x2a778203, 0x03040403, 0x12080203, 0x82440606, 0x08238221, 0x13050724, 0x3a33091b, 0x04132511, 0x09070408, 0x142d1907, 0x06140d37, + 0x0a05131c, 0x04040a06, 0x6b252f0b, 0x5a821811, 0x03014108, 0x22181704, 0x120f270b, 0x190a1402, 0x0313100e, 0x05010502, 0x040b0605, 0x32511e28, + 0x0a18674f, 0x1c1d050f, 0x36161402, 0x2b2b4f25, 0x023d2752, 0x05030228, 0x05010405, 0x22151217, 0x130d1b0b, 0x2b08fb82, 0x05050404, 0x900b1107, + 0x0d0e493c, 0x1d150714, 0x080f0908, 0x0105120d, 0x05060639, 0x19070607, 0x02121111, 0x04070205, 0x01060703, 0x0e2f6082, 0x060c0c0d, 0x05016d04, + 0x04010d07, 0x88041503, 0x1a273900, 0x0905040b, 0x02040206, 0x00000202, 0x53000300, 0x100a0d00, 0xee017503, 0x11281282, 0x36010000, 0x013e3726, + 0x2e05c15d, 0x17163427, 0x26353616, 0x36323336, 0x18061615, 0x6309ae62, 0x16210530, 0x28178232, 0x15163437, 0x36371416, 0x05314a06, 0x15211182, + 0x202f8214, 0x57448516, 0x32280999, 0x16343516, 0x35013c35, 0x32223b83, 0x955d1615, 0x17322505, 0x1407011e, 0x17225983, 0x14830616, 0x23011e2a, + 0x3023012a, 0x32150607, 0x07272183, 0x14152606, 0x85013a16, 0x089c5368, 0x142a2c83, 0x26062316, 0x07262223, 0x6d4d3606, 0x14062109, 0x07253182, + 0x22071606, 0x05364326, 0x2634272b, 0x27342207, 0x26230626, 0x21178306, 0x32821606, 0x864a0283, 0x213e8305, 0x2a4b2726, 0x06e15706, 0x8f871720, + 0x06222323, 0x05c74315, 0xe685058a, 0x44820582, 0x0cbe5e18, 0x07222622, 0x1a825384, 0x180ac257, 0x82094b48, 0x2223252c, 0x22262327, 0x82050441, + 0x825c828c, 0x82272032, 0x010e2483, 0x83221415, 0x010e246e, 0x82062207, 0x05c15159, 0x27224a82, 0xee6d3626, 0x20441805, 0x20478208, 0x05904b35, + 0x37362628, 0x36372634, 0x37511716, 0x06d94d09, 0x013e3725, 0x58323637, 0x32240631, 0x36342734, 0x71823282, 0x37215982, 0x235f8234, 0x34060716, + 0x13213b83, 0x210c8326, 0xd84a1417, 0x84262005, 0x27262936, 0x15062607, 0x34331614, 0x5508bb84, 0x03093603, 0x04160204, 0x060e0e09, 0x02100112, + 0x0a010704, 0x01160309, 0x1b090302, 0x101f100b, 0x03010f02, 0x04130402, 0x0f0a150a, 0x01110102, 0x01030609, 0x02050d03, 0x20030a1c, 0x31180a1b, + 0x07100718, 0x3c0e080b, 0x62313c77, 0x15316263, 0x13031429, 0x1f820409, 0x02080133, 0x03050202, 0x04010104, 0x040c0204, 0x36010105, 0x32558204, + 0x02060c05, 0x02140301, 0x05050402, 0x4c55442e, 0x82020407, 0x10082875, 0x0f1e0e08, 0x82040903, 0x0b033217, 0x391c0b16, 0x07040d1c, 0x1e112311, + 0x0b051d3c, 0x08728205, 0x0404093f, 0x0e060909, 0x04020b06, 0x05030401, 0x05010a02, 0x02020908, 0x01070d02, 0x0d1a0d0b, 0x1d3d7b3d, 0x1d0f1d3a, + 0x042d090e, 0x02030f03, 0x0e070201, 0x1c361c07, 0x09142818, 0x01010108, 0x3f338202, 0x03090507, 0x01020401, 0x02030206, 0x07100603, 0x04050703, + 0x19030406, 0x0f1d0f06, 0x0e183016, 0x0c291f82, 0x030b0404, 0x04060804, 0x3f798201, 0x0912091e, 0x03050b09, 0x04020c0c, 0x0b0c060c, 0x08390303, + 0x21163017, 0x130c0d5b, 0x10300606, 0x01245682, 0x0a080605, 0x16230782, 0x820c170b, 0x010224a7, 0x8203052e, 0x060835ac, 0x0109050b, 0x090b1a0a, + 0x17040813, 0x0f030706, 0x23120820, 0x0b24dd82, 0x06081308, 0x05219c82, 0x224d8203, 0x82020203, 0x820520ef, 0x02073e12, 0x051b0101, 0x3e1f3f1f, + 0x39193f7c, 0x11191419, 0x02010406, 0x2c17050e, 0x14271417, 0x2d60820b, 0x05030108, 0x0209040c, 0x08100320, 0x0c82120a, 0x0abf2808, 0x04190c2b, + 0x07061e01, 0x090d070d, 0x011a0805, 0x86080f01, 0x10160408, 0x0902020b, 0x08480302, 0x06060a0f, 0x82290704, 0x0509286d, 0x01060304, 0x82010a09, + 0x011023f8, 0x06820303, 0x04020726, 0x0c040103, 0x062f0382, 0x1a02020d, 0x0a150b03, 0x03023a05, 0x8201030d, 0x0120088a, 0x02020c01, 0x03060408, + 0x0d1a0d05, 0x01034506, 0x05050905, 0x06050a05, 0x07100603, 0x050a1c0a, 0x0f2e4282, 0x0e131304, 0x05041101, 0x05040201, 0x5582010a, 0x04010122, + 0x0125fb82, 0x02042a01, 0x6344821a, 0x08260595, 0x05010802, 0x55823507, 0x090a0a33, 0x01040911, 0x0d030501, 0x09060137, 0x0204080b, 0x25368206, + 0x03020406, 0x2f820901, 0x060d0924, 0x80820b0d, 0x0104043c, 0x09070f02, 0x08152a15, 0x1007070b, 0x152b1508, 0x06091509, 0x0507090b, 0xe8820602, + 0x39113908, 0x1630130a, 0x16122011, 0x0910162e, 0x08010101, 0x05071406, 0x11090511, 0x15241408, 0x0a041a10, 0x6e110c11, 0x12240d0d, 0x05010e12, + 0x09120904, 0x04030309, 0x15120a0d, 0x013e2b82, 0x07031701, 0x0508020c, 0x08070101, 0x090a0b0a, 0x02050b0c, 0x06250303, 0x27120a21, 0xc7840918, + 0x0805122f, 0x4623090d, 0x162c1624, 0x05183119, 0x2c1f8214, 0x09040d01, 0x04050302, 0x04030824, 0x24b58207, 0x08040a05, 0x23008203, 0x07050607, + 0x0423bd82, 0x820a2007, 0x6ffe3c2d, 0x112f080a, 0x0502030a, 0x090c0d07, 0x0d110411, 0x0f12031d, 0x08050d04, 0x8200080e, 0x00023b00, 0x0a400056, + 0x004003a0, 0x0095007d, 0x012f0100, 0x07152335, 0x020f010e, 0x02832f23, 0x0b832520, 0x27210125, 0x822f030f, 0x82272013, 0x1307350d, 0x36043f25, + 0x0f011f16, 0x17011e03, 0x023f011e, 0x3e37013e, 0x0d820682, 0x37220782, 0x08793f17, 0x221a8205, 0x44023f17, 0x2e230535, 0x82333501, 0x8233200f, + 0x37212610, 0x21371733, 0x25058217, 0x0527013f, 0x8a48010e, 0x68352006, 0x8968058b, 0x0a152505, 0x2e2b089b, 0x8108b382, 0xb00d2203, 0xc81e1b16, + 0xfe1b1615, 0x06041b20, 0x91fd0702, 0x303f6609, 0xa2202f1c, 0x313a316e, 0x1608150c, 0x4dc80a01, 0x08173243, 0x1413070e, 0x03112022, 0x170b0b0d, + 0x04142d0d, 0x160a0b0e, 0x0f15290c, 0x0e35101e, 0x09210d1b, 0x1c2f130c, 0x1f1a361c, 0x2533223f, 0x19472e14, 0x0d0b2318, 0x010f9a0d, 0x15160305, + 0x5301281d, 0x0f12d803, 0x13242e01, 0x05130d0d, 0x05ebf905, 0x093d080d, 0x00840610, 0x3d09103b, 0x06050d08, 0x12b00205, 0x11087905, 0x4b080b02, + 0x251c0e05, 0x05090607, 0x08008202, 0x5709065f, 0x0a060d13, 0x01090a0a, 0x0a040c01, 0x58c3fe07, 0x11191a4a, 0x06050108, 0x3e3d1b0e, 0x071b1424, + 0x0a010606, 0x10211109, 0x2c0e1f12, 0x010e0c11, 0x070a0303, 0x38020705, 0x452a2861, 0x1737201b, 0x201a3a52, 0x3a202141, 0x1c3b1e1b, 0x0403020a, + 0x13160f05, 0x210e130e, 0x0d0b0703, 0x088383ae, 0x070d0523, 0x05070f09, 0x05060105, 0x00091006, 0x4d000200, 0xe20a5500, 0xb8012903, 0x0000c801, + 0x27260601, 0x08275b22, 0x0e070626, 0x06262701, 0x8205c846, 0x2a232c05, 0x26222301, 0x07221415, 0x5e272622, 0x36200590, 0x8308fc5d, 0x822f832c, + 0x4626201a, 0x1e2407d5, 0x011e1701, 0x46057546, 0x11820b6f, 0x013e2723, 0x714d8337, 0x5f8209a2, 0x22262722, 0x520fa757, 0x6654052f, 0x09c35b08, + 0x4a826e86, 0x22052c47, 0x82263637, 0x45272002, 0x058405f8, 0x36343529, 0x33323637, 0x82333632, 0x1636246b, 0x82363237, 0x210e8302, 0x395c3632, + 0x3e372305, 0x17823301, 0x82013a21, 0x36372208, 0x23148216, 0x35361607, 0x0e213b85, 0x20ef8501, 0x07654727, 0x013c2723, 0x25508337, 0x16323316, + 0x41861617, 0x33205982, 0x41883e82, 0xf2841a82, 0x5c825083, 0x16210e82, 0x79a18214, 0xb372087d, 0x06072205, 0x21148322, 0x8c82033a, 0x3b863720, + 0x8083a782, 0x52062548, 0x9284057f, 0x14161725, 0x82011c15, 0x51072005, 0x332007c2, 0x20093a52, 0x25178236, 0x07061617, 0x96820605, 0x75823620, + 0x232b5782, 0x0a070622, 0x244924d5, 0x5b050805, 0x50080514, 0x07070408, 0x0f15080f, 0x02110407, 0x0f200e0c, 0x060d180d, 0x05070219, 0x0904050a, + 0x02010604, 0x15041c06, 0x6733152b, 0x1c361c33, 0x09081008, 0x0804081b, 0x01010203, 0x1d071008, 0x07031d39, 0x0c100103, 0x0a254b24, 0x0303022b, + 0x02050302, 0x271b8201, 0x08030112, 0x03040208, 0x01304483, 0x04070401, 0x0c0a0e03, 0x0b070b17, 0x06190707, 0x02226d82, 0x5a820209, 0x1d102c08, + 0x070a0411, 0x11062108, 0x05021021, 0x080e0b03, 0x0b0d220c, 0x2d171a08, 0x12251316, 0x200e1e0f, 0x90481f3e, 0x22422048, 0x82060c1c, 0x07022257, + 0x08008501, 0x0202042b, 0x12081201, 0x10091225, 0x04070609, 0x230f300c, 0x26142346, 0x0a130a13, 0x0a021b03, 0x1e111311, 0x1629110f, 0x0a112311, + 0x29ee8210, 0x0f1d0f0a, 0x090d1607, 0x90820a01, 0x13251237, 0x13101f0f, 0x23111428, 0x13271410, 0x01010405, 0x33020107, 0x2441820a, 0x10244b24, + 0x20148224, 0x378f8214, 0x03091109, 0x03070209, 0x0f1e0f0a, 0x03030404, 0x2210050e, 0x264d2710, 0x0e367482, 0x0409092f, 0x04060c03, 0x2814063f, + 0x152b1513, 0x03081908, 0xed820106, 0x072b132d, 0x9999994c, 0x162c164d, 0x82070e07, 0x064608da, 0x090a070f, 0x0e070907, 0x20132713, 0x0c022040, + 0x080d0608, 0x06011505, 0x05010307, 0x09040304, 0x04070402, 0x06040205, 0x4523060e, 0x22442222, 0x03030e06, 0x0b020101, 0x3e1045f9, 0x072a1309, + 0x0b0f0803, 0x66820c11, 0x05dd0124, 0x29820302, 0x0405042b, 0x080e1c0a, 0x130b0e0d, 0x223e8204, 0x82010907, 0x23408200, 0x02040105, 0x01210982, + 0x36b38207, 0x4c260901, 0x03760c26, 0x02050e09, 0x24120f0a, 0x1c381c12, 0x820e1b0e, 0x0e062457, 0x82090502, 0x160b2878, 0x0219090a, 0x83020403, + 0x04350833, 0x01040805, 0x020d0106, 0x071f4121, 0x1503030b, 0x0c170c05, 0x0d010302, 0x1e150e23, 0x0c361113, 0x0c160b04, 0x0b1a341c, 0x171e010e, + 0x070c140c, 0x23120812, 0x21e08213, 0x90820b05, 0x1109032e, 0x02040a09, 0x1b010105, 0x01010b05, 0x02295083, 0x071f0c03, 0x0b091005, 0x3991821a, + 0x060b0907, 0x01040908, 0x08020418, 0x05070607, 0x030b1809, 0x02030305, 0x7f820201, 0x3401012c, 0x0a120a07, 0x0c070e08, 0x11820304, 0x08020522, + 0x01281882, 0x05010201, 0x0707030a, 0x04230d82, 0x82030104, 0x0407210f, 0x0d390482, 0x0a0e2e0d, 0x03070813, 0x07030201, 0x04060204, 0x06030d02, + 0x16160b02, 0x283a8308, 0x08010405, 0x2709030d, 0x30e48208, 0x11040401, 0x0e061220, 0x03010607, 0x05040b03, 0x08508203, 0x0513043c, 0x8b031609, + 0x16011210, 0x0203160a, 0x00050605, 0x4a000800, 0xd50a5a00, 0x06002603, 0xe7010c00, 0x0d02fa01, 0x28021f02, 0x00002e02, 0x31272201, 0x37163130, + 0x32230622, 0x8f4b2536, 0x012e2b05, 0x07062207, 0x22230636, 0x11822706, 0x27012a34, 0x3c071606, 0x010e3301, 0x33063435, 0x16272622, 0x20833326, + 0x2e172226, 0x06322301, 0x17253b82, 0x22233626, 0x211d8206, 0x14833407, 0x06322726, 0x34012b35, 0x0e291084, 0x16060701, 0x15011e17, 0x284f8216, + 0x011c1516, 0x17061415, 0x05c47d2a, 0x07203483, 0x23830b82, 0x82151421, 0x05134464, 0x16200e82, 0x0cb44218, 0x06262723, 0x826a8223, 0x441a8273, + 0x70820794, 0x012e2723, 0x20798327, 0x82628226, 0x16272856, 0x16322706, 0x4b360615, 0x272905a0, 0x34352634, 0x36323326, 0x05ab4c07, 0x30287a82, + 0x34351617, 0x26363716, 0x26213c83, 0x08677036, 0x36161722, 0x2108164c, 0x4e820607, 0x0d673620, 0x32332105, 0x26832c83, 0x85363221, 0x25178232, + 0x17163633, 0x08820616, 0x38820582, 0x36373322, 0x82059d4c, 0x846f828a, 0x82f0832c, 0x051c7768, 0x17226e82, 0x02823626, 0x17220e82, 0x0e82011e, + 0x013a3322, 0x36211a84, 0x05e64b37, 0x6e823220, 0x4d820620, 0xa2821520, 0x9b841420, 0x2105e947, 0x74822226, 0x2457db82, 0x26362109, 0x26205f86, + 0xee568384, 0x07162606, 0x14150616, 0x82568416, 0x371627f0, 0x3c17011e, 0x9c5d3501, 0x36322705, 0x07161417, 0x57823405, 0x14072622, 0x27826683, + 0x36263723, 0x82128235, 0x061722f4, 0x20058336, 0x298b8316, 0x06261335, 0x23262215, 0x7482012e, 0x16320729, 0x05363433, 0x82072622, 0x013c2d65, + 0x07232205, 0xa4063632, 0x11010101, 0x30080382, 0x20040101, 0x13123a07, 0x0a08019a, 0x0c070a0b, 0x240e5b05, 0x8e072253, 0x366c3613, 0x01070301, + 0x04171205, 0x060a0409, 0x020a0217, 0x051b0508, 0x3b078208, 0x13010616, 0x0c020b08, 0x05110c01, 0x040a091b, 0x2522010c, 0x04153124, 0x0205150d, + 0x0805014b, 0x02060a25, 0x5b2e0705, 0x0304082e, 0x0509070b, 0x0d1d3c1d, 0x01010312, 0x0f020205, 0x03050503, 0x14040f06, 0x82120f62, 0x0c3d082e, + 0x13221404, 0x0e0d140a, 0x2215173c, 0x132a1b16, 0x0f060b06, 0x3c070609, 0x1c391c1f, 0x04144a15, 0x0a060405, 0x05230a0e, 0x190e0303, 0x010c0902, + 0x02102001, 0x09080302, 0x12082309, 0x08158213, 0x612121d9, 0x0e0c0205, 0x05062617, 0x17070903, 0x2242210a, 0x16265227, 0x13020742, 0x0c160905, + 0x14081206, 0x6b030362, 0x040d0715, 0x1315360e, 0x01040b2d, 0x07150504, 0x0211090e, 0x0806021d, 0x0c230f07, 0x07050d08, 0x210a1004, 0x02030307, + 0x02123e0f, 0x170b0303, 0x2a612c0d, 0x03030309, 0x23074605, 0x0f061e44, 0x0e0f0c37, 0x0a180a11, 0x03100505, 0x0b030902, 0x0504180e, 0x03162406, + 0x1b0d0c08, 0x170a120e, 0x19152217, 0x1e171a34, 0x1b351a1e, 0x0402010f, 0x280f1204, 0x1d0d2757, 0x0d1d0f0d, 0x19101f10, 0x01030402, 0x3b763c0f, + 0x10254925, 0x03020406, 0x0b2f0605, 0x01061009, 0x050a0520, 0x2548251b, 0x09182f18, 0x01091213, 0x67341c09, 0x0b060d34, 0x82011703, 0x50183266, + 0x11120924, 0x0203410e, 0x0511f602, 0x061b0b11, 0x239d8202, 0x08190e13, 0x2b080782, 0x11192c7d, 0x12200502, 0x1201061a, 0x070c4c0f, 0x3a0bab02, + 0x010b150a, 0x03050942, 0x305e3001, 0x0b440203, 0x160a041b, 0x01e9fe0a, 0xa9200084, 0x2e330584, 0x0f05050d, 0x06010205, 0x06071601, 0x01091008, + 0x8205180c, 0x06022818, 0x0206110d, 0x82040101, 0x04022d03, 0x02070101, 0x0a0d0702, 0x01020706, 0x64086a82, 0x09030602, 0x0a050e17, 0x0c070402, + 0x05061a05, 0x0e0b020c, 0x23110517, 0x1b491e12, 0x7e0f0a2b, 0x0d010108, 0x010a030b, 0x02040b01, 0x060d0403, 0x240b180a, 0x05060417, 0x060b0812, + 0x0f1e3620, 0x0314121d, 0x0c020b01, 0x10060c04, 0x071d150f, 0x0c020808, 0x03040403, 0x07220507, 0x0a010219, 0x0101030c, 0x29ad820a, 0x2e181b37, + 0x05140816, 0x2d820e07, 0x080e0235, 0x120a0818, 0x10050409, 0x0f1c221f, 0x11120302, 0x83050758, 0x1b053ba0, 0x0b071309, 0x0f050a1e, 0x19110702, + 0x04100717, 0x0b034f0f, 0x04031003, 0xb6830c02, 0xb3820520, 0x08024508, 0x11020402, 0x21070801, 0x160f0521, 0x01060601, 0x19030932, 0x03070503, + 0x10080105, 0x0214050e, 0x040f0202, 0x10010e08, 0x11110907, 0x0b020a12, 0x06060612, 0x0104060b, 0x29110c07, 0x09120912, 0x08050211, 0x51085582, + 0x03030804, 0x2a0f1101, 0x0a070c07, 0x06040704, 0x060e1406, 0x040e120d, 0x1a111608, 0x12120b07, 0x03040402, 0x020d0305, 0x14060c05, 0x040f4a05, + 0x1f0f0501, 0x06070e0f, 0x470f210d, 0x0c130c20, 0x5002121e, 0x09310e08, 0x06090107, 0x63010c10, 0x6282150a, 0x09104008, 0x01081f05, 0x02412405, + 0xba040108, 0x00000101, 0x62000200, 0x2b0d8d00, 0xa400f302, 0x0000b200, 0x35012f01, 0x17373521, 0x2f331735, 0x23020f02, 0x3f363235, 0x07232701, + 0x0f151715, 0x82272301, 0x0e073211, 0x17011d01, 0x3f011f15, 0x23153302, 0x030f010e, 0x251a8223, 0x012e2721, 0x0b822123, 0x07201e84, 0x3a081e82, + 0x33033f33, 0x36323717, 0x1f333735, 0x33043f05, 0x17011e37, 0x013e023f, 0x35251533, 0x033f013e, 0x23010e17, 0x012b012e, 0x06150622, 0x33021f16, + 0x37012f37, 0x3f353721, 0x82263401, 0x239d0883, 0x3e372135, 0x05273501, 0x35262223, 0x013b3634, 0x14151632, 0x04270d06, 0x3792f806, 0x0207e021, + 0x4b462605, 0x0502a737, 0x020b0301, 0x3220025f, 0x37412e64, 0x02020618, 0x38020402, 0x241d3741, 0x01030361, 0x022d250b, 0xc8fe0906, 0x040a041f, + 0x0609edfe, 0x671e0203, 0x03060c0b, 0x251c0803, 0x284c1723, 0x0c04030d, 0x21221697, 0x36514f2b, 0x01080e10, 0x22130509, 0x1322350f, 0x010a0d02, + 0x0c0e0108, 0xdf1d3537, 0x0309130a, 0x07040e12, 0x06010407, 0x052f050f, 0x01050508, 0x256782d9, 0x5a0d0505, 0x1783c804, 0x40f3f63a, 0x0d0e0e0d, + 0x0d0d0e40, 0x0c0c2602, 0x05011a05, 0x03840e04, 0x08080605, 0x5b082782, 0x12062004, 0x01031306, 0x03030404, 0x05060202, 0x0604311f, 0x04070603, + 0x0103011d, 0x06080703, 0x051f1d1d, 0x02030705, 0x09050703, 0x84674c05, 0x08050314, 0x08080406, 0x104a0504, 0x0d0f2220, 0x2b17060a, 0x0c03232f, + 0x1205010d, 0x5303030f, 0x0502501c, 0x080f0f03, 0x04050403, 0x08267d82, 0x06230d16, 0x1f820911, 0x09030431, 0x0d040e0a, 0x0a06154e, 0xe80f0610, + 0x820c0e0f, 0x0f0e2200, 0x2c008200, 0x00520001, 0x025308da, 0x00a800a9, 0xb7791800, 0x0c61720e, 0x5d012e21, 0x172208cc, 0x4b64011e, 0x36342106, + 0x824c1485, 0x0626210c, 0x8c521d85, 0x36262706, 0x37263637, 0x02833634, 0x776a3620, 0x820b840a, 0x05976b4a, 0x35222382, 0x59853634, 0x2405d547, + 0x15061617, 0x05107214, 0x32330122, 0x08083078, 0x3e37365b, 0x14083701, 0x1c0f2010, 0x3e1a253c, 0x14281320, 0x4a386f37, 0x1c0e4b95, 0x0313030e, + 0x05020502, 0x481f0d10, 0x0a1a0a17, 0x05061004, 0x10020204, 0x01211c07, 0x0c180202, 0x17132614, 0x7139172e, 0x3e7d3e39, 0x15122512, 0x11050917, + 0x0102060a, 0x0d040101, 0x0c070402, 0x3c098205, 0x0b050301, 0x180a0512, 0x13271314, 0x393e7c3e, 0x2d163972, 0x13271416, 0x08060a06, 0x2b458203, + 0x010f1c2b, 0x0210070b, 0x02080903, 0x26083a83, 0x26130616, 0x22432213, 0x3a397339, 0x42203a74, 0x162e1621, 0x021d391c, 0x02050105, 0x141c4624, + 0x0a060a1b, 0x820d0402, 0x13470839, 0x08150d04, 0x0c191412, 0x04061130, 0x050c0303, 0x04010408, 0x200f1c28, 0x0104110f, 0x03030603, 0x08030202, + 0x06050303, 0x02010402, 0x0d081019, 0x0813060a, 0x09102010, 0x200f090b, 0x0716050a, 0x07081008, 0x820c0610, 0x82152014, 0x0602212a, 0x09203282, + 0x03233483, 0x82010306, 0x05103c00, 0x1b0f200e, 0x1802042d, 0x0b030506, 0x030a220d, 0x0c030304, 0x0a020703, 0x82050505, 0x01013430, 0x05020105, + 0x00000002, 0x00530001, 0x025408d4, 0x822001ab, 0x012e220c, 0x05e35427, 0x27010e2b, 0x06012b30, 0x06262726, 0x05954d23, 0x22313024, 0x0c831423, + 0x24821282, 0x1b820720, 0x2e202482, 0x22095f74, 0x82010e07, 0x2235232a, 0x17843123, 0x09765218, 0x35012e24, 0x42183436, 0x0e20097f, 0x08127318, + 0x32820620, 0x26204783, 0x08875818, 0x22071429, 0x17221706, 0x55161433, 0x16210650, 0x052c4e36, 0x4d741720, 0x013e2405, 0x42323637, 0x1e220627, + 0x69180701, 0x3e2008a6, 0x48092f70, 0x3583059d, 0x82333121, 0x2140822b, 0x5642013e, 0x17162907, 0x3233013e, 0x36161516, 0x17220582, 0x25833216, + 0x31333222, 0x11892684, 0x013b3022, 0x16213282, 0x060e4914, 0x8205344e, 0x012e3b79, 0x20e50727, 0x67332143, 0x3e7b3e33, 0x01030b04, 0x030d0201, + 0x09090a08, 0x0882080b, 0x0301012c, 0x01040406, 0x060b0c07, 0x1d820310, 0x07044b08, 0x07030205, 0x07060702, 0x0801030a, 0x01060102, 0x01010405, + 0x03050a01, 0x1b0d0902, 0x0a0f090d, 0x05060a05, 0x04040102, 0x02020409, 0x0b160a04, 0x111e1906, 0x85431325, 0x32663342, 0x0c1c3a1d, 0x2a100b12, + 0x04130b0e, 0x5b820302, 0x09010b23, 0x05146201, 0x1d062408, 0x1027171e, 0x100b1409, 0x86431123, 0x152a1543, 0x100f1d0f, 0x11091120, 0x060d0809, + 0x0b100316, 0x82050c17, 0x09113964, 0x08040101, 0x06081008, 0x1b0e0608, 0x0401090e, 0x01010806, 0x05030d03, 0x0a2b9882, 0x01070606, 0x06010406, + 0x82010209, 0x06052310, 0x0a82090c, 0x82070321, 0x8201201f, 0x020e22d7, 0x23108207, 0x08020308, 0xb6821085, 0x04012408, 0x1c060e07, 0x6a351c38, + 0x1e3e1f34, 0x182c7738, 0xf4011d3a, 0x05030f09, 0x10010f0a, 0x050f0110, 0x82051616, 0x0d043c06, 0x1905030e, 0x0d180103, 0x030a0b10, 0x0a040d14, + 0x010b0504, 0x03050902, 0x82020404, 0x1007271b, 0x0c01090d, 0x01830203, 0x150a0634, 0x0c1a0c0a, 0x03011905, 0x3f200304, 0x010c0911, 0x74820402, + 0x07010238, 0x040f0103, 0x080a0206, 0x0e060d15, 0x030f0506, 0x04010223, 0xcd820509, 0x042a1b2c, 0x080e2203, 0x02040304, 0xab820402, 0x01070123, + 0x27b18202, 0x05090101, 0x03183a13, 0x0f24d382, 0x19331a04, 0x08204782, 0x0a201d82, 0x04373682, 0x04130a09, 0x0a040f0f, 0x01050502, 0x04050a02, + 0x130e030a, 0x820e0304, 0x07162da7, 0x0f060506, 0x0f0f0a0a, 0x05081605, 0x06240a84, 0x05040e11, 0x043d9c82, 0x14262208, 0x00000818, 0x55000400, + 0x0f0c3e00, 0x8a014203, 0xa6019d01, 0x0000b201, 0x06fe6c01, 0x26630320, 0x07796208, 0x32433620, 0x010e2c06, 0x23010e07, 0x3623012a, 0x85343526, + 0x62142014, 0x14830522, 0x22211782, 0x82178736, 0x82262084, 0x5807202c, 0x1e2a054f, 0x013a3301, 0x07063233, 0x42692206, 0x051a4c0e, 0x34363722, + 0x35203882, 0x8305a743, 0x263b8447, 0x1e17010e, 0x872e1701, 0x05615874, 0x08524018, 0x15011c30, 0x36371614, 0x16063732, 0x27263435, 0x4182013c, + 0x16323322, 0x83053a51, 0x32362305, 0x8a701617, 0x32332206, 0x820b8236, 0x5892821d, 0x14200aa0, 0x47430b82, 0x013e2106, 0x85053363, 0x8335203e, + 0x360221b0, 0x4e883682, 0x023a3322, 0x2105254c, 0x76821706, 0x2226d682, 0x16061506, 0x43830633, 0x05830720, 0x61821620, 0x17228b82, 0x6a840622, + 0x39823620, 0x26362722, 0x21058f52, 0x9d823e27, 0x35200b83, 0x2721a684, 0x82978326, 0x163723b5, 0x5584013a, 0x33321624, 0x1c831636, 0x010e0128, + 0x07062223, 0x23822622, 0xf1733720, 0x26252b05, 0x011c3736, 0x17260617, 0x22832636, 0x1626dd08, 0x0c010e33, 0x230d080f, 0x793c236e, 0x433c7979, + 0x43868686, 0x0a0f1e0f, 0x12100702, 0x330d1331, 0x0a170709, 0x380e200e, 0x02043970, 0x3e060204, 0x0d040d0a, 0x42210d18, 0x02010820, 0x0d370703, + 0x06050d10, 0x0c090d40, 0x06040301, 0x3014102c, 0x0e1c0d17, 0x02010102, 0x2312030e, 0x0d1c0b11, 0x0f10210e, 0x1b0d0f1f, 0x063f0b0f, 0x01010a03, + 0x0c120204, 0x251e3d1e, 0x290d254a, 0x01040a0b, 0x03020301, 0x200d0109, 0x0406040d, 0x13060d06, 0x12051327, 0x0f030503, 0x1a331a11, 0x01086a05, + 0x07070d05, 0x3c793c07, 0x07070f08, 0x29050904, 0x06190502, 0x08070506, 0x0a0b0407, 0x0c040b16, 0x0c0c0102, 0x030a0503, 0x03020c03, 0x3a09040f, + 0x0a200913, 0x04011705, 0x04010207, 0x043e2782, 0x06020b03, 0x6c6b3603, 0x1105356b, 0x050f0703, 0x07071205, 0x7c3e0a0a, 0x323e7b7c, 0x90823163, + 0x0c092e08, 0x06120403, 0x01130c01, 0x01060414, 0x1127100d, 0x0e022207, 0x2c040506, 0x05070908, 0x06080b04, 0x0705050c, 0x0d110504, 0x02030201, + 0x08c08204, 0x03060126, 0x6c360102, 0x3e366c6b, 0x160b3e7c, 0xf50c160b, 0x051b02af, 0x03050706, 0x0302031b, 0x0a2b0701, 0x02021009, 0x05315382, + 0x44110a0b, 0x3d030901, 0x0221050a, 0x04010768, 0x08df820b, 0x09130a28, 0x06050c0a, 0x070a0506, 0x0907050a, 0x060e1d0f, 0x050a0511, 0x0f070b27, + 0x11070408, 0x05130607, 0x082f050b, 0xbb820a0c, 0x2c0c0b3c, 0x0105100c, 0x02050101, 0x07030101, 0x09091405, 0x0d070710, 0x08050505, 0x20820408, + 0x08050a32, 0x080e0715, 0x14040504, 0x050b040a, 0x01050705, 0x042f2d82, 0x09200704, 0x280b170b, 0x2813284e, 0x820b1214, 0x1320083f, 0x0b0a1703, + 0x060b0609, 0x0302040c, 0x031a321a, 0x09030306, 0x0a040202, 0x12080618, 0x01020406, 0x2808d282, 0x0c060723, 0x02140307, 0x06051402, 0x1407060c, + 0x0b150b08, 0x04071114, 0x09010109, 0x0d200d04, 0x0a0e0e0e, 0x0f060910, 0x084f8207, 0x0a042021, 0x150a0a14, 0x010d0809, 0x1708080d, 0x0f281104, + 0x0a120f0b, 0x03040905, 0x13050302, 0x820c0c08, 0x0121085c, 0x3a0c3d0a, 0x0204090a, 0x04190506, 0x07070d0b, 0x340b0911, 0x05110402, 0x07030704, + 0x140a0a0e, 0x28eb820b, 0x14071304, 0x22111524, 0x36558211, 0x09080201, 0xfdfe0928, 0x02070e07, 0x1b030401, 0x01040702, 0x82092f0b, 0x172c08da, + 0x070b0406, 0x05060307, 0x040f0508, 0x05001516, 0xa4006200, 0xda026a0a, 0x1e010b01, 0x50014a01, 0x00005601, 0x37363201, 0x3135013e, 0x43053755, + 0x2320052e, 0x2107ae50, 0x1e562627, 0x23032105, 0x21051444, 0x11822606, 0x36262727, 0x15012a27, 0x201a8516, 0x241a8401, 0x16141506, 0x24178215, + 0x22072226, 0x78448226, 0x22210915, 0x220e8206, 0x6d010e37, 0xa6710ee1, 0x23358206, 0x16170614, 0x0de06418, 0x82013e21, 0x4915202f, 0x16200592, + 0x4706c747, 0x1e2006bb, 0x820c2644, 0x057f55b8, 0x49062844, 0x178307f2, 0x16240b82, 0x32161736, 0x1d822082, 0x55363321, 0x1a820660, 0x033a3323, + 0x067d5033, 0x36373622, 0x1622d185, 0xdb830537, 0xb77b2220, 0x3a172305, 0x78821701, 0x26222522, 0x22051057, 0x51260623, 0x7172066f, 0x21088208, + 0xbb443632, 0x334a0805, 0x1517011e, 0x33163225, 0x2a232706, 0x16362301, 0x130a350a, 0x03020d09, 0x060c0908, 0x06101e0c, 0x0309070d, 0x07080202, + 0x36080d06, 0x7038356d, 0x5a5a2d37, 0x592d2d5a, 0x2a542a2d, 0x02030610, 0x06030924, 0x010e0306, 0x37820802, 0x2c582c29, 0x06162d17, 0x820a0104, + 0x162b0814, 0x0a190b08, 0x03020202, 0x10090305, 0x07110505, 0x050b0202, 0x582c010c, 0x2c582b2d, 0x08172d16, 0x0c06060d, 0x152a1507, 0x82012709, + 0x034c0800, 0x0f1e1109, 0x060b260f, 0x09040308, 0x10150905, 0x022a532a, 0x0a150a01, 0x08031b06, 0x170b0608, 0x0118080b, 0x20100b1e, 0x15291411, + 0x08041713, 0x1209080c, 0x0e0d0509, 0x0b0f2310, 0x11080b16, 0x08160e08, 0x0f10110a, 0x180b0f1e, 0x0f2b0e83, 0x2c140f17, 0x11251115, 0x82142c13, + 0x5a2d3265, 0x2d582d2c, 0x09172c16, 0x10090914, 0x59592c0a, 0x36c68359, 0x0c182e18, 0x0b020211, 0x06210b0e, 0xf9041b03, 0x0d2c0a2f, 0x8208150a, + 0x052a08d9, 0x16091234, 0x03040806, 0x9a4f7a06, 0x274f274f, 0x0a102010, 0x14040a0d, 0x08120806, 0x27142714, 0x4e26284f, 0x0a140a26, 0xbe820a03, + 0x0d05012e, 0x03040405, 0x02016af9, 0x42010301, 0x48081183, 0x034d0201, 0x0b020402, 0x0209081d, 0x0d080603, 0x07030915, 0x140a060f, 0x01010708, + 0x03020304, 0x0f0d0e01, 0x0f03060d, 0x05090501, 0x0b050601, 0x09100505, 0x07010108, 0x01030b01, 0x1e070703, 0x02051901, 0x08040611, 0x82028204, + 0x01270847, 0x06050602, 0x03050401, 0x2c0c0201, 0x2f172c56, 0x04360a17, 0x06070e06, 0x14070c0f, 0x09120a08, 0x0904100e, 0x82040815, 0x8202204c, + 0x1d0f2d2b, 0x142a150d, 0x0f10220e, 0x0605030d, 0x052d4382, 0x13081705, 0x2513101e, 0x04270b13, 0x2bb28404, 0x140b0a15, 0x01020303, 0x02030502, + 0x0b827982, 0x02020425, 0x83060604, 0x0304331c, 0x03030101, 0x0e0b1605, 0x0904051f, 0x0102080d, 0x12820d91, 0x1005082c, 0x01011808, 0x0b160a08, + 0xe5840281, 0x0b070127, 0x02010205, 0x24038302, 0x06040401, 0x2015848c, 0x36008200, 0x005e0002, 0x02e809bb, 0x00ac00c6, 0x010000c5, 0x2a35013c, + 0x48222601, 0x07200822, 0x43054c4b, 0xf163135f, 0x22232605, 0x011c1526, 0x05684315, 0x200adc4a, 0x23148237, 0x35323330, 0x43053343, 0xd3780b81, + 0x36322a05, 0x33061617, 0x2617013a, 0x05dc6a36, 0x82141521, 0x05f24208, 0x16330624, 0x26833332, 0xf0470320, 0x32362206, 0x052d7817, 0x36258d83, + 0x33163237, 0x2b918205, 0x2e272606, 0x16143701, 0x37362233, 0x32212d82, 0x08518216, 0xe8090723, 0xcacac962, 0x73723a62, 0x42203a72, 0x06220921, + 0x3f148408, 0x2a143d86, 0x0e1f0f10, 0x0b0e1a0e, 0x08028218, 0x230f0af8, 0x162d1510, 0x0714241c, 0x22040901, 0x11160702, 0x1520172c, 0x07110408, + 0x01355b20, 0x101e2701, 0x2d0e140a, 0x441d2a6a, 0x101f0e25, 0x0a0b1d06, 0x3a1d0b18, 0x122b121d, 0x0b060402, 0x01010b15, 0x05071105, 0x0f614502, + 0x0a317232, 0x03050a13, 0x0b170b04, 0x29109f02, 0x29525152, 0x06154b1f, 0x1b0d0609, 0x091f1515, 0x0f040408, 0x16f9101e, 0x150e260a, 0x0c111131, + 0x04160117, 0x1d0b0316, 0x0822150d, 0x02060304, 0x12361646, 0x1e030601, 0x0909080c, 0x0d07090b, 0x07100707, 0x03021605, 0x0d080513, 0x020f0706, + 0x030a1104, 0x07030107, 0x3118070c, 0x184e2219, 0x0c092f14, 0x1b0a1510, 0x18512f0a, 0x01020402, 0x0e182e0e, 0x12170816, 0x0a21151d, 0x01010704, + 0x01050617, 0x0a010404, 0x07070501, 0x06080102, 0x0909061b, 0x01030b02, 0x060d0109, 0x56820f03, 0x0f010c26, 0x15070f1f, 0x2f082a82, 0xdc010907, + 0x0704120e, 0x2e0b0b08, 0x46311310, 0x03020406, 0x07130a14, 0x03000000, 0x72006300, 0x0d037207, 0x1001fe00, 0x00002401, 0x37363401, 0x2105504c, + 0xab5b012e, 0x200b820b, 0x05064907, 0x07c16918, 0x34363722, 0x3e2b0283, 0x3a353301, 0x16323301, 0x82363237, 0x72332005, 0xa06c08fa, 0x33323009, + 0x23170614, 0x17163215, 0x35173236, 0x6c150616, 0x1e2608a3, 0x16141501, 0x02461407, 0x011c2507, 0x26062315, 0x25050946, 0x23061607, 0x11822315, + 0x2508497a, 0x27262223, 0x54460622, 0x22178708, 0x83343526, 0x2a272202, 0x831a8201, 0x5c142002, 0x07210913, 0x08d77034, 0x23372625, 0x83150614, + 0x8203201b, 0x06232539, 0x22060716, 0x2908084e, 0x3f363435, 0x07352501, 0xcd4d011c, 0x26342709, 0x0e350727, 0x36830701, 0x28080383, 0x3315010e, + 0x01372634, 0x05021aa3, 0x1d06070d, 0x0c160b08, 0x10142d15, 0x11081027, 0x090f0908, 0x02091006, 0x07040311, 0x08008401, 0x04090242, 0x01020304, + 0x4c080802, 0x361b4c97, 0x0610071b, 0x06020503, 0xae57050a, 0x3157aead, 0x170b3263, 0x0205020c, 0x02020603, 0x01010506, 0x02040204, 0x09040e03, + 0x23472301, 0x06172f17, 0x0206051e, 0x082d1582, 0x0b152914, 0x04010b18, 0x1e0f0930, 0x373d820e, 0x25051006, 0x0508030a, 0x06041105, 0x1d0c0c33, + 0x20422108, 0x02030905, 0x08372c82, 0x040c0602, 0x0c110c08, 0x01010433, 0x0d183118, 0x0b050d1b, 0x83020a05, 0x0508212d, 0x082b6882, 0x15331101, + 0x050f200f, 0x8305040d, 0x23230873, 0x0401232a, 0x04050401, 0x060d0503, 0x0d244924, 0x0b030b2b, 0x013f0526, 0x070361c8, 0x1a090f10, 0x820c0205, + 0x0183224a, 0x08d18403, 0x18040327, 0x73010109, 0x0b033202, 0x03050b15, 0x01050101, 0x06070804, 0x07060a08, 0x050e0504, 0x07021004, 0x0c05050b, + 0x380b8206, 0x08060d06, 0x0d070609, 0x050f0505, 0x01011006, 0x04030301, 0x140b0403, 0x20a6820b, 0x08038203, 0x03061324, 0x09090705, 0x06060d07, + 0x0306030e, 0x0301030a, 0x05030408, 0x0901050b, 0x0d080910, 0x0a090d07, 0xd3820603, 0x00820220, 0x0c054908, 0x041b0d08, 0x06130904, 0x0c06060b, + 0x07020105, 0x0a050505, 0x050a0504, 0x01040303, 0x03040908, 0x05080407, 0x03030b03, 0x01475547, 0x09010709, 0x09030404, 0x07050b03, 0x837c0a58, + 0x0f060101, 0x02040c06, 0x0115040a, 0x1223c782, 0x45040102, 0x0226062a, 0x0b060408, 0x00820008, 0x60000230, 0xdb0aa500, 0x2a01da02, 0x00003d01, + 0x124d2601, 0x52342005, 0x15270533, 0x1423012e, 0x482a1716, 0x232606bb, 0x2623012a, 0x14822706, 0x26320582, 0x22060706, 0x23262223, 0x30370622, + 0x2e172227, 0x09820701, 0x2322362b, 0x22073626, 0x22261726, 0x0b8b4223, 0x21075c45, 0x877d0623, 0x010e210a, 0x27233c82, 0x8207012a, 0x204b851d, + 0x524e8306, 0xb465065b, 0x08c14c0a, 0x3620088c, 0x200b284d, 0x09044d16, 0x10c65718, 0x8605ab50, 0x3632223b, 0x05f86627, 0x37013a22, 0x45057e48, + 0x032006d1, 0x8208115f, 0x3427222f, 0x06bd4c36, 0x33013e22, 0x2e332f82, 0x36322701, 0x27263435, 0x1f261517, 0x16260501, 0x53013a33, 0x37200863, + 0x86081282, 0x0c05d40a, 0x0a160a11, 0x1c060307, 0x0a0b0e0a, 0x01010a14, 0xaaaaaa55, 0x29532a55, 0x0b152915, 0x0f070b17, 0x05070507, 0x0b041105, + 0x28140f20, 0x0b160b13, 0x07020f01, 0x30170507, 0x014f0717, 0x07031002, 0x21080a02, 0x03040304, 0x20100b1b, 0x08100811, 0x1509120a, 0x120a142a, + 0x0a11090a, 0x04021406, 0x5a2c071e, 0x1428142c, 0x13162d16, 0x0b061224, 0x01030205, 0x09060c06, 0x0c070a12, 0x0a1f1507, 0x82010504, 0x03840800, + 0x04010201, 0x08010202, 0x05102709, 0x18020213, 0x12221307, 0x0a091309, 0x1e0f0b13, 0x060c050e, 0x08070c08, 0x150a0710, 0x172c160a, 0x03061a10, + 0x160b0801, 0x08110809, 0x0d071009, 0x0a020504, 0x04040202, 0x100f1b0c, 0x0e141122, 0x1b50140b, 0x060e190e, 0x1201060a, 0x0f200e01, 0x16193118, + 0x0f07162c, 0x0a100806, 0x1711210f, 0x5c2e182f, 0x352f5c5c, 0x170c366b, 0x0b1b0c0c, 0x01011f0a, 0x07080404, 0x0e25ec82, 0x71380e1a, 0x2d908338, + 0x0103010a, 0xf9020305, 0x092f035f, 0x9a820f05, 0x2f050233, 0x060c080a, 0x02010102, 0x04150a8e, 0x04110203, 0x230c820a, 0x03010f0a, 0x0120d282, + 0x01272e82, 0x03030107, 0x82010309, 0x01022300, 0x12820402, 0x01070524, 0x0282010c, 0x100e2108, 0x050e0806, 0x04030a03, 0x10090407, 0x02040409, + 0x04010703, 0x01060806, 0x01010605, 0x04010107, 0x3f060041, 0x0a050102, 0x0a110914, 0x170a1309, 0x2b16172e, 0x102d1116, 0x01030610, 0x05090603, + 0x0a110603, 0x042d3f82, 0x0f06040b, 0x03080309, 0x02020604, 0x05f04909, 0x19060829, 0x0109060d, 0x82050c02, 0x08022459, 0x82230905, 0x0506360e, + 0x0b0a0406, 0x01050304, 0x1a0f1d01, 0x17091005, 0x030c0309, 0x0550430a, 0x10090622, 0x01275282, 0x06030102, 0x82070a0d, 0x830520b1, 0x05032ac6, + 0x0915050d, 0x0d070818, 0x20da8203, 0x82c48203, 0x093b0890, 0x01010810, 0x9f05050a, 0x0505020b, 0x030c0413, 0x031d0304, 0x00040408, 0x00550002, + 0x0306090c, 0x01b8017a, 0x010000d1, 0x1607011e, 0x22062326, 0x07012a07, 0x14150622, 0x83161716, 0x14272305, 0x08820716, 0x82011c21, 0x22232211, + 0x26058416, 0x36343506, 0x46013c35, 0x08850509, 0x823e3721, 0x0736250e, 0x2e373426, 0x26230882, 0x18061415, 0x2a08174e, 0x27010e07, 0x34353626, + 0x622a2306, 0x062305c8, 0x82361617, 0x5105825c, 0x05860506, 0x6e821420, 0x22068d46, 0x51062627, 0x36230a45, 0x42220637, 0x072105f9, 0x646a1830, + 0x06072209, 0x25028216, 0x23062223, 0x8f822606, 0x43478085, 0x06262109, 0x74830b82, 0x82062221, 0x8226827d, 0x43bf8253, 0xcc4605f8, 0x20238408, + 0x05d65d26, 0x16361728, 0x33013a33, 0x05833632, 0x15362229, 0x36373436, 0x86363732, 0x0515545c, 0x8205f243, 0x222c8223, 0x82163215, 0x3e172274, + 0x250b8201, 0x33163217, 0x3b863616, 0x32210b82, 0x22148236, 0x4c323633, 0x3e2106e2, 0x18298201, 0x2109e490, 0xe943012e, 0x16322106, 0x53832682, + 0x17361422, 0x24056441, 0x1415011c, 0x09845d06, 0x22060e5e, 0x82343726, 0x82362002, 0x202c8244, 0x202c8215, 0x8226821e, 0x330322a7, 0x225a8205, + 0x4423012a, 0x698408b9, 0x9c082782, 0x0bd90837, 0x5c061522, 0x48904812, 0x033a7439, 0x03030f02, 0x02140203, 0x01051003, 0x0a031301, 0x071e050c, + 0x02011301, 0x0e020702, 0x09040404, 0x02040409, 0x0a020209, 0x130d0d1b, 0x17010106, 0x264c2602, 0x01016206, 0x04020602, 0x08030901, 0x280c1f02, + 0x220b2851, 0x03090408, 0x080c0205, 0x02062513, 0x0f050a0c, 0x05050e06, 0x05030204, 0x05030103, 0x03060504, 0x0b030703, 0x104b1604, 0x040d0404, + 0x0a110607, 0x01050d09, 0x02040301, 0x2e050507, 0x0d491103, 0x0d12080a, 0x261a821e, 0x06030705, 0x822f5f2b, 0x02aa087e, 0x0e030304, 0x0a1a0b04, + 0x06090e0a, 0x03020106, 0x23051d03, 0x284f2809, 0x0e346034, 0x09020e1b, 0x0e050703, 0x0a090604, 0x070c0608, 0x02040d09, 0x03040511, 0x0e220d07, + 0x0b021108, 0x143a1806, 0x07051807, 0x37060712, 0x0105030a, 0x08040904, 0x190d0811, 0x0308050c, 0x08010e04, 0x1009080c, 0x02030109, 0x07060f08, + 0x1704070d, 0x0f1d0f0d, 0x02022408, 0x13060721, 0x05080404, 0x05060e0b, 0x6009040b, 0x06250b0d, 0x0102040c, 0x0d0c0c17, 0x06010509, 0x06254a25, + 0x04040419, 0x01010b07, 0x010b0401, 0x04081e06, 0xf9820603, 0x4316412e, 0x43868687, 0x0402a0f8, 0x356b3502, 0x0332da82, 0x0905020c, 0x0d1c1104, + 0x11081608, 0xb4021021, 0xb05e3503, 0x1d200805, 0x08030b04, 0x0c0b2008, 0x24100727, 0x126a020f, 0x07204020, 0x01102b36, 0x0308020a, 0x08040603, + 0x2b08aa82, 0x0a0d0406, 0x07418141, 0x0905060f, 0x082d0a0a, 0x02022f06, 0x0d030506, 0x04030706, 0x02050203, 0x03070106, 0x0c020101, 0x02030a02, + 0x032b0782, 0x01070309, 0x0a110906, 0x82070104, 0x20112c3f, 0x21422110, 0x09102010, 0x82110812, 0x030421e4, 0x052d5382, 0x41071008, 0x10144084, + 0x0a19010e, 0x2529820c, 0x07070201, 0x1582080f, 0x16072a08, 0x05140505, 0x02050a03, 0x20101d07, 0x0d230d0e, 0x090b0a0b, 0x0d050509, 0x0308030a, + 0x01030104, 0x01020506, 0x110a0c07, 0x2b5f8202, 0x48250505, 0x0202021e, 0x0a02030d, 0x08321882, 0x0d0c2a07, 0x240d0c27, 0x0945120e, 0x0d070206, + 0xa2840601, 0x0d061134, 0x10040504, 0x04050802, 0x04020702, 0x040c0204, 0x4e820720, 0x050e142f, 0x020a0504, 0x02010702, 0x0d0a0601, 0x245c8202, + 0x03030201, 0x3b618203, 0x0b05040b, 0x0a090205, 0x07060108, 0x0c0b0908, 0x05160d07, 0x03220f02, 0x010b0b03, 0x0b2d4582, 0x09100804, 0x0e081108, + 0x02040204, 0x2303820a, 0x0e03030b, 0x0124b483, 0x0904010b, 0x07291482, 0x08060109, 0x041e0b0c, 0x085b8249, 0x07190930, 0x0d080308, 0x0d0d0d1b, + 0x060b070a, 0x000d180c, 0x00020000, 0x0a580053, 0x01260333, 0x008d0180, 0x36320100, 0x33011e17, 0x16171432, 0x2a433336, 0x011e2208, 0x05a75015, + 0x580a1f4b, 0x29820851, 0x013e3729, 0x37363437, 0x7e331634, 0x1425054a, 0x32161706, 0x82028233, 0x16322117, 0x25061b4d, 0x0e07011e, 0x82552301, + 0x06072107, 0x36252c82, 0x15061617, 0x054f5114, 0x1d820620, 0x26220722, 0x06200583, 0x27201183, 0x14212f82, 0x055a5906, 0x8206424b, 0x16142186, + 0x2406b251, 0x2e352622, 0x050c5601, 0x16141722, 0x17214d82, 0x23418314, 0x27262223, 0x8307ce48, 0x85718217, 0x012e224d, 0x07f04307, 0x60443882, + 0x08107905, 0x35452982, 0x22232305, 0x3e852306, 0x7a832220, 0x51085945, 0xf28b051d, 0x3e443320, 0x013e2108, 0x08b58f18, 0x09af9218, 0x59263221, + 0x33250809, 0x3a170616, 0x06254101, 0x4c0bde44, 0x2d6307c7, 0x3e372205, 0x25f28201, 0x012a0117, 0x737f2207, 0x363f0805, 0x09f30527, 0x05030715, + 0x05020403, 0x100a0408, 0x09100908, 0x05031704, 0x02010105, 0x200d1003, 0x2b16203f, 0x051c0616, 0x08080106, 0x1d0e0911, 0x070f070f, 0x0202060e, + 0x01020111, 0x82030518, 0x17022b05, 0x060c0603, 0x1c438442, 0x1c821d3a, 0x02093008, 0x06030202, 0x3c061105, 0x542a3c78, 0x08100929, 0x07070106, + 0x01110617, 0x0b080315, 0x22442109, 0x03162a16, 0x0a040214, 0x09150c08, 0x82090c07, 0x04240842, 0x05080510, 0x0c070e06, 0x5c2f0b17, 0x01030b2e, + 0x20442009, 0x0c122513, 0x01010116, 0x01100703, 0x04060705, 0x87080982, 0x170b2306, 0x0e06152a, 0x03080406, 0x08010601, 0x0a110102, 0x090d1e0e, + 0x16090811, 0x0f1d1109, 0x02050a05, 0x0b030109, 0x3e050e04, 0x3e1f3e7d, 0x1328141e, 0x05013316, 0x010c0304, 0x0c040801, 0x592d0c1a, 0x1225122d, + 0x10081508, 0x040c0305, 0x0c050515, 0x254c2506, 0x0e0b1d0d, 0x13081217, 0x3a7b3f08, 0x191a3118, 0x20111832, 0x06110110, 0x0f10260e, 0x020a0f1d, + 0x12231204, 0x06132513, 0x11080103, 0x0a140a08, 0x02277b82, 0x1e100505, 0x823b1f0f, 0x100f2903, 0x10020c22, 0x080e0803, 0x08212682, 0x3bc98210, + 0x07030503, 0x06071607, 0x0e020306, 0x09170d01, 0x130ac8fe, 0x04180d0a, 0x140e2104, 0x11208c82, 0x0321b983, 0x23008201, 0x01040508, 0x032b5482, + 0x09061905, 0x25090912, 0x82030301, 0x03023caa, 0x03070302, 0x02010202, 0x170f0c0e, 0x080f080f, 0x04380104, 0x03091309, 0x8204020d, 0x83012035, + 0x08113105, 0x04060d08, 0x02030302, 0x03030d01, 0x030e2508, 0x05221683, 0x21820101, 0x10070230, 0x08090604, 0x0a040507, 0x140d0a15, 0x16820103, + 0x4e292208, 0x02770629, 0x0f030304, 0x05478f48, 0x0a05021a, 0x03120508, 0x06061102, 0x0f0a0514, 0x23120a05, 0x2aa48211, 0x06040b04, 0x14090608, + 0x82040a01, 0x0b042582, 0x19361802, 0x0538f382, 0x140b050d, 0x01080305, 0x03010904, 0x02020402, 0x11091b12, 0x070e0508, 0x0e820a82, 0x01020136, + 0x24080302, 0x12241210, 0x0e2a542a, 0x03020907, 0x050b0501, 0x0b291382, 0x0202051b, 0x0a192202, 0x82f78212, 0x043222ad, 0x8208820d, 0x0c2523f6, + 0xca820a02, 0x032be482, 0x0c020201, 0x05021803, 0x82070409, 0x030325f5, 0x05030301, 0x07320382, 0x14070913, 0x090b0106, 0x01016efe, 0x1e031314, + 0x0082000e, 0x56000230, 0xcb042300, 0x0d005b03, 0x00008d00, 0xff7e2301, 0x16322606, 0x25013e37, 0x08664c17, 0x15262222, 0x2707c743, 0x35012e07, + 0x012b010e, 0x22079055, 0x5e261417, 0x591808fc, 0x36270c8c, 0x36262726, 0x82263435, 0x44372049, 0x1f300797, 0x33163601, 0x2e173632, 0x36343701, + 0x013e1737, 0x20054b4c, 0x0a394c17, 0x011e1723, 0x262e8215, 0x02171636, 0x82085459, 0x15f30800, 0x0f07112f, 0x03085302, 0x3505060f, 0x10240e13, + 0x13028a0c, 0x1e1d3c1d, 0x05051d39, 0x75091208, 0x0e060c11, 0x0a0d0710, 0x08091e07, 0x2e17080f, 0x12241217, 0x09073415, 0x0d070713, 0x0b1e0c07, + 0x0b0d2e02, 0x06060204, 0x2f0c0e22, 0x10200e08, 0x06224221, 0x21244722, 0x01012042, 0x140a0a01, 0x18040d04, 0x1508161c, 0x09100808, 0x0c152c15, + 0x17090a13, 0x15030408, 0x100d1222, 0x083e020d, 0x09083008, 0x3c070f01, 0x572c04b8, 0x050f162c, 0x0e020d04, 0x0502410b, 0x0b040602, 0x280e0f06, + 0x1e3b1c0d, 0x10365f35, 0x02010107, 0x050a0501, 0x05050a03, 0x451c190e, 0x1c371c1c, 0x1b316232, 0x340f121e, 0x13301411, 0x020b1b12, 0x06060a02, + 0x05010401, 0x0102090e, 0x04050308, 0x04020604, 0x02011a05, 0x08030806, 0x01010701, 0x0903040c, 0x82010307, 0x03320810, 0x03090c06, 0x00000502, + 0x00540001, 0x0380015a, 0x00440026, 0x2e351300, 0x36343501, 0x1733013f, 0x26270711, 0x013e3736, 0x2711013f, 0x23150715, 0x03883315, 0x1415172e, + 0x22012b06, 0x37013d26, 0x23353335, 0x27200388, 0x3b2d3a82, 0x0d953701, 0x1705050e, 0x1135697c, 0x25828203, 0x2e10090e, 0x00840b1b, 0x08071b27, + 0x1a0808c9, 0x0800840c, 0x08081a2f, 0xc902220f, 0x0b0d022d, 0x03020a07, 0x1a9dfea8, 0x040a0503, 0x08050904, 0x351a3d01, 0x38363519, 0x34363936, + 0x0708272e, 0x2e270807, 0x270c8234, 0x19353638, 0x1e080749, 0x5824b382, 0x73025800, 0xa620b382, 0x9546c082, 0x0607260a, 0x16141516, 0x058a5307, + 0x3621be82, 0x21928226, 0x41183427, 0x63450afc, 0x06262305, 0x88682227, 0x1e172206, 0x0bd74601, 0x5208b557, 0xcb4e0e52, 0x16362809, 0x23343637, + 0x46353622, 0x3e210511, 0x4a1a8501, 0x352008c0, 0x32207483, 0x15225382, 0x20460614, 0x31780809, 0x1503fd01, 0x08110b07, 0x09090f07, 0x06030107, + 0x06010202, 0x010f0407, 0x03010d02, 0x07010103, 0x0506020b, 0x0c050104, 0x09040a0e, 0x04020405, 0x08091909, 0x0204061b, 0x0e060802, 0x0a150b06, + 0x100d1b13, 0x0708070b, 0x17210403, 0x142a591d, 0x2412152c, 0x0a120c12, 0x07050907, 0x1415050c, 0x14120101, 0x1010130a, 0x1e0a1021, 0x080a0202, + 0x0a160a03, 0x03010404, 0x5c086782, 0x070c0302, 0x19090909, 0x24031a33, 0x03100101, 0x03040708, 0x06020602, 0x0a0a0404, 0x1196020e, 0x2a130f1e, + 0x0e201014, 0x2f101d0f, 0x2c162e5d, 0x02090716, 0x08050101, 0x11080506, 0x19321a07, 0x072a552c, 0x0d040411, 0x0f1d0b03, 0x04060c06, 0x0205030b, + 0x03060201, 0x16070515, 0x2e298304, 0x0e100502, 0x1814260f, 0x49241a2b, 0x8219241c, 0x06062577, 0x0f04060b, 0x05382a82, 0x25080906, 0x40202a4e, + 0x06120d19, 0x03060906, 0x29070d05, 0x04010a83, 0x032fee82, 0x03030305, 0x09050704, 0x0b050201, 0x82010505, 0x030522b4, 0x39198203, 0x2b100712, + 0x0000000f, 0x00540003, 0x03a30158, 0x00860026, 0x00cb00a9, 0xcd5c0100, 0x012e2405, 0x59342627, 0x471809bf, 0x362c0811, 0x36262706, 0x23222627, + 0x3607010e, 0x2906334d, 0x33010e07, 0x1c15013a, 0x54531501, 0x17012206, 0x200e821c, 0x20118403, 0x06854716, 0x55050a5d, 0x4e4205d1, 0x0a554c08, + 0x16141522, 0x20058e4c, 0x20238235, 0x424b8407, 0x27200528, 0x22218a82, 0x56158336, 0x30240869, 0x11151415, 0x2620228e, 0x1d82228d, 0x01a2012b, + 0x03070203, 0x02010703, 0x08048204, 0x0403082f, 0x04010603, 0x06010408, 0x01020102, 0x05010901, 0x3502040b, 0x0c1a0c06, 0x09040d05, 0x1802030b, + 0x09051706, 0x07210a32, 0x0e2a5029, 0x261c821f, 0x04040606, 0x82020306, 0x06053f29, 0x02040701, 0x45010702, 0x23110d04, 0x08120712, 0x061e3b1d, + 0x1f3e1f01, 0x100d1f0d, 0x1595101e, 0x1ca40130, 0x1e0e1b37, 0x070a090c, 0x02060804, 0x68820108, 0x0819072e, 0x03041003, 0x140b030d, 0x0402060a, + 0x4c081482, 0x07110201, 0x02020309, 0x0a012903, 0x0b070a14, 0x01030409, 0x17150501, 0x5e2f162d, 0x0b2f5e5e, 0x0e070b17, 0x09031102, 0x03080b02, + 0x150b0401, 0x2c592c0b, 0x04499149, 0x0b05040c, 0x030b0305, 0x370c230b, 0x371b376e, 0x0705041b, 0x2dd88207, 0x370a1105, 0x0599366d, 0x020d060b, + 0x4c820202, 0x072f3582, 0x07060704, 0x0603060d, 0x02060203, 0x83010401, 0x82312000, 0x030c2121, 0x10832182, 0x04070424, 0x22820601, 0x06040722, + 0x08050b4b, 0x0201023c, 0x00000001, 0x00570002, 0x0361023e, 0x004d0040, 0x01000074, 0x16171606, 0x0e010f06, 0x023f0701, 0x012e012f, 0x010f012f, + 0x2e270733, 0x36013f01, 0x1e172734, 0x37021f01, 0x19832636, 0x36343722, 0x20093546, 0x08645b02, 0x83011e21, 0x0f012324, 0x3e853702, 0x15330724, + 0x4e82020f, 0x59820320, 0x30081b84, 0x013f1617, 0x37013e13, 0x023f013e, 0x03024e02, 0x05020304, 0x0a110622, 0x07240509, 0x060e0719, 0x040a2216, + 0x01050d17, 0x04040c03, 0x030a060c, 0x34818204, 0x03170707, 0x05050103, 0x04090901, 0x09071217, 0x030c0802, 0x08d98206, 0x0207063b, 0x0b0d0109, + 0x01020e0c, 0x1f390b08, 0x0c071605, 0x011f0f06, 0x181f1353, 0x02b6081f, 0x18090706, 0x101e0e0f, 0xb60a0b11, 0x03030b08, 0x05440205, 0x09048602, + 0x080f0505, 0x08458228, 0x32011036, 0x07051812, 0x0e2f0202, 0x170e1b1c, 0x14071709, 0x0c03050d, 0x220b1c08, 0x1d0b1105, 0x12111605, 0x130b0516, + 0x06090409, 0x16060902, 0x02020510, 0x0a0a0c02, 0x102b9d82, 0x0b150b0b, 0x4f111915, 0x82130e2b, 0x015b0840, 0x0c65062b, 0x0c160b0f, 0x120600ff, + 0x0a180e0c, 0x04050e0b, 0x00010302, 0x1b19250c, 0x016f031c, 0x61000400, 0x1d035a00, 0x12008c03, 0x38002500, 0x00007d00, 0x27071713, 0x07352315, + 0x37273727, 0x15333517, 0x13071737, 0x35072737, 0x07271523, 0x37170717, 0x17353315, 0x92052737, 0x23072612, 0x011d0622, 0x0a4f4617, 0x0715232c, + 0x3b161415, 0x3d363201, 0x4f462701, 0x3533250a, 0x11173537, 0x25056843, 0x1137011f, 0x0b822327, 0x17382982, 0x132eda15, 0x1230252d, 0x2e142f2f, + 0x2d122d25, 0x3516374e, 0x3816382d, 0x2d250282, 0x01371635, 0x201382c7, 0x2a228225, 0x252f122d, 0xfe2e132d, 0x461021a9, 0xc9220b77, 0x91460708, + 0x2e3a0807, 0x040e0910, 0x11030305, 0x177c6935, 0x0d0e0505, 0x201a0002, 0x1b35341a, 0x211b1a20, 0x1a35361b, 0x27011b21, 0x3e1f2620, 0x20262140, + 0x40202620, 0x20261e3e, 0x1a211b2b, 0x1f823635, 0x1b201a24, 0x2f823435, 0x081e3324, 0xb1464907, 0x08072309, 0xb1460708, 0x35290809, 0x08c3fe1a, + 0x04040905, 0x1a03050a, 0x03a86301, 0x0c070a02, 0x002d020c, 0x00030000, 0x01580051, 0x002603a1, 0x00a20086, 0x08cb46c4, 0x46141621, 0x56180638, + 0xe1500725, 0x0e07250b, 0x26222301, 0x45064652, 0x2e22080f, 0x02822701, 0x52011c21, 0x26200710, 0x20089f44, 0x21238235, 0x0583033c, 0x37362624, + 0x3886013e, 0x23223423, 0x09536f22, 0x013e0725, 0x52013a37, 0x39820658, 0x2d827e83, 0x82160621, 0x16072108, 0x26202782, 0x37275d82, 0x1307010e, + 0x82013d34, 0x890e2006, 0x4433206d, 0x5b8208f8, 0x013c5008, 0x034d0135, 0x05020309, 0x07040304, 0x03030801, 0x02010703, 0x03020803, 0x02070101, + 0x01060403, 0x01040406, 0x0503020a, 0x05070404, 0x1f0c0303, 0x2a4f2a0e, 0x320b2106, 0x0716050a, 0x0b030219, 0x040d0509, 0x050d190d, 0x0b030135, + 0x82080106, 0x01aa083c, 0x208a0602, 0x2201011e, 0x1e03222f, 0x060c0e06, 0x21150e25, 0x0e0c0403, 0x0f213617, 0x0f970f1e, 0x1e0e0f1f, 0x1f3e1f0e, + 0x1e3b1d06, 0x11081108, 0x040c1223, 0x140a1203, 0x030d030b, 0x08031004, 0x0d040719, 0x02080105, 0x07040806, 0x1e0c090a, 0x1c371b0e, 0x0a376d36, + 0x01010511, 0x05070702, 0x1b371b04, 0x0c376e37, 0x0b030b23, 0x050b0503, 0x49040c04, 0x592c4991, 0x0b150b2c, 0x08030104, 0x0309020b, 0x080d0211, + 0x2f0b170b, 0x2f5e5e5e, 0x15172d16, 0x03010105, 0x070b0904, 0x010a140a, 0x02020329, 0x11070903, 0x64820102, 0x02042108, 0x551cd406, 0x034c2829, + 0x11165515, 0x2f060d20, 0x0e370809, 0x22142f19, 0x180c285a, 0x01cdfe0c, 0x04200082, 0x022ad382, 0x06030603, 0x0706070d, 0x64820704, 0x02274d82, + 0x060d0202, 0x8200050b, 0x10400800, 0xc0005e00, 0xc0028f03, 0x2d001000, 0x51003f00, 0x70006100, 0x8c007d00, 0xa7009b00, 0xc100b900, 0xdd00cf00, + 0x0c01e900, 0x34010000, 0x22212326, 0x15010f06, 0x3221011f, 0x37013d36, 0x1115011e, 0x3b05fa4e, 0x27262221, 0x1135012e, 0x3e373634, 0x32213301, + 0x27071716, 0x33351737, 0x07173707, 0x17250a82, 0x2f073523, 0x43098701, 0x1b8206c8, 0x23012f2e, 0x0e070622, 0x1f011d01, 0x023f3301, 0x01210988, + 0x22198235, 0x8423022f, 0x3f33266b, 0x27373501, 0x211c8a23, 0x0e8d1727, 0x89273521, 0x90272029, 0x3f072365, 0x48823301, 0x82172321, 0x8250886b, + 0x240b825f, 0x3b011e17, 0x315e8201, 0x33150527, 0x33353315, 0x23352335, 0x011f2707, 0x154c2f37, 0x14152205, 0x82228216, 0x07272180, 0x5405167e, + 0x333d05c2, 0x08074a03, 0x0503cefe, 0x0a060602, 0x07083201, 0x0606053a, 0x0b110605, 0x10092afd, 0x08008407, 0x02091041, 0x07100bd6, 0x0d040bd1, + 0x040d020a, 0x0d040e0e, 0x040d0a02, 0x050d0d13, 0x0b0b030e, 0x060d0d06, 0x0e030b0b, 0x270a0306, 0x02010403, 0x27080402, 0x0823030a, 0x08050203, + 0x03030829, 0x82232908, 0x04082119, 0x54201684, 0x18861283, 0x260a5726, 0x0402020a, 0x04200582, 0xee250489, 0x0f030d0d, 0x205e8203, 0x236e830b, + 0x0cee0f03, 0x01244882, 0x0226e42d, 0x0922a183, 0x2b830a26, 0x06060922, 0x0b830e82, 0xe4fe4708, 0x1b1b2e5b, 0x10314e3b, 0x1311080b, 0x0a0c2217, + 0x0b0a0b0b, 0x1319131e, 0x080f0e05, 0x0707060f, 0x10050606, 0x087a020a, 0x0b020207, 0x07030bc4, 0x0738c407, 0x5efe0a11, 0x07070f09, 0x07070808, + 0xa201090f, 0xe884110a, 0x05829d20, 0x820d0d21, 0x08072704, 0x070e0e07, 0x21820e08, 0x12830884, 0xfe271882, 0x03030608, 0x82030401, 0x0a0326de, + 0x05010635, 0x25098402, 0x4e060827, 0xe383030a, 0x83060621, 0x030321fa, 0x08201882, 0x5e220b84, 0x2f870606, 0x5e082722, 0x9b202388, 0xac28588e, + 0x14151514, 0x0303162e, 0x0a233e84, 0x83610827, 0x0303214d, 0x46334e83, 0x24313120, 0x022a7f7b, 0x01042302, 0x1c0b0c0c, 0x821e1312, 0x040322e3, + 0x23d98226, 0x090b1005, 0x0037e483, 0x00620003, 0x0389023e, 0x003b0040, 0x0091006a, 0x16060100, 0x4b141617, 0xa04b0897, 0x2703250d, 0x1e373626, + 0x4e06824b, 0x3722080a, 0x0b823632, 0x16071724, 0x486d020e, 0x842e200c, 0x36342328, 0xf8493637, 0x45342008, 0x2e820569, 0x012e2722, 0x20052952, + 0x4a708227, 0x49840804, 0x033e3722, 0x53081a83, 0x02232606, 0x01050183, 0x0a020101, 0x26360f09, 0x0a0b130a, 0x16090c18, 0x070a060a, 0x2e0c1e0f, + 0x0620354a, 0x19080404, 0x2c1b1f35, 0x09120b15, 0x15030509, 0x2a132230, 0x0d1c0e15, 0x5e0a110a, 0x2f190705, 0x0b150924, 0x10061006, 0x36300e1d, + 0x02040309, 0x6e084c82, 0x12030101, 0x15391b03, 0x0609120a, 0x0d160808, 0x0c172515, 0x4f320716, 0x11200d1d, 0x092f5a28, 0x4714120a, 0x0e1a0d34, + 0x02070e07, 0x1d0f0105, 0x2849370d, 0x150b060b, 0x0a17090a, 0x2111cc02, 0x15291511, 0x3b254b26, 0x1a0c3072, 0x0b140b0c, 0x05070d09, 0x1c060307, + 0x6c60290a, 0x66313e74, 0x03141031, 0x09111b04, 0x170a0b14, 0x823c200c, 0x013108b4, 0x05050508, 0x67336408, 0x0a275962, 0x0c040713, 0x0e180b04, + 0x19447931, 0x0d071a33, 0x010a0107, 0x0a010c01, 0x120a120f, 0x0c05080a, 0x0e08170d, 0x08118206, 0x38033833, 0x0c1e1127, 0x4316121d, 0x81474188, + 0x0a170c35, 0x05050a06, 0x0c150b01, 0x948c7e33, 0x03060348, 0x00000103, 0x00660004, 0x03900240, 0x00290040, 0x270b8247, 0x01000084, 0x070f0616, + 0x29054f4d, 0x3f35012f, 0x011e1701, 0x0482053f, 0x3616172d, 0x1517023f, 0x27012e07, 0x820e030f, 0x83198304, 0x063f2d17, 0x1f072735, 0x2f050f01, + 0x33373504, 0x04202d82, 0x1f2e0482, 0x33013f01, 0x3733070f, 0x061f3733, 0xdf681f33, 0x23010906, 0x09870207, 0x36261209, 0x0d242f36, 0x5c3a0907, + 0x0b251922, 0x1207050c, 0x321c371a, 0x0c0b1826, 0x2a4a200d, 0x0b172a14, 0x2d700509, 0x07052250, 0x4e252a1f, 0x0b020228, 0x1e18230a, 0x22163654, + 0x24362626, 0x11550214, 0x221b1203, 0x4c1d1f24, 0x06101f34, 0x2a150204, 0x101b2416, 0x1a0c0304, 0x1d2b310d, 0x1435ce04, 0x07040e12, 0x1b0b0902, + 0x14150f12, 0x0b07050f, 0x1b14144c, 0x0e180b1b, 0x52c50236, 0x5e694395, 0x0c162d41, 0x62280504, 0x3a692d3b, 0x2834495c, 0x0709100b, 0x0e1d1f19, + 0x35311b1f, 0x0b0a0103, 0x0912050b, 0x2f300124, 0x1d220706, 0x21120516, 0x65387d2d, 0x235b372d, 0x34261b0f, 0x2aba6359, 0x74380b26, 0x2b384a5c, + 0x4541161d, 0x553e4146, 0x07070d10, 0x09141911, 0x14081b13, 0x10380d03, 0x07261d14, 0x02030306, 0x060c0902, 0x05020502, 0x44320b04, 0x02090910, + 0x33008200, 0x00590004, 0x037d0359, 0x00c40026, 0x00e400d4, 0x010000f7, 0x2705a247, 0x2627012e, 0x010e0722, 0x22051a63, 0x43012e27, 0xf442050f, + 0x14152505, 0x32161716, 0x17821182, 0x43182720, 0x1c200e7b, 0x2109bf66, 0x3f4f0623, 0x0e716110, 0x36373022, 0x820b526e, 0x05134f54, 0x82363721, + 0x223c87b3, 0x66333626, 0x698e05e1, 0x8f630e85, 0x16362105, 0x2309314f, 0x25070616, 0x07216784, 0x22158622, 0x4f262737, 0x4c420651, 0x37272105, + 0x4b081f84, 0x33142227, 0x1e333216, 0x26323301, 0x05700327, 0x150a070e, 0x24432008, 0x1b152715, 0x1a0f1b35, 0x050b050e, 0x02020504, 0x02060304, + 0x03060204, 0x031a1203, 0x01030502, 0x08050205, 0x02070304, 0x0a050502, 0x1a0b1822, 0x0114060d, 0x012e0c82, 0x03060101, 0x0b060407, 0x0d1b0f05, + 0x0b83432f, 0x03070137, 0x07040804, 0x1a0d0b14, 0x070e090d, 0x031c391c, 0x02020204, 0x2b458201, 0x120e1c0e, 0x090d1325, 0x04110102, 0x62823d82, + 0x05343882, 0x2a150309, 0x03050315, 0x02050d06, 0x0e070106, 0x11221007, 0x02258582, 0x11090108, 0x084a8209, 0x05100435, 0x0e0e1b0e, 0x361b0e1e, + 0x152d151b, 0x0c0b180b, 0x28160d1a, 0x0c010715, 0x09047efe, 0x050e0508, 0x04040406, 0x11040508, 0x02053805, 0x06120503, 0x82030e03, 0x05032e47, + 0x06034403, 0x080f0704, 0x08020404, 0x2d078202, 0x01010103, 0x010503e3, 0x13051001, 0x0782081e, 0x01288a82, 0x01040206, 0x03030301, 0x032bb782, + 0x05080505, 0x05061305, 0x82010312, 0x020232fd, 0x190c0306, 0x1326130d, 0x0d1b4023, 0x0d040a16, 0x21a48209, 0x58820403, 0x0401022f, 0x09020701, + 0x70280b15, 0x1c381d3e, 0x24668206, 0x190a070e, 0x30b88205, 0x17060d03, 0x0402172e, 0x01050603, 0x0a060102, 0x228a8206, 0x820f0605, 0x02072f6e, + 0x07040704, 0x03020206, 0x1c381c04, 0x01820803, 0x04020424, 0xd282050a, 0x0308042c, 0x0c010202, 0x0a050c19, 0x7c820404, 0x3d830e82, 0x02010125, + 0x83050305, 0x1f0b2d41, 0x061f080e, 0x0304080a, 0x0c020702, 0x01241782, 0x06030701, 0x05250382, 0x02030308, 0x24588209, 0x1a010302, 0x22e08202, + 0x820e0103, 0x0834081e, 0x00000001, 0xff000006, 0x030004c0, 0x001700c0, 0x0027001f, 0x0037002f, 0x0100003f, 0x010e2315, 0x35231507, 0x2327012e, + 0x013e3335, 0x15333537, 0x2317011e, 0x07830f82, 0x36320628, 0x06222634, 0x25821114, 0x07201d83, 0x2b831b82, 0x29821720, 0x042a3983, 0xc0156500, + 0xc0868086, 0x08876515, 0x75138234, 0x0e3e2951, 0x262634cf, 0x75512634, 0x3e0e6413, 0x1385d929, 0x0e86f520, 0x8c000221, 0x863a8431, 0x8280201a, + 0x34262334, 0x308d3301, 0xc7823f86, 0xc7880a20, 0x0d000732, 0x25001900, 0x3d003100, 0x55004900, 0x6d006100, 0x32241f82, 0x22061416, 0xb7834082, + 0x32022325, 0x83011d16, 0x013d250f, 0x26221234, 0x36200582, 0x01201184, 0x2b212583, 0x24278201, 0x14043336, 0x24098506, 0x0132013b, 0x273d8317, + 0x3426012f, 0x27013236, 0x1f210583, 0x20118301, 0x21528325, 0x3c82013f, 0x84071421, 0x010f2105, 0x37241183, 0x96d49601, 0x01260282, 0x5e5e4200, + 0xf0841a42, 0x05845a20, 0x1a800126, 0x401a2626, 0xfd210483, 0x2e088640, 0xa3021a40, 0x3526132d, 0x25122e12, 0x8899fd35, 0x6702240a, 0x82253513, + 0x26352414, 0x8859fd13, 0xc002210a, 0xfe265b84, 0x5e845ef6, 0x428920fe, 0x0a88a620, 0x26dafe22, 0x05856b84, 0x2edefe23, 0x20418212, 0x2140822d, + 0x0a88b201, 0x6a821220, 0x69841320, 0x880efe21, 0x0100300a, 0xbfff0000, 0xc0030104, 0x00001f00, 0x82011e25, 0x27262ccd, 0x22230601, 0x37343526, + 0x82321617, 0x342908e9, 0x3336012f, 0x14151632, 0x14eb0307, 0x13651302, 0x75fe1133, 0xa977483f, 0x3612a70c, 0x12126612, 0x772b29a7, 0x118e22a9, + 0x2a1b8233, 0xcd011402, 0x2b77a922, 0x8212a729, 0x12362a1a, 0x77a90ca7, 0x00003f48, 0x06ab4104, 0x2700c128, 0x7f002f00, 0x6d828700, 0x1f162608, + 0x06071501, 0x27071707, 0x23010f06, 0x07272627, 0x2f263727, 0x36373501, 0x17372737, 0x33013f36, 0x37171617, 0x07774217, 0x2b860120, 0x358e3084, + 0x3f8e3a84, 0x498c4484, 0x4e830720, 0x1f230486, 0x42320401, 0x013405cf, 0x4605096c, 0x29090546, 0x12103a2d, 0x120c400c, 0x292d3a10, 0xc4421291, + 0x60033305, 0x39030243, 0x08064318, 0x0a382d27, 0x253b0e0a, 0x33820c0c, 0x250b0d31, 0x0a0a0e3b, 0x07272e38, 0x3a194306, 0x82430203, 0x193a2926, + 0x27070643, 0x0b09382e, 0x0929268c, 0x272d380b, 0x18430707, 0x27268239, 0x517466fe, 0xee517451, 0x8c88799b, 0x3426c828, 0x01342626, 0x6e9c0cba, + 0x268795a6, 0x7e82ab20, 0x00745122, 0x0e220084, 0xb118ae00, 0x01200c55, 0x01241584, 0x19000a00, 0x02241786, 0x34000700, 0x03240b86, 0x88002500, + 0x04200b86, 0xc4202382, 0x05240b86, 0xe7000b00, 0x062a0b86, 0x09010a00, 0x01000300, 0x4b840904, 0x0b860020, 0x14000122, 0x17850982, 0x0e000224, + 0x17862400, 0x4a000324, 0x0b863c00, 0x23820420, 0x0b86ae20, 0x16000524, 0x0b86cf00, 0x17820620, 0x4d83f320, 0x7300413d, 0x72007400, 0x75006900, + 0x57006d00, 0x70006500, 0x73410000, 0x75697274, 0x8265576d, 0x8252200b, 0x82672012, 0x006c221c, 0x2e268261, 0x67655200, 0x72616c75, 0x00460000, + 0x826e006f, 0x2207833a, 0x82670072, 0x00202a25, 0x002e0032, 0x00200030, 0x9303823a, 0x23198558, 0x002d0033, 0x32200383, 0x31222b82, 0x4a823700, + 0x746e6f2e, 0x67726f46, 0x2e322065, 0x203a2030, 0x0c827e89, 0x332d3326, 0x3130322d, 0x51932682, 0x5620aa8c, 0x72208482, 0x6920cf82, 0x20229a84, + 0x8e823100, 0x0000312c, 0x73726556, 0x206e6f69, 0x0c822e31, 0x002344a0, 0x9d000200, 0x41300800, 0x02010000, 0x03010200, 0x13000300, 0x15001400, + 0x17001600, 0x19001800, 0x1b001a00, 0x24001c00, 0x26002500, 0x28002700, 0x2a002900, 0x2c002b00, 0x2e22ef82, 0xed842f00, 0x33003228, 0x35003400, + 0xf7823600, 0x00384808, 0x003a0039, 0x003c003b, 0x003e003d, 0x00440040, 0x00460045, 0x00480047, 0x004a0049, 0x004c004b, 0x004e004d, 0x0050004f, + 0x00520051, 0x00540053, 0x00560055, 0x00580057, 0x6c670659, 0x31687079, 0x696e7507, 0x82303030, 0x000128d6, 0x00ffff01, 0x8201000f, 0x820c20ba, + 0x00162203, 0x82c7821e, 0x22578215, 0x82040001, 0x00022211, 0x201d8400, 0x83078201, 0x23078402, 0x3f5719d4, 0xd22b0c83, 0x00caedeb, 0xd4000000, + 0x05832ede, 0xc75d4efa, 0x000000ba, +}; + +static const unsigned int roboto_size = 103056; +static const unsigned int roboto_data[103056 / 4] = +{ + 0x0000bc57, 0x00000000, 0xb8730200, 0x00000400, 0x00010025, 0x82130000, 0x00042604, 0x49534430, 0x240d8247, 0x73020001, 0x2c0782b0, 0x45444708, + 0x18601846, 0x01000061, 0x280f823c, 0x4f504748, 0xa73b2f53, 0x340f82e2, 0x93000084, 0x5553475c, 0xca26c842, 0x94000004, 0x020000e0, 0x281d8296, + 0x2907b932, 0x9700008a, 0x282f8278, 0x616d6360, 0x4eca1170, 0x300f8234, 0x060000d8, 0x747663d6, 0x1a970720, 0x6a02004b, 0x281f8210, 0x67706626, + 0xf4a8946d, 0x280f8254, 0x09000038, 0x73616725, 0x20178270, 0x200f8210, 0x3c078208, 0x796c6708, 0x6eb48966, 0x9e000006, 0x5b0100b0, 0x61656814, + 0x5bcc1764, 0xf90100d1, 0x211f82c4, 0x10826836, 0x0af70c23, 0x200f82d4, 0x080f82fc, 0x6d68243c, 0x2e847874, 0x01006e46, 0x000020fa, 0x656b3410, + 0x8b5e6e72, 0x0200b965, 0x0000540a, 0x6f6c1230, 0x99236163, 0x02007c79, 0x0000683a, 0x616d1c08, 0x55057078, 0x02007d0a, 0x3f828442, 0x616e2028, + 0xcca1656d, 0x0f82e78c, 0x0000a42f, 0x6f709003, 0xe3d87473, 0x0200c562, 0x2dc38246, 0x7270d323, 0xfb0e7065, 0x02009fc8, 0x2f826073, 0x01004d22, + 0x0c200582, 0x02830382, 0x08000232, 0xa901a901, 0x2e020100, 0x01003402, 0x2f032403, 0x48220582, 0x05824803, 0x50034f22, 0x52220582, 0x05825203, + 0x6a036822, 0xfb220582, 0x3d84fb03, 0x00203983, 0x0a2e0984, 0x2c001e00, 0x46440100, 0x0800544c, 0x18830400, 0x00ffff23, 0x20078201, 0x82c78301, + 0x85002013, 0x2b1b820d, 0x00000002, 0x4d0e0004, 0x78ae54a4, 0x7f216b82, 0x0b0d8276, 0x9901003a, 0x42033c03, 0xbe034803, 0xda03c803, 0x16040004, + 0x42042004, 0x6a046404, 0xea04bc04, 0x2e050c05, 0x7a055405, 0x72068005, 0x9e067806, 0x2607c406, 0xda07b807, 0x1a08fc07, 0x2e082008, 0x6e085008, + 0x9a087c08, 0xbe08a008, 0xaa093409, 0x960a200a, 0x820b0c0b, 0xaa0b940b, 0xd60bc00b, 0x0e0cec0b, 0x520c300c, 0x9a0c740c, 0xe20cbc0c, 0x2e0d080d, + 0x7a0d540d, 0x860d800d, 0x920d8c0d, 0x460e240e, 0x8a0e680e, 0xce0eac0e, 0xf60ef00e, 0x020ffc0e, 0x2a0f080f, 0x6e0f4c0f, 0xb20f900f, 0xee0fd00f, + 0x82100c10, 0x1a11a410, 0xb2113c11, 0xe611d411, 0x0a12f811, 0x42121c12, 0x7e126812, 0x9a128412, 0xb612a012, 0xd212bc12, 0xee12d812, 0x1613f412, + 0x5a133813, 0x9e137c13, 0xc613c013, 0x46141814, 0xa2147414, 0xf214d014, 0x36151415, 0x7e155c15, 0xc615a415, 0x0e16ec15, 0x2a161c16, 0x2a173816, + 0x0e191c18, 0x1a191419, 0x26192019, 0x32192c19, 0xea195819, 0x9a1a081a, 0xde1abc1a, 0x761b001b, 0x9e1b981b, 0x2a1c141c, 0x6e1c4c1c, 0x261d941c, + 0xa61d9c1d, 0xea1e741e, 0x221f001f, 0x6a1f441f, 0xde1f8c1f, 0x76205420, 0x9e209820, 0xea20c420, 0xe621f420, 0x7e227822, 0xe622e022, 0x9a230823, + 0xbe23a023, 0xf223c823, 0x22240824, 0x46244024, 0x86246824, 0xc2248c24, 0xe224c824, 0x1a250425, 0x62253025, 0x52263026, 0x7a267426, 0xce26a426, + 0x4627f426, 0xb6279427, 0x52282c28, 0x2a295c28, 0x6e295829, 0xe629d029, 0x5a2a082a, 0x9e2a7c2a, 0xe62ac02a, 0x1e2b0c2b, 0x5e2c102c, 0xe22cc02c, + 0x3a2d042d, 0x8e2d642d, 0xa22d982d, 0xe22dc42d, 0x022ef82d, 0x222e1c2e, 0x3e2e282e, 0x7e2e602e, 0xda2ebc2e, 0xfe2ef82e, 0x362f1c2f, 0x822f5c2f, + 0xaa2fa02f, 0xb62fb02f, 0xe62fc02f, 0x2a300c30, 0x7a305430, 0x1231f030, 0x56313831, 0x9a317c31, 0x8632b831, 0x5e339032, 0xc633c033, 0x6a341834, + 0x0e35bc34, 0x42353035, 0xc6363436, 0x7637e436, 0xde37d837, 0x62380038, 0x8a386838, 0xce38ac38, 0x66394439, 0xfe39dc39, 0x1a3a143a, 0x263a203a, + 0x8e3a883a, 0xd63ab43a, 0x163bf83a, 0x823b643b, 0xee3bd03b, 0x5a3c3c3c, 0x323d283d, 0x9e3d3c3d, 0x1a3ea43d, 0x5e3e3c3e, 0xaa3e843e, 0x463fd03e, + 0xde3f683f, 0x76400040, 0x0e419840, 0xa6413041, 0x3e42c841, 0xd6426042, 0x6e43f842, 0x06449043, 0x9e442844, 0x3645c044, 0xce455845, 0x0646f045, + 0x22460c46, 0x3e462846, 0x5a464446, 0x76466046, 0x92467c46, 0xae469846, 0xca46b446, 0xf246d046, 0x3a471447, 0x82475c47, 0xca47a447, 0x1248ec47, + 0x5a483448, 0xa2487c48, 0xea48c448, 0x2e490c49, 0x3a493449, 0xea49cc49, 0x9a4a7c4a, 0x4a4b2c4b, 0xfa4bdc4b, 0x264c204c, 0x324c2c4c, 0x3e4c384c, + 0x4a4c444c, 0x7a4c704c, 0x924c804c, 0xd24cbc4c, 0xf64ce44c, 0x224d1c4d, 0x424d384d, 0x7a4d544d, 0x0100904d, 0x0b005a00, 0x5e080586, 0xff22001d, + 0xff5700af, 0xff5a00ef, 0xff4501df, 0xff8001ee, 0xff8201e5, 0x009501d1, 0xff9e0111, 0x00c001c8, 0xffd80113, 0xffee01c5, 0xfff801ca, 0xff4c02d0, + 0xff630281, 0xff640265, 0xff670285, 0xff680266, 0xff8302dd, 0xffaf02f2, 0xffb102b1, 0xffb902ca, 0xffba02a9, 0xff7903c8, 0x828203f5, 0xffec3803, + 0xffed03c7, 0xffee03f1, 0xffef03cd, 0xfff103dd, 0x020200c4, 0x820b0016, 0x00e62e29, 0xff0c0004, 0xff4000e6, 0xff6000f4, 0x244b82ef, 0x000900ed, + 0x2c898288, 0x01f3ff79, 0x01f0ff7d, 0x01eaff95, 0x220f82c0, 0x82e0ffd8, 0x03e02e2f, 0x03edff71, 0x00f5fff0, 0xff490005, 0x20b382ee, 0x205782ea, + 0x205782f0, 0x265782ed, 0x000200f0, 0x82e6ff55, 0x00c02223, 0x24b78208, 0x00e00115, 0x20ab8215, 0x20ab82e4, 0x20ab82e5, 0x20a382e4, 0x20a382e3, + 0x204982e2, 0x2021a2e4, 0x22498201, 0x821400eb, 0xc1240865, 0xc5ff8001, 0xb4ff9e01, 0xd7ffdd01, 0xb9ffee01, 0xe9fff801, 0xb2ff0d02, 0xd2ff2702, + 0xc8ff2b02, 0xa0ff4c02, 0xc52a6582, 0xe4ff8302, 0xccffb002, 0x0382b202, 0xcbffba2c, 0xefffbb02, 0xe8ff7503, 0x97827903, 0xe7ff8228, 0xe7ffdb03, + 0x51820b00, 0x7103cc24, 0x19821300, 0x1982f320, 0x8203f124, 0x1982f2ff, 0xec03f228, 0xed03bdff, 0xd382eeff, 0xd382b820, 0xd382d720, 0xa7a2b720, + 0x5341eba1, 0x00092a25, 0x000e0057, 0x01d7fe88, 0x38e5828e, 0x0198ff95, 0x01c7ff9b, 0x0112ffc0, 0x0252ffe0, 0x03cfffab, 0x0080ff71, 0x26b98201, + 0x003c000e, 0x82bfff55, 0x00d138c7, 0x006cff6d, 0x006eff7d, 0x0043ff88, 0x00acffa8, 0x01a1ffba, 0x82b8ff80, 0x01f12c43, 0x017eff8f, 0x017bff93, + 0x829bff9a, 0x0179264b, 0x01b2ff9e, 0x2a1382a0, 0x01b3ffa1, 0x017dffa2, 0x827cffa3, 0x01af2c5f, 0x010f00d8, 0x01e4ffdd, 0x82a0ffde, 0x0174266b, + 0x0180ffe3, 0x202b82ee, 0x202382f7, 0x200782f8, 0x080f82f9, 0x79fffb20, 0x2800fe01, 0x7dff0b02, 0x7fff0d02, 0x66ff2702, 0xdaff2b02, 0x81ff3a02, + 0x98ff3c02, 0x17824802, 0xb3ff4c2c, 0xa0ff5202, 0x7cff6402, 0x03826602, 0x9aff672a, 0x6cff6802, 0xe6ff8302, 0x6b38bf82, 0x92ffb002, 0xadffb202, + 0x7bffb602, 0x0f00b902, 0x91ffba02, 0xf2ffbb02, 0xaf26d782, 0xb9ff7503, 0x03827903, 0x03828220, 0x0382db20, 0xbcffeb28, 0xf1ffec03, 0x0382ef03, + 0xedfff022, 0xff2bf783, 0x000900eb, 0x0014000c, 0x82110040, 0x00e224ff, 0x82130060, 0x82b4203b, 0x82d9203b, 0x03d9283b, 0x03d9ff82, 0x84d9ffdb, + 0x820f2025, 0x820c2025, 0x82eb2025, 0x820e2025, 0x82cb2025, 0x82e92025, 0x82e72025, 0x05074225, 0x8001182c, 0x8e01d4ff, 0x9201f0ff, 0x6f43edff, + 0x01e03a06, 0x01e7ffa0, 0x01e5ffa2, 0x01eeffa3, 0x011200c0, 0x01e9ffdd, 0x02d7ffee, 0x2603824c, 0x02d3ff64, 0x82d6ff67, 0x82c520d3, 0x02e728d3, + 0x020d00af, 0x820c00b1, 0x84d620c7, 0xff7521c7, 0xe926618b, 0x09002400, 0xb184e2ff, 0xcfff0d2a, 0x12004000, 0xeaff4900, 0xd8229382, 0x07825700, + 0x0033bd82, 0x00aeff6d, 0x00cdff7d, 0x00a0ff88, 0x00c1ffa8, 0x82c0ffba, 0x01d02495, 0x82eaff8c, 0x01ee2a99, 0x01c6ff8f, 0x010d0090, 0x2c858292, + 0x01d6ff93, 0x01e8ff9a, 0x01baff9b, 0x240f829e, 0x01cbffa0, 0x222f82a1, 0x82daffa2, 0x03c724ad, 0x82d3ff3d, 0x82ab20e7, 0x82cd20e7, 0x82cb20e7, + 0x03cb2ae7, 0x03cbffdb, 0x03f3ffec, 0x260382ef, 0x00effff0, 0x825a0008, 0x828020db, 0xffa22639, 0x007103e4, 0x202d820d, 0x202d82ed, 0x202d82eb, + 0x222d82ec, 0x820800ec, 0x01f02ced, 0x02f0fff8, 0x02f1ff0d, 0x82f3ff2b, 0x02f122f9, 0x200782b0, 0x240382b2, 0x00f1ffba, 0x207d8207, 0x247982ea, + 0xffe001e8, 0x202d82ee, 0x202d82eb, 0x262582ed, 0xffba02ec, 0x820100ec, 0x00f52211, 0x83f58403, 0x20e583f1, 0x20318608, 0x201b82ea, 0x205782ea, + 0x205782f0, 0x203182f1, 0x205782eb, 0x9d3584f5, 0x00032a53, 0x000f0049, 0x00110057, 0x2003825a, 0x300d8207, 0xff8e010d, 0x009a01f5, 0xff9b010b, + 0x009e01ea, 0x228b820c, 0x822702c8, 0x8401209d, 0x45239d05, 0x00107575, 0x474d0275, 0x934711b9, 0x4615c115, 0x21e521df, 0xa1254547, 0x4047a58b, + 0x15499725, 0x46059105, 0x4946926b, 0x216b4620, 0x46872140, 0x059105d5, 0x4021d946, 0x11478721, 0x1d7f471d, 0xd7463b9d, 0x21194275, 0x01970010, + 0x1151462f, 0x394511b5, 0x15bd464b, 0xef058743, 0x2159461b, 0x4fa92140, 0x894f855b, 0x412ddb2d, 0x194365b9, 0x21314625, 0x4d8f4740, 0x0d9b0d9f, + 0x10f1b750, 0xe301f100, 0x91118d4b, 0x00092311, 0x9352000c, 0x91c54b21, 0x401dfb49, 0xe15291af, 0x21035322, 0x5b4a21a0, 0x055b5897, 0x8f499df5, + 0x43594715, 0x4225ef46, 0x8741918b, 0x09dd5975, 0x00333a08, 0x007eff55, 0x009dff5a, 0x00f1fe6d, 0x00f4fe7d, 0x00abfe88, 0x005effa8, 0x014bffba, + 0x0172ff80, 0x01d3ff8e, 0x010fff8f, 0x010aff93, 0x0141ff9a, 0x0107ff9b, 0x0168ff9e, 0x081382a0, 0x6affa124, 0x0effa201, 0x0cffa301, 0x63ffc001, + 0x0500d801, 0xbdffdd01, 0x49ffde01, 0xfefee001, 0x13ffe301, 0x2b82ee01, 0x2382f720, 0x0782f820, 0x0f82f920, 0x3f82fb20, 0x3000fe3c, 0x0eff0b02, + 0x11ff0d02, 0xe7fe2702, 0xacff2b02, 0x15ff3a02, 0x3cff3c02, 0x17824802, 0x6aff4c2c, 0x49ff5202, 0x0cff6402, 0x03826602, 0xff672708, 0xfe68023f, + 0xff8302f1, 0xfeab02c0, 0xffb002ef, 0xffb20231, 0xffb6025f, 0x00b9020a, 0xffba0205, 0xffbb0230, 0x4d4100d5, 0x16d54275, 0x42202144, 0xd54221f7, + 0x5b47a125, 0x69415121, 0xa1e9a175, 0x01012421, 0x5c0d0095, 0x6f5b26c3, 0x01022425, 0x82c2ff80, 0x5b102055, 0x5145f273, 0x01012591, 0x00e2ff95, + 0x2461b95b, 0xff9b0101, 0x22fb5df2, 0x22942141, 0x49000e00, 0x22081db5, 0xff9e0102, 0xffa101ed, 0x010a00ec, 0x01eeff8e, 0x01e6ff8f, 0x01ebff92, + 0x01e9ff93, 0x01f0ff98, 0x82e7ff9a, 0x01e32e21, 0x01ceffa0, 0x01d4ffa2, 0x00dbffa3, 0x24218205, 0x009501ec, 0x201d820f, 0x201d82ea, 0x241d82dc, + 0x000600e7, 0x20338249, 0x22438292, 0x82100095, 0x01ec2419, 0x82beff9e, 0x9eda2059, 0x83012081, 0x4e002049, 0x975421e9, 0x01012a1d, 0x000b009e, + 0x0049000d, 0x24c7820c, 0x009a01ed, 0x3211820b, 0xff71030c, 0xff7503bf, 0xff7903ee, 0xff8203ec, 0x82db03ed, 0xffeb2c07, 0x00ec03f5, 0x00ee030e, + 0x82f1030d, 0x82012033, 0x83e120a5, 0x413382bf, 0xf2260503, 0xf1ffa001, 0xe182a101, 0xefffa322, 0x19469ba2, 0x08159515, 0xd8010c31, 0xee01d4ff, + 0xf801c9ff, 0x0d02d1ff, 0x2b02e5ff, 0x4c02e3ff, 0x6302c4ff, 0xaf02e1ff, 0xb002d4ff, 0xb102f5ff, 0xb902e7ff, 0xba0264ff, 0x4700c9ff, 0xb945cdbb, + 0x4d21a121, 0x29080553, 0xffd8010a, 0xffee01c1, 0xfff801cd, 0xff4c02d2, 0xff6302cc, 0xff6702e5, 0xffaf02df, 0xffb102ce, 0xffb902ea, 0xffba029e, + 0x298300ce, 0x2982c220, 0x2982c620, 0x2982cf20, 0x2982c020, 0x2986e120, 0x2982cd20, 0x2982e820, 0x29829f20, 0x0900c622, 0xc9205382, 0xdf202982, + 0xe1282982, 0xedff0d02, 0xebff2b02, 0xdf203182, 0xe9242d82, 0xf5ffb002, 0xe0202582, 0x3a528962, 0xffc00113, 0x00d801ae, 0xffde0112, 0xffe001e0, + 0xffe301ad, 0xfff701d6, 0x82fb01df, 0xff0b24db, 0x822702e0, 0xff3a28d3, 0xff3c02dd, 0x824802e2, 0x8252200f, 0xff643003, 0xff6602e9, 0xff6802de, + 0xffab02da, 0x82b602bd, 0x00b922fb, 0x22ad4411, 0x2e75d747, 0xffd80109, 0xffee01e6, 0xfff801d0, 0x824c02d6, 0xff6332d1, 0xffaf02e8, 0xffb102e7, + 0xffb902ed, 0xffba02e6, 0x0a9364d0, 0x36cdf942, 0x00c0010b, 0xffd80114, 0x00e001e0, 0xff630213, 0xff6402e1, 0x826802e0, 0xff832c07, 0xffaf02e9, + 0xffb102df, 0x82b902de, 0xffbb2207, 0x165765f2, 0x2461ef46, 0xff1a0005, 0x20a582f2, 0x209182f1, 0x209182f2, 0x469182f2, 0x7b4a23ff, 0x21074451, + 0x7b4b21c3, 0x25214a25, 0x53112559, 0xc944f1f3, 0x61ef424d, 0x20434342, 0x069b690d, 0xd901e632, 0xe001f4ff, 0xee011200, 0xf801e7ff, 0x4c02e7ff, + 0x632c0382, 0x6402e5ff, 0xaf02e8ff, 0xb102e6ff, 0xe7440382, 0x00e72605, 0xffd8010a, 0x06bf46c4, 0xbf46d520, 0x46e62006, 0xd1200695, 0xec282982, + 0xa1ffb902, 0xcfffba02, 0xc3202984, 0xcf202982, 0xd4205382, 0x20063745, 0x20298ee7, 0x252982a0, 0x010200d1, 0x5569ffc0, 0x24098305, 0xffe001e1, + 0x24c765e4, 0x2005bf65, 0x245f82ee, 0xff0d02ef, 0x069565f4, 0x5382ef20, 0x0500ef22, 0xf4207982, 0xf4201982, 0xf5201982, 0xf5207d82, 0xf5201582, + 0xe0286982, 0x2702c9ff, 0x0600eeff, 0x1420f182, 0xed202382, 0xee202382, 0xed201f82, 0xed20ed82, 0xed202382, 0x65060166, 0x05200587, 0xeb2a2b82, + 0xebff7503, 0xe9ff7903, 0x07828203, 0xebffdb22, 0x49225b49, 0x0f241df7, 0x0d004900, 0x2c06f165, 0x002b02ec, 0x00b0020c, 0x00b2020b, 0x24f9490b, + 0x9d1d1b4b, 0x20d58579, 0x20fb8607, 0x22fb82f0, 0x82fb01f0, 0xff4c227f, 0x20ff82f0, 0x22ff82f0, 0x420600f0, 0xe320060b, 0xe3241d82, 0xe2ff4c02, + 0xe3201982, 0xe3261982, 0xee010900, 0x1582bcff, 0x0d02c828, 0x2b02dbff, 0x1d82dcff, 0x1d82a120, 0x6702ee21, 0xf420055f, 0xbb202582, 0xba202584, + 0xc6202582, 0xd9202582, 0xdb202582, 0xa0202582, 0xed202582, 0xf0242582, 0xf2ffb202, 0xba202582, 0x241e8567, 0xffe00102, 0x204382ef, 0x078d41ee, + 0xbd417982, 0x2089830b, 0x201f829e, 0x83639cbf, 0x82be2025, 0x9cd92025, 0x1d4f4125, 0xd8010a23, 0x25c542ff, 0xf7a16d83, 0x4c75c348, 0x996a21a9, + 0x1d2b4125, 0xbf4243c3, 0xcd5b491d, 0x44010221, 0xd740078d, 0x61ff46cd, 0x4905c744, 0x514051bd, 0x214d48f5, 0x01230a10, 0x912b5303, 0x401d8d45, + 0x174491af, 0x21cf4267, 0xa1898940, 0x4821a1ab, 0xee217753, 0x1d6971ff, 0x54979740, 0x1d6b15e3, 0x67254211, 0x4925cd4f, 0x21a121c3, 0x4f1d5d49, + 0x9d444d05, 0xd76b401d, 0x4acdc949, 0x098909a1, 0x44671543, 0x8f45973d, 0x252b6521, 0x2b4125cb, 0x97001097, 0xf14b8706, 0xc31b401b, 0xa1219348, + 0x47854c21, 0x01470010, 0x21354eaf, 0x8505b962, 0x91555205, 0x101d674e, 0x0f02af00, 0x18259d44, 0x9d0be348, 0x0309260b, 0x03f2ff75, 0x20038279, + 0x85471882, 0x03c03208, 0x03ecffed, 0x03c7ffee, 0x03d8ffef, 0x00bffff1, 0x200d8202, 0x280d82ee, 0x030100f5, 0x00d2ff71, 0x10535e04, 0x71030a24, + 0x15821100, 0x4b82f020, 0x8203ee2c, 0xdb03efff, 0xec03f0ff, 0x4b86bbff, 0x3d82b720, 0x4b82d520, 0x0500b422, 0xf3204182, 0xee201982, 0xf1225382, + 0x6982f003, 0xeafff122, 0xec225182, 0x1182e9ff, 0x2782eb20, 0x2782f120, 0x1184e520, 0x2384f220, 0xf5ffef22, 0xee221182, 0x5f5e0900, 0x20a18324, + 0x206584ef, 0x208f82c7, 0x208f82f2, 0x208f82f0, 0x828f83f0, 0xff7126c7, 0x00ec03dc, 0x18c1840e, 0x20077945, 0x201b82eb, 0x205d84eb, 0x8f4518c0, + 0x8215840a, 0x030f2c2b, 0x031000ee, 0x030d00ef, 0x831000f1, 0x0c002157, 0x5789e786, 0x34087383, 0x350100d5, 0x00040016, 0x00090000, 0x0372001c, + 0x04ee0374, 0x05960454, 0x06aa06b4, 0x001500c8, 0x00140039, 0x0026003a, 0x0016003c, 0x0116009f, 0x01260036, 0x20078238, 0x2003823a, 0x20038269, + 0x2803827f, 0x02160085, 0x02140020, 0x20038222, 0x200b8259, 0x2403825b, 0x022600c3, 0x280382c5, 0x032600c7, 0x0316001b, 0x2003821d, 0x2003821f, + 0x26478221, 0xfe0f00c0, 0x821100ee, 0x821d2003, 0xff242c03, 0xff4400c5, 0xff4600de, 0x824700eb, 0x82482003, 0x824a2003, 0x82522003, 0x82542003, + 0xff582803, 0xff5900ea, 0x825c00e8, 0x82822003, 0x8283202b, 0x82842003, 0x82852003, 0x82862003, 0x82872003, 0x82a22003, 0x82a3203f, 0x82a42003, + 0x82a52003, 0x82a62003, 0x82a72003, 0x82a92003, 0x82aa203f, 0x82ab2003, 0x82ac2003, 0x82ad2003, 0x82b42003, 0x82b52003, 0x82b62003, 0x82b72003, + 0x82b82003, 0x82bb2003, 0x82bc2063, 0x82bd2003, 0x82be2003, 0x82bf2003, 0x82c1206b, 0x82c22003, 0x82c3205b, 0x82c42047, 0x82c52007, 0x82c62007, + 0x82c72007, 0x82c92007, 0x82cb2033, 0x82cd2003, 0x82cf2003, 0x82d12003, 0x82d52003, 0x82d72003, 0x82d92003, 0x82db2003, 0x82dd2003, 0x82df2003, + 0x82e12003, 0x82e32003, 0xffe52403, 0x820f01eb, 0x82112003, 0x82132003, 0x82152003, 0xff2b2403, 0x822d01ea, 0x822f2003, 0x82312003, 0x82332003, + 0x82352003, 0xff392403, 0x824401e8, 0x8246201f, 0xff48280b, 0xff4901c5, 0x826301de, 0x826c2007, 0x826f2003, 0x82762003, 0x82862003, 0x828a201f, + 0x828b201f, 0x828d2007, 0x8297202f, 0x82992003, 0x829c200b, 0x829d2003, 0x829f2003, 0x82a5201b, 0x82a62003, 0x82a7200b, 0x82bc2007, 0x82dc2033, + 0x218f8247, 0x1382ea01, 0x0382ed20, 0x3382ef20, 0x0782f020, 0x0382fc20, 0xebfffd24, 0x03820002, 0xe8ff0a28, 0xc5ff1202, 0x0b821f02, 0x0b822120, + 0x03822320, 0x0b822520, 0x03822920, 0x03822d20, 0x03825420, 0x03825620, 0x17825a20, 0x27827b20, 0xdeff7c24, 0x07827d02, 0x07827e20, 0x17828220, + 0x03828420, 0x03828620, 0x03829220, 0x03829420, 0x03829620, 0x2b829a20, 0x03829c20, 0x03829e20, 0x0f82ac20, 0x0382ad20, 0x0382ae20, 0x0382b820, + 0x3b82bf20, 0x3b82c020, 0x0782c920, 0x0782ca20, 0x0782cb20, 0x0782cc20, 0x0782cd20, 0x0782ce20, 0x0782cf20, 0x0782d020, 0x0782d120, 0x0782d220, + 0x0782d320, 0x0782d420, 0x0782d520, 0x0782d620, 0x0782d720, 0x0782d820, 0x0782d920, 0x0782da20, 0x0782db20, 0x0782dc20, 0x0782dd20, 0x0782de20, + 0x0782df20, 0x0782e020, 0x6b82e220, 0x0382e420, 0x0382e620, 0x0382e820, 0x0382ea20, 0x0382ec20, 0x0382ee20, 0x0382f020, 0x0382f620, 0x0382f820, + 0x0382fa20, 0x0382fc20, 0xebfffe24, 0x03820003, 0x03820220, 0x03820420, 0x03820620, 0x03820820, 0x03820a20, 0x03820c20, 0xeaff0e24, 0x03821003, + 0x03821220, 0x03821420, 0x03821620, 0x03821820, 0x03821a20, 0xe8ff1c24, 0x03821e03, 0x03822020, 0x03822220, 0xeefe3624, 0x03823a03, 0x03823e20, + 0xeefe3f3e, 0x37001e00, 0x3900dfff, 0x3a00e4ff, 0x3c00ecff, 0x9f00ddff, 0x2401ddff, 0x2601dfff, 0x36240382, 0x3801ecff, 0x3a200f82, 0x69200382, + 0x7f200382, 0x85200382, 0xae200382, 0xb7201b82, 0xce280382, 0x2002dfff, 0x2202e4ff, 0x4b200382, 0x57200b82, 0x59240382, 0x5b02ddff, 0x5f200382, + 0xc3240b82, 0xc502ecff, 0xc7280382, 0x1b03ecff, 0x1d03ddff, 0x1f200382, 0x21200382, 0x19206782, 0xce207982, 0xed207982, 0xd0207582, 0xd0207582, + 0xce207582, 0xce207582, 0xd0267182, 0xd0ff3a01, 0x03826901, 0x03827f20, 0x03828520, 0xceffae24, 0x0382b701, 0xceffce22, 0xed207182, 0xed227182, + 0x0b824b02, 0x03825720, 0xd0ff5922, 0xd0247182, 0xceff5f02, 0xd0206582, 0xd0306582, 0xd0ff1f03, 0xd0ff2103, 0x2d001000, 0x3800eeff, 0x9b200382, + 0x9c200382, 0x9d200382, 0x9e200382, 0xf6240382, 0x2a01eeff, 0x2c200382, 0x2e200382, 0x30200382, 0x32200382, 0x34200382, 0xb4240382, 0x0d03eeff, + 0x0f200382, 0x47222782, 0x45820500, 0x03820a20, 0xe8ff4624, 0x03824700, 0x03824820, 0x03824a20, 0x03825420, 0x0382a920, 0x0382aa20, 0x0382ab20, + 0x0382ac20, 0x0382ad20, 0x0382c920, 0x0382cb20, 0x0382cd20, 0x0382cf20, 0x0382d120, 0x0382d520, 0x0382d720, 0x0382d920, 0x0382db20, 0x0382dd20, + 0x0382df20, 0x0382e120, 0x0382e320, 0xe8ffe524, 0x03821501, 0x03824420, 0x10005124, 0x07828601, 0x03828b20, 0x03829c20, 0x03829d20, 0x01212782, + 0x200782ed, 0x200382f0, 0x240382fc, 0x02e8fffd, 0x20038200, 0x20038225, 0x20038229, 0x8203822d, 0x5602218f, 0x82200782, 0x84200382, 0x43820382, + 0x82940221, 0x20978207, 0x21978202, 0x0b82ae02, 0x0382b820, 0x0382e220, 0x0382e420, 0x0382e620, 0x0382e820, 0x0382ea20, 0x0382ec20, 0x0382ee20, + 0xe8fff024, 0x03820403, 0x03820620, 0x03820820, 0x03820c20, 0x10003424, 0x03823503, 0x03823720, 0x03823820, 0x03823920, 0x03824120, 0x1000422a, + 0x46003d00, 0x4700ecff, 0x48200382, 0x4a200382, 0x54200382, 0xa9200382, 0xaa200382, 0xab200382, 0xac200382, 0xad200382, 0xc9200382, 0xcb200382, + 0xcd200382, 0xcf200382, 0xd1200382, 0xd5200382, 0xd7200382, 0xd9200382, 0xdb200382, 0xdd200382, 0xdf200382, 0xe1200382, 0xe3200382, 0xe5240382, + 0x1501ecff, 0x44200382, 0x86200382, 0x8b200382, 0x9c200382, 0x9d200382, 0x23820382, 0x82ed0121, 0x82f02007, 0x82fc2003, 0xfffd2403, 0x820002ec, + 0x82252003, 0x82292003, 0x822d2003, 0x218b8203, 0x07825602, 0x03828220, 0x03828420, 0x02214382, 0x82078294, 0x82022093, 0xae022193, 0xb8200b82, + 0xe2200382, 0xe4200382, 0xe6200382, 0xe8200382, 0xea200382, 0xec200382, 0xee200382, 0xf0240382, 0x0403ecff, 0x06200382, 0x08200382, 0x0c200382, + 0x07269782, 0x84ff0f00, 0x03821100, 0x84ff1d24, 0x03823603, 0x03823a20, 0x03823e20, 0x13823f20, 0x82001021, 0x3800217b, 0x9b202782, 0xaf820382, + 0x829d0021, 0x829e2007, 0x82f62003, 0x822a20a7, 0x822c2003, 0x822e2003, 0x82302003, 0x82322003, 0x82342003, 0x82b42003, 0x820d205b, 0x820f2003, + 0x015e0827, 0x0400222e, 0x27000000, 0x3e015800, 0xfe022402, 0x36069c03, 0xce08fc07, 0xa60be009, 0x520dd80b, 0x020e840d, 0xca10440f, 0x6a135c12, + 0xe216d414, 0xf6189417, 0x5e1aa819, 0x3a1be01a, 0x6e1cf81b, 0x461d1c1d, 0xda20981e, 0x1222fc20, 0xee227022, 0x4a231823, 0x39005c23, 0xf3ff2600, + 0x03822a00, 0x03823220, 0x03823420, 0x03828920, 0x03829420, 0x03829520, 0x03829620, 0x03829720, 0x03829820, 0x03829a20, 0x0382c820, 0x0382ca20, + 0x0382cc20, 0x0382ce20, 0x0382de20, 0x0382e020, 0x0382e220, 0xf3ffe424, 0x03820e01, 0x03821020, 0x03821220, 0x03821420, 0x03824320, 0x03824c20, + 0x03826820, 0x03827320, 0x03827a20, 0x0382b020, 0x0382ca20, 0xf3ffcd24, 0x03820c02, 0x03821e20, 0x03822420, 0x02218782, 0x82078228, 0x2c02218b, + 0x53200782, 0x55200382, 0x91200382, 0x93200382, 0x95200382, 0xb7200382, 0xf5200382, 0xf7200382, 0xf9200382, 0xfb200382, 0xfd200382, 0xff240382, + 0x0103f3ff, 0x03200382, 0x05200382, 0x07200382, 0x09200382, 0x0b200382, 0x23200382, 0xe5839b82, 0xe582e620, 0x3200e626, 0x3400e6ff, 0x89200382, + 0x94200382, 0x95200382, 0x96200382, 0x97200382, 0x98200382, 0x9a200382, 0xc8200382, 0xca200382, 0xcc200382, 0xce200382, 0xde200382, 0xe0200382, + 0xe2200382, 0xe4220382, 0xe582e6ff, 0x1001e622, 0x12200782, 0x14200382, 0x43200382, 0x4c200382, 0x68200382, 0x73200382, 0x7a200382, 0xb0200382, + 0xca200382, 0xcd220382, 0xe582e6ff, 0x1e02e622, 0x24200782, 0x26200382, 0x28200382, 0x2a200382, 0x2c200382, 0x53200382, 0x55200382, 0x91200382, + 0x93200382, 0x95200382, 0xb7200382, 0xf5200382, 0xf7200382, 0xf9200382, 0xfb200382, 0xfd200382, 0xff220382, 0xe582e6ff, 0x0303e622, 0x05200782, + 0x07200382, 0x09200382, 0x0b200382, 0x23200382, 0x362e9b82, 0xe4ff2400, 0xd2ff3b00, 0xd3ff3c00, 0x0b828200, 0x03828320, 0x03828420, 0x03828520, + 0x03828620, 0x03828720, 0x1b829f20, 0x0782c220, 0x0382c420, 0xe4ffc628, 0xd3ff3801, 0x03823a01, 0x0b824820, 0x03826320, 0x0b826920, 0x07826c20, + 0x03826f20, 0x03827620, 0x0f827f20, 0xd2ff8124, 0x07828501, 0x0f82bc20, 0x0b82c220, 0xd2ffd128, 0xe4ff1202, 0x07824102, 0xd3ff5924, 0x03825b02, + 0x0b825d20, 0x03826c20, 0x17827b20, 0x03827d20, 0x0b828720, 0x0382a720, 0x0b82bf20, 0x0382c920, 0x0382cb20, 0x0382cd20, 0x0382cf20, 0x0382d120, + 0x0382d320, 0x0382d520, 0x0382d720, 0x0382d920, 0x0382db20, 0x0382dd20, 0xe4ffdf28, 0xd3ff1b03, 0x03821d03, 0x03821f20, 0xaf822120, 0x0f002726, + 0x110046ff, 0x1d200382, 0x24220382, 0xdd82cdff, 0x8300cd22, 0x84200782, 0x85200382, 0x86200382, 0x87200382, 0xc2200382, 0xc4200382, 0xc6240382, + 0x4801cdff, 0x63200382, 0x6c200382, 0x6f200382, 0x76200382, 0xbc220382, 0xb982cdff, 0x7b02cd22, 0x7d200782, 0xbf200382, 0xc9200382, 0xcb200382, + 0xcd200382, 0xcf200382, 0xd1200382, 0xd3200382, 0xd5200382, 0xd7200382, 0xd9200382, 0xdb200382, 0xdd200382, 0xdf280382, 0x3603cdff, 0x3a0346ff, + 0x3e200382, 0x3f200382, 0xa6268f82, 0xdcff4600, 0x03824700, 0x03824820, 0x03824a20, 0xc1ff5024, 0x03825100, 0xd6ff5224, 0x07825300, 0x13825420, + 0xddff5828, 0xe1ff5900, 0x03825c00, 0x0f82a920, 0x0382aa20, 0x0382ab20, 0x0382ac20, 0x0382ad20, 0x2782b320, 0x2f82b420, 0x0382b520, 0x0382b620, + 0x0382b720, 0x0382b820, 0x3782bb20, 0x0382bc20, 0x0382bd20, 0x0382be20, 0x3f82bf20, 0x0382c120, 0x3382c920, 0x0382cb20, 0x0382cd20, 0x0382cf20, + 0x0382d120, 0x0382d520, 0x0382d720, 0x0382d920, 0x0382db20, 0x0382dd20, 0x0382df20, 0x0382e120, 0x0382e320, 0xdcffe528, 0xc1ff0601, 0x03820801, + 0x03820a20, 0x03820b20, 0xd6ff0f24, 0x03821101, 0x03821320, 0x1f821520, 0xddff2b24, 0x03822d01, 0x03822f20, 0x03823120, 0x03823320, 0x03823520, + 0xe1ff3924, 0x1f824401, 0x0b824620, 0x07828620, 0x3b828820, 0x0b828a20, 0x0b828b20, 0x1b828d20, 0x0f829120, 0x07829720, 0x47829920, 0x13829c20, + 0x03829d20, 0x1f829f20, 0x0382a520, 0x1382a620, 0x0782a720, 0x2382df20, 0x01218b82, 0x200782e4, 0x200382e5, 0x200382e6, 0x200382e8, 0x200382e9, + 0x202382ea, 0x200782eb, 0x200382ec, 0x203b82ed, 0x204b82ef, 0x200782f0, 0x200f82f2, 0x200382f4, 0x200382f5, 0x200382f8, 0x200382fa, 0x201782fc, + 0x280382fd, 0x02c1ffff, 0x02dcff00, 0x20078206, 0x20038208, 0x28038209, 0x02e1ff0a, 0x02d6ff1f, 0x20078221, 0x20038223, 0x201f8225, 0x20038229, + 0x2003822d, 0x201f8236, 0x20038246, 0x2003824e, 0x20038250, 0x20138254, 0x20038256, 0x2027825a, 0x200f8273, 0x20038275, 0x20038279, 0x20138282, + 0x20038284, 0x20038286, 0x200f828e, 0x20038290, 0x20538292, 0x200f8294, 0x20078296, 0x202f829a, 0x2003829c, 0x2003829e, 0x201b82a2, 0x200382a4, + 0x200382a6, 0x201f82ac, 0x200382ad, 0x200382ae, 0x200382b8, 0x201382c2, 0x200782e2, 0x200382e4, 0x200382e6, 0x200382e8, 0x200382ea, 0x200382ec, + 0x200382ee, 0x200382f0, 0x204f82f6, 0x200382f8, 0x200382fa, 0x240382fc, 0x03d6fffe, 0x20038200, 0x24038202, 0x03dcff04, 0x20038206, 0x20038208, + 0x200f820a, 0x2407820c, 0x03ddff0e, 0x20038210, 0x20038212, 0x20038214, 0x20038216, 0x20038218, 0x2403821a, 0x03e1ff1c, 0x2003821e, 0x2a038220, + 0x00e1ff22, 0xff050071, 0x820a00da, 0xff462403, 0x824700f0, 0x82482003, 0x824a2003, 0x82542003, 0xff582803, 0xff5900ef, 0x825c00dc, 0x82a92003, + 0x82aa200f, 0x82ab2003, 0x82ac2003, 0x82ad2003, 0x82bb2003, 0x82bc201f, 0x82bd2003, 0x82be2003, 0x82bf2003, 0x82c12027, 0x82c92003, 0x82cb201b, + 0x82cd2003, 0x82cf2003, 0x82d12003, 0x82d52003, 0x82d72003, 0x82d92003, 0x82db2003, 0x82dd2003, 0x82df2003, 0x82e12003, 0x82e32003, 0xffe52403, + 0x821501f0, 0xff2b2403, 0x822d01ef, 0x822f2003, 0x82312003, 0x82332003, 0x82352003, 0xff392403, 0x824401dc, 0x8246201f, 0xff51240b, 0x828601da, + 0x828a200b, 0x828b200b, 0x828d2007, 0x8297201b, 0x829c2003, 0x829d200b, 0x829f2003, 0x82a52017, 0x82a72003, 0x215f8203, 0x1382ed01, 0x1f82ef20, + 0x0782f020, 0x0382fc20, 0xf0fffd24, 0x03820002, 0xdcff0a24, 0x03822102, 0x03822320, 0x0f822520, 0x03822920, 0x03822d20, 0x03825420, 0x03825620, + 0x17825a20, 0x07828220, 0x03828420, 0x03828620, 0x03829420, 0x13829a20, 0x03829c20, 0x03829e20, 0x0f82ac20, 0x0382ad20, 0x0382ae20, 0x0382b820, + 0x0382e220, 0x0382e420, 0x0382e620, 0x0382e820, 0x0382ea20, 0x0382ec20, 0x0382ee20, 0xf0fff024, 0x03820403, 0x03820620, 0x03820820, 0x03820c20, + 0xefff0e24, 0x03821003, 0x03821220, 0x03821420, 0x03821620, 0x03821820, 0x03821a20, 0xdcff1c24, 0x03821e03, 0x03822020, 0x03822220, 0xdaff3424, + 0x03823503, 0x03823720, 0x03823820, 0x03823920, 0x03824120, 0xdaff422a, 0x05003400, 0x0a00a0ff, 0x58280382, 0x5900f1ff, 0x5c00c5ff, 0xbb200382, + 0xbc200b82, 0xbd200382, 0xbe200382, 0xbf200382, 0xc1281382, 0x2b01c5ff, 0x2d01f1ff, 0x2f200382, 0x31200382, 0x33200382, 0x35200382, 0x39200382, + 0x46201b82, 0x51240782, 0x8a01a0ff, 0x8d200782, 0x97200f82, 0x9f200382, 0xa5200b82, 0xa7200382, 0xef240382, 0x0a02c5ff, 0x21200382, 0x23200382, + 0x5a200382, 0x9a200382, 0x9c200382, 0x9e260382, 0x0e03c5ff, 0xd182f1ff, 0x1203f122, 0x14200782, 0x16200382, 0x18200382, 0x1a200382, 0x1c200382, + 0x1e201f82, 0x20200382, 0x22200382, 0x34220382, 0xd182a0ff, 0x3703a022, 0x38200782, 0x39200382, 0x41200382, 0x42200382, 0x4426c782, 0x0c000f00, + 0x03821100, 0x03821d20, 0xe7ff4624, 0x03824700, 0x03824820, 0x03824a20, 0x03825420, 0x0382a920, 0x0382aa20, 0x0382ab20, 0x0382ac20, 0x0382ad20, + 0x0382c920, 0x0382cb20, 0x0382cd20, 0x0382cf20, 0x0382d120, 0x0382d520, 0x0382d720, 0x0382d920, 0x0382db20, 0x0382dd20, 0x0382df20, 0x0382e120, + 0x0382e320, 0xe7ffe524, 0x03821501, 0x03824420, 0x03828620, 0x03828b20, 0x03829c20, 0x03829d20, 0x01212382, 0x200782ed, 0x200382f0, 0x240382fc, + 0x02e7fffd, 0x20038200, 0x20038225, 0x20038229, 0x8203822d, 0x5602218b, 0x82200782, 0x84200382, 0x43820382, 0x82940221, 0x20938207, 0x21938202, + 0x0b82ae02, 0x0382b820, 0x0382e220, 0x0382e420, 0x0382e620, 0x0382e820, 0x0382ea20, 0x0382ec20, 0x0382ee20, 0xe7fff024, 0x03820403, 0x03820620, + 0x03820820, 0x03820c20, 0x0c003624, 0x03823a03, 0x03823e20, 0x0c003f26, 0x05007100, 0x0a200582, 0x534c0382, 0xff522c0f, 0xff5400ea, 0x005900e8, + 0x825c000b, 0x135f4c03, 0x2382b420, 0x0382b520, 0x0382b620, 0x0382b720, 0x0382b820, 0x2b82bf20, 0x0382c120, 0x24377b4c, 0x01eaff0f, 0x20038211, + 0x28038213, 0x01e8ff15, 0x010b0039, 0x22078244, 0x4c0c0051, 0x8d20088b, 0x97201382, 0x99200382, 0x974c2382, 0x82a62007, 0x82e1200b, 0x82ea2027, + 0x82ed2007, 0x82ef2007, 0x0fa34c1f, 0x0b000a28, 0xeaff1f02, 0x07822102, 0x03822320, 0x2013b34c, 0x4c17825a, 0x92200bb7, 0x94242f82, 0x9602e8ff, + 0x9a200782, 0x9c201b82, 0x9e200382, 0xcb4c0382, 0xf602212e, 0xf8203f82, 0xfa200382, 0xfc200382, 0xfe240382, 0x0003eaff, 0x02200382, 0xe74c0382, + 0x820a200b, 0xff0c280f, 0x001c03e8, 0x821e030b, 0x82202003, 0x82222003, 0x00342403, 0x8235030c, 0x82372003, 0x82382003, 0x82392003, 0x82412003, + 0x00422203, 0x2801820c, 0x00edff5b, 0x01edff5d, 0x2003823c, 0x2003823e, 0x20038240, 0x240382e2, 0x02edfff1, 0x20038242, 0x2003825e, 0x2003826d, + 0x20038288, 0x262b82a8, 0x0005005e, 0x820a000b, 0x11635203, 0x5400e925, 0x5200ebff, 0xe9261527, 0xe9ffb500, 0x0382b600, 0x0382b720, 0x0382b820, + 0x2639f751, 0xff1101e9, 0x821301e9, 0xff152403, 0x824401eb, 0x00512403, 0x8286010b, 0x828b2007, 0x82992003, 0x829c2017, 0x829d2007, 0x82a62003, + 0x05a3510b, 0xed01e922, 0x9f510f82, 0xff1f230f, 0x8f5102e9, 0x51822013, 0xe9210c7b, 0x057b5102, 0x5102e921, 0x07510f6f, 0x02e92221, 0x206382f8, + 0x200382fa, 0x240382fc, 0x03e9fffe, 0x20038200, 0x51038202, 0xe92a0d07, 0xebff0c03, 0x0b003403, 0x03823503, 0x03823720, 0x03823820, 0x03823920, + 0x03824120, 0x0b00422e, 0x5b000c00, 0x5d00f2ff, 0x3c01f2ff, 0x3e200382, 0x40200382, 0xe2200382, 0xf1240382, 0x4202f2ff, 0x5e200382, 0x6d200382, + 0x88200382, 0xa8200382, 0x1f242b82, 0xf4ff5900, 0x5c203584, 0x5d240782, 0xbf00f3ff, 0xc1240782, 0x3901f4ff, 0x3c240382, 0x3e01f3ff, 0x40200382, + 0x8d200382, 0x97200f82, 0x4d830382, 0x0782ef20, 0x0a245183, 0x2102f4ff, 0x23200382, 0x42200382, 0x5a205182, 0x618b0782, 0x0f829a20, 0x03829c20, + 0x03829e20, 0xf2ffa828, 0xf4ff1c03, 0x03821e03, 0x03822020, 0x67822220, 0x05005026, 0x0a00caff, 0x37280382, 0x3900d2ff, 0x3b00d4ff, 0x3c221582, + 0x9582d3ff, 0x9582e620, 0x5c00ef26, 0x9f00e6ff, 0xbf200f82, 0xc1280782, 0x2401e6ff, 0x2601d2ff, 0x38220382, 0xa182d3ff, 0x3a01e622, 0x51240782, + 0x6901caff, 0xd54b0782, 0x01f42205, 0x200b8285, 0x202b828d, 0x20038297, 0x202b82ae, 0x240382b7, 0x01edffba, 0x20b582c2, 0x200b82ce, 0x200b82cf, + 0x280b82d1, 0x01e1ffd3, 0x01efffe2, 0x2a2782ef, 0x02effff1, 0x02e6ff0a, 0x82d4ff20, 0x02e622d1, 0x20078222, 0x200f8223, 0x26d98441, 0xff4b02ef, + 0x4c5702d2, 0x5a200619, 0x1d4c1782, 0x02f42205, 0x2037825e, 0x2417825f, 0x02e1ff61, 0x202b826c, 0x200f826d, 0x200b8276, 0x200b8287, 0x240b8288, + 0x02edff99, 0x202f829a, 0x2007829b, 0x2007829c, 0x2007829d, 0x2007829e, 0x2023829f, 0x2c2382a7, 0x03efffa8, 0x03d3ff1b, 0x03e6ff1c, 0x2007821d, + 0x2007821e, 0x2007821f, 0x20078220, 0x20078221, 0x24078222, 0x03caff34, 0x20038235, 0x20038237, 0x20038238, 0x20038239, 0x2a038241, 0x00caff42, + 0xff050061, 0x820a00c0, 0xff373403, 0xff39009d, 0xff3b00c7, 0xff3c00f0, 0xff5000ab, 0x825100d2, 0x82532003, 0x829f2003, 0x82b3200f, 0x820620f9, + 0x82082003, 0x820a2003, 0x820b2003, 0xff242403, 0x8226019d, 0xff382403, 0x823a01ab, 0xff512403, 0x826901c0, 0x827f2007, 0xff812403, 0x828501f0, + 0x82882007, 0x82912027, 0x82ae2003, 0xffb52427, 0x82b701f5, 0xffba2407, 0x82c201ea, 0x82c7201f, 0x82ce200f, 0x82cf200f, 0x82d1200f, 0xffd3240f, + 0x82df01e5, 0x82e4202b, 0x82e52003, 0x82e62003, 0x82e82003, 0x82e92003, 0x82eb2003, 0x82ec2003, 0x82f22003, 0x82f42003, 0x82f52003, 0x82fa2003, + 0xffff2403, 0x820602d2, 0x82082003, 0x82092003, 0xff202403, 0x822202c7, 0x82362003, 0xff41240b, 0x824602f0, 0xff4b2407, 0x824e029d, 0x82502007, + 0x82572003, 0xff59240b, 0x825b02ab, 0x825d2003, 0x825f201f, 0xff61240f, 0x826c02e5, 0xff70240b, 0x827302f5, 0x82752023, 0x82762003, 0x82792013, + 0x82872007, 0x828e2017, 0x82902007, 0xff992403, 0x829b02ea, 0x829d2003, 0x829f2003, 0x82a2201f, 0x82a42013, 0x82a62003, 0x82a72003, 0x82b32027, + 0x82bd203f, 0xffc22803, 0xff1b03d2, 0x821d03ab, 0x821f2003, 0x82212003, 0xff342403, 0x823503c0, 0x82372003, 0x82382003, 0x82392003, 0x82412003, + 0xff422a03, 0x006400c0, 0x00b1ff05, 0x3403820a, 0x009eff37, 0x00c5ff39, 0x00f2ff3b, 0x00a8ff3c, 0x00cfff50, 0x20038251, 0x24038253, 0x00efff5b, + 0x2413829f, 0x01cfffb3, 0x20038206, 0x20038208, 0x2003820a, 0x2403820b, 0x019eff24, 0x24038226, 0x01a8ff38, 0x2403823a, 0x01b1ff51, 0x20078269, + 0x2403827f, 0x01f2ff81, 0x20078285, 0x20278288, 0x20038291, 0x202782ae, 0x240382b7, 0x01ecffba, 0x201b82c2, 0x200b82ce, 0x200b82cf, 0x240b82d1, + 0x01e1ffd3, 0x242382df, 0x01efffe2, 0x200782e4, 0x200382e5, 0x200382e6, 0x200382e8, 0x200382e9, 0x200382eb, 0x200382ec, 0x201f82f1, 0x200782f2, + 0x200382f4, 0x200382f5, 0x240382fa, 0x02cfffff, 0x20038206, 0x20038208, 0x24038209, 0x02c5ff20, 0x20038222, 0x280b8236, 0x02f2ff41, 0x02efff42, + 0x240b8246, 0x029eff4b, 0x2007824e, 0x20038250, 0x240b8257, 0x02a8ff59, 0x2003825b, 0x4323825d, 0x9e21050f, 0x050f4302, 0x6d02f222, 0x73203382, + 0x75202782, 0x76240382, 0x7902e1ff, 0x87200782, 0x88202782, 0x8e201782, 0x90200b82, 0x99240382, 0x9b02ecff, 0x9d200382, 0x9f200382, 0xa2202382, + 0xa4201382, 0xa6200382, 0xa7200382, 0xa8202b82, 0xc2282b82, 0x1b03cfff, 0x1d03a8ff, 0x1f200382, 0x21200382, 0x34240382, 0x3503b1ff, 0x37200382, + 0x38200382, 0x39200382, 0x41200382, 0x422e0382, 0x4300b1ff, 0xbeff3700, 0xe1ff5000, 0x03825100, 0x03825320, 0xefff5924, 0x03825c00, 0x0b82b320, + 0x0782bf20, 0xefffc128, 0xe1ff0601, 0x03820801, 0x03820a20, 0x03820b20, 0xbeff2424, 0x03822601, 0x1b823920, 0x0f828820, 0x07828d20, 0x07829120, + 0x07829720, 0x1782ae20, 0x0382b720, 0x0382ce20, 0x1382df20, 0x0382e420, 0x0382e520, 0x0382e620, 0x0382e820, 0x0382e920, 0x0382eb20, 0x0382ec20, + 0x2f82ef20, 0x0782f220, 0x0382f420, 0x0382f520, 0x0382fa20, 0xd982ff20, 0x03820620, 0x03820820, 0x03820920, 0xd5820a20, 0x03822120, 0x03822320, + 0x0f823620, 0x03824620, 0xbeff4b24, 0x07824e02, 0x03825020, 0x0b825720, 0x1b825a20, 0x07825f20, 0x0f827320, 0x03827520, 0x03827920, 0x03828e20, + 0x03829020, 0x1b829a20, 0x03829c20, 0x03829e20, 0x0f82a220, 0x0382a420, 0x0382a620, 0xe1ffc228, 0xefff1c03, 0x03821e03, 0x03822020, 0xeb822220, + 0x37005a28, 0x3900e6ff, 0x9742e7ff, 0x00e72606, 0x00d6ff50, 0x20038251, 0x24038253, 0x00f1ff5b, 0x241b829f, 0x01d6ffb3, 0x20038206, 0x20038208, + 0x2003820a, 0x2403820b, 0x01e6ff24, 0x24038226, 0x01e7ff38, 0x2003823a, 0x20038269, 0x4203827f, 0xe7220593, 0x23828801, 0x03829120, 0x2382ae20, + 0x0382b720, 0xeeffba22, 0x22069342, 0x82cf01e6, 0x0593420b, 0xdf01e822, 0xe2242382, 0xe401f1ff, 0xe5200782, 0xe6200382, 0xe8200382, 0xe9200382, + 0xeb200382, 0xec200382, 0xf1200382, 0xf2201f82, 0xf4200782, 0xf5200382, 0xfa200382, 0xff240382, 0x0602d6ff, 0x08200382, 0x09200382, 0x20240382, + 0x2202e7ff, 0x36200382, 0x93420b82, 0x02f12205, 0x240b8246, 0x02e6ff4b, 0x2007824e, 0x20038250, 0x200b8257, 0x20238259, 0x4203825b, 0xf1220593, + 0x13825f02, 0xe8ff612c, 0xf2ff6c02, 0xf1ff6d02, 0x27827302, 0x03827520, 0x13827620, 0x07827920, 0x22059342, 0x828e02f1, 0x8290200b, 0xff992403, + 0x829b02ee, 0x829d2003, 0x829f2003, 0x82a22023, 0x82a42013, 0x82a62003, 0x05934203, 0xc202f12a, 0x1b03d6ff, 0x1d03e7ff, 0x1f200382, 0x212e0382, + 0x8300e7ff, 0x10002400, 0xe8ff2600, 0x03822a00, 0x03823220, 0x03823420, 0xe0ff3724, 0x03823900, 0xdfff3c24, 0x1f828200, 0x03828320, 0x03828420, + 0x03828520, 0x03828620, 0x03828720, 0x27828920, 0x03829420, 0x03829520, 0x03829620, 0x03829720, 0x03829820, 0x03829a20, 0x37829f20, 0x2382c220, + 0x0382c420, 0x0382c620, 0x1382c820, 0x0382ca20, 0x0382cc20, 0x0382ce20, 0x0382de20, 0x0382e020, 0x0382e220, 0xe8ffe424, 0x03820e01, 0x03821020, + 0x03821220, 0x03821420, 0xe0ff2424, 0x03822601, 0xdfff3824, 0x03823a01, 0x13824320, 0x10004824, 0x07824c01, 0x07826320, 0x07826820, 0x17826920, + 0x0b826c20, 0x03826f20, 0x0f827320, 0x07827620, 0x07827a20, 0x17827f20, 0x03828520, 0x3f82ae20, 0x0f82b020, 0x1782b520, 0x0b82b720, 0x0782bc20, + 0x0382c720, 0x1382ca20, 0x0382cd20, 0x1382ce20, 0xe1ffd324, 0x1382e701, 0xe0fff32c, 0x10000502, 0xe8ff0c02, 0x07821202, 0x07821e20, 0x13822020, + 0x03822220, 0x0b822420, 0x03822620, 0x03822820, 0x03822a20, 0x03822c20, 0x17824b20, 0x07825320, 0x03825520, 0x0b825720, 0xdfff5924, 0x03825b02, + 0x0b825f20, 0xe1ff6124, 0x07826202, 0x47827020, 0x03827120, 0x0f827620, 0x0f827720, 0x0b827b20, 0x03827d20, 0x33829120, 0x03829320, 0x03829520, + 0x1b829f20, 0x1b82a020, 0x1782b320, 0x0f82b720, 0x0782bd20, 0x0382be20, 0x0382bf20, 0x0382c920, 0x0382cb20, 0x0382cd20, 0x0382cf20, 0x0382d120, + 0x0382d320, 0x0382d520, 0x0382d720, 0x0382d920, 0x0382db20, 0x0382dd20, 0x0382df20, 0x3f82f520, 0x0382f720, 0x0382f920, 0x0382fb20, 0x0382fd20, + 0xe8ffff24, 0x03820103, 0x03820320, 0x03820520, 0x03820720, 0x03820920, 0x03820b20, 0xdfff1b24, 0x03821d03, 0x03821f20, 0x03822120, 0xe8ff232e, + 0x37002c00, 0x3900f1ff, 0x3b00f4ff, 0x3c2c0382, 0x9f00f0ff, 0x2401f0ff, 0x2601f1ff, 0x38200382, 0x3a200b82, 0x69200382, 0x7f200382, 0x81240382, + 0x8501f4ff, 0xae200782, 0x69471b82, 0x01f12605, 0x01f3ffba, 0x471782c2, 0xf1220569, 0x0f82cf01, 0xf4ffd124, 0x03822002, 0x03822220, 0x03824120, + 0xf1ff4b24, 0x03825702, 0xf0ff5924, 0x03825b02, 0x13825d20, 0x0f825f20, 0x07826c20, 0xf5ff7024, 0x07828702, 0xf3ff9924, 0x03829b02, 0x03829d20, + 0x0f82a720, 0x2306e946, 0xf0ff1b03, 0xf022b582, 0x07821f03, 0x9f822120, 0x24005824, 0x2d440f00, 0x00e62a06, 0x000e003b, 0x00e6ff3c, 0x20138282, + 0x20038283, 0x20038284, 0x20038285, 0x20038286, 0x20038287, 0x201b829f, 0x200782c2, 0x220382c4, 0x820f00c6, 0x072d44d9, 0x3a01e626, 0x4801e6ff, + 0x63201382, 0x69200382, 0x6c200b82, 0x6f200782, 0x76200382, 0x7f200382, 0x81220f82, 0xed820e00, 0xae01e622, 0xb5200b82, 0xb7200b82, 0xba240782, + 0xbc010b00, 0xc2201f82, 0xc7200f82, 0xce200382, 0xcf201382, 0xd1201382, 0xd3240b82, 0xe701e5ff, 0xf3281b82, 0x0502e8ff, 0x12020f00, 0x20240382, + 0x2202e6ff, 0x41240382, 0x4b020e00, 0x57200782, 0x59200382, 0x5b200382, 0x5d200382, 0xf5431382, 0x02e52205, 0x20338262, 0x200f826c, 0x20038270, + 0x24378271, 0x02e5ff76, 0x20138277, 0x200b827b, 0x2003827d, 0x24178287, 0x020b0099, 0x2003829b, 0x2003829d, 0x201f829f, 0x201f82a0, 0x201782a7, + 0x200382b3, 0x200382bd, 0x202782be, 0x200382bf, 0x200382c9, 0x200382cb, 0x200382cd, 0x200382cf, 0x200382d1, 0x200382d3, 0x200382d5, 0x200382d7, + 0x200382d9, 0x200382db, 0x280382dd, 0x030f00df, 0x03e6ff1b, 0x2003821d, 0x2a03821f, 0x00e6ff21, 0xff05002c, 0x820a00bf, 0xff373403, 0xff39009f, + 0xff3c00c9, 0xff9f00ad, 0xff2401ad, 0x8226019f, 0x82382003, 0x823a200b, 0xff512403, 0x826901bf, 0x827f2007, 0x82852003, 0x82ae2003, 0x82b7201b, + 0xffba2403, 0x82ce01ec, 0x82cf2007, 0x82d32007, 0xff2024e9, 0x822202c9, 0xff4b2403, 0x8257029f, 0xff592403, 0x825b02ad, 0x825f2003, 0x8261200b, + 0x8276201f, 0x0d634703, 0x9582e620, 0x9582ad20, 0x1f03ad26, 0x2103adff, 0x34240382, 0x3503bfff, 0x37200382, 0x38200382, 0x39200382, 0x41200382, + 0x42200382, 0x2d28a782, 0xe3ff3700, 0xe5ff3b00, 0xe424a982, 0xe4ff9f00, 0xe320a982, 0xe322a982, 0x0b823801, 0x03823a20, 0x03826920, 0x03827f20, + 0xe5ff8124, 0x07828501, 0xe3ffae24, 0x0b82b501, 0x0782b720, 0xe9ffba24, 0x0b82c201, 0x0382c720, 0x0f82ce20, 0x0f82cf20, 0x0b82d120, 0xeaffe724, + 0x03820502, 0xe5ff4126, 0xe3ff4b02, 0xe324b982, 0xe4ff5902, 0xe422b982, 0x13825d02, 0x13825f20, 0x07826c20, 0x03827020, 0x27827120, 0x07828720, + 0xe9ff9924, 0x03829b02, 0x03829d20, 0x0f82a720, 0x0382b320, 0x0382bd20, 0xeaffbe26, 0xe4ff1b03, 0xe422d182, 0x07821f03, 0xe4ff2124, 0xb5822000, + 0xb582e220, 0xe220ad83, 0xe222ad82, 0x99848101, 0x9982e220, 0xb701e425, 0x8501e2ff, 0x01e42299, 0x201782c7, 0x850f82ce, 0x01e42499, 0x82ebffe7, + 0x02eb2299, 0x228d8241, 0x82e2ff4b, 0x82e22099, 0x02e42291, 0x200b825f, 0x2013826c, 0x20038270, 0x20238271, 0x8d078287, 0x02e42291, 0x201382b3, + 0x260382bd, 0x00ebffbe, 0x82370016, 0xff3c2a05, 0xff9f00f3, 0xff2401f3, 0x228582eb, 0x823801eb, 0x823a200b, 0x82692003, 0x827f2003, 0x82852003, + 0x82ae2003, 0x82b7201b, 0x82ce2003, 0x824b2055, 0x82572003, 0xff592403, 0x825b02f3, 0xff5f2203, 0x20db82eb, 0x26db82f3, 0xff1f03f3, 0x822103f3, + 0x002f264f, 0x00efff50, 0x20038251, 0x28038253, 0x00f0ff5b, 0x01efffb3, 0x20038206, 0x20038208, 0x2003820a, 0x2003820b, 0x20038288, 0x20038291, + 0x240382df, 0x01f0ffe2, 0x200782e4, 0x200382e5, 0x200382e6, 0x200382e8, 0x200382e9, 0x200382eb, 0x200382ec, 0x201f82f1, 0x200782f2, 0x200382f4, + 0x200382f5, 0x240382fa, 0x02efffff, 0x20038206, 0x20038208, 0x20038209, 0x24038236, 0x02f0ff42, 0x20078246, 0x2003824e, 0x20038250, 0x200f825e, + 0x2003826d, 0x200b8273, 0x20038275, 0x20038279, 0x200f8288, 0x2007828e, 0x20038290, 0x200382a2, 0x200382a4, 0x200382a6, 0x201782a8, 0x26af82c2, + 0xff05001d, 0x820a00f2, 0xff592403, 0x825c00f5, 0x82bf2003, 0xffc12403, 0x823901f5, 0xff512403, 0x828d01f2, 0x82972007, 0xffef2403, 0x820a02f5, + 0x82212003, 0x82232003, 0x825a2003, 0x829a2003, 0x829c2003, 0xff9e2403, 0x821c03f5, 0x821e2003, 0x82202003, 0x82222003, 0xff342403, 0x823503f2, + 0x82372003, 0x82382003, 0x82392003, 0x82412003, 0x82422003, 0x002b266b, 0x00eeff50, 0x20038251, 0x24038253, 0x01eeffb3, 0x20038206, 0x20038208, + 0x2003820a, 0x2003820b, 0x20038288, 0x20038291, 0x200382df, 0x200382e4, 0x200382e5, 0x200382e6, 0x200382e8, 0x200382e9, 0x200382eb, 0x200382ec, + 0x240382f2, 0x01edfff3, 0x200782f4, 0x200382f5, 0x240382fa, 0x02eeffff, 0x20038206, 0x20038208, 0x20038209, 0x20038236, 0x20038246, 0x2003824e, + 0x24038250, 0x02edff62, 0x20078273, 0x20038275, 0x200b8277, 0x20078279, 0x2003828e, 0x20038290, 0x200f82a0, 0x200782a2, 0x200382a4, 0x200382a6, + 0x259f82c2, 0xff05000a, 0xfb8200f5, 0x84510121, 0x82f520d7, 0x03f522d7, 0x200b8237, 0x20038238, 0x20038239, 0x20038241, 0x21238242, 0x07570054, + 0xff52270f, 0xff5400eb, 0xff5600f0, 0x63b42013, 0xfb56128d, 0x630f2037, 0xf0260c5d, 0xf0ff4401, 0x03828601, 0x03828b20, 0x1b829920, 0xdb569c20, + 0x82a62006, 0x82e1200b, 0x82ea200b, 0x82ed2007, 0x0fd35607, 0xebff1f23, 0x13cb5602, 0x200bc756, 0x24238292, 0x02f0ff94, 0x56078296, 0x02202ec3, + 0x221d6962, 0x560603f0, 0x0a2e06df, 0x0c03ebff, 0x9000f0ff, 0x0d000500, 0x03820a00, 0x0025d182, 0x00eeff46, 0x20038247, 0x20038248, 0x2403824a, + 0x00eaff52, 0x54078254, 0xa22007bb, 0xa3203182, 0xa4200382, 0xa5200382, 0xa6200382, 0xa7200382, 0xa9200382, 0xaa202382, 0xab200382, 0xac200382, + 0xad200382, 0xd3540382, 0x82c3201b, 0x82c52033, 0x82c72003, 0x82c92003, 0x82cb202b, 0x82cd2003, 0x82cf2003, 0x82d12003, 0x82d52003, 0x82d72003, + 0x82d92003, 0x82db2003, 0x82dd2003, 0x82df2003, 0x82e12003, 0x82e32003, 0xffe52303, 0xdf5401ee, 0x54ee200d, 0xee2a06df, 0xf0ff4901, 0x0d005101, + 0x23828601, 0x03828b20, 0x220de354, 0x829d01ee, 0xffa62413, 0x82dc01ea, 0x244f8227, 0xd7ffe701, 0x05eb5401, 0xef01ee26, 0xf0010b00, 0xfc201f82, + 0xfd240382, 0x0002eeff, 0x05230382, 0x5402d7ff, 0xee2211ef, 0x1b822902, 0x03822d20, 0x03825420, 0x03825620, 0x0b005a24, 0x2b827102, 0xf0ff7c24, + 0x03827e02, 0x13828220, 0x03828420, 0x03828620, 0xeaff9224, 0x07829402, 0x2211fb54, 0x82ad02ee, 0x82ae2017, 0x82b82003, 0x82be2003, 0x82c0203f, + 0x82ca203b, 0x82cc2003, 0x82ce2003, 0x82d02003, 0x82d22003, 0x82d42003, 0x82d62003, 0x82d82003, 0x82da2003, 0x82dc2003, 0x82de2003, 0x82e02003, + 0x82e22003, 0x82e4203b, 0x82e62003, 0x82e82003, 0x82ea2003, 0x82ec2003, 0x82ee2003, 0x82f02003, 0x1d335503, 0x0603ee26, 0x0803eeff, 0x0a240382, + 0x0c03eaff, 0x33550782, 0x030d2611, 0x030d0035, 0x20038237, 0x20038238, 0x20038239, 0x24038241, 0x000d0042, 0x06054b08, 0x0502f026, 0x62021000, + 0x71208d82, 0x77200782, 0xa0200782, 0xbe240382, 0x45001000, 0x23105742, 0x00eeff54, 0x42133342, 0x1524370b, 0x4401eeff, 0xf3410382, 0x829c2007, + 0x829d200b, 0x82e12003, 0x00e72403, 0x82ed010e, 0x82f02007, 0xfff32303, 0xdb4101e3, 0x0e00240c, 0x41ff2502, 0x622411cb, 0x7102e3ff, 0x77201b82, + 0xc7410782, 0x8294200b, 0x82a0202b, 0x82ac2013, 0x0cb74107, 0x83412b82, 0x0403221e, 0x096741ff, 0xff820c20, 0x59001726, 0x5c00deff, 0xbf200382, + 0xc1240382, 0x3901deff, 0x8d200382, 0x97200382, 0xef200382, 0xf3200382, 0x0a246582, 0x2102deff, 0x23200382, 0x5a200382, 0x62200382, 0x77201382, + 0x9a200382, 0x9c200b82, 0x9e200382, 0xa0200382, 0x1c245982, 0x1e03deff, 0x20200382, 0x22200382, 0x1f204f82, 0xf4245d82, 0xf0ff5b00, 0xf4206182, + 0x540ce754, 0xf02509db, 0xf3ffe701, 0x05df5401, 0x0502f025, 0x5402f3ff, 0xf0250de3, 0xf4ff5a02, 0x07f54602, 0x1f827120, 0xf0ff8823, 0x0de75402, + 0xbe02f024, 0xeb54f3ff, 0x000a2e10, 0x00d6ff05, 0x01d6ff0a, 0x03d6ff51, 0x20038234, 0x20038235, 0x20038237, 0x20038238, 0x20038239, 0x20038241, + 0x20238242, 0x26a3820c, 0xffe201f4, 0x82f101f4, 0xfff32403, 0x844202d6, 0x02f42273, 0x200b8262, 0x200b826d, 0x20078277, 0x20078288, 0x280782a0, + 0x00f4ffa8, 0xfff30104, 0x221d82e6, 0x827702e6, 0xffa02307, 0x6d8300e6, 0x6d82d720, 0x6d82d720, 0x6d82d720, 0x3503d726, 0x3703d7ff, 0x38200382, + 0x39200382, 0x41200382, 0x2c080382, 0x00d7ff42, 0x00ee0a02, 0x0d000004, 0x007614f4, 0x001d0020, 0x000c0000, 0xffdfff11, 0xffcefff4, 0xffb3fff5, + 0xffd0ffef, 0xff57ff3e, 0x240d82a7, 0x00d9ffc9, 0xa2218212, 0xe8ff2102, 0xff252483, 0xff0000c9, 0x830983e5, 0xf3ff2103, 0x03960583, 0x27891120, + 0xe4242b84, 0xe3ff0000, 0x07820382, 0x82110021, 0x84122011, 0x8f088205, 0xe1ff2102, 0xff211187, 0x210983ea, 0x738bd5ff, 0xeb260b82, 0xe9ffeaff, + 0x1b8386ff, 0x738303a1, 0x218325a1, 0xffedff23, 0x890783e6, 0xefff2103, 0x09850b89, 0x85edff21, 0x31058707, 0xcbffc4ff, 0xb1ff7cff, 0xe4ffaeff, + 0x00001000, 0x0583a7ff, 0xff100023, 0x222182bf, 0x827eff0f, 0x82932011, 0xfe002e09, 0xffa7fffe, 0xfeb4ffb3, 0xfff0fff0, 0x311183ad, 0x92ff86ff, + 0x66ff0cff, 0xbdff61ff, 0x00000700, 0x058355ff, 0x83070021, 0x05002333, 0x11820fff, 0x39843320, 0x55ff362c, 0x6bff6aff, 0xd1ff1efe, 0x11835fff, + 0xff210385, 0x8f0785ec, 0xd8ff2105, 0x23931189, 0xffa3ff25, 0x41d8ffe5, 0x2d830963, 0x83e9ff21, 0x41038b05, 0xff210509, 0x83138b5c, 0x85ff2b0b, + 0x32ffe7ff, 0x0000e8ff, 0xd382e9fe, 0xf2ff3326, 0xa3ff0000, 0x00211983, 0x92058413, 0x6fff2104, 0xf3212382, 0x91d18200, 0xa7ff211c, 0x4e261b82, + 0xdcffcdff, 0x4d426cfe, 0xf5ff2109, 0x11932991, 0x93051f42, 0x23138319, 0xf5ffd2ff, 0x11845389, 0x0583e420, 0xff210383, 0x220584b5, 0x84d4ff29, + 0x00632407, 0x83d2ff00, 0x2a038209, 0xffd1ff11, 0xffe1ffeb, 0x820e00e7, 0x2102860d, 0x0884ebff, 0x05841120, 0x21410484, 0x84642006, 0x2104820c, + 0x0983e2ff, 0xffbfff2d, 0x00e3ffec, 0xffa0ff12, 0x841200d8, 0x83d9204d, 0x261b8405, 0x000d00ae, 0x8219ff00, 0xffe92a23, 0xff68ffc6, 0xffc1fff0, + 0x831983a0, 0x0d914103, 0x0e201182, 0x21096b42, 0x2184d5ff, 0x23857120, 0x00c4ff25, 0x83dfff00, 0x23038511, 0xe5ffebff, 0x890db942, 0x83718339, + 0x83bf8625, 0x2703860a, 0xe9ffcaff, 0x0000bdff, 0x2105fb41, 0xad84aeff, 0x21060b44, 0x1782bbff, 0x2883a520, 0x8477fe21, 0xffd22223, 0x20118239, + 0x871183af, 0xf1ff2103, 0x00210987, 0x11274300, 0x099d1b89, 0x8725e941, 0x432d8b6b, 0xff2109d7, 0x8b638bf2, 0x42178997, 0x2f8d0b07, 0x09a12389, + 0xa1f0ff21, 0x00002123, 0x898b2587, 0x8d098943, 0x11974143, 0x59413f82, 0x206f820a, 0x8403820f, 0xd7ff2102, 0x59200988, 0x658ecf89, 0x200bcd45, + 0x892f8710, 0x53ff2107, 0x890a1b42, 0x44002016, 0x1e8a1329, 0x23950a84, 0x2884cf8d, 0x23950490, 0x88a5ff21, 0x00ec24cf, 0x87dbff00, 0x2107830d, + 0x058396ff, 0xff000023, 0x200382c5, 0x210b83a4, 0x0583ceff, 0xff21038b, 0x290d83c8, 0xc0ffadff, 0x00009fff, 0x0d84e7ff, 0x8305a743, 0xff00220a, + 0x8a0684c9, 0x21fb8304, 0x1089ddff, 0x8979ff21, 0x42098b0b, 0x4b0b0b67, 0x99010100, 0x0a000500, 0x25002400, 0x27002600, 0x29002800, 0x2c002b00, + 0x2e002d00, 0x30002f00, 0x32003100, 0x34003300, 0x38003700, 0x3a003900, 0x3c003b00, 0x44003d00, 0x48004500, 0x52004900, 0x55005300, 0x5b005900, + 0x82005c00, 0x84008300, 0x86008500, 0x89008700, 0x8b008a00, 0x8d008c00, 0x8f008e00, 0x91009000, 0x93009200, 0x95009400, 0x97009600, 0x9b009800, + 0x9d009c00, 0x9f009e00, 0xa300a200, 0xa500a400, 0xa700a600, 0xab00aa00, 0xad00ac00, 0xb500b400, 0xb700b600, 0xbf00b800, 0xc100c000, 0xc300c200, + 0xc500c400, 0xc700c600, 0xca00c800, 0xce00cc00, 0xd200d000, 0xd500d400, 0xd700d600, 0xd900d800, 0xdb00da00, 0xdd00dc00, 0xea00e600, 0xee00ec00, + 0xf200f000, 0xf800f600, 0xfd00fb00, 0x0101ff00, 0x07010501, 0x0e010901, 0x10010f01, 0x12011101, 0x17011301, 0x1b011901, 0x26012401, 0x2a012801, + 0x2e012c01, 0x32013001, 0x36013401, 0x39013801, 0x3b013a01, 0x3f013d01, 0x49014801, 0x63015101, 0x66016501, 0x68016701, 0x6c016901, 0x6e016d01, + 0x70016f01, 0x72017101, 0x74017301, 0x76017501, 0x78017701, 0x7a017901, 0x7d017c01, 0x7f017e01, 0x81018001, 0x84018201, 0x8b018501, 0x8e018d01, + 0x93019001, 0x97019501, 0x99019801, 0x9d019b01, 0xa0019e01, 0xa601a101, 0xad01ac01, 0xaf01ae01, 0xb301b201, 0xb501b401, 0xb701b601, 0xba01b801, + 0xbc01bb01, 0xbe01bd01, 0xc001bf01, 0xc201c101, 0xc401c301, 0xc701c601, 0xc901c801, 0xcc01ca01, 0xce01cd01, 0xd101cf01, 0xd401d201, 0xd601d501, + 0xd901d801, 0xdc01da01, 0xde01dd01, 0xe001df01, 0xe201e101, 0xea01e601, 0xee01ec01, 0xf001ef01, 0xf201f101, 0xf601f501, 0xf901f801, 0xfc01fa01, + 0xff01fd01, 0x06020502, 0x0e020a02, 0x12020f02, 0x20021f02, 0x22022102, 0x3a022302, 0x3c023b02, 0x41023d02, 0x45024202, 0x49024702, 0x4d024b02, + 0x57025502, 0x5a025902, 0x5d025b02, 0x6b025e02, 0x6d026c02, 0x78027402, 0x7b027a02, 0x7d027c02, 0x81027e02, 0x84028202, 0x87028602, 0x91028802, + 0x96029202, 0x99029802, 0x9b029a02, 0x9d029c02, 0xa1029e02, 0xa602a202, 0xa802a702, 0xc002bf02, 0xc302c102, 0xc702c502, 0xca02c902, 0xcc02cb02, + 0xce02cd02, 0xd002cf02, 0xd202d102, 0xd402d302, 0xd602d502, 0xd802d702, 0xda02d902, 0xdc02db02, 0xde02dd02, 0xe002df02, 0xe202e102, 0xe402e302, + 0xe602e502, 0xe802e702, 0xea02e902, 0xec02eb02, 0xee02ed02, 0xf002ef02, 0xf302f102, 0xf602f502, 0xf802f702, 0xfa02f902, 0xfc02fb02, 0xfe02fd02, + 0x0003ff02, 0x02030103, 0x0d030a03, 0x1b030f03, 0x1d031c03, 0x1f031e03, 0x21032003, 0x23032203, 0x35033403, 0x38033703, 0x41033903, 0x71034203, + 0x78037603, 0x7e037d03, 0xdb038203, 0xec03dc03, 0xee03ed03, 0xf003ef03, 0xf203f103, 0x01000a04, 0x0b000900, 0x34002900, 0x3e003500, 0x4e004900, + 0x5e005a00, 0x27281582, 0x7d017901, 0x82018001, 0x2006ef41, 0x06e74198, 0xa301a224, 0xdd41ae01, 0x01bd3a06, 0x01c301c0, 0x01d601d5, 0x01da01d9, + 0x01dd01db, 0x01e001de, 0x01e601e3, 0x06a341ee, 0x0002fa2c, 0x06020502, 0x01002d02, 0x9d438101, 0x119b430e, 0x28119943, 0x00480046, 0x0050004b, + 0x0c9f4351, 0xa1435d20, 0x43a92042, 0xb32008a3, 0x2c1ea543, 0x00ca00c9, 0x00cc00cb, 0x00ce00cd, 0x1aad43cf, 0xaf43e720, 0x01062a18, 0x01080107, + 0x010a0109, 0x2eb7430b, 0x3d013c28, 0x3f013e01, 0xbd434001, 0x017a382c, 0x017e017c, 0x0181017f, 0x01850184, 0x018d0188, 0x01970191, 0x439b0199, + 0xa34306a5, 0x07a1430b, 0xbf01be26, 0xc201c101, 0x301a9b43, 0x01d801d6, 0x01df01dc, 0x01e201e1, 0x01ec01ea, 0x068d43ed, 0x43058943, 0x56203387, + 0x200c8943, 0x448b4366, 0x8d43c220, 0x0100289b, 0x3e030500, 0x87001d00, 0x87098900, 0x2607a311, 0x00040001, 0x84050003, 0x0002282a, 0x000c0002, + 0x820a0009, 0x82022007, 0x840b2015, 0x00002215, 0x27158206, 0x0010000d, 0x000f000e, 0x820a0d4b, 0x0013241d, 0x82140015, 0x82162007, 0x00002203, + 0x83058417, 0x82172004, 0x8218200b, 0x0000221b, 0x820e831a, 0x82192003, 0x001b2403, 0x821c0019, 0x2202d307, 0x86050004, 0x83c58301, 0x82032003, + 0x820320c5, 0x830385c5, 0x820c2073, 0x490383c7, 0x1321055d, 0x20018900, 0x21c58200, 0x01850016, 0x03852983, 0x18001722, 0x11850188, 0x19200585, + 0x1920d982, 0x13200a82, 0x04200388, 0x038b3f82, 0x19820320, 0x05200383, 0x038f5382, 0x028c1a82, 0x37410220, 0x00022306, 0x038f0000, 0x0022b585, + 0x08830900, 0x820a0021, 0x82038b05, 0x2031820e, 0x41038817, 0x0320057f, 0x0387b382, 0x83412183, 0x821a2005, 0x078b410a, 0x02860a82, 0x07820620, + 0x0c200387, 0x03930b82, 0x17821020, 0x19000f28, 0x11000f00, 0x03881c00, 0x028c1482, 0x0d8c1320, 0x97420020, 0x8e188e0a, 0x8205200e, 0x000222bd, + 0x855d8203, 0x00012218, 0x20088207, 0x83678205, 0x84022015, 0x820220f9, 0x82002023, 0x00002223, 0x20af840b, 0x2005820f, 0x2003820e, 0x41178200, + 0x794205cb, 0x84192009, 0x0b8b4217, 0xbb820020, 0x18000022, 0x15201782, 0x02910382, 0x15871983, 0x05000522, 0x07200a82, 0x5b830382, 0x0c000224, + 0x01821e00, 0x85840020, 0x85841220, 0x01000022, 0x8183a186, 0x83000221, 0x8202201b, 0x86022019, 0x0004249f, 0x84120006, 0x0002229f, 0x22318400, + 0x8400001e, 0x4f068243, 0x0820062f, 0x16220a82, 0x05821b00, 0x1820028b, 0x1420a184, 0x19220582, 0x1d8a1500, 0x11821f20, 0x11821f20, 0x00210682, + 0x22018216, 0x82080000, 0x21028711, 0x1f83001f, 0x19200d83, 0x03820483, 0x11881e20, 0x02940c82, 0x0d001824, 0x03841900, 0x14961e94, 0xf7821520, + 0xfb840820, 0x0e202083, 0x0920a186, 0x038b0c82, 0x8d000221, 0x00042400, 0x42060014, 0x00210841, 0x82378700, 0x10a94112, 0x1d900220, 0x4b414d87, + 0x07714307, 0x05000026, 0x00001600, 0x53910386, 0x03000024, 0x1f821800, 0x07830283, 0x12001522, 0x0387f182, 0x07201583, 0x20084541, 0x83759008, + 0x26039d1f, 0x00020013, 0x82100017, 0x21038724, 0x0d440000, 0x440ba309, 0x0f8f0f15, 0xcd43f187, 0x200b8f0b, 0x85008c00, 0x820c20ef, 0x82038313, + 0x43029006, 0x192105c5, 0x20078700, 0x8f219003, 0x001d2210, 0x8312821d, 0x0f5d4605, 0x81461383, 0x820b2005, 0x89028521, 0x00152209, 0x06b14219, + 0x058b1985, 0x200d8543, 0x201a8212, 0x83038206, 0x20078502, 0x840a831c, 0x830f8303, 0x001a2603, 0x0008000c, 0x24b78207, 0x000a0013, 0x871b8414, + 0x821b2004, 0x07b74508, 0x82058546, 0x24028210, 0x00090009, 0x83038204, 0x82182013, 0x000d220f, 0x20058205, 0x20058217, 0x9f078201, 0x9f192002, + 0x211f8420, 0x01890012, 0x85000021, 0x8a1884bd, 0x00062104, 0x21830187, 0xc7820820, 0x0a200383, 0x1b212184, 0x21018900, 0xc5850000, 0x1c840583, + 0x09200484, 0x0420c382, 0x10830386, 0x85000d21, 0x20cb8301, 0x207d8205, 0x2003881b, 0x8b3f8206, 0x834f8303, 0x43078531, 0x0f83092b, 0x29852b91, + 0x91410597, 0x43219509, 0x098309ff, 0x0420e783, 0x0387f582, 0x240b9541, 0x001a0000, 0x42038c18, 0x08200baf, 0x0393dd82, 0x76820f20, 0x05000a28, + 0x14000a00, 0x03880100, 0x00201482, 0x0020c983, 0x00223582, 0x8f441200, 0x052f4206, 0x1c821820, 0x82098d42, 0x2002960c, 0x20178812, 0x835d8206, + 0x8311850c, 0x82142005, 0x05d3410e, 0xe1411385, 0x820a200b, 0x8213201b, 0x22028303, 0x8216000a, 0x82092006, 0x840d2003, 0x054b4909, 0x09000022, + 0x02871182, 0x04201383, 0xdf410c84, 0x840d2005, 0x2204850b, 0x8404000d, 0x830d85c1, 0x880c2005, 0x00002879, 0x0002001c, 0x820c0000, 0x00002203, + 0x89058211, 0x056544b1, 0x02821282, 0x83000221, 0x83062000, 0x06002104, 0x11202d82, 0x0e209f86, 0x028d0782, 0x0e841b20, 0x16229b83, 0x0b821700, + 0x83000921, 0x84102001, 0x84042005, 0x82162005, 0x82052015, 0x821720c9, 0x8403200d, 0x82108211, 0x84002007, 0x20bf8503, 0x201f8209, 0x82168318, + 0x833b8303, 0x0009221b, 0x82b78a05, 0x1865580a, 0xf1820620, 0x2d820720, 0x06200383, 0x06204982, 0x16213784, 0x82078700, 0x41028c0e, 0x18890b49, + 0x6f4a1320, 0x411f8908, 0x0f830527, 0x5d851385, 0x83001621, 0x05414217, 0x13000022, 0x0f833782, 0x03000e22, 0x09884c89, 0x02225587, 0xd9461000, + 0x83298508, 0x00122151, 0x82057143, 0x087d461a, 0x16000022, 0x10825384, 0x7f850286, 0x04000623, 0x207f8500, 0x20178404, 0x87f18211, 0x85518903, + 0x4acb892b, 0x02210d83, 0x42008500, 0x0b8505e7, 0x99820220, 0x00248783, 0x0f000900, 0x03871282, 0x07a79b87, 0x039db783, 0x02825c82, 0xc7840620, + 0x430bd143, 0x4d440ddd, 0x43ef8509, 0x002207c1, 0x3d820d00, 0x0a23038d, 0x8b000500, 0x82062003, 0x21029521, 0x01830019, 0x0b000022, 0x15200182, + 0x0b200584, 0x20085146, 0x83098415, 0x82012019, 0x000a253c, 0x003a0020, 0x0f5b9318, 0x00000232, 0x02000100, 0x6167696c, 0x6d730e00, 0x14007063, + 0x31831184, 0x02250383, 0x0e000600, 0x200d8500, 0x08e18210, 0x01000030, 0x0200c601, 0xdc00d001, 0x74037103, 0x76037503, 0x78037703, 0x7a037903, + 0x7c037b03, 0x7e037d03, 0x81037f03, 0x0a048203, 0xdc03db03, 0xfd50eb03, 0x0833b40d, 0xd603d737, 0xd403d503, 0xd203d303, 0xcf03d003, 0xcd03ce03, + 0xcb03cc03, 0xc903ca03, 0xd903c803, 0xc603c703, 0xc403c503, 0xc203c303, 0xc003c103, 0xbe036c03, 0x8403bd03, 0x2237b503, 0x82bc0388, 0x03bb2401, + 0x82ba03bb, 0x03b92401, 0x82b803b9, 0x03b62401, 0x82b503b6, 0x03da2401, 0x82b403da, 0x03b32401, 0x82b203b3, 0x03b12401, 0x82b003b1, 0x03af2401, + 0x82ae03af, 0x03ac2401, 0x82ab03ac, 0x03aa2401, 0x82a903aa, 0x03a82401, 0x82a703a8, 0x03a62201, 0x240182a5, 0x03a403a4, 0x240182a3, 0x03a203a2, + 0x240182a1, 0x03a003a0, 0x2401829f, 0x039e039e, 0x2401829d, 0x039c039c, 0x2401829b, 0x039a039a, 0x24018299, 0x03980398, 0x24018297, 0x03960396, + 0x24018295, 0x036b036b, 0x24018293, 0x03920392, 0x24018291, 0x03d803d8, 0x24018290, 0x038f038f, 0x2401828e, 0x038d038d, 0x2401828c, 0x038b038b, + 0x2601828a, 0x03890389, 0x82870388, 0x03862401, 0x82850386, 0x03d12601, 0x000100d1, 0x20038282, 0x26038208, 0x00640304, 0x824c0002, 0x00122c03, + 0x003d0024, 0x00440000, 0x821a005d, 0x875c081f, 0x89003400, 0x3a009800, 0x9f009b00, 0xa1004a00, 0x4f00a700, 0xb800a900, 0xbb005600, 0x6600bf00, + 0xcb00c100, 0xce006b00, 0x7600e100, 0xe700e400, 0xea008a00, 0x8e00f200, 0xf900f600, 0xfb009700, 0x9b000201, 0x0a010501, 0x0e01a300, 0xa9001301, + 0x40011601, 0x4801af00, 0xda004901, 0x01227982, 0x6d824900, 0x9e040330, 0x0500f401, 0x9a050400, 0x00003305, 0x07851f01, 0x6622a382, 0x008b0002, + 0x0200e027, 0x200050ef, 0x2013825b, 0x24038220, 0x72797000, 0x37078373, 0x0006fdff, 0x660000fe, 0x00029a07, 0x9f010020, 0x0000014f, 0xb0053a04, + 0x20201b82, 0x0022d582, 0x09820300, 0x04210382, 0x8273827e, 0x1c00230a, 0x09830300, 0x00260225, 0x830a0206, 0x00012110, 0x0c831986, 0x01200385, + 0x0b833984, 0x9d000221, 0x84012000, 0x0003221e, 0x08c38204, 0x0700062a, 0x09000800, 0x0b000a00, 0x0d000c00, 0x0f000e00, 0x11001000, 0x13001200, + 0x15001400, 0x17001600, 0x19001800, 0x1b001a00, 0x1d2c8582, 0x1f001e00, 0x21002000, 0x23002200, 0x200c3f57, 0x1441572a, 0x36003522, 0x080e4557, + 0x3f003e22, 0x41004000, 0x43004200, 0x45004400, 0x47004600, 0x49004800, 0x4b004a00, 0x4d004c00, 0x4f004e00, 0x3a08c553, 0x00550054, 0x00570056, + 0x00590058, 0x005b005a, 0x005d005c, 0x005f005e, 0x82610060, 0x057357c1, 0x008bcc08, 0x00980093, 0x00a3009e, 0x00a400a2, 0x00a500a6, 0x00a900a7, + 0x00aa00ab, 0x00ad00ac, 0x00ae00af, 0x00b100b0, 0x00b500b3, 0x00b600b4, 0x00b700b8, 0x00bb00bc, 0x03be00bd, 0x0072003b, 0x00650064, 0x003d0369, + 0x00a10078, 0x036b0070, 0x00760051, 0x005f036a, 0x039a0088, 0x0373005c, 0x00610360, 0x03770067, 0x03590357, 0x039a0158, 0x006c005d, 0x0083017c, + 0x00ba00a8, 0x00630081, 0x015b036e, 0x015e0342, 0x006d006f, 0x003f037d, 0x00820003, 0x01970085, 0x03150114, 0x03310330, 0x03390338, 0x00350334, + 0x006203b9, 0x033a01c1, 0x034d0346, 0x03440343, 0x03650364, 0x0379003c, 0x033a0336, 0x00840040, 0x0083008c, 0x588a008d, 0x8e240637, 0x96009500, + 0x2008e182, 0x009c0094, 0x009b009d, 0x015201f3, 0x01710058, 0x01550154, 0x017a0056, 0x01570159, 0x02040053, 0x26238258, 0x00800092, 0x82120006, + 0x098f0809, 0x7e000d00, 0x92017f01, 0xb001a101, 0xff01f001, 0x37021902, 0xc702bc02, 0xdd02c902, 0x0103f302, 0x09030303, 0x23030f03, 0x8c038a03, + 0xce03a103, 0xd603d203, 0x13058604, 0x3f1e011e, 0xf91e851e, 0x0b204d1f, 0x1e201520, 0x26202220, 0x33203020, 0x3c203a20, 0x74204420, 0xa4207f20, + 0xac20a720, 0x13210521, 0x22211621, 0x2e212621, 0x02225e21, 0x0f220622, 0x1a221222, 0x2b221e22, 0x60224822, 0xca256522, 0x04fbc3f6, 0xfdfffffe, + 0x8300ffff, 0x22938300, 0x82a00020, 0x01a02293, 0x229382af, 0x841802fa, 0x82c62093, 0x82d82093, 0x88002093, 0x82842093, 0x038e2493, 0x82d103a3, + 0x04002a93, 0x1e001e88, 0x1e801e3e, 0x289382a0, 0x20132000, 0x20202017, 0x22938225, 0x88392032, 0x82a32093, 0x8cab2093, 0x865b2093, 0x8a112093, + 0x84642093, 0x82012093, 0x82fc2093, 0x01910893, 0xf5ff0304, 0xc2ffe3ff, 0xa3ffb0ff, 0x57ff96ff, 0x36ff4eff, 0x95fe19ff, 0xa8fd8cfe, 0x67fe7cfe, + 0x5afe5bfe, 0x50fe55fe, 0xddfd3dfe, 0xdbfddcfd, 0xd8fddafd, 0xacfdd5fd, 0xbfe4abfd, 0x43e483e4, 0xd6e329e4, 0x1de324e3, 0x1be31ce3, 0x10e319e3, + 0x0ae30fe3, 0x02e309e3, 0xc9e2d3e2, 0xa4e2a6e2, 0x49e2a1e2, 0x3ae23ce2, 0x5de02fe2, 0xf8e124e2, 0x69df55e1, 0x48e149e1, 0x3ee141e1, 0x16e132e1, + 0xfce0ffe0, 0xa00c98dd, 0x69046308, 0x01006d03, 0x91004000, 0x02570210, 0x00250857, 0x9a000200, 0x8d010000, 0x0300b005, 0x31000700, 0x06070a40, + 0x02030405, 0x07040001, 0x90b04b2b, 0x1a405850, 0x2b208200, 0x001b0000, 0x16070101, 0x02030300, 0x02330b83, 0x17020802, 0x2b2fb004, 0x33112301, + 0x33352311, 0x82f38d01, 0xeb012700, 0x50fac503, 0x578300ea, 0xa4038524, 0x5782a002, 0x0900042b, 0x0a402e00, 0x06070809, 0x88588204, 0x05172357, + 0x53820200, 0x01021525, 0x82010000, 0x01032153, 0x00226082, 0x54830317, 0x55820720, 0x04840120, 0x70665b25, 0x824501d6, 0x9d042604, 0xfe0c02f9, + 0x820482ed, 0x003c2436, 0x82980400, 0x001b3b5b, 0x408d001f, 0x1d1e1f22, 0x191a1b1c, 0x15161718, 0x11121314, 0x0d0e0f10, 0x71840b0c, 0x1020cb85, + 0x4b2fcb86, 0x405817b0, 0x020b0e2c, 0x02020c03, 0x82030100, 0x081d2ca7, 0x07060601, 0x020a0f16, 0x82050404, 0x07092785, 0x0a050502, 0x8c820d16, + 0x17010826, 0x2a401b05, 0x1e831183, 0x04050325, 0x931d0200, 0x212c863c, 0xba835904, 0x23032326, 0x21352313, 0x33230384, 0x82133303, 0x23152303, + 0x03823303, 0x2e080582, 0xab022313, 0x4ca74ce1, 0x3a0501e7, 0x4e1101f3, 0x4ee04ea7, 0xeed04ea8, 0x4cfbdd3a, 0x3ae177a7, 0xfe9a01e1, 0x9e9a0166, + 0x019f3901, 0x8360fea0, 0x9f260803, 0xfe9ec7fe, 0x01380266, 0x00010039, 0x042dff75, 0x009b063c, 0x405f002d, 0x282a2c0e, 0x15212227, 0x0b101113, + 0xe186060a, 0x0c444023, 0x3dda8209, 0x0201010f, 0x04050126, 0x03022023, 0x00150405, 0x02040201, 0x00290401, 0x04020504, 0xf6822705, 0x00010222, + 0x1d2c0282, 0x03030500, 0x1a000105, 0x03050500, 0x0021fc82, 0x21068303, 0xc7830718, 0x26349e08, 0x35012e27, 0x35373634, 0x011e1533, 0x3423010f, + 0x06222326, 0x17161415, 0x1415011e, 0x23150706, 0x3f012e35, 0x16143301, 0x03363233, 0xd4866f49, 0x9fb0cad4, 0x0302c0ae, 0x6a6570eb, 0xd48f6a66, + 0x9fb8d3d1, 0x0204e9b4, 0x726b8ceb, 0x557c017a, 0xcd442f6f, 0x14d5a7b1, 0xe617dcda, 0x877405bc, 0x68565c6d, 0xb1cc4535, 0xc313cead, 0xd4da12c2, + 0x6c768b05, 0x64000500, 0x8905ebff, 0x0d00c505, 0x29001b00, 0x3b003700, 0x12405c00, 0x2c2e3335, 0x1e202527, 0x10121719, 0x0204090b, 0x33ef8708, + 0x023a3b3d, 0x01390302, 0x01380706, 0x15030605, 0x01000200, 0x0129eb82, 0x04001d00, 0x04060700, 0x23098307, 0x01000303, 0x00274d82, 0x00160d00, + 0x83050606, 0x0505240b, 0x8317050e, 0x34132de8, 0x16323336, 0x0614011d, 0x35262223, 0x3d21ce85, 0x20ec8501, 0x391b9a01, 0x17012705, 0x908fa564, + 0x908ea5a5, 0x4449a9a6, 0x42494742, 0x13024843, 0x12868ea6, 0x424b6108, 0x43494446, 0x03fe4843, 0x7dc7027d, 0xad809804, 0x804d81ac, 0x4080abab, + 0x4d415859, 0x415a5a41, 0xad7fcdfc, 0x814e80ac, 0x4080acab, 0x4e43575a, 0x405a5a40, 0x720448f8, 0x00000048, 0xff3e0003, 0x05f304eb, 0x002100c5, + 0x0039002c, 0x2312409b, 0x22363822, 0x202c232c, 0x151a1b1e, 0x07080a14, 0x350bd542, 0x0310303b, 0x25050103, 0x04031118, 0x02011c01, 0x00150304, + 0xf6890505, 0x02010122, 0x0329f682, 0x08020201, 0x04010616, 0x250d8804, 0x1b071702, 0x3da13940, 0x8406f543, 0x8203203c, 0x003c084a, 0x030e0303, + 0xb0590717, 0x34132b2f, 0x012e3736, 0x33363435, 0x14151632, 0x01010f06, 0x3335013e, 0x17070614, 0x0e272107, 0x24222301, 0x37363205, 0x010e0701, + 0x03161415, 0x37171614, 0x82081f82, 0x22232634, 0x88863e06, 0xb1cc4649, 0x5d61c79f, 0x282e0168, 0x4b4bcc2d, 0xeefe02c0, 0x68bb5251, 0x01fefed9, + 0x377a3ee2, 0x4c1abbfe, 0x2f0e7e33, 0x27396d30, 0x4f464453, 0xb1788901, 0x50985e5d, 0x87bfc0b0, 0x4b469565, 0x963f99fe, 0x5ae98a54, 0x395f05e4, + 0x2424e63b, 0x13800123, 0x642f6938, 0x30ab0380, 0x25493d64, 0x55363151, 0x01000063, 0x9c036d00, 0xb0055201, 0x27000400, 0x03040640, 0x41020102, + 0x4021063f, 0x231d8214, 0x00150101, 0x4409e744, 0x032e0686, 0x01331123, 0xe57f6652, 0xe5feb704, 0x20821402, 0x00010032, 0x0238fe80, 0x005806a2, + 0x402f0011, 0x010d0e04, 0x28088541, 0x0c405819, 0x0002050c, 0x26278213, 0x0217000c, 0x870a401b, 0x2240080e, 0x2fb05902, 0x0010132b, 0x06011f37, + 0x10151102, 0x23071712, 0x80110026, 0x06b63901, 0xbebf862d, 0xb7062d87, 0x5002c8fe, 0x29028a01, 0x66860155, 0xa9fe3efe, 0xfea9fe14, 0x56806d3e, + 0x8a012802, 0x11207782, 0x3b207782, 0x3f247784, 0x0d0e0640, 0x798bc182, 0x6a831320, 0x0123c483, 0x852b0100, 0x1b032380, 0x158e1140, 0x83032221, + 0x013a0887, 0x23070010, 0x11123627, 0x27021035, 0x00163337, 0xfe3b0211, 0x2e06b7c1, 0x80c5c085, 0x01b6062e, 0xfe400240, 0x55d2fd7b, 0xc8016680, + 0x01145801, 0x68c90154, 0xd0fd5481, 0x87827cfe, 0x6d01462e, 0x39042303, 0x28000e00, 0x04050440, 0x4021ff87, 0x08744517, 0x01020326, 0x12000d00, + 0x35088582, 0x0217000a, 0x012b2fb0, 0x27173727, 0x17370333, 0x27071707, 0x2e012707, 0x05ee33e8, 0x33e702a9, 0x908a92ee, 0xa6028b8c, 0xf953a449, + 0xa753fffe, 0xd366c849, 0x674163cb, 0x00442c05, 0x042a0492, 0x000b00b6, 0x450e403e, 0xeb440bcd, 0x00233708, 0x05020005, 0x041a0000, 0x01030001, + 0x01000201, 0x001d0000, 0xa1460505, 0x21068305, 0x7d830418, 0x15213408, 0x11231121, 0x11213521, 0x01ae0233, 0xec84fe7c, 0x7e0182fe, 0xde2103ec, + 0xb1014ffe, 0x009501de, 0x00010000, 0x01e7fe36, 0x00ee006b, 0x40310005, 0x42040506, 0x1e210a1f, 0x05a94603, 0x02832482, 0x01001a22, 0x00216882, + 0x2134831b, 0x62840000, 0x23032531, 0x01333513, 0x469a9b6b, 0xc8fe1fef, 0x82c64101, 0x302b8252, 0x0209029e, 0x00cd02ec, 0x402a0003, 0x01020306, + 0x08734200, 0x4c951720, 0xaf840320, 0x0221352a, 0x02b2fdec, 0xc409024e, 0x99264785, 0x8b010000, 0x4782e900, 0x478e2120, 0x8c880e20, 0x41080021, + 0x2121056c, 0x23898223, 0xe9f2f28b, 0x02266182, 0x1e0383ff, 0x3782b005, 0x378e1f20, 0x51820c20, 0x822c0021, 0x0107233c, 0x74820217, 0x0123172b, + 0x02dfe133, 0x067ddf3d, 0x2773832d, 0xff680002, 0x052304eb, 0x22058745, 0x450a4031, 0xbf470779, 0x001a2d08, 0x01010202, 0x01001b00, 0x00160d01, + 0x21086245, 0x1748000e, 0x144c0805, 0x00222300, 0x00341135, 0x15003233, 0x23263427, 0x11150622, 0x32331614, 0x23043536, 0xd9d9fdfe, 0x0401fafe, + 0x0501d9d9, 0x706f7cf3, 0x70707c7a, 0xfc090279, 0x2301defe, 0xfb9d01fb, 0xdcfe2401, 0xa59225fb, 0x1bfe92a5, 0x95a4a594, 0xc724ac83, 0xef020000, + 0x05228f82, 0xcb8e2400, 0x04051125, 0x82130102, 0x2b0121ee, 0x0820ba82, 0x3005bc43, 0x21112321, 0xef022535, 0x02cbfef3, 0xc1d00428, 0x24438334, + 0x0400006e, 0x2f438231, 0x4045001a, 0x12191a0c, 0x0a0c0d10, 0x05000108, 0x24064943, 0x010e2c40, 0x2b018202, 0x15020400, 0x04010200, 0x29040201, + 0xee44de82, 0x21e58206, 0x60820404, 0x64851b20, 0x2fb00627, 0x3501292b, 0x07cb4401, 0x27231523, 0x08ec8226, 0x14151639, 0x17010706, 0xfc310421, + 0x6fc70155, 0x71616856, 0x0502eb78, 0xd1da0101, 0xfe9683eb, 0x760202cd, 0x830e02a7, 0x755d4eaa, 0xbb066f92, 0xb6e00301, 0xfeb5d87b, 0x820005a0, + 0xff6624c0, 0x822b04eb, 0x002a399f, 0x01164066, 0x23272900, 0x1b1e1f21, 0x0a0d0f19, 0x00050709, 0x092a012a, 0x4321a987, 0x28a7820b, 0x00070114, + 0x0506011d, 0x24ad8303, 0x00020100, 0x2fca8229, 0x06050706, 0x00010829, 0x00050700, 0x1d000107, 0x062cc08c, 0x00010406, 0x0404001b, 0x0817040e, + 0x0123c082, 0x41353632, 0xbd82059b, 0xbf452420, 0x1e072805, 0x04141501, 0x47242223, 0x218207dd, 0x012b5b08, 0x76440235, 0x626a7068, 0x0602e982, + 0xd5ca0b01, 0x6f616df7, 0xd5f2fe76, 0x05defec0, 0x6a87ea02, 0x7b79826e, 0x764c03a2, 0x75775f6a, 0xe3a70658, 0xa764c8d1, 0x7db12c2f, 0xbcd9e4c9, + 0x837d5c06, 0xbf7a7c67, 0x02000000, 0x00004100, 0xb0055204, 0x0f000a00, 0x0e403d00, 0xdb820b0c, 0x734a0620, 0x08d94305, 0x010d222b, 0x01080400, + 0x15020001, 0x0bdb4305, 0x07040424, 0x7b4a0016, 0x332f0809, 0x23112315, 0x01272111, 0x11210133, 0x9a030727, 0xfdf2b8b8, 0x6002069f, 0x0194fdf9, + 0x0217067a, 0xbdfec407, 0x03954301, 0x0257fcd8, 0x82380152, 0x0001267f, 0x04ebff83, 0x327f8227, 0x4058001f, 0x171b1d10, 0x0f121315, 0x0407090d, + 0x47010203, 0x40380751, 0x0601053b, 0x02001f02, 0x01110604, 0x15030405, 0x05060400, 0x29050406, 0x0621be82, 0x21ff8204, 0x76431d00, 0x21918209, + 0x11470505, 0x2fb0350a, 0x21011b2b, 0x3e032115, 0x12363701, 0x23021415, 0x023f2422, 0x0805f942, 0x23263440, 0x9e070622, 0xfd000354, 0x772b2cca, + 0xeee2cb48, 0xf7fec0ed, 0x7be40205, 0x7a767263, 0x16616471, 0x2c038402, 0x1f8dfed2, 0xfe02012a, 0xfed8e4fe, 0x05c0cff2, 0x9a736607, 0x409f8388, + 0x8082003e, 0xbf827520, 0xc505393e, 0x27001a00, 0x16405b00, 0x00011b1c, 0x271b2123, 0x1315271c, 0x06080d0f, 0x1a011a00, 0x3a081d49, 0x01010338, + 0x02010400, 0x04010b01, 0x05011e02, 0x00150404, 0x04010702, 0x42040205, 0x002a0519, 0x061b0001, 0x0d000001, 0xc48b0016, 0xc4820620, 0x16320126, + 0x012e0717, 0x1d25b082, 0x33013e01, 0x28ca8232, 0x00222300, 0x00100119, 0x20c48213, 0x08d18715, 0x558e0248, 0x3d2f3f9e, 0xa3854f76, 0xbb62a33b, + 0xd4fefed7, 0x01e9fed7, 0x7957b033, 0x6b6e8e21, 0xc5057f79, 0x18bc1b21, 0x4cb0d61b, 0xfefe423b, 0xf0feddd1, 0x0d013601, 0x0c013d01, 0x29fd4e01, + 0xae57373f, 0x8083a8c6, 0x8b820096, 0x00005533, 0xb0053604, 0x2d000c00, 0x0b0c0840, 0x0405090a, 0x07f14203, 0x01001825, 0x82140101, 0x05de4504, + 0x16070222, 0x20058743, 0x08ab8304, 0x11020028, 0x10352315, 0x35211312, 0xfe360421, 0xe9f3b9f9, 0x030bfdde, 0xfeed04e1, 0xfe22feca, 0x01ababd2, + 0x01ff013b, 0x3382c308, 0x0003003f, 0x04ebff5d, 0x00c50534, 0x00230017, 0x4046002f, 0x282c2e0e, 0x1c202226, 0x0a14161a, 0x08854208, 0x030f2b34, + 0x01050202, 0x00050015, 0x02050302, 0x001d0001, 0xf2440404, 0x83062015, 0x06142184, 0x20083a43, 0x0a124935, 0x26340322, 0x2205394b, 0x8b363233, + 0x044c080b, 0x78657608, 0xd1f1fe8f, 0x93e7fede, 0xfc7a6a7e, 0xc6f5c1cc, 0x9270668a, 0x88667391, 0x60556e2d, 0x545f7875, 0x6e38046d, 0xb82f2ea9, + 0xdedecb78, 0x2fb878cb, 0xc16ea92e, 0xa5fccdcc, 0x6b89896b, 0x0283836d, 0x71755eff, 0x79796262, 0x0222d783, 0xd7825900, 0x1b421120, 0x0c0e2115, + 0x230f1b42, 0x0504011e, 0x0430ce82, 0x01000118, 0x00030117, 0x01071504, 0x00010004, 0x46471382, 0x00012b05, 0x0202001b, 0x0106160d, 0xe0420000, + 0x3eea8309, 0x3d363225, 0x23010e01, 0x34350222, 0x00323300, 0x00140119, 0x27262223, 0x13011e37, 0x44373632, 0x47080652, 0x03021614, 0x8a309d7e, + 0x01ebcf51, 0x01dbc707, 0xe7d9fe0f, 0x2746a14d, 0x57777c41, 0x7281217c, 0xad737f61, 0x4369a1b2, 0xe6060144, 0xfe1c01db, 0xfefffee2, 0xdffefd63, + 0x1db91f20, 0x49f20119, 0x9f93ad3b, 0xa68985af, 0xff2ddb82, 0x009900ff, 0x048b0100, 0x00260055, 0x20098211, 0x2d058307, 0x09006c03, 0xb80101b1, + 0x0db06c03, 0x2382002b, 0xe7fe6924, 0x23829e01, 0x1d822720, 0x6c030128, 0x0f000601, 0x23820033, 0x23870020, 0x01003508, 0x56003f00, 0xff038403, + 0x07000900, 0x07000240, 0x0100002b, 0x05171507, 0x01350115, 0x13420115, 0xfc420213, 0x024503bb, 0x0306032f, 0x7401f3da, 0xf27401c1, 0x022e8082, + 0x6e019100, 0xe003ef03, 0x07000300, 0x274f3800, 0x82212012, 0x0300225b, 0x282b8201, 0x0203001d, 0x00000302, 0x082d4f1a, 0x48020321, 0x01240628, + 0x11213521, 0x03250382, 0x03a2fcef, 0x2503835e, 0xfdca1603, 0x3b82c98e, 0x48008026, 0xf103e003, 0x1320978a, 0x353b9183, 0x27013f25, 0xfc600380, + 0x125d02a0, 0x02031301, 0xc18cfeef, 0xe2ef8cfe, 0x84040602, 0x002c2697, 0x05a00300, 0x2a6d82c5, 0x404f001e, 0x1e000012, 0x821b1c1d, 0x461a200d, + 0xd34405dd, 0x0e302608, 0x01000101, 0x2a698215, 0x03010003, 0x03010629, 0x4e030005, 0xe841070c, 0x05002205, 0x2d538205, 0x0404001b, 0x07170408, + 0x012b2fb0, 0xab4b013e, 0x23152308, 0xe14b2627, 0x073a0806, 0x1315010e, 0x01333523, 0x6e400154, 0x61695c4e, 0x03ea7453, 0xd2c2f503, 0x397093eb, + 0xf8f8041d, 0x7b8f9c01, 0x548b4c5d, 0x595b6b61, 0xd6c7b206, 0x5ad97fbe, 0xfe575a32, 0xb282e964, 0x02002808, 0x3bfe4a00, 0x9005d306, 0x43003300, + 0x18402f01, 0x36384042, 0x2a2c3032, 0x1d1f2325, 0x13141719, 0x080a0e10, 0x430b0204, 0x4b3d06f9, 0x405812b0, 0x063a3e4a, 0x270a0403, 0x28000601, + 0x03060701, 0x02030015, 0x0a03020a, 0x264d8229, 0x0a02040a, 0x821d0001, 0x01082dbd, 0x08001b00, 0x09160708, 0x00040401, 0xf2820c82, 0x160e0026, + 0x07060600, 0x00360c82, 0x07120707, 0x4b1b0917, 0x40581fb0, 0x023a3e59, 0x01060a09, 0x53870904, 0x538c0420, 0x53900920, 0x09090022, 0x5f98528a, + 0x401b0b23, 0x255b9b57, 0x02050008, 0xaf830508, 0x0a000222, 0x59a56586, 0x59590a2e, 0x012b2fb0, 0x22230206, 0x010e2726, 0x37380582, 0x3233011a, + 0x33071716, 0x33160603, 0x12373632, 0x00202100, 0x21000203, 0x17200b82, 0x20222182, 0x12841300, 0x1e850120, 0x37363424, 0x37822e13, 0x06069208, + 0xe5e609c3, 0x2f186d4b, 0x8f855c8a, 0xa6e91812, 0x0350876e, 0x34083305, 0x088f772b, 0xfec8fe10, 0xfecefeb8, 0x01120f91, 0x5736014b, 0x432640b4, + 0x7dfe63cf, 0x12115afe, 0x7b01d401, 0x98017f01, 0x3c0afefb, 0x27643b45, 0x172d0101, 0x7c761c34, 0xfed8fb01, 0x504d54c8, 0x01c4ef4f, 0x34360100, + 0xbdfd0436, 0xaadd4c65, 0x9a016f01, 0x94fe46fe, 0x5cfe93fe, 0x2a822128, 0x01f3012f, 0x02a801b0, 0xfd14fe0a, 0x318a85fc, 0x0c10083f, 0x0b090302, + 0x051742cd, 0x0000202c, 0xb005f904, 0x0b000700, 0xf54b3a00, 0x001f3816, 0x02040205, 0x00290405, 0x01000004, 0x02000004, 0x0202001d, 0x51031607, + 0x042b05b2, 0x012b2fb0, 0x01230321, 0x83230133, 0x03210807, 0x70fcfd8f, 0xe7fc01fb, 0xfdfbf601, 0xbb7f01d0, 0xfe540106, 0xfab005ac, 0x021f0250, + 0x0003003e, 0x20738299, 0x3c7382cc, 0x0018000e, 0x404f0021, 0x000f0f16, 0x1b1f2100, 0x0f180f19, 0x00101216, 0x030d000e, 0x08514701, 0x01082c31, + 0x15010403, 0x01070400, 0x03040203, 0x4f1d0001, 0x07210966, 0x06124b16, 0x8a850620, 0x8a820620, 0x21113325, 0x46150432, 0x01200819, 0x36280e82, + 0x27263435, 0x32212523, 0x44080883, 0x0199012b, 0x1001f1dd, 0x978c616d, 0xfeecf4fe, 0x7e4801b8, 0x0d798688, 0x0401befe, 0x848a8371, 0xc7b005ea, + 0x289a60c6, 0xcd84c417, 0xfe9602d5, 0x6e6d732c, 0x6bb50482, 0x00696c62, 0xff6d0001, 0x05c804eb, 0x328482c5, 0x00124053, 0x001d0000, 0x14191b1d, + 0x0c0f1012, 0x4303050a, 0x343c08f9, 0x0302010e, 0x05040101, 0x02001502, 0x02030503, 0x01062905, 0x05030405, 0x03002704, 0x00201882, 0x4206c34b, + 0x468205d2, 0x43000e21, 0x172205fd, 0xf1470016, 0x20332206, 0x08025200, 0x0807c54b, 0x0402c138, 0xfefadafe, 0x3801c4fe, 0x010101fb, 0xeb020427, + 0xad94999e, 0x9b9598b0, 0xdc06dc01, 0x5701f1fe, 0x15010b01, 0x59010a01, 0x06e4fafe, 0xb3eb9b92, 0xebb5e9fe, 0x6182939c, 0x00020026, 0x04000099, + 0x0031dd82, 0x00130009, 0x0a12403b, 0x0a00000a, 0x0d120a13, 0x2211820b, 0x47010308, 0x1c220885, 0x5c4c0105, 0x08614108, 0x61410420, 0x41042005, + 0x20330561, 0x10151100, 0x11032100, 0x3d363233, 0x23263401, 0x82e10199, 0x5b200878, 0xebfea5fe, 0xceafeeee, 0xb005afce, 0xf0fea6fe, 0xfeeffedd, + 0xfbed04a8, 0xdfbaedd5, 0x0100edb8, 0x2c268384, 0x0b00b005, 0x6d423f00, 0x00242516, 0x01000005, 0x00240382, 0x0404001d, 0x20052453, 0x21868203, + 0x86480101, 0x02082306, 0x85820517, 0x11210124, 0x03861521, 0xfdc60338, 0xfca002c6, 0xfd8c036d, 0x023a0267, 0xc233fe8f, 0xfec3b005, 0x00820065, + 0x3d207385, 0x09267382, 0x0c403600, 0x6f550809, 0x08834c07, 0xd7426782, 0x55718205, 0x7184086d, 0x4d010821, 0x2122055a, 0x6c852311, 0xfdd7032e, + 0xa403f3b5, 0x4b024ffd, 0x93fd6d02, 0x43206483, 0x6e3a6384, 0xd004ebff, 0x2000c505, 0x10405400, 0x1d1e1f20, 0x1113181a, 0x090b0e0f, 0x15420204, + 0x0d372708, 0x1c030201, 0x16420200, 0x03062a06, 0x00290602, 0x04050006, 0x20ed8206, 0x1c18421d, 0x0406252b, 0x19002023, 0x33001001, 0x0f174232, + 0x11372d08, 0x04213521, 0xf9fe3cd0, 0xfefefed0, 0xfd4201b3, 0x041c01fe, 0x8f99e703, 0x9bc1b997, 0xfe238875, 0xc52402cf, 0x4d018555, 0x30010801, + 0x4d310382, 0x06ce00ff, 0xaee2967b, 0xe3b0cefe, 0x2d012635, 0x41c282b6, 0x0527059b, 0x00b0050a, 0x4133000b, 0x1822169b, 0x27820400, 0x0001042b, + 0x01051d00, 0x16070303, 0x4d0a8202, 0x11310afe, 0x11331123, 0x05331121, 0x75fdf30a, 0x8b02f3f3, 0x052541f3, 0x0280fd23, 0x24638580, 0x010000ad, + 0x161f4fa0, 0x07010122, 0x2b06614a, 0x2b2fb002, 0x33112321, 0xf3f3a001, 0x00272c82, 0xff360001, 0x82d303eb, 0x0010290a, 0x0e0a4038, 0x06090a0c, + 0x194f8582, 0x08212e08, 0x01020301, 0x00020015, 0x03020003, 0x826a8229, 0x08684349, 0x42010e21, 0x33260530, 0x23061411, 0x644d2622, 0xe1023a08, + 0xd7cbfff2, 0xeb0205fc, 0x795f6a77, 0x05fcb005, 0xd3dcf8d2, 0x90777c06, 0x26418278, 0x00990001, 0x82110500, 0x000d2573, 0x0d0e4039, 0x430a3942, + 0x1e240829, 0x0300010b, 0x03207782, 0x0382d582, 0x041d0028, 0x07020201, 0x2b430516, 0x23012209, 0x82c78211, 0x212408c9, 0x21010917, 0xf3770302, + 0xd9015ff3, 0xfd031d01, 0xfe4f02de, 0xfd7602cd, 0xfdb0058a, 0x05690297, 0x01fd54fd, 0x87417682, 0x36042105, 0x05267782, 0x08402800, 0xd9820405, + 0x934b0020, 0x00132108, 0x27826083, 0x02000131, 0x0101001b, 0x03170108, 0x252b2fb0, 0x82211521, 0x028c2764, 0xf363fcaa, 0x3341c2c2, 0x21bf8205, + 0x0a825b06, 0xbf830f20, 0xc1840f20, 0x230ef54d, 0x02060b1e, 0x15244482, 0x02010000, 0x29205082, 0x0721b883, 0x4d718216, 0x01210af1, 0x24c18221, + 0x01230127, 0x08078207, 0x7a032122, 0x01a50106, 0xfe06f336, 0x68fea76f, 0x3f01f306, 0x60045001, 0x160450fa, 0x04e9fb01, 0xd7fb022b, 0x4b427b88, + 0x402c2706, 0x070a0b0a, 0xaf410506, 0x0915290b, 0x02000203, 0x01031501, 0x0120cd83, 0x840b4442, 0x01332266, 0x05444237, 0xf3067b33, 0x068502f3, + 0x021904f3, 0xb005e9fb, 0x0402e7fb, 0x26fc8217, 0xff690002, 0x511105eb, 0x1022392b, 0x4e432100, 0x20068205, 0x0d2b5111, 0x11052208, 0xf4feb1fe, + 0xb8fefbfe, 0x06014701, 0x50010b01, 0xa1a6c2f3, 0xa7a0bab9, 0xfe5502c1, 0x01a1fef5, 0x3414825f, 0x010a0106, 0xfea0fe60, 0xeab602f6, 0xf8feb6ea, + 0xb9eaebb8, 0x06634500, 0xb005c930, 0x13000a00, 0x10403b00, 0x11130000, 0x0d820b0d, 0x03050923, 0x09614502, 0x03001e26, 0x00020105, 0x00201282, + 0x4d0ae14c, 0x11210c5f, 0x05c74623, 0xb7460420, 0x23250807, 0xf38c0121, 0x01f12e02, 0xf1effe11, 0x3b01c5fe, 0x87888887, 0x2802c5fe, 0xb005d8fd, + 0xf7cdcbf9, 0x6f6f90c3, 0x26838394, 0x0569ff69, 0x82c5056e, 0x00212c81, 0x1f0a4040, 0x1116181d, 0x43080a0f, 0x2926082d, 0x02030103, 0x7f830406, + 0x01051524, 0x56521200, 0x07634d18, 0x27071725, 0x4123010e, 0x3f271930, 0xd8a2d73b, 0x4159a045, 0x70271634, 0x91d64fc6, 0x412a29d5, 0x9b461938, + 0x05d33005, 0x001a00b0, 0x40480023, 0x23000012, 0x821b1d21, 0x1319230d, 0x27500512, 0x0a29300b, 0x11040301, 0x02030001, 0x06040015, 0x48000301, + 0x254e0711, 0x08924406, 0x2fb00524, 0x4441012b, 0x07063607, 0x011d011e, 0x15171614, 0x3d012e23, 0x23263401, 0x36323325, 0x08078235, 0x8c012156, + 0xf3f501f3, 0x70750a01, 0x25206d7b, 0x811628fa, 0xf5e1fe6f, 0x87848692, 0x5c02fefe, 0xb005a4fd, 0xa371ccdc, 0x82b02731, 0x207a4079, 0x468c2117, + 0xc3847075, 0x7d6e7370, 0x01000000, 0xebff6000, 0xc5058b04, 0x4e002700, 0x24260e40, 0x1c1e2122, 0x0d0e1012, 0x280ad34e, 0x01010c33, 0x05012002, + 0x5ab18204, 0x02210e15, 0x20418202, 0x5047821b, 0x0e5a0e0c, 0x3324230b, 0x0b5a0432, 0x0b2a520f, 0x8198033c, 0x01ffeba4, 0x01ecdc18, 0xea02051b, + 0x857b7f99, 0xf0e5a992, 0xdee7e4fe, 0x1082b6fe, 0x82b52308, 0x76018f81, 0x412e745b, 0xe4b0aad3, 0x7306bafd, 0x545c7488, 0xdd40316d, 0xecd8b5ac, + 0x858306d7, 0x8582006d, 0x0000222a, 0xb0059204, 0x2b000700, 0x2412694d, 0x00010214, 0x0b8a4700, 0x76440820, 0x21012105, 0x2f05e655, 0x3efe9204, + 0x0445fef3, 0xfbed0470, 0xc3ed0413, 0x0027d282, 0xff860001, 0x82f104eb, 0x00112453, 0x820e4030, 0x00112812, 0x090c0e11, 0x47030508, 0x15280879, + 0x01020304, 0x00160701, 0x20080941, 0x054b540e, 0x54110121, 0x332006cd, 0x0806fb48, 0xf1041121, 0xf8fcc1fe, 0xaef3c8fe, 0x05b4948f, 0xf341fcb0, + 0x1301edfe, 0xfcbf03f3, 0xa9a99b41, 0x85bf039b, 0x000f2473, 0x82050500, 0x00092273, 0x05015d2c, 0x02040523, 0x08f94201, 0x2108e844, 0x76860103, + 0x02082808, 0x2fb00317, 0x3317012b, 0x01210137, 0x02210123, 0x19061a6d, 0x03015c01, 0xfde7f8fd, 0x010301f9, 0x04686a8b, 0x8250fa27, 0x82002053, + 0x001d24d3, 0x82d80600, 0x000f240b, 0x5c12403e, 0xb34a0ff5, 0x001f2c08, 0x01000103, 0x06290003, 0x82020001, 0x07272202, 0x21e78405, 0x58450104, + 0x8313200a, 0x8223206f, 0x332b0873, 0x33013313, 0xd606fc04, 0xa6fe0001, 0x06ddfedd, 0xfededcfe, 0x06d8ffa7, 0x01d61501, 0xfa1a0496, 0xfb0c0450, + 0xfbb005f4, 0x831904e7, 0x00322483, 0x82ee0400, 0x000b2883, 0x0b0a402e, 0x8c07080a, 0x091725e3, 0x04000306, 0x15207e82, 0x00238382, 0x46021607, + 0xe583058c, 0x21010922, 0x022d0288, 0x0133018a, 0x0140fe20, 0xfedcfed1, 0x220182c4, 0x82ca01e0, 0x031e340d, 0xfd1a0296, 0x0222fd2e, 0x02ddfd23, + 0x00d202de, 0x821a0001, 0x82f6206f, 0x0008246f, 0x8508402a, 0x088f466d, 0x6c821520, 0x01246782, 0x00010215, 0x91466c82, 0x3f688209, 0x11231101, + 0x88022101, 0x0f015f01, 0xfef207fe, 0x020f010f, 0xfcc402ec, 0x0203fe4d, 0x00a4030c, 0x5820cb83, 0x59205b82, 0x09285b82, 0x0a403b00, 0x05060708, + 0x2d0c095f, 0x02010924, 0x01010403, 0x00150200, 0x80420202, 0x20398309, 0x06fe4600, 0xfe460520, 0x01353806, 0x15213521, 0xe3027601, 0xc702fffb, + 0xe1033ffd, 0x0498c2c2, 0x8492c355, 0xfe842667, 0x061c02bc, 0x1849508e, 0x2508c147, 0x02020100, 0xf3820001, 0x20076f4a, 0x08495001, 0x33112336, + 0x21112115, 0xa5a51c02, 0x980168fe, 0xa9f9d005, 0x00d207bd, 0x01260082, 0x83ff1500, 0xd7486103, 0x01002217, 0x2024822c, 0x052d5807, 0x0133132c, + 0x02ec1523, 0xb005ec60, 0x3b84d3f9, 0xbcfe0c24, 0x9b9aa601, 0x0300002a, 0x00030002, 0x02001d00, 0x1a219484, 0x82a28400, 0x010221ff, 0x2006e550, + 0x39978213, 0x23113335, 0xfe9a010c, 0x06a7a766, 0xbd2ef88e, 0x01005706, 0xd9023500, 0x97823503, 0x2b000926, 0x07080a40, 0x200e6960, 0x07a74214, + 0x48820220, 0x01002a24, 0xd7430701, 0x01232106, 0x033aa582, 0x01072327, 0x2b01ce03, 0xcd2a01ab, 0x0c060ca5, 0xd702d902, 0x9d0129fd, 0xb7843636, + 0x41ff0324, 0x09829803, 0x59000321, 0x053e2a6b, 0x03213521, 0x036bfc98, 0x00bfbf95, 0x04450001, 0x051302e4, 0x000400ee, 0x04064040, 0xaf590103, + 0xb04b2508, 0x0e405817, 0x99825d82, 0x0126e982, 0x02170009, 0xc459401b, 0x59310817, 0x012b2fb0, 0x21370123, 0xfeca1302, 0x140102fc, 0x0401e404, + 0x00020006, 0x04ebff53, 0x004e0402, 0x002b0020, 0x221a40ad, 0x27000021, 0x222b2125, 0x2b11822b, 0x15181a20, 0x0d101214, 0x0a05070b, 0x8208f950, + 0x163d2b75, 0x24020301, 0x03070601, 0xf7500001, 0x02013205, 0x00290103, 0x06070001, 0x00010701, 0x0202001d, 0x05d45704, 0x09161025, 0x82060601, + 0x081b2c19, 0x00000205, 0x0717000e, 0x8941401b, 0xa005203f, 0x0108243f, 0x88080505, 0x84002045, 0x83082043, 0x2e212dce, 0x010e2701, 0x35262223, + 0x013b3634, 0x2006e053, 0x06115207, 0x16141128, 0x36322517, 0xe7543537, 0x03430805, 0x03110d0c, 0xa965a431, 0xbde1f8b5, 0x62535e63, 0xf30701ea, + 0x12e8bdc3, 0x5be1fd14, 0x6ac11893, 0x4e295178, 0xae674c27, 0x5faf9d98, 0x3f4f6055, 0xc6800601, 0x1ffeb4c0, 0xae3b7b43, 0x69a03b5c, 0x82493e47, + 0x02003d7a, 0xebff8000, 0x18063604, 0x1f001100, 0x0e408500, 0x14161b1d, 0x090a0d0f, 0x02040708, 0x3c07f54a, 0x5817b04b, 0x010b2f40, 0x18190304, + 0x06040502, 0x03050001, 0x02020015, 0x04001609, 0x06b55404, 0x00161024, 0xbb510505, 0x17002508, 0x33401b06, 0x0120318a, 0x01223194, 0x36870801, + 0x36050741, 0x2fb05907, 0x0214012b, 0x27262223, 0x33112307, 0x33013e11, 0x61111232, 0x07220518, 0x0d821e11, 0x35363808, 0xc9dd3604, 0x1d329666, + 0x8c32f3c5, 0xf3ddcb5d, 0x6d517e74, 0x536e1f20, 0xf901727e, 0x54dffeed, 0x18068f50, 0x4a45a7fd, 0xfcfec4fe, 0x4048d0a9, 0x47413afe, 0x820097b1, + 0xff51269c, 0x04e103eb, 0x05cb4f4e, 0x1800012f, 0x10131416, 0x0407090e, 0x011d0003, 0x08b54d1d, 0x01123432, 0x01050504, 0x15020100, 0x01050400, + 0x29010405, 0x10823b82, 0xc0572720, 0x16103009, 0x00000106, 0x1b000102, 0x0e020200, 0x82071702, 0x322531b7, 0x17333536, 0x22230616, 0x34013d02, + 0x16323312, 0x0807c647, 0x14011d32, 0x53390216, 0x0402dc73, 0xfeeaaff9, 0xecbde9fe, 0x6edc0204, 0x71728259, 0x065068ad, 0x3501dc98, 0x01ea23eb, + 0x06afe336, 0x94c97c59, 0x00c79723, 0xcb420082, 0x41032005, 0x0629239b, 0x19000501, 0x05040218, 0x0596600b, 0x09010122, 0x220a5841, 0x60001610, + 0x06230c8d, 0xa033401b, 0x02022231, 0x0ade4108, 0x20088760, 0x25d78310, 0x11331117, 0x9c562723, 0x05ce6105, 0x11373c08, 0x2223012e, 0xde531506, + 0x338b58c9, 0x341dc5f3, 0xdec76194, 0x4d7d73f3, 0x6c22226b, 0x02767c4a, 0x0103010e, 0x0242473d, 0x89e8f953, 0x2201514d, 0x42b296ec, 0x3cd8013d, + 0x87a8d143, 0xeb033feb, 0x16004f04, 0x54001f00, 0x17181640, 0x1b1c0001, 0x1f181f17, 0x0b0c0f11, 0x16000608, 0x6d471601, 0x13312c08, 0x0203020d, + 0x03000114, 0x58001502, 0x00240539, 0x01071d00, 0x82083a58, 0x030322f1, 0x06785900, 0x17000e37, 0x2b2fb006, 0x3d002205, 0x17003401, 0x011d1232, + 0x011e0721, 0x05c05333, 0x22034408, 0x21170706, 0x02263435, 0xf5feed4b, 0xdad30b01, 0x0263fde0, 0x63858404, 0x3e4f3e91, 0x725f9fcc, 0xa701020e, + 0x2b011561, 0x01ee28ee, 0xf3fe0135, 0x850583e1, 0x9f2d30a6, 0xa0034a36, 0x13056e89, 0x82008168, 0x002a2c6a, 0x06da0200, 0x0017002d, 0x82144049, + 0x001724d1, 0x42151617, 0x0220075f, 0x2809dd52, 0x03010b28, 0x00150102, 0x28058203, 0x02001b00, 0x05160f02, 0x2d408301, 0x01041b00, 0x160a0101, + 0x06060107, 0xb2840608, 0x23113328, 0x34353335, 0x275a3336, 0x3342080a, 0xcf112315, 0xb0c3a5a5, 0x192d4823, 0x4f1c3114, 0x03c9c94f, 0xb37eb486, + 0xbc0a0bc2, 0x545a0604, 0x7afcb47e, 0x5a000200, 0x0a044bfe, 0x1d004e04, 0xa5002b00, 0x27291040, 0x191b2022, 0x0b0d1214, 0xa1500708, 0xb04b3d09, + 0x3e405819, 0x00060106, 0x05022425, 0x04011706, 0x03011005, 0x02010f04, 0x00150503, 0x2805e744, 0x00000101, 0x05001610, 0x06014505, 0x89160e21, + 0x02122abb, 0x401b0717, 0x06010642, 0x83409301, 0x204586ce, 0x25449c00, 0x2fb05908, 0x5b42132b, 0x33372c05, 0x23041411, 0x37272622, 0x5933011e, + 0x67420904, 0x5a22080d, 0x9361c9de, 0xfeca1833, 0xb74fedfe, 0x993e274a, 0x337a8450, 0xdec75a8b, 0x4e7d74f2, 0x6b22216b, 0x72427d4b, 0x4e533a06, + 0xd1c6fb8d, 0xbf252de4, 0x7571231f, 0x0143416f, 0xb296ec22, 0xda013d41, 0x057a423b, 0x00010033, 0x0400007d, 0x0018060c, 0x403c0013, 0x1112130c, + 0x05254110, 0x2e08b54a, 0x02010023, 0x01010f00, 0x00150202, 0x4a090404, 0x10220abd, 0x6d490316, 0x82052005, 0x3e0121c0, 0x162ab082, 0x11231115, + 0x22232634, 0x08820706, 0x7001333f, 0xac5e9b36, 0x6263f3c1, 0xf324724e, 0x4cae03f3, 0xfde2d954, 0x7f95026d, 0xfc313773, 0x277482e1, 0x90000200, + 0x83010000, 0x03240a82, 0x2f000700, 0x20128d4b, 0x090b4918, 0x01227c82, 0x975b0a01, 0x6821200a, 0x8321071d, 0x2e0082f3, 0x09013a04, 0x000000d5, + 0xfeb0ff02, 0x828e014b, 0x820f2053, 0x404325d5, 0x13000010, 0x0027d782, 0x0c0f000f, 0x5003050a, 0x262908cf, 0x01000107, 0x03001501, 0x06955803, + 0x05160922, 0x6082e682, 0x18820120, 0x821b0221, 0x4312204a, 0x0120053e, 0x41054b51, 0x26080695, 0x23131135, 0x8e013335, 0x3a24a6ba, 0x32110e20, + 0xed473e15, 0x3a04f3f3, 0xc3b387fb, 0x05c20908, 0x045a5507, 0x490c0179, 0x8124062b, 0x31040000, 0x0c208b82, 0x53058d5e, 0x87880991, 0x510a2221, + 0x5e460e57, 0x510a2007, 0x0523075b, 0x512b2fb0, 0x2008095b, 0x01210109, 0xf2f25acd, 0x01250153, 0x018dfe1d, 0x01e5fe9c, 0x0627fed9, 0x0184fc18, + 0xfd0efe9e, 0x20b882b8, 0x0a574101, 0x22119b61, 0x52090101, 0x83220f7b, 0xa482f3f3, 0x0001002e, 0x06000080, 0x004e0475, 0x40790025, 0x25302483, + 0x23242500, 0x1a1b1e20, 0x0e0f1214, 0x0305090b, 0x32072360, 0x5819b04b, 0x01072540, 0x22000302, 0x03020216, 0x55051502, 0x082a0649, 0x00030107, + 0x06161000, 0x014c0204, 0x401b2205, 0x20278329, 0x23278607, 0x07070108, 0x0321db83, 0x206f8203, 0x0563431b, 0x05212b87, 0x25eb8359, 0x33013e17, + 0x05851632, 0x20095342, 0x0d5f4214, 0x5e013e08, 0x69a0350d, 0x3226986a, 0xbda36ea4, 0x4e5f5ff3, 0xf302186c, 0x674a5e61, 0x3a04f31e, 0x60544d8d, + 0xe3665a60, 0x027bfde6, 0x54738e86, 0x0a160f47, 0x860243fd, 0x34397889, 0x3a04e6fc, 0x247b8200, 0x0400007e, 0x2beb820b, 0x40690013, 0x00000010, + 0x12130013, 0x4706b54d, 0xe58209ff, 0x01012025, 0x43100002, 0x02210503, 0x24388202, 0x0204051b, 0x43e18200, 0x04230600, 0x8224401b, 0x8504201d, + 0x01052422, 0x430a0404, 0xdb8a1427, 0x2d0c2943, 0x350e5c01, 0xbda965a1, 0x4e6362f3, 0xbc822272, 0x5d539c2e, 0x5ffdddd0, 0x6a7e9f02, 0xe8fc343b, + 0x0020ad83, 0x2006df49, 0x23af8234, 0x001b000d, 0x56153363, 0x102008ca, 0x26508083, 0x550e2006, 0x132705d8, 0x32330034, 0x4e011d00, 0x8a68056c, + 0x532e080d, 0xe9e60901, 0xf7fe0901, 0xf7fee8e7, 0x7f827cf3, 0x7f817f7f, 0xf227027d, 0xcbfe3501, 0xfef415f2, 0xf33401cd, 0x9ec7c69f, 0xc9c99b15, + 0x8b82009b, 0x60fe8023, 0x498b8304, 0x19201c3b, 0x20053b49, 0x0b3b4902, 0x20098e47, 0x0aa7470a, 0x00160e26, 0x010c0101, 0x8c073b49, 0x02022131, + 0x6d492982, 0x00002211, 0x49358700, 0x11240b3b, 0x17331123, 0x08143b49, 0xc6de3434, 0xf3338e5c, 0x933418cd, 0xf2dfc861, 0x6a4c7c7d, 0x4e6a2020, + 0xf9017b7c, 0x42defeec, 0x05f3fd40, 0x504c88da, 0xfdfec3fe, 0x3a41d3a6, 0x3d3917fe, 0xeb8395b7, 0x60fe5326, 0x4e04fc03, 0x831d274a, 0x0a5948eb, + 0x22690320, 0x46012009, 0xc1880545, 0x0223b582, 0x84020c02, 0x203182eb, 0x06bd4801, 0x01213184, 0x0b154101, 0x86481020, 0x0016210b, 0xeb843584, + 0x21092f46, 0x8b481123, 0x905e3316, 0xf3c51c33, 0xc7578832, 0x7d73f3de, 0x2222674a, 0x8b484768, 0x494e3707, 0x0226fa83, 0x013e3d06, 0xb696ec22, + 0xf801383b, 0xa8d53d36, 0xff430000, 0xb8022105, 0x0f2beb82, 0x0a406700, 0x07080b0d, 0x6d020506, 0x4b2108ad, 0x24e582b0, 0x00010922, 0x05a74e02, + 0x02010f23, 0x20358213, 0x06fb6902, 0x0128ba82, 0x17010801, 0x26401b05, 0x03201a82, 0x03212887, 0x82ba8215, 0x08e75f1c, 0x2885d782, 0x2fb05925, + 0x4627012b, 0x1720062f, 0x3c05f543, 0x47689b02, 0xdef31a5f, 0x54812910, 0x03102616, 0x373c045f, 0x3a0410fd, 0x075e539d, 0x266d8205, 0xff520001, + 0x82cf03eb, 0x3d8752a3, 0x94628482, 0x0b87520b, 0xc04a3620, 0x08936c0a, 0x08054d57, 0x33011e4e, 0xe0023632, 0xcabf845f, 0xedc2bce6, 0x68e90205, + 0x565c5857, 0xf1cac786, 0x06f4d3c5, 0x8004e202, 0x01675d5c, 0x1d493828, 0x88809827, 0x068cc7c1, 0x3a506142, 0x281a4237, 0xb992829b, 0x5e068cd8, + 0x01004a56, 0xebff2000, 0x41058602, 0x34213349, 0x0203010c, 0x01071501, 0x2b060006, 0x01010104, 0x1b000000, 0x28058205, 0x0200160a, 0x02010302, + 0x052a6b1b, 0x2fb00628, 0x3311012b, 0x43522315, 0x17372105, 0x08054e4d, 0x3523112a, 0xb7011133, 0x303ac2c2, 0x1a112614, 0x862e551f, 0x05a5a599, + 0xb4f9fe41, 0x3943aafd, 0x11b20607, 0x02a89d13, 0x0701b456, 0x97825882, 0xebff7b2a, 0x3a040a04, 0x63001300, 0x2b130f48, 0x5817b04b, 0x010f1f40, + 0x01000102, 0x15247f82, 0x01010103, 0x00208984, 0x04208982, 0x0e269682, 0x1b041700, 0x21852340, 0x02020422, 0x04222187, 0x13450804, 0x26b08205, + 0x000e0000, 0x82590517, 0x862520b1, 0x863320a5, 0x112208b5, 0x03231133, 0x679d3223, 0x5af2c4ae, 0x2277585f, 0x57a0d1f3, 0x02f1e55e, 0x9b85fd79, + 0x033c3f73, 0xfb68fb0e, 0x00202406, 0x82f50300, 0x22fb52a7, 0xfb529f84, 0x33133a0a, 0x33012301, 0x0612f801, 0xfefbd713, 0x7efed380, 0x586e01fb, + 0xfbcc0258, 0x051746c6, 0x00002524, 0x0a82d005, 0x2133f752, 0xf752160a, 0x206b820d, 0x22d28203, 0x82133301, 0x04270801, 0xf39e0639, 0xe5c7d8fe, + 0xfec7e206, 0x06a2f3d8, 0x4101b1e2, 0xc6fbf902, 0x34fdcc02, 0x11fd3a04, 0x0000ef02, 0x82210001, 0x82ed20db, 0x23f3527f, 0xf3520a20, 0x1301270b, + 0x21010921, 0x0583010b, 0xc804022e, 0xacfe1701, 0xecfe5e01, 0xeafed1d1, 0xac320782, 0xc7021401, 0xe9fd7301, 0x7c01ddfd, 0x230284fe, 0xf3411702, + 0xfe102405, 0x82fc034b, 0x0015266f, 0x150c403b, 0x05174e14, 0x4a010221, 0x222f0803, 0x0302010b, 0x00001501, 0x00010301, 0x41042903, 0x032a05f3, + 0x02010203, 0x0202001b, 0x725a0212, 0x33172605, 0x0e012113, 0x09bf4a01, 0x013f3108, 0xe7012101, 0x01ed0618, 0x2b40fe0a, 0x451e8f9c, 0x300d1b20, + 0x194f420c, 0x0177fe28, 0x6cb20109, 0x22fbf402, 0x080ca071, 0x5a0401bc, 0x2d04623b, 0x55248f85, 0xc4030000, 0x27538f82, 0x160a212a, 0x21093d51, + 0x8f840108, 0x15212524, 0x27533521, 0x02823105, 0x0291fc42, 0x03e9fd22, 0x9fc2c24a, 0x9ac4d702, 0x38322d84, 0x910298fe, 0x1e003d06, 0x06403a00, + 0x06070809, 0x95720702, 0x17273306, 0x01010001, 0x020f1015, 0x001e1301, 0x00120002, 0x10820001, 0x831a0021, 0x00012204, 0x820c821b, 0x06182511, + 0x012b2fb0, 0x2d066457, 0x3d363235, 0x37363401, 0x1d010e17, 0x84571401, 0x02300808, 0x5fa5c361, 0xa55f6262, 0x516230c3, 0x56575756, 0x98fe6251, + 0xcbabf037, 0x74b27468, 0xefabcb6a, 0xa8218c37, 0xa168cb7c, 0x66a12f2d, 0x21a87ccb, 0x90265782, 0x6601f2fe, 0x8f6bb005, 0x82798314, 0x0101217f, + 0x2b066153, 0x33112301, 0xd6d66601, 0xbe06f2fe, 0x1b201b83, 0x7520d382, 0x1823d387, 0x89151617, 0x010729d3, 0x15010001, 0x00020e0f, 0x0121d383, + 0x822e8212, 0x84d38210, 0x821b2008, 0x01012278, 0x22d38400, 0x84013e17, 0x21da85cb, 0x50583727, 0x15332305, 0xda840622, 0x53611b32, 0x595d5d59, + 0xc2306153, 0x64645ea6, 0xdbc2a65e, 0x6925c383, 0xa12b2ca0, 0x25c3836b, 0xabef378c, 0xe0826acb, 0xabcb6825, 0x820037f0, 0x7500365f, 0xdc048301, + 0x19002f03, 0x0a404400, 0x0f111517, 0x0204080a, 0x076f4104, 0x00192d32, 0x0d020102, 0x0300020c, 0x02001502, 0x02030100, 0x1d268b82, 0x00000300, + 0xa1820103, 0x2107d748, 0xa1820003, 0x2fb0052a, 0x0614012b, 0x27262223, 0x2005794f, 0x05264e27, 0x011e3108, 0x35363233, 0x85b0dc04, 0x37539157, + 0x543c2e58, 0x5687acaa, 0x56365097, 0x02563b2f, 0x41d497ee, 0x672c2e47, 0xcd961648, 0x2a304443, 0x00004a6d, 0x8206b378, 0x060221a0, 0x79826b83, + 0x8afe8f26, 0x3a048201, 0x07220d82, 0x8f4c5000, 0xb04b2511, 0x1a405817, 0x2209934c, 0x4500160a, 0x43820592, 0x17000c23, 0x09b55304, 0x8a1c0021, + 0x17022125, 0x4c051a6f, 0x822107b0, 0x260082f3, 0xc4038afe, 0x82eb0101, 0x3cd58239, 0x030bff51, 0x002605e3, 0x40610022, 0x1d000112, 0x1418191b, + 0x04090a13, 0x01220003, 0x089f5122, 0x1215422f, 0x05030502, 0x0b010001, 0x00020208, 0x10a55103, 0x05000323, 0x221f8304, 0x8201061d, 0x2057827e, + 0x2008821a, 0x054c6000, 0x18200683, 0x300bad51, 0x35231507, 0x013d0226, 0x35371234, 0x011e1533, 0x056c5215, 0x2d07b251, 0xac0302dd, 0xd2c4c886, + 0x8cc8c4d2, 0xb251e4a8, 0x7d053307, 0xe6ef22c7, 0xd52a011b, 0x2a01d423, 0x22e6de1c, 0xb95194d4, 0x00013608, 0x04000051, 0x00c5056b, 0x409a0022, + 0x0000001a, 0x21220022, 0x25cd8320, 0x0f101315, 0xff4c0d0e, 0x410b2005, 0x4b3a06f7, 0x40580cb0, 0x06011735, 0x00150107, 0x07040706, 0x01082106, + 0x02090a04, 0xf8820003, 0x001d0024, 0xeb820707, 0x05001b27, 0x02160d05, 0x08fa4201, 0x17010826, 0x36401b07, 0x0421378b, 0x3438a729, 0x2b2fb059, + 0x06141701, 0x21072107, 0x013e3335, 0x35232735, 0x05414233, 0x86740f20, 0x17530807, 0xe7011521, 0x022a2d05, 0x26fc01d6, 0x052f2f0a, 0xe8099ba2, + 0x04e4cfc3, 0x556deb02, 0x01096256, 0x71570285, 0xc23a9852, 0x5eb10dc2, 0xcfeec479, 0x06b2d9ed, 0x76836569, 0x0000c4ee, 0xff5d0002, 0x044f05e5, + 0x002300f1, 0x4050002f, 0x282c2e0a, 0x42141626, 0x393e0aed, 0x1012181a, 0x21010304, 0x04090f1b, 0x08220302, 0x00040006, 0x19150302, 0x13010211, + 0x6e440723, 0x02032305, 0x7e550301, 0x06375b05, 0x8c4e0e20, 0x05324705, 0x27072722, 0x22051473, 0x49372737, 0x37220637, 0x3b750717, 0x17650805, + 0x12140107, 0x35123233, 0x22230234, 0x4d3d0402, 0xb86564b9, 0x878d814b, 0x35383331, 0x4a8e8d90, 0xb26061b0, 0x948e914b, 0x2f333833, 0x78fc8e8b, + 0xefaaabef, 0xefabaaef, 0x41423d6b, 0x8990843d, 0x6562b34c, 0x90934fb9, 0x3d3c3791, 0x97919438, 0x6164b74e, 0x918d4bb1, 0xfeb97b02, 0xb90201fe, + 0xff0001b8, 0x28958200, 0x0400001a, 0x00b005be, 0x20e58216, 0x151c7718, 0x0807e941, 0x002b4020, 0x01000101, 0x01010915, 0x03020108, 0x02000201, + 0x0301071d, 0x05040106, 0x00000403, 0x51590a1d, 0x05052e05, 0x05170508, 0x092b2fb0, 0x21012101, 0x5b018415, 0x35220575, 0x11823521, 0x016c0234, + 0xfe0f0143, 0xfe140173, 0xfe63019d, 0x9bfef39d, 0x03826501, 0x71fe1f3e, 0x30031001, 0x36fd8002, 0xfe928f93, 0x923201ce, 0xca02938f, 0x88000200, + 0x6d01f2fe, 0x0330a382, 0x33000700, 0x00000e40, 0x04050607, 0x03000300, 0x230adf46, 0x04000018, 0x00209d83, 0x230bb343, 0x03170207, 0x13368882, + 0x01193311, 0x88331123, 0xfee5e5e5, 0xfc1b03f2, 0x02c803e5, 0x008200f6, 0x5c00022e, 0x8c0424fe, 0x3300c505, 0x94004500, 0x21053177, 0x115d2224, + 0xb04b260d, 0x3a405819, 0x2ae68226, 0x031d3740, 0x0c040104, 0x43010201, 0x02230bb6, 0x55020105, 0x0d200a5c, 0x20052449, 0x067d5000, 0x401b0723, + 0x253ca037, 0x02000002, 0xbb820100, 0x2408ce4a, 0x0617050d, 0x05254559, 0x6e08336c, 0x79770924, 0x012e2306, 0x705d3435, 0x2e252511, 0x010e2701, + 0x2105f44a, 0x22823e17, 0x04267a08, 0x4352598c, 0xe7effe44, 0x05cefee2, 0x7aaae902, 0xbb868c7a, 0x5257e5f2, 0x13014243, 0x0c01eee6, 0x8cea0205, + 0x7a84827d, 0xfde5f4c4, 0x254e2acd, 0xc27c3537, 0x37204635, 0xc701883c, 0x322a8a5d, 0xc6af618a, 0x0106daca, 0x4d636e7a, 0x40385a4d, 0x8c5aaeba, + 0x618b322c, 0xc9dfcea9, 0x65866506, 0x3456564d, 0x0a2cb942, 0x55150e19, 0x375b593a, 0x160b1510, 0x61503955, 0x24d78300, 0x03e404a4, 0x06bf4179, + 0x8f452720, 0x10402111, 0x200ee079, 0x23f68302, 0x05333523, 0x2a080382, 0xf2f27903, 0xf1f11cfe, 0xcccce404, 0x000300cc, 0x05ebff57, 0x00c405e2, + 0x0029001d, 0x406f0035, 0x3400001a, 0x282c2e32, 0x66202226, 0xb5420ddb, 0x66482008, 0x0a2011db, 0x2107db66, 0xa2430001, 0x00042607, 0x00040600, + 0x38438201, 0x01080707, 0x08001b00, 0x00160d08, 0x01090606, 0x09001b02, 0x17090e09, 0x26958309, 0x23061617, 0x773d2622, 0x6b4405f6, 0x011d3807, + 0x32331614, 0x10253536, 0x00323300, 0x23001011, 0x10030022, 0x83202100, 0x0805820b, 0x0256047e, 0xa09db004, 0x9da0bdbd, 0x940204b1, 0x655e5a5a, + 0x595a5e65, 0x57010ffd, 0x5701f4f5, 0xf6f4a9fe, 0x017aaafe, 0x0128019e, 0xfe9e0127, 0xfedafe61, 0x0262fed8, 0x9d970654, 0xad77afd4, 0x06959fd6, + 0x718a555e, 0x53897378, 0xf8fe8560, 0x690197fe, 0x07010801, 0x99fe6701, 0x3b01f9fe, 0x50feb001, 0xc4fec5fe, 0xb2014efe, 0x02000000, 0xb4027400, + 0xc5051103, 0x2b002000, 0x1840d700, 0x250f435a, 0x0b0d1012, 0x03520507, 0x16210809, 0x16354058, 0x02010214, 0x06050124, 0x05000103, 0x01081503, + 0x02040705, 0x01000500, 0x02001c00, 0x09de7202, 0x01060633, 0x001b0001, 0x06100101, 0x4b1b0617, 0x405823b0, 0x823b8e33, 0x05062633, 0x00010601, + 0x2545961d, 0x1b051702, 0x358a3a40, 0x71820420, 0x04010728, 0x04050005, 0x3e8c2900, 0x82900020, 0x06170222, 0x5a05e36a, 0x2f21136d, 0x057f6c01, + 0x080e6d5a, 0x0860026d, 0x6f21030a, 0xa982774e, 0x393b89a2, 0x01a54842, 0x868caa06, 0xfe0e0c9d, 0x126b3387, 0x3a534a88, 0x2f15c202, 0x7a3d2f1a, + 0x33786f6a, 0x2f34413e, 0x8262060d, 0xc6fe868e, 0x822a5833, 0x4069233a, 0x002d2b2e, 0xffff0000, 0x74006100, 0x93037703, 0x43032600, 0x0701ddf5, + 0x44014303, 0x1200ddff, 0xb80100b1, 0x0db0ddff, 0x8601b12b, 0x26c78208, 0x0376017f, 0x822503c2, 0x655620c3, 0x4b2b0f17, 0x40580ab0, 0x0100001d, + 0x5d200001, 0x1b221625, 0x1f821c40, 0x962c0021, 0xb0592e1e, 0x23012b2f, 0x21352111, 0xfdc8c203, 0x23888285, 0xab040176, 0x5376a384, 0x06022306, + 0xb4821000, 0x33430420, 0x000b3c08, 0x00320017, 0x4069003b, 0x3b18181a, 0x18333539, 0x2b311832, 0x1a1b1d2a, 0x6d141619, 0x402c0d51, 0x07012242, + 0x04012908, 0x06150207, 0x07230583, 0x82290204, 0x08092dc8, 0x00010905, 0x0a08001d, 0x08040701, 0x21103a7b, 0xaf520202, 0x82082009, 0x431320a0, + 0x0b820a05, 0x62081d43, 0x162105e8, 0x09634b15, 0x2208e862, 0x6a323327, 0x572005f5, 0x200f1043, 0x0b2e437a, 0x97bc013a, 0xae971901, 0x373e3b3d, + 0x099b0a07, 0x9e4c4304, 0x4e5e448f, 0xd9028261, 0x210d1143, 0x31433c01, 0xad26080e, 0x5203affe, 0x5a3b7f85, 0x4b6c1c1f, 0x15412938, 0x2a511510, + 0x86444736, 0x3a48373d, 0x01000000, 0x12058700, 0xbb4b5e03, 0x35213d27, 0xfd5e0321, 0x05d70229, 0x02009e12, 0xb0037f00, 0xc5058b02, 0x17000b00, + 0x0a403100, 0x4b075741, 0x1a210825, 0x08df5300, 0x00160d2c, 0x01020101, 0x02001b00, 0xdf530a02, 0x063f6f07, 0x26222323, 0x0a107437, 0x9b7f2208, + 0x99996b6d, 0x8b9b6d6b, 0x47333449, 0x49343347, 0x9f6eb804, 0x9a6e6e9f, 0x47356e9a, 0x4a363646, 0x267b824a, 0x03e9ff5f, 0x820a05f3, 0x000f227b, + 0x19ed6178, 0x2cb04b25, 0x79244058, 0x002c0d11, 0x02050702, 0x001d0000, 0x00060707, 0x06289182, 0x17060806, 0x2d401b04, 0x06252697, 0x00000706, + 0x832e881a, 0x05182235, 0x0e4b7959, 0x21012d08, 0x9c022135, 0xa9fe5701, 0x019afed7, 0x2501d766, 0x4303bdfc, 0xfec78a03, 0xc78b0175, 0xdffa8001, + 0x010000c4, 0x9b026c00, 0xc705d502, 0x74204e82, 0x31137377, 0x5817b04b, 0x010e2940, 0x15010102, 0x01040102, 0x05830014, 0x00210224, 0x02830004, + 0x001c0024, 0xa1440101, 0x17012507, 0x2a401b06, 0x04212b90, 0x852c9629, 0x0da277b1, 0x0808a47c, 0x0221173e, 0x01a1fdd5, 0x33284031, 0xb5403d36, + 0x91ac0602, 0x78619b8b, 0x5e010281, 0x01919b02, 0x29463600, 0x303c382c, 0x82916706, 0x69765175, 0x0100066e, 0x8f026200, 0xc605eb02, 0xf3002a00, + 0x251d9f77, 0x581bb04b, 0xa3774140, 0x00212f13, 0x07060705, 0x00290605, 0x06040006, 0xe08c0104, 0x07001623, 0x2f668207, 0x0001081b, 0x17071000, + 0xb04b1b08, 0x3f405821, 0xea77479c, 0x2552920b, 0x1b071701, 0x41934040, 0x95152d78, 0x05954542, 0x35363222, 0x41082c78, 0x07230647, 0x6a15011e, + 0x52080dc7, 0x012b2634, 0x41a10135, 0x353e413d, 0x0602b53f, 0xac9582ac, 0x4b463d47, 0xb98795b4, 0x45b50206, 0x474c403d, 0x73047b45, 0x35273035, + 0x6206222c, 0x376e7778, 0x5f18195b, 0x797c7044, 0x332b0670, 0x37382d34, 0x00010083, 0x02e4047c, 0x00ee0550, 0x61310004, 0x0c20128b, 0x012c2182, + 0x0000002c, 0x02170009, 0x000a401b, 0x2b230f82, 0x7d010100, 0x01310569, 0x23011721, 0x13013b01, 0xc3effe02, 0xfe06ee05, 0x822982fc, 0xfe922c21, + 0x041f0460, 0x0015003a, 0x82124077, 0x00152b12, 0x10131415, 0x090a0b0e, 0x2f6f0508, 0xb04b3408, 0x26405817, 0x01000107, 0x02020c12, 0x06150200, + 0x5a010205, 0x475505d6, 0x16082b07, 0x0c040400, 0x1b051704, 0x28922a40, 0x82020221, 0x084b5520, 0x2c860e20, 0x5305f049, 0x27200a47, 0x08058a51, + 0x11231128, 0x61648401, 0xf31d6f57, 0x772d07df, 0x26633d4b, 0xfd3a04f2, 0x3d78a794, 0xfb12033c, 0x363556c6, 0x3efe1c1b, 0xc385da05, 0x58823e20, + 0xb0057028, 0x2d000a00, 0x12820c40, 0x0a000a26, 0x01030709, 0x20088344, 0x45138214, 0x072306a7, 0x82010316, 0x05274b8b, 0x11212a08, 0x35002223, + 0x21330034, 0x537d0211, 0x01fdfee9, 0x4601e903, 0x03010802, 0x0501cfd1, 0x000050fa, 0x02a00001, 0x03920152, 0x2eaf7c42, 0x33352329, 0xf2f29201, + 0x83f05202, 0xfe6d2443, 0x82c90141, 0x000f2441, 0x820e403a, 0x000f218b, 0x4e07554e, 0x40300653, 0x0201011f, 0x04150103, 0x02000301, 0x01020301, + 0x20054d79, 0x07524b01, 0x2fb00424, 0x5742252b, 0x27220806, 0x34353632, 0x01372726, 0x56400b3e, 0x3e079daa, 0x2052454b, 0x520b3603, 0x89796650, + 0x242c2d2c, 0x73838b05, 0x9902572a, 0xc5059601, 0x22000500, 0x200e1b7c, 0x0c1b7c0f, 0x47032221, 0x232d0557, 0x96012535, 0x3f017fc0, 0x7f029902, + 0x05c36b96, 0xb3027724, 0xc36b2c03, 0x402e2106, 0x2911ef7c, 0x00020017, 0x01010201, 0xe4451c00, 0x4c03200a, 0x34200582, 0x19434218, 0xbc776708, + 0xbcbd9e9e, 0xafbd9f9d, 0x58525558, 0x57545359, 0xbb947604, 0x957594bb, 0x5595b9b9, 0x75556767, 0x53686853, 0x6a00ffff, 0x8b039700, 0x2600b603, + 0x00164403, 0x44030700, 0x00007001, 0xb000ffff, 0xdf050000, 0x2700c405, 0x59000304, 0x27009802, 0x18014603, 0x07010800, 0xba02ff03, 0x11000000, + 0xb80100b1, 0x9d489802, 0x08b02105, 0x14820782, 0x06213785, 0x82378300, 0x0025222f, 0x253f8708, 0x01040701, 0x22822b03, 0x2e843783, 0x8601b121, + 0x2637853f, 0x06000072, 0x84c7059c, 0x83cf2067, 0xff032d37, 0x00007703, 0x00040701, 0x9b021000, 0x37856f84, 0x37820320, 0x6f859b20, 0x00020030, + 0x0376fe60, 0x003a04d3, 0x001e001a, 0x87764084, 0xb04b3118, 0x3040582e, 0x0100010e, 0x01061501, 0x05010503, 0x2305cc64, 0x27000105, 0x21097f76, + 0x8c82160a, 0xbd540220, 0x020c2605, 0x401b0717, 0x2032962d, 0x827a8200, 0x8a1c2028, 0x4d05203b, 0x0e2b065b, 0x010e0701, 0x33161415, 0x62373632, + 0x610805fb, 0x36343526, 0x35013e37, 0x23153303, 0x3f02ac02, 0x685a506e, 0x02745163, 0xf50103ea, 0x92ebd3c0, 0x041f3871, 0x9d02f8f8, 0x4f5c7a90, + 0x6b615389, 0xb206595c, 0x7fbcd6c7, 0x5b315ad9, 0xe99d0157, 0x00ffff00, 0x04000020, 0x024a07f9, 0x00240026, 0x00070100, 0x01e60043, 0xb109005c, + 0x01b80102, 0x8778b05c, 0x20238505, 0x24238849, 0x019d0176, 0x2023865b, 0x20238c5b, 0x25238747, 0xa1005201, 0x23865901, 0x238c5920, 0x23886320, + 0xa3005824, 0x23866c01, 0x238c6c20, 0x6b880d20, 0x7d006a24, 0x23835d01, 0x01b80223, 0x20238c5d, 0x24478878, 0x01360156, 0x202386b3, 0x312383b3, + 0x0d000200, 0x6e070000, 0x0f00b005, 0x56001300, 0x47181440, 0x534c1145, 0x35403807, 0x04050112, 0x05001501, 0x05080600, 0x1d000006, 0x01000800, + 0x83010807, 0x0b237309, 0x00070725, 0x711b0000, 0x072e0694, 0x292b2fb0, 0x03210301, 0x15210121, 0x03841321, 0x21013108, 0x6e072703, 0xfe0f7ffc, + 0xdefeb809, 0xe1034303, 0x021179fd, 0x14e3fd25, 0xedfa9702, 0x051b7a01, 0xacfe5401, 0xfec5b005, 0x36fec568, 0x7e026701, 0x002a6382, 0x6d00ffff, + 0xc8043cfe, 0xcf82c505, 0x82002621, 0x7a00257a, 0xfbffc001, 0x0124cf82, 0xfbffb801, 0x9926f386, 0x2c040000, 0x23824a07, 0x23842820, 0xbd004324, + 0x23855c01, 0x8508a741, 0x88492023, 0x01762423, 0x865b0174, 0x07a74123, 0x47202385, 0x01252387, 0x01780052, 0x41238659, 0x238507a7, 0x47880d20, + 0x54006a24, 0x23835d01, 0x21098341, 0x8582c7ff, 0x8f84a020, 0x8f852c20, 0x9082ff21, 0x00ad258f, 0x07880200, 0x23858f83, 0x38007622, 0xff218f8f, + 0x212382d8, 0x8f830779, 0x01232384, 0x8f3dff52, 0xbdff218f, 0x92212382, 0x848f8307, 0x6a002323, 0x8f8d19ff, 0xff020024, 0x7f7500ff, 0x000d3a05, + 0x404a001b, 0x1b000016, 0x1217191a, 0x000e0f10, 0x070c000d, 0x02030405, 0x08f14101, 0x01072731, 0x00010401, 0x00000105, 0x06001d00, 0x82010206, + 0x02022134, 0x3a08fa7e, 0x03030108, 0x05170308, 0x332b2fb0, 0x33352311, 0x00202111, 0x00101511, 0x75211321, 0x2b260793, 0x99211101, 0x98759a9a, + 0xfe142f09, 0xceafeefe, 0x01eeafce, 0xaa910202, 0xa0757502, 0x91022b08, 0xbaed31fe, 0xfeedb8df, 0xf77b004e, 0x0a053105, 0x26026307, 0x00003100, + 0x58010701, 0x6c01e800, 0x43067f41, 0x692a0703, 0x1105ebff, 0x26025f07, 0x5b413200, 0x18012305, 0x27437101, 0x42712006, 0x2385060f, 0x23885e20, + 0xcf017624, 0x23867001, 0x238c7020, 0x23875c20, 0x00520125, 0x866e01d3, 0x8c6e2023, 0x88782023, 0x00582423, 0x868101d5, 0x8c812023, 0x88222023, + 0x006a246b, 0x437201af, 0x7220066f, 0x2d082383, 0x4d000100, 0xec03d600, 0x0b008604, 0x02400700, 0x002b0700, 0x01091300, 0x17010937, 0x09070109, + 0x3c014d01, 0x0194c4fe, 0x943c013b, 0x0484c4fe, 0x01c5fe2a, 0x0142016c, 0xbefe9642, 0x24080484, 0x0196befe, 0x00bffe41, 0x00030000, 0x05a1ff69, + 0x00ee0511, 0x00250019, 0x408b0031, 0x232d2f0e, 0x11141521, 0x1029690f, 0x13163430, 0x1f020402, 0x09040501, 0x05000206, 0x89821503, 0x002c0129, + 0x16090303, 0x41040400, 0x0d2006d7, 0x210ef868, 0x3691401b, 0x03020323, 0x983b852b, 0xb0593136, 0x10012b2f, 0x26222100, 0x37230727, 0x1135012e, + 0x322e0c82, 0x33371716, 0x15011e07, 0x1f161401, 0x1f580101, 0x34212b05, 0x01012f26, 0x3233011e, 0xf1723536, 0x53290805, 0x94563f94, 0x01645c83, + 0x60060147, 0x945148ab, 0xfc564f82, 0x0620224b, 0x752df801, 0x02b9a144, 0x061518c2, 0x5e2610fe, 0x07087337, 0x24252e08, 0xf354de93, 0x0106018f, + 0x3260010a, 0x54dc8a2f, 0xfafe81e2, 0x0130864d, 0x2b285903, 0x6e3eb6ea, 0xb5fc012b, 0xb9ea1c1c, 0xff000000, 0x050f70ff, 0x024a0725, 0x42380026, + 0x17200633, 0x26108f43, 0x04ebff86, 0x884907f1, 0x01762223, 0x0f8f43ce, 0x47204786, 0x01232387, 0x43d20052, 0x23860f8f, 0x47880d20, 0xae006a22, + 0x820d8f43, 0x001a248f, 0x84f60400, 0x843c206b, 0x0733468f, 0xb801012c, 0x0db05b01, 0x0200002b, 0x23829400, 0xb0057e34, 0x15000c00, 0x16404500, + 0x00000d0d, 0x140d150d, 0x11820e10, 0x0a0b0c24, 0xa97a0709, 0x0022320a, 0x05010700, 0x01050004, 0x04001d00, 0x04020100, 0x23098201, 0x03030106, + 0x0c434318, 0x3233112c, 0x04141504, 0x2311012b, 0x0c821311, 0x34353632, 0x87012326, 0x0f01f2f6, 0xf6f2f1fe, 0x87f6f3f3, 0x05290082, 0xf3e8feb0, + 0xfef2c4c3, 0x3f0982d4, 0x8b1afe25, 0x008d6866, 0xff880001, 0x069b04eb, 0x0027001f, 0x250c406f, 0x12171923, 0x01040610, 0x084f4518, 0x17b04b31, + 0x15254058, 0x14040301, 0x02030001, 0x83040015, 0x001b2583, 0x16090101, 0x2a064449, 0x00000102, 0x05170008, 0x9629401b, 0x201f8227, 0x09d46716, + 0x47020e21, 0x212305dc, 0x4c341123, 0x15220682, 0x824c0014, 0x67272005, 0x35240594, 0x34350034, 0x4508c684, 0x01150622, 0xcaf6f27a, 0x0176dbaa, + 0x52c5da44, 0x293126a9, 0x5e5d3e7b, 0x5f7ebbfe, 0x046f5b3f, 0xb7fae045, 0x3ecf71ad, 0x8ae4fe44, 0x1c22b4b4, 0x532819c5, 0x15014c47, 0x4bd25591, + 0x85946150, 0xffff0000, 0xe3825300, 0x08060227, 0x44002602, 0x05ef4700, 0x1a00822c, 0x02b10800, 0xb01ab001, 0x238a2b0d, 0x23880720, 0x39017624, + 0x23851900, 0x238d1920, 0x23860520, 0x52010624, 0x2185173d, 0x21821720, 0x21206788, 0x58221f88, 0x1f852a3f, 0x1f8a2a20, 0x87cb0521, 0x6a00231f, + 0x1f831b19, 0x1bb00222, 0x06211f8a, 0x261f8636, 0x00560107, 0x857100d2, 0x84712021, 0x002d0883, 0xff540003, 0x04a406eb, 0x002e004e, 0x00420039, + 0x3b264076, 0x012f303a, 0x3a3e3f00, 0x35423b42, 0x30392f33, 0x24272939, 0x1a1e2023, 0x05475418, 0x012e0024, 0xb74b0f2e, 0x43340807, 0x0403011c, + 0x02021416, 0x252b3203, 0x2c060703, 0x07000203, 0x010b1504, 0x06010902, 0x01060207, 0x0a0e1d00, 0x04030302, 0x051b0001, 0x10040401, 0x02080d16, + 0x2105d04e, 0x8f6e0c01, 0x05eb6a05, 0x6e06bd7e, 0xdc530b4a, 0x3e172406, 0x6b323301, 0x586e0d03, 0x6b01200a, 0x8608070e, 0xcd840605, 0x95d63b42, + 0xe7f1c5b4, 0x5d565dce, 0x0602e96b, 0xaa6cc9f2, 0x64a83f38, 0x58fdecd6, 0x8c8c0403, 0x48537c62, 0x70fcc939, 0xcc299243, 0x035b7a6d, 0x0a746840, + 0x67b60102, 0x4a535915, 0x9e9ab362, 0x675b47ac, 0x0612415a, 0x4043b98d, 0xfafe4340, 0x83068de4, 0xa52e2ea1, 0x49b94b2e, 0x4562bd31, 0xe7024f41, + 0x1e05758f, 0x00008269, 0x00ffff00, 0x033cfe51, 0x024e04e1, 0x00460026, 0x00070100, 0x4845017a, 0x53261073, 0xeb03ebff, 0x23820906, 0x23824820, + 0x43000624, 0xc3411b76, 0x09a34105, 0x08201f82, 0x07241f86, 0x2d017600, 0x82134b42, 0x86062023, 0x01062423, 0x85183152, 0x41182043, 0x032308e7, + 0x88cc05eb, 0x0d6a2263, 0x05e5411c, 0x1f841c20, 0x82aaff21, 0x05822279, 0x201f82f3, 0x260982f3, 0xff430007, 0x82050065, 0x01012321, 0x218205b0, + 0x8f26cb84, 0x6b020000, 0x2386f205, 0x76000624, 0x2185041b, 0x43850420, 0x1f82bb20, 0xf0055c22, 0x07261f86, 0x20ff5201, 0x21850200, 0x43860220, + 0x82a0ff21, 0x05752223, 0x246788b6, 0x00fcfe6a, 0x22238306, 0x8406b002, 0x3a318223, 0x04ebff3c, 0x00ed054e, 0x002e0021, 0x230e404d, 0x22282a22, + 0x0e2e232e, 0x6006080c, 0x323c08bb, 0x03021011, 0x02012601, 0x21150203, 0x1b1c1f20, 0x15161718, 0x010b0014, 0x00010013, 0x2306c057, 0x02020104, + 0x2709645b, 0x2b2fb005, 0x1d121601, 0x2d062867, 0x32330034, 0x2e371716, 0x27052701, 0x06823537, 0x011e3729, 0x01173717, 0x463d3632, 0x5a08065e, + 0x81031614, 0xd4fe6b62, 0xdefee3e1, 0x55de1101, 0x0c043497, 0xf4fe4052, 0x4d21db4e, 0x98544b27, 0xfe4ecf42, 0x23997d12, 0x937e6791, 0x690c0597, + 0xcfa3ecfe, 0x01c6fef8, 0x01e2d019, 0x05343f17, 0x963c9d5e, 0x11067b6d, 0x13c40c1e, 0x6d742e43, 0xa0d03dfb, 0xb4403084, 0x42ae7989, 0x7e32051b, + 0x0b040000, 0x26022106, 0x00005100, 0x58010601, 0x2d412a59, 0x0abb4305, 0x08063422, 0x52201f82, 0x21059341, 0xf7419e00, 0x34042313, 0x23880706, + 0x55017622, 0x22144344, 0x86050634, 0x01062323, 0x43445952, 0x84342011, 0x82678387, 0x445b2087, 0x34221143, 0x3f87cb05, 0x356a0022, 0x290a4344, + 0x43000300, 0x3704aa00, 0x0982b604, 0x0b000724, 0x777d4600, 0x822b2016, 0x01022a1f, 0x00000203, 0x0001001d, 0x06154a00, 0x04040524, 0xd5820005, + 0x04050527, 0x001b0000, 0x2d068304, 0x2fb00518, 0x3521012b, 0x35232521, 0x03821133, 0xfc370428, 0xfef4030c, 0x0082f381, 0xd4460227, 0xf4fbddbf, + 0x264d82dd, 0x0476ff53, 0x82bc0434, 0x002524ef, 0x484b0031, 0x402d15bf, 0x02060930, 0x13160004, 0x02050202, 0x20798215, 0x25888201, 0x002c0302, + 0x1b420404, 0x16102406, 0x70050500, 0x13200df7, 0x23061d42, 0x011e0733, 0x48053042, 0x3320078c, 0x08167f48, 0x09015366, 0x2d6335e6, 0x5b689048, + 0xe7f7fe62, 0x482a5a30, 0x68636690, 0x061e1df3, 0x35182601, 0x017d7f1e, 0x06181afc, 0x2e14dffe, 0x027f7f19, 0x3501f227, 0xd3921113, 0x158fe94a, + 0x0fcdfef4, 0x47cf920e, 0x804e96f0, 0x58020128, 0x9bc90d0b, 0x01297644, 0x0808b2fd, 0xffff9ec7, 0xebff7b00, 0xf3050a04, 0x58002602, 0x20060742, + 0x109b439d, 0xf2202385, 0x76232388, 0x43005401, 0x00210a9d, 0x20478800, 0x232386f0, 0x58520106, 0x880a9d43, 0x87b6201f, 0x6a00221f, 0x0a994334, + 0x10261f82, 0xfc034bfe, 0x1f82f205, 0x87845c20, 0x18017622, 0x0027638d, 0xfe8a0002, 0x713e0460, 0x4e2206df, 0x7b730e40, 0x0c457313, 0x45730020, + 0x83521814, 0x160e2908, 0x0c010100, 0xb0071701, 0x20084473, 0x18447311, 0xc6de3e2a, 0xf3338e5c, 0x5b8d32f3, 0x2615076a, 0xadfdb807, 0x6afe4742, + 0xd7880c08, 0xd783f783, 0x6a000623, 0x26f78df9, 0x04000020, 0x4ff606f9, 0x7125082b, 0x46019c00, 0x05bb4f00, 0xbb4b4620, 0xff532606, 0x050204eb, + 0x086747b4, 0x04387122, 0x45057f45, 0x0020051b, 0x07214384, 0x084b4f5c, 0xd4005424, 0x4386ac01, 0x438bac20, 0x471a0621, 0x542208cb, 0x43856a70, + 0x20826a20, 0x2026a782, 0x230552fe, 0x4385b005, 0x01070031, 0x00380357, 0x00ffff00, 0x0452fe53, 0x854e042c, 0x21178337, 0x17844102, 0x93826d20, + 0x5e07c822, 0x2408ef4e, 0x01b80176, 0x20738270, 0x86078301, 0xff512673, 0x06e103eb, 0x089f4607, 0x2f017624, 0x85441900, 0x08834805, 0x5c204785, + 0x01254787, 0x01bc0052, 0x4c47866e, 0x478507df, 0x47860520, 0x52010624, 0x45851733, 0x8506a748, 0x88362043, 0x01552443, 0x86800189, 0x8b802043, + 0xdf05218b, 0x07264386, 0x00015501, 0x45852900, 0x22832920, 0x4785eb83, 0x47886320, 0xd3005324, 0x47867201, 0xd38c7220, 0x8b880c20, 0x1b4a5322, + 0x4f474585, 0x00992606, 0x07ea0400, 0x2a1f824e, 0x01000027, 0x00530107, 0x415d0186, 0xfb50068b, 0xff532607, 0x063a05eb, 0x20238218, 0x25238347, + 0xfd036303, 0x23851205, 0x84120521, 0xa60b4f8c, 0x3e065f6e, 0x001806af, 0x00270019, 0x251640a5, 0x191c1e23, 0x15161718, 0x0f121314, 0x0306080d, + 0x78000102, 0x23080c3b, 0x0901113b, 0x02202103, 0x01040908, 0x15030801, 0x04050107, 0x05030001, 0x1d000000, 0x09060600, 0x09090016, 0x28065c59, + 0x08001610, 0x00010108, 0x06a17b1b, 0x401b0723, 0x823dac3f, 0x45428360, 0x0821097e, 0x066c5559, 0x010e2727, 0x3d022223, 0x05427301, 0x35231127, + 0x15333533, 0x05565f33, 0x4e113721, 0x04220501, 0x9775acaf, 0xc9de2a06, 0xf0338b58, 0xfcacf3f0, 0x09a17597, 0xfbc90438, 0x514d8937, 0x15ec2201, + 0x3d010301, 0x04014247, 0xfca5a5aa, 0xa7759686, 0x052b500a, 0x062c0423, 0x088751f6, 0x73007124, 0x53424601, 0x0adf4306, 0x05eb0323, 0x083f49b5, + 0x052c7122, 0x20059b43, 0x059b4305, 0x00009926, 0x5c072c04, 0x2408ef51, 0x01ab0054, 0x434386ac, 0x03230adf, 0x491b06eb, 0x542208a3, 0x43856b64, + 0x438b6b20, 0x43882120, 0x45015524, 0x43866b01, 0x00202283, 0x8205ef4b, 0x86e02087, 0x01072543, 0x00fe0055, 0x200aad47, 0x26238300, 0x0452fe99, + 0x85b0052c, 0x07002547, 0x1c015701, 0x53261784, 0xeb0385fe, 0x3b884f04, 0xe4015724, 0x81853300, 0x81823320, 0xc7852384, 0x83884e20, 0x8f005324, + 0x83865d01, 0x820a1b43, 0x880d20c7, 0x485322c7, 0x4a45851c, 0x0027054b, 0x04ebff6e, 0x825c07d0, 0x002a281f, 0x01070100, 0x44b50052, 0x5a26102f, + 0x0a044bfe, 0x23820506, 0x23824a20, 0x52010623, 0x0d934848, 0x71204385, 0x54244388, 0xc101e800, 0xc1208786, 0x8506e743, 0x881a2043, 0x7b542143, + 0x850d2f45, 0x88362043, 0x01552243, 0x10734482, 0x05214384, 0x264386df, 0x01550107, 0x85290015, 0x087344cd, 0x0bfe6e26, 0xc505d004, 0x03254787, + 0xfeb90163, 0x218b858b, 0x8b8c8bfe, 0x47878a20, 0x01730325, 0x857e002f, 0x417e2047, 0x05230a5b, 0x8247070a, 0x822b2023, 0x010724f3, 0x4fe10052, + 0x7d2410f3, 0x0c040000, 0x4b202384, 0x17202386, 0x0031238d, 0x00180002, 0x05960500, 0x001300b0, 0x404d0017, 0xbf5c181a, 0x4d0c2017, 0x26350781, + 0x00020608, 0x0102050b, 0x0001000a, 0x0a001d00, 0x0a020300, 0x24098203, 0x07070109, 0x0dd86c07, 0x11231525, 0x82211123, 0x35232403, 0x82331133, + 0x332e0809, 0x21352101, 0x84841205, 0xf375fdf3, 0x02f38989, 0x82fcf38b, 0x75fd8b02, 0xfba2a404, 0xfd6d02fe, 0xa2020493, 0xf4fe0c01, 0x80fd0c01, + 0xb48200d2, 0x83e9ff21, 0x180627c3, 0x50001b00, 0x5d181440, 0x0f270961, 0x06090a0d, 0x54000104, 0x2f32081f, 0x01030102, 0x03020111, 0x01081502, + 0x00010506, 0x3f820601, 0x07001d2a, 0x00160907, 0x01010303, 0x01224182, 0xa0871001, 0x2fb00626, 0x1121012b, 0x82119176, 0x333527aa, 0x78022115, + 0x9976f8fe, 0x9494280b, 0x040801f3, 0x76e7fec7, 0x043c0d9f, 0xa7a7aac7, 0xffff0000, 0x0000bfff, 0x63079002, 0x2c002602, 0x07010000, 0x3fff5801, + 0x210f2354, 0x2382a2ff, 0x0c067322, 0x2408d34c, 0x0022ff58, 0x054d4615, 0xd7411520, 0x22478406, 0x87f60696, 0x71002347, 0x3f4438ff, 0x2247840f, + 0x4ca00579, 0x712408f7, 0xf0ff1bff, 0x21054342, 0x4342f0ff, 0xe6ff2105, 0x69226b82, 0x8f885c07, 0x70ff5422, 0x210f4344, 0x2382c9ff, 0x05064c22, + 0x54248f88, 0x550053ff, 0x55208f85, 0x00278f86, 0x0152fe2a, 0x85b005cb, 0x06002547, 0x00e05701, 0x0021ef83, 0x2217820d, 0x821806ae, 0x824c2017, + 0x20178210, 0x201785c3, 0x22fd829f, 0x882107ad, 0x00552277, 0x0d774409, 0x00010023, 0x6b23828f, 0x7776053f, 0x760a2013, 0x82330f77, 0x3a04f3f3, + 0x00ffff00, 0x06ebffad, 0x00b00520, 0x822c0026, 0x0007246c, 0x844d022d, 0xfe90268b, 0x06a1034b, 0x83178218, 0x0007248b, 0x8413024d, 0xff362a17, + 0x079f04eb, 0x0026023f, 0x2671822d, 0x01520107, 0x41510163, 0x01210527, 0x06274151, 0x4bfeb52a, 0xe3056402, 0x50012602, 0xff232385, 0x85f5ff28, + 0xf5ff2123, 0x00272385, 0x0519fe99, 0x82b00511, 0x472e2047, 0x012305bf, 0x8599fe8c, 0x99fe2123, 0x81262386, 0x31041bfe, 0x23821806, 0x23864e20, + 0x9bfe3722, 0xa15a2386, 0x00012605, 0x0400008e, 0x21ca826b, 0x4918000d, 0xe3772c3f, 0x77042008, 0x23080ce3, 0x21010917, 0xf26fef01, 0x500155f2, + 0xfe032501, 0xfebe0160, 0xfeac01cb, 0xfe3a0454, 0x05b00150, 0xccfdfffd, 0x08b75218, 0x07360423, 0x209b8220, 0x056b4b2f, 0x01230023, 0x219b8532, + 0xbf863201, 0x00009026, 0x5d076b02, 0x4f202382, 0x1b222386, 0x23866f01, 0x07416f20, 0x041b2408, 0x87b00536, 0x63032347, 0xe38d7601, 0x00ffff29, + 0x011bfe6c, 0x87180683, 0x63032347, 0x23901b00, 0x00009926, 0xb2053604, 0xfe21478a, 0x06df4604, 0xdf460420, 0x208f8307, 0x23478bd4, 0x12059701, + 0x33498f85, 0x066b4705, 0x01258f8a, 0xfdc30155, 0x212385d4, 0xd78ad4fd, 0x47899b20, 0x00550125, 0x86affdf7, 0x83af2023, 0x01002323, 0x8f821b00, + 0xb0052f2c, 0x35000d00, 0x0c0d0840, 0x55180607, 0x20310af3, 0x08090a0b, 0x00010203, 0x01020008, 0x02020015, 0x05457007, 0x076c4a18, 0xb0042e08, + 0x25012b2f, 0x21110515, 0x07112115, 0x33113735, 0x00018501, 0xaa0200ff, 0x777763fc, 0x4e6103f3, 0x19fe4eb8, 0x246002c2, 0x980224b8, 0x84008200, + 0x28022e6f, 0x0b001806, 0x06402c00, 0x04050a0b, 0x075d4502, 0x08091924, 0x6d850607, 0x6d820120, 0x84790120, 0x83032008, 0x15372466, 0x86231107, + 0x91973464, 0x8989f391, 0x347b03f3, 0x3dfd34b8, 0xb8316d02, 0x58f30231, 0x492008ab, 0x2307ab58, 0xe2017600, 0x26102f56, 0x0400007e, 0x5007060b, + 0x0720062b, 0x53202382, 0x2610a74b, 0x051bfe99, 0x87b0050a, 0x63032347, 0xc741e201, 0xfe7e2610, 0x040b041b, 0x8247874e, 0x90532023, 0x00992523, + 0x070a0500, 0x3b592383, 0x00532205, 0x100348fd, 0x0c208f85, 0x2108bb50, 0x634b6e53, 0xe1ff210c, 0x1820af84, 0xff216789, 0x0d0b4290, 0x00010039, + 0x054bfe93, 0x00b00504, 0x40470018, 0x00000010, 0x15180018, 0x7b121314, 0x2a330ccd, 0x02021117, 0x00010703, 0x0f150201, 0x14010201, 0x56020405, + 0x1622078b, 0xd17b0100, 0x013d211c, 0x08884b18, 0x04052208, 0x3b24a6bb, 0x3d110e20, 0xfd413b15, 0xf3f3067b, 0x05068502, 0xb311fab0, 0xbf0908c3, + 0x545f0805, 0x9e4b183f, 0x2c9f820e, 0x044bfe7e, 0x004e0406, 0x4091001f, 0x289f8212, 0x1e1f001f, 0x13181a1d, 0x27511811, 0xb04b2d0b, 0x33405819, + 0x00030101, 0x0304011c, 0x0429a282, 0x0201010e, 0x03001504, 0x29428203, 0x0205061b, 0x16100000, 0x27750400, 0x06d34605, 0x17011226, 0x37401b06, + 0x05203582, 0x0624358d, 0x0a050501, 0x2007e556, 0x21399500, 0x4b7b5907, 0x7c152009, 0x34200ec2, 0x2707a57d, 0x360d5c01, 0xbda9629f, 0x3c32f686, + 0x62413b16, 0x236e4b64, 0x963a04f3, 0xddd05951, 0xf98320fd, 0x0705c631, 0xde025457, 0x31366a7e, 0x3a04e0fc, 0x5a00ffff, 0x0b2005ef, 0x2108835a, + 0xbb580071, 0x01022205, 0x054f58b8, 0x2305834a, 0xb4053404, 0x21080f52, 0xeb4e5471, 0x2043850d, 0x08eb5a71, 0x06015424, 0x3b4dc101, 0x49012005, + 0x532607bb, 0x3404ebff, 0x43861a06, 0x54010725, 0x49008c00, 0x00210abd, 0x208b8800, 0x22478860, 0x5b380159, 0x8b860d0f, 0x09065622, 0x59234788, + 0x5200be00, 0x003a0b9d, 0x65000200, 0x0b07ebff, 0x1700c505, 0xfb002500, 0x181a1a40, 0x25181e20, 0x3749251a, 0x0a0c2509, 0x00010305, 0x3b071d6c, + 0x5817b04b, 0x011c3340, 0x011b0204, 0x15020700, 0x06000500, 0x00060507, 0x01091d00, 0x2605b55a, 0x02020103, 0x560a160d, 0x8d5808a6, 0x1b062705, + 0x581db04b, 0x39824a40, 0x398f0920, 0x09090022, 0x2206e24c, 0x5e00160d, 0x43850aed, 0xb2820020, 0x08000022, 0x2d695185, 0x1b0a2309, 0x4c854740, + 0x868c0820, 0x00234c97, 0x88000707, 0x4d01204a, 0x002c0597, 0x010e0101, 0x59590a17, 0x292b2fb0, 0x23240a82, 0x01190020, 0x2305505b, 0x11211521, + 0x05220384, 0x504d3632, 0x114a0807, 0x0b071614, 0x815cc0fc, 0xfefcfe43, 0x014101be, 0x4f8e4503, 0x67fd3903, 0xc6fd3a02, 0xa0fba002, 0x34326734, + 0xb39f3368, 0x010b0ab4, 0x010a014b, 0x01090130, 0xc3090c4c, 0xfec365fe, 0x07071433, 0x08073704, 0xcefec3cd, 0x8a82cec4, 0x03002f08, 0xebff5300, + 0x4e04f706, 0x30002200, 0x65003900, 0x31321e40, 0x35360001, 0x39323931, 0x25272c2e, 0x17181b1d, 0x0c0e1214, 0x22000507, 0xb14a2201, 0x103a2b08, + 0x1f020701, 0x04050219, 0x6f5c0320, 0x00093905, 0x04090504, 0x0b1d0000, 0x07070208, 0x1b000102, 0x02020103, 0x01061610, 0x21052b52, 0x2a580a01, + 0x3d002211, 0x05c75301, 0x4e111e58, 0x1f820546, 0x22232624, 0x21581506, 0x84573209, 0xc54141ca, 0xf7fee87e, 0x7fe60901, 0xbf4042c7, 0x3c431874, + 0x6afb210d, 0x2107457d, 0x4318f703, 0x602e0747, 0x01605858, 0xf215f334, 0x59623501, 0x43186259, 0x02210b4e, 0x085d7d27, 0x18640121, 0x20075943, + 0x05f34500, 0x07d30427, 0x00260249, 0x05bb4735, 0x617d0121, 0x802610eb, 0xfe020000, 0x23820706, 0x23855520, 0x45ae0021, 0x042313f3, 0x87b005d3, + 0x63032547, 0x9bfe7d01, 0x21056b43, 0x4f479bfe, 0xfe6a2606, 0x04b8021b, 0x2347874e, 0x19006303, 0x8213f345, 0x8423838f, 0x5301238f, 0x13519800, + 0x82432010, 0x06f7228f, 0x2347860c, 0xca530106, 0x270cf345, 0xebff6000, 0x5e078b04, 0x36201f82, 0x0121af85, 0x106f5286, 0xebff5224, 0xd384cf03, + 0x23865620, 0xd3902220, 0x5c204785, 0x01234787, 0x4e8a0052, 0x4785103f, 0x23820520, 0x06234783, 0x52265201, 0x60260d6f, 0x8b0438fe, 0x8b88c505, + 0x93017a24, 0x4348f7ff, 0xf7ff2105, 0x25061741, 0x0338fe52, 0xf38304cf, 0x7a228b85, 0x23902f01, 0x63208b85, 0x53228b88, 0x6f52a100, 0x208b8510, + 0x218b880c, 0x17413d53, 0xfe22260d, 0x0592041b, 0x201f82b0, 0x23f38337, 0x6c016303, 0x26107f41, 0x0211fe20, 0x82410586, 0x85572023, 0xd8002323, + 0xaf8591fe, 0x8691fe21, 0x002225af, 0x07920400, 0x4784af83, 0x00530123, 0x10974787, 0xebff2026, 0x36062903, 0x01234789, 0x853005ec, 0x30052147, + 0x84063b49, 0xb0052547, 0x3f000f00, 0x3e19116c, 0x01072040, 0x00010203, 0x00000301, 0x01061d00, 0x00050404, 0x05001b00, 0x00160705, 0x6c080101, + 0x0121059b, 0x06294e23, 0x35212008, 0x11211521, 0xd0a00333, 0xfeccccf3, 0xfe700445, 0x1203d03e, 0x1203eefc, 0xc33101aa, 0x82cffec3, 0xfdff2dd4, + 0x8c02ebff, 0x1f004105, 0x1c405d00, 0x1f335582, 0x1d1e1f00, 0x191a1b1c, 0x12141718, 0x07080b0d, 0x82040506, 0x08054472, 0x01103435, 0x15010405, + 0x000a010b, 0x01072b0a, 0x03010602, 0x82030204, 0x0108238d, 0x3f820101, 0x7d091b21, 0x9a82052f, 0x83020121, 0x050e219a, 0x24052856, 0x23153311, + 0x14337d15, 0x7d233521, 0xd5220637, 0x397d3ad5, 0xc8c82109, 0x23063b7d, 0xf9feaaa5, 0x26083d7d, 0xa5aa0701, 0x5f0701b4, 0x63200bf7, 0x23078b5f, + 0xd4005801, 0x570f2b4e, 0x062105a7, 0x073f570c, 0x5a580122, 0x200a294e, 0x063b60ff, 0x87f60621, 0x71002343, 0x274ecd00, 0x2143850f, 0x8357a005, + 0x53712108, 0x200c254e, 0x09836000, 0x8b885c20, 0x05015422, 0x850f274e, 0x05062147, 0x07244786, 0x8b005401, 0x6010274e, 0x782005a7, 0x562c4788, + 0xb3016701, 0x01b10900, 0xb301b802, 0x26067342, 0x04ebff7b, 0x8821060a, 0x00562447, 0x5b5c00ed, 0x5c2005af, 0x8f892283, 0x47884b20, 0x37015922, + 0x8310a760, 0x05552247, 0x224788f4, 0x5bbd0059, 0xff290df7, 0xfe8600ff, 0x05f10452, 0x254785b0, 0x57010700, 0xef849f01, 0x17827b20, 0x3a043322, + 0x17833b85, 0x84480221, 0x001d2617, 0x07d80600, 0x28178247, 0x0100003a, 0x01520107, 0x0d2b5190, 0x00ffff29, 0x05000025, 0x82f005d0, 0x865a2023, + 0x5c112023, 0x00250f93, 0x0400001a, 0x204784f6, 0x2123853c, 0x4790a100, 0x8305fb58, 0x825c2047, 0x01062323, 0x3b591c52, 0x2043850d, 0x8467820d, + 0x67002043, 0x0121074f, 0x094f6702, 0x67825820, 0x4a075922, 0x3d202382, 0x07244382, 0x6f017600, 0x26103b62, 0x03000055, 0x82f205c4, 0x865d2023, + 0x591e2023, 0xd3820d63, 0x22204785, 0x01234787, 0x42400155, 0x4785108b, 0x4787ca20, 0x00550125, 0x501400ef, 0x14200527, 0x8507b741, 0x884f2047, + 0x00532447, 0x445e018a, 0x0121052b, 0x06ff415e, 0xf7204785, 0x06244786, 0x06395301, 0x06204585, 0x01302083, 0x00008b00, 0x2d069502, 0x33000f00, + 0x00000c40, 0x078d4718, 0x2008576c, 0x059d7c1a, 0x01010022, 0x2105b44d, 0x5d6c0f00, 0xb0042407, 0x61332b2f, 0x1721058e, 0x05ce5507, 0xc38b1139, + 0x2c4824af, 0x1b2b1619, 0xb804544f, 0x0a0bc2b3, 0x5e0605b9, 0x8248fb54, 0xff012659, 0x024bfedd, 0x346b82d3, 0x40510023, 0x1f222312, 0x1316181d, + 0x0d101112, 0x0104060b, 0x494b1800, 0x1a323408, 0x08050601, 0x02020101, 0x06060015, 0x1b000105, 0x83050500, 0x00002a75, 0x1b000004, 0x04040107, + 0x4545180a, 0x5a12200a, 0x2320065c, 0x180e494b, 0x2d12a64a, 0xbac98402, 0x203a24a6, 0x163a110f, 0x4a18413a, 0x03230db0, 0x4c3bfc86, 0x0321084b, + 0xbc4a18c5, 0x3abb820b, 0xff640002, 0x060c06eb, 0x00170063, 0x40420025, 0x1c21230c, 0x0b10111a, 0x5e020409, 0x292808d1, 0x0103010d, 0x03040114, + 0x0223b782, 0x532b0201, 0x0d220901, 0xac5c0016, 0x7a0e2008, 0x0121052d, 0xfc571810, 0x16322b08, 0x35013e17, 0x07061433, 0x6918011e, 0x05210e32, + 0x0658180c, 0xd77f290b, 0xd0756f51, 0x211e9aa5, 0x180c5818, 0x144e572a, 0xf9c088a7, 0x4e92412e, 0x0e135818, 0xebff5326, 0xcb04eb04, 0x1522bf8b, + 0xbf8c0a13, 0x04010623, 0x20c38200, 0x07655d04, 0x1020b388, 0x220e8963, 0x5d2b2fb0, 0xb8880660, 0x19be4618, 0x41b16d29, 0x7ec34443, 0x18211e78, + 0x2a13c546, 0x881b4249, 0x29c59265, 0x18519340, 0x3e11cd46, 0x00010000, 0x06ebff86, 0x003e066c, 0x4067001a, 0x00000010, 0x171a001a, 0x0e111215, + 0x1805060c, 0x2a090b48, 0x2140581b, 0x03020109, 0x82150102, 0x16092722, 0x02020405, 0x83540702, 0x010e240a, 0x8a1b0517, 0x00022223, 0x2023942b, + 0x21da8259, 0x8f411501, 0xff551807, 0x53062512, 0xbbc0d052, 0x0c055618, 0x1902b429, 0xffd684a7, 0x18a8fd20, 0x2e110d56, 0xff7b0001, 0x047105eb, + 0x001d00ba, 0x82124081, 0x001d2d9c, 0x1417181d, 0x0b0e0f12, 0x07050609, 0x08068350, 0x17b04b20, 0x012b4058, 0x19050201, 0x03030416, 0x00010702, + 0x06150303, 0x05020501, 0x0201042b, 0x514e0a02, 0x1b022205, 0x08376501, 0x2d9c2f20, 0x08000022, 0x0221fd85, 0x05404c1b, 0xd9840620, 0x06161726, + 0x27231107, 0x10dc4318, 0x0527f184, 0xad03026c, 0x1816d1ba, 0x2a0be543, 0x044d5c06, 0xc4b205ba, 0x18d2fc11, 0x2e0eef43, 0x7a0a0278, 0xffffff76, + 0x024bfeb5, 0x53ea056c, 0x532408cb, 0xf9ff3fff, 0x21058344, 0x876cf9ff, 0x4208210b, 0x2705f75c, 0x02040701, 0xa5013b01, 0x02242382, 0xa501b803, + 0x53262386, 0x0204ebff, 0x035d0007, 0x2a238305, 0x6300d700, 0x02b10800, 0x4463b003, 0x0d2607ef, 0x6e070000, 0x23824907, 0x5b458820, 0xd0022105, + 0x2610734b, 0x06ebff54, 0x820806a4, 0x86a82023, 0x008e2223, 0x2047821a, 0x0ab76503, 0xa1ff6926, 0x87071105, 0x9a202382, 0x01232385, 0x829901d3, + 0x0103238f, 0x5b5401b8, 0xff532607, 0x06340476, 0x20238204, 0x222386ba, 0x8516002e, 0x87162047, 0xfe60228f, 0x0ba34a07, 0x01630325, 0x8587fe86, + 0x87fe21fb, 0x2008a34a, 0x0ba34a07, 0x22202382, 0x0029238d, 0xfeb5ff01, 0x0493014b, 0x1b83453a, 0x01010024, 0x4d180315, 0x04241105, 0x012b2fb0, + 0x210ef844, 0xe4449301, 0x18422009, 0x3707fe4c, 0x5f0805bf, 0x00790454, 0xffff0000, 0x9003a000, 0xb0057d01, 0x35030602, 0x012d1082, 0xe4049b00, + 0xee053c03, 0x45000800, 0x5b571840, 0xb04b3d0e, 0x15405817, 0x03000306, 0x15010200, 0x02000101, 0x02002c00, 0x17020902, 0x13401b03, 0x15821787, + 0x822b0221, 0x2200231c, 0x91835903, 0x2723153b, 0x25352307, 0xc33c0333, 0x01c18e8f, 0xfc048f08, 0x1a8b8b18, 0x000100f0, 0x226b8279, 0x95f1052d, + 0x8619206b, 0x0001236b, 0x2b821501, 0x022c0127, 0x09000001, 0x836b8800, 0x25128217, 0x002b0001, 0x6b860101, 0x15333738, 0x35252305, 0x84d20133, + 0x9df4fed7, 0x05d5f5fe, 0xfc118869, 0xda8213fa, 0x0001002f, 0x02950476, 0x00b005f9, 0x4034000f, 0x2412820e, 0x0d0f000f, 0xff59180b, 0x0719250c, + 0x01020201, 0x02217082, 0x24c78200, 0x041c0201, 0x230e8203, 0x03170107, 0x1722ca83, 0x5f180616, 0xf23a0cae, 0x93ae0403, 0x0305ae94, 0x434541b4, + 0x06b00542, 0x7b9a9a7b, 0x4a4a3a06, 0x0082003a, 0x9600012c, 0xa401d704, 0x0300b605, 0x93722100, 0x4756180e, 0x0007230a, 0x5c830217, 0x2135212b, + 0xf2fea401, 0xd7040e01, 0x257b82df, 0x027204a0, 0x67780508, 0x782e2005, 0x17201267, 0x691f8b72, 0x64780510, 0xa022080b, 0x684a4c6a, 0x694d4b67, + 0x1d1f2b6c, 0x201e2829, 0x4919052a, 0x4a496363, 0x1f495e5d, 0x201f2929, 0xb7852c2c, 0x52fe4a30, 0x3c00eb01, 0x2d001300, 0x0c0e0640, 0x1f550507, + 0x0a1a2808, 0x01000101, 0x82091315, 0x821320d3, 0x0902532c, 0xc3820420, 0x6b712120, 0x44172008, 0x2d080556, 0x01373634, 0x27413e8c, 0x1c291b34, + 0x3d582423, 0x726d8365, 0x22335533, 0x8e0b0c2e, 0x65711913, 0x00378e4f, 0x80000100, 0x5103d604, 0x6f82f705, 0x0a40af24, 0x71830f11, 0x48020421, + 0x4b2a0775, 0x405819b0, 0x0301002c, 0x7a820a02, 0x13150229, 0x09130201, 0x79120001, 0x0d21095b, 0x5e898216, 0x072a06c3, 0x1b071700, 0x5823b04b, + 0x32922940, 0x82000321, 0x000122b7, 0x253b8a1c, 0x1b061701, 0x2b933340, 0x82000121, 0x001a2253, 0x24a08202, 0x00010102, 0x08f3731d, 0x11820320, + 0x59071823, 0x08f18259, 0x06140132, 0x23262223, 0x27150622, 0x32333634, 0x36323316, 0x78510335, 0x33a5475a, 0x77833627, 0x34b3385a, 0xd0053826, + 0x4159865f, 0x8b5e232d, 0x002e4059, 0x76355082, 0x9803e404, 0x0500ee05, 0x49000a00, 0x090a0a40, 0x03040607, 0xc14b1801, 0x5817240a, 0x4d031040, + 0x022a0617, 0x09000001, 0x1b021701, 0x0a821a40, 0x0d820120, 0x08830020, 0x08820020, 0x82031b21, 0x2007820e, 0x05694318, 0x01173335, 0x33032723, + 0x02230317, 0xfe02fe98, 0x7402c9db, 0x76f002f3, 0x052505fc, 0xfe050501, 0x2c7b82fb, 0x017efeab, 0x00b8fffa, 0x0017000b, 0x11574258, 0x23b04b2a, + 0x00184058, 0x02030000, 0x1d21fe83, 0x08f17b00, 0x17010c26, 0x21401b03, 0x01251a8b, 0x00010201, 0x2022881a, 0x2b8d8202, 0xb0590418, 0x34172b2f, + 0x16323336, 0x08118142, 0x4862ab45, 0x465f6045, 0x27656248, 0x26261b1e, 0xe7271e1b, 0x445b5b44, 0x43585744, 0x1c27271c, 0x0028281e, 0xfcffff00, + 0xfef004dd, 0x014f061f, 0xfc430047, 0x2c7bfead, 0x0080549c, 0x0100b109, 0xb07bfeb8, 0x83002b0d, 0x7cfd2723, 0xbcfeef04, 0x23825006, 0x28fd7628, + 0xb12b76fe, 0x2386c054, 0x23877620, 0x0485fc2d, 0x0556ffd6, 0x010700f7, 0x8205fc58, 0x00002e36, 0x043efd01, 0x0699fee6, 0x000f007f, 0x07034443, + 0x07080924, 0x49180206, 0x28260949, 0x0003010e, 0xf8411501, 0x05f9410a, 0x41821a20, 0x00000324, 0x1e82041b, 0xd8660782, 0x3e272705, 0x26343501, + 0xed843723, 0x15072408, 0x4b0751fd, 0x0746503f, 0x4056afa5, 0x0492e604, 0x2226221e, 0x4459677b, 0x00450848, 0x0412fc02, 0x4134ffe4, 0x05230df7, + 0x42010204, 0x172109e9, 0x2b411858, 0x0009290d, 0x401b0217, 0x0101031a, 0x0022ba82, 0x13421a00, 0x8201200a, 0x06f7418d, 0x23072108, 0x01333701, + 0x33370323, 0xc90202fe, 0xfe02dbfe, 0xf0c32202, 0xe904f302, 0x06040105, 0x0501f6fe, 0x0128fc84, 0xa5fe22fd, 0x84ff30fe, 0x2b2edb77, 0xfe213521, + 0x01f2fe30, 0xdfa5fe0e, 0x00297482, 0x04de0001, 0x06fc01f6, 0x14d7440d, 0x0021aa83, 0x2127821b, 0xd7440109, 0x03332b05, 0xf20a0123, 0x0d066faf, + 0x3182e9fe, 0xe4049d26, 0xd2068e03, 0x20065f68, 0x165f6835, 0x04001a23, 0x82bc8200, 0x021d21b7, 0x1b20fb85, 0x0721fb83, 0x05884500, 0x33352323, + 0x20038205, 0x345b8213, 0xe1e18e03, 0xe1e1f0fd, 0x9296f97e, 0xcccce404, 0xfe2201cc, 0x07a375ef, 0x13750620, 0x06002406, 0x82b76101, 0x78178293, + 0x022f06df, 0x00790006, 0xffffff00, 0x0400004b, 0x610f062c, 0x61220823, 0x534e6dfe, 0x82ff200f, 0x0a052129, 0x2b204b84, 0x07244482, 0x9bfe6101, + 0x86243b84, 0xa0010000, 0x2c203b84, 0x17830982, 0x3b8fa820, 0xff120025, 0x841105eb, 0x8532203b, 0x34ff213b, 0x11203b84, 0xf6207782, 0x3c201784, + 0xfe211785, 0x21178333, 0x17820600, 0x1783da20, 0x85830121, 0x28ff2117, 0xb02a2f84, 0xa102ebff, 0x26028d06, 0x6b849301, 0x13ff622c, 0x0900bbff, + 0xb80301b1, 0x5b49bbff, 0xb005250b, 0x24000602, 0x2008ff61, 0x200f84cc, 0x224b8225, 0x82940001, 0x052c235b, 0x651800b0, 0x002015c7, 0x0024bb82, + 0x0202001b, 0x34071452, 0x2b2fb003, 0x23112101, 0x2c042111, 0x03f35bfd, 0xfbed0498, 0x203e8213, 0x24298300, 0x0500001a, 0x250c8298, 0x00070003, + 0x7e184032, 0x1b281133, 0x02000300, 0x29020300, 0x50822d82, 0x18020221, 0x20091f66, 0x3b578304, 0x25210133, 0x02230121, 0x3e02e773, 0x480182fa, + 0x93fef202, 0xfab00506, 0xc603c250, 0x82075355, 0x84cb82ab, 0x580021ff, 0x5920bb82, 0x3d20cb84, 0x0521db87, 0x200f840a, 0x2061822b, 0x7f651803, + 0x00032608, 0x001f0011, 0x07ad683f, 0x03060822, 0x1d4c7982, 0x24402207, 0x09ad6a00, 0x5c180420, 0x0d20071b, 0x200d336a, 0x22f68405, 0x4d052135, + 0x20220996, 0x65181100, 0x03270d93, 0x0140fea3, 0x4d6e01c0, 0x01200b92, 0x0c996518, 0xe7c37922, 0x1d9b6518, 0x00ffff27, 0x010000ad, 0x20c384a0, + 0x20d3882c, 0x200f8411, 0x25d3822e, 0x00230001, 0x0f820500, 0x00070023, 0x1261412c, 0x00001528, 0x00020102, 0x6c182901, 0x03200bfb, 0x233abc83, + 0x33012301, 0x9c022301, 0xfb88fe06, 0x02e70302, 0x7004fc04, 0xb00590fb, 0x678750fa, 0x845b0621, 0x41302067, 0x31200e4b, 0x03267782, 0x00007000, + 0xdb412d04, 0x000b2206, 0x16a3433f, 0x0200242a, 0x02000300, 0x1d000003, 0x21097979, 0x4d181607, 0x372410e3, 0x13211521, 0x03200382, 0x70360382, + 0x43fcbd03, 0xfdf70260, 0x9a035609, 0xc2c266fc, 0x03bf4c03, 0x1f5ac323, 0xc5052507, 0x32000602, 0x97244184, 0x0a050000, 0x07208382, 0x15ff6318, + 0x01010022, 0x1b217882, 0xf3691800, 0x05212815, 0x73fdf30a, 0x427304f3, 0xa35706b1, 0x84c92006, 0x843320f3, 0x8247205f, 0x824c20e3, 0x000c2a5f, + 0x0b0a4041, 0x0408090a, 0x09894503, 0x072a4036, 0x0c020301, 0x00030006, 0x01010503, 0x00150300, 0x00020303, 0x18071d43, 0x210fed61, 0xda820109, + 0x01093523, 0x08068235, 0x16030120, 0xc9026dfe, 0xce01fbfb, 0xdf0332fe, 0x92015efd, 0xf4fdcf02, 0x410298c3, 0xc3983f02, 0x8b82f6fd, 0x00002224, + 0x8b849204, 0x00003722, 0x8407f773, 0x003c260f, 0x00030000, 0x20fb8248, 0x349b827f, 0x001a0011, 0x40540023, 0x1e212216, 0x1518191d, 0x0f101114, + 0x22aa820e, 0x67050607, 0x220809e5, 0x16203140, 0x01070602, 0x02171f15, 0x04140107, 0x01080001, 0x07000607, 0x091d0001, 0x01030601, 0x82060201, + 0x551d20c1, 0x760805ec, 0x02080202, 0x2fb00617, 0x0016012b, 0x07001415, 0x26352315, 0x00343500, 0x01333537, 0x37171614, 0x010e2711, 0x27263405, + 0x3e171107, 0xee5e0301, 0xcdfe3301, 0xfef1f3ee, 0xf03301ce, 0xa0d9fdf3, 0x8e06068e, 0xa05903a0, 0x8c06068c, 0x0adc04a0, 0xe0e0e0fe, 0xcc09e3fe, + 0x1c0109cb, 0x2101e1e0, 0x20fdd40a, 0x0203a28e, 0x04026a02, 0xa68f8da8, 0x96fd0204, 0x82a40302, 0x823220e3, 0x84ee20f3, 0x823b20e3, 0x840120e3, + 0x825120e3, 0x00192ce3, 0x190a402e, 0x0c111218, 0x5205060b, 0x17240869, 0x000a0d17, 0x0121ca82, 0x214b8215, 0x91440000, 0x2999820c, 0x11331135, + 0x11070014, 0xbd821123, 0xba830b83, 0x03332808, 0x94820642, 0xf0e1fef3, 0xe6feeef2, 0x067e92f2, 0x021a02f2, 0x02a6c310, 0xfde1fd1f, 0xfe19d0fe, + 0x174a01b5, 0x83ff3101, 0xc3a3290f, 0x95030212, 0x6c000100, 0xda2d9782, 0x2300c505, 0x0e403e00, 0x20212223, 0x238b821a, 0x06080f10, 0x27083344, + 0x02000e23, 0x15010002, 0x0809644a, 0x04160d7a, 0x01020201, 0x051b0000, 0x08010101, 0xb0051701, 0x36252b2f, 0x34013d12, 0x06222326, 0x1214011d, + 0x35211517, 0x3d022633, 0x33001001, 0x15110032, 0x33070214, 0xdf022115, 0x92a58476, 0x7987a392, 0x78f90cfe, 0xfc3a018e, 0x8f3c01fc, 0x0bfeff76, + 0x12011cc8, 0xdcd269f3, 0xf469d2dc, 0xc81beefe, 0x27015bc4, 0x160167a3, 0xa1fe5f01, 0xa367eafe, 0xc45cdafe, 0xffff0000, 0x7621d779, 0xbf540847, + 0xff56341d, 0x058704eb, 0x012602f9, 0x0100008b, 0x01610107, 0x5aecff44, 0xff21056b, 0x064f46ec, 0xecff6026, 0xf8050904, 0x8f202382, 0x0d222386, + 0x2382ebff, 0xb8010124, 0x2386ebff, 0x61fe7e24, 0x47840604, 0x23869120, 0x47841720, 0x47872383, 0xebffa926, 0xe3057e02, 0x2406bb46, 0x03610106, + 0x204586d6, 0x08ab7ed6, 0x8f828020, 0x8e063022, 0x9f202382, 0x06244782, 0xbc3c6201, 0x2006dd46, 0x222385bc, 0x84000200, 0x4e042fb3, 0x2b001c00, + 0x1440cf00, 0x27290000, 0x0d821f21, 0x17191c28, 0x0a0c1012, 0x37540305, 0x4b250807, 0x405817b0, 0x06011b2e, 0x02232503, 0x080e0600, 0x03000102, + 0x06060015, 0x1b000103, 0x03020407, 0x05161003, 0x31678201, 0x021b0201, 0x0e010101, 0x1b051701, 0x582ab04b, 0x34823240, 0x348b0420, 0x85066254, + 0x9200203a, 0x1b062338, 0x348c3e40, 0x15030522, 0x00203491, 0x16236c8a, 0x6b050500, 0x79820766, 0x494c0820, 0x13561805, 0x0d2f6b0c, 0x7e013721, + 0x352005c1, 0x0806296b, 0x26f70333, 0x09170e23, 0x273e2119, 0x341c7253, 0xdfc75f91, 0x915ec9df, 0xf7fd3134, 0x64467d73, 0x44632221, 0x3904767c, + 0x3442f6fc, 0x12b50402, 0x474a460d, 0x07376b49, 0x484c3908, 0x96c0fd7f, 0x13353ab6, 0x3b35ec01, 0x0000a8d5, 0xfe960002, 0x056a0477, 0x001400c5, + 0x409f002a, 0x01151618, 0x23272900, 0x151a1c21, 0x112a162a, 0x000b0d10, 0x09140114, 0x2e089f52, 0x3940582c, 0x03060106, 0x0605011f, 0x8201010f, + 0x010836ef, 0x05060003, 0x00010603, 0x0404001d, 0x1b000100, 0x00000107, 0x22e8870d, 0x18010100, 0x21074f59, 0x3b8f1b07, 0x01020024, 0x40a22c02, + 0x61170121, 0x694b052b, 0x011e2105, 0x30055d4c, 0x11231127, 0x32132434, 0x26343536, 0x15062223, 0x05417a11, 0x26345808, 0x0235012b, 0x63f5cc69, + 0xf6847758, 0x3c954ecd, 0xbe1101f2, 0x616d666c, 0x7e298061, 0x7987734e, 0xc505796a, 0x9d5eb4d7, 0x80be2c30, 0x2a29e9d1, 0xa80539fe, 0x98fdf3b3, + 0x7c55656f, 0xe1fc6380, 0x6d8a2b28, 0x00b9946c, 0x00010000, 0x035ffe20, 0x003a04f5, 0x4d33000b, 0x402a11ad, 0x0202051c, 0x15010301, 0x2a820300, + 0x29010323, 0x21fa8202, 0xf382160a, 0x575b0c20, 0x01332106, 0x2008a482, 0x17133301, 0xfa023733, 0xf28ffefb, 0xddfb8efe, 0x04130612, 0xfef0fb3a, + 0x04ce0135, 0x5934fd0d, 0x06db6d59, 0xb0053434, 0x24001600, 0x14404f00, 0x00001718, 0x24171d1f, 0x11822418, 0x0a0c1624, 0x23540102, 0x2e402c07, + 0x02000115, 0x00030113, 0x82061502, 0x00042405, 0x82290403, 0x00022aaa, 0x01051b00, 0x16070202, 0x08677900, 0x45010e21, 0x152305f0, 0x73050721, + 0x002c0700, 0x1234013d, 0x3525023f, 0x1d062201, 0x82055c42, 0x03262911, 0x0254febd, 0x846c3501, 0x08059d55, 0x07b1d533, 0x01dcfe01, 0x7c7d7f85, + 0x7f7f7f82, 0x06c1b005, 0x99f651e2, 0xcdfef415, 0x15ed2c01, 0x1e2001cf, 0x98eb0601, 0x9bc9dbfd, 0xc7c69f15, 0xc99b159e, 0x3e008200, 0xff600001, + 0x040904ec, 0x002a004d, 0x29124061, 0x21232427, 0x18191b1f, 0x0e101216, 0x43080a0d, 0x403007a3, 0x01010c42, 0x04010302, 0x05012503, 0x00150306, + 0x02380c82, 0x00290301, 0x04050406, 0x00290506, 0x06040003, 0x00010403, 0x0202001d, 0x2a0bdd73, 0x1b000107, 0x0e070700, 0x18081707, 0x220e7984, + 0x4223010f, 0x57080505, 0x013b1614, 0x06222315, 0x33161415, 0x33353632, 0x23041617, 0x68602422, 0xf8615763, 0x05ffbcd2, 0x597ae802, 0x65646a66, + 0x706cc7c7, 0x7e666a79, 0xfe0502e8, 0xfed2bcf0, 0x5a3201f5, 0x79242180, 0xb2a59648, 0x4f3c068e, 0x483f3953, 0x3f4d49ad, 0x06405b57, 0x00afaca3, + 0x612c8682, 0xcb0355fe, 0x2100b005, 0x0e404100, 0x2128ed82, 0x1f202100, 0x070a1518, 0x2008fb57, 0x25d68426, 0x020f1015, 0xba821201, 0x2006324e, + 0x05194903, 0x2005066b, 0x07934108, 0x010e0122, 0x3b27a382, 0x15163201, 0x4e07010e, 0x2608054c, 0x2622012b, 0x37123435, 0x35212713, 0xa3feca03, + 0x65646877, 0x02b09b29, 0x41597fa7, 0x32514a57, 0x8e88c0b9, 0x82fd02e6, 0xfe8a3c84, 0x88d08b54, 0x84896b6c, 0xa52dba77, 0x2d3d4d1d, 0x8aa6d932, + 0x01a82e01, 0x82c30509, 0xfe7e2aab, 0x04060461, 0x0013004e, 0x3b5f1871, 0x8224201c, 0x100026b1, 0x02020301, 0x066b4115, 0x0204052a, 0x16100000, + 0x08030300, 0x2306c942, 0x28401b05, 0x04202682, 0x5f182685, 0x2a8a113f, 0xd3640620, 0x1823200c, 0x64096d62, 0xab2405c7, 0x6363f3bb, 0x2e08bd64, + 0xc0fbe3ca, 0x6e7e3e04, 0xdffc3238, 0x82003a04, 0x00032c00, 0x04ebff6e, 0x00c50529, 0x4b16000d, 0x275707cb, 0x18042007, 0x2608f567, 0x04002440, + 0x83030200, 0x451d20a8, 0x82180650, 0x05251187, 0x012b2fb0, 0x87821814, 0x2103210b, 0x21061442, 0x32442101, 0x29042106, 0x0c8b8218, 0x7c2bfe2d, + 0xfe797070, 0x7cd5012b, 0x187a706f, 0x3b0f9182, 0x9494d4fe, 0x0195a4a5, 0xa5929352, 0x010092a5, 0xebffa900, 0x39047e02, 0x37000f00, 0x2614335b, + 0x0001071e, 0x82010802, 0x07b35504, 0x82050946, 0x440e20ab, 0xf945061f, 0x3522080c, 0x319c0111, 0x1a2a1a2d, 0x36582e26, 0x39049089, 0x3442effc, + 0x19b10b0b, 0x03a79d13, 0x0000000a, 0xc76affff, 0x06022307, 0x1082fa00, 0x2400013a, 0x6a04f0ff, 0x2100ee05, 0x0e40cd00, 0x1b1c1f20, 0x0c0e1416, + 0x00010507, 0x0c216118, 0x0a362208, 0x09020101, 0x01050202, 0x05030117, 0x01181503, 0x05001200, 0x05010301, 0x03002903, 0x00030100, 0x0a175327, + 0x01041625, 0x53080000, 0x2a23054d, 0xa2344058, 0x0002243c, 0x82020501, 0x861d20e9, 0x1b06233a, 0x368c3840, 0x04011825, 0x8f150400, 0x82368873, + 0x160829cb, 0x0e040400, 0x59061704, 0x3705e364, 0x012e2701, 0x07062223, 0x33013e27, 0x01171632, 0x1617011e, 0x0e073732, 0x5e081783, 0x07230327, + 0xf7fe2d01, 0x1d367f01, 0x2a0c3854, 0x3e20030d, 0x2c9b8f1e, 0x42146901, 0x10120f2a, 0x1533150b, 0xad319379, 0x13041706, 0x0456447d, 0x0b08b601, + 0x68fc70a0, 0x01044b3c, 0x0706c003, 0x879f0502, 0xff69cb01, 0xfe9200ff, 0x041f0460, 0x0006023a, 0xff000077, 0x002000ff, 0x84f50300, 0x8259200f, + 0x00012e93, 0x0440fe64, 0x00b0050a, 0x4052002e, 0x2c118214, 0x2d2e002e, 0x131e212c, 0x090a0c10, 0x3b671807, 0x2631300a, 0x01010201, 0x02181915, + 0x01001204, 0x82030200, 0x1d00300e, 0x00000105, 0x1b000006, 0x06060107, 0x7d001607, 0xe685051c, 0x2fb00725, 0x5515012b, 0xb1440536, 0x100d4408, + 0x34352426, 0x012e3736, 0x49080583, 0xb6033523, 0x6e6ed3fe, 0x8f92877f, 0x7d8eb3ac, 0x02b19d5a, 0x3f5184a2, 0x45464359, 0x99ecfee3, 0x41706693, + 0xb005d540, 0x516908c7, 0x8dc75e53, 0x86826788, 0x31b48086, 0x404f1d99, 0xcde63630, 0x252ebe8a, 0x6e495481, 0xe783c724, 0xebff5330, 0x4e043404, + 0x52000602, 0x01000000, 0x0f824f00, 0x3a04d72d, 0x77001700, 0x16171040, 0x5d131415, 0x9d5a0891, 0x0827250c, 0x09000101, 0x0224dc82, 0x02030515, + 0x0024dd85, 0x160a0606, 0x2a063f42, 0x02020104, 0x0517020e, 0x852b401b, 0x01042129, 0x04222990, 0x2e870804, 0x2d840020, 0x18053544, 0x290f1a5f, + 0x11231121, 0x04213523, 0x14439a8f, 0xdcfe290a, 0x40049cf3, 0xabfd7d03, 0x27081a43, 0x83fc4e02, 0x00bd7d03, 0x02310082, 0x60fe8000, 0x4e043104, + 0x1d000f00, 0x0c404200, 0x5768181b, 0x08a34508, 0x01172929, 0x01060304, 0x18020400, 0x200ae968, 0x0b9a5d10, 0x0c209c83, 0x2506a645, 0x22230214, + 0x89822726, 0x18003421, 0x4809ee6b, 0x3b08076a, 0xc5dc3104, 0xf3338f5b, 0xe5d00601, 0x7b73f3f6, 0x6a206f6e, 0x01777c4e, 0xdffeedf9, 0xfdfd3b3d, + 0x01f1df03, 0xfec4fe1e, 0xcdd4a9fc, 0x39f0fe8b, 0x0096b63d, 0x51000100, 0xe6034efe, 0x222ea382, 0x0c403800, 0x07090001, 0x22000405, 0x014d2201, + 0x031f2c08, 0x01020101, 0x02151615, 0x82001201, 0x452c2009, 0x032d0699, 0x10000001, 0xb0051702, 0x32012b2f, 0xa1541816, 0x1e17220b, 0x09444601, + 0x26276008, 0x34013d02, 0xc1380200, 0xdc0204ed, 0x777d6369, 0xabb99c93, 0x597ea703, 0x58525642, 0x0301f9fa, 0xb9d94e04, 0xcc795c06, 0xab8a2391, + 0x82761d16, 0xa42db977, 0x2c3d4c1f, 0x01250d2f, 0xe823da0a, 0x00003801, 0x52000200, 0x7d04ebff, 0x10003a04, 0x34001f00, 0x1a1d0c40, 0x0e101315, + 0x18010709, 0x2208e141, 0x82041b40, 0x01022392, 0xa1821b00, 0x695c0a20, 0x210b8205, 0xde440101, 0x48212007, 0x00220b75, 0x6f482137, 0x822b2009, + 0x15390823, 0xf6fe7d04, 0xf7fe6456, 0xf7fee9e0, 0x02e70801, 0x7dc8fc3c, 0x7b7b7b82, 0x7c80017d, 0xc4447603, 0xfed71570, 0xf33401d9, 0x2a01e815, + 0x9fd8fd01, 0x159ec7c6, 0xbd01bd92, 0x279e8291, 0x43000100, 0xf0030000, 0x27509f82, 0x82022016, 0x0003219b, 0x03218f82, 0x219b8203, 0x74180101, + 0x032f0e27, 0xf3a1fef0, 0xad03a5fe, 0x87fc7903, 0x85c17903, 0x82802053, 0x823020f3, 0x00152453, 0x820e4030, 0x00152712, 0x0b101215, 0x7418050a, + 0x51820f27, 0x02000024, 0xf9830201, 0x54020e21, 0xcc45059a, 0x353e0805, 0x33270226, 0x10151216, 0x26222302, 0x72011135, 0x747a6578, 0xf1333b03, + 0xf6e14033, 0x3a04f8e1, 0x8d9c9cfd, 0x017da3e6, 0xfe6a8700, 0xfafe98fe, 0xfaf3bbfe, 0x02006202, 0x22fe4400, 0x7b828505, 0x21001832, 0x0e403a00, + 0x1b1c0001, 0x07080f10, 0x18011800, 0x2b08bd42, 0x171d1e1f, 0x01050609, 0x00150103, 0x2c210482, 0x059e6c00, 0x04029708, 0x0a000002, 0xb0041703, + 0x32012b2f, 0x00141500, 0x11231105, 0x34350024, 0x0e333736, 0x16140701, 0x01113717, 0x010f012e, 0x013e1711, 0x01f45803, 0xfef3fe39, 0xe5fef3e0, + 0x3743fafe, 0x023d36ee, 0x02069a8e, 0x8fa2032d, 0x94a00606, 0xb9fe3a04, 0xd3fedbe0, 0x0131fe1a, 0x48011ed0, 0x67fb94ec, 0x9579f885, 0x03021ad6, + 0x95d9fd79, 0xfd0204cc, 0xbd150250, 0x3e000100, 0x44044dfe, 0x25004a04, 0x1440a300, 0x1e200001, 0x1214191a, 0x06070c0e, 0x25000405, 0x954d2501, + 0x581f3609, 0x01233940, 0x01220006, 0x0f1b0601, 0x01030308, 0x03040110, 0x2fc58204, 0x01060306, 0x03002903, 0x04030604, 0x06060027, 0x1b225582, + 0xcf820702, 0x0516102c, 0x12040401, 0x1b061704, 0x3b824140, 0x3b8c0220, 0x3b8b0520, 0x03060524, 0x84422705, 0x2b408505, 0x00000107, 0x05001610, + 0x00160c05, 0x082e4384, 0x2b2fb059, 0x1f163213, 0x33133301, 0x4d461301, 0x022f250b, 0x03012303, 0x08086d46, 0x9c8fba4d, 0xd6064d2b, 0xc2a4fef5, + 0x0f293c1b, 0x130a0f12, 0x8b711634, 0xf3065e33, 0xa67b01f8, 0x0b3b5a1c, 0x1c021523, 0xa04a0441, 0xb701b770, 0x36fe33fd, 0x0104473f, 0x0606c102, + 0x87a00501, 0x0bfe01da, 0x83010903, 0x02045744, 0x820b08b6, 0xfe4f38cd, 0x047e0522, 0x001d003a, 0x000e4035, 0x001d0000, 0x1116171d, 0x41080910, + 0x1a2a08d5, 0x010f121c, 0x01000104, 0x44570015, 0x03042705, 0x00000302, 0x5842010a, 0x3e172906, 0x012e3501, 0x011e3327, 0x0806d941, 0x19002646, + 0x14113301, 0x11371716, 0x9e065203, 0x343e0396, 0xfe4336ee, 0xf3dffef5, 0xf3edfefd, 0x04068196, 0x0286fc3a, 0x7995d71a, 0xfc6683fa, 0xb8fef094, + 0x0132fe1c, 0x2c011dd0, 0xe9011601, 0xc4b615fe, 0x78030215, 0x2405f342, 0x06ebff5f, 0x249f8276, 0x40460028, 0x2e128214, 0x23280028, 0x161b1d21, + 0x0b0e1015, 0x4b05070a, 0x252108b5, 0x83a1821f, 0x00033aa2, 0x29000103, 0x03020607, 0x02160a03, 0x04000001, 0x051b0201, 0x0e040401, 0x059d4404, + 0x07020622, 0x20057e4b, 0x22a48311, 0x43363233, 0xe14e0c14, 0x11580805, 0x01371234, 0x045045ea, 0x715f6b61, 0x6b5f70fb, 0x45500562, 0xd05545f2, + 0x2faf7ae4, 0xe579af2f, 0x044654cf, 0xfffe853a, 0x93dcad7e, 0xfe4501a0, 0xdb93a0bb, 0x02017eae, 0xfdfe6884, 0xfef9fe99, 0x707075bc, 0x01440175, + 0x03019907, 0xffff0068, 0xebffc4ff, 0xb5059902, 0x2b066b50, 0xff6a0007, 0x00050020, 0x0201b108, 0x09fb4218, 0xebff8026, 0xb6053004, 0x22076b50, + 0x7e496a00, 0x53200d23, 0x34261f82, 0x2602f905, 0xd3505200, 0x51192006, 0x4385101b, 0x4386e420, 0x61010726, 0xd7ff2d01, 0x2006d550, 0x061b51d7, + 0xebff5f25, 0x83057606, 0x85a32023, 0x40022147, 0x0023238d, 0x82750002, 0x05e1326b, 0x001a00c5, 0x40540026, 0x1f242510, 0x1517181d, 0xbf811813, + 0x1a37240e, 0x82060200, 0x0604326b, 0x02001502, 0x02050605, 0x06002906, 0x06030400, 0x7f821804, 0x450d200c, 0x07230d7f, 0x182b2fb0, 0x28079591, + 0x23001011, 0x01190022, 0x05a14437, 0x24263725, 0x52342535, 0x610806ae, 0x02371716, 0xa4a1ca14, 0xffc7febe, 0xfac7fefb, 0xa99291a9, 0xfafece04, + 0x3839d401, 0x69794037, 0x54e70306, 0xb8d2d7b3, 0xf3fe04fe, 0x5301b9fe, 0xa5020101, 0xae59fd02, 0x0cb3cadb, 0x5463b6f2, 0x65535554, 0x02068563, + 0xeeff0100, 0x85040000, 0x2300c205, 0x0e404400, 0x1b1d2122, 0x0f101416, 0xb74b090b, 0x19292a0a, 0x00010206, 0x02020e11, 0x2ecc8205, 0x01020105, + 0x03290205, 0x00010101, 0x821b0001, 0x820020ce, 0x020222c4, 0x06e34608, 0x6605f849, 0x07250553, 0x11231101, 0x0c114a01, 0x17136c08, 0xf2023733, + 0x20688838, 0x04181833, 0x38220d1b, 0xf2dbfe11, 0x3712dcfe, 0x031a0f21, 0x21331617, 0xa5388768, 0x04120612, 0x09738bc4, 0x0302c00c, 0x6dfd272b, + 0x1202f3fd, 0x2b278e02, 0x0cc00203, 0xfe8b7009, 0x004e4e77, 0x33000200, 0x5406ebff, 0x16003a04, 0x4d002c00, 0x292b1440, 0x20222526, 0x15161a1b, + 0x0c0e1314, 0x78010608, 0x2c3109ed, 0x0706010a, 0x07001501, 0x07000600, 0x03052906, 0x2bf68202, 0x001b0000, 0x160a0404, 0x06060108, 0x270adf51, + 0x2b2fb006, 0x011e2301, 0x42050c46, 0x362407f7, 0x21352337, 0x2723cb82, 0x43010e21, 0x3d220527, 0x9a4c3301, 0x064c0805, 0x201b8454, 0xa875ccba, + 0x74a82e2d, 0x1c1fb9cc, 0xfe210674, 0x1e2403c5, 0x231fcefc, 0x58534b02, 0x5969fa6b, 0x8e034c52, 0xfe5eab4f, 0x73bbfefa, 0x01737070, 0x5e060145, + 0xfdac4fab, 0x57ac55fc, 0xac53ad58, 0xe2a093dd, 0xdb93a0e2, 0x18084b59, 0x1824074f, 0x2f1abf4e, 0x36000100, 0xc305d7ff, 0x1700b005, 0x0e404300, + 0x21061f4a, 0x5f59040f, 0x0a28290b, 0x01020301, 0x03010915, 0x270a004b, 0x00000104, 0x1b000005, 0x23058256, 0x03080303, 0x08059150, 0x33112143, + 0x14150432, 0x3e270702, 0x012e3501, 0x2311012b, 0x21352111, 0x3efea604, 0x3301fab2, 0x7255bac2, 0x90a9016c, 0x45fef3b2, 0xed047004, 0xe4ff98fe, + 0x2eebfe88, 0x699026ac, 0x45fd9386, 0xffc3ed04, 0x05d35aff, 0x02490725, 0x636e0126, 0x7221069b, 0xbf4f1801, 0x0100370c, 0xecff7e00, 0xc605d904, + 0x62002100, 0x00001640, 0x21002100, 0xa96c1d1f, 0x05674305, 0x0807db52, 0x0e3f4022, 0x01030201, 0x02070601, 0x03020015, 0x04020304, 0x07010829, + 0x07050605, 0x04002906, 0x04070500, 0x1d20c882, 0x460ccd67, 0x5582056a, 0x17000e23, 0x05256208, 0x24056843, 0x20330010, 0x09a04900, 0x4e152121, + 0x04210779, 0x368518d2, 0xf5012915, 0x98b00bfe, 0xdd019b95, 0x153a8518, 0x2ec32622, 0x073b8518, 0x60000122, 0xc3e77d18, 0x5611035b, 0x280824df, + 0x03ebff36, 0x02b005d3, 0x002d0006, 0x00020000, 0x0800002e, 0x00b00543, 0x001f0016, 0x171a404f, 0x17000017, 0x1a1e171f, 0x2b118218, 0x10111316, + 0x090a0b0e, 0x0a010307, 0x2906c154, 0x00002840, 0x04070109, 0x5c520700, 0x00053105, 0x01081b00, 0x16070505, 0x04040106, 0x1b000101, 0x0b347318, + 0x32211135, 0x00141500, 0x21112123, 0x21021011, 0x32333523, 0x18011912, 0x0807c587, 0x0a05233f, 0x01f03401, 0xf0ebfe15, 0x40fed9fd, 0x30f9fef2, + 0x037a9528, 0x873401a5, 0x05878c8c, 0xfeebfdb0, 0xffcdcdff, 0xfeed0400, 0xfe65fe20, 0x0a01c28e, 0xa3024101, 0xeafd28fd, 0x9b6e719c, 0x23008200, + 0x00970002, 0x1222bf85, 0xbf821b00, 0x13131832, 0x1a131b13, 0x11121416, 0x0d0e0f10, 0x04060a0c, 0x0bd54118, 0x002a4029, 0x08010902, 0x83080204, + 0x000030bd, 0x04000704, 0x061d0000, 0x07010101, 0x82070016, 0x1b0223e7, 0x51180105, 0x0123088c, 0x82331121, 0x150423c2, 0xc2840414, 0x33112322, + 0x0129bb88, 0xf28d028a, 0x01f13501, 0x39be8414, 0xf3f373fd, 0x35017f03, 0x878b8b87, 0x6c024403, 0xc5f4c9fd, 0x8102f9c7, 0xc7827ffd, 0x14fe0639, + 0x8c686b8d, 0x01000000, 0x00004600, 0xb005f005, 0x3c001300, 0x85131040, 0x080b25a6, 0x01020407, 0x2b277f82, 0x5090b04b, 0x181f4058, 0x4f09ba49, + 0x00220700, 0xa07e0606, 0x0500440d, 0x11231124, 0xfc432634, 0xfeb62a08, 0x01faf83e, 0x9180f30a, 0x07f743f8, 0xf1e4de2a, 0xf6010afe, 0xf8fc7999, + 0x2005f343, 0x267f8299, 0x02f10611, 0x432e0026, 0x6c2206f3, 0x7b470301, 0x03012105, 0x20067b47, 0x26238296, 0x024a0707, 0x84c40126, 0x01432223, + 0x109f6d2b, 0xebff2f26, 0x5c07e404, 0xcf202382, 0x01232383, 0x6fd20054, 0xc3820d7b, 0x98fe9124, 0xeb820305, 0x60000b21, 0x03251aab, 0x01022c04, + 0x05a65a00, 0x41000321, 0x0426087f, 0x132b2fb0, 0xe6821133, 0x23390382, 0xf3912111, 0xfef38c02, 0x37fef34a, 0x12fbb005, 0x50faee04, 0x680198fe, + 0x07735000, 0x05f90427, 0x000602b0, 0x26108224, 0x00940002, 0x82c10400, 0x000c3277, 0x40440015, 0x0d0d0d12, 0x10140d15, 0x0a0b0c0e, 0x0c674108, + 0x01002528, 0x04050106, 0x0d420501, 0x08145d05, 0x83040021, 0x001b2126, 0x20094947, 0x05064221, 0x82230021, 0x08024208, 0xfd2c042f, 0xf234015b, + 0xebfe1401, 0x03d9fdf1, 0x360d8398, 0x878c8c87, 0xa7feed04, 0xffcdccfb, 0xfdb00500, 0x9cf1fd21, 0x7c956d71, 0xcc2009cb, 0x2520a784, 0xa783b784, + 0x0f832c20, 0x826e0121, 0x00022620, 0x0599fe23, 0x20b782db, 0x2bb7820e, 0x15124043, 0x0e121314, 0x080b0c0d, 0x6d050e72, 0x242309d9, 0x82000102, + 0x190028ac, 0x04070700, 0x821b0000, 0x160727af, 0x03020506, 0x0d830103, 0x565b0120, 0x01440807, 0x11211123, 0x32331123, 0x21011b12, 0x06013311, + 0x11210702, 0xf3db0521, 0x60f32efc, 0x2110747c, 0xfcbc7b03, 0x424b0c9c, 0x60fe4e02, 0x66019afe, 0x290299fe, 0x51014901, 0x12fb5402, 0xfee29a02, + 0x2b046bb3, 0x6006ff5d, 0x0027084f, 0x00100001, 0x82dc0600, 0x001525a7, 0x15164046, 0x23076b43, 0x07090a0b, 0x2d44a986, 0x13232f08, 0x05000208, + 0x01071501, 0x00010205, 0xe6820501, 0x06081d2a, 0x07040402, 0x02030916, 0x0423a884, 0x732b2fb0, 0x0127053e, 0x21010921, 0x82113301, 0x080a8401, + 0x4a3e0421, 0x8dfe50f2, 0xdd01d1fe, 0x250144fe, 0xf2446801, 0x0163013f, 0x0147fe25, 0x02d2feda, 0x8385fd7b, 0x07032703, 0x9cfda902, 0x03846402, + 0xf9fc5726, 0x68000100, 0x2106174a, 0x9618002a, 0x20227507, 0x856e1504, 0x04142705, 0x3f242221, 0xcb4b3301, 0x34490805, 0x35012b26, 0x969da502, + 0xa97e9fa4, 0x010602ea, 0x0601e336, 0x74842f01, 0xbafe8c83, 0xfee3fafe, 0xea0205b6, 0xb9a08bb1, 0x03bda3a6, 0x5f687647, 0x065c797e, 0xc8d8dfb3, + 0x2b2fa664, 0xe4c97cad, 0x6206cdd6, 0x7a678385, 0x066b4f75, 0x0000962c, 0xb0050705, 0x2c000b00, 0x7d7d0a40, 0x08055107, 0x040a1526, 0x01000102, + 0x11398218, 0x33012808, 0x27112311, 0x33112301, 0x14041711, 0xfd06f3f3, 0x06f2f27a, 0x50fab005, 0xfb021404, 0xfbb005ea, 0x000002ed, 0x8400ffff, + 0x5c07215f, 0x23070744, 0x19015401, 0x420de343, 0x0520051b, 0x200b7761, 0x2093822e, 0x2693820a, 0x4039000f, 0x71000010, 0x09240507, 0x02030407, + 0x09318718, 0x01001c2c, 0x00000401, 0x0401051b, 0x52180704, 0x04220eca, 0xcf442fb0, 0x10112405, 0x46012b02, 0x052a0530, 0x28fef30a, 0x2830fce5, + 0xa5846d8a, 0x24080f46, 0x02430108, 0x085b43a3, 0x20169761, 0x22cb842b, 0x82ebff69, 0x062361a7, 0x00ffff23, 0x24a78597, 0x7b010602, 0x07e74900, + 0x2808e360, 0x6d00ffff, 0xc804ebff, 0x202f8305, 0x601f8426, 0x00230c77, 0x822f0001, 0x82e4201f, 0x001525e7, 0x150c403f, 0x11537018, 0x010c262a, + 0x010b0003, 0x15020302, 0x0b577018, 0xf650ee84, 0x83052009, 0x331723ed, 0x70182101, 0x2e081057, 0x06335802, 0x0c014701, 0xa93beffd, 0x2d683f9d, + 0x2352281c, 0x1e1b5e52, 0x0a010ffe, 0x03941e03, 0x8552fb26, 0xb5121592, 0x434d0f0b, 0x842f0444, 0x06fb60a3, 0x8020d382, 0x37600f84, 0xfe8e240f, + 0x82c10599, 0x000b22b3, 0x16976237, 0x04001c3b, 0x02000401, 0x00010219, 0x03160700, 0x05010101, 0x001b0200, 0x05080505, 0x0a914517, 0x2311333a, + 0xf38e2111, 0xc0f38d02, 0x05bffbf2, 0x0413fbb0, 0xfd15fbed, 0x006701d4, 0x0025ec82, 0x0400008f, 0x246782e9, 0x403f0013, 0x22118210, 0x4f130013, + 0x03420509, 0x1222260a, 0x03020301, 0x20048201, 0x06fc5b15, 0x1d000124, 0x6f700405, 0x00002305, 0x6f840008, 0x68820120, 0x23010e26, 0x11352422, + 0x0806084f, 0x04113728, 0xaf4ef3e9, 0xf2fefd5f, 0x549484f3, 0xb00552b6, 0x410250fa, 0xf0df1615, 0x35fecb01, 0x15177398, 0x0100aa02, 0xc0829300, + 0xeb84ac20, 0x12403622, 0x0b258382, 0x090a0b00, 0x06a04408, 0x23080b5c, 0x03050617, 0x07208482, 0x8305844f, 0x040423ea, 0x34500408, 0x057b4606, + 0x2111332d, 0x02860111, 0x1f02f222, 0x46e7f8f3, 0x8046057c, 0x825d8205, 0x9efe2367, 0x09827108, 0x42000f24, 0x67821640, 0x0f000f23, 0x3ea3180e, + 0x081f4b0c, 0x05001f22, 0x02230182, 0x85070819, 0x22eb8272, 0x83060000, 0x06062373, 0xee860608, 0x33207387, 0x7789f882, 0xf9f3c523, 0x25798915, + 0xe3fd0bfb, 0x73826201, 0x02000028, 0x00000300, 0xeb466405, 0x8203202f, 0x1b002135, 0x0720ad82, 0x0ab65818, 0x17020827, 0x2b2fb005, 0x14eb4613, + 0x27020322, 0x2109ea46, 0x0d83ccfe, 0x2906a449, 0xcdccfbe4, 0xed0400ff, 0xea46e4fd, 0x00032206, 0x20d78294, 0x3093824e, 0x000e000a, 0x40410017, + 0x0f0f0f14, 0x12160f17, 0x06194110, 0x46020621, 0x202c09cb, 0x01070000, 0x06000506, 0x041d0001, 0x24057e5d, 0x01010505, 0x07474a02, 0x92820420, + 0x32210123, 0x05464a04, 0x49013321, 0x87200c83, 0xf3269389, 0xf3f3c704, 0x3b4a39fb, 0x94032105, 0x05239484, 0x4750fab0, 0x00200c83, 0x31091b48, + 0x0013000a, 0x0b10403b, 0x0b130b0b, 0x0a0c0e12, 0x95820809, 0x2808b762, 0x0500001e, 0x00030401, 0x05e54a04, 0x1a500720, 0x37431805, 0x2093890c, + 0x259f8219, 0x26343536, 0x8f8b0123, 0x0948898e, 0x00012609, 0x04ecff89, 0x25534dd7, 0x0701012a, 0x03010e06, 0x08150202, 0x05370982, 0x29050706, + 0x03040200, 0x29030204, 0x04000500, 0x00040502, 0x4d001d00, 0xc3500847, 0xb008310e, 0x27132b2f, 0x32330026, 0x10011900, 0x00222300, 0x23078c46, + 0x3521013d, 0x0807c45b, 0x05029055, 0xfafa2301, 0xc9fe3701, 0xe0fefdfa, 0x96ea0205, 0xfdaa9396, 0xaa0202fe, 0x03969593, 0x01db06d4, 0xfea8fe11, + 0xfeebfef5, 0x01aafef4, 0x9306e504, 0x3cb4ea9a, 0xecb417c4, 0x0000939c, 0xffad0002, 0x05f106eb, 0x001500c5, 0x407b0023, 0x1a1f2112, 0x41111318, + 0x072206eb, 0x59620204, 0x0026270c, 0x07010004, 0xb6850104, 0x0001032d, 0x0301051b, 0x00160703, 0x82000707, 0x8202200c, 0x000e2618, 0x401b0517, + 0x84288a2e, 0x08c37620, 0x8705e350, 0x00002431, 0x60000e00, 0x102e06df, 0x00202100, 0x11233511, 0x11331123, 0x0e853533, 0x210d7d68, 0x7768f106, + 0xf3a92807, 0x4701a9f3, 0x68010601, 0x55200c7b, 0x29077968, 0x0599fd12, 0x307bfdb0, 0x8e180a01, 0x0830141b, 0x3d040000, 0x0d00b005, 0x3f001600, + 0x14160e40, 0x2006dc42, 0x09395c07, 0x0224402e, 0x01050301, 0x00050015, 0x03050003, 0x5960f183, 0xda8c1808, 0x0129290c, 0x35012e01, 0x21332434, + 0x4108b882, 0x22230121, 0x16141506, 0x0c01013b, 0x4801fcfe, 0x17018381, 0xf3e401f6, 0x1f01e1fe, 0x92908bf1, 0x8c02f189, 0xcb85bc38, 0x0250fae0, + 0x7ea70246, 0x008d706f, 0x5300ffff, 0x0204ebff, 0x06024e04, 0x7b584400, 0x34200808, 0x20001306, 0xa3002e00, 0x21221840, 0x27290001, 0x2e222e21, + 0x1516191b, 0x06081113, 0x20012000, 0x32099762, 0x3c405824, 0x03020117, 0x05021d1e, 0x06010e00, 0x18150305, 0x290ed55c, 0x01081607, 0x01000505, + 0x1a561b00, 0x05a85106, 0x23058b5d, 0x3a401b08, 0x02253e8f, 0x02000400, 0x05fc6f04, 0x3c9b0920, 0x21069b62, 0x6d5e1d12, 0x013d3705, 0x3537013c, + 0x3e371210, 0x17333501, 0x0e070616, 0x3e011f01, 0x6e611701, 0x0245080c, 0xfef9d863, 0xfee9e7f7, 0xf9f501f7, 0x02ba8c85, 0x95dee005, 0x390303a6, + 0x7d803faa, 0x7e7f827d, 0xfe4e047f, 0xf315f2cb, 0x3401ccfe, 0x0a0715f3, 0x4301e606, 0x040b2601, 0xb2064037, 0x8c04048b, 0x5442057f, 0x0c7c61c3, + 0x8800033a, 0x33040000, 0x0e003a04, 0x20001700, 0x16404f00, 0x00000f0f, 0x181a1e20, 0x8205bd44, 0xcb961817, 0x08587927, 0xe4660620, 0xb0062605, + 0x11332b2f, 0x0b7f6321, 0x2108464c, 0xe8823325, 0x26344108, 0x0188012b, 0x60efd7b7, 0xe1776f58, 0x01f6fece, 0x5c5e5e0a, 0xd3f6fe60, 0x696a6263, + 0x973a04c5, 0x1f774c95, 0x98588718, 0xfecd019d, 0x404145f3, 0x3e01ae47, 0x0041433b, 0x7e000100, 0x46030000, 0x9b6cb782, 0x11c4591e, 0xfe46032a, + 0xc802f32b, 0x8afc7603, 0x00293e82, 0x00020000, 0x049afe47, 0x2c0c82ef, 0x0016000f, 0x02164048, 0x14151600, 0x09d14613, 0x020f0023, 0x08d1460f, + 0x6f052521, 0x192305ce, 0x4c070700, 0x0a250679, 0x08020616, 0x08d05303, 0x17040823, 0x27fa8205, 0x3632013f, 0x11211337, 0x0805d546, 0x01112335, + 0x2107010e, 0x248a2111, 0x180e454e, 0xf292f602, 0x01f33dfd, 0x242609fa, 0xe3fe7c01, 0xf1db01c2, 0x88fcab01, 0x6601d8fd, 0x28029afe, 0xe29dcd01, + 0x42a7024e, 0x032705e3, 0x024f04eb, 0x82480006, 0x820120ab, 0x060022a1, 0x4cab8201, 0x0a203a87, 0x2217874c, 0x82113313, 0x21133c01, 0x03210109, + 0x46f246ca, 0xccfefefe, 0xa0fe7a01, 0x37ff2c01, 0x01ff38f2, 0x829ffe2d, 0x01cb240e, 0x834dfeb3, 0x3f022703, 0x57fefb01, 0x0384a901, 0xc1fd0522, + 0x5d279f84, 0x0304ecff, 0x4c004d04, 0x10225587, 0xa2180016, 0x6a181c8f, 0xa2180b62, 0x4008128f, 0x69636436, 0xe8775a65, 0xbdfd0602, 0x5561f6d1, + 0xf7fe6862, 0xf2febdd2, 0x7be80206, 0x6f786868, 0x8002c26b, 0x523a3f47, 0x8f063c4f, 0x4897a4b1, 0x80212479, 0xacaf975a, 0x5b4006a3, 0x484d3f57, + 0x42e282af, 0x0423057b, 0x4c3a040a, 0x7b182283, 0x834c0dc9, 0x1803260a, 0xfe06f2f2, 0x2c04825e, 0xc6fb3a04, 0xfd02ce02, 0xfd3a0430, 0x05834c33, + 0x00007e32, 0x05060a04, 0xe4012602, 0x07010000, 0x8d005401, 0x820dbf7f, 0x828e2083, 0x82642023, 0x000c2683, 0x0c0e4039, 0x08e6490b, 0x2208c361, + 0x180a1e40, 0x230e8384, 0x02020104, 0x169b4c18, 0x01092108, 0x6eee0121, 0x0155f2f2, 0xfe2d0141, 0xfeb90168, 0xfeac01c4, 0xfe3a0454, 0xfdb00150, + 0x00cafdfc, 0x00218882, 0x83738216, 0x27e74cf7, 0xe74c0a20, 0x3722081c, 0x35363233, 0xf20a0411, 0xddb6c5fe, 0x67240134, 0xfb3a0448, 0xfe7603c6, + 0xfec0fef7, 0xe8b8cdd3, 0xe785cd01, 0x826e0521, 0x217383e7, 0x96180f0e, 0x0a242703, 0x02030416, 0x0aaa9018, 0x96180120, 0x21080c03, 0x0106fb02, + 0xf330013d, 0xa5dbfe06, 0xf206dbfe, 0x32013201, 0xc6fb0803, 0xfd01c002, 0x01c4023f, 0x70823dfd, 0x2006e741, 0x200a8209, 0x4f98180b, 0x160a2227, + 0x0a961802, 0x0589500b, 0x33360582, 0xfef30904, 0x01f3f35b, 0xb501f3a5, 0x3a044bfe, 0xc3013dfe, 0x53610000, 0x417e2013, 0x9f5e0663, 0x09c76e16, + 0x21286b93, 0xfef30a04, 0x8c03f35a, 0x2506dd44, 0x8000ffff, 0xb36160fe, 0x82532006, 0x00012170, 0xad338c18, 0x3c000126, 0xe9030000, 0x2539af5f, + 0xf3a0fee9, 0xaf5fa6fe, 0xffff2e0b, 0x4bfe1000, 0x3a04fc03, 0x5c000602, 0x3b5e8200, 0x60fe5100, 0x1806bb06, 0x2d001f00, 0x5e003b00, 0x37391640, + 0x292b3032, 0x1b1d2224, 0x079d4418, 0x51020421, 0x3b2208df, 0x39820609, 0x27343531, 0x06070426, 0x03021619, 0x00150307, 0x18090101, 0x2908038f, + 0x00000102, 0x01081610, 0xea490707, 0x160e3c07, 0x0c040400, 0xb0071704, 0x10132b2f, 0x16323312, 0x11331117, 0x3233013e, 0x62151112, 0x0e24082d, + 0x02222301, 0x2006645b, 0x06986a07, 0x16142124, 0x49183233, 0x240808a1, 0x55c9de51, 0x34f23387, 0xdfc85a8d, 0x8e5bc6df, 0x8833f234, 0x05dec756, + 0x4c7c7c77, 0x6b20206b, 0xfb7a7c4e, 0x1884187c, 0x3c25080f, 0xfd3e0238, 0xfe413eb7, 0x15fdfec3, 0x3edffeed, 0x01fcfd3b, 0x013938fc, 0xa715ec22, + 0xfe3c43d6, 0xb73f3919, 0x32841895, 0xffff290c, 0x00002100, 0x3a04ed03, 0x5b2de982, 0x01000000, 0x9cfe7e00, 0x3a049b04, 0x25474f00, 0x474f0a20, + 0xf37e341e, 0x91f3a601, 0x04d6fcf3, 0x0388fc3a, 0xfd88fc78, 0x846401da, 0x82742067, 0x04f53177, 0x0013003b, 0x130c403a, 0x0a0d0f12, 0x01040609, + 0x25093d62, 0x03011121, 0x434f0202, 0x05d9440e, 0x082e3f82, 0xb0041700, 0x23212b2f, 0x23010e11, 0x414f2622, 0x03333f0a, 0x6530f3f5, 0xf2efd832, + 0x61356e67, 0x6901f331, 0xcece0b0b, 0xb4fe4c01, 0x0c0b6474, 0xe3840c02, 0x05000023, 0x4fe384fb, 0x7f43223f, 0x00042405, 0x4f001b02, 0x7128153f, + 0x01f35201, 0x83faf253, 0x0323e387, 0x82c6fb78, 0x0001265d, 0x0699fe7e, 0x4f0982c3, 0x0a212f3f, 0x233f4f16, 0xc8237786, 0x89adfaf2, 0x90fc2579, + 0x6701cffd, 0x00287382, 0x1f000200, 0xe7040000, 0x2b560b82, 0x08092311, 0x93570206, 0x00252e09, 0x05010600, 0x01050004, 0x02001d00, 0x09176302, + 0x01040422, 0x3108986a, 0x2b2fb005, 0x16323301, 0x23061415, 0x35211121, 0x0d821921, 0x35362808, 0x02232634, 0xe7cced47, 0x20fecbe8, 0x2802cbfe, + 0x5f5e62ed, 0xc2c10261, 0x03c69d9c, 0xc4fdc377, 0x4459c4fe, 0x82005e41, 0x00032600, 0x050000a2, 0x4f8f82bc, 0x0a22333b, 0x3b4f0016, 0x4f8e8811, + 0x3321063b, 0x21908432, 0x90869501, 0x2704f326, 0xd9fbf3f3, 0x0425938a, 0x04c6fb3a, 0x2696883a, 0x008e0002, 0x84210400, 0x2a334f93, 0x03238c82, + 0x4f010103, 0x8b890c33, 0x21081841, 0x87878101, 0x7d88818c, 0x0100002c, 0xebff5200, 0x4e04e803, 0xcf552100, 0x1d1e2305, 0x91181b1c, 0x21220adf, + 0x914a2101, 0x05433e08, 0x1a000101, 0x12060401, 0x03040501, 0x00010015, 0x07010007, 0x06040029, 0x05040605, 0x270d8229, 0x06070406, 0x081d0000, + 0x23097765, 0x05001610, 0x0a81aa18, 0x2fb00832, 0x0622012b, 0x26272315, 0x00323336, 0x0014011d, 0x080ab87e, 0x21273743, 0x2e372135, 0x55010201, + 0x0503dc76, 0x01e4b0ff, 0xe3fdfe03, 0x0205f1bf, 0x6e5a72dd, 0xfe030876, 0x024c01b3, 0x8b03750a, 0x97064f69, 0xe9c9fede, 0xc9fee923, 0x5a06afe2, + 0x057aa47b, 0x997505a8, 0x26008200, 0xff8f0002, 0x822e06eb, 0x821320d3, 0x40ad22d5, 0xc3451812, 0x0e0f2307, 0x8c830a0c, 0x250e334f, 0x06030000, + 0xb7820300, 0x07070022, 0x1b24e182, 0x01010105, 0x0625b782, 0x00010206, 0x0832681b, 0x19b04b25, 0x822a4058, 0x232c945e, 0x16080404, 0x097c6c18, + 0x17020e26, 0x2e401b06, 0x05232c8a, 0x86160a05, 0x8400205e, 0x7d30905d, 0x332206b7, 0x18412436, 0x27002c08, 0x11231123, 0x16140133, 0x18363233, + 0x0808464e, 0x1ad1822e, 0xe9ce0101, 0xf7fe0901, 0xfcfed5e7, 0xf3f3cf14, 0x827cbe01, 0x817f7f7f, 0x88027d7f, 0xcbfefbcb, 0xfef415f2, 0xd50401cd, + 0x3a043cfe, 0x23069966, 0x9bc9c99b, 0x02228f82, 0xee824100, 0x3a04f930, 0x16000d00, 0x12404400, 0x13150000, 0x0d821012, 0x5e580c20, 0x08bd5305, + 0x01072530, 0x15010401, 0x01000400, 0x00010400, 0xc8411d00, 0x01062106, 0x23075763, 0x05170008, 0x08065056, 0x2303233a, 0x35012e13, 0x03333634, + 0x013b1614, 0x06222311, 0xe3f2f903, 0x64fffce7, 0xc3cbeb6b, 0xe0ed595d, 0x3a046360, 0x8d01c6fb, 0xb50173fe, 0x98659d29, 0x3fa0fec2, 0x5f38015a, + 0x18069b48, 0x18219b66, 0x39175766, 0xe9ff0100, 0x0c044bfe, 0x27001806, 0x16406100, 0x24252627, 0x20212223, 0x5f691e1f, 0x82062005, 0x085347bd, + 0x82023e21, 0x011d32d4, 0x010f0405, 0x15030302, 0x06070109, 0x07010001, 0x22df8300, 0x70090808, 0x10210a9e, 0x2df08216, 0x03001608, 0x00010203, + 0x0202001b, 0x465f0212, 0x11232c05, 0x3233013e, 0x14111516, 0x18222306, 0x23076d91, 0x26341135, 0x0722f482, 0x5e182311, 0x3e080743, 0x36c73702, + 0xc1ac5e9b, 0x3c24a5ba, 0x3c100f20, 0x63413a16, 0x24724e62, 0xf39494f3, 0xfebf04c7, 0xd9544cef, 0xb32efde2, 0xbf0908c3, 0x555e0805, 0x737fd402, + 0xe1fc3137, 0xbc9dbf04, 0x4effffbc, 0x05260577, 0x012602f2, 0xa18300df, 0xb800762e, 0x08000400, 0xb00101b1, 0x2b0db004, 0x260c6349, 0x406a0021, + 0x43000116, 0x473a1abb, 0x05040112, 0x0406011a, 0x0701011f, 0x01000105, 0x04001504, 0x04050605, 0x5c832906, 0x0001072a, 0x00060029, 0x07060107, + 0x8209e941, 0x161021fa, 0x200acb43, 0x0500410e, 0x19ae9518, 0x21170727, 0x1e072115, 0xb2951801, 0x73742b13, 0x56010206, 0x0802abfe, 0x9518ad72, + 0xa23610ba, 0x05a80579, 0x00009978, 0x5200ffff, 0xcf03ebff, 0x06024e04, 0x0f845600, 0xfd829020, 0x18068322, 0x4c200f82, 0xff240f83, 0x020000a0, + 0x1cdb6718, 0x18ffff21, 0x8207c391, 0x004d2133, 0x00272e82, 0x06000030, 0x5f3a04ab, 0x0a203f87, 0x4515875f, 0x212d0878, 0x2b021011, 0x32013f01, + 0x01113536, 0x060b4611, 0x450b0421, 0x2d080683, 0xdec3edfe, 0x63240134, 0xedf9025a, 0x625e5e62, 0x87fe3a04, 0xc69d9cc2, 0xf7fe7603, 0xd0fec3fe, + 0xdbcc01c5, 0xc5fdcd01, 0x4560c1fe, 0xb7845941, 0xb7827e20, 0xb782a920, 0x1b001225, 0x5f407900, 0x4b301e7f, 0x40580eb0, 0x00010222, 0x04020809, + 0x01040007, 0x21057b5f, 0x7b5f160a, 0x1b04210d, 0x8f1aa85f, 0x5905282c, 0x012b2fb0, 0x82331121, 0x077847cd, 0x11231123, 0x24dd8833, 0xa5017101, + 0x2de087f3, 0x02f3f35b, 0x5f61ed98, 0x9f02625e, 0xdd859b01, 0xfedd0125, 0x883a0423, 0x000128d5, 0x04000018, 0x8218060c, 0xb75d18d1, 0xfea7246d, + 0x189b36c9, 0x28095194, 0x01f36565, 0xfeba0437, 0xb75d18f4, 0xaaba230e, 0xcb70b4b4, 0x05642608, 0x012602f1, 0x057f43e6, 0x003b0123, 0x057f4303, + 0x0db00323, 0x2023842b, 0x22cb827e, 0x4ff3050a, 0x0023073f, 0x679f0043, 0x6a1805d3, 0x102a0acf, 0xfc034bfe, 0x26020506, 0x47825c00, 0x54010624, + 0x4585554f, 0x45835520, 0x7e000124, 0xe34f9afe, 0x593a2006, 0x1b251a4b, 0x03020300, 0x2c46822c, 0x160a0101, 0x02000000, 0x041b0200, 0x09784e01, + 0x2a09cb5f, 0x01710111, 0xb5fef3a6, 0x49b2fef3, 0x2b080595, 0x9afec6fb, 0x3a046601, 0x6e000100, 0x3b07ebff, 0x3c00c505, 0x18406300, 0x3133383a, + 0x2b2c2d2e, 0x2426292a, 0x16181d1f, 0x090b0f11, 0x09d9ac18, 0x3e402508, 0x0402001a, 0x021b3c00, 0x282f0407, 0x0d060502, 0x04050101, 0x08070015, + 0x07050601, 0x1d000006, 0x0404010a, 0x1b285382, 0x00000103, 0x0109160d, 0x200c3b78, 0xd6951806, 0x061b5707, 0x0e272625, 0x84222301, 0x1833200c, + 0x22089497, 0x4c141115, 0x23240574, 0x23152135, 0x4506884c, 0x7e080648, 0x7e374b04, 0x1a01dc45, 0x71e2dcfe, 0xaf4141af, 0xddfee370, 0x44dd1901, + 0x273c377f, 0x9176355e, 0x6c5f7a99, 0x7402c01c, 0x606c1bc1, 0x75929b78, 0x05275d36, 0xfe16149b, 0xfef9feb2, 0xfef8fed0, 0x2c2c33b3, 0x014d0133, + 0x01300108, 0x164e0107, 0x1311bd14, 0xcefeaee2, 0x2635e3b0, 0xb6b62901, 0x3526d7fe, 0x3201b0e3, 0x1113e1af, 0x01000000, 0x00002000, 0x3a046e05, + 0x77001800, 0x66181240, 0x0e250644, 0x0608090d, 0x09497105, 0x2cb04b37, 0x04254058, 0x01010501, 0x01050015, 0x00050100, 0x00010229, 0x25028204, + 0x02030727, 0x22440101, 0x04082605, 0x401b0517, 0x2c27882b, 0x02050102, 0x00020029, 0x27000201, 0x702d9300, 0x17260563, 0x03133733, 0x06821333, + 0x27123628, 0x07010a33, 0x01820323, 0x33013508, 0x0616f801, 0xf4716b1d, 0x070614ab, 0xfb083f51, 0xcf88980a, 0xcc890678, 0x01fb7efe, 0x016f6f6e, + 0xfd72015a, 0x931b6434, 0xfedea401, 0xf7e9fdd4, 0x77fe8901, 0x0222c982, 0x6c82e6ff, 0xb005c123, 0x15bf6300, 0x4706b161, 0x2a24081b, 0x03040106, + 0x042dd382, 0x1d000000, 0x01090100, 0x08010708, 0x290a8201, 0x16070505, 0x02070700, 0xb6610201, 0x1523210b, 0x2908a559, 0x35333523, 0x03331533, + 0xff4a2111, 0x75022205, 0x093c5aee, 0xf3aeae23, 0x320e82ee, 0x878c8c87, 0xfbb34704, 0x00ffcdcc, 0xbfaa4704, 0x5ae0fdbf, 0x022206d3, 0xa782e7ff, + 0x1a062122, 0x0920a7c1, 0x2120a792, 0x8209bb44, 0x331123a7, 0xbd442111, 0xa3022308, 0xbc44defe, 0xa7a72406, 0x822201f3, 0x5e62340d, 0x4404615f, + 0x9cc27dfe, 0x4404c69d, 0xfe2c01aa, 0x4c10fdd4, 0x01360943, 0xecffae00, 0xc6059b06, 0x09012900, 0x28291a40, 0x20212325, 0x2f421b1d, 0x090c2708, + 0x01040608, 0xd1650c00, 0x4b220806, 0x405817b0, 0x09011f42, 0x01010a0a, 0x00150202, 0x0a070a09, 0x00290709, 0x00010002, 0x0b290102, 0x2d820701, + 0x7f480220, 0x0a0a2e05, 0x1b000106, 0x06060108, 0x01001607, 0x08d34f01, 0x08170329, 0x19b04b1b, 0xa6464058, 0x22408448, 0x82080a0a, 0x0800234d, + 0x4c8e0d08, 0x401b0923, 0x2248b74a, 0x87080505, 0x0300274d, 0x17030e03, 0x2146590a, 0x05206a05, 0x17333526, 0x22230016, 0x680c255a, 0x04280d6b, + 0xb053fedf, 0xea9b9598, 0x25076968, 0x9ff3f39f, 0xad183801, 0x013b0ba4, 0x206e02ad, 0x939cebb5, 0xf1fedc06, 0x0b015701, 0x0592fd20, 0x3182fdb0, + 0x18010a01, 0x3a08adad, 0x00000033, 0xff8d0001, 0x048b05eb, 0x0127004e, 0x271a4021, 0x1f212326, 0x43191b1e, 0x102106ba, 0x138b410e, 0x011d4a31, + 0x01250a09, 0x01020907, 0x010a0002, 0x41040201, 0x0a202793, 0x410e4641, 0x4e200693, 0x4e4150bb, 0x1b092310, 0x50ae5240, 0x82060621, 0x08ec4199, + 0x1807b54a, 0x41089882, 0x07200aa3, 0x2605827c, 0x06161733, 0x4c022223, 0x1125055b, 0x33123633, 0x08ae7332, 0x17072d08, 0xfe300421, 0x730602c7, + 0xdc735375, 0xaff90402, 0x7d11fbda, 0x137ef3f3, 0xecbdd6fb, 0x6edc0204, 0x08737159, 0x01380102, 0x9e7c05cc, 0x0805c749, 0xfed40d23, 0xfe3a0434, + 0x0801d03c, 0x5906afe3, 0x05759b7c, 0x00020000, 0x05000020, 0x00b0050e, 0x000f000b, 0x01581840, 0x00212f1a, 0x04060407, 0x00290607, 0x00010206, + 0x3b820601, 0x04001d26, 0x05160704, 0x0810c364, 0x01230320, 0x01230133, 0x03230321, 0x7ddd8a8a, 0x0702fb8b, 0xfb0002e7, 0x6701d2fd, 0x9a0106af, + 0x038366fe, 0xfab00527, 0x02550250, 0x2747820c, 0x00000a00, 0x3a044504, 0x11208382, 0x10218383, 0x0c3c600f, 0x9109275f, 0x83002083, 0x990a2083, + 0x03333c83, 0x02072327, 0x5bc35de4, 0xa901f768, 0xf7ab01e7, 0x64f85cfe, 0x01160616, 0x83e9fe17, 0x3a043903, 0xc401c6fb, 0x58580601, 0xc0000200, + 0x1f070000, 0x1300b005, 0x4c001700, 0x224b6718, 0x0b00253f, 0x0b010001, 0x010a2900, 0x02050700, 0x03000203, 0x091d0200, 0x07010101, 0x04060816, + 0x09f74703, 0x33012127, 0x23032301, 0x23018211, 0x21132303, 0x25080782, 0x03210133, 0x01b30123, 0xe7320153, 0x89fb0002, 0x8a7edd8a, 0xf0fe92fb, + 0x4302f3f3, 0x06af6701, 0x5a035602, 0x2d4150fa, 0x05314107, 0x41a5fc21, 0xb026052f, 0x04060000, 0xa7823a04, 0xa7831920, 0x77171821, 0x74610569, + 0x08dd440e, 0xa7994020, 0xa78e0a20, 0x8b133321, 0x05d64ea7, 0x27033338, 0xa3010723, 0x01e7f8d7, 0x5d6af7ab, 0xf7685bc3, 0xf3f3936d, 0x4841c601, + 0x02c42405, 0x41c6fb76, 0x5241074e, 0x8afd2605, 0x58580601, 0x22008200, 0x82840002, 0x05693aab, 0x001c00b0, 0x404d001f, 0x1c1e1f14, 0x15181a1b, + 0x0d0f1114, 0x05080a0c, 0x0b136f04, 0x00011d32, 0x020b0e08, 0x15020201, 0x04000106, 0x00010201, 0x1d2a0282, 0x07080800, 0x001b0000, 0x6c420707, + 0xb0052809, 0x16012b2f, 0x69111504, 0x072005fb, 0x27230782, 0x84062223, 0x2437080f, 0x2101013b, 0x04211301, 0x0001f574, 0x698d80f3, 0x8002f209, + 0x01f37e8e, 0xfe0cfb04, 0xfddc0485, 0x1cfef292, 0xd7032b03, 0x019cfeed, 0x11709264, 0x6302abfd, 0x83927003, 0xd7f0270d, 0x86fd8502, 0xbb85b501, + 0x00008232, 0x3a046405, 0x1d001a00, 0x16404f00, 0x1c1d0000, 0x1a2c0b82, 0x13141517, 0x0b0c0f11, 0x03040506, 0x26087551, 0x02071b2c, 0x64120700, + 0x052606ec, 0x00020301, 0x37820103, 0x155c0720, 0x08124209, 0x3324bd83, 0x37363435, 0x1e29a782, 0x23011d01, 0x2b263435, 0x82c48301, 0x011d21c3, + 0x3308bb82, 0xfec6cd82, 0xfef403eb, 0xf3c8beea, 0x01247369, 0x67752df2, 0xfe958501, 0xd0d9a9d6, 0xfedb010d, 0xd5d01024, 0x6e8da9a9, 0x015ffe03, + 0xa98e6da4, 0x22016902, 0x043db383, 0x0000ad00, 0xb005a008, 0x07000300, 0x27002400, 0x1c405900, 0x23242627, 0x1c1d2022, 0x22b88219, 0x180d1012, + 0x200af7af, 0x06ff460d, 0x25304032, 0x160c0101, 0x00020213, 0x040a1502, 0x06080102, 0x01340982, 0x1d020100, 0x030c0c00, 0x0b1b0000, 0x07030301, + 0x05070916, 0x8305d442, 0x210127c1, 0x23012135, 0x87413311, 0x0a052b1f, 0xad0353fc, 0xf3f396fc, 0x91410b05, 0x6702281a, 0x05d5fcc4, 0x417bfdb0, + 0x04281f98, 0x00008f00, 0x3a045e07, 0x2234e384, 0x5e002500, 0x08081e40, 0x22082425, 0x1d1f2208, 0x17191b1c, 0x2005ad5d, 0x052a5107, 0xe5880020, + 0x01233325, 0x820f0b01, 0x011a2ad6, 0x15030002, 0x09010104, 0x21e78807, 0xe7830b0b, 0x0301052a, 0x0c160a03, 0x0406080a, 0x850af96a, 0x411320e8, + 0x042a1cb2, 0x0310fce7, 0xf39bfcf0, 0xbc41faf3, 0xa8012817, 0x049efdba, 0x41c6fb3a, 0x26081cc5, 0xfe290002, 0x07aa0340, 0x002c0078, 0x40660035, + 0x35000118, 0x2f313234, 0x25292b2e, 0x0a141722, 0x00050708, 0x4a2c012c, 0x2008080f, 0x2d303341, 0x0f060703, 0x02000501, 0x021c1d15, 0x01081203, + 0x2b060706, 0x07020700, 0x0001092b, 0x07b15500, 0x02010122, 0x22052251, 0x18001607, 0x2708bc4a, 0x0917030e, 0x012b2fb0, 0x2305114a, 0x32213521, + 0x2e09b869, 0x0622012b, 0x17161415, 0x27012e07, 0x853b3634, 0x2b320823, 0x37013501, 0x23051533, 0x01333525, 0x82808690, 0x01e5fe7d, 0x1101e11b, + 0x8b82707c, 0x35dcf3fe, 0x40583e44, 0x01a38451, 0x7633a5b8, 0x8f929988, 0x53182701, 0x3808074c, 0x62714e03, 0xcbc66f5a, 0x2ca46fb9, 0xca7dae2a, + 0x403037e3, 0x29991d4e, 0x8b8a7fb5, 0x7b78647e, 0x88a203c7, 0x13fafc11, 0x00020000, 0x0347fe33, 0x00200688, 0x0035002c, 0x20034169, 0x03414420, + 0x07002710, 0x07060206, 0x00412902, 0x0108260a, 0x16090606, 0x08064100, 0x06410a20, 0x5d9b1805, 0x0e064107, 0xbf6a1620, 0x41062007, 0x13201706, + 0x08080641, 0x6c729722, 0xe5fe6d71, 0xfed21b01, 0x71695861, 0x4731c9f7, 0x523d5442, 0xb101a178, 0x7a69309e, 0xdf977e83, 0x08070341, 0x4c6f0222, + 0xb9493a43, 0x794f91a0, 0x54792123, 0x3037ad98, 0x921d4e40, 0x8377b12e, 0x49405083, 0x2903a94a, 0x32050341, 0x4800ffff, 0x51050000, 0x0602b005, + 0x00008201, 0x7800ffff, 0x0f820603, 0x0000a223, 0xb34c1800, 0x000d3c09, 0x002e001e, 0x0f16405e, 0x262a2c0e, 0x1d212324, 0x0e14161b, 0x0b1e0f1e, + 0x44020409, 0x3b3e08a1, 0x02021119, 0x021f2804, 0x15020605, 0x06000400, 0x01060405, 0x01081d00, 0x07050002, 0x0a820502, 0x210c9772, 0x79180707, + 0x0724092e, 0x012b2fb0, 0x0cce4c18, 0x36320535, 0x26343537, 0x1d062223, 0x33013e01, 0x0e171632, 0x83222301, 0x06be480f, 0xb2180520, 0xfe3b1075, + 0x19552d72, 0xb9a1a6c2, 0x4d335721, 0x5722e3e7, 0x47d36131, 0x01145732, 0x18a79fba, 0x351489b2, 0x33202778, 0xb6eaeab6, 0x7a242044, 0x7a1f1d7a, + 0xe7b62533, 0xf782b9ea, 0xebff5332, 0x4e043404, 0x1d000d00, 0x65002d00, 0x1e1f1a40, 0x252df983, 0x1f2d1e23, 0x151a1c2d, 0x0f1d0e13, 0x43fb831d, + 0x3e240823, 0x03111718, 0x2724fc82, 0x05070321, 0x0924fd83, 0x04070501, 0xfe83f383, 0x02060723, 0x86fe8507, 0x161022f2, 0x0bd96300, 0xa118fe83, + 0x25200d59, 0x2e20fe82, 0x0622f082, 0xfd841715, 0x06220722, 0x3722f785, 0x16820e27, 0xa1182620, 0x023f0c6b, 0x0b3b2182, 0x776d7c11, 0x4010047c, + 0xf1a53625, 0x120b3921, 0x7c726b7a, 0x3f110405, 0x18974424, 0x360e82a1, 0x79212922, 0x0584b094, 0x40541f17, 0x8a751f29, 0x17057ea1, 0x8200551b, + 0x0011349a, 0x05240500, 0x001500c3, 0x150c4069, 0x0f121314, 0x1806080d, 0x35097952, 0x581bb04b, 0x010a2240, 0x15010102, 0x03020000, 0x29030002, + 0x0d820200, 0x041b0028, 0x0d010101, 0xd5710016, 0x401b2205, 0x20248226, 0x23248a04, 0x16070404, 0x00202986, 0xed4e2889, 0x0d447709, 0x01233008, + 0x1a690221, 0x30d41a06, 0x32216fa4, 0x1b041717, 0x15432f0d, 0xfde79ffe, 0x010401ff, 0x02696b8b, 0x099e9ffd, 0x0302c00d, 0x8ffb4140, 0x8300b005, + 0x002026bb, 0x04180400, 0x20bb994e, 0x20bb9b19, 0x64bb9b10, 0xb2570868, 0x99e48405, 0x013329bb, 0x110611e3, 0x67952d7a, 0x1c32bb84, 0x0c3c220c, + 0xfed3f6fe, 0x6e01fb92, 0xbe015252, 0xba839191, 0x29370426, 0x3a04e2fc, 0xff2dba82, 0x001100ff, 0x07240500, 0x02260244, 0x2eca8220, 0x045f0107, + 0x0056013b, 0x0201b109, 0x725601b8, 0xff21052f, 0x21df83e9, 0x23823206, 0x23852120, 0x00d70323, 0x05377a44, 0x87524420, 0xfe692a07, 0x0576094b, + 0x002600c5, 0x30588232, 0x055c0007, 0xff00007a, 0xfe5300ff, 0x0484084b, 0x2017824e, 0x21178552, 0x07828804, 0x69000432, 0x110576ff, 0x03002e06, + 0x15000700, 0xc7002300, 0x20075768, 0x2f51180c, 0x09235908, 0x40581634, 0x06000032, 0x21000603, 0x07070300, 0x02001f03, 0xb0820404, 0x09010124, + 0x37680016, 0x0707330b, 0x1b020104, 0x0e040400, 0x1b081704, 0x582eb04b, 0x38853340, 0x00290328, 0x03060703, 0x3a822707, 0x002c0222, 0x3582399e, + 0x01050123, 0x983a942b, 0x05874e6f, 0x33112323, 0x44038213, 0xa3680d52, 0x20032b0d, 0xc501c6c6, 0xfef001c5, 0xb618feb1, 0x042915bc, 0xf9aa0184, + 0x01b40148, 0x2851182b, 0x0004281d, 0x0488ff53, 0x41b40434, 0x01210747, 0x1e474106, 0x00332408, 0x01040401, 0x0700001f, 0x21000703, 0x06060300, + 0x02001f03, 0x20020505, 0x04070700, 0x001b0001, 0x41100404, 0x022f0554, 0x0505001b, 0x0817050e, 0x17b04b1b, 0x8f344058, 0x03072339, 0x3aa22706, + 0x40581923, 0x213a8b35, 0x75822903, 0x40213ba4, 0x21378233, 0xab852b01, 0x0221368b, 0x20ac992c, 0x08864159, 0x11230324, 0xa6182533, 0x022a1a34, + 0x03c6c6a9, 0xadfdc5c5, 0xa6180901, 0x0328123c, 0xfa99011b, 0xffa001d4, 0x1743a618, 0xcb540320, 0xde073f05, 0x4a003800, 0x91005000, 0x39392440, + 0x4a394e4f, 0x46484939, 0x3d3f4243, 0x34363a3c, 0xdb542d2f, 0x4a10200d, 0x60320795, 0x034c4d50, 0x1a4b0900, 0x00040300, 0x06021b38, 0xe2542b04, + 0x15052807, 0x090a0e00, 0x18090e0a, 0x3109ef49, 0x0e0a000c, 0x00010a0c, 0x0d010f1d, 0x0009010b, 0x0b82090d, 0xfd540820, 0x5407200c, 0x09200dfd, + 0x222bfd54, 0x4f153335, 0xf9540598, 0x01270806, 0x24222315, 0x1d062223, 0x34352301, 0x04323336, 0x37270133, 0x04153327, 0x4276335a, 0xfe1a01dc, + 0xaf72e2dd, 0x55b04140, 0x41260611, 0x243c3477, 0x11553157, 0xf3700806, 0x79606c1c, 0x3275929a, 0x21012357, 0xcdfe8124, 0x8638312a, 0x0147717a, + 0x37fe702d, 0xba013a51, 0x16149b05, 0xf0fea6fe, 0xecfe00ff, 0x3038a4fe, 0x5c013830, 0x00011401, 0x5a011001, 0x11bd1416, 0xfeb8ed13, 0x39f2bcfe, + 0x2a242429, 0x01bcf238, 0x13edb802, 0x86880211, 0x12333378, 0x786c6d25, 0x6f3d4bfe, 0x03007e90, 0xebff6700, 0x6f062a06, 0x21057f41, 0x7f41cc01, + 0xb04b252b, 0x6240580a, 0x2d358341, 0x0909010b, 0x1b00010d, 0x0d0d010f, 0x85411609, 0x1610210b, 0x270e8541, 0xb04b1b0a, 0x5f405814, 0x4b18689c, + 0xe44107d4, 0x0e002408, 0xae16070e, 0xe51f2065, 0x424020ce, 0x31414eb7, 0x43092010, 0x3e2606bf, 0x12323301, 0x3064011d, 0x010e2205, 0x98b11823, + 0x7e172008, 0x1a8205ef, 0x32331624, 0xba423736, 0x013d2707, 0x22232634, 0xba420706, 0x03700817, 0x39652cb3, 0xc2faf1bc, 0x3837925c, 0xfac35b92, + 0x6638bcf1, 0x461e3c2d, 0x71685627, 0x164e4759, 0x484e16f3, 0x546a7258, 0x011c4629, 0xfe822448, 0x373129cc, 0x47727a87, 0xfe712c01, 0x013b5237, + 0x142204ba, 0xedd4fe16, 0xd8feea36, 0x362e2e36, 0x36ea2801, 0x162d01ec, 0x1311bd14, 0x923895bf, 0x2f2734be, 0xbe34272f, 0xbf953892, 0x92021113, + 0x2709ae42, 0x896f3d52, 0x02000077, 0x2e062f44, 0x000b0007, 0x40860048, 0x46000028, 0x653d3f44, 0x1f29077f, 0x1b1c1d1e, 0x1015171a, 0x721f820e, + 0x12200acb, 0x08073144, 0x2e485146, 0x2d0d0602, 0x0609020c, 0x07021920, 0x0e013b08, 0x00150407, 0x2b010301, 0x03020511, 0x002b0300, 0x08010a09, + 0x00080907, 0x02041d02, 0x09000002, 0x06010c16, 0x00010d06, 0x0d01101b, 0x0b160d0d, 0x0e070701, 0x0f220d82, 0x00820e01, 0x27051b4d, 0x21372715, + 0x23352315, 0xec4a0382, 0x07545e05, 0x35331125, 0x64331521, 0x3427075b, 0x16323336, 0x592e3717, 0x36230941, 0x70011e37, 0x4c080877, 0xce020706, + 0x540301b2, 0x01b5a5b3, 0x365d2723, 0x789b9275, 0xc11b6c60, 0x1cc08cfd, 0x997a5f6c, 0x5e357691, 0x7f373c27, 0xe7fedd44, 0x70e32301, 0xaf4141af, + 0x2401e271, 0x45dce6fe, 0x9706377e, 0xefee017f, 0xfe7f7f7f, 0xe1131147, 0x112159af, 0x13e2ae24, 0x5959bd11, 0x8200201b, 0x00023a00, 0x05000020, + 0x00b1056e, 0x0124000b, 0x00224006, 0x1f222300, 0x171b1c1e, 0x06877b16, 0x59410c20, 0x570f200d, 0x14280821, 0x20414058, 0x01060801, 0x08054e41, + 0x02050e2d, 0x03000003, 0x0608001f, 0x0b08060b, 0x0b010d29, 0x070b0607, 0x02020427, 0x00070000, 0x01091b02, 0x16080707, 0x06020a0c, 0x84160a06, + 0x1707290c, 0xb04b1b09, 0x4040582c, 0x0321478f, 0x2146ae2b, 0x42994640, 0x0d0b002b, 0x270d0b06, 0x06070d00, 0x578f9e0d, 0xdf410616, 0x0123230b, + 0x01821333, 0x12363608, 0x02162313, 0x2723010f, 0x03132303, 0x01272307, 0x0301b2f2, 0xb597b338, 0x01fba1fe, 0x0689cc82, 0x9888cf78, 0x3f08fb0a, + 0x14060751, 0x6b71f4ab, 0x0516061d, 0x07a34141, 0xfbf93208, 0xfe8901c6, 0x1702f777, 0xfede2c01, 0x641b935c, 0x8efecc02, 0x6f6fa6fe, 0x00010000, + 0x048afe6a, 0x00c505b6, 0x40760019, 0x1217190c, 0x0a0d0e10, 0x09d36608, 0x17b04b2e, 0x0c2c4058, 0x02030201, 0x02040001, 0x08494018, 0x250c9e4d, + 0x00000404, 0x03821b00, 0x17000c26, 0x29401b06, 0x21822e92, 0x00210282, 0x23378a1c, 0x59051703, 0x24056b7a, 0x11350226, 0x7cc31810, 0x3b26080f, + 0xf2300301, 0x3501ffd5, 0x2001fcfb, 0x96eb0204, 0xaaaa9495, 0x8afe9694, 0x011f6801, 0x1501f14b, 0x58010b01, 0xc518fafe, 0x7f820989, 0x00010029, + 0x0389fe5c, 0x994e04f1, 0x9e1920cf, 0x161022cf, 0x20cfb400, 0x22cf8b10, 0x8234013d, 0x082357cf, 0x011d2f08, 0x013b1614, 0xb9f3d502, 0xe40201cd, + 0x0204f1be, 0x7c5a72dd, 0x927e7677, 0x6a0189fe, 0xce2a0120, 0x3801e823, 0x5906aee4, 0x2391cc7c, 0xc782c995, 0x00006d30, 0x3e059304, 0x34001300, + 0x0e0f0640, 0x62180405, 0x212408b7, 0x10111213, 0x25079556, 0x00010203, 0xd5180010, 0x08210a29, 0x052d7700, 0x25070528, 0x25132303, 0x03840537, + 0x82033321, 0x024b080f, 0x4821015b, 0xafb5ddfe, 0x47dffee1, 0xfeca2501, 0x230149de, 0x01e4acb9, 0xe0fe4c25, 0x80acc101, 0x01c1feaa, 0xab80ab8e, + 0x82ab6801, 0xfe4601ab, 0xaa7fab6b, 0x00010000, 0x03a2049d, 0x00fd0570, 0x409f0007, 0x0000000e, 0x52070007, 0x052005ce, 0x2d0b9143, 0x0300001a, + 0x00200003, 0x16090202, 0xfb7c0104, 0x03072a08, 0x4b1b0417, 0x405821b0, 0x21208219, 0x1f962c00, 0x40582423, 0x201f8517, 0x253c8201, 0x00030100, + 0x2a831d02, 0x0317022a, 0x0022401b, 0x2b020102, 0x59841e86, 0xf3821a20, 0x1b202282, 0x2a832b82, 0x46051821, 0x15360686, 0x27213727, 0x4f011517, + 0x220201b2, 0x2005b101, 0x6cee017e, 0xb482dc01, 0xb73ac782, 0xb1031705, 0x11001506, 0x10403900, 0x0e100001, 0x07080b0d, 0x11000204, 0x69761101, + 0x0aa14208, 0x0221c683, 0x08378202, 0x01051b38, 0x02070000, 0x2fb00417, 0x2432132b, 0x1d163233, 0x34352301, 0x04222326, 0xd935012b, 0x49300171, + 0x3a887d71, 0xcafe2b30, 0x9d052483, 0x256d6c78, 0x78333312, 0x3b820086, 0x1605c52f, 0x6006bc01, 0x1d000500, 0x01020440, 0x06314101, 0x050c4028, + 0x04000304, 0x99821200, 0x83022221, 0x33352f57, 0xc5071707, 0x523b01bd, 0x9684dc05, 0x3b824470, 0x3b82d420, 0x3b87cb20, 0x8a030421, 0x0102213b, + 0xec493b8b, 0x25012b05, 0xbe013a51, 0x70441605, 0x55828496, 0x08007308, 0xc4fe3900, 0xaf05d207, 0x1f000f00, 0x3f002f00, 0x5f004f00, 0x7f006f00, + 0x62409e01, 0x60607070, 0x40405050, 0x20203030, 0x00001010, 0x7f707f70, 0x78797b7d, 0x6f607375, 0x6b6d6f60, 0x63656869, 0x5f505f50, 0x58595b5d, + 0x4f405355, 0x4b4d4f40, 0x43454849, 0x3f303f30, 0x38393b3d, 0x2f203335, 0x2b2d2f20, 0x23252829, 0x1f101f10, 0x18191b1d, 0x69821315, 0x0b0d0f27, + 0x03050809, 0x08194228, 0x581f2608, 0x01079240, 0x57020102, 0x04111751, 0x61670605, 0x09042127, 0x3771770a, 0x0e0d0431, 0x11024147, 0x20150512, + 0x08208203, 0x01020420, 0x17252904, 0x05072115, 0x06080605, 0x26290805, 0x0b22191b, 0x0c0a0905, 0x290c090a, 0x2a821324, 0x142c1126, 0x01160401, + 0x34062f52, 0x1a080118, 0x08090a01, 0x1d00010a, 0x1e0c011c, 0x0c0d0e01, 0x260b820e, 0x12001000, 0x83121011, 0x6f551809, 0x16073008, 0x231d1f27, + 0x0d0d050f, 0x0c170d08, 0xc495401b, 0x24538694, 0x0d0e100e, 0x2aa1c010, 0x590c1702, 0x012b2fb0, 0x5b362627, 0x15200a60, 0x13200f8f, 0x2f8f1f9e, + 0x4f8f0f9f, 0x022d033e, 0x60617005, 0x68020471, 0x2f323231, 0x0502e601, 0x72606071, 0x30690204, 0x512e3233, 0x1c830d84, 0x2f220d82, 0x0e8cd2fe, + 0x8c57fd21, 0x55fd213a, 0x49891d82, 0x4985fe20, 0x3d203b87, 0x0430578c, 0x674f06f3, 0x2b064f67, 0xfe2b3a3a, 0x684e06eb, 0x2c210b82, 0x200b8239, + 0x210b8909, 0x0b89f9fd, 0x06e4fe2d, 0x50666650, 0x39392c06, 0x8a1a052c, 0x082f963b, 0x00080027, 0x0763fe4b, 0x00c6058b, 0x00090004, 0x0013000e, + 0x001e0019, 0x00280023, 0x0512409b, 0x05000005, 0x08090509, 0x221d8207, 0x44020304, 0x2608070f, 0x582eb04b, 0x21223b40, 0x02030316, 0x191e2328, + 0x11121317, 0x0c0d0e0f, 0x03010d0a, 0x1c1d2627, 0x03010004, 0x82010515, 0x00002b1d, 0x0202001b, 0x01041607, 0x0e470101, 0x1b052309, 0x3d9e3940, + 0x82020021, 0x0201253f, 0x1d000003, 0x35083b8d, 0x2fb05904, 0x0317052b, 0x27031323, 0x01033313, 0x25150537, 0x35250705, 0x25370105, 0x01050617, + 0x25270507, 0x37032703, 0x13170113, 0x4e040307, 0x46607a0b, 0x04820c3a, 0x1e023d08, 0xfe4d010d, 0x0d74fba6, 0x5a01b3fe, 0x01029c03, 0xfe254441, + 0x02f3fcff, 0x0145c0fe, 0x94112b26, 0x6003c641, 0xc5429511, 0xadfe0e3c, 0xa2046101, 0xfe52010e, 0x0c11fea0, 0x3b47627c, 0x013b0483, 0x449910ae, + 0x8efcb117, 0xc8459911, 0x0102e402, 0xd5fe4546, 0xfe02e3fc, 0x640147bb, 0x962a05c7, 0xdb05bffe, 0x26025c07, 0xed82c401, 0x5401273f, 0xac011901, + 0x0f000701, 0xd8ff7004, 0x01b11200, 0xac01b801, 0xb12b0db0, 0xffb80102, 0x290882d8, 0x7e00ffff, 0xde04bffe, 0x33820506, 0x3385e420, 0x008d0023, + 0x21338355, 0x33827303, 0x33821120, 0x8b55b021, 0x00002132, 0x26a98f62, 0x040000d3, 0x623a0421, 0x0a20418f, 0x22128f62, 0x6e331523, 0x232007c4, + 0x20073763, 0x05255933, 0xe1620222, 0x37068e62, 0xe1f3bbbb, 0x5e62ede1, 0x2403615f, 0x9d9cc263, 0xaa2403c6, 0x30fe6c6c, 0x22078962, 0x82920003, + 0x05c23aa3, 0x000300b0, 0x0017000e, 0x04104047, 0x11151704, 0x040e040f, 0x0607090d, 0x08034705, 0x02032a2d, 0x01040302, 0x02000200, 0x18001502, + 0x301b4dc9, 0x2b2fb005, 0x37010701, 0x11231101, 0x15043221, 0x51c91814, 0x2404290a, 0x84ecfe84, 0x02f375fe, 0x1057c918, 0x44ad012c, 0xfe441802, + 0x05d8fd63, 0xc918f9b0, 0x0020095d, 0x13749982, 0x26098206, 0x00230015, 0x7c0e4093, 0x082109bd, 0x09954306, 0x40581932, 0x04010f36, 0x031c1d02, + 0x04050402, 0x0500010a, 0x0126af82, 0x00150400, 0x7b180404, 0x0a220785, 0x8d180016, 0x062310b0, 0x963a401b, 0xf7b71838, 0x07052426, 0x73253703, + 0xb7180818, 0x032c15fb, 0x8bbb8b74, 0xc6de7b01, 0xf3338e5c, 0x1100b818, 0x02358628, 0xec783408, 0xb818defe, 0x012b1704, 0x00009400, 0x10073404, + 0x18000700, 0x2515a5bc, 0x2b030203, 0x66180000, 0x9d7f0fe6, 0x23113605, 0x33112111, 0x53fd3404, 0xf3ad02f3, 0x13fbed04, 0x6001b005, 0x28008200, + 0x007e0001, 0x055c0300, 0x21578274, 0xb9554050, 0x47042008, 0x092908ad, 0x00194058, 0x03020203, 0x2b5c891f, 0x0100160a, 0x17010801, 0x18401b04, + 0x778b1b82, 0x59251a88, 0x012b2fb0, 0x27788521, 0x15fe5c03, 0xf3eb01f3, 0x2105e875, 0x49823a01, 0xecff0122, 0x2c27cf82, 0x0d00b005, 0x4a403c00, + 0x052208bd, 0x49180304, 0x06200c67, 0x0ad97918, 0x0505002a, 0x1b000004, 0x07040400, 0x2d4c7f87, 0x11232705, 0x11333523, 0xe2821521, 0xf47b023b, + 0x03a8a8f3, 0xf45bfd98, 0x61fd9f02, 0x02aa9f02, 0x5cfec367, 0xff010000, 0x22e782e2, 0xb33a0446, 0x87d4886f, 0x086f86d3, 0x02211521, 0xf300ff71, + 0xc8029c9c, 0x00012bfe, 0x2ffed101, 0x01aad101, 0x00fbc4bf, 0xff940001, 0x829704d2, 0x001522df, 0x050f5940, 0x040f1123, 0x09474d02, 0x0a274022, + 0x4e18db83, 0x00200e4d, 0x8208987b, 0x4c4e18e3, 0x2c04241e, 0x18e35bfd, 0x270a4a4e, 0x9803f3e3, 0x93feed04, 0x0c484e18, 0x81824a20, 0x7e000126, + 0xe70308ff, 0x1522fb82, 0x8b943b00, 0x090a222f, 0x00120302, 0x03020001, 0x00010201, 0x8286891d, 0x208684fa, 0x20fa8405, 0xd34e1815, 0x46032412, + 0x8a492bfe, 0xf3492686, 0x7603c802, 0x298583c0, 0x27ac2fec, 0x9386698f, 0x7b8214fe, 0xffff002e, 0x9afe1000, 0xb0053707, 0xc2012602, 0x07256282, + 0xe805e003, 0x26178300, 0x069afe16, 0x823a0435, 0x85e22017, 0xe6042117, 0x68261784, 0xe10456fe, 0x1782c505, 0x0000c328, 0xe1030701, 0x7c189c01, + 0x5d2610f7, 0x030457fe, 0x23824d04, 0x2386e320, 0xf8ff262d, 0x01b10900, 0xf8ffb801, 0x832b0db0, 0xfe99245f, 0x834f059a, 0x2e002177, 0x06825f86, + 0x00ffff27, 0x049afe8e, 0x827784a0, 0x8200206f, 0x5103218f, 0x012e1882, 0x00009400, 0xb0052c05, 0x54001400, 0x11821a40, 0x14001422, 0x1177e718, + 0x23430b20, 0x2d403d06, 0x06010101, 0x01081501, 0x01010306, 0x00010602, 0x090a1d00, 0x07050502, 0x02020016, 0x22061d62, 0x8204160a, 0x00082d17, + 0x2fb00617, 0x2102092b, 0x23152301, 0x08064118, 0x15332308, 0x04050133, 0xad017bfe, 0xcdfecefe, 0xf35aa343, 0x3ba35af3, 0xb0052101, 0xf7fc59fd, + 0xeaea7402, 0x0b828cfd, 0xfefe9524, 0x9f846b02, 0x00008e2a, 0x3a048604, 0x52001400, 0x2b209fa2, 0x00269f91, 0x00020007, 0xa9870207, 0x05209d88, + 0x03209d85, 0x3c089d8e, 0xfe6c0413, 0xfe5601c4, 0x9b1bd8cb, 0x43f2f243, 0x04cf139b, 0xfdfefd3a, 0xb2ac01c8, 0x0454feb2, 0xc750fe3a, 0x00b001c7, + 0xff010000, 0x050000c2, 0x00b00511, 0x404d0015, 0x11141516, 0x0ff96310, 0x2f08f75c, 0x0001132a, 0x05150107, 0x01060301, 0x02030702, 0x97828d82, + 0x07010023, 0x26098200, 0x04040108, 0x7f091607, 0x9683059d, 0x71230121, 0x15330917, 0x01331123, 0x01091721, 0x77030221, 0xf3d7d7f3, 0x185fc5c5, + 0x290ee7d1, 0x8caa7a04, 0xcdfeaa8c, 0xd1186902, 0xff2f09eb, 0x040000b2, 0x00180631, 0x40510014, 0x9a131416, 0x122e219b, 0x08209b8a, 0x00289b8e, + 0x16090404, 0x0a080800, 0x06209f87, 0x230a8844, 0x33153335, 0x9e829f85, 0x5acd0129, 0xf2cfcff2, 0x1853cece, 0x290d2bc1, 0xb3aabb04, 0xe1fdaab3, + 0xc1189e01, 0x4e2e082f, 0xc8060000, 0x0f00b005, 0x10404200, 0x40540e0f, 0x0700210a, 0x2e076942, 0x00010d25, 0x00150104, 0x01000004, 0x76000004, + 0x052608e8, 0x07030301, 0x2c410616, 0x3521220e, 0x07264121, 0x77ba0327, 0x02fefdf3, 0x102541f5, 0x18c3ed21, 0x2a090ed3, 0x003c0001, 0x04e00500, + 0x830e003a, 0x0d0e2183, 0x0c208395, 0x0a208399, 0x092a8397, 0x6a032101, 0x32fef26e, 0xb57dc002, 0x7603240e, 0x7d50fec4, 0xff2d08b6, 0xfe9900ff, + 0x05ad059a, 0x002602b0, 0x34e1822b, 0x04e00307, 0xff00005e, 0xfe7e00ff, 0x04ac049a, 0x0126023a, 0x211785e9, 0x07825d03, 0x98000126, 0x7d070000, + 0x821f4746, 0x03042329, 0x31410400, 0x00013005, 0x01061b00, 0x16070101, 0x03030105, 0x47170308, 0x21210624, 0x05af4615, 0x3311233a, 0x8b028b01, + 0x8cfd6703, 0xf375fdf3, 0x023003f3, 0x13fbc380, 0x93fd6d02, 0x24062f5e, 0x0500007e, 0x1f4b4667, 0x0a207394, 0x7132739a, 0x5102a501, 0xfef3a2fe, + 0x02f3f35b, 0xc4c30177, 0x807d8afc, 0x24e78405, 0x07d6ff97, 0x9f5418fb, 0x0f10240e, 0x4900020d, 0x282a08a5, 0x01020108, 0x01071501, 0x31831202, + 0x01000229, 0x001d0001, 0x82050303, 0x050022ef, 0x9e501805, 0x79062008, 0x04200504, 0x0f9d5418, 0x23112808, 0x0a052111, 0x3301f9c5, 0x7255bbc0, + 0x90a9016c, 0x73fdf3c5, 0x037304f3, 0x89e4ff86, 0xae2febfe, 0x866a8f26, 0x4845fd92, 0x002e0540, 0xff7e0001, 0x04db060b, 0x0017003a, 0x5518403e, + 0x938d0733, 0x07082323, 0x238e9502, 0x0104160a, 0x4609c564, 0x8e831258, 0xa40a0422, 0x200a5a46, 0x052f7ea4, 0x46b90221, 0x11200c5c, 0x3a055648, + 0x00020000, 0x05ebff69, 0x00c3052e, 0x00300021, 0x270e408b, 0x151a1c25, 0x18111214, 0x320ba789, 0x5830b04b, 0x01133540, 0x2d300203, 0x001e2122, + 0x18050406, 0x200b265f, 0x0a214a0d, 0x00161022, 0x26083b7a, 0x0717010e, 0x8f33401b, 0x64002037, 0xe27508bf, 0x18418208, 0x210c9e66, 0x5818b059, + 0x1d2008a6, 0x2509535e, 0x22151705, 0xbb701506, 0x012e2506, 0x34350535, 0x08ae5818, 0x013e6e08, 0xd22a0235, 0xfedaafa9, 0xfeeffea8, 0x01b0fef4, + 0x0604014a, 0xa3bfbc9e, 0x9625532d, 0x4d0a02aa, 0x794d4242, 0x021d1b6d, 0xe1ab498e, 0xfe52b3e7, 0x018dfee7, 0x010a0160, 0x01090106, 0xc402045f, + 0xf8feb4e8, 0x1414e8b7, 0x179ae531, 0x74725a55, 0x966b4058, 0x48823513, 0x00020000, 0x04ebff53, 0x004c043f, 0x00310021, 0x2d10409e, 0x0b25412c, + 0x09096118, 0x40581223, 0x27ed833c, 0x00212231, 0x1e050604, 0x03298182, 0x05060015, 0x21060404, 0x21f68200, 0x94630006, 0x06b66506, 0x24062c41, + 0x01001b02, 0x052c4101, 0x3e943d20, 0x04060523, 0x413fa329, 0x14350c36, 0x00222300, 0x0034013d, 0x0e15011f, 0x14011d01, 0x36323316, 0x0e364137, + 0x3e375f08, 0xdf013501, 0xac8485ab, 0xe8d1effe, 0x2101defe, 0x927e06e3, 0x1b0e7d93, 0x015f560e, 0x24223074, 0x063a442f, 0xef01120f, 0xbaab821c, + 0xfed1228c, 0xe12801ec, 0x3a01ef2f, 0x05c20204, 0x8c3199c1, 0x2a0402b2, 0x241767a2, 0x35474e39, 0x025d4720, 0x2c4e1c01, 0xffff0000, 0x5afe6d00, + 0xa718c804, 0x0325098f, 0xff9901e1, 0x066348fb, 0x078fa718, 0x5afe5122, 0x0b3f9f18, 0x1e202382, 0x222a2390, 0x92049afe, 0x2602b005, 0xc3443700, + 0x24022105, 0x3c2a5f84, 0xe9039afe, 0x26023a04, 0x1785ee01, 0x84dd0121, 0x001a2417, 0x82f60400, 0x0006222f, 0x240f843c, 0x035ffe20, 0x222782f5, + 0x828d0106, 0x00012127, 0x00251f86, 0x4040000f, 0x07674710, 0x46058955, 0x233d0833, 0x00010100, 0x02030107, 0x01051502, 0x02010401, 0x00020103, + 0x01061d00, 0x16070000, 0x08ff4400, 0x21010927, 0x23153301, 0x05644707, 0x21012308, 0x5f018802, 0x69fe0f01, 0xf207c76c, 0x69fe75cf, 0xec020f01, + 0x05fdc402, 0x03fe0eaa, 0x02aa0b02, 0x6a1800fb, 0x11250a3b, 0x12404200, 0x18818211, 0x610bdb43, 0x280807fd, 0x05002340, 0x05040304, 0x01062903, + 0x160a0404, 0x03030107, 0x1b020000, 0x00000102, 0x01001608, 0x17010c01, 0x2b2fb005, 0x06e04705, 0x33013908, 0x37331713, 0x33013313, 0xf2d55903, + 0xbbfe9bc8, 0x0612ddfb, 0xfefbd713, 0xfe01a8bc, 0xaaa00160, 0x34fd9103, 0xcc025858, 0xffff6ffc, 0x9afe3200, 0xb0050805, 0x3b002602, 0x2d053b41, + 0x0000b903, 0x2100ffff, 0x1d049afe, 0x17823a04, 0x17855b20, 0x82ce0221, 0x82012007, 0x069e292f, 0x00b005c6, 0x40490013, 0x4608575a, 0x9f480be9, + 0x00262808, 0x00080508, 0x82041902, 0x270282a8, 0x0203061b, 0x07010103, 0x0522c082, 0xc0820905, 0x09090024, 0xba840908, 0x3521012d, 0x15333521, + 0x11211521, 0x82331121, 0x23240801, 0x91012111, 0x5f01a1fe, 0xfe6b01f3, 0xf38d0295, 0xbefbf3c2, 0x01c4eb04, 0xd8fbc401, 0x1cfbed04, 0x6201d2fd, + 0x002f8e82, 0xfe260001, 0x0438059c, 0x000f003b, 0x49124043, 0x43410f2b, 0x00242408, 0x82060306, 0x8602208b, 0x0104238b, 0x4b460101, 0x83072005, + 0x07072389, 0x89850708, 0x21352323, 0x887d8215, 0xf51b3185, 0x01dcc402, 0xf391f3a6, 0x7703d6fc, 0x4bfdc4c4, 0x07c14018, 0x00ffff2d, 0x059afe8f, + 0x02b0058c, 0x41d30126, 0x042d0523, 0xff00003d, 0xfe7400ff, 0x0498049a, 0x2017823b, 0x211785f3, 0x07824903, 0x50180220, 0x032c0837, 0xc4001700, + 0x04041440, 0x17041704, 0x07e37f18, 0x9b820320, 0x0809f163, 0x40580928, 0x05011630, 0x03010701, 0x00150205, 0x05050401, 0x00002101, 0x00030203, + 0x00050021, 0x03050003, 0x071d0201, 0xe8180206, 0x062709f3, 0x0ab04b1b, 0x8d314058, 0x01042336, 0x379f2905, 0x97324021, 0x29022133, 0x65626c97, + 0xc2501808, 0x2e032613, 0xbb01a3a3, 0xc65018f3, 0x2c01250b, 0xa901db02, 0x12ca5018, 0x00020023, 0x22a08274, 0x823b04f5, 0x00172cd5, 0x171040bd, + 0x0e111316, 0x4e080a0d, 0x4b2a0dcd, 0x405809b0, 0x0501152f, 0x13410601, 0x0525431c, 0x02020026, 0x06170208, 0x20057e60, 0x41358d30, 0x368d1412, + 0x97314021, 0x0b114132, 0x5929338c, 0x2b2fb059, 0x33112325, 0x90421801, 0x8d022612, 0x6801a4a4, 0x944218f3, 0x02cc240b, 0x18d5fc5f, 0x20119942, + 0x06ab5a00, 0x5218c720, 0x03231f5f, 0x6e010301, 0xa3180692, 0x00260808, 0x16070000, 0x47180405, 0x332a090d, 0x3e113311, 0x04323301, 0x6b181115, + 0x6d3f086b, 0x5faf4ef3, 0xf30f01fc, 0xb7559385, 0xfdb00550, 0xe01715be, 0x0135feef, 0x187497cb, 0x8256fd14, 0xff480844, 0x007b00ff, 0x04fc0301, + 0x010f013c, 0x047004f3, 0x0001c03c, 0x0100b109, 0xb03c04b8, 0x00002b0d, 0xff200002, 0x051d06e9, 0x001d00c4, 0x40640026, 0x011e1f18, 0x1e222300, + 0x18261f26, 0x0f121316, 0x0007080d, 0x091d011d, 0x2407794b, 0x02060b3f, 0x3ab08206, 0x141a0603, 0x1b030402, 0x04040001, 0x00060015, 0x03060403, + 0x081d0000, 0x47050501, 0x0d260608, 0x01010016, 0x7018160a, 0xa6080a2a, 0x0717000e, 0x052b2fb0, 0x2e030020, 0x33013f01, 0x12171614, 0x00201700, + 0x07211511, 0x32331216, 0x0e173736, 0x06220301, 0x35211707, 0x2b042634, 0x8cfeb2fe, 0x04a59d07, 0x4c4aab03, 0xef58011e, 0x31011f01, 0x040341fc, + 0xa66ee7e5, 0xcd34314e, 0x12c09cf0, 0xa5c90202, 0x01800117, 0xa4d21640, 0x14755a05, 0x59011401, 0xfe97fe01, 0xd70684c5, 0x2029f6fe, 0x05391fbc, + 0x05b7e90e, 0x00d5b11f, 0xffceff02, 0x045a04eb, 0x001c004e, 0x40660025, 0x011d1e18, 0x1d212200, 0x17251e25, 0x0e111215, 0x0006070c, 0x881c011c, + 0x0a4122eb, 0x21ea8501, 0xea821319, 0xea851a20, 0x06050126, 0x29060105, 0x1020f294, 0x2225ed93, 0x012e2700, 0x62ec8335, 0x21230609, 0x8f011e07, + 0xba0231ec, 0x03f5feea, 0x2aaa7c78, 0xb5fd212b, 0x63fde0da, 0x13fdd118, 0x22e9232b, 0x5f428ebc, 0xfee8be1a, 0x00d218f3, 0xffff3d11, 0x52fe2000, + 0xc4051d06, 0x67022602, 0x07000000, 0x3d025701, 0xffff0000, 0x52feceff, 0x1782f783, 0x17856820, 0x83470121, 0x9b781817, 0x00103210, 0x07dc0600, + 0x0126025c, 0x010000c2, 0x01540107, 0x475718bf, 0x82162010, 0x06012223, 0x05a35005, 0x55202384, 0x10e74a18, 0x5eff942e, 0xb005e004, 0x3e001600, + 0x15160c40, 0x21063450, 0x4542050c, 0x00253007, 0x07030001, 0x02000101, 0x01010615, 0x82030012, 0x8203206d, 0x041d2213, 0x997a1801, 0xb0052609, + 0x1e012b2f, 0x099d4b01, 0x21233508, 0x33112311, 0x21013311, 0xfed9f902, 0x8b55d2d9, 0x96aa0182, 0xf3f3ebfe, 0x01c20173, 0x17310324, 0xfe8fdefe, + 0x29ac31e0, 0x9599719a, 0xb00594fd, 0x6b0295fd, 0x00275a82, 0x04eafe8e, 0x823a0443, 0x943b208f, 0x8222208f, 0x0103257b, 0x02060715, 0x0a208c8f, + 0x90066253, 0x2327218c, 0x22088c88, 0xc1c1aacd, 0x6b7355ba, 0xae849301, 0x0155f2f2, 0x022d0141, 0xb2df2861, 0x2ef5fe85, 0x658725ad, 0x5008817b, + 0x012f051b, 0x00ffffb0, 0x05bffe2e, 0x02b005de, 0x82c70126, 0x0007269a, 0xff73040f, 0x064349d8, 0xa751d820, 0xfe162606, 0x04de04bf, 0x2023823a, + 0x202385e7, 0x82238e03, 0xfe9830af, 0x0509054b, 0x001700b0, 0x0014404b, 0x18170000, 0x2316ebd3, 0x02010b2a, 0x2182db82, 0x00050426, 0x1d000004, + 0x0121e583, 0x91411807, 0x1b02300a, 0x12020200, 0xb0061702, 0x11012b2f, 0x18331121, 0x200e8d41, 0x3ae98221, 0x8b028b01, 0x24a5bbf3, 0x120e203c, + 0x413b153c, 0x05f375fd, 0x0280fdb0, 0x1811fa80, 0x21084489, 0x184eac02, 0x00012805, 0x044bfe7e, 0xb63a0409, 0xaf0a209b, 0x0171399b, 0xa6bbf3a5, + 0x0f203b24, 0x3a163c10, 0xf35bfe42, 0x3dfe3a04, 0x87fbc301, 0x01219b88, 0x209282f4, 0x0503533a, 0x21067f41, 0x7f412b00, 0xfe7e2618, 0x04dd04bf, + 0x05634f3a, 0x00070125, 0x4172030f, 0x8f2410a3, 0xe9049afe, 0x220b3348, 0x4800f102, 0x03210633, 0x0b3348f5, 0x84fd0121, 0xfe992417, 0x832f07bf, + 0x3000212f, 0x05217785, 0x245390c4, 0x06bffe8e, 0x20778442, 0x212385e8, 0x2390d704, 0x0f4f7c18, 0x00002026, 0x5c07f904, 0x3da7a418, 0x0d204384, + 0x8d184387, 0x0221080b, 0x0b8d1802, 0xff532609, 0x050204eb, 0x202382cb, 0x249b8244, 0x196a0006, 0x97ac181b, 0x000d240c, 0x826e0700, 0x000622df, + 0x2aef8488, 0x06ebff54, 0x024e04a4, 0x84a80006, 0x8299200f, 0x6fa11863, 0x02002a3c, 0xeaff5700, 0xc5053a05, 0x9fd71800, 0x01142a24, 0x0d130003, + 0x02030202, 0x203a8215, 0x20bc8205, 0xdf831800, 0x01062708, 0x160d0000, 0xa14e0107, 0x2fb02a0c, 0x0020012b, 0x00101511, 0x08068225, 0x3721356a, + 0x22230226, 0x3e270706, 0x36321301, 0x15212737, 0x71021614, 0x76015301, 0xfbfe9bfe, 0xbbfeccfe, 0x0603e803, 0xa46fe6e5, 0xcb35314f, 0x12c19af2, + 0xb70ffd02, 0x6ffec505, 0xfe2ab7fe, 0x0167fec2, 0x3c016701, 0x01d60684, 0xbc20290b, 0xf1fa3a1f, 0x1f05b8e8, 0xffffd4b2, 0xebff7800, 0x4e041004, + 0x48000f01, 0x3a046304, 0x23059347, 0x3a04b802, 0x8406ff43, 0xda0637e7, 0x83022602, 0x07010000, 0x7e006a00, 0x09002a01, 0xb80202b1, 0x23862a01, + 0x05234384, 0x872f00cb, 0x06012943, 0x1b286a00, 0x00b11100, 0x2e824986, 0x831bb021, 0x0000242d, 0x4500ffff, 0x0d2005db, 0x2507db45, 0x68016a00, + 0x1f6f5d01, 0x865d2006, 0x00162653, 0x05010600, 0x07db45b6, 0xfe227782, 0x1f6f0600, 0x84062005, 0x20478248, 0x22bb8268, 0x562207e1, 0x2382078b, + 0x72019622, 0xa5184786, 0x5d2607cf, 0x0304ecff, 0x2382ca05, 0xbf82e320, 0x20219782, 0x2045851a, 0x2245831a, 0x825e0001, 0x05463843, 0x001c00b0, + 0x00124058, 0x001c0000, 0x171a1b1c, 0x0d0f1115, 0x4d07090c, 0x250808b1, 0x04010139, 0x02021805, 0x010b0403, 0x15030102, 0x01040300, 0x29010304, + 0x04020100, 0x00270201, 0x00050404, 0xb0821b00, 0x16070523, 0x08ce6000, 0x26066548, 0x1e011701, 0x18141501, 0x08114f52, 0x21270137, 0x011b0435, + 0xdfcc7ffe, 0xc7e4e3fe, 0x0305e0fe, 0x7d6d88ea, 0x8e969791, 0xfd026501, 0x9bb00597, 0xe81745fe, 0xd6e4c9c3, 0x856206cd, 0x88926783, 0x058c01ab, + 0x27c882c3, 0x75fe5e00, 0x3a044604, 0x902caf82, 0x191b0e40, 0x10111315, 0x03040b0d, 0x092d5c18, 0x30b04b2f, 0x05384058, 0x1c010001, 0x00050206, + 0x82af820f, 0x000526b7, 0x03050003, 0x82bf8229, 0x82272002, 0x820120ef, 0x071d49b7, 0x26062e49, 0x0717020c, 0x9e35401b, 0x0004233a, 0x30820402, + 0x438a1c20, 0x06170026, 0x2b2fb059, 0x2120d683, 0x022bf397, 0xa2fd02ef, 0xfe018c03, 0x8edac888, 0x038f36f4, 0x9bc40571, 0xe71943fe, 0xd7e5c7c1, + 0x856006cb, 0x87926584, 0x186082ab, 0x2107575f, 0x6318f606, 0x7122085f, 0x9218e100, 0x7e2610ff, 0x0a040000, 0xbb5ea005, 0x06012505, 0xf0557100, + 0x2006cd46, 0x087b42f0, 0x00009626, 0x0d070705, 0x6a224788, 0x7b42c200, 0x20478510, 0x214788b6, 0x6b18366a, 0x692b0daf, 0x1105ebff, 0x26022207, + 0x43003200, 0xaf200513, 0x145b9a18, 0xcb053422, 0x52202382, 0x06202382, 0x0df7ac18, 0x4384cf82, 0x02c50526, 0x001e0206, 0x0cc75118, 0x181f0221, + 0x23097b5f, 0x26020807, 0x01271f83, 0x006a0007, 0x825801c6, 0x020324cd, 0x435801b8, 0x53260623, 0x3404ebff, 0x2382e705, 0x01203382, 0x21286382, + 0xb1080037, 0x37b00203, 0xff292082, 0xff8900ff, 0x07d704ec, 0x20c78223, 0x838382d9, 0x018f2243, 0x061f4373, 0x43867320, 0xebff5224, 0xa783e803, + 0x82f90121, 0x21438223, 0x43821b0f, 0xb0020123, 0x2043851b, 0x2263822f, 0x82f606e4, 0x84cf2043, 0x00712243, 0x1077419a, 0x4bfe1026, 0xa005fc03, + 0x5c20eb82, 0x71214384, 0x11774117, 0x07214784, 0x2247880d, 0x417b006a, 0x47851077, 0x4788b620, 0x41f96a21, 0x43850d77, 0x43874b20, 0x01590123, + 0x23439304, 0xf4051904, 0x07244386, 0x81005901, 0x24103744, 0x0400008f, 0x208b84e9, 0x42d384d3, 0x74251303, 0xf5030000, 0x218b8205, 0xd384f301, + 0x8d226a21, 0xfe94268b, 0x052c049a, 0x208b82b0, 0x058f4f6e, 0x00db0022, 0x23061357, 0x3a044603, 0xdf201782, 0x9f201786, 0x942a1784, 0x4e060000, + 0x26000d07, 0x1782d801, 0x2c002724, 0x7b85ae04, 0x84630121, 0x460320c3, 0xa2260adf, 0xbc050000, 0x2b82b605, 0x0014f828, 0xf3002700, 0x2b863a04, + 0xcb842a20, 0xb0020322, 0x26080345, 0x044bfe45, 0x82b00589, 0x5d6e2e2b, 0x03260000, 0x013fae80, 0x01e20307, 0x25658206, 0x0101b108, 0xc7413fb0, + 0xfe462405, 0x82a8034b, 0x01262347, 0x278462df, 0x8390af21, 0xf6002127, 0x09202782, 0xb8222782, 0x234390ff, 0xfe322408, 0x5158054b, 0xe2220abf, + 0xc384ca03, 0x6b822120, 0xbf516d20, 0x02e2210a, 0x0126e383, 0x00003200, 0x8382ee04, 0x43001122, 0x25077352, 0x0708090a, 0x7f500506, 0x2440370b, + 0x0504010d, 0x00010104, 0x01071502, 0x00010304, 0x00000401, 0x34451d02, 0x01022105, 0x2d05be5e, 0x012b2fb0, 0x09210123, 0x23012101, 0x08853335, + 0xda033325, 0x18a3018f, 0x0808a5e5, 0x75839c24, 0x1e017cfe, 0x33013001, 0x7cfe2001, 0xfd950281, 0xfd23026b, 0xaa9502dd, 0xe6fd7102, 0x8ffd1a02, + 0x52180100, 0x0020077f, 0x0a2193b8, 0x20938e16, 0x2093870b, 0x0808821b, 0x4a033349, 0xfe2e018b, 0xfed1d1ec, 0x932d01ea, 0x01e8fe88, 0x01c8c514, + 0x80e7fe17, 0x29fed701, 0x84fe7c01, 0x01aad701, 0x018dfeb9, 0x0047fe73, 0x00540002, 0x05800400, 0x000a00b0, 0x40400013, 0x000b0b14, 0x0b130b00, + 0x820c0e12, 0x05092311, 0x7d180203, 0x1f28096b, 0x00020105, 0x03020403, 0x2505f55d, 0x01061607, 0x50180404, 0x112a0e14, 0x22211133, 0x24343500, + 0x08820133, 0x15062a08, 0x03331614, 0xd9fdf28e, 0x01ecfef1, 0x3501f213, 0x8a88cbfe, 0x9403888a, 0x50fa1c02, 0xcccd0001, 0x022efdfb, 0x716e940f, + 0x086b449c, 0x18060330, 0x47000602, 0x02000000, 0x00006600, 0x9b82a506, 0x2100183c, 0x18404d00, 0x00011919, 0x20192119, 0x11121a1c, 0x08090a0c, + 0x18000507, 0x8b4e1701, 0x00282d08, 0x01050104, 0x00290504, 0x03050001, 0x00300a82, 0x0202001d, 0x06081607, 0x00030302, 0x071b0201, 0x2305565d, + 0x2b2fb005, 0x2120a486, 0x372eaf82, 0x3637013e, 0x1e332726, 0x04060701, 0xb6872523, 0x876b0221, 0x4cf231b3, 0x01046b63, 0x21ec1e1f, 0xfe040224, + 0xc2febdfc, 0xbf84c585, 0xfb1c0230, 0x79010112, 0x4ea64c6c, 0xcd479663, 0xce87c2dc, 0x5e38bf83, 0x7e06e9ff, 0x22001806, 0x57003300, 0x2c2e1240, + 0x1e202527, 0x1213181a, 0x53053b6a, 0x383608b1, 0x00030106, 0x02022330, 0x04011c06, 0x00150302, 0x00060003, 0xc8820603, 0x8205f376, 0x001b29d0, + 0x16100000, 0x02020107, 0x0a5e7218, 0x0d765518, 0x33160622, 0x022dca89, 0x26062300, 0x23010e27, 0x01350222, 0x1806822e, 0x2f07df7e, 0x35012e37, + 0x52c9de5e, 0x02f33284, 0x8175434e, 0x2221d984, 0x08d98223, 0x7ecfe648, 0x9a342cac, 0x02dec768, 0x426523af, 0x7d73767c, 0x03226848, 0x010e0203, + 0x3e3d0103, 0xfb42023a, 0x0166524f, 0xcc61a5bc, 0x5bb97f66, 0xe4fef6fe, 0x575e5702, 0xec22015c, 0x37312601, 0x9615a8d1, 0x0f373bb2, 0xaa821322, + 0x3b00013c, 0xe005e8ff, 0x2c00b005, 0x10404f00, 0x2223282a, 0x0e101b1d, 0x05070b0d, 0xbd480204, 0x15322d08, 0x01010001, 0x02050015, 0x01050201, + 0x0022ee82, 0x11820400, 0x181d0021, 0x2e098acb, 0x04001607, 0x02010604, 0x0606001b, 0x8317060e, 0x340126f1, 0x35012b26, 0x10e87d33, 0x41011d21, + 0x02391201, 0xd4697da6, 0x83889b9b, 0x01a0fe8c, 0x0901f960, 0x73837a80, 0x68353f01, 0x3df88574, 0xfe040122, 0xb4a3c7f1, 0x6b780108, 0x7770c583, + 0xd5c57267, 0x31a572cb, 0x447eab25, 0xec854b3c, 0x5ab38622, 0x033eec83, 0x0100aea0, 0xe2ff2f00, 0x3a04ff04, 0x54002d00, 0x22241040, 0x191b1f21, + 0x0f111618, 0xd78a090a, 0x0129373b, 0x002d0403, 0x02030002, 0x05010015, 0x04010504, 0x00040029, 0x03040003, 0x24dc8201, 0x01060505, 0x22d08300, + 0x1800160a, 0x830b3777, 0x8c2520dc, 0x010e26c3, 0x27260623, 0x20f08335, 0x22f08727, 0x7d322127, 0x4d0806d2, 0x0103011d, 0x582b2201, 0x20010461, + 0x2422ec1e, 0xb1f30502, 0x53089ea0, 0xb702e94c, 0x64605f65, 0x0106fafe, 0x59e5d20c, 0xeb5a6557, 0x8f012e2a, 0x4fa44c80, 0xd7479266, 0x827203e7, + 0xbd413b4b, 0x51454146, 0x5099aac3, 0x781a2471, 0xae823e57, 0xe5fe4934, 0xb0050104, 0x27002100, 0x14409600, 0x26270000, 0x0d822324, 0x191a2027, + 0x07090a0c, 0x1de31803, 0xb04b2f08, 0x37405809, 0x00040111, 0x03182225, 0xe6820603, 0x0303052c, 0x00002005, 0x06040107, 0xe5830400, 0xa57f0120, + 0x0606230a, 0xf1820003, 0x08030328, 0x1b071703, 0x398e3640, 0xa42c0521, 0xb0592438, 0x41132b2f, 0x04200b07, 0x2205da7e, 0x1814011d, 0x080a40ee, + 0x23030151, 0x97333513, 0x8792c801, 0xe0fe8784, 0xf3230103, 0x71750a01, 0x25216d7b, 0x7f1728fa, 0x9b780270, 0x02ef469a, 0x7371c35c, 0xdcc37d6d, + 0x32a371cb, 0x7882b027, 0x17217a40, 0x74468c22, 0xc1fd8371, 0x4101c8fe, 0x000200c6, 0x03d1fe75, 0x413a04f1, 0x0a224e0f, 0x0f410016, 0x20388f35, + 0x05fa6d59, 0x42060843, 0x0f410b17, 0xb33a0811, 0x686667e5, 0x04e1fe65, 0xefd22301, 0x555f5658, 0x1cfb1c18, 0x025d640f, 0x469a9b45, 0xb39c01ef, + 0x5745444a, 0x509cb3c1, 0x85202776, 0x5b26555f, 0x62141113, 0x564d5330, 0x0d416dfe, 0x00003c05, 0xff430001, 0x057e07e8, 0x002100b0, 0x1f1040af, + 0x1217181d, 0x090c0d10, 0x18040607, 0x3009ef6e, 0x5816b04b, 0x05002440, 0x05000200, 0x00002902, 0x886d1800, 0x01042708, 0x01010202, 0x7a601b02, + 0x4b1b2607, 0x405817b0, 0x242a9b30, 0x08010100, 0x44378316, 0x1b220a00, 0x32932e40, 0x5c830020, 0x841b0021, 0x0d314431, 0xb0595926, 0x21012b2f, + 0x0ab37018, 0x43112121, 0x2a450c64, 0x0d043005, 0xfee254fe, 0x892935f9, 0x0191037a, 0x4574434e, 0xe7350a19, 0x09c6b4cf, 0x15feeb04, 0x8efe72fe, + 0x010b01c4, 0xfbb00231, 0x0e0b45b7, 0xc7b80333, 0x00010000, 0x06e8ff3f, 0x003a0459, 0x40b60021, 0x2dff8214, 0x1e210021, 0x16191b1c, 0x0b101215, + 0x8718050a, 0x0e3a0a99, 0x00254058, 0x03000301, 0x00290001, 0x00060303, 0x01071b00, 0x160a0606, 0x14440105, 0x0a561805, 0x58162a0a, 0x01003140, + 0x01030503, 0x202b8d05, 0x054b5600, 0x4c442a84, 0x250c8407, 0x1b071702, 0x33972f40, 0x00010427, 0x0404001b, 0x0e7f4408, 0x41052a41, 0x06260d1d, + 0x26062302, 0x52181127, 0x04260b6b, 0x4652010a, 0x1347645b, 0xfb400808, 0x09c9b8b7, 0xdbbcfffe, 0x62290440, 0xfd3a0455, 0x0166522d, 0xc15c93a5, + 0x56af7860, 0x03f9fef6, 0x0d02c7b8, 0xc2fefafe, 0x01d3d0fe, 0xcc01dbbf, 0x00010000, 0x07e8ff98, 0x00b00585, 0x407f001d, 0x1d288683, 0x1b1c1d00, + 0x1718191a, 0x47072941, 0x4b2107d7, 0x21fd82b0, 0x54560028, 0x06002b0a, 0x1d000003, 0x05020708, 0xf48e0705, 0x401b0523, 0x902a992c, 0x05164ef1, + 0x0e42f08d, 0xe25e1805, 0x06052608, 0x76424f01, 0x08624580, 0xcfe7fe2c, 0xfd09c5b4, 0x02f3f377, 0x05420589, 0x67cb2808, 0xfe5cbb7c, 0x82e4fef6, + 0x060123eb, 0xf85393fd, 0x26e78305, 0x06e8ff77, 0x823a045b, 0x40792be7, 0x14191b12, 0x090c0e13, 0x70180708, 0xe3840e05, 0x06002729, 0x06020302, + 0x82002903, 0x820520de, 0x1d002503, 0x02020104, 0x08085a18, 0x8a4a0720, 0x20e28205, 0x2f29982b, 0x16080101, 0x07050500, 0x001b0201, 0x070e0707, + 0x5606f84e, 0x21220515, 0xea8d3311, 0x0805db41, 0xfe1a0325, 0x01f3f350, 0x5202f3b0, 0x04655c46, 0xeb1e1f01, 0x04012222, 0xc9b7b8fb, 0xfeba0109, + 0xfe3a0446, 0x41bd0143, 0x5b2506d4, 0xaa7e61c1, 0x05d44155, 0xdf830020, 0xebff623a, 0xc505b604, 0x4a002100, 0x00011040, 0x14161b1c, 0x06080d0f, + 0x21012100, 0x2c086d62, 0x02010a2d, 0x04010b01, 0x00150202, 0x20e38204, 0x43e38204, 0x0d3008af, 0x03030016, 0x1b000100, 0x00000105, 0x0617000e, + 0x2605ff58, 0x00100119, 0x7a163221, 0x15220601, 0xdd481411, 0x0644080b, 0xfebb0204, 0x01b2fef5, 0x710b014e, 0x433f44b2, 0xc2a45590, 0x887ca4c2, + 0x181b0104, 0x011525eb, 0x15dffe04, 0x0d015d01, 0x0c010601, 0x2c2d5e01, 0xf12321b0, 0xb5f8feb2, 0x788801f1, 0xa760b151, 0xeadb4c6f, 0x7682be82, + 0xebff5526, 0x4e04e503, 0x1a25bf88, 0x0c0e1315, 0x25bf8e07, 0x03040117, 0xc0820118, 0x0100152c, 0x01040004, 0x04002900, 0xb3820304, 0x1020ba82, + 0x2308b043, 0x0e020200, 0x2f052256, 0x37013e25, 0x33272634, 0x0e15011e, 0x00222301, 0x7a06d275, 0x39080ace, 0x43525a02, 0xeb090a03, 0xd8040e0d, + 0xebfef0af, 0x5ee60a01, 0x2f2e2f8e, 0x7f7e447a, 0x4501af89, 0x35733646, 0xa6306945, 0xe43901aa, 0x3a01e22a, 0x1bbd1f23, 0x2a89ce1f, 0xb382cd8c, + 0xe8ff2230, 0xb0055805, 0x3e001900, 0x15170e40, 0x3f5c0f10, 0x08714107, 0x6e482320, 0x5e292006, 0x00240704, 0x16070101, 0x0521ad82, 0x07e97f01, + 0x2fb00528, 0x3521012b, 0x0e451521, 0xe7012c14, 0x80043bfe, 0x4f0138fe, 0x42817542, 0x232305fc, 0x45fe0402, 0xc5230609, 0x447cfcc5, 0xf84205fe, + 0x00002b0b, 0x44000100, 0xcc04e8ff, 0x9bae3a04, 0x9ba50a20, 0x2b050f49, 0xbbfe8901, 0xadfe8b03, 0x5b465201, 0x2d06af42, 0xfc040224, 0x0ac9b7b7, + 0xc3c37703, 0x9a82f0fd, 0x49758429, 0x8c614a9e, 0x45e7d744, 0x87260697, 0xfe04ebff, 0x6518c505, 0x1d3323bf, 0x14060501, 0x0b070001, 0x03020101, + 0x06050015, 0x18050607, 0x26094351, 0x01080700, 0x82070200, 0x001d23ea, 0x49450606, 0x160d2206, 0x024f1800, 0xb008240b, 0x18012b2f, 0x200d7689, + 0xbd841820, 0x21242308, 0x89180432, 0x4a080da1, 0xa4a4c202, 0xb18ba1b7, 0xfe0402ea, 0xf9fee3b7, 0x848abcfe, 0x2f018375, 0x01e20601, 0xea010536, + 0xa39f7dab, 0x02be9d95, 0x677a7586, 0x06628583, 0xc9e4d6cd, 0x2f2bac7d, 0xd8c864a6, 0x5c06b3df, 0x685f7e79, 0x0000c176, 0x18ffff00, 0x2307738a, + 0x8f010602, 0x2e260f84, 0xfd054bfe, 0x4b59b005, 0x07002505, 0x6f04e203, 0x16251784, 0xfd044bfe, 0x063f5904, 0x03201783, 0x20241785, 0xf9047efe, + 0x00212f83, 0x24508224, 0x015a0107, 0x2d2f8429, 0x0485fe53, 0x024e0402, 0x00440026, 0x17820100, 0x0091002d, 0xb1080007, 0x07b00202, 0x182b0db0, + 0x21094f93, 0x23824907, 0x2905bf57, 0x018c0276, 0xb109005b, 0xad180101, 0x80260967, 0x75060000, 0x23820706, 0x47835020, 0x02760023, 0x2ba918a1, + 0x821d2010, 0x07d82223, 0x5023824a, 0x4322055f, 0x7618d501, 0x252610b3, 0xd0050000, 0x2382f305, 0x47845a20, 0x56014324, 0x8f820500, 0xb0010122, + 0x08dbc118, 0x49204785, 0x8f934788, 0xf2204785, 0x76224788, 0x5a180d02, 0xff220df7, 0x478500ff, 0x47880d20, 0x6c016a22, 0x8510df51, 0x88b62047, + 0x006a2247, 0x10df51ed, 0xa5fe2022, 0x2a0c5b41, 0x00dd0460, 0x00ffff00, 0x41acfe53, 0x60220c5b, 0x5b414504, 0x41012005, 0x2026095b, 0xf9040000, + 0x7f58c707, 0x5e012d07, 0x4801e304, 0x02b10900, 0x4801b801, 0x220a7753, 0x41850602, 0x5e2208a3, 0x83847f04, 0x51010221, 0x47820997, 0x07410523, + 0x254787f0, 0x97007003, 0x47835201, 0x01b80223, 0x22478a52, 0x86ae06dd, 0x03062447, 0x41103370, 0x102005e9, 0xff232082, 0x84d4ffff, 0x88e4208b, + 0x006f2443, 0x864601a1, 0x85462043, 0x70ff2743, 0x0204ebff, 0x4388a206, 0x043d6f22, 0xbe184385, 0xf7200c3b, 0x6e244388, 0x2c019a00, 0x2c204386, + 0x9122878a, 0x4388b606, 0xeb366e22, 0xff212185, 0x081352eb, 0x0423cf82, 0x881e08f9, 0x006d2447, 0x8524019b, 0x24012125, 0x200c1741, 0x224788dd, + 0x85e3376d, 0xe3ff2121, 0xfe254789, 0x07f904a5, 0x23478547, 0x52012700, 0x5928d382, 0x60010701, 0x0000dd04, 0x20066741, 0x214f8759, 0xdb82acfe, + 0x4f850520, 0x01260025, 0x84173d52, 0x00452929, 0xb1100007, 0x17b00102, 0xb1212882, 0x05bd4103, 0x00ffff22, 0x0720a384, 0x242a7f83, 0x07010000, + 0xc800bf03, 0x81854d01, 0x8c4d0121, 0x889b20a3, 0x64bf22a3, 0x052f410b, 0x20820b20, 0x08214387, 0x24e78846, 0x01d20072, 0x2043868d, 0x21438b8d, + 0x43880407, 0x4b6e7222, 0x4b204385, 0x7920438b, 0xde244388, 0x5401cb00, 0x54204386, 0x3720438c, 0xde224388, 0x43851267, 0x438b1220, 0x43883220, + 0xcf00df24, 0x43865601, 0xcb8c5620, 0x4388f020, 0x146bdf22, 0x14204385, 0xfe214386, 0x098f5ba5, 0x82270021, 0x01d42283, 0x0e6b41ac, 0x6b41ac20, + 0x411a200c, 0x5422086b, 0x6b416a70, 0x416a200d, 0x99220d6b, 0xff54affe, 0x28002305, 0x29840000, 0x0a00b922, 0x01237d82, 0x820ab001, 0x43002029, + 0xa524056f, 0x4f04eb03, 0x48285382, 0x07000000, 0x93046001, 0x99261784, 0x2c040000, 0x1782c707, 0x5e243b85, 0x4801ba04, 0x4306bf44, 0x03230a63, + 0x858606eb, 0x225f823b, 0x4373045e, 0x478510ab, 0x47886320, 0x7a005824, 0x47866c01, 0x23416c20, 0x20478209, 0x24478622, 0x33580106, 0x23a5822b, + 0x2bb00102, 0x82052341, 0x18052343, 0x4387f007, 0x00700325, 0x5752016e, 0xa7430623, 0x06d1220b, 0x234387af, 0x11277003, 0x20056741, 0x21438411, + 0xcf84abff, 0x4388e420, 0x78006f24, 0x43864601, 0x2207a743, 0x82ebff64, 0x88a32087, 0x316f2243, 0x18438505, 0x220a03be, 0x88f707cc, 0x006e2443, + 0x862c0171, 0x0ba74343, 0xb7068522, 0x6e224388, 0x1142ec2a, 0xecff2105, 0x82085f43, 0x2c0423cf, 0x47881e08, 0x72006d24, 0x47862401, 0x820aa743, + 0x88de208b, 0x2b6d2247, 0x204786e4, 0x254789e4, 0x2c04affe, 0x47854707, 0x01270023, 0x43d38252, 0xb92a05a7, 0x11000a00, 0xb80101b1, 0x08785901, + 0x05f04105, 0x00ffff25, 0x82a5fe53, 0x85062057, 0x26002657, 0x18315201, 0x06f54101, 0x20057341, 0x82308218, 0x00ad2627, 0x07170200, 0x33ba18c7, + 0x035e2208, 0x10ff417e, 0x00008f26, 0x7106fa01, 0xf3202382, 0x07260982, 0x61035e01, 0xdb41f2ff, 0xf2ff2105, 0x2306db41, 0x01affe9f, 0x2005976e, + 0x2223842c, 0x427d0360, 0x82201083, 0x90222382, 0x47821806, 0x23864c20, 0x23846020, 0xa7420220, 0xfe69260a, 0x0511059c, 0x07cf59c5, 0x05600125, + 0x44f7ff14, 0xff21058b, 0x081f43f7, 0x34049c24, 0xcf594e04, 0x20d58306, 0x2623909a, 0x05ebff69, 0x88dc0711, 0x055e2347, 0xc2180115, 0x0423121b, + 0x88850634, 0x045e2247, 0x103b469b, 0x73224783, 0x47870508, 0x00700325, 0x416701c9, 0x012105a1, 0x09d74267, 0x06f90423, 0x234786ae, 0x4f700306, + 0x210c3b46, 0x8b840600, 0x4388f920, 0xd3006f24, 0x43865b01, 0x43855b20, 0xff8cff23, 0x208b82eb, 0x214388a2, 0x3b46596f, 0x2287830d, 0x880c0827, + 0x006e2443, 0x864101cc, 0x8a412043, 0x06ad2287, 0x214388b6, 0x3b46526e, 0x22478311, 0x88330811, 0x006d2447, 0x863901cd, 0x8a392047, 0x06342247, + 0x214788dd, 0x3b46536d, 0xfe692611, 0x0711059c, 0x2347855c, 0x52012700, 0x6e22d382, 0xaf410701, 0xb1122606, 0x01b80102, 0x05a6446e, 0xf7ffb822, + 0x22056b42, 0x829cfe53, 0x850520e3, 0x26002457, 0x46595201, 0x9a240543, 0x1100f7ff, 0x850a4346, 0x05db4930, 0xebff6432, 0x3b070c06, 0x43012602, + 0x07010000, 0xd5017600, 0x82054746, 0x0b47465f, 0x0706eb22, 0x44202382, 0x56222386, 0xe5421900, 0x82192005, 0x00002479, 0x8500ffff, 0x883c2047, + 0x01432447, 0x424e011e, 0x01210557, 0x22f78a4e, 0x880806eb, 0x00432447, 0x851a009f, 0x8d1a2047, 0x87b92047, 0x5e012547, 0x3a011b05, 0x3a204786, + 0x8520478c, 0x01234787, 0x429c045e, 0x8f851057, 0x47885520, 0xdb005824, 0x47865e01, 0x87415e20, 0x4121200c, 0x0125052f, 0x5b580106, 0x208d852a, + 0x054f412a, 0xa5fe6426, 0x63060c06, 0x00254385, 0x05600107, 0x26eb840b, 0x049cfe53, 0x88cb04eb, 0x0460227f, 0x101f439b, 0x23828620, 0xb005f122, + 0x38235b82, 0x83010000, 0x8413203b, 0x01012123, 0x29067d41, 0x7b00ffff, 0x0a04a5fe, 0x23823a04, 0x46005821, 0x45200533, 0x86265f84, 0xf104ebff, + 0x3b88c707, 0x14055e22, 0x20103344, 0x2223827b, 0x8571060a, 0x225f823b, 0x449a045e, 0x47821033, 0x076c0623, 0x82a78249, 0x07012557, 0xd4017600, + 0x82103b4b, 0x71052347, 0x2382f205, 0xa7834620, 0xc9182382, 0x4785110f, 0x47884a20, 0x1d014322, 0x85103b4b, 0x88f32047, 0x00432247, 0x103b4b9d, + 0xd7824785, 0x8f840120, 0x055e0123, 0x21d7931a, 0xd7837105, 0x8f840120, 0xd7990120, 0x8f876320, 0x00580123, 0x100b47da, 0x06218f84, 0x208f860c, + 0x63b21806, 0x9cfe2511, 0x3e066c06, 0x60224388, 0x9f411905, 0x71052313, 0x4385ba04, 0x01070024, 0xb7820460, 0x00ffff35, 0x0400001a, 0x024a07f6, + 0x003c0026, 0x00070100, 0x41e60043, 0xdf5d100f, 0x5df32005, 0x432108df, 0x0a494c61, 0xfe254383, 0x05f604af, 0x824387b0, 0x45e2205b, 0x102610cf, + 0xfc03fffd, 0x43863a04, 0x05237f82, 0x465aff3a, 0x5a200617, 0x8506c342, 0x88c7208b, 0x07c34b47, 0xc34b0120, 0x218b840a, 0x47887106, 0x5e045e22, + 0x85102b42, 0x88632047, 0x00582247, 0x105341a3, 0x0c204785, 0x06244786, 0x151e5801, 0x20050549, 0x298c8215, 0x32ffffff, 0x1105ebff, 0xfb449a06, + 0xfefb2408, 0x47d500c6, 0xd52005f9, 0x3707df43, 0x046d02a6, 0x003103e3, 0xd95a0346, 0x40335300, 0x00ffff00, 0x056d02ab, 0xaf231386, 0x98666600, + 0xfe043c13, 0x00990342, 0x00270000, 0xff010042, 0x00060101, 0x00000142, 0x0100b109, 0x8401ffb8, 0x00013160, 0x01900390, 0x00b0056d, 0x40270004, + 0x02030406, 0x0c871c19, 0x0a008e18, 0x07394682, 0xb0031701, 0x011b2b2f, 0x90231133, 0x04dd7766, 0xfd41016f, 0x000100e0, 0x204382a0, 0x2343977d, + 0x15010100, 0x4b623c82, 0x00072106, 0x01264384, 0x33112303, 0x44837d01, 0xc5fecb24, 0x20822002, 0x00010029, 0x01fafea8, 0x820d018c, 0x8e30208b, + 0x821d208b, 0x8247831d, 0x20028245, 0x8253821a, 0x001b2131, 0x1a191582, 0x508209f2, 0x7e668c28, 0xe6fe14e4, 0x1d821302, 0x00ffff23, 0x2097823e, + 0x2997821b, 0x01350347, 0xc00000bb, 0x17854001, 0x90037a24, 0x17829f02, 0x34032630, 0x070000ea, 0x32013403, 0xffff0000, 0x17827d00, 0x1784aa20, + 0x83dd3521, 0x01352217, 0x2830822d, 0xff940002, 0x01af0217, 0x28978222, 0x40380009, 0x0708090a, 0xa1a11806, 0x0521230c, 0x92820200, 0x01031522, + 0x08829f86, 0x00230982, 0x8e01021b, 0x840520a1, 0x666a25f7, 0x4501d670, 0x49250482, 0x0b02cefe, 0x820483d9, 0x00012167, 0x04219e82, 0x187f821e, + 0x231cdf85, 0x02160704, 0x03295c82, 0x051b0000, 0x0a030301, 0x21798216, 0x14770108, 0x11233f07, 0x11213521, 0x04211133, 0xf388fe1e, 0x73018dfe, + 0x037801f3, 0x038efc72, 0x7601c872, 0x67848afe, 0x60fe5c24, 0x67823904, 0x4b001322, 0x2a1e5371, 0x06060028, 0x01081607, 0x82050404, 0x0107266f, + 0x160a0505, 0x82758209, 0x0c107246, 0x2fb00626, 0x1101292b, 0x81867d85, 0x82211521, 0x83392085, 0x018e2385, 0x0382fe72, 0xfe2b8982, 0xfe780188, + 0xc2a00160, 0x83c4b402, 0xfdc4378e, 0x0001004c, 0x02ff0188, 0x00f80344, 0x402a000d, 0x04090b06, 0x816b0202, 0x00172407, 0x82010100, 0x181a2021, + 0x2008dfab, 0x210f8200, 0x6e820318, 0x34133108, 0x16323336, 0x0614011d, 0x35262223, 0x66657888, 0x65667879, 0x5e210379, 0x4d5f7879, 0x5f767560, + 0xffff0000, 0x00009900, 0xe9004603, 0x11002600, 0x07244382, 0xbb011100, 0x2008674c, 0x201788ea, 0x20178527, 0x201f8200, 0x08378203, 0x00060032, + 0x07ebff4b, 0x00c50560, 0x00270019, 0x00430035, 0x00550051, 0x4f1a406d, 0x4146484d, 0x33383a3f, 0x252a2c31, 0x171c1e23, 0x0a0f1115, 0x0c020408, + 0x463eb187, 0x0a025455, 0x0701060b, 0x06015300, 0x02135207, 0x15040602, 0x05000a00, 0x01050a00, 0xbd821d00, 0x07010925, 0x82070006, 0x0b00220b, + 0x08ba520b, 0x0601082a, 0x00010206, 0x0201031b, 0x07230119, 0xe0840120, 0x013e1722, 0x2722e689, 0xec83010e, 0xfa871985, 0x2a055e75, 0x2634013d, + 0x15062223, 0x18161405, 0x8c0b396e, 0x132f080d, 0x03170127, 0x498ca830, 0x74252674, 0xa8a98c4b, 0x25754c8b, 0x8e497226, 0xa41bfda8, 0xa8a88d89, + 0x03a58a8b, 0x45424b8e, 0x43424944, 0x87c70148, 0x4dfb2609, 0x48424548, 0x0813824a, 0x027ddf24, 0x65017dc7, 0x333cad7f, 0x7fad3b34, 0x3aac804e, + 0xac3a3434, 0x7f810380, 0x4d80adae, 0x7facac7f, 0x2219ccfc, 0x4e20083d, 0x20080988, 0x5841e602, 0x414d4158, 0xfb415a5a, 0x720448d5, 0xff000048, + 0x036d00ff, 0x0552019c, 0x000602b0, 0x240f840a, 0x02a40385, 0x340f84a0, 0x00000005, 0x006c0001, 0x03330297, 0x000600b6, 0x06064032, 0x0a9b4405, + 0x03041f25, 0x44000300, 0x01381c11, 0x35012313, 0x3c013301, 0xe0fea7f7, 0x02a72001, 0x0171fe26, 0x86011386, 0x5b825a82, 0x5b825420, 0x5b991b20, + 0x01000124, 0x66440015, 0x821a2005, 0x00012430, 0x82001b00, 0x066d4413, 0x3303012e, 0x23011501, 0xa7f74b01, 0xe0fe2001, 0x01265b82, 0x137afe90, + 0x2a827afe, 0x00ffff2d, 0x0300009a, 0x00b005b2, 0x82040026, 0x00072410, 0x82250204, 0x00012207, 0x22f1822d, 0x82270571, 0x400731b9, 0x2b070002, + 0x27370000, 0x7daa1701, 0x6d7dc702, 0x38051441, 0x023f0002, 0x05560330, 0x000a00c5, 0x407a000e, 0x0b0b0b12, 0x0a0e0b0e, 0x07ad5809, 0x3807b75f, + 0x5830b04b, 0x010c2540, 0x01080400, 0x15020001, 0x00020506, 0x02010103, 0x24a98200, 0x0202001d, 0x28b08304, 0x02070404, 0x401b0417, 0x2327892e, + 0x02000400, 0x1a201b82, 0x04222f8d, 0x2f830204, 0x06830220, 0x05184308, 0x2b2fb059, 0x23153301, 0x21352315, 0x03330127, 0x02032711, 0xc48282d4, + 0x010433fe, 0x06c4c9cc, 0x987803f4, 0x0270b0b0, 0x01b3fd75, 0xb5fe0249, 0x01000000, 0x8c026900, 0xba05ff02, 0x74001300, 0x11821040, 0x1300132a, + 0x0c0e1112, 0x03050809, 0x25071157, 0x5823b04b, 0xa4832940, 0x04821020, 0x82150221, 0x1bfd18a6, 0x16072108, 0x0120bd82, 0x01250e89, 0x401b0517, + 0x20268226, 0x822b8c04, 0x20298558, 0x21af8204, 0xe0820105, 0x9d182882, 0x200818e2, 0x6f242001, 0xc5877c48, 0x45333f43, 0xac05c512, 0x96474079, + 0x0105fe9d, 0x2f5965c9, 0x03d2fd2a, 0x056f6a20, 0x053d0431, 0x002602b0, 0x01000029, 0xff800307, 0x486efe79, 0xfe210533, 0x0623476e, 0x00004f2c, + 0xc5056b04, 0xba002800, 0x82822240, 0x2800282f, 0x24252627, 0x1d1f2223, 0x15171a1b, 0x06987e12, 0x2005525a, 0x0609440f, 0xb04b2808, 0x4140580c, + 0x09080119, 0x08001501, 0x08090609, 0x06010a21, 0x0405010b, 0x00000506, 0x04010c1d, 0x03020d0e, 0x82030400, 0x09002b0c, 0x00010709, 0x0707001b, + 0x2d58160d, 0x0108260a, 0x401b0817, 0x21438b42, 0x44b32906, 0x2fb05933, 0x010e012b, 0x21072107, 0x013e3335, 0x33352337, 0x20038327, 0xa74a1834, + 0x2117230c, 0x03822115, 0x02eb0134, 0xc1021f20, 0x0a26fc01, 0xa7022e2e, 0x989e05a1, 0xf218e804, 0x4f0809cc, 0xfe880104, 0x7f01057e, 0x814cc001, + 0x0cc2c231, 0x80a65a98, 0xedcf7ca7, 0x6906b2d9, 0x7c768365, 0x00a680a7, 0x99000300, 0x1e06ebff, 0x0a00b005, 0x2b001300, 0x2240c100, 0x00001414, + 0x2b142b14, 0x2728292a, 0x1b1d2224, 0x15161718, 0x0b0d1113, 0x2007e364, 0x0837410e, 0x40581738, 0x00012043, 0x0d150107, 0x04010b01, 0x29040b01, + 0x010c0300, 0x10190702, 0x093f1012, 0x05060601, 0x0a1b0000, 0x0a050501, 0x07070016, 0x1b020100, 0x00000108, 0x09170008, 0xb447401b, 0x833d8245, + 0x8208204a, 0x08002b4a, 0x17080e08, 0x2fb0590a, 0x4718012b, 0xfe600921, 0x012b2306, 0xbe181125, 0x1136140b, 0x01fa9301, 0x1001f278, 0x7ef2f0fe, + 0x8585837e, 0xbc037e83, 0xbe18c2c2, 0xa5340a17, 0xfd1c02a5, 0xfdb005e4, 0xccffcfc9, 0x93696c94, 0xb4f9fe5d, 0x125ffb18, 0xffff2508, 0xc4fe4200, + 0x1806af04, 0x47002602, 0x27000000, 0x89018003, 0x06014202, 0x833f4200, 0x02b11200, 0x4202b801, 0x2007d54e, 0x82088283, 0x00013823, 0x03ebff4b, + 0x00c505e0, 0x406b002b, 0x292a2b1a, 0x23262728, 0x181a1c21, 0x460d459d, 0x443608b1, 0x0708011e, 0x0806011f, 0x00010108, 0x01020109, 0x01091504, + 0xa8420a06, 0x010b2207, 0x068f6704, 0x001d0024, 0xa7420808, 0x62002008, 0x0e21085c, 0x05136402, 0x14152124, 0x1e753316, 0x22232805, 0x23013d00, + 0x83353335, 0x00342203, 0x08445c33, 0x21011d23, 0x30018215, 0x34fe9c03, 0x7039859a, 0x7b381434, 0xdbfeed3e, 0x08008292, 0xed230130, 0x1443743c, + 0x84387136, 0xfecc0199, 0x01cc0134, 0xaa9702f0, 0x0fc51111, 0xec170110, 0x8e9c8e02, 0x2001f10c, 0x10c70f10, 0x0e99b313, 0xeb829c8e, 0x71000426, + 0x8905ebff, 0x1d20eb82, 0x3933ed82, 0x0d003d00, 0x3d3b0a40, 0x2027352e, 0x0b04030a, 0x1817012b, 0x471b43f1, 0x33200d39, 0x080c5048, 0x01271362, + 0x02a90217, 0x87849804, 0x85859b9b, 0xa1020499, 0x3d3a393e, 0x3e373b3e, 0x90a61801, 0x90a5a58e, 0x48a9a68e, 0x44494343, 0xbf4b4246, 0x7d39fd7d, + 0x6a062504, 0x4d80ab95, 0x6a97ad80, 0x5a453006, 0x59404d41, 0xf2fc2e45, 0x81abac80, 0xadac804e, 0x5a5a407f, 0x57434e40, 0xc803405a, 0x488efb48, + 0x0226bf82, 0xedff4500, 0xbf829003, 0x28001b3b, 0x06400900, 0x020f251f, 0x052b0b02, 0x3d260607, 0x23010e01, 0x37363235, 0x27988711, 0x14150702, + 0x35033316, 0x0805e947, 0x3e171145, 0xdb023501, 0x30e7e106, 0x63363464, 0x889cb32f, 0x60b6d3ac, 0x212a3074, 0x4c062d2c, 0x03030d52, 0x0a07d4ee, + 0x0b0bbb0a, 0xddc3b201, 0x952a97b4, 0x4565bbfe, 0x8a038484, 0x5f433c2c, 0x01c1fe5f, 0x4961b63c, 0x08270623, 0x00c1054f, 0x82310022, 0x00233693, + 0xff23057c, 0x000301fc, 0xff200510, 0xb1120015, 0xffb80201, 0x076542fc, 0x08821520, 0x0002002d, 0x04940364, 0x00b00562, 0x8317000f, 0x121622b7, + 0x2ab78308, 0x23032701, 0x23110703, 0x82133311, 0x23112201, 0x05247c01, 0x03212f08, 0x3d8106f4, 0x896f0686, 0x838e068d, 0x8af7fd6e, 0x87018875, + 0xfe01d104, 0x014a01c2, 0x1c02b7fe, 0x75018bfe, 0xbd01e4fd, 0xbb0145fe, 0x5f82005f, 0xecff962a, 0x4e049104, 0x1e001500, 0x1a205f84, 0x252f5f84, + 0x2223010e, 0x00343500, 0x1d003233, 0x76112101, 0x660805a2, 0x07062201, 0x2e112111, 0x57140401, 0xfeda5fbc, 0xc94301ce, 0xfd2001cf, 0x4d8d3700, + 0xfe57ba5f, 0x3a8d4a90, 0x8b361c02, 0x013b375e, 0x01e2e849, 0xe7cafe4f, 0x35b8fe2f, 0x033e3c39, 0xfe39412a, 0x341e01eb, 0x00ffff3d, 0x06f5ff63, + 0x00b20559, 0x00030427, 0x0086020c, 0x01460327, 0x01000006, 0x03fa0307, 0x4d00004b, 0x02210539, 0x08075586, 0x2f826620, 0xc005f022, 0x00242f82, + 0x94020400, 0xbf202f84, 0xe2202f86, 0x94202f88, 0x67262f88, 0x2007f5ff, 0x2782af05, 0xfdfffe24, 0x2f848e02, 0x2f85f720, 0x88120421, 0x888e202f, + 0x825e202f, 0x8479205f, 0x82fc202f, 0x202f858f, 0x212f8536, 0x2f8f6b03, 0x02002e08, 0xebff4300, 0xed054e04, 0x21001400, 0x06400900, 0x0600151b, + 0x012b0b02, 0x15110004, 0x22230014, 0x12343500, 0x17163233, 0x27012e37, 0x8edc1813, 0x013f080b, 0x011301e8, 0xe1d4fe53, 0xfce2fee0, 0x329d5ade, + 0xaaea1803, 0x249e78a8, 0x7f7d6c99, 0x3ced0593, 0xd8fe6afe, 0xc9fef5dc, 0xe5d01901, 0x2f351401, 0x2fd4ab05, 0x9cce91fb, 0xb047347f, 0x82af788d, + 0xa6003792, 0xf4041bff, 0x0700b005, 0x04400700, 0x0b010006, 0x1123052b, 0x03821121, 0xd7f40436, 0x04d65ffd, 0xd405e54e, 0x95062cfa, 0x40000100, + 0xc104f3fe, 0x0e202b82, 0x09212b83, 0x292b8204, 0x21170109, 0x09352115, 0x06823501, 0x01072508, 0x04fe7f03, 0xfb3b0303, 0xfd52027f, 0xfc4704ae, + 0xfc0103ff, 0x96fd2502, 0x0297c305, 0x98c602c8, 0x96fd05c3, 0x9e284782, 0xe1036d02, 0x03003103, 0x02204783, 0x01367383, 0x03213521, 0x03bdfce1, + 0xc46d0243, 0x01000000, 0x00003b00, 0x6b828b04, 0x23830b20, 0x82060421, 0x0126086b, 0x01373317, 0x03230133, 0x02213523, 0x1a061c22, 0xfed25b01, + 0xd1d8be17, 0x7c016301, 0x34047e7e, 0x410250fa, 0x558200c5, 0xebff6426, 0x4e04d907, 0x3006034c, 0x3108400b, 0x0f231c2a, 0x2b0b0302, 0x23001401, + 0x05db6922, 0x183d0021, 0x390a0cc8, 0x34231500, 0x06222326, 0x12161507, 0x35363233, 0x33161421, 0x35371232, 0x1482012e, 0x07155c08, 0xddf6fed9, + 0x4e4de89f, 0xfede9ee8, 0xdc0801f8, 0x4d4ee99f, 0x01dba0e9, 0x767cf30a, 0x1517bd85, 0x7d7783bf, 0x787b71fa, 0x1616bf82, 0x7b7684bf, 0xfee7ff01, + 0x9393c3d3, 0xe72d01c3, 0x2f01e63a, 0xc19090c1, 0x97e6d1fe, 0x245ffabb, 0xb8fffe60, 0x01b89a9a, 0x5e246001, 0x8298bafb, 0xb2ff29eb, 0xa8024bfe, + 0x1c002d06, 0x1026eb83, 0x2b0b0102, 0x78181405, 0x36200db0, 0x24098945, 0x90011115, 0x75c018ba, 0xc3422c08, 0x2c4824af, 0x1b2b1619, 0x763f544f, + 0x042d088e, 0x0bc2b3f7, 0x0605b90a, 0x09fb545e, 0x3e008200, 0x00650002, 0x042204f9, 0x00190003, 0x40090033, 0x0c332606, 0x2b0b0219, 0x33013e13, + 0x7a171636, 0x232a0831, 0x2e272622, 0x06220701, 0x1997010f, 0x2f6f073b, 0x4e45417c, 0x42504f5d, 0x0a307c40, 0x42407c30, 0x4e5d4f50, 0x2f7c4145, + 0x35199814, 0x4e446d03, 0x292e1c01, 0xc6454d1c, 0x291c4d45, 0x4e011c2e, 0x1392e844, 0x0139ab82, 0xa6009100, 0xe704ef03, 0x07001300, 0x08120440, + 0x012b0b01, 0x07211533, 0x08038221, 0x2337275f, 0x21372135, 0x17132135, 0xfed01f03, 0xbd017cbf, 0x646fd4fd, 0x1901aa4b, 0x026bfe7c, 0x03649206, + 0xc9dfcae0, 0xc98741c8, 0x0701cadf, 0xff000041, 0xff9600ff, 0x04dc03eb, 0x00670054, 0x0057001f, 0x390040bc, 0x0307019a, 0xfdfbff5a, 0xb111007e, + 0xbcb00100, 0xb12b0db0, 0xfdb80101, 0x08c3437e, 0xe9ff9226, 0x5b04f203, 0x21243382, 0xcf001200, 0x7c20338a, 0xcf203385, 0x7c203387, 0x00363385, + 0x00240002, 0x05f90300, 0x000500b0, 0x4009000f, 0x000d0806, 0xbb830203, 0x01093e08, 0x03210123, 0x03072327, 0x37331713, 0x01d2a401, 0xd380fe83, + 0xd9027efe, 0x130612dc, 0x0611ddd7, 0xfdb00513, 0x0229fd27, 0x3cdf01d7, 0xfe21fe3c, 0x003b3b22, 0xff510001, 0x013d0180, 0x374f8206, 0x04044007, + 0x2b0b0101, 0x37230725, 0x3d013335, 0xaf3d6e7e, 0x8ef8ee6e, 0x2d05db41, 0x04000018, 0x002d0617, 0x001b0017, 0x0d824053, 0x191a1b23, 0x0fb17918, + 0xa7490a20, 0x2e402706, 0x0203010b, 0x0482010c, 0x7b181520, 0x0f240931, 0x00010516, 0x00397282, 0x0204081b, 0x160a0101, 0x06020907, 0x17060806, + 0x2b2fb006, 0x35231133, 0xa30d1933, 0x21300812, 0xbd331123, 0xcfe6a5a5, 0x255c8e48, 0x6d46783e, 0x02d5d566, 0x03f3f367, 0xc35cb486, 0xc91d1fd4, + 0x61611b15, 0x7afcb45c, 0x00003a04, 0x2a00ffff, 0x3820a782, 0x2622a782, 0xb8824900, 0x4f000724, 0x1787b502, 0x89cc0621, 0x64032117, 0xed20178a, + 0x27221788, 0x17834900, 0x37820020, 0x826a0521, 0x00162c3f, 0x0772fe59, 0x00ae05ec, 0x821c000d, 0x3b57085b, 0x47004100, 0x53004d00, 0x61005d00, + 0x69006500, 0x71006d00, 0x7e007500, 0x86008200, 0x8e008a00, 0x96009200, 0x2e403100, 0x8f919395, 0x87898b8d, 0x7f818385, 0x72737c76, 0x6a6b6e6f, + 0x62636667, 0x5a545e5f, 0x4849514f, 0x3c3d4245, 0x1f26353a, 0x09020e19, 0x4f2b0b16, 0x1d2005a0, 0x29057448, 0x36320535, 0x27263435, 0x0582013e, + 0x11012b24, 0xf9181427, 0x15200aeb, 0x2505b643, 0x06072335, 0x27823316, 0x23112608, 0x15331101, 0x35211533, 0x11333533, 0x15211101, 0x35251523, + 0x35231121, 0x011e3301, 0x2b061415, 0x35013501, 0x851f8221, 0x230b8b03, 0x16323313, 0x05212184, 0x058e4923, 0x33213582, 0x080b8a25, 0x81370353, + 0x80806666, 0x01806568, 0x36695c20, 0x6f2c2830, 0x4a9fbc65, 0x4a4a423f, 0x034b4040, 0x322837ba, 0x06025436, 0x6a515b69, 0x71c4f95c, 0xc72805c4, + 0x016df86f, 0xec05c435, 0xfc6f3601, 0x332f05da, 0x017e3235, 0xfd16014e, 0xfd15015b, 0x0214015c, 0x290b890a, 0x393d5dbc, 0xfc5d3a3c, 0x008471f1, + 0x6f220722, 0x4d080084, 0x7b604402, 0x6270607b, 0xd8627979, 0x462d4c4f, 0x273e0f0d, 0xdbfd4b4b, 0x4e4e45d8, 0x4f447045, 0x2c9b444f, 0x062e2d36, + 0x4f5c514d, 0x4ffb7a01, 0x71ca3b01, 0xc5feca71, 0x1d011f06, 0x74a9a974, 0xfca9e3fe, 0x262e02b6, 0x03a92b28, 0x0084744a, 0x8438f921, 0x04712e61, + 0x2827205b, 0x7efc9628, 0xf915fcfa, 0x0806857e, 0x0005002c, 0x07d5fd5c, 0x006208d7, 0x001e0003, 0x00260022, 0x400f002a, 0x2329270c, 0x0c211f25, + 0x05020004, 0x03092b0b, 0x37363405, 0x5e49013e, 0x011f2405, 0x41013e33, 0x072b053b, 0x1715010e, 0x03331523, 0x83231533, 0x04700803, 0xfcbf0318, + 0x0444fc41, 0x48281a0f, 0x8893a95e, 0xc20303a7, 0x362b3b01, 0x4f2a333b, 0xcacaca3b, 0x0204044b, 0x52060404, 0x31fc31fc, 0x35f1cf03, 0x83271a3d, + 0x8297804e, 0x34330682, 0x4d32353f, 0x585a371c, 0x4cfdaa5b, 0x048d0a04, 0x00ffff00, 0x043bfe51, 0x029d0419, 0x00eb0326, 0x00070100, 0xff4a017a, + 0xb10900fa, 0xffb80101, 0x2b0db0fa, 0x7e262383, 0x7b04eeff, 0x23820606, 0x2383ed20, 0x00520125, 0x56180085, 0x1820054d, 0x3b053844, 0x04640002, + 0x066d03e7, 0x000800fa, 0x4009001c, 0x07121c06, 0x2b0b0201, 0x27230701, 0x252e0282, 0x06143733, 0x23262223, 0x27150622, 0xda823634, 0x32333b08, + 0x6d033536, 0xb2b3d002, 0x230102d0, 0x415badc3, 0x1c267f34, 0x42595f2a, 0x1b268929, 0x06ed042d, 0xf4069b9b, 0x456b46f9, 0x451a2136, 0x2238446e, + 0x63000200, 0x5b04e404, 0x6382cb06, 0x63831820, 0x44091121, 0x2324059b, 0x37331701, 0x2f210282, 0x05404101, 0x32373f08, 0x06141516, 0x5a02010f, + 0x02e8fedf, 0xd3b3b3d2, 0x40073002, 0x073b4637, 0x364b978c, 0xffea0501, 0xa8a80600, 0x047d8306, 0x1e201d19, 0x3a4c5869, 0x003b073e, 0x33ff0200, + 0x7203e404, 0x5f829e06, 0x5f830c20, 0x8b090b21, 0x012108c3, 0x03230533, 0x03720333, 0xe59fa0e5, 0xc5250103, 0xd0af65fe, 0x06ea04ef, 0x01069595, + 0x0b015700, 0x22008200, 0x826a0002, 0x89aa20a3, 0x0b092143, 0x3320a385, 0x28060941, 0x23033301, 0x01c68f01, 0x27468225, 0x0303e5a0, 0xafd1f050, + 0x45839084, 0xf5feb422, 0x1c2a4384, 0xac040000, 0x07008d04, 0x87830b00, 0x080a2e08, 0x0b020204, 0x0721252b, 0x01330123, 0x03210123, 0xfe570323, + 0x01fe5619, 0xcc01f8cc, 0x010afefe, 0xe906a957, 0xfb8d04e9, 0x01ab0173, 0x2a8785c5, 0x03950469, 0x00b90606, 0x8314000f, 0x10132143, 0x934c8785, + 0x3f240805, 0x16143301, 0x35363233, 0x37272327, 0x02ff0233, 0x9a99b505, 0xac0206b5, 0x4b4e4f4c, 0x02ccbf2d, 0x06b005f3, 0x08c4c118, 0x06cd3622, + 0x01285383, 0x69049000, 0x0c068501, 0x3505cb45, 0x0b010401, 0x3337132b, 0x90231503, 0xda1b7e77, 0xfeff0d05, 0x28829af7, 0x8e000322, 0x2e20bf82, + 0x0e33bf82, 0x20001700, 0x08400b00, 0x100f181e, 0x0b030001, 0x7011332b, 0x152308bd, 0x18230614, 0x820a378f, 0x3437088c, 0x8e012b26, 0xefd7ad01, + 0x7a725b64, 0x00ffcde1, 0x5b600001, 0x00ff5f5c, 0x676b68bb, 0x8d04bb6c, 0x8253a0a1, 0x61911a21, 0xfa01a7a3, 0x4b4dc6fe, 0x49a8544e, 0x82404c47, + 0x00013773, 0x04efff68, 0x009d0430, 0x4007001d, 0x01030a04, 0x17012b0b, 0x7b690416, 0x07716709, 0x08070345, 0x02280431, 0xda00ff05, 0x01eafed7, + 0xfdded716, 0x75ea0205, 0x8b8b7075, 0x01757470, 0xcec40687, 0xf3d30b01, 0xce0b01d2, 0x686d06c2, 0x7cf47aa1, 0x416f69a2, 0xdb830557, 0xdb824220, + 0x1300092b, 0x06400900, 0x00010b0a, 0x20d78502, 0x235a8200, 0x11032300, 0x08070255, 0xb7018e20, 0xfe2401d9, 0xc5c5d9dc, 0x71999872, 0xf3fe8d04, + 0xfed2d2d1, 0xfccc03f5, 0xd37ba2f4, 0xb784a379, 0x03214f82, 0x204f82ce, 0x21b7830b, 0xb7830406, 0x21112123, 0x37038615, 0x08fe7803, 0xc0fc4e02, + 0xb2fd4003, 0xfc01f801, 0x04c0c4fe, 0xf2fec18d, 0x83058f41, 0x84da203b, 0x21f3828b, 0x3b850204, 0x3d852320, 0xfd83032e, 0x4c03f2fd, 0x0302a6fd, + 0x22fede01, 0xd4223583, 0x27410000, 0x045f2405, 0x8320009d, 0x8309206f, 0x05d74c33, 0x4106494a, 0x38080e26, 0x35233537, 0x385f0421, 0xfeebbcf3, + 0xe42401db, 0x0205fce4, 0x7c767ae9, 0x60839b9a, 0x01ef1e77, 0x6a469fe1, 0xf3d50901, 0xc80a01d3, 0x5b5a06a8, 0x7df47aa1, 0xd4171fa1, 0x7b5218b1, + 0x887a2008, 0x820020db, 0x4b21209f, 0x33380597, 0x33112111, 0xfdf47a04, 0x02f2f2fa, 0xd801f406, 0x8d0428fe, 0xf3010dfe, 0x0121d788, 0x4b378280, + 0x3782095b, 0x80013324, 0x1482f2f2, 0x00010027, 0x03eeff2f, 0x200a828c, 0x21c38310, 0x57820400, 0x24190120, 0x9a391042, 0xcbb9edf2, 0xea0206ec, + 0x664e5a6b, 0xe5fc8d04, 0xb2bbd3b1, 0x6b5a5906, 0x21638859, 0x43825d04, 0x43830c20, 0x18053b41, 0x3608ae42, 0x01210109, 0xf2f26beb, 0x01410155, + 0x0164fe2d, 0x01cbfeb6, 0x822bfed5, 0x012026a2, 0xfdd5fde0, 0x2483829e, 0x0300008e, 0x203f8279, 0x223f8805, 0x82152125, 0x800128d5, 0x15fdf901, + 0x82c0c0f2, 0x8500201b, 0x6e052127, 0x0f200b82, 0x02202783, 0x0129ab85, 0x11231121, 0x01230127, 0x20078207, 0xb58d1821, 0x03332e12, 0x0273fb5a, + 0x09fd01f6, 0xfd01fa02, 0x824a8407, 0x0297244b, 0x4c260387, 0x26271173, 0x8f0271fd, 0x41aa8702, 0x85200873, 0x840e7341, 0x01333c67, 0x04331137, + 0xf3fdf285, 0x02f2f206, 0x03f2060d, 0xe8fc0119, 0xe9fc8d04, 0x42160301, 0x663305db, 0x6404eeff, 0x0d009d04, 0x09001b00, 0x17100640, 0x4c020209, + 0x0020066f, 0x22051f42, 0x18271500, 0x08087c4e, 0x36323333, 0xfe640435, 0xfee2e3e4, 0xe31b01e3, 0xf31d01e3, 0x8e7d7c91, 0x907c7d8f, 0xfed5cd01, + 0xd50a01f6, 0x0901d4f3, 0x01d4f7fe, 0x7f9c9c7f, 0x9e9e81f4, 0x26678581, 0x04ebff70, 0x94c50547, 0x11352567, 0x32330034, 0x15216787, 0x05a74411, + 0xfe470432, 0xfee1e1f6, 0xe10901f5, 0xf30c01e1, 0x80787981, 0x23080383, 0xfef90202, 0xf91e01e2, 0x01f7ac01, 0xf7e0fe20, 0xb3b39f02, 0xa152fe9f, + 0x00a2b3b4, 0x5100ffff, 0x8908eeff, 0x2622cf82, 0x7882eb03, 0xeb030725, 0x83007004, 0x004a3217, 0x06eb0300, 0x0326020c, 0x010000f2, 0x43530106, + 0x05cd461b, 0x84065b7c, 0xdf05211f, 0x07261f86, 0xf9005501, 0x21852900, 0x0db02923, 0x20438a2b, 0x23238707, 0x28017600, 0x2610c76a, 0x04000013, + 0x82ca053c, 0x83f12023, 0x6a002367, 0xe37f1a18, 0xffff2209, 0x211f8400, 0x1f870406, 0x3c520123, 0x20658516, 0x82658216, 0x0034241f, 0x84d70500, + 0x47ef201f, 0x01220577, 0x218a0016, 0x7e268784, 0x7b0452fe, 0x9b478d04, 0x07002505, 0x65015701, 0xff251785, 0x068204ee, 0x08b3470a, 0xea005924, + 0x7d851c00, 0xc3871c20, 0x2005d747, 0x24238837, 0x001a0156, 0x20238572, 0x20238d72, 0x2423881b, 0x00b80054, 0x20a5856b, 0x21238c6b, 0x2387b505, + 0x00710023, 0x104f6080, 0x22206b85, 0x58244788, 0x2b008700, 0x2b204785, 0x3c264787, 0xe9030000, 0x23820b06, 0xef82ec20, 0x53010624, 0x21851a39, + 0x0f411a20, 0xfe3c2405, 0x84e90319, 0x261f83eb, 0x01630307, 0x4899fe1e, 0xde1805ab, 0x512008ff, 0x1922f782, 0xcf481d06, 0x21438206, 0x43852c58, + 0x43822c20, 0x01002708, 0xefff4f00, 0x8d04ca03, 0x07001f00, 0x0d010440, 0x1b2b0b01, 0x21152101, 0x37013e03, 0x14151636, 0x26222306, 0x7442023f, + 0x343c0805, 0x06222326, 0x02477c07, 0x1d0cfec9, 0xb63a6c25, 0xbee3dcce, 0xe90205fe, 0x65675b71, 0x5a575b66, 0x02f80114, 0xf3fec695, 0x03022016, + 0xd2b2b7cb, 0x0f06a0a4, 0x5e6c5445, 0x272f6d5b, 0x23067f42, 0x16061904, 0x52228b88, 0x8b852841, 0xcf852820, 0x1820ab85, 0x24087b49, 0x003d0176, + 0x2021852a, 0x2021822a, 0x26438300, 0x0400008e, 0x820b063c, 0x41dc2023, 0x3c200513, 0x290a8563, 0x8e00ffff, 0x3c0419fe, 0x1f868d04, 0x6303072c, + 0x99fe2101, 0x02b10900, 0x1341b801, 0x20438508, 0x25238706, 0x21017600, 0xcb631800, 0x05bf4905, 0x66264782, 0x6904eeff, 0x23821906, 0x67828220, + 0x59010726, 0x2b00d100, 0x02212383, 0x089f41b0, 0x64222383, 0x23882a06, 0x9f005424, 0x47857a00, 0xaf877a20, 0x05212384, 0x242386c4, 0x67710006, + 0x20218514, 0x82218214, 0x208b8367, 0x20cf8485, 0x23678481, 0x00a50053, 0x850ae541, 0x20d382f3, 0x84d38485, 0x20d38223, 0x10e7418a, 0xd3834785, + 0xd3822384, 0x934a8a20, 0x216b850d, 0x47847903, 0x6b847e20, 0x43015524, 0x2f4232fd, 0x32fd2105, 0x5f418e82, 0x20238206, 0x84af828f, 0x226b8223, + 0x8589037b, 0x89032123, 0xfe212387, 0x23478b19, 0xf5006303, 0x61268f90, 0x79030000, 0x4786e605, 0x76000624, 0x4585f8e5, 0x4ff8ff21, 0x8e24088f, + 0x5d0417fe, 0x7d208f84, 0x6b828f83, 0x97fe2322, 0xfe212585, 0x266b8697, 0x04eeff2f, 0x8200065e, 0x847c2047, 0x015224b3, 0x42120022, 0x12200513, + 0xd7824884, 0x19828020, 0xde058e22, 0x7b202382, 0x06230982, 0x42ea5501, 0x3b240d57, 0xdc0152fe, 0x1f826784, 0x01060031, 0x0000f157, 0xffffff00, + 0x020000c6, 0x86190649, 0x01072637, 0x0050ff54, 0x205b8569, 0x215b8669, 0x23829fff, 0xb3057622, 0x00232387, 0x1818ff71, 0x840f8786, 0x06702223, + 0x22478820, 0x451fff58, 0x8e26101f, 0x7a040000, 0x23820406, 0xa3827a20, 0x52010724, 0xbb448200, 0xfe682610, 0x045f040d, 0x2023829d, 0x060f4179, + 0x8dfe7122, 0x20060f41, 0x8290838d, 0xff6826eb, 0x055f04ef, 0x252387ee, 0x3b015501, 0xb3853800, 0x45183820, 0x2382096f, 0x88290621, 0x00542423, + 0x857900a1, 0x8d792023, 0x86142023, 0x01062423, 0x85266e52, 0x42262021, 0x03230897, 0x820b06ce, 0x8277201f, 0x0106238b, 0x7b444d53, 0xfe8e260d, + 0x04ce0352, 0x261f858d, 0x57010700, 0x42000901, 0xce22073f, 0x1785de05, 0x82070121, 0x0003219f, 0x890a8d41, 0x19062123, 0x54215b88, 0x0a754169, + 0x2206a742, 0x87b305ce, 0x7100231f, 0x9b850331, 0x9b880320, 0x84420421, 0x8576209b, 0x4425209b, 0x68260d03, 0x3004efff, 0x3f821b06, 0x1f857520, + 0x45447520, 0x0643410a, 0xee053022, 0xa3831f86, 0x43412b20, 0x06302214, 0x21438814, 0x1f415e52, 0x2063850d, 0x241f8616, 0x01760007, 0x26e7905a, + 0x0452fe1c, 0x828d04d3, 0x00712823, 0x01070000, 0x84e80257, 0x001c24ff, 0x84ac0400, 0x271782ff, 0x54010701, 0x6900a800, 0x42051544, 0x00200777, + 0x05212384, 0x253b85b3, 0x71000601, 0x21850370, 0x47060341, 0x0620052b, 0x83062b47, 0x4338207f, 0x7e2610ef, 0x7b04eeff, 0x6346cc05, 0x00062306, + 0xf146616a, 0x0002280b, 0x02cc0476, 0x4d9006fe, 0x10210713, 0x15134d13, 0x17332608, 0xf6022307, 0x93b00602, 0x0207af96, 0x434641b5, 0x02b35742, + 0xb00584a4, 0x7c7d6106, 0x3a2f0662, 0x05e02e3b, 0x22e282bc, 0x4f00ffff, 0x0820051b, 0x2208fb46, 0x44810176, 0x238510cf, 0x23880920, 0xca004323, + 0x0a714800, 0x45000021, 0x6422067f, 0x3745db05, 0x486a2108, 0x870a7d45, 0x3106211f, 0x01231f87, 0x413a6e58, 0x3a20051f, 0x20052342, 0x22fb8266, + 0x88150664, 0x6c52221f, 0x201f8527, 0x201f8b27, 0x261f8617, 0x01760007, 0x85290068, 0x08d34821, 0x18204385, 0x43232388, 0x6900b100, 0x8f460a65, + 0x06852208, 0x28238220, 0x01000081, 0x00580107, 0x0ffb4390, 0x009dff27, 0x05720200, 0x084344ca, 0xf9fe6a22, 0x22051341, 0x431ab002, 0xff21068f, + 0x222382b8, 0x44040659, 0x52220843, 0x1f441dff, 0x008e2610, 0x06680200, 0x23238606, 0x18760006, 0x230a7550, 0xa7ffffff, 0x80228182, 0x67880706, + 0x62ff4322, 0x82108349, 0xce032143, 0x77208b84, 0x06232d82, 0x49126a00, 0x1f840d83, 0x1f848784, 0x36520122, 0x850d8349, 0x8383831f, 0x0007241f, + 0x42320176, 0x23851077, 0x43848783, 0x7b430023, 0x05bf4319, 0x7b411920, 0xfe682605, 0x0430043e, 0x083b439d, 0x62017a24, 0xe744fdff, 0xfdff2105, + 0x2606e744, 0x0400001c, 0x42ff06ac, 0x072606ff, 0x0f010204, 0x45826200, 0xb0030223, 0x06334162, 0x21052343, 0x23873506, 0x01560125, 0x8370000a, + 0xb0022223, 0x84238c70, 0x857120ef, 0x835120ef, 0x410220ef, 0xff210579, 0x204386ff, 0x23438620, 0x77580106, 0x880a0542, 0x8804201f, 0x7552221f, + 0x05254216, 0x8506934a, 0x860620a7, 0x0007241f, 0x48710176, 0x2385104b, 0x23880720, 0xba004322, 0x2210836c, 0x4900003c, 0x06240acb, 0xde2d8003, + 0x20061141, 0x2aca84de, 0xffffff00, 0x040000ea, 0x828d0442, 0x82762047, 0x030726cb, 0xff53ff80, 0x05db4877, 0x4177ff21, 0x23a10537, 0x0002003f, + 0x047fff68, 0x009d0494, 0x00210013, 0x16064009, 0x02050f1d, 0x14012b0b, 0x07170706, 0x0aa07927, 0x2810dd4c, 0x98333766, 0x78359fa1, 0x05e24c40, + 0x1e01e235, 0x7d7c91f3, 0x7c7d908f, 0x5acd0190, 0x82983d9d, 0x4c18179e, 0xf62107e7, 0x0fe74cd3, 0xbf828e20, 0x8d043c26, 0x23001a00, 0x21237783, + 0x8301031b, 0x23112177, 0x18090551, 0x5f0dbb40, 0x480808dd, 0x01f28001, 0x64efd1ce, 0x0b5f6d61, 0x060cfa0e, 0xdcf05e62, 0x66676667, 0xfebd01dc, + 0xba8d0443, 0x29855da2, 0x636a8f1e, 0x10145f29, 0x61336614, 0x56c25a55, 0xff5e4c4d, 0x047600ff, 0x05f90295, 0x010602b0, 0x00000054, 0x280f8202, + 0x07f402d3, 0x000f0025, 0x23838320, 0x0a001019, 0x2322fb85, 0xe4552622, 0x012f2a07, 0x013e2725, 0x26363527, 0x083b5323, 0x413a3708, 0xb1414543, + 0x93ad0702, 0x0206ac92, 0x47087dfe, 0x4c05053d, 0xaba00744, 0x05013d54, 0x39392db0, 0x785f062d, 0x36065f78, 0x17160376, 0x5f191b06, 0x3734444f, + 0x73853b06, 0xf502d024, 0x7382dc06, 0x2321f784, 0x14674519, 0x12541320, 0x02370812, 0xad0602ed, 0x07ad9392, 0x453fb302, 0x5f9e4143, 0x29823847, + 0x5e682a1f, 0x2a8d2c48, 0xb0052c1e, 0x7a7a6006, 0x3a2e0660, 0x0f012e3a, 0x33476b4b, 0x6f4a1b24, 0x82243247, 0x01002aea, 0x9afe5c00, 0xc8004f01, + 0x09375000, 0x1123012b, 0xf34f0133, 0x029afef3, 0x3423852e, 0x015ffe18, 0x004200d3, 0x40070013, 0x01050004, 0x1e252b0b, 0x34fd1801, 0x2622080e, + 0x630f0127, 0x426a8b61, 0x1c23265e, 0x2f392031, 0x3442373b, 0x71654c8d, 0x0a8e1319, 0x30222e0d, 0x4c82304e, 0xb0ff0128, 0x8e014bfe, 0xe782cd00, + 0x03204b83, 0x52184b83, 0x01200e17, 0x07792319, 0x3b17393b, 0xf4fecd41, 0x0908c3b3, 0x580705c6, 0x000c0153, 0xff9eff01, 0x03ed02d7, 0x203f8685, + 0x223f8207, 0x18322103, 0x270a6b5f, 0x01622123, 0x3301fa22, 0x0701b418, 0x03defe26, 0x88e4ff85, 0x08fbb318, 0xf3820020, 0x00007026, 0xc5056b02, + 0x20059353, 0x07635105, 0x0225352c, 0xf7fef26b, 0xd004fb01, 0xab832acb, 0x004c0025, 0x820c0400, 0x831a2027, 0x831020f7, 0x01292227, 0x06305535, + 0x97182220, 0x36080721, 0x06141516, 0x21170107, 0x5afc0c04, 0x5174c901, 0x746d696c, 0xfd0502eb, 0x9ff3d4d6, 0x02f7fea5, 0x01c27102, 0x4f9a7be8, + 0x6b8e8a6a, 0xe6feb806, 0xabe987d3, 0x8305d6fe, 0xff5e2487, 0x824604eb, 0x832a205f, 0x0827215f, 0x0120cb82, 0x4e184b82, 0x3322155f, 0xe8563632, + 0x23152d05, 0x33242627, 0x2f040432, 0x79726371, 0x0c764d18, 0xba7e8038, 0x7f7177ba, 0xe9816079, 0x0c010602, 0x0701e3c6, 0xa5642504, 0xad182b30, + 0xc02e0c3c, 0x7e5f6976, 0xaf065875, 0x0200d8db, 0xe3824800, 0x05744308, 0x000a00b0, 0x4009000f, 0x090b0e06, 0x2b0b0204, 0x23153301, 0x21112311, + 0x01330127, 0x07271121, 0xc5c5af03, 0x0692fdf3, 0xfdfa6d02, 0x067e018f, 0xc4eb0117, 0x2701d9fe, 0xfcf50394, 0x017a023b, 0xcf830036, 0xcf827420, + 0x4b825220, 0x2316274e, 0x24222302, 0x080d274e, 0x03549d38, 0x2ca7fd25, 0xd54e7e32, 0xcff8faee, 0x0205e3fe, 0x7c7090e5, 0x6d7c8783, 0x7d02186a, + 0xfed23303, 0x012c2186, 0xdde4ff02, 0xc0cff7fe, 0x7f681406, 0x9a81889a, 0x6e823d40, 0x7c20bb82, 0x67266f82, 0x1a00c505, 0xbb832700, 0x00211b24, + 0xbb820213, 0x7e163221, 0x12580834, 0x23002c06, 0x11350022, 0x22130034, 0x4e150706, 0x440807a8, 0xa457ac02, 0x79422f40, 0x39b38a51, 0xecd55f9f, + 0xdce2f4fe, 0x4301dffe, 0x1d8461b2, 0x82797397, 0x21c5057b, 0x1d1bbf1b, 0x3f819cc8, 0xdddef747, 0x1f01fafe, 0xf3a101f1, 0x12fd3601, 0x99563f47, + 0x86839eb5, 0x24f78483, 0x03000026, 0x27f782ea, 0x4007000c, 0x01040b04, 0x27088382, 0x1511010a, 0x00103523, 0x21352137, 0xbdd7ea03, 0x900c01f3, + 0xc40327fd, 0xf4feed04, 0xa1fe65fe, 0x5601e7e7, 0xc3931d02, 0x51263f84, 0x1904eeff, 0xc5829d04, 0x08213f82, 0x243f831c, 0x2e272634, 0x057a5b01, + 0x16303319, 0x011e4a08, 0x03363233, 0xe1906f27, 0xd6d1f6cd, 0xe90205f1, 0x696c6a6d, 0xcfd7a067, 0xd8dbfcfe, 0x0106effe, 0x6c8c01e9, 0x3b017875, + 0x33204f3d, 0xb9939c9b, 0x5006a7c1, 0x403d4d5d, 0x9f32234a, 0xbab49b97, 0x545d06b1, 0x0100004e, 0x06574600, 0x0b600020, 0x09135505, 0xe920ba82, + 0x07339f18, 0x34fccc25, 0x82c1cc03, 0x202f82ae, 0x24af827e, 0x008d047b, 0x21ef8311, 0xaf830300, 0x04141128, 0x35242223, 0x7c523311, 0x04113f06, + 0xe5e7fe7b, 0xf2e6fee5, 0x8f7d7d90, 0x0afd8d04, 0xc8e1e1c8, 0x0afdf602, 0x70797a6f, 0x4882f602, 0x1c000126, 0x8b040000, 0x5f088b55, 0x213c08eb, + 0x21012301, 0x06104002, 0x0125010f, 0xf743fe01, 0x010145fe, 0x3e413501, 0x73fb5b03, 0x2407d753, 0x05000034, 0x0e2354d7, 0x39821320, 0x03230322, + 0x13273d82, 0x04331333, 0x82990637, 0xe7e33d3e, 0xe7ca06cc, 0x0001e4fe, 0xd2c9069a, 0x2d036001, 0x070373fb, 0x8d04f9fc, 0x3003d0fc, 0x2c248784, + 0x51040000, 0x2107ff53, 0xcf830401, 0x09211326, 0x010b2101, 0x24080583, 0x01f13c02, 0x018afe1b, 0xf9e7fe7f, 0x01e5fef8, 0x0189fe80, 0x01f80219, + 0xfdbffd95, 0xfe9d01b4, 0x024c0263, 0x20478441, 0x06bb4613, 0x07000824, 0x47840440, 0x21010926, 0x11231101, 0x2008ce82, 0x01090128, 0xf362fe0b, + 0x0b0168fe, 0x1e026f02, 0x69fe0afd, 0xeb02a201, 0x00010000, 0x0300004a, 0x070741eb, 0x82020721, 0x21253c7f, 0x01352115, 0x15213521, 0x6d027e01, + 0x59025ffc, 0x7003c8fd, 0x037ac0c0, 0x8275c152, 0x0002266b, 0x04efff6d, 0x12775413, 0x24058641, 0x32332434, 0x04e01804, 0x1304320e, 0xd2d1fffe, + 0x0001fefe, 0x0301d1d2, 0x676879f3, 0x36038378, 0xe8c49b01, 0x5701c4e8, 0xc3e8e8c3, 0x80806901, 0x6ca8fe69, 0x836c8080, 0x82472097, 0x82e72004, + 0x83052063, 0x072745cf, 0x2535232c, 0xaef2e701, 0xb403a001, 0x8a8221c8, 0x5320bf82, 0x9220bf82, 0x27452782, 0x0f2f0820, 0x03211701, 0x01d1fc92, + 0x4d45549e, 0xea63584d, 0xc4e90602, 0x9b86d1ba, 0xf30102cd, 0x4f8301c0, 0x6045376e, 0x9b064c66, 0x76aabcd2, 0x59c18ab0, 0x4f240643, 0xbb03efff, + 0x2a205f82, 0x0d258783, 0x2b0b0119, 0x0b0d4501, 0xf65b3620, 0x07934606, 0x0808a959, 0x2b263457, 0x06023501, 0x585e565a, 0x02e9634d, 0xc7b0ea06, + 0x605460e8, 0xafc8fa67, 0xe80205fb, 0x6d5b566c, 0x02b96161, 0x3e4951ab, 0x063d4d59, 0xa0acb392, 0x22268550, 0xb7a1638a, 0x3f06a6ad, 0x58445e5a, + 0x0200b151, 0x00003900, 0x8d041804, 0x0e000a00, 0x06400900, 0x0923450d, 0x35231522, 0x3e062345, 0xa7710307, 0xc5fdf2a7, 0xf543020b, 0x4501c9fd, + 0xc39b0105, 0x039fd8d8, 0x010efd16, 0x820009c0, 0x00022200, 0x20c7826d, 0x44c782f0, 0x062720af, 0x35242223, 0x44243411, 0x3f080daf, 0x428d495c, + 0x47703727, 0x89318f70, 0xf9c9b954, 0xfffec1c8, 0x4dad1b01, 0x5c7b1a6e, 0x04626c5a, 0xba171b9d, 0x728e1417, 0xc6353056, 0xfcd9afae, 0xca2901c6, + 0x3392fdf9, 0x946e1e2d, 0x65595270, 0x60268384, 0xf002f5ff, 0x33452c03, 0x1b212b07, 0x0b02130c, 0x3632252b, 0xac6e013d, 0x36342105, 0x210abf6e, + 0x45191e37, 0x3c080d91, 0x5a429501, 0x902d521f, 0x8e8fb6a3, 0x3495c6bd, 0x2b203370, 0x48344a54, 0x3c3d520e, 0x4f864648, 0x201f3b3f, 0x9b727c93, + 0x7fde89b0, 0x8e1012a1, 0x11010e11, 0x48191d26, 0x3a344c5f, 0x267f8249, 0xff680003, 0x820e03f5, 0x00172f7f, 0x002f0023, 0x2608400b, 0x14201a2c, + 0x5b4a0308, 0x07c24105, 0x36343523, 0x07ff4437, 0x47190320, 0x56081600, 0x3f4af602, 0x8fbd574a, 0x4e59c595, 0x8bb64c43, 0x54a6af86, 0x5959423b, + 0x1a533b43, 0x49383144, 0x4430374b, 0x5b3a5002, 0x3e641c1b, 0x707d7d70, 0x1b1c633f, 0x73693a5b, 0x2f32fe73, 0x2e2f3c3c, 0x87013737, 0x282e2f27, + 0x0033322a, 0x046c0002, 0x05cc026f, 0x5c0500c5, 0x0924053f, 0x02040106, 0x2c089382, 0x03153313, 0x35330523, 0x01072337, 0xe6d36693, 0xb7d9fe53, + 0x049c6c51, 0x1539018c, 0x8902c1fe, 0x0100c0cc, 0x00005200, 0x2103a402, 0x0aff4500, 0x010e2308, 0x3523011d, 0x21371234, 0xa4022135, 0x9cbf6b84, + 0x0269fe57, 0x9c8f0252, 0x7f7fb1c3, 0x4f1001b1, 0x00820092, 0x70000226, 0x0a03f5ff, 0x46098f41, 0x6f6019c3, 0x0c134207, 0xe0013e08, 0x202e6836, + 0x4f315128, 0x3d652464, 0x94b99085, 0x80d1bd90, 0x53124b35, 0x454a413f, 0x10132c03, 0x590f0f8d, 0x231f334c, 0x96797789, 0x8cc88aad, 0x204bfeac, + 0x5d49101b, 0x40393642, 0x20bb8200, 0x207f826a, 0x47bb8201, 0x07200eb3, 0x0818db55, 0x02348935, 0x1595fe14, 0x852b4d1c, 0x8ea9a497, 0xb50106bc, + 0x4648404e, 0x413d3c47, 0x015a010e, 0x10aa92c7, 0x8e020117, 0x70927d7d, 0x2d0b066e, 0x3d3b3f31, 0x84181f4b, 0x004d24eb, 0x82250300, 0x000a286b, + 0x40090010, 0x480c0f06, 0x4743086b, 0x17240807, 0x07271133, 0x7272b302, 0x0a63febf, 0xfec0a601, 0x06da0364, 0x9122010c, 0x02749191, 0x0506fe1c, + 0x14021501, 0x01294b82, 0xf5ff6200, 0x2c03eb02, 0x34134400, 0x41a10125, 0x193e413d, 0x241a5f14, 0x3035d901, 0x5f141927, 0x006c241c, 0x82d50200, + 0x24f3447f, 0xfdd5023a, 0x403101a1, 0x3d363328, 0x0602b540, 0x9b8b91ac, 0x02817861, 0x01915e01, 0x12281619, 0x2308df82, 0x04960003, 0x06990248, + 0x0005009d, 0x001d0011, 0x1a08400b, 0x000e0814, 0x2b0b0303, 0x07173301, 0x34072723, 0x2306f644, 0x37262223, 0x080a7b57, 0xe3b4012d, 0x0394ee02, + 0x4d4f6d7e, 0x504d6b6b, 0x2633636c, 0x24303123, 0x9d063326, 0xe705c006, 0x4c66664c, 0x4c61614c, 0x25313125, 0x82343426, 0x0100276a, 0x00005700, + 0xcb829601, 0x2810e745, 0x017fc096, 0x967f023f, 0x42278317, 0x242005ab, 0xeb5a2782, 0x0b0a630f, 0x080deb5a, 0xbf240327, 0xbebe9c9b, 0xbfc09b9b, + 0x52484854, 0x53484952, 0xa58d2701, 0x8cd18da5, 0x028ca8a8, 0x4a56564a, 0x54544dd3, 0x245f854d, 0x03efff3f, 0x091f45b5, 0x23169b44, 0x04141115, + 0x2720f482, 0x08109b44, 0x8160e141, 0xc440742c, 0xbcc5fbdf, 0xc6f9fefa, 0x26459d47, 0x4860763d, 0x58761b67, 0xaf676c57, 0x295a5f81, 0xa6b0d12b, + 0xfec6fde1, 0x1aeab7b6, 0x1416b818, 0x2a349401, 0x7c906b40, 0x0075594f, 0x82520003, 0x82e7207f, 0x199b447f, 0x46187882, 0x36230893, 0x44163233, + 0x4e08179b, 0x5766c403, 0xfffe7967, 0xf6fec9c1, 0x685c6b7c, 0xedb3bbf4, 0x5e567ad0, 0x565f8181, 0x48652379, 0x506e6c51, 0x5c036547, 0x28268456, + 0xb7a25d8f, 0x8f5da2b7, 0x56842628, 0xfda8a899, 0x5d5e4760, 0x5c5c4a48, 0x4f3f4302, 0x5240404e, 0x49000052, 0x662006a3, 0x4a077b5d, 0x25080563, + 0x15110206, 0x12103523, 0x21352137, 0x9ab46603, 0xfd81e6f3, 0x032a03b0, 0xd4fee1cc, 0xb9b9fafe, 0x91010201, 0xd782c180, 0xebff7027, 0xc5054e04, + 0x20d7a500, 0x08d79a24, 0x78250452, 0xfe8f7967, 0xfedfd4f0, 0x6d7f93e5, 0xce01017c, 0x8acaf9c4, 0x92937269, 0x29886975, 0x79635872, 0x7157627c, + 0xa66f3304, 0x78b42d2b, 0xcce3e3cc, 0x2b2db478, 0xd1c16fa6, 0x6ba9fcd1, 0x6d6c8889, 0xff028383, 0x6271755e, 0x00797962, 0x51000200, 0x39209b82, + 0x4109c34b, 0x002712f3, 0x15003233, 0x41001411, 0x440813f3, 0xa3802402, 0xe5559333, 0xd81701f6, 0xfe1b01de, 0xb054e9d4, 0x8945284c, 0x1c90676a, + 0x88707794, 0x95a9ad76, 0xf4454394, 0x1601daea, 0xfef8e0fe, 0xecfeee40, 0x20be1f20, 0x5907021b, 0xb49a6641, 0x938e84a9, 0x2a008200, 0x008e0002, + 0x04400400, 0x600a008d, 0x112105a3, 0x0e77500b, 0x67502320, 0xd4e33c0c, 0xf1d4fbfb, 0x72726af1, 0x8601f16a, 0x8d047afe, 0xd7acabd9, 0x51506fc2, + 0x82010074, 0x2b03824f, 0xa5bbd108, 0xf53c0f5f, 0x00080900, 0xc4230083, 0x832e11f0, 0xfbca2b07, 0x12fcf86b, 0x7609d5fd, 0x0f827908, 0x02000922, + 0x02832f82, 0x072d3382, 0x000cfe6c, 0xfc880900, 0x0932ff12, 0x83498476, 0x23038619, 0xfe010d04, 0x01200a85, 0x03830782, 0x25023f08, 0x0d039a00, + 0xe2048500, 0xb5043c00, 0xe0057500, 0x1d056400, 0xbc013e00, 0xb7026d00, 0xbc028000, 0x68031100, 0x75044600, 0xce014400, 0x8e033600, 0x3c029e00, + 0x47039900, 0x8c040200, 0x03826800, 0x0382c720, 0x03826e20, 0x03826620, 0x03824120, 0x03828320, 0x03827520, 0x03825520, 0x03825d20, 0x63825920, + 0x02992008, 0x04690020, 0x043f0011, 0x0491008e, 0x0380002a, 0x072c00e4, 0x054a0021, 0x05200014, 0x82990018, 0x056d2607, 0x0499005c, 0x2f03856e, + 0x6e006005, 0x9900a305, 0xad004d02, 0x36006a04, 0x04252383, 0x0699006b, 0x822b82f5, 0x7a052317, 0x37846900, 0x07829a20, 0x33821720, 0x6000eb2a, + 0x2200b204, 0x86007405, 0x0f204b82, 0x1d202782, 0x32200782, 0x1a2c0382, 0x5800ac04, 0x84003102, 0x15005703, 0x0c380782, 0x35006b03, 0x03009c03, + 0x45009402, 0x53005a04, 0x80008804, 0x51002904, 0x53280782, 0x53003004, 0x2a00b502, 0x5a200b82, 0x7d280382, 0x90001302, 0xb0ff1902, 0x81201782, + 0x57820b83, 0x17828020, 0x2b847e20, 0x88203783, 0xcf202f82, 0x52243f84, 0x2000bd02, 0x7b221782, 0xd3820e04, 0x2500fa22, 0x21200782, 0x10200382, + 0x55260382, 0x3800af02, 0x4b820202, 0x1b00af30, 0x75005105, 0x0000fe01, 0x8f001e02, 0x77827d04, 0x00b52a08, 0x009d0551, 0x00e0045d, 0x00fc011a, + 0x00f80488, 0x001e045c, 0x004406a4, 0x00910357, 0x00e20374, 0x006d0461, 0x008e037f, 0x0813849e, 0x8700db28, 0x7f000a03, 0x5f004b04, 0x6c006103, + 0x62006303, 0x7c00b102, 0x9200bb04, 0x3e001004, 0xa0004202, 0x6d001002, 0x3f823502, 0x7700a722, 0x6a263f82, 0xb0000c06, 0x03826606, 0x7200d928, + 0x60000104, 0xa3821405, 0x07230392, 0x820d00b8, 0x416d201b, 0x07870787, 0xff4d0227, 0x004d02c7, 0x200782ad, 0x250382d8, 0xff5c05bd, 0x874105ff, + 0x007a2307, 0x038a0569, 0x00440425, 0x827b054d, 0x00742313, 0x038b0586, 0x1a001428, 0x9400ca04, 0xe382e704, 0x53005a23, 0x29039204, 0x5400f406, + 0x51002904, 0x1f823004, 0x0227038a, 0x02aaff1a, 0x828f001a, 0x82bb2007, 0x04a02403, 0x413c00ba, 0x53200a87, 0x85068f41, 0x00912407, 0x82890443, + 0x0088223f, 0x8917827b, 0x000e2703, 0x00970410, 0x0782048a, 0x2020e382, 0x07927f83, 0x7f836d20, 0x07951782, 0x99005c22, 0x53205382, 0x7384ff83, + 0x0f826e20, 0x079ea783, 0x00600523, 0x202f826e, 0x2007985a, 0x2c5784a3, 0x00a2057d, 0xff880418, 0xff4d02e9, 0x20e782bf, 0x20078aa2, 0x280f82e6, + 0x004d02c9, 0x0013022a, 0x3607820d, 0x001a029f, 0x00b7068f, 0x002c04ad, 0x006a0490, 0xff260236, 0x841805b5, 0x0481288f, 0x048e0098, 0x8299006b, + 0x8690202b, 0x8e6c2007, 0x0490290f, 0x021b0024, 0x051b003f, 0x7e207b85, 0x8782078f, 0x9205e124, 0xb7829300, 0x7a057e24, 0xf7846900, 0x0729078e, + 0x076500b4, 0x0553003b, 0x226b8217, 0x868000cf, 0x866a2007, 0x04432807, 0x046000eb, 0x98520029, 0x00b22707, 0x00bd0222, 0x078c0420, 0x05fdff25, + 0x82860074, 0xa77b206f, 0xf5062b07, 0xfa051d00, 0x14052500, 0xdf411a00, 0x041a2406, 0x825800ac, 0x8f55200b, 0x0c022d07, 0xd0028b00, 0x8905ddff, + 0x9f046400, 0xa520bb82, 0xa3266b82, 0x26027b00, 0x0f42b5ff, 0xb8072907, 0xf4060d00, 0x7b055400, 0x8922f782, 0xbf875300, 0x21082383, 0xa0001802, + 0x9b00e603, 0x7900b003, 0x76007c03, 0x96004f02, 0xa000b202, 0x4a004d02, 0x8000d803, 0x13822f03, 0xab009c2a, 0xddfc0000, 0x7cfd0000, 0x85200782, + 0x3e200782, 0x12200782, 0x22280782, 0xde005d02, 0x9d003c04, 0x023f6b83, 0x04a00042, 0x054bff6e, 0x0279ffa3, 0x0586ff4d, 0x0512007a, 0x0511ff14, + 0x0206005b, 0x83b0ffa6, 0x18052923, 0x6a049900, 0xbd059400, 0x6e20db82, 0xd7820b82, 0x00a30523, 0x829b8399, 0x83ad2073, 0x3905231f, 0x1b452300, + 0x91042307, 0x47827000, 0xa2056924, 0x3b849700, 0x47009126, 0x2200b204, 0x1a244b82, 0x4800bf05, 0x32220782, 0x0782a705, 0x6c005b22, 0xbd207382, + 0x1a300f82, 0x56008404, 0x60006004, 0x7e008804, 0xa900a602, 0x80200782, 0xc6261384, 0x0f049600, 0x0f822000, 0x1f845320, 0x61001e22, 0x7e240b82, + 0x6e00a204, 0x98322784, 0x6f048e00, 0xbb042400, 0x0e049200, 0x2c042000, 0x2b846400, 0x4f00f322, 0x372a4384, 0x90045100, 0x32045200, 0x0f834300, + 0x00d00523, 0x282f8244, 0x00c9053e, 0x00d6064f, 0x20e3825f, 0x222784c4, 0x83530088, 0x2b138307, 0x75002e05, 0xeeff7504, 0x33007106, 0x2e080f46, + 0x043600ff, 0x0594006a, 0x047e003e, 0x446000eb, 0xbd20068b, 0x362c1382, 0x2e008a08, 0x97008908, 0x46007606, 0x0527ef83, 0x0596009b, 0x822f0017, + 0x82912007, 0x052022db, 0x41378208, 0xf6220743, 0x53832300, 0x00ed0627, 0x00570510, 0x832b8468, 0x231f822f, 0x2e00a205, 0x410c5f46, 0x4382063f, + 0xb2046d24, 0x53842200, 0x35063f41, 0x8e000a06, 0x8f008105, 0x93003208, 0x9300a008, 0x0300b805, 0x6782e306, 0x03820720, 0x89003c2c, 0xad005407, + 0x0800b704, 0xd7825a04, 0xff827420, 0x88008838, 0x7e005403, 0x47003305, 0x53003004, 0x16001806, 0x5d006004, 0xcf828804, 0x77280383, 0x75048e00, + 0x06061600, 0x13850782, 0x1b865320, 0x2a059b46, 0x043c0022, 0x0710000e, 0x82510011, 0x04212207, 0x283782d0, 0x06740073, 0x067e0083, 0x285782ff, + 0x061f0006, 0x04a2007a, 0x223f8267, 0x8252003c, 0x828f2017, 0x4541203f, 0x89220847, 0x7f83e9ff, 0x823d0421, 0x0029343f, 0x00130252, 0xff1a0290, + 0xff1902a0, 0x00f106b0, 0x82ef0630, 0x0089234f, 0x87830418, 0x6b827f83, 0x7e3c3f82, 0x6e009c07, 0x20009a05, 0xe6ff0705, 0xe7ff6704, 0xae002907, + 0x8d000106, 0x20000705, 0x2908bf82, 0x0042070a, 0x003606c0, 0x00ed06b0, 0x00e60584, 0x00320982, 0x00f907ad, 0x0021048f, 0x00f00329, 0x00a70533, + 0x00c90548, 0x4743054f, 0x19052306, 0xbf821100, 0x07852020, 0x09e9ff29, 0x08690088, 0x87530096, 0x826f831f, 0x886720bb, 0x1d260877, 0x4a046a00, + 0xff045c00, 0x1d046d00, 0x46049d00, 0x8702b700, 0xb002c500, 0x1808d400, 0xd4073900, 0x9b054b00, 0xab839600, 0xd32ea386, 0x92000905, 0x80008704, + 0x94006a04, 0xd782a203, 0xecff6a2e, 0xe2ff5403, 0x9400ac04, 0x7e005a04, 0x1028ab82, 0x16001806, 0x68005705, 0x5d24c382, 0x99001805, 0x0521f783, + 0x321f822a, 0x058e0083, 0x04c2ff18, 0x06b2ff30, 0x054e00d6, 0x453c00d7, 0x07350717, 0x059800ca, 0x087e00ab, 0x06970036, 0x057e00f5, 0x04690097, + 0x20bb8293, 0x289b8214, 0x04510029, 0x042200b2, 0x272f8222, 0x041a0014, 0x0520000f, 0x32200789, 0x2132f382, 0x32003607, 0x26009105, 0x8f008105, + 0x74007304, 0x07867505, 0x3f828720, 0x7b00732a, 0x2000b006, 0xceffc404, 0x02230787, 0x88ad004d, 0x821120ab, 0x8278209b, 0x00a2249b, 0x8275042e, + 0x00a222bb, 0x45f38498, 0x538607bb, 0x00f50627, 0x00060699, 0x463b838e, 0xd3440fdb, 0x46042007, 0x052706ab, 0x045700b6, 0x8778003e, 0x0f174107, + 0x00a60423, 0x4103835e, 0x6741085f, 0x07034607, 0x8707d341, 0x003c2a07, 0x003c0489, 0x00170552, 0x20ef822f, 0x86079010, 0x6a0437a3, 0x54039400, + 0xe3067e00, 0x7a069400, 0xc704a200, 0x53034500, 0xaf824600, 0x37823220, 0x07882120, 0x54000722, 0x532ee382, 0x6600eb06, 0x5e00dd06, 0x3b005306, + 0x5b822805, 0x007b2f08, 0x003f0449, 0x00be0775, 0x009d0643, 0x00fe073f, 0x009e0698, 0x00030577, 0x002c0462, 0x00aa0555, 0x001d0522, 0x00570544, + 0x00600487, 0x33410560, 0x00142a07, 0x005a0420, 0x00f50653, 0x20038299, 0x07334680, 0x3741078f, 0x250f890f, 0x5a04d4ff, 0x1f9970ff, 0x1f9f5f85, + 0x99077f41, 0xabff2507, 0x64ff3004, 0x02271f97, 0x02ad004d, 0x828f001a, 0x029f2407, 0x47820013, 0x1782179b, 0x88040624, 0x1f988cff, 0x46008921, + 0x079305ff, 0x53008822, 0x47081f47, 0x2f470f8b, 0x9f052006, 0x0b8b4707, 0x47057349, 0x0f83099b, 0x32ff7a2a, 0x00001404, 0x00002908, 0x02290787, + 0x020000b9, 0x0100000a, 0x2413825c, 0x0200007f, 0x240b8230, 0x000000a2, 0x820382d1, 0x87052702, 0x8106a600, 0x0383ab00, 0x9d037508, 0x1d020400, + 0x18029000, 0x3902a000, 0xb801a800, 0x3f033e00, 0x35037a00, 0x3a037d00, 0x5d049400, 0x99044000, 0xcb025c00, 0xfa038800, 0xa6059900, 0xa8079900, + 0xbc014b00, 0x0d036d00, 0x72028500, 0x69026c00, 0x4a045400, 0x9c039a00, 0xa9032d00, 0x5c033f00, 0x6e046900, 0xb5041000, 0xb8064f00, 0x88049900, + 0x4d044200, 0xe5054b00, 0xe2037100, 0xc8084500, 0x20084782, 0x05640009, 0x06960014, 0x076300c9, 0x07660061, 0x06670091, 0x045e00ef, 0x054300bb, + 0x04a60096, 0x087782d9, 0x9e008330, 0x3b00b204, 0x64004508, 0xb2ff2102, 0x65008e04, 0x91004c04, 0x96004604, 0x92004b04, 0x24001a04, 0x5100f101, + 0x1800a804, 0x2a00c804, 0x03825d07, 0x2a007d22, 0x0034e282, 0x59003008, 0x5c003508, 0x51007004, 0x7e000005, 0x64000b04, 0x63240382, 0x33ff0b04, + 0x6a200782, 0x1c322f82, 0x6900a103, 0x90000502, 0x8e008c04, 0x68009404, 0x0782af04, 0x03824720, 0x03822a20, 0x6800db28, 0x8e001205, 0x0b821502, + 0x2f00172c, 0x8e007704, 0x8e00bd03, 0x07820606, 0x9700b924, 0x17822105, 0x6600ca22, 0x7022e382, 0x8382e008, 0x4a004d22, 0x0385e382, 0x13005523, + 0x23038204, 0x34000e06, 0x03937b83, 0x00320423, 0x8203843c, 0x2007829f, 0x84a7834f, 0x82a82003, 0x83038757, 0x8303865f, 0x8303876f, 0x20038a87, + 0x209b8361, 0x82a38204, 0x828020ab, 0x023b2403, 0x82c6ff15, 0x839f2003, 0x20c38303, 0x8ccb8204, 0x8fe38303, 0x23fb8303, 0x04680094, 0xc823038b, + 0x87041c00, 0x83cf8203, 0xa10323c7, 0xcf877600, 0x9f8a0420, 0xa3830b87, 0x9d207782, 0xb8200382, 0x8e208b82, 0xa7210782, 0x836b8f04, 0x8f5b8b63, + 0x0032260b, 0xffaf043c, 0x200384ea, 0x269382dd, 0x038e00a8, 0x8376007c, 0x3b03837b, 0x5c00b301, 0x18004d02, 0xb0ff1002, 0x9eff2703, 0x70003703, + 0x4c006004, 0x5e00b504, 0x48200382, 0x74200382, 0x7c250382, 0x26001104, 0x055f4104, 0xb3833c20, 0xb1043f08, 0x0e061c00, 0x8c043400, 0x55042c00, + 0x4d041300, 0x86044a00, 0x7a026d00, 0xff034700, 0x22045300, 0x65044f00, 0x3d043900, 0x66036d00, 0x83036000, 0x4a036800, 0x00036c00, 0x76035200, + 0x03827000, 0x8b036a24, 0x1b824d00, 0x5503622e, 0xb2026c00, 0x33029600, 0x9f035700, 0x2a247f82, 0x43043f00, 0xaf202782, 0xb520bb82, 0xb5220f82, + 0x67825100, 0x89008e21, 0x00012c00, 0x000e3000, 0x30000801, 0x820b0000, 0x00052816, 0x00dbff05, 0x840a0005, 0xff242205, 0x220b8296, 0x82ceff44, + 0xff462205, 0x200582c5, 0x20058447, 0x20058448, 0x2205844a, 0x82ecff50, 0x84512017, 0xff522205, 0x200b82a5, 0x200b8453, 0x221d8454, 0x82a4ff56, + 0x84822011, 0x84832047, 0x84842005, 0x84852005, 0x84862005, 0x84872005, 0x84a22005, 0x84a32065, 0x84a42005, 0x84a52005, 0x84a62005, 0x84a72005, + 0x84a92005, 0x84aa2053, 0x84ab2005, 0x84ac2005, 0x84ad2005, 0x84b32005, 0x84b42077, 0x84b52083, 0x84b62005, 0x84b72005, 0x83b82005, 0x15012105, + 0x01212983, 0x2171836f, 0xe3833403, 0x84350321, 0x84382005, 0x82392005, 0x000a2205, 0x20058405, 0x2005840a, 0x22298224, 0x8244000a, 0x000a227d, + 0x223b8246, 0x8447000a, 0x84482005, 0x844a2005, 0x82502005, 0x000a2277, 0x20058451, 0x22658252, 0x8453000a, 0x8454200b, 0xff56261d, 0x000a00a4, + 0x20478482, 0x20058483, 0x20058484, 0x20058485, 0x20058486, 0x20058487, 0x206584a2, 0x200584a3, 0x200584a4, 0x200584a5, 0x200584a6, 0x200584a7, + 0x205384a9, 0x200584aa, 0x200584ab, 0x200584ac, 0x200584ad, 0x207784b3, 0x208384b4, 0x200584b5, 0x200584b6, 0x200584b7, 0x210583b8, 0x29831501, + 0x836f0121, 0x34032171, 0x0321e383, 0x20058435, 0x20058438, 0x2a058239, 0x0039000b, 0x000b0014, 0x8226003a, 0x003c2605, 0x010b0016, 0x2805823a, + 0xff050024, 0x00240057, 0x2205840a, 0x82afff22, 0xff37220b, 0x220582a7, 0x82efff38, 0xff392205, 0x220582b3, 0x82d9ff3a, 0xff3c2205, 0x2205823e, + 0x82d0ff50, 0x84512005, 0x84532005, 0x84572005, 0x82592029, 0x002424cb, 0x82dfff5a, 0x845c201d, 0x849b200b, 0x849c2017, 0x849d2005, 0x849e2005, + 0x84b32005, 0xffb42235, 0x202982f4, 0x212983c1, 0x59833a01, 0x8982b982, 0x0583b982, 0x8f833820, 0x82390321, 0x00252a05, 0x00e5ff37, 0xff390025, + 0x240582e8, 0x00c9ff3c, 0x202f8225, 0x22c782c9, 0x82e6ff0c, 0xff372205, 0x200582e3, 0x28598260, 0xff0f0027, 0x00270086, 0x20058411, 0x2205841d, + 0x82ebff24, 0x20418311, 0x20418227, 0x210b82ea, 0x0583ff3b, 0xd5ff3c22, 0x3d220b82, 0x0582e9ff, 0x23848220, 0x05848320, 0x05848420, 0x05848520, + 0x05848620, 0x05848720, 0xd7828820, 0x77822720, 0x01213582, 0x2111836f, 0x5f833603, 0x843a0321, 0x823f2005, 0x00282805, 0x00edff46, 0x84470028, + 0x84482005, 0xff492205, 0x201182ee, 0x200b844a, 0x20058452, 0x20058454, 0x22ad8258, 0x82590028, 0x002822bf, 0x228f825a, 0x845c0028, 0x84a9200b, + 0x84aa201d, 0x84ab2005, 0x84ac2005, 0x84ad2005, 0x84b42005, 0x84b52005, 0x84b62005, 0x84b72005, 0x84b82005, 0x84bb2005, 0x84bc2053, 0x84bd2005, + 0x84be2005, 0x83c12005, 0x15012159, 0x29282382, 0xeefe0f00, 0x11002900, 0x1d200584, 0x24220584, 0x1182c5ff, 0xdeff4422, 0x46200582, 0x2920d782, + 0xeb20bf82, 0x48200b82, 0x4a200b84, 0x52200584, 0x54200584, 0x55200584, 0x29224d82, 0xb3825800, 0xbf822920, 0x2982e820, 0x83ff5c21, 0x84822005, + 0x84832047, 0x84842005, 0x84852005, 0x84862005, 0x84872005, 0x84a22005, 0x84a32065, 0x84a42005, 0x84a52005, 0x84a62005, 0x84a72005, 0x84a92005, + 0x84aa2065, 0x84ab2005, 0x84ac2005, 0x84ad2005, 0x84b42005, 0x84b52005, 0x84b62005, 0x84b72005, 0x84b82005, 0x84bb2005, 0x84bc2095, 0x84bd2005, + 0x84be2005, 0x83c12005, 0x150121a1, 0x01212383, 0x2189836f, 0xfb833603, 0x843a0321, 0x823f2005, 0x002b2a05, 0x00120024, 0xff37002b, 0x220582e3, + 0x8211003b, 0xff3c2205, 0x200582e4, 0x20178482, 0x20058483, 0x20058484, 0x20058485, 0x20058486, 0x21058387, 0x29833a01, 0x826f0121, 0x842c200b, + 0x842c2047, 0x002c2147, 0x2c224783, 0x1d823c00, 0x83002c21, 0x002c2147, 0x2c224783, 0x29848400, 0x05848520, 0x05848620, 0x05838720, 0x2c204784, + 0x2d224784, 0xb9822400, 0x82002d22, 0x83200584, 0x84200584, 0x85200584, 0x86200584, 0x87200584, 0xd1820583, 0x2e00ea26, 0x5cff1000, 0x26220582, + 0x0582e1ff, 0x05842a20, 0x05843220, 0x05843420, 0xe6ff4622, 0x47201782, 0x48200584, 0x4a200584, 0x52220584, 0x1782e5ff, 0x0b845420, 0xe9ff5822, + 0x59220b82, 0x0582d8ff, 0xc1ff5a22, 0x5c200582, 0x89200b84, 0x94204184, 0x95200584, 0x96200584, 0x97200584, 0x98200584, 0x9a200584, 0xa9200584, + 0xaa204784, 0xab200584, 0xac200584, 0xad200584, 0xb4200584, 0xb5206b84, 0xb6200584, 0xb7200584, 0xb8200584, 0xbb200584, 0xbc207d84, 0xbd200584, + 0xbe200584, 0xc1200584, 0x01218383, 0x215f8314, 0x47831501, 0x83300321, 0x310321e9, 0x2f280582, 0xfefe0500, 0x0a002f00, 0x24220584, 0x0b821300, + 0xe7ff2622, 0x2a200582, 0x32200584, 0x34200584, 0x37220584, 0x178233ff, 0xe8ff3822, 0x39220582, 0x058232ff, 0xa3ff3a22, 0x3c220582, 0x0582e9fe, + 0xf2ff5822, 0x59220582, 0x058285ff, 0xccff5a22, 0x5c200582, 0x82200b84, 0x83205384, 0x84200584, 0x85200584, 0x86200584, 0x87200584, 0x89200584, + 0x94205f84, 0x95200584, 0x96200584, 0x97200584, 0x98200584, 0x9a200584, 0x9b200584, 0x9c207d84, 0x9d200584, 0x9e200584, 0xbb200584, 0xbc207d84, + 0xbd200584, 0xbe200584, 0xc1200584, 0xfb828383, 0x0121d182, 0x21a7833a, 0x71836f01, 0x83340321, 0x350321ef, 0x38200584, 0x39200584, 0x302a0582, + 0x12002400, 0x37003000, 0x0582e3ff, 0x11003b22, 0x3c220582, 0x0582e4ff, 0x17848220, 0x05848320, 0x05848420, 0x05848520, 0x05848620, 0x05838720, + 0x833a0121, 0x225f8229, 0x84310012, 0x84312047, 0x00312147, 0x31224783, 0x1d823c00, 0x83003121, 0x00312147, 0x31224783, 0x35828400, 0x85003122, + 0x86200584, 0x87200584, 0x47840583, 0x47843120, 0x0f003228, 0x320086ff, 0x05841100, 0x05841d20, 0xebff2422, 0x37221182, 0x0582e5ff, 0xeaff3922, + 0x3b200582, 0x3c220584, 0x0b82d5ff, 0xe9ff3d22, 0x82200582, 0x83202384, 0x84200584, 0x85200584, 0x86200584, 0x87200584, 0x88240584, 0x3200dfff, + 0x35826b82, 0x836f0121, 0x36032111, 0x03215f83, 0x2005843a, 0x2805823f, 0xfe0f0033, 0x0033006c, 0x20058411, 0x2205841d, 0x824eff24, 0xff3b2211, + 0x220582cd, 0x82dcff3d, 0xff462205, 0x200582f3, 0x20058447, 0x20058448, 0x2005844a, 0x20058452, 0x22058454, 0x820e0057, 0x00592223, 0x2005820f, + 0x2005845c, 0x20478482, 0x20058483, 0x20058484, 0x20058485, 0x20058486, 0x22058487, 0x82d7fe88, 0x84a9202f, 0x84aa2041, 0x84ab2005, 0x84ac2005, + 0x84ad2005, 0x84b42005, 0x84b52005, 0x84b62005, 0x84b72005, 0x84b82005, 0x83c12005, 0x1501216b, 0xe3820b83, 0x0321b982, 0x21c58336, 0x05843a03, + 0x05823f20, 0x3700342a, 0x3400dfff, 0xe4ff3900, 0x3a220582, 0x0582ecff, 0xddff3c26, 0x3a013400, 0x35200582, 0xce221d82, 0x1d823500, 0x0582ed20, + 0xd0ff3c24, 0x17823500, 0x3700d026, 0xfefe0f00, 0x10220582, 0x0582f0fe, 0x0b841120, 0x05841d20, 0x93ff2422, 0x26201182, 0x37224d82, 0x05842a00, + 0x05843220, 0x05843420, 0x83ff3621, 0x0037222f, 0x20238210, 0x20058439, 0x22a1823a, 0x843c0037, 0xff44220b, 0x221782ad, 0x82a7ff46, 0x84472005, + 0x84482005, 0x844a2005, 0x84502005, 0x84512005, 0xff522205, 0x202382b1, 0x200b8453, 0x22058454, 0x82bfff55, 0xff562211, 0x200582b4, 0x220b8458, + 0x82aeff59, 0xff5a220b, 0x220582d1, 0x82b3ff5b, 0x845c2005, 0xff5d2211, 0x220b82c4, 0x826cff6d, 0xff7d2205, 0x2005826e, 0x20b38482, 0x20058483, + 0x20058484, 0x20058485, 0x20058486, 0x22058487, 0x8243ff88, 0x84892029, 0x849420c5, 0x84952005, 0x84962005, 0x84972005, 0x84982005, 0x849a2005, + 0x84a22005, 0x84a320cb, 0x84a42005, 0x84a52005, 0x84a62005, 0x84a72005, 0xffa82205, 0x205382ac, 0x20bf84a9, 0x200584aa, 0x200584ab, 0x200584ac, + 0x200584ad, 0x200584b3, 0x20ef84b4, 0x200584b5, 0x200584b6, 0x200584b7, 0x220584b8, 0x82a1ffba, 0x84bb2047, 0x84bc20f5, 0x84bd2005, 0x84be2005, + 0x83c12005, 0x140121f5, 0x01219583, 0x274d8315, 0x10003a01, 0x6f013700, 0x0129d783, 0x009bff9a, 0xfe300337, 0x200582f0, 0x22058431, 0x82fefe36, + 0x843a200b, 0x823f2005, 0x00382805, 0x00eaff24, 0x84820038, 0x84832005, 0x84842005, 0x84852005, 0x84862005, 0x83872005, 0x26538205, 0x003900ea, + 0x8214000c, 0xff0f2205, 0x22058229, 0x8263ff10, 0x84112005, 0x841d200b, 0xff242205, 0x221182b5, 0x82f3ff26, 0x842a2005, 0x84322005, 0x84342005, + 0x00402205, 0x22178211, 0x82d2ff44, 0xff462205, 0x200582d4, 0x20058447, 0x20058448, 0x2005844a, 0x201d8452, 0x220b8454, 0x82e2ff55, 0x82582023, + 0x003924dd, 0x82130060, 0x8482200b, 0x8483205f, 0x84842005, 0x84852005, 0x84862005, 0x84872005, 0x84892005, 0x8494206b, 0x84952005, 0x84962005, + 0x84972005, 0x84982005, 0x849a2005, 0x84a22005, 0x84a3206b, 0x84a42005, 0x84a52005, 0x84a62005, 0x84a72005, 0x84a92005, 0x84aa2089, 0x84ab2005, + 0x84ac2005, 0x84ad2005, 0x84b42005, 0x84b52023, 0x84b62005, 0x84b72005, 0x84b82005, 0x84bb2005, 0x84bc20b9, 0x84bd2005, 0x83be2005, 0x14012105, + 0x01217d83, 0x21418315, 0xb3836f01, 0xff300327, 0x03390063, 0x22058431, 0x8229ff36, 0x843a200b, 0x823f2005, 0x003a2a05, 0x000f000c, 0xff0f003a, + 0x22058271, 0x82c4ff10, 0x84112005, 0x841d200b, 0xff242205, 0x221182d5, 0x820e0037, 0x82402005, 0x003a242b, 0x82dfff44, 0xff46220b, 0x200582e1, + 0x20058447, 0x20058448, 0x2005844a, 0x20058452, 0x22058454, 0x82ebff55, 0xff582223, 0x200582ed, 0x20418460, 0x204d8482, 0x20058483, 0x20058484, + 0x20058485, 0x20058486, 0x20058487, 0x205f84a2, 0x200584a3, 0x200584a4, 0x200584a5, 0x200584a6, 0x200584a7, 0x205f84a9, 0x200584aa, 0x200584ab, + 0x200584ac, 0x200584ad, 0x200584b4, 0x200584b5, 0x200584b6, 0x200584b7, 0x200584b8, 0x208f84bb, 0x200584bc, 0x200584bd, 0x210583be, 0x1d831501, + 0x836f0121, 0x30032783, 0x3a00c4ff, 0x05843103, 0x71ff3622, 0x3a200b82, 0x3f200584, 0x3b2a0582, 0x64ff1000, 0x26003b00, 0x0582e7ff, 0x05842a20, + 0x05843220, 0x05843420, 0xe9823920, 0x46003b24, 0x1d82e6ff, 0x05844720, 0x05844820, 0x05844a20, 0xebff5222, 0x54201782, 0x58200b84, 0x59200b84, + 0x3b227782, 0x05845c00, 0x41848920, 0x05849420, 0x05849520, 0x05849620, 0x05849720, 0x05849820, 0x05849a20, 0x4184a920, 0x0584aa20, 0x0584ab20, + 0x0584ac20, 0x0584ad20, 0x5984b420, 0x0584b520, 0x0584b620, 0x0584b720, 0x0584b820, 0x0584bb20, 0x0584bc20, 0x0584bd20, 0x0584be20, 0x8383c120, + 0x83140121, 0x1501215f, 0x03214783, 0x21e98330, 0x05823103, 0x09003c2a, 0x3c00e2ff, 0x14000c00, 0x0d220582, 0x0582cfff, 0x19ff0f22, 0x10220582, + 0x058268ff, 0x0b841120, 0x05841d20, 0xaeff2422, 0x26221182, 0x0582e3ff, 0x05842a20, 0xa0ff2d22, 0x32200b82, 0x34200b84, 0x36220584, 0x1182f0ff, + 0x11003722, 0x38200582, 0x39221d84, 0x0b821200, 0x11843a20, 0x0d003b22, 0x3c200b82, 0x40201184, 0x44220584, 0x1182c1ff, 0xbfff4622, 0x47200582, + 0x48200584, 0x49220584, 0x1182eaff, 0x0b844a20, 0xd8ff5022, 0x51200b82, 0x52200584, 0x53201184, 0x54200b84, 0x55200b84, 0x56220b84, 0x2382c6ff, + 0x35845720, 0xd9ff5822, 0x59220b82, 0x0582ecff, 0xe9ff5b22, 0x5c200582, 0x5d200b84, 0x6022e984, 0x11821300, 0xcb846d20, 0xcdff7d22, 0x82200b82, + 0x83200b84, 0x84200584, 0x85200584, 0x86200584, 0x87200584, 0x88200584, 0x8920cb84, 0x9420e384, 0x95200584, 0x96200584, 0x97200584, 0x98200584, + 0x9a200584, 0x9b200584, 0x9c202f84, 0x9d200584, 0x9e200584, 0xa2200584, 0xa320ef84, 0xa4200584, 0xa5200584, 0xa6200584, 0xa7200584, 0xa8200584, + 0xa9200584, 0xaa20dd84, 0xab200584, 0xac200584, 0xad200584, 0xb3200584, 0xb420f584, 0xb5200b84, 0xb6200584, 0xb7200584, 0xb8200584, 0xba220584, + 0xdd82c0ff, 0xd9ffbb22, 0xbc200582, 0xbd200584, 0xbe200584, 0xc1260584, 0x3c00ecff, 0xad831401, 0x83150121, 0x3a01232f, 0x11821200, 0xef836f20, + 0xff9a0129, 0x033c00e8, 0x8268ff30, 0x84312005, 0xff362205, 0x200b8219, 0x2205843a, 0x82d3ff3d, 0x823f200b, 0x003d2a0b, 0x000d0024, 0xff26003d, + 0x200582e6, 0x2005842a, 0x20058432, 0x22058434, 0x82ebff46, 0x84472017, 0x84482005, 0x844a2005, 0x84522005, 0x84542005, 0xff582205, 0x222382ed, + 0x82e5ff59, 0x845a2005, 0x845c2005, 0x84822005, 0x84832059, 0x84842005, 0x84852005, 0x84862005, 0x84872005, 0x84892005, 0x84942065, 0x84952005, + 0x84962005, 0x84972005, 0x84982005, 0x849a2005, 0x84a92005, 0x84aa206b, 0x84ab2005, 0x84ac2005, 0x84ad2005, 0x84b42005, 0x84b52005, 0x84b62005, + 0x84b72005, 0x84b82005, 0x84bb2005, 0x84bc20a1, 0x84bd2005, 0x84be2005, 0x83c12005, 0x140121a7, 0x01215f83, 0x21298315, 0x95826f01, 0x2d003e28, + 0x3e00eeff, 0x05843800, 0x05849b20, 0x05849c20, 0x05849d20, 0x05829e20, 0x05004428, 0x4400efff, 0x05840a00, 0xf1ff5922, 0x5c200b82, 0xc1200584, + 0x03210583, 0x21178334, 0x05843503, 0x05843820, 0x05823920, 0x35824520, 0x4500e322, 0x05833582, 0x29825b20, 0x5d004522, 0x2f820583, 0x2f821182, + 0x38210583, 0x200583ff, 0x20058239, 0x222f8248, 0x824800f2, 0x2205832f, 0x82f3ff59, 0x845c200b, 0x83c12005, 0x82358205, 0x83358217, 0xff382105, + 0x39200583, 0x49280582, 0x10000500, 0x0a004900, 0x0c220584, 0x0b821400, 0x12004022, 0x46220582, 0x0582e8ff, 0x05844720, 0x05844820, 0x05844a20, + 0x05845420, 0x13006022, 0xa9201d82, 0xaa200b84, 0xab200584, 0xac200584, 0xad200584, 0x01210583, 0x21058315, 0x59833403, 0x84350321, 0x84382005, + 0x82392005, 0x824b2005, 0x00f022ad, 0x82ad824b, 0x839b8205, 0xff352105, 0x38200583, 0x39200584, 0x4e280582, 0xecff4600, 0x47004e00, 0x48200584, + 0x4a200584, 0x54200584, 0xa9200584, 0xaa200584, 0xab200584, 0xac200584, 0xad200584, 0x7d820583, 0x5000ec22, 0x50206584, 0x50206584, 0x50216584, + 0x22658303, 0x82380350, 0x0350225f, 0x20058239, 0x20238451, 0x20238451, 0x20238451, 0x20238451, 0x20238451, 0x20238451, 0x22238252, 0x825200ec, + 0x22058323, 0x82f1ff59, 0xff5b220b, 0x200582eb, 0x200b845c, 0x2247825d, 0x83c10052, 0x8241820b, 0x83418223, 0x82382005, 0x82522089, 0x00ec2241, + 0x20418253, 0x210582e3, 0x0583ff0a, 0x29825b20, 0x5d005322, 0x2f820583, 0x2f821182, 0x38200583, 0x2f821d83, 0x5500e326, 0x10000500, 0x0a200582, + 0x0f220584, 0x0b8253ff, 0x05841120, 0x05841d20, 0xedff4622, 0x47201182, 0x48200584, 0x49220584, 0x11820f00, 0x0b844a20, 0x77825220, 0x54005522, + 0x57220b84, 0x17821100, 0x12005922, 0x5a200582, 0x5c200b84, 0xa9200b84, 0xaa201d84, 0xab200584, 0xac200584, 0xad200584, 0xb4200584, 0xb5204184, + 0xb6200584, 0xb7200584, 0xb8200584, 0xc1200584, 0x01214183, 0x21298315, 0xa1833403, 0x84350321, 0x83362005, 0x3803219b, 0x39200b84, 0x3a200584, + 0x3f201184, 0x59200582, 0x0f24d182, 0x0a005900, 0x5924a782, 0x59ff0f00, 0x11200b82, 0x1d200584, 0x44220584, 0x1182f1ff, 0xf3ff4622, 0x47200582, + 0x48200584, 0x49220584, 0x11820d00, 0x0b844a20, 0x23845220, 0x0b845420, 0x0b84a220, 0x0584a320, 0x0584a420, 0x0584a520, 0x0584a620, 0x0584a720, + 0x2984a920, 0x0584aa20, 0x0584ab20, 0x0584ac20, 0x0584ad20, 0x2384b420, 0x0584b520, 0x0584b620, 0x0584b720, 0x0583b820, 0x8982dd82, 0x0f22dd82, + 0xdd825900, 0x36200583, 0xdd82a783, 0x39200b83, 0x0321c583, 0x2011843a, 0x2005823f, 0x25d1825a, 0x005a0084, 0x0583ff11, 0x05831d20, 0x84360321, + 0x843a2005, 0x823f2005, 0x005b2805, 0x00ecff46, 0x8447005b, 0x84482005, 0x844a2005, 0x84522005, 0x84542005, 0x84a92005, 0x84aa2005, 0x84ab2005, + 0x84ac2005, 0x84ad2005, 0x84b42005, 0x84b52005, 0x84b62005, 0x84b72005, 0x83b82005, 0x24b38205, 0x005c00ec, 0x229b8205, 0x840a005c, 0x820f2005, + 0x825c209b, 0x82592095, 0x841d2017, 0x8244200b, 0x825c20dd, 0x82f32089, 0xff472111, 0x48200583, 0x49220584, 0x11820d00, 0x0b844a20, 0x23845220, + 0x0b845420, 0x0b84a220, 0x0584a320, 0x0584a420, 0x0584a520, 0x0584a620, 0x0584a720, 0x2984a920, 0x0584aa20, 0x0584ab20, 0x0584ac20, 0x0584ad20, + 0x2384b420, 0x0584b520, 0x0584b620, 0x0584b720, 0x0583b820, 0x8382b382, 0x83340321, 0x350321ad, 0x36200584, 0x0321a783, 0x200b8438, 0x20058439, + 0x2011843a, 0x2005823f, 0x25b9825d, 0x005d00f0, 0x0583ff47, 0x05844820, 0x05844a20, 0x05845220, 0x05845420, 0x0584a920, 0x0584aa20, 0x0584ab20, + 0x0584ac20, 0x0584ad20, 0x0584b420, 0x0584b520, 0x0584b620, 0x0584b720, 0x0583b820, 0xf0268f82, 0x2d005e00, 0x0582ecff, 0x05843820, 0x05849b20, + 0x05849c20, 0x05849d20, 0x05829e20, 0x05008228, 0x820057ff, 0x05840a00, 0xafff2222, 0x37220b82, 0x0582a7ff, 0xefff3822, 0x39220582, 0x0582b3ff, + 0xd9ff3a22, 0x3c220582, 0x05823eff, 0xd0ff5022, 0x51200582, 0x53200584, 0x57200584, 0x59222984, 0x1782ceff, 0xdfff5a22, 0x5c200582, 0x5d220b84, + 0x0b820c00, 0x1d849b20, 0x05849c20, 0x05849d20, 0x05849e20, 0x3b84b320, 0xf4ffb422, 0xb5202382, 0xb6200584, 0xb7200584, 0xb8200584, 0xc1200584, + 0x01214783, 0x2277833a, 0x82ff3403, 0x350321a7, 0x38200584, 0x39200584, 0x83200582, 0x8320bf84, 0x8321bf84, 0x21bf8300, 0xbf830083, 0x83008321, + 0x008321bf, 0x8321bf83, 0x21bf8300, 0xbf830083, 0x83008321, 0x008322bf, 0x217d8251, 0xbf830083, 0x83008321, 0x008322bf, 0x216b8259, 0xbf830083, + 0x83008321, 0x008321bf, 0x8322bf83, 0xad829b00, 0x83008321, 0x008322bf, 0x830b849d, 0x008322bf, 0x834184b3, 0x008321bf, 0x8322bf83, 0xb382b600, + 0x83008321, 0x008322bf, 0x830b84b8, 0x848320bf, 0x848320bf, 0x848320bf, 0x038321bf, 0x8321bf83, 0x20bf8303, 0x20bf8484, 0x20bf8484, 0x20bf8484, + 0x20bf8484, 0x20bf8484, 0x20bf8484, 0x20bf8484, 0x20bf8484, 0x20bf8484, 0x20bf8484, 0x20bf8484, 0x20bf8484, 0x20bf8484, 0x20bf8484, 0x20bf8484, + 0x20b98484, 0x20b98484, 0x21b98484, 0xb9830084, 0xb9848420, 0xb3848420, 0xa7848420, 0xc1008422, 0x8420fb82, 0x8420a784, 0x8420a784, 0x8420a784, + 0x8420a784, 0x8520a784, 0x8520a784, 0x8520a784, 0x8520a784, 0x8520a784, 0x8520a784, 0x8520a784, 0x8520a784, 0x8520a784, 0x8520a784, 0x8526a784, + 0xf4ff5200, 0xad848500, 0xad848520, 0xad848520, 0xad848520, 0xad848520, 0x5d008524, 0x23820c00, 0xefff9b22, 0x9c200582, 0x9d200584, 0xb3830584, + 0xb3848520, 0xb7008522, 0xb8204784, 0xc1200584, 0x8520b382, 0x8520b384, 0x8520b384, 0x8520b384, 0x8520b384, 0x8620b384, 0x8620b384, 0x8620b384, + 0x8620b384, 0x8620b384, 0x8620b384, 0x8620b384, 0x8620b384, 0x8620b384, 0x8620b384, 0x8620b384, 0x8620b384, 0x8620b384, 0x8620b384, 0x8620b384, + 0x8620b384, 0x8620b384, 0x8622b384, 0xa7829b00, 0x83008621, 0x008622b3, 0x830b849d, 0x848620b3, 0x008622b3, 0x22ad82b4, 0x84b50086, 0x84b62005, + 0x20b98305, 0x20b98486, 0x26b98486, 0xff350386, 0x84860057, 0x848620b9, 0x848720b9, 0x848720b9, 0x848720b9, 0x848720b9, 0x848720b9, 0x848720b9, + 0x848720b9, 0x848720b9, 0x848720b9, 0x848720b9, 0x848720b9, 0x848720b9, 0x848720b9, 0x848720b9, 0x848720b9, 0x848720b9, 0x848720b9, 0x848720b9, + 0x848720b9, 0x848720b9, 0x008721b9, 0x8720b983, 0x8722b984, 0xad82b700, 0xb8008722, 0xc1240584, 0x8700ceff, 0x8720b384, 0x8720b384, 0x8720b384, + 0x8720b384, 0x8926b384, 0xe6ff0c00, 0xa7828900, 0x0582e320, 0x35824020, 0x6000892a, 0x8a00efff, 0xedff4600, 0x47200582, 0x48200584, 0x49220584, + 0x1182eeff, 0x0b844a20, 0x05845220, 0x05845420, 0x2f845820, 0x47825920, 0xad828a20, 0x2382ea20, 0x0b845c20, 0x1d84a920, 0x0584aa20, 0x0584ab20, + 0x0584ac20, 0x0584ad20, 0x0584b420, 0x0584b520, 0x0584b620, 0x0584b720, 0x0584b820, 0x5384bb20, 0x0584bc20, 0x0584bd20, 0x0584be20, 0x5983c120, + 0x82150121, 0x848b2023, 0x008b21a1, 0x8b21a183, 0x22a18300, 0x8249008b, 0x008b21a1, 0x8b22a183, 0x23845200, 0x05845420, 0x8b21a183, 0x20a18300, + 0x21a1848b, 0xa183008b, 0x83008b21, 0x008b22a1, 0x202384aa, 0x200584ab, 0x200584ac, 0x830584ad, 0x008b21a1, 0x8b22a183, 0x1184b600, 0x8b22a183, + 0x0b84b800, 0x8f82bb20, 0x83008b21, 0x008b22a1, 0x830b84bd, 0x008b21a1, 0x8b20a183, 0x8c20a184, 0x8c20a184, 0x8c20a184, 0x8c20a184, 0x8c20a184, + 0x8c20a184, 0x8c21a184, 0x21a18300, 0xa183008c, 0xa1848c20, 0xa1848c20, 0xa1848c20, 0xa1848c20, 0xa1848c20, 0xab008c22, 0x8c217782, 0x22a18300, + 0x84ad008c, 0x20a1830b, 0x20a1848c, 0x21a1848c, 0xa183008c, 0xa1848c20, 0xbb008c26, 0x8c00efff, 0x8c20a184, 0x8c22a184, 0x1184be00, 0x8c20a183, + 0x8d20a184, 0x8d20a184, 0x8d20a184, 0x8d20a184, 0x8d20a184, 0x8d20a184, 0x8d20a184, 0x8d20a184, 0x8d20a184, 0x8d20a184, 0x8d20a184, 0x8d20a184, + 0x8d20a184, 0x8d20a184, 0x8d20a184, 0x8d20a184, 0x8d22a184, 0xa782b400, 0xa1848d20, 0xa1848d20, 0xa1848d20, 0xa1848d20, 0xa1848d20, 0xa1848d20, + 0xa1848d20, 0xa1848d20, 0x83008d21, 0x848d20a1, 0x008e2aa1, 0x00120024, 0xff37008e, 0x220582e3, 0x8211003b, 0xff3c2205, 0x200582e4, 0x20178482, + 0x20058483, 0x20058484, 0x20058485, 0x20058486, 0x21058387, 0x29833a01, 0x826f0121, 0x848f200b, 0x848f2047, 0x008f2147, 0x8f224783, 0x1d823c00, + 0x83008f21, 0x008f2147, 0x8f224783, 0x29848400, 0x05848520, 0x05848620, 0x05838720, 0x8f204784, 0x90204784, 0x90204784, 0x90204784, 0x90204784, + 0x90204784, 0x90204784, 0x90204784, 0x90224784, 0x3b828500, 0x83009021, 0x00902247, 0x840b8387, 0x84902047, 0x84912047, 0x84912047, 0x84912047, + 0x84912047, 0x84912047, 0x84912047, 0x84912047, 0x84912047, 0x84912047, 0x84912047, 0x84912047, 0x84912047, 0x84932047, 0x84932047, 0x84932047, + 0x84932047, 0x84932047, 0x84932047, 0x84932047, 0x84932047, 0x84932047, 0x84932047, 0x84932047, 0x84932047, 0x00942847, 0x0086ff0f, 0x84110094, + 0x841d2005, 0xff242205, 0x221182eb, 0x82e5ff37, 0xff392205, 0x200582ea, 0x2205843b, 0x82d5ff3c, 0xff3d220b, 0x200582e9, 0x20238482, 0x20058483, + 0x20058484, 0x20058485, 0x20058486, 0x24058487, 0x00dfff88, 0x826b8294, 0x6f012135, 0x03211183, 0x215f8336, 0x05843a03, 0x05823f20, 0x7d849520, + 0x7d849520, 0x83009521, 0x0095217d, 0x95207d83, 0xe524d782, 0x39009500, 0x95217782, 0x207d8300, 0x20dd8295, 0x201182d5, 0x227d823d, 0x82820095, + 0x0095224d, 0x20058483, 0x20058484, 0x83058485, 0x0095227d, 0x830b8487, 0x8495207d, 0x8495207d, 0x8495207d, 0x8495207d, 0x0395217d, 0x96207d83, + 0x96207d84, 0x96207d84, 0x96207d84, 0x96207d84, 0x96207d84, 0x96207d84, 0x96207d84, 0x96217d84, 0x207d8300, 0x207d8496, 0x217d8496, 0x7d830096, + 0x83009621, 0x0096217d, 0x96207d83, 0x96217d84, 0x207d8300, 0x207d8496, 0x207d8496, 0x207d8496, 0x207d8496, 0x207d8496, 0x207d8497, 0x207d8497, + 0x207d8497, 0x207d8497, 0x207d8497, 0x207d8497, 0x207d8497, 0x207d8497, 0x207d8497, 0x207d8497, 0x207d8497, 0x207d8497, 0x207d8497, 0x207d8497, + 0x207d8497, 0x207d8497, 0x207d8497, 0x207d8497, 0x207d8497, 0x207d8497, 0x207d8497, 0x207d8498, 0x207d8498, 0x207d8498, 0x207d8498, 0x207d8498, + 0x207d8498, 0x207d8498, 0x207d8498, 0x207d8498, 0x207d8498, 0x207d8498, 0x207d8498, 0x207d8498, 0x207d8498, 0x207d8498, 0x207d8498, 0x207d8498, + 0x207d8498, 0x207d8498, 0x207d8498, 0x207d8498, 0x226b829b, 0x829b00ea, 0x2105834d, 0x0583ff83, 0x05848420, 0x05848520, 0x05848620, 0x05838720, + 0xea224182, 0x2f849c00, 0x2f849c20, 0x7d829c20, 0x2f831183, 0x7d829c20, 0x2f830b83, 0x7d829c20, 0x2f840b82, 0x2f849d20, 0x2f849d20, 0x2f849d20, + 0xad829d20, 0x9d00ea22, 0x9d202f84, 0x0b83ad82, 0x9d205f83, 0x9e202f84, 0x9e202f84, 0x9e202f84, 0x9e202f84, 0x9e202f84, 0x9e202f84, 0x9e202f84, + 0x9e205f84, 0xa2282f84, 0xefff0500, 0x0a00a200, 0x59220584, 0x0b82f1ff, 0x05845c20, 0x0583c120, 0x83340321, 0x35032117, 0x38200584, 0x39200584, + 0xa3200582, 0xa3203584, 0xa3213584, 0x21358300, 0x358300a3, 0x8300a321, 0x84a32035, 0x84a32035, 0x03a32135, 0xa3213583, 0x20358303, 0x203584a4, + 0x203584a4, 0x203584a4, 0x203584a4, 0x203584a4, 0x203584a4, 0x203584a4, 0x203584a4, 0x203584a4, 0x203584a5, 0x203584a5, 0x203584a5, 0x203584a5, + 0x203584a5, 0x203584a5, 0x203584a5, 0x203584a5, 0x203584a5, 0x203584a6, 0x203584a6, 0x203584a6, 0x203584a6, 0x203584a6, 0x203584a6, 0x203584a6, + 0x203584a6, 0x203584a6, 0x203584a7, 0x203584a7, 0x203584a7, 0x203584a7, 0x203584a7, 0x203584a7, 0x203584a7, 0x203584a7, 0x203584a7, 0x223582aa, + 0x82aa00f2, 0x22058335, 0x82f3ff59, 0x845c200b, 0x83c12005, 0x82358205, 0x83358217, 0xff382105, 0x39200583, 0xab200582, 0xab203584, 0xab203584, + 0xf3226b82, 0x6b82ab00, 0x35830583, 0x3584ab20, 0x3584ab20, 0x6b82ab20, 0xab00f222, 0xf2226b82, 0x3584ac00, 0x3584ac20, 0x3584ac20, 0x3584ac20, + 0xa182ac20, 0xac00f322, 0xac203584, 0xac203584, 0xac203584, 0xad203584, 0xad203584, 0xad203584, 0xad203584, 0xad203584, 0xad203584, 0xad203584, + 0xad203584, 0xad203584, 0xb3203584, 0xf0223582, 0x3582b300, 0x23820582, 0x35210583, 0x200583ff, 0x20058438, 0x20058239, 0x222382b4, 0x82b400ec, + 0x22058323, 0x82f1ff59, 0xff5b220b, 0x200582eb, 0x200b845c, 0x2023845d, 0x820b83c1, 0x82238241, 0x21058365, 0x0583ff38, 0x05823920, 0x4184b520, + 0x4184b520, 0x9b82b520, 0xb500f123, 0x20418300, 0x83a182b5, 0x2041830b, 0x82a782b5, 0x2041840b, 0x204184b5, 0x22a782b5, 0x82b500ec, 0x00ec22a7, + 0x204184b6, 0x204184b6, 0x204184b6, 0x204184b6, 0x214184b6, 0x418300b6, 0x4184b620, 0x4184b620, 0x4184b620, 0x4184b620, 0x4184b620, 0x4184b720, + 0x4184b720, 0x4184b720, 0x4184b720, 0x4184b720, 0x4184b720, 0x4184b720, 0x4184b720, 0x4184b720, 0x4184b720, 0x4184b720, 0x4184b820, 0x4184b820, + 0x4184b820, 0x4184b820, 0x4184b820, 0x4184b820, 0x4184b820, 0x4184b820, 0x4184b820, 0x4184b820, 0x4184b820, 0x0500c128, 0xc1000f00, 0x05840a00, + 0x59ff0f22, 0x11200b82, 0x1d200584, 0x44220584, 0x1182f1ff, 0xf3ff4622, 0x47200582, 0x48200584, 0x49220584, 0x11820d00, 0x0b844a20, 0x23845220, + 0x0b845420, 0x0b84a220, 0x0584a320, 0x0584a420, 0x0584a520, 0x0584a620, 0x0584a720, 0x2984a920, 0x0584aa20, 0x0584ab20, 0x0584ac20, 0x0584ad20, + 0x2384b420, 0x0584b520, 0x0584b620, 0x0584b720, 0x0583b820, 0x83150121, 0x34032123, 0x0321ad83, 0x20058435, 0x21a78336, 0x0b843803, 0x05843920, + 0x11843a20, 0x59ff3f28, 0x09003a01, 0x0582e2ff, 0x14000c22, 0x0d220582, 0x0582cfff, 0x19ff0f22, 0x10220582, 0x058268ff, 0x0b841120, 0x05841d20, + 0xaeff2422, 0x26221182, 0x0582e3ff, 0x05842a20, 0xa0ff2d22, 0x32200b82, 0x34200b84, 0x36220584, 0x1182f0ff, 0x11003722, 0x38200582, 0x39221d84, + 0x0b821200, 0x11843a20, 0x0d003b22, 0x3c200b82, 0x40201184, 0x44220584, 0x1182c1ff, 0xbfff4622, 0x47200582, 0x48200584, 0x49220584, 0x1182eaff, + 0x0b844a20, 0xd8ff5022, 0x51200b82, 0x52200584, 0x53201184, 0x54200b84, 0x55200b84, 0x56220b84, 0x2382c6ff, 0x35845720, 0xd9ff5822, 0x59220b82, + 0x0582ecff, 0xe9ff5b22, 0x5c200582, 0x5d200b84, 0x6022e984, 0x11821300, 0xcb846d20, 0xcdff7d22, 0x82200b82, 0x83200b84, 0x84200584, 0x85200584, + 0x86200584, 0x87200584, 0x88200584, 0x8920cb84, 0x9420e384, 0x95200584, 0x96200584, 0x97200584, 0x98200584, 0x9a200584, 0x9b200584, 0x9c202f84, + 0x9d200584, 0x9e200584, 0xa2200584, 0xa320ef84, 0xa4200584, 0xa5200584, 0xa6200584, 0xa7200584, 0xa8200584, 0xa9200584, 0xaa20dd84, 0xab200584, + 0xac200584, 0xad200584, 0xb3200584, 0xb420f584, 0xb5200b84, 0xb6200584, 0xb7200584, 0xb8200584, 0xba220584, 0xdd82c0ff, 0xd9ffbb22, 0xbc200582, + 0xbd200584, 0xbe200584, 0xc1260584, 0x3a01ecff, 0xad831401, 0x83150121, 0x2025822f, 0x20118212, 0x29ef836f, 0xe8ff9a01, 0x30033a01, 0x058268ff, + 0x05843120, 0x19ff3622, 0x3a200b82, 0x3d220584, 0x0b82d3ff, 0x0b823f20, 0x05006f28, 0x6f0157ff, 0x05840a00, 0xafff2222, 0x37220b82, 0x0582a7ff, + 0xefff3822, 0x39220582, 0x0582b3ff, 0x71823a20, 0x3c006f24, 0x0b823eff, 0xd0ff5022, 0x51200582, 0x52220584, 0x0b82f4ff, 0x0b845320, 0x2f845720, + 0xceff5922, 0x5a221182, 0x0582dfff, 0x0b845c20, 0x17849b20, 0x05849c20, 0x05849d20, 0x05849e20, 0x3584b320, 0x4184b420, 0x0584b520, 0x0584b620, + 0x3583c120, 0x833a0121, 0x3403216b, 0x03219583, 0x20058435, 0x24058438, 0x0357ff39, 0x20b38234, 0x210582db, 0x0583ff0a, 0x96ff2422, 0x44220b82, + 0x0582ceff, 0xc5ff4622, 0x47200582, 0x48200584, 0x4a200584, 0x50220584, 0x1782ecff, 0x05845120, 0xa5ff5222, 0x53200b82, 0x54200b84, 0x56221d84, + 0x1182a4ff, 0x47848220, 0x05848320, 0x05848420, 0x05848520, 0x05848620, 0x05848720, 0x6584a220, 0x0584a320, 0x0584a420, 0x0584a520, 0x0584a620, + 0x0584a720, 0x5384a920, 0x0584aa20, 0x0584ab20, 0x0584ac20, 0x0584ad20, 0x7784b320, 0x8384b420, 0x0584b520, 0x0584b620, 0x0584b720, 0x0583b820, + 0x83150121, 0x6f012129, 0x03217183, 0x21e38334, 0x05843503, 0x05843820, 0x05823920, 0x05003522, 0x0a200584, 0x24200584, 0x35222982, 0x7d824400, + 0x46003522, 0x35223b82, 0x05844700, 0x05844820, 0x05844a20, 0x77825020, 0x51003522, 0x52200584, 0x35226582, 0x0b845300, 0x1d845420, 0xa4ff5626, + 0x82003503, 0x83204784, 0x84200584, 0x85200584, 0x86200584, 0x87200584, 0xa2200584, 0xa3206584, 0xa4200584, 0xa5200584, 0xa6200584, 0xa7200584, + 0xa9200584, 0xaa205384, 0xab200584, 0xac200584, 0xad200584, 0xb3200584, 0xb4207784, 0xb5208384, 0xb6200584, 0xb7200584, 0xb8200584, 0x01210583, + 0x21298315, 0x71836f01, 0x83340321, 0x350321e3, 0x38200584, 0x39200584, 0x38220582, 0x05840500, 0x05840a20, 0x29822420, 0x44003822, 0x38227d82, + 0x3b824600, 0x47003822, 0x48200584, 0x4a200584, 0x50200584, 0x38227782, 0x05845100, 0x65825220, 0x53003822, 0x54200b84, 0x56261d84, 0x3803a4ff, + 0x47848200, 0x05848320, 0x05848420, 0x05848520, 0x05848620, 0x05848720, 0x6584a220, 0x0584a320, 0x0584a420, 0x0584a520, 0x0584a620, 0x0584a720, + 0x5384a920, 0x0584aa20, 0x0584ab20, 0x0584ac20, 0x0584ad20, 0x7784b320, 0x8384b420, 0x0584b520, 0x0584b620, 0x0584b720, 0x0583b820, 0x83150121, + 0x6f012129, 0x03217183, 0x21e38334, 0x05843503, 0x05843820, 0x05823920, 0x05003922, 0x0a200584, 0x24200584, 0x39222982, 0x7d824400, 0x46003922, + 0x39223b82, 0x05844700, 0x05844820, 0x05844a20, 0x77825020, 0x51003922, 0x52200584, 0x39226582, 0x0b845300, 0x1d845420, 0xa4ff5626, 0x82003903, + 0x83204784, 0x84200584, 0x85200584, 0x86200584, 0x87200584, 0xa2200584, 0xa3206584, 0xa4200584, 0xa5200584, 0xa6200584, 0xa7200584, 0xa9200584, + 0xaa205384, 0xab200584, 0xac200584, 0xad200584, 0xb3200584, 0xb4207784, 0xb5208384, 0xb6200584, 0xb7200584, 0xb8200584, 0x01210583, 0x21298315, + 0x71836f01, 0x83340321, 0x350321e3, 0x38200584, 0x39230584, 0x8b00dbff, 0x2c3e0e00, 0xd6005a00, 0xcc014801, 0x98027402, 0x1803d402, 0x84034c03, + 0xd203ae03, 0x0c04ee03, 0x76045404, 0x3805c604, 0xd8057805, 0x7a064606, 0x5407e606, 0x78076607, 0xc4079407, 0x3a08e007, 0x80094609, 0x3c0ade09, + 0xb80a7e0a, 0x4c0bea0a, 0x9a0b7e0b, 0x100cd40b, 0x720c340c, 0xee0ca20c, 0x8a0d300d, 0x4a0ee60d, 0xae0e740e, 0x200fde0e, 0x860f580f, 0xea0fba0f, + 0x36100810, 0x86106410, 0x4e11b610, 0x1c12c411, 0xf2129212, 0xd0133a13, 0x3a141014, 0xbc148014, 0x4e15d814, 0xec15a615, 0xd8166216, 0x8c172a17, + 0x2c18d817, 0x9a185a18, 0x1a19d218, 0x9a194e19, 0x041ab819, 0x581a501a, 0xf81a941a, 0xee1b7a1b, 0x6e1c401c, 0x461d201d, 0x861ed81d, 0xd81e9c1e, + 0x781fe01e, 0xd41f961f, 0x96203020, 0x76214c21, 0x0622d821, 0x62222822, 0xc4228422, 0xec22d022, 0x24230823, 0xaa239823, 0xce23bc23, 0xf223e023, + 0x5a240424, 0x7e246c24, 0xa2249024, 0xc624b424, 0xea24d824, 0x5025fc24, 0x74256225, 0x98258625, 0xbc25aa25, 0x7c26e225, 0xa0268e26, 0xc426b226, + 0x1e27d626, 0xa2279027, 0xc427b427, 0xe427d427, 0x9428f627, 0xb628a628, 0xd828c828, 0xfa28e828, 0x1c290a29, 0xa2292e29, 0xc429b229, 0xe629d629, + 0x062af629, 0xb62a422a, 0xda2ac82a, 0xfa2aea2a, 0x662b0c2b, 0x882b762b, 0xaa2b982b, 0xc62bba2b, 0xe42bd22b, 0x082cf62b, 0x2a2c182c, 0x4e2c3c2c, + 0x702c5e2c, 0xd62c822c, 0x782d662d, 0x9a2d882d, 0xbc2daa2d, 0xda2dce2d, 0xfe2dec2d, 0x202e0e2e, 0x422e302e, 0x642e522e, 0x882e762e, 0xac2e9a2e, + 0x0e2fbe2e, 0x742f622f, 0x982f862f, 0xbc2faa2f, 0xda2fce2f, 0xf82fe62f, 0x20301430, 0x3e302c30, 0x62305030, 0xb0307430, 0xd430c230, 0xf830e630, + 0x1c310a31, 0x40312e31, 0xa6317831, 0xca31b831, 0xee31dc31, 0x10320032, 0x72322232, 0xfe32ec32, 0x20330e33, 0x44333233, 0x14345633, 0xb234a034, + 0xd634c434, 0xfa34e834, 0x1c350a35, 0x40352e35, 0x62355035, 0x86357435, 0xa8359635, 0xcc35ba35, 0x1a36de35, 0x8a367836, 0xac369a36, 0xd036be36, + 0xf436e236, 0x18370637, 0x36372a37, 0x54374237, 0x78376637, 0x9a378837, 0xbe37ac37, 0xe237d037, 0x0438f437, 0x98383a38, 0x5439f838, 0x243ab439, + 0x483a363a, 0x6c3a5a3a, 0x903a7e3a, 0xb43aa23a, 0xfe3ac63a, 0x3c3b063b, 0xac3b743b, 0x083cca3b, 0xb83c403c, 0x483df63c, 0x6c3d5a3d, 0xb43d763d, + 0x183ef43d, 0x6a3e363e, 0x7e3e763e, 0x9c3e903e, 0xba3eae3e, 0xd23ec63e, 0xec3ee43e, 0x1a3ff43e, 0x523f4a3f, 0x623f5a3f, 0xc43fbc3f, 0xf83fcc3f, + 0x08400040, 0x4a404240, 0x7a407240, 0xc040b840, 0x3241c840, 0x7e413a41, 0xe841d641, 0x0c42fa41, 0x30421e42, 0x54424242, 0x90430043, 0x2844c443, + 0xec449644, 0x9e454845, 0xe045d845, 0x88468046, 0xfc469046, 0x68470447, 0x0e48ba47, 0x88485e48, 0x2049c648, 0x024ab249, 0x784a664a, 0x9a4a884a, + 0xbe4aac4a, 0x844b264b, 0x024cf04b, 0x5e4c144c, 0xda4c704c, 0x464d3e4d, 0x604d584d, 0x184ec04d, 0x6a4e584e, 0x8e4e7c4e, 0xca4ec24e, 0x1e4f164f, + 0x724f264f, 0xca4f7a4f, 0x6e503e50, 0x88508050, 0xcc50c450, 0xdc50d450, 0xec50e450, 0xfc50f450, 0x4e514651, 0x8a515651, 0x0052cc51, 0x8a524052, + 0x1a53d852, 0xfc538253, 0x4c544454, 0x4255e654, 0xb6556855, 0x0e56be55, 0xb0568056, 0xfc56c256, 0x74573657, 0xae57a657, 0xde57d657, 0x60583658, + 0xf2586858, 0x2e59fa58, 0xa0596c59, 0x285ae059, 0xb25a725a, 0xaa5b1c5b, 0x045cf45b, 0x7e5c145c, 0xfa5c905c, 0x0a5d025d, 0x245d1c5d, 0xea5d805d, + 0x505e3e5e, 0x725e625e, 0x365fa85e, 0xf45fa05f, 0x10614a60, 0x2062de61, 0xb8626462, 0x6c630e63, 0x3864c663, 0x2a65a864, 0xb465ac65, 0x3866bc65, + 0x1267b466, 0x82677067, 0xa0679467, 0x5068ac67, 0xce690e69, 0xd66b266b, 0x006d986c, 0xaa6d646d, 0x486e0e6e, 0x866e666e, 0xb4700e70, 0xe870ce70, + 0x8e713c71, 0x6472e071, 0xcc729072, 0x3c730473, 0xc6738273, 0xde73d273, 0x0274f073, 0x1a740e74, 0xb8746a74, 0x54750675, 0xd8759675, 0xf075e475, + 0x64762a76, 0xf676ae76, 0x22788877, 0x46783478, 0x5e785278, 0x6e786678, 0xf078ae78, 0x0879fc78, 0x8e795079, 0xa6799a79, 0xba7a327a, 0x0c7bfc7a, + 0xf27b827b, 0x0a7cfe7b, 0x247c127c, 0x7e7c367c, 0xd67cc47c, 0x367de87c, 0x967d847d, 0xb47da87d, 0xd27dc07d, 0xec7de47d, 0x0e7efe7d, 0x307e207e, + 0x407e387e, 0x627e527e, 0xd67ec67e, 0x007fe87e, 0x247f127f, 0x467f367f, 0x1a80a27f, 0x3e802c80, 0x60805080, 0x82807280, 0x92808a80, 0xb480a480, + 0xd680c680, 0xfa80e880, 0x1c810c81, 0x40812e81, 0x62815281, 0x7a816e81, 0xa6819081, 0xd081ba81, 0xe881dc81, 0x7a823282, 0xc882c082, 0xa6832883, + 0x80841284, 0x90850885, 0xb6862286, 0x9a872a87, 0x5488fa87, 0xee88a288, 0x6a896289, 0x82897689, 0xa0898e89, 0xc489b289, 0xe889d689, 0x0c8afa89, + 0x308a1e8a, 0x4e8a3c8a, 0x728a608a, 0x948a848a, 0xb68aa68a, 0xda8ac88a, 0xfe8aec8a, 0x2c8b148b, 0x4e8b3e8b, 0x708b608b, 0x928b828b, 0xb48ba48b, + 0xe28bca8b, 0x008cf48b, 0x248c128c, 0x468c368c, 0x688c588c, 0x8a8c7a8c, 0xae8c9c8c, 0xd28cc08c, 0x008dec8c, 0x248d128d, 0x488d368d, 0x6c8d5a8d, + 0x908d7e8d, 0xb28da28d, 0xd48dc48d, 0xf88de68d, 0x1c8e0a8e, 0x508e368e, 0x748e628e, 0x988e868e, 0xbc8eaa8e, 0xde8ece8e, 0xfc8eea8e, 0x1a8f0e8f, + 0x3e8f2c8f, 0x628f508f, 0x868f748f, 0xaa8f988f, 0xcc8fbc8f, 0xea8fde8f, 0x0c90fc8f, 0x30901e90, 0x54904290, 0x76906690, 0x01988890, 0x9092b409, + 0x90a6909c, 0x90da90b8, 0x912691fe, 0x913e9132, 0x917e914a, 0x92fa91b2, 0x92349228, 0x92f69244, 0x930693fe, 0x93629334, 0x9380936e, 0x943894dc, + 0x95e4944a, 0x96a29588, 0x96789618, 0x97d496ba, 0x973e9704, 0x976e9756, 0x979e9786, 0x98f297dc, 0x98289816, 0x989e9846, 0x992699d0, 0x9968994e, + 0x99aa9982, 0x9a129abe, 0x9a2a9a1e, 0x9b3a9a3a, 0x9b7a9b2c, 0x9b9e9b8c, 0x9c009cd0, 0x9c449c22, 0x9c909c66, 0x9dde9ca4, 0x9d3a9d12, 0x9d729d58, + 0x9dc49da8, 0x9ef69dd4, 0x9e2a9e16, 0x9e629e50, 0x9eb49e80, 0x9ff49ee8, 0x9f169f04, 0x9f389f28, 0x9f5a9f48, 0x9f789f66, 0x9f9c9f8a, 0x9fc09fae, + 0x9fe29fd0, 0xa028a0f2, 0xa04aa038, 0xa06ca05a, 0xa090a07e, 0xa0b2a0a2, 0xa0d6a0c4, 0xa1faa0e8, 0xa11ea10c, 0xa142a130, 0xa164a154, 0xa182a170, + 0xa1a6a194, 0xa1caa1b8, 0xa1eea1dc, 0xa20ea2fe, 0xa22ca21a, 0xa24ca23c, 0xa26ca25c, 0xa28ea27e, 0xa2aca2a0, 0xa2cea2be, 0xa3f0a2e0, 0xa32ca31a, + 0xa34ea33e, 0xa36ea35e, 0xa392a380, 0xa3b6a3a4, 0xa3d8a3c8, 0xa4faa3ea, 0xa41ca40a, 0xa43ea42c, 0xa462a450, 0xa482a472, 0xa4a4a492, 0xa4c8a4b6, + 0xa5eca4da, 0xa562a528, 0xa5a4a56a, 0xa6f2a5e0, 0xa638a618, 0xa66ea65a, 0xa7e0a69e, 0xa73ea706, 0xa7a2a782, 0xa8faa7e2, 0xa83ca81e, 0xa886a862, + 0xa8bca8a2, 0xa902a9ee, 0xa972a932, 0xaad8a996, 0xaa64aa18, 0xaaa0aa82, 0xab16abe0, 0xab7cab3c, 0xabe2abac, 0xac26acf6, 0xacb4ac66, 0xad20add2, + 0x838aad64, 0x01003101, 0x0d040000, 0x16009700, 0x05005f00, 0x50000200, 0x30280782, 0xa9000000, 0x03002509, 0x00231d83, 0x844a011b, 0x21148207, + 0x04821f00, 0x05843182, 0x0d820620, 0x02250b85, 0x25000600, 0x240b8500, 0x00120003, 0x240b862b, 0x000d0004, 0x230b863d, 0x00150005, 0x06204787, + 0x5f201782, 0x07241786, 0x6c002000, 0x09200b86, 0x8c204782, 0x0b240b86, 0x92000a00, 0x0c240b86, 0x9c001300, 0x10200b86, 0xaf202382, 0x11200b86, + 0xb5200b82, 0x12200b86, 0xbb205382, 0x0421b183, 0x229d8209, 0x86c8003e, 0x0001240b, 0x86060112, 0x0002240b, 0x8618010e, 0x0003240b, 0x86260124, + 0x0004220b, 0x82e3821a, 0x243b82ed, 0x012a0005, 0x20178664, 0x20178206, 0x240b868e, 0x01400007, 0x240b86a8, 0x010c0009, 0x240b86e8, 0x0114000b, + 0x240b86f4, 0x0226000c, 0x240b8608, 0x020c0010, 0x200b862e, 0x080b8211, 0x6f463a2b, 0x6420746e, 0x20617461, 0x79706f63, 0x68676972, 0x6f472074, + 0x656c676f, 0x31303220, 0x626f5231, 0x4d6f746f, 0x75696465, 0x2016856d, 0x2012853a, 0x201d893a, 0x2a1e8520, 0x73726556, 0x206e6f69, 0x83302e31, + 0x8a3b2000, 0x852d203f, 0x31398521, 0x20736920, 0x72742061, 0x6d656461, 0x206b7261, 0x7086666f, 0x60852e20, 0x2e2d0585, 0x436d6f63, 0x73697268, + 0x6e616974, 0x25398220, 0x73747265, 0x8f8b6e6f, 0x7d860b85, 0x0046002d, 0x006e006f, 0x00200074, 0x82610064, 0x82612007, 0x82632009, 0x00702a13, + 0x00720079, 0x00670069, 0x201d8468, 0x20138247, 0x220d826f, 0x8265006c, 0x00322421, 0x82310030, 0x82522001, 0x82622015, 0x82742003, 0x00202203, + 0x2029824c, 0x241f8252, 0x00750067, 0x214d826c, 0x358b0072, 0x8b003a21, 0x003a212d, 0x4d204395, 0x64203f82, 0x75247782, 0x56006d00, 0x72220b82, + 0x0d827300, 0xa3826f20, 0x6f822020, 0x77822e20, 0x03863020, 0x87963b20, 0x8b002d21, 0x20a18d43, 0x204d8269, 0x20998220, 0x20a98220, 0x20078272, + 0x20618264, 0x20a9846d, 0x224d826b, 0x8266006f, 0x20b38b05, 0x8dc18c2e, 0x00632219, 0x24a3826f, 0x00680043, 0x20a18272, 0x20518273, 0x20498269, + 0x8541826e, 0x82652073, 0x82742017, 0x8bbb836f, 0x219d8b85, 0x00840002, 0x006aff23, 0x8e088464, 0x04410804, 0x0102010d, 0x00020003, 0x00040003, + 0x00060005, 0x00080007, 0x000a0009, 0x000c000b, 0x000e000d, 0x0010000f, 0x00120011, 0x00140013, 0x00160015, 0x00180017, 0x001a0019, 0x001c001b, + 0x001e001d, 0x088d821f, 0x22002141, 0x24002300, 0x26002500, 0x28002700, 0x2a002900, 0x2c002b00, 0x2e002d00, 0x30002f00, 0x32003100, 0x34003300, + 0x36003500, 0x38003700, 0x3a003900, 0x3c003b00, 0x3e003d00, 0x40003f00, 0x19004100, 0x0f3f1dae, 0xa300ac61, 0x85008400, 0x9600bd00, 0x8600e800, + 0x8b008e00, 0xa9009d00, 0x0401a400, 0x05018a00, 0x93008300, 0xf300f200, 0x97008d00, 0x06018800, 0xf100de00, 0xaa009e00, 0xf400f500, 0xa200f600, + 0xc900ad00, 0xae00c700, 0x63006200, 0x64009000, 0x6500cb00, 0xca00c800, 0xcc00cf00, 0xce00cd00, 0x6600e900, 0xd000d300, 0xaf00d100, 0xf0006700, + 0xd6009100, 0xd500d400, 0xeb006800, 0x8900ed00, 0x69006a00, 0x6d006b00, 0x6e006c00, 0x6f00a000, 0x70007100, 0x73007200, 0x74007500, 0x77007600, + 0x7800ea00, 0x79007a00, 0x7d007b00, 0xb8007c00, 0x7f00a100, 0x80007e00, 0xec008100, 0xba00ee00, 0x08010701, 0x0a010901, 0x0c010b01, 0xfe00fd00, + 0x0e010d01, 0x10010f01, 0x0001ff00, 0x12011101, 0x14011301, 0x16011501, 0x18011701, 0x1a011901, 0x1c011b01, 0x1e011d01, 0x20011f01, 0xf900f800, + 0x22012101, 0x24012301, 0x26012501, 0x28012701, 0x2a012901, 0x2c012b01, 0x2e012d01, 0x30012f01, 0xd7003101, 0x33013201, 0x35013401, 0x37013601, + 0x39013801, 0x3b013a01, 0x3d013c01, 0x3f013e01, 0xe2004001, 0x4101e300, 0x43014201, 0x45014401, 0x47014601, 0x49014801, 0x4b014a01, 0x4d014c01, + 0x4f014e01, 0xb100b000, 0x51015001, 0x53015201, 0x55015401, 0x57015601, 0x59015801, 0xfc00fb00, 0xe500e400, 0x5b015a01, 0x5d015c01, 0x5f015e01, + 0x61016001, 0x63016201, 0x65016401, 0x67016601, 0x69016801, 0x6b016a01, 0x6d016c01, 0x6f016e01, 0x7001bb00, 0x72017101, 0xe6007301, 0x7401e700, + 0x7501a600, 0x77017601, 0x79017801, 0x7b017a01, 0x7d017c01, 0x7f017e01, 0x81018001, 0x83018201, 0xe100d800, 0xdc00db00, 0xe000dd00, 0xdf00d900, + 0x85018401, 0x87018601, 0x89018801, 0x8b018a01, 0x8d018c01, 0x8f018e01, 0x91019001, 0x93019201, 0x95019401, 0x97019601, 0x99019801, 0x9b019a01, + 0x9d019c01, 0x9f019e01, 0xa101a001, 0xa301a201, 0xa501a401, 0xa701a601, 0xa901a801, 0xab01aa01, 0x9f00ac01, 0xae01ad01, 0xb001af01, 0xb201b101, + 0xb401b301, 0xb601b501, 0xb801b701, 0xba01b901, 0xbc01bb01, 0xbe01bd01, 0xc001bf01, 0xc201c101, 0xc3019b00, 0xc501c401, 0xc701c601, 0xc901c801, + 0xcb01ca01, 0xcd01cc01, 0xcf01ce01, 0xd101d001, 0xd301d201, 0xd501d401, 0xd701d601, 0xd901d801, 0xdb01da01, 0xdd01dc01, 0xdf01de01, 0xe101e001, + 0xe301e201, 0xe501e401, 0xe701e601, 0xe901e801, 0xeb01ea01, 0xed01ec01, 0xef01ee01, 0xf101f001, 0xf301f201, 0xf501f401, 0xf701f601, 0xf901f801, + 0xfb01fa01, 0xfd01fc01, 0xff01fe01, 0x01020002, 0x03020202, 0x05020402, 0x07020602, 0x09020802, 0x0b020a02, 0x0d020c02, 0x0f020e02, 0x11021002, + 0x13021202, 0x15021402, 0x17021602, 0x19021802, 0x1b021a02, 0x1d021c02, 0x1f021e02, 0x21022002, 0x23022202, 0x25022402, 0x27022602, 0x29022802, + 0x2b022a02, 0x2d022c02, 0x2f022e02, 0x31023002, 0x33023202, 0x35023402, 0x37023602, 0x39023802, 0x3b023a02, 0x3d023c02, 0x3f023e02, 0x41024002, + 0x43024202, 0x45024402, 0x47024602, 0x49024802, 0x4b024a02, 0x4d024c02, 0x4f024e02, 0x51025002, 0x53025202, 0x55025402, 0x57025602, 0x59025802, + 0x5b025a02, 0x5d025c02, 0x5f025e02, 0x61026002, 0x63026202, 0x65026402, 0x67026602, 0x69026802, 0x6b026a02, 0x6d026c02, 0x6f026e02, 0x71027002, + 0x73027202, 0x75027402, 0x77027602, 0x79027802, 0x7b027a02, 0x7d027c02, 0x7f027e02, 0x81028002, 0x83028202, 0x85028402, 0x87028602, 0x89028802, + 0x8b028a02, 0x8d028c02, 0x8f028e02, 0x91029002, 0x93029202, 0x95029402, 0x97029602, 0x99029802, 0x9b029a02, 0x9d029c02, 0x9f029e02, 0xa102a002, + 0xa302a202, 0xa502a402, 0xa702a602, 0xa902a802, 0xab02aa02, 0xad02ac02, 0xaf02ae02, 0xb102b002, 0xb302b202, 0xb502b402, 0xb702b602, 0xb902b802, + 0xbb02ba02, 0xbd02bc02, 0xbf02be02, 0xc102c002, 0xc302c202, 0xc502c402, 0xc702c602, 0xc902c802, 0xcb02ca02, 0xcd02cc02, 0xcf02ce02, 0xd102d002, + 0xd302d202, 0xd502d402, 0xd702d602, 0xd902d802, 0xdb02da02, 0xdd02dc02, 0xdf02de02, 0xe102e002, 0xe302e202, 0xe502e402, 0xe702e602, 0xe902e802, + 0xeb02ea02, 0xed02ec02, 0xef02ee02, 0xf102f002, 0xf302f202, 0xf502f402, 0xf702f602, 0xf902f802, 0xfb02fa02, 0xfd02fc02, 0xff02fe02, 0x01030003, + 0x03030203, 0x05030403, 0x07030603, 0x09030803, 0x0b030a03, 0x0d030c03, 0x0f030e03, 0x11031003, 0x13031203, 0x15031403, 0x17031603, 0x19031803, + 0x1b031a03, 0x1d031c03, 0x1f031e03, 0x21032003, 0x23032203, 0x25032403, 0x27032603, 0x29032803, 0x2b032a03, 0x2d032c03, 0x2f032e03, 0x31033003, + 0x33033203, 0x35033403, 0x37033603, 0x39033803, 0x3b033a03, 0x3d033c03, 0x3f033e03, 0x41034003, 0x43034203, 0x45034403, 0x47034603, 0x49034803, + 0x4b034a03, 0x4d034c03, 0x4f034e03, 0x51035003, 0x53035203, 0x55035403, 0x57035603, 0xb300b200, 0x59035803, 0xb700b600, 0x5a03c400, 0xb500b400, + 0x8200c500, 0x8700c200, 0xab005b03, 0x5c03c600, 0xbe005d03, 0x5e03bf00, 0x5f03bc00, 0xf7006003, 0x62036103, 0x64036303, 0x66036503, 0x8c006703, + 0x69036803, 0x6b036a03, 0x98006c03, 0x99009a00, 0xa500ef00, 0x9c009200, 0x8f00a700, 0x95009400, 0x6d03b900, 0x6e03c000, 0x70036f03, 0x72037103, + 0x74037303, 0x76037503, 0x78037703, 0x7a037903, 0x7c037b03, 0x7e037d03, 0x80037f03, 0x82038103, 0x84038303, 0x86038503, 0x88038703, 0x8a038903, + 0x8c038b03, 0x8e038d03, 0x90038f03, 0x92039103, 0x94039303, 0x96039503, 0x98039703, 0x9a039903, 0x9c039b03, 0x9e039d03, 0xa0039f03, 0xa203a103, + 0xa403a303, 0xa603a503, 0xa803a703, 0xaa03a903, 0xac03ab03, 0xae03ad03, 0xb003af03, 0xb203b103, 0xb403b303, 0xb603b503, 0xb803b703, 0xba03b903, + 0xbc03bb03, 0xbe03bd03, 0xc003bf03, 0xc203c103, 0xc403c303, 0xc603c503, 0xc803c703, 0xca03c903, 0xcc03cb03, 0xce03cd03, 0xd003cf03, 0xd203d103, + 0xd403d303, 0xd603d503, 0xd803d703, 0xda03d903, 0xdc03db03, 0xde03dd03, 0xe003df03, 0xe203e103, 0xe403e303, 0xe603e503, 0xe803e703, 0xea03e903, + 0xec03eb03, 0xee03ed03, 0xf003ef03, 0xf203f103, 0xf403f303, 0xf603f503, 0xf803f703, 0xfa03f903, 0xfc03fb03, 0xfe03fd03, 0x0004ff03, 0x02040104, + 0x04040304, 0x06040504, 0x08040704, 0x0a040904, 0x0c040b04, 0x0e040d04, 0x10040f04, 0x12041104, 0x14041304, 0x4e041504, 0x074c4c55, 0x30696e75, + 0x85323030, 0x44413907, 0x63616d06, 0x0e6e6f72, 0x69726570, 0x6563646f, 0x7265746e, 0x41076465, 0x07211685, 0x28078561, 0x72624106, 0x06657665, + 0x29068461, 0x676f4107, 0x6b656e6f, 0x07856107, 0x63430b2d, 0x75637269, 0x656c666d, 0x89630b78, 0x2263840b, 0x86413031, 0x06422407, 0x82616344, + 0x6406216b, 0x44250685, 0x616f7263, 0x830d8274, 0x45072106, 0x07216985, 0x21078565, 0x6a844506, 0x84650621, 0x450a2606, 0x61746f64, 0x219e8363, + 0x0a88650a, 0x85450721, 0x6507217f, 0x06210785, 0x20588545, 0x21068465, 0x8989470b, 0x8f670b21, 0x30322195, 0x32289585, 0x63470c31, 0x616d6d6f, + 0x0c215d85, 0x210c8a67, 0x3589480b, 0x89680b21, 0x4804260b, 0x04726162, 0x28048268, 0x69744906, 0x0665646c, 0x21068469, 0xbb854907, 0x85690721, + 0x49062107, 0x0621bc84, 0x21068469, 0xa5854907, 0x85690721, 0x490a2107, 0x0227c888, 0x69024a49, 0x894a0b6a, 0x6a0b2162, 0x0c210b89, 0x21938a4b, + 0x0c8c6b0c, 0x65726733, 0x616c6e65, 0x6369646e, 0x63614c06, 0x06657475, 0x2106846c, 0x278b4c0c, 0x0c8a6c20, 0x634c0628, 0x6e6f7261, 0x06846c06, + 0x824c0421, 0x6c042185, 0x06210482, 0x203f854e, 0x203f856e, 0x21328a4e, 0x0c8a6e0c, 0x844e0621, 0x6e062138, 0x0b350684, 0x6f70616e, 0x6f727473, + 0x03656870, 0x03676e45, 0x07676e65, 0x21ff854f, 0x07856f07, 0x624f0628, 0x65766572, 0x06846f06, 0x684f0d2f, 0x61676e75, 0x6c6d7572, 0x0d747561, + 0x210d8b6f, 0x7c845206, 0x84720621, 0x520c2106, 0x0c21768a, 0x210c8a72, 0x7c845206, 0x85720621, 0x84532006, 0x7306212e, 0x0b210684, 0x093a4153, + 0x89730b21, 0x540c210b, 0x0c21408a, 0x210c8a74, 0x46855406, 0x06847420, 0x62540426, 0x74047261, 0x06280482, 0x6c697455, 0x75066564, 0x07210684, + 0x21cd8555, 0x07857507, 0x84550621, 0x750621ce, 0x05270684, 0x6e697255, 0x83750567, 0x550d2105, 0x7520e18c, 0x07210d8b, 0x05fd4155, 0x85750721, + 0x570b2107, 0x0b21a189, 0x200b8a77, 0x200b8a59, 0x210b8979, 0xe4845a06, 0x847a0621, 0x5a0a2106, 0x21084342, 0x0a887a0a, 0x6f6c052d, 0x0573676e, + 0x726f684f, 0x846f056e, 0x84552005, 0x83752005, 0x05f74205, 0x0a304623, 0x85ab8341, 0x88612046, 0x4107220a, 0x22128445, 0x84656107, 0x4f0b2607, + 0x73616c73, 0x200b8568, 0x210b896f, 0x4041530c, 0x730c210a, 0x5f840c8a, 0x37333222, 0x42210785, 0x27078543, 0x67093346, 0x65766172, 0x62212882, + 0x844d8409, 0x69742309, 0x1384646c, 0x6f680424, 0x2a846b6f, 0x46303323, 0x33ca8208, 0x6f6c6562, 0x6f740577, 0x0d736f6e, 0x72656964, 0x73697365, + 0x0a250d84, 0x68706c41, 0x310a8461, 0x6f6e6109, 0x656c6574, 0x450c6169, 0x6c697370, 0x16846e6f, 0x74450822, 0x49211f86, 0x2509866f, 0x696d4f0c, + 0x1f867263, 0x8a550c21, 0x4f0a242c, 0x8567656d, 0x6911212e, 0x6b8c2e82, 0x6b840520, 0x65420431, 0x47056174, 0x616d6d61, 0x6c654405, 0x86076174, + 0x5a04216d, 0x03201882, 0x05226d82, 0x09826854, 0x6e830420, 0x614b0536, 0x06617070, 0x626d614c, 0x4d026164, 0x754e0275, 0x07695802, 0x02317f86, + 0x52036950, 0x53056f68, 0x616d6769, 0x75615403, 0x258b8607, 0x69685003, 0x03824303, 0x69735023, 0x8747830c, 0x860f2087, 0x210f8720, 0xfe88610a, + 0x8a650c21, 0x820820c7, 0x20fd8480, 0x84c58309, 0x75142109, 0xd28d1f85, 0x04213f84, 0x212e8262, 0xd2846705, 0xd2846420, 0x04214b86, 0x2018827a, + 0x21038203, 0xd2847405, 0x05214c83, 0x20d2846b, 0x41d2846c, 0x422905a3, 0x756e0243, 0x07697802, 0x0557416f, 0x68720325, 0x8373066f, 0x053121d4, + 0x03210684, 0x86db8274, 0x7003217f, 0x6320d782, 0x8e820382, 0x6d6f0526, 0x0c616765, 0x200b6941, 0x20a68e0f, 0x8453860c, 0x860c20c3, 0x200c841c, + 0x843c840a, 0x2186850a, 0x07863144, 0x2205cf46, 0x84364433, 0x3034210f, 0x2105dd45, 0x1f853034, 0xef463420, 0x30342206, 0x201f8633, 0x20078634, + 0x87078635, 0x05b54237, 0x38303422, 0x39201786, 0xc3460786, 0x30342205, 0x420f8642, 0x342205d5, 0x0f864430, 0x07864520, 0x07854620, 0x7f863120, + 0x86313121, 0x219f850f, 0x7f863134, 0x7f863120, 0x7f863120, 0x7f863120, 0x7f863120, 0x7f863120, 0x7f863120, 0x7f863120, 0x7f863120, 0x7f863120, + 0x7f863120, 0x7f863120, 0x7f863120, 0x2206dd46, 0x85313234, 0x8632207f, 0x8632207f, 0x8632207f, 0x8632207f, 0x8632207f, 0x8632207f, 0x8632207f, + 0x8632207f, 0x8632207f, 0x8632207f, 0x8632207f, 0x8632207f, 0x8632207f, 0x8632207f, 0x3033217f, 0x33217785, 0x86078631, 0x8633207f, 0x8633207f, + 0x8633207f, 0x8633207f, 0x0635447f, 0x86333421, 0x8633207f, 0x8633207f, 0x8633207f, 0x8633207f, 0x8633207f, 0x8633207f, 0x8633207f, 0x3034217f, + 0x34217785, 0x86078631, 0x8634207f, 0x8634207f, 0x8634207f, 0x8634207f, 0x8634207f, 0x863420ff, 0x8634207f, 0x8634207f, 0x8634207f, 0x8634207f, + 0x8634207f, 0x8634207f, 0x8634207f, 0x3035217f, 0x35217785, 0x86078631, 0x8635207f, 0x8635207f, 0x8635207f, 0x8635207f, 0x8635207f, 0x8635207f, + 0x8635207f, 0x8635207f, 0x8635207f, 0x8635207f, 0x8635207f, 0x8635207f, 0x8635207f, 0x3036217f, 0x36217785, 0x86078631, 0x8636207f, 0x8636207f, + 0x8636207f, 0x8636207f, 0x8636207f, 0x8636207f, 0x8636207f, 0x8636207f, 0x8636207f, 0x8636207f, 0x8636207f, 0x8636207f, 0x8636207f, 0x3037217f, + 0x37217785, 0x86078631, 0x8637207f, 0x8637207f, 0x8637207f, 0x8637207f, 0x8637207f, 0x8637207f, 0x8637207f, 0x8637207f, 0x8637207f, 0x8637207f, + 0x8637207f, 0x8637207f, 0x8637207f, 0x3038217f, 0x38217785, 0x86078631, 0x8638207f, 0x8638207f, 0x8638207f, 0x8638207f, 0x8638207f, 0x86382077, + 0x86382077, 0x86382077, 0x86382077, 0x86382077, 0x86382077, 0x86382077, 0x30392177, 0x39216f85, 0x86078631, 0x86392077, 0x86392077, 0x86392077, + 0x86392077, 0x86392077, 0x863920f7, 0x8639207f, 0x8639207f, 0x8639207f, 0x8639207f, 0x8639207f, 0x8639207f, 0x8639207f, 0x3041217f, 0x41217785, + 0x86078631, 0x8641207f, 0x8641207f, 0x8641207f, 0x8641207f, 0x8641207f, 0x8641207f, 0x8641207f, 0x8641207f, 0x8641207f, 0x8641207f, 0x8641207f, + 0x8641207f, 0x8641207f, 0x3042217f, 0x42217785, 0x86078631, 0x8642207f, 0x8642207f, 0x8642207f, 0x8642207f, 0x8642207f, 0x8642207f, 0x8642207f, + 0x8642207f, 0x8642207f, 0x064d487f, 0x86423421, 0x8642207f, 0x8642207f, 0x3043217f, 0x43217785, 0x86078631, 0x8643207f, 0x8643207f, 0x8643207f, + 0x8643207f, 0x8643207f, 0x8643207f, 0x8643207f, 0x8643207f, 0x8643207f, 0x8643207f, 0x864320ff, 0x8643207f, 0x8643207f, 0x3044217f, 0x97467785, + 0x44342106, 0x44207f86, 0x44207f86, 0x44207f86, 0xaf467f86, 0x86442007, 0x8644207f, 0x8644207f, 0x8644207f, 0x8644207f, 0x8644207f, 0x8644207f, + 0x8644207f, 0x8644207f, 0x3045217f, 0x45217f85, 0x86078631, 0x8645207f, 0x8645207f, 0x8645207f, 0x8645207f, 0x864520ff, 0x8645207f, 0x8645207f, + 0x8645207f, 0x8645207f, 0x8645207f, 0x8645207f, 0x8645207f, 0x8645207f, 0x3046217f, 0x46217785, 0x86078631, 0x8646207f, 0x8646207f, 0x8646207f, + 0x8646207f, 0x8646207f, 0x8646207f, 0x8646207f, 0x8646207f, 0x8646207f, 0x8646207f, 0x8646207f, 0x8646207f, 0x8546207f, 0x3035227f, 0x22778430, + 0x86313035, 0x217f8507, 0x7f853035, 0x85303521, 0x3035217f, 0x35217f85, 0x217f8530, 0x7f853035, 0x85303521, 0x3035217f, 0x35217f85, 0x217f8530, + 0x7f853035, 0x85303521, 0x3035217f, 0x35217f85, 0x217f8530, 0x7f863035, 0x85303121, 0x31312177, 0x7f860786, 0x7f843120, 0x85453121, 0x8407829f, + 0x4531211f, 0x8205b746, 0x06462907, 0x61726757, 0x77066576, 0x57240685, 0x74756361, 0x06840d82, 0x49570921, 0x092107c1, 0x83098777, 0x4531215f, + 0x8205ef43, 0x204f8607, 0x826f8441, 0x436f860f, 0x0f8205ef, 0x0782ef84, 0x0782ef84, 0x0782ef84, 0x0782ef84, 0x0782ef84, 0x0782ef84, 0x0782ef84, + 0x0782ef84, 0x0782ef84, 0x0782ef84, 0x3121ef84, 0x05ef4345, 0x31200782, 0x42208f85, 0xef437f86, 0x20178205, 0x86178634, 0x05ef437f, 0x7f861782, + 0x8205ef43, 0x437f860f, 0x0f8205ef, 0xef437f86, 0x860f8205, 0x05ef437f, 0x7f860f82, 0x2105ef43, 0xef434531, 0x86078205, 0x05ef437f, 0x7f860f82, + 0x8205ef43, 0x43ff860f, 0x0f8205ef, 0xef43ff86, 0x860f8205, 0x05ef43ff, 0xff860f82, 0x8205ef43, 0x43ff860f, 0x312105ef, 0x05ef4345, 0xff860782, + 0x8205ef43, 0x067f410f, 0x8205ef43, 0x43ff860f, 0x0f8205ef, 0xef43ff86, 0x860f8205, 0x05ef43ff, 0xff860f82, 0x8205ef43, 0x43ff860f, 0x0f8205ef, + 0xef43ff86, 0x45312105, 0x8205ef43, 0x43ff8607, 0x0f8205ef, 0xef43ff86, 0x860f8205, 0x05ef43ff, 0xff860f82, 0x8205ef43, 0x43ff860f, 0x0f8205ef, + 0xef43ff86, 0x860f8205, 0x05ef43ff, 0x43453121, 0x078205ef, 0x59063122, 0x2005b842, 0x41068479, 0xed4305f5, 0x861d8205, 0x05ed43fd, 0xfd860f82, + 0x8205ed43, 0x20fd850f, 0x054d4946, 0x43303221, 0x32210525, 0x05c54330, 0xd5840782, 0x33200782, 0x07825783, 0x0782d584, 0x07825784, 0x0782d584, + 0x07825784, 0x0782d584, 0x07825784, 0x0782d584, 0x3f854220, 0x0d353138, 0x65646e75, 0x6f637372, 0x62646572, 0x75710d6c, 0x7265746f, 0x12827665, + 0x85646521, 0x35323623, 0x6e696d06, 0x06657475, 0x6f636573, 0x6509646e, 0x616c6378, 0x852d826d, 0x3437371f, 0x75736e09, 0x69726570, 0x6c04726f, + 0x06617269, 0x65736570, 0x1d856174, 0x04424126, 0x6f727545, 0x31200c84, 0x21056c44, 0x04443132, 0x39078205, 0x73650936, 0x616d6974, 0x09646574, + 0x65656e6f, 0x74686769, 0x68740c68, 0x0b866572, 0x660b7324, 0x0b877669, 0x82730c21, 0x856e2098, 0x0b732124, 0x210e684f, 0xda4c4246, 0x20078205, + 0x826d8333, 0x84342007, 0x45452007, 0x46210512, 0x05324546, 0x44300782, 0x6563530d, 0x6c6c6964, 0x6d732e61, 0x55107063, 0x84095450, 0x89132010, + 0x08954f0f, 0x13891220, 0x6f6f6823, 0x207c826b, 0x4f268a62, 0x138a08d0, 0x2108da4f, 0x55844106, 0x72620e22, 0x2988be82, 0xbf8a1120, 0x746f7227, + 0x06657461, 0x21278442, 0x06854306, 0x06854420, 0x06854520, 0x06854620, 0x06854720, 0x06854820, 0x06854920, 0x06854a20, 0x06854b20, 0x06854c20, + 0x06844d20, 0x7263082a, 0x6273736f, 0x4e067261, 0x4f201685, 0x09340684, 0x6f72657a, 0x756e6c2e, 0x65670f6d, 0x6e616d72, 0x736c6264, 0x0b261984, + 0x7261635a, 0x0b846e6f, 0x53510f20, 0x200f8409, 0x0571510b, 0x0e210b84, 0x077f4559, 0x10200e84, 0x850aa451, 0x41572010, 0x0c200e54, 0x8406ee51, + 0x5212201d, 0x12840c17, 0x72550a25, 0x84676e69, 0x520b200a, 0x0b84054f, 0x6b520c20, 0x200c8406, 0x0586520b, 0xaa520b85, 0x200b8405, 0x0bd05211, + 0x0b211184, 0x24c68953, 0x76696609, 0x20158465, 0x0a105310, 0x0b201084, 0x85052f53, 0x0549530b, 0x6f535085, 0x2011840b, 0x058f530b, 0x12200b84, + 0x840cb753, 0x530b2012, 0x0b8405d8, 0xf4530c20, 0x200c8406, 0x0523540b, 0x11200b84, 0x840b4954, 0x540b2011, 0x0b840569, 0x644c0924, 0x0984746f, + 0x97540b20, 0x200b8405, 0x0bbd5411, 0x0b201184, 0x8405dd54, 0x5511200b, 0x11840b10, 0x3a551020, 0x2010840a, 0x095c550f, 0x0c200f84, 0x84067c55, + 0x550b200c, 0x0b840597, 0xb3550c20, 0x200c8406, 0x05ce550b, 0x10200b84, 0x840afc55, 0x56112010, 0x11840b27, 0x6e750c27, 0x32313069, 0x240c8430, + 0x7262470b, 0x07714165, 0x850a7a56, 0x0599561c, 0x0c200b84, 0x8406b556, 0x560f200c, 0x458509d8, 0x8405f656, 0x570c200b, 0x0c840612, 0x41440b21, + 0x0b2109da, 0x850b8943, 0x41302183, 0x10202484, 0x840a8857, 0x430b2510, 0x74756361, 0x20050642, 0x06b5570c, 0xd0571885, 0x200b8405, 0x06ec570c, + 0x0b210c84, 0x21318959, 0xed42550e, 0x05ca430c, 0x2108e043, 0x2989550b, 0x67550b24, 0xfc866172, 0x8c4f0e21, 0x4f0b2535, 0x646c6974, 0x10218285, + 0x0e1e434f, 0x8a4f0b21, 0x894f2043, 0x4e0b2143, 0x0e213489, 0x214f8c49, 0x438f4910, 0x438a4920, 0x43894920, 0x8d450e21, 0x8f452037, 0x05e85437, + 0x4520f585, 0x0d213789, 0x0b264543, 0x25550f20, 0x55298409, 0x0a840535, 0x8c410e21, 0x410b2160, 0x1021b389, 0x206c8f41, 0x20a48a41, 0x246c8941, + 0x61625409, 0x234d8472, 0x68744508, 0x0b250884, 0x6f726344, 0x05134361, 0x84510621, 0x52062112, 0x0d2e0684, 0x69727963, 0x63696c6c, 0x76657262, + 0x05840d65, 0x41079645, 0xb845059c, 0x870b2008, 0x6974232a, 0x0b871063, 0x6c242b83, 0x0c746665, 0x0e2a108b, 0x6772616c, 0x67697265, 0x1f837468, + 0x6e6f082b, 0x6e6c2e65, 0x74086d75, 0x052b4577, 0x68740a24, 0x13856572, 0x6f660924, 0x1d847275, 0x84055d44, 0x69732227, 0x21128478, 0x9482730a, + 0x0a846e20, 0x85530621, 0x855420b6, 0x85552006, 0x85562006, 0x85572006, 0x85582006, 0x85592006, 0x455a2006, 0x73230aa0, 0x8470636d, 0x83088486, + 0x86088386, 0x850a8386, 0x831d8486, 0x2108847c, 0xb782696e, 0x70757324, 0xc9836509, 0x09832e20, 0x73616429, 0x786f6169, 0x85096169, 0x20138299, + 0x222f8407, 0x45087075, 0x0883051c, 0x1982d183, 0xe5850920, 0x07200982, 0x49827184, 0x20091357, 0x245b856f, 0x72657a08, 0x855a846f, 0x20a7826d, + 0x836e860a, 0x8965860a, 0x6e6c2415, 0x84096d75, 0x2109832a, 0xe3845006, 0x554e0825, 0x482e4c4c, 0x303206db, 0x00393030, 0x01000100, 0x0f00ffff, + 0xf2000000, 0x0382c200, 0x0582f320, 0x05c32d08, 0x060000b0, 0x003a0418, 0x0560fe00, 0x06ebffc5, 0xff4e042d, 0x004bfeeb, 0x2c00b000, 0x20b06420, + 0xb0236660, 0x65585000, 0x01b02d59, 0x203f1082, 0xb050c0b0, 0xb05a2604, 0x585b430b, 0x1b212321, 0xb020588a, 0x21585050, 0x1b5940b0, 0x8338b020, + 0x59382a09, 0x05b02059, 0xb0646145, 0x240e8328, 0xb0204505, 0x20088330, 0x2e218330, 0x205850c0, 0x8a8a2066, 0x0ab02061, 0x82605850, 0x83202033, + 0x830a201b, 0x83362009, 0x60362c09, 0x5959601b, 0x00b01b59, 0x8659592b, 0x277c827b, 0x07b02c02, 0x06b04223, 0x00200382, 0x432a0383, 0x514306b0, + 0x4307b058, 0xd982b22b, 0x42604326, 0x1c6516b0, 0x03322782, 0x4300b02c, 0x09b04520, 0x0ab06343, 0x2d446243, 0x118504b0, 0x50822020, 0x06b1232e, + 0x20602504, 0x61238a45, 0xb0206420, 0x00217984, 0x229d831b, 0x821b20b0, 0x256f87c1, 0x232503b0, 0x3b824461, 0xb02c052c, 0x20206001, 0x4a430db0, + 0xb98200b0, 0x230db026, 0x0eb05942, 0x52200d83, 0x0e20f882, 0x2d220d82, 0x608306b0, 0x2502b023, 0x21898642, 0x0b820db1, 0x820eb121, 0x01b02404, + 0x82202316, 0x5850214c, 0xb0269482, 0x8a422504, 0x7b82208a, 0x2a05b027, 0x01b02321, 0x820b8761, 0x834320eb, 0x2003823f, 0x201b8361, 0x206f8259, + 0x24658247, 0x80b06047, 0x27c98762, 0x0001b120, 0x46204315, 0x38223f82, 0x088602b0, 0x0102b526, 0x01010102, 0x0282fe82, 0x07b02d37, 0x08b0002c, + 0x0fb64223, 0x0002080f, 0x42430801, 0x60204342, 0x2e698260, 0x2b0206b1, 0x2c08b02d, 0x0fb06020, 0x82432060, 0x4360217c, 0x02826d82, 0x23585124, + 0xe4823c20, 0x12b0233a, 0x211b1c65, 0xb02d5921, 0x08b02c09, 0x2a08b02b, 0x2c0ab02d, 0x20472020, 0x23278187, 0x20233861, 0x8d58558a, 0x831b2012, + 0x820b2032, 0x16012e78, 0xb02a0ab0, 0x2d301501, 0x202c0cb0, 0x22538235, 0x820db02d, 0x45002917, 0x430ab063, 0x2b00b062, 0x09824882, 0x0e886120, + 0xb1160033, 0x232e0000, 0xb04700b0, 0x60614600, 0x010cb138, 0x25758215, 0x3c202c0e, 0x75874720, 0x4300b02e, 0xb02d3861, 0x172e2c0f, 0x10b02d3c, + 0xb0231b90, 0x82634301, 0x2c11321f, 0x160002b1, 0xb02e2025, 0x20604308, 0x2300b046, 0x83dd8242, 0x8a492f0c, 0x6223498a, 0x422301b0, 0x010110b2, + 0x61821415, 0xb02c1225, 0x83201500, 0x2128841c, 0x178300b2, 0xb02e1323, 0x201b820e, 0x281b9a13, 0x00b12c14, 0xb0131401, 0x2327820f, 0x11b02c15, + 0x1a240682, 0x1db02d2c, 0x1b200382, 0x16233682, 0x832504b0, 0x04b02254, 0x24878526, 0x2b01b049, 0x32cc8223, 0xb138232e, 0x2b140109, 0x2c18b02d, + 0x25040cb1, 0x8900b042, 0x23b3862b, 0x05b02049, 0x013ab382, 0x60b0202b, 0xb0205850, 0xb3585140, 0x20042003, 0x2603b31b, 0x42591a04, 0xb0862342, + 0xb0430529, 0x20606280, 0x432b00b0, 0x03300546, 0x23646043, 0x614304b0, 0xb0585064, 0x1b614303, 0x60240b82, 0x2503b059, 0x61262682, 0x462502b0, + 0x83823861, 0x1b382323, 0x25408421, 0x2f3c202e, 0x8e865921, 0xb02c1723, 0x2274820c, 0x863e1300, 0x8c192010, 0x83cd84c6, 0x8a6529c4, 0x2020232e, + 0x2e388a3c, 0x1c202786, 0xee86278d, 0xb022c2a5, 0x8984430c, 0x49238a26, 0xb0604623, 0x2325cfac, 0x2603b020, 0x21d28223, 0x4682231b, 0xe2414620, + 0x250a8206, 0x604308b0, 0x80826049, 0xf6824320, 0x26826020, 0x232b0022, 0x60275a82, 0xb02b00b0, 0x82612505, 0x2c178203, 0x612604b0, 0x2504b020, + 0xb0236460, 0x26058203, 0x1b215850, 0x88592123, 0x25098254, 0x05b03c20, 0xaf414223, 0x28408206, 0x2b09b02e, 0x2c16b02d, 0x092341b0, 0x0c821e20, + 0x82201621, 0x86262047, 0x8623207e, 0x3c2321fe, 0x20081f41, 0x82239a1f, 0x25b8832e, 0x20585246, 0x5041593c, 0xa2202007, 0x8b502030, 0xa2212030, + 0x87618430, 0x203d8c6e, 0x2d3d8422, 0x42230cb0, 0x4308b020, 0x20202e60, 0x8a872f3c, 0x1b922320, 0x2420b394, 0x6d8c289a, 0x289a2520, 0x2620a399, + 0xb0223583, 0xa0832503, 0x2a066941, 0x5400b049, 0x3c202e58, 0x861b2123, 0x27068611, 0x0010b849, 0x2504b063, 0x49202e82, 0xd4820784, 0x1a843a86, + 0x42236221, 0x232106c0, 0x08724121, 0x5fd62720, 0x20142b41, 0x416cde28, 0x29200c6f, 0xb3416cde, 0x412a2019, 0x082505e9, 0x0cb06043, 0x06164343, + 0xb0602028, 0xb0666020, 0x42446280, 0xa12b200d, 0x1449412a, 0x37a92c20, 0x200c1441, 0x9937a92d, 0x2c2e28df, 0x2fb02d2b, 0x462eb02c, 0x320805e9, + 0xb9000000, 0x00080008, 0x0ab02063, 0xb0204223, 0xb0702300, 0x20204510, 0x666028b0, 0x58558a20, 0x63430ab0, 0x09b06223, 0x05b34223, 0x2b020306, + 0x830c07b3, 0x120d2105, 0x1b2d0582, 0x430a09b1, 0x0bb25942, 0x52450228, 0x2d198242, 0x002b0204, 0x00000000, 0x00000100, 0xfa050000, 0x4bb7b5d7, +}; + + +static const unsigned int icons_size = 4010; +static const unsigned int icons_data[4012 / 4] = +{ + 0x0000bc57, 0x00000000, 0x9c140000, 0x00000400, 0x00010033, 0x000b0000, 0x00030080, 0x2f534f30, 0x0d110f32, 0x20118275, 0x2c0382bc, 0x616d6360, + 0x00a90070, 0x010000e3, 0x240f821c, 0x7361675c, 0x20078270, 0x200f8210, 0x28078278, 0x796c6708, 0x74bf5166, 0x350f824e, 0x10000080, 0x616568a0, + 0xc9962164, 0x120000f1, 0x00000020, 0x10826836, 0x03c20723, 0x200f82d3, 0x280f8258, 0x746d6824, 0x02003e78, 0x200f8242, 0x280f827c, 0x636f6c48, + 0x22822661, 0x200f82d4, 0x270f82c4, 0x78616d26, 0x00170070, 0xec202f83, 0x202c0f82, 0x656d616e, 0x996d82d1, 0x0c130000, 0x6e246382, 0x74736f70, + 0x1a82a782, 0x3f831420, 0x0300202e, 0x9001de03, 0x00000500, 0xcc029902, 0x8f201682, 0x01250785, 0x013300eb, 0x8b0f8209, 0x8b012002, 0x200b840c, + 0x29058240, 0xffc0036d, 0x034000c0, 0x0d8300c0, 0xc183238b, 0x6d840020, 0x27820320, 0x01001c22, 0x1c200b84, 0x01200582, 0x04200f84, 0x0c263184, + 0x02000800, 0x1d820400, 0x31002028, 0xfdff6d00, 0x1d82ffff, 0x20000022, 0x61200d82, 0x01260d84, 0xd3ffe3ff, 0x3786a4ff, 0x04841c84, 0x01000122, + 0x0f202b82, 0x0e843982, 0x02250482, 0x39370000, 0xa8088201, 0x00023613, 0x03d6ffb0, 0x00a80351, 0x00d000ac, 0x16140100, 0x07011e17, 0x20028c0e, + 0x23148415, 0x2e27011f, 0x2f200283, 0x15851b86, 0x37222d82, 0x0285013e, 0x26343522, 0x27222285, 0x11823626, 0x06323122, 0x06204883, 0x26825183, + 0x15210282, 0x21118314, 0x26883027, 0x14822220, 0x83161721, 0x32332114, 0x35823283, 0x87363721, 0x012e231d, 0x47843435, 0x47843420, 0x06229382, + 0x1d8a3534, 0x1e131523, 0x82578501, 0x20698205, 0x862f820f, 0x3738853b, 0x17163015, 0x0102cb01, 0x02020103, 0x1a0a0809, 0x0c1e211a, 0x01050f0c, + 0x20080082, 0x030d1104, 0x0d261703, 0x02030f0b, 0x030c0703, 0x03020103, 0x1f293b0b, 0x14112846, 0x05170e06, 0x2a108206, 0x1f1c1506, 0x191b0a1c, + 0x82240735, 0x046e0840, 0x240f0309, 0x0a160538, 0x05092930, 0x02020102, 0x01020106, 0x14081305, 0x020c1c31, 0x07191006, 0x04261711, 0x07020202, + 0x25724604, 0x0205251f, 0x18030402, 0x08141d12, 0x04040507, 0x071e0101, 0x030c2617, 0x01010209, 0x200c0b0b, 0x101b0e17, 0x02d80309, 0x0f04080b, + 0x0611110b, 0x02030407, 0x1403050a, 0x05171c1c, 0x05030101, 0x05820e03, 0x01a83308, 0x280e0609, 0x111e110e, 0x2b232713, 0x2f19182c, 0x1611091c, + 0x1f0b1116, 0x020a2241, 0x19202f0f, 0x060c1b3a, 0x1212270d, 0x1d191818, 0x22754516, 0x3682181a, 0x08036b08, 0x0e090915, 0x07080b0d, 0x332e2a13, + 0x84491b35, 0x06250740, 0x0a1b0b03, 0x063d6e40, 0x38300b17, 0x12100e1d, 0x0a070b0d, 0x03050115, 0x1f0e2710, 0x09040a2b, 0x33163116, 0x01031a55, + 0x360c0101, 0x31532128, 0x14133713, 0x29311f38, 0x1a261518, 0x04172516, 0x04100106, 0x0414240f, 0x0d010612, 0x2345280d, 0x0e173723, 0xac820916, + 0x68fe4508, 0x0910240f, 0x221b1319, 0x162a1511, 0x060c240e, 0x212e1d11, 0x07182722, 0x19100d0b, 0x01280b12, 0x00000506, 0x0e000400, 0xf203ceff, + 0x1c00b203, 0x55003800, 0x00007200, 0x16140301, 0x013e2533, 0x2f343637, 0x262c0485, 0x27010f22, 0x0e072226, 0x2e230701, 0x0e840983, 0x06010f31, + 0x07011f14, 0x1e171406, 0x32051701, 0x82133536, 0x32162407, 0x8317013f, 0x203c8604, 0x2a2f8227, 0x15062225, 0x34132313, 0x82052326, 0x21348641, + 0x2a86011f, 0x69823720, 0x2752023f, 0x35011821, 0x0d060d07, 0x0e73340d, 0x280f670e, 0x0e33730e, 0x07050e25, 0x0701a401, 0x2a098205, 0x280e7333, + 0x0e0e670f, 0x820d3473, 0x01072525, 0x7d211835, 0xfe251994, 0x272118cb, 0x214f82a4, 0x4f94cbfe, 0x84590321, 0x943b9421, 0x204a8330, 0x20199803, + 0x208983cb, 0x204d9427, 0x33008200, 0xff000004, 0x030004c0, 0x001c00c0, 0x00560039, 0x13000073, 0x201b5f41, 0x1a5f4121, 0x41010321, 0x21201b60, + 0x281b6041, 0x17222828, 0x0e073501, 0x065f4105, 0x0f280e37, 0x260d3472, 0x0106050e, 0x0601b003, 0x0d260e05, 0x280f7234, 0x0660410e, 0x060e0529, + 0x22173601, 0x9450fc28, 0xcafe211b, 0x03211b82, 0x225382b0, 0x9306cafe, 0x2f012153, 0x3c942284, 0x4a823094, 0x01360123, 0x211b9722, 0x8e84cafe, + 0x00224f94, 0x63410300, 0x00382e08, 0x00aa0071, 0x16151300, 0x17011e17, 0x84018216, 0x24048206, 0x3637013e, 0x86048437, 0x34353006, 0x27262726, + 0x2627012e, 0x0e072223, 0x82060701, 0x27152104, 0x33223890, 0x38a33632, 0x87341721, 0x32332126, 0x1e227a85, 0x53841501, 0x5a830482, 0x23210b84, + 0x86738722, 0x012f337a, 0x070703c0, 0x06090911, 0x3e1b1a0e, 0x0c182020, 0x02820c15, 0x20193108, 0x1b1b3f20, 0x0908060e, 0x03060710, 0x251e0b0f, + 0x27274d24, 0x27272424, 0x1e24244d, 0x04c00f0c, 0x0d190b0a, 0x2b17090d, 0x3434662c, 0x13231326, 0x44080282, 0x66343426, 0x09172b2c, 0x0b190d0d, + 0x1318040a, 0x7b3a3a30, 0x3a3a3e3e, 0x3a7b3e3e, 0x1813303a, 0x270e1467, 0x31632e2e, 0x322e2e32, 0x2e2e6331, 0x01140e27, 0x15090803, 0x12070b0b, + 0x29512223, 0x1c0f1e29, 0x0802820f, 0x29291e4f, 0x12232251, 0x150b0b07, 0x01030809, 0x4603c302, 0x20654141, 0x17130621, 0x16163017, 0x0104080f, + 0x0f070501, 0x18301615, 0x21061317, 0x41416520, 0x150d0346, 0x07070a04, 0x01010208, 0x07070802, 0x0d15040a, 0x6770057b, 0x3333a067, 0x08bc820a, + 0x22224a31, 0x11110c19, 0x2222190c, 0x1e25244a, 0xa033330a, 0x05706767, 0x10072115, 0x04120d0d, 0x12040505, 0x07100d0d, 0x11461521, 0x080d061a, + 0x82020a09, 0x090a3500, 0x1a060d08, 0x525a0311, 0x2a298252, 0x1d1e1708, 0x141c1b3c, 0x2808de82, 0x1b1c1409, 0x171e1d3c, 0x82292a08, 0x035a5252, + 0x55000100, 0x9503c0ff, 0x3800c003, 0x2e250000, 0x012e2701, 0x35363435, 0x4105823e, 0x15220be0, 0xc0821614, 0x0805eb46, 0x010e076b, 0x31011c07, + 0x21331614, 0x30353632, 0x26343534, 0x812e7903, 0x3c191265, 0x1211302f, 0x2f29283d, 0x3c29292e, 0x2f301212, 0x63141b3c, 0x0e0d2e7f, 0x02243201, + 0x0e322395, 0x0a413dde, 0x0e131d04, 0x8c30013d, 0x29292f3c, 0x1212113e, 0x29293e11, 0x318d3c2f, 0x1e140e3c, 0x3c410a03, 0x05133a11, 0x32322366, + 0x13056623, 0x0a9f423a, 0x29001b36, 0x00006a00, 0x1e171413, 0x33161701, 0x013e3732, 0x34353637, 0x1727a58b, 0x17373634, 0x42151707, 0x0125059b, + 0x3233013e, 0x210f8216, 0x31823733, 0x17010f26, 0x30152315, 0x26243882, 0x31323637, 0x15364483, 0x22232630, 0x06303106, 0x31160607, 0x010e1517, + 0x27262223, 0x15852713, 0x013f272e, 0x8b282800, 0x6a6a5d5e, 0x288b5e5d, 0x0b890082, 0x056b2508, 0x55155f06, 0x2d1f2026, 0x38010c0c, 0x1b182f16, + 0x16121933, 0x150c1140, 0x2b2b270a, 0x1a1a262b, 0x23121201, 0x0b3acf82, 0x412a292c, 0x1a05033d, 0x4983346b, 0x6e1f4222, 0x20215f16, 0x40802a20, + 0x5591c001, 0x3b086d85, 0x5f172f19, 0x1b755580, 0x30542424, 0x06bd0130, 0x1d070605, 0x0d061216, 0x152b0d07, 0x33152b15, 0x19040d0d, 0x15021f3a, + 0x3c231d15, 0x2bcf402f, 0x010a0b30, 0x406a6b00, 0x00ab5556, 0x03200082, 0x6b340382, 0x15030004, 0x3f001600, 0x00005c00, 0x33161401, 0x013d3632, + 0x3524dd84, 0x2e373634, 0x0622e682, 0xbf432515, 0x4307200f, 0x5a4107ed, 0x3e372207, 0x292b8201, 0x27220127, 0x2627012e, 0x0f833435, 0xa1433620, + 0x15340806, 0x010e0714, 0x01230607, 0x35354b80, 0x0f1c0a4b, 0x12182c1f, 0x350b150a, 0x1d63024b, 0x4a7f3232, 0x4a4f4f4a, 0x32327e4b, 0x010e0d1e, + 0x1e0d0e01, 0x4b7f3132, 0x4a251383, 0x1d32327f, 0x2e13830e, 0x2c1dfe0e, 0x113a2727, 0x3a111010, 0x832c2727, 0x1110230b, 0x0b831011, 0xc0012408, + 0x354b4b35, 0x2b0c0a01, 0x0924171f, 0x354b0403, 0x2f2e2649, 0x1b1b1c52, 0x2e2f521c, 0x13241226, 0x91122413, 0xe2fe2111, 0x568b4a89, 0x0010112a, + 0x00010000, 0x03c0ff40, 0x00210182, 0x2b0c8246, 0x2f343637, 0x23012e01, 0x011d0622, 0x2005c144, 0x0c564215, 0x3630372a, 0x2b263435, 0x07062201, + 0x20058044, 0x0c054123, 0x15375408, 0x32331614, 0xf64a0236, 0x06f61515, 0x1b14070e, 0x7a52515d, 0x24232323, 0x5d52517a, 0x774d4d56, 0x010a2627, + 0x1b6b1219, 0x15080324, 0x27263d15, 0x2b2a312b, 0x12121340, 0x2a2b3f13, 0x07141b31, 0xb8f3010e, 0xb7152b15, 0x131a0504, 0x79232453, 0x855d5152, + 0x1f1e3442, 0x5349486a, 0x19120208, 0x2328101d, 0x0f0e3323, 0x82401213, 0x302e0833, 0x133f2b2b, 0x12540112, 0x0400041a, 0xc0ff0000, 0xab03eb03, + 0x18000c00, 0x96007900, 0x34010000, 0x16323336, 0x23061415, 0x37352622, 0xa0850622, 0x0526c382, 0x0717011e, 0x31481406, 0x011e2e05, 0x1614011f, + 0x3632013b, 0x013e3735, 0x086b4837, 0x3f013e22, 0x3d341382, 0x23263401, 0x27012e27, 0x2f343637, 0x0f222601, 0x2f012e01, 0x2b211382, 0x824f8201, + 0x270721b1, 0x4b831383, 0x0f010e22, 0x1d201382, 0x33224b82, 0xb3450117, 0x07114205, 0x080c2741, 0xc001333f, 0x2016161f, 0x1f161620, 0x51513935, + 0x51513a39, 0x11065ffe, 0x0e0e400b, 0x0e270d46, 0x15291346, 0x62131c06, 0x16061b14, 0x0e461329, 0x0e450e26, 0x110b400e, 0x1c135f07, 0x065f131c, + 0x20288312, 0x82168245, 0x06162828, 0x1362141b, 0x8315061c, 0x0d272228, 0x2e288446, 0x1b145f06, 0x015f141b, 0x28292f67, 0x4411123d, 0x12270b7b, + 0x29293c12, 0x85b5012e, 0x161f247d, 0x853a518b, 0x93f12081, 0x2193a041, 0x939a0612, 0x91460121, 0x2f918579, 0x00010000, 0x04150000, 0x00550300, + 0x37000023, 0x24063345, 0x23263411, 0x06604221, 0x41111521, 0x138305b4, 0x06222508, 0x32001115, 0x23560323, 0xfe233232, 0xe2141b55, 0x12191b14, + 0x16201911, 0x246b1f16, 0x02243232, 0x26322340, 0xfd2df383, 0x19191285, 0x16200212, 0xfd161f1f, 0x236382a0, 0xff2b0004, 0x2905df42, 0x0038002b, + 0x00590045, 0x6d852500, 0x34013d26, 0x013e3736, 0x27206e82, 0x230d2d45, 0x010e011d, 0x2205f04c, 0x4203011d, 0x21200b3f, 0x072c0c8b, 0x1f323637, + 0x07141601, 0x012f2206, 0x27240482, 0x01373426, 0x2008a482, 0x32244001, 0x684d0e12, 0x21201417, 0x564c4c71, 0x714b4c56, 0x16142121, 0x130e4c68, + 0x2c2c3f2b, 0x2103833f, 0x05826b01, 0x823e3e21, 0x4bb4320d, 0x4c0c230d, 0x220d0c0c, 0x0c2e2f0c, 0x0c0c0c23, 0x08e48315, 0x170f1923, 0x50770c04, + 0x921b4124, 0x69474650, 0x1f1e1e1f, 0x50464769, 0x24411b92, 0x040c7750, 0x01190f17, 0x874a85ab, 0x2c3f2d52, 0x0d0d4be4, 0x0d220c4b, 0x2f2f0c0c, + 0xfe825084, 0x88020021, 0x004525ff, 0x01000054, 0x48051746, 0x15270da5, 0x2b061411, 0x82062201, 0x013b21f4, 0x20063f46, 0x20eb8411, 0x05e54317, + 0x44011d21, 0x35210c05, 0x05504303, 0x5d433d20, 0x033e0806, 0x391110c0, 0x012e2727, 0x30481615, 0x31373630, 0x15154930, 0x160b2c3e, 0x0b161f1f, + 0x3927272c, 0x425e1111, 0x29015d42, 0x0f332324, 0x4614140e, 0x35352f2e, 0x14462e2f, 0x1219d514, 0x03831912, 0xbf013308, 0x432b2a30, 0x36071717, + 0x15462f30, 0x48151514, 0xfe383031, 0x1f3f2cb6, 0x11201616, 0x27273a11, 0x434a012c, 0x0b415c5d, 0x29411817, 0x35fe2d28, 0x3f822f2f, 0x2f254b82, + 0x6a01352f, 0x24458380, 0x19191180, 0x05eb4511, 0xeeff2e2c, 0x9503d503, 0x38001400, 0xf5825500, 0x17011e27, 0x3233011e, 0x05b54e36, 0xea842320, + 0x14060127, 0x3f321617, 0x47188301, 0x15251233, 0x07171614, 0x14dd4501, 0x0806cb43, 0x22790221, 0x17030833, 0x23191210, 0x193b1a1a, 0xfd151912, + 0x191919c4, 0x2bf51946, 0x444d3664, 0x821d6644, 0x44662300, 0x0b864d44, 0x01f51b29, 0x49151527, 0x41373130, 0x0b8b0521, 0x08950233, 0x150f2034, + 0x3f171219, 0x1a211a1a, 0xfd180f12, 0x234982ce, 0x1bf51919, 0x1d20448d, 0x36255083, 0x01f52b64, 0x854591ba, 0x02002451, 0x48ff6b00, 0x142505bb, + 0x00002a00, 0x20ee8213, 0x05f34211, 0x34113530, 0x2e012f26, 0x05212301, 0x32333634, 0xf6441d16, 0x16260805, 0x2b061415, 0x35262201, 0x323223c0, + 0x23800223, 0xc20e0f32, 0xfe16270e, 0x192b0155, 0x13191211, 0x1912a00d, 0x1d821219, 0x32c00325, 0x84aafc23, 0x82270825, 0xc20d2615, 0x1195110e, + 0xa0111919, 0x1219120e, 0x24321912, 0x00000100, 0x00000100, 0xddd453bc, 0xf53c0f5f, 0x82040b00, 0x00002510, 0xbac23bdf, 0x07850883, 0x2206bd4c, + 0x82080000, 0x840020ab, 0x00012900, 0xffc00300, 0x040000c0, 0x05820e84, 0x08840120, 0x12200489, 0x0d881382, 0x84000221, 0x04b02429, 0x820e0000, + 0x82358403, 0x8a552007, 0x8a40200b, 0x822b200b, 0x2003830b, 0x2007822e, 0x083a826b, 0x0a000022, 0x1e001400, 0x02025201, 0xb403b402, 0x9c040404, + 0x8e052805, 0x98066406, 0x92071807, 0x50081208, 0x01202582, 0x12220382, 0x5c84d100, 0x02000023, 0x23009100, 0x00ae000e, 0x0122a785, 0x1e820500, + 0x02240b85, 0x4e000700, 0x03201786, 0x30201782, 0x04200b86, 0x63200b82, 0x05230b86, 0x51000b00, 0x062007cd, 0x3f201782, 0x0a2a1786, 0x72001a00, + 0x01000300, 0x11820904, 0x19820a20, 0x02240b85, 0x55000e00, 0x03201786, 0x3520bd82, 0x04200b86, 0x68200b82, 0x05220b86, 0x3d821600, 0x06202f85, + 0x44201782, 0x22081786, 0x0034000a, 0x6f63698c, 0x6900736e, 0x6f006300, 0x73006e00, 0x73726556, 0x206e6f69, 0x00302e31, 0x82650056, 0x831c8373, + 0x0020261a, 0x002e0031, 0x8e2f8e30, 0x6552280e, 0x616c7567, 0x82520072, 0x0067283a, 0x006c0075, 0x8e720061, 0x6f463b23, 0x6720746e, 0x72656e65, + 0x64657461, 0x20796220, 0x4d6f6349, 0x2e6e6f6f, 0x84844600, 0x20007424, 0x40826700, 0x7f846e20, 0x74006122, 0x64200782, 0x62221382, 0x05827900, + 0xaa844920, 0x6f004d22, 0x2e242b84, 0x03000000, 0x029a0382, 0x9b43fa05, 0x0000a2f8, +}; + +//File size: 111108 +unsigned char interfaces[] = +{ + 0x00, 0x01, 0x00, 0x00, 0x00, 0x0B, 0x00, 0x80, 0x00, 0x03, 0x00, 0x30, 0x4F, 0x53, 0x2F, 0x32, +0x0F, 0x11, 0x0C, 0xD2, 0x00, 0x00, 0x00, 0xBC, 0x00, 0x00, 0x00, 0x60, 0x63, 0x6D, 0x61, 0x70, +0x00, 0x8F, 0x00, 0xF5, 0x00, 0x00, 0x01, 0x1C, 0x00, 0x00, 0x00, 0x5C, 0x67, 0x61, 0x73, 0x70, +0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x01, 0x78, 0x00, 0x00, 0x00, 0x08, 0x67, 0x6C, 0x79, 0x66, +0x4D, 0xB9, 0x98, 0xD2, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x02, 0x64, 0x68, 0x65, 0x61, 0x64, +0x1C, 0xC5, 0x9C, 0x05, 0x00, 0x00, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, 0x65, 0x61, +0x07, 0xB0, 0x03, 0xC7, 0x00, 0x00, 0x04, 0x1C, 0x00, 0x00, 0x00, 0x24, 0x68, 0x6D, 0x74, 0x78, +0x0E, 0x00, 0x00, 0x92, 0x00, 0x00, 0x04, 0x40, 0x00, 0x00, 0x00, 0x18, 0x6C, 0x6F, 0x63, 0x61, +0x01, 0x5A, 0x00, 0xB6, 0x00, 0x00, 0x04, 0x58, 0x00, 0x00, 0x00, 0x0E, 0x6D, 0x61, 0x78, 0x70, +0x00, 0x0C, 0x00, 0x61, 0x00, 0x00, 0x04, 0x68, 0x00, 0x00, 0x00, 0x20, 0x6E, 0x61, 0x6D, 0x65, +0xFD, 0xDF, 0x50, 0x22, 0x00, 0x00, 0x04, 0x88, 0x00, 0x00, 0x01, 0xDA, 0x70, 0x6F, 0x73, 0x74, +0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x06, 0x64, 0x00, 0x00, 0x00, 0x20, 0x00, 0x03, 0x03, 0x55, +0x01, 0x90, 0x00, 0x05, 0x00, 0x00, 0x02, 0x99, 0x02, 0xCC, 0x00, 0x00, 0x00, 0x8F, 0x02, 0x99, +0x02, 0xCC, 0x00, 0x00, 0x01, 0xEB, 0x00, 0x33, 0x01, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x53, +0x03, 0xC0, 0xFF, 0xC0, 0x00, 0x40, 0x03, 0xC0, 0x00, 0x40, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, +0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1C, +0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x04, 0x00, 0x40, 0x00, 0x00, 0x00, 0x0C, +0x00, 0x08, 0x00, 0x02, 0x00, 0x04, 0x00, 0x01, 0x00, 0x20, 0x00, 0x43, 0x00, 0x53, 0xFF, 0xFD, +0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x43, 0x00, 0x53, 0xFF, 0xFD, 0xFF, 0xFF, +0x00, 0x01, 0xFF, 0xE3, 0xFF, 0xC1, 0xFF, 0xB2, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x0F, +0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x37, 0x39, +0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, +0x00, 0x00, 0x37, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x37, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x80, +0x00, 0x2B, 0x03, 0x80, 0x03, 0x2B, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x2F, 0x00, 0x3F, 0x00, 0x5C, +0x00, 0x00, 0x01, 0x32, 0x37, 0x36, 0x35, 0x34, 0x27, 0x26, 0x23, 0x22, 0x07, 0x06, 0x15, 0x14, +0x17, 0x16, 0x27, 0x32, 0x37, 0x36, 0x35, 0x34, 0x27, 0x26, 0x23, 0x22, 0x07, 0x06, 0x15, 0x14, +0x17, 0x16, 0x23, 0x32, 0x37, 0x36, 0x35, 0x34, 0x27, 0x26, 0x23, 0x22, 0x07, 0x06, 0x15, 0x14, +0x17, 0x16, 0x07, 0x32, 0x37, 0x36, 0x35, 0x34, 0x27, 0x26, 0x23, 0x22, 0x07, 0x06, 0x15, 0x14, +0x17, 0x16, 0x01, 0x32, 0x17, 0x16, 0x15, 0x14, 0x07, 0x06, 0x2B, 0x01, 0x22, 0x07, 0x06, 0x15, +0x14, 0x17, 0x16, 0x15, 0x14, 0x07, 0x06, 0x23, 0x22, 0x27, 0x26, 0x35, 0x34, 0x37, 0x36, 0x02, +0xEA, 0x1A, 0x13, 0x13, 0x13, 0x13, 0x1A, 0x1A, 0x13, 0x13, 0x13, 0x13, 0x66, 0x1A, 0x13, 0x13, +0x13, 0x13, 0x1A, 0x1A, 0x13, 0x13, 0x13, 0x13, 0xBA, 0x1A, 0x13, 0x13, 0x13, 0x13, 0x1A, 0x1A, +0x13, 0x13, 0x13, 0x13, 0x66, 0x1A, 0x13, 0x13, 0x13, 0x13, 0x1A, 0x1A, 0x13, 0x13, 0x13, 0x13, +0x01, 0x04, 0x9E, 0x71, 0x71, 0x3F, 0x3F, 0x58, 0x4A, 0x1C, 0x12, 0x12, 0x10, 0x10, 0x12, 0x12, +0x1C, 0xA0, 0x70, 0x70, 0x70, 0x70, 0x01, 0xAB, 0x12, 0x12, 0x1C, 0x1C, 0x12, 0x12, 0x12, 0x12, +0x1C, 0x1C, 0x12, 0x12, 0xAA, 0x13, 0x13, 0x1A, 0x1A, 0x13, 0x13, 0x13, 0x13, 0x1A, 0x1A, 0x13, +0x13, 0x13, 0x13, 0x1A, 0x1A, 0x13, 0x13, 0x13, 0x13, 0x1A, 0x1A, 0x13, 0x13, 0xAA, 0x12, 0x12, +0x1C, 0x1C, 0x12, 0x12, 0x12, 0x12, 0x1C, 0x1C, 0x12, 0x12, 0x01, 0x80, 0x64, 0x64, 0x8E, 0x58, +0x3E, 0x3E, 0x13, 0x13, 0x1A, 0x16, 0x14, 0x14, 0x18, 0x1C, 0x12, 0x12, 0x70, 0x70, 0xA0, 0xA0, +0x70, 0x70, 0x00, 0x00, 0x00, 0x02, 0x00, 0x12, 0xFF, 0xC0, 0x03, 0xEE, 0x03, 0xC0, 0x00, 0x42, +0x00, 0x5E, 0x00, 0x00, 0x01, 0x26, 0x27, 0x26, 0x36, 0x37, 0x36, 0x37, 0x27, 0x0E, 0x01, 0x23, +0x22, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x35, 0x23, 0x14, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x27, +0x26, 0x27, 0x07, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x06, 0x07, 0x06, 0x07, 0x17, 0x3E, 0x01, +0x33, 0x32, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x15, 0x33, 0x34, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, +0x17, 0x16, 0x17, 0x37, 0x2E, 0x01, 0x27, 0x05, 0x22, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x35, 0x34, +0x37, 0x3E, 0x01, 0x37, 0x36, 0x33, 0x32, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x15, 0x14, 0x07, 0x0E, +0x01, 0x07, 0x06, 0x03, 0xA6, 0x14, 0x05, 0x04, 0x13, 0x18, 0x17, 0x23, 0x65, 0x15, 0x32, 0x1B, +0x28, 0x23, 0x24, 0x35, 0x0F, 0x0F, 0xC9, 0x0D, 0x0D, 0x15, 0x1F, 0x1F, 0x48, 0x27, 0x26, 0x23, +0x65, 0x16, 0x25, 0x0D, 0x14, 0x04, 0x05, 0x14, 0x17, 0x17, 0x23, 0x65, 0x15, 0x32, 0x1A, 0x28, +0x24, 0x23, 0x35, 0x0F, 0x10, 0xC9, 0x0D, 0x0D, 0x14, 0x1F, 0x1F, 0x49, 0x26, 0x26, 0x24, 0x64, +0x15, 0x25, 0x0D, 0xFE, 0x5A, 0x2B, 0x26, 0x25, 0x39, 0x10, 0x10, 0x10, 0x10, 0x39, 0x25, 0x26, +0x2B, 0x2B, 0x26, 0x25, 0x39, 0x10, 0x10, 0x10, 0x10, 0x39, 0x25, 0x26, 0x01, 0x5E, 0x23, 0x26, +0x26, 0x49, 0x1F, 0x1F, 0x14, 0xAF, 0x0D, 0x0E, 0x0F, 0x10, 0x35, 0x24, 0x23, 0x29, 0x19, 0x32, +0x17, 0x23, 0x17, 0x17, 0x13, 0x04, 0x05, 0x14, 0xAE, 0x0D, 0x24, 0x17, 0x23, 0x26, 0x26, 0x48, +0x20, 0x1F, 0x14, 0xAE, 0x0C, 0x0E, 0x0F, 0x10, 0x35, 0x23, 0x24, 0x28, 0x19, 0x31, 0x17, 0x23, +0x17, 0x17, 0x13, 0x04, 0x05, 0x14, 0xAF, 0x0C, 0x24, 0x17, 0x6D, 0x10, 0x10, 0x39, 0x25, 0x26, +0x2B, 0x2B, 0x26, 0x25, 0x39, 0x10, 0x10, 0x10, 0x10, 0x39, 0x25, 0x26, 0x2B, 0x2B, 0x26, 0x25, +0x39, 0x10, 0x10, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x20, 0x06, 0xDE, 0xAD, +0x5F, 0x0F, 0x3C, 0xF5, 0x00, 0x0B, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xDC, 0xDC, 0x2B, 0xC4, +0x00, 0x00, 0x00, 0x00, 0xDC, 0xDC, 0x2B, 0xC4, 0x00, 0x00, 0xFF, 0xC0, 0x03, 0xEE, 0x03, 0xC0, +0x00, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, +0x03, 0xC0, 0xFF, 0xC0, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xEE, 0x00, 0x01, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, +0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, +0x04, 0x00, 0x00, 0x80, 0x04, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x14, +0x00, 0x1E, 0x00, 0xA2, 0x01, 0x32, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x00, 0x5F, +0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0xAE, 0x00, 0x01, +0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, +0x00, 0x02, 0x00, 0x07, 0x00, 0x9F, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x0E, +0x00, 0x4B, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0E, 0x00, 0xB4, 0x00, 0x01, +0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0B, 0x00, 0x2A, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, +0x00, 0x06, 0x00, 0x0E, 0x00, 0x75, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x1A, +0x00, 0xDE, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x01, 0x00, 0x1C, 0x00, 0x0E, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x00, 0x02, 0x00, 0x0E, 0x00, 0xA6, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x00, 0x03, 0x00, 0x1C, 0x00, 0x59, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x04, 0x00, 0x1C, +0x00, 0xC2, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x05, 0x00, 0x16, 0x00, 0x35, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x00, 0x06, 0x00, 0x1C, 0x00, 0x83, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x00, 0x0A, 0x00, 0x34, 0x00, 0xF8, 0x68, 0x61, 0x63, 0x6B, 0x5F, 0x69, 0x6E, 0x74, 0x65, 0x72, +0x66, 0x61, 0x63, 0x65, 0x00, 0x68, 0x00, 0x61, 0x00, 0x63, 0x00, 0x6B, 0x00, 0x5F, 0x00, 0x69, +0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65, +0x56, 0x65, 0x72, 0x73, 0x69, 0x6F, 0x6E, 0x20, 0x31, 0x2E, 0x30, 0x00, 0x56, 0x00, 0x65, 0x00, +0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, +0x30, 0x68, 0x61, 0x63, 0x6B, 0x5F, 0x69, 0x6E, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x00, +0x68, 0x00, 0x61, 0x00, 0x63, 0x00, 0x6B, 0x00, 0x5F, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, +0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65, 0x68, 0x61, 0x63, 0x6B, 0x5F, +0x69, 0x6E, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x00, 0x68, 0x00, 0x61, 0x00, 0x63, 0x00, +0x6B, 0x00, 0x5F, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, +0x61, 0x00, 0x63, 0x00, 0x65, 0x52, 0x65, 0x67, 0x75, 0x6C, 0x61, 0x72, 0x00, 0x52, 0x00, 0x65, +0x00, 0x67, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, 0x68, 0x61, 0x63, 0x6B, 0x5F, 0x69, +0x6E, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x00, 0x68, 0x00, 0x61, 0x00, 0x63, 0x00, 0x6B, +0x00, 0x5F, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x66, 0x00, 0x61, +0x00, 0x63, 0x00, 0x65, 0x46, 0x6F, 0x6E, 0x74, 0x20, 0x67, 0x65, 0x6E, 0x65, 0x72, 0x61, 0x74, +0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x49, 0x63, 0x6F, 0x4D, 0x6F, 0x6F, 0x6E, 0x2E, 0x00, 0x46, +0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x67, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x65, +0x00, 0x72, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x62, 0x00, 0x79, +0x00, 0x20, 0x00, 0x49, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x4D, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6E, +0x00, 0x2E, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00 +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/interfaces.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/interfaces.cpp new file mode 100644 index 0000000..55b91cb --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/interfaces.cpp @@ -0,0 +1,243 @@ +// used: [d3d] api +#include + +#include "interfaces.h" + +// used: findpattern, callvirtual, getvfunc... +#include "../utilities/memory.h" + +// used: l_print +#include "../utilities/log.h" + +// used: iswapchaindx11 +#include "../sdk/interfaces/iswapchaindx11.h" +#include "hooks.h" +#include "../sdk/datatypes/resourceutils.h" +#include "../cstrike/sdk/interfaces/events.h" +#include "../sdk/interfaces/imaterialsystem.h" +#pragma region interfaces_get + +using InstantiateInterfaceFn_t = void* (*)(); + +class CInterfaceRegister +{ +public: + InstantiateInterfaceFn_t fnCreate; + const char* szName; + CInterfaceRegister* pNext; +}; + +static const CInterfaceRegister* GetRegisterList(const wchar_t* wszModuleName) +{ + void* hModule = MEM::GetModuleBaseHandle(wszModuleName); + if (hModule == nullptr) + return nullptr; + + std::uint8_t* pCreateInterface = reinterpret_cast(MEM::GetExportAddress(hModule, CS_XOR("CreateInterface"))); + + if (pCreateInterface == nullptr) + { + L_PRINT(LOG_ERROR) << CS_XOR("failed to get \"CreateInterface\" address"); + return nullptr; + } + + return *reinterpret_cast(MEM::ResolveRelativeAddress(pCreateInterface, 0x3, 0x7)); +} + +template +T* Capture(const CInterfaceRegister* pModuleRegister, const char* szInterfaceName) +{ + for (const CInterfaceRegister* pRegister = pModuleRegister; pRegister != nullptr; pRegister = pRegister->pNext) + { + if (const std::size_t nInterfaceNameLength = CRT::StringLength(szInterfaceName); + // found needed interface + CRT::StringCompareN(szInterfaceName, pRegister->szName, nInterfaceNameLength) == 0 && + // and we've given full name with hardcoded digits + (CRT::StringLength(pRegister->szName) == nInterfaceNameLength || + // or it contains digits after name + CRT::StringToInteger(pRegister->szName + nInterfaceNameLength, nullptr, 10) > 0)) + { + // capture our interface + void* pInterface = pRegister->fnCreate(); + +#ifdef _DEBUG + // log interface address + L_PRINT(LOG_INFO) << CS_XOR("captured \"") << pRegister->szName << CS_XOR("\" interface at address: ") << L::AddFlags(LOG_MODE_INT_SHOWBASE | LOG_MODE_INT_FORMAT_HEX) << reinterpret_cast(pInterface); +#else + L_PRINT(LOG_INFO) << CS_XOR("captured \"") << pRegister->szName << CS_XOR("\" interface"); +#endif + + return static_cast(pInterface); + } + } + + L_PRINT(LOG_ERROR) << CS_XOR("failed to find interface \"") << szInterfaceName << CS_XOR("\""); + return nullptr; +} + +#pragma endregion + +bool I::Setup() +{ + bool bSuccess = true; + +#pragma region interface_game_exported + const auto pTier0Handle = MEM::GetModuleBaseHandle(TIER0_DLL); + if (pTier0Handle == nullptr) + return false; + + MemAlloc = *reinterpret_cast(MEM::GetExportAddress(pTier0Handle, CS_XOR("g_pMemAlloc"))); + bSuccess &= (MemAlloc != nullptr); + + const auto pSchemaSystemRegisterList = GetRegisterList(SCHEMASYSTEM_DLL); + if (pSchemaSystemRegisterList == nullptr) + return false; + + SchemaSystem = Capture(pSchemaSystemRegisterList, SCHEMA_SYSTEM); + bSuccess &= (SchemaSystem != nullptr); + + const auto pInputSystemRegisterList = GetRegisterList(INPUTSYSTEM_DLL); + if (pInputSystemRegisterList == nullptr) + return false; + + InputSystem = Capture(pInputSystemRegisterList, INPUT_SYSTEM_VERSION); + bSuccess &= (InputSystem != nullptr); + + const auto pEngineRegisterList = GetRegisterList(ENGINE2_DLL); + if (pEngineRegisterList == nullptr) + return false; + + GameResourceService = Capture(pEngineRegisterList, GAME_RESOURCE_SERVICE_CLIENT); + bSuccess &= (GameResourceService != nullptr); + + Engine = Capture(pEngineRegisterList, SOURCE2_ENGINE_TO_CLIENT); + bSuccess &= (Engine != nullptr); + + NetworkClientService = Capture(pEngineRegisterList, NETWORK_CLIENT_SERVICE); + bSuccess &= (NetworkClientService != nullptr); + + const auto pTier0RegisterList = GetRegisterList(TIER0_DLL); + if (pTier0RegisterList == nullptr) + return false; + Cvar = Capture(pTier0RegisterList, ENGINE_CVAR); + bSuccess &= (Cvar != nullptr); + + const auto pClientRegister = GetRegisterList(CLIENT_DLL); + if (pClientRegister == nullptr) + return false; + Client = Capture(pClientRegister, SOURCE2_CLIENT); + bSuccess &= (Client != nullptr); + + const auto pLocalizeRegisterList = GetRegisterList(LOCALIZE_DLL); + if (pLocalizeRegisterList == nullptr) + return false; + Localize = Capture(pLocalizeRegisterList, LOCALIZE); + bSuccess &= (Localize != nullptr); + + /* material sys */ + const auto pMaterialSystem2Register = GetRegisterList(MATERIAL_SYSTEM2_DLL); + if (pMaterialSystem2Register == nullptr) + return false; + MaterialSystem2 = Capture(pMaterialSystem2Register, MATERIAL_SYSTEM2); + bSuccess &= (MaterialSystem2 != nullptr); + + const auto pResourceSystemRegisterList = GetRegisterList(RESOURCESYSTEM_DLL); + if (pResourceSystemRegisterList == nullptr) + return false; + + ResourceSystem = Capture(pResourceSystemRegisterList, RESOURCE_SYSTEM); + bSuccess &= (ResourceSystem != nullptr); + + if (ResourceSystem != nullptr) + { + ResourceHandleUtils = reinterpret_cast(ResourceSystem->QueryInterface(RESOURCE_HANDLE_UTILS)); + bSuccess &= (ResourceHandleUtils != nullptr); + } + /* //render game sys + const auto pRenderSysRegister = GetRegisterList(RENDERSYSTEM_DLL); + if (pRenderSysRegister == nullptr) + return false; + + RenderGameSystem = Capture(pRenderSysRegister, RENDERSYS_SYSTEM); + bSuccess &= (RenderGameSystem != nullptr);*/ +#pragma endregion + + Trace = *reinterpret_cast(MEM::GetAbsoluteAddress(MEM::FindPattern(CLIENT_DLL, CS_XOR("4C 8B 3D ? ? ? ? 24 C9 0C 49 66 0F 7F 45 ?")), 0x3)); + bSuccess &= (Trace != nullptr); + L_PRINT(LOG_INFO) << CS_XOR("captured Trace \"") << CS_XOR("\" interface at address: ") << L::AddFlags(LOG_MODE_INT_SHOWBASE | LOG_MODE_INT_FORMAT_HEX) << reinterpret_cast(Trace); + + GameEvent = *reinterpret_cast(MEM::ResolveRelativeAddress(MEM::GetVFunc(Client, 14U) + 0x3E, 0x3, 0x7)); + bSuccess &= (GameEvent != nullptr); + + // @ida: #STR: "r_gpu_mem_stats", "-threads", "CTSListBase: Misaligned list\n", "CTSQueue: Misaligned queue\n", "Display GPU memory usage.", "-r_max_device_threads" + SwapChain = **reinterpret_cast(MEM::ResolveRelativeAddress(MEM::FindPattern(RENDERSYSTEM_DLL, CS_XOR("66 0F 7F 05 ? ? ? ? 66 0F 7F 0D ? ? ? ? 48 89 35")), 0x4, 0x8)); + bSuccess &= (SwapChain != nullptr); + + // grab's d3d11 interfaces for later use + if (SwapChain != nullptr) + { + if (FAILED(SwapChain->pDXGISwapChain->GetDevice(__uuidof(ID3D11Device), (void**)&Device))) + { + L_PRINT(LOG_ERROR) << CS_XOR("failed to get device from swapchain"); + CS_ASSERT(false); + return false; + } + else + // we successfully got device, so we can get immediate context + Device->GetImmediateContext(&DeviceContext); + } + bSuccess &= (Device != nullptr && DeviceContext != nullptr); + + Input = *reinterpret_cast(MEM::ResolveRelativeAddress(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 8B 0D ? ? ? ? E8 ? ? ? ? 8B BE ? ? ? ? 44 8B F0 85 FF 78 04 FF C7 EB 03")), 0x3, 0x7)); + bSuccess &= (Input != nullptr); + + // @ida: STR '%s: %f tick(%d) curtime(%f) OnSequenceCycleChanged: %s : %d=[%s]' + GlobalVars = *reinterpret_cast(MEM::ResolveRelativeAddress(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 89 0D ? ? ? ? 48 89 41")), 0x3, 0x7)); + bSuccess &= (GlobalVars != nullptr); + + return bSuccess; +} + +bool I::CreateRenderTarget(IDXGISwapChain* pSwapChain) { + SwapChain->pDXGISwapChain = pSwapChain; + + DXGI_SWAP_CHAIN_DESC swapChainDesc; + if (FAILED(SwapChain->pDXGISwapChain->GetDesc(&swapChainDesc))) { + L_PRINT(LOG_ERROR) << (CS_XOR("Failed to get swap chain description.")); + return false; + } + + if (FAILED(SwapChain->pDXGISwapChain->GetDevice(__uuidof(ID3D11Device), reinterpret_cast(&Device)))) { + L_PRINT(LOG_ERROR) << (CS_XOR("Failed to get device from swap chain.")); + return false; + } + + Device->GetImmediateContext(&DeviceContext); + + ID3D11Texture2D* back_buffer; + if (FAILED(SwapChain->pDXGISwapChain->GetBuffer(0, __uuidof(ID3D11Texture2D), reinterpret_cast(&back_buffer)))) { + L_PRINT(LOG_ERROR) << (CS_XOR("Failed to get buffer from swap chain.")); + return false; + } + + D3D11_RENDER_TARGET_VIEW_DESC desc; + desc.Format = DXGI_FORMAT_R8G8B8A8_UNORM; + desc.ViewDimension = D3D11_RTV_DIMENSION_TEXTURE2DMS; + + if (FAILED(Device->CreateRenderTargetView(back_buffer, &desc, &RenderTargetView))) { + back_buffer->Release(); + L_PRINT(LOG_ERROR) << (CS_XOR("Failed to create render target view.")); + return false; + } + back_buffer->Release(); + + return true; +} +void I::DestroyRenderTarget() +{ + if (RenderTargetView != nullptr) + { + RenderTargetView->Release(); + RenderTargetView = nullptr; + } +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/interfaces.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/interfaces.h new file mode 100644 index 0000000..b279976 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/interfaces.h @@ -0,0 +1,92 @@ +#pragma once + +#include "../common.h" +#include +#include "../utilities/memory.h" +#pragma region sdk_definitons +#define GAME_RESOURCE_SERVICE_CLIENT CS_XOR("GameResourceServiceClientV00") +#define SOURCE2_CLIENT CS_XOR("Source2Client00") +#define SCHEMA_SYSTEM CS_XOR("SchemaSystem_00") +#define INPUT_SYSTEM_VERSION CS_XOR("InputSystemVersion00") +#define SOURCE2_ENGINE_TO_CLIENT CS_XOR("Source2EngineToClient00") +#define ENGINE_CVAR CS_XOR("VEngineCvar00") +#define LOCALIZE CS_XOR("Localize_00") +#define NETWORK_CLIENT_SERVICE CS_XOR("NetworkClientService_001") +#define MATERIAL_SYSTEM2 CS_XOR("VMaterialSystem2_00") +#define RENDERSYS_SYSTEM CS_XOR("RenderGameSystem_00") +#define RESOURCE_SYSTEM CS_XOR("ResourceSystem013") +#define RESOURCE_HANDLE_UTILS CS_XOR("ResourceHandleUtils001") + +// @source: master/game/shared/shareddefs.h +#define TICK_INTERVAL (I::GlobalVars->flIntervalPerTick) +#define TIME_TO_TICKS(TIME) (static_cast(0.5f + static_cast(TIME) / TICK_INTERVAL)) +#define TICKS_TO_TIME(TICKS) (TICK_INTERVAL * static_cast(TICKS)) +#define ROUND_TO_TICKS(TIME) (TICK_INTERVAL * TIME_TO_TICKS(TIME)) +#define TICK_NEVER_THINK (-1) +#pragma endregion + +// game interfaces +class ISwapChainDx11; +class IMemAlloc; +class CCSGOInput; +class ISchemaSystem; +class IGlobalVars; +class IInputSystem; +class IGameResourceService; +class ISource2Client; +class IEngineClient; +class IEngineCVar; +class INetworkClientService; +class material_system_t; +class CLocalize; +class IResourceSystem; +class CResourceHandleUtils; +class i_trace; +class IGameEvent; +class IGameEventManager2; +class CGCClientSystem; +class CCSInventoryManager; +// [d3d] struct +struct ID3D11Device; +struct ID3D11DeviceContext; +struct ID3D11RenderTargetView; + +class CLocalize { +public: + auto FindSafe(const char* tokenName) { + return MEM::CallVFunc(this, tokenName); + } + +}; + +namespace I +{ + bool Setup(); + + /* @section: helpers */ + // create and destroy render target view for handling resize + bool CreateRenderTarget(IDXGISwapChain* pSwapChain); + void DestroyRenderTarget(); + inline ID3D11ShaderResourceView* Maintexture = nullptr; + inline IGameEventManager2* GameEvent = nullptr; + inline i_trace* Trace = nullptr; + inline IMemAlloc* MemAlloc = nullptr; + inline ISwapChainDx11* SwapChain = nullptr; + inline ID3D11Device* Device = nullptr; + inline ID3D11DeviceContext* DeviceContext = nullptr; + inline ID3D11RenderTargetView* RenderTargetView = nullptr; + inline CCSGOInput* Input = nullptr; + inline ISchemaSystem* SchemaSystem = nullptr; + inline IGlobalVars* GlobalVars = nullptr; + inline IInputSystem* InputSystem = nullptr; + inline IGameResourceService* GameResourceService = nullptr; + inline ISource2Client* Client = nullptr; + inline IEngineClient* Engine = nullptr; + inline IEngineCVar* Cvar = nullptr; + inline INetworkClientService* NetworkClientService = nullptr; + inline material_system_t* MaterialSystem2 = nullptr; + inline CLocalize* Localize = nullptr; + inline CResourceHandleUtils* ResourceHandleUtils = nullptr; + inline IResourceSystem* ResourceSystem = nullptr; + +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/memaddon.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/memaddon.hpp new file mode 100644 index 0000000..fe53603 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/memaddon.hpp @@ -0,0 +1,115 @@ +#ifndef CS2_CHEAT_MEMORY_HPP +#define CS2_CHEAT_MEMORY_HPP + +#include +#include +#include +#include +#include + + +namespace Core::Memory +{ + struct Address_t + { + constexpr Address_t() noexcept = default; + constexpr ~Address_t() noexcept = default; + + explicit constexpr Address_t(std::uintptr_t uAddress) noexcept + : m_uAddress(uAddress) + { + } + + explicit Address_t(const void* pAddress) noexcept + : m_uAddress(reinterpret_cast(pAddress)) + { + } + + constexpr operator std::uintptr_t() const noexcept + { + return m_uAddress; + } + + constexpr operator bool() const noexcept + { + return m_uAddress; + } + + operator void* () const noexcept + { + return reinterpret_cast(m_uAddress); + } + + template< typename tReturn = Address_t > + [[nodiscard]] constexpr tReturn Offset(std::ptrdiff_t iOffset) const noexcept + { + return tReturn(m_uAddress + iOffset); + } + + template< typename tReturn = Address_t > + [[nodiscard]] inline tReturn Get(std::uint32_t iDereferenceCount = 1) const noexcept + { + std::uintptr_t uOutAddress = m_uAddress; + while (iDereferenceCount-- && uOutAddress) + uOutAddress = *reinterpret_cast(uOutAddress); + + return tReturn(uOutAddress); + } + + template< typename tReturn = Address_t > + [[nodiscard]] inline tReturn Jump(std::ptrdiff_t iOffset = 0x1) const noexcept + { + std::uintptr_t uOutAddress = m_uAddress + iOffset; + + uOutAddress += *reinterpret_cast(uOutAddress); // @note / xnxkzeu: those could be negative. + uOutAddress += 4; + + return tReturn(uOutAddress); + } + + template< typename tReturn = std::uintptr_t > + [[nodiscard]] constexpr tReturn Cast() const noexcept + { + return tReturn(m_uAddress); + } + private: + std::uintptr_t m_uAddress = { }; + }; + + [[nodiscard]] Address_t GetModuleBaseAddress(std::string_view szModuleName) noexcept; + [[nodiscard]] Address_t GetModuleBaseAddress(std::wstring_view szModuleName) noexcept; + + [[nodiscard]] Address_t GetExportAddress(Address_t uModuleBaseAddress, std::string_view szProcedureName) noexcept; + + [[nodiscard]] bool GetSectionInfo(Address_t uModuleAddress, std::string_view szSectionName, Address_t* pOutSectionAddress, std::size_t* pOutSectionSize) noexcept; + + [[nodiscard]] Address_t FindPattern(std::string_view szModuleName, std::string_view szPattern) noexcept; + [[nodiscard]] Address_t FindPattern(Address_t uRegionAddress, std::size_t uRegionSize, std::string_view szPattern) noexcept; + + [[nodiscard]] std::vector< std::optional< std::byte > > PatternToBytes(std::string_view szPattern) noexcept; + + template< typename tReturn, std::size_t uIndex, typename... tArgs > + constexpr inline tReturn CallVFunc(void* pInstance, tArgs... argList) noexcept + { + using fnVirtual_t = tReturn(__thiscall*)(void*, tArgs...) noexcept; + return (*static_cast(pInstance))[uIndex](pInstance, argList...); + } +} // namespace Core::Memory + +#define VFUNC( uIndex, fnVirtual, tArgs, tReturn, ... ) \ + auto fnVirtual noexcept \ + { \ + return Core::Memory::CallVFunc< tReturn __VA_OPT__(, ) __VA_ARGS__, uIndex > tArgs; \ + } + +#define OFFSET( iOffset, fnVariable, tReturn, ... ) \ + [[nodiscard]] std::add_lvalue_reference_t< tReturn __VA_OPT__(, ) __VA_ARGS__ > fnVariable( ) noexcept \ + { \ + return *reinterpret_cast< std::add_pointer_t< tReturn __VA_OPT__(, ) __VA_ARGS__ > >( reinterpret_cast< std::uintptr_t >( this ) + iOffset ); \ + } \ + [[nodiscard]] std::add_lvalue_reference_t< std::add_const_t< tReturn __VA_OPT__(, ) __VA_ARGS__ > > fnVariable( ) const noexcept \ + { \ + return *reinterpret_cast< std::add_pointer_t< std::add_const_t< tReturn __VA_OPT__(, ) __VA_ARGS__ > > >( reinterpret_cast< std::uintptr_t >( this ) + iOffset ); \ + } + +#endif // CS2_CHEAT_MEMORY_HPP \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/memory/cmodule.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/memory/cmodule.cpp new file mode 100644 index 0000000..4aa5b6a --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/memory/cmodule.cpp @@ -0,0 +1,131 @@ + +#include "../pointer/pointer.hpp" +#include "cmodule.hpp" +#include "../fnv1a.hpp" +#include +#include +CModule::CModule(const char* name) { + m_Name = name; + m_Hash = fnv1a::Hash(name); + m_Handle = nullptr; + + m_Begin = m_Size = 0; +} + +CModule::~CModule() { + if (!m_Handle) { + return; + } + +#ifndef _WIN32 + dlclose(m_Handle); +#endif +} + +bool CModule::Retrieve() { + if (m_Handle) { + return true; + } + + InitializeHandle(); + InitializeBounds(); + + return m_Handle != nullptr; +} + +uintptr_t CModule::GetInterface(const char* version) { + uintptr_t rv = 0; + if (m_Handle) { + CPointer pCreateInterface = GetProcAddress("CreateInterface"); + if (!pCreateInterface.IsValid()) { + return rv; + } + + // Used internally to register classes. + struct InterfaceReg { + std::add_pointer_t m_CreateFn; + const char* m_pName; + InterfaceReg* m_pNext; // For the global list. + }; + + InterfaceReg* s_pInterfaceRegs = +#ifdef _WIN32 + pCreateInterface.Absolute(3, 0).Dereference(1).Get() +#elif __linux__ + pCreateInterface.Absolute(1, 0).Absolute(19, 0).Dereference(1).Get() +#endif + ; + + uint32_t versionHash = fnv1a::Hash(version); + for (; s_pInterfaceRegs; s_pInterfaceRegs = s_pInterfaceRegs->m_pNext) { + if (fnv1a::Hash(s_pInterfaceRegs->m_pName) == versionHash) { + rv = s_pInterfaceRegs->m_CreateFn(); + break; + } + } + } + + return rv; +} + +uintptr_t CModule::GetProcAddress(const char* procName) { + uintptr_t rv = 0; + if (m_Handle) { + rv = reinterpret_cast(::GetProcAddress(static_cast(m_Handle), procName)); + } + + return rv; +} + +uintptr_t CModule::FindPattern(const std::span& pattern) const { + uintptr_t rv = 0; + if (m_Handle) { + uint8_t* bytes = reinterpret_cast(m_Begin); + + // Faster than pattern[] in debug builds because of _STL_VERIFY. + const int* patternData = pattern.data(); + const size_t patternSize = pattern.size(); + + for (size_t i = 0; i < m_Size - patternSize; ++i) { + bool found = true; + for (size_t j = 0; j < patternSize; ++j) { + if (bytes[i + j] != patternData[j] && patternData[j] != -1) { + found = false; + break; + } + } + + if (found) { + rv = reinterpret_cast(&bytes[i]); + break; + } + } + } + + return rv; +} + +void CModule::InitializeHandle() { +#ifdef _WIN32 + m_Handle = GetModuleHandle(GetName()); +#else + m_Handle = dlopen(GetName(), RTLD_LAZY | RTLD_NOLOAD); +#endif +} + +void CModule::InitializeBounds() { + if (!m_Handle) { + return; + } + + MODULEINFO mi; + BOOL status = GetModuleInformation(GetCurrentProcess(), static_cast(m_Handle), &mi, sizeof(mi)); + if (status != 0) { + SetBounds(reinterpret_cast(m_Handle), mi.SizeOfImage); + } +} + +void CModule::SetBounds(uintptr_t begin, uintptr_t size) { + m_Begin = begin; + m_Size = size; +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/memory/cmodule.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/memory/cmodule.hpp new file mode 100644 index 0000000..a194a25 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/memory/cmodule.hpp @@ -0,0 +1,38 @@ +#pragma once +#include +#include +#include +class CModule { +public: + CModule(const char* name); + ~CModule(); + + auto GetHash() const { return m_Hash; } + auto GetHandle() const { return m_Handle; } + auto GetName() const { return m_Name.c_str(); } + + // Returns false if module not loaded. + bool Retrieve(); + + uintptr_t GetInterface(const char* version); + uintptr_t GetProcAddress(const char* procName); + uintptr_t FindPattern(const std::span& pattern) const; + +private: + void InitializeHandle(); + void InitializeBounds(); + + void SetBounds(uintptr_t begin, uintptr_t size); + + // Module name. + std::string m_Name; + + // Module name fnv1a hash. + uint32_t m_Hash; + + // Module handle. + void* m_Handle; + + // Used for pattern scanning. + uintptr_t m_Begin, m_Size; +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/memory/memadd.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/memory/memadd.cpp new file mode 100644 index 0000000..5e95eea --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/memory/memadd.cpp @@ -0,0 +1,58 @@ + + +#include "../memory/memadd.h" +#include "../csig/sigscan.hpp" +#include "../fnv1a.hpp" +void CMemory::Initialize() { + + for (CSigScan* it : m_ScheduledScans) { + it->FindSignature(); + it->FreeData(); + } + + std::vector().swap(m_ScheduledScans); +} + +ModulePtr_t& CMemory::GetModuleInternal(const char* libName) { + auto hash = fnv1a::Hash(libName); + + auto it = m_CachedModules.find(hash); + if (it != m_CachedModules.end()) { + return it->second; + } + + auto module = std::make_unique(libName); + if (module->Retrieve()) { + return m_CachedModules.emplace(hash, std::move(module)).first->second; + } + + + static ModulePtr_t null{}; + return null; +} + +CPointer CMemory::GetInterfaceInternal(const char* libName, const char* version) { + CPointer rv = 0; + + auto& library = CMemory::GetModuleInternal(libName); + if (!library) { + return rv; + } + + rv = library->GetInterface(version); + + return rv; +} + +CPointer CMemory::GetProcAddressInternal(const char* libName, const char* procName) { + CPointer rv = 0; + + auto& library = CMemory::GetModuleInternal(libName); + if (!library) { + return rv; + } + + rv = library->GetProcAddress(procName); + + return rv; +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/memory/memadd.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/memory/memadd.h new file mode 100644 index 0000000..d145ec9 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/memory/memadd.h @@ -0,0 +1,37 @@ +#pragma once + +#include "../memory/cmodule.hpp" +#include "../pointer/pointer.hpp" +#include +#include +#include + +class CSigScan; + +using ModulePtr_t = std::unique_ptr; + +class CMemory { +public: + static CMemory& Get() { + static CMemory inst; + return inst; + } + + static auto& GetModule(const char* libName) { return Get().GetModuleInternal(libName); } + static auto GetInterface(const char* libName, const char* version) { return Get().GetInterfaceInternal(libName, version); } + static auto GetProcAddress(const char* libName, const char* procName) { return Get().GetProcAddressInternal(libName, procName); } + + // Used internally. + static auto ScheduleScan(CSigScan* sigScan) { Get().m_ScheduledScans.emplace_back(sigScan); } + + void Initialize(); + +private: + ModulePtr_t& GetModuleInternal(const char* libName); + + CPointer GetInterfaceInternal(const char* libName, const char* version); + CPointer GetProcAddressInternal(const char* libName, const char* procName); + + std::unordered_map m_CachedModules; + std::vector m_ScheduledScans; +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/menu.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/menu.cpp new file mode 100644 index 0000000..60778f5 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/menu.cpp @@ -0,0 +1,1460 @@ +#include "menu.h" + +// used: config variables +#include "variables.h" +// used: entity stuff for skinchanger etc +#include "../cstrike/sdk/entity.h" +// used: iinputsystem +#include "interfaces.h" +#include "../sdk/interfaces/iengineclient.h" +#include "../sdk/interfaces/inetworkclientservice.h" +#include "../sdk/interfaces/iglobalvars.h" +#include "../sdk/interfaces/ienginecvar.h" +// used: overlay's context +#include "../features/visuals/overlay.h" +// used: notifications +#include "../utilities/notify.h" +#include "gui.hpp" +#include +#include +#include "../cstrike/features/skins/ccsplayerinventory.hpp" +#include "../cstrike/features/skins/ccsinventorymanager.hpp" +#include "../cstrike/features/skins/skin_changer.hpp" +#include "imgui/imgui_edited.hpp" +#pragma region menu_array_entries +static void RenderInventoryWindow(); +int page = 0; +float tab_alpha = 0.f; +float tab_add = 0.f; +int active_tab = 0; +static constexpr const char* arrMiscDpiScale[] = { + "100%", + "125%", + "150%", + "175%", + "200%" +}; +int subtab; +static const std::pair arrColors[] = { + { "[accent] - main", Vars.colAccent0 }, + { "[accent] - dark (hover)", Vars.colAccent1 }, + { "[accent] - darker (active)", Vars.colAccent2 }, + { "[primitive] - text", Vars.colPrimtv0 }, + { "[primitive] - background", Vars.colPrimtv1 }, + { "[primitive] - disabled", Vars.colPrimtv2 }, + { "[primitive] - frame background", Vars.colPrimtv3 }, + { "[primitive] - border", Vars.colPrimtv4 }, +}; + +static constexpr const char* arrMenuAddition[] = { + "dim", + "particle", + "glow" +}; +static constexpr const char* arrEspFlags[] = { + "Armor", + "KIT" +}; +static constexpr const char* arrLegitCond[] = { + "In air", + "Flashed", + "Thru smoke", + "Delay on kill" +}; +static constexpr const char* arrMovementStrafer[] = { + "Adjust mouse", + "Directional" +}; + +enum TAB : int { + rage = 0, + legit = 1, + visuals = 2, + misc = 3, + skinchanger = 4, + cloud = 5, + scripting = 6, +}; + +enum SUBTAB : int { + first = 0, + seccond = 1, + third = 4, + fifth = 5, +}; + +#define IM_ARRAYSIZE(_ARR) ((int)(sizeof(_ARR) / sizeof(*_ARR))) // Size of a static C-style array. Don't use on pointers! + +// Function to extract the unique identifier from the itemBaseName +std::string ExtractIdentifier(const std::string& itemBaseName, const std::string& modelName) { + // Find the position of the modelName + size_t modelPos = itemBaseName.find(modelName); + + // If modelName is found, extract the substring after it + if (modelPos != std::string::npos) { + // Find the next "/" + size_t nextSlashPos = itemBaseName.find("/", modelPos + modelName.length()); + + // Extract the substring after modelName until the next "/" + return itemBaseName.substr(modelPos + modelName.length(), nextSlashPos - (modelPos + modelName.length())); + } + + // If modelName is not found, return an empty string + return ""; +} +ImTextureID CreateTextureFromMemory(void* imageData, int width, int height) { + ID3D11Texture2D* pTexture = nullptr; + + D3D11_TEXTURE2D_DESC desc = {}; + desc.Width = width; + desc.Height = height; + desc.MipLevels = 1; + desc.ArraySize = 1; + desc.Format = DXGI_FORMAT_R8G8B8A8_UNORM; + desc.SampleDesc.Count = 1; + desc.Usage = D3D11_USAGE_DEFAULT; + desc.BindFlags = D3D11_BIND_SHADER_RESOURCE; + + D3D11_SUBRESOURCE_DATA initData = {}; + initData.pSysMem = imageData; + initData.SysMemPitch = width * 4; // Assuming 4 channels (R8G8B8A8) + + if (FAILED(I::Device->CreateTexture2D(&desc, &initData, &pTexture))) { + // Handle creation failure + return 0; + } + + return (ImTextureID)pTexture; +} +enum wep_type : int { + PISTOL = 1, + HEAVY_PISTOL = 2, + ASSULT = 3, + SNIPERS = 4, + SCOUT = 5, + AWP =6, +}; +void MENU::RenderMainWindow() +{ + static constexpr float windowWidth = 540.f; + + struct DumpedSkin_t { + std::string m_name = ""; + int m_ID = 0; + int m_rarity = 0; + }; + struct DumpedItem_t { + std::string m_name = ""; + uint16_t m_defIdx = 0; + void* m_image = nullptr; + ImTextureID m_textureID = nullptr; + int m_rarity = 0; + bool m_unusualItem = false; + std::vector m_dumpedSkins{}; + DumpedSkin_t* pSelectedSkin = nullptr; + }; + static std::vector vecDumpedItems; + static DumpedItem_t* pSelectedItem = nullptr; + + CEconItemSchema* pItemSchema = + I::Client->GetEconItemSystem()->GetEconItemSchema(); + + + // Render the ImGui draw data using the DirectX 11 blur shader + //blurShader.Render(drawData); + ImGuiIO& io = ImGui::GetIO(); + ImGuiStyle& style = ImGui::GetStyle(); + + // @test: we should always update the animation? + animMenuDimBackground.Update(io.DeltaTime, style.AnimationSpeed); + if (!bMainWindowOpened) + return; + + const ImVec2 vecScreenSize = io.DisplaySize; + const float flBackgroundAlpha = animMenuDimBackground.GetValue(1.f); + flDpiScale = 1.50f; + + // @note: we call this every frame because we utilizing rainbow color as well! however it's not really performance friendly? + UpdateStyle(&style); + + if (flBackgroundAlpha > 0.f) + { + if (C_GET(unsigned int, Vars.bMenuAdditional) & MENU_ADDITION_DIM_BACKGROUND) + D::AddDrawListRect(ImGui::GetBackgroundDrawList(), ImVec2(0, 0), vecScreenSize, C_GET(ColorPickerVar_t, Vars.colPrimtv1).colValue.Set(125 * flBackgroundAlpha), DRAW_RECT_FILLED); + + if (C_GET(unsigned int, Vars.bMenuAdditional) & MENU_ADDITION_BACKGROUND_PARTICLE) + menuParticle.Render(ImGui::GetBackgroundDrawList(), vecScreenSize, flBackgroundAlpha); + } + + ImGui::PushStyleVar(ImGuiStyleVar_Alpha, flBackgroundAlpha); + + + style.WindowPadding = ImVec2(0, 0); + style.ItemSpacing = ImVec2(10 * dpi, 10 * dpi); + style.WindowBorderSize = 0; + style.ScrollbarSize = 3.f * dpi; + Color_t color = Color_t(235, 94, 52, 255 ); + c::accent = color.GetVec4(1.f) ; + + ImGui::SetNextWindowSize(c::background::size* dpi); + + + // render main window + if (ImGui::Begin(CS_XOR("handle0000"), &bMainWindowOpened, ImGuiWindowFlags_NoDecoration | ImGuiWindowFlags_NoBringToFrontOnFocus)) { + + + + const ImVec2& pos = ImGui::GetWindowPos(); + const ImVec2& region = ImGui::GetContentRegionMax(); + const ImVec2& spacing = style.ItemSpacing; + + ImGui::GetBackgroundDrawList()->AddRectFilled(pos, pos + c::background::size * dpi, ImGui::GetColorU32(c::background::filling), c::background::rounding); + ImGui::GetBackgroundDrawList()->AddRectFilled(pos, pos + ImVec2(200.f * dpi, c::background::size.y * dpi), ImGui::GetColorU32(c::tab::border), c::background::rounding, ImDrawFlags_RoundCornersLeft); + ImGui::GetBackgroundDrawList()->AddLine(pos + ImVec2(200.f * dpi, 0.f), pos + ImVec2(200.f, c::background::size.y * dpi), ImGui::GetColorU32(c::background::stroke), 1.f); + + ImGui::GetBackgroundDrawList()->AddRect(pos, pos + c::background::size * dpi, ImGui::GetColorU32(c::background::stroke), c::background::rounding); + + ImGui::SetCursorPos({ 5, 10 }); + ImGui::BeginGroup(); + { + std::vector> tab_columns = { + { "c", "b", "f", "o", "e" }, + { "Ragebot", "Antiaim", "Visuals", "Skins", "Misc" }, + { "Aims agressively at targets...", "Accuracy assistance...", "Visualisation", "Items customization...", "Save/Load configs, engine..." }, + { "Have you switched to the Aimbot tab? You're just crazy!", "Have you switched to the Visuals tab, do you want to get banned?", "You switched to the skins tab, why do you need self-deception??", "You switched over.. And yes, to hell with it, come up with a script yourself.", "You switched over.. And yes, to hell with it, come up with a script yourself." } + }; + + const int num_tabs = tab_columns[0].size(); + + for (int i = 0; i < num_tabs; ++i) + if (edited::Tab(page == i, tab_columns[0][i].c_str(), tab_columns[1][i].c_str(), tab_columns[2][i].c_str(), ImVec2(180, 50))) { + page = i; + + //notificationSystem.AddNotification(tab_columns[3][i], 1000); + } + } + ImGui::EndGroup(); + + tab_alpha = ImLerp(tab_alpha, (page == active_tab) ? 1.f : 0.f, 15.f * ImGui::GetIO().DeltaTime); + if (tab_alpha < 0.01f && tab_add < 0.01f) active_tab = page; + + ImGui::SetCursorPos(ImVec2(200, 100 - (tab_alpha * 100))); + auto current_weapon = C_GET(int, Vars.rage_weapon_selection); + + ImGui::PushStyleVar(ImGuiStyleVar_Alpha, tab_alpha * style.Alpha); + { + if (active_tab == 0) + { + edited::BeginChild(CS_XOR("##Container0"), ImVec2((c::background::size.x - 200) / 2, c::background::size.y), NULL); + { + ImGui::TextColored(ImColor(ImGui::GetColorU32(c::elements::text)), CS_XOR("Weapons")); + const char* weapons[7]{ CS_XOR("Default"), CS_XOR("Pistols"), CS_XOR("Heavy Pistols"),CS_XOR("Assult Rifles"), CS_XOR("Auto"),CS_XOR("Scout"), CS_XOR("Awp") }; + edited::Combo(CS_XOR("Weapon"), CS_XOR("Select weapon for current configuration"), &C_GET(int, Vars.rage_weapon_selection), weapons, IM_ARRAYSIZE(weapons), 6); + // run rage cfg depending on weapon + { + ImGui::TextColored(ImColor(ImGui::GetColorU32(c::elements::text)), "General"); + edited::Checkbox("Enabled", "Activate ragebot", &C_GET(bool, Vars.rage_enable)); + + const char* targets_select[3]{ CS_XOR("Distance"), CS_XOR("Damage"),CS_XOR("Crosshair") }; + edited::Combo(CS_XOR("Target selection"), CS_XOR("Select target based on conditions"), &C_GET_ARRAY(int, 7, Vars.rage_target_select, current_weapon), targets_select, IM_ARRAYSIZE(targets_select), 6); + + if (current_weapon > 3) + edited::Checkbox("Auto Scope", "Automatically scope if a we found a target hitta...", &C_GET_ARRAY(bool, 7, Vars.rage_auto_scope, current_weapon)); + + edited::Checkbox("Rapid fire", "Allows you to fire multiple bullets ignoring fire rate", &C_GET_ARRAY(bool, 7, Vars.rapid_fire, current_weapon)); + + edited::Checkbox("Auto stop", "Stops local player in order to maintain best accuracy", &C_GET_ARRAY(bool, 7, Vars.rage_auto_stop, current_weapon)); + + ImGui::TextColored(ImColor(ImGui::GetColorU32(c::elements::text)), "Accuracy"); + + edited::Checkbox("Hitchance", "Allows you to hit players with more accuracy", &C_GET_ARRAY(bool, 7, Vars.rage_hitchance, current_weapon)); + if (C_GET_ARRAY(bool, 7, Vars.rage_hitchance, current_weapon)) + ImGui::SliderInt(CS_XOR("chance"), &C_GET_ARRAY(int, 7, Vars.rage_minimum_hitchance, current_weapon), 0, 100); + + edited::Checkbox("Penetration", "Allows you to hit players thru objects", &C_GET_ARRAY(bool, 7, Vars.rage_penetration, current_weapon)); + if (C_GET_ARRAY(bool, 7, Vars.rage_penetration, current_weapon)) + ImGui::SliderInt(CS_XOR("Damage"), &C_GET_ARRAY(int, 7, Vars.rage_minimum_damage, current_weapon), 0, 100); + } + } + edited::EndChild(); + ImGui::SameLine(0, 0); + + edited::BeginChild("##Container1", ImVec2((c::background::size.x - 200 * dpi) / 2, c::background::size.y), NULL); + { + ImGui::TextColored(ImColor(ImGui::GetColorU32(c::elements::text)), "Hitbox System"); + + /* render model preview*/ + ImGui::SetCursorPos({ 55, 75 }); + ImGui::Image((void*)I::Maintexture, ImVec2(278, 380)); + switch (current_weapon) { + case PISTOL: + edited::pointbox(CS_XOR("##head"), &C_GET_ARRAY(bool, 7, Vars.hitbox_head, 1), 0, 115.f, 105.f); + edited::pointbox(CS_XOR("##chest"), &C_GET_ARRAY(bool, 7, Vars.hitbox_uppeer_chest, 1), 0, 130.f, 160.f); + edited::pointbox(CS_XOR("##stomach"), &C_GET_ARRAY(bool, 7, Vars.hitbox_stomach, 1), 0, 130.f, 230.f); + edited::pointbox(CS_XOR("##leg_l"), &C_GET_ARRAY(bool, 7, Vars.hitbox_legs, 1), 0, 110.f, 320); + edited::pointbox(CS_XOR("##leg_r"), &C_GET_ARRAY(bool, 7, Vars.hitbox_legs, 1), 0, 170.f, 320); + edited::pointbox(CS_XOR("##feet_l"), &C_GET_ARRAY(bool, 7, Vars.hitbox_feet, 1), 0, 120.f, 400); + edited::pointbox(CS_XOR("##feet_r"), &C_GET_ARRAY(bool, 7, Vars.hitbox_feet, 1), 0, 175.f, 400); + break; + case HEAVY_PISTOL: + edited::pointbox(CS_XOR("##head"), &C_GET_ARRAY(bool, 7, Vars.hitbox_head, 2), 0, 115.f, 105.f); + edited::pointbox(CS_XOR("##chest"), &C_GET_ARRAY(bool, 7, Vars.hitbox_uppeer_chest, 2), 0, 130.f, 160.f); + edited::pointbox(CS_XOR("##stomach"), &C_GET_ARRAY(bool, 7, Vars.hitbox_stomach, 2), 0, 130.f, 230.f); + edited::pointbox(CS_XOR("##leg_l"), &C_GET_ARRAY(bool, 7, Vars.hitbox_legs, 2), 0, 110.f, 320); + edited::pointbox(CS_XOR("##leg_r"), &C_GET_ARRAY(bool, 7, Vars.hitbox_legs, 2), 0, 170.f, 320); + edited::pointbox(CS_XOR("##feet_l"), &C_GET_ARRAY(bool, 7, Vars.hitbox_feet, 2), 0, 120.f, 400); + edited::pointbox(CS_XOR("##feet_r"), &C_GET_ARRAY(bool, 7, Vars.hitbox_feet, 2), 0, 175.f, 400); + break; + case ASSULT: + edited::pointbox(CS_XOR("##head"), &C_GET_ARRAY(bool, 7, Vars.hitbox_head, 3), 0, 115.f, 105.f); + edited::pointbox(CS_XOR("##chest"), &C_GET_ARRAY(bool, 7, Vars.hitbox_uppeer_chest, 3), 0, 130.f, 160.f); + edited::pointbox(CS_XOR("##stomach"), &C_GET_ARRAY(bool, 7, Vars.hitbox_stomach, 3), 0, 130.f, 230.f); + edited::pointbox(CS_XOR("##leg_l"), &C_GET_ARRAY(bool, 7, Vars.hitbox_legs, 3), 0, 110.f, 320); + edited::pointbox(CS_XOR("##leg_r"), &C_GET_ARRAY(bool, 7, Vars.hitbox_legs, 3), 0, 170.f, 320); + edited::pointbox(CS_XOR("##feet_l"), &C_GET_ARRAY(bool, 7, Vars.hitbox_feet, 3), 0, 120.f, 400); + edited::pointbox(CS_XOR("##feet_r"), &C_GET_ARRAY(bool, 7, Vars.hitbox_feet, 3), 0, 175.f, 400); + break; + case SNIPERS: + edited::pointbox(CS_XOR("##head"), &C_GET_ARRAY(bool, 7, Vars.hitbox_head, 4), 0, 115.f, 105.f); + edited::pointbox(CS_XOR("##chest"), &C_GET_ARRAY(bool, 7, Vars.hitbox_uppeer_chest, 4), 0, 130.f, 160.f); + edited::pointbox(CS_XOR("##stomach"), &C_GET_ARRAY(bool, 7, Vars.hitbox_stomach, 4), 0, 130.f, 230.f); + edited::pointbox(CS_XOR("##leg_l"), &C_GET_ARRAY(bool, 7, Vars.hitbox_legs, 4), 0, 110.f, 320); + edited::pointbox(CS_XOR("##leg_r"), &C_GET_ARRAY(bool, 7, Vars.hitbox_legs, 4), 0, 170.f, 320); + edited::pointbox(CS_XOR("##feet_l"), &C_GET_ARRAY(bool, 7, Vars.hitbox_feet, 4), 0, 120.f, 400); + edited::pointbox(CS_XOR("##feet_r"), &C_GET_ARRAY(bool, 7, Vars.hitbox_feet, 4), 0, 175.f, 400); + break; + case SCOUT: + edited::pointbox(CS_XOR("##head"), &C_GET_ARRAY(bool, 7, Vars.hitbox_head, 5), 0, 115.f, 105.f); + edited::pointbox(CS_XOR("##chest"), &C_GET_ARRAY(bool, 7, Vars.hitbox_uppeer_chest, 5), 0, 130.f, 160.f); + edited::pointbox(CS_XOR("##stomach"), &C_GET_ARRAY(bool, 7, Vars.hitbox_stomach, 5), 0, 130.f, 230.f); + edited::pointbox(CS_XOR("##leg_l"), &C_GET_ARRAY(bool, 7, Vars.hitbox_legs, 5), 0, 110.f, 320); + edited::pointbox(CS_XOR("##leg_r"), &C_GET_ARRAY(bool, 7, Vars.hitbox_legs, 5), 0, 170.f, 320); + edited::pointbox(CS_XOR("##feet_l"), &C_GET_ARRAY(bool, 7, Vars.hitbox_feet, 5), 0, 120.f, 400); + edited::pointbox(CS_XOR("##feet_r"), &C_GET_ARRAY(bool, 7, Vars.hitbox_feet, 5), 0, 175.f, 400); + break; + case AWP: + edited::pointbox(CS_XOR("##head"), &C_GET_ARRAY(bool, 7, Vars.hitbox_head, 6), 0, 115.f, 105.f); + edited::pointbox(CS_XOR("##chest"), &C_GET_ARRAY(bool, 7, Vars.hitbox_uppeer_chest, 6), 0, 130.f, 160.f); + edited::pointbox(CS_XOR("##stomach"), &C_GET_ARRAY(bool, 7, Vars.hitbox_stomach, 6), 0, 130.f, 230.f); + edited::pointbox(CS_XOR("##leg_l"), &C_GET_ARRAY(bool, 7, Vars.hitbox_legs, 6), 0, 110.f, 320); + edited::pointbox(CS_XOR("##leg_r"), &C_GET_ARRAY(bool, 7, Vars.hitbox_legs, 6), 0, 170.f, 320); + edited::pointbox(CS_XOR("##feet_l"), &C_GET_ARRAY(bool, 7, Vars.hitbox_feet, 6), 0, 120.f, 400); + edited::pointbox(CS_XOR("##feet_r"), &C_GET_ARRAY(bool, 7, Vars.hitbox_feet, 6), 0, 175.f, 400); + break; + } + + } + edited::EndChild(); + + } + else if (active_tab == 1) + { + edited::BeginChild("##Container0", ImVec2((c::background::size.x - 200) / 2, c::background::size.y), NULL); + { + ImGui::TextColored(ImColor(ImGui::GetColorU32(c::elements::text)), "Antiaim"); + edited::Checkbox(CS_XOR("Enable"), CS_XOR("Enables Antiaim"), &C_GET(bool, Vars.bAntiAim)); + const char* PitchTypes[4]{ CS_XOR("Off"), CS_XOR("Down"),CS_XOR("Up"), CS_XOR("Zero")}; + edited::Combo(CS_XOR("Pitch"), CS_XOR("Pitch Type"), &C_GET(int, Vars.iPitchType), PitchTypes, IM_ARRAYSIZE(PitchTypes), 4); + + const char* BaseYawTypes[3]{ CS_XOR("Off"), CS_XOR("Backwards"),CS_XOR("Forwards") }; + edited::Combo(CS_XOR("Base Yaw"), CS_XOR("Backwards / Forwards"), &C_GET(int, Vars.iBaseYawType), BaseYawTypes, IM_ARRAYSIZE(BaseYawTypes), 3); + } + edited::EndChild(); + } + else if (active_tab == 2) { + edited::BeginChild("##Container0", ImVec2((c::background::size.x - 200) / 2, c::background::size.y), NULL); + { + + ImGui::TextColored(ImColor(ImGui::GetColorU32(c::elements::text)), "Players"); + + edited::Checkbox(CS_XOR("Enable"), CS_XOR(""), &C_GET(bool, Vars.bVisualOverlay)); + edited::Checkbox(CS_XOR("Bounding box"), CS_XOR("Shows player bounding box"), &C_GET(FrameOverlayVar_t, Vars.overlayBox).bEnable); + edited::Checkbox(CS_XOR("Name"), CS_XOR("Shows player name"), &C_GET(TextOverlayVar_t, Vars.overlayName).bEnable); + edited::Checkbox(CS_XOR("Health bar"), CS_XOR("Shows player health"), &C_GET(BarOverlayVar_t, Vars.overlayHealthBar).bEnable); + edited::Checkbox(CS_XOR("Ammo bar"), CS_XOR("Shows player weapon ammo"), &C_GET(BarOverlayVar_t, Vars.AmmoBar).bEnable); + edited::Checkbox(CS_XOR("Weapon"), CS_XOR("Shows player weapon name"), &C_GET(TextOverlayVar_t, Vars.Weaponesp).bEnable); + edited::Checkbox(CS_XOR("Skeleton"), CS_XOR("Shows player bones as skeleton"), &C_GET(bool, Vars.bSkeleton)); + + if (C_GET(bool, Vars.bSkeleton)) + edited::Color(CS_XOR("##skeletoncolor"), CS_XOR("Change menu accent color"), &C_GET(ColorPickerVar_t, Vars.colSkeleton).colValue, ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoLabel | ImGuiColorEditFlags_AlphaBar | ImGuiColorEditFlags_AlphaPreviewHalf); + + edited::MultiCombo(CS_XOR("Flags"), &C_GET(unsigned int, Vars.pEspFlags), arrEspFlags, CS_ARRAYSIZE(arrEspFlags)); + + ImGui::TextColored(ImColor(ImGui::GetColorU32(c::elements::text)), "Chams"); + + edited::Checkbox(CS_XOR("Chams"), CS_XOR("Shows player chams"), &C_GET(bool, Vars.bVisualChams)); + if (C_GET(bool, Vars.bVisualChams)) + edited::Color(CS_XOR("##chamscolor"), CS_XOR("Change chams color"), &C_GET(ColorPickerVar_t, Vars.colVisualChams).colValue, ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoLabel | ImGuiColorEditFlags_AlphaBar | ImGuiColorEditFlags_AlphaPreviewHalf); + + edited::Checkbox(CS_XOR("Invisible"), CS_XOR("Shows player xqz chams"), &C_GET(bool, Vars.bVisualChamsIgnoreZ)); + if (C_GET(bool, Vars.bVisualChamsIgnoreZ)) + edited::Color(CS_XOR("##chamscolorxqz"), CS_XOR("Change xqz chams color"), &C_GET(ColorPickerVar_t, Vars.colVisualChamsIgnoreZ).colValue, ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoLabel | ImGuiColorEditFlags_AlphaBar | ImGuiColorEditFlags_AlphaPreviewHalf); + + const char* chams[3]{ CS_XOR("Flat"), CS_XOR("Default"),CS_XOR("Illumin") }; + edited::Combo(CS_XOR("Models"), CS_XOR(""), &C_GET(int, Vars.nVisualChamMaterial), chams, IM_ARRAYSIZE(chams), 3); + + } + edited::EndChild(); + + ImGui::SameLine(0, 0); + + edited::BeginChild("##Container1", ImVec2((c::background::size.x - 200 * dpi) / 2, c::background::size.y), NULL); + { + ImGui::TextColored(ImColor(ImGui::GetColorU32(c::elements::text)), "Preview"); + + /* render model preview*/ + ImGui::SetCursorPos({ 65, 75 }); + ImGui::Image((void*)I::Maintexture, ImVec2(278, 380)); + + using namespace F::VISUALS::OVERLAY; + + ImGuiStyle& style = ImGui::GetStyle(); + // @note: call this function inside rendermainwindow, else expect a crash... + const ImVec2 vecMenuPos = ImGui::GetWindowPos(); + const ImVec2 vecMenuSize = ImGui::GetWindowSize(); + + const ImVec2 vecOverlayPadding = ImVec2(65 * dpi, 58 * dpi); // Adjusted the Y position + + const ImVec2 vecWindowPos = ImGui::GetWindowPos(); + const ImVec2 vecWindowSize = ImGui::GetWindowSize(); + + ImDrawList* pDrawList = ImGui::GetWindowDrawList(); + Context_t context; + + ImVec4 vecBox = { + vecWindowPos.x + vecOverlayPadding.x, + vecWindowPos.y + vecOverlayPadding.y, + vecWindowPos.x + vecWindowSize.x - vecOverlayPadding.x, + vecWindowPos.y + vecWindowSize.y - vecOverlayPadding.y - 10.f + }; + + if (const auto& boxOverlayConfig = C_GET(FrameOverlayVar_t, Vars.overlayBox); boxOverlayConfig.bEnable) + { + const bool bHovered = context.AddBoxComponent(pDrawList, vecBox, 1, boxOverlayConfig.flThickness, boxOverlayConfig.flRounding, boxOverlayConfig.colPrimary, boxOverlayConfig.colOutline); + + if (bHovered && ImGui::IsMouseClicked(ImGuiMouseButton_Right)) + ImGui::OpenPopup(CS_XOR("context##box.component")); + + if (ImGui::BeginPopup(CS_XOR("context##box.component"), ImGuiWindowFlags_NoResize)) + { + ImVec2 size = ImVec2(135, 275); + ImGui::SetWindowSize(size); + + edited::Color(CS_XOR("Primary##box.component"), "" , & C_GET(FrameOverlayVar_t, Vars.overlayBox).colPrimary, ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_AlphaPreviewHalf | ImGuiColorEditFlags_AlphaBar); + edited::Color(CS_XOR("Outline##box.component"), "", & C_GET(FrameOverlayVar_t, Vars.overlayBox).colOutline, ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_AlphaPreviewHalf | ImGuiColorEditFlags_AlphaBar); + ImGui::SliderFloat(CS_XOR("Thickness##box.component"), &C_GET(FrameOverlayVar_t, Vars.overlayBox).flThickness, 1.f, 5.f, CS_XOR("%.1f"), ImGuiSliderFlags_AlwaysClamp); + ImGui::SliderFloat(CS_XOR("Rounding##box.component"), &C_GET(FrameOverlayVar_t, Vars.overlayBox).flRounding, 1.f, 5.f, CS_XOR("%.1f"), ImGuiSliderFlags_AlwaysClamp); + ImGui::EndPopup(); + } + } + + //name + if (const auto& nameOverlayConfig = C_GET(TextOverlayVar_t, Vars.overlayName); nameOverlayConfig.bEnable) + context.AddComponent(new CTextComponent(true, false, SIDE_TOP, DIR_TOP, FONT::pVisual, CS_XOR("Name"), Vars.overlayName)); + + // health + if (const auto& healthOverlayConfig = C_GET(BarOverlayVar_t, Vars.overlayHealthBar); healthOverlayConfig.bEnable) + { + const float flFactor = M_SIN(ImGui::GetTime() * 5.f) * 0.55f + 0.45f; + context.AddComponent(new CBarComponent(true, SIDE_LEFT, vecBox, 100.f, flFactor, Vars.overlayHealthBar)); + } + + // weapon + if (const auto& weaponOverlayConfig = C_GET(TextOverlayVar_t, Vars.Weaponesp); weaponOverlayConfig.bEnable) + context.AddComponent(new CTextComponent(true, true, SIDE_BOTTOM, DIR_BOTTOM, FONT::pVisual, CS_XOR("Weapon"), Vars.Weaponesp)); + + // armour + if (const auto& armorOverlayConfig = C_GET(BarOverlayVar_t, Vars.AmmoBar); armorOverlayConfig.bEnable) + { + const float flArmorFactor = M_SIN(ImGui::GetTime() * 5.f) * 0.55f + 0.45f; + context.AddComponent(new CBarComponent(true, SIDE_BOTTOM, vecBox, 32.f, flArmorFactor, Vars.AmmoBar)); + } + + // flags + { + if (C_GET(unsigned int, Vars.pEspFlags) & FLAGS_ARMOR) { + + if (const auto& hkcfg = C_GET(TextOverlayVar_t, Vars.HKFlag); hkcfg.bEnable) + context.AddComponent(new CTextComponent(true, false, SIDE_RIGHT, DIR_RIGHT, FONT::pEspWepName, CS_XOR("HK"), Vars.HKFlag)); + } + + if (C_GET(unsigned int, Vars.pEspFlags) & FLAGS_DEFUSER) { + + if (const auto& kitcfg = C_GET(TextOverlayVar_t, Vars.KitFlag); kitcfg.bEnable) + context.AddComponent(new CTextComponent(true, false, SIDE_RIGHT, DIR_BOTTOM, FONT::pEspWepName, CS_XOR("KIT"), Vars.KitFlag)); + } + } + // only render context preview if overlay is enabled + context.Render(pDrawList, vecBox); + + } + edited::EndChild(); + } + else if (active_tab == 4) { + edited::BeginChild("##Container0", ImVec2((c::background::size.x - 200) / 2, c::background::size.y), NULL); + { + + ImGui::TextColored(ImColor(ImGui::GetColorU32(c::elements::text)), "Players"); + + edited::Checkbox(CS_XOR("Anti untrusted"), CS_XOR(""), &C_GET(bool, Vars.bAntiUntrusted)); + edited::Checkbox(CS_XOR("Thirdperson"), CS_XOR("Puts you in thirdperson"), &C_GET(bool, Vars.bThirdperson)); + if (C_GET(bool, Vars.bThirdperson)) + { + edited::SliderFloat(CS_XOR("Thirdperson distance"), CS_XOR("Thirdperson cam distance"), &C_GET(float, Vars.flThirdperson), 0.f, 150.f); + } + + edited::Checkbox(CS_XOR("FOV Changer"), CS_XOR("Makes your FOV bigger"), &C_GET(bool, Vars.bFOV)); + if (C_GET(bool, Vars.bFOV)) + { + edited::SliderFloat(CS_XOR("FOV Amount"), CS_XOR("How much you change your FOV"), &C_GET(float, Vars.fFOVAmount), 30.f, 150.f); + } + + edited::Checkbox(CS_XOR("View FOV Changer"), CS_XOR("Makes Arms Far"), &C_GET(bool, Vars.bSetViewModelFOV)); + if (C_GET(bool, Vars.bSetViewModelFOV)) + { + edited::SliderFloat(CS_XOR("View FOV Amount"), CS_XOR("Amount"), &C_GET(float, Vars.flSetViewModelFOV), 40.f, 150.f); + } + + edited::Checkbox(CS_XOR("Bunny hop"), CS_XOR("Automatic jumps for you"), &C_GET(bool, Vars.bAutoBHop)); + edited::Checkbox(CS_XOR("Auto strafer"), CS_XOR("Make movement easier"), &C_GET(bool, Vars.bAutostrafe)); + edited::Checkbox(CS_XOR("Edge bug"), CS_XOR("Edge bug"), &C_GET(bool, Vars.edge_bug)); + edited::MultiCombo(CS_XOR("Strafe modes"), &C_GET(unsigned int, Vars.bAutostrafeMode), arrMovementStrafer, CS_ARRAYSIZE(arrMovementStrafer)); + edited::Color(CS_XOR("##menuaccent"), CS_XOR("Change menu accent color"), &color, ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoLabel | ImGuiColorEditFlags_AlphaBar | ImGuiColorEditFlags_AlphaPreviewHalf); + + } + edited::EndChild(); + ImGui::SameLine(0, 0); + ImGui::SetCursorPos(ImVec2(527, 60)); + edited::BeginChild("##Container1", ImVec2((c::background::size.x - 200 * dpi) / 2, c::background::size.y), NULL); + { + ImGui::Columns(2, CS_XOR("#CONFIG"), false); + { + ImGui::PushItemWidth(-1); + + // check selected configuration for magic value + if (nSelectedConfig == ~1U) + { + // set default configuration as selected on first use + for (std::size_t i = 0U; i < C::vecFileNames.size(); i++) + { + if (CRT::StringCompare(C::vecFileNames[i], CS_XOR(CS_CONFIGURATION_DEFAULT_FILE_NAME CS_CONFIGURATION_FILE_EXTENSION)) == 0) + nSelectedConfig = i; + } + } + + if (ImGui::BeginListBox(CS_XOR("##config.list"), C::vecFileNames.size(), 5)) + { + for (std::size_t i = 0U; i < C::vecFileNames.size(); i++) + { + // Convert wide string to narrow string + const std::wstring& wideName = C::vecFileNames[i]; + const int bufferSize = 512; // Adjust the buffer size as needed + char narrowName[bufferSize]; + std::wcstombs(narrowName, wideName.c_str(), bufferSize); + + if (ImGui::Selectable(narrowName, (nSelectedConfig == i))) + nSelectedConfig = i; + } + + ImGui::EndListBox(); + } + + ImGui::PopItemWidth(); + } + ImGui::NextColumn(); + { + ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(ImGui::GetStyle().FramePadding.x, 0)); + ImGui::PushItemWidth(-1); + if (ImGui::InputTextWithHint(CS_XOR("##config.file"), "create new...", szConfigFile, sizeof(szConfigFile), ImGuiInputTextFlags_EnterReturnsTrue)) + { + // check if the filename isn't empty + if (const std::size_t nConfigFileLength = CRT::StringLength(szConfigFile); nConfigFileLength > 0U) + { + CRT::WString_t wszConfigFile(szConfigFile); + + if (C::CreateFile(wszConfigFile.Data())) + // set created config as selected @todo: dependent on current 'C::CreateFile' behaviour, generally it must be replaced by search + nSelectedConfig = C::vecFileNames.size() - 1U; + + // clear string + CRT::MemorySet(szConfigFile, 0U, sizeof(szConfigFile)); + } + } + if (ImGui::IsItemHovered()) + ImGui::SetTooltip(CS_XOR("press enter to create new configuration")); + + if (ImGui::Button(CS_XOR("save"), ImVec2(-1, 15 * MENU::flDpiScale))) + { + C::SaveFile(nSelectedConfig); + NOTIFY::Push({ N_TYPE_SUCCESS, CS_XOR("config saved") }); + } + if (ImGui::Button(CS_XOR("load"), ImVec2(-1, 15 * MENU::flDpiScale))) + { + C::LoadFile(nSelectedConfig); + NOTIFY::Push({ N_TYPE_SUCCESS, CS_XOR("config loaded") }); + } + if (ImGui::Button(CS_XOR("remove"), ImVec2(-1, 15 * MENU::flDpiScale))) + { + ImGui::OpenPopup(CS_XOR("confirmation##config.remove")); + } + if (ImGui::Button(CS_XOR("refresh"), ImVec2(-1, 15 * MENU::flDpiScale))) + { + C::Refresh(); + NOTIFY::Push({ N_TYPE_INFO, CS_XOR("configs refreshed") }); + } + ImGui::PopItemWidth(); + ImGui::PopStyleVar(); + } + ImGui::Columns(1); + + if (ImGui::BeginPopupModal(CS_XOR("confirmation##config.remove"), nullptr, ImGuiWindowFlags_NoResize | ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoMove)) + { + CRT::String_t szCurrentConfig(C::vecFileNames[nSelectedConfig]); + + ImGui::Text(CS_XOR("are you sure you want to remove \"%s\" configuration?"), szCurrentConfig); + ImGui::Spacing(); + + if (ImGui::Button(CS_XOR("no"), ImVec2(ImGui::GetContentRegionAvail().x / 2.f, 0))) + { + ImGui::CloseCurrentPopup(); + NOTIFY::Push({ N_TYPE_ERROR, CS_XOR("canceled") }); + } + ImGui::SameLine(); + + if (ImGui::Button(CS_XOR("yes"), ImVec2(ImGui::GetContentRegionAvail().x, 0))) + { + C::RemoveFile(nSelectedConfig); + + // reset selected configuration index + nSelectedConfig = ~0U; + + NOTIFY::Push({ N_TYPE_WARNING, CS_XOR("config removed") }); + + ImGui::CloseCurrentPopup(); + } + + ImGui::EndPopup(); + } + } + edited::EndChild(); + } + else if (active_tab == 3) { + + edited::BeginChild("##Container0", ImVec2((600), c::background::size.y), NULL); + { + if (edited::Button(CS_XOR("Full update"), ImVec2(120, 50), 0)) { + Vars.full_update = true; + + } + + if (vecDumpedItems.empty() && edited::Button(CS_XOR("Dump items"), ImVec2(120, 50), 0)) { + + + const CUtlMap& vecItems = + pItemSchema->GetSortedItemDefinitionMap(); + CUtlMap& vecPaintKits = + pItemSchema->GetPaintKits(); + const CUtlMap& vecAlternateIcons = + pItemSchema->GetAlternateIconsMap(); + + for (const auto& it : vecItems) { + CEconItemDefinition* pItem = it.m_value; + if (!pItem) continue; + + const bool isWeapon = pItem->IsWeapon(); + const std::string gloveType = CS_XOR("#Type_Hands"); + const std::string knifeType = CS_XOR("#CSGO_Type_Knife"); + + bool isGlove = (pItem->m_pszItemBaseName == gloveType); + bool isKnife = (pItem->m_pszItemBaseName == knifeType); + + const char* itemBaseName = pItem->GetSimpleWeaponName(); + + + if (!itemBaseName || itemBaseName[0] == '\0') continue; + + const uint16_t defIdx = pItem->m_nDefIndex; + + DumpedItem_t dumpedItem; + dumpedItem.m_name = I::Localize->FindSafe(itemBaseName); + dumpedItem.m_image = pItem->m_pKVItem; + dumpedItem.m_defIdx = defIdx; + dumpedItem.m_rarity = pItem->m_nItemRarity; + if (isKnife | isGlove) { + dumpedItem.m_unusualItem = true; + } + + + // Load the image and set the texture ID. + if (dumpedItem.m_image) { + dumpedItem.m_textureID = CreateTextureFromMemory(dumpedItem.m_image, 120, 280); + } + + // We filter skins by guns. + for (const auto& it : vecPaintKits) { + CPaintKit* pPaintKit = it.m_value; + if (!pPaintKit || pPaintKit->PaintKitId() == 0 || pPaintKit->PaintKitId() == 9001) + continue; + + const uint64_t skinKey = + Helper_GetAlternateIconKeyForWeaponPaintWearItem( + defIdx, pPaintKit->PaintKitId(), 0); + if (vecAlternateIcons.FindByKey(skinKey)) { + DumpedSkin_t dumpedSkin; + dumpedSkin.m_name = I::Localize->FindSafe( + pPaintKit->PaintKitDescriptionTag()); + dumpedSkin.m_ID = pPaintKit->PaintKitId(); + dumpedSkin.m_rarity = pPaintKit->PaintKitRarity(); + dumpedItem.m_dumpedSkins.emplace_back(dumpedSkin); + } + } + + // Sort skins by rarity. + if (!dumpedItem.m_dumpedSkins.empty() && isWeapon) { + std::sort(dumpedItem.m_dumpedSkins.begin(), + dumpedItem.m_dumpedSkins.end(), + [](const DumpedSkin_t& a, const DumpedSkin_t& b) { + return a.m_rarity > b.m_rarity; + }); + } + + vecDumpedItems.emplace_back(dumpedItem); + } + } + static char IconFilterText[128] = ""; + + + if (!vecDumpedItems.empty()) { + if (edited::Button("Add all items", ImVec2(120, 50), 0)) { + for (const auto& item : vecDumpedItems) { + for (const auto& skin : item.m_dumpedSkins) { + CEconItem* pItem = CEconItem::CreateInstance(); + L_PRINT(LOG_INFO) << "item addr:" << L::AddFlags(LOG_MODE_INT_FORMAT_HEX | LOG_MODE_INT_SHOWBASE) << reinterpret_cast(pItem); + if (pItem) { + CCSPlayerInventory* pInventory = + CCSPlayerInventory::GetInstance(); + auto highestIDs = pInventory->GetHighestIDs(); + L_PRINT(LOG_INFO) << "uid:" << pItem->m_ulID << " id:" << pItem->m_unAccountID << "idx:" << pItem->m_unDefIndex; + pItem->m_ulID = highestIDs.first + 1; + pItem->m_unInventory = highestIDs.second + 1; + pItem->m_unAccountID = + uint32_t(pInventory->GetOwner().m_id); + pItem->m_unDefIndex = item.m_defIdx; + if (item.m_unusualItem) pItem->m_nQuality = IQ_UNUSUAL; + pItem->m_nRarity = + std::clamp(item.m_rarity + skin.m_rarity - 1, 0, + (skin.m_rarity == 7) ? 7 : 6); + + pItem->SetPaintKit((float)skin.m_ID); + pItem->SetPaintSeed(1.f); + if (pInventory->AddEconItem(pItem)) + skin_changer::AddEconItemToList(pItem); + } + } + } + } + + } + + if (ImGui::IsItemHovered()) + ImGui::SetTooltip("Will cause lag on weaker computers."); + if (!vecDumpedItems.empty()) { + + static ImGuiTextFilter itemFilter; + itemFilter.Draw("Type here to filter Items...", windowWidth); + + + // ... + + // Modify the loop for items to check against the item filter. + if (ImGui::BeginListBox("##items", { windowWidth, 110.f })) { + for (auto& item : vecDumpedItems) { + if (!itemFilter.PassFilter(item.m_name.c_str())) + continue; + + ImGui::PushID(&item); + if (ImGui::Selectable(item.m_name.c_str(), pSelectedItem == &item)) { + if (pSelectedItem == &item) + pSelectedItem = nullptr; + else + pSelectedItem = &item; + } + ImGui::PopID(); + } + ImGui::EndListBox(); + } + static char skinFilterText[128] = ""; + + if (pSelectedItem) { + if (!pSelectedItem->m_dumpedSkins.empty()) { + + + static ImGuiTextFilter skinFilter; + skinFilter.Draw("Type here to filter Skins...", windowWidth); + + if (ImGui::BeginListBox("##skins", { windowWidth, 110.f })) { + for (auto& skin : pSelectedItem->m_dumpedSkins) { + if (!skinFilter.PassFilter(skin.m_name.c_str())) + continue; + + ImGui::PushID(&skin); + if (ImGui::Selectable( + skin.m_name.c_str(), + pSelectedItem->pSelectedSkin == &skin)) { + if (pSelectedItem->pSelectedSkin == &skin) + pSelectedItem->pSelectedSkin = nullptr; + else + pSelectedItem->pSelectedSkin = &skin; + } + ImGui::PopID(); + } + ImGui::EndListBox(); + } + } + + char buttonLabel[128]; + snprintf(buttonLabel, 128, "Add every %s skin", + pSelectedItem->m_name.c_str()); + + if (edited::Button(buttonLabel, ImVec2(120, 55), 0)) { + for (const auto& skin : pSelectedItem->m_dumpedSkins) { + CEconItem* pItem = CEconItem::CreateInstance(); + if (pItem) { + CCSPlayerInventory* pInventory = + CCSPlayerInventory::GetInstance(); + + auto highestIDs = pInventory->GetHighestIDs(); + + pItem->m_ulID = highestIDs.first + 1; + pItem->m_unInventory = highestIDs.second + 1; + pItem->m_unAccountID = + uint32_t(pInventory->GetOwner().m_id); + pItem->m_unDefIndex = pSelectedItem->m_defIdx; + if (pSelectedItem->m_unusualItem) + pItem->m_nQuality = IQ_UNUSUAL; + pItem->m_nRarity = std::clamp( + pSelectedItem->m_rarity + skin.m_rarity - 1, 0, + (skin.m_rarity == 7) ? 7 : 6); + + pItem->SetPaintKit((float)skin.m_ID); + pItem->SetPaintSeed(1.f); + if (pInventory->AddEconItem(pItem)) + skin_changer::AddEconItemToList(pItem); + } + } + } + ImGui::SameLine(); + if (pSelectedItem->pSelectedSkin) { + static float kitWear = 0.f; + static int kitSeed = 1; + static int gunKills = -1; + static char gunName[32]; + + bool vanillaSkin = pSelectedItem->pSelectedSkin->m_ID == 0; + snprintf( + buttonLabel, 128, "Add %s%s%s", + pSelectedItem->m_name.c_str(), vanillaSkin ? "" : " | ", + vanillaSkin ? "" + : pSelectedItem->pSelectedSkin->m_name.c_str()); + + if (edited::Button(buttonLabel, ImVec2(120, 55), 0)) { + CEconItem* pItem = CEconItem::CreateInstance(); + if (pItem) { + CCSPlayerInventory* pInventory = + CCSPlayerInventory::GetInstance(); + + auto highestIDs = pInventory->GetHighestIDs(); + L_PRINT(LOG_INFO) << "item addr:" << L::AddFlags(LOG_MODE_INT_FORMAT_HEX | LOG_MODE_INT_SHOWBASE) << reinterpret_cast(pItem); + L_PRINT(LOG_INFO) << "uid:" << pItem->m_ulID << " id:" << pItem->m_unAccountID << "idx:" << pItem->m_unDefIndex; + + pItem->m_ulID = highestIDs.first + 1; + pItem->m_unInventory = highestIDs.second + 1; + pItem->m_unAccountID = + uint32_t(pInventory->GetOwner().m_id); + pItem->m_unDefIndex = pSelectedItem->m_defIdx; + + if (pSelectedItem->m_unusualItem) + pItem->m_nQuality = IQ_UNUSUAL; + + // I don't know nor do care why the rarity is calculated + // like this. [Formula] + pItem->m_nRarity = std::clamp( + pSelectedItem->m_rarity + + pSelectedItem->pSelectedSkin->m_rarity - 1, + 0, + (pSelectedItem->pSelectedSkin->m_rarity == 7) ? 7 + : 6); + + pItem->SetPaintKit( + (float)pSelectedItem->pSelectedSkin->m_ID); + pItem->SetPaintSeed((float)kitSeed); + pItem->SetPaintWear(kitWear); + + if (gunKills >= 0) { + pItem->SetStatTrak(gunKills); + pItem->SetStatTrakType(0); + + // Applied automatically on knives. + if (pItem->m_nQuality != IQ_UNUSUAL) + pItem->m_nQuality = IQ_STRANGE; + } + + if (pInventory->AddEconItem(pItem)) + skin_changer::AddEconItemToList(pItem); + + kitWear = 0.f; + kitSeed = 1; + gunKills = -1; + memset(gunName, '\0', IM_ARRAYSIZE(gunName)); + } + } + + ImGui::Dummy({ 0, 8 }); + ImGui::SeparatorText("Extra settings"); + + ImGui::TextUnformatted("Wear Rating"); + ImGui::SetNextItemWidth(windowWidth); + ImGui::SliderFloat("##slider1", &kitWear, 0.f, 1.f, "%.9f", + ImGuiSliderFlags_Logarithmic); + + ImGui::TextUnformatted("Pattern Template"); + ImGui::SetNextItemWidth(windowWidth); + ImGui::SliderInt("##slider2", &kitSeed, 1, 1000); + + ImGui::TextUnformatted("StatTrak Count"); + ImGui::SetNextItemWidth(windowWidth); + ImGui::SliderInt("##slider3", &gunKills, -1, INT_MAX / 2, + gunKills == -1 ? "Not StatTrak" : "%d", + ImGuiSliderFlags_Logarithmic); + + ImGui::TextUnformatted("Custom Name"); + ImGui::SetNextItemWidth(windowWidth); + ImGui::InputTextWithHint("##input1", "Default", gunName, + IM_ARRAYSIZE(gunName)); + } + } + } + } + edited::EndChild(); + + } + } + + + ImGui::PopStyleVar(); + } + ImGui::End(); + + ImGui::PopStyleVar(); + +} + + +void MENU::RenderWatermark() +{ + if (!C_GET(bool, Vars.bWatermark) || !bMainWindowOpened) + return; + + ImGuiStyle& style = ImGui::GetStyle(); + + ImGui::PushStyleColor(ImGuiCol_MenuBarBg, ImVec4(0.f, 0.f, 0.f, 0.03f)); + ImGui::PushStyleColor(ImGuiCol_WindowBg, ImVec4(0.f, 0.f, 0.f, 0.03f)); + ImGui::PushStyleColor(ImGuiCol_Border, ImVec4(0.f, 0.f, 0.f, 0.03f)); + ImGui::PushFont(FONT::pExtra); + ImGui::BeginMainMenuBar(); + { + ImGui::Dummy(ImVec2(1, 1)); + +#ifdef _DEBUG + ImGui::TextColored(ImVec4(1.0f, 0.5f, 0.0f, 1.0f), CS_XOR("debug")); +#endif + if (CRT::StringString(GetCommandLineW(), CS_XOR(L"-insecure")) != nullptr) + ImGui::TextColored(ImVec4(1.0f, 1.0f, 0.0f, 1.0f), CS_XOR("insecure")); + + if (I::Engine->IsInGame()) + ImGui::TextColored(ImVec4(1.0f, 0.0f, 0.0f, 1.0f), CS_XOR("in-game")); + + static ImVec2 vecNameSize = ImGui::CalcTextSize(CS_XOR("cs2project | " __DATE__ " " __TIME__)); + ImGui::SameLine(ImGui::GetContentRegionMax().x - vecNameSize.x - style.FramePadding.x); + ImGui::TextColored(ImVec4(1.0f, 1.0f, 1.0f, 1.0f), CS_XOR("cs2project | " __DATE__ " " __TIME__)); + } + ImGui::EndMainMenuBar(); + ImGui::PopFont(); + ImGui::PopStyleColor(3); +} + +void MENU::UpdateStyle(ImGuiStyle* pStyle) +{ + ImGuiStyle& style = pStyle != nullptr ? *pStyle : ImGui::GetStyle(); + + style.Colors[ImGuiCol_Text] = ImVec4(1.00f, 1.00f, 1.00f, 1.00f); + style.Colors[ImGuiCol_TextDisabled] = ImVec4(0.50f, 0.50f, 0.50f, 1.00f); + style.Colors[ImGuiCol_WindowBg] = ImVec4(0.06f, 0.06f, 0.06f, 0.94f); + style.Colors[ImGuiCol_ChildBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + style.Colors[ImGuiCol_PopupBg] = ImVec4(0.08f, 0.08f, 0.08f, 0.94f); + style.Colors[ImGuiCol_Border] = ImVec4(0.43f, 0.43f, 0.50f, 0.50f); + style.Colors[ImGuiCol_BorderShadow] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + style.Colors[ImGuiCol_FrameBg] = ImVec4(0.14f, 0.14f, 0.14f, 0.87f); + style.Colors[ImGuiCol_FrameBgHovered] = ImVec4(0.26f, 0.26f, 0.26f, 0.40f); + style.Colors[ImGuiCol_FrameBgActive] = ImVec4(0.26f, 0.26f, 0.26f, 0.67f); + style.Colors[ImGuiCol_TitleBg] = ImVec4(0.04f, 0.04f, 0.04f, 1.00f); + style.Colors[ImGuiCol_TitleBgActive] = ImVec4(0.16f, 0.29f, 0.48f, 1.00f); + style.Colors[ImGuiCol_TitleBgCollapsed] = ImVec4(0.00f, 0.00f, 0.00f, 0.51f); + style.Colors[ImGuiCol_MenuBarBg] = ImVec4(0.14f, 0.14f, 0.14f, 1.00f); + style.Colors[ImGuiCol_ScrollbarBg] = c::tab::tab_active; + style.Colors[ImGuiCol_ScrollbarGrab] = c::tab::tab_active; + style.Colors[ImGuiCol_ScrollbarGrabHovered] = c::accent; + style.Colors[ImGuiCol_ScrollbarGrabActive] = c::accent; + style.Colors[ImGuiCol_CheckMark] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + style.Colors[ImGuiCol_SliderGrab] = ImVec4(c::accent.x, c::accent.y, c::accent.z, 0.70f); + style.Colors[ImGuiCol_SliderGrabActive] = c::accent; + style.Colors[ImGuiCol_Button] = ImVec4(0.26f, 0.59f, 0.98f, 0.40f); + style.Colors[ImGuiCol_ButtonHovered] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + style.Colors[ImGuiCol_ButtonActive] = ImVec4(0.06f, 0.53f, 0.98f, 1.00f); + style.Colors[ImGuiCol_Header] = ImVec4(0.26f, 0.59f, 0.98f, 0.31f); + style.Colors[ImGuiCol_HeaderHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.80f); + style.Colors[ImGuiCol_HeaderActive] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + style.Colors[ImGuiCol_Separator] = style.Colors[ImGuiCol_Border]; + style.Colors[ImGuiCol_SeparatorHovered] = ImVec4(0.10f, 0.40f, 0.75f, 0.78f); + style.Colors[ImGuiCol_SeparatorActive] = ImVec4(0.10f, 0.40f, 0.75f, 0.00f); + style.Colors[ImGuiCol_ResizeGrip] = ImVec4(0.26f, 0.59f, 0.98f, 0); + style.Colors[ImGuiCol_ResizeGripHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0); + style.Colors[ImGuiCol_ResizeGripActive] = ImVec4(0.26f, 0.59f, 0.98f, 0); + style.Colors[ImGuiCol_Tab] = ImLerp(style.Colors[ImGuiCol_Header], style.Colors[ImGuiCol_TitleBgActive], 0.80f); + style.Colors[ImGuiCol_TabHovered] = style.Colors[ImGuiCol_HeaderHovered]; + style.Colors[ImGuiCol_TabActive] = ImLerp(style.Colors[ImGuiCol_HeaderActive], style.Colors[ImGuiCol_TitleBgActive], 0.60f); + style.Colors[ImGuiCol_TabUnfocused] = ImLerp(style.Colors[ImGuiCol_Tab], style.Colors[ImGuiCol_TitleBg], 0.80f); + style.Colors[ImGuiCol_TabUnfocusedActive] = ImLerp(style.Colors[ImGuiCol_TabActive], style.Colors[ImGuiCol_TitleBg], 0.40f); + style.Colors[ImGuiCol_PlotLines] = ImVec4(0.61f, 0.61f, 0.61f, 1.00f); + style.Colors[ImGuiCol_PlotLinesHovered] = ImVec4(1.00f, 0.43f, 0.35f, 1.00f); + style.Colors[ImGuiCol_PlotHistogram] = ImVec4(0.90f, 0.70f, 0.00f, 1.00f); + style.Colors[ImGuiCol_PlotHistogramHovered] = ImVec4(1.00f, 0.60f, 0.00f, 1.00f); + style.Colors[ImGuiCol_TextSelectedBg] = ImVec4(0.26f, 0.59f, 0.98f, 0.35f); + style.Colors[ImGuiCol_DragDropTarget] = ImVec4(1.00f, 1.00f, 0.00f, 0.90f); + style.Colors[ImGuiCol_NavHighlight] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + style.Colors[ImGuiCol_NavWindowingHighlight] = ImVec4(1.00f, 1.00f, 1.00f, 0.70f); + style.Colors[ImGuiCol_NavWindowingDimBg] = ImVec4(0.80f, 0.80f, 0.80f, 0.20f); + style.Colors[ImGuiCol_ModalWindowDimBg] = ImVec4(0.80f, 0.80f, 0.80f, 0.35f); + + + C_GET(ColorPickerVar_t, Vars.colPrimtv0).UpdateRainbow(); // (text) + C_GET(ColorPickerVar_t, Vars.colPrimtv1).UpdateRainbow(); // (background) + C_GET(ColorPickerVar_t, Vars.colPrimtv2).UpdateRainbow(); // (disabled) + C_GET(ColorPickerVar_t, Vars.colPrimtv3).UpdateRainbow(); // (control bg) + C_GET(ColorPickerVar_t, Vars.colPrimtv4).UpdateRainbow(); // (border) + + C_GET(ColorPickerVar_t, Vars.colAccent0).UpdateRainbow(); // (main) + C_GET(ColorPickerVar_t, Vars.colAccent1).UpdateRainbow(); // (dark) + C_GET(ColorPickerVar_t, Vars.colAccent2).UpdateRainbow(); // (darker) + + // update animation speed + style.AnimationSpeed = C_GET(float, Vars.flAnimationSpeed) / 10.f; +} +static void RenderInventoryWindow() { + static constexpr float windowWidth = 540.f; + + struct DumpedSkin_t { + std::string m_name = ""; + int m_ID = 0; + int m_rarity = 0; + }; + struct DumpedItem_t { + std::string m_name = ""; + uint16_t m_defIdx = 0; + int m_rarity = 0; + bool m_unusualItem = false; + std::vector m_dumpedSkins{}; + DumpedSkin_t* pSelectedSkin = nullptr; + }; + static std::vector vecDumpedItems; + static DumpedItem_t* pSelectedItem = nullptr; + + CEconItemSchema* pItemSchema = + I::Client->GetEconItemSystem()->GetEconItemSchema(); + + + if (ImGui::Begin("cs2sdk item dumper", nullptr, ImGuiWindowFlags_AlwaysAutoResize)) { + if (vecDumpedItems.empty() && + ImGui::Button("Dump items", { windowWidth, 0 })) { + + + const CUtlMap& vecItems = + pItemSchema->GetSortedItemDefinitionMap(); + const CUtlMap& vecPaintKits = + pItemSchema->GetPaintKits(); + const CUtlMap& vecAlternateIcons = + pItemSchema->GetAlternateIconsMap(); + + for (const auto& it : vecItems) { + CEconItemDefinition* pItem = it.m_value; + if (!pItem) continue; + + const bool isWeapon = pItem->IsWeapon(); + + auto isKnife = (pItem->m_pszItemTypeName != "#CSGO_Type_Knife"); + // auto isGloves = pItem->IsGlove(true, pItem->m_pszItemTypeName); + + if (!isWeapon && !isKnife) continue; + + // Some items don't have names. + const char* itemBaseName = pItem->m_pszItemBaseName; + if (!itemBaseName || itemBaseName[0] == '\0') continue; + + const uint16_t defIdx = pItem->m_nDefIndex; + + DumpedItem_t dumpedItem; + dumpedItem.m_name = I::Localize->FindSafe(itemBaseName); + dumpedItem.m_defIdx = defIdx; + dumpedItem.m_rarity = pItem->m_nItemRarity; + if (isKnife) { + dumpedItem.m_unusualItem = true; + } + + + + // We filter skins by guns. + for (const auto& it : vecPaintKits) { + CPaintKit* pPaintKit = it.m_value; + if (!pPaintKit || pPaintKit->PaintKitId() == 0 || pPaintKit->PaintKitId() == 9001) + continue; + + const uint64_t skinKey = + Helper_GetAlternateIconKeyForWeaponPaintWearItem( + defIdx, pPaintKit->PaintKitId(), 0); + if (vecAlternateIcons.FindByKey(skinKey)) { + DumpedSkin_t dumpedSkin; + dumpedSkin.m_name = I::Localize->FindSafe( + pPaintKit->PaintKitDescriptionTag()); + dumpedSkin.m_ID = pPaintKit->PaintKitId(); + dumpedSkin.m_rarity = pPaintKit->PaintKitRarity(); + dumpedItem.m_dumpedSkins.emplace_back(dumpedSkin); + } + } + + // Sort skins by rarity. + if (!dumpedItem.m_dumpedSkins.empty() && isWeapon) { + std::sort(dumpedItem.m_dumpedSkins.begin(), + dumpedItem.m_dumpedSkins.end(), + [](const DumpedSkin_t& a, const DumpedSkin_t& b) { + return a.m_rarity > b.m_rarity; + }); + } + + vecDumpedItems.emplace_back(dumpedItem); + } + } + + + if (!vecDumpedItems.empty()) { + if (ImGui::Button("Add all items", { windowWidth, 0.f })) { + for (const auto& item : vecDumpedItems) { + for (const auto& skin : item.m_dumpedSkins) { + CEconItem* pItem = CEconItem::CreateInstance(); + L_PRINT(LOG_INFO) << "item addr:" << L::AddFlags(LOG_MODE_INT_FORMAT_HEX | LOG_MODE_INT_SHOWBASE) << reinterpret_cast(pItem); + if (pItem) { + CCSPlayerInventory* pInventory = + CCSPlayerInventory::GetInstance(); + + auto highestIDs = pInventory->GetHighestIDs(); + L_PRINT(LOG_INFO) << "uid:" << pItem->m_ulID << " id:" << pItem->m_unAccountID << "idx:" << pItem->m_unDefIndex; + pItem->m_ulID = highestIDs.first + 1; + pItem->m_unInventory = highestIDs.second + 1; + pItem->m_unAccountID = + uint32_t(pInventory->GetOwner().m_id); + pItem->m_unDefIndex = item.m_defIdx; + if (item.m_unusualItem) pItem->m_nQuality = IQ_UNUSUAL; + pItem->m_nRarity = + std::clamp(item.m_rarity + skin.m_rarity - 1, 0, + (skin.m_rarity == 7) ? 7 : 6); + + pItem->SetPaintKit((float)skin.m_ID); + pItem->SetPaintSeed(1.f); + if (pInventory->AddEconItem(pItem)) + skin_changer::AddEconItemToList(pItem); + } + } + } + } + + } + + if (ImGui::IsItemHovered()) + ImGui::SetTooltip("Will cause lag on weaker computers."); + + static ImGuiTextFilter itemFilter; + itemFilter.Draw("##filter", windowWidth); + + if (ImGui::BeginListBox("##items", { windowWidth, 140.f })) { + for (auto& item : vecDumpedItems) { + if (!itemFilter.PassFilter(item.m_name.c_str())) continue; + + ImGui::PushID(&item); + if (ImGui::Selectable(item.m_name.c_str(), + pSelectedItem == &item)) { + if (pSelectedItem == &item) + pSelectedItem = nullptr; + else + pSelectedItem = &item; + } + ImGui::PopID(); + } + ImGui::EndListBox(); + } + + if (pSelectedItem) { + if (!pSelectedItem->m_dumpedSkins.empty()) { + static ImGuiTextFilter skinFilter; + skinFilter.Draw("##filter2", windowWidth); + + if (ImGui::BeginListBox("##skins", { windowWidth, 140.f })) { + for (auto& skin : pSelectedItem->m_dumpedSkins) { + if (!skinFilter.PassFilter(skin.m_name.c_str())) + continue; + + ImGui::PushID(&skin); + if (ImGui::Selectable( + skin.m_name.c_str(), + pSelectedItem->pSelectedSkin == &skin)) { + if (pSelectedItem->pSelectedSkin == &skin) + pSelectedItem->pSelectedSkin = nullptr; + else + pSelectedItem->pSelectedSkin = &skin; + } + ImGui::PopID(); + } + ImGui::EndListBox(); + } + } + + char buttonLabel[128]; + snprintf(buttonLabel, 128, "Add every %s skin", + pSelectedItem->m_name.c_str()); + + if (ImGui::Button(buttonLabel, { windowWidth, 0.f })) { + for (const auto& skin : pSelectedItem->m_dumpedSkins) { + CEconItem* pItem = CEconItem::CreateInstance(); + if (pItem) { + CCSPlayerInventory* pInventory = + CCSPlayerInventory::GetInstance(); + + auto highestIDs = pInventory->GetHighestIDs(); + + pItem->m_ulID = highestIDs.first + 1; + pItem->m_unInventory = highestIDs.second + 1; + pItem->m_unAccountID = + uint32_t(pInventory->GetOwner().m_id); + pItem->m_unDefIndex = pSelectedItem->m_defIdx; + if (pSelectedItem->m_unusualItem) + pItem->m_nQuality = IQ_UNUSUAL; + pItem->m_nRarity = std::clamp( + pSelectedItem->m_rarity + skin.m_rarity - 1, 0, + (skin.m_rarity == 7) ? 7 : 6); + + pItem->SetPaintKit((float)skin.m_ID); + pItem->SetPaintSeed(1.f); + if (pInventory->AddEconItem(pItem)) + skin_changer::AddEconItemToList(pItem); + } + } + } + + if (pSelectedItem->pSelectedSkin) { + static float kitWear = 0.f; + static int kitSeed = 1; + static int gunKills = -1; + static char gunName[32]; + + bool vanillaSkin = pSelectedItem->pSelectedSkin->m_ID == 0; + snprintf( + buttonLabel, 128, "Add %s%s%s", + pSelectedItem->m_name.c_str(), vanillaSkin ? "" : " | ", + vanillaSkin ? "" + : pSelectedItem->pSelectedSkin->m_name.c_str()); + + if (ImGui::Button(buttonLabel, { windowWidth, 0.f })) { + CEconItem* pItem = CEconItem::CreateInstance(); + if (pItem) { + CCSPlayerInventory* pInventory = + CCSPlayerInventory::GetInstance(); + + auto highestIDs = pInventory->GetHighestIDs(); + L_PRINT(LOG_INFO) << "item addr:" << L::AddFlags(LOG_MODE_INT_FORMAT_HEX | LOG_MODE_INT_SHOWBASE) << reinterpret_cast(pItem); + L_PRINT(LOG_INFO) << "uid:" << pItem->m_ulID << " id:" << pItem->m_unAccountID << "idx:" << pItem->m_unDefIndex; + + pItem->m_ulID = highestIDs.first + 1; + pItem->m_unInventory = highestIDs.second + 1; + pItem->m_unAccountID = + uint32_t(pInventory->GetOwner().m_id); + pItem->m_unDefIndex = pSelectedItem->m_defIdx; + + if (pSelectedItem->m_unusualItem) + pItem->m_nQuality = IQ_UNUSUAL; + + // I don't know nor do care why the rarity is calculated + // like this. [Formula] + pItem->m_nRarity = std::clamp( + pSelectedItem->m_rarity + + pSelectedItem->pSelectedSkin->m_rarity - 1, + 0, + (pSelectedItem->pSelectedSkin->m_rarity == 7) ? 7 + : 6); + + pItem->SetPaintKit( + (float)pSelectedItem->pSelectedSkin->m_ID); + pItem->SetPaintSeed((float)kitSeed); + pItem->SetPaintWear(kitWear); + + if (gunKills >= 0) { + pItem->SetStatTrak(gunKills); + pItem->SetStatTrakType(0); + + // Applied automatically on knives. + if (pItem->m_nQuality != IQ_UNUSUAL) + pItem->m_nQuality = IQ_STRANGE; + } + + if (pInventory->AddEconItem(pItem)) + skin_changer::AddEconItemToList(pItem); + + kitWear = 0.f; + kitSeed = 1; + gunKills = -1; + memset(gunName, '\0', IM_ARRAYSIZE(gunName)); + } + } + + ImGui::Dummy({ 0, 8 }); + ImGui::SeparatorText("Extra settings"); + + ImGui::TextUnformatted("Wear Rating"); + ImGui::SetNextItemWidth(windowWidth); + ImGui::SliderFloat("##slider1", &kitWear, 0.f, 1.f, "%.9f", + ImGuiSliderFlags_Logarithmic); + + ImGui::TextUnformatted("Pattern Template"); + ImGui::SetNextItemWidth(windowWidth); + ImGui::SliderInt("##slider2", &kitSeed, 1, 1000); + + ImGui::TextUnformatted("StatTrak Count"); + ImGui::SetNextItemWidth(windowWidth); + ImGui::SliderInt("##slider3", &gunKills, -1, INT_MAX / 2, + gunKills == -1 ? "Not StatTrak" : "%d", + ImGuiSliderFlags_Logarithmic); + + ImGui::TextUnformatted("Custom Name"); + ImGui::SetNextItemWidth(windowWidth); + ImGui::InputTextWithHint("##input1", "Default", gunName, + IM_ARRAYSIZE(gunName)); + } + } + } + + ImGui::End(); +} + + +#pragma region menu_tabs + +void T::Render(const char* szTabBar, const CTab* arrTabs, const unsigned long long nTabsCount, int* nCurrentTab, ImGuiTabBarFlags flags) +{ + if (ImGui::BeginTabBar(szTabBar, flags)) + { + for (std::size_t i = 0U; i < nTabsCount; i++) + { + // add tab + if (ImGui::BeginTabItem(arrTabs[i].szName)) + { + // set current tab index + *nCurrentTab = (int)i; + ImGui::EndTabItem(); + } + } + + // render inner tab + if (arrTabs[*nCurrentTab].pRenderFunction != nullptr) + arrTabs[*nCurrentTab].pRenderFunction(); + + ImGui::EndTabBar(); + } +} + + +#pragma endregion + +#pragma region menu_particle + +void MENU::ParticleContext_t::Render(ImDrawList* pDrawList, const ImVec2& vecScreenSize, const float flAlpha) +{ + if (this->vecParticles.empty()) + { + for (int i = 0; i < 100; i++) + this->AddParticle(ImGui::GetIO().DisplaySize); + } + + for (auto& particle : this->vecParticles) + { + this->DrawParticle(pDrawList, particle, C_GET(ColorPickerVar_t, Vars.colAccent0).colValue.Set(flAlpha * 255)); + this->UpdatePosition(particle, vecScreenSize); + this->FindConnections(pDrawList, particle, C_GET(ColorPickerVar_t, Vars.colAccent2).colValue.Set(flAlpha * 255), 200.f); + } +} + +void MENU::ParticleContext_t::AddParticle(const ImVec2& vecScreenSize) +{ + // exceeded limit + if (this->vecParticles.size() >= 200UL) + return; + + // @note: random speed value + static constexpr float flSpeed = 100.f; + this->vecParticles.emplace_back( + ImVec2(MATH::fnRandomFloat(0.f, vecScreenSize.x), MATH::fnRandomFloat(0.f, vecScreenSize.y)), + ImVec2(MATH::fnRandomFloat(-flSpeed, flSpeed), MATH::fnRandomFloat(-flSpeed, flSpeed))); +} + +void MENU::ParticleContext_t::DrawParticle(ImDrawList* pDrawList, ParticleData_t& particle, const Color_t& colPrimary) +{ + D::AddDrawListCircle(pDrawList, particle.vecPosition, 2.f, colPrimary, 12, DRAW_CIRCLE_OUTLINE | DRAW_CIRCLE_FILLED); +} + +void MENU::ParticleContext_t::FindConnections(ImDrawList* pDrawList, ParticleData_t& particle, const Color_t& colPrimary, float flMaxDistance) +{ + for (auto& currentParticle : this->vecParticles) + { + // skip current particle + if (¤tParticle == &particle) + continue; + + /// @note: calcuate length distance 2d, return FLT_MAX if failed + const float flDistance = ImLength(particle.vecPosition - currentParticle.vecPosition, FLT_MAX); + if (flDistance <= flMaxDistance) + this->DrawConnection(pDrawList, particle, currentParticle, (flMaxDistance - flDistance) / flMaxDistance, colPrimary); + } +} + +void MENU::ParticleContext_t::DrawConnection(ImDrawList* pDrawList, ParticleData_t& particle, ParticleData_t& otherParticle, float flAlpha, const Color_t& colPrimary) const +{ + D::AddDrawListLine(pDrawList, particle.vecPosition, otherParticle.vecPosition, colPrimary.Set(flAlpha * 255), 1.f); +} + +void MENU::ParticleContext_t::UpdatePosition(ParticleData_t& particle, const ImVec2& vecScreenSize) const +{ + this->ResolveScreenCollision(particle, vecScreenSize); + + ImGuiStyle& style = ImGui::GetStyle(); + + // move particle + particle.vecPosition.x += (particle.vecVelocity.x * style.AnimationSpeed * 10.f) * ImGui::GetIO().DeltaTime; + particle.vecPosition.y += (particle.vecVelocity.y * style.AnimationSpeed * 10.f) * ImGui::GetIO().DeltaTime; +} + +void MENU::ParticleContext_t::ResolveScreenCollision(ParticleData_t& particle, const ImVec2& vecScreenSize) const +{ + if (particle.vecPosition.x + particle.vecVelocity.x > vecScreenSize.x || particle.vecPosition.x + particle.vecVelocity.x < 0) + particle.vecVelocity.x = -particle.vecVelocity.x; + + if (particle.vecPosition.y + particle.vecVelocity.y > vecScreenSize.y || particle.vecPosition.y + particle.vecVelocity.y < 0) + particle.vecVelocity.y = -particle.vecVelocity.y; +} + +#pragma endregion diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/menu.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/menu.h new file mode 100644 index 0000000..a2c314e --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/menu.h @@ -0,0 +1,106 @@ +#pragma once + +// used: [stl] vector +#include + +#include "../common.h" + +// used: [ext] imgui, draw, animation +#include "../utilities/draw.h" + +#define MENU_MAX_BACKGROUND_PARTICLES 100 + +class CTab +{ +public: + const char* szName; + void (*pRenderFunction)(); +}; + +namespace MENU +{ + void RenderMainWindow(); + void RenderWatermark(); + + void UpdateStyle(ImGuiStyle* pStyle = nullptr); + + /* @section: particles */ + struct ParticleData_t + { + ParticleData_t(const ImVec2& vecPosition, const ImVec2& vecVelocity) : + vecPosition(vecPosition), vecVelocity(vecVelocity) { } + + // current particle position + ImVec2 vecPosition = {}; + // current particle velocity + ImVec2 vecVelocity = {}; + }; + + struct ParticleContext_t + { + ParticleContext_t(const int nMaxParticles = 100) + { + // allocate memory for particles + this->vecParticles.reserve(nMaxParticles); + // create particles if needed + } + + ~ParticleContext_t() + { + // since no memory allocated, just clear vector + this->vecParticles.clear(); + } + + void Render(ImDrawList* pDrawList, const ImVec2& vecScreenSize, const float flAlpha); + + // create particle with random velocity/position + void AddParticle(const ImVec2& vecScreenSize); + // current size of particles + const size_t Count() const { return this->vecParticles.size(); } + private: + // draw particle (circle) + void DrawParticle(ImDrawList* pDrawList, ParticleData_t& particle, const Color_t& colPrimary); + + // find & draw connection as a line between particles + void FindConnections(ImDrawList* pDrawList, ParticleData_t& particle, const Color_t& colPrimary, float flMaxDistance); + void DrawConnection(ImDrawList* pDrawList, ParticleData_t& particle, ParticleData_t& otherParticle, float flAlpha, const Color_t& colPrimary) const; + + // update particle position/velocity + // reversed direction when particle is out of screen + void UpdatePosition(ParticleData_t& particle, const ImVec2& vecScreenSize) const; + void ResolveScreenCollision(ParticleData_t& particle, const ImVec2& vecScreenSize) const; + + // all our particles data + std::vector vecParticles; + }; + + inline bool bMainWindowOpened = false; + inline int nCurrentMainTab = 0; + inline int g_cur_tab_idx = 0; + inline char szConfigFile[256U] = {}; + inline unsigned long long nSelectedConfig = ~1U; + inline ParticleContext_t menuParticle = ParticleContext_t(MENU_MAX_BACKGROUND_PARTICLES); + inline AnimationHandler_t animMenuDimBackground; + inline float flDpiScale = 1.f; +} + +namespace T +{ + /* @section: main */ + void Render(const char* szTabBar, const CTab* arrTabs, const unsigned long long nTabsCount, int* nCurrentTab, ImGuiTabBarFlags flags = ImGuiTabBarFlags_NoCloseWithMiddleMouseButton | ImGuiTabBarFlags_NoTooltip); + + /* @section: tabs */ + void RageBot(); + void LegitBot(); + void Visuals(); + void Miscellaneous(); + void SkinsChanger(); + + /* @section: values */ + // user-defined configuration filename in miscellaneous tab + inline char szConfigFile[256U] = {}; + // current selected configuration in miscellaneous tab + inline unsigned long long nSelectedConfig = ~1U; + // current sub tab overlay in visuals tab + inline int nCurrentOverlaySubtab = 0; +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/pointer/pointer.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/pointer/pointer.cpp new file mode 100644 index 0000000..8a8aa75 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/pointer/pointer.cpp @@ -0,0 +1,44 @@ + +#include "pointer.hpp" +#include + +CPointer CPointer::GetFieldPtr(int offset) const { + if (IsValid()) { + return m_Value + offset; + } + + LogInvalid(); + + static CPointer null{}; + return &null; +} + +CPointer& CPointer::Offset(int offset) { + if (IsValid()) { + m_Value += offset; + } + + return *this; +} + +CPointer& CPointer::Absolute(int preAbs, int postAbs) { + if (IsValid()) { + Offset(preAbs); + m_Value = m_Value + sizeof(int) + *reinterpret_cast(m_Value); + Offset(postAbs); + } + + return *this; +} + +CPointer& CPointer::Dereference(int count) { + if (IsValid()) { + while (count-- != 0) { + m_Value = *reinterpret_cast(m_Value); + } + } + + return *this; +} + +void CPointer::LogInvalid() const { std::cout << "invalid offset\n"; } diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/pointer/pointer.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/pointer/pointer.hpp new file mode 100644 index 0000000..22ea7f5 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/pointer/pointer.hpp @@ -0,0 +1,49 @@ +#pragma once +#include +#include +class CPointer { + public: + CPointer() { m_Value = 0; } + + template + CPointer(T value) { + m_Value = (uintptr_t)(value); + } + + bool IsValid() const { return m_Value != 0; } + + template + auto Get() const { + return reinterpret_cast(m_Value); + } + + template + std::add_lvalue_reference_t GetField(int offset) const { + return *GetFieldPtr(offset).Get(); + } + + template + auto Call(Args... args) const { + if constexpr (std::is_invocable_v) { + if (IsValid()) { + return std::invoke(Get(), std::forward(args)...); + } + } else { + static_assert(std::is_invocable_v, "T must be an invocable type."); + } + + LogInvalid(); + return std::invoke_result_t{}; + } + + CPointer GetFieldPtr(int offset) const; + + CPointer& Offset(int offset); + CPointer& Absolute(int preAbs, int postAbs); + CPointer& Dereference(int count); + + private: + void LogInvalid() const; + + uintptr_t m_Value; +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/schema.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/schema.cpp new file mode 100644 index 0000000..73bae28 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/schema.cpp @@ -0,0 +1,168 @@ +#include "schema.h" + +// used: [stl] vector +#include +// used: [stl] find_if +#include + +// used: getworkingpath +#include "../core.h" + +// used: ischemasystem +#include "interfaces.h" +#include "../sdk/interfaces/ischemasystem.h" + +// used: l_print +#include "../utilities/log.h" + +struct SchemaData_t +{ + FNV1A_t uHashedFieldName = 0x0ULL; + std::uint32_t uOffset = 0x0U; +}; + +static std::vector vecSchemaData; + +bool SCHEMA::Setup(const wchar_t* wszFileName, const char* szModuleName) +{ + wchar_t wszDumpFilePath[MAX_PATH]; + if (!CORE::GetWorkingPath(wszDumpFilePath)) + return false; + + CRT::StringCat(wszDumpFilePath, wszFileName); + + HANDLE hOutFile = ::CreateFileW(wszDumpFilePath, GENERIC_WRITE, FILE_SHARE_READ, nullptr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, nullptr); + if (hOutFile == INVALID_HANDLE_VALUE) + return false; + + // @todo: maybe remove this redundant? and put it inside CRT::String_t c'tor + const std::time_t time = std::time(nullptr); + std::tm timePoint; + localtime_s(&timePoint, &time); + + CRT::String_t<64> szTimeBuffer(CS_XOR("[%d-%m-%Y %T] asphyxia | schema dump\n\n"), &timePoint); + + // write current date, time and info + ::WriteFile(hOutFile, szTimeBuffer.Data(), szTimeBuffer.Length(), nullptr, nullptr); + + CSchemaSystemTypeScope* pTypeScope = I::SchemaSystem->FindTypeScopeForModule(szModuleName); + if (pTypeScope == nullptr) + return false; + + const int nTableSize = pTypeScope->hashClasses.Count(); + L_PRINT(LOG_INFO) << CS_XOR("found \"") << nTableSize << CS_XOR("\" schema classes in module"); + + // allocate memory for elements + UtlTSHashHandle_t* pElements = new UtlTSHashHandle_t[nTableSize + 1U]; + const auto nElements = pTypeScope->hashClasses.GetElements(0, nTableSize, pElements); + + for (int i = 0; i < nElements; i++) + { + const UtlTSHashHandle_t hElement = pElements[i]; + + if (hElement == 0) + continue; + + CSchemaClassBinding* pClassBinding = pTypeScope->hashClasses[hElement]; + if (pClassBinding == nullptr) + continue; + + SchemaClassInfoData_t* pDeclaredClassInfo; + pTypeScope->FindDeclaredClass(&pDeclaredClassInfo, pClassBinding->szBinaryName); + + if (pDeclaredClassInfo == nullptr) + continue; + + if (pDeclaredClassInfo->nFieldSize == 0) + continue; + + CRT::String_t szClassBuffer(CS_XOR("class %s\n"), pDeclaredClassInfo->szName); + ::WriteFile(hOutFile, szClassBuffer.Data(), szClassBuffer.Length(), nullptr, nullptr); + + for (auto j = 0; j < pDeclaredClassInfo->nFieldSize; j++) + { + SchemaClassFieldData_t* pFields = pDeclaredClassInfo->pFields; + CRT::String_t szFieldClassBuffer(CS_XOR("%s->%s"), pClassBinding->szBinaryName, pFields[j].szName); + // store field info + vecSchemaData.emplace_back(FNV1A::Hash(szFieldClassBuffer.Data()), pFields[j].nSingleInheritanceOffset); + + CRT::String_t szFieldBuffer(CS_XOR(" %s %s = 0x%X\n"), pFields[j].pSchemaType->szName, pFields[j].szName, pFields[j].nSingleInheritanceOffset); + // write field info + ::WriteFile(hOutFile, szFieldBuffer.Data(), szFieldBuffer.Length(), nullptr, nullptr); + } + #ifdef _DEBUG + L_PRINT(LOG_INFO) << CS_XOR("dumped \"") << pDeclaredClassInfo->szName << CS_XOR("\" (total: ") << pDeclaredClassInfo->nFieldSize << CS_XOR(" fields)"); + #endif + } + + // free allocated memory + delete[] pElements; + + // close file + ::CloseHandle(hOutFile); + + return true; +} + +std::uint32_t SCHEMA::GetOffset(const FNV1A_t uHashedFieldName) +{ + if (const auto it = std::ranges::find_if(vecSchemaData, [uHashedFieldName](const SchemaData_t& data) + { return data.uHashedFieldName == uHashedFieldName; }); + it != vecSchemaData.end()) + return it->uOffset; + + L_PRINT(LOG_ERROR) << CS_XOR("failed to find offset for field with hash: ") << L::AddFlags(LOG_MODE_INT_FORMAT_HEX | LOG_MODE_INT_SHOWBASE) << uHashedFieldName; + CS_ASSERT(false); // schema field not found + return 0U; +} + +// @todo: optimize this, this is really poorly do and can be done much better? +std::uint32_t SCHEMA::GetForeignOffset(const char* szModulenName, const FNV1A_t uHashedClassName, const FNV1A_t uHashedFieldName) +{ + CSchemaSystemTypeScope* pTypeScope = I::SchemaSystem->FindTypeScopeForModule(szModulenName); + if (pTypeScope == nullptr) + return false; + + const int nTableSize = pTypeScope->hashClasses.Count(); + // allocate memory for elements + UtlTSHashHandle_t* pElements = new UtlTSHashHandle_t[nTableSize + 1U]; + const auto nElements = pTypeScope->hashClasses.GetElements(0, nTableSize, pElements); + std::uint32_t uOffset = 0x0; + + for (int i = 0; i < nElements; i++) + { + const UtlTSHashHandle_t hElement = pElements[i]; + + if (hElement == 0) + continue; + + CSchemaClassBinding* pClassBinding = pTypeScope->hashClasses[hElement]; + if (pClassBinding == nullptr) + continue; + + SchemaClassInfoData_t* pDeclaredClassInfo; + pTypeScope->FindDeclaredClass(&pDeclaredClassInfo, pClassBinding->szBinaryName); + + if (pDeclaredClassInfo == nullptr) + continue; + + if (pDeclaredClassInfo->nFieldSize == 0) + continue; + + for (auto j = 0; j < pDeclaredClassInfo->nFieldSize; j++) + { + SchemaClassFieldData_t* pFields = pDeclaredClassInfo->pFields; + if (pFields == nullptr) + continue; + + SchemaClassFieldData_t field = pFields[j]; + if (FNV1A::Hash(pClassBinding->szBinaryName) == uHashedClassName && FNV1A::Hash(field.szName) == uHashedFieldName) + uOffset = field.nSingleInheritanceOffset; + } + } + + if (uOffset == 0x0) + L_PRINT(LOG_WARNING) << CS_XOR("failed to find offset for field with hash: ") << L::AddFlags(LOG_MODE_INT_FORMAT_HEX | LOG_MODE_INT_SHOWBASE) << uHashedFieldName; + + return uOffset; +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/schema.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/schema.h new file mode 100644 index 0000000..e0ba79b --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/schema.h @@ -0,0 +1,45 @@ +#pragma once + + +#include "../common.h" + +// used: fnv-1a hash +#include "../utilities/fnv1a.h" + +#define SCHEMA_ADD_OFFSET(TYPE, NAME, OFFSET) \ + [[nodiscard]] CS_INLINE std::add_lvalue_reference_t NAME() \ + { \ + static const std::uint32_t uOffset = OFFSET; \ + return *reinterpret_cast>(reinterpret_cast(this) + (uOffset)); \ + } + +#define SCHEMA_ADD_POFFSET(TYPE, NAME, OFFSET) \ + [[nodiscard]] CS_INLINE std::add_pointer_t NAME() \ + { \ + const static std::uint32_t uOffset = OFFSET; \ + return reinterpret_cast>(reinterpret_cast(this) + (uOffset)); \ + } + +#define SCHEMA_ADD_FIELD_OFFSET(TYPE, NAME, FIELD, ADDITIONAL) SCHEMA_ADD_OFFSET(TYPE, NAME, SCHEMA::GetOffset(FNV1A::HashConst(FIELD)) + ADDITIONAL) + +#define SCHEMA_ADD_FIELD(TYPE, NAME, FIELD) SCHEMA_ADD_FIELD_OFFSET(TYPE, NAME, FIELD, 0U) + +#define SCHEMA_ADD_PFIELD_OFFSET(TYPE, NAME, FIELD, ADDITIONAL) SCHEMA_ADD_POFFSET(TYPE, NAME, SCHEMA::GetOffset(FNV1A::HashConst(FIELD)) + ADDITIONAL) + +#define SCHEMA_ADD_PFIELD(TYPE, NAME, FIELD) SCHEMA_ADD_PFIELD_OFFSET(TYPE, NAME, FIELD, 0U) + +// @todo: dump enums? +namespace SCHEMA +{ + // store the offset of the field in the class + // dump stored data to file + bool Setup(const wchar_t* wszFileName, const char* szModuleName); + + /* @section: get */ + // get offset of the field in the class + // @note: only client.dll class & fields + [[nodiscard]] std::uint32_t GetOffset(const FNV1A_t uHashedFieldName); + + // get foregin offset from other .dll + [[nodiscard]] std::uint32_t GetForeignOffset(const char* szModulenName, const FNV1A_t uHashedClassName, const FNV1A_t uHashedFieldName); +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/schemav2.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/schemav2.cpp new file mode 100644 index 0000000..d1cfd6f --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/schemav2.cpp @@ -0,0 +1,34 @@ + +#include "schemav2.hpp" +#include "../sdk/interfaces/ischemasystem.h" +#include "../utilities/fnv1a.h" +#include "../utilities/log.h" + +std::optional CSchemaManager::GetSchemaOffsetInternal(const char* moduleName, const char* bindingName, const char* fieldName) { + CSchemaSystemTypeScope* typeScope = I::SchemaSystem->FindTypeScopeForModule(moduleName); + if (!typeScope) { + L_PRINT(LOG_ERROR) << CS_XOR("\"schemamgr\" No type scope found for " << moduleName); + return {}; + } + SchemaClassInfoData_t* classInfo; + + typeScope->FindDeclaredClass(&classInfo, bindingName); + if (!classInfo) { + L_PRINT(LOG_INFO) << CS_XOR("\"schemamgr\" No binding named '{}' has been found in module '{}'."); + + return {}; + } + + uint32_t fieldHash = FNV1A::Hash(fieldName); + for (int i = 0; classInfo->pFields && i < classInfo->nFieldSize; ++i) { + auto& field = classInfo->pFields[i]; + if (FNV1A::Hash(field.szName) == fieldHash) { + L_PRINT(LOG_WARNING) << CS_XOR("\"schemamgr\" offset" << bindingName << "field: " << fieldName); + + return field.nSingleInheritanceOffset; + } + } + L_PRINT(LOG_ERROR) << CS_XOR("\"schemamgr\" No field named " << fieldName << "in binding: " << bindingName); + + return {}; +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/schemav2.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/schemav2.hpp new file mode 100644 index 0000000..05b7e96 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/schemav2.hpp @@ -0,0 +1,38 @@ +#pragma once + +#include "pointer/pointer.hpp" + +#include +class CSchemaManager { + public: + static CSchemaManager& Get() { + static CSchemaManager inst; + return inst; + } + + static auto GetSchemaOffset(const char* moduleName, const char* bindingName, const char* fieldName) { + return Get().GetSchemaOffsetInternal(moduleName, bindingName, fieldName); + } + + private: + std::optional GetSchemaOffsetInternal(const char* moduleName, const char* bindingName, const char* fieldName); +}; + +#define SCHEMA_EXTENDED(type, name, module_name, binding_name, field_name, extra_offset) \ + std::add_lvalue_reference_t name() const { \ + static const auto offset = CSchemaManager::GetSchemaOffset(module_name, binding_name, field_name); \ + if (offset) return CPointer(this).GetField(offset.value() + extra_offset); \ + static type null{}; \ + return null; \ + } + +#define SCHEMA(type, name, binding_name, field_name) SCHEMA_EXTENDED(type, name, CConstants::CLIENT_LIB, binding_name, field_name, 0) + +#define PSCHEMA_EXTENDED(type, name, module_name, binding_name, field_name, extra_offset) \ + std::add_pointer_t name() const { \ + static const auto offset = CSchemaManager::GetSchemaOffset(module_name, binding_name, field_name); \ + if (offset) return CPointer(this).GetFieldPtr(offset.value() + extra_offset).Get>(); \ + return nullptr; \ + } + +#define PSCHEMA(type, name, binding_name, field_name) PSCHEMA_EXTENDED(type, name, CConstants::CLIENT_LIB, binding_name, field_name, 0) diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/sdk.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/sdk.cpp new file mode 100644 index 0000000..9381307 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/sdk.cpp @@ -0,0 +1,18 @@ +#include "sdk.h" + +// used: getmodulebasehandle +#include "../utilities/memory.h" + +bool SDK::Setup() +{ + bool bSuccess = true; + + const void* hTier0Lib = MEM::GetModuleBaseHandle(TIER0_DLL); + if (hTier0Lib == nullptr) + return false; + + fnConColorMsg = reinterpret_cast(MEM::GetExportAddress(hTier0Lib, CS_XOR("?ConColorMsg@@YAXAEBVColor@@PEBDZZ"))); + bSuccess &= fnConColorMsg != nullptr; + + return bSuccess; +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/sdk.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/sdk.h new file mode 100644 index 0000000..be69d8f --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/sdk.h @@ -0,0 +1,51 @@ +#pragma once + +// used: viewmatrix_t +#include "../sdk/datatypes/matrix.h" +// used: color_t +#include "../sdk/datatypes/color.h" + +#pragma region sdk_definitions +// @source: master/public/worldsize.h +// world coordinate bounds +#define MAX_COORD_FLOAT 16'384.f +#define MIN_COORD_FLOAT (-MAX_COORD_FLOAT) + +// @source: master/public/vphysics_interface.h +// coordinates are in HL units. 1 unit == 1 inch +#define METERS_PER_INCH 0.0254f +#pragma endregion + +class CCSPlayerController; +class C_CSPlayerPawn; +class CUserCmd; + +namespace SDK +{ + // capture game's exported functions + bool Setup(); + + inline ViewMatrix_t ViewMatrix = ViewMatrix_t(); + inline Vector_t CameraPosition = Vector_t(); + inline CCSPlayerController* LocalController = nullptr; + inline C_CSPlayerPawn* LocalPawn = nullptr; + inline CUserCmd* Cmd = nullptr; + + inline void(CS_CDECL* fnConColorMsg)(const Color_t&, const char*, ...) = nullptr; +} + +class Cheat +{ +public: + bool onground = false; + bool alive = false; + bool canShot = false; + bool canShotRevolver = false; + unsigned int tickbase = 0; + + QAngle_t viewangles = QAngle_t(0, 0, 0); + + +}; + +inline Cheat* cheat = new Cheat(); \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/silentvmt/InlineHook.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/silentvmt/InlineHook.cpp new file mode 100644 index 0000000..a5d9dcd --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/silentvmt/InlineHook.cpp @@ -0,0 +1,55 @@ +#include "InlineHook.h" +#include +#include +#include +#include +#include "../cstrike/core/spoofcall/lazy_importer.hpp" +bool detour(BYTE* src, BYTE* dst, const uintptr_t len) +{ + if (len < 5) return false; + DWORD curProtection; + LI_FN(VirtualProtect).safe()(src, len, PAGE_EXECUTE_READWRITE, &curProtection); + memset(src, 0x90, len); + uintptr_t relativeAddress = ((uintptr_t)dst - (uintptr_t)src) - 5; + *(BYTE*)src = 0xE9; + *(uintptr_t*)((uintptr_t)src + 1) = relativeAddress; + DWORD temp; + LI_FN(VirtualProtect).safe()(src, len, curProtection, &temp); + return true; +} + +BYTE* trampHook(BYTE* src, BYTE* dst, const uintptr_t len) +{ + if (len < 5) return 0; + void* gateway = LI_FN(VirtualAlloc).safe()(0, len + 5, MEM_COMMIT | MEM_RESERVE, PAGE_EXECUTE_READWRITE); + memcpy(gateway, src, len); + intptr_t gatewayRelativeAddr = ((intptr_t)src - (intptr_t)gateway) - 5; + *(char*)((intptr_t)gateway + len) = 0xE9; + *(intptr_t*)((intptr_t)gateway + len + 1) = gatewayRelativeAddr; + // detour(src, dst, len); + return (BYTE*) gateway; +} + +void InlineHook::Hook(void* src, void* dest, const size_t len) +{ + const BYTE* src_bytes = (BYTE*) src; + + for(int i = 0; i < len; i++) + og_bytes.push_back(src_bytes[i]); + + source = (DWORD) src; + + original = (DWORD)trampHook((BYTE*) src, (BYTE*) dest, len); + + if(original) + bEnabled = true; +} + +void InlineHook::Unhook() +{ + BYTE* bytes = (BYTE*) source; + + int i = 0; + for(const BYTE& b : og_bytes) + bytes[i++] = b; +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/silentvmt/InlineHook.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/silentvmt/InlineHook.h new file mode 100644 index 0000000..4730472 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/silentvmt/InlineHook.h @@ -0,0 +1,56 @@ +#pragma once + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +class InlineHook +{ + std::vector og_bytes; + DWORD original = 0; + DWORD source = 0; + bool bEnabled = false; +public: + InlineHook(){} + + void Hook(void* src, void* dest, const size_t len); + void Unhook(); + + template + T GetOg() + { + return (T)original; + } +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/silentvmt/ShadowVMT.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/silentvmt/ShadowVMT.cpp new file mode 100644 index 0000000..414b7f7 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/silentvmt/ShadowVMT.cpp @@ -0,0 +1,60 @@ +#include "ShadowVMT.h" +#include +#include +#include +#include "../spoofcall/lazy_importer.hpp" +ShadowVMT::ShadowVMT() + : class_base(nullptr), vftbl_len(0), new_vftbl(nullptr), old_vftbl(nullptr) +{ +} +ShadowVMT::ShadowVMT(void* base) + : class_base(base), vftbl_len(0), new_vftbl(nullptr), old_vftbl(nullptr) +{ +} +ShadowVMT::~ShadowVMT() +{ + UnhookAll(); +} + +bool ShadowVMT::Setup(void* base) +{ + if(base != nullptr) + class_base = base; + + if(class_base == nullptr) + return false; + + old_vftbl = *(std::uintptr_t**)class_base; + vftbl_len = CalcVtableLength(old_vftbl) * sizeof(std::uintptr_t); + + if(vftbl_len == 0) + return false; + + new_vftbl = new std::uintptr_t[vftbl_len + 1](); + + std::memcpy(&new_vftbl[1], old_vftbl, vftbl_len * sizeof(std::uintptr_t)); + + try { + DWORD old; + LI_FN(VirtualProtect).safe()(class_base, sizeof(uintptr_t), PAGE_READWRITE, &old); + new_vftbl[0] = old_vftbl[-1]; + *(std::uintptr_t**)class_base = &new_vftbl[1]; + LI_FN(VirtualProtect).safe()(class_base, sizeof(uintptr_t), old, &old); + } catch(...) { + delete[] new_vftbl; + return false; + } + + return true; +} +std::size_t ShadowVMT::CalcVtableLength(std::uintptr_t* vftbl_start) +{ + MEMORY_BASIC_INFORMATION memInfo = { NULL }; + int m_nSize = -1; + do { + m_nSize++; + LI_FN( VirtualQuery).safe()(reinterpret_cast(vftbl_start[m_nSize]), &memInfo, sizeof(memInfo)); + } while (memInfo.Protect == PAGE_EXECUTE_READ || memInfo.Protect == PAGE_EXECUTE_READWRITE); + + return m_nSize; +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/silentvmt/ShadowVMT.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/silentvmt/ShadowVMT.h new file mode 100644 index 0000000..958e257 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/silentvmt/ShadowVMT.h @@ -0,0 +1,84 @@ +#pragma once + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +class ShadowVMT +{ +public: + ShadowVMT(); + ShadowVMT(void* base); + ~ShadowVMT(); + + bool Setup(void* class_base = nullptr); + + template + void HookIndex(int index, T fun) + { + new_vftbl[index + 1] = reinterpret_cast(fun); + } + void UnhookIndex(int index) + { + new_vftbl[index] = old_vftbl[index]; + } + void UnhookAll() + { + try { + if (old_vftbl != nullptr) { + DWORD old; + VirtualProtect(class_base, sizeof(uintptr_t), PAGE_READWRITE, &old); + *(std::uintptr_t**)class_base = old_vftbl; + old_vftbl = nullptr; + VirtualProtect(class_base, sizeof(uintptr_t), old, &old); + } + } + catch (...) { + } + } + + template + T GetOg(int index) + { + return (T)old_vftbl[index]; + } + +private: + inline std::size_t CalcVtableLength(std::uintptr_t* vftbl_start); + + void* class_base; + std::size_t vftbl_len; + std::uintptr_t* new_vftbl; + std::uintptr_t* old_vftbl; +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/SpoofCall.asm b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/SpoofCall.asm new file mode 100644 index 0000000..93fb569 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/SpoofCall.asm @@ -0,0 +1,30 @@ + PUBLIC _spoofer_stub + + .code + + _spoofer_stub PROC + pop r11 + add rsp, 8 + mov rax, [rsp + 24] + + mov r10, [rax] + mov [rsp], r10 + + mov r10, [rax + 8] + mov [rax + 8], r11 + + mov [rax + 16], rbx + lea rbx, fixup + mov [rax], rbx + mov rbx, rax + + jmp r10 + + fixup: + sub rsp, 16 + mov rcx, rbx + mov rbx, [rcx + 16] + jmp QWORD PTR [rcx + 8] + _spoofer_stub ENDP + + END \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/Utils.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/Utils.h new file mode 100644 index 0000000..a1acb16 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/Utils.h @@ -0,0 +1,120 @@ +#include + +namespace detail +{ + extern "C" void* _spoofer_stub(); + + template + static inline auto shellcode_stub_helper( + const void* shell, + Args... args + ) -> Ret + { + auto fn = (Ret(*)(Args...))(shell); + return fn(args...); + } + + template + struct argument_remapper + { + // At least 5 params + template< + typename Ret, + typename First, + typename Second, + typename Third, + typename Fourth, + typename... Pack + > + static auto do_call( + const void* shell, + void* shell_param, + First first, + Second second, + Third third, + Fourth fourth, + Pack... pack + ) -> Ret + { + return shellcode_stub_helper< + Ret, + First, + Second, + Third, + Fourth, + void*, + void*, + Pack... + >( + shell, + first, + second, + third, + fourth, + shell_param, + nullptr, + pack... + ); + } + }; + + template + struct argument_remapper> + { + // 4 or less params + template< + typename Ret, + typename First = void*, + typename Second = void*, + typename Third = void*, + typename Fourth = void* + > + static auto do_call( + const void* shell, + void* shell_param, + First first = First{}, + Second second = Second{}, + Third third = Third{}, + Fourth fourth = Fourth{} + ) -> Ret + { + return shellcode_stub_helper< + Ret, + First, + Second, + Third, + Fourth, + void*, + void* + >( + shell, + first, + second, + third, + fourth, + shell_param, + nullptr + ); + } + }; +} + + +template +static inline auto spoof_call( + const void* trampoline, + Ret(*fn)(Args...), + Args... args +) -> Ret +{ + struct shell_params + { + const void* trampoline; + void* function; + void* rbx; + }; + + shell_params p{ trampoline, reinterpret_cast(fn) }; + using mapper = detail::argument_remapper; + return mapper::template do_call((const void*)&detail::_spoofer_stub, &p, args...); +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/callstack.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/callstack.cpp new file mode 100644 index 0000000..e69de29 diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/callstack.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/callstack.h new file mode 100644 index 0000000..e69de29 diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/callstack.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/callstack.hpp new file mode 100644 index 0000000..e69de29 diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/invoker.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/invoker.h new file mode 100644 index 0000000..240ef9f --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/invoker.h @@ -0,0 +1,23 @@ +#pragma once + +#include + +#include "Utils.h" + +class RetSpoofInvoker { +private: + void* gadgetAddress{ 0 }; +public: + void init(std::uintptr_t gadgetAddress) noexcept + { + this->gadgetAddress = reinterpret_cast(gadgetAddress); + } + + template + ReturnType invokeFastcall(std::uintptr_t functionAddress, Args&&... args) const noexcept + { + return detail::shellcode_stub_helper::spoof_call(this->gadgetAddress, reinterpret_cast(functionAddress), std::forward(args)...); + } +}; + +inline RetSpoofInvoker invoker; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/lazy_importer.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/lazy_importer.hpp new file mode 100644 index 0000000..b8249f8 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/lazy_importer.hpp @@ -0,0 +1,723 @@ +/* + * Copyright 2018-2022 Justas Masiulis + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// === FAQ === documentation is available at https://github.com/JustasMasiulis/lazy_importer +// * Code doesn't compile with errors about pointer conversion: +// - Try using `nullptr` instead of `NULL` or call `get()` instead of using the overloaded operator() +// * Lazy importer can't find the function I want: +// - Double check that the module in which it's located in is actually loaded +// - Try #define LAZY_IMPORTER_CASE_INSENSITIVE +// This will start using case insensitive comparison globally +// - Try #define LAZY_IMPORTER_RESOLVE_FORWARDED_EXPORTS +// This will enable forwarded export resolution globally instead of needing explicit `forwarded()` calls + +#ifndef LAZY_IMPORTER_HPP +#define LAZY_IMPORTER_HPP + + +#define LI_FN(name) ::li::detail::lazy_function() + +#define LI_FN_DEF(name) ::li::detail::lazy_function() + +#define LI_MODULE(name) ::li::detail::lazy_module() + +#ifndef LAZY_IMPORTER_CPP_FORWARD +#ifdef LAZY_IMPORTER_NO_CPP_FORWARD +#define LAZY_IMPORTER_CPP_FORWARD(t, v) v +#else +#include +#define LAZY_IMPORTER_CPP_FORWARD(t, v) std::forward( v ) +#endif +#endif + +#include + +#ifndef LAZY_IMPORTER_NO_FORCEINLINE +#if defined(_MSC_VER) +#define LAZY_IMPORTER_FORCEINLINE __forceinline +#elif defined(__GNUC__) && __GNUC__ > 3 +#define LAZY_IMPORTER_FORCEINLINE inline __attribute__((__always_inline__)) +#else +#define LAZY_IMPORTER_FORCEINLINE inline +#endif +#else +#define LAZY_IMPORTER_FORCEINLINE inline +#endif + + +#ifdef LAZY_IMPORTER_CASE_INSENSITIVE +#define LAZY_IMPORTER_CASE_SENSITIVITY false +#else +#define LAZY_IMPORTER_CASE_SENSITIVITY true +#endif + +#define LAZY_IMPORTER_STRINGIZE(x) #x +#define LAZY_IMPORTER_STRINGIZE_EXPAND(x) LAZY_IMPORTER_STRINGIZE(x) + +#define LAZY_IMPORTER_KHASH(str) ::li::detail::khash(str, \ + ::li::detail::khash_impl( __TIME__ __DATE__ LAZY_IMPORTER_STRINGIZE_EXPAND(__LINE__) LAZY_IMPORTER_STRINGIZE_EXPAND(__COUNTER__), 2166136261 )) + +namespace li { namespace detail { + + namespace win { + + struct LIST_ENTRY_T { + const char* Flink; + const char* Blink; + }; + + struct UNICODE_STRING_T { + unsigned short Length; + unsigned short MaximumLength; + wchar_t* Buffer; + }; + + struct PEB_LDR_DATA_T { + unsigned long Length; + unsigned long Initialized; + const char* SsHandle; + LIST_ENTRY_T InLoadOrderModuleList; + }; + + struct PEB_T { + unsigned char Reserved1[2]; + unsigned char BeingDebugged; + unsigned char Reserved2[1]; + const char* Reserved3[2]; + PEB_LDR_DATA_T* Ldr; + }; + + struct LDR_DATA_TABLE_ENTRY_T { + LIST_ENTRY_T InLoadOrderLinks; + LIST_ENTRY_T InMemoryOrderLinks; + LIST_ENTRY_T InInitializationOrderLinks; + const char* DllBase; + const char* EntryPoint; + union { + unsigned long SizeOfImage; + const char* _dummy; + }; + UNICODE_STRING_T FullDllName; + UNICODE_STRING_T BaseDllName; + + LAZY_IMPORTER_FORCEINLINE const LDR_DATA_TABLE_ENTRY_T* + load_order_next() const noexcept + { + return reinterpret_cast( + InLoadOrderLinks.Flink); + } + }; + + struct IMAGE_DOS_HEADER { // DOS .EXE header + unsigned short e_magic; // Magic number + unsigned short e_cblp; // Bytes on last page of file + unsigned short e_cp; // Pages in file + unsigned short e_crlc; // Relocations + unsigned short e_cparhdr; // Size of header in paragraphs + unsigned short e_minalloc; // Minimum extra paragraphs needed + unsigned short e_maxalloc; // Maximum extra paragraphs needed + unsigned short e_ss; // Initial (relative) SS value + unsigned short e_sp; // Initial SP value + unsigned short e_csum; // Checksum + unsigned short e_ip; // Initial IP value + unsigned short e_cs; // Initial (relative) CS value + unsigned short e_lfarlc; // File address of relocation table + unsigned short e_ovno; // Overlay number + unsigned short e_res[4]; // Reserved words + unsigned short e_oemid; // OEM identifier (for e_oeminfo) + unsigned short e_oeminfo; // OEM information; e_oemid specific + unsigned short e_res2[10]; // Reserved words + long e_lfanew; // File address of new exe header + }; + + struct IMAGE_FILE_HEADER { + unsigned short Machine; + unsigned short NumberOfSections; + unsigned long TimeDateStamp; + unsigned long PointerToSymbolTable; + unsigned long NumberOfSymbols; + unsigned short SizeOfOptionalHeader; + unsigned short Characteristics; + }; + + struct IMAGE_EXPORT_DIRECTORY { + unsigned long Characteristics; + unsigned long TimeDateStamp; + unsigned short MajorVersion; + unsigned short MinorVersion; + unsigned long Name; + unsigned long Base; + unsigned long NumberOfFunctions; + unsigned long NumberOfNames; + unsigned long AddressOfFunctions; // RVA from base of image + unsigned long AddressOfNames; // RVA from base of image + unsigned long AddressOfNameOrdinals; // RVA from base of image + }; + + struct IMAGE_DATA_DIRECTORY { + unsigned long VirtualAddress; + unsigned long Size; + }; + + struct IMAGE_OPTIONAL_HEADER64 { + unsigned short Magic; + unsigned char MajorLinkerVersion; + unsigned char MinorLinkerVersion; + unsigned long SizeOfCode; + unsigned long SizeOfInitializedData; + unsigned long SizeOfUninitializedData; + unsigned long AddressOfEntryPoint; + unsigned long BaseOfCode; + unsigned long long ImageBase; + unsigned long SectionAlignment; + unsigned long FileAlignment; + unsigned short MajorOperatingSystemVersion; + unsigned short MinorOperatingSystemVersion; + unsigned short MajorImageVersion; + unsigned short MinorImageVersion; + unsigned short MajorSubsystemVersion; + unsigned short MinorSubsystemVersion; + unsigned long Win32VersionValue; + unsigned long SizeOfImage; + unsigned long SizeOfHeaders; + unsigned long CheckSum; + unsigned short Subsystem; + unsigned short DllCharacteristics; + unsigned long long SizeOfStackReserve; + unsigned long long SizeOfStackCommit; + unsigned long long SizeOfHeapReserve; + unsigned long long SizeOfHeapCommit; + unsigned long LoaderFlags; + unsigned long NumberOfRvaAndSizes; + IMAGE_DATA_DIRECTORY DataDirectory[16]; + }; + + struct IMAGE_OPTIONAL_HEADER32 { + unsigned short Magic; + unsigned char MajorLinkerVersion; + unsigned char MinorLinkerVersion; + unsigned long SizeOfCode; + unsigned long SizeOfInitializedData; + unsigned long SizeOfUninitializedData; + unsigned long AddressOfEntryPoint; + unsigned long BaseOfCode; + unsigned long BaseOfData; + unsigned long ImageBase; + unsigned long SectionAlignment; + unsigned long FileAlignment; + unsigned short MajorOperatingSystemVersion; + unsigned short MinorOperatingSystemVersion; + unsigned short MajorImageVersion; + unsigned short MinorImageVersion; + unsigned short MajorSubsystemVersion; + unsigned short MinorSubsystemVersion; + unsigned long Win32VersionValue; + unsigned long SizeOfImage; + unsigned long SizeOfHeaders; + unsigned long CheckSum; + unsigned short Subsystem; + unsigned short DllCharacteristics; + unsigned long SizeOfStackReserve; + unsigned long SizeOfStackCommit; + unsigned long SizeOfHeapReserve; + unsigned long SizeOfHeapCommit; + unsigned long LoaderFlags; + unsigned long NumberOfRvaAndSizes; + IMAGE_DATA_DIRECTORY DataDirectory[16]; + }; + + struct IMAGE_NT_HEADERS { + unsigned long Signature; + IMAGE_FILE_HEADER FileHeader; +#ifdef _WIN64 + IMAGE_OPTIONAL_HEADER64 OptionalHeader; +#else + IMAGE_OPTIONAL_HEADER32 OptionalHeader; +#endif + }; + + } // namespace win + + struct forwarded_hashes { + unsigned module_hash; + unsigned function_hash; + }; + + // 64 bit integer where 32 bits are used for the hash offset + // and remaining 32 bits are used for the hash computed using it + using offset_hash_pair = unsigned long long; + + LAZY_IMPORTER_FORCEINLINE constexpr unsigned get_hash(offset_hash_pair pair) noexcept { return ( pair & 0xFFFFFFFF ); } + + LAZY_IMPORTER_FORCEINLINE constexpr unsigned get_offset(offset_hash_pair pair) noexcept { return static_cast( pair >> 32 ); } + + template + LAZY_IMPORTER_FORCEINLINE constexpr unsigned hash_single(unsigned value, char c) noexcept + { + return (value ^ static_cast((!CaseSensitive && c >= 'A' && c <= 'Z') ? (c | (1 << 5)) : c)) * 16777619; + } + + LAZY_IMPORTER_FORCEINLINE constexpr unsigned + khash_impl(const char* str, unsigned value) noexcept + { + return (*str ? khash_impl(str + 1, hash_single(value, *str)) : value); + } + + LAZY_IMPORTER_FORCEINLINE constexpr offset_hash_pair khash( + const char* str, unsigned offset) noexcept + { + return ((offset_hash_pair{ offset } << 32) | khash_impl(str, offset)); + } + + template + LAZY_IMPORTER_FORCEINLINE unsigned hash(const CharT* str, unsigned offset) noexcept + { + unsigned value = offset; + + for(;;) { + char c = *str++; + if(!c) + return value; + value = hash_single(value, c); + } + } + + LAZY_IMPORTER_FORCEINLINE unsigned hash( + const win::UNICODE_STRING_T& str, unsigned offset) noexcept + { + auto first = str.Buffer; + const auto last = first + (str.Length / sizeof(wchar_t)); + auto value = offset; + for(; first != last; ++first) + value = hash_single(value, static_cast(*first)); + + return value; + } + + LAZY_IMPORTER_FORCEINLINE forwarded_hashes hash_forwarded( + const char* str, unsigned offset) noexcept + { + forwarded_hashes res{ offset, offset }; + + for(; *str != '.'; ++str) + res.module_hash = hash_single(res.module_hash, *str); + + ++str; + + for(; *str; ++str) + res.function_hash = hash_single(res.function_hash, *str); + + return res; + } + + // some helper functions + LAZY_IMPORTER_FORCEINLINE const win::PEB_T* peb() noexcept + { +#if defined(_M_X64) || defined(__amd64__) +#if defined(_MSC_VER) + return reinterpret_cast(__readgsqword(0x60)); +#else + const win::PEB_T* ptr; + __asm__ __volatile__ ("mov %%gs:0x60, %0" : "=r"(ptr)); + return ptr; +#endif +#elif defined(_M_IX86) || defined(__i386__) +#if defined(_MSC_VER) + return reinterpret_cast(__readfsdword(0x30)); +#else + const win::PEB_T* ptr; + __asm__ __volatile__ ("mov %%fs:0x30, %0" : "=r"(ptr)); + return ptr; +#endif +#elif defined(_M_ARM) || defined(__arm__) + return *reinterpret_cast(_MoveFromCoprocessor(15, 0, 13, 0, 2) + 0x30); +#elif defined(_M_ARM64) || defined(__aarch64__) + return *reinterpret_cast(__getReg(18) + 0x60); +#elif defined(_M_IA64) || defined(__ia64__) + return *reinterpret_cast(static_cast(_rdteb()) + 0x60); +#else +#error Unsupported platform. Open an issue and Ill probably add support. +#endif + } + + LAZY_IMPORTER_FORCEINLINE const win::PEB_LDR_DATA_T* ldr() + { + return reinterpret_cast(peb()->Ldr); + } + + LAZY_IMPORTER_FORCEINLINE const win::IMAGE_NT_HEADERS* nt_headers( + const char* base) noexcept + { + return reinterpret_cast( + base + reinterpret_cast(base)->e_lfanew); + } + + LAZY_IMPORTER_FORCEINLINE const win::IMAGE_EXPORT_DIRECTORY* image_export_dir( + const char* base) noexcept + { + return reinterpret_cast( + base + nt_headers(base)->OptionalHeader.DataDirectory->VirtualAddress); + } + + LAZY_IMPORTER_FORCEINLINE const win::LDR_DATA_TABLE_ENTRY_T* ldr_data_entry() noexcept + { + return reinterpret_cast( + ldr()->InLoadOrderModuleList.Flink); + } + + struct exports_directory { + unsigned long _ied_size; + const char* _base; + const win::IMAGE_EXPORT_DIRECTORY* _ied; + + public: + using size_type = unsigned long; + + LAZY_IMPORTER_FORCEINLINE + exports_directory(const char* base) noexcept : _base(base) + { + const auto ied_data_dir = nt_headers(base)->OptionalHeader.DataDirectory[0]; + _ied = reinterpret_cast( + base + ied_data_dir.VirtualAddress); + _ied_size = ied_data_dir.Size; + } + + LAZY_IMPORTER_FORCEINLINE explicit operator bool() const noexcept + { + return reinterpret_cast(_ied) != _base; + } + + LAZY_IMPORTER_FORCEINLINE size_type size() const noexcept + { + return _ied->NumberOfNames; + } + + LAZY_IMPORTER_FORCEINLINE const char* base() const noexcept { return _base; } + LAZY_IMPORTER_FORCEINLINE const win::IMAGE_EXPORT_DIRECTORY* ied() const noexcept + { + return _ied; + } + + LAZY_IMPORTER_FORCEINLINE const char* name(size_type index) const noexcept + { + return _base + reinterpret_cast(_base + _ied->AddressOfNames)[index]; + } + + LAZY_IMPORTER_FORCEINLINE const char* address(size_type index) const noexcept + { + const auto* const rva_table = + reinterpret_cast(_base + _ied->AddressOfFunctions); + + const auto* const ord_table = reinterpret_cast( + _base + _ied->AddressOfNameOrdinals); + + return _base + rva_table[ord_table[index]]; + } + + LAZY_IMPORTER_FORCEINLINE bool is_forwarded( + const char* export_address) const noexcept + { + const auto ui_ied = reinterpret_cast(_ied); + return (export_address > ui_ied && export_address < ui_ied + _ied_size); + } + }; + + struct safe_module_enumerator { + using value_type = const detail::win::LDR_DATA_TABLE_ENTRY_T; + value_type* value; + value_type* head; + + LAZY_IMPORTER_FORCEINLINE safe_module_enumerator() noexcept + : safe_module_enumerator(ldr_data_entry()) + {} + + LAZY_IMPORTER_FORCEINLINE + safe_module_enumerator(const detail::win::LDR_DATA_TABLE_ENTRY_T* ldr) noexcept + : value(ldr->load_order_next()), head(value) + {} + + LAZY_IMPORTER_FORCEINLINE void reset() noexcept + { + value = head->load_order_next(); + } + + LAZY_IMPORTER_FORCEINLINE bool next() noexcept + { + value = value->load_order_next(); + + return value != head && value->DllBase; + } + }; + + struct unsafe_module_enumerator { + using value_type = const detail::win::LDR_DATA_TABLE_ENTRY_T*; + value_type value; + + LAZY_IMPORTER_FORCEINLINE unsafe_module_enumerator() noexcept + : value(ldr_data_entry()) + {} + + LAZY_IMPORTER_FORCEINLINE void reset() noexcept { value = ldr_data_entry(); } + + LAZY_IMPORTER_FORCEINLINE bool next() noexcept + { + value = value->load_order_next(); + return true; + } + }; + + // provides the cached functions which use Derive classes methods + template + class lazy_base { + protected: + // This function is needed because every templated function + // with different args has its own static buffer + LAZY_IMPORTER_FORCEINLINE static void*& _cache() noexcept + { + static void* value = nullptr; + return value; + } + + public: + template + LAZY_IMPORTER_FORCEINLINE static T safe() noexcept + { + return Derived::template get(); + } + + template + LAZY_IMPORTER_FORCEINLINE static T cached() noexcept + { + auto& cached = _cache(); + if(!cached) + cached = Derived::template get(); + + return (T)(cached); + } + + template + LAZY_IMPORTER_FORCEINLINE static T safe_cached() noexcept + { + return cached(); + } + }; + + template + struct lazy_module : lazy_base> { + template + LAZY_IMPORTER_FORCEINLINE static T get() noexcept + { + Enum e; + do { + if(hash(e.value->BaseDllName, get_offset(OHP)) == get_hash(OHP)) + return (T)(e.value->DllBase); + } while(e.next()); + return {}; + } + + template + LAZY_IMPORTER_FORCEINLINE static T in(Ldr ldr) noexcept + { + safe_module_enumerator e(reinterpret_cast(ldr)); + do { + if(hash(e.value->BaseDllName, get_offset(OHP)) == get_hash(OHP)) + return (T)(e.value->DllBase); + } while(e.next()); + return {}; + } + + template + LAZY_IMPORTER_FORCEINLINE static T in_cached(Ldr ldr) noexcept + { + auto& cached = lazy_base>::_cache(); + if(!cached) + cached = in(ldr); + + return (T)(cached); + } + }; + + template + struct lazy_function : lazy_base, T> { + using base_type = lazy_base, T>; + + template + LAZY_IMPORTER_FORCEINLINE decltype(auto) operator()(Args&&... args) const + { +#ifndef LAZY_IMPORTER_CACHE_OPERATOR_PARENS + return get()(LAZY_IMPORTER_CPP_FORWARD(Args, args)...); +#else + return this->cached()(LAZY_IMPORTER_CPP_FORWARD(Args, args)...); +#endif + } + + template + LAZY_IMPORTER_FORCEINLINE static F get() noexcept + { + // for backwards compatability. + // Before 2.0 it was only possible to resolve forwarded exports when + // this macro was enabled +#ifdef LAZY_IMPORTER_RESOLVE_FORWARDED_EXPORTS + return forwarded(); +#else + + Enum e; + + do { +#ifdef LAZY_IMPORTER_HARDENED_MODULE_CHECKS + if(!e.value->DllBase || !e.value->FullDllName.Length) + continue; +#endif + + const exports_directory exports(e.value->DllBase); + + if(exports) { + auto export_index = exports.size(); + while(export_index--) + if(hash(exports.name(export_index), get_offset(OHP)) == get_hash(OHP)) + return (F)(exports.address(export_index)); + } + } while(e.next()); + return {}; +#endif + } + + template + LAZY_IMPORTER_FORCEINLINE static F forwarded() noexcept + { + detail::win::UNICODE_STRING_T name; + forwarded_hashes hashes{ 0, get_hash(OHP) }; + + Enum e; + do { + name = e.value->BaseDllName; + name.Length -= 8; // get rid of .dll extension + + if(!hashes.module_hash || hash(name, get_offset(OHP)) == hashes.module_hash) { + const exports_directory exports(e.value->DllBase); + + if(exports) { + auto export_index = exports.size(); + while(export_index--) + if(hash(exports.name(export_index), get_offset(OHP)) == hashes.function_hash) { + const auto addr = exports.address(export_index); + + if(exports.is_forwarded(addr)) { + hashes = hash_forwarded( + reinterpret_cast(addr), + get_offset(OHP)); + + e.reset(); + break; + } + return (F)(addr); + } + } + } + } while(e.next()); + return {}; + } + + template + LAZY_IMPORTER_FORCEINLINE static F forwarded_safe() noexcept + { + return forwarded(); + } + + template + LAZY_IMPORTER_FORCEINLINE static F forwarded_cached() noexcept + { + auto& value = base_type::_cache(); + if(!value) + value = forwarded(); + return (F)(value); + } + + template + LAZY_IMPORTER_FORCEINLINE static F forwarded_safe_cached() noexcept + { + return forwarded_cached(); + } + + template + LAZY_IMPORTER_FORCEINLINE static F in(Module m) noexcept + { + if(IsSafe && !m) + return {}; + + const exports_directory exports((const char*)(m)); + if(IsSafe && !exports) + return {}; + + for(unsigned long i{};; ++i) { + if(IsSafe && i == exports.size()) + break; + + if(hash(exports.name(i), get_offset(OHP)) == get_hash(OHP)) + return (F)(exports.address(i)); + } + return {}; + } + + template + LAZY_IMPORTER_FORCEINLINE static F in_safe(Module m) noexcept + { + return in(m); + } + + template + LAZY_IMPORTER_FORCEINLINE static F in_cached(Module m) noexcept + { + auto& value = base_type::_cache(); + if(!value) + value = in(m); + return (F)(value); + } + + template + LAZY_IMPORTER_FORCEINLINE static F in_safe_cached(Module m) noexcept + { + return in_cached(m); + } + + template + LAZY_IMPORTER_FORCEINLINE static F nt() noexcept + { + return in(ldr_data_entry()->load_order_next()->DllBase); + } + + template + LAZY_IMPORTER_FORCEINLINE static F nt_safe() noexcept + { + return in_safe(ldr_data_entry()->load_order_next()->DllBase); + } + + template + LAZY_IMPORTER_FORCEINLINE static F nt_cached() noexcept + { + return in_cached(ldr_data_entry()->load_order_next()->DllBase); + } + + template + LAZY_IMPORTER_FORCEINLINE static F nt_safe_cached() noexcept + { + return in_safe_cached(ldr_data_entry()->load_order_next()->DllBase); + } + }; + +}} // namespace li::detail + +#endif // include guard diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/syscall.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/syscall.h new file mode 100644 index 0000000..911ccdf --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/syscall.h @@ -0,0 +1,456 @@ +#pragma once +#ifndef DIRECT_SYSCALL_HPP +#define DIRECT_SYSCALL_HPP + +#include +#include +#include + +#ifndef SYSCALL_NO_FORCEINLINE +#if defined(_MSC_VER) +#define SYSCALL_FORCEINLINE __forceinline +#endif +#else +#define SYSCALL_FORCEINLINE inline +#endif + +#include +#include +#include + +#define SYSCALL_HASH_CT(str) \ + []() [[msvc::forceinline]] { \ + constexpr uint32_t hash_out{::syscall::fnv1a::hash_ctime(str)}; \ + \ + return hash_out; \ + }() + +#define SYSCALL_HASH(str) ::syscall::fnv1a::hash_rtime(str) + +#define INVOKE_LAZY_FN(type, export_name, ...) \ + [&]() [[msvc::forceinline]] { \ + constexpr uint32_t export_hash{::syscall::fnv1a::hash_ctime(#export_name)}; \ + \ + return syscall::invoke_lazy_import(export_hash, __VA_ARGS__); \ + }() + +#define INVOKE_SYSCALL(type, export_name, ...) \ + [&]() [[msvc::forceinline]] { \ + constexpr uint32_t export_hash{::syscall::fnv1a::hash_ctime(#export_name)}; \ + \ + return syscall::invoke_syscall(export_hash, __VA_ARGS__); \ + }() + +namespace syscall { + namespace nt { + typedef struct _PEB_LDR_DATA { + ULONG Length; + BOOLEAN Initialized; + PVOID SsHandle; + LIST_ENTRY InLoadOrderModuleList; + LIST_ENTRY InMemoryOrderModuleList; + LIST_ENTRY InInitializationOrderModuleList; + } PEB_LDR_DATA, * PPEB_LDR_DATA; + + struct UNICODE_STRING { + uint16_t Length; + uint16_t MaximumLength; + wchar_t* Buffer; + }; + + typedef struct _LDR_MODULE { + LIST_ENTRY InLoadOrderModuleList; + LIST_ENTRY InMemoryOrderModuleList; + LIST_ENTRY InInitializationOrderModuleList; + PVOID BaseAddress; + PVOID EntryPoint; + ULONG SizeOfImage; + UNICODE_STRING FullDllName; + UNICODE_STRING BaseDllName; + ULONG Flags; + SHORT LoadCount; + SHORT TlsIndex; + LIST_ENTRY HashTableEntry; + ULONG TimeDateStamp; + } LDR_MODULE, * PLDR_MODULE; + + typedef struct _PEB_FREE_BLOCK { + _PEB_FREE_BLOCK* Next; + ULONG Size; + } PEB_FREE_BLOCK, * PPEB_FREE_BLOCK; + + typedef struct _LDR_DATA_TABLE_ENTRY { + LIST_ENTRY InLoadOrderLinks; + LIST_ENTRY InMemoryOrderLinks; + PVOID Reserved2[2]; + PVOID DllBase; + PVOID EntryPoint; + PVOID Reserved3; + UNICODE_STRING FullDllName; + UNICODE_STRING BaseDllName; + PVOID Reserved5[3]; + union { + ULONG CheckSum; + PVOID Reserved6; + }; + ULONG TimeDateStamp; + } LDR_DATA_TABLE_ENTRY, * PLDR_DATA_TABLE_ENTRY; + + typedef struct _RTL_DRIVE_LETTER_CURDIR { + USHORT Flags; + USHORT Length; + ULONG TimeStamp; + UNICODE_STRING DosPath; + } RTL_DRIVE_LETTER_CURDIR, * PRTL_DRIVE_LETTER_CURDIR; + + typedef struct _RTL_USER_PROCESS_PARAMETERS { + ULONG MaximumLength; + ULONG Length; + ULONG Flags; + ULONG DebugFlags; + PVOID ConsoleHandle; + ULONG ConsoleFlags; + HANDLE StdInputHandle; + HANDLE StdOutputHandle; + HANDLE StdErrorHandle; + UNICODE_STRING CurrentDirectoryPath; + HANDLE CurrentDirectoryHandle; + UNICODE_STRING DllPath; + UNICODE_STRING ImagePathName; + UNICODE_STRING CommandLine; + PVOID Environment; + ULONG StartingPositionLeft; + ULONG StartingPositionTop; + ULONG Width; + ULONG Height; + ULONG CharWidth; + ULONG CharHeight; + ULONG ConsoleTextAttributes; + ULONG WindowFlags; + ULONG ShowWindowFlags; + UNICODE_STRING WindowTitle; + UNICODE_STRING DesktopName; + UNICODE_STRING ShellInfo; + UNICODE_STRING RuntimeData; + RTL_DRIVE_LETTER_CURDIR DLCurrentDirectory[0x20]; + } RTL_USER_PROCESS_PARAMETERS, * PRTL_USER_PROCESS_PARAMETERS; + + typedef struct _PEB { + BOOLEAN InheritedAddressSpace; + BOOLEAN ReadImageFileExecOptions; + BOOLEAN BeingDebugged; + BOOLEAN Spare; + HANDLE Mutant; + PVOID ImageBaseAddress; + PPEB_LDR_DATA LoaderData; + RTL_USER_PROCESS_PARAMETERS ProcessParameters; + PVOID SubSystemData; + PVOID ProcessHeap; + PVOID FastPebLock; + uintptr_t FastPebLockRoutine; + uintptr_t FastPebUnlockRoutine; + ULONG EnvironmentUpdateCount; + uintptr_t KernelCallbackTable; + PVOID EventLogSection; + PVOID EventLog; + PPEB_FREE_BLOCK FreeList; + ULONG TlsExpansionCounter; + PVOID TlsBitmap; + ULONG TlsBitmapBits[0x2]; + PVOID ReadOnlySharedMemoryBase; + PVOID ReadOnlySharedMemoryHeap; + uintptr_t ReadOnlyStaticServerData; + PVOID AnsiCodePageData; + PVOID OemCodePageData; + PVOID UnicodeCaseTableData; + ULONG NumberOfProcessors; + ULONG NtGlobalFlag; + BYTE Spare2[0x4]; + LARGE_INTEGER CriticalSectionTimeout; + ULONG HeapSegmentReserve; + ULONG HeapSegmentCommit; + ULONG HeapDeCommitTotalFreeThreshold; + ULONG HeapDeCommitFreeBlockThreshold; + ULONG NumberOfHeaps; + ULONG MaximumNumberOfHeaps; + uintptr_t* ProcessHeaps; + PVOID GdiSharedHandleTable; + PVOID ProcessStarterHelper; + PVOID GdiDCAttributeList; + PVOID LoaderLock; + ULONG OSMajorVersion; + ULONG OSMinorVersion; + ULONG OSBuildNumber; + ULONG OSPlatformId; + ULONG ImageSubSystem; + ULONG ImageSubSystemMajorVersion; + ULONG ImageSubSystemMinorVersion; + ULONG GdiHandleBuffer[0x22]; + ULONG PostProcessInitRoutine; + ULONG TlsExpansionBitmap; + BYTE TlsExpansionBitmapBits[0x80]; + ULONG SessionId; + } PEB, * PPEB; + }// namespace nt + + constexpr uint32_t xor_key_1 = __TIME__[2]; + constexpr uint32_t xor_key_2 = __TIME__[4]; + constexpr uint32_t xor_key_offset = (xor_key_1 ^ xor_key_2); + + namespace fnv1a { + constexpr uint32_t fnv_prime_value = 0x01000193; + + SYSCALL_FORCEINLINE consteval uint32_t hash_ctime(const char* input, unsigned val = 0x811c9dc5 ^ ::syscall::xor_key_offset) noexcept + { + return input[0] == CS_XOR('\0') ? val : hash_ctime(input + 1, (val ^ *input) * fnv_prime_value); + } + + SYSCALL_FORCEINLINE constexpr uint32_t hash_rtime(const char* input, unsigned val = 0x811c9dc5 ^ ::syscall::xor_key_offset) noexcept + { + return input[0] == CS_XOR('\0') ? val : hash_rtime(input + 1, (val ^ *input) * fnv_prime_value); + } + }// namespace fnv1a + + namespace utils { + SYSCALL_FORCEINLINE std::string wide_to_string(wchar_t* buffer) noexcept + { + const auto out{ std::wstring(buffer) }; + + if (out.empty()) + return ""; + + return std::string(out.begin(), out.end()); + } + }// namespace utils + + namespace win { + SYSCALL_FORCEINLINE nt::PEB* get_peb() noexcept + { +#if defined(_M_IX86) || defined(__i386__) + return reinterpret_cast<::syscall::nt::PEB*>(__readfsdword(0x30)); +#else + return reinterpret_cast<::syscall::nt::PEB*>(__readgsqword(0x60)); +#endif + } + + template + static SYSCALL_FORCEINLINE T get_module_handle_from_hash(const uint32_t& module_hash) noexcept + { + auto peb = ::syscall::win::get_peb(); + + if (!peb) + return NULL; + + auto head = &peb->LoaderData->InLoadOrderModuleList; + + for (auto it = head->Flink; it != head; it = it->Flink) { + ::syscall::nt::_LDR_DATA_TABLE_ENTRY* ldr_entry = CONTAINING_RECORD(it, nt::LDR_DATA_TABLE_ENTRY, + InLoadOrderLinks); + + if (!ldr_entry->BaseDllName.Buffer) + continue; + + auto name = ::syscall::utils::wide_to_string(ldr_entry->BaseDllName.Buffer); + + if (SYSCALL_HASH(name.data()) == module_hash) + return reinterpret_cast(ldr_entry->DllBase); + } + + return NULL; + } + + template + static SYSCALL_FORCEINLINE T get_module_export_from_table(uintptr_t module_address, + const uint32_t& export_hash) noexcept + { + auto dos_headers = reinterpret_cast(module_address); + + if (dos_headers->e_magic != IMAGE_DOS_SIGNATURE) + return NULL; + + PIMAGE_EXPORT_DIRECTORY export_directory = nullptr; + + auto nt_headers32 = reinterpret_cast(module_address + dos_headers->e_lfanew); + auto nt_headers64 = reinterpret_cast(module_address + dos_headers->e_lfanew); + + PIMAGE_OPTIONAL_HEADER32 optional_header32 = &nt_headers32->OptionalHeader; + PIMAGE_OPTIONAL_HEADER64 optional_header64 = &nt_headers64->OptionalHeader; + + // for 32bit modules. + if (nt_headers32->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR32_MAGIC) { + // does not have a export table. + if (optional_header32->DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].Size <= 0U) + return NULL; + + export_directory = reinterpret_cast(module_address + optional_header32->DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].VirtualAddress); + } + // for 64bit modules. + else if (nt_headers64->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR64_MAGIC) { + // does not have a export table. + if (optional_header64->DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].Size <= 0U) + return NULL; + + export_directory = reinterpret_cast(module_address + optional_header64->DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].VirtualAddress); + } + + auto names_rva = reinterpret_cast(module_address + export_directory->AddressOfNames); + auto functions_rva = reinterpret_cast(module_address + export_directory->AddressOfFunctions); + auto name_ordinals = reinterpret_cast(module_address + export_directory->AddressOfNameOrdinals); + + uint32_t number_of_names = export_directory->NumberOfNames; + + for (size_t i = 0ul; i < number_of_names; i++) { + const char* export_name = reinterpret_cast(module_address + names_rva[i]); + + if (export_hash == SYSCALL_HASH(export_name)) + return static_cast(module_address + functions_rva[name_ordinals[i]]); + } + + return NULL; + } + + template + SYSCALL_FORCEINLINE T force_find_export(const uint32_t& export_hash) noexcept + { + auto peb = ::syscall::win::get_peb(); + + if (!peb || !export_hash) + return NULL; + + auto head = &peb->LoaderData->InLoadOrderModuleList; + + for (auto it = head->Flink; it != head; it = it->Flink) { + ::syscall::nt::_LDR_DATA_TABLE_ENTRY* ldr_entry = CONTAINING_RECORD(it, + nt::LDR_DATA_TABLE_ENTRY, + InLoadOrderLinks); + + if (!ldr_entry->BaseDllName.Buffer) + continue; + + auto name = ::syscall::utils::wide_to_string(ldr_entry->BaseDllName.Buffer); + + auto export_address = ::syscall::win::get_module_export_from_table( + reinterpret_cast(ldr_entry->DllBase), + export_hash); + + if (!export_address) + continue; + + return static_cast(export_address); + } + } + }// namespace win + + SYSCALL_FORCEINLINE uint16_t get_return_code_from_export(uintptr_t export_address) noexcept + { + if (!export_address) + return NULL; + + return *reinterpret_cast(static_cast(export_address + 12) + 1); + } + + SYSCALL_FORCEINLINE int get_syscall_id_from_export(uintptr_t export_address) noexcept + { + if (!export_address) + return NULL; + +#if defined(_M_IX86) || defined(__i386__) + return *reinterpret_cast(static_cast(export_address) + 1); +#else + return *reinterpret_cast(static_cast(export_address + 3) + 1); +#endif + } + + struct create_function { + void* _allocated_memory = nullptr; + void* _function = nullptr; + uint32_t _export_hash; + + public: + SYSCALL_FORCEINLINE ~create_function() noexcept + { + if (this->_allocated_memory) { + VirtualFree(this->_allocated_memory, 0, MEM_RELEASE); + this->_allocated_memory = nullptr; + } + } + + SYSCALL_FORCEINLINE create_function(uint32_t export_hash) noexcept + : _export_hash(export_hash) + { + + static auto exported_address = ::syscall::win::force_find_export(this->_export_hash); + static auto syscall_table_id = ::syscall::get_syscall_id_from_export(exported_address); + + if (!exported_address || !syscall_table_id) + return; + + std::vector shellcode = { +#if defined(_M_IX86) || defined(__i386__) + 0xB8, 0x00, 0x10, 0x00, 0x00, // mov eax, + 0x64, 0x8B, 0x15, 0xC0, 0x00, 0x00, 0x00,// mov edx, DWORD PTR fs:0xc0 ( + 0xFF, 0xD2, // call edx + 0xC2, 0x04, 0x00 // ret 4 +#else + 0x49, 0x89, 0xCA, // mov r10, rcx + 0xB8, 0x3F, 0x10, 0x00, 0x00, // mov eax, + 0x0F, 0x05, // syscall + 0xC3 // ret +#endif + }; + +#if defined(_M_IX86) || defined(__i386__) + // required for x86 ONLY! + * reinterpret_cast(&shellcode[15]) = ::syscall::get_return_code_from_export(exported_address); + *reinterpret_cast(&shellcode[1]) = syscall_table_id; +#else + * reinterpret_cast(&shellcode[4]) = syscall_table_id; +#endif + this->_allocated_memory = VirtualAlloc(nullptr, + sizeof(shellcode), + MEM_COMMIT | MEM_RESERVE, + PAGE_EXECUTE_READWRITE); + + if (!this->_allocated_memory) { + return; + } + + memcpy(this->_allocated_memory, shellcode.data(), sizeof(shellcode)); + *reinterpret_cast(&this->_function) = this->_allocated_memory; + } + + SYSCALL_FORCEINLINE bool is_valid_address() noexcept + { + return this->_function != nullptr; + } + + template + SYSCALL_FORCEINLINE T invoke_call(Args... arguments) noexcept + { + return reinterpret_cast(this->_function)(arguments...); + } + }; + + template + SYSCALL_FORCEINLINE T invoke_syscall(uint32_t export_hash, Args... arguments) noexcept + { + static auto syscall_function = ::syscall::create_function(export_hash); + + if (!syscall_function.is_valid_address()) { + return NULL; + } + + return syscall_function.invoke_call(arguments...); + } + + template + SYSCALL_FORCEINLINE T invoke_lazy_import(uint32_t export_hash, Args... arguments) noexcept + { + static auto exported_function = ::syscall::win::force_find_export(export_hash); + + if (exported_function) + return reinterpret_cast(exported_function)(arguments...); + } +}// namespace syscall + +#endif// DIRECT_SYSCALL_HPP diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/virtualization/VirtualizerSDK64.asm b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/virtualization/VirtualizerSDK64.asm new file mode 100644 index 0000000..b3eb4ae --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/virtualization/VirtualizerSDK64.asm @@ -0,0 +1,1681 @@ +; **************************************************************************** +; Module: VirtualizerSDKCustomVmMacros.asm +; Description: Another way to link with the SecureEngine SDK via an ASM module +; +; Author/s: Oreans Technologies +; (c) 2015 Oreans Technologies +; +; --- File generated automatically from Oreans VM Generator (16/6/2015) --- +; **************************************************************************** + + +IFDEF RAX + +ELSE + +.586 +.model flat,stdcall +option casemap:none + +ENDIF + + +; **************************************************************************** +; Constants +; **************************************************************************** + +.CONST + + +; **************************************************************************** +; Data Segment +; **************************************************************************** + +.DATA + + +; **************************************************************************** +; Code Segment +; **************************************************************************** + +.CODE + +IFDEF RAX + +; **************************************************************************** +; VIRTUALIZER_TIGER_WHITE definition +; **************************************************************************** + +VIRTUALIZER_TIGER_WHITE_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 103 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_TIGER_WHITE_START_ASM64 ENDP + +VIRTUALIZER_TIGER_WHITE_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 503 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_TIGER_WHITE_END_ASM64 ENDP + + +; **************************************************************************** +; VIRTUALIZER_TIGER_RED definition +; **************************************************************************** + +VIRTUALIZER_TIGER_RED_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 104 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_TIGER_RED_START_ASM64 ENDP + +VIRTUALIZER_TIGER_RED_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 504 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_TIGER_RED_END_ASM64 ENDP + + +; **************************************************************************** +; VIRTUALIZER_TIGER_BLACK definition +; **************************************************************************** + +VIRTUALIZER_TIGER_BLACK_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 105 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_TIGER_BLACK_START_ASM64 ENDP + +VIRTUALIZER_TIGER_BLACK_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 505 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_TIGER_BLACK_END_ASM64 ENDP + + +; **************************************************************************** +; VIRTUALIZER_FISH_WHITE definition +; **************************************************************************** + +VIRTUALIZER_FISH_WHITE_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 107 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_FISH_WHITE_START_ASM64 ENDP + +VIRTUALIZER_FISH_WHITE_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 507 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_FISH_WHITE_END_ASM64 ENDP + + +; **************************************************************************** +; VIRTUALIZER_FISH_RED definition +; **************************************************************************** + +VIRTUALIZER_FISH_RED_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 109 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_FISH_RED_START_ASM64 ENDP + +VIRTUALIZER_FISH_RED_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 509 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_FISH_RED_END_ASM64 ENDP + + +; **************************************************************************** +; VIRTUALIZER_FISH_BLACK definition +; **************************************************************************** + +VIRTUALIZER_FISH_BLACK_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 111 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_FISH_BLACK_START_ASM64 ENDP + +VIRTUALIZER_FISH_BLACK_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 511 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_FISH_BLACK_END_ASM64 ENDP + + +; **************************************************************************** +; VIRTUALIZER_PUMA_WHITE definition +; **************************************************************************** + +VIRTUALIZER_PUMA_WHITE_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 113 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_PUMA_WHITE_START_ASM64 ENDP + +VIRTUALIZER_PUMA_WHITE_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 513 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_PUMA_WHITE_END_ASM64 ENDP + + +; **************************************************************************** +; VIRTUALIZER_PUMA_RED definition +; **************************************************************************** + +VIRTUALIZER_PUMA_RED_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 115 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_PUMA_RED_START_ASM64 ENDP + +VIRTUALIZER_PUMA_RED_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 515 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_PUMA_RED_END_ASM64 ENDP + + +; **************************************************************************** +; VIRTUALIZER_PUMA_BLACK definition +; **************************************************************************** + +VIRTUALIZER_PUMA_BLACK_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 117 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_PUMA_BLACK_START_ASM64 ENDP + +VIRTUALIZER_PUMA_BLACK_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 517 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_PUMA_BLACK_END_ASM64 ENDP + + +; **************************************************************************** +; VIRTUALIZER_SHARK_WHITE definition +; **************************************************************************** + +VIRTUALIZER_SHARK_WHITE_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 119 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_SHARK_WHITE_START_ASM64 ENDP + +VIRTUALIZER_SHARK_WHITE_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 519 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_SHARK_WHITE_END_ASM64 ENDP + + +; **************************************************************************** +; VIRTUALIZER_SHARK_RED definition +; **************************************************************************** + +VIRTUALIZER_SHARK_RED_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 121 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_SHARK_RED_START_ASM64 ENDP + +VIRTUALIZER_SHARK_RED_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 521 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_SHARK_RED_END_ASM64 ENDP + + +; **************************************************************************** +; VIRTUALIZER_SHARK_BLACK definition +; **************************************************************************** + +VIRTUALIZER_SHARK_BLACK_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 123 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_SHARK_BLACK_START_ASM64 ENDP + +VIRTUALIZER_SHARK_BLACK_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 523 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_SHARK_BLACK_END_ASM64 ENDP + + +; **************************************************************************** +; VIRTUALIZER_DOLPHIN_WHITE definition +; **************************************************************************** + +VIRTUALIZER_DOLPHIN_WHITE_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 135 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_DOLPHIN_WHITE_START_ASM64 ENDP + +VIRTUALIZER_DOLPHIN_WHITE_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 535 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_DOLPHIN_WHITE_END_ASM64 ENDP + + +; **************************************************************************** +; VIRTUALIZER_DOLPHIN_RED definition +; **************************************************************************** + +VIRTUALIZER_DOLPHIN_RED_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 137 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_DOLPHIN_RED_START_ASM64 ENDP + +VIRTUALIZER_DOLPHIN_RED_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 537 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_DOLPHIN_RED_END_ASM64 ENDP + + +; **************************************************************************** +; VIRTUALIZER_DOLPHIN_BLACK definition +; **************************************************************************** + +VIRTUALIZER_DOLPHIN_BLACK_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 139 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_DOLPHIN_BLACK_START_ASM64 ENDP + +VIRTUALIZER_DOLPHIN_BLACK_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 539 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_DOLPHIN_BLACK_END_ASM64 ENDP + + +; **************************************************************************** +; VIRTUALIZER_EAGLE_WHITE definition +; **************************************************************************** + +VIRTUALIZER_EAGLE_WHITE_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 147 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_EAGLE_WHITE_START_ASM64 ENDP + +VIRTUALIZER_EAGLE_WHITE_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 547 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_EAGLE_WHITE_END_ASM64 ENDP + + +; **************************************************************************** +; VIRTUALIZER_EAGLE_RED definition +; **************************************************************************** + +VIRTUALIZER_EAGLE_RED_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 149 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_EAGLE_RED_START_ASM64 ENDP + +VIRTUALIZER_EAGLE_RED_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 549 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_EAGLE_RED_END_ASM64 ENDP + + +; **************************************************************************** +; VIRTUALIZER_EAGLE_BLACK definition +; **************************************************************************** + +VIRTUALIZER_EAGLE_BLACK_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 151 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_EAGLE_BLACK_START_ASM64 ENDP + +VIRTUALIZER_EAGLE_BLACK_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 551 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_EAGLE_BLACK_END_ASM64 ENDP + + +; **************************************************************************** +; VIRTUALIZER_MUTATE_ONLY definition +; **************************************************************************** + +VIRTUALIZER_MUTATE_ONLY_START_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 16 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_MUTATE_ONLY_START_ASM64 ENDP + +VIRTUALIZER_MUTATE_ONLY_END_ASM64 PROC + + push rax + push rbx + push rcx + + mov eax, 'CV' + mov ebx, 17 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop rcx + pop rbx + pop rax + ret + +VIRTUALIZER_MUTATE_ONLY_END_ASM64 ENDP + +ELSE + +; **************************************************************************** +; VIRTUALIZER_TIGER_WHITE definition +; **************************************************************************** + +VIRTUALIZER_TIGER_WHITE_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 100 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_TIGER_WHITE_START_ASM32 ENDP + +VIRTUALIZER_TIGER_WHITE_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 500 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_TIGER_WHITE_END_ASM32 ENDP + + +; **************************************************************************** +; VIRTUALIZER_TIGER_RED definition +; **************************************************************************** + +VIRTUALIZER_TIGER_RED_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 101 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_TIGER_RED_START_ASM32 ENDP + +VIRTUALIZER_TIGER_RED_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 501 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_TIGER_RED_END_ASM32 ENDP + + +; **************************************************************************** +; VIRTUALIZER_TIGER_BLACK definition +; **************************************************************************** + +VIRTUALIZER_TIGER_BLACK_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 102 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_TIGER_BLACK_START_ASM32 ENDP + +VIRTUALIZER_TIGER_BLACK_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 502 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_TIGER_BLACK_END_ASM32 ENDP + + +; **************************************************************************** +; VIRTUALIZER_FISH_WHITE definition +; **************************************************************************** + +VIRTUALIZER_FISH_WHITE_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 106 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_FISH_WHITE_START_ASM32 ENDP + +VIRTUALIZER_FISH_WHITE_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 506 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_FISH_WHITE_END_ASM32 ENDP + + +; **************************************************************************** +; VIRTUALIZER_FISH_RED definition +; **************************************************************************** + +VIRTUALIZER_FISH_RED_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 108 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_FISH_RED_START_ASM32 ENDP + +VIRTUALIZER_FISH_RED_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 508 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_FISH_RED_END_ASM32 ENDP + + +; **************************************************************************** +; VIRTUALIZER_FISH_BLACK definition +; **************************************************************************** + +VIRTUALIZER_FISH_BLACK_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 110 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_FISH_BLACK_START_ASM32 ENDP + +VIRTUALIZER_FISH_BLACK_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 510 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_FISH_BLACK_END_ASM32 ENDP + + +; **************************************************************************** +; VIRTUALIZER_PUMA_WHITE definition +; **************************************************************************** + +VIRTUALIZER_PUMA_WHITE_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 112 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_PUMA_WHITE_START_ASM32 ENDP + +VIRTUALIZER_PUMA_WHITE_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 512 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_PUMA_WHITE_END_ASM32 ENDP + + +; **************************************************************************** +; VIRTUALIZER_PUMA_RED definition +; **************************************************************************** + +VIRTUALIZER_PUMA_RED_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 114 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_PUMA_RED_START_ASM32 ENDP + +VIRTUALIZER_PUMA_RED_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 514 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_PUMA_RED_END_ASM32 ENDP + + +; **************************************************************************** +; VIRTUALIZER_PUMA_BLACK definition +; **************************************************************************** + +VIRTUALIZER_PUMA_BLACK_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 116 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_PUMA_BLACK_START_ASM32 ENDP + +VIRTUALIZER_PUMA_BLACK_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 516 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_PUMA_BLACK_END_ASM32 ENDP + + +; **************************************************************************** +; VIRTUALIZER_SHARK_WHITE definition +; **************************************************************************** + +VIRTUALIZER_SHARK_WHITE_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 118 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_SHARK_WHITE_START_ASM32 ENDP + +VIRTUALIZER_SHARK_WHITE_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 518 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_SHARK_WHITE_END_ASM32 ENDP + + +; **************************************************************************** +; VIRTUALIZER_SHARK_RED definition +; **************************************************************************** + +VIRTUALIZER_SHARK_RED_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 120 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_SHARK_RED_START_ASM32 ENDP + +VIRTUALIZER_SHARK_RED_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 520 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_SHARK_RED_END_ASM32 ENDP + + +; **************************************************************************** +; VIRTUALIZER_SHARK_BLACK definition +; **************************************************************************** + +VIRTUALIZER_SHARK_BLACK_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 122 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_SHARK_BLACK_START_ASM32 ENDP + +VIRTUALIZER_SHARK_BLACK_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 522 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_SHARK_BLACK_END_ASM32 ENDP + + +; **************************************************************************** +; VIRTUALIZER_DOLPHIN_WHITE definition +; **************************************************************************** + +VIRTUALIZER_DOLPHIN_WHITE_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 134 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_DOLPHIN_WHITE_START_ASM32 ENDP + +VIRTUALIZER_DOLPHIN_WHITE_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 534 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_DOLPHIN_WHITE_END_ASM32 ENDP + + +; **************************************************************************** +; VIRTUALIZER_DOLPHIN_RED definition +; **************************************************************************** + +VIRTUALIZER_DOLPHIN_RED_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 136 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_DOLPHIN_RED_START_ASM32 ENDP + +VIRTUALIZER_DOLPHIN_RED_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 536 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_DOLPHIN_RED_END_ASM32 ENDP + + +; **************************************************************************** +; VIRTUALIZER_DOLPHIN_BLACK definition +; **************************************************************************** + +VIRTUALIZER_DOLPHIN_BLACK_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 138 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_DOLPHIN_BLACK_START_ASM32 ENDP + +VIRTUALIZER_DOLPHIN_BLACK_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 538 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_DOLPHIN_BLACK_END_ASM32 ENDP + + +; **************************************************************************** +; VIRTUALIZER_EAGLE_WHITE definition +; **************************************************************************** + +VIRTUALIZER_EAGLE_WHITE_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 146 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_EAGLE_WHITE_START_ASM32 ENDP + +VIRTUALIZER_EAGLE_WHITE_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 546 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_EAGLE_WHITE_END_ASM32 ENDP + + +; **************************************************************************** +; VIRTUALIZER_EAGLE_RED definition +; **************************************************************************** + +VIRTUALIZER_EAGLE_RED_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 148 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_EAGLE_RED_START_ASM32 ENDP + +VIRTUALIZER_EAGLE_RED_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 548 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_EAGLE_RED_END_ASM32 ENDP + + +; **************************************************************************** +; VIRTUALIZER_EAGLE_BLACK definition +; **************************************************************************** + +VIRTUALIZER_EAGLE_BLACK_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 150 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_EAGLE_BLACK_START_ASM32 ENDP + +VIRTUALIZER_EAGLE_BLACK_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 550 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_EAGLE_BLACK_END_ASM32 ENDP + + +; **************************************************************************** +; VIRTUALIZER_MUTATE_ONLY definition +; **************************************************************************** + +VIRTUALIZER_MUTATE_ONLY_START_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 16 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_MUTATE_ONLY_START_ASM32 ENDP + +VIRTUALIZER_MUTATE_ONLY_END_ASM32 PROC + + push eax + push ebx + push ecx + + mov eax, 'CV' + mov ebx, 17 + mov ecx, 'CV' + add ebx, eax + add ecx, eax + + pop ecx + pop ebx + pop eax + ret + +VIRTUALIZER_MUTATE_ONLY_END_ASM32 ENDP + +ENDIF + +END diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/virtualization/VirtualizerSDK64.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/virtualization/VirtualizerSDK64.h new file mode 100644 index 0000000..f9a6003 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/virtualization/VirtualizerSDK64.h @@ -0,0 +1,189 @@ +/****************************************************************************** + Header: VirtualizerSDKCustomVMsMacros.h + Description: Definition of CustomVM macros + + Author/s: Oreans Technologies + (c) 2015 Oreans Technologies + + --- File generated automatically from Oreans VM Generator (16/6/2015) --- +******************************************************************************/ + + +// **************************************************************************** +// Declaration of Custom VM macros +// **************************************************************************** + +#define PLATFORM_X64 1 + +#ifdef __cplusplus + extern "C" { +#endif + +#if defined(PLATFORM_X32) + +void __stdcall VIRTUALIZER_TIGER_WHITE_START_ASM32(); +void __stdcall VIRTUALIZER_TIGER_WHITE_END_ASM32(); +void __stdcall VIRTUALIZER_TIGER_RED_START_ASM32(); +void __stdcall VIRTUALIZER_TIGER_RED_END_ASM32(); +void __stdcall VIRTUALIZER_TIGER_BLACK_START_ASM32(); +void __stdcall VIRTUALIZER_TIGER_BLACK_END_ASM32(); +void __stdcall VIRTUALIZER_FISH_WHITE_START_ASM32(); +void __stdcall VIRTUALIZER_FISH_WHITE_END_ASM32(); +void __stdcall VIRTUALIZER_FISH_RED_START_ASM32(); +void __stdcall VIRTUALIZER_FISH_RED_END_ASM32(); +void __stdcall VIRTUALIZER_FISH_BLACK_START_ASM32(); +void __stdcall VIRTUALIZER_FISH_BLACK_END_ASM32(); +void __stdcall VIRTUALIZER_PUMA_WHITE_START_ASM32(); +void __stdcall VIRTUALIZER_PUMA_WHITE_END_ASM32(); +void __stdcall VIRTUALIZER_PUMA_RED_START_ASM32(); +void __stdcall VIRTUALIZER_PUMA_RED_END_ASM32(); +void __stdcall VIRTUALIZER_PUMA_BLACK_START_ASM32(); +void __stdcall VIRTUALIZER_PUMA_BLACK_END_ASM32(); +void __stdcall VIRTUALIZER_SHARK_WHITE_START_ASM32(); +void __stdcall VIRTUALIZER_SHARK_WHITE_END_ASM32(); +void __stdcall VIRTUALIZER_SHARK_RED_START_ASM32(); +void __stdcall VIRTUALIZER_SHARK_RED_END_ASM32(); +void __stdcall VIRTUALIZER_SHARK_BLACK_START_ASM32(); +void __stdcall VIRTUALIZER_SHARK_BLACK_END_ASM32(); +void __stdcall VIRTUALIZER_DOLPHIN_WHITE_START_ASM32(); +void __stdcall VIRTUALIZER_DOLPHIN_WHITE_END_ASM32(); +void __stdcall VIRTUALIZER_DOLPHIN_RED_START_ASM32(); +void __stdcall VIRTUALIZER_DOLPHIN_RED_END_ASM32(); +void __stdcall VIRTUALIZER_DOLPHIN_BLACK_START_ASM32(); +void __stdcall VIRTUALIZER_DOLPHIN_BLACK_END_ASM32(); +void __stdcall VIRTUALIZER_EAGLE_WHITE_START_ASM32(); +void __stdcall VIRTUALIZER_EAGLE_WHITE_END_ASM32(); +void __stdcall VIRTUALIZER_EAGLE_RED_START_ASM32(); +void __stdcall VIRTUALIZER_EAGLE_RED_END_ASM32(); +void __stdcall VIRTUALIZER_EAGLE_BLACK_START_ASM32(); +void __stdcall VIRTUALIZER_EAGLE_BLACK_END_ASM32(); +void __stdcall VIRTUALIZER_MUTATE_ONLY_START_ASM32(); +void __stdcall VIRTUALIZER_MUTATE_ONLY_END_ASM32(); + +#define VIRTUALIZER_TIGER_WHITE_START VIRTUALIZER_TIGER_WHITE_START_ASM32(); +#define VIRTUALIZER_TIGER_WHITE_END VIRTUALIZER_TIGER_WHITE_END_ASM32(); +#define VIRTUALIZER_TIGER_RED_START VIRTUALIZER_TIGER_RED_START_ASM32(); +#define VIRTUALIZER_TIGER_RED_END VIRTUALIZER_TIGER_RED_END_ASM32(); +#define VIRTUALIZER_TIGER_BLACK_START VIRTUALIZER_TIGER_BLACK_START_ASM32(); +#define VIRTUALIZER_TIGER_BLACK_END VIRTUALIZER_TIGER_BLACK_END_ASM32(); +#define VIRTUALIZER_FISH_WHITE_START VIRTUALIZER_FISH_WHITE_START_ASM32(); +#define VIRTUALIZER_FISH_WHITE_END VIRTUALIZER_FISH_WHITE_END_ASM32(); +#define VIRTUALIZER_FISH_RED_START VIRTUALIZER_FISH_RED_START_ASM32(); +#define VIRTUALIZER_FISH_RED_END VIRTUALIZER_FISH_RED_END_ASM32(); +#define VIRTUALIZER_FISH_BLACK_START VIRTUALIZER_FISH_BLACK_START_ASM32(); +#define VIRTUALIZER_FISH_BLACK_END VIRTUALIZER_FISH_BLACK_END_ASM32(); +#define VIRTUALIZER_PUMA_WHITE_START VIRTUALIZER_PUMA_WHITE_START_ASM32(); +#define VIRTUALIZER_PUMA_WHITE_END VIRTUALIZER_PUMA_WHITE_END_ASM32(); +#define VIRTUALIZER_PUMA_RED_START VIRTUALIZER_PUMA_RED_START_ASM32(); +#define VIRTUALIZER_PUMA_RED_END VIRTUALIZER_PUMA_RED_END_ASM32(); +#define VIRTUALIZER_PUMA_BLACK_START VIRTUALIZER_PUMA_BLACK_START_ASM32(); +#define VIRTUALIZER_PUMA_BLACK_END VIRTUALIZER_PUMA_BLACK_END_ASM32(); +#define VIRTUALIZER_SHARK_WHITE_START VIRTUALIZER_SHARK_WHITE_START_ASM32(); +#define VIRTUALIZER_SHARK_WHITE_END VIRTUALIZER_SHARK_WHITE_END_ASM32(); +#define VIRTUALIZER_SHARK_RED_START VIRTUALIZER_SHARK_RED_START_ASM32(); +#define VIRTUALIZER_SHARK_RED_END VIRTUALIZER_SHARK_RED_END_ASM32(); +#define VIRTUALIZER_SHARK_BLACK_START VIRTUALIZER_SHARK_BLACK_START_ASM32(); +#define VIRTUALIZER_SHARK_BLACK_END VIRTUALIZER_SHARK_BLACK_END_ASM32(); +#define VIRTUALIZER_DOLPHIN_WHITE_START VIRTUALIZER_DOLPHIN_WHITE_START_ASM32(); +#define VIRTUALIZER_DOLPHIN_WHITE_END VIRTUALIZER_DOLPHIN_WHITE_END_ASM32(); +#define VIRTUALIZER_DOLPHIN_RED_START VIRTUALIZER_DOLPHIN_RED_START_ASM32(); +#define VIRTUALIZER_DOLPHIN_RED_END VIRTUALIZER_DOLPHIN_RED_END_ASM32(); +#define VIRTUALIZER_DOLPHIN_BLACK_START VIRTUALIZER_DOLPHIN_BLACK_START_ASM32(); +#define VIRTUALIZER_DOLPHIN_BLACK_END VIRTUALIZER_DOLPHIN_BLACK_END_ASM32(); +#define VIRTUALIZER_EAGLE_WHITE_START VIRTUALIZER_EAGLE_WHITE_START_ASM32(); +#define VIRTUALIZER_EAGLE_WHITE_END VIRTUALIZER_EAGLE_WHITE_END_ASM32(); +#define VIRTUALIZER_EAGLE_RED_START VIRTUALIZER_EAGLE_RED_START_ASM32(); +#define VIRTUALIZER_EAGLE_RED_END VIRTUALIZER_EAGLE_RED_END_ASM32(); +#define VIRTUALIZER_EAGLE_BLACK_START VIRTUALIZER_EAGLE_BLACK_START_ASM32(); +#define VIRTUALIZER_EAGLE_BLACK_END VIRTUALIZER_EAGLE_BLACK_END_ASM32(); +#define VIRTUALIZER_MUTATE_ONLY_START VIRTUALIZER_MUTATE_ONLY_START_ASM32(); +#define VIRTUALIZER_MUTATE_ONLY_END VIRTUALIZER_MUTATE_ONLY_END_ASM32(); + +#endif + +#if defined(PLATFORM_X64) + +void __stdcall VIRTUALIZER_TIGER_WHITE_START_ASM64(); +void __stdcall VIRTUALIZER_TIGER_WHITE_END_ASM64(); +void __stdcall VIRTUALIZER_TIGER_RED_START_ASM64(); +void __stdcall VIRTUALIZER_TIGER_RED_END_ASM64(); +void __stdcall VIRTUALIZER_TIGER_BLACK_START_ASM64(); +void __stdcall VIRTUALIZER_TIGER_BLACK_END_ASM64(); +void __stdcall VIRTUALIZER_FISH_WHITE_START_ASM64(); +void __stdcall VIRTUALIZER_FISH_WHITE_END_ASM64(); +void __stdcall VIRTUALIZER_FISH_RED_START_ASM64(); +void __stdcall VIRTUALIZER_FISH_RED_END_ASM64(); +void __stdcall VIRTUALIZER_FISH_BLACK_START_ASM64(); +void __stdcall VIRTUALIZER_FISH_BLACK_END_ASM64(); +void __stdcall VIRTUALIZER_PUMA_WHITE_START_ASM64(); +void __stdcall VIRTUALIZER_PUMA_WHITE_END_ASM64(); +void __stdcall VIRTUALIZER_PUMA_RED_START_ASM64(); +void __stdcall VIRTUALIZER_PUMA_RED_END_ASM64(); +void __stdcall VIRTUALIZER_PUMA_BLACK_START_ASM64(); +void __stdcall VIRTUALIZER_PUMA_BLACK_END_ASM64(); +void __stdcall VIRTUALIZER_SHARK_WHITE_START_ASM64(); +void __stdcall VIRTUALIZER_SHARK_WHITE_END_ASM64(); +void __stdcall VIRTUALIZER_SHARK_RED_START_ASM64(); +void __stdcall VIRTUALIZER_SHARK_RED_END_ASM64(); +void __stdcall VIRTUALIZER_SHARK_BLACK_START_ASM64(); +void __stdcall VIRTUALIZER_SHARK_BLACK_END_ASM64(); +void __stdcall VIRTUALIZER_DOLPHIN_WHITE_START_ASM64(); +void __stdcall VIRTUALIZER_DOLPHIN_WHITE_END_ASM64(); +void __stdcall VIRTUALIZER_DOLPHIN_RED_START_ASM64(); +void __stdcall VIRTUALIZER_DOLPHIN_RED_END_ASM64(); +void __stdcall VIRTUALIZER_DOLPHIN_BLACK_START_ASM64(); +void __stdcall VIRTUALIZER_DOLPHIN_BLACK_END_ASM64(); +void __stdcall VIRTUALIZER_EAGLE_WHITE_START_ASM64(); +void __stdcall VIRTUALIZER_EAGLE_WHITE_END_ASM64(); +void __stdcall VIRTUALIZER_EAGLE_RED_START_ASM64(); +void __stdcall VIRTUALIZER_EAGLE_RED_END_ASM64(); +void __stdcall VIRTUALIZER_EAGLE_BLACK_START_ASM64(); +void __stdcall VIRTUALIZER_EAGLE_BLACK_END_ASM64(); +void __stdcall VIRTUALIZER_MUTATE_ONLY_START_ASM64(); +void __stdcall VIRTUALIZER_MUTATE_ONLY_END_ASM64(); + +#define VIRTUALIZER_TIGER_WHITE_START VIRTUALIZER_TIGER_WHITE_START_ASM64(); +#define VIRTUALIZER_TIGER_WHITE_END VIRTUALIZER_TIGER_WHITE_END_ASM64(); +#define VIRTUALIZER_TIGER_RED_START VIRTUALIZER_TIGER_RED_START_ASM64(); +#define VIRTUALIZER_TIGER_RED_END VIRTUALIZER_TIGER_RED_END_ASM64(); +#define VIRTUALIZER_TIGER_BLACK_START VIRTUALIZER_TIGER_BLACK_START_ASM64(); +#define VIRTUALIZER_TIGER_BLACK_END VIRTUALIZER_TIGER_BLACK_END_ASM64(); +#define VIRTUALIZER_FISH_WHITE_START VIRTUALIZER_FISH_WHITE_START_ASM64(); +#define VIRTUALIZER_FISH_WHITE_END VIRTUALIZER_FISH_WHITE_END_ASM64(); +#define VIRTUALIZER_FISH_RED_START VIRTUALIZER_FISH_RED_START_ASM64(); +#define VIRTUALIZER_FISH_RED_END VIRTUALIZER_FISH_RED_END_ASM64(); +#define VIRTUALIZER_FISH_BLACK_START VIRTUALIZER_FISH_BLACK_START_ASM64(); +#define VIRTUALIZER_FISH_BLACK_END VIRTUALIZER_FISH_BLACK_END_ASM64(); +#define VIRTUALIZER_PUMA_WHITE_START VIRTUALIZER_PUMA_WHITE_START_ASM64(); +#define VIRTUALIZER_PUMA_WHITE_END VIRTUALIZER_PUMA_WHITE_END_ASM64(); +#define VIRTUALIZER_PUMA_RED_START VIRTUALIZER_PUMA_RED_START_ASM64(); +#define VIRTUALIZER_PUMA_RED_END VIRTUALIZER_PUMA_RED_END_ASM64(); +#define VIRTUALIZER_PUMA_BLACK_START VIRTUALIZER_PUMA_BLACK_START_ASM64(); +#define VIRTUALIZER_PUMA_BLACK_END VIRTUALIZER_PUMA_BLACK_END_ASM64(); +#define VIRTUALIZER_SHARK_WHITE_START VIRTUALIZER_SHARK_WHITE_START_ASM64(); +#define VIRTUALIZER_SHARK_WHITE_END VIRTUALIZER_SHARK_WHITE_END_ASM64(); +#define VIRTUALIZER_SHARK_RED_START VIRTUALIZER_SHARK_RED_START_ASM64(); +#define VIRTUALIZER_SHARK_RED_END VIRTUALIZER_SHARK_RED_END_ASM64(); +#define VIRTUALIZER_SHARK_BLACK_START VIRTUALIZER_SHARK_BLACK_START_ASM64(); +#define VIRTUALIZER_SHARK_BLACK_END VIRTUALIZER_SHARK_BLACK_END_ASM64(); +#define VIRTUALIZER_DOLPHIN_WHITE_START VIRTUALIZER_DOLPHIN_WHITE_START_ASM64(); +#define VIRTUALIZER_DOLPHIN_WHITE_END VIRTUALIZER_DOLPHIN_WHITE_END_ASM64(); +#define VIRTUALIZER_DOLPHIN_RED_START VIRTUALIZER_DOLPHIN_RED_START_ASM64(); +#define VIRTUALIZER_DOLPHIN_RED_END VIRTUALIZER_DOLPHIN_RED_END_ASM64(); +#define VIRTUALIZER_DOLPHIN_BLACK_START VIRTUALIZER_DOLPHIN_BLACK_START_ASM64(); +#define VIRTUALIZER_DOLPHIN_BLACK_END VIRTUALIZER_DOLPHIN_BLACK_END_ASM64(); +#define VIRTUALIZER_EAGLE_WHITE_START VIRTUALIZER_EAGLE_WHITE_START_ASM64(); +#define VIRTUALIZER_EAGLE_WHITE_END VIRTUALIZER_EAGLE_WHITE_END_ASM64(); +#define VIRTUALIZER_EAGLE_RED_START VIRTUALIZER_EAGLE_RED_START_ASM64(); +#define VIRTUALIZER_EAGLE_RED_END VIRTUALIZER_EAGLE_RED_END_ASM64(); +#define VIRTUALIZER_EAGLE_BLACK_START VIRTUALIZER_EAGLE_BLACK_START_ASM64(); +#define VIRTUALIZER_EAGLE_BLACK_END VIRTUALIZER_EAGLE_BLACK_END_ASM64(); +#define VIRTUALIZER_MUTATE_ONLY_START VIRTUALIZER_MUTATE_ONLY_START_ASM64(); +#define VIRTUALIZER_MUTATE_ONLY_END VIRTUALIZER_MUTATE_ONLY_END_ASM64(); + +#endif + +#ifdef __cplusplus +} +#endif + diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/virtualization/VirtualizerSDK64.inc b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/virtualization/VirtualizerSDK64.inc new file mode 100644 index 0000000..e5a9b93 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/spoofcall/virtualization/VirtualizerSDK64.inc @@ -0,0 +1,394 @@ +; ****************************************************************************** +; Header: VirtualizerSDK_CustomVMs_masm64.inc +; Description: MASM64 macros definitions +; +; Author/s: Oreans Technologies +; (c) 2015 Oreans Technologies +; +; --- File generated automatically from Oreans VM Generator (16/6/2015) --- +; ****************************************************************************** + +; ****************************************************************************** +; Macros definition +; ****************************************************************************** + +VIRTUALIZER_TIGER_WHITE_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 103 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_TIGER_WHITE_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 503 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_TIGER_RED_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 104 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_TIGER_RED_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 504 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_TIGER_BLACK_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 105 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_TIGER_BLACK_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 505 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_FISH_WHITE_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 107 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_FISH_WHITE_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 507 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_FISH_RED_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 109 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_FISH_RED_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 509 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_FISH_BLACK_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 111 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_FISH_BLACK_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 511 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_PUMA_WHITE_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 113 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_PUMA_WHITE_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 513 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_PUMA_RED_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 115 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_PUMA_RED_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 515 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_PUMA_BLACK_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 117 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_PUMA_BLACK_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 517 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_SHARK_WHITE_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 119 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_SHARK_WHITE_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 519 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_SHARK_RED_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 121 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_SHARK_RED_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 521 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_SHARK_BLACK_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 123 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_SHARK_BLACK_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 523 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_DOLPHIN_WHITE_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 135 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_DOLPHIN_WHITE_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 535 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_DOLPHIN_RED_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 137 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_DOLPHIN_RED_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 537 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_DOLPHIN_BLACK_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 139 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_DOLPHIN_BLACK_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 539 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_EAGLE_WHITE_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 147 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_EAGLE_WHITE_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 547 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_EAGLE_RED_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 149 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_EAGLE_RED_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 549 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_EAGLE_BLACK_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 151 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_EAGLE_BLACK_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 551 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_MUTATE_ONLY_START MACRO + + db 0ebh, 10h + dd 20205643h + dd 16 + dd 0 + dd 20205643h +ENDM + + +VIRTUALIZER_MUTATE_ONLY_END MACRO + + db 0ebh, 10h + dd 20205643h + dd 17 + dd 0 + dd 20205643h +ENDM + + diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/stb.hh b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/stb.hh new file mode 100644 index 0000000..80d75fd --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/stb.hh @@ -0,0 +1,226 @@ +/** + * @file stb.hh + * @author Cristei Gabriel-Marian (cristei.g772@gmail.com) + * @brief Compile-time String To Bytes (STB) + * @version 1.0 + * @date 2023-03-23 + * + * Last update: 03/23/2023 (mm/dd/yyyy): [Breaking update] + * Modernize, undo some cancer, change some naming, file structure, + * implement tests directly in file. + * + */ + +#ifndef STB_DEFINED +#define STB_DEFINED + +#include +#include + +namespace stb { +namespace detail { + // detail methods assume null terminator. + + template + constexpr auto find_first_of_start(std::array const& data, std::size_t start, char ch) noexcept { + std::size_t idx = start; + while (data[idx] != ch && idx < N) + ++idx; + + return idx; + } + + template + constexpr auto find_first_not_of_start(std::array const& data, std::size_t start, char ch) noexcept { + if (start < N && data[start] != ch) + return start; + + std::size_t idx = start; + while (data[idx] == ch && idx < N) + ++idx; + + return idx; + } + + template + constexpr auto find_last_of(std::array const& data, char ch) noexcept { + std::size_t idx = data.size() - 2; + while (data[idx] != ch && idx >= 0) + --idx; + + return idx; + } + + template + constexpr auto find_last_not_of(std::array const& data, char ch) noexcept { + std::size_t idx = data.size() - 2; + while (data[idx] == ch && idx >= 0) + --idx; + + return idx; + } + + constexpr auto char_to_hex(char ch) noexcept { + if (ch >= '0' && ch <= '9') + return ch - '0'; + + if (ch >= 'A' && ch <= 'F') + return ch - 'A' + 10; + + return ch - 'a' + 10; + } + + template + constexpr T concat_hex(T lhs, T rhs) noexcept { + return F * lhs + rhs; + } +} // namespace detail + +template +struct consteval_value { + constexpr static decltype(V) value = V; +}; + +template +struct fixed_string: public std::array { + using std::array::array; + + constexpr fixed_string(const char* str) noexcept + : std::array() { + for (auto i = 0; i != N; ++i) + (*this)[i] = str[i]; + } +}; + +template +fixed_string(const char (&)[N]) noexcept -> fixed_string; + +template +struct basic_hex_string_array_conversion { + template + struct build { + private: + struct parse { + struct result { + std::size_t delimiter_count; + std::size_t start; + std::size_t next; + std::size_t end; + }; + + constexpr static auto get() noexcept { + std::size_t count = 1; + + constexpr std::size_t start = detail::find_first_not_of_start(str, 0, delimiter); + constexpr std::size_t next = detail::find_first_of_start(str, start, delimiter); + constexpr std::size_t end = detail::find_last_not_of(str, delimiter); + + bool previous_delimiter = false; + for (auto i = next; i < end; ++i) { + if (str[i] == delimiter) { + if (!previous_delimiter) + ++count; + + previous_delimiter = true; + } else + previous_delimiter = false; + } + + return result { + count, + start, + next, + end}; + } + }; + + constexpr static auto make() noexcept { + constexpr auto data = parse::get(); + constexpr auto count = data.delimiter_count; + constexpr auto start = data.start; + constexpr auto next = data.next; + constexpr auto end = data.end; + + std::array result = {}; + std::array skips = {}; + std::size_t skipped = 0; + std::size_t traversed = start; + + bool previous_skip = false; + for (auto i = start; i < end; ++i) { + if (str[i] == delimiter) { + if (!previous_skip) + skips[skipped++] = traversed; + + previous_skip = true; + } else + previous_skip = false; + + ++traversed; + } + + bool one_char = str[start + 1] == delimiter; + result[0] = static_cast(str[start] == mask ? masked : (one_char ? detail::char_to_hex(str[start]) : detail::concat_hex(detail::char_to_hex(str[start]), detail::char_to_hex(str[start + 1])))); + + std::size_t conversions = 1; + for (auto i = next; i < end; ++i) { + for (auto entry : skips) { + if (entry == i && entry < end) { + std::size_t idx = detail::find_first_not_of_start(str, i + 1, delimiter); + one_char = str[idx + 1] == delimiter; + result[conversions++] = static_cast(str[idx] == mask ? masked : (one_char ? detail::char_to_hex(str[idx]) : detail::concat_hex(detail::char_to_hex(str[idx]), detail::char_to_hex(str[idx + 1])))); + } + } + } + + return result; + } + + public: + constexpr static auto value = consteval_value::value; + }; +}; + +using hex_string_array_conversion = basic_hex_string_array_conversion<' ', '?', int, -1>; +using simple_conversion = hex_string_array_conversion; +} // namespace stb + +#ifndef STB_OMIT_TESTS +struct _ignore_me_stb_compliance_tests { + using conv_type = stb::simple_conversion; + + constexpr static auto value_1 = conv_type::build<"AA BB CC DD EE FF">::value; + static_assert(value_1[0] == 0xAA); + static_assert(value_1[1] == 0xBB); + static_assert(value_1[2] == 0xCC); + static_assert(value_1[3] == 0xDD); + static_assert(value_1[4] == 0xEE); + static_assert(value_1[5] == 0xFF); + static_assert(value_1.size() == 6); + + constexpr static auto value_2 = conv_type::build<" C 0f C a B ef ">::value; + static_assert(value_2[0] == 0x0C); + static_assert(value_2[1] == 0x0F); + static_assert(value_2[2] == 0x0C); + static_assert(value_2[3] == 0x0A); + static_assert(value_2[4] == 0x0B); + static_assert(value_2[5] == 0xEF); + static_assert(value_2.size() == 6); + + constexpr static auto value_3 = conv_type::build<"AA bb CC dd ">::value; + static_assert(value_3[0] == 0xAA); + static_assert(value_3[1] == 0xBB); + static_assert(value_3[2] == 0xCC); + static_assert(value_3[3] == 0xDD); + static_assert(value_3.size() == 4); + + constexpr static auto value_4 = conv_type::build<" aa bb ee ff">::value; + static_assert(value_4[0] == 0xAA); + static_assert(value_4[1] == 0xBB); + static_assert(value_4[2] == 0xEE); + static_assert(value_4[3] == 0xFF); + static_assert(value_4.size() == 4); +}; +#endif + +#endif diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/stdafx.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/stdafx.h new file mode 100644 index 0000000..e69de29 diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/ui_icons.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/ui_icons.hpp new file mode 100644 index 0000000..abc5056 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/ui_icons.hpp @@ -0,0 +1,129 @@ +#pragma once + +// File: 'sesame_icons.ttf' (5736 bytes) +// Exported using binary_to_compressed_c.cpp +static const unsigned int sesame_icons_size = 5736; +static const unsigned int sesame_icons_data[5736/4] = +{ + 0x00000100, 0x80000e00, 0x60000300, 0x4d544646, 0xe7b54b8c, 0x4c160000, 0x1c000000, 0x46454447, 0x30002700, 0x24160000, 0x26000000, 0x322f534f, + 0xe0616f59, 0x68010000, 0x60000000, 0x70616d63, 0xfc091d0c, 0xe4010000, 0x42010000, 0x20747663, 0x79022100, 0x28030000, 0x04000000, 0x70736167, + 0x0300ffff, 0x1c160000, 0x08000000, 0x66796c67, 0x9cc4ea26, 0x44030000, 0x5c100000, 0x64616568, 0x8660bc19, 0xec000000, 0x36000000, 0x61656868, + 0x44037d07, 0x24010000, 0x24000000, 0x78746d68, 0xa000390c, 0xc8010000, 0x1c000000, 0x61636f6c, 0x560d9611, 0x2c030000, 0x16000000, 0x7078616d, + 0x53015300, 0x48010000, 0x20000000, 0x656d616e, 0x2d4afe67, 0xa0130000, 0x43020000, 0x74736f70, 0xaa00faff, 0xe4150000, 0x36000000, 0x00000100, + 0x00000100, 0x594a76cc, 0xf53c0f5f, 0xe8031f00, 0x00000000, 0x308953db, 0x00000000, 0xdb9353db, 0x57fffdff, 0x3f03e503, 0x08000000, 0x00000200, + 0x00000000, 0x00000100, 0x57ff3f03, 0xe8035a00, 0x0000fdff, 0x0100e503, 0x00000000, 0x00000000, 0x00000000, 0x04000000, 0x00000100, 0x22010a00, + 0x00000700, 0x02000000, 0x01000000, 0x00000100, 0x2e004000, 0x00000000, 0xe8030400, 0x05009001, 0x8a020000, 0x0000bb02, 0x8a028c00, 0x0000bb02, + 0x3100df01, 0x00000201, 0x09050002, 0x00000000, 0x00000000, 0x00000100, 0x00000000, 0x00000000, 0x66500000, 0x80006445, 0x47004100, 0x38ff2003, + 0x3f035a00, 0x0000a900, 0x00000100, 0x00000000, 0x00000d03, 0x01002000, 0x2100e803, 0x00000000, 0x0000e803, 0x1900e803, 0x2c002400, 0xfdff2600, + 0x3d003600, 0x03000000, 0x03000000, 0x1c000000, 0x00000100, 0x3c000000, 0x01000300, 0x1c000000, 0x20000400, 0x04000000, 0x01000400, 0x47000000, + 0x0000ffff, 0xffff4100, 0x0100c2ff, 0x00000000, 0x06010000, 0x00010000, 0x00000000, 0x02010000, 0x02000000, 0x00000000, 0x00000000, 0x00000000, + 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x03000000, 0x07060504, 0x00000908, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x79022100, 0x2a000000, + 0x2a002a00, 0x34022401, 0x1204fe02, 0xbc061c05, 0x00002e08, 0x21000200, 0x2a010000, 0x03009a02, 0x2e000700, 0x2f0001b1, 0x0407b23c, 0xb132ed00, + 0x3cdc0506, 0x000203b2, 0xb10032ed, 0x3c2f0003, 0x000405b2, 0x07b232ed, 0x3cfc0106, 0x000201b2, 0x113332ed, 0x33271121, 0x01212311, 0xc7c7e809, + 0x66fd9a02, 0x00580221, 0x19000400, 0xcf0365ff, 0x48001f03, 0xa1009000, 0x0000ad00, 0x16173601, 0x1617011d, 0x17011e17, 0x17161716, 0x16173216, + 0x06071615, 0x010e020f, 0x0f010e07, 0x06070604, 0x2f352627, 0x26272601, 0x2726022f, 0x37343726, 0x37013b36, 0x013e3736, 0x3f333637, 0x36373601, + 0x22273407, 0x07010e07, 0x3216010e, 0x07141617, 0x14152206, 0x17011e17, 0x34363716, 0x17323637, 0x32331416, 0x37013e37, 0x23013d36, 0x34262722, + 0x013b3637, 0x27263435, 0x27262726, 0x27232622, 0x0e071415, 0x012e2701, 0x16173623, 0x07060714, 0x27060706, 0x37343526, 0x17360736, 0x010e0716, + 0x34352622, 0x12fb0136, 0x1f06040c, 0x23673811, 0x02030c3b, 0x0c065902, 0x31050d01, 0x24060230, 0x47772a19, 0x08010111, 0x09140508, 0x7a190104, + 0x03135056, 0x0d053536, 0x33060d01, 0x05040332, 0x126ba01a, 0x01010708, 0x010b0604, 0x895a1102, 0x02070318, 0x0d0d063d, 0x1a0d3b06, 0x0317527f, + 0x20080403, 0x12030408, 0x185f3a27, 0x06222217, 0x24060d0d, 0x210b1324, 0x02443d36, 0x04050209, 0x0a091706, 0x06174b04, 0x0d030303, 0x050c2427, + 0x5a21100b, 0x0c080808, 0x080c0607, 0x051a0312, 0x2d2d0612, 0x0e050501, 0x614e2f44, 0x0401021a, 0x090e0f09, 0x0f010104, 0x38215525, 0x37030c47, + 0x01070738, 0x36050c01, 0x56100436, 0x01116f50, 0x0e090401, 0x1a04090f, 0x9268141c, 0x2e010311, 0xca08062e, 0x0c020125, 0x2c0d5979, 0x20080406, + 0x0e030408, 0x0e6b4e25, 0x39010104, 0x060e0e06, 0x55140d38, 0x05193337, 0x08200804, 0x44140804, 0x2e2a4117, 0x2501020b, 0x060a0624, 0x08100606, + 0x030c0406, 0x1d0d0503, 0x0a030109, 0x601a0e08, 0x1b070504, 0x0607080e, 0x00002406, 0x24000600, 0x99037bff, 0x4900f602, 0x71005d00, 0x9d008700, + 0x0000b600, 0x16173601, 0x06071415, 0x07010e07, 0x030f010e, 0x0607011d, 0x0f000607, 0x22262701, 0x1417010f, 0x1715011e, 0x010f0607, 0x3f342627, + 0x1f161701, 0x27013f01, 0x36373426, 0x36373637, 0x3e37013b, 0x013e3701, 0x36373637, 0x31223407, 0x07060722, 0x06020f06, 0x3f011f14, 0x27073602, + 0x07010e23, 0x14060706, 0x3637011f, 0x36373637, 0x3400013d, 0x0607012f, 0x23012e27, 0x14150622, 0x013f011f, 0x34272627, 0x16173601, 0x07061617, + 0x06020f06, 0x37260607, 0x36023f36, 0x32333607, 0x07011e17, 0x07222306, 0x0607010e, 0x26272627, 0x37363736, 0x0e760336, 0x0d0c080d, 0x02060104, + 0x06014404, 0x06032928, 0xe2fe0309, 0x0e0d070c, 0x04030202, 0x19020103, 0x8b060617, 0x091d1d8a, 0x040d0c0b, 0x970d0e03, 0x0f0c0798, 0x27223211, + 0x0a12101f, 0x50050220, 0x02010b5c, 0x1705564f, 0x22220d01, 0x22223738, 0x40f93131, 0x09112128, 0x708b8b06, 0x0587886f, 0xfe010406, 0x0b5354a9, + 0x2702020a, 0x6f100102, 0x0408096f, 0x9f010104, 0x03040808, 0x03050204, 0x17171311, 0x02100a05, 0x131a1902, 0x110ae613, 0x0108040f, 0x220f0704, + 0x04d90408, 0x02090808, 0x715b1801, 0xf1020904, 0x0c090c05, 0x091b1a07, 0x0a020e02, 0x280c0390, 0x0a2b2c29, 0xfe030d12, 0x0e060bdf, 0x1103030d, + 0x01070b03, 0x07171906, 0x028b8b05, 0x02031e1d, 0x03040303, 0x97010e0e, 0x05090597, 0x0d1f2705, 0x010f0508, 0x322b2602, 0x02282601, 0x2206010b, + 0x38370221, 0x67682222, 0x010140f7, 0x8a8a0404, 0x876f6f02, 0x0d080687, 0xfe272707, 0x53540181, 0x01010b0a, 0x01020e07, 0x09086f6f, 0x02031415, + 0x04046a02, 0x10050502, 0x0a0a0105, 0x02021717, 0x19050a10, 0x820a0b1a, 0x12050201, 0x02040706, 0x040401d9, 0x1b070a05, 0x0502705b, 0x2c000600, + 0xbd0388ff, 0x48000603, 0x61005800, 0x78006b00, 0x00008200, 0x1e173601, 0x17161701, 0x0607011e, 0x0e070607, 0x27222301, 0x3e37012e, 0x37363701, + 0x3637013e, 0x2e273635, 0x07262701, 0x07060706, 0x17011e30, 0x1617011e, 0x010e0706, 0x26272627, 0x37013e35, 0x1e17013e, 0x37011f01, 0x23260636, + 0x30150622, 0x16010e07, 0x013e3736, 0x16360335, 0x27010e07, 0x3617012e, 0x07141617, 0x3626010e, 0x16173617, 0x14151617, 0x35262706, 0x17361734, + 0x06070616, 0x01262726, 0x0f86a9e9, 0x12440d2f, 0x16030103, 0x33252269, 0x05133a7b, 0x04040408, 0x4b58160f, 0x0d15684a, 0xae190a01, 0x4f393a77, + 0x072a1f40, 0x0b16070c, 0x0f110201, 0x1f0aa709, 0x1a01060d, 0x11200704, 0x1c16150d, 0x86547113, 0x0d070202, 0x1605030a, 0x9b173e3b, 0x050a1b10, + 0x010c0813, 0x030c114e, 0x0f1a0703, 0x08066808, 0x1c050507, 0x0e7c070d, 0x0d020c0e, 0x0502160a, 0x6908fe02, 0x5b11300d, 0x134e1571, 0x1823699a, + 0x05022522, 0x05070913, 0x26280501, 0x34304f82, 0xa6742a2f, 0x0a080a16, 0x07221124, 0x1316070d, 0x071d100f, 0x03021d05, 0x0f0d0c1b, 0x130f089c, + 0x170e0102, 0xdf5c0f1b, 0x50010585, 0x0305163a, 0x06060b0a, 0x1c0aaefe, 0x04050710, 0x05641d06, 0x05110411, 0x1815010a, 0x02020153, 0x11090606, + 0x08070d0c, 0x09093714, 0x04051e07, 0x00110b09, 0x26000700, 0xc8037dff, 0x48001603, 0x76005a00, 0x9c008100, 0xb900ab00, 0x36010000, 0x011e1732, + 0x06071617, 0x010f0607, 0x14151617, 0x2f260607, 0x27060701, 0x07010e14, 0x0e222306, 0x27222302, 0x37343526, 0x3e30023e, 0x35363703, 0x37363734, + 0x26273436, 0x37362627, 0x37011f36, 0x17363736, 0x07222726, 0x010e0706, 0x32331614, 0x35363700, 0x012e0134, 0x07230607, 0x010e0716, 0x16171617, + 0x37320607, 0x17161736, 0x2f363716, 0x23260601, 0x14150622, 0x3637013b, 0x23273707, 0x06070607, 0x06070607, 0x15010e07, 0x36161714, 0x33013e37, + 0x01363732, 0x07161736, 0x010e0706, 0x37262223, 0x3607013e, 0x010e0716, 0x27260607, 0x36373634, 0x38072803, 0x082b1d08, 0x12060809, 0x057e7c07, + 0x270f1a0d, 0x18180711, 0x067f7902, 0x1e1c1d1d, 0x14130f2d, 0x010c1a0a, 0x03010103, 0x23020403, 0x92920815, 0x03040903, 0x26240c0c, 0x0b7d7f08, + 0x120d5a0f, 0x070c0c13, 0x0272fd07, 0x03010102, 0x479cfe0a, 0x02070b1a, 0x03030103, 0x26020201, 0x01010126, 0x2f2e0201, 0x0c0c0c06, 0x735d0101, + 0x74b50101, 0xc4212273, 0x2375745d, 0x020d0423, 0x18060f02, 0x0a09060e, 0x2b190f10, 0x07131d1e, 0x08093902, 0x4301030b, 0x0a051431, 0x7b06060c, + 0x021109a0, 0x09061f01, 0x0e050112, 0x03130313, 0x1c2d0803, 0x14191e20, 0x067e7c09, 0x141e1411, 0x060b010b, 0x02011818, 0x13047d7b, 0x06082b0e, + 0x0d171f11, 0x01020301, 0x02040303, 0x1d2f1e22, 0x0492920b, 0x0e160802, 0x1b1e0a1f, 0x087e7f07, 0x0106200b, 0x04040504, 0x017204fd, 0x18120603, + 0x47b9fe33, 0x02010316, 0x0f050501, 0x26260405, 0x01010102, 0x0602302f, 0x0a120606, 0x01b6721c, 0xc4212202, 0x2323015d, 0x22271205, 0x0f190a16, + 0x050d0608, 0x1b0f0705, 0x02050e14, 0x08050496, 0x3143050b, 0x08071311, 0x1004a37b, 0x05200409, 0x060a0a06, 0x00130e07, 0xfdff0400, 0xe50357ff, + 0x41003f03, 0xab007400, 0x0000b400, 0x32173601, 0x011e1716, 0x15321415, 0x17161714, 0x14161716, 0x14150607, 0x17222306, 0x14222316, 0x07141522, + 0x010e0106, 0x2f012e27, 0x060e0701, 0x012e2726, 0x26273427, 0x37360136, 0x2f261700, 0x17010901, 0x3637011e, 0x37013e37, 0x3637013e, 0x36373637, + 0x36373637, 0x37013e37, 0x32333634, 0x33363435, 0x2e273436, 0x23262702, 0x17223422, 0x06072634, 0x06070607, 0x07061415, 0x010e0706, 0x06070607, + 0x07010e07, 0x0607010e, 0x23010e07, 0x26271422, 0x15010e07, 0x37011f14, 0x3637023e, 0x3e373637, 0x2f370101, 0x14060701, 0x5c033216, 0x0a02060e, + 0x092f0701, 0x02010707, 0x07111107, 0x02040306, 0x09040503, 0xdefe1809, 0x120b1e3f, 0x851d1915, 0x1526251e, 0x0a0e0c16, 0x054e1106, 0x015c0601, + 0x0112221d, 0x0e0238a6, 0xfefafe0e, 0x0f1a25fb, 0x1d1e070b, 0x1702031a, 0x23250f11, 0x0805130b, 0x09082059, 0x05090110, 0x060c2c04, 0x03040107, + 0x04030301, 0x0c052b08, 0x03020616, 0x0a082503, 0x04191d29, 0x18030202, 0x241f180e, 0x08020319, 0x05051906, 0x03030404, 0xb617162c, 0x0333632a, + 0x0e0a060e, 0x4afd0905, 0x87242586, 0x03094086, 0x02030936, 0x042e0201, 0x07070605, 0x0d090608, 0x0d217a22, 0x050d0603, 0x04050d04, 0xe2fe1e0a, + 0x0101183e, 0x841d180c, 0x1324251e, 0x02040611, 0x104d0501, 0x65150301, 0x13211c01, 0x073ca401, 0xf8fe0b0b, 0x1a25f8fe, 0x0302010a, 0x17251f02, + 0x060a0a2b, 0x2e0d0804, 0x03040a53, 0x13122503, 0x1e080620, 0x03110701, 0x0702080d, 0x030f860e, 0x14290d06, 0x03020910, 0x05070424, 0x15181604, + 0x0f1a1510, 0x1a04040a, 0x0d121723, 0x03030a1b, 0x03060405, 0xb6161603, 0x0333622a, 0x200f090f, 0xb9fd300c, 0x87242586, 0x00400986, 0x36000400, + 0x8203a8ff, 0x7700f402, 0x0901f100, 0x00002101, 0x32373601, 0x3b011f16, 0x013e3701, 0x17163233, 0x011e1716, 0x15010e07, 0x33161707, 0x16363732, + 0x16171617, 0x1d010f06, 0x011e1701, 0x0e070607, 0x2f262701, 0x17010f01, 0x06161716, 0x06070607, 0x2b012f26, 0x010e0701, 0x2e272627, 0x35363701, + 0x07012f34, 0x0607010e, 0x27262726, 0x36343526, 0x013d013f, 0x37012e27, 0x013e3736, 0x32331617, 0x27343536, 0x36373626, 0x22072616, 0x15010e07, + 0x07161714, 0x0607010e, 0x22232627, 0x06070607, 0x011e1415, 0x07060714, 0x17143106, 0x37011f16, 0x17363736, 0x1617011e, 0x14150607, 0x16171617, + 0x013e3233, 0x33011e32, 0x3f363732, 0x27263501, 0x013e3726, 0x16173637, 0x3637011f, 0x30353637, 0x3e34012e, 0x27343501, 0x23262726, 0x27060722, + 0x2627012e, 0x34353637, 0x23262726, 0x07060722, 0x36172206, 0x16171617, 0x16171617, 0x07060714, 0x27262706, 0x37363726, 0x2617013e, 0x07010e07, + 0x17141506, 0x17161716, 0x36373216, 0x34353637, 0x70012627, 0x09070516, 0x2121110f, 0x07090e11, 0x2c0e2e06, 0x04030f26, 0x17020501, 0x26040316, + 0x240a0b13, 0x19070412, 0x07191b1b, 0x0a241204, 0x0519150c, 0x0217180a, 0x04040501, 0x12493a0f, 0x2111110b, 0x0c101221, 0x103a4911, 0x17080404, + 0x15030a17, 0x0a0b1606, 0x09111018, 0x1b1a1a16, 0x25100605, 0x25130c08, 0x082d0304, 0x3b0e0404, 0x04012171, 0x063c1a19, 0x43010306, 0x181e0603, + 0x15060203, 0x0531080d, 0x171a0302, 0x06150d08, 0x1b160505, 0x01430306, 0x1a060603, 0x021c1f1c, 0x61082101, 0x03012108, 0x0726281b, 0x03060501, + 0x05034301, 0x0504171c, 0x080d1605, 0x31040431, 0x04160d08, 0x1e180303, 0x01430306, 0x24070402, 0x010c2f14, 0x0404120f, 0x0f0e2261, 0x1216191c, + 0x10110c13, 0x46462e17, 0x05201723, 0x41130c03, 0x1f161552, 0x02080c31, 0x341a0805, 0x3a071f07, 0x15070d19, 0x0105ee02, 0x1a1a150a, 0x050d0a15, + 0x0c091810, 0x02160615, 0x0817170a, 0x3a0f0504, 0x110c1149, 0x11212111, 0x49110c11, 0x0504103a, 0x18020105, 0x18060a17, 0x24090c16, 0x19080512, + 0x08191a1a, 0x09241205, 0x0425130c, 0x02171703, 0x05010401, 0x2d260f04, 0x09071030, 0x2121110f, 0x1a0c1211, 0x050d3c3f, 0x032c0804, 0x0b132604, + 0x32442409, 0x1d080801, 0x1e1a0105, 0x01430306, 0x09050602, 0x031a2924, 0x61092001, 0x10110503, 0x24291a03, 0x0401010a, 0x43010206, 0x1a1e0504, + 0x0f0d0302, 0x0531090a, 0x0c093105, 0x05050417, 0x03041c17, 0x06020243, 0x07010104, 0x031c2727, 0x09610821, 0x1b030120, 0x05072529, 0x43020206, + 0x20170503, 0x08130303, 0x031a1714, 0x0202ad02, 0x120b0c02, 0x48221712, 0x24172e21, 0x2f201124, 0x25191f36, 0x0305232d, 0x151c2705, 0x14091118, + 0x020b2d0d, 0x1a330c01, 0x3c11151b, 0x3d000600, 0xc703a3ff, 0x3300e702, 0x9a005100, 0xe600b400, 0x00000101, 0x20053613, 0x16171617, 0x14151617, + 0x16171617, 0x14060706, 0x06070607, 0x012e2704, 0x26272627, 0x26342627, 0x36372627, 0x36373637, 0x34353637, 0x36373233, 0x01292605, 0x06070607, + 0x06070607, 0x16171617, 0x20211617, 0x34353637, 0x22232627, 0x36052627, 0x16172021, 0x32331432, 0x32161716, 0x15163216, 0x06141614, 0x0e071415, + 0x06141502, 0x22230607, 0x20211415, 0x26272627, 0x27342223, 0x2627012e, 0x34352223, 0x37342627, 0x33343536, 0x013e3732, 0x33343637, 0x26043632, + 0x22230620, 0x17140607, 0x16323316, 0x37323620, 0x34363736, 0x26272627, 0x17203604, 0x1714011e, 0x1415011e, 0x07011e17, 0x22060706, 0x06071415, + 0x20210607, 0x22262726, 0x26273427, 0x26272627, 0x32362627, 0x37363435, 0x26053736, 0x0e070620, 0x16060701, 0x16171617, 0x2025011f, 0x34323437, + 0x35363233, 0x01049834, 0x036c016b, 0x0f110a06, 0x0a06010b, 0x050d0c04, 0x0914150c, 0x02022ffd, 0x0b010111, 0x03070e1b, 0x02070402, 0x0d100603, + 0x02020407, 0xda020b05, 0xfea0fe06, 0x050a0aa0, 0x02020105, 0x0d090803, 0x01010105, 0x06620163, 0x050c021e, 0xfd040302, 0x5c010b2d, 0x02067601, + 0x22050306, 0x03030102, 0x04040603, 0x09030108, 0x04100712, 0xfe88fe03, 0x091010a8, 0x0302020a, 0x01011a04, 0x08040202, 0x02020408, 0x04190101, + 0x14020204, 0xfd02d302, 0x0f030348, 0x0d06060d, 0x0202040f, 0x050a02b8, 0x02020b0d, 0xfd050d0b, 0xd402022d, 0x06130101, 0x0a051c05, 0x0502010d, + 0x0e0d0308, 0x93fe0520, 0x0c54ddfe, 0x0a010405, 0x03010b18, 0x05030202, 0x18081203, 0x07de0214, 0x05023bfd, 0x02021206, 0x05010302, 0x010a0906, + 0x01660165, 0x0e060206, 0x0101e602, 0x09050302, 0x02030b0e, 0x11240201, 0x02070d34, 0x02051109, 0x03010201, 0x0d060101, 0x02050b1d, 0x030f2410, + 0x0e0f0e09, 0x02020102, 0x02390502, 0x07070505, 0x150b0101, 0x0102110e, 0x0f030102, 0x18040a1d, 0x02fb0304, 0x1d040106, 0x130b0406, 0x20020504, + 0x06110502, 0x01090901, 0x0a041202, 0x01020601, 0x02030505, 0x04031a01, 0x110a0102, 0x02091132, 0x19040402, 0x0a030201, 0x1603033a, 0x16091e09, + 0x07030303, 0x04140416, 0xfd030716, 0x03010203, 0x14020203, 0x0b070102, 0x0d150f2a, 0x0c030213, 0x01020f0f, 0x02010207, 0x05191006, 0x0f0f0307, + 0x1c040423, 0x3b041607, 0x01010303, 0x19080c12, 0x07070102, 0x03010505, 0x0b1b0402, 0x0000001e, 0x0e000000, 0x0100ae00, 0x00000000, 0x1e000000, + 0x01003e00, 0x00000000, 0x0c000100, 0x01007700, 0x00000000, 0x07000200, 0x01009400, 0x00000000, 0x27000300, 0x0100ec00, 0x00000000, 0x0c000400, + 0x01002e01, 0x00000000, 0x10000500, 0x01005d01, 0x00000000, 0x0c000600, 0x03008801, 0x09040100, 0x3c000000, 0x03000000, 0x09040100, 0x18000100, + 0x03005d00, 0x09040100, 0x0e000200, 0x03008400, 0x09040100, 0x4e000300, 0x03009c00, 0x09040100, 0x18000400, 0x03001401, 0x09040100, 0x20000500, + 0x03003b01, 0x09040100, 0x18000600, 0x43006e01, 0x70006f00, 0x72007900, 0x67006900, 0x74006800, 0x28002000, 0x29006300, 0x32002000, 0x32003000, + 0x2c003000, 0x73002000, 0x73006500, 0x6d006100, 0x2e006500, 0x6e006f00, 0x00006500, 0x79706f43, 0x68676972, 0x63282074, 0x30322029, 0x202c3032, + 0x61736573, 0x6f2e656d, 0x0000656e, 0x00650073, 0x00610073, 0x0065006d, 0x0069005f, 0x006f0063, 0x0073006e, 0x73657300, 0x5f656d61, 0x6e6f6369, + 0x52000073, 0x67006500, 0x6c007500, 0x72006100, 0x65520000, 0x616c7567, 0x46000072, 0x6e006f00, 0x46007400, 0x72006f00, 0x65006700, 0x32002000, + 0x30002e00, 0x3a002000, 0x73002000, 0x73006500, 0x6d006100, 0x5f006500, 0x63006900, 0x6e006f00, 0x20007300, 0x20003a00, 0x2d003700, 0x2d003800, + 0x30003200, 0x30003200, 0x6f460000, 0x6f46746e, 0x20656772, 0x20302e32, 0x6573203a, 0x656d6173, 0x6f63695f, 0x3a20736e, 0x382d3720, 0x3230322d, + 0x73000030, 0x73006500, 0x6d006100, 0x5f006500, 0x63006900, 0x6e006f00, 0x00007300, 0x61736573, 0x695f656d, 0x736e6f63, 0x00560000, 0x00720065, + 0x00690073, 0x006e006f, 0x00300020, 0x00310030, 0x0030002e, 0x00300030, 0x56000020, 0x69737265, 0x30206e6f, 0x302e3130, 0x00203030, 0x65007300, + 0x61007300, 0x65006d00, 0x69005f00, 0x6f006300, 0x73006e00, 0x65730000, 0x656d6173, 0x6f63695f, 0x0000736e, 0x00000200, 0x00000000, 0x320051ff, + 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000a00, 0x02000100, 0x25002400, 0x27002600, 0x29002800, 0x00002a00, 0x01000000, + 0x0200ffff, 0x00000100, 0x00000c00, 0x1e001600, 0x01000200, 0x09000100, 0x04000100, 0x02000000, 0x01000000, 0x01000000, 0x00000000, 0x01000000, + 0x00000000, 0xdb98a4d5, 0x00000000, 0x308953db, 0x00000000, 0xdb9353db, +}; + diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/variables.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/variables.cpp new file mode 100644 index 0000000..e69de29 diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/variables.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/variables.h new file mode 100644 index 0000000..66d2a85 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/core/variables.h @@ -0,0 +1,446 @@ +#pragma once + +#include "config.h" +#include "../features.h" + +#pragma region variables_combo_entries +using VisualOverlayBox_t = int; + +enum EVisualOverlayBox : VisualOverlayBox_t +{ + VISUAL_OVERLAY_BOX_NONE = 0, + VISUAL_OVERLAY_BOX_FULL, + VISUAL_OVERLAY_BOX_CORNERS, + VISUAL_OVERLAY_BOX_MAX +}; + +using VisualChamMaterial_t = int; +enum EVisualsChamMaterials : VisualChamMaterial_t +{ + VISUAL_MATERIAL_PRIMARY_WHITE = 0, + glowproperty = 1, + glowproperty2 = 2, + VISUAL_MATERIAL_MAX +}; + +using MiscDpiScale_t = int; + +enum EMiscDpiScale : MiscDpiScale_t +{ + MISC_DPISCALE_DEFAULT = 0, + MISC_DPISCALE_125, + MISC_DPISCALE_150, + MISC_DPISCALE_175, + MISC_DPISCALE_200, + MISC_DPISCALE_MAX +}; + +#pragma endregion + +#pragma region variables_multicombo_entries +using MenuAddition_t = unsigned int; +enum EMenuAddition : MenuAddition_t +{ + MENU_ADDITION_NONE = 0U, + MENU_ADDITION_DIM_BACKGROUND = 1 << 0, + MENU_ADDITION_BACKGROUND_PARTICLE = 1 << 1, + MENU_ADDITION_GLOW = 1 << 2, + MENU_ADDITION_ALL = MENU_ADDITION_DIM_BACKGROUND | MENU_ADDITION_GLOW +}; +using LegitCond_t = unsigned int; +enum LegitCond : LegitCond_t +{ + LEGIT_NONE = 0U, + + LEGIT_IN_AIR = 1 << 0, + LEGIT_FLASHED = 1 << 1, + LEGIT_IN_SMOKE = 1 << 2, + LEGIT_DELAY_SHOT = 1 << 3 + +}; + +using ESPFlags_t = unsigned int; +enum EESPFlags : ESPFlags_t +{ + FLAGS_NONE = 0U, + FLAGS_ARMOR = 1 << 0, + FLAGS_DEFUSER = 1 << 1 +}; +#pragma endregion + +struct rage_weapon_t { + +}; +struct Variables_t +{ + +#pragma region ragebot + C_ADD_VARIABLE_ARRAY(int, 7, rage_target_select, 0); + C_ADD_VARIABLE_ARRAY(int, 7, rage_minimum_damage, 0); + C_ADD_VARIABLE_ARRAY(int, 7, rage_minimum_hitchance, 0); + + C_ADD_VARIABLE(bool, rage_enable, false); + C_ADD_VARIABLE_ARRAY(bool, 7, rage_hitchance, 0); + C_ADD_VARIABLE_ARRAY(bool, 7, rapid_fire, 0); + C_ADD_VARIABLE_ARRAY(bool, 7, rage_penetration, 0); + C_ADD_VARIABLE_ARRAY(bool, 7, rage_safe_point, 0); + C_ADD_VARIABLE_ARRAY(bool, 7, rage_auto_stop, 0); + C_ADD_VARIABLE_ARRAY(bool, 7, rage_early_stop, 0); + C_ADD_VARIABLE_ARRAY(bool, 7, rage_auto_scope, 0); + C_ADD_VARIABLE_ARRAY(bool, 7, remove_weapon_accuracy_spread, 0); + + C_ADD_VARIABLE_ARRAY(bool, 7, hitbox_head, 0); + C_ADD_VARIABLE_ARRAY(bool, 7, hitbox_neck, 0); + C_ADD_VARIABLE_ARRAY(bool, 7, hitbox_uppeer_chest, 0); + C_ADD_VARIABLE_ARRAY(bool, 7, hitbox_chest, 0); + C_ADD_VARIABLE_ARRAY(bool, 7, hitbox_stomach, 0); + C_ADD_VARIABLE_ARRAY(bool, 7, hitbox_legs, 0); + C_ADD_VARIABLE_ARRAY(bool, 7, hitbox_feet, 0); + + + +#pragma endregion +#pragma region variables_world + C_ADD_VARIABLE(bool, bNightmode, false); + +#pragma endregion +#pragma region variables_visuals + C_ADD_VARIABLE(bool, bVisualOverlay, false); + + C_ADD_VARIABLE(bool, bRemoveChamsT, false); + + C_ADD_VARIABLE(bool, bRemoveChamsOcclude, false); + + + C_ADD_VARIABLE(FrameOverlayVar_t, overlayBox, FrameOverlayVar_t(false)); + C_ADD_VARIABLE(TextOverlayVar_t, overlayName, TextOverlayVar_t(false, false)); + C_ADD_VARIABLE(BarOverlayVar_t, overlayHealthBar, BarOverlayVar_t(false, false, false, 2.1f, Color_t(0, 255, 155), Color_t(255, 0, 155))); + C_ADD_VARIABLE(BarOverlayVar_t, backgroundHealthbar, BarOverlayVar_t(false, false, false, 1.f, Color_t(0, 0, 0, 55), Color_t(0, 0, 0, 55))); + + C_ADD_VARIABLE(BarOverlayVar_t, AmmoBar, BarOverlayVar_t(false, false, false, 1.f, Color_t(0, 255, 155), Color_t(255, 0, 155))); + C_ADD_VARIABLE(BarOverlayVar_t, AmmoBarBackground, BarOverlayVar_t(false, false, false, 1.f, Color_t(0, 0, 0, 55), Color_t(0, 0, 0, 55))); + bool full_update = false; + C_ADD_VARIABLE(bool, bVisualChams, false); + C_ADD_VARIABLE(bool, bSkeleton, false); + + C_ADD_VARIABLE(int, nVisualChamMaterial, 0); + C_ADD_VARIABLE(bool, bVisualChamsIgnoreZ, false); // invisible chams + C_ADD_VARIABLE(bool, bNoShadow, false); + + C_ADD_VARIABLE(ColorPickerVar_t, colVisualChams, ColorPickerVar_t(0, 255, 0)); + C_ADD_VARIABLE(ColorPickerVar_t, colVisualChamsIgnoreZ, ColorPickerVar_t(255, 0, 0)); + C_ADD_VARIABLE(ColorPickerVar_t, colModulate, ColorPickerVar_t(255, 0, 0)); + +#pragma endregion +#pragma region legit + C_ADD_VARIABLE(bool, legit_enable, false); + C_ADD_VARIABLE(int, legit_weapon_selection, 0); + C_ADD_VARIABLE(bool, legit_silent_aim, false); + C_ADD_VARIABLE(bool, legit_delay_aim, false); + C_ADD_VARIABLE(int, legit_delay_aim_ms, 0); + + C_ADD_VARIABLE(int, legit_target_selection, 0); + C_ADD_VARIABLE(int, legit_target_selection_machinegun, 0); + C_ADD_VARIABLE(int, legit_target_selection_assultrifles, 0); + C_ADD_VARIABLE(int, legit_target_selection_snipers, 0); + + C_ADD_VARIABLE(bool, legit_fov_visualize, false); + + + C_ADD_VARIABLE(ColorPickerVar_t, legit_fov_visualizeclr, ColorPickerVar_t(255, 88, 88)); + + + + C_ADD_VARIABLE(int, legit_smooth_pistol, 1); + C_ADD_VARIABLE(int, legit_smooth_machinegun, 1); + C_ADD_VARIABLE(int, legit_smooth_assultrifles, 1); + C_ADD_VARIABLE(int, legit_smooth_snipers, 1); + + C_ADD_VARIABLE(int, legit_rcs_shots_pistol, 0); + C_ADD_VARIABLE(int, legit_rcs_shots_machinegun, 0); + C_ADD_VARIABLE(int, legit_rcs_shots_assultrifles, 0); + C_ADD_VARIABLE(int, legit_rcs_shots_snipers, 0); + + C_ADD_VARIABLE(bool, legit_rcs_pistol, false); + C_ADD_VARIABLE(bool, legit_rcs_machinegun, false); + C_ADD_VARIABLE(bool, legit_rcs_assultrifles, false); + C_ADD_VARIABLE(bool, legit_rcs_snipers, false); + + C_ADD_VARIABLE(bool, PunchRandomization_pistol, false); + C_ADD_VARIABLE(bool, PunchRandomization_machinegun, false); + C_ADD_VARIABLE(bool, PunchRandomization_assultrifles, false); + C_ADD_VARIABLE(bool, PunchRandomization_snipers, false); + + C_ADD_VARIABLE(float, punch_y_pistol, 0); + C_ADD_VARIABLE(float, punch_x_pistol, 0); + C_ADD_VARIABLE(float, punch_y_snipers, 0); + C_ADD_VARIABLE(float, punch_x_snipers, 0); + C_ADD_VARIABLE(float, punch_y_machinegun, 0); + C_ADD_VARIABLE(float, punch_x_machinegun, 0); + C_ADD_VARIABLE(float, punch_x_assultrifles, 0); + C_ADD_VARIABLE(float, punch_y_assultrifles, 0); + + C_ADD_VARIABLE(bool, legit_rcs_shots_enable_pistol, false); + C_ADD_VARIABLE(bool, legit_rcs_shots_enable_machinegun, false); + C_ADD_VARIABLE(bool, legit_rcs_shots_enable_assultrifles, false); + C_ADD_VARIABLE(bool, legit_rcs_shots_enable_snipers, false); + + C_ADD_VARIABLE(float, legit_rcs_smoothx_pistol, 0.f); + C_ADD_VARIABLE(float, legit_rcs_smoothx_machinegun, 0.f); + C_ADD_VARIABLE(float, legit_rcs_smoothx_assultrifles, 0.f); + C_ADD_VARIABLE(float, legit_rcs_smoothx_snipers, 0.f); + + C_ADD_VARIABLE(float, legit_rcs_smoothy_pistol, 0.f); + C_ADD_VARIABLE(float, legit_rcs_smoothy_machinegun, 0.f); + C_ADD_VARIABLE(float, legit_rcs_smoothy_assultrifles, 0.f); + C_ADD_VARIABLE(float, legit_rcs_smoothy_snipers, 0.f); + + C_ADD_VARIABLE(bool, legit_no_scope, false); + + C_ADD_VARIABLE(bool, legit_visibility_check_pistol, true); + C_ADD_VARIABLE(bool, legit_visibility_check_machinegun, true); + C_ADD_VARIABLE(bool, legit_visibility_check_assultrifles, true); + C_ADD_VARIABLE(bool, legit_visibility_check_snipers, true); + + C_ADD_VARIABLE(bool, hitbox_head_pistol, false); + C_ADD_VARIABLE(bool, hitbox_head_machinegun, false); + C_ADD_VARIABLE(bool, hitbox_head_assultrifles, false); + C_ADD_VARIABLE(bool, hitbox_head_snipers, false); + + C_ADD_VARIABLE(bool, hitbox_neck_pistol, false); + C_ADD_VARIABLE(bool, hitbox_neck_machinegun, false); + C_ADD_VARIABLE(bool, hitbox_neck_assultrifles, false); + C_ADD_VARIABLE(bool, hitbox_neck_snipers, false); + + C_ADD_VARIABLE(bool, hitbox_uppeer_chest_pistol, false); + C_ADD_VARIABLE(bool, hitbox_uppeer_chest_machinegun, false); + C_ADD_VARIABLE(bool, hitbox_uppeer_chest_assultrifles, false); + C_ADD_VARIABLE(bool, hitbox_uppeer_chest_snipers, false); + C_ADD_VARIABLE(float, max_lagcompensation_time, 0.f); + C_ADD_VARIABLE(bool, hitbox_chest_pistol, false); + C_ADD_VARIABLE(bool, hitbox_chest_machinegun, false); + C_ADD_VARIABLE(bool, hitbox_chest_assultrifles, false); + C_ADD_VARIABLE(bool, hitbox_chest_snipers, false); + + C_ADD_VARIABLE(bool, hitbox_stomach_pistol, false); + C_ADD_VARIABLE(bool, hitbox_stomach_machinegun, false); + C_ADD_VARIABLE(bool, hitbox_stomach_assultrifles, false); + C_ADD_VARIABLE(bool, hitbox_stomach_snipers, false); + + C_ADD_VARIABLE(bool, hitbox_leg_l_pistol, false); + C_ADD_VARIABLE(bool, hitbox_leg_l_machinegun, false); + C_ADD_VARIABLE(bool, hitbox_leg_l_assultrifles, false); + C_ADD_VARIABLE(bool, hitbox_leg_l_snipers, false); + + C_ADD_VARIABLE(bool, hitbox_leg_r_pistol, false); + C_ADD_VARIABLE(bool, hitbox_leg_r_machinegun, false); + C_ADD_VARIABLE(bool, hitbox_leg_r_assultrifles, false); + C_ADD_VARIABLE(bool, hitbox_leg_r_snipers, false); + C_ADD_VARIABLE(bool, trigger_enable_p, false); + C_ADD_VARIABLE(bool, trigger_on_key, false); + C_ADD_VARIABLE(int, trigger_hitchance_p, 0); + C_ADD_VARIABLE(bool, trigger_enable_a, false); + C_ADD_VARIABLE(int, trigger_hitchance_a, 0); + C_ADD_VARIABLE(bool, trigger_enable_m, false); + C_ADD_VARIABLE(int, trigger_hitchance_m, 0); + C_ADD_VARIABLE(bool, trigger_enable_s, false); + C_ADD_VARIABLE(int, trigger_hitchance_s, 0); + + // PISTOL + C_ADD_VARIABLE(int, legit_fov_pistol, 0); + C_ADD_VARIABLE(KeyBind_t, legit_key_pistol, 0); + C_ADD_VARIABLE(KeyBind_t, edge_bug_key, 0); + + // MACHINESGUN + C_ADD_VARIABLE(int, legit_fov_machinegun, 0); + C_ADD_VARIABLE(KeyBind_t, legit_key_machinegun, 0); + + // ASSULTRIFLES + C_ADD_VARIABLE(int, legit_fov_assultrifles, 0); + C_ADD_VARIABLE(KeyBind_t, legit_key_assultrifles, 0); + + // SNIPERS + C_ADD_VARIABLE(int, legit_fov_snipers, 0); + C_ADD_VARIABLE(KeyBind_t, legit_key_snipers, 0); +#pragma endregion + +#pragma region antiaim + C_ADD_VARIABLE(bool, bAntiAim, false); + C_ADD_VARIABLE(int, iBaseYawType, 0); + C_ADD_VARIABLE(int, iPitchType, 0); +#pragma endregion +#pragma region rage + + C_ADD_VARIABLE(int, rage_weapon_selection, 0); + C_ADD_VARIABLE(bool, rage_silent_aim, false); + C_ADD_VARIABLE(bool, rage_delay_aim, false); + C_ADD_VARIABLE(int, rage_delay_aim_ms, 0); + + C_ADD_VARIABLE(int, rage_target_selection, 0); + C_ADD_VARIABLE(int, rage_target_selection_machinegun, 0); + C_ADD_VARIABLE(int, rage_target_selection_assultrifles, 0); + C_ADD_VARIABLE(int, rage_target_selection_snipers, 0); + + C_ADD_VARIABLE(bool, rage_fov_visualize, false); + + C_ADD_VARIABLE(ColorPickerVar_t, rage_fov_visualizeclr, ColorPickerVar_t(255, 88, 88)); + + C_ADD_VARIABLE(bool, remove_weapon_accuracy_spread_rage, false); + + C_ADD_VARIABLE(int, rage_hitchance_p, 1); + C_ADD_VARIABLE(int, rage_hitchance_m, 1); + C_ADD_VARIABLE(int, rage_hitchance_a, 1); + C_ADD_VARIABLE(float, rage_hitchance_s, 1.f); + + C_ADD_VARIABLE(int, rage_rcs_shots_pistol, 0); + C_ADD_VARIABLE(int, rage_rcs_shots_machinegun, 0); + C_ADD_VARIABLE(int, rage_rcs_shots_assultrifles, 0); + C_ADD_VARIABLE(int, rage_rcs_shots_snipers, 0); + + C_ADD_VARIABLE(bool, rage_rcs_pistol, false); + C_ADD_VARIABLE(bool, rage_rcs_machinegun, false); + C_ADD_VARIABLE(bool, rage_rcs_assultrifles, false); + C_ADD_VARIABLE(bool, rage_rcs_snipers, false); + + C_ADD_VARIABLE(bool, PunchRandomization_rage_pistol, false); + C_ADD_VARIABLE(bool, PunchRandomization_rage_machinegun, false); + C_ADD_VARIABLE(bool, PunchRandomization_rage_assultrifles, false); + C_ADD_VARIABLE(bool, PunchRandomization_rage_snipers, false); + + C_ADD_VARIABLE(float, punch_y_rage_pistol, 0); + C_ADD_VARIABLE(float, punch_x_rage_pistol, 0); + C_ADD_VARIABLE(float, punch_y_rage_snipers, 0); + C_ADD_VARIABLE(float, punch_x_rage_snipers, 0); + C_ADD_VARIABLE(float, punch_y_rage_machinegun, 0); + C_ADD_VARIABLE(float, punch_x_rage_machinegun, 0); + C_ADD_VARIABLE(float, punch_x_rage_assultrifles, 0); + C_ADD_VARIABLE(float, punch_y_rage_assultrifles, 0); + + C_ADD_VARIABLE(bool, rage_rcs_shots_enable_pistol, false); + C_ADD_VARIABLE(bool, rage_rcs_shots_enable_machinegun, false); + C_ADD_VARIABLE(bool, rage_rcs_shots_enable_assultrifles, false); + C_ADD_VARIABLE(bool, rage_rcs_shots_enable_snipers, false); + + C_ADD_VARIABLE(float, rage_rcs_smoothx_pistol, 0.f); + C_ADD_VARIABLE(float, rage_rcs_smoothx_machinegun, 0.f); + C_ADD_VARIABLE(float, rage_rcs_smoothx_assultrifles, 0.f); + C_ADD_VARIABLE(float, rage_rcs_smoothx_snipers, 0.f); + + C_ADD_VARIABLE(float, rage_rcs_smoothy_pistol, 0.f); + C_ADD_VARIABLE(float, rage_rcs_smoothy_machinegun, 0.f); + C_ADD_VARIABLE(float, rage_rcs_smoothy_assultrifles, 0.f); + C_ADD_VARIABLE(float, rage_rcs_smoothy_snipers, 0.f); + + C_ADD_VARIABLE(bool, rage_no_scope, false); + + C_ADD_VARIABLE(bool, rage_visibility_check_pistol, true); + C_ADD_VARIABLE(bool, rage_visibility_check_machinegun, true); + C_ADD_VARIABLE(bool, rage_visibility_check_assultrifles, true); + C_ADD_VARIABLE(bool, rage_visibility_check_snipers, true); + + C_ADD_VARIABLE(bool, hitbox_head_rage_pistol, false); + C_ADD_VARIABLE(bool, hitbox_head_rage_machinegun, false); + C_ADD_VARIABLE(bool, hitbox_head_rage_assultrifles, false); + C_ADD_VARIABLE(bool, hitbox_head_rage_snipers, false); + + C_ADD_VARIABLE(bool, hitbox_neck_rage_pistol, false); + C_ADD_VARIABLE(bool, hitbox_neck_rage_machinegun, false); + C_ADD_VARIABLE(bool, hitbox_neck_rage_assultrifles, false); + C_ADD_VARIABLE(bool, hitbox_neck_rage_snipers, false); + + + // ... Repeat the same pattern for other hitbox variables + + C_ADD_VARIABLE(bool, trigger_enable_r, false); + C_ADD_VARIABLE(bool, trigger_on_key_r, false); + C_ADD_VARIABLE(int, trigger_hitchance_r, 0); + + // PISTOL + C_ADD_VARIABLE(int, rage_fov_pistol, 0); + C_ADD_VARIABLE(KeyBind_t, rage_key_pistol, 0); + + // MACHINESGUN + C_ADD_VARIABLE(int, rage_fov_machinegun, 0); + C_ADD_VARIABLE(KeyBind_t, rage_key_machinegun, 0); + + // ASSULTRIFLES + C_ADD_VARIABLE(int, rage_fov_assultrifles, 0); + C_ADD_VARIABLE(KeyBind_t, rage_key_assultrifles, 0); + + // SNIPERS + C_ADD_VARIABLE(int, rage_fov_snipers, 0); + C_ADD_VARIABLE(KeyBind_t, rage_key_snipers, 0); + +#pragma endregion + +#pragma region variables_misc + C_ADD_VARIABLE(bool, bAntiUntrusted, true); + C_ADD_VARIABLE(bool, bWatermark, true); + C_ADD_VARIABLE(bool, bFOV, false); + C_ADD_VARIABLE(bool, bSetViewModelFOV, false); + C_ADD_VARIABLE(bool, bAutostrafe, false); + C_ADD_VARIABLE(bool, bAutostrafeAssistance, false); + C_ADD_VARIABLE(bool, bAutoBHop, false); + C_ADD_VARIABLE(bool, bThirdperson, false); + C_ADD_VARIABLE(float, flThirdperson, 90.0f); + C_ADD_VARIABLE(float, flSetViewModelFOV, 40.0f); + C_ADD_VARIABLE(float, fFOVAmount, 30.0f); + C_ADD_VARIABLE(bool, bThirdpersonNoInterp, true); + C_ADD_VARIABLE(int, nAutoBHopChance, 100); + C_ADD_VARIABLE(unsigned int, bAutostrafeMode, 0); + C_ADD_VARIABLE(float, autostrafe_smooth, 99); + C_ADD_VARIABLE(bool, edge_bug, false); + +#pragma endregion + +#pragma region variables_menu + + C_ADD_VARIABLE(unsigned int, nMenuKey, VK_INSERT); + C_ADD_VARIABLE(unsigned int, nPanicKey, VK_END); + C_ADD_VARIABLE(int, nDpiScale, 0); + C_ADD_VARIABLE(KeyBind_t, OverlayKey, 0); + C_ADD_VARIABLE(int, OverlayKeyCurrent, 0); + C_ADD_VARIABLE(int, OverlayKeyStyle, 0); + + /* + * color navigation: + * [definition N][purpose] + * 1. primitive: + * - primtv 0 (text) + * - primtv 1 (background) + * - primtv 2 (disabled) + * - primtv 3 (control bg) + * - primtv 4 (border) + * - primtv 5 (hover) + * + * 2. accents: + * - accent 0 (main) + * - accent 1 (dark) + * - accent 2 (darker) + */ + C_ADD_VARIABLE(unsigned int, legit_conditions, LEGIT_NONE); + + C_ADD_VARIABLE(unsigned int, pEspFlags, FLAGS_NONE); + C_ADD_VARIABLE(TextOverlayVar_t, HKFlag, TextOverlayVar_t(true, false)); + C_ADD_VARIABLE(TextOverlayVar_t, KitFlag, TextOverlayVar_t(true, false)); + + C_ADD_VARIABLE(unsigned int, bMenuAdditional, MENU_ADDITION_ALL); + C_ADD_VARIABLE(float, flAnimationSpeed, 1.f); + + C_ADD_VARIABLE(TextOverlayVar_t, Weaponesp, TextOverlayVar_t(false, true)); + C_ADD_VARIABLE(ColorPickerVar_t, colSkeleton, ColorPickerVar_t(88, 88, 88)); // (text) + C_ADD_VARIABLE(ColorPickerVar_t, colSkeletonOutline, ColorPickerVar_t(0, 0, 0)); // (text) + + C_ADD_VARIABLE(ColorPickerVar_t, colPrimtv0, ColorPickerVar_t(255, 255, 255)); // (text) + C_ADD_VARIABLE(ColorPickerVar_t, colPrimtv1, ColorPickerVar_t(50, 55, 70)); // (background) + C_ADD_VARIABLE(ColorPickerVar_t, colPrimtv2, ColorPickerVar_t(190, 190, 190)); // (disabled) + C_ADD_VARIABLE(ColorPickerVar_t, colPrimtv3, ColorPickerVar_t(20, 20, 30)); // (control bg) + C_ADD_VARIABLE(ColorPickerVar_t, colPrimtv4, ColorPickerVar_t(0, 0, 0)); // (border) + + C_ADD_VARIABLE(ColorPickerVar_t, colAccent0, ColorPickerVar_t(85, 90, 160)); // (main) + C_ADD_VARIABLE(ColorPickerVar_t, colAccent1, ColorPickerVar_t(100, 105, 175)); // (dark) + C_ADD_VARIABLE(ColorPickerVar_t, colAccent2, ColorPickerVar_t(115, 120, 190)); // (darker) +#pragma endregion +}; + +inline Variables_t Vars = {}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/cstrike.vcxproj b/examples/Axion-CS2-RAGE-CHEAT/cstrike/cstrike.vcxproj new file mode 100644 index 0000000..f747f7a --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/cstrike.vcxproj @@ -0,0 +1,522 @@ + + + + + Debug + x64 + + + Developer + x64 + + + Distrib + x64 + + + Publish + x64 + + + Release + x64 + + + + {DAC639DD-46A6-B878-4FBE-434FBB1C1FDA} + true + Win32Proj + cstrike + 10.0 + + + + DynamicLibrary + true + MultiByte + v143 + false + + + DynamicLibrary + false + MultiByte + v142 + false + + + DynamicLibrary + false + MultiByte + v143 + + + DynamicLibrary + true + MultiByte + v143 + + + DynamicLibrary + false + MultiByte + v143 + true + + + + + + + + + + + + + + + + + + + + + + + true + true + $(SolutionDir)build\$(Configuration)\ + $(SolutionDir)intermediate\$(ProjectName)\$(Configuration)\ + test + .dll + false + + + true + true + $(SolutionDir)build\$(Configuration)\ + $(SolutionDir)intermediate\$(ProjectName)\$(Configuration)\ + test + .dll + false + + + false + true + $(SolutionDir)build\$(Configuration)\ + $(SolutionDir)intermediate\$(ProjectName)\$(Configuration)\ + 1 + .dll + false + + + false + true + $(SolutionDir)build\$(Configuration)\ + $(SolutionDir)intermediate\$(ProjectName)\$(Configuration)\ + 1 + .dll + true + + + false + true + $(SolutionDir)build\$(Configuration)\ + $(SolutionDir)intermediate\$(ProjectName)\$(Configuration)\ + cstrike + .dll + false + + + + NotUsing + TurnOffAllWarnings + NOMINMAX;_DEBUG;_HAS_EXCEPTIONS=0;%(PreprocessorDefinitions) + $(SolutionDir)dependencies;$(SolutionDir)dependencies\freetype\include;%(AdditionalIncludeDirectories) + EditAndContinue + Disabled + false + false + MultiThreadedDebugDLL + Sync + true + true + stdcpplatest + true + TurnOffAllWarnings + stdc17 + All + + + Windows + DebugFull + d3d11.lib;freetype_debug.lib;%(AdditionalDependencies) + $(SolutionDir)dependencies\freetype\binary;C:\Users\gusta\Desktop\trabalho\cs2\base\cstrike\core\spoofcall;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName).lib + CoreEntryPoint + call.asm;%(AddModuleNamesToAssembly) + true + true + false + + + true + + + + + NotUsing + TurnOffAllWarnings + NOMINMAX;NDEBUG;_HAS_EXCEPTIONS=0;%(PreprocessorDefinitions) + $(SolutionDir)dependencies;$(SolutionDir)dependencies\freetype\include;%(AdditionalIncludeDirectories) + None + Disabled + false + false + MultiThreadedDebug + Sync + true + true + stdcpplatest + true + TurnOffAllWarnings + stdc17 + All + + + Windows + false + d3d11.lib;freetype_debug.lib;%(AdditionalDependencies) + $(SolutionDir)dependencies\freetype\binary;C:\Users\gusta\Desktop\trabalho\cs2\base\cstrike\core\spoofcall;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName).lib + CoreEntryPoint + call.asm;%(AddModuleNamesToAssembly) + false + true + true + + + true + + + + + NotUsing + TurnOffAllWarnings + NOMINMAX;NDEBUG;_HAS_EXCEPTIONS=0;%(PreprocessorDefinitions) + $(SolutionDir)dependencies;$(SolutionDir)dependencies\freetype\include;%(AdditionalIncludeDirectories) + ProgramDatabase + Disabled + false + false + MultiThreadedDebug + Sync + true + true + stdcpp20 + true + TurnOffAllWarnings + stdc17 + + + Windows + false + d3d11.lib;freetype_debug.lib;%(AdditionalDependencies) + $(SolutionDir)dependencies\freetype\binary;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName).lib + CoreEntryPoint + + + + + NotUsing + TurnOffAllWarnings + NOMINMAX;_DEBUG;_HAS_EXCEPTIONS=0;%(PreprocessorDefinitions) + $(SolutionDir)dependencies;$(SolutionDir)dependencies\freetype\include;%(AdditionalIncludeDirectories) + ProgramDatabase + Disabled + false + false + MultiThreadedDebug + Sync + false + true + stdcpp20 + true + TurnOffAllWarnings + stdc17 + false + true + + + Windows + DebugFull + d3d11.lib;freetype_debug.lib;%(AdditionalDependencies) + $(SolutionDir)dependencies\freetype\binary;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName).lib + CoreEntryPoint + + + true + + + + + NotUsing + TurnOffAllWarnings + NOMINMAX;NDEBUG;_HAS_EXCEPTIONS=0;%(PreprocessorDefinitions) + $(SolutionDir)dependencies;$(SolutionDir)dependencies\freetype\include;%(AdditionalIncludeDirectories) + None + Disabled + true + true + false + + + MultiThreaded + false + true + true + stdcpplatest + true + Level3 + stdc17 + EnableFastChecks + + + Windows + DebugFull + true + true + d3d11.lib;freetype.lib;%(AdditionalDependencies) + $(SolutionDir)dependencies\freetype\binary;%(AdditionalLibraryDirectories) + $(OutDir)$(TargetName).lib + CoreEntryPoint + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Document + + + + + + + + + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/cstrike.vcxproj.filters b/examples/Axion-CS2-RAGE-CHEAT/cstrike/cstrike.vcxproj.filters new file mode 100644 index 0000000..b5e5af2 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/cstrike.vcxproj.filters @@ -0,0 +1,498 @@ + + + + + {4E40957C-3A77-960D-E363-7C10CF79120F} + + + {8CAD9F58-7810-2FFD-2196-67B30DD8FA7F} + + + {F6B312BD-E297-D312-4BF8-CD6537FBBD94} + + + {D08C9B77-BC1B-2541-653A-393C51A835E7} + + + {500251C1-3C27-A041-6572-85D151F69E5F} + + + {04AE61E7-F07A-BCF2-1994-AA9A05C0F180} + + + {5F23839A-CBE3-FED0-941E-484E009E43AD} + + + {9A07E0F7-8600-FF49-AF32-E4CE9B8ADE55} + + + {202B5BA7-8C95-0F1E-D5D3-C0C3417DED72} + + + {67A9880B-D3B2-887C-5C2E-9F7CC836947C} + + + {85931A81-F153-96B7-BA8E-DF34260EDB93} + + + {7A23D2D0-66F1-C5D6-4F85-36FD3BF2A13B} + + + {212A0ED3-8D94-C249-D6D2-73EF427CA09E} + + + + + dependencies\imgui + + + dependencies\imgui + + + dependencies\imgui + + + dependencies\imgui + + + dependencies\imgui + + + dependencies\imgui + + + dependencies\imgui + + + dependencies\imgui + + + dependencies\imgui + + + dependencies + + + dependencies + + + dependencies\minhook + + + dependencies\minhook\hde + + + dependencies\minhook\hde + + + dependencies\minhook\hde + + + dependencies\minhook\hde + + + dependencies\minhook\hde + + + dependencies\minhook + + + dependencies\minhook + + + dependencies + + + dependencies + + + dependencies + + + resources + + + resources + + + resources + + + resources + + + + + core + + + core + + + core + + + core + + + core + + + core + + + core + + + core + + + + features + + + features\misc + + + features + + + features\visuals + + + features\visuals + + + sdk + + + sdk\datatypes + + + sdk\datatypes + + + sdk\datatypes + + + sdk\datatypes + + + sdk\datatypes + + + sdk\datatypes + + + sdk\datatypes + + + sdk\datatypes + + + sdk\datatypes + + + sdk\datatypes + + + sdk\datatypes + + + sdk\datatypes + + + sdk\datatypes + + + sdk\datatypes + + + sdk\datatypes + + + sdk\datatypes + + + sdk + + + sdk + + + sdk\interfaces + + + sdk\interfaces + + + sdk\interfaces + + + sdk\interfaces + + + sdk\interfaces + + + sdk\interfaces + + + sdk\interfaces + + + sdk\interfaces + + + sdk\interfaces + + + sdk\interfaces + + + sdk\interfaces + + + sdk\interfaces + + + sdk\interfaces + + + sdk\interfaces + + + utilities + + + utilities + + + utilities + + + utilities + + + utilities + + + utilities + + + utilities + + + utilities + + + utilities + + + utilities + + + utilities + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + dependencies\imgui + + + dependencies\imgui + + + dependencies\imgui + + + dependencies\imgui + + + dependencies\imgui + + + dependencies\imgui + + + dependencies\imgui + + + dependencies\imgui + + + dependencies\minhook + + + dependencies\minhook\hde + + + dependencies\minhook\hde + + + dependencies\minhook + + + dependencies\minhook + + + + core + + + core + + + core + + + core + + + core + + + core + + + core + + + + features + + + features\misc + + + features + + + features\visuals + + + features\visuals + + + sdk\datatypes + + + sdk\datatypes + + + sdk\datatypes + + + sdk + + + utilities + + + utilities + + + utilities + + + utilities + + + utilities + + + utilities + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/cstrike.vcxproj.user b/examples/Axion-CS2-RAGE-CHEAT/cstrike/cstrike.vcxproj.user new file mode 100644 index 0000000..0fee07d --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/cstrike.vcxproj.user @@ -0,0 +1,26 @@ + + + + true + + + C:\Program Files %28x86%29\Steam\steamapps\common\Counter-Strike Global Offensive\game\bin\win64\cs2.exe + true + WindowsLocalDebugger + + + C:\Program Files %28x86%29\Steam\steamapps\common\Counter-Strike Global Offensive\game\bin\win64\cs2.exe + true + WindowsLocalDebugger + + + C:\Program Files %28x86%29\Steam\steamapps\common\Counter-Strike Global Offensive\game\bin\win64\cs2.exe + true + WindowsLocalDebugger + + + C:\Program Files %28x86%29\Steam\steamapps\common\Counter-Strike Global Offensive\game\bin\win64\cs2.exe + true + WindowsLocalDebugger + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features.cpp new file mode 100644 index 0000000..ca4455d --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features.cpp @@ -0,0 +1,64 @@ +#include "features.h" + +// used: draw callbacks +#include "utilities/draw.h" +// used: notify +#include "utilities/notify.h" + +// used: cheat variables +#include "core/variables.h" +// used: menu +#include "core/menu.h" + +// used: features callbacks +#include "features/visuals.h" +#include "features/misc.h" +#include "features/legit/legit.h" +// used: interfaces +#include "core/interfaces.h" +#include "sdk/interfaces/iengineclient.h" +#include "sdk/interfaces/cgameentitysystem.h" +#include "sdk/datatypes/usercmd.h" +#include "sdk/entity.h" +#include +#include "../cstrike/sdk/interfaces/iinputsystem.h" +#include "../cstrike/utilities/inputsystem.h" +#include "features/visuals/overlay.h" +#include "features/skins/skin_changer.hpp" + +std::vector g_keybinds; +//[181.214.231.239:27042 +bool F::Setup() +{ + if (!VISUALS::Setup()) + { + L_PRINT(LOG_ERROR) << CS_XOR("failed to setup visuals"); + return false; + } + L_PRINT(LOG_NONE) << L::SetColor(LOG_COLOR_FORE_GREEN | LOG_COLOR_FORE_INTENSITY) << CS_XOR("features VISUALS completed"); + + return true; +} + +void F::OnKeyBindUpdate() { + + if (IPT::GetBindState(C_GET(KeyBind_t, Vars.OverlayKey)) || C_GET(KeyBind_t, Vars.OverlayKey).bEnable) { + const KeyBind_t& overlayKeyBind = C_GET(KeyBind_t, Vars.OverlayKey); + + L_PRINT(LOG_INFO) << CS_XOR("[Keybind] GotBindState | key: ") << + overlayKeyBind.uKey << "| name: " << + overlayKeyBind.szName << "| states "; + + if (overlayKeyBind.nMode == EKeyBindMode::HOLD) { + C_SET(bool, Vars.bVisualOverlay, true); + } + else if (overlayKeyBind.nMode == EKeyBindMode::TOGGLE) { + C_SET(bool, Vars.bVisualOverlay, !C_GET(bool, Vars.bVisualOverlay)); + } + } +} + +bool F::OnDrawObject(void* pAnimatableSceneObjectDesc, void* pDx11, material_data_t* arrMeshDraw, int nDataCount, void* pSceneView, void* pSceneLayer, void* pUnk, void* pUnk2) +{ + return VISUALS::OnDrawObject(pAnimatableSceneObjectDesc, pDx11, arrMeshDraw, nDataCount, pSceneView, pSceneLayer, pUnk, pUnk2); +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features.h new file mode 100644 index 0000000..9548929 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features.h @@ -0,0 +1,14 @@ +#pragma once + +#include "common.h" + +class CUserCmd; +class CCSPlayerController; +class material_data_t; +class CCSGOInput; +namespace F +{ + bool Setup(); + void OnKeyBindUpdate(); + bool OnDrawObject(void* pAnimatableSceneObjectDesc, void* pDx11, material_data_t* arrMeshDraw, int nDataCount, void* pSceneView, void* pSceneLayer, void* pUnk, void* pUnk2); +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/antiaim/antiaim.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/antiaim/antiaim.cpp new file mode 100644 index 0000000..a4d9d1f --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/antiaim/antiaim.cpp @@ -0,0 +1,71 @@ +#include "antiaim.hpp" +#include +#include +#include "../../core/variables.h" + +void F::ANTIAIM::RunAA(CUserCmd* pCmd) +{ + if (!C_GET(bool, Vars.bAntiAim)) + return; + + if (!I::Engine->IsConnected() || !I::Engine->IsInGame()) // Checking if you are connected and in game + return; + + if (!SDK::LocalController || !SDK::LocalController->IsPawnAlive()) // Checking if your spectating and alive + return; + + if (pCmd->m_nButtons.m_nValue & ECommandButtons::IN_USE || pCmd->m_nButtons.m_nValue & ECommandButtons::IN_ATTACK) // Checking if you are not pressing e or attacking + return; + + if (int32_t nMoveType = SDK::LocalController->GetMoveType(); nMoveType == MOVETYPE_NOCLIP || nMoveType == MOVETYPE_LADDER) + return; + + C_CSPlayerPawn* pLocalPawn = I::GameResourceService->pGameEntitySystem->Get(SDK::LocalController->GetPawnHandle()); + + if (pLocalPawn == nullptr) + return; + + if (SDK::LocalController->IsThrowingGrenade(SDK::LocalController->GetPlayerWeapon(SDK::LocalPawn))) + return; + + float flPitch = 0; + float flYaw = 0; + + switch (C_GET(int, Vars.iBaseYawType)) + { + case 0: + break; + case 1: + flYaw += -180.f; // Backwards + break; + case 2: + flYaw += 180.f; // Forwards + break; + default: + break; + } + + switch (C_GET(int, Vars.iPitchType)) + { + case 0: + break; + case 1: // Down + flPitch = 120.f; + break; + case 2: // Up + flPitch = -120.f; + break; + case 3: // Zero + flPitch = 0.f; + break; + default: + break; + } + + pCmd->m_csgoUserCmd.m_pBaseCmd->m_pViewangles->m_angValue.x = flPitch; + pCmd->m_csgoUserCmd.m_pBaseCmd->m_pViewangles->m_angValue.y += flYaw; + + pCmd->m_csgoUserCmd.m_pBaseCmd->m_pViewangles->m_angValue.y = MATH::AngleNormalize(pCmd->m_csgoUserCmd.m_pBaseCmd->m_pViewangles->m_angValue.y); + pCmd->m_csgoUserCmd.m_pBaseCmd->m_pViewangles->m_angValue.x = MATH::AngleNormalize(pCmd->m_csgoUserCmd.m_pBaseCmd->m_pViewangles->m_angValue.x); + pCmd->m_csgoUserCmd.m_pBaseCmd->m_pViewangles->m_angValue.z = 0.f; +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/antiaim/antiaim.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/antiaim/antiaim.hpp new file mode 100644 index 0000000..e999b51 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/antiaim/antiaim.hpp @@ -0,0 +1,15 @@ +#pragma once +#include "../../sdk/datatypes/qangle.h" +#include "../../sdk/entity.h" +#include "../../sdk/interfaces/cgameentitysystem.h" +#include "../../sdk/interfaces/iengineclient.h" +#include "../../sdk/interfaces/ccsgoinput.h" +#include "../../core/sdk.h" +#include "../../core/interfaces.h" +#include "../../sdk/datatypes/usercmd.h" + +namespace F::ANTIAIM +{ + inline QAngle_t angStoredViewBackup{}; + void RunAA(CUserCmd* pCmd); +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/enginepred/pred.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/enginepred/pred.cpp new file mode 100644 index 0000000..52faf24 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/enginepred/pred.cpp @@ -0,0 +1,76 @@ +#include "pred.h" +#include "../../core/config.h" +#include "../../core/variables.h" +#include "../../sdk/datatypes/usercmd.h" +#include "../../core/sdk.h" +#include "../../sdk/entity.h" +#include "../../sdk/interfaces/iengineclient.h" +#include "../../sdk/interfaces/iglobalvars.h" +#include "../../sdk/interfaces/cgameentitysystem.h" +#include "../../sdk/datatypes/qangle.h" +#include "../../sdk/datatypes/vector.h" + +#include "../cstrike/sdk/interfaces/ccsgoinput.h" +#include "../cstrike/sdk/interfaces/ienginecvar.h" +#include "../lagcomp/lagcomp.h" +#include "../cstrike/sdk/interfaces/events.h" +#include "../penetration/penetration.h" +#include +#include +static float old_current_time = 0.f; +static float old_frame_time = 0.f; +static std::int32_t prediction_seed = 0; +static std::uint32_t predicted_flags = 0; + +void F::PREDICTION::impl::start(CUserCmd* cmd) +{ + if (!SDK::LocalController || !SDK::LocalPawn) { + return; + } + auto controller = SDK::LocalController; + if (!controller) + return; + + auto local = SDK::LocalPawn; + if (!local) + return; + + predicted_flags = local->GetFlags(); + + // random_seed + + old_current_time = I::GlobalVars->flCurtime; + old_frame_time = I::GlobalVars->flFrameTime; + + I::GlobalVars->flCurtime = controller->m_nTickBase() * I::GlobalVars->flIntervalPerTick; + I::GlobalVars->flCurtime2 = controller->m_nTickBase() * I::GlobalVars->flIntervalPerTick; + + I::GlobalVars->flFrameTime = I::GlobalVars->flIntervalPerTick; + I::GlobalVars->flFrameTime2 = I::GlobalVars->flIntervalPerTick; + +} + +void F::PREDICTION::impl::end() +{ + if (!SDK::LocalController || !SDK::LocalPawn) { + return; + } + auto controller = SDK::LocalController; + if (!controller) + return; + + auto local = SDK::LocalPawn; + if (!local) + return; + + I::GlobalVars->flCurtime = old_current_time; + I::GlobalVars->flCurtime2 = old_current_time; + + I::GlobalVars->flFrameTime = old_current_time; + I::GlobalVars->flFrameTime2 = old_current_time; +} + +std::uint32_t F::PREDICTION::impl::Flags() +{ + return predicted_flags; +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/enginepred/pred.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/enginepred/pred.h new file mode 100644 index 0000000..a638195 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/enginepred/pred.h @@ -0,0 +1,34 @@ +#pragma once + +#include "../../common.h" +#include +// used: draw system +#include "../../utilities/draw.h" +#include "../../sdk/datatypes/vector.h" +#include "../../sdk/datatypes/transform.h" +#include "../../sdk/datatypes/qangle.h" +#include "../cstrike/core/config.h" +class CCSPlayerController; +class C_BaseEntity; +class C_CSPlayerPawn; +class CBaseHandle; +class CEntityInstance; +class CUserCmd; +class CBaseUserCmdPB; +class QAngle_t; +class IGameEvent; +class CCSWeaponBaseVData; +namespace F::PREDICTION +{ + class impl { + public: + + void start(CUserCmd* cmd); + + void end(); + + std::uint32_t Flags(); + + }; + const auto prediction = std::make_unique(); +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/lagcomp/lagcomp.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/lagcomp/lagcomp.cpp new file mode 100644 index 0000000..e69de29 diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/lagcomp/lagcomp.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/lagcomp/lagcomp.h new file mode 100644 index 0000000..e69de29 diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/legit/legit.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/legit/legit.cpp new file mode 100644 index 0000000..d5d994d --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/legit/legit.cpp @@ -0,0 +1,755 @@ +#include "legit.h" +#include "../../core/config.h" +#include "../../core/variables.h" +#include "../../sdk/datatypes/usercmd.h" +#include "../../core/sdk.h" +#include "../../sdk/entity.h" +#include "../../sdk/interfaces/iengineclient.h" +#include "../../sdk/interfaces/iglobalvars.h" +#include "../../sdk/interfaces/cgameentitysystem.h" +#include "../../sdk/datatypes/qangle.h" +#include "../../sdk/datatypes/vector.h" + +#include "../cstrike/sdk/interfaces/ccsgoinput.h" +#include "../cstrike/sdk/interfaces/ienginecvar.h" +#include "../lagcomp/lagcomp.h" +#include "../cstrike/sdk/interfaces/events.h" +#include "../penetration/penetration.h" +#include "../cstrike/sdk/interfaces/itrace.h" +#include "../cstrike/core/spoofcall/syscall.h" +#include +#include +#include +#include +#include "../../core/spoofcall/virtualization/VirtualizerSDK64.h" +#include "../../utilities/inputsystem.h" +float lasttargettime = 0.f; +static std::vector e_hitboxes; +static ImDrawList* g_pBackgroundDrawList = nullptr; +float kill_delay = 0.f; + +struct LegitTarget { + C_CSPlayerPawn* player; + Vector_t finalPoint; + int hitgroup; + LegitTarget(C_CSPlayerPawn* player, const QAngle_t& finalAngle, const int hitroup) + : player(player), finalPoint(finalPoint), hitgroup(hitroup) {} +}; + + +std::vector sortedTargets; +std::vector validTargets; + +float get_next_primary_attack(C_CSPlayerPawn* local) noexcept { + if (!I::GlobalVars) + return std::numeric_limits::max(); + + const auto tick = local->ActiveWeapon()->m_nNextPrimaryAttackTick(); + const auto ratio = local->ActiveWeapon()->m_nNextPrimaryAttackTick(); + return (tick + ratio) * I::GlobalVars->flIntervalPerTick; +} +void F::LEGIT::impl::SetupTarget(C_CSPlayerPawn* pLocal) +{ + if (!D::pDrawListActive) + return; + + if (!I::Engine->IsInGame()) return; + + CCSPlayerController* pLocalController = CCSPlayerController::GetLocalPlayerController(); + if (!pLocalController) + return; + + pLocal = I::GameResourceService->pGameEntitySystem->Get(pLocalController->GetPawnHandle()); + if (!pLocal) + return; + VIRTUALIZER_DOLPHIN_BLACK_START + const std::lock_guard guard{ g_cachedEntitiesMutex }; + + // reset valid targets before increamenting it + legit->Reset(reset::entity); + + for (const auto& it : g_cachedEntities) { + + C_BaseEntity* pEntity = I::GameResourceService->pGameEntitySystem->Get(it.m_handle); + if (pEntity == nullptr) + continue; + + CBaseHandle hEntity = pEntity->GetRefEHandle(); + if (hEntity != it.m_handle) continue; + + switch (it.m_type) { + case CachedEntity_t::PLAYER_CONTROLLER: + CCSPlayerController* CPlayer = I::GameResourceService->pGameEntitySystem->Get(hEntity); + if (CPlayer == nullptr) + break; + + C_CSPlayerPawn* player = I::GameResourceService->pGameEntitySystem->Get(CPlayer->GetPawnHandle()); + if (!player) + continue; + + if (player->GetHealth() <= 0 || !pLocal->IsOtherEnemy(player) || player->GetGameSceneNode()->IsDormant() || player->m_bGunGameImmunity()) + continue; + + validTargets.push_back(player); + + continue; + } + } + VIRTUALIZER_DOLPHIN_BLACK_END +} +bool F::LEGIT::impl::valid(C_CSPlayerPawn* player, C_CSPlayerPawn* pLocal, bool check) { + if (!player) + return false; + bool a1 = check ? true : player->Visible(pLocal, TRACE_TYPE::AIMBOT, legit_data.legit_visibility_check); + bool Invalid = player->GetLifeState() == ELifeState::LIFE_DISCARDBODY || player->GetLifeState() == ELifeState::LIFE_DEAD || player->GetLifeState() == ELifeState::LIFE_DYING; + if (Invalid || player->GetHealth() <= 0 || !a1 || !pLocal->IsOtherEnemy(player) || player->GetGameSceneNode()->IsDormant() || player->m_bGunGameImmunity()) + return false; + + return true; +} + +// math calculations after Quarention update and shit +// qangle conversions are a mess here tho +QAngle_t NormalizeAngle(QAngle_t& angle) noexcept { + angle.Clamp(); + return angle; +} + +QAngle_t ToAngle(const Vector_t& vec) noexcept { + return QAngle_t{ + M_RAD2DEG(std::atan2(-vec.z, std::hypot(vec.x, vec.y))), + M_RAD2DEG(std::atan2(vec.y, vec.x)), + 0.00f + }.Clamp(); +} + +static Vector_t get_target_angle(C_CSPlayerPawn* localplayer, Vector_t position) +{ + Vector_t eye_position = localplayer->GetEyePosition(); + Vector_t angle = position; + + angle.x = position.x - eye_position.x; + angle.y = position.y - eye_position.y; + angle.z = position.z - eye_position.z; + + angle.Normalizes(); + MATH::vec_angles(angle, &angle); + + angle.clamp(); + return angle; +} + +QAngle_t CalculateRelativeAngle(const Vector_t& source, const Vector_t& dest, const QAngle_t& view_angles) noexcept { + QAngle_t delta = ToAngle(dest - source); + + delta -= view_angles; + + delta = NormalizeAngle(delta); + + return delta; +} + +float DistanceToCrosshair(C_CSPlayerPawn* target, const Vector_t& hitboxPos) +{ + auto center = ImGui::GetIO().DisplaySize * 0.5f; + ImVec2 out; + auto screenPos = D::WorldToScreen(hitboxPos, out); + + if (screenPos) { + ImVec2 crosshairPos = center; + ImVec2 hitboxScreenPos = out; + + float deltaX = crosshairPos.x - hitboxScreenPos.x; + float deltaY = crosshairPos.y - hitboxScreenPos.y; + + return std::sqrt(deltaX * deltaX + deltaY * deltaY); + } + + return FLT_MAX; +} + +Vector_t CalculateHitboxAngle(Vector_t source, Vector_t destination, QAngle_t viewAngles) { + Vector_t delta = source - destination; + Vector_t angles; + + angles.x = M_RAD2DEG(atanf(delta.z / std::hypotf(delta.x, delta.y))) - viewAngles.x; + angles.y = M_RAD2DEG(atanf(delta.y / delta.x)) - viewAngles.y; + angles.z = 0.0f; + + return angles; +} + +void F::LEGIT::impl::ScanTarget(C_CSPlayerPawn* pLocal, QAngle_t viewangles) +{ + if (!pLocal) + return; + + if (!I::Engine->IsConnected() || !I::Engine->IsInGame()) return; + + // Clear sortedTarget before any interaction + sortedTargets.clear(); + + QAngle_t final_ang; + + // Check if there are valid targets + if (!validTargets.empty()) { + + if (legit_data.legit_target_selection == 0) { + std::sort(validTargets.begin(), validTargets.end(), [this, pLocal](C_CSPlayerPawn* a, C_CSPlayerPawn* b) { + // Calculate distances + float distA_crosshair = DistanceToCrosshair(pLocal, a->GetEyePosition()); + float distB_crosshair = DistanceToCrosshair(pLocal, b->GetEyePosition()); + + return (distA_crosshair < distB_crosshair); + }); + } + else { + std::sort(validTargets.begin(), validTargets.end(), [this, pLocal](C_CSPlayerPawn* a, C_CSPlayerPawn* b) { + float distA_player = pLocal->GetEyePosition().DistTo(a->GetEyePosition()); + float distB_player = pLocal->GetEyePosition().DistTo(b->GetEyePosition()); + + return (distA_player < distB_player); + }); + } + // Add the closest visible target to sortedTarget + for (C_CSPlayerPawn* target : validTargets) { + if (valid(target, pLocal)) { + sortedTargets.emplace_back(target, final_ang, 0); + break; + } + else { + sortedTargets.clear(); + continue; + } + continue; + } + + // Scan hitboxes, etc. + if (!sortedTargets.empty()) { + + auto target = sortedTargets.front().player; + if (!target) { + sortedTargets.front().finalPoint.Invalidate(); + sortedTargets.clear(); + return; + } + + // sanity + if (!valid(target, pLocal)) { + sortedTargets.front().finalPoint.Invalidate(); + sortedTargets.clear(); + return; + } + + int bestIndex = -1; + float closest_dist = FLT_MAX; + auto best_fov = legit_data.legit_fov; + + + auto eyepos = pLocal->GetEyePosition(); + auto endeyepos = target->GetEyePosition(); + float dist = pLocal->GetEyePosition().DistTo(target->GetEyePosition()); + + float hitbox_scale = {}; + Vector_t hitbox_pos = {}; + Vector4D_t hitbox_rot = {}; + Vector_t best_point = {}; + // prefer hitbox closest to crosshair ( since we legit hacking ) + for (std::uint32_t i : e_hitboxes) { + + target->CalculateHitboxData(i, hitbox_pos, hitbox_rot, hitbox_scale); + float cross_dist = DistanceToCrosshair(target, hitbox_pos); + + if (cross_dist < closest_dist) { + closest_dist = cross_dist; + bestIndex = i; + continue; + } + + continue; + } + + if (bestIndex != -1) { // store best aimpoint info + sortedTargets.front().hitgroup = target->GetHitGroup(bestIndex); + target->CalculateHitboxData(bestIndex, sortedTargets.front().finalPoint, hitbox_rot, hitbox_scale); + } + } + else + return; + } + + +} +// setup config hitboxes +void F::LEGIT::impl::Scan() { + + /* emplace menu hitboxes which will be used for hitscan*/ + + if (legit_data.hitbox_head) { + e_hitboxes.emplace_back(HEAD); + } + + if (legit_data.hitbox_chest) { + e_hitboxes.emplace_back(CHEST); + e_hitboxes.emplace_back(RIGHT_CHEST); + e_hitboxes.emplace_back(LEFT_CHEST); + } + + if (legit_data.hitbox_stomach) { + e_hitboxes.emplace_back(STOMACH); + e_hitboxes.emplace_back(CENTER); + e_hitboxes.emplace_back(PELVIS); + } + + if (legit_data.hitbox_leg_l) { + e_hitboxes.emplace_back(L_LEG); + } + + if (legit_data.hitbox_leg_r) { + e_hitboxes.emplace_back(R_LEG); + } + + return; +} +void F::LEGIT::impl::Reset(reset type) { + switch (type) { + case reset::entity: + sortedTargets.clear(); + validTargets.clear(); + break; + case reset::aimbot: + e_hitboxes.clear(); + break; + } + return; +} +float CalculateFactor(float distance, float maxDistance, float minFactor, float maxFactor) +{ + // Ensure distance is within valid range + if (distance > maxDistance) + distance = maxDistance; + + // Calculate the factor based on the distance + float factor = minFactor + (maxFactor - minFactor) * (1 - distance / maxDistance); + + return factor; +} +QAngle_t PerformSmooth(QAngle_t currentAngles, const QAngle_t& targetAngles, float smoothFactor, C_CSPlayerPawn* pLocal, Vector_t hitboxPos) +{ + QAngle_t smoothedAngles; + float effectiveSmoothFactor = 0.f; + + if (smoothFactor == 0) + effectiveSmoothFactor = 1 * 10.0f; + else + effectiveSmoothFactor = smoothFactor * 10.0f; + + // Calculate the difference between target and current angles + QAngle_t angleDiff = targetAngles - currentAngles; + + // Calculate the distance between the crosshair and the final point + float distance = DistanceToCrosshair(pLocal, hitboxPos); + + // Calculate intelligent acceleration and deceleration factors based on distance + float accelFactor = CalculateFactor(distance, effectiveSmoothFactor, 0.1f, 1.0f); + float decelFactor = CalculateFactor(distance, effectiveSmoothFactor, 0.1f, 1.0f); + + // Apply acceleration and deceleration + smoothedAngles.x = currentAngles.x + (angleDiff.x / effectiveSmoothFactor) * (accelFactor + (1)); + smoothedAngles.y = currentAngles.y + (angleDiff.y / effectiveSmoothFactor) * (accelFactor + (1)); + + // Ensure angles are within valid range + smoothedAngles.Clamp(); + + return smoothedAngles; +} + +bool F::LEGIT::impl::Ready(C_CSPlayerPawn* pLocal) { + if (!pLocal) + return false; + + auto ActiveWeapon = pLocal->ActiveWeapon(); + if (!ActiveWeapon) + return false; + + auto data = ActiveWeapon->datawep(); + if (!data) + return false; + + if (ActiveWeapon->clip1() <= 0) + return false; + + + return true; +} + +void F::LEGIT::impl::Events(IGameEvent* ev, events type) { + if (!C_GET(bool, Vars.legit_enable)) + return; + + if (!I::Engine->IsConnected() || !I::Engine->IsInGame()) + return; + + if (!SDK::LocalController) + return; + + switch (type) { + case player_death: { + auto controller = SDK::LocalController; + if (!controller) + break; + + const auto event_controller = ev->get_player_controller(CS_XOR("attacker")); + if (!event_controller) + return; + + + if (event_controller->GetIdentity()->GetIndex() == controller->GetIdentity()->GetIndex()) { + const std::int64_t value{ ev->get_int(CS_XOR("dmg_health")) }; + auto delay = C_GET(int, Vars.legit_delay_aim_ms) * 50.f; + + kill_delay = I::GlobalVars->nTickCount + delay; + // reset targets + sortedTargets.clear(); + } + } + break; + case round_start: { + kill_delay = 0; + legit->Reset(reset::entity); + } + break; + } +} + +void F::LEGIT::impl::Triggerbot(CUserCmd* cmd, C_BaseEntity* localent, C_BaseEntity* playerent, C_CSPlayerPawn* local, C_CSPlayerPawn* player, CCSWeaponBaseVData* vdata) +{ + VIRTUALIZER_MUTATE_ONLY_START; + if (!legit_data.trigger_enable) + return; + + if (!SDK::LocalController) + return; + + auto weapon = local->ActiveWeapon(); + if (!weapon) + return; + + auto data = weapon->datawep(); + if (!data) + return; + + if (!cmd) + return; + + auto base = cmd->m_csgoUserCmd.m_pBaseCmd; + if (!base) + return; + + if (C_GET(bool, Vars.trigger_on_key) && !LI_FN(GetAsyncKeyState).safe()(legit_data.legit_key)) + return; + + bool should_trigger = player->InsideCrosshair(local, base->m_pViewangles->m_angValue, data->m_flRange()); + + if (should_trigger) { + + if (cheat->canShot) + cmd->m_nButtons.m_nValue |= IN_ATTACK; + } + //F::AUTOWALL::c_auto_wall::data_t pendata; + //F::AUTOWALL::g_auto_wall->pen(pendata, vecStart, vecEnd, playerent, localent, local, player, vdata, pen_dmg, valid); + // check do we can shoot + VIRTUALIZER_MUTATE_ONLY_END; + +} +void adjust_recoil(C_CSPlayerPawn* player, CUserCmd* pCmd) noexcept { + if (!player || !pCmd) return; + + auto cache = player->m_aimPunchCache(); + static QAngle_t prev = QAngle_t(0.f, 0.f, 0.f); + auto pred_punch = cache.m_Size < 0x81 ? cache.m_Data[cache.m_Size - 1] * 2.f : player->m_aimPunchAngle() * 2.f; + auto delta = cache.m_Size > 0 && cache.m_Size < 0x81 ? prev - pred_punch : QAngle_t(0, 0, 0); + + if (cache.m_Size > 0 && cache.m_Size < 0x81) { + if (delta != QAngle_t(0, 0, 0)) { + pCmd->m_csgoUserCmd.m_pBaseCmd->m_pViewangles->m_angValue += delta; + pCmd->m_csgoUserCmd.m_pBaseCmd->m_pViewangles->m_angValue.Clamp(); + } + prev = pred_punch; + } + +} +void F::LEGIT::impl::Run(CUserCmd* cmd) { + + if (!C_GET(bool, Vars.legit_enable)) + return; + + if (!I::Engine->IsConnected() || !I::Engine->IsInGame()) + return; + + if (!SDK::LocalController || !SDK::LocalPawn) + return; + + if (!cmd) + return; + + auto pCmd = cmd->m_csgoUserCmd.m_pBaseCmd; + if (!pCmd) + return; + + /* store vars */ + pLocal = SDK::LocalPawn; + if (!pLocal || !pCmd) + return; + + if (pLocal->GetHealth() <= 0) + return; + + auto viewangles = pCmd->m_pViewangles->m_angValue; + + // reset hitboxes + legit->Reset(reset::aimbot); + + legit->SetupAdaptiveWeapon(pLocal); + + // hitbox menu selection + legit->Scan(); + + // run target selection + legit->SetupTarget(pLocal); + + // stop aimbot for now, no targets/hitboxes found + if (validTargets.empty() || e_hitboxes.empty()) + return; + + legit->ScanTarget(pLocal, viewangles); + if (sortedTargets.empty() || !sortedTargets.front().finalPoint.IsValid()) + return; + + // no ammo or not valid weapon + if (!legit->Ready(pLocal)) + return; + + auto weapon_data = pLocal->ActiveWeapon(); + if (!weapon_data) + return; + + auto vdata = weapon_data->datawep(); + if (!vdata) + return; + + // check if grabbed ent valid & pass this to the penetration sys + auto entity = I::GameResourceService->pGameEntitySystem->Get(sortedTargets.front().player->GetRefEHandle()); + if (!entity) + return; + + auto localent = I::GameResourceService->pGameEntitySystem->Get(pLocal->GetRefEHandle()); + if (!localent) + return; + + // start angle calculation + auto vec = get_target_angle(pLocal, sortedTargets.front().finalPoint); + vec.clamp(); + QAngle_t angle; angle.ToVec3(vec); + + // legit conditions + if (C_GET(unsigned int, Vars.legit_conditions) & LEGIT_DELAY_SHOT && kill_delay >= I::GlobalVars->nTickCount) + return; + + if (C_GET(unsigned int, Vars.legit_conditions) & LEGIT_IN_AIR && (!pLocal->IsValidMoveType() || !(pLocal->GetFlags() & FL_ONGROUND))) + return; + + if (C_GET(unsigned int, Vars.legit_conditions) & LEGIT_FLASHED && pLocal->GetFlashDuration() > 0.f) // flashed + return; + + //TODO: + //fix autowall damge when visible + // + // store aimbot data + auto rcs_shots = legit_data.legit_rcs_shots_enable ? legit_data.legit_rcs_shots : 0; + int smooth = legit_data.legit_smooth; + auto fov = std::hypotf(viewangles.x - vec.x, viewangles.y - vec.y); //std::hypotf(viewangles->angValue.x - finalAngle.x, viewangles->angValue.y - finalAngle.y); //GetFov(a1, a2); + const float best_fov = (float)legit_data.legit_fov; + float server_time = (float)SDK::LocalController->m_nTickBase() * 0.015; + bool can_shoot = (pLocal->ActiveWeapon()->m_flNextPrimaryAttackTickRatio() <= server_time); + float pen_dmg = 0.f; + bool can_hit = false; + // run penetration system: + // F::AUTOWALL::c_auto_wall::data_t data; + // F::AUTOWALL::g_auto_wall->pen(data, vecStart, vecEnd, entity, localent, pLocal, sortedTargets.front().player, vdata, pen_dmg, can_hit); + + legit->Triggerbot(cmd, localent, entity, pLocal, sortedTargets.front().player, vdata); + + if (fov > best_fov) + return; + + // calculate aimpunch & compensate it + static auto prev = QAngle_t(0.f, 0.f, 0.f); + auto cache = pLocal->m_aimPunchCache(); + auto pred_punch = cache.m_Data[cache.m_Size - 1]; + auto delta = prev - pred_punch * 2.f; + if (cache.m_Size > 0 && cache.m_Size <= 0xFFFF) { + pred_punch = cache.m_Data[cache.m_Size - 1]; + prev = pred_punch; + } + // maybe peform some delta randomizations + if (legit_data.PunchRandomization) { + delta.x *= MATH::fnRandomFloat(0.3f, 0.7f); + delta.y *= MATH::fnRandomFloat(0.3f, 0.7f); + } + // store best_point with compensated aimpunch + auto best_point = angle + delta * 2.f; + if (LI_FN(GetAsyncKeyState).safe()(legit_data.legit_key)) { + // psilent + if (C_GET(bool, Vars.legit_silent_aim) || (C_GET(bool, Vars.legit_no_scope) && vdata->m_WeaponType() == WEAPONTYPE_SNIPER_RIFLE && !pLocal->IsScoped())) { + } + else { + QAngle_t smoothedAnglesRCS = PerformSmooth(viewangles, best_point, static_cast(smooth), pLocal, vec); + if (smooth == 0) { + viewangles = best_point; + viewangles.Clamp(); + + } + else { + viewangles = smoothedAnglesRCS; + viewangles.Clamp(); + } + } + } + + +} + +void F::LEGIT::impl::SetupAdaptiveWeapon(C_CSPlayerPawn* pLocal) { + if (!pLocal) + return; + + if (!C_GET(bool, Vars.legit_enable)) + return; + + auto ActiveWeapon = pLocal->ActiveWeapon(); + if (!ActiveWeapon) + return; + + auto data = ActiveWeapon->datawep(); + if (!data) + return; + + switch (data->m_WeaponType()) { + + case WEAPONTYPE_PISTOL: + legit_data.trigger_enable = C_GET(bool, Vars.trigger_enable_p); + legit_data.trigger_hc = C_GET(int, Vars.trigger_hitchance_p); + + legit_data.legit_fov = C_GET(int, Vars.legit_fov_pistol); + legit_data.legit_key = C_GET(KeyBind_t, Vars.legit_key_pistol).uKey; + legit_data.legit_key_style = 0; // You may need to set the appropriate value + legit_data.legit_target_selection = C_GET(int, Vars.legit_target_selection); + legit_data.legit_fov_visualize = C_GET(bool, Vars.legit_fov_visualize); + legit_data.remove_weapon_accuracy_spread = C_GET(bool, Vars.remove_weapon_accuracy_spread); + legit_data.legit_smooth = C_GET(int, Vars.legit_smooth_pistol); + legit_data.legit_rcs_shots = C_GET(int, Vars.legit_rcs_shots_pistol); + legit_data.legit_rcs = C_GET(bool, Vars.legit_rcs_pistol); + legit_data.PunchRandomization = C_GET(bool, Vars.PunchRandomization_pistol); + legit_data.legit_rcs_shots_enable = C_GET(bool, Vars.legit_rcs_shots_enable_pistol); + legit_data.legit_rcs_smoothx = C_GET(float, Vars.legit_rcs_smoothx_pistol); + legit_data.legit_rcs_smoothy = C_GET(float, Vars.legit_rcs_smoothy_pistol); + legit_data.legit_visibility_check = C_GET(bool, Vars.legit_visibility_check_pistol); + legit_data.hitbox_head = C_GET(bool, Vars.hitbox_head_pistol); + legit_data.hitbox_neck = C_GET(bool, Vars.hitbox_neck_pistol); + legit_data.hitbox_uppeer_chest = C_GET(bool, Vars.hitbox_uppeer_chest_pistol); + legit_data.hitbox_chest = C_GET(bool, Vars.hitbox_chest_pistol); + legit_data.hitbox_stomach = C_GET(bool, Vars.hitbox_stomach_pistol); + legit_data.hitbox_leg_l = C_GET(bool, Vars.hitbox_leg_l_pistol); + legit_data.hitbox_leg_r = C_GET(bool, Vars.hitbox_leg_r_pistol); + legit_data.punch_x = C_GET(bool, Vars.punch_x_pistol); + legit_data.punch_y = C_GET(bool, Vars.punch_y_pistol); + break; + + case WEAPONTYPE_MACHINEGUN: + legit_data.trigger_enable = C_GET(bool, Vars.trigger_enable_m); + legit_data.trigger_hc = C_GET(int, Vars.trigger_hitchance_m); + legit_data.legit_fov = C_GET(int, Vars.legit_fov_machinegun); + legit_data.legit_key = C_GET(KeyBind_t, Vars.legit_key_machinegun).uKey; + legit_data.legit_key_style = 0; // Set the appropriate value + legit_data.legit_target_selection = C_GET(int, Vars.legit_target_selection_machinegun); + legit_data.legit_fov_visualize = C_GET(bool, Vars.legit_fov_visualize); + legit_data.remove_weapon_accuracy_spread = C_GET(bool, Vars.remove_weapon_accuracy_spread); + legit_data.legit_smooth = C_GET(int, Vars.legit_smooth_machinegun); + legit_data.legit_rcs_shots = C_GET(int, Vars.legit_rcs_shots_machinegun); + legit_data.legit_rcs = C_GET(bool, Vars.legit_rcs_machinegun); + legit_data.PunchRandomization = C_GET(bool, Vars.PunchRandomization_machinegun); + legit_data.legit_rcs_shots_enable = C_GET(bool, Vars.legit_rcs_shots_enable_machinegun); + legit_data.legit_rcs_smoothx = C_GET(float, Vars.legit_rcs_smoothx_machinegun); + legit_data.legit_rcs_smoothy = C_GET(float, Vars.legit_rcs_smoothy_machinegun); + legit_data.legit_visibility_check = C_GET(bool, Vars.legit_visibility_check_machinegun); + legit_data.hitbox_head = C_GET(bool, Vars.hitbox_head_machinegun); + legit_data.hitbox_neck = C_GET(bool, Vars.hitbox_neck_machinegun); + legit_data.hitbox_uppeer_chest = C_GET(bool, Vars.hitbox_uppeer_chest_machinegun); + legit_data.hitbox_chest = C_GET(bool, Vars.hitbox_chest_machinegun); + legit_data.hitbox_stomach = C_GET(bool, Vars.hitbox_stomach_machinegun); + legit_data.hitbox_leg_l = C_GET(bool, Vars.hitbox_leg_l_machinegun); + legit_data.hitbox_leg_r = C_GET(bool, Vars.hitbox_leg_r_machinegun); + legit_data.punch_x = C_GET(bool, Vars.punch_x_machinegun); + legit_data.punch_y = C_GET(bool, Vars.punch_y_machinegun); + break; + + case WEAPONTYPE_RIFLE: + legit_data.trigger_enable = C_GET(bool, Vars.trigger_enable_a); + legit_data.trigger_hc = C_GET(int, Vars.trigger_hitchance_a); + legit_data.legit_fov = C_GET(int, Vars.legit_fov_assultrifles); + legit_data.legit_key = C_GET(KeyBind_t, Vars.legit_key_assultrifles).uKey; + legit_data.legit_key_style = 0; // Set the appropriate value + legit_data.legit_target_selection = C_GET(int, Vars.legit_target_selection_assultrifles); + legit_data.legit_fov_visualize = C_GET(bool, Vars.legit_fov_visualize); + legit_data.remove_weapon_accuracy_spread = C_GET(bool, Vars.remove_weapon_accuracy_spread); + legit_data.legit_smooth = C_GET(int, Vars.legit_smooth_assultrifles); + legit_data.legit_rcs_shots = C_GET(int, Vars.legit_rcs_shots_assultrifles); + legit_data.legit_rcs = C_GET(bool, Vars.legit_rcs_assultrifles); + legit_data.PunchRandomization = C_GET(bool, Vars.PunchRandomization_assultrifles); + legit_data.legit_rcs_shots_enable = C_GET(bool, Vars.legit_rcs_shots_enable_assultrifles); + legit_data.legit_rcs_smoothx = C_GET(float, Vars.legit_rcs_smoothx_assultrifles); + legit_data.legit_rcs_smoothy = C_GET(float, Vars.legit_rcs_smoothy_assultrifles); + legit_data.legit_visibility_check = C_GET(bool, Vars.legit_visibility_check_assultrifles); + legit_data.hitbox_head = C_GET(bool, Vars.hitbox_head_assultrifles); + legit_data.hitbox_neck = C_GET(bool, Vars.hitbox_neck_assultrifles); + legit_data.hitbox_uppeer_chest = C_GET(bool, Vars.hitbox_uppeer_chest_assultrifles); + legit_data.hitbox_chest = C_GET(bool, Vars.hitbox_chest_assultrifles); + legit_data.hitbox_stomach = C_GET(bool, Vars.hitbox_stomach_assultrifles); + legit_data.hitbox_leg_l = C_GET(bool, Vars.hitbox_leg_l_assultrifles); + legit_data.hitbox_leg_r = C_GET(bool, Vars.hitbox_leg_r_assultrifles); + legit_data.punch_x = C_GET(bool, Vars.punch_x_assultrifles); + legit_data.punch_y = C_GET(bool, Vars.punch_y_assultrifles); + break; + case WEAPONTYPE_SNIPER_RIFLE: + legit_data.trigger_enable = C_GET(bool, Vars.trigger_enable_s); + legit_data.trigger_hc = C_GET(int, Vars.trigger_hitchance_s); + legit_data.legit_fov = C_GET(int, Vars.legit_fov_snipers); + legit_data.legit_key = C_GET(KeyBind_t, Vars.legit_key_snipers).uKey; + legit_data.legit_key_style = 0; // Set the appropriate value + legit_data.legit_target_selection = C_GET(int, Vars.legit_target_selection_snipers); + legit_data.legit_fov_visualize = C_GET(bool, Vars.legit_fov_visualize); + legit_data.remove_weapon_accuracy_spread = C_GET(bool, Vars.remove_weapon_accuracy_spread); + legit_data.legit_smooth = C_GET(int, Vars.legit_smooth_snipers); + legit_data.legit_rcs_shots = C_GET(int, Vars.legit_rcs_shots_snipers); + legit_data.legit_rcs = C_GET(bool, Vars.legit_rcs_snipers); + legit_data.PunchRandomization = C_GET(bool, Vars.PunchRandomization_snipers); + legit_data.legit_rcs_shots_enable = C_GET(bool, Vars.legit_rcs_shots_enable_snipers); + legit_data.legit_rcs_smoothx = C_GET(float, Vars.legit_rcs_smoothx_snipers); + legit_data.legit_rcs_smoothy = C_GET(float, Vars.legit_rcs_smoothy_snipers); + legit_data.legit_visibility_check = C_GET(bool, Vars.legit_visibility_check_snipers); + legit_data.hitbox_head = C_GET(bool, Vars.hitbox_head_snipers); + legit_data.hitbox_neck = C_GET(bool, Vars.hitbox_neck_snipers); + legit_data.hitbox_uppeer_chest = C_GET(bool, Vars.hitbox_uppeer_chest_snipers); + legit_data.hitbox_chest = C_GET(bool, Vars.hitbox_chest_snipers); + legit_data.hitbox_stomach = C_GET(bool, Vars.hitbox_stomach_snipers); + legit_data.hitbox_leg_l = C_GET(bool, Vars.hitbox_leg_l_snipers); + legit_data.hitbox_leg_r = C_GET(bool, Vars.hitbox_leg_r_snipers); + + legit_data.punch_x = C_GET(bool, Vars.punch_x_snipers); + legit_data.punch_y = C_GET(bool, Vars.punch_y_snipers); + + break; + } + +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/legit/legit.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/legit/legit.h new file mode 100644 index 0000000..c55ae1d --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/legit/legit.h @@ -0,0 +1,108 @@ +#pragma once + +#include "../../common.h" +#include +// used: draw system +#include "../../utilities/draw.h" +#include "../../sdk/datatypes/vector.h" +#include "../../sdk/datatypes/transform.h" +#include "../../sdk/datatypes/qangle.h" +#include "../cstrike/core/config.h" +class CCSPlayerController; +class C_BaseEntity; +class C_CSPlayerPawn; +class CBaseHandle; +class CEntityInstance; +class CUserCmd; +class CBaseUserCmdPB; +class QAngle_t; +class IGameEvent; +class C_CSWeaponBase; +class CCSWeaponBaseVData; + +namespace F::LEGIT +{ + enum events { + round_start = 1, + player_death = 2, + }; + + class impl { + public: + enum reset { + entity, + aimbot, + recoil + }; + enum scan_mode { + single, /* only 1 hitbox */ + adaptive /* multiple bones pushed in the same time */ + }; + + enum hitboxes { + scan_head, + scan_neck, + scan_chest, + scan_pelvis + }; + + struct aim_info { + int legit_fov; + int legit_key; + int legit_key_style; + int legit_target_selection; + bool legit_fov_visualize; + bool remove_weapon_accuracy_spread; + int legit_smooth; + int legit_rcs_shots; + bool legit_rcs; + bool PunchRandomization; + bool legit_rcs_shots_enable; + float legit_rcs_smoothx; + float legit_rcs_smoothy; + bool legit_enable; + bool legit_visibility_check; + bool hitbox_head; + bool hitbox_neck; + bool hitbox_uppeer_chest; + bool hitbox_chest; + bool hitbox_stomach; + bool hitbox_leg_l; + bool hitbox_leg_r; + float punch_y; + float punch_x; + bool trigger_enable; + int trigger_hc; + + }legit_data; + + struct target_info { + float target_fov; + Vector_t best_target_pos; + C_CSPlayerPawn* m_target; + }; + + /* void inits */ + bool valid( C_CSPlayerPawn* pawn, C_CSPlayerPawn* pLocal, bool check = false); + + void Scan(); + void Triggerbot(CUserCmd* cmd, C_BaseEntity* localent, C_BaseEntity* playerent, C_CSPlayerPawn* local, C_CSPlayerPawn* player, CCSWeaponBaseVData* vdata); + + void SetupTarget(C_CSPlayerPawn* pawn); + void SetupAdaptiveWeapon(C_CSPlayerPawn* pawn); + void ScanTarget(C_CSPlayerPawn* pLocal, QAngle_t viewangles); + bool Hitchance(C_CSPlayerPawn* pLocal, C_CSPlayerPawn* ent, C_CSWeaponBase* weapon, QAngle_t vAimpoint, int iChance); + + void Reset(reset type); + void Run(CUserCmd* cmd); + + bool Ready(C_CSPlayerPawn* pLocal); + void Events(IGameEvent* event_listener, events type); + /* init class */ + aim_info aimbot_info; + target_info target_info; + C_CSPlayerPawn* pLocal; + + }; + const auto legit = std::make_unique(); +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/misc.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/misc.cpp new file mode 100644 index 0000000..70d344f --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/misc.cpp @@ -0,0 +1,15 @@ +#include "misc.h" + +// used: movement callback +#include "misc/movement.h" +#include "legit/legit.h" +#include "../utilities/log.h" +#include "lagcomp/lagcomp.h" +#include "../cstrike/sdk/datatypes/qangle.h" +#include "../cstrike/sdk/entity.h" +#include "../cstrike/sdk/datatypes/usercmd.h" +#include "enginepred/pred.h" + +#include "../sdk/interfaces/events.h" +#include "rage/rage.h" + diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/misc.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/misc.h new file mode 100644 index 0000000..5992f80 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/misc.h @@ -0,0 +1,9 @@ +#pragma once +class CUserCmd; +class CCSPlayerController; +class C_CSPlayerPawn; +class QAngle_t; +class CCSGOInput; +namespace F::MISC +{ +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/misc/movement.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/misc/movement.cpp new file mode 100644 index 0000000..02fb225 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/misc/movement.cpp @@ -0,0 +1,638 @@ +#include "movement.h" + +// used: sdk +#include +// used: sdk entity +#include "../../sdk/entity.h" +// used: cusercmd +#include "../../sdk/datatypes/usercmd.h" +#include "../../sdk/interfaces/ccsgoinput.h" +#include "../../sdk/datatypes/qangle.h" +// used: convars +#include "../../core/convars.h" +#include "../../sdk/interfaces/ienginecvar.h" +#include "../cstrike/features/enginepred/pred.h" +// used: cheat variables +#include "../../core/variables.h" +#include +#include "../../core/sdk.h" +#include "../../sdk/interfaces/itrace.h" +#include "../cstrike/sdk/interfaces/cgameentitysystem.h" +#include "../antiaim/antiaim.hpp" + +struct MovementData { + QAngle_t angCorrectionView{}; + +} _move_data; + +enum DIR : int { + FORWARDS = 0, + BACKWARDS = 180, + LEFT = 90, + RIGHT = -90 +}; + +enum MODE : int { + legit = 0, + rage = 1 +}; + +void AngleQangles(const QAngle_t& angles, QAngle_t* forward, QAngle_t* right, QAngle_t* up) +{ + float angle; + float sr, sp, sy, cr, cp, cy; + + // Convert angles from degrees to radians + angle = angles.y * (MATH::_PI / 180.0); + sy = sin(angle); + cy = cos(angle); + angle = angles.x * (MATH::_PI / 180.0); + sp = sin(angle); + cp = cos(angle); + angle = angles.z * (MATH::_PI / 180.0); + sr = sin(angle); + cr = cos(angle); + + if (forward) + { + forward->x = cp * cy; + forward->y = cp * sy; + forward->z = -sp; + } + + if (right) + { + right->x = (-1 * sr * sp * cy + -1 * cr * -sy); + right->y = (-1 * sr * sp * sy + -1 * cr * cy); + right->z = -1 * sr * cp; + } + + if (up) + { + up->x = (cr * sp * cy + -sr * -sy); + up->y = (cr * sp * sy + -sr * cy); + up->z = cr * cp; + } +} + +void F::MISC::MOVEMENT::movment_fix(CUserCmd* pCmd, QAngle_t angle) +{ + QAngle_t wish_angle; + wish_angle = pCmd->m_csgoUserCmd.m_pBaseCmd->m_pViewangles->m_angValue; + int revers = wish_angle.x > 89.f ? -1 : 1; + wish_angle.Clamp(); + + QAngle_t view_fwd, view_right, view_up, cmd_fwd, cmd_right, cmd_up; + auto viewangles = angle; + + AngleQangles(wish_angle, &view_fwd, &view_right, &view_up); + AngleQangles(viewangles, &cmd_fwd, &cmd_right, &cmd_up); + + const float v8 = sqrtf((view_fwd.x * view_fwd.x) + (view_fwd.y * view_fwd.y)); + const float v10 = sqrtf((view_right.x * view_right.x) + (view_right.y * view_right.y)); + const float v12 = sqrtf(view_up.z * view_up.z); + + const Vector_t norm_view_fwd((1.f / v8) * view_fwd.x, (1.f / v8) * view_fwd.y, 0.f); + const Vector_t norm_view_right((1.f / v10) * view_right.x, (1.f / v10) * view_right.y, 0.f); + const Vector_t norm_view_up(0.f, 0.f, (1.f / v12) * view_up.z); + + const float v14 = sqrtf((cmd_fwd.x * cmd_fwd.x) + (cmd_fwd.y * cmd_fwd.y)); + const float v16 = sqrtf((cmd_right.x * cmd_right.x) + (cmd_right.y * cmd_right.y)); + const float v18 = sqrtf(cmd_up.z * cmd_up.z); + + const Vector_t norm_cmd_fwd((1.f / v14) * cmd_fwd.x, (1.f / v14) * cmd_fwd.y, 0.f); + const Vector_t norm_cmd_right((1.f / v16) * cmd_right.x, (1.f / v16) * cmd_right.y, 0.f); + const Vector_t norm_cmd_up(0.f, 0.f, (1.f / v18) * cmd_up.z); + + const float v22 = norm_view_fwd.x * pCmd->m_csgoUserCmd.m_pBaseCmd->m_flForwardMove; + const float v26 = norm_view_fwd.y * pCmd->m_csgoUserCmd.m_pBaseCmd->m_flForwardMove; + const float v28 = norm_view_fwd.z * pCmd->m_csgoUserCmd.m_pBaseCmd->m_flForwardMove; + const float v24 = norm_view_right.x * pCmd->m_csgoUserCmd.m_pBaseCmd->m_flSideMove; + const float v23 = norm_view_right.y * pCmd->m_csgoUserCmd.m_pBaseCmd->m_flSideMove; + const float v25 = norm_view_right.z * pCmd->m_csgoUserCmd.m_pBaseCmd->m_flSideMove; + const float v30 = norm_view_up.x * pCmd->m_csgoUserCmd.m_pBaseCmd->m_flUpMove; + const float v27 = norm_view_up.z * pCmd->m_csgoUserCmd.m_pBaseCmd->m_flUpMove; + const float v29 = norm_view_up.y * pCmd->m_csgoUserCmd.m_pBaseCmd->m_flUpMove; + + pCmd->m_csgoUserCmd.m_pBaseCmd->m_flForwardMove = ((((norm_cmd_fwd.x * v24) + (norm_cmd_fwd.y * v23)) + (norm_cmd_fwd.z * v25)) + + (((norm_cmd_fwd.x * v22) + (norm_cmd_fwd.y * v26)) + (norm_cmd_fwd.z * v28))) + + (((norm_cmd_fwd.y * v30) + (norm_cmd_fwd.x * v29)) + (norm_cmd_fwd.z * v27)); + pCmd->m_csgoUserCmd.m_pBaseCmd->m_flSideMove = ((((norm_cmd_right.x * v24) + (norm_cmd_right.y * v23)) + (norm_cmd_right.z * v25)) + + (((norm_cmd_right.x * v22) + (norm_cmd_right.y * v26)) + (norm_cmd_right.z * v28))) + + (((norm_cmd_right.x * v29) + (norm_cmd_right.y * v30)) + (norm_cmd_right.z * v27)); + pCmd->m_csgoUserCmd.m_pBaseCmd->m_flUpMove = ((((norm_cmd_up.x * v23) + (norm_cmd_up.y * v24)) + (norm_cmd_up.z * v25)) + + (((norm_cmd_up.x * v26) + (norm_cmd_up.y * v22)) + (norm_cmd_up.z * v28))) + + (((norm_cmd_up.x * v30) + (norm_cmd_up.y * v29)) + (norm_cmd_up.z * v27)); + + pCmd->m_csgoUserCmd.m_pBaseCmd->m_flForwardMove = revers * ((((norm_cmd_fwd.x * v24) + (norm_cmd_fwd.y * v23)) + (norm_cmd_fwd.z * v25)) + (((norm_cmd_fwd.x * v22) + (norm_cmd_fwd.y * v26)) + (norm_cmd_fwd.z * v28))); + + pCmd->m_csgoUserCmd.m_pBaseCmd->m_flSideMove = ((((norm_cmd_right.x * v24) + (norm_cmd_right.y * v23)) + (norm_cmd_right.z * v25)) + (((norm_cmd_right.x * v22) + (norm_cmd_right.y * v26)) + (norm_cmd_right.z * v28))); + + pCmd->m_csgoUserCmd.m_pBaseCmd->m_flForwardMove = std::clamp(pCmd->m_csgoUserCmd.m_pBaseCmd->m_flForwardMove, -1.f, 1.f); + + pCmd->m_csgoUserCmd.m_pBaseCmd->m_flSideMove = std::clamp(pCmd->m_csgoUserCmd.m_pBaseCmd->m_flSideMove, -1.f, 1.f); +} + +void F::MISC::MOVEMENT::ProcessMovement(CUserCmd* pCmd, CCSPlayerController* pLocalController, C_CSPlayerPawn* pLocalPawn) +{ + if (!pLocalController) + return; + + if (!pLocalPawn) + return; + + if (pLocalPawn->GetHealth() <= 0) + return; + + if (pCmd == nullptr) + return; + + CBaseUserCmdPB* base = pCmd->m_csgoUserCmd.m_pBaseCmd; + if (base == nullptr) + return; + + // check if player is in noclip or on ladder or in water + if (const int32_t nMoveType = pLocalPawn->GetMoveType(); nMoveType == MOVETYPE_NOCLIP || nMoveType == MOVETYPE_LADDER || pLocalPawn->GetWaterLevel() >= WL_WAIST) + return; + + EdgeBug(pLocalController, pLocalPawn, pCmd); + + if (pLocalPawn->IsValidMoveType()) { + AutoStrafe(pCmd, base, pLocalPawn, C_GET(int, Vars.bAutostrafeMode)); + BunnyHop(pCmd, base, pLocalPawn); + movment_fix(pCmd, F::ANTIAIM::angStoredViewBackup); + } + + for (int i = 0; i < pCmd->m_csgoUserCmd.m_inputHistoryField.m_pRep->m_nAllocatedSize; i++) + { + CCSGOInputHistoryEntryPB* pInputEntry = pCmd->GetInputHistoryEntry(i); + if (pInputEntry == nullptr) + continue; + + if (pInputEntry->m_pViewCmd == nullptr) + continue; + + _move_data.angCorrectionView = pInputEntry->m_pViewCmd->m_angValue; + + ValidateUserCommand(pCmd, base, pInputEntry); + + } +} + +void rotate_movement(float yaw, const QAngle_t& angles, float& fmove, float& smove) { + float rotation = M_DEG2RAD(angles.y - yaw); + + float cos_rot = std::cos(rotation); + float sin_rot = std::sin(rotation); + + float new_forwardmove = (cos_rot * fmove) - (sin_rot * smove); + float new_sidemove = (sin_rot * fmove) + (cos_rot * smove); + + fmove = new_forwardmove; + smove = new_sidemove; +} + +void F::MISC::MOVEMENT::EdgeBug(CCSPlayerController* controler, C_CSPlayerPawn* localPlayer, CUserCmd* cmd) { + if (!C_GET(bool, Vars.edge_bug)) + return; + + if (!controler || !localPlayer || localPlayer->GetHealth() <= 0) + return; + + C_CSPlayerPawn* pred = I::GameResourceService->pGameEntitySystem->Get(controler->m_hPredictedPawn()); + if (!pred) + return; + + static bool bhopWasEnabled = true; + bool JumpDone; + + bool unduck = true; + + float max_radius = MATH::_PI * 2; + float step = max_radius / 128; + float xThick = 23; + bool valid = GetAsyncKeyState(C_GET(KeyBind_t, Vars.edge_bug_key).uKey); + if (!valid) { + return; + } + + if (valid) { + I::Cvar->Find(FNV1A::Hash(CS_XOR("sv_min_jump_landing_sound")))->value.fl = 63464578.f; + } + else { + I::Cvar->Find(FNV1A::Hash(CS_XOR("sv_min_jump_landing_sound")))->value.fl = 260; + } + + static bool edgebugging = false; + static int edgebugging_tick = 0; + + if (!edgebugging) { + + int flags = localPlayer->GetFlags(); + float z_velocity = floor(localPlayer->m_vecVelocity().z); + + for (int i = 0; i < 64; i++) { + + if (z_velocity < -7 && floor(localPlayer->m_vecVelocity().z) == -7 && !(flags & FL_ONGROUND) && localPlayer->GetMoveType() != MOVETYPE_NOCLIP) { + edgebugging_tick = cmd->m_csgoUserCmd.m_pBaseCmd->m_nTickCount + i; + + edgebugging = true; + break; + } + else { + z_velocity = floor(localPlayer->m_vecVelocity().z); + flags = localPlayer->GetFlags(); + } + } + } + else { + + cmd->m_csgoUserCmd.m_pBaseCmd->m_flSideMove = 0.f; + cmd->m_csgoUserCmd.m_pBaseCmd->m_flForwardMove = 0.f; + cmd->m_csgoUserCmd.m_pBaseCmd->m_flUpMove = 0.f; + cmd->m_csgoUserCmd.m_pBaseCmd->m_nMousedX = 0.f; + cmd->m_nButtons.m_nValue |= IN_DUCK; + + if ((localPlayer->GetFlags() & 0x1)) { + cmd->m_nButtons.m_nValue &= ~IN_JUMP; + } + + Vector_t pos = localPlayer->GetSceneOrigin(); + + for (float a = 0.f; a < max_radius; a += step) { + Vector_t pt; + pt.x = (xThick * cos(a)) + pos.x; + pt.y = (xThick * sin(a)) + pos.y; + pt.z = pos.z; + + Vector_t pt2 = pt; + pt2.z -= 8192; + trace_filter_t filter = {}; + I::Trace->Init(filter, localPlayer, 0x1400B, 3, 7); + + game_trace_t trace = {}; + ray_t ray = {}; + + I::Trace->TraceShape(ray, &pt, &pt2, filter, trace); + + if (trace.Fraction != 1.0f && trace.Fraction != 0.0f) { + JumpDone = true; + cmd->m_nButtons.m_nValue |= IN_DUCK; + } + } + + + if (cmd->m_csgoUserCmd.m_pBaseCmd->m_nTickCount > edgebugging_tick) { + edgebugging = false; + edgebugging_tick = 0; + } + + } + trace_filter_t filter = {}; + I::Trace->Init(filter, localPlayer, 0x1400B, 3, 7); + + Vector_t pos = localPlayer->GetSceneOrigin(); + if (pred->m_bInLanding()) { + + for (float a = 0.f; a < max_radius; a += step) { + Vector_t pt; + pt.x = (xThick * cos(a)) + pos.x; + pt.y = (xThick * sin(a)) + pos.y; + pt.z = pos.z; + + Vector_t pt2 = pt; + pt2.z -= 8192; + + game_trace_t trace = {}; + ray_t ray = {}; + + I::Trace->TraceShape(ray, &pt, &pt2, filter, trace); + + if (trace.Fraction != 1.0f && trace.Fraction != 0.0f) { + JumpDone = true; + + + cmd->m_csgoUserCmd.m_pBaseCmd->m_flSideMove = 0.f; + cmd->m_csgoUserCmd.m_pBaseCmd->m_flForwardMove = 0.f; + cmd->m_csgoUserCmd.m_pBaseCmd->m_flUpMove = 0.f; + cmd->m_csgoUserCmd.m_pBaseCmd->m_nMousedX = 0.f; + cmd->m_nButtons.m_nValue |= IN_DUCK; + + if ((localPlayer->GetFlags() & 0x1)) { + cmd->m_nButtons.m_nValue &= ~IN_JUMP; + } + + } + } + + } + if (cmd->m_csgoUserCmd.m_pBaseCmd->m_nTickCount > edgebugging_tick) { + edgebugging = false; + edgebugging_tick = 0; + } +} + +void F::MISC::MOVEMENT::AutoStrafe(CUserCmd* pCmd, CBaseUserCmdPB* pUserCmd, C_CSPlayerPawn* pLocalPawn, int type) +{ + static uint64_t last_pressed = 0; + static uint64_t last_buttons = 0; + + if (!C_GET(bool, Vars.bAutostrafe)) + return; + + auto& cmd = I::Input->arrCommands[I::Input->nSequenceNumber % 150]; + bool strafe_assist = C_GET(bool, Vars.bAutostrafeAssistance); + const auto current_buttons = cmd.m_nButtons.m_nValue; + auto yaw = MATH::normalize_yaw(pUserCmd->m_pViewangles->m_angValue.y); + + const auto check_button = [&](const uint64_t button) + { + if (current_buttons & button && (!(last_buttons & button) || button & IN_MOVELEFT && !(last_pressed & IN_MOVERIGHT) || button & + IN_MOVERIGHT && !(last_pressed & IN_MOVELEFT) || button & IN_FORWARD && !(last_pressed & IN_BACK) || + button & IN_BACK && !(last_pressed & IN_FORWARD))) + { + if (strafe_assist) + { + if (button & IN_MOVELEFT) + last_pressed &= ~IN_MOVERIGHT; + else if (button & IN_MOVERIGHT) + last_pressed &= ~IN_MOVELEFT; + else if (button & IN_FORWARD) + last_pressed &= ~IN_BACK; + else if (button & IN_BACK) + last_pressed &= ~IN_FORWARD; + } + + last_pressed |= button; + } + else if (!(current_buttons & button)) + last_pressed &= ~button; + }; + + check_button(IN_MOVELEFT); + check_button(IN_MOVERIGHT); + check_button(IN_FORWARD); + check_button(IN_BACK); + + last_buttons = current_buttons; + + const auto velocity = pLocalPawn->GetAbsVelocity(); + bool wasdstrafe = C_GET(unsigned int, Vars.bAutostrafeMode) == 0; + bool viewanglestrafe = C_GET(unsigned int, Vars.bAutostrafeMode) == 1; + float smoothing = C_GET(float, Vars.autostrafe_smooth); + + /*const auto weapon = pLocalPawn->get_weapon_services_ptr()->get_h_active_weapon().get(); + const auto js = weapon && (cfg.weapon_config.is_scout && cfg.weapon_config.cur.scout_jumpshot && pLocalPawn->get_vec_abs_velocity().length_2d() < 50.f); + const auto throwing_nade = weapon && weapon->is_grenade() && ticks_to_time(local_player->get_tickbase()) >= weapon->get_throw_time() && weapon->get_throw_time() != 0.f; + + if (js) + return;*/ + + if (pLocalPawn->GetFlags() & FL_ONGROUND) + return; + + auto rotate_movement = [](CUserCmd& cmd, float target_yaw) + { auto pUserCmd = cmd.m_csgoUserCmd.m_pBaseCmd; + + const float rot = M_DEG2RAD(pUserCmd->m_pViewangles->m_angValue.y - target_yaw); + + const float new_forward = std::cos(rot) * pUserCmd->m_flForwardMove - std::sin(rot) * pUserCmd->m_flSideMove; + const float new_side = std::sin(rot) * pUserCmd->m_flForwardMove + std::cos(rot) * pUserCmd->m_flSideMove; + + cmd.m_nButtons.m_nValue &= ~(IN_BACK | IN_FORWARD | IN_MOVELEFT | IN_MOVERIGHT); + pUserCmd->m_flForwardMove = std::clamp(new_forward, -1.f, 1.f); + pUserCmd->m_flSideMove = std::clamp(new_side * -1.f, -1.f, 1.f); + + if (pUserCmd->m_flForwardMove > 0.f) + cmd.m_nButtons.m_nValue |= IN_FORWARD; + else if (pUserCmd->m_flForwardMove < 0.f) + cmd.m_nButtons.m_nValue |= IN_BACK; + + if (pUserCmd->m_flSideMove > 0.f) + cmd.m_nButtons.m_nValue |= IN_MOVELEFT; + else if (pUserCmd->m_flSideMove < 0.f) + cmd.m_nButtons.m_nValue |= IN_MOVERIGHT; + }; + + + if (wasdstrafe) + { + auto offset = 0.f; + if (last_pressed & IN_MOVELEFT) + offset += 90.f; + if (last_pressed & IN_MOVERIGHT) + offset -= 90.f; + if (last_pressed & IN_FORWARD) + offset *= 0.5f; + else if (last_pressed & IN_BACK) + offset = -offset * 0.5f + 180.f; + + yaw += offset; + + pUserCmd->m_flForwardMove = 0.f; + pUserCmd->m_flSideMove = 0.f; + + rotate_movement(cmd, MATH::normalize_yaw(yaw)); + + if (!viewanglestrafe && offset == 0.f) + return; + } + + if (pUserCmd->m_flSideMove != 0.0f || pUserCmd->m_flForwardMove != 0.0f) + return; + + auto velocity_angle = M_RAD2DEG(std::atan2f(velocity.y, velocity.x)); + if (velocity_angle < 0.0f) + velocity_angle += 360.0f; + + if (velocity_angle < 0.0f) + velocity_angle += 360.0f; + + velocity_angle -= floorf(velocity_angle / 360.0f + 0.5f) * 360.0f; + + const auto speed = velocity.Length2D(); + const auto ideal = std::clamp(M_RAD2DEG(std::atan2(15.f, speed)), 0.f, 45.f); + + const auto correct = (100.f - smoothing) * 0.02f * (ideal + ideal); + + pUserCmd->m_flForwardMove = 0.f; + const auto velocity_delta = MATH::normalize_yaw(yaw - velocity_angle); + + /*if (throwing_nade && fabsf(velocity_delta) <=20.f) + { + auto &wish_angle = antiaim::wish_angles[globals::current_cmd->command_number % 150]; + wish_angle.y = math::normalize_yaw(yaw); + globals::current_cmd->forwardmove = 450.f; + + antiaim::fix_movement(globals::current_cmd); + return; + }*/ + + if (fabsf(velocity_delta) > 170.f && speed > 80.f || velocity_delta > correct && speed > 80.f) + { + yaw = correct + velocity_angle; + pUserCmd->m_flSideMove = -1.f; + rotate_movement(cmd, MATH::normalize_yaw(yaw)); + return; + } + const bool side_switch = I::Input->nSequenceNumber % 2 == 0; + + if (-correct <= velocity_delta || speed <= 80.f) + { + if (side_switch) + { + yaw = yaw - ideal; + pUserCmd->m_flSideMove = -1.f; + + } + else + { + yaw = ideal + yaw; + pUserCmd->m_flSideMove = 1.f; + + } + rotate_movement(cmd, MATH::normalize_yaw(yaw)); + } + else + { + yaw = velocity_angle - correct; + pUserCmd->m_flSideMove = 1.f; + + rotate_movement(cmd, MATH::normalize_yaw(yaw)); + } +} + +std::array onground_tick = {}; +std::array remove_tick = {}; +bool pressed_jump = false; + +void F::MISC::MOVEMENT::BunnyHop(CUserCmd* pCmd, CBaseUserCmdPB* pUserCmd, C_CSPlayerPawn* pLocalPawn) +{ + bool bWasLastTimeOnGround{}; + + pressed_jump = pCmd->m_nButtons.m_nValue & IN_JUMP; + + if (!C_GET(bool, Vars.bAutoBHop) || CONVAR::sv_autobunnyhopping->value.i1) + return; + + if (pLocalPawn->GetFlags() & FL_ONGROUND) + pCmd->m_nButtons.m_nValue &= ~IN_JUMP; + + bWasLastTimeOnGround = pLocalPawn->GetFlags() & FL_ONGROUND; + + const float velocity = pLocalPawn->m_vecVelocity().Length2D(); + + bool bShouldJump = true; + + if (velocity > 300.f && Vars.nAutoBHopChance < 0.8) bShouldJump = false; + + if (!pLocalPawn->GetFlags() & FL_ONGROUND && !bWasLastTimeOnGround) + pCmd->m_nButtons.m_nValue &= ~IN_JUMP; + + bWasLastTimeOnGround = pLocalPawn->GetFlags() & FL_ONGROUND; + + /*CSubtickMoveStep* subtick_pressed = pUserCmd->AddSubTickMove(); + subtick_pressed->m_nCachedBits = 7; + subtick_pressed->nButton = IN_JUMP; + subtick_pressed->bPressed = true; + subtick_pressed->flWhen = 0.999f; + + CSubtickMoveStep* subtick_release = pUserCmd->AddSubTickMove(); + subtick_release->m_nCachedBits = 7; + subtick_release->nButton = IN_JUMP; + subtick_release->bPressed = false; + subtick_release->flWhen = 0.999f;*/ +} + +void F::MISC::MOVEMENT::ValidateUserCommand(CUserCmd* pCmd, CBaseUserCmdPB* pUserCmd, CCSGOInputHistoryEntryPB* pInputEntry) +{ + if (pUserCmd == nullptr) + return; + + // clamp angle to avoid untrusted angle + if (C_GET(bool, Vars.bAntiUntrusted)) + { + if (pInputEntry->m_pViewCmd->m_angValue.IsValid()) + { + pInputEntry->m_pViewCmd->m_angValue.Clamp(); + pInputEntry->m_pViewCmd->m_angValue.z = 0.f; + } + else + { + pInputEntry->m_pViewCmd->m_angValue = {}; + } + } + + + //MovementCorrection(pUserCmd, pInputEntry, _move_data.angCorrectionView); + + // correct movement buttons while player move have different to buttons values + // clear all of the move buttons states + pCmd->m_nButtons.m_nValue &= (~IN_FORWARD | ~IN_BACK | ~IN_LEFT | ~IN_RIGHT); + + // re-store buttons by active forward/side moves + if (pUserCmd->m_flForwardMove > 0.0f) + pCmd->m_nButtons.m_nValue |= IN_FORWARD; + else if (pUserCmd->m_flForwardMove < 0.0f) + pCmd->m_nButtons.m_nValue |= IN_BACK; + + if (pUserCmd->m_flSideMove > 0.0f) + pCmd->m_nButtons.m_nValue |= IN_RIGHT; + else if (pUserCmd->m_flSideMove < 0.0f) + pCmd->m_nButtons.m_nValue |= IN_LEFT; + + + if (!pInputEntry->m_pViewCmd->m_angValue.IsZero()) + { + float flDeltaX = std::remainderf(pInputEntry->m_pViewCmd->m_angValue.x - _move_data.angCorrectionView.x, 360.f); + float flDeltaY = std::remainderf(pInputEntry->m_pViewCmd->m_angValue.y - _move_data.angCorrectionView.y, 360.f); + + + float flPitch = CONVAR::m_pitch->value.fl; + float flYaw = CONVAR::m_yaw->value.fl; + + float flSensitivity = CONVAR::sensitivity->value.fl; + if (flSensitivity == 0.0f) + flSensitivity = 1.0f; + + pUserCmd->m_nMousedX = static_cast(flDeltaX / (flSensitivity * flPitch)); + pUserCmd->m_nMousedY = static_cast(-flDeltaY / (flSensitivity * flYaw)); + } +} + +void F::MISC::MOVEMENT::MovementCorrection(CBaseUserCmdPB* pUserCmd, CCSGOInputHistoryEntryPB* pInputEntry, const QAngle_t& angDesiredViewPoint) +{ + if (pUserCmd == nullptr) + return; + + Vector_t vecForward = {}, vecRight = {}, vecUp = {}; + angDesiredViewPoint.ToDirections(&vecForward, &vecRight, &vecUp); + + // we don't attempt on forward/right roll, and on up pitch/yaw + vecForward.z = vecRight.z = vecUp.x = vecUp.y = 0.0f; + + vecForward.NormalizeInPlace(); + vecRight.NormalizeInPlace(); + vecUp.NormalizeInPlace(); + + Vector_t vecOldForward = {}, vecOldRight = {}, vecOldUp = {}; + pInputEntry->m_pViewCmd->m_angValue.ToDirections(&vecOldForward, &vecOldRight, &vecOldUp); + + // we don't attempt on forward/right roll, and on up pitch/yaw + vecOldForward.z = vecOldRight.z = vecOldUp.x = vecOldUp.y = 0.0f; + + vecOldForward.NormalizeInPlace(); + vecOldRight.NormalizeInPlace(); + vecOldUp.NormalizeInPlace(); + + const float flPitchForward = vecForward.x * pUserCmd->m_flForwardMove; + const float flYawForward = vecForward.y * pUserCmd->m_flForwardMove; + const float flPitchSide = vecRight.x * pUserCmd->m_flSideMove; + const float flYawSide = vecRight.y * pUserCmd->m_flSideMove; + const float flRollUp = vecUp.z * pUserCmd->m_flUpMove; + + // solve corrected movement speed + pUserCmd->m_flForwardMove = vecOldForward.x * flPitchSide + vecOldForward.y * flYawSide + vecOldForward.x * flPitchForward + vecOldForward.y * flYawForward + vecOldForward.z * flRollUp; + pUserCmd->m_flSideMove = vecOldRight.x * flPitchSide + vecOldRight.y * flYawSide + vecOldRight.x * flPitchForward + vecOldRight.y * flYawForward + vecOldRight.z * flRollUp; + pUserCmd->m_flUpMove = vecOldUp.x * flYawSide + vecOldUp.y * flPitchSide + vecOldUp.x * flYawForward + vecOldUp.y * flPitchForward + vecOldUp.z * flRollUp; +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/misc/movement.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/misc/movement.h new file mode 100644 index 0000000..6151f18 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/misc/movement.h @@ -0,0 +1,29 @@ +#pragma once + +class CUserCmd; +class CBaseUserCmdPB; +class CCSGOInputHistoryEntryPB; +class CBasePlayerController; +class CCSPlayerController; +class C_CSPlayerPawn; +class CSubtickMoveStep; +class QAngle_t; + +namespace F::MISC::MOVEMENT +{ + + void EdgeBug(CCSPlayerController* controler, C_CSPlayerPawn* localPlayer, CUserCmd* cmd); + + void movment_fix(CUserCmd* pCmd, QAngle_t angle); + + void ProcessMovement(CUserCmd* pCmd, CCSPlayerController* pLocalController, C_CSPlayerPawn* pLocalPawn); + + void BunnyHop(CUserCmd* pCmd, CBaseUserCmdPB* pUserCmd, C_CSPlayerPawn* pLocalPawn); + void AutoStrafe(CUserCmd* pCmd, CBaseUserCmdPB* pUserCmd, C_CSPlayerPawn* pLocalPawn, int type); + + void MovementCorrection(CBaseUserCmdPB* pUserCmd, CCSGOInputHistoryEntryPB* pInputHistory, const QAngle_t& angDesiredViewPoint); + + // will call MovementCorrection && validate user's angView to avoid untrusted ban + void ValidateUserCommand(CUserCmd* pCmd, CBaseUserCmdPB* pUserCmd, CCSGOInputHistoryEntryPB* pInputHistory); + +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/penetration/penetration.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/penetration/penetration.cpp new file mode 100644 index 0000000..b10aad9 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/penetration/penetration.cpp @@ -0,0 +1,392 @@ +#include "penetration.h" +#include "../../core/variables.h" +#include "../../sdk/datatypes/usercmd.h" +#include "../../core/sdk.h" +#include "../../sdk/entity.h" +#include "../../sdk/interfaces/iengineclient.h" +#include "../../sdk/interfaces/iglobalvars.h" +#include "../../sdk/interfaces/cgameentitysystem.h" +#include "../../sdk/datatypes/qangle.h" +#include "../../sdk/datatypes/vector.h" +#include "../../sdk/entity_handle.h" +#include "../cstrike/sdk/interfaces/ienginecvar.h" + +#include +#include +#include "../cstrike/sdk/interfaces/itrace.h" +static constexpr std::uint32_t PENMASK = 0x1C300Bu; // mask_shot_hull | contents_hitbox? + +namespace F::AUTOWALL { + + + + void F::AUTOWALL::c_auto_wall::pen(data_t& data, const Vector_t local_pos, const Vector_t target_pos, C_BaseEntity* target, C_BaseEntity* local, C_CSPlayerPawn* localpawn, C_CSPlayerPawn* targetpawn, + CCSWeaponBaseVData* wpn_data, float &dmg, bool &valid) { + data.m_local = local; + data.m_target = target; + data.m_local_pawn = localpawn; + data.m_target_pawn = targetpawn; + data.m_wpn_data = wpn_data; + data.m_pos.at(F::AUTOWALL::c_auto_wall::data_t::e_pos::e_local) = local_pos; + data.m_pos.at(F::AUTOWALL::c_auto_wall::data_t::e_pos::e_target) = target_pos; + FireBullet(data, data.m_dmg, data.m_can_hit); + + } + + void F::AUTOWALL::c_auto_wall::ScaleDamage(data_t& data, const int hitgroup, C_CSPlayerPawn* player) + { + if (!player) + return; + + auto WeaponServices = player->GetItemServices(); + if (!WeaponServices) + return; + + // ida: server.dll; 80 78 42 00 74 08 F3 0F 59 35 ?? ?? ?? ?? 80 BE 04 0D 00 00 00 + static CConVar* mp_damage_scale_ct_head = I::Cvar->Find( + FNV1A::HashConst("mp_damage_scale_ct_head")), + * mp_damage_scale_t_head = I::Cvar->Find( + FNV1A::HashConst("mp_damage_scale_t_head")), + * mp_damage_scale_ct_body = I::Cvar->Find( + FNV1A::HashConst("mp_damage_scale_ct_body")), + * mp_damage_scale_t_body = I::Cvar->Find( + FNV1A::HashConst("mp_damage_scale_t_body")); + + const auto damage_scale_ct_head = mp_damage_scale_ct_head->value.fl, + damage_scale_t_head = mp_damage_scale_t_head->value.fl, + damage_scale_ct_body = mp_damage_scale_ct_body->value.fl, + damage_scale_t_body = mp_damage_scale_t_body->value.fl; + + const bool is_ct = player->GetTeam() == 3, is_t = player->GetTeam() == 2; + + float head_damage_scale = is_ct ? damage_scale_ct_head : is_t ? damage_scale_t_head : 1.0f; + const float body_damage_scale = is_ct ? damage_scale_ct_body : is_t ? damage_scale_t_body : 1.0f; + + // william: magic values u can see here: ida: server.dll; F3 0F 10 35 ?? ?? ?? ?? 0F 29 7C 24 30 44 0F 29 44 24 + // xref: mp_heavybot_damage_reduction_scale + if (WeaponServices->m_bHasHeavyArmor()) { + head_damage_scale *= 0.5f; + } + + // todo: mb missed some hitgroups, anyway this is a calculation of all important hitgroups + switch (hitgroup) { + case HitGroup_t::HITGROUP_HEAD: + data.m_dmg *= data.m_wpn_data->m_flHeadshotMultiplier() * head_damage_scale; + break; + case HitGroup_t::HITGROUP_CHEST: + case HitGroup_t::HITGROUP_LEFTARM: + case HitGroup_t::HITGROUP_RIGHTARM: + case HitGroup_t::HITGROUP_NECK: + data.m_dmg *= body_damage_scale; + break; + case HitGroup_t::HITGROUP_STOMACH: + data.m_dmg *= 1.25f * body_damage_scale; + break; + case HitGroup_t::HITGROUP_LEFTLEG: + case HitGroup_t::HITGROUP_RIGHTLEG: + data.m_dmg *= 0.75f * body_damage_scale; + break; + default: + break; + } + + if (!player->hasArmour(hitgroup)) + return; + + float heavy_armor_bonus = 1.0f, armor_bonus = 0.5f, armor_ratio = data.m_wpn_data->m_flArmorRatio() * 0.5f; + + if (WeaponServices->m_bHasHeavyArmor()) { + heavy_armor_bonus = 0.25f; + armor_bonus = 0.33f; + armor_ratio *= 0.20f; + } + + float damage_to_health = data.m_dmg * armor_ratio; + const float damage_to_armor = (data.m_dmg - damage_to_health) * (heavy_armor_bonus * armor_bonus); + + if (damage_to_armor > static_cast(player->GetArmorValue())) { + damage_to_health = data.m_dmg - static_cast(player->GetArmorValue()) / armor_bonus; + } + + data.m_dmg = damage_to_health; + } + + + bool F::AUTOWALL::c_auto_wall::FireBullet(data_t& data, float &dmg, bool &valid) + { + // L_PRINT(LOG_INFO) << "0"; + CS_ASSERT(data.m_local != nullptr || data.m_target != nullptr || data.m_wpn_data != nullptr || data.m_local_pawn != nullptr || data.m_target_pawn != nullptr); + if (!data.m_local || !data.m_target || !data.m_wpn_data) + return false; + // L_PRINT(LOG_INFO) << "1"; + + trace_data_t trace_data = { }; + trace_data.m_arr_pointer = &trace_data.m_arr; + void* data_pointer = &trace_data; + //L_PRINT(LOG_INFO) << "created trace_data | trace_data_pointer:" << L::AddFlags(LOG_MODE_INT_SHOWBASE | LOG_MODE_INT_FORMAT_HEX) << reinterpret_cast(data_pointer); + //L_PRINT(LOG_INFO) << "created trace_data | pointer:" << L::AddFlags(LOG_MODE_INT_SHOWBASE | LOG_MODE_INT_FORMAT_HEX) << reinterpret_cast(trace_data.m_arr_pointer); + + const Vector_t direction = + data.m_pos.at(data_t::e_pos::e_target) - data.m_pos.at(data_t::e_pos::e_local), + end_pos = direction * data.m_wpn_data->m_flRange(); + + trace_filter_t filter = {}; + I::Trace->Init(filter, data.m_local_pawn,PENMASK, 3, 7); + void* filter_pointer = &filter; + /* L_PRINT(LOG_INFO) << "created filter_data | filter_pointer:" << L::AddFlags(LOG_MODE_INT_SHOWBASE | LOG_MODE_INT_FORMAT_HEX) << reinterpret_cast(filter_pointer); + + L_PRINT(LOG_INFO) << "creating trace | filter > layer:" << filter.layer << "mask:" << filter.trace_mask; + L_PRINT(LOG_INFO) << "creating trace | endpos:" << end_pos; + */ + I::Trace->CreateTrace(&trace_data, data.m_pos.at(data_t::e_pos::e_local), end_pos, filter, 4); + + struct handle_bullet_data_t { + handle_bullet_data_t(const float dmg_mod, const float pen, const float range_mod, const float range, + const int pen_count, const bool failed) : + m_dmg(dmg_mod), + m_pen(pen), + m_range_mod(range_mod), + m_range(range), + m_pen_count(pen_count), + m_failed(failed) {} + + float m_dmg{ }, m_pen{ }, m_range_mod{ }, m_range{ }; + int m_pen_count{ }; + bool m_failed{ }; + } + + handle_bullet_data(static_cast(data.m_wpn_data->m_nDamage()), data.m_wpn_data->m_flPenetration(), data.m_wpn_data->m_flRange(), + data.m_wpn_data->m_flRangeModifier(), 4, false); + + // L_PRINT(LOG_INFO) << "Initialized handlebulletpen data"; + + float corrected_dmg = static_cast(data.m_wpn_data->m_nDamage()); + float flTraceLength = 0.f; + auto flMaxRange = data.m_wpn_data->m_flRange(); + if (trace_data.m_num_update > 0) { + for (int i{ }; i < trace_data.m_num_update; i++) { + auto* value = reinterpret_cast( + reinterpret_cast(trace_data.m_pointer_update_value) + + i * sizeof(UpdateValueT)); + + game_trace_t game_trace = { }; + I::Trace->InitializeTraceInfo(&game_trace); + I::Trace->get_trace_info( + &trace_data, &game_trace, 0.0f, + reinterpret_cast( + reinterpret_cast(trace_data.m_arr.data()) + + sizeof(trace_arr_element_t) * (value->handleIdx & 0x7fffu))); + /* + L_PRINT(LOG_INFO) << "game_trace: entryindex:" << game_trace.HitEntity->GetRefEHandle().GetEntryIndex(); + L_PRINT(LOG_INFO) << "game_trace: m_target_pawn entryindex:" << data.m_target_pawn->GetRefEHandle().GetEntryIndex(); + L_PRINT(LOG_INFO) << "game_trace: m_target entryindex:" << data.m_target->GetRefEHandle().GetEntryIndex(); + */ + + flMaxRange -= flTraceLength; + + // we didn't hit anything, stop tracing shoot + if (game_trace.Fraction == 1.0f) + { + break; + } + + // calculate the damage based on the distance the bullet traveled + flTraceLength += game_trace.Fraction * flMaxRange; + corrected_dmg *= std::powf(data.m_wpn_data->m_flRangeModifier(), flTraceLength / 500.f); + + // check is actually can shoot through + if (flTraceLength > 3000.f) + break; + + if (game_trace.HitEntity && game_trace.HitEntity->GetRefEHandle().GetEntryIndex() == data.m_target_pawn->GetRefEHandle().GetEntryIndex()) { + ScaleDamage2(game_trace.HitboxData->m_hitgroup, data.m_target_pawn, data.m_wpn_data->m_flArmorRatio(), data.m_wpn_data->m_flHeadshotMultiplier(), &corrected_dmg); + dmg = corrected_dmg;//data.m_dmg > 0.f ? data.m_dmg : handle_bullet_data.m_dmg; + valid = true; + return true; + } + else + valid = false; + + + if (I::Trace->handle_bullet_penetration(&trace_data, &handle_bullet_data, value, false)) + return false; + + corrected_dmg = handle_bullet_data.m_dmg; + + } + } + + return false; + } + + void F::AUTOWALL::c_auto_wall::ScaleDamage2(const int iHitGroup, C_CSPlayerPawn* pCSPlayer, const float flWeaponArmorRatio, const float flWeaponHeadShotMultiplier, float* pflDamageToScale) + { + // @ida CCSPlayer::TraceAttack(): server.dll -> "55 8B EC 83 E4 F8 81 EC ? ? ? ? 56 8B 75 08 57 8B F9 C6" + auto WeaponServices = pCSPlayer->GetItemServices(); + if (!WeaponServices) + return; + + const bool bHeavyArmor = WeaponServices->m_bHasHeavyArmor(); + + // ida: server.dll; 80 78 42 00 74 08 F3 0F 59 35 ?? ?? ?? ?? 80 BE 04 0D 00 00 00 + static CConVar* mp_damage_scale_ct_head = I::Cvar->Find( + FNV1A::HashConst("mp_damage_scale_ct_head")), + * mp_damage_scale_t_head = I::Cvar->Find( + FNV1A::HashConst("mp_damage_scale_t_head")), + * mp_damage_scale_ct_body = I::Cvar->Find( + FNV1A::HashConst("mp_damage_scale_ct_body")), + * mp_damage_scale_t_body = I::Cvar->Find( + FNV1A::HashConst("mp_damage_scale_t_body")); + + const auto damage_scale_ct_head = mp_damage_scale_ct_head->value.fl, + damage_scale_t_head = mp_damage_scale_t_head->value.fl, + damage_scale_ct_body = mp_damage_scale_ct_body->value.fl, + damage_scale_t_body = mp_damage_scale_t_body->value.fl; + + float flHeadDamageScale = (pCSPlayer->GetTeam() == TEAM_CT ? damage_scale_ct_head : damage_scale_t_head); + const float flBodyDamageScale = (pCSPlayer->GetTeam() == TEAM_CT ? damage_scale_ct_body : damage_scale_t_body); + + if (bHeavyArmor) flHeadDamageScale *= 0.5f; + + switch (iHitGroup) + { + case HITGROUP_HEAD: + *pflDamageToScale *= flWeaponHeadShotMultiplier * flHeadDamageScale; + break; + case HITGROUP_CHEST: + case HITGROUP_LEFTARM: + + case HITGROUP_RIGHTARM: + case HITGROUP_NECK: + *pflDamageToScale *= flBodyDamageScale; + break; + case HITGROUP_STOMACH: + *pflDamageToScale *= 1.25f * flBodyDamageScale; + break; + case HITGROUP_LEFTLEG: + case HITGROUP_RIGHTLEG: + *pflDamageToScale *= 0.75f * flBodyDamageScale; + break; + default: + break; + } + + if (pCSPlayer->hasArmour(iHitGroup)) + { + // @ida CCSPlayer::OnTakeDamage(): server.dll -> "80 BF ? ? ? ? ? F3 0F 10 5C 24 ? F3 0F 10 35" + + const int iArmor = pCSPlayer->GetArmorValue(); + float flHeavyArmorBonus = 1.0f, flArmorBonus = 0.5f, flArmorRatio = flWeaponArmorRatio * 0.5f; + + if (bHeavyArmor) + { + flHeavyArmorBonus = 0.25f; + flArmorBonus = 0.33f; + flArmorRatio *= 0.20f; + } + + float flDamageToHealth = *pflDamageToScale * flArmorRatio; + if (const float flDamageToArmor = (*pflDamageToScale - flDamageToHealth) * (flHeavyArmorBonus * flArmorBonus); flDamageToArmor > static_cast(iArmor)) + flDamageToHealth = *pflDamageToScale - static_cast(iArmor) / flArmorBonus; + + *pflDamageToScale = flDamageToHealth; + } + } + /* bool F::AUTOWALL::c_auto_wall::FireBullet(data_t& data, float& dmg, bool& valid) + { + CS_ASSERT(data.m_local != nullptr || data.m_target != nullptr || data.m_wpn_data != nullptr || data.m_local_pawn != nullptr || data.m_target_pawn != nullptr); + if (!data.m_local || !data.m_target || !data.m_wpn_data) + return false; + + trace_data_t trace_data = { }; + trace_data.m_arr_pointer = &trace_data.m_arr; + + Vector_t direction = + data.m_pos.at(data_t::e_pos::e_target) - data.m_pos.at(data_t::e_pos::e_local), + end_pos = direction * data.m_wpn_data->m_flRange(); + + int pen_count = 4; + float flTraceLength = 0.f; + float flMaxRange = data.m_wpn_data->m_flRange(); + // set our current damage to what our gun's initial damage reports it will do + data.m_dmg = static_cast(data.m_wpn_data->m_nDamage()); + + trace_filter_t filter = {}; + I::Trace->Init(filter, data.m_local_pawn, MASK_SHOT_HULL | CONTENTS_HITBOX, 3, 7); + I::Trace->CreateTrace(&trace_data, data.m_pos.at(data_t::e_pos::e_local), end_pos, filter, 4); + + struct handle_bullet_data_t { + handle_bullet_data_t(const float dmg_mod, const float pen, const float range_mod, const float range, + const int pen_count, const bool failed) : + m_dmg(dmg_mod), + m_pen(pen), + m_range_mod(range_mod), + m_range(range), + m_pen_count(pen_count), + m_failed(failed) {} + + float m_dmg{ }, m_pen{ }, m_range_mod{ }, m_range{ }; + int m_pen_count{ }; + bool m_failed{ }; + } + + handle_bullet_data(static_cast(data.m_wpn_data->m_nDamage()), data.m_wpn_data->m_flPenetration(), data.m_wpn_data->m_flRange(), + data.m_wpn_data->m_flRangeModifier(), 4, false); + + if (trace_data.m_num_update > 0) { + for (int i{ }; i < trace_data.m_num_update; i++) { + auto* value = reinterpret_cast( + reinterpret_cast(trace_data.m_pointer_update_value) + + i * sizeof(UpdateValueT)); + + game_trace_t game_trace = { }; + I::Trace->InitializeTraceInfo(&game_trace); + I::Trace->get_trace_info( + &trace_data, &game_trace, 0.0f, + reinterpret_cast( + reinterpret_cast(trace_data.m_arr.data()) + + sizeof(trace_arr_element_t) * (value->handleIdx & 0x7fffu))); + + + flMaxRange -= flTraceLength; + + game_trace_t trace = {}; + ray_t ray = {}; + + I::Trace->TraceShape(ray, &data.m_pos.at(data_t::e_pos::e_local), &end_pos, filter, trace); + I::Trace->ClipTraceToPlayers(data.m_pos.at(data_t::e_pos::e_local), end_pos, &filter, &trace, 0.F, 60.F, (1.F / (data.m_pos.at(data_t::e_pos::e_local) - end_pos).Length()) * (trace.m_end_pos - data.m_pos.at(data_t::e_pos::e_local)).Length()); + + if (trace.Fraction == 1.f) + break; + + // calculate the damage based on the distance the bullet traveled + flTraceLength += trace.Fraction * flMaxRange; + data.m_dmg *= std::powf(data.m_wpn_data->m_flRangeModifier(), flTraceLength / 500.f); + + // check is actually can shoot through + if (flTraceLength > 3000.f) + break; + + L_PRINT(LOG_INFO) << "idx:" << trace.HitEntity->GetRefEHandle().GetEntryIndex() << " dmg:" << data.m_dmg; + + if (trace.HitEntity->GetRefEHandle().GetEntryIndex() == data.m_target_pawn->GetRefEHandle().GetEntryIndex()) + { + ScaleDamage2(game_trace.HitboxData->m_hitgroup, data.m_target_pawn, data.m_wpn_data->m_flArmorRatio(), data.m_wpn_data->m_flHeadshotMultiplier(), &data.m_dmg); + L_PRINT(LOG_INFO) << "dmg:" << data.m_dmg; + return true; + } + + // check if the bullet can no longer continue penetrating materials + if (I::Trace->handle_bullet_penetration(&trace_data, &handle_bullet_data, value, false)) + return false; + + pen_count = handle_bullet_data.m_pen_count; + data.m_dmg = handle_bullet_data.m_dmg; + + } + } + return false; + }*/ + std::unique_ptr g_auto_wall{}; + +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/penetration/penetration.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/penetration/penetration.h new file mode 100644 index 0000000..e40e218 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/penetration/penetration.h @@ -0,0 +1,64 @@ +#pragma once + +#include "../../common.h" +#include +// used: draw system +#include "../../utilities/draw.h" +#include "../../sdk/datatypes/vector.h" +#include "../../sdk/datatypes/transform.h" +#include "../../sdk/datatypes/qangle.h" +#include "../cstrike/core/config.h" +#include +class C_BaseEntity; +class CCSWeaponBaseVData; +class Vector_t; +class C_CSPlayerPawn; +class CCSPlayerController; +class CBaseHandle; +class CEntityInstance; +class CUserCmd; +class CBaseUserCmdPB; +class QAngle_t; +class IGameEvent; + +namespace F::AUTOWALL { + class c_auto_wall { + public: + struct data_t { + enum e_pos { e_local, e_target }; + data_t() = default; + + CS_INLINE data_t(const Vector_t local_pos, const Vector_t target_pos, + C_BaseEntity* target, + C_BaseEntity* local, + C_CSPlayerPawn* localpawn, C_CSPlayerPawn* targetpawn, + CCSWeaponBaseVData* wpn_data, const bool fire_bullet) noexcept : + m_pos{ local_pos, target_pos }, + m_target(target), + m_local(local), + m_local_pawn(localpawn), + m_target_pawn(targetpawn), + m_wpn_data(wpn_data), + m_can_hit(fire_bullet){} + + + std::array< Vector_t, static_cast(sizeof(e_pos)) > m_pos{ }; + C_BaseEntity* m_target{ }, * m_local{ }; + C_CSPlayerPawn* m_local_pawn{}; + C_CSPlayerPawn* m_target_pawn{}; + CCSWeaponBaseVData* m_wpn_data{ }; + + bool m_can_hit{ }; + float m_dmg{ }; + } m_data; + void pen(data_t& data, const Vector_t local_pos, const Vector_t target_pos, C_BaseEntity* target, C_BaseEntity* local, C_CSPlayerPawn* localpawn, C_CSPlayerPawn* targetpawn, + CCSWeaponBaseVData* wpn_data, float &dmg, bool &valid); + void ScaleDamage(data_t& data, const int hitgroup, C_CSPlayerPawn* entity); + bool FireBullet(data_t& data, float &dmg, bool &valid); + void ScaleDamage2(const int iHitGroup, C_CSPlayerPawn* pCSPlayer, const float flWeaponArmorRatio, const float flWeaponHeadShotMultiplier, float* pflDamageToScale); + public: + [[nodiscard]] CS_INLINE auto get_data(data_t& data) const noexcept { return data; } + }; + + extern std::unique_ptr g_auto_wall; +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/post_processing.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/post_processing.cpp new file mode 100644 index 0000000..1350183 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/post_processing.cpp @@ -0,0 +1,336 @@ +#include "post_processing.hpp" + +// WIP + +#define SAFE_RELEASE(p) \ + { \ + if (p) { \ + (p)->Release(); \ + (p) = nullptr; \ + } \ + } + +static inline ID3D11Device* pDevice; // DO NOT RELEASE! +static inline ID3D11DeviceContext* pDeviceContext; +static inline ID3D11RenderTargetView* pRenderTarget; // DO NOT RELEASE! +static inline IDXGISwapChain* pSwapChain; + +[[nodiscard]] static ID3D11Texture2D* createTexture(int width, + int height) noexcept { + D3D11_TEXTURE2D_DESC desc = {}; + desc.Width = width; + desc.Height = height; + desc.MipLevels = 1; + desc.ArraySize = 1; + desc.Format = DXGI_FORMAT_R8G8B8A8_UNORM; + desc.SampleDesc.Count = 1; + desc.Usage = D3D11_USAGE_DEFAULT; + desc.BindFlags = D3D11_BIND_RENDER_TARGET | D3D11_BIND_SHADER_RESOURCE; + + ID3D11Texture2D* texture = nullptr; + pDevice->CreateTexture2D(&desc, nullptr, &texture); + return texture; +} + +static void copyBackbufferToTexture(ID3D11Texture2D* texture) noexcept { + pSwapChain->GetBuffer(0, __uuidof(texture), + reinterpret_cast(&texture)); +} + +static void setRenderTarget(ID3D11Texture2D* rtTexture) noexcept { + ID3D11RenderTargetView* rtv = nullptr; + pDevice->CreateRenderTargetView(rtTexture, nullptr, &rtv); + pDeviceContext->OMSetRenderTargets(1, &rtv, nullptr); + rtv->Release(); +} + +class ShaderProgram { + public: + ~ShaderProgram() { + if (pixelShader) pixelShader->Release(); + } + + void use(float uniform, int location) const noexcept { + pDeviceContext->PSSetShader(pixelShader, nullptr, 0); + pDeviceContext->PSSetConstantBuffers(location, 1, &constBuffer); + } + + void init(const BYTE* pixelShaderSrc, size_t size) noexcept { + if (initialized) return; + initialized = true; + pDevice->CreatePixelShader(pixelShaderSrc, size, nullptr, &pixelShader); + } + + private: + ID3D11PixelShader* pixelShader = nullptr; + ID3D11Buffer* constBuffer = nullptr; + bool initialized = false; +}; + +class BlurEffect { + public: + static void draw(ImDrawList* drawList, float alpha) noexcept { + instance()._draw(drawList, alpha); + } + + static void draws(ImDrawList* drawList, const ImVec2& p_min, + const ImVec2& p_max, float alpha) noexcept { + instance()._draws(drawList, p_min, p_max, alpha); + } + + static void clearTextures() noexcept { + SAFE_RELEASE(instance().pBlurTexture1); + SAFE_RELEASE(instance().pBlurTexture2); + } + + private: + ID3D11RenderTargetView* pRTBackup = nullptr; + ID3D11Texture2D* pBlurTexture1 = nullptr; + ID3D11Texture2D* pBlurTexture2 = nullptr; + ID3D11RasterizerState* pRasterStateWithScissorDisabled = nullptr; + ID3D11RasterizerState* pOriginalRasterState = nullptr; + ID3D11RenderTargetView* pBlurTexture1RTV = nullptr; + ID3D11RenderTargetView* pBlurTexture2RTV = nullptr; + ID3D11Buffer* pVSConstantBuffer = nullptr; + + ID3D11ShaderResourceView* pBlurTexture1SRV = nullptr; + ID3D11ShaderResourceView* pBlurTexture2SRV = nullptr; + + ShaderProgram blurShaderX; + ShaderProgram blurShaderY; + + int backbufferWidth = 0; + int backbufferHeight = 0; + static constexpr auto blurDownsample = 2; + + BlurEffect() = default; + BlurEffect(const BlurEffect&) = delete; + + ~BlurEffect() { + SAFE_RELEASE(pRTBackup); + SAFE_RELEASE(pRasterStateWithScissorDisabled); + SAFE_RELEASE(pOriginalRasterState); + SAFE_RELEASE(pBlurTexture1); + SAFE_RELEASE(pBlurTexture2); + SAFE_RELEASE(pBlurTexture1RTV); + SAFE_RELEASE(pBlurTexture2RTV); + SAFE_RELEASE(pBlurTexture1SRV); + SAFE_RELEASE(pBlurTexture2SRV); + SAFE_RELEASE(pVSConstantBuffer); + } + + static BlurEffect& instance() noexcept { + static BlurEffect blurEffect; + return blurEffect; + } + + static void begin(const ImDrawList*, const ImDrawCmd*) noexcept { + instance()._begin(); + } + + static void firstPass(const ImDrawList*, const ImDrawCmd*) noexcept { + instance()._firstPass(); + } + + static void secondPass(const ImDrawList*, const ImDrawCmd*) noexcept { + instance()._secondPass(); + } + + static void end(const ImDrawList*, const ImDrawCmd*) noexcept { + instance()._end(); + } + + void createTextures() noexcept { + if (const auto [width, height] = ImGui::GetIO().DisplaySize; + backbufferWidth != static_cast(width) || + backbufferHeight != static_cast(height)) { + clearTextures(); + backbufferWidth = static_cast(width); + backbufferHeight = static_cast(height); + } + + if (!pBlurTexture1) + pBlurTexture1 = createTexture(backbufferWidth / blurDownsample, + backbufferHeight / blurDownsample); + if (!pBlurTexture2) + pBlurTexture2 = createTexture(backbufferWidth / blurDownsample, + backbufferHeight / blurDownsample); + + D3D11_RENDER_TARGET_VIEW_DESC rtvDesc = {}; + rtvDesc.Format = + DXGI_FORMAT_R8G8B8A8_UNORM; // Match this with your texture format. + rtvDesc.ViewDimension = D3D11_RTV_DIMENSION_TEXTURE2D; + rtvDesc.Texture2D.MipSlice = 0; + + pDevice->CreateRenderTargetView(pBlurTexture1, &rtvDesc, &pBlurTexture1RTV); + pDevice->CreateRenderTargetView(pBlurTexture2, &rtvDesc, &pBlurTexture2RTV); + } + + void createShaders() noexcept { + blurShaderX.init(reinterpret_cast(gaussian_blur_x), + sizeof(gaussian_blur_x)); + blurShaderY.init(reinterpret_cast(gaussian_blur_y), + sizeof(gaussian_blur_y)); + } + + void _begin() noexcept { + pDeviceContext->OMGetRenderTargets(1, &pRTBackup, nullptr); + + copyBackbufferToTexture(pBlurTexture1); + + D3D11_SAMPLER_DESC sampDesc = {}; + sampDesc.AddressU = D3D11_TEXTURE_ADDRESS_CLAMP; + sampDesc.AddressV = D3D11_TEXTURE_ADDRESS_CLAMP; + sampDesc.AddressW = D3D11_TEXTURE_ADDRESS_CLAMP; + sampDesc.Filter = D3D11_FILTER_MIN_MAG_MIP_LINEAR; + sampDesc.MaxLOD = D3D11_FLOAT32_MAX; + ID3D11SamplerState* samplerState; + pDevice->CreateSamplerState(&sampDesc, &samplerState); + pDeviceContext->PSSetSamplers(0, 1, &samplerState); + + pDeviceContext->RSGetState(&pOriginalRasterState); + + D3D11_RASTERIZER_DESC rasterDesc = {}; + rasterDesc.FillMode = D3D11_FILL_SOLID; // Solid fill mode + rasterDesc.CullMode = D3D11_CULL_BACK; // Cull back-facing triangles + rasterDesc.ScissorEnable = FALSE; // Disable scissor test + rasterDesc.DepthClipEnable = TRUE; // Enable depth clipping + HRESULT hr = pDevice->CreateRasterizerState( + &rasterDesc, &pRasterStateWithScissorDisabled); + + if (FAILED(hr)) { + printf("Failed CreateRasterizerState\n"); + } + + pDeviceContext->RSSetState(pRasterStateWithScissorDisabled); + + D3D11_BUFFER_DESC cbDesc = {}; + cbDesc.Usage = D3D11_USAGE_DEFAULT; + cbDesc.ByteWidth = sizeof(VSConstants); + cbDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; + + pDevice->CreateBuffer(&cbDesc, nullptr, &pVSConstantBuffer); + + float aspectRatio = static_cast(backbufferWidth) / + static_cast(backbufferHeight); + DirectX::XMMATRIX projection = DirectX::XMMatrixOrthographicOffCenterLH( + -1.0f / aspectRatio, 1.0f / aspectRatio, -1.0f, 1.0f, 0.0f, 1.0f); + + VSConstants vsConsts = {}; + vsConsts.projection = XMMatrixTranspose( + projection); // HLSL expects matrices to be transposed + + pDeviceContext->UpdateSubresource(pVSConstantBuffer, 0, nullptr, &vsConsts, + 0, 0); + pDeviceContext->VSSetConstantBuffers(0, 1, &pVSConstantBuffer); + } + + void _firstPass() noexcept { + blurShaderX.use(2.0f / (backbufferWidth / blurDownsample), 0); + pDeviceContext->OMSetRenderTargets(1, &pBlurTexture2RTV, nullptr); + } + + void _secondPass() noexcept { + blurShaderY.use(2.0f / (backbufferHeight / blurDownsample), 0); + pDeviceContext->OMSetRenderTargets(1, &pBlurTexture1RTV, nullptr); + + pDevice->CreateShaderResourceView(pBlurTexture2, nullptr, + &pBlurTexture2SRV); + } + + void _end() noexcept { + pDeviceContext->OMSetRenderTargets(1, &pRTBackup, nullptr); + pRTBackup->Release(); + pDeviceContext->PSSetShader(nullptr, nullptr, 0); + pDeviceContext->RSSetState(pOriginalRasterState); + + if (pRasterStateWithScissorDisabled) + pRasterStateWithScissorDisabled->Release(); + } + + void _draw(ImDrawList* drawList, float alpha) noexcept { + createTextures(); + createShaders(); + + if (!pBlurTexture1RTV || !pBlurTexture2RTV) return; + + drawList->AddCallback(&begin, nullptr); + for (int i = 0; i < 8; ++i) { + drawList->AddCallback(&firstPass, nullptr); + pDevice->CreateShaderResourceView(pBlurTexture1, nullptr, + &pBlurTexture1SRV); + drawList->AddImage( + (ImTextureID)pBlurTexture1SRV, ImVec2(-1.0f, -1.0f), + ImVec2(1.0f, 1.0f)); // Assuming blurTexture1SRV is the Shader + // Resource View for blurTexture1 + drawList->AddCallback(&secondPass, nullptr); + drawList->AddImage((ImTextureID)pBlurTexture2SRV, ImVec2(-1.0f, -1.0f), + ImVec2(1.0f, 1.0f)); // And similarly for blurTexture2 + } + drawList->AddCallback(&end, nullptr); + drawList->AddCallback(ImDrawCallback_ResetRenderState, nullptr); + + drawList->AddImage( + reinterpret_cast(pBlurTexture1SRV), {0.0f, 0.0f}, + {backbufferWidth * 1.0f, backbufferHeight * 1.0f}, {0.0f, 0.0f}, + {1.0f, 1.0f}, IM_COL32(255, 255, 255, 255 * alpha)); + + if (pOriginalRasterState) pOriginalRasterState->Release(); + } + + void _draws(ImDrawList* drawList, const ImVec2& p_min, const ImVec2& p_max, + float alpha) noexcept { + createTextures(); + createShaders(); + + if (!pBlurTexture1RTV || !pBlurTexture2RTV) return; + + drawList->AddCallback(&begin, nullptr); + for (int i = 0; i < 8; ++i) { + drawList->AddCallback(&firstPass, nullptr); + pDevice->CreateShaderResourceView(pBlurTexture1, nullptr, + &pBlurTexture1SRV); + drawList->AddImage(reinterpret_cast(pBlurTexture1SRV), p_min, + p_max, {1.0f, 1.0f}); + drawList->AddCallback(&secondPass, nullptr); + pDevice->CreateShaderResourceView(pBlurTexture2, nullptr, + &pBlurTexture2SRV); + drawList->AddImage(reinterpret_cast(pBlurTexture2SRV), p_min, + p_max, {1.0f, 1.0f}); + } + drawList->AddCallback(&end, nullptr); + drawList->AddCallback(ImDrawCallback_ResetRenderState, nullptr); + + drawList->AddImage( + reinterpret_cast(pBlurTexture2SRV), p_min, p_max, + ImVec2((float)backbufferWidth * 1, (float)backbufferHeight * 1), + ImVec2((float)backbufferWidth * 1, (float)backbufferHeight * 1), + IM_COL32(255, 255, 255, 255 * alpha)); + } +}; + +void PostProcessing::setDevice(ID3D11Device* device, + ID3D11DeviceContext* deviceContext, + ID3D11RenderTargetView* renderTarget, + IDXGISwapChain* swapChain) noexcept { + pDevice = device; + pDeviceContext = deviceContext; + pRenderTarget = renderTarget; + pSwapChain = swapChain; +} + +void PostProcessing::clearBlurTextures() noexcept { + BlurEffect::clearTextures(); +} + +void PostProcessing::onDeviceReset() noexcept { BlurEffect::clearTextures(); } + +void PostProcessing::performFullscreenBlur(ImDrawList* drawList, + float alpha) noexcept { + BlurEffect::draw(drawList, alpha); +} + +void PostProcessing::performBlur(ImDrawList* drawList, const ImVec2& p_min, + const ImVec2& p_max, float alpha) noexcept { + BlurEffect::draws(drawList, p_min, p_max, alpha); +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/post_processing.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/post_processing.hpp new file mode 100644 index 0000000..e14b014 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/post_processing.hpp @@ -0,0 +1,30 @@ +#pragma once + +// WIP + +#define IMGUI_DEFINE_MATH_OPERATORS +#include +#include +#include +#include + +#include +#include +#include + +#include "../../sdk/shaders/build/gaussian_blur.hpp" + +struct VSConstants { + DirectX::XMMATRIX projection; +}; + +namespace PostProcessing { +void setDevice(ID3D11Device* device, ID3D11DeviceContext* deviceContext, + ID3D11RenderTargetView* renderTarget, + IDXGISwapChain* swapChain) noexcept; +void clearBlurTextures() noexcept; +void onDeviceReset() noexcept; +void performFullscreenBlur(ImDrawList* drawList, float alpha) noexcept; +void performBlur(ImDrawList* drawList, const ImVec2& p_min, const ImVec2& p_max, + float alpha) noexcept; +} // namespace PostProcessing diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/rage/rage.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/rage/rage.cpp new file mode 100644 index 0000000..2a6f806 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/rage/rage.cpp @@ -0,0 +1,2006 @@ +#include "rage.h" +#include "../../core/config.h" +#include "../../core/variables.h" +#include "../../sdk/datatypes/usercmd.h" +#include "../../core/sdk.h" +#include "../../sdk/entity.h" +#include "../../sdk/interfaces/iengineclient.h" +#include "../../sdk/interfaces/iglobalvars.h" +#include "../../sdk/interfaces/cgameentitysystem.h" +#include "../../sdk/datatypes/qangle.h" +#include "../../sdk/datatypes/vector.h" +#include "../misc/movement.h" +#include "../cstrike/sdk/interfaces/ccsgoinput.h" +#include "../cstrike/sdk/interfaces/ienginecvar.h" +#include "../lagcomp/lagcomp.h" +#include "../cstrike/sdk/interfaces/events.h" +#include "../penetration/penetration.h" +#include "../cstrike/sdk/interfaces/itrace.h" +#include "../cstrike/core/spoofcall/syscall.h" +#include +#include +#include +#include +#include "../../core/spoofcall/virtualization/VirtualizerSDK64.h" +#include "../../utilities/inputsystem.h" +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif +#include "../../core/hooks.h" +#define M_PI_F ((float)(M_PI)) +#ifndef RAD2DEG +#define RAD2DEG(x) ((float)(x) * (float)(180.f / M_PI_F)) +#endif + +#ifndef DEG2RAD +#define DEG2RAD(x) ((float)(x) * (float)(M_PI_F / 180.f)) +#endif +static std::vector e_hitboxes; +static bool m_stop = false; +static bool early_stopped = false; + +#include +#define MAX_STUDIO_BONES 1024 + + +enum class HitscanMode : int { + NORMAL = 0, + LETHAL = 1, + LETHAL2 = 3, + PREFER = 4 +}; + +struct HitscanBox_t { + int m_index; + HitscanMode m_mode; + + __forceinline bool operator==(const HitscanBox_t& c) const { + return m_index == c.m_index && m_mode == c.m_mode; + } +}; + +class target +{ +public: + C_CSPlayerPawn* handle; + C_BaseEntity* entHandle; + target() + { + handle = nullptr; + entHandle = nullptr; + } + + target(C_CSPlayerPawn* handle, C_BaseEntity* entHandle) + { + this->handle = handle; + this->entHandle = entHandle; + } +}; + +class temp_point +{ +public: + Vector_t point; + QAngle_t pointangle; + QAngle_t angle; + + int hitbox; + bool center; + float safe; + float damage; + bool canHit; + + temp_point() + { + point = Vector_t(0, 0, 0); + pointangle = QAngle_t(0, 0, 0); + angle = QAngle_t(0, 0, 0); + hitbox = -1; + center = false; + safe = 0.0f; + damage = 0.f; + canHit = false; + } + + temp_point(const Vector_t& point, const QAngle_t& pointangle, const QAngle_t& angle, const int& hitbox, const bool& center, const float& damage, const bool& canHit) //-V818 //-V730 + { + this->point = point; + this->pointangle = pointangle; + this->angle = angle; + this->hitbox = hitbox; + this->center = center; + this->damage = damage; + this->canHit = canHit; + } + + void reset() + { + point = Vector_t(0, 0, 0); + pointangle = QAngle_t(0, 0, 0); + angle = QAngle_t(0, 0, 0); + hitbox = -1; + center = false; + safe = 0.0f; + damage = 0.f; + canHit = false; + } +}; +class scan_point +{ +public: + Vector_t point; + QAngle_t pointangle; + QAngle_t angle; + + int hitbox; + bool center; + float safe; + float damage; + bool canHit; + + scan_point() + { + point = Vector_t(0, 0, 0); + pointangle = QAngle_t(0, 0, 0); + angle = QAngle_t(0, 0, 0); + hitbox = -1; + center = false; + safe = 0.0f; + damage = 0.f; + canHit = false; + } + + scan_point(const Vector_t& point, const QAngle_t& pointangle, const QAngle_t& angle, const int& hitbox, const bool& center, const float& damage, const bool& canHit) //-V818 //-V730 + { + this->point = point; + this->pointangle = pointangle; + this->angle = angle; + this->hitbox = hitbox; + this->center = center; + this->damage = damage; + this->canHit = canHit; + } + + void reset() + { + point = Vector_t(0, 0, 0); + pointangle = QAngle_t(0, 0, 0); + angle = QAngle_t(0, 0, 0); + hitbox = -1; + center = false; + safe = 0.0f; + damage = 0.f; + canHit = false; + } +}; +class scan_data +{ +public: + scan_point point; + temp_point temp_point; + + bool visible; + int damage; + int hitbox; + + scan_data() + { + reset(); + } + + void reset() + { + temp_point.reset(); + point.reset(); + visible = false; + damage = -1; + hitbox = -1; + } + + bool valid() + { + return damage >= 1 && point.angle.IsValid(); + } +}; + +class scanned_target +{ +public: + C_CSPlayerPawn* record; + C_BaseEntity* ent; + scan_data data; + + float fov; + float distance; + int health; + float damage; + scanned_target() + { + reset(); + } + + scanned_target(const scanned_target& data) //-V688 + { + this->record = data.record; + this->data = data.data; + this->fov = data.fov; + this->distance = data.distance; + this->health = data.health; + this->damage = data.damage; + this->ent = data.ent; + + } + + scanned_target& operator=(const scanned_target& data) //-V688 + { + this->ent = data.ent; + this->record = data.record; + this->data = data.data; + this->fov = data.fov; + this->distance = data.distance; + this->health = data.health; + this->damage = data.damage; + + return *this; + } + + scanned_target(C_BaseEntity* ent, float damage, float health, Vector_t eyepos, Vector_t end_pos, C_CSPlayerPawn* record, const scan_data& data) //-V688 //-V818 + { + this->ent = ent; + this->record = record; + this->data = data; + this->distance = eyepos.DistTo(end_pos); + this->fov = 0; + this->health = health; + this->damage = damage; + } + + void reset() + { + ent = nullptr; + record = nullptr; + data.reset(); + fov = 0.0f; + distance = 0.0f; + health = 0; + damage = 0; + } +}; + + +Vector_t last_shoot_position; +std::vector scanned_targets; +scanned_target final_target; +C_CSPlayerPawn* last_target; + +std::vector targets; +// TODO: not sure if this is correct +float calc_lerp() noexcept { + + const float cl_interp = I::Cvar->Find(FNV1A::Hash("cl_interp"))->value.fl; + auto lerp = cl_interp / 64.f; + + if (lerp <= cl_interp) + lerp = cl_interp; + + return lerp; +} + +float get_las_valid_sim_time() noexcept { + auto sv_maxunlag = I::Cvar->Find(FNV1A::Hash("sv_maxunlag"))->value.fl; + + const auto nci = I::Engine->GetNetChannelInfo(0); + if (!nci) + return std::numeric_limits::max(); + + const auto latency = nci->get_latency(flow::FLOW_OUTGOING) + nci->get_latency(FLOW_INCOMING); + const float correct = std::clamp(latency, 0.0f, sv_maxunlag); + const float max_delta = std::min((sv_maxunlag - correct), 0.2f) / 1000.f; + + return I::GlobalVars->flCurtime - max_delta; +} + +struct record { +public: + bool valid = { }; + float simulation_time = { }; + std::array bone_data = { }; + Vector_t head_pos = { }; +}; + +struct record_set { +public: + record* record1; + record* record2; + float fraction; +}; + +class backtrack_entity { +public: + CBaseHandle handle = {}; + std::vector records = {}; + bool last_valid = { }; + CStrongHandle model = { }; + uint32_t num_bones = { }; + CSkeletonInstance* skeleton; + backtrack_entity(CBaseHandle handle) noexcept : handle(handle) { + CS_ASSERT(I::GlobalVars); + auto unlag = I::Cvar->Find(FNV1A::Hash(CS_XOR("sv_maxunlag")))->value.fl; + auto max_ticks = static_cast(unlag / I::GlobalVars->flIntervalPerTick); + + if (max_ticks < 0) + max_ticks = 0; + + records.resize(max_ticks); + records.resize(records.capacity()); // basically free, so why not + } + + // TODO: not sure if this is correct + float calc_lerp() noexcept { + + auto cl_interp = I::Cvar->Find(FNV1A::Hash("cl_interp"))->value.fl; + auto lerp = cl_interp / 64.f; + + if (lerp <= cl_interp) + lerp = cl_interp; + + return lerp; + } + + float get_las_valid_sim_time() noexcept { + auto sv_maxunlag = I::Cvar->Find(FNV1A::Hash("sv_maxunlag"))->value.fl; + + const auto nci = I::Engine->GetNetChannelInfo(0); + if (!nci) + return std::numeric_limits::max(); + + const auto latency = nci->get_latency(flow::FLOW_OUTGOING) + nci->get_latency(FLOW_INCOMING); + const float correct = std::clamp(latency , 0.0f, sv_maxunlag); + const float max_delta = std::min((sv_maxunlag - correct), 0.2f) / 1000.f; + + return I::GlobalVars->flCurtime - max_delta; + } + + void save_data(unsigned int index) noexcept { + if (records.size() <= 0) + return; + + auto& rec = records[index % records.size()]; + + if (!SDK::LocalPawn) + return; + + C_CSPlayerPawn* player = final_target.record; + if (!player || player->GetHealth() <= 0 || player->GetGameSceneNode()->IsDormant()) { + invalidate(); + return; + } + + if (!SDK::LocalPawn->IsOtherEnemy(player)) { + invalidate(); + return; + } + + rec.simulation_time = player->m_flSimulationTime(); + rec.head_pos = player->GetEyePosition(); + + const auto game_scene_node = player->GetGameSceneNode(); + if (!game_scene_node) { + invalidate(); + return; + } + + skeleton = game_scene_node->GetSkeletonInstance(); + if (!skeleton) { + invalidate(); + return; + } + + skeleton->calc_world_space_bones(0, bone_flags::FLAG_HITBOX); + + auto& model_state = skeleton->GetModel(); + model = model_state.m_hModel(); + if (!model.is_valid()) { + invalidate(); + return; + } + + num_bones = model->GetHitboxesNum(); + if (num_bones == 0) { + invalidate(); + return; + } + + auto bone_data = model_state.GetHitboxData(); + + if (num_bones > MAX_STUDIO_BONES) + num_bones = MAX_STUDIO_BONES; + + memcpy(rec.bone_data.data(), bone_data, sizeof(bone_data) * num_bones); + rec.valid = true; + last_valid = true; + } + + float closest_record(Vector_t start, Vector_t end, float las_valid_sim_time) { + float closest = std::numeric_limits::max(); + + for (auto& rec : records) { + if (!rec.valid) + continue; + + if (rec.simulation_time <= las_valid_sim_time) + continue; + + float dist = get_distance(rec.head_pos, start, end); + if (dist < closest) + closest = dist; + } + + return closest; + } + + record_set find_best_records(Vector_t start, Vector_t end, float las_valid_sim_time) { + + int best_bone = -1; + int best_record = -1; + float best_bone_dist = std::numeric_limits::max(); + + for (int bone_index = 0; bone_index < (int)num_bones; bone_index++) { + if (!(model->GetHitboxFlags(bone_index) & bone_flags::FLAG_HITBOX)) { + continue; + } + + auto parent_bone_index = model->GetHitboxParent(bone_index); + if (parent_bone_index == -1) + continue; + + for (int record_index = 0; record_index < std::size(records); record_index++) { + const auto& rec = records[record_index]; + if (!rec.valid) + continue; + + if (rec.simulation_time <= las_valid_sim_time) + continue; + + const float bone_dist = MATH::segment_dist(start, end, rec.bone_data[bone_index].pos, rec.bone_data[parent_bone_index].pos); + if (bone_dist < best_bone_dist) { + best_bone_dist = bone_dist; + best_bone = bone_index; + best_record = record_index; + } + } + } + + CS_ASSERT(best_bone != -1 && best_record != -1); + + int prev_record = best_record - 1; + if (prev_record < 0) + prev_record += records.size(); + if (!records[prev_record].valid) + prev_record = best_record; + + int next_record = (best_record + 1) % records.size(); + if (!records[next_record].valid) + next_record = best_record; + + const auto& best_rec = records[best_record]; + uint32_t best_bone_parent = model->GetHitboxParent(best_bone); + + + float prev_dist = MATH::segment_dist( + start, end, + records[prev_record].bone_data[best_bone].pos, + records[prev_record].bone_data[best_bone_parent].pos + ); + float next_dist = MATH::segment_dist( + start, end, + records[next_record].bone_data[best_bone].pos, + records[next_record].bone_data[best_bone_parent].pos + ); + + bool prev_is_best = prev_dist < next_dist; + int rec1_index = prev_is_best ? prev_record : best_record; + int rec2_index = prev_is_best ? best_record : next_record; + + // records are the same + if (rec1_index == rec2_index) + return { &records[rec1_index], &records[rec2_index], 0.0f }; + + const float best_full_dist = (prev_is_best ? prev_dist : next_dist) + best_bone_dist; + const float fraction = prev_is_best ? prev_dist / best_full_dist : best_bone_dist / best_full_dist; + + return { &records[rec1_index], &records[rec2_index], fraction }; + } + +private: + + void invalidate() noexcept { + if (last_valid) { + for (auto& rec : records) + rec.valid = false; + + last_valid = false; + } + } + + float get_distance(Vector_t p, Vector_t a, Vector_t b) { + Vector_t ap = p - a; + Vector_t ab = b - a; + + float ab2 = ab.DotProduct(ab); + float ap_ab = ap.DotProduct(ab); + float t = ap_ab / ab2; + + // ignore if player is behind ur or too far away + if (t < 0.0f || t > 1.0f) + return std::numeric_limits::max(); + + Vector_t nearest = a + ab * t; + return (p - nearest).Length(); + } +}; + +std::unordered_map> records{ }; +void F::LAGCOMP::impl::Initialize() { + EntCache::RegisterCallback( + CachedEntity_t::Type::PLAYER_CONTROLLER, + [](int index, const CBaseHandle handle) noexcept { + records.insert_or_assign(index, std::make_unique(handle)); + }, + [](int index, const CBaseHandle handle) noexcept { + records.erase(index); + } + ); +} +void F::LAGCOMP::impl::Render() noexcept { + + const float las_valid_sim_time = get_las_valid_sim_time(); + for (const auto& [index, entity] : records) { + if (!entity->last_valid) + continue; + + record const* last_record = nullptr; + float last_record_time = std::numeric_limits::max(); + + for (const auto& rec : entity->records) { + if (!rec.valid || rec.simulation_time <= las_valid_sim_time) + continue; + + if (rec.simulation_time < last_record_time) { + last_record_time = rec.simulation_time; + last_record = &rec; + } + } + + if (!last_record) + continue; + + L_PRINT(LOG_INFO) << CS_XOR("[record] info | simulation_time: ") << last_record->simulation_time; + L_PRINT(LOG_INFO) << CS_XOR("[record] info | bone_data: ") << last_record->bone_data[HEAD].pos; + L_PRINT(LOG_INFO) << CS_XOR("[record] info | head_pos: ") << last_record->head_pos; + + entity->skeleton->calc_world_space_bones(0, bone_flags::FLAG_HITBOX); + + for (uint32_t i = 0; i < entity->num_bones; i++) { + if (!(entity->model->GetHitboxFlags(i) & bone_flags::FLAG_HITBOX)) { + continue; + } + + auto parent_index = entity->model->GetHitboxParent(i); + if (parent_index == -1) + continue; + + ImVec2 screen_pos, screen_parent_pos; + if (!MATH::WorldToScreen(last_record->bone_data[i].pos, screen_pos)) + continue; + if (!MATH::WorldToScreen(last_record->bone_data[parent_index].pos, screen_parent_pos)) + continue; + + C_GET(ColorPickerVar_t, Vars.colSkeletonOutline).colValue.a = C_GET(ColorPickerVar_t, Vars.colSkeleton).colValue.a; + D::pDrawListActive->AddLine(ImVec2(screen_pos.x, screen_pos.y), ImVec2(screen_parent_pos.x, screen_parent_pos.y), C_GET(ColorPickerVar_t, Vars.colSkeletonOutline).colValue.GetU32(), 2.f); + D::pDrawListActive->AddLine(ImVec2(screen_pos.x, screen_pos.y), ImVec2(screen_parent_pos.x, screen_parent_pos.y), C_GET(ColorPickerVar_t, Vars.colSkeleton).colValue.GetU32(), 1.f); + + } + } +} +void F::LAGCOMP::impl::Start(CUserCmd* cmd) noexcept { + + if (!I::Engine->IsConnected() || !I::Engine->IsInGame()) + return; + + if (!SDK::LocalController || !SDK::LocalPawn) + return; + + auto pLocal = SDK::LocalPawn; + if (!pLocal || pLocal->GetHealth() <= 0) + return; + + for (auto& [index, entity] : records) { + entity->save_data(cmd->m_csgoUserCmd.m_pBaseCmd->m_nCommandNumber); + } + + CPlayer_WeaponServices* WeaponServices = pLocal->GetWeaponServices(); + if (!WeaponServices) + return; + + auto active_weapon = I::GameResourceService->pGameEntitySystem->Get(WeaponServices->m_hActiveWeapon()); + if (!active_weapon) + return; + + auto v_data = active_weapon->datawep(); + if (!v_data || v_data->m_WeaponType() == WEAPONTYPE_MELEE) + return; + + if (!cmd) + return; + + if (cmd->m_csgoUserCmd.m_nAttack1StartHhistoryIndex == -1) + return; + + const auto sub_tick = cmd->GetInputHistoryEntry(cmd->m_csgoUserCmd.m_nAttack1StartHhistoryIndex); + + if (!sub_tick || !sub_tick->m_sv_interp0 || !sub_tick->m_sv_interp1) { + L_PRINT(LOG_ERROR) << (CS_XOR("invalid sub tick")); + return; + } + + Vector_t forward = MATH::angle_vector(sub_tick->m_pViewCmd->m_angValue); //sub_tick[1]-->->angValue.x, sub_tick->pViewCmd->angValue.y, sub_tick->pViewCmd->angValue.z); + Vector_t start_pos = pLocal->GetEyePosition(); + Vector_t end_pos = start_pos + (forward * v_data->m_flRange()); + const float las_valid_sim_time = get_las_valid_sim_time(); + + L_PRINT(LOG_INFO) << CS_XOR("[lagcomp] get_las_valid_sim_time: ") << get_las_valid_sim_time(); + + int target_index = -1; + float target_index_dist = std::numeric_limits::max(); + for (auto& [index, entity] : records) { + if (!entity->last_valid) + continue; + + const float distance = entity->closest_record(start_pos, end_pos, las_valid_sim_time); + if (distance < target_index_dist) { + target_index = index; + target_index_dist = distance; + L_PRINT(LOG_WARNING) << CS_XOR("[lagcomp] Inserted new best record | idx: ") << target_index << " at distanc:" << target_index_dist; + + } + } + + // no entities or to far away + if (target_index == -1 || target_index_dist > 100.0f) + return; + + + const auto entity = records[target_index].get(); + + const auto records = entity->find_best_records(start_pos, end_pos, las_valid_sim_time); + + const float time_per_tick = I::GlobalVars->flIntervalPerTick; + const float best_time = std::lerp(records.record1->simulation_time, records.record2->simulation_time, records.fraction); + const float best_tick_time = best_time / time_per_tick; + int best_tick = (int)std::floor(best_tick_time); + const float best_tick_fraction = best_tick_time - best_tick; + + best_tick -= 1; // FIXME: engine prediction? + L_PRINT(LOG_INFO) << CS_XOR("[lagcomp] backtracking info | best tick: ") << best_tick << CS_XOR(" | tick fraction:") << best_tick_fraction << CS_XOR(" ticks:") << (I::GlobalVars->flCurtime - best_time) * 1000.f; + + + + if (!sub_tick->m_cl_interp || !sub_tick->m_sv_interp0 || !sub_tick->m_sv_interp1) { + L_PRINT(LOG_INFO) << "Invalid sub tick"; + return; + } + + L_PRINT(LOG_INFO) << CS_XOR("[subtick] subtick info: "); + + L_PRINT(LOG_INFO) << CS_XOR("[subtick] cl_interp info | cl_interp tick: ") << sub_tick->m_cl_interp->m_nDstTick; + L_PRINT(LOG_INFO) << CS_XOR("[subtick] cl_interp info | nSrcTick tick: ") << sub_tick->m_cl_interp->m_nSrcTick; + L_PRINT(LOG_INFO) << CS_XOR("[subtick] cl_interp info | flFraction tick: ") << sub_tick->m_cl_interp->m_flFraction; + + L_PRINT(LOG_INFO) << CS_XOR("[subtick] sv_interp0 info | cl_interp tick: ") << sub_tick->m_sv_interp0->m_nDstTick; + L_PRINT(LOG_INFO) << CS_XOR("[subtick] sv_interp0 info | nSrcTick tick: ") << sub_tick->m_sv_interp0->m_nSrcTick; + L_PRINT(LOG_INFO) << CS_XOR("[subtick] sv_interp0 info | flFraction tick: ") << sub_tick->m_sv_interp0->m_flFraction; + + L_PRINT(LOG_INFO) << CS_XOR("[subtick] sv_interp1 info | cl_interp tick: ") << sub_tick->m_sv_interp1->m_nDstTick; + L_PRINT(LOG_INFO) << CS_XOR("[subtick] sv_interp1 info | nSrcTick tick: ") << sub_tick->m_sv_interp1->m_nSrcTick; + L_PRINT(LOG_INFO) << CS_XOR("[subtick] sv_interp1 info | flFraction tick: ") << sub_tick->m_sv_interp1->m_flFraction; + + sub_tick->m_cl_interp->m_nSrcTick = best_tick; + sub_tick->m_cl_interp->m_nDstTick = best_tick + 1; + sub_tick->m_cl_interp->m_flFraction = best_tick_fraction; + + sub_tick->m_sv_interp0->m_nSrcTick = best_tick; + sub_tick->m_sv_interp0->m_nDstTick = best_tick + 1; + sub_tick->m_sv_interp0->m_flFraction = 0.f; + + sub_tick->m_sv_interp1->m_nSrcTick = best_tick + 1; + sub_tick->m_sv_interp1->m_nDstTick = best_tick + 2; + sub_tick->m_sv_interp1->m_flFraction = 0.f; + + +} + + +// setup config hitboxes +void F::RAGE::impl::Scan() { + + /* emplace menu hitboxes which will be used for hitscan*/ + + if (rage_data.hitbox_head) { + e_hitboxes.emplace_back(HEAD); + } + + if (rage_data.hitbox_chest) { + e_hitboxes.emplace_back(CHEST); + e_hitboxes.emplace_back(RIGHT_CHEST); + e_hitboxes.emplace_back(LEFT_CHEST); + } + + if (rage_data.hitbox_stomach) { + e_hitboxes.emplace_back(STOMACH); + e_hitboxes.emplace_back(CENTER); + e_hitboxes.emplace_back(PELVIS); + } + + if (rage_data.hitbox_legs) { + e_hitboxes.emplace_back(L_LEG); + e_hitboxes.emplace_back(R_LEG); + } + if (rage_data.hitbox_feets) { + e_hitboxes.emplace_back(L_FEET); + e_hitboxes.emplace_back(R_FEET); + } + + return; +} +void F::RAGE::impl::Reset(reset type) { + switch (type) { + case reset::entity: + targets.clear(); + break; + case reset::aimbot: + e_hitboxes.clear(); + targets.clear(); + scanned_targets.clear(); + break; + } + return; +} + +void F::RAGE::impl::SetupTarget(C_CSPlayerPawn* pLocal) +{ + if (!D::pDrawListActive) + return; + + if (!I::Engine->IsInGame()) return; + + CCSPlayerController* pLocalController = CCSPlayerController::GetLocalPlayerController(); + if (!pLocalController) + return; + + pLocal = I::GameResourceService->pGameEntitySystem->Get(pLocalController->GetPawnHandle()); + if (!pLocal) + return; + const std::lock_guard guard{ g_cachedEntitiesMutex }; + + for (const auto& it : g_cachedEntities) { + + C_BaseEntity* pEntity = I::GameResourceService->pGameEntitySystem->Get(it.m_handle); + if (pEntity == nullptr) + continue; + + CBaseHandle hEntity = pEntity->GetRefEHandle(); + if (hEntity != it.m_handle) continue; + + if (it.m_type != CachedEntity_t::PLAYER_CONTROLLER) + continue; + + CCSPlayerController* CPlayer = I::GameResourceService->pGameEntitySystem->Get(hEntity); + if (CPlayer == nullptr) + break; + + C_CSPlayerPawn* player = I::GameResourceService->pGameEntitySystem->Get(CPlayer->GetPawnHandle()); + if (!player) + continue; + + if (player->GetHealth() <= 0 || !pLocal->IsOtherEnemy(player) || player->GetGameSceneNode()->IsDormant() || player->m_bGunGameImmunity()) + continue; + + targets.push_back(target(player, pEntity)); + continue; + } + + + +} + +bool F::RAGE::impl::valid(C_CSPlayerPawn* player, C_CSPlayerPawn* pLocal, bool check) { + if (!player) + return false; + + bool Invalid = player->GetHealth() <= 0 || player->GetLifeState() == ELifeState::LIFE_DISCARDBODY || player->GetLifeState() == ELifeState::LIFE_DEAD || player->GetLifeState() == ELifeState::LIFE_DYING; + if (Invalid || !pLocal->IsOtherEnemy(player) || player->GetGameSceneNode()->IsDormant() || player->m_bGunGameImmunity()) + return false; + + return true; +} + +static Vector_t get_target_angle(C_CSPlayerPawn* localplayer, Vector_t position) +{ + Vector_t eye_position = localplayer->GetEyePosition(); + Vector_t angle = position; + + angle.x = position.x - eye_position.x; + angle.y = position.y - eye_position.y; + angle.z = position.z - eye_position.z; + + angle.Normalizes(); + MATH::vec_angles(angle, &angle); + + angle.clamp(); + return angle; +} + + +std::vector F::RAGE::impl::get_points(C_CSPlayerPawn* pLocal, C_CSPlayerPawn* record, uint32_t hitbox, bool from_aim)// +{ + // removed + std::vector points; + return points; +} + +void F::RAGE::impl::ScanPoint(C_CSPlayerPawn* pLocal, CUserCmd* cmd, C_CSPlayerPawn* record, scan_data& data, const Vector_t& shoot_pos, bool optimized) { + auto weapon = pLocal->ActiveWeapon(); + if (!weapon) + return; + + auto weapon_info = weapon->datawep(); + + if (!weapon_info) + return; + + if (e_hitboxes.empty()) + return; + + early_stopped = false; + + auto best_damage = 0; + + auto minimum_damage = rage_data.minimum_damage; + + float damage = 0.f; + bool can_hit = false; + + std::vector points; + std::vector temp_points; + + for (auto& hitbox : e_hitboxes) + { + float hitbox_scale = {}; QAngle_t temp_angle = {}; Vector_t hitbox_pos = {}; Vector4D_t hitbox_rot = {}; QAngle_t point_angle = {}; QAngle_t angle = {}; + + // create our ange based on our current point + record->CalculateHitboxData(hitbox, hitbox_pos, hitbox_rot, hitbox_scale, true); + + // shit got in vec convert to a quarention angle + auto vec = get_target_angle(pLocal, hitbox_pos); + angle.ToVec(vec); + + damage = rage->ScaleDamage(record, pLocal, weapon, hitbox_pos, damage, can_hit); + + + if (damage <= 0) { + temp_points.emplace_back(temp_point(hitbox_pos, point_angle, angle, hitbox, false, damage, can_hit)); + continue; + } + else { + MATH::VectorAngless(pLocal->GetEyePosition() - hitbox_pos, point_angle); + points.emplace_back(scan_point(hitbox_pos, point_angle, angle, hitbox, false, damage, can_hit)); + } + } + + for (auto& temp_point : temp_points) + { + if (temp_point.damage > 0) + continue; + + data.temp_point = temp_point; + } + + if (points.empty()) + return; + + auto current_minimum_damage = minimum_damage; + + for (auto& point : points) + { + if (point.damage <= 0) + continue; + + if (point.damage >= current_minimum_damage && point.damage >= best_damage) { + best_damage = point.damage; + data.point = point; + data.damage = point.damage; + data.hitbox = point.hitbox; + + } + } +} + + +void F::RAGE::impl::ScanTarget(C_CSPlayerPawn* pLocal, CUserCmd* cmd, QAngle_t viewangles) +{ + if (!pLocal) + return; + + auto weapon = pLocal->ActiveWeapon(); + if (!weapon) + return; + + if (!I::Engine->IsConnected() || !I::Engine->IsInGame()) + return; + + if (targets.size() <= 0) + return; + + final_target.reset(); + + for (auto& target : targets) + { + auto player = target.handle; + + if (!player) + continue; + + if (!valid(player, pLocal)) + continue; + + scan_data last_data; + + rage->ScanPoint(pLocal, cmd, player, last_data, Vector_t(0, 0, 0), true); + + if (last_data.damage > 0) { + m_stop = cheat->onground && cheat->canShot; + rage->AutomaticStop(pLocal, weapon, cmd, early); + } + scanned_targets.emplace_back(scanned_target(target.entHandle, last_data.damage, player->GetHealth(), pLocal->GetEyePosition(), player->GetEyePosition(), player, last_data)); + } +} + +bool F::RAGE::impl::Ready(C_CSPlayerPawn* pLocal) { + if (!pLocal) + return false; + + auto ActiveWeapon = pLocal->ActiveWeapon(); + + if (!ActiveWeapon) + return false; + + auto data = ActiveWeapon->datawep(); + if (!data) + return false; + + if (ActiveWeapon->clip1() <= 0) + return false; + + + return true; +} + +void F::RAGE::impl::Events(IGameEvent* ev, events type) { + if (!C_GET(bool, Vars.rage_enable)) + return; + + if (!I::Engine->IsConnected() || !I::Engine->IsInGame()) + return; + + if (!SDK::LocalController) + return; + + switch (type) { + case player_death: { + auto controller = SDK::LocalController; + if (!controller) + break; + + const auto event_controller = ev->get_player_controller(CS_XOR("attacker")); + if (!event_controller) + return; + + + if (event_controller->GetIdentity()->GetIndex() == controller->GetIdentity()->GetIndex()) { + const std::int64_t value{ ev->get_int(CS_XOR("dmg_health")) }; + // reset targets + scanned_targets.clear(); + targets.clear(); + } + } + break; + case round_start: { + rage->Reset(reset::entity); + } + break; + } +} + + + +inline Vector_t CrossProduct(const Vector_t& a, const Vector_t& b) +{ + return Vector_t(a.y * b.z - a.z * b.y, a.z * b.x - a.x * b.z, a.x * b.y - a.y * b.x); +} + +#define SMALL_NUM 0.00000001 // anything that avoids division overflow +#define dot(u, v) ((u).x * (v).x + (u).y * (v).y + (u).z * (v).z) +#define norm(v) sqrt(dot(v, v)) // norm = length of vector +void VectorAngles(const Vector_t& forward, Vector_t& up, Vector_t& angles) +{ + Vector_t left = CrossProduct(up, forward); + left.NormalizeInPlace(); + + float forwardDist = forward.Length2D(); + + if (forwardDist > 0.001f) + { + angles.x = atan2f(-forward.z, forwardDist) * 180 / MATH::_PI; + angles.y = atan2f(forward.y, forward.x) * 180 / MATH::_PI; + + float upZ = (left.y * forward.x) - (left.x * forward.y); + angles.z = atan2f(left.z, upZ) * 180 / MATH::_PI; + } + else + { + angles.x = atan2f(-forward.z, forwardDist) * 180 / MATH::_PI; + angles.y = atan2f(-left.x, left.y) * 180 / MATH::_PI; + angles.z = 0; + } +} + +void sin_cos(float radian, float* sin, float* cos) +{ + *sin = std::sin(radian); + *cos = std::cos(radian); +} + +float GRD_TO_BOG(float GRD) +{ + return (MATH::_PI / 180) * GRD; +} +void AngleVectors(const Vector_t& angles, Vector_t* forward) +{ + // sry + //Assert(s_bMathlibInitialized); + //Assert(forward); + + float sp, sy, cp, cy; + + sy = sin(DEG2RAD(angles[1])); + cy = cos(DEG2RAD(angles[1])); + + sp = sin(DEG2RAD(angles[0])); + cp = cos(DEG2RAD(angles[0])); + + forward->x = cp * cy; + forward->y = cp * sy; + forward->z = -sp; +} + +void AngleVectors(const Vector_t& angles, Vector_t* forward, Vector_t* right, Vector_t* up) +{ + float sp, sy, sr, cp, cy, cr; + + sin_cos(GRD_TO_BOG(angles.x), &sp, &cp); + sin_cos(GRD_TO_BOG(angles.y), &sy, &cy); + sin_cos(GRD_TO_BOG(angles.z), &sr, &cr); + + if (forward != nullptr) + { + forward->x = cp * cy; + forward->y = cp * sy; + forward->z = -sp; + } + + if (right != nullptr) + { + right->x = -1 * sr * sp * cy + -1 * cr * -sy; + right->y = -1 * sr * sp * sy + -1 * cr * cy; + right->z = -1 * sr * cp; + } + + if (up != nullptr) + { + up->x = cr * sp * cy + -sr * -sy; + up->y = cr * sp * sy + -sr * cy; + up->z = cr * cp; + } +} + + + +float F::RAGE::impl::GetSpread(C_CSWeaponBase* weapon) +{ + return weapon->get_spread(); +} + +void F::RAGE::impl::BuildSeed() +{ + for (auto i = 0; i <= 255; i++) { + MATH::fnRandomSeed(i + 1); + + const auto pi_seed = MATH::fnRandomFloat(0.f, 6.283186f); + + F::RAGE::rage->m_computed_seeds.emplace_back(MATH::fnRandomFloat(0.f, 1.f), + pi_seed); + } +} + +float F::RAGE::impl::GetInaccuracy(C_CSPlayerPawn* pLocal, C_CSWeaponBase* weapon) +{ + return weapon->get_inaccuracy(); +} + +float F::RAGE::impl::HitchanceFast(C_CSPlayerPawn* pLocal, C_CSWeaponBase* weapon) +{ + if (!weapon) + return 0.f; + + if (!weapon->datawep()) + return 0.f; + + float flInaccuracy = this->GetInaccuracy(pLocal, weapon); + flInaccuracy = 1 / flInaccuracy; + + return flInaccuracy; +} +void NormalizeAngles(Vector_t& angles) +{ + for (auto i = 0; i < 3; i++) + { + while (angles[i] < -180.0f) + angles[i] += 360.0f; + while (angles[i] > 180.0f) + angles[i] -= 360.0f; + } +} + + +__forceinline Vector_t CalculateSpread(C_CSWeaponBase* weapon, int seed, float inaccuracy, float spread, bool revolver2 = false) { + const char* item_def_index; + float recoil_index, r1, r2, r3, r4, s1, c1, s2, c2; + + if (!weapon) + return { }; + // if we have no bullets, we have no spread. + auto wep_info = weapon->datawep(); + if (!wep_info) + return { }; + + // get some data for later. + item_def_index = wep_info->m_szName(); + recoil_index = weapon->m_flRecoilIndex(); + + MATH::fnRandomSeed((seed & 0xff) + 1); + + // generate needed floats. + r1 = MATH::fnRandomFloat(0.f, 1.f); + r2 = MATH::fnRandomFloat(0.f, 3.14159265358979323846264338327950288f * 2); + r3 = MATH::fnRandomFloat(0.f, 1.f); + r4 = MATH::fnRandomFloat(0.f, 3.14159265358979323846264338327950288f * 2); + + // revolver secondary spread. + if (item_def_index == CS_XOR("weapon_revoler") && revolver2) { + r1 = 1.f - (r1 * r1); + r3 = 1.f - (r3 * r3); + } + + // negev spread. + else if (item_def_index == CS_XOR("weapon_negev") && recoil_index < 3.f) { + for (int i{ 3 }; i > recoil_index; --i) { + r1 *= r1; + r3 *= r3; + } + + r1 = 1.f - r1; + r3 = 1.f - r3; + } + + // get needed sine / cosine values. + c1 = std::cos(r2); + c2 = std::cos(r4); + s1 = std::sin(r2); + s2 = std::sin(r4); + + // calculate spread vector. + return { + (c1 * (r1 * inaccuracy)) + (c2 * (r3 * spread)), + (s1 * (r1 * inaccuracy)) + (s2 * (r3 * spread)), + 0.f + }; +} + +bool F::RAGE::impl::CanHit(Vector_t start, Vector_t end, C_CSPlayerPawn* pLocal, C_CSPlayerPawn* record, int box) +{ + if (!pLocal) + return false; + + if (!record) + return false; + + + return false; +} +void F::RAGE::impl::Hitchance(C_CSPlayerPawn* pLocal, C_CSPlayerPawn* ent, C_CSWeaponBase* weapon, QAngle_t vAimpoint) +{ + if (!pLocal) + return; + + + if (!weapon) + return; + + auto data = weapon->datawep(); + if (!data) + return; + + float HITCHANCE_MAX = 100.f; + constexpr int SEED_MAX = 255; + + Vector_t start{ pLocal->GetEyePosition() }, end, fwd, right, up, dir, wep_spread; + float inaccuracy, spread; + float hitchance = rage_data.rage_hitchance; + Vector_t point = Vector_t(vAimpoint.x, vAimpoint.y, vAimpoint.z); + + if (hitchance <= 0) { + rage_data.accurate = true; + return; + } + + // we cant reach it anymore too far + if (pLocal->GetEyePosition().DistTo(point) > data->m_flRange()) { + rage_data.accurate = false; + return; + } + + size_t total_hits{ }, needed_hits{ (size_t)std::ceil((hitchance * SEED_MAX) / HITCHANCE_MAX) }; + + // get needed directional vectors. + MATH::anglevectors(vAimpoint, &fwd, &right, &up); + + // store off inaccuracy / spread ( these functions are quite intensive and we only need them once ). + inaccuracy = this->GetInaccuracy(pLocal, weapon); + spread = this->GetSpread(weapon); + + // iterate all possible seeds. + for (int i{ }; i <= SEED_MAX; ++i) { + // get spread. + wep_spread = CalculateSpread( weapon, i, inaccuracy, spread); + + // get spread direction. + dir = (fwd + (right * wep_spread.x) + (up * wep_spread.y)).normalized(); + + // get end of trace. + end = start - (dir * data->m_flRange()); + + trace_filter_t filter = {}; + I::Trace->Init(filter, pLocal, MASK_SHOT, 3, 7); + + game_trace_t trace = {}; + ray_t ray = {}; + + I::Trace->TraceShape(ray, &start, &end, filter, trace); + I::Trace->ClipTraceToPlayers(start, end, &filter, &trace, 0.F, 60.F, (1.F / (start - end).Length()) * (trace.m_end_pos - start).Length()); + + if (trace.HitEntity && trace.HitEntity->GetRefEHandle().GetEntryIndex() == ent->GetRefEHandle().GetEntryIndex()) + ++total_hits; + + // we made it. + if (total_hits >= needed_hits) { + rage_data.accurate = true; + + } + // we cant make it anymore. + if ((SEED_MAX - i + total_hits) < needed_hits) { + rage_data.accurate = false; + + } + } +} + +void VectorAngles2(const Vector_t& forward, Vector_t& angles) +{ + float tmp, yaw, pitch; + + if (forward[1] == 0 && forward[0] == 0) + { + yaw = 0; + if (forward[2] > 0) + pitch = 270; + else + pitch = 90; + } + else + { + yaw = (atan2(forward[1], forward[0]) * 180 / M_PI); + if (yaw < 0) + yaw += 360; + + tmp = sqrt(forward[0] * forward[0] + forward[1] * forward[1]); + pitch = (atan2(-forward[2], tmp) * 180 / M_PI); + if (pitch < 0) + pitch += 360; + } + + angles[0] = pitch; + angles[1] = yaw; + angles[2] = 0; +} +// Linear interpolation function +template +T Lerp(float t, const T& start, const T& end) { + return start + t * (end - start); +} + +const char* GetExtractedWeaponName(C_CSWeaponBase* weapon) +{ + if (!weapon) + return ""; + + auto weapon_data = weapon->datawep(); + if (!weapon_data) + return ""; + + const char* szWeaponName = weapon_data->m_szName(); + const char* weaponPrefix = ("weapon_"); + const char* weaponNameStart = strstr(szWeaponName, weaponPrefix); + const char* extractedWeaponName = weaponNameStart ? weaponNameStart + strlen(weaponPrefix) : szWeaponName; + + return extractedWeaponName; +} + + +void F::RAGE::impl::AutomaticStop(C_CSPlayerPawn* pLocal, C_CSWeaponBase* weapon, CUserCmd* cmd, stop_mode mode) +{ + if (!pLocal || !weapon) + return; + + if (!pLocal->IsValidMoveType() || !cheat->onground) + return; + + if (rage_data.rage_hitchance <= 0.f) + return; + + auto movesys = pLocal->m_pMovementServices(); + if (!movesys) { + return; + } + auto weapon_data = weapon->datawep(); + + if (!weapon_data) + return; + + if ((weapon->m_zoomLevel() == 0 && weapon_data->m_WeaponType() == WEAPONTYPE_SNIPER_RIFLE)) + return; + + if (!m_stop) + return; + + if (!rage_data.auto_stop) + return; + + float m_max_speed = weapon->get_max_speed(); + Vector_t velocity = pLocal->m_vecVelocity(); + + + const char* extractedWeaponName = GetExtractedWeaponName(weapon); + + bool has_autos = strcmp(extractedWeaponName, CS_XOR("scar20")) == 0 || strcmp(extractedWeaponName, CS_XOR("g3sg1")) == 0; + if (!cheat->canShot && !has_autos && weapon_data->m_WeaponType() == WEAPONTYPE_SNIPER_RIFLE) + return; + + // set z to 0 + velocity.z = 0.f; + + float speed = velocity.Length2D(); + + // we are pressing move keys + bool pressing_move_keys = (cmd->m_nButtons.m_nValue & IN_FORWARD || cmd->m_nButtons.m_nValue & IN_MOVELEFT || + cmd->m_nButtons.m_nValue & IN_BACK || cmd->m_nButtons.m_nValue & IN_MOVERIGHT); + + cmd->m_nButtons.m_nValue &= ~(IN_MOVERIGHT | IN_MOVELEFT | IN_FORWARD | IN_BACK | IN_SPEED); + + bool fullstop = true; + float addspeed, accelspeed; + auto accel = I::Cvar->Find(FNV1A::Hash(CS_XOR("sv_accelerate")))->value.fl; + float max_accurate_speed = (m_max_speed * 0.33000001); + bool inaccurate_speed = speed > max_accurate_speed; + float surfaceFriction = pLocal->m_pMovementServices()->m_flSurfaceFriction(); + float wish_speed = sqrt(cmd->m_csgoUserCmd.m_pBaseCmd->m_flForwardMove * cmd->m_csgoUserCmd.m_pBaseCmd->m_flForwardMove + cmd->m_csgoUserCmd.m_pBaseCmd->m_flSideMove * cmd->m_csgoUserCmd.m_pBaseCmd->m_flSideMove); + + + Vector_t angle; + MATH::vec_angles(velocity, &angle); + angle.y = cmd->m_csgoUserCmd.m_pBaseCmd->m_pViewangles->m_angValue.y - angle.y; + + Vector_t direction; + AngleVectors(angle, &direction); + + Vector_t stop = direction * -speed; + + cmd->m_csgoUserCmd.m_pBaseCmd->m_flForwardMove = 0; + cmd->m_csgoUserCmd.m_pBaseCmd->m_flSideMove = 0; + if (speed > max_accurate_speed) { + + cmd->m_csgoUserCmd.m_pBaseCmd->m_flForwardMove = 0; + cmd->m_csgoUserCmd.m_pBaseCmd->m_flSideMove = 0; + cmd->m_csgoUserCmd.m_pBaseCmd->m_flForwardMove = stop.x; + cmd->m_csgoUserCmd.m_pBaseCmd->m_flSideMove = stop.y; + } + else { + float sidemove = cmd->m_csgoUserCmd.m_pBaseCmd->m_flSideMove; + float forwardmove = cmd->m_csgoUserCmd.m_pBaseCmd->m_flForwardMove; + float upmove = cmd->m_csgoUserCmd.m_pBaseCmd->m_flUpMove; + + float move_speed = std::sqrt(std::pow(sidemove, 2) + std::pow(forwardmove, 2) + std::pow(upmove, 2)); + + if (move_speed > max_accurate_speed) { + float desaccel = max_accurate_speed / move_speed; + cmd->m_csgoUserCmd.m_pBaseCmd->m_flForwardMove *= desaccel; + cmd->m_csgoUserCmd.m_pBaseCmd->m_flSideMove *= desaccel; + } + else + { + cmd->m_csgoUserCmd.m_pBaseCmd->m_flForwardMove = 0; + cmd->m_csgoUserCmd.m_pBaseCmd->m_flSideMove = 0; + } + } + +}/* +void F::RAGE::impl::AutomaticStop(C_CSPlayerPawn* pLocal, C_CSWeaponBase* weapon, CUserCmd* cmd, stop_mode mode) +{ + if (!pLocal || !weapon) + return; + + if (!pLocal->IsValidMoveType() || !cheat->onground) { + return; + } + + if (rage_data.rage_hitchance <= 0.f) + return; + + auto movesys = pLocal->m_pMovementServices(); + if (!movesys) { + return; + } + auto weapon_data = weapon->datawep(); + + if (!weapon_data) + return; + + if ((weapon->m_zoomLevel() == 0 && weapon_data->m_WeaponType() == WEAPONTYPE_SNIPER_RIFLE)) + return; + + const char* extractedWeaponName = GetExtractedWeaponName(weapon); + + bool has_autos = strcmp(extractedWeaponName, CS_XOR("scar20")) == 0 || strcmp(extractedWeaponName, CS_XOR("g3sg1")) == 0; + bool has_snipers = strcmp(extractedWeaponName, CS_XOR("awp")) == 0 || strcmp(extractedWeaponName, CS_XOR("ssg08")) == 0; + + auto m_max_cycle = weapon->m_weaponMode() == CSWeaponMode::Primary_Mode ? weapon_data->m_flCycleTime().flValue[0] : weapon_data->m_flCycleTime().flValue[1]; + + const float max_speed = weapon->m_weaponMode() == CSWeaponMode::Primary_Mode ? weapon_data->m_flMaxSpeed().flValue[0] : weapon_data->m_flMaxSpeed().flValue[1]; + const float max_accurate_speed_percentage = 0.34f; // Adjust the percentage as needed + const float max_accurate_speed = max_speed * max_accurate_speed_percentage; + const float cur_speed = pLocal->m_vecVelocity().Length2D(); + + if (mode == slow) { + if (has_autos) { + if (pLocal->m_vecVelocity().Length2D() < 5.f) + return; + } + else { + if (!cheat->canShot) + return; + + if (has_snipers) { + if (pLocal->m_vecVelocity().Length2D() < 5.f) + return; + } + else { + if (pLocal->m_vecVelocity().Length2D() < 15.f) + return; + } + + } + if (m_stop) { + cmd->nButtons.nValue &= ~(IN_MOVERIGHT | IN_MOVELEFT | IN_FORWARD | IN_BACK | IN_SPEED); + + // get velocity data + static float vel = pLocal->m_vecVelocity().length(); + + bool vel_accurate = (cur_speed <= max_accurate_speed); + // if we're inside limit accurate speed maintain velocity + if (vel_accurate) { + int a = MATH::fnRandomInt(0, 1); + + // randomly switch mode + if (a == 0) { + QAngle_t resist_angle; + MATH::VectorAngless((pLocal->m_vecVelocity() * -1), resist_angle); + resist_angle.y = cmd->pBaseCmd->pCmdView->angValue.y - resist_angle.y; + + Vector_t resistance = Vector_t(0, 0, 0); + MATH::anglevectors(resist_angle, &resistance); + + // set movement + cmd->pBaseCmd->flForwardMove = std::clamp(resist_angle.x, -450.f, 450.f); + cmd->pBaseCmd->flSideMove = std::clamp(resist_angle.y, -450.f, 450.f); + } + else { + // force movement + cmd->pBaseCmd->flSideMove = 0.f; + cmd->pBaseCmd->flForwardMove = 0.f; + + // clamp movement + cmd->pBaseCmd->flSideMove = std::clamp(cmd->pBaseCmd->flSideMove, -450.f, 450.f); + cmd->pBaseCmd->flForwardMove = std::clamp(cmd->pBaseCmd->flForwardMove, -450.f, 450.f); + } + + // prevent we autostopping but unable to shoot due to wrong accurate speed + // full stop imediatly otherwise we delayshooting rn + if (pLocal->GetShotsFired() <= 0 && !has_autos) { + cmd->nButtons.nValue &= ~(IN_MOVERIGHT | IN_MOVELEFT | IN_FORWARD | IN_BACK | IN_SPEED); + // force movement + cmd->pBaseCmd->flSideMove = 0.f; + cmd->pBaseCmd->flForwardMove = 0.f; + cmd->nButtons.nValue &= ~(IN_MOVERIGHT | IN_MOVELEFT | IN_FORWARD | IN_BACK | IN_SPEED); + + // clamp movement + cmd->pBaseCmd->flSideMove = std::clamp(cmd->pBaseCmd->flSideMove, -450.f, 450.f); + cmd->pBaseCmd->flForwardMove = std::clamp(cmd->pBaseCmd->flForwardMove, -450.f, 450.f); + return; + } + } // just slowly resist angle at high velocity then maintain the speed + else { + cmd->pBaseCmd->flSideMove = 0.f; + cmd->pBaseCmd->flForwardMove = 0.f; + QAngle_t resist_angle; + MATH::VectorAngless((pLocal->m_vecVelocity() * -1), resist_angle); + resist_angle.y = cmd->pBaseCmd->pCmdView->angValue.y - resist_angle.y; + Vector_t resistance = Vector_t(0, 0, 0); + MATH::anglevectors(resist_angle, &resistance); + // set movement + cmd->pBaseCmd->flForwardMove = std::clamp(resist_angle.x, -450.f, 450.f); + cmd->pBaseCmd->flSideMove = std::clamp(resist_angle.y, -450.f, 450.f); + } + m_stop = false; + } + } + // just full stop + else if (mode == early && m_stop) { + if (!weapon_data->m_bIsFullAuto() && !cheat->canShot) + return; + + if (!weapon_data->m_bIsFullAuto()) { + + cmd->pBaseCmd->flForwardMove = 0.f; + cmd->pBaseCmd->flSideMove = 0.f; + QAngle_t resist_angle; + MATH::VectorAngless((pLocal->m_vecVelocity() * -1), resist_angle); + resist_angle.y = cmd->pBaseCmd->pCmdView->angValue.y - resist_angle.y; + + Vector_t resistance = Vector_t(0, 0, 0); + MATH::anglevectors(resist_angle, &resistance); + + // set movement + cmd->pBaseCmd->flForwardMove = std::clamp(resist_angle.x, -450.f, 450.f); + cmd->pBaseCmd->flSideMove = std::clamp(resist_angle.y, -450.f, 450.f); + } + + cmd->pBaseCmd->flForwardMove = 0.f; + cmd->pBaseCmd->flSideMove = 0.f; + m_stop = false; + } + +}*/ +static bool compare_targets(const scanned_target& first, const scanned_target& second) +{ + // higher damage is preferred + if (first.damage > second.damage) + return true; + else if (first.damage < second.damage) + return false; + + // lower distance is preferred if damages are equal + return first.distance < second.distance; +} + +void F::RAGE::impl::SortTarget() +{ + auto validate_target = [&](scanned_target* a, scanned_target* b) -> bool { + if (!a || !b) + goto fuck_yeah; + + + if (last_target != nullptr && last_target->GetHealth() <= 0 && a->record->GetIdentity()->GetIndex() != last_target->GetIdentity()->GetIndex() && last_target->GetIdentity()->GetIndex() <= 64) { + return true; + } + + if (a->damage == b->damage) + return a->distance < b->distance; + + return a->damage > b->damage; + + fuck_yeah: + // this might not make sense to you, but it actually does. + return (a != nullptr || (a != nullptr && b != nullptr && a == b)) ? true : false; + }; + + for (auto& data : scanned_targets) { + + if (data.damage < 1.f) + continue; + + if (!final_target.record) { + final_target = data; + + // we only have one entry (target)? let's skip target selection.. + if (scanned_targets.size() == 1) + break; + else + continue; + } + + if (last_target != nullptr && last_target->GetHealth() <= 0 && data.record->GetIdentity()->GetIndex() != last_target->GetIdentity()->GetIndex()) { + continue; + } + + // sort our target based on our conditions + if (validate_target(&data, &final_target)) { + final_target = data; + continue; + } + } + +} +float F::RAGE::impl::ScaleDamage(C_CSPlayerPawn* target, C_CSPlayerPawn* pLocal, C_CSWeaponBase* weapon, Vector_t aim_point, float& dmg, bool& canHit) +{ + if (!pLocal || !weapon || !target) + return 0.f; + + if (pLocal->GetHealth() <= 0) + return 0.f; + + auto vdata = weapon->datawep(); + if (!vdata) + return 0.f; + + auto entity = I::GameResourceService->pGameEntitySystem->Get(target->GetRefEHandle()); + if (!entity) + return 0.f; + + auto localent = I::GameResourceService->pGameEntitySystem->Get(pLocal->GetRefEHandle()); + if (!localent) + return 0.f; + + float damage = 0.f; + F::AUTOWALL::c_auto_wall::data_t data; + F::AUTOWALL::g_auto_wall->pen(data, pLocal->GetEyePosition(), aim_point, entity, localent, pLocal, target, vdata, damage, canHit); + return data.m_can_hit ? data.m_dmg : 0.f; +} + +void F::RAGE::impl::AjustRecoil(C_CSPlayerPawn* player, CUserCmd* pCmd) { + if (!player || !pCmd) return; + +} + +void F::RAGE::impl::Run(C_CSPlayerPawn* pLocal, CCSGOInput* pInput, CUserCmd* cmd) { + + + if (!C_GET(bool, Vars.rage_enable)) + return; + + if (!I::Engine->IsConnected() || !I::Engine->IsInGame()) + return; + + if (!SDK::LocalController || !SDK::LocalPawn) + return; + + // sanity check + if (!pLocal || pLocal->GetHealth() <= 0) { + last_target = nullptr; + return; + } + + if (!pInput || !cmd) + return; + + auto pCmd = cmd->m_csgoUserCmd.m_pBaseCmd; + if (!pCmd) + return; + + rage->Reset(reset::aimbot); + + // setup menu adaptive weapon with rage data + rage->SetupAdaptiveWeapon(pLocal); + + // reset subtick data + sub_tick_data.reset(); + + // reset hitchance data + rage_data.accurate = false; + + // no ammo or not valid weapon + if (!rage->Ready(pLocal)) + return; + + VIRTUALIZER_TIGER_WHITE_START + + // hitbox menu selection + rage->Scan(); + + // store targets in server + rage->SetupTarget(pLocal); + + // keep scanned targets getting updated + scanned_targets.clear(); + + // scan & select them based on our conditions + rage->ScanTarget(pLocal, cmd, pCmd->m_pViewangles->m_angValue); + + if (scanned_targets.empty()) + return; + + auto weapon_data = pLocal->ActiveWeapon(); + if (!weapon_data) + return; + + auto vdata = weapon_data->datawep(); + if (!vdata) + return; + + if (last_target != nullptr && last_target->GetHealth() <= 0) { + last_target = nullptr; + } + + // select best target + rage->SortTarget(); + + if (!(final_target.data.valid())) + return; + + auto best_target = final_target; + + Hitchance(pLocal, best_target.record, weapon_data, best_target.data.point.pointangle); + m_stop = cheat->onground && !rage_data.accurate; + + bool can_scope = weapon_data->m_zoomLevel() == 0 && weapon_data->datawep()->m_WeaponType() == WEAPONTYPE_SNIPER_RIFLE; + if (can_scope && !rage_data.rapid_fire) { + cmd->m_nButtons.m_nValue |= IN_SECOND_ATTACK; + } + + rage->AutomaticStop(pLocal, weapon_data, cmd, slow); + + // calculate aimpunch & compensate it + static auto prev = QAngle_t(0.f, 0.f, 0.f); + auto cache = pLocal->m_aimPunchCache(); + auto pred_punch = cache.m_Data[cache.m_Size - 1]; + auto delta = prev - pred_punch * 2.f; + if (cache.m_Size > 0 && cache.m_Size <= 0xFFFF) { + pred_punch = cache.m_Data[cache.m_Size - 1]; + prev = pred_punch; + } + + const float time_per_tick = I::GlobalVars->flIntervalPerTick; + const float best_time = final_target.record->m_flSimulationTime(); + const float best_tick_time = best_time / time_per_tick; + int best_tick = (int)std::floor(best_tick_time); + const float best_tick_fraction = best_tick_time - best_tick; + + best_tick -= 1; // FIXME: engine prediction? + // store best_point with compensated aimpunch + auto best_point = final_target.data.point.angle + delta * 2.f; + + /* for (int i = 0; i < cmd->m_csgoUserCmd.m_inputHistoryField.m_pRep->m_nAllocatedSize; i++) + { + CCSGOInputHistoryEntryPB* pInputEntry = cmd->GetInputHistoryEntry(i); + if (pInputEntry == nullptr) + continue; + + if (pInputEntry->m_pViewCmd == nullptr) + continue; + + pInputEntry->m_pViewCmd->m_angValue = best_point; + } + */ + + cmd->SetSubTickAngle(best_point); + if (cheat->canShot) { + if (rage_data.rapid_fire && rage_data.accurate) { + sub_tick_data.command = command_msg::rapid_fire; + sub_tick_data.best_point = best_point; + } + else + { + if (rage_data.accurate) { + sub_tick_data.command = command_msg::silent; + sub_tick_data.best_point = best_point; + + // our InputMessage set our predicted subtick viewangles to best point we ready to shoot + cmd->AdjustAttackStartIndex(pCmd->m_nTickCount - 1); + cmd->m_nButtons.m_nValue |= IN_ATTACK; + } + /* else if (rage_data.rapid_fire && cheat->canShot) { + cmd->m_csgoUserCmd.m_nAttack1StartHhistoryIndex = pCmd->m_nTickCount - 1; + + if (!(cmd->m_nButtons.m_nValue & IN_ATTACK)) { + L_PRINT(LOG_INFO) << "shooting"; + cmd->m_nButtons.m_nValue |= IN_ATTACK; + } + L_PRINT(LOG_INFO) << "on rapid fire"; + + for (int i = 0; i < cmd->m_csgoUserCmd.m_inputHistoryField.m_pRep->m_nAllocatedSize; i++) + { + CCSGOInputHistoryEntryPB* pInputEntry = cmd->GetInputHistoryEntry(i); + if (pInputEntry == nullptr) + continue; + if (pInputEntry->m_pViewCmd == nullptr) + continue; + + + pInputEntry->m_nPlayerTickCount = 0; + L_PRINT(LOG_INFO) << "tick:" << pInputEntry->m_nPlayerTickCount; + + } + */ + } + } // run rapid fire on ( awp, scout, scar ) regeardless if we can shoot or not to avoid delays and shit. + else if (rage_data.accurate && rage_data.rapid_fire && weapon_data->datawep()->m_WeaponType() == WEAPONTYPE_SNIPER_RIFLE) { + sub_tick_data.command = command_msg::rapid_fire; + sub_tick_data.best_point = best_point; + } + else + sub_tick_data.command = command_msg::none; + + + last_target = final_target.record; + + VIRTUALIZER_MUTATE_ONLY_END; +} + +void F::RAGE::impl::SetupAdaptiveWeapon(C_CSPlayerPawn* pLocal) { + if (!C_GET(bool, Vars.rage_enable)) + return; + + if (!pLocal) + return; + + if (pLocal->GetHealth() <= 0) + return; + + + auto ActiveWeapon = pLocal->ActiveWeapon(); + if (!ActiveWeapon) + return; + + auto data = ActiveWeapon->datawep(); + if (!data) + return; + + if (!ActiveWeapon->IsWeapon()) + return; + + const char* extractedWeaponName = GetExtractedWeaponName(ActiveWeapon); + + bool has_awp = strcmp(extractedWeaponName, CS_XOR("awp")) == 0; + bool has_heavy_pistols = strcmp(extractedWeaponName, CS_XOR("revolver")) == 0 || strcmp(extractedWeaponName, CS_XOR("deagle")) == 0; + bool has_scout = strcmp(extractedWeaponName, CS_XOR("ssg08")) == 0; + rage_data.rage_enable = C_GET(bool, Vars.rage_enable); + + if (has_awp) { + rage_data.minimum_damage = C_GET_ARRAY(int, 7, Vars.rage_minimum_damage, 6); + rage_data.rage_hitchance = C_GET_ARRAY(int, 7, Vars.rage_minimum_hitchance, 6); + rage_data.auto_stop = C_GET_ARRAY(bool, 7, Vars.rage_auto_stop, 6); + rage_data.penetration = C_GET_ARRAY(bool, 7, Vars.rage_penetration, 6); + rage_data.rage_target_select = C_GET_ARRAY(int, 7, Vars.rage_target_select, 6); + rage_data.hitbox_head = C_GET_ARRAY(bool, 7, Vars.hitbox_head, 6); + rage_data.hitbox_chest = C_GET_ARRAY(bool, 7, Vars.hitbox_chest, 6); + rage_data.hitbox_stomach = C_GET_ARRAY(bool, 7, Vars.hitbox_stomach, 6); + rage_data.hitbox_legs = C_GET_ARRAY(bool, 7, Vars.hitbox_legs, 6); + rage_data.hitbox_feets = C_GET_ARRAY(bool, 7, Vars.hitbox_feet, 6); + rage_data.rapid_fire = C_GET_ARRAY(bool, 7, Vars.rapid_fire, 6); + } + else if (has_scout) { + rage_data.minimum_damage = C_GET_ARRAY(int, 7, Vars.rage_minimum_damage, 5); + rage_data.rage_hitchance = C_GET_ARRAY(int, 7, Vars.rage_minimum_hitchance, 5); + rage_data.auto_stop = C_GET_ARRAY(bool, 7, Vars.rage_auto_stop, 5); + rage_data.penetration = C_GET_ARRAY(bool, 7, Vars.rage_penetration, 5); + rage_data.rage_target_select = C_GET_ARRAY(int, 7, Vars.rage_target_select, 5); + rage_data.remove_weapon_accuracy_spread = C_GET_ARRAY(bool, 7, Vars.remove_weapon_accuracy_spread, 5); + rage_data.hitbox_head = C_GET_ARRAY(bool, 7, Vars.hitbox_head, 5); + rage_data.hitbox_neck = C_GET_ARRAY(bool, 7, Vars.hitbox_neck, 5); + rage_data.hitbox_uppeer_chest = C_GET_ARRAY(bool, 7, Vars.hitbox_uppeer_chest, 5); + rage_data.hitbox_chest = C_GET_ARRAY(bool, 7, Vars.hitbox_chest, 5); + rage_data.hitbox_stomach = C_GET_ARRAY(bool, 7, Vars.hitbox_stomach, 5); + rage_data.hitbox_legs = C_GET_ARRAY(bool, 7, Vars.hitbox_legs, 5); + rage_data.hitbox_feets = C_GET_ARRAY(bool, 7, Vars.hitbox_feet, 5); + rage_data.rapid_fire = C_GET_ARRAY(bool, 7, Vars.rapid_fire, 5); + + } + else if (has_heavy_pistols) { + rage_data.minimum_damage = C_GET_ARRAY(int, 7, Vars.rage_minimum_damage, 2); + rage_data.rage_hitchance = C_GET_ARRAY(int, 7, Vars.rage_minimum_hitchance, 2); + rage_data.auto_stop = C_GET_ARRAY(bool, 7, Vars.rage_auto_stop, 2); + rage_data.penetration = C_GET_ARRAY(bool, 7, Vars.rage_penetration, 2); + rage_data.rage_target_select = C_GET_ARRAY(int, 7, Vars.rage_target_select, 2); + rage_data.remove_weapon_accuracy_spread = C_GET_ARRAY(bool, 7, Vars.remove_weapon_accuracy_spread, 2); + rage_data.hitbox_head = C_GET_ARRAY(bool, 7, Vars.hitbox_head, 2); + rage_data.hitbox_neck = C_GET_ARRAY(bool, 7, Vars.hitbox_neck, 2); + rage_data.hitbox_uppeer_chest = C_GET_ARRAY(bool, 7, Vars.hitbox_uppeer_chest, 2); + rage_data.hitbox_chest = C_GET_ARRAY(bool, 7, Vars.hitbox_chest, 2); + rage_data.hitbox_stomach = C_GET_ARRAY(bool, 7, Vars.hitbox_stomach, 2); + rage_data.hitbox_legs = C_GET_ARRAY(bool, 7, Vars.hitbox_legs, 2); + rage_data.hitbox_feets = C_GET_ARRAY(bool, 7, Vars.hitbox_feet, 2); + rage_data.rapid_fire = C_GET_ARRAY(bool, 7, Vars.rapid_fire, 2); + + } + else if (data->m_WeaponType() == WEAPONTYPE_PISTOL && !has_heavy_pistols) { + rage_data.minimum_damage = C_GET_ARRAY(int, 7, Vars.rage_minimum_damage, 1); + rage_data.rage_hitchance = C_GET_ARRAY(int, 7, Vars.rage_minimum_hitchance, 1); + rage_data.auto_stop = C_GET_ARRAY(bool, 7, Vars.rage_auto_stop, 1); + rage_data.penetration = C_GET_ARRAY(bool, 7, Vars.rage_penetration, 1); + rage_data.rage_target_select = C_GET_ARRAY(int, 7, Vars.rage_target_select, 1); + rage_data.hitbox_head = C_GET(bool, 7, Vars.hitbox_head, 1); + rage_data.hitbox_neck = C_GET(bool, 7, Vars.hitbox_neck, 1); + rage_data.hitbox_uppeer_chest = C_GET(bool, 7, Vars.hitbox_uppeer_chest, 1); + rage_data.hitbox_chest = C_GET(bool, 7, Vars.hitbox_chest, 1); + rage_data.hitbox_stomach = C_GET(bool, 7, Vars.hitbox_stomach, 1); + rage_data.hitbox_legs = C_GET(bool, 7, Vars.hitbox_legs, 1); + rage_data.hitbox_feets = C_GET(bool, 7, Vars.hitbox_feet, 1); + rage_data.rapid_fire = C_GET(bool, 7, Vars.rapid_fire, 1); + } + else if (data->m_WeaponType() == WEAPONTYPE_MACHINEGUN) { + rage_data.minimum_damage = C_GET_ARRAY(int, 7, Vars.rage_minimum_damage, 3); + rage_data.rage_hitchance = C_GET_ARRAY(int, 7, Vars.rage_minimum_hitchance, 3); + rage_data.auto_stop = C_GET_ARRAY(bool, 7, Vars.rage_auto_stop, 3); + rage_data.penetration = C_GET_ARRAY(bool, 7, Vars.rage_penetration, 3); + rage_data.rage_target_select = C_GET_ARRAY(int, 7, Vars.rage_target_select, 3); + rage_data.hitbox_head = C_GET_ARRAY(bool, 7, Vars.hitbox_head, 3); + rage_data.hitbox_neck = C_GET_ARRAY(bool, 7, Vars.hitbox_neck, 3); + rage_data.hitbox_uppeer_chest = C_GET_ARRAY(bool, 7, Vars.hitbox_uppeer_chest, 3); + rage_data.hitbox_chest = C_GET_ARRAY(bool, 7, Vars.hitbox_chest, 3); + rage_data.hitbox_stomach = C_GET_ARRAY(bool, 7, Vars.hitbox_stomach, 3); + rage_data.hitbox_legs = C_GET_ARRAY(bool, 7, Vars.hitbox_legs, 3); + rage_data.hitbox_feets = C_GET_ARRAY(bool, 7, Vars.hitbox_feet, 3); + rage_data.rapid_fire = C_GET_ARRAY(bool, 7, Vars.rapid_fire, 3); + + } + else if (data->m_WeaponType() == WEAPONTYPE_RIFLE) { + rage_data.minimum_damage = C_GET_ARRAY(int, 7, Vars.rage_minimum_damage, 3); + rage_data.rage_hitchance = C_GET_ARRAY(int, 7, Vars.rage_minimum_hitchance, 3); + rage_data.auto_stop = C_GET_ARRAY(bool, 7, Vars.rage_auto_stop, 3); + rage_data.penetration = C_GET_ARRAY(bool, 7, Vars.rage_penetration, 3); + rage_data.rage_target_select = C_GET_ARRAY(int, 7, Vars.rage_target_select, 3); + rage_data.hitbox_head = C_GET_ARRAY(bool, 7, Vars.hitbox_head, 3); + rage_data.hitbox_neck = C_GET_ARRAY(bool, 7, Vars.hitbox_neck, 3); + rage_data.hitbox_uppeer_chest = C_GET_ARRAY(bool, 7, Vars.hitbox_uppeer_chest, 3); + rage_data.hitbox_chest = C_GET_ARRAY(bool, 7, Vars.hitbox_chest, 3); + rage_data.hitbox_stomach = C_GET_ARRAY(bool, 7, Vars.hitbox_stomach, 3); + rage_data.hitbox_legs = C_GET_ARRAY(bool, 7, Vars.hitbox_legs, 3); + rage_data.hitbox_feets = C_GET_ARRAY(bool, 7, Vars.hitbox_feet, 3); + rage_data.rapid_fire = C_GET_ARRAY(bool, 7, Vars.rapid_fire, 3); + } + else if (data->m_WeaponType() == WEAPONTYPE_SNIPER_RIFLE){ + rage_data.minimum_damage = C_GET_ARRAY(int, 7, Vars.rage_minimum_damage, 4); + rage_data.rage_hitchance = C_GET_ARRAY(int, 7, Vars.rage_minimum_hitchance, 4); + rage_data.auto_stop = C_GET_ARRAY(bool, 7, Vars.rage_auto_stop, 4); + rage_data.penetration = C_GET_ARRAY(bool, 7, Vars.rage_penetration, 4); + rage_data.rage_target_select = C_GET_ARRAY(int, 7, Vars.rage_target_select, 4); + rage_data.hitbox_head = C_GET_ARRAY(bool, 7, Vars.hitbox_head, 4); + rage_data.hitbox_neck = C_GET_ARRAY(bool, 7, Vars.hitbox_neck, 4); + rage_data.hitbox_uppeer_chest = C_GET_ARRAY(bool, 7, Vars.hitbox_uppeer_chest, 4); + rage_data.hitbox_chest = C_GET_ARRAY(bool, 7, Vars.hitbox_chest, 4); + rage_data.hitbox_stomach = C_GET_ARRAY(bool, 7, Vars.hitbox_stomach, 4); + rage_data.hitbox_legs = C_GET_ARRAY(bool, 7, Vars.hitbox_legs, 4); + rage_data.hitbox_feets = C_GET_ARRAY(bool, 7, Vars.hitbox_feet, 4); + rage_data.rapid_fire = C_GET_ARRAY(bool, 7, Vars.rapid_fire, 4); + } + +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/rage/rage.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/rage/rage.h new file mode 100644 index 0000000..c5a75a4 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/rage/rage.h @@ -0,0 +1,163 @@ +#pragma once + +#include "../../common.h" +#include +// used: draw system +#include "../../utilities/draw.h" +#include "../../sdk/datatypes/vector.h" +#include "../../sdk/datatypes/transform.h" +#include "../../sdk/datatypes/qangle.h" +#include "../cstrike/core/config.h" +class CCSPlayerController; +class C_BaseEntity; +class C_CSPlayerPawn; +class CBaseHandle; +class CEntityInstance; +class CUserCmd; +class CBaseUserCmdPB; +class QAngle_t; +class CCSGOInput; +class IGameEvent; +class C_CSWeaponBase; +class CCSWeaponBaseVData; +class scan_data; +class scan_point; +class scanned_target; +#define MAX_STUDIO_BONES 1024 + +#include + +namespace F::RAGE +{ + enum events { + round_start = 1, + player_death = 2, + }; + + + class impl { + public: + + + enum reset { + entity, + aimbot + + }; + enum scan_mode { + single, /* only 1 hitbox */ + adaptive /* multiple bones pushed in the same time */ + }; + + enum hitboxes { + scan_head, + scan_neck, + scan_chest, + scan_pelvis + }; + + + enum stop_mode { + slow = 0, + early = 1 + }; + + enum silent_info { + skipping = 0, + on_tick = 1, + }; + + struct aim_info { + int minimum_damage; + int rage_hitchance; + int rage_target_select; + int rage_enable; + bool auto_stop; + bool penetration; + bool remove_weapon_accuracy_spread; + bool hitbox_head; + bool hitbox_neck; + bool hitbox_uppeer_chest; + bool hitbox_chest; + bool hitbox_stomach; + bool hitbox_legs; + bool hitbox_feets; + bool rapid_fire; + bool failed_hitchance = false; + bool do_rapid_fire; + bool accurate; + }rage_data; + + enum command_msg { + none = 0, + rapid_fire = 1, + teleport = 2, + silent = 3, + }; + enum response_msg { + empty = 0, + validated_view_angles = 1, + }; + + struct SubTickData { + QAngle_t best_point = QAngle_t(0, 0, 0); + Vector_t best_point_vec = Vector_t(0, 0, 0); + command_msg command = command_msg::none; + response_msg response = response_msg::empty; + + void reset() { + best_point.Reset(); + best_point_vec = Vector_t(0, 0, 0); + command = command_msg::none; + response = response_msg::empty; + } + + }sub_tick_data; + + float GetSpread(C_CSWeaponBase* weapon); + float GetInaccuracy(C_CSPlayerPawn* pLocal, C_CSWeaponBase* weapon); + float HitchanceFast(C_CSPlayerPawn* pLocal, C_CSWeaponBase* weapon); + void Hitchance(C_CSPlayerPawn* pLocal, C_CSPlayerPawn* record, C_CSWeaponBase* weapon, QAngle_t vAimpoint); + void AutomaticStop(C_CSPlayerPawn* pLocal, C_CSWeaponBase* weapon, CUserCmd* cmd, stop_mode mode = slow); + void SortTarget(); + /* void inits */ + bool valid(C_CSPlayerPawn* pawn, C_CSPlayerPawn* pLocal, bool check = false); + void ScanPoint(C_CSPlayerPawn* pLocal, CUserCmd* cmd, C_CSPlayerPawn* record, scan_data& data, const Vector_t& shoot_pos, bool optimized); + std::vector get_points(C_CSPlayerPawn* pLocal, C_CSPlayerPawn* record, uint32_t hitbox, bool from_aim); + void Scan(); + void Triggerbot(CUserCmd* cmd, C_BaseEntity* localent, C_BaseEntity* playerent, C_CSPlayerPawn* local, C_CSPlayerPawn* player, CCSWeaponBaseVData* vdata); + void BuildSeed(); + void SetupTarget(C_CSPlayerPawn* pawn); + void SetupAdaptiveWeapon(C_CSPlayerPawn* pawn); + void ScanTarget(C_CSPlayerPawn* pLocal, CUserCmd* cmd, QAngle_t viewangles); + Vector_t eye_pos; + float ScaleDamage(C_CSPlayerPawn* target, C_CSPlayerPawn* pLocal, C_CSWeaponBase* weapon, Vector_t aim_point, float& dmg, bool& canHit); + bool CanHit(Vector_t start, Vector_t end, C_CSPlayerPawn* pLocal, C_CSPlayerPawn* record, int box); + void Reset(reset type); + void Run(C_CSPlayerPawn* pLocal, CCSGOInput* pInput, CUserCmd* cmd); + bool Ready(C_CSPlayerPawn* pLocal); + void Events(IGameEvent* event_listener, events type); + bool IsAccurate(scan_data& data, CUserCmd* cmd, C_CSPlayerPawn* local); + bool Attack(CUserCmd* cmd, C_CSPlayerPawn* pLocal, scan_data& data); + void AjustRecoil(C_CSPlayerPawn* player, CUserCmd* pCmd); + /* init class */ + aim_info aimbot_info; + silent_info silent_info; + inline static std::vector> m_computed_seeds; + + }; + const auto rage = std::make_unique(); +} + +namespace F::LAGCOMP +{ + + class impl { + public: + /* void inits */ + void Initialize(); + void Start(CUserCmd* cmd) noexcept; + void Render() noexcept; + }; + const auto lagcomp = std::make_unique(); +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/skins/ccsinventorymanager.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/skins/ccsinventorymanager.cpp new file mode 100644 index 0000000..1b01ea9 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/skins/ccsinventorymanager.cpp @@ -0,0 +1,11 @@ +#include "ccsinventorymanager.hpp" + +#include "../cstrike/utilities/memory.h" +#include "../cstrike/core/interfaces.h" +#include "../cstrike/core/hooks.h" +CCSInventoryManager* CCSInventoryManager::GetInstance() { + if (!H::fnGetInventoryManager) return nullptr; + return H::fnGetInventoryManager(); + + +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/skins/ccsinventorymanager.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/skins/ccsinventorymanager.hpp new file mode 100644 index 0000000..55f6955 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/skins/ccsinventorymanager.hpp @@ -0,0 +1,17 @@ +#pragma once + +#include "../cstrike/utilities/memory.h" +class CCSPlayerInventory; + +class CCSInventoryManager { + public: + static CCSInventoryManager* GetInstance(); + + auto EquipItemInLoadout(int iTeam, int iSlot, uint64_t iItemID) { + return MEM::CallVFunc( this, iTeam, iSlot, iItemID); + } + auto GetLocalInventory() { + return MEM::CallVFunc(this); + } + +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/skins/ccsplayerinventory.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/skins/ccsplayerinventory.cpp new file mode 100644 index 0000000..21289d6 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/skins/ccsplayerinventory.cpp @@ -0,0 +1,127 @@ +#include "ccsplayerinventory.hpp" +#include "../cstrike/sdk/entity.h" +#include "../cstrike/utilities/memory.h" +#include "../cstrike/core/hooks.h" +static CGCClientSharedObjectTypeCache* CreateBaseTypeCache( + CCSPlayerInventory* pInventory) { + if (H::fnGetClientSystem() == nullptr) { + L_PRINT(LOG_ERROR) << "failed to get client sys"; + return nullptr; + } + CGCClientSystem* pGCClientSystem = H::fnGetClientSystem(); + L_PRINT(LOG_ERROR) << "1"; + + if (!pGCClientSystem) return nullptr; + + CGCClient* pGCClient = pGCClientSystem->GetCGCClient(); + if (!pGCClient) return nullptr; + L_PRINT(LOG_ERROR) << "2"; + + CGCClientSharedObjectCache* pSOCache = + pGCClient->FindSOCache(pInventory->GetOwner()); + if (!pSOCache) return nullptr; + L_PRINT(LOG_ERROR) << "3"; + + return pSOCache->CreateBaseTypeCache(k_EEconTypeItem); +} + +CCSPlayerInventory* CCSPlayerInventory::GetInstance() { + CCSInventoryManager* pInventoryManager = CCSInventoryManager::GetInstance(); + if (!pInventoryManager) return nullptr; + + return pInventoryManager->GetLocalInventory(); +} + +bool CCSPlayerInventory::AddEconItem(CEconItem* pItem) { + // Helper function to aid in adding items. + if (!pItem) return false; + + CGCClientSharedObjectTypeCache* pSOTypeCache = ::CreateBaseTypeCache(this); + if (!pSOTypeCache || !pSOTypeCache->AddObject((CSharedObject*)pItem)) + return false; + + SOCreated(GetOwner(), (CSharedObject*)pItem, eSOCacheEvent_Incremental); + return true; +} + +void CCSPlayerInventory::RemoveEconItem(CEconItem* pItem) { + // Helper function to aid in removing items. + if (!pItem) return; + + CGCClientSharedObjectTypeCache* pSOTypeCache = ::CreateBaseTypeCache(this); + if (!pSOTypeCache) return; + + const CUtlVector& pSharedObjects = + pSOTypeCache->GetVecObjects(); + if (!pSharedObjects.Find(pItem)) return; + + SODestroyed(GetOwner(), (CSharedObject*)pItem, eSOCacheEvent_Incremental); + pSOTypeCache->RemoveObject((CSharedObject*)pItem); + + pItem->Destruct(); +} + +std::pair CCSPlayerInventory::GetHighestIDs() { + uint64_t maxItemID = 0; + uint32_t maxInventoryID = 0; + + CGCClientSharedObjectTypeCache* pSOTypeCache = ::CreateBaseTypeCache(this); + if (pSOTypeCache) { + const CUtlVector& vecItems = + pSOTypeCache->GetVecObjects(); + + for (CEconItem* it : vecItems) { + if (!it) continue; + + // Checks if item is default. + if ((it->m_ulID & 0xF000000000000000) != 0) continue; + + maxItemID = std::max(maxItemID, it->m_ulID); + maxInventoryID = std::max(maxInventoryID, it->m_unInventory); + } + } + + return std::make_pair(maxItemID, maxInventoryID); +} + +C_EconItemView* CCSPlayerInventory::GetItemViewForItem(uint64_t itemID) { + C_EconItemView* pEconItemView = nullptr; + + const CUtlVector& pItems = GetItemVector(); + for (C_EconItemView* it : pItems) { + if (it && it->m_iItemID() == itemID) { + pEconItemView = it; + break; + } + } + + return pEconItemView; +} + +CEconItem* CCSPlayerInventory::GetSOCDataForItem(uint64_t itemID) { + CEconItem* pSOCData = nullptr; + L_PRINT(LOG_INFO) << "ID WE WANT: " << (int)itemID; + + CGCClientSharedObjectTypeCache* pSOTypeCache = ::CreateBaseTypeCache(this); + if (pSOTypeCache) { + L_PRINT(LOG_INFO) << "got pSOTypeCache"; + + const CUtlVector& vecItems = + pSOTypeCache->GetVecObjects(); + + for (CEconItem* it : vecItems) { + if (it && (int)it->m_ulID == (int)itemID) { + L_PRINT(LOG_INFO) << "got m_unDefIndex: " << it->m_unDefIndex; + L_PRINT(LOG_INFO) << "got m_ulID: " << (int)it->m_ulID; + L_PRINT(LOG_INFO) << "got m_ulOriginalID: " << (int)it->m_ulOriginalID; + + pSOCData = it; + return pSOCData; + + break; + } + } + } + + return pSOCData; +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/skins/ccsplayerinventory.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/skins/ccsplayerinventory.hpp new file mode 100644 index 0000000..3401e65 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/skins/ccsplayerinventory.hpp @@ -0,0 +1,49 @@ +#pragma once + +#include + + +#include "../cstrike/sdk/entity.h" +#include "../cstrike/sdk/datatypes/utlvector.h" + + +#include "ccsinventorymanager.hpp" +#include + + +class CCSPlayerInventory { + public: + static CCSPlayerInventory* GetInstance(); + + auto SOCreated(SOID_t owner, CSharedObject* pObject, ESOCacheEvent eEvent) { + return MEM::CallVFunc(this, owner, pObject, eEvent); + } + + auto SOUpdated(SOID_t owner, CSharedObject* pObject, ESOCacheEvent eEvent) { + return MEM::CallVFunc(this, owner, pObject, eEvent); + + } + + auto SODestroyed(SOID_t owner, CSharedObject* pObject, ESOCacheEvent eEvent) { + return MEM::CallVFunc(this, owner, pObject, eEvent); + } + + auto GetItemInLoadout(int iClass, int iSlot) { + return MEM::CallVFunc(this, iClass, iSlot); + } + + bool AddEconItem(CEconItem* pItem); + void RemoveEconItem(CEconItem* pItem); + std::pair GetHighestIDs(); + C_EconItemView* GetItemViewForItem(uint64_t itemID); + CEconItem* GetSOCDataForItem(uint64_t itemID); + + auto GetOwner() { + return *reinterpret_cast((uintptr_t)(this) + 0x10); + } + + auto& GetItemVector() { + return *reinterpret_cast*>( + (uintptr_t)(this) + 0x20); + } +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/skins/skin_changer.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/skins/skin_changer.cpp new file mode 100644 index 0000000..85f317f --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/skins/skin_changer.cpp @@ -0,0 +1,482 @@ +#include + +#include "skin_changer.hpp" + +#include "../cstrike/sdk/interfaces/iengineclient.h" +#include "../../core/config.h" +#include "../../core/variables.h" +#include "../../sdk/datatypes/usercmd.h" +#include "../../core/sdk.h" +#include "../../sdk/entity.h" +#include "../../sdk/interfaces/iglobalvars.h" +#include "../../sdk/interfaces/cgameentitysystem.h" +#include "../cstrike/sdk/interfaces/iengineclient.h" +#include "../../sdk/datatypes/qangle.h" +#include "../../sdk/datatypes/vector.h" +#include "../cstrike/sdk/interfaces/inetworkclientservice.h" +#include "../cstrike/sdk/interfaces/ccsgoinput.h" +#include "../misc/movement.h" +#include "../cstrike/sdk/interfaces/ccsgoinput.h" +#include "../cstrike/sdk/interfaces/ienginecvar.h" +#include "../lagcomp/lagcomp.h" +#include "../cstrike/sdk/interfaces/events.h" +#include "../penetration/penetration.h" +#include "../cstrike/sdk/interfaces/itrace.h" +#include "../cstrike/core/spoofcall/syscall.h" +#include +#include +#include +#include +#include "../cstrike/sdk/interfaces/iengineclient.h" +#include "../../core/spoofcall/virtualization/VirtualizerSDK64.h" +#include "../../utilities/inputsystem.h" +#include "ccsinventorymanager.hpp" +#include "ccsplayerinventory.hpp" +#include "../cstrike/core/hooks.h" +static std::vector g_vecAddedItemsIDs; + +static int glove_frame = 0; +struct GloveInfo { + int itemId; + uint64_t itemHighId; + uint64_t itemLowId; + int itemDefId; +}; +static GloveInfo addedGloves; + +// Define a struct to hold glove information + + +struct material_info +{ + skin_changer::material_record* p_mat_records; + uint32_t ui32_count; +}; + +void invalidate_glove_material(C_BaseViewModel* viewmodel) +{ + material_info* p_mat_info = reinterpret_cast(reinterpret_cast(viewmodel) + 0xf80); + + for (uint32_t i = 0; i < p_mat_info->ui32_count; i++) + { + if (p_mat_info->p_mat_records[i].identifer == skin_changer::material_magic_number__gloves) + { + p_mat_info->p_mat_records[i].ui32_type_index = 0xffffffff; + break; + } + } +} +void skin_changer::OnGlove(CCSPlayerInventory* pInventory, C_CSPlayerPawn* pLocalPawn, C_BaseViewModel* pViewModel, C_EconItemView* GlovesItem, CEconItemDefinition* GlovesDefinition) { + + if (!pLocalPawn) return; + + if (pLocalPawn->GetHealth() <= 0) + return; + + if (!pViewModel) + return; + + if (!GlovesItem) + return; + + if (!GlovesDefinition) return; + + if (addedGloves.itemId == 0) + return; + + + if (glove_frame) + { + invalidate_glove_material(pViewModel); + + GlovesItem->m_bInitialized() = true; + pLocalPawn->m_bNeedToReApplyGloves() = true; + + glove_frame--; + } + + if (GlovesItem->m_iItemID() != addedGloves.itemId) { + + glove_frame = 2; + + GlovesItem->m_bDisallowSOC() = false; + + GlovesItem->m_iItemID() = addedGloves.itemId; + GlovesItem->m_iItemIDHigh() = addedGloves.itemHighId; + GlovesItem->m_iItemIDLow() = addedGloves.itemLowId; + GlovesItem->m_iAccountID() = uint32_t(pInventory->GetOwner().m_id); + GlovesItem->m_iItemDefinitionIndex() = addedGloves.itemDefId; + GlovesItem->m_bDisallowSOC() = false; + + pViewModel->GetGameSceneNode()->SetMeshGroupMask(1); + + } + +} + +void skin_changer::OnFrameStageNotify(int frameStage) { + if (frameStage != 6) return; + + + CCSPlayerInventory* pInventory = CCSPlayerInventory::GetInstance(); + if (!pInventory) return; + + CGameEntitySystem* pEntitySystem = I::GameResourceService->pGameEntitySystem; + if (!pEntitySystem) return; + + const uint64_t steamID = pInventory->GetOwner().m_id; + + CCSPlayerController* pLocalPlayerController = CCSPlayerController::GetLocalPlayerController(); + if (!pLocalPlayerController) return; + + C_CSPlayerPawn* pLocalPawn = I::GameResourceService->pGameEntitySystem->Get(pLocalPlayerController->GetPawnHandle()); + if (!pLocalPawn) return; + + if (pLocalPawn->GetHealth() <= 0) + return; + + CCSPlayer_ViewModelServices* pViewModelServices = pLocalPawn->GetViewModelServices(); + if (!pViewModelServices) return; + + C_CSGOViewModel* pViewModel = I::GameResourceService->pGameEntitySystem->Get(pViewModelServices->m_hViewModel()); + if (!pViewModel) + return; + C_EconItemView* pGloves = &pLocalPawn->m_EconGloves(); + CEconItemDefinition* pGlovesDefinition = pGloves->GetStaticData(); + + skin_changer::OnGlove(pInventory, pLocalPawn, pViewModel, pGloves, pGlovesDefinition); + + + int highestIndex = pEntitySystem->GetHighestEntityIndex(); + for (int i = 64 + 1; i <= highestIndex; ++i) { + C_BaseEntity* pEntity = pEntitySystem->Get(i); + if (!pEntity || !pEntity->IsWeapon()) continue; + + C_CSWeaponBase* pWeapon = reinterpret_cast(pEntity); + if (pWeapon->GetOriginalOwnerXuid() != steamID) continue; + + CAttributeManager* pAttributeContainer = &pWeapon->m_AttributeManager(); + if (!pAttributeContainer) continue; + + C_EconItemView* pWeaponItemView = &pAttributeContainer->m_Item(); + if (!pWeaponItemView) continue; + + CEconItemDefinition* pWeaponDefinition = + pWeaponItemView->GetStaticData(); + if (!pWeaponDefinition) continue; + + CGameSceneNode* pWeaponSceneNode = pWeapon->GetGameSceneNode(); + if (!pWeaponSceneNode) continue; + + // No idea how to check this faster with the new loadout system. + C_EconItemView* pWeaponInLoadoutItemView = nullptr; + + if (pWeaponDefinition->IsWeapon()) { + for (int i = 0; i <= 56; ++i) { + C_EconItemView* pItemView = pInventory->GetItemInLoadout( + pWeapon->m_iOriginalTeamNumber(), i); + if (!pItemView) continue; + + if (pItemView->m_iItemDefinitionIndex() == + pWeaponDefinition->m_nDefIndex) { + pWeaponInLoadoutItemView = pItemView; + break; + } + } + } + else { + pWeaponInLoadoutItemView = pInventory->GetItemInLoadout( + pWeapon->m_iOriginalTeamNumber(), + pWeaponDefinition->GetLoadoutSlot()); + } + + if (!pWeaponInLoadoutItemView) + continue; + + // Check if skin is added by us. + auto it = std::find(g_vecAddedItemsIDs.cbegin(), g_vecAddedItemsIDs.cend(), pWeaponInLoadoutItemView->m_iItemID()); + if (it == g_vecAddedItemsIDs.cend()) continue; + + CEconItemDefinition* pWeaponInLoadoutDefinition = pWeaponInLoadoutItemView->GetStaticData(); + if (!pWeaponInLoadoutDefinition) continue; + + // Example: Will not equip FiveSeven skin on CZ. Not applies for knives. + const bool isKnife = pWeaponInLoadoutDefinition->IsKnife(false, pWeaponInLoadoutDefinition->m_pszItemBaseName); + L_PRINT(LOG_INFO) << "applying skin on:" << pWeaponInLoadoutDefinition->m_pszItemBaseName; + pWeaponItemView->m_bDisallowSOC() = false; + pWeaponInLoadoutItemView->m_bDisallowSOC() = false; + + pWeaponItemView->m_iItemID() = pWeaponInLoadoutItemView->m_iItemID(); + pWeaponItemView->m_iItemIDHigh() = pWeaponInLoadoutItemView->m_iItemIDHigh(); + pWeaponItemView->m_iItemIDLow() = pWeaponInLoadoutItemView->m_iItemIDLow(); + pWeaponItemView->m_iAccountID() = uint32_t(pInventory->GetOwner().m_id); + pWeaponItemView->m_iItemDefinitionIndex() = pWeaponInLoadoutDefinition->m_nDefIndex; + + // pWeaponItemView->m_bIsStoreItem() = true; + //pWeaponItemView->m_bIsTradeItem() = true; + + + // Displays nametag and stattrak on the gun. + // Found by: https://www.unknowncheats.me/forum/members/2377851.html + /* if (!pWeapon->m_bUIWeapon()) { + pWeapon->AddStattrakEntity(); + pWeapon->AddNametagEntity(); + }*/ + + CBaseHandle hWeapon = pWeapon->GetRefEHandle(); + if (isKnife) { + if (pViewModel && (pViewModel->m_hWeapon().GetEntryIndex() == hWeapon.GetEntryIndex() || pViewModel->m_hWeapon() == hWeapon)) { + pWeaponItemView->m_iItemDefinitionIndex() = pWeaponInLoadoutDefinition->m_nDefIndex; + + const char* knifeModel = pWeaponInLoadoutDefinition->GetModelName(); + + CGameSceneNode* pViewModelSceneNode = pViewModel->GetGameSceneNode(); + if (pViewModelSceneNode) { + pWeaponSceneNode->SetMeshGroupMask(2); + pViewModelSceneNode->SetMeshGroupMask(2); + } + pWeapon->SetModel(knifeModel); + pViewModel->SetModel(knifeModel); + pViewModel->pAnimationGraphInstance->pAnimGraphNetworkedVariables = nullptr; + } + } + else { + // Use legacy weapon models only for skins that require them. + // Probably need to cache this if you really care that much about + // performance + + const char* model = pWeaponInLoadoutDefinition->GetModelName(); + pWeapon->SetModel(model); + if (pViewModel && pViewModel->m_hWeapon() == hWeapon) + { + pViewModel->SetModel(model); + } + + pWeaponSceneNode->SetMeshGroupMask(2); + if (pViewModel && pViewModel->m_hWeapon().GetEntryIndex() == hWeapon.GetEntryIndex()) { + CGameSceneNode* pViewModelSceneNode = pViewModel->GetGameSceneNode(); + + pViewModelSceneNode->SetMeshGroupMask(2); + } + } + } +} +#include "../cstrike/sdk/interfaces/ccsgoinput.h" + +void skin_changer::OnEquipItemInLoadout(int team, int slot, uint64_t itemID) { + auto it = + std::find(g_vecAddedItemsIDs.begin(), g_vecAddedItemsIDs.end(), itemID); + if (it == g_vecAddedItemsIDs.end()) return; + + CCSInventoryManager* pInventoryManager = CCSInventoryManager::GetInstance(); + if (!pInventoryManager) return; + + CCSPlayerInventory* pInventory = CCSPlayerInventory::GetInstance(); + if (!pInventory) return; + + C_EconItemView* pItemViewToEquip = pInventory->GetItemViewForItem(*it); + if (!pItemViewToEquip) return; + + C_EconItemView* pItemInLoadout = pInventory->GetItemInLoadout(team, slot); + if (!pItemInLoadout) return; + + CEconItemDefinition* pItemInLoadoutStaticData = pItemInLoadout->GetStaticData(); + if (!pItemInLoadoutStaticData) + return; + + // Equip default item. If you would have bought Deagle and you previously + // had R8 equipped it will now give you a Deagle. + const uint64_t defaultItemID = (std::uint64_t(0xF) << 60) | pItemViewToEquip->m_iItemDefinitionIndex(); + pInventoryManager->EquipItemInLoadout(team, slot, defaultItemID); + + CEconItem* pItemInLoadoutSOCData = pItemInLoadout->GetSOCData(nullptr); + if (!pItemInLoadoutSOCData) + return; + + CEconItemDefinition* toequipdata = pItemViewToEquip->GetStaticData(); + if (!toequipdata) + return; + + if (toequipdata->IsWeapon() && !toequipdata->IsKnife(false, pItemInLoadoutStaticData->m_pszItemTypeName) && !toequipdata->IsGlove(false, pItemInLoadoutStaticData->m_pszItemTypeName)) { + + pInventory->SOUpdated(pInventory->GetOwner(), (CSharedObject*)pItemInLoadoutSOCData, eSOCacheEvent_Incremental); + return; + } + else if (toequipdata->IsGlove(false, pItemInLoadoutStaticData->m_pszItemTypeName)) { + const uint64_t steamID = pInventory->GetOwner().m_id; + + CCSPlayerController* pLocalPlayerController = CCSPlayerController::GetLocalPlayerController(); + if (!pLocalPlayerController) return; + + C_CSPlayerPawn* pLocalPawn = I::GameResourceService->pGameEntitySystem->Get(pLocalPlayerController->GetPawnHandle()); + if (!pLocalPawn) return; + + if (pLocalPawn->GetHealth() <= 0) + return; + + CCSPlayer_ViewModelServices* pViewModelServices = pLocalPawn->GetViewModelServices(); + if (!pViewModelServices) return; + + C_BaseViewModel* pViewModel = I::GameResourceService->pGameEntitySystem->Get(pViewModelServices->m_hViewModel()); + if (!pViewModel) + return; + + // Create a struct to store glove information + addedGloves.itemId = pItemViewToEquip->m_iItemID(); + addedGloves.itemHighId = pItemViewToEquip->m_iItemIDHigh(); + addedGloves.itemLowId = pItemViewToEquip->m_iItemIDLow(); + addedGloves.itemDefId = pItemViewToEquip->m_iItemDefinitionIndex(); + + C_EconItemView* pGloves = &pLocalPawn->m_EconGloves(); + if (!pGloves) + return; + + CEconItemDefinition* pGlovesDefinition = pGloves->GetStaticData(); + if (!pGlovesDefinition) + return; + + skin_changer::OnGlove(pInventory, pLocalPawn, pViewModel, pGloves, pGlovesDefinition); + pLocalPawn->m_bNeedToReApplyGloves() = true; + pInventory->SOUpdated(pInventory->GetOwner(), (CSharedObject*)pItemInLoadoutSOCData, eSOCacheEvent_Incremental); + return; + } + else if (toequipdata->IsKnife(false, pItemInLoadoutStaticData->m_pszItemTypeName)) { + pInventory->SOUpdated(pInventory->GetOwner(), (CSharedObject*)pItemInLoadoutSOCData, eSOCacheEvent_Incremental); + return; + } + +} + +void skin_changer::OnSetModel(C_BaseModelEntity* pEntity, const char*& model) { + // When you're lagging you may see the default knife for one second and this + // function fixes that. + if (!I::Engine->IsConnected() || !I::Engine->IsInGame()) + return; + + CCSPlayerController* pLocalPlayerController = CCSPlayerController::GetLocalPlayerController(); + if (!pLocalPlayerController) return; + + C_CSPlayerPawn* pLocalPawn = I::GameResourceService->pGameEntitySystem->Get(pLocalPlayerController->GetPawnHandle()); + if (!pLocalPawn) return; + + if (pLocalPawn->GetHealth() <= 0) + return; + + if (!pEntity || !pEntity->IsViewModel()) return; + + C_BaseViewModel* pViewModel = (C_BaseViewModel*)pEntity; + if (!pViewModel) + return; + CCSPlayerInventory* pInventory = CCSPlayerInventory::GetInstance(); + if (!pInventory) return; + + const uint64_t steamID = pInventory->GetOwner().m_id; + + C_CSWeaponBase* pWeapon = I::GameResourceService->pGameEntitySystem->Get(pViewModel->m_hWeapon()); + if (!pWeapon) return; + + if (!pWeapon || !pWeapon->IsWeapon() || + pWeapon->GetOriginalOwnerXuid() != steamID) + return; + + CAttributeManager* pAttributeContainer = &pWeapon->m_AttributeManager(); + if (!pAttributeContainer) return; + + + C_EconItemView* pWeaponItemView = &pAttributeContainer->m_Item(); + if (!pWeaponItemView) return; + + CEconItemDefinition* pWeaponDefinition = pWeaponItemView->GetStaticData(); + if (!pWeaponDefinition) return; + + C_EconItemView* pWeaponInLoadoutItemView = pInventory->GetItemInLoadout( + pWeapon->m_iOriginalTeamNumber(), pWeaponDefinition->GetLoadoutSlot()); + if (!pWeaponInLoadoutItemView) return; + + // Check if skin is added by us. + auto it = std::find(g_vecAddedItemsIDs.cbegin(), g_vecAddedItemsIDs.cend(), + pWeaponInLoadoutItemView->m_iItemID()); + if (it == g_vecAddedItemsIDs.cend()) return; + + CEconItemDefinition* pWeaponInLoadoutDefinition = + pWeaponInLoadoutItemView->GetStaticData(); + + if (!pWeaponInLoadoutDefinition)// || + return; + + model = pWeaponInLoadoutDefinition->GetModelName(); +} + +void skin_changer::AddEconItemToList(CEconItem* pItem) { + g_vecAddedItemsIDs.emplace_back(pItem->m_ulID); +} + +void skin_changer::Shutdown() { + CCSPlayerInventory* pInventory = CCSPlayerInventory::GetInstance(); + if (!pInventory) return; + + for (uint64_t id : g_vecAddedItemsIDs) { + pInventory->RemoveEconItem(pInventory->GetSOCDataForItem(id)); + } +} + +void skin_changer::OnRoundReset(IGameEvent* pEvent) { + if (!pEvent || g_vecAddedItemsIDs.empty()) return; + + const char* eventName = pEvent->GetName(); + if (!eventName) return; + + CCSPlayerController* pLocalPlayerController = CCSPlayerController::GetLocalPlayerController(); + + if (!pLocalPlayerController ) + return; + + C_CSPlayerPawn* pLocalPawn = I::GameResourceService->pGameEntitySystem->Get(pLocalPlayerController->GetPawnHandle()); + if (!pLocalPawn) return; + +} + +void skin_changer::OnPreFireEvent(IGameEvent* pEvent) { + if (!pEvent) return; + + const char* eventName = pEvent->GetName(); + if (!eventName) return; + + const auto pControllerWhoKilled = pEvent->get_player_controller("attacker"); + if (pControllerWhoKilled == nullptr) + return; + + const auto pControllerWhoDied = pEvent->get_player_controller("userid"); + if (pControllerWhoDied == nullptr) + return; + + if (pControllerWhoKilled->GetIdentity()->GetIndex() == pControllerWhoDied->GetIdentity()->GetIndex()) + return; + + CCSPlayerController* pLocalPlayerController = CCSPlayerController::GetLocalPlayerController(); + + if (!pLocalPlayerController || pControllerWhoKilled->GetIdentity()->GetIndex() != pLocalPlayerController->GetIdentity()->GetIndex()) + return; + + C_CSPlayerPawn* pLocalPawn = I::GameResourceService->pGameEntitySystem->Get(pLocalPlayerController->GetPawnHandle()); + if (!pLocalPawn) return; + + CPlayer_WeaponServices* pWeaponServices = pLocalPawn->GetWeaponServices(); + if (!pWeaponServices) return; + + C_CSWeaponBase* pActiveWeapon = pLocalPawn->ActiveWeapon(); + if (!pActiveWeapon) return; + + CAttributeManager* pAttributeContainer = &pActiveWeapon->m_AttributeManager(); + if (!pAttributeContainer) return; + + C_EconItemView* pWeaponItemView = &pAttributeContainer->m_Item(); + if (!pWeaponItemView) return; + + CEconItemDefinition* pWeaponDefinition = pWeaponItemView->GetStaticData(); + if (!pWeaponDefinition || !pWeaponDefinition->IsKnife(true, pWeaponDefinition->m_pszItemTypeName)) return; + const std::string_view token_name = CS_XOR("weapon"); + CUtlStringToken token(token_name.data()); + + pEvent->SetString(token, pWeaponDefinition->GetSimpleWeaponName()); +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/skins/skin_changer.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/skins/skin_changer.hpp new file mode 100644 index 0000000..2c95f31 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/skins/skin_changer.hpp @@ -0,0 +1,41 @@ +#pragma once + +class IGameEvent; +class CEconItem; +class C_BaseModelEntity; +class CCSPlayerInventory; +class C_CSPlayerPawn; +class CEconItemDefinition; +class C_BaseViewModel; +class C_EconItemView; + +namespace skin_changer { + + enum material_magic_number : uint32_t + { + material_magic_number__gloves = 0xf143b82a, + material_magic_number__unknown1 = 0x1b52829c, + material_magic_number__unknown2 = 0xa6ebe9b9, + material_magic_number__unknown3 = 0x423b2ed4, + material_magic_number__unknown4 = 0xc8d7255e + }; + + struct material_record + { + uint32_t ui32_unknwonstatic; + material_magic_number identifer; + uint32_t ui32_handle; + uint32_t ui32_type_index; + }; + + void OnFrameStageNotify(int frameStage); + void OnGlove(CCSPlayerInventory* pInventory, C_CSPlayerPawn* pLocalPawn, C_BaseViewModel* pViewModel, C_EconItemView* GlovesItem, CEconItemDefinition* GlovesDefinition) ; + void OnPreFireEvent(IGameEvent* pEvent); + void OnRoundReset(IGameEvent* pEvent); + + void OnEquipItemInLoadout(int team, int slot, uint64_t itemID); + void OnSetModel(C_BaseModelEntity* pEntity, const char*& model); + + void AddEconItemToList(CEconItem* pItem); + void Shutdown(); +} // namespace skin_changer diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/visuals.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/visuals.cpp new file mode 100644 index 0000000..cba3876 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/visuals.cpp @@ -0,0 +1,31 @@ +#include "visuals.h" + +// used: source sdk +#include "../sdk/interfaces/iengineclient.h" +#include "../sdk/entity.h" + +// used: overlay +#include "visuals/overlay.h" +#include "visuals/chams.h" + +#include "../core/sdk.h" + +using namespace F; + +bool F::VISUALS::Setup() +{ + if (!ams::chams->initialize()) + { + L_PRINT(LOG_ERROR) << CS_XOR("failed to initialize DrawObject chams | swapping to K3V"); + return true; + } + L_PRINT(LOG_NONE) << L::SetColor(LOG_COLOR_FORE_GREEN | LOG_COLOR_FORE_INTENSITY) << CS_XOR("chams initialization completed"); + + + return true; +} + +bool F::VISUALS::OnDrawObject(void* pAnimatableSceneObjectDesc, void* pDx11, material_data_t* arrMeshDraw, int nDataCount, void* pSceneView, void* pSceneLayer, void* pUnk, void* pUnk2) +{ + return ams::chams->draw_object(pAnimatableSceneObjectDesc, pDx11, arrMeshDraw, nDataCount, pSceneView, pSceneLayer, pUnk, pUnk2); +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/visuals.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/visuals.h new file mode 100644 index 0000000..f4ea126 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/visuals.h @@ -0,0 +1,10 @@ +#pragma once + +class material_data_t; + +namespace F::VISUALS +{ + bool Setup(); + void OnFrame(const int nStage); + bool OnDrawObject(void* pAnimatableSceneObjectDesc, void* pDx11, material_data_t* arrMeshDraw, int nDataCount, void* pSceneView, void* pSceneLayer, void* pUnk, void* pUnk2); +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/visuals/chams.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/visuals/chams.cpp new file mode 100644 index 0000000..5b29b93 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/visuals/chams.cpp @@ -0,0 +1,500 @@ +#include "chams.h" + +// used: game's interfaces +#include "../../core/interfaces.h" +#include "../../sdk/interfaces/imaterialsystem.h" +#include "../../sdk/interfaces/igameresourceservice.h" +#include "../../sdk/interfaces/cgameentitysystem.h" +#include "../../core/sdk.h" +#include "../../sdk/entity.h" +#include "../cstrike/sdk/datatypes/resourceutils.h" +#include "../cstrike/sdk/datatypes/buf/utlbuffer.h" + +#include +// used: original call in hooked function +#include "../../core/hooks.h" + +// used: cheat variables +#include"../cstrike/sdk/interfaces/imaterialsystem.h" +#include "../../core/variables.h" +#include +inline bool(CS_FASTCALL* fnLoadBuffer)(CUtlBuffer*) = nullptr; + +// custom material +struct custom_material_data_t { + material2_t* m_material; + material2_t* m_material_z; +}; + +// material list. +enum material_list_t { + material_white, + material_default, + material_illum, + material_size +}; + +// array +static custom_material_data_t array_materials[material_size]; // material max + +material2_t* create_material_glow2_visible(const char* m_name) { + const char szVmatBuffer[] = R"#( + { + shader = "solidcolor.vfx" + F_SELF_ILLUM = 1 + F_PAINT_VERTEX_COLORS = 1 + F_TRANSLUCENT = 1 + F_IGNOREZ = 0 + F_DISABLE_Z_WRITE = 0 + F_DISABLE_Z_BUFFERING = 0 + + g_tColor = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tNormal = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tRoughness = resource:"materials/default/default_normal_tga_b3f4ec4c.vtex" + g_tMetalness = resource:"materials/default/default_normal_tga_b3f4ec4c.vtex" + g_tSelfIllumMask = resource:"materials/default/default_mask_tga_fde710a5.vtex" + TextureAmbientOcclusion = resource:"materials/debug/particleerror.vtex" + g_tAmbientOcclusion = resource:"materials/debug/particleerror.vtex" + + g_vColorTint = [ 20.000000, 20.000000, 20.000000, 20.000000 ] + g_flSelfIllumScale = [ 5.000000, 5.000000, 5.000000, 5.000000 ] + g_flSelfIllumBrightness = [ 5.000000, 5.000000, 5.000000, 5.000000 ] + g_vSelfIllumTint = [ 10.000000, 10.000000, 10.000000, 10.000000 ] + } )#"; + + auto buffer = new unsigned char[0x100 + sizeof(CKeyValues3)]; + CRT::MemorySet(buffer, 0, sizeof(buffer)); + CKeyValues3* kv3 = (CKeyValues3*)(buffer + 0x100); + + KV3IVD_t kv3ID; + kv3ID.szName = m_name; + kv3ID.unk0 = 0x469806E97412167C; + kv3ID.unk1 = 0xE73790B53EE6F2AF; + + if (!MEM::load_key_value(kv3, nullptr, szVmatBuffer, &kv3ID, nullptr)) + throw; + + material2_t** custom_material; + MEM::fnCreateMaterial(nullptr, &custom_material, m_name, kv3, 0, 1); + + return *custom_material; +} + +material2_t* create_material_glow2_invisible(const char* m_name) { + const char szVmatBuffer[] = R"#( + { + shader = "solidcolor.vfx" + F_SELF_ILLUM = 1 + F_PAINT_VERTEX_COLORS = 1 + F_TRANSLUCENT = 1 + F_IGNOREZ = 1 + F_DISABLE_Z_WRITE = 1 + F_DISABLE_Z_BUFFERING = 1 + + g_tColor = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tNormal = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tRoughness = resource:"materials/default/default_normal_tga_b3f4ec4c.vtex" + g_tMetalness = resource:"materials/default/default_normal_tga_b3f4ec4c.vtex" + g_tSelfIllumMask = resource:"materials/default/default_mask_tga_fde710a5.vtex" + TextureAmbientOcclusion = resource:"materials/debug/particleerror.vtex" + g_tAmbientOcclusion = resource:"materials/debug/particleerror.vtex" + + g_vColorTint = [ 20.000000, 20.000000, 20.000000, 20.000000 ] + g_flSelfIllumScale = [ 5.000000, 5.000000, 5.000000, 5.000000 ] + g_flSelfIllumBrightness = [ 5.000000, 5.000000, 5.000000, 5.000000 ] + g_vSelfIllumTint = [ 10.000000, 10.000000, 10.000000, 10.000000 ] + } )#"; + + auto buffer = new unsigned char[0x100 + sizeof(CKeyValues3)]; + CRT::MemorySet(buffer, 0, sizeof(buffer)); + CKeyValues3* kv3 = (CKeyValues3*)(buffer + 0x100); + + KV3IVD_t kv3ID; + kv3ID.szName = m_name; + kv3ID.unk0 = 0x469806E97412167C; + kv3ID.unk1 = 0xE73790B53EE6F2AF; + + if (!MEM::load_key_value(kv3, nullptr, szVmatBuffer, &kv3ID, nullptr)) + throw; + + material2_t** custom_material; + MEM::fnCreateMaterial(nullptr, &custom_material, m_name, kv3, 0, 1); + + return *custom_material; +} + +material2_t* create_material_default_visible(const char* m_name) { + const char szVmatBuffer[] = R"( +{ + shader = "csgo_complex.vfx" + F_PAINT_VERTEX_COLORS = 1 + F_TRANSLUCENT = 1 + + g_vColorTint = [1, 1, 1, 1] + TextureAmbientOcclusion = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tAmbientOcclusion = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tColor = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tNormal = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tTintMask = resource:"materials/default/default_mask_tga_fde710a5.vtex" + +})"; + + auto buffer = new unsigned char[0x100 + sizeof(CKeyValues3)]; + CRT::MemorySet(buffer, 0, sizeof(buffer)); + CKeyValues3* kv3 = (CKeyValues3*)(buffer + 0x100); + + KV3IVD_t kv3ID; + kv3ID.szName = m_name; + kv3ID.unk0 = 0x469806E97412167C; + kv3ID.unk1 = 0xE73790B53EE6F2AF; + + if (!MEM::load_key_value(kv3, nullptr, szVmatBuffer, &kv3ID, nullptr)) + throw; + + material2_t** custom_material; + MEM::fnCreateMaterial(nullptr, &custom_material, m_name, kv3, 0, 1); + + return *custom_material; +} +material2_t* create_material_default_invisible(const char* m_name) { + const char szVmatBuffer[] = R"( +{ + shader = "csgo_complex.vfx" + F_PAINT_VERTEX_COLORS = 1 + F_TRANSLUCENT = 1 + F_DISABLE_Z_BUFFERING = 1 + + g_vColorTint = [1, 1, 1, 1] + TextureAmbientOcclusion = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tAmbientOcclusion = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tColor = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tNormal = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tTintMask = resource:"materials/default/default_mask_tga_fde710a5.vtex" + +})"; + + auto buffer = new unsigned char[0x100 + sizeof(CKeyValues3)]; + CRT::MemorySet(buffer, 0, sizeof(buffer)); + CKeyValues3* kv3 = (CKeyValues3*)(buffer + 0x100); + + KV3IVD_t kv3ID; + kv3ID.szName = m_name; + kv3ID.unk0 = 0x469806E97412167C; + kv3ID.unk1 = 0xE73790B53EE6F2AF; + + if (!MEM::load_key_value(kv3, nullptr, szVmatBuffer, &kv3ID, nullptr)) + throw; + + material2_t** custom_material; + MEM::fnCreateMaterial(nullptr, &custom_material, m_name, kv3, 0, 1); + + return *custom_material; +} +material2_t* create_material_flat_visible(const char* m_name) { + const char szVmatBuffer[] = R"( +{ + shader = "csgo_unlitgeneric.vfx" + F_PAINT_VERTEX_COLORS = 1 + F_TRANSLUCENT = 1 + F_BLEND_MODE = 1 + + g_vColorTint = [1, 1, 1, 1] + TextureAmbientOcclusion = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tAmbientOcclusion = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tColor = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tNormal = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tTintMask = resource:"materials/default/default_mask_tga_fde710a5.vtex" + +})"; + + auto buffer = new unsigned char[0x100 + sizeof(CKeyValues3)]; + CRT::MemorySet(buffer, 0, sizeof(buffer)); + CKeyValues3* kv3 = (CKeyValues3*)(buffer + 0x100); + + KV3IVD_t kv3ID; + kv3ID.szName = m_name; + kv3ID.unk0 = 0x469806E97412167C; + kv3ID.unk1 = 0xE73790B53EE6F2AF; + + if (!MEM::load_key_value(kv3, nullptr, szVmatBuffer, &kv3ID, nullptr)) + throw; + + material2_t** custom_material; + MEM::fnCreateMaterial(nullptr, &custom_material, m_name, kv3, 0, 1); + + return *custom_material; +} +material2_t* create_material_flat_invisible(const char* m_name) { + const char szVmatBuffer[] = R"( +{ + shader = "csgo_unlitgeneric.vfx" + F_PAINT_VERTEX_COLORS = 1 + F_TRANSLUCENT = 1 + F_BLEND_MODE = 1 + F_DISABLE_Z_BUFFERING = 1 + + g_vColorTint = [1, 1, 1, 1] + TextureAmbientOcclusion = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tAmbientOcclusion = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tColor = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tNormal = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tTintMask = resource:"materials/default/default_mask_tga_fde710a5.vtex" + +})"; + + auto buffer = new unsigned char[0x100 + sizeof(CKeyValues3)]; + CRT::MemorySet(buffer, 0, sizeof(buffer)); + CKeyValues3* kv3 = (CKeyValues3*)(buffer + 0x100); + + KV3IVD_t kv3ID; + kv3ID.szName = m_name; + kv3ID.unk0 = 0x469806E97412167C; + kv3ID.unk1 = 0xE73790B53EE6F2AF; + + if (!MEM::load_key_value(kv3, nullptr, szVmatBuffer, &kv3ID, nullptr)) + throw; + + material2_t** custom_material; + MEM::fnCreateMaterial(nullptr, &custom_material, m_name, kv3, 0, 1); + + return *custom_material; +} +material2_t* create_material_illum_visible(const char* m_name) { + const char szVmatBuffer[] = R"( +{ + shader = "csgo_complex.vfx" + + g_tColor = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tNormal = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tSelfIllumMask = resource:"materials/default/default_mask_tga_fde710a5.vtex" + TextureAmbientOcclusion = resource:"materials/debug/particleerror.vtex" + g_tAmbientOcclusion = resource:"materials/debug/particleerror.vtex" + + g_vColorTint = [ 20.000000, 20.000000, 20.000000, 20.000000 ] + g_flSelfIllumScale = [ 5.000000, 5.000000, 5.000000, 5.000000 ] + g_flSelfIllumBrightness = [ 5.000000, 5.000000, 5.000000, 5.000000 ] + g_vSelfIllumTint = [ 10.000000, 10.000000, 10.000000, 10.000000 ] + + F_SELF_ILLUM = 1 + + F_PAINT_VERTEX_COLORS = 1 + + F_TRANSLUCENT = 1 + +})"; + + auto buffer = new unsigned char[0x100 + sizeof(CKeyValues3)]; + CRT::MemorySet(buffer, 0, sizeof(buffer)); + CKeyValues3* kv3 = (CKeyValues3*)(buffer + 0x100); + + KV3IVD_t kv3ID; + kv3ID.szName = m_name; + kv3ID.unk0 = 0x469806E97412167C; + kv3ID.unk1 = 0xE73790B53EE6F2AF; + + if (!MEM::load_key_value(kv3, nullptr, szVmatBuffer, &kv3ID, nullptr)) + throw; + + material2_t** custom_material; + MEM::fnCreateMaterial(nullptr, &custom_material, m_name, kv3, 0, 1); + + return *custom_material; +} +material2_t* create_material_illum_invisible(const char* m_name) { + const char szVmatBuffer[] = R"( +{ + shader = "csgo_complex.vfx" + + g_tColor = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tNormal = resource:"materials/default/default_mask_tga_fde710a5.vtex" + g_tSelfIllumMask = resource:"materials/default/default_mask_tga_fde710a5.vtex" + TextureAmbientOcclusion = resource:"materials/debug/particleerror.vtex" + g_tAmbientOcclusion = resource:"materials/debug/particleerror.vtex" + + g_vColorTint = [ 20.000000, 20.000000, 20.000000, 20.000000 ] + g_flSelfIllumScale = [ 5.000000, 5.000000, 5.000000, 5.000000 ] + g_flSelfIllumBrightness = [ 5.000000, 5.000000, 5.000000, 5.000000 ] + g_vSelfIllumTint = [ 10.000000, 10.000000, 10.000000, 10.000000 ] + + F_SELF_ILLUM = 1 + + F_PAINT_VERTEX_COLORS = 1 + + F_TRANSLUCENT = 1 + + F_DISABLE_Z_BUFFERING = 1 + +})"; + + auto buffer = new unsigned char[0x100 + sizeof(CKeyValues3)]; + CRT::MemorySet(buffer, 0, sizeof(buffer)); + CKeyValues3* kv3 = (CKeyValues3*)(buffer + 0x100); + + KV3IVD_t kv3ID; + kv3ID.szName = m_name; + kv3ID.unk0 = 0x469806E97412167C; + kv3ID.unk1 = 0xE73790B53EE6F2AF; + + if (!MEM::load_key_value(kv3, nullptr, szVmatBuffer, &kv3ID, nullptr)) + throw; + + material2_t** custom_material; + MEM::fnCreateMaterial(nullptr, &custom_material, m_name, kv3, 0, 1); + + return *custom_material; +} +// other functions. +bool ams::chams_t::initialize() { + // first we have to check if this shit is alr initialized + if (this->m_initialized) { + return this->m_initialized; + } + + // only initialize this for moment, later we're gonna init more + array_materials[material_list_t::material_white] = custom_material_data_t{ + .m_material = CreateMaterial(CS_XOR("primary_white"), CS_XOR("materials/dev/primary_white.vmat"), CS_XOR("csgo_unlitgeneric.vfx"), true, true, false), + .m_material_z = CreateMaterial(CS_XOR("primary_white_invisible"), CS_XOR("materials/dev/primary_white.vmat"), CS_XOR("csgo_unlitgeneric.vfx"), true, true, true) + }; + + array_materials[material_list_t::material_default] = custom_material_data_t{ + .m_material = CreateMaterial(CS_XOR("primary_white"), CS_XOR("materials/dev/primary_white.vmat"), CS_XOR("csgo_unlitgeneric.vfx"), true, true, false), + .m_material_z = CreateMaterial(CS_XOR("primary_white_invisible"), CS_XOR("materials/dev/primary_white.vmat"), CS_XOR("csgo_unlitgeneric.vfx"), true, true, true) + }; + + array_materials[material_list_t::material_illum] = custom_material_data_t{ +.m_material = CreateMaterial(CS_XOR("primary_white"), CS_XOR("materials/dev/primary_white.vmat"), CS_XOR("csgo_unlitgeneric.vfx"), true, true, false), + .m_material_z = CreateMaterial(CS_XOR("primary_white_invisible"), CS_XOR("materials/dev/primary_white.vmat"), CS_XOR("csgo_unlitgeneric.vfx"), true, true, true) + }; + + // we initialized by now + this->m_initialized = true; + + // iterate. + for (auto& [m_visible, m_invisible] : array_materials) { + if (m_visible == nullptr || m_invisible == nullptr) + this->m_initialized = false; + } + + // finish and return value + return this->m_initialized; +} + +void ams::chams_t::destroy() { + // nothing to destroy boss +} + +bool ams::chams_t::draw_object(void* animatable_object, void* dx11, material_data_t* arr_material_data, int data_count, + void* scene_view, void* scene_layer, void* unk1, void* unk2) { + // check if we initialized. + if (!this->m_initialized) { + return false; + } + if (!C_GET(bool, Vars.bVisualChams)) + { + return false; + } + if (!SDK::LocalPawn) + return false; + // no chams enable. + // return false + + // no data on material + if (arr_material_data == nullptr) { + return false; + } + + // no data on scene object. + if (arr_material_data->m_scene_animable == nullptr) { + return false; + } + + // owner. + CBaseHandle m_owner = arr_material_data->m_scene_animable->m_owner; + + // get entity. + auto m_entity = I::GameResourceService->pGameEntitySystem ->Get< C_BaseEntity >(m_owner); + if (m_entity == nullptr) { + return false; + } + + // schema info + SchemaClassInfoData_t* m_class_info; + m_entity->GetSchemaClassInfo(&m_class_info); + if (m_class_info == nullptr) { + return false; + } + + // compare string. + if (CRT::StringCompare(m_class_info->szName, CS_XOR("C_CSPlayerPawn")) != 0) + return false; + + // get pawn. + auto m_pawn = I::GameResourceService->pGameEntitySystem->Get< C_CSPlayerPawn>(m_owner); + if (m_pawn == nullptr) { + return false; + } + + // other entity + if (!m_pawn->IsOtherEnemy(SDK::LocalPawn)) { + return false; + } + + // it is alive + if (m_pawn->GetHealth() <= 0) { + return false; + } + + // we passed to everythign. + // please render material. + return this->override_material(animatable_object, dx11, arr_material_data, data_count, + scene_view, scene_layer, unk1, unk2); +} + +material2_t* ams::chams_t::CreateMaterial(const char* szName, const char* szMaterialVMAT, const char* szShaderType, bool bBlendMode, bool bTranslucent, bool bDisableZBuffering) +{ + material_data_t* pData = reinterpret_cast(static_cast(MEM_STACKALLOC(0x200)) + 0x50); + material2_t** pMatPrototype; + + I::MaterialSystem2->find_or_create_from_resource(&pMatPrototype, szMaterialVMAT); + if (pMatPrototype == nullptr) + return nullptr; + // @note: SetCreateDataByMaterial failed on release build idk why +#ifdef _DEBUG + I::MaterialSystem2->set_create_data_by_material(pData, &pMatPrototype); + pData->set_shader_type(szShaderType); + + pData->set_material_function(CS_XOR("F_DISABLE_Z_BUFFERING"), bDisableZBuffering ? 1 : 0); + pData->set_material_function(CS_XOR("F_BLEND_MODE"), bBlendMode ? 1 : 0); + pData->set_material_function(CS_XOR("F_TRANSLUCENT"), bTranslucent ? 1 : 0); + + material2_t** pMaterial; + I::MaterialSystem2->create_material(&pMaterial, szName, pData); + return *pMaterial; +#endif + return *pMatPrototype; +} + +bool ams::chams_t::override_material(void* animatable_object, void* dx11, material_data_t* arr_material_data, int data_count, + void* scene_view, void* scene_layer, void* unk1, void* unk2) { + + const auto original = H::hkDrawObject.GetOriginal(); + const custom_material_data_t customMaterial = array_materials[C_GET(int, Vars.nVisualChamMaterial)]; + + if (C_GET(bool, Vars.bVisualChamsIgnoreZ)) + { + arr_material_data->m_material = customMaterial.m_material_z; + arr_material_data->m_color = C_GET(ColorPickerVar_t, Vars.colVisualChamsIgnoreZ).colValue; + I::MaterialSystem2->set_color(arr_material_data, C_GET(ColorPickerVar_t, Vars.colVisualChamsIgnoreZ).colValue); + + original(animatable_object, dx11, arr_material_data, data_count, scene_view, scene_layer, unk1, unk2); + } + + arr_material_data->m_material = customMaterial.m_material; + arr_material_data->m_color = C_GET(ColorPickerVar_t, Vars.colVisualChams).colValue; + I::MaterialSystem2->set_color(arr_material_data, C_GET(ColorPickerVar_t, Vars.colVisualChams).colValue); + original(animatable_object, dx11, arr_material_data, data_count, scene_view, scene_layer, unk1, unk2); + + return true; +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/visuals/chams.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/visuals/chams.h new file mode 100644 index 0000000..2717705 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/visuals/chams.h @@ -0,0 +1,33 @@ +#pragma once + +#pragma once + +#include "../../common.h" +#include +#include "../cstrike/sdk/datatypes/stronghandle.hpp" +#pragma once +class material_data_t; +class material2_t; +namespace ams { + class chams_t { + public: + bool initialize(); + void destroy(); + public: + bool draw_object(void* animatable_object, void* dx11, material_data_t* arr_material_data, int data_count, + void* scene_view, void* scene_layer, void* unk1, void* unk2); + + bool override_material(void* animatable_object, void* dx11, material_data_t* arr_material_data, int data_count, + void* scene_view, void* scene_layer, void* unk1, void* unk2); + public: + material2_t* CreateMaterial(const char* szName, const char* szMaterialVMAT, const char* szShaderType, bool bBlendMode, bool bTranslucent, bool bDisableZBuffering); + + material2_t* create_material(const char* m_name, const char* material_vmat, const char* shader_type, bool blend_mode, + bool transfluscent, bool disable_buffering); + private: + bool m_initialized = false; + }; + const auto chams = std::make_unique(); + + +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/visuals/overlay.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/visuals/overlay.cpp new file mode 100644 index 0000000..d6f7da5 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/visuals/overlay.cpp @@ -0,0 +1,1055 @@ +// used: [stl] vector +#include +// used: [stl] sort +#include + +#include "overlay.h" + +// used: cheat variables +#include "../../core/variables.h" + +// used: entity +#include "../../sdk/entity.h" +#include "../../sdk/interfaces/iengineclient.h" +#include "../cstrike/sdk/interfaces/iglobalvars.h" +#include "../../sdk/interfaces/cgameentitysystem.h" + + + +// used: sdk variables +#include "../../core/sdk.h" + +// used: l_print +#include "../../utilities/log.h" +// used: inputsystem +#include "../../utilities/inputsystem.h" +// used: draw system +#include "../../utilities/draw.h" + +// used: mainwindowopened +#include "../../core/menu.h" +#include "../../sdk/datatypes/utlvector.h" +#include +#include +#include +#include +#include "imgui/imgui_edited.hpp" +using namespace F::VISUALS; +float mAlpha[65]; +#pragma region visual_overlay_components + +ImVec2 OVERLAY::CBaseComponent::GetBasePosition(const ImVec4& box) const +{ + return { box[this->nSide == SIDE_RIGHT ? SIDE_RIGHT : SIDE_LEFT], box[this->nSide == SIDE_BOTTOM ? SIDE_BOTTOM : SIDE_TOP] }; +} + +ImVec2 OVERLAY::CBaseDirectionalComponent::GetBasePosition(const ImVec4& box) const +{ + ImVec2 vecBasePosition = {}; + + if (this->nSide == SIDE_TOP || this->nSide == SIDE_BOTTOM) + { + vecBasePosition = { (box[SIDE_LEFT] + box[SIDE_RIGHT]) * 0.5f, box[this->nSide] }; + } + else if (this->nSide == SIDE_LEFT || this->nSide == SIDE_RIGHT) + { + vecBasePosition = { box[this->nSide], box[this->nDirection == DIR_TOP ? SIDE_BOTTOM : SIDE_TOP] }; + } + else + { + L_PRINT(LOG_ERROR) << CS_XOR("CBaseDirectionalComponent::GetBasePosition: invalid side: ") << this->nSide; + return vecBasePosition; + } + + if (this->nSide != SIDE_RIGHT && this->nDirection != DIR_RIGHT) + vecBasePosition.x -= this->vecSize.x * ((static_cast(this->nDirection) == static_cast(this->nSide) && (this->nSide & 1U) == 1U) ? 0.5f : 1.0f); + + if (this->nSide == SIDE_TOP || this->nDirection == DIR_TOP) + vecBasePosition.y -= this->vecSize.y; + + return vecBasePosition; +} + +OVERLAY::CBarComponent::CBarComponent(const bool bIsMenuItem, const EAlignSide nAlignSide, const ImVec4& vecBox,const float max_limit, const float flProgressFactor, const std::size_t uOverlayVarIndex, const float alphaM) : + bIsMenuItem(bIsMenuItem), uOverlayVarIndex(uOverlayVarIndex), max_limit(MATH::Clamp(flProgressFactor, 0.f, 1.f)), flProgressFactor(MATH::Clamp(flProgressFactor, 0.f, 1.f)), alphaMultiplier(alphaM) +{ + this->nSide = nAlignSide; + const bool bIsHorizontal = ((nAlignSide & 1U) == 1U); + this->value = static_cast(flProgressFactor * 100); + this->alphaMultiplier = alphaM; + if (this->nSide == SIDE_BOTTOM || this->nSide == SIDE_TOP) + this->value_sz = std::to_string(static_cast(flProgressFactor * max_limit)) + CS_XOR(" "); + else + this->value_sz = std::to_string(static_cast(flProgressFactor * 100)) + CS_XOR(" "); + + const BarOverlayVar_t& overlayConfig = C_GET(BarOverlayVar_t, uOverlayVarIndex); + this->vecSize = { (bIsHorizontal ? vecBox[SIDE_RIGHT] - vecBox[SIDE_LEFT] : overlayConfig.flThickness), (bIsHorizontal ? overlayConfig.flThickness : vecBox[SIDE_BOTTOM] - vecBox[SIDE_TOP]) }; +} + +void OVERLAY::CBarComponent::Render(ImDrawList* pDrawList, const ImVec2& vecPosition) +{ + BarOverlayVar_t& overlayConfig = C_GET(BarOverlayVar_t, uOverlayVarIndex); + const ImVec2 vecThicknessOffset = { overlayConfig.flThickness, overlayConfig.flThickness }; + ImVec2 vecMin = vecPosition, vecMax = vecPosition + this->vecSize; + overlayConfig.colShadow.SetAlphaM(this->alphaMultiplier); + + + if (this->nSide == SIDE_BOTTOM || this->nSide == SIDE_TOP) { + // bar glow shadow + if (overlayConfig.bGlowShadow) { + Color_t shadow_effect_color = overlayConfig.bUseFactorColor ? Color_t::FromHSB((flProgressFactor * 120.f) / 360.f, 1.0f, 0.6f * this->alphaMultiplier) : overlayConfig.colShadow; + D::AddDrawListShadowRect( + pDrawList, + ImVec2(vecMin.x + 5.f, vecMin.y), + ImVec2(vecMax.x - 5.f, vecMax.y), + shadow_effect_color, + 16.f, + 0.f + ); + } + // background glow + if (overlayConfig.bBackground) + pDrawList->AddShadowRect(ImVec2(vecMin.x + 2.f, vecMin.y), ImVec2(vecMax.x - 2.f, vecMax.y), overlayConfig.colBackground.GetU32(this->alphaMultiplier), 1.f, ImVec2(0, 0)); + // outline + if (overlayConfig.bOutline) + pDrawList->AddRect(ImVec2(vecMin.x + 2.f, vecMin.y ), ImVec2(vecMax.x - 2.f, vecMax.y), overlayConfig.colOutline.GetU32( this->alphaMultiplier), 0.f, ImDrawFlags_None, overlayConfig.flThickness); + } + else { + // bar glow shadow + if (overlayConfig.bGlowShadow) { + Color_t shadow_effect_color = overlayConfig.bUseFactorColor ? Color_t::FromHSB((flProgressFactor * 120.f) / 360.f, 1.0f, 0.6f * this->alphaMultiplier) : overlayConfig.colShadow; + D::AddDrawListShadowRect( + pDrawList, + ImVec2(vecMin.x, vecMin.y + 5.f), + ImVec2(vecMax.x, vecMax.y - 5.f), + shadow_effect_color, + 16.f, + 0.f + ); + } + + // background glow + if (overlayConfig.bBackground) + pDrawList->AddShadowRect(ImVec2(vecMin.x, vecMin.y + 2.f), ImVec2(vecMax.x, vecMax.y - 2.f), overlayConfig.colBackground.GetU32(this->alphaMultiplier), 1.f, ImVec2(0, 0)); + + // outline + if (overlayConfig.bOutline) + pDrawList->AddRect(ImVec2(vecMin.x, vecMin.y + 2.f), ImVec2(vecMax.x, vecMax.y - 2.f), overlayConfig.colOutline.GetU32(this->alphaMultiplier), 0.f, ImDrawFlags_None, overlayConfig.flThickness); + + } + + // account outline offset + vecMin += vecThicknessOffset; + vecMax -= vecThicknessOffset; + + const ImVec2 vecLineSize = vecMax - vecMin; + float flPrevProgressFactor = flProgressFactor; // Store the previous progress factor + flProgressFactor = std::clamp(flProgressFactor, 0.0f, 1.0f); // Ensure progress factor is within the valid range (0 to 1) + + // Apply animation smoothing + const float flAnimationSpeed = 8.f; // Adjust as needed + flPrevProgressFactor = std::lerp(flPrevProgressFactor, flProgressFactor, flAnimationSpeed * I::GlobalVars->flFrameTime); + + // Modify active side axis by factor + if ((this->nSide & 1U) == 0U) + vecMin.y += vecLineSize.y * (1.0f - flPrevProgressFactor); + else + vecMax.x -= vecLineSize.x * (1.0f - flPrevProgressFactor); + + if (overlayConfig.bGradient && !overlayConfig.bUseFactorColor) + { + if (this->nSide == SIDE_LEFT || this->nSide == SIDE_RIGHT) + pDrawList->AddRectFilledMultiColor(vecMin, vecMax, overlayConfig.colPrimary.GetU32(this->alphaMultiplier), overlayConfig.colPrimary.GetU32(this->alphaMultiplier), overlayConfig.colSecondary.GetU32(this->alphaMultiplier), overlayConfig.colSecondary.GetU32(this->alphaMultiplier)); + else + pDrawList->AddRectFilledMultiColor(vecMin, vecMax, overlayConfig.colSecondary.GetU32(this->alphaMultiplier), overlayConfig.colPrimary.GetU32(this->alphaMultiplier), overlayConfig.colPrimary.GetU32(this->alphaMultiplier), overlayConfig.colSecondary.GetU32(this->alphaMultiplier)); + } + else + { + const ImU32 u32Color = overlayConfig.bUseFactorColor ? Color_t::FromHSB((flProgressFactor * 120.f) / 360.f, 1.0f, 1.0f).GetU32(this->alphaMultiplier) : overlayConfig.colPrimary.GetU32(this->alphaMultiplier); + pDrawList->AddRectFilled(vecMin, vecMax, u32Color, 0.f, ImDrawFlags_None); + } + + + std::string sz = this->value_sz; + + // Render text on the bar with black outline + if (!sz.empty() && overlayConfig.bShowValue && this->value <= 92.f) { + ImVec2 textSize = ImGui::CalcTextSize(sz.c_str()); + ImVec2 textPos = ImVec2((vecMin.x + vecMax.x - textSize.x) * 0.5f, (vecMin.y + vecMax.y - textSize.y) * 0.5f); + + // modify active side axis by factor + int fill = this->nSide == SIDE_BOTTOM ? (int)std::round(flPrevProgressFactor * vecLineSize.y / this->max_limit) : (int)std::round(flPrevProgressFactor * vecLineSize.y / 100.f); + + if (this->nSide == SIDE_BOTTOM || this->nSide == SIDE_TOP) { + textPos.y = vecMin.y - 7; + textPos.x = vecMin.x + (fill)-5; + } + else { + textPos.y = vecMin.y + (fill)-7; + textPos.x = vecMin.x - 5; + } + // Draw the black outline first + const int outlineThickness = 1; // Adjust as needed + pDrawList->AddText(FONT::pEspHealth, FONT::pEspHealth->FontSize, ImVec2(textPos.x - outlineThickness, textPos.y), IM_COL32(0, 0, 0, 255 * this->alphaMultiplier), sz.c_str()); + pDrawList->AddText(FONT::pEspHealth, FONT::pEspHealth->FontSize, ImVec2(textPos.x + outlineThickness, textPos.y), IM_COL32(0, 0, 0, 255 * this->alphaMultiplier), sz.c_str()); + pDrawList->AddText(FONT::pEspHealth, FONT::pEspHealth->FontSize, ImVec2(textPos.x, textPos.y - outlineThickness), IM_COL32(0, 0, 0, 255 * this->alphaMultiplier), sz.c_str()); + pDrawList->AddText(FONT::pEspHealth, FONT::pEspHealth->FontSize, ImVec2(textPos.x, textPos.y + outlineThickness), IM_COL32(0, 0, 0, 255 * this->alphaMultiplier), sz.c_str()); + + // Draw the original text on top + pDrawList->AddText(FONT::pEspHealth, FONT::pEspHealth->FontSize, textPos, IM_COL32(255, 255, 255, 255 * this->alphaMultiplier), sz.c_str()); + } + + // only open menu item if menu is opened and overlay is enabled + bIsMenuItem &= (MENU::bMainWindowOpened && overlayConfig.bEnable); + if (bIsMenuItem) + { + // @note: padding 2.f incase the thickness is too small + this->bIsHovered = ImRect(vecPosition - ImVec2(2.f, 2.f), vecPosition + this->vecSize + ImVec2(2.f, 2.f)).Contains(ImGui::GetIO().MousePos); + // if component is hovered + right clicked + if (this->bIsHovered && ImGui::IsMouseClicked(ImGuiMouseButton_Right)) + ImGui::OpenPopup(CS_XOR(std::to_string(this->uOverlayVarIndex).c_str())); + + if (ImGui::BeginPopup(CS_XOR(std::to_string(this->uOverlayVarIndex).c_str()), ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoMove)) + { + ImVec2 size = ImVec2(150, 320); + ImGui::SetWindowSize(size); + + + if (!overlayConfig.bUseFactorColor) { + edited::SmallCheckbox(CS_XOR("Gradient"), & overlayConfig.bGradient, 1); + edited::Color(CS_XOR("##gradientcolor"), "", &overlayConfig.colSecondary, ImGuiColorEditFlags_AlphaBar | ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoLabel); + } + + edited::SmallCheckbox(CS_XOR("Factor"), &overlayConfig.bUseFactorColor, 1); + edited::Color(CS_XOR("##factorcolor"), "", & overlayConfig.colPrimary, ImGuiColorEditFlags_AlphaBar | ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoLabel); + + edited::SmallCheckbox(CS_XOR("Glow"), &overlayConfig.bGlowShadow, 1); + edited::Color(CS_XOR("##glowcolor"), "", &overlayConfig.colShadow, ImGuiColorEditFlags_AlphaBar |ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoLabel ); + + edited::SmallCheckbox(CS_XOR("Outline"), &overlayConfig.bOutline, 1); + edited::Color(CS_XOR("##outlinecolor"), "", &overlayConfig.colOutline, ImGuiColorEditFlags_AlphaBar | ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoLabel); + + edited::SmallCheckbox(CS_XOR("Back"), &overlayConfig.bBackground, 1); + edited::Color(CS_XOR("##backgroundcolor"), "", &overlayConfig.colBackground, ImGuiColorEditFlags_AlphaBar | ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoLabel); + + edited::SmallCheckbox(CS_XOR("Text"), &overlayConfig.bShowValue, 1); + + ImGui::SliderFloat(CS_XOR("Width"), &overlayConfig.flThickness, 1.0f, 10.0f, CS_XOR("%.1f"), ImGuiSliderFlags_NoInput); + + ImGui::EndPopup(); + } + } + else + // dont process hovered on menu close... + this->bIsHovered = false; +} + +OVERLAY::CTextComponent::CTextComponent(const bool bIsMenuItem, const bool bIcons, const EAlignSide nAlignSide, const EAlignDirection nAlignDirection, const ImFont* pFont, const char* szText, const std::size_t uOverlayVarIndex, const float alphaM) : + bIsMenuItem(bIsMenuItem), bIcon(bIcons), pFont(pFont), uOverlayVarIndex(uOverlayVarIndex), alphaMultiplier(alphaM) +{ + const TextOverlayVar_t& overlayConfig = C_GET(TextOverlayVar_t, uOverlayVarIndex); + // allocate own buffer to safely store a copy of the string + this->bIcon = bIcons; + this->alphaMultiplier = alphaM; + this->szText = new char[CRT::StringLength(szText) + 1U]; + CRT::StringCopy(this->szText, szText); + this->nSide = nAlignSide; + this->nDirection = nAlignDirection; + this->vecSize = pFont->CalcTextSizeA(pFont->FontSize, FLT_MAX, 0.0f, szText) + overlayConfig.flThickness; +} + +OVERLAY::CTextComponent::~CTextComponent() +{ + // deallocate buffer of the copied string + delete[] this->szText; +} + +void OVERLAY::CTextComponent::Render(ImDrawList* pDrawList, const ImVec2& vecPosition) +{ + TextOverlayVar_t& overlayConfig = C_GET(TextOverlayVar_t, this->uOverlayVarIndex); + + const ImVec2 vecOutlineOffset = { overlayConfig.flThickness, overlayConfig.flThickness }; + + + // Adjust the text position based on the side + ImVec2 textPos = vecPosition; + + // Adjust the text position based on the side + if (this->nSide == SIDE_BOTTOM) { + // Move the text 2 pixels below for SIDE_BOTTOM + textPos.y += 2.0f; + } + else if (this->nSide == SIDE_TOP) { + // Move the text 2 pixels above for SIDE_TOP + textPos.y -= 1.0f; + } + + // @test: used for spacing debugging + //pDrawList->AddRect(textPos, textPos + this->vecSize, IM_COL32(255, 255, 255, 255)); + // @todo: fix this cringe shit after gui merge + if (overlayConfig.flThickness >= 1.0f) + { + // Adjust the text position by 2 pixels above + pDrawList->AddText(this->pFont, this->pFont->FontSize, textPos, overlayConfig.colOutline.GetU32(this->alphaMultiplier), this->szText); + pDrawList->AddText(this->pFont, this->pFont->FontSize, textPos + vecOutlineOffset * 2.0f, overlayConfig.colOutline.GetU32(this->alphaMultiplier), this->szText); + } + + // Adjust the text position by 2 pixels above + pDrawList->AddText(this->pFont, this->pFont->FontSize, textPos + vecOutlineOffset, overlayConfig.colPrimary.GetU32(this->alphaMultiplier), this->szText); + + // only open menu item if menu is opened and overlay is enabled + bIsMenuItem &= MENU::bMainWindowOpened && overlayConfig.bEnable; + if (bIsMenuItem) + { + this->bIsHovered = ImRect(vecPosition, vecPosition + this->vecSize).Contains(ImGui::GetIO().MousePos); + // @test: used for spacing debugging + //pDrawList->AddRect(vecPosition, vecPosition + this->vecSize, IM_COL32(this->bIsHovered ? 0 : 255, this->bIsHovered ? 255 : 0, 0, 255)); + + // if component is hovered + right clicked + if (this->bIsHovered && ImGui::IsMouseClicked(ImGuiMouseButton_Right)) + ImGui::OpenPopup(CS_XOR(this->szText)); + + if (ImGui::BeginPopup(CS_XOR(this->szText), ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoMove)) + { + + ImVec2 size = ImVec2(90, 150); + ImGui::SetWindowSize(size); // Adjust the size as needed + + edited::Color(CS_XOR("Primary"), "", & overlayConfig.colPrimary, ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_AlphaPreviewHalf | ImGuiColorEditFlags_AlphaBar); + edited::Color(CS_XOR("Outline"), "", &overlayConfig.colOutline, ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_AlphaPreviewHalf | ImGuiColorEditFlags_AlphaBar); + if (this->bIcon) { + edited::SmallCheckbox(CS_XOR("Icon"), &overlayConfig.bIcon, 1); + } + + + ImGui::EndPopup(); + } + } +} + +#pragma endregion + +#pragma region visual_overlay_context + +bool OVERLAY::Context_t::AddBoxComponent(ImDrawList* pDrawList, const ImVec4& vecBox, const int nType, float flThickness, float flRounding, const Color_t& colPrimary, const Color_t& colOutline , const float AlphaMultiplier ) +{ + flThickness = std::floorf(flThickness); + const ImVec2 vecThicknessOffset = { flThickness, flThickness }; + + switch (nType) + { + case VISUAL_OVERLAY_BOX_FULL: + { + const ImVec2 vecBoxMin = { vecBox[SIDE_LEFT], vecBox[SIDE_TOP] }; + const ImVec2 vecBoxMax = { vecBox[SIDE_RIGHT], vecBox[SIDE_BOTTOM] }; + + // inner outline + pDrawList->AddRect(vecBoxMin + vecThicknessOffset * 2.0f, vecBoxMax - vecThicknessOffset * 2.0f, colOutline.GetU32(AlphaMultiplier), flRounding, ImDrawFlags_RoundCornersAll, flThickness); + // primary box + pDrawList->AddRect(vecBoxMin + vecThicknessOffset, vecBoxMax - vecThicknessOffset, colPrimary.GetU32(AlphaMultiplier), flRounding, ImDrawFlags_RoundCornersAll, flThickness); + // outer outline + pDrawList->AddRect(vecBoxMin, vecBoxMax, colOutline.GetU32(AlphaMultiplier), flRounding, ImDrawFlags_RoundCornersAll, flThickness); + + break; + } + case VISUAL_OVERLAY_BOX_CORNERS: + { + // corner part of the whole line + constexpr float flPartRatio = 0.25f; + + const float flCornerWidth = ((vecBox[SIDE_RIGHT] - vecBox[SIDE_LEFT]) * flPartRatio); + const float flCornerHeight = ((vecBox[SIDE_BOTTOM] - vecBox[SIDE_TOP]) * flPartRatio); + + const ImVec2 arrCornerPoints[4][3] = { + // top-left + { ImVec2(vecBox[SIDE_LEFT], vecBox[SIDE_TOP] + flCornerHeight) + vecThicknessOffset, ImVec2(vecBox[SIDE_LEFT], vecBox[SIDE_TOP]) + vecThicknessOffset, ImVec2(vecBox[SIDE_LEFT] + flCornerWidth, vecBox[SIDE_TOP]) + vecThicknessOffset }, + + // top-right + { ImVec2(vecBox[SIDE_RIGHT] - flCornerWidth - vecThicknessOffset.x, vecBox[SIDE_TOP] + vecThicknessOffset.y * 2.0f), ImVec2(vecBox[SIDE_RIGHT] - vecThicknessOffset.x, vecBox[SIDE_TOP] + vecThicknessOffset.y * 2.0f), ImVec2(vecBox[SIDE_RIGHT] - vecThicknessOffset.x, vecBox[SIDE_TOP] + flCornerHeight + vecThicknessOffset.y * 2.0f) }, + + // bottom-left + { ImVec2(vecBox[SIDE_LEFT] + flCornerWidth + vecThicknessOffset.x, vecBox[SIDE_BOTTOM] - vecThicknessOffset.y * 2.0f), ImVec2(vecBox[SIDE_LEFT] + vecThicknessOffset.x, vecBox[SIDE_BOTTOM] - vecThicknessOffset.y * 2.0f), ImVec2(vecBox[SIDE_LEFT] + vecThicknessOffset.x, vecBox[SIDE_BOTTOM] - flCornerHeight - vecThicknessOffset.y * 2.0f) }, + + // bottom-right + { ImVec2(vecBox[SIDE_RIGHT], vecBox[SIDE_BOTTOM] - flCornerHeight) - vecThicknessOffset, ImVec2(vecBox[SIDE_RIGHT], vecBox[SIDE_BOTTOM]) - vecThicknessOffset, ImVec2(vecBox[SIDE_RIGHT] - flCornerWidth, vecBox[SIDE_BOTTOM]) - vecThicknessOffset } + }; + + for (std::size_t i = 0U; i < CS_ARRAYSIZE(arrCornerPoints); i++) + { + const auto& arrLinePoints = arrCornerPoints[i]; + const ImVec2 vecHalfPixelOffset = ((i & 1U) == 1U ? ImVec2(-0.5f, -0.5f) : ImVec2(0.5f, 0.5f)); + + // @todo: we can even do not clear path and reuse it + pDrawList->PathLineTo(arrLinePoints[0] + vecHalfPixelOffset); + pDrawList->PathLineTo(arrLinePoints[1] + vecHalfPixelOffset); + pDrawList->PathLineTo(arrLinePoints[2] + vecHalfPixelOffset); + pDrawList->PathStroke(colOutline.GetU32(AlphaMultiplier), false, flThickness + 1.0f); + + pDrawList->PathLineTo(arrLinePoints[0] + vecHalfPixelOffset); + pDrawList->PathLineTo(arrLinePoints[1] + vecHalfPixelOffset); + pDrawList->PathLineTo(arrLinePoints[2] + vecHalfPixelOffset); + pDrawList->PathStroke(colPrimary.GetU32(AlphaMultiplier), false, flThickness); + } + + break; + } + default: + break; + } + + // accumulate spacing for next side/directional components + for (float& flSidePadding : this->arrSidePaddings) + flSidePadding += this->flComponentSpacing; + + return ImRect(vecBox).Contains(ImGui::GetIO().MousePos); +} + +ImVec4 OVERLAY::Context_t::AddFrameComponent(ImDrawList* pDrawList, const ImVec2& vecScreen, const EAlignSide nSide, const Color_t& colBackground, const float flRounding, const ImDrawFlags nRoundingCorners) +{ + // calculate frame size by previously added components on active side + const ImVec2 vecFrameSize = this->GetTotalDirectionalSize(nSide); + + ImVec2 vecFrameMin = { vecScreen.x - vecFrameSize.x * 0.5f, vecScreen.y - vecFrameSize.y }; + ImVec2 vecFrameMax = { vecScreen.x + vecFrameSize.x * 0.5f, vecScreen.y }; + + pDrawList->AddRectFilled(vecFrameMin - this->flComponentSpacing, vecFrameMax + this->flComponentSpacing, colBackground.GetU32(), flRounding, nRoundingCorners); + + // accumulate spacing for next side/directional components + for (float& flSidePadding : this->arrSidePaddings) + flSidePadding += this->flComponentSpacing; + + return { vecFrameMin.x, vecFrameMin.y, vecFrameMax.x, vecFrameMax.y }; +} + +/* + * @todo: currently not well designed, make it more flexible for use cases where we need e.g. previous frame bar factor etc + * also to optimize this, allocate components at stack instead of heap + make all context units static and do not realloc components storage every frame, but reset (like memset idk) it at the end of frame + */ +void OVERLAY::Context_t::AddComponent(CBaseComponent* pComponent) +{ + // guarantee that first directional component on each side is in the primary direction + if (pComponent->IsDirectional()) + { + CBaseDirectionalComponent* pDirectionalComponent = static_cast(pComponent); + + // check if it's not an exception direction and there are no components in the primary direction + if (((pDirectionalComponent->nSide & 1U) == 1U || pDirectionalComponent->nDirection != DIR_TOP) && this->arrSideDirectionPaddings[pDirectionalComponent->nSide][pDirectionalComponent->nSide] == 0.0f) + pDirectionalComponent->nDirection = static_cast(pDirectionalComponent->nSide); + } + + float& flSidePadding = this->arrSidePaddings[pComponent->nSide]; + + if (pComponent->IsDirectional()) + { + CBaseDirectionalComponent* pDirectionalComponent = static_cast(pComponent); + float(&arrDirectionPaddings)[DIR_MAX] = this->arrSideDirectionPaddings[pDirectionalComponent->nSide]; + + // directional components don't change side paddings, but take them into account + pComponent->vecOffset[pDirectionalComponent->nSide & 1U] += ((pDirectionalComponent->nSide < 2U) ? -flSidePadding : flSidePadding); + + // check if the component is in the same direction as the side and it's the first component in this direction + if (static_cast(pDirectionalComponent->nDirection) == static_cast(pDirectionalComponent->nSide) && arrDirectionPaddings[pDirectionalComponent->nDirection] == 0.0f) + { + // accumulate paddings for sub-directions + for (std::uint8_t nSubDirection = DIR_LEFT; nSubDirection < DIR_MAX; nSubDirection++) + { + /* + * exclude conflicting sub-directions + * + * SIDE_LEFT[0]: DIR_LEFT[0], DIR_BOTTOM[3] | ~2 & ~1 + * SIDE_TOP[1]: DIR_LEFT[0], DIR_TOP[1], DIR_RIGHT[2] | ~3 + * SIDE_RIGHT[2]: DIR_RIGHT[2], DIR_BOTTOM[3] | ~0 & ~1 + * SIDE_BOTTOM[3]: DIR_LEFT[0], DIR_RIGHT[2], DIR_BOTTOM[3] | ~1 + */ + if (nSubDirection == pDirectionalComponent->nSide || nSubDirection == ((pDirectionalComponent->nSide + 2U) & 3U) || (nSubDirection == DIR_TOP && (pDirectionalComponent->nSide & 1U) == 0U)) + continue; + + arrDirectionPaddings[nSubDirection] += (pDirectionalComponent->vecSize[nSubDirection == DIR_BOTTOM ? SIDE_TOP : SIDE_LEFT] * (((pDirectionalComponent->nSide & 1U) == 1U) ? 0.5f : 1.0f) + this->flComponentSpacing); + } + } + + float& flSideDirectionPadding = arrDirectionPaddings[pDirectionalComponent->nDirection]; + + // append direction padding to offset + pComponent->vecOffset[pDirectionalComponent->nDirection & 1U] += ((pDirectionalComponent->nDirection < 2U) ? -flSideDirectionPadding : flSideDirectionPadding); + + // accumulate direction padding for next component + flSideDirectionPadding += pDirectionalComponent->vecSize[pDirectionalComponent->nDirection & 1U]; + + // accumulate spacing for next directional components + flSideDirectionPadding += this->flComponentSpacing; + } + else + { + // append side padding to offset + pComponent->vecOffset[pComponent->nSide & 1U] += ((pComponent->nSide < 2U) ? -(flSidePadding + pComponent->vecSize[pComponent->nSide]) : flSidePadding); + + // accumulate side padding for next component + flSidePadding += pComponent->vecSize[pComponent->nSide & 1U]; + + // accumulate spacing for next components + flSidePadding += this->flComponentSpacing; + } + + this->vecComponents.push_back(pComponent); +} + +ImVec2 OVERLAY::Context_t::GetTotalDirectionalSize(const EAlignSide nSide) const +{ + ImVec2 vecSideSize = {}; + + // @todo: we should peek max of bottom + side or top directions at horizontal sides + const float(&arrDirectionPaddings)[DIR_MAX] = this->arrSideDirectionPaddings[nSide]; + for (std::uint8_t nSubDirection = DIR_LEFT; nSubDirection < DIR_MAX; nSubDirection++) + vecSideSize[nSubDirection & 1U] += arrDirectionPaddings[nSubDirection]; + + return vecSideSize; +} + +void OVERLAY::Context_t::Render(ImDrawList* pDrawList, const ImVec4& vecBox) const +{ + bool bCenteredFirstSideDirectional[SIDE_MAX] = {}; + + for (CBaseComponent* const pComponent : this->vecComponents) + { + ImVec2 vecPosition = pComponent->GetBasePosition(vecBox); + + // check if the component is in the side that supports multi-component centering + if (pComponent->nSide == SIDE_TOP || pComponent->nSide == SIDE_BOTTOM) + { + // check if the component is directional + if (CBaseDirectionalComponent* const pDirectionalComponent = static_cast(pComponent); pDirectionalComponent->IsDirectional()) + { + const float(&arrDirectionPaddings)[DIR_MAX] = this->arrSideDirectionPaddings[pComponent->nSide]; + + // check if the component has horizontal direction + if (static_cast(pDirectionalComponent->nDirection) != static_cast(pDirectionalComponent->nSide)) + // add centering offset to the component's offset + pDirectionalComponent->vecOffset.x += (arrDirectionPaddings[DIR_LEFT] - arrDirectionPaddings[DIR_RIGHT]) * 0.5f; + // otherwise check if it's the first component in direction as side + else if (!bCenteredFirstSideDirectional[pDirectionalComponent->nSide]) + { + // add centering offset to the component's offset + pDirectionalComponent->vecOffset.x += (arrDirectionPaddings[DIR_LEFT] - arrDirectionPaddings[DIR_RIGHT]) * 0.5f; + + bCenteredFirstSideDirectional[pDirectionalComponent->nSide] = true; + } + } + } + + // add final component offset to the base position + vecPosition += pComponent->vecOffset; + + pComponent->Render(pDrawList, vecPosition); + } +} + +#pragma endregion +/* +void OVERLAY::OnFrameStageNotify(CCSPlayerController* pLocalController) +{ + // only render when in-game + if (!I::Engine->IsConnected() || !I::Engine->IsInGame()) + return; + + if (!C_GET(bool, Vars.bVisualOverlay)) + return; + + + enum ESortEntityType : int + { + SORT_ENTITY_NONE = -1, + SORT_ENTITY_PLAYER = 0, + }; + + struct SortEntityObject_t + { + SortEntityObject_t(C_BaseEntity* pEntity, CBaseHandle hEntity, float flDistance, ESortEntityType nSortType) : + pEntity(pEntity), hEntity(hEntity), flDistance(flDistance), nSortType(nSortType) { } + + C_BaseEntity* pEntity; + CBaseHandle hEntity; + float flDistance; + ESortEntityType nSortType; + }; + + const int nHighestIndex = I::GameResourceService->pGameEntitySystem->GetHighestEntityIndex(); + + std::vector vecSortedEntities = {}; + vecSortedEntities.reserve(nHighestIndex); + + // @note: 0 is resved for world entity 'CWorld' + for (int nIndex = 1; nIndex <= nHighestIndex; nIndex++) + { + C_BaseEntity* pEntity = I::GameResourceService->pGameEntitySystem->Get(nIndex); + if (pEntity == nullptr) + continue; + + SchemaClassInfoData_t* pClassInfo = nullptr; + pEntity->GetSchemaClassInfo(&pClassInfo); + if (pClassInfo == nullptr) + continue; + + const FNV1A_t uHashedName = FNV1A::Hash(pClassInfo->szNname); + + ESortEntityType nEntityType = SORT_ENTITY_NONE; + Vector_t vecOrigin = Vector_t(); + + if (uHashedName == FNV1A::HashConst("CCSPlayerController")) + { + nEntityType = SORT_ENTITY_PLAYER; + CCSPlayerController* pPlayer = reinterpret_cast(pEntity); + if (pPlayer == nullptr) + continue; + + vecOrigin = pPlayer->GetPawnOrigin(); + } + + // only add sortable entities + if (nEntityType != SORT_ENTITY_NONE) + vecSortedEntities.emplace_back(pEntity, pEntity->GetRefEHandle(), SDK::CameraPosition.DistTo(vecOrigin), nEntityType); + } + + // sort entities by distance to draw them from the farthest to the nearest + std::ranges::sort(vecSortedEntities.begin(), vecSortedEntities.end(), std::ranges::greater{}, &SortEntityObject_t::flDistance); + + for (auto& [pEntity, hEntity, flDistance, nSortType] : vecSortedEntities) + { + // if the handle is invalid, skip this entity + if (!hEntity.IsValid()) + continue; + + switch (nSortType) + { + case SORT_ENTITY_PLAYER: + { + CCSPlayerController* pPlayer = I::GameResourceService->pGameEntitySystem->Get(hEntity); + if (pPlayer == nullptr) + break; + + if (!pPlayer->IsPawnAlive()) + break; + + Player(pEntity, pLocalController, pPlayer, flDistance); + + break; + } + default: + break; + } + } +}*/ +#include + +static ImDrawList* g_pBackgroundDrawList = nullptr; +static CCSPlayerController* pLocalController = nullptr; +static C_CSPlayerPawn* pLocal = nullptr; + +#include "../legit/legit.h" + + +void F::VISUALS::OVERLAY::Render() +{ + if (!I::Engine->IsConnected() || !I::Engine->IsInGame()) return; + + if (!ImGui::GetBackgroundDrawList()) + return; + + CCSPlayerController* pLocalController = CCSPlayerController::GetLocalPlayerController(); + if (!pLocalController) + return; + + pLocal = I::GameResourceService->pGameEntitySystem->Get(pLocalController->GetPawnHandle()); + if (!pLocal) + return; + + + const std::lock_guard guard{ g_cachedEntitiesMutex }; + for (const auto& it : g_cachedEntities) { + + if (!it.m_draw) continue; + + C_BaseEntity* pEntity = I::GameResourceService->pGameEntitySystem->Get(it.m_handle); + if (pEntity == nullptr) + continue; + + // Additional sanity check. + CBaseHandle hEntity = pEntity->GetRefEHandle(); + if (hEntity != it.m_handle) continue; + + switch (it.m_type) { + case CachedEntity_t::PLAYER_CONTROLLER: + CCSPlayerController* pPlayer = I::GameResourceService->pGameEntitySystem->Get(hEntity); + if (pPlayer == nullptr) + break; + + OnPlayer(pPlayer, it.m_bbox); + + break; + } + } + +} + +void F::VISUALS::OVERLAY::CalculateBoundingBoxes() +{ + if (!I::Engine->IsConnected() || !I::Engine->IsInGame()) return; + + if (!pLocal) + return; + + if (!I::GameResourceService->pGameEntitySystem) return; + + const std::lock_guard guard{ g_cachedEntitiesMutex }; + + for (auto& it : g_cachedEntities) { + C_BaseEntity* pEntity = I::GameResourceService->pGameEntitySystem->Get(it.m_handle); + if (!pEntity) continue; + + // Additional sanity check. + CBaseHandle hEntity = pEntity->GetRefEHandle(); + if (hEntity != it.m_handle) continue; + + switch (it.m_type) { + + case CachedEntity_t::PLAYER_CONTROLLER: + + CCSPlayerController* pPlayer = I::GameResourceService->pGameEntitySystem->Get(hEntity); + if (pPlayer == nullptr) + break; + + C_CSPlayerPawn* pPlayerPawn = I::GameResourceService->pGameEntitySystem->Get(pPlayer->GetPawnHandle()); + if (pPlayerPawn == nullptr) + break; + + it.m_draw = pPlayerPawn->CalculateBoundingBox(it.m_bbox, false); + // it.hitboxpos[6] = pPlayerPawn->UpdateHitboxData(6); + break; + } + } +} +#include +#include "../../core/spoofcall/virtualization/VirtualizerSDK64.h" +namespace WeaponsIcons { + std::map gunIcons = { + {"weapon_p90", L"P"}, + {"weapon_mp9", L"O"}, + {"weapon_mp5sd", L"O"}, + {"weapon_m4a4", L"M"}, + {"weapon_knife", L"]"}, + {"weapon_knife_ct", L"]"}, + {"weapon_knife_t", L"]"}, + {"weapon_deagle", L"A"}, + {"weapon_elite", L"B"}, + {"weapon_fiveseven", L"C"}, + {"weapon_glock", L"D"}, + {"weapon_revolver", L"J"}, + {"weapon_hkp2000", L"E"}, + {"weapon_p250", L"F"}, + {"weapon_usp_silencer", L"G"}, + {"weapon_tec9", L"H"}, + {"weapon_cz75a", L"I"}, + {"weapon_mac10", L"K"}, + {"weapon_ump45", L"L"}, + {"weapon_bizon", L"M"}, + {"weapon_mp7", L"N"}, + {"weapon_galilar", L"Q"}, + {"weapon_famas", L"R"}, + {"weapon_m4a1_silencer", L"T"}, + {"weapon_m4a1", L"S"}, + {"weapon_aug", L"U"}, + {"weapon_sg556", L"V"}, + {"weapon_ak47", L"W"}, + {"weapon_g3sg1", L"X"}, + {"weapon_scar20", L"Y"}, + {"weapon_awp", L"Z"}, + {"weapon_ssg08", L"a"}, + {"weapon_xm1014", L"b"}, + {"weapon_sawedoff", L"c"}, + {"weapon_mag7", L"d"}, + {"weapon_nova", L"e"}, + {"weapon_negev", L"f"}, + {"weapon_m249", L"g"}, + {"weapon_taser", L"h"}, + {"weapon_flashbang", L"i"}, + {"weapon_hegrenade", L"j"}, + {"weapon_smokegrenade", L"k"}, + {"weapon_molotov", L"l"}, + {"weapon_decoy", L"m"}, + {"weapon_incgrenade", L"n"}, + {"weapon_c4", L"o"}, + {"weapon_bayonet", L"]"}, + {"weapon_knife_survival_bowie", L"]"}, + {"weapon_knife_butterfly", L"]"}, + {"weapon_knife_canis", L"]"}, + {"weapon_knife_cord", L"]"}, + {"weapon_knife_css", L"]"}, + {"weapon_knife_falchion", L"]"}, + {"weapon_knife_flip", L"]"}, + {"weapon_knife_gut", L"]"}, + {"weapon_knife_karambit", L"]"}, + {"weapon_knife_twinblade", L"]"}, + {"weapon_knife_kukri", L"]"}, + {"weapon_knife_m9_bayonet", L"]"}, + {"weapon_knife_outdoor", L"]"}, + {"weapon_knife_push", L"]"}, + {"weapon_knife_skeleton", L"]"}, + {"weapon_knife_stiletto", L"]"}, + {"weapon_knife_tactical", L"]"}, + {"weapon_knife_widowmaker", L"]"}, + {"weapon_knife_ursus", L"]"} + }; + + wchar_t get(std::string designerName) { + try { + return *gunIcons.at(designerName); + } + catch (std::out_of_range& const e) { + return NULL; + } + } +}; +static Vector_t get_target_angle(C_CSPlayerPawn* localplayer, Vector_t position) +{ + Vector_t eye_position = localplayer->GetEyePosition(); + Vector_t angle = position; + + angle.x = position.x - eye_position.x; + angle.y = position.y - eye_position.y; + angle.z = position.z - eye_position.z; + + angle.Normalizes(); + MATH::vec_angles(angle, &angle); + + angle.clamp(); + return angle; +} +void OVERLAY::CalculateSkeleton(Context_t ctx, CCSPlayerController* pPlayerController, C_CSPlayerPawn* player, const ImVec4& out) { + if (!pLocal) + return; + + auto game_scene_node = player->GetGameSceneNode(); + if (!game_scene_node) + return; + + auto skeleton = game_scene_node->GetSkeletonInstance(); + if (!skeleton) + return ; + auto model_state = &skeleton->GetModel(); + CStrongHandle model = model_state->m_hModel(); + auto model_skelet = &model->m_modelSkeleton(); + + if (!model_skelet) + return ; + + + skeleton->calc_world_space_bones(0, bone_flags::FLAG_HITBOX); + + const auto num_bones = model->GetHitboxesNum(); + auto bones = model_state->GetHitboxData(); + + /* this method is not proper fuck it*/ + /*CTransform* boneToWorldTransform = model_state->BoneTransform(); + const Matrix3x4_t boneMatTransform = boneToWorldTransform->quatOrientation.ToMatrix(boneToWorldTransform->vecPosition); + /////////////////////////////////////////////////////////////////////////////////*/ + + for (uint32_t i = 0; i < num_bones; i++) { + if (!(model->GetHitboxFlags(i) & bone_flags::FLAG_HITBOX)) { + continue; + } + + auto parent_index = model->GetHitboxParent(i); + if (parent_index == -1) + continue; + + ImVec2 start_scr, end_scr; + if (!D::WorldToScreen(bones[i].pos, start_scr) || !D::WorldToScreen(bones[parent_index].pos, end_scr)) + continue; + + ImGui::GetBackgroundDrawList()->AddLine(ImVec2(start_scr.x, start_scr.y), ImVec2(end_scr.x, end_scr.y), C_GET(ColorPickerVar_t, Vars.colSkeletonOutline).colValue.GetU32(), 2.f); + ImGui::GetBackgroundDrawList()->AddLine(ImVec2(start_scr.x, start_scr.y), ImVec2(end_scr.x, end_scr.y), C_GET(ColorPickerVar_t, Vars.colSkeleton).colValue.GetU32(), 1.f); +/* + char buf[16]; + sprintf_s(buf, "%d", i); // Convert bone ID to a string + ImVec2 textPos = ImVec2(start_scr.x + (end_scr.x - start_scr.x) * 0.5f, start_scr.y + (end_scr.y - start_scr.y) * 0.5f); + ImGui::GetBackgroundDrawList()->AddText(textPos, IM_COL32(255, 255, 255, 255), buf); +*/ + } +} +bool OVERLAY::IsValid(CCSPlayerController* player) { + if (!player) + return false; + + C_CSPlayerPawn* pPlayerPawn = I::GameResourceService->pGameEntitySystem->Get(player->GetPawnHandle()); + if (!pPlayerPawn) + return false; + + + auto idx = player->GetIdentity()->GetEntryIndex(); + if (pPlayerPawn->GetHealth() <= 0) { + static constexpr auto ALPHA_FREQUENCY = 255 / 70.f; + mAlpha[idx] -= ALPHA_FREQUENCY * I::GlobalVars->flFrameTime; + } + else { + if (player->GetGameSceneNode()->IsDormant()) { + if (mAlpha[idx] < 0.6f) { + mAlpha[idx] -= (1.0f / 1.0f) * I::GlobalVars->flFrameTime; + mAlpha[idx] = std::clamp(mAlpha[idx], 0.f, 0.6f); + } + else { + mAlpha[idx] -= (1.0f / 20.f) * I::GlobalVars->flFrameTime; + } + } + else { + mAlpha[idx] += (1.0f / 0.2f) * I::GlobalVars->flFrameTime; + mAlpha[idx] = std::clamp(mAlpha[idx], 0.f, 1.f); + } + } + return (mAlpha[idx] > 0.f); +} +#include "../cstrike/features/lagcomp/lagcomp.h" +#include "../cstrike/core/spoofcall/Invoker.h" +void OVERLAY::OnPlayer(CCSPlayerController* player, const ImVec4& out) { + + if (!pLocal) + return; + + if (!player) + return; + + C_CSPlayerPawn* pPlayerPawn = I::GameResourceService->pGameEntitySystem->Get(player->GetPawnHandle()); + if (pPlayerPawn == nullptr) + return; + + if (pPlayerPawn->GetHealth() <= 0) + return; + + if (!player->GetIdentity()) + return; + + Context_t context; + + bool bIsEnemy = (pLocal->IsOtherEnemy(pPlayerPawn)); + if (!bIsEnemy) + return; + + if (C_GET(bool, Vars.bSkeleton)) + F::VISUALS::OVERLAY::CalculateSkeleton(context, player, pPlayerPawn, out); + + if (!C_GET(bool, Vars.bVisualOverlay)) + return; + + /* bounding box esp */ + if (const auto& frameOverlayConfig = C_GET(FrameOverlayVar_t, Vars.overlayBox); frameOverlayConfig.bEnable) { + + context.AddBoxComponent(ImGui::GetBackgroundDrawList(), out, 1, frameOverlayConfig.flThickness, frameOverlayConfig.flRounding, frameOverlayConfig.colPrimary, frameOverlayConfig.colOutline, 1.f); + } + /* health bar esp */ + if (const auto& health_config = C_GET(BarOverlayVar_t, Vars.overlayHealthBar); health_config.bEnable) { + + auto hp = pPlayerPawn->GetHealth() / 100.f; + + // Adjust alpha value for health bar + + context.AddComponent(new CBarComponent(false, SIDE_LEFT, out, 100, hp, Vars.overlayHealthBar, 1.f)); + } + + /* name esp */ + if (const auto& name_config = C_GET(TextOverlayVar_t, Vars.overlayName); name_config.bEnable) { + const char* szName = CS_XOR(""); + + if (player->GetPlayerName() != nullptr) + szName = player->GetPlayerName(); + + context.AddComponent(new CTextComponent(true, false, SIDE_TOP, DIR_TOP, FONT::pEspName, szName, Vars.overlayName,1.f)); + } + + CPlayer_WeaponServices* WeaponServices = pPlayerPawn->GetWeaponServices(); + if (WeaponServices) { + auto ActiveWeapon = I::GameResourceService->pGameEntitySystem->Get(WeaponServices->m_hActiveWeapon()); + if (ActiveWeapon) { + + auto pAttributeContainer = &ActiveWeapon->m_AttributeManager(); + if (!pAttributeContainer) return; + + auto data = ActiveWeapon->datawep(); + if (!data) + return; + + auto szWeaponName = data->m_szName(); + + if (szWeaponName == CS_XOR("NULL")) + return; + + + const char* weaponPrefix = CS_XOR("weapon_"); + const char* weaponNameStart = strstr(szWeaponName, weaponPrefix); + const char* extractedWeaponName; + + if (!weaponNameStart) + extractedWeaponName = szWeaponName; + + weaponNameStart += strlen(weaponPrefix); + extractedWeaponName = weaponNameStart; + + if (const auto& weaponOverlayConfig = C_GET(TextOverlayVar_t, Vars.Weaponesp); weaponOverlayConfig.bEnable) { + + if (weaponOverlayConfig.bIcon) { +#ifdef _DEBUG + context.AddComponent(new CTextComponent(true, false, SIDE_BOTTOM, DIR_BOTTOM, FONT::pEspWepName, CS_XOR(extractedWeaponName), Vars.Weaponesp, 1.f)); +#else + const char weaponIconsName = WeaponsIcons::get(szWeaponName); + context.AddComponent(new CTextComponent(true, true, SIDE_BOTTOM, DIR_BOTTOM, FONT::pEspIcons, &weaponIconsName, Vars.Weaponesp, mAlpha[idx])); +#endif + } + else { + context.AddComponent(new CTextComponent(true, false, SIDE_BOTTOM, DIR_BOTTOM, FONT::pEspWepName, CS_XOR(extractedWeaponName), Vars.Weaponesp, 1.f)); + } + } + + if (const auto& ammo_config = C_GET(BarOverlayVar_t, Vars.AmmoBar); ammo_config.bEnable) { + auto VData = ActiveWeapon->GetVData(); + if (VData) { + const auto ammo = ActiveWeapon->clip1(); + const auto max_ammo = VData->m_iMaxClip1(); + + if (max_ammo > 0) { + const float factor = static_cast(ammo) / max_ammo; + // here we use the SIDE_BOTTOM which overrided max_ammo as the var used for factor limitation + context.AddComponent(new CBarComponent(true, SIDE_BOTTOM, out, max_ammo, factor, Vars.AmmoBar, 1.f)); + } + } + } + + } + } + /* Start Player Flags*/ + { + if (C_GET(unsigned int, Vars.pEspFlags) & FLAGS_ARMOR) { + if (pPlayerPawn->GetArmorValue() > 0) { + if (const auto& hk_cfg = C_GET(TextOverlayVar_t, Vars.HKFlag); hk_cfg.bEnable) { + const char* szName = CS_XOR("K"); + + if (player->m_bPawnHasHelmet()) + szName = CS_XOR("HK"); + + context.AddComponent(new CTextComponent(true, false, SIDE_RIGHT, DIR_RIGHT, FONT::pEspFlagsName, szName, Vars.HKFlag, 1.f)); + } + } + } + if (C_GET(unsigned int, Vars.pEspFlags) & FLAGS_DEFUSER) { + if (player->m_bPawnHasDefuser() > 0) { + if (const auto& kit_cfg = C_GET(TextOverlayVar_t, Vars.KitFlag); kit_cfg.bEnable) { + const char* szName = CS_XOR("KIT"); + context.AddComponent(new CTextComponent(true, false, SIDE_RIGHT, DIR_BOTTOM, FONT::pEspFlagsName, szName, Vars.KitFlag, 1.f)); + } + } + + } + } + + + context.Render(ImGui::GetBackgroundDrawList(), out); + +} + diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/visuals/overlay.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/visuals/overlay.h new file mode 100644 index 0000000..cca9975 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/features/visuals/overlay.h @@ -0,0 +1,183 @@ +#pragma once + +#include "../../common.h" + +// used: draw system +#include "../../utilities/draw.h" +#include "../../sdk/datatypes/vector.h" +#include "../../sdk/datatypes/transform.h" + +class CCSPlayerController; +class C_BaseEntity; +class C_CSPlayerPawn; +class CBaseHandle; +class CEntityInstance; + +namespace F::VISUALS::OVERLAY +{ + enum EAlignSide : std::uint8_t + { + SIDE_LEFT = 0U, + SIDE_TOP, + SIDE_RIGHT, + SIDE_BOTTOM, + SIDE_MAX + }; + + enum EAlignDirection : std::uint8_t + { + DIR_LEFT = 0U, + DIR_TOP, + DIR_RIGHT, + DIR_BOTTOM, + DIR_MAX = 4U // @todo: rework stuff based on this cuz one component can have only 3 possible directions at same time. vertical side: left & right + top | bottom, horizontal side: top & bottom + left | right + }; + + class CBaseComponent + { + public: + [[nodiscard]] virtual ImVec2 GetBasePosition(const ImVec4& box) const; + + [[nodiscard]] virtual bool IsDirectional() const + { + return false; + } + + virtual void Render(ImDrawList* pDrawList, const ImVec2& vecPosition) = 0; + + EAlignSide nSide = SIDE_TOP; + ImVec2 vecOffset = {}; + ImVec2 vecSize = {}; + }; + + class CBaseDirectionalComponent : public CBaseComponent + { + public: + [[nodiscard]] ImVec2 GetBasePosition(const ImVec4& box) const final; + + [[nodiscard]] bool IsDirectional() const final + { + return true; + } + + EAlignDirection nDirection = DIR_TOP; + }; + + class CBarComponent : public CBaseComponent + { + public: + CBarComponent(const bool bIsMenuItem, const EAlignSide nAlignSide, const ImVec4& vecBox, const float max_limit, const float flProgressFactor, const std::size_t uOverlayVarIndex, const float alphaMultiplier = 1.f); + + void Render(ImDrawList* pDrawList, const ImVec2& vecPosition) final; + + private: + bool bIsMenuItem = false; + float alphaMultiplier = 1.f; + // bar progress + float flProgressFactor = 0.0f; + + //maxlimit + float max_limit = 0.0f; + + std::string value_sz; + int value; + // hovered state for context menu + bool bIsHovered = false; + // config variables + std::size_t uOverlayVarIndex = 0ULL; + }; + + class CTextComponent : public CBaseDirectionalComponent + { + public: + CTextComponent(const bool bIsMenuItem, const bool bIcon, const EAlignSide nAlignSide, const EAlignDirection nAlignDirection, const ImFont* pFont, const char* szText, const std::size_t uOverlayVarIndex, const float alphaM = 1.f); + ~CTextComponent(); + + void Render(ImDrawList* pDrawList, const ImVec2& vecPosition) final; + + private: + float alphaMultiplier = 1.f; + bool bIsMenuItem = false; + bool bIcon = false; + // font & text for displaying + const ImFont* pFont = nullptr; + char* szText = nullptr; + // hovered state for context menu + bool bIsHovered = false; + // config variables + std::size_t uOverlayVarIndex = 0ULL; + }; + + /* + * overlay component auto-positioning system + * @note: was designed to support the reordering of components that can be implemented with minimal effort + * + * currently supported next sides and sub-directions: + * + * DIR_TOP + * ^ + * | + * DIR_LEFT <-o-> DIR_RIGHT + * DIR_LEFT <-o *---------* o-> DIR_RIGHT + * | | | | + * v | | v + * DIR_BOTTOM | | DIR_BOTTOM + * | | + * DIR_TOP | | DIR_TOP + * ^ | | ^ + * | | | | + * o *---------* o + * DIR_LEFT <-o-> DIR_RIGHT + * | + * v + * DIR_BOTTOM + */ + struct Context_t + { + /* @section: special case components */ + /// add the box component to overlay + /// @remarks: current implementation expects this to be first component, it's an immediate rendering component + /// @return: if the box component is hovered + bool AddBoxComponent(ImDrawList* pDrawList, const ImVec4& vecBox, const int nType, float flThickness, float flRounding, const Color_t& colPrimary, const Color_t& colOutline , const float alpha = 1.f); + /// add the frame component to overlay + /// @remarks: current implementation expects this to be added after components that should be inside it, it's an immediate rendering component + /// @returns: size constraints of the added frame + ImVec4 AddFrameComponent(ImDrawList* pDrawList, const ImVec2& vecScreen, const EAlignSide nSide, const Color_t& colBackground, const float flRounding, const ImDrawFlags nRoundingCorners); + + /* @section: common components */ + /// add new component to overlay + /// @param[in] pComponent pointer to the one of supported component types + void AddComponent(CBaseComponent* pComponent); + + /* @section: get */ + /// @returns: size of the all directional components currently assigned to @a'nSide' + [[nodiscard]] ImVec2 GetTotalDirectionalSize(const EAlignSide nSide) const; + + // calculate final position of components and render them + void Render(ImDrawList* pDrawList, const ImVec4& vecBox) const; + + private: + // storage of all components + std::vector vecComponents = {}; + // additional spacing between components + float flComponentSpacing = 1.0f; + // summary padding of all align sides + float arrSidePaddings[SIDE_MAX] = {}; + // summary padding for all align directions of all align sides + float arrSideDirectionPaddings[SIDE_MAX][DIR_MAX] = {}; + }; + + /* @section: callbacks */ + void OnFrameStageNotify(CCSPlayerController* pLocalController); + + /* @section: main */ + // draw box, bars, text infos, etc at player position + + void Render(); + void CalculateBoundingBoxes(); + void CalculateSkeleton(Context_t ctx, CCSPlayerController* pPlayerController, C_CSPlayerPawn* pPlayer, const ImVec4& out); + void OnPlayer(CCSPlayerController* pEntity, const ImVec4& out); + bool IsValid(CCSPlayerController* pEntity); + + +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/font.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/font.h new file mode 100644 index 0000000..6962437 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/font.h @@ -0,0 +1,10172 @@ +unsigned char lexend_bold[] = +{ +0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x47, 0x44, 0x45, 0x46, +0x4F, 0xAD, 0x4D, 0x04, 0x00, 0x00, 0x02, 0x24, 0x00, 0x00, 0x01, 0x30, 0x47, 0x50, 0x4F, 0x53, +0x86, 0x47, 0x4D, 0x57, 0x00, 0x00, 0x4F, 0x7C, 0x00, 0x00, 0x50, 0xA2, 0x47, 0x53, 0x55, 0x42, +0xD0, 0x82, 0x6E, 0x2A, 0x00, 0x00, 0x18, 0x64, 0x00, 0x00, 0x0C, 0xF8, 0x4F, 0x53, 0x2F, 0x32, +0x83, 0xE0, 0x57, 0x4E, 0x00, 0x00, 0x01, 0xC4, 0x00, 0x00, 0x00, 0x60, 0x53, 0x54, 0x41, 0x54, +0x79, 0x97, 0x6B, 0x49, 0x00, 0x00, 0x01, 0x60, 0x00, 0x00, 0x00, 0x2A, 0x63, 0x6D, 0x61, 0x70, +0x77, 0x18, 0x90, 0xFD, 0x00, 0x00, 0x10, 0x4C, 0x00, 0x00, 0x08, 0x16, 0x67, 0x61, 0x73, 0x70, +0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0x08, 0x67, 0x6C, 0x79, 0x66, +0x6B, 0xE1, 0xBF, 0x90, 0x00, 0x00, 0xA0, 0x20, 0x00, 0x00, 0x93, 0x8A, 0x68, 0x65, 0x61, 0x64, +0x1B, 0x1E, 0x86, 0xFA, 0x00, 0x00, 0x01, 0x8C, 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, 0x65, 0x61, +0x08, 0x91, 0x06, 0x1B, 0x00, 0x00, 0x01, 0x3C, 0x00, 0x00, 0x00, 0x24, 0x68, 0x6D, 0x74, 0x78, +0x32, 0xCB, 0x90, 0xD7, 0x00, 0x00, 0x25, 0x5C, 0x00, 0x00, 0x0D, 0x34, 0x6C, 0x6F, 0x63, 0x61, +0xF2, 0x5E, 0x15, 0xF2, 0x00, 0x00, 0x09, 0xB0, 0x00, 0x00, 0x06, 0x9C, 0x6D, 0x61, 0x78, 0x70, +0x03, 0x61, 0x00, 0xD2, 0x00, 0x00, 0x01, 0x1C, 0x00, 0x00, 0x00, 0x20, 0x6E, 0x61, 0x6D, 0x65, +0xC9, 0x23, 0xF8, 0x52, 0x00, 0x00, 0x03, 0x54, 0x00, 0x00, 0x06, 0x5A, 0x70, 0x6F, 0x73, 0x74, +0x0C, 0x72, 0x98, 0x72, 0x00, 0x00, 0x32, 0x90, 0x00, 0x00, 0x1C, 0xEB, 0x70, 0x72, 0x65, 0x70, +0x68, 0x06, 0x8C, 0x85, 0x00, 0x00, 0x01, 0x0C, 0x00, 0x00, 0x00, 0x07, 0xB8, 0x01, 0xFF, 0x85, +0xB0, 0x04, 0x8D, 0x00, 0x00, 0x01, 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x01, 0x00, 0x00, +0x03, 0x4D, 0x00, 0x64, 0x00, 0x07, 0x00, 0x6C, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, +0x03, 0xE8, 0xFF, 0x06, 0x00, 0x00, 0x05, 0xC0, 0xFF, 0x29, 0xFE, 0x07, 0x05, 0x7D, 0x00, 0x01, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x4D, +0x00, 0x01, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x01, 0x00, 0x00, +0x00, 0x1C, 0x00, 0x02, 0x77, 0x67, 0x68, 0x74, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, +0x00, 0x00, 0x00, 0x00, 0x01, 0x08, 0x02, 0xBC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, +0x00, 0x01, 0x01, 0xCB, 0x82, 0xFE, 0x12, 0x3E, 0x5F, 0x0F, 0x3C, 0xF5, 0x00, 0x03, 0x03, 0xE8, +0x00, 0x00, 0x00, 0x00, 0xDA, 0x36, 0x6A, 0x60, 0x00, 0x00, 0x00, 0x00, 0xDD, 0x29, 0xD6, 0x95, +0xFF, 0x29, 0xFE, 0xDA, 0x05, 0x7D, 0x04, 0x7D, 0x00, 0x01, 0x00, 0x06, 0x00, 0x02, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x02, 0x4C, 0x02, 0xBC, 0x00, 0x05, 0x00, 0x00, 0x02, 0x8A, +0x02, 0x58, 0x00, 0x00, 0x00, 0x4B, 0x02, 0x8A, 0x02, 0x58, 0x00, 0x00, 0x01, 0x5E, 0x00, 0x32, +0x01, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA0, 0x00, +0x00, 0xFF, 0x40, 0x00, 0x20, 0x5B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4E, 0x4F, +0x4E, 0x45, 0x00, 0xA0, 0x00, 0x0D, 0xFB, 0x02, 0x03, 0xE8, 0xFF, 0x06, 0x00, 0x00, 0x04, 0xB0, +0x01, 0x86, 0x20, 0x00, 0x01, 0x93, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0D, 0x02, 0xBC, 0x00, 0x00, +0x00, 0x20, 0x00, 0x03, 0x00, 0x01, 0x00, 0x02, 0x00, 0xBA, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, +0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x2E, 0x00, 0x00, +0x00, 0x18, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0x02, 0x03, 0x0D, 0x03, 0x43, 0x00, 0x02, +0x00, 0x03, 0x02, 0xEA, 0x02, 0xFA, 0x00, 0x00, 0x02, 0xFC, 0x03, 0x0C, 0x00, 0x11, 0x03, 0x23, +0x03, 0x42, 0x00, 0x22, 0x00, 0x01, 0x00, 0x08, 0x03, 0x0E, 0x03, 0x0F, 0x03, 0x10, 0x03, 0x11, +0x03, 0x13, 0x03, 0x14, 0x03, 0x44, 0x03, 0x45, 0x00, 0x12, 0x00, 0x07, 0x00, 0x5E, 0x00, 0x50, +0x00, 0x42, 0x00, 0x34, 0x00, 0x2C, 0x00, 0x24, 0x00, 0x1C, 0x00, 0x02, 0x00, 0x01, 0x02, 0x19, +0x02, 0x1F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x01, 0x5C, 0x00, 0x01, 0x00, 0x04, +0x00, 0x01, 0x01, 0x62, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x01, 0xFD, 0x00, 0x02, 0x00, 0x0A, +0x00, 0x06, 0x00, 0x01, 0x02, 0xD7, 0x00, 0x01, 0x01, 0x6B, 0x00, 0x02, 0x00, 0x0A, 0x00, 0x06, +0x00, 0x01, 0x03, 0x7C, 0x00, 0x01, 0x01, 0xBE, 0x00, 0x02, 0x00, 0x0A, 0x00, 0x06, 0x00, 0x01, +0x02, 0xCC, 0x00, 0x01, 0x01, 0x67, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x01, 0x85, 0x00, 0x02, +0x00, 0x13, 0x00, 0x01, 0x00, 0x7A, 0x00, 0x01, 0x00, 0x7C, 0x00, 0x7E, 0x00, 0x01, 0x00, 0x80, +0x01, 0x2B, 0x00, 0x01, 0x01, 0x2D, 0x01, 0x48, 0x00, 0x01, 0x01, 0x4A, 0x01, 0x68, 0x00, 0x01, +0x01, 0x6A, 0x01, 0x80, 0x00, 0x01, 0x01, 0x82, 0x01, 0x84, 0x00, 0x01, 0x01, 0x86, 0x02, 0x18, +0x00, 0x01, 0x02, 0x19, 0x02, 0x1F, 0x00, 0x02, 0x02, 0xB5, 0x02, 0xB5, 0x00, 0x01, 0x02, 0xB7, +0x02, 0xB7, 0x00, 0x01, 0x02, 0xB9, 0x02, 0xB9, 0x00, 0x01, 0x02, 0xBE, 0x02, 0xBE, 0x00, 0x01, +0x02, 0xC4, 0x02, 0xC6, 0x00, 0x01, 0x02, 0xCA, 0x02, 0xCA, 0x00, 0x01, 0x02, 0xDE, 0x02, 0xDE, +0x00, 0x01, 0x02, 0xEA, 0x02, 0xFA, 0x00, 0x03, 0x02, 0xFC, 0x03, 0x15, 0x00, 0x03, 0x03, 0x23, +0x03, 0x46, 0x00, 0x03, 0x00, 0x00, 0x00, 0x21, 0x01, 0x92, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x00, 0x00, 0x00, 0xA2, 0x04, 0x26, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x01, 0x00, 0x16, +0x04, 0x10, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x02, 0x00, 0x08, 0x04, 0x08, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x00, 0x03, 0x00, 0x34, 0x03, 0xD4, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x00, 0x04, 0x00, 0x20, 0x03, 0xB4, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x05, 0x00, 0x1A, +0x03, 0x9A, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x06, 0x00, 0x1E, 0x03, 0x7C, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x00, 0x08, 0x00, 0x0C, 0x03, 0x70, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x00, 0x09, 0x00, 0x44, 0x03, 0x2C, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x0B, 0x00, 0x2C, +0x03, 0x00, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x0C, 0x00, 0x2C, 0x03, 0x00, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x00, 0x0D, 0x01, 0x22, 0x01, 0xDE, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x00, 0x0E, 0x00, 0x36, 0x01, 0xA8, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x19, 0x00, 0x14, +0x01, 0x94, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x00, 0x00, 0x0C, 0x01, 0x88, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x01, 0x02, 0x00, 0x08, 0x01, 0x80, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x01, 0x03, 0x00, 0x14, 0x01, 0x6C, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x04, 0x00, 0x0A, +0x01, 0x62, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x05, 0x00, 0x0E, 0x01, 0x54, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x01, 0x06, 0x00, 0x0C, 0x01, 0x48, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x01, 0x07, 0x00, 0x10, 0x01, 0x38, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x08, 0x00, 0x08, +0x04, 0x08, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x09, 0x00, 0x12, 0x01, 0x26, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x01, 0x0A, 0x00, 0x0A, 0x01, 0x1C, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x01, 0x0B, 0x00, 0x1E, 0x00, 0xFE, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x0C, 0x00, 0x2A, +0x00, 0xD4, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x0D, 0x00, 0x20, 0x00, 0xB4, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x01, 0x0E, 0x00, 0x24, 0x00, 0x90, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x01, 0x0F, 0x00, 0x22, 0x00, 0x6E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x10, 0x00, 0x26, +0x00, 0x48, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x11, 0x00, 0x1E, 0x03, 0x7C, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x01, 0x12, 0x00, 0x28, 0x00, 0x20, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x01, 0x13, 0x00, 0x20, 0x00, 0x00, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, +0x00, 0x64, 0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, 0x00, 0x42, 0x00, 0x6C, +0x00, 0x61, 0x00, 0x63, 0x00, 0x6B, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, +0x00, 0x64, 0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, 0x00, 0x45, 0x00, 0x78, +0x00, 0x74, 0x00, 0x72, 0x00, 0x61, 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x4C, +0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x44, 0x00, 0x65, 0x00, 0x63, +0x00, 0x61, 0x00, 0x2D, 0x00, 0x53, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x42, 0x00, 0x6F, +0x00, 0x6C, 0x00, 0x64, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, +0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, 0x00, 0x4D, 0x00, 0x65, 0x00, 0x64, +0x00, 0x69, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, +0x00, 0x64, 0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, 0x00, 0x52, 0x00, 0x65, +0x00, 0x67, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, +0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, +0x00, 0x4C, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, +0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, +0x00, 0x45, 0x00, 0x78, 0x00, 0x74, 0x00, 0x72, 0x00, 0x61, 0x00, 0x4C, 0x00, 0x69, 0x00, 0x67, +0x00, 0x68, 0x00, 0x74, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, +0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, +0x00, 0x6E, 0x00, 0x42, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x63, 0x00, 0x6B, 0x00, 0x45, 0x00, 0x78, +0x00, 0x74, 0x00, 0x72, 0x00, 0x61, 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x53, +0x00, 0x65, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x4D, +0x00, 0x65, 0x00, 0x64, 0x00, 0x69, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, +0x00, 0x75, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, 0x00, 0x4C, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, +0x00, 0x74, 0x00, 0x45, 0x00, 0x78, 0x00, 0x74, 0x00, 0x72, 0x00, 0x61, 0x00, 0x4C, 0x00, 0x69, +0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x57, +0x00, 0x65, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, +0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x68, +0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x2F, 0x00, 0x2F, 0x00, 0x73, +0x00, 0x63, 0x00, 0x72, 0x00, 0x69, 0x00, 0x70, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x73, +0x00, 0x69, 0x00, 0x6C, 0x00, 0x2E, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x67, 0x00, 0x2F, 0x00, 0x4F, +0x00, 0x46, 0x00, 0x4C, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x46, +0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x53, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x74, +0x00, 0x77, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, +0x00, 0x6C, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, +0x00, 0x20, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, +0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x53, 0x00, 0x49, 0x00, 0x4C, 0x00, 0x20, 0x00, 0x4F, +0x00, 0x70, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, +0x00, 0x20, 0x00, 0x4C, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, +0x00, 0x2C, 0x00, 0x20, 0x00, 0x56, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6F, +0x00, 0x6E, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, +0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, +0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, +0x00, 0x76, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, +0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, +0x00, 0x46, 0x00, 0x41, 0x00, 0x51, 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x3A, 0x00, 0x20, +0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x2F, 0x00, 0x2F, +0x00, 0x73, 0x00, 0x63, 0x00, 0x72, 0x00, 0x69, 0x00, 0x70, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2E, +0x00, 0x73, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x2E, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x67, 0x00, 0x2F, +0x00, 0x4F, 0x00, 0x46, 0x00, 0x4C, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x73, +0x00, 0x3A, 0x00, 0x2F, 0x00, 0x2F, 0x00, 0x77, 0x00, 0x77, 0x00, 0x77, 0x00, 0x2E, 0x00, 0x6C, +0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x2E, 0x00, 0x63, 0x00, 0x6F, +0x00, 0x6D, 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x6E, 0x00, 0x69, 0x00, 0x65, 0x00, 0x20, +0x00, 0x53, 0x00, 0x68, 0x00, 0x61, 0x00, 0x76, 0x00, 0x65, 0x00, 0x72, 0x00, 0x2D, 0x00, 0x54, +0x00, 0x72, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x70, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, +0x00, 0x6F, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 0x4A, 0x00, 0x6F, 0x00, 0x63, +0x00, 0x6B, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, +0x00, 0x64, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x44, +0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, +0x00, 0x56, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, +0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x30, 0x00, 0x37, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, +0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, +0x00, 0x20, 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, +0x00, 0x30, 0x00, 0x37, 0x00, 0x3B, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x45, 0x00, 0x3B, +0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x44, 0x00, 0x65, +0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x42, +0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, +0x00, 0x64, 0x00, 0x20, 0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x43, 0x00, 0x6F, +0x00, 0x70, 0x00, 0x79, 0x00, 0x72, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x20, +0x00, 0x32, 0x00, 0x30, 0x00, 0x31, 0x00, 0x39, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, +0x00, 0x20, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, +0x00, 0x50, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6A, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x20, +0x00, 0x41, 0x00, 0x75, 0x00, 0x74, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, +0x00, 0x28, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x2F, +0x00, 0x2F, 0x00, 0x67, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x75, 0x00, 0x62, 0x00, 0x2E, +0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x2F, 0x00, 0x67, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x67, +0x00, 0x6C, 0x00, 0x65, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2F, +0x00, 0x6C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x29, 0x00, 0x00, +0x00, 0x00, 0x00, 0x36, 0x00, 0x5F, 0x00, 0x6A, 0x00, 0x75, 0x00, 0x80, 0x00, 0x8E, 0x00, 0x99, +0x00, 0xA4, 0x00, 0xAF, 0x00, 0xBA, 0x00, 0xC5, 0x00, 0xD1, 0x00, 0xDF, 0x00, 0xEB, 0x00, 0xF7, +0x01, 0x02, 0x01, 0x0D, 0x01, 0x18, 0x01, 0x23, 0x01, 0x2E, 0x01, 0x39, 0x01, 0x44, 0x01, 0x4F, +0x01, 0x5B, 0x01, 0x66, 0x01, 0x75, 0x01, 0x80, 0x01, 0xA3, 0x01, 0xAF, 0x01, 0xEB, 0x02, 0x23, +0x02, 0x2F, 0x02, 0x3B, 0x02, 0x47, 0x02, 0x57, 0x02, 0x63, 0x02, 0x6F, 0x02, 0x9A, 0x02, 0xA6, +0x02, 0xB6, 0x02, 0xE9, 0x02, 0xF5, 0x02, 0xFD, 0x03, 0x09, 0x03, 0x15, 0x03, 0x21, 0x03, 0x31, +0x03, 0x4A, 0x03, 0x55, 0x03, 0x60, 0x03, 0x6B, 0x03, 0x79, 0x03, 0x84, 0x03, 0x90, 0x03, 0x9E, +0x03, 0xA9, 0x03, 0xB5, 0x03, 0xC0, 0x03, 0xCB, 0x03, 0xD6, 0x03, 0xE1, 0x03, 0xEC, 0x03, 0xF7, +0x04, 0x02, 0x04, 0x0D, 0x04, 0x18, 0x04, 0x27, 0x04, 0x36, 0x04, 0x42, 0x04, 0x4D, 0x04, 0x67, +0x04, 0xAA, 0x04, 0xB6, 0x04, 0xC2, 0x04, 0xCE, 0x04, 0xDA, 0x04, 0xE6, 0x04, 0xF2, 0x05, 0x0C, +0x05, 0x38, 0x05, 0x44, 0x05, 0x50, 0x05, 0x5C, 0x05, 0x71, 0x05, 0x7D, 0x05, 0x88, 0x05, 0x93, +0x05, 0x9E, 0x05, 0xA9, 0x05, 0xB4, 0x05, 0xBF, 0x05, 0xCA, 0x05, 0xD5, 0x05, 0xE0, 0x05, 0xEB, +0x05, 0xF6, 0x06, 0x01, 0x06, 0x0C, 0x06, 0x17, 0x06, 0x22, 0x06, 0x4C, 0x06, 0x58, 0x06, 0x76, +0x06, 0x81, 0x06, 0x90, 0x06, 0x9C, 0x06, 0xA7, 0x06, 0xB3, 0x06, 0xBE, 0x06, 0xCA, 0x06, 0xD5, +0x06, 0xE1, 0x06, 0xEC, 0x07, 0x04, 0x07, 0x2A, 0x07, 0x36, 0x07, 0x5C, 0x07, 0x68, 0x07, 0x74, +0x07, 0x80, 0x07, 0x8C, 0x07, 0x98, 0x07, 0xA4, 0x07, 0xD3, 0x07, 0xDF, 0x07, 0xEB, 0x07, 0xF7, +0x08, 0x2C, 0x08, 0x66, 0x08, 0x72, 0x08, 0x7E, 0x08, 0x8A, 0x08, 0x96, 0x08, 0xA2, 0x08, 0xB2, +0x08, 0xBE, 0x08, 0xCA, 0x08, 0xD6, 0x08, 0xE1, 0x08, 0xED, 0x08, 0xFD, 0x09, 0x0D, 0x09, 0x19, +0x09, 0x25, 0x09, 0x31, 0x09, 0x80, 0x09, 0x8C, 0x09, 0x98, 0x09, 0xA4, 0x09, 0xB0, 0x09, 0xBC, +0x09, 0xC8, 0x09, 0xD4, 0x09, 0xE0, 0x09, 0xF0, 0x0A, 0x00, 0x0A, 0x5A, 0x0A, 0x9C, 0x0A, 0xA8, +0x0A, 0xB4, 0x0A, 0xC4, 0x0A, 0xD4, 0x0A, 0xE4, 0x0B, 0x17, 0x0B, 0x3D, 0x0B, 0x64, 0x0B, 0xA7, +0x0B, 0xD5, 0x0B, 0xE0, 0x0B, 0xEB, 0x0B, 0xF6, 0x0C, 0x01, 0x0C, 0x0C, 0x0C, 0x17, 0x0C, 0x22, +0x0C, 0x70, 0x0C, 0x7B, 0x0C, 0x86, 0x0C, 0x91, 0x0C, 0xA0, 0x0C, 0xAB, 0x0C, 0xB6, 0x0C, 0xC1, +0x0C, 0xCC, 0x0C, 0xD7, 0x0C, 0xE5, 0x0D, 0x3C, 0x0D, 0x7A, 0x0D, 0x8B, 0x0D, 0xA3, 0x0D, 0xAE, +0x0D, 0xB9, 0x0D, 0xC4, 0x0D, 0xCF, 0x0D, 0xDA, 0x0D, 0xFE, 0x0E, 0x0A, 0x0E, 0x16, 0x0E, 0x22, +0x0E, 0x2E, 0x0E, 0x39, 0x0E, 0x45, 0x0E, 0x51, 0x0E, 0x5D, 0x0E, 0x69, 0x0E, 0x99, 0x0E, 0xA5, +0x0E, 0xB1, 0x0E, 0xBD, 0x0E, 0xC9, 0x0E, 0xD5, 0x0E, 0xE1, 0x0E, 0xED, 0x0E, 0xF9, 0x0F, 0x09, +0x0F, 0x4D, 0x0F, 0x59, 0x0F, 0x65, 0x0F, 0x75, 0x0F, 0x96, 0x0F, 0xCF, 0x0F, 0xDB, 0x0F, 0xE7, +0x0F, 0xF3, 0x0F, 0xFF, 0x10, 0x22, 0x10, 0x3D, 0x10, 0x48, 0x10, 0x53, 0x10, 0x5E, 0x10, 0x69, +0x10, 0x74, 0x10, 0x7F, 0x10, 0x8A, 0x10, 0x95, 0x10, 0xA0, 0x10, 0xB9, 0x10, 0xC4, 0x10, 0xCF, +0x10, 0xDA, 0x10, 0xE5, 0x10, 0xF8, 0x11, 0x07, 0x11, 0x13, 0x11, 0x1E, 0x11, 0x29, 0x11, 0x34, +0x11, 0x3F, 0x11, 0x4B, 0x11, 0x56, 0x11, 0x61, 0x11, 0x6C, 0x11, 0x77, 0x11, 0x82, 0x11, 0x8D, +0x11, 0x98, 0x11, 0xA3, 0x11, 0xAF, 0x11, 0xBA, 0x11, 0xDE, 0x11, 0xEA, 0x11, 0xF6, 0x12, 0x02, +0x12, 0x3F, 0x12, 0x4A, 0x12, 0x55, 0x12, 0x60, 0x12, 0x6E, 0x12, 0x79, 0x12, 0x84, 0x12, 0x8F, +0x12, 0x9A, 0x12, 0xA5, 0x12, 0xB1, 0x12, 0xBF, 0x12, 0xCA, 0x12, 0xD6, 0x12, 0xE1, 0x12, 0xEC, +0x12, 0xF7, 0x13, 0x02, 0x13, 0x0D, 0x13, 0x18, 0x13, 0x23, 0x13, 0x2E, 0x13, 0x3A, 0x13, 0x45, +0x13, 0x54, 0x13, 0x5F, 0x13, 0xD5, 0x13, 0xE1, 0x14, 0x1F, 0x14, 0x51, 0x14, 0x5C, 0x14, 0x67, +0x14, 0x72, 0x14, 0x80, 0x14, 0x8B, 0x14, 0x96, 0x14, 0xD4, 0x15, 0x26, 0x15, 0x32, 0x15, 0x77, +0x15, 0x82, 0x15, 0x8D, 0x15, 0x9D, 0x15, 0xD9, 0x15, 0xE4, 0x15, 0xEF, 0x15, 0xFA, 0x16, 0x08, +0x16, 0x13, 0x16, 0x1E, 0x16, 0x2C, 0x16, 0x37, 0x16, 0x42, 0x16, 0x4D, 0x16, 0x58, 0x16, 0x63, +0x16, 0x6E, 0x16, 0x79, 0x16, 0x84, 0x16, 0x8F, 0x16, 0x9A, 0x16, 0xA5, 0x16, 0xB0, 0x16, 0xBB, +0x17, 0x15, 0x17, 0x20, 0x17, 0x5A, 0x17, 0x82, 0x17, 0xD4, 0x17, 0xDF, 0x17, 0xEA, 0x17, 0xF5, +0x18, 0x00, 0x18, 0x0B, 0x18, 0x16, 0x18, 0x42, 0x18, 0x76, 0x18, 0x81, 0x18, 0x8C, 0x18, 0x97, +0x18, 0xB3, 0x18, 0xBF, 0x18, 0xCB, 0x18, 0xD7, 0x18, 0xE3, 0x18, 0xEF, 0x18, 0xFB, 0x19, 0x07, +0x19, 0x13, 0x19, 0x1F, 0x19, 0x2A, 0x19, 0x36, 0x19, 0x42, 0x19, 0x4E, 0x19, 0x5A, 0x19, 0x66, +0x19, 0x76, 0x19, 0x82, 0x19, 0xA9, 0x19, 0xC0, 0x19, 0xCB, 0x19, 0xE7, 0x19, 0xF2, 0x1A, 0x0E, +0x1A, 0x1A, 0x1A, 0x25, 0x1A, 0x31, 0x1A, 0x3C, 0x1A, 0x48, 0x1A, 0x53, 0x1A, 0x5F, 0x1A, 0x6A, +0x1A, 0x7F, 0x1A, 0xC6, 0x1A, 0xD2, 0x1A, 0xFE, 0x1B, 0x09, 0x1B, 0x15, 0x1B, 0x20, 0x1B, 0x2B, +0x1B, 0x36, 0x1B, 0x41, 0x1B, 0x76, 0x1B, 0x82, 0x1B, 0x8D, 0x1B, 0x98, 0x1B, 0xCA, 0x1B, 0xFE, +0x1C, 0x09, 0x1C, 0x14, 0x1C, 0x1F, 0x1C, 0x2A, 0x1C, 0x36, 0x1C, 0x44, 0x1C, 0x4F, 0x1C, 0x5B, +0x1C, 0x66, 0x1C, 0x71, 0x1C, 0x7C, 0x1C, 0x8B, 0x1C, 0x9A, 0x1C, 0xA5, 0x1C, 0xB0, 0x1C, 0xBB, +0x1D, 0x01, 0x1D, 0x0C, 0x1D, 0x17, 0x1D, 0x22, 0x1D, 0x2D, 0x1D, 0x38, 0x1D, 0x43, 0x1D, 0x4E, +0x1D, 0x59, 0x1D, 0x64, 0x1D, 0x6F, 0x1D, 0xC1, 0x1D, 0xFD, 0x1E, 0x08, 0x1E, 0x13, 0x1E, 0x1E, +0x1E, 0x29, 0x1E, 0x38, 0x1E, 0xA2, 0x1E, 0xDE, 0x1F, 0x1B, 0x1F, 0x5A, 0x1F, 0x7E, 0x1F, 0x89, +0x1F, 0x94, 0x1F, 0x9F, 0x1F, 0xAA, 0x1F, 0xB5, 0x1F, 0xC0, 0x1F, 0xCB, 0x20, 0x20, 0x20, 0x2B, +0x20, 0x36, 0x20, 0x41, 0x20, 0x4C, 0x20, 0x57, 0x20, 0x62, 0x20, 0x6D, 0x20, 0x78, 0x20, 0x83, +0x20, 0x91, 0x20, 0xE1, 0x20, 0xF4, 0x21, 0x0D, 0x21, 0x19, 0x21, 0x24, 0x21, 0x2F, 0x21, 0x3A, +0x21, 0x45, 0x21, 0x50, 0x21, 0x79, 0x21, 0x84, 0x21, 0x8F, 0x21, 0x9A, 0x21, 0xA5, 0x21, 0xB0, +0x21, 0xBB, 0x21, 0xC6, 0x21, 0xD1, 0x21, 0xDC, 0x22, 0x12, 0x22, 0x1D, 0x22, 0x28, 0x22, 0x33, +0x22, 0x3E, 0x22, 0x49, 0x22, 0x54, 0x22, 0x5F, 0x22, 0x6A, 0x22, 0x79, 0x22, 0x85, 0x22, 0x90, +0x22, 0x9B, 0x22, 0xA6, 0x22, 0xBA, 0x22, 0xDB, 0x22, 0xE7, 0x22, 0xF3, 0x22, 0xFF, 0x23, 0x0B, +0x23, 0x2D, 0x23, 0x50, 0x23, 0x5B, 0x23, 0x66, 0x23, 0x71, 0x23, 0x7C, 0x23, 0x88, 0x23, 0x93, +0x23, 0x9E, 0x23, 0xA9, 0x23, 0xB4, 0x23, 0xCC, 0x23, 0xD7, 0x23, 0xE2, 0x23, 0xED, 0x23, 0xF8, +0x24, 0x0C, 0x24, 0x51, 0x24, 0x5C, 0x24, 0x67, 0x24, 0x72, 0x24, 0x80, 0x24, 0x8B, 0x24, 0x96, +0x24, 0xA1, 0x24, 0xAC, 0x24, 0xB7, 0x24, 0xC2, 0x24, 0xD0, 0x24, 0xDB, 0x24, 0xE6, 0x24, 0xF1, +0x24, 0xFC, 0x25, 0x07, 0x25, 0x12, 0x25, 0x1D, 0x25, 0x28, 0x25, 0x33, 0x25, 0x3E, 0x25, 0x4A, +0x25, 0x55, 0x25, 0x64, 0x25, 0x6F, 0x25, 0xE6, 0x25, 0xF1, 0x25, 0xFC, 0x26, 0x07, 0x26, 0x12, +0x26, 0x1D, 0x26, 0x28, 0x26, 0x34, 0x26, 0x44, 0x26, 0x58, 0x26, 0x68, 0x26, 0x78, 0x26, 0x84, +0x26, 0x90, 0x26, 0xC7, 0x26, 0xF9, 0x27, 0x01, 0x27, 0x09, 0x27, 0x11, 0x27, 0x2D, 0x27, 0x59, +0x27, 0x72, 0x27, 0xA6, 0x27, 0xE5, 0x27, 0xFF, 0x28, 0x3B, 0x28, 0x81, 0x28, 0x95, 0x28, 0xF9, +0x29, 0x3A, 0x29, 0x46, 0x29, 0x73, 0x29, 0x89, 0x29, 0xB7, 0x29, 0xED, 0x2A, 0x0E, 0x2A, 0x43, +0x2A, 0x80, 0x2A, 0x93, 0x2A, 0xE2, 0x2B, 0x20, 0x2B, 0x29, 0x2B, 0x32, 0x2B, 0x3B, 0x2B, 0x44, +0x2B, 0x4D, 0x2B, 0x56, 0x2B, 0x5F, 0x2B, 0x68, 0x2B, 0x71, 0x2B, 0x7A, 0x2B, 0x83, 0x2B, 0x8C, +0x2B, 0x95, 0x2B, 0x9E, 0x2B, 0xA7, 0x2B, 0xB0, 0x2B, 0xB9, 0x2B, 0xC2, 0x2B, 0xCB, 0x2B, 0xD4, +0x2B, 0xDD, 0x2B, 0xE6, 0x2B, 0xEF, 0x2B, 0xF8, 0x2C, 0x01, 0x2C, 0x0A, 0x2C, 0x13, 0x2C, 0x1C, +0x2C, 0x25, 0x2C, 0x2E, 0x2C, 0x3C, 0x2C, 0x4C, 0x2C, 0x5C, 0x2C, 0x6C, 0x2C, 0x7C, 0x2C, 0x8C, +0x2C, 0x9D, 0x2C, 0xAD, 0x2C, 0xAD, 0x2C, 0xAD, 0x2C, 0xAD, 0x2C, 0xAD, 0x2C, 0xAD, 0x2C, 0xAD, +0x2C, 0xAD, 0x2C, 0xAD, 0x2C, 0xC3, 0x2C, 0xE7, 0x2C, 0xF3, 0x2C, 0xFF, 0x2D, 0x0F, 0x2D, 0x35, +0x2D, 0x5C, 0x2D, 0x98, 0x2D, 0xD5, 0x2D, 0xDE, 0x2D, 0xFA, 0x2E, 0x25, 0x2E, 0x48, 0x2E, 0x57, +0x2E, 0x66, 0x2E, 0x6F, 0x2E, 0x77, 0x2E, 0x7F, 0x2E, 0x87, 0x2E, 0x90, 0x2E, 0x99, 0x2E, 0xA5, +0x2E, 0xAD, 0x2E, 0xB9, 0x2E, 0xC5, 0x2E, 0xCD, 0x2E, 0xD5, 0x2E, 0xDD, 0x2E, 0xE9, 0x2E, 0xF1, +0x2E, 0xF9, 0x2F, 0x01, 0x2F, 0x1C, 0x2F, 0x36, 0x2F, 0x70, 0x2F, 0xA9, 0x2F, 0xBD, 0x2F, 0xD1, +0x2F, 0xD9, 0x2F, 0xE1, 0x2F, 0xE9, 0x2F, 0xF1, 0x2F, 0xF9, 0x30, 0x01, 0x30, 0x09, 0x30, 0x15, +0x30, 0x21, 0x30, 0x2D, 0x30, 0x52, 0x30, 0x76, 0x30, 0x82, 0x30, 0x8E, 0x30, 0xA0, 0x30, 0xB2, +0x30, 0xC8, 0x30, 0xD6, 0x30, 0xE2, 0x30, 0xEE, 0x30, 0xF6, 0x30, 0xFE, 0x31, 0x35, 0x31, 0xBD, +0x32, 0x13, 0x32, 0x34, 0x32, 0xAB, 0x33, 0x0E, 0x33, 0x66, 0x33, 0x92, 0x33, 0xC4, 0x33, 0xCC, +0x33, 0xD9, 0x33, 0xED, 0x34, 0x00, 0x34, 0x52, 0x34, 0x6B, 0x34, 0xB6, 0x35, 0x10, 0x35, 0x18, +0x35, 0x61, 0x35, 0xA3, 0x35, 0xEC, 0x36, 0x3A, 0x36, 0x93, 0x36, 0xDB, 0x37, 0x20, 0x37, 0x41, +0x37, 0x8B, 0x37, 0xB7, 0x38, 0x23, 0x38, 0x53, 0x38, 0x7D, 0x38, 0xB5, 0x38, 0xE3, 0x39, 0x2C, +0x39, 0x63, 0x39, 0x9A, 0x3A, 0x02, 0x3A, 0x4D, 0x3A, 0x76, 0x3A, 0x92, 0x3A, 0xA1, 0x3A, 0xB4, +0x3A, 0xC0, 0x3A, 0xD8, 0x3B, 0x10, 0x3B, 0x23, 0x3B, 0x3E, 0x3B, 0x52, 0x3B, 0x67, 0x3B, 0x82, +0x3B, 0x9E, 0x3B, 0xB9, 0x3C, 0x17, 0x3C, 0x48, 0x3C, 0x59, 0x3C, 0x6E, 0x3C, 0xC9, 0x3D, 0x05, +0x3D, 0x3A, 0x3D, 0x86, 0x3D, 0x9E, 0x3D, 0xB8, 0x3D, 0xD8, 0x3D, 0xF1, 0x3E, 0x1F, 0x3E, 0x67, +0x3E, 0xCD, 0x3F, 0x5E, 0x3F, 0x76, 0x3F, 0x98, 0x3F, 0xBA, 0x40, 0x00, 0x40, 0x41, 0x40, 0x5B, +0x40, 0x75, 0x40, 0xB2, 0x40, 0xEA, 0x41, 0x10, 0x41, 0x3C, 0x41, 0x48, 0x41, 0x5E, 0x41, 0x6A, +0x41, 0x78, 0x41, 0x86, 0x41, 0xA4, 0x41, 0xBA, 0x41, 0xDE, 0x41, 0xF1, 0x42, 0x04, 0x42, 0x27, +0x42, 0x42, 0x42, 0x6E, 0x42, 0x9B, 0x42, 0xE7, 0x43, 0x1B, 0x43, 0x27, 0x43, 0x34, 0x43, 0x40, +0x43, 0x54, 0x43, 0x68, 0x43, 0x9A, 0x43, 0xB0, 0x43, 0xCB, 0x43, 0xEF, 0x44, 0x02, 0x44, 0x18, +0x44, 0x3E, 0x44, 0x62, 0x44, 0x85, 0x44, 0xAD, 0x44, 0xC8, 0x44, 0xD4, 0x44, 0xE0, 0x44, 0xE8, +0x44, 0xF0, 0x44, 0xF8, 0x45, 0x00, 0x45, 0x08, 0x45, 0x10, 0x45, 0x18, 0x45, 0x20, 0x45, 0x28, +0x45, 0x30, 0x45, 0x38, 0x45, 0x40, 0x45, 0x48, 0x45, 0x6E, 0x45, 0x9B, 0x45, 0xA7, 0x45, 0xBD, +0x45, 0xC9, 0x45, 0xD7, 0x45, 0xE5, 0x46, 0x03, 0x46, 0x18, 0x46, 0x2B, 0x46, 0x45, 0x46, 0x5F, +0x46, 0x97, 0x46, 0xD4, 0x46, 0xE7, 0x47, 0x05, 0x47, 0x27, 0x47, 0x49, 0x47, 0x8A, 0x47, 0xD1, +0x47, 0xFD, 0x48, 0x28, 0x48, 0x34, 0x48, 0x40, 0x48, 0x4C, 0x48, 0x59, 0x48, 0x65, 0x48, 0x71, +0x48, 0x7D, 0x48, 0xAF, 0x48, 0xC5, 0x48, 0xE2, 0x48, 0xF5, 0x49, 0x19, 0x49, 0x3C, 0x49, 0x63, +0x49, 0x6B, 0x49, 0x73, 0x49, 0x8F, 0x49, 0xAB, 0x49, 0xB8, 0x49, 0xC5, 0x00, 0x00, 0x00, 0x02, +0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x14, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, +0x00, 0x04, 0x08, 0x02, 0x00, 0x00, 0x00, 0xD0, 0x00, 0x80, 0x00, 0x06, 0x00, 0x50, 0x00, 0x0D, +0x00, 0x2F, 0x00, 0x39, 0x00, 0x7E, 0x01, 0x7E, 0x01, 0x8F, 0x01, 0x92, 0x01, 0x9D, 0x01, 0xA1, +0x01, 0xB0, 0x01, 0xD4, 0x01, 0xE7, 0x01, 0xEB, 0x01, 0xF2, 0x02, 0x1B, 0x02, 0x2D, 0x02, 0x33, +0x02, 0x37, 0x02, 0x59, 0x02, 0x72, 0x02, 0xBC, 0x02, 0xBF, 0x02, 0xC8, 0x02, 0xCC, 0x02, 0xDD, +0x03, 0x04, 0x03, 0x0C, 0x03, 0x0F, 0x03, 0x12, 0x03, 0x1B, 0x03, 0x24, 0x03, 0x28, 0x03, 0x2E, +0x03, 0x31, 0x03, 0x35, 0x03, 0x94, 0x03, 0xA9, 0x03, 0xBC, 0x03, 0xC0, 0x1E, 0x09, 0x1E, 0x0F, +0x1E, 0x17, 0x1E, 0x1D, 0x1E, 0x21, 0x1E, 0x25, 0x1E, 0x2B, 0x1E, 0x2F, 0x1E, 0x37, 0x1E, 0x3B, +0x1E, 0x49, 0x1E, 0x53, 0x1E, 0x5B, 0x1E, 0x69, 0x1E, 0x6F, 0x1E, 0x7B, 0x1E, 0x85, 0x1E, 0x8F, +0x1E, 0x93, 0x1E, 0x97, 0x1E, 0x9E, 0x1E, 0xF9, 0x20, 0x0B, 0x20, 0x10, 0x20, 0x15, 0x20, 0x1A, +0x20, 0x1E, 0x20, 0x22, 0x20, 0x26, 0x20, 0x30, 0x20, 0x33, 0x20, 0x3A, 0x20, 0x44, 0x20, 0x70, +0x20, 0x79, 0x20, 0x89, 0x20, 0xA1, 0x20, 0xA4, 0x20, 0xA7, 0x20, 0xA9, 0x20, 0xAD, 0x20, 0xB2, +0x20, 0xB5, 0x20, 0xBA, 0x20, 0xBD, 0x21, 0x13, 0x21, 0x16, 0x21, 0x22, 0x21, 0x26, 0x21, 0x2E, +0x21, 0x5E, 0x22, 0x02, 0x22, 0x06, 0x22, 0x0F, 0x22, 0x12, 0x22, 0x15, 0x22, 0x1A, 0x22, 0x1E, +0x22, 0x2B, 0x22, 0x48, 0x22, 0x60, 0x22, 0x65, 0x25, 0xCA, 0xFB, 0x02, 0xFF, 0xFF, 0x00, 0x00, +0x00, 0x0D, 0x00, 0x20, 0x00, 0x30, 0x00, 0x3A, 0x00, 0xA0, 0x01, 0x8F, 0x01, 0x92, 0x01, 0x9D, +0x01, 0xA0, 0x01, 0xAF, 0x01, 0xC4, 0x01, 0xE6, 0x01, 0xEA, 0x01, 0xF1, 0x01, 0xFA, 0x02, 0x2A, +0x02, 0x30, 0x02, 0x37, 0x02, 0x59, 0x02, 0x72, 0x02, 0xBB, 0x02, 0xBE, 0x02, 0xC6, 0x02, 0xCC, +0x02, 0xD8, 0x03, 0x00, 0x03, 0x06, 0x03, 0x0F, 0x03, 0x11, 0x03, 0x1B, 0x03, 0x23, 0x03, 0x26, +0x03, 0x2E, 0x03, 0x31, 0x03, 0x35, 0x03, 0x94, 0x03, 0xA9, 0x03, 0xBC, 0x03, 0xC0, 0x1E, 0x08, +0x1E, 0x0C, 0x1E, 0x14, 0x1E, 0x1C, 0x1E, 0x20, 0x1E, 0x24, 0x1E, 0x2A, 0x1E, 0x2E, 0x1E, 0x36, +0x1E, 0x3A, 0x1E, 0x42, 0x1E, 0x4C, 0x1E, 0x5A, 0x1E, 0x5E, 0x1E, 0x6C, 0x1E, 0x78, 0x1E, 0x80, +0x1E, 0x8E, 0x1E, 0x92, 0x1E, 0x97, 0x1E, 0x9E, 0x1E, 0xA0, 0x20, 0x07, 0x20, 0x10, 0x20, 0x12, +0x20, 0x18, 0x20, 0x1C, 0x20, 0x20, 0x20, 0x26, 0x20, 0x30, 0x20, 0x33, 0x20, 0x39, 0x20, 0x44, +0x20, 0x70, 0x20, 0x74, 0x20, 0x80, 0x20, 0xA1, 0x20, 0xA3, 0x20, 0xA6, 0x20, 0xA9, 0x20, 0xAB, +0x20, 0xB1, 0x20, 0xB5, 0x20, 0xB9, 0x20, 0xBC, 0x21, 0x13, 0x21, 0x16, 0x21, 0x22, 0x21, 0x26, +0x21, 0x2E, 0x21, 0x5B, 0x22, 0x02, 0x22, 0x05, 0x22, 0x0F, 0x22, 0x11, 0x22, 0x15, 0x22, 0x19, +0x22, 0x1E, 0x22, 0x2B, 0x22, 0x48, 0x22, 0x60, 0x22, 0x64, 0x25, 0xCA, 0xFB, 0x01, 0xFF, 0xFF, +0x02, 0x54, 0x00, 0x00, 0x01, 0xF6, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x2C, 0x01, 0x13, 0xFE, 0xDE, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0x33, 0xFE, 0xF0, 0xFF, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xFA, 0xFF, 0xF2, 0xFF, 0xEB, 0xFF, 0xEA, +0xFF, 0xE5, 0xFF, 0xE3, 0xFF, 0xE0, 0xFE, 0x8E, 0xFE, 0x7A, 0xFE, 0x68, 0xFE, 0x65, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xE3, 0x2F, 0xE2, 0x1C, 0x00, 0x00, 0x00, 0x00, 0xE2, 0x74, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE2, 0x47, 0xE2, 0xB8, 0xE2, 0x7B, 0xE2, 0x64, 0xE2, 0x15, +0xE1, 0xDF, 0xE1, 0xDF, 0xE1, 0xBB, 0xE2, 0x18, 0x00, 0x00, 0xE2, 0x1E, 0xE2, 0x21, 0x00, 0x00, +0x00, 0x00, 0xE2, 0x02, 0x00, 0x00, 0x00, 0x00, 0xE1, 0x9F, 0xE1, 0x9F, 0xE1, 0x8A, 0xE1, 0xBA, +0xE1, 0x86, 0xE1, 0x02, 0xE0, 0xE4, 0x00, 0x00, 0xE0, 0xD3, 0x00, 0x00, 0xE0, 0xB8, 0x00, 0x00, +0xE0, 0xBF, 0xE0, 0xB4, 0xE0, 0x91, 0xE0, 0x73, 0x00, 0x00, 0xDD, 0x1F, 0x07, 0x1D, 0x00, 0x01, +0x00, 0x00, 0x00, 0xCE, 0x00, 0x00, 0x00, 0xEA, 0x01, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x03, 0x28, 0x03, 0x2A, 0x03, 0x2C, 0x03, 0x4C, 0x03, 0x4E, 0x03, 0x50, 0x03, 0x52, 0x03, 0x94, +0x03, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x9A, 0x03, 0x9C, 0x03, 0x9E, 0x00, 0x00, +0x03, 0xA0, 0x03, 0xAA, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xA6, +0x03, 0xA8, 0x03, 0xAE, 0x03, 0xB4, 0x03, 0xB6, 0x03, 0xB8, 0x03, 0xBA, 0x03, 0xBC, 0x03, 0xBE, +0x03, 0xC0, 0x03, 0xC2, 0x03, 0xD0, 0x03, 0xDE, 0x03, 0xE0, 0x03, 0xF6, 0x03, 0xFC, 0x04, 0x02, +0x04, 0x0C, 0x04, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x04, 0x0C, 0x04, 0xBE, 0x00, 0x00, 0x04, 0xC4, +0x04, 0xCA, 0x04, 0xCE, 0x04, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xC4, 0x00, 0x00, 0x00, 0x00, 0x04, 0xC2, +0x04, 0xC6, 0x00, 0x00, 0x04, 0xC6, 0x04, 0xC8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xBC, 0x00, 0x00, 0x04, 0xBC, 0x00, 0x00, 0x04, 0xBC, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xB6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x02, 0x65, 0x02, 0x6E, 0x02, 0x9F, 0x02, 0x75, 0x02, 0xBB, 0x02, 0xE7, 0x02, 0xA7, 0x02, 0xA0, +0x02, 0x89, 0x02, 0x8A, 0x02, 0x74, 0x02, 0xCE, 0x02, 0x6A, 0x02, 0x7E, 0x02, 0x69, 0x02, 0x76, +0x02, 0x6B, 0x02, 0x6C, 0x02, 0xD5, 0x02, 0xD2, 0x02, 0xD4, 0x02, 0x70, 0x02, 0xA6, 0x00, 0x01, +0x00, 0x1D, 0x00, 0x1E, 0x00, 0x25, 0x00, 0x2F, 0x00, 0x46, 0x00, 0x47, 0x00, 0x4E, 0x00, 0x53, +0x00, 0x64, 0x00, 0x66, 0x00, 0x68, 0x00, 0x72, 0x00, 0x74, 0x00, 0x80, 0x00, 0xA4, 0x00, 0xA6, +0x00, 0xA7, 0x00, 0xAF, 0x00, 0xBC, 0x00, 0xC3, 0x00, 0xDB, 0x00, 0xDC, 0x00, 0xE1, 0x00, 0xE2, +0x00, 0xEC, 0x02, 0x8D, 0x02, 0x77, 0x02, 0x8E, 0x02, 0xDC, 0x02, 0x85, 0x03, 0x18, 0x01, 0x07, +0x01, 0x23, 0x01, 0x24, 0x01, 0x2B, 0x01, 0x32, 0x01, 0x4A, 0x01, 0x4B, 0x01, 0x52, 0x01, 0x57, +0x01, 0x69, 0x01, 0x6C, 0x01, 0x6F, 0x01, 0x78, 0x01, 0x7A, 0x01, 0x86, 0x01, 0xAA, 0x01, 0xAC, +0x01, 0xAD, 0x01, 0xB5, 0x01, 0xC1, 0x01, 0xC9, 0x01, 0xE1, 0x01, 0xE2, 0x01, 0xE7, 0x01, 0xE8, +0x01, 0xF2, 0x02, 0x8B, 0x02, 0xAF, 0x02, 0x8C, 0x02, 0xDA, 0x02, 0x66, 0x02, 0x6F, 0x02, 0xB8, +0x02, 0xC9, 0x02, 0xBA, 0x02, 0xCB, 0x02, 0xB0, 0x02, 0xA9, 0x03, 0x16, 0x02, 0xAA, 0x02, 0x20, +0x02, 0x9B, 0x02, 0xDB, 0x02, 0x7F, 0x02, 0xAB, 0x03, 0x20, 0x02, 0xAD, 0x02, 0xD8, 0x02, 0x51, +0x02, 0x52, 0x03, 0x19, 0x02, 0xE5, 0x02, 0xA8, 0x02, 0x72, 0x03, 0x21, 0x02, 0x50, 0x02, 0x21, +0x02, 0x9C, 0x02, 0x5B, 0x02, 0x5A, 0x02, 0x5C, 0x02, 0x71, 0x00, 0x13, 0x00, 0x02, 0x00, 0x0A, +0x00, 0x1A, 0x00, 0x11, 0x00, 0x18, 0x00, 0x1B, 0x00, 0x21, 0x00, 0x3E, 0x00, 0x30, 0x00, 0x34, +0x00, 0x3B, 0x00, 0x5E, 0x00, 0x55, 0x00, 0x58, 0x00, 0x5A, 0x00, 0x28, 0x00, 0x7E, 0x00, 0x8F, +0x00, 0x81, 0x00, 0x84, 0x00, 0x9F, 0x00, 0x8B, 0x02, 0xD0, 0x00, 0x9D, 0x00, 0xCB, 0x00, 0xC4, +0x00, 0xC7, 0x00, 0xC9, 0x00, 0xE3, 0x00, 0xA5, 0x01, 0xC0, 0x01, 0x19, 0x01, 0x08, 0x01, 0x10, +0x01, 0x20, 0x01, 0x17, 0x01, 0x1E, 0x01, 0x21, 0x01, 0x27, 0x01, 0x41, 0x01, 0x33, 0x01, 0x37, +0x01, 0x3E, 0x01, 0x62, 0x01, 0x59, 0x01, 0x5C, 0x01, 0x5E, 0x01, 0x2C, 0x01, 0x84, 0x01, 0x95, +0x01, 0x87, 0x01, 0x8A, 0x01, 0xA5, 0x01, 0x91, 0x02, 0xD1, 0x01, 0xA3, 0x01, 0xD1, 0x01, 0xCA, +0x01, 0xCD, 0x01, 0xCF, 0x01, 0xE9, 0x01, 0xAB, 0x01, 0xEB, 0x00, 0x16, 0x01, 0x1C, 0x00, 0x03, +0x01, 0x09, 0x00, 0x17, 0x01, 0x1D, 0x00, 0x1F, 0x01, 0x25, 0x00, 0x23, 0x01, 0x29, 0x00, 0x24, +0x01, 0x2A, 0x00, 0x20, 0x01, 0x26, 0x00, 0x29, 0x01, 0x2D, 0x00, 0x2A, 0x01, 0x2E, 0x00, 0x41, +0x01, 0x44, 0x00, 0x31, 0x01, 0x34, 0x00, 0x3C, 0x01, 0x3F, 0x00, 0x44, 0x01, 0x47, 0x00, 0x32, +0x01, 0x35, 0x00, 0x4A, 0x01, 0x4E, 0x00, 0x48, 0x01, 0x4C, 0x00, 0x4C, 0x01, 0x50, 0x00, 0x4B, +0x01, 0x4F, 0x00, 0x51, 0x01, 0x55, 0x00, 0x4F, 0x01, 0x53, 0x00, 0x63, 0x01, 0x68, 0x00, 0x61, +0x01, 0x66, 0x00, 0x56, 0x01, 0x5A, 0x00, 0x62, 0x01, 0x67, 0x00, 0x5C, 0x01, 0x58, 0x00, 0x54, +0x01, 0x65, 0x00, 0x65, 0x01, 0x6B, 0x00, 0x67, 0x01, 0x6D, 0x01, 0x6E, 0x00, 0x6A, 0x01, 0x70, +0x00, 0x6C, 0x01, 0x72, 0x00, 0x6B, 0x01, 0x71, 0x00, 0x6D, 0x01, 0x73, 0x00, 0x71, 0x01, 0x77, +0x00, 0x76, 0x01, 0x7B, 0x00, 0x78, 0x01, 0x7E, 0x00, 0x77, 0x01, 0x7D, 0x01, 0x7C, 0x00, 0x7F, +0x01, 0x85, 0x00, 0x99, 0x01, 0x9F, 0x00, 0x82, 0x01, 0x88, 0x00, 0x97, 0x01, 0x9D, 0x00, 0xA3, +0x01, 0xA9, 0x00, 0xA8, 0x01, 0xAE, 0x00, 0xAA, 0x01, 0xB0, 0x00, 0xA9, 0x01, 0xAF, 0x00, 0xB0, +0x01, 0xB6, 0x00, 0xB5, 0x01, 0xBB, 0x00, 0xB4, 0x01, 0xBA, 0x00, 0xB2, 0x01, 0xB8, 0x00, 0xBF, +0x01, 0xC4, 0x00, 0xBE, 0x01, 0xC3, 0x00, 0xBD, 0x01, 0xC2, 0x00, 0xD9, 0x01, 0xDF, 0x00, 0xD5, +0x01, 0xDB, 0x00, 0xC5, 0x01, 0xCB, 0x00, 0xD8, 0x01, 0xDE, 0x00, 0xD3, 0x01, 0xD9, 0x00, 0xD7, +0x01, 0xDD, 0x00, 0xDE, 0x01, 0xE4, 0x00, 0xE4, 0x01, 0xEA, 0x00, 0xE5, 0x00, 0xED, 0x01, 0xF3, +0x00, 0xEF, 0x01, 0xF5, 0x00, 0xEE, 0x01, 0xF4, 0x00, 0x91, 0x01, 0x97, 0x00, 0xCD, 0x01, 0xD3, +0x00, 0x27, 0x00, 0x2E, 0x01, 0x31, 0x00, 0x69, 0x00, 0x6F, 0x01, 0x75, 0x00, 0x75, 0x00, 0x7C, +0x01, 0x82, 0x00, 0x09, 0x01, 0x0F, 0x00, 0x57, 0x01, 0x5B, 0x00, 0x83, 0x01, 0x89, 0x00, 0xC6, +0x01, 0xCC, 0x00, 0x49, 0x01, 0x4D, 0x00, 0x9C, 0x01, 0xA2, 0x00, 0x26, 0x00, 0x2D, 0x00, 0x19, +0x01, 0x1F, 0x00, 0x1C, 0x01, 0x22, 0x00, 0x9E, 0x01, 0xA4, 0x00, 0x10, 0x01, 0x16, 0x00, 0x15, +0x01, 0x1B, 0x00, 0x3A, 0x01, 0x3D, 0x00, 0x40, 0x01, 0x43, 0x00, 0x59, 0x01, 0x5D, 0x00, 0x60, +0x01, 0x64, 0x00, 0x8A, 0x01, 0x90, 0x00, 0x98, 0x01, 0x9E, 0x00, 0xAB, 0x01, 0xB1, 0x00, 0xAD, +0x01, 0xB3, 0x00, 0xC8, 0x01, 0xCE, 0x00, 0xD4, 0x01, 0xDA, 0x00, 0xB6, 0x01, 0xBC, 0x00, 0xC0, +0x01, 0xC5, 0x00, 0x8C, 0x01, 0x92, 0x00, 0xA2, 0x01, 0xA8, 0x00, 0x8D, 0x01, 0x93, 0x00, 0xEA, +0x01, 0xF0, 0x03, 0x48, 0x03, 0x47, 0x03, 0x4A, 0x03, 0x49, 0x03, 0x1B, 0x03, 0x1C, 0x03, 0x4C, +0x03, 0x1D, 0x03, 0x17, 0x03, 0x1E, 0x03, 0x22, 0x03, 0x1F, 0x03, 0x1A, 0x02, 0xF7, 0x02, 0xF8, +0x02, 0xFC, 0x03, 0x01, 0x03, 0x05, 0x02, 0xFF, 0x02, 0xF5, 0x02, 0xF2, 0x03, 0x09, 0x03, 0x00, +0x02, 0xFA, 0x02, 0xFD, 0x00, 0x22, 0x01, 0x28, 0x00, 0x2B, 0x01, 0x2F, 0x00, 0x2C, 0x01, 0x30, +0x00, 0x43, 0x01, 0x46, 0x00, 0x42, 0x01, 0x45, 0x00, 0x33, 0x01, 0x36, 0x00, 0x4D, 0x01, 0x51, +0x00, 0x52, 0x01, 0x56, 0x00, 0x50, 0x01, 0x54, 0x00, 0x5B, 0x01, 0x5F, 0x00, 0x6E, 0x01, 0x74, +0x00, 0x70, 0x01, 0x76, 0x00, 0x73, 0x01, 0x79, 0x00, 0x79, 0x01, 0x7F, 0x00, 0x7A, 0x01, 0x80, +0x00, 0x7D, 0x01, 0x83, 0x00, 0xA0, 0x01, 0xA6, 0x00, 0xA1, 0x01, 0xA7, 0x00, 0x9B, 0x01, 0xA1, +0x00, 0x9A, 0x01, 0xA0, 0x00, 0xAC, 0x01, 0xB2, 0x00, 0xAE, 0x01, 0xB4, 0x00, 0xB7, 0x01, 0xBD, +0x00, 0xB8, 0x01, 0xBE, 0x00, 0xB1, 0x01, 0xB7, 0x00, 0xB3, 0x01, 0xB9, 0x00, 0xB9, 0x01, 0xBF, +0x00, 0xC1, 0x01, 0xC7, 0x00, 0xC2, 0x01, 0xC8, 0x00, 0xDA, 0x01, 0xE0, 0x00, 0xD6, 0x01, 0xDC, +0x00, 0xE0, 0x01, 0xE6, 0x00, 0xDD, 0x01, 0xE3, 0x00, 0xDF, 0x01, 0xE5, 0x00, 0xE6, 0x01, 0xEC, +0x00, 0xF0, 0x01, 0xF6, 0x00, 0x12, 0x01, 0x18, 0x00, 0x14, 0x01, 0x1A, 0x00, 0x0B, 0x01, 0x11, +0x00, 0x0D, 0x01, 0x13, 0x00, 0x0E, 0x01, 0x14, 0x00, 0x0F, 0x01, 0x15, 0x00, 0x0C, 0x01, 0x12, +0x00, 0x04, 0x01, 0x0A, 0x00, 0x06, 0x01, 0x0C, 0x00, 0x07, 0x01, 0x0D, 0x00, 0x08, 0x01, 0x0E, +0x00, 0x05, 0x01, 0x0B, 0x00, 0x3D, 0x01, 0x40, 0x00, 0x3F, 0x01, 0x42, 0x00, 0x45, 0x01, 0x48, +0x00, 0x35, 0x01, 0x38, 0x00, 0x37, 0x01, 0x3A, 0x00, 0x38, 0x01, 0x3B, 0x00, 0x39, 0x01, 0x3C, +0x00, 0x36, 0x01, 0x39, 0x00, 0x5F, 0x01, 0x63, 0x00, 0x5D, 0x01, 0x61, 0x00, 0x8E, 0x01, 0x94, +0x00, 0x90, 0x01, 0x96, 0x00, 0x85, 0x01, 0x8B, 0x00, 0x87, 0x01, 0x8D, 0x00, 0x88, 0x01, 0x8E, +0x00, 0x89, 0x01, 0x8F, 0x00, 0x86, 0x01, 0x8C, 0x00, 0x92, 0x01, 0x98, 0x00, 0x94, 0x01, 0x9A, +0x00, 0x95, 0x01, 0x9B, 0x00, 0x96, 0x01, 0x9C, 0x00, 0x93, 0x01, 0x99, 0x00, 0xCA, 0x01, 0xD0, +0x00, 0xCC, 0x01, 0xD2, 0x00, 0xCE, 0x01, 0xD4, 0x00, 0xD0, 0x01, 0xD6, 0x00, 0xD1, 0x01, 0xD7, +0x00, 0xD2, 0x01, 0xD8, 0x00, 0xCF, 0x01, 0xD5, 0x00, 0xE8, 0x01, 0xEE, 0x00, 0xE7, 0x01, 0xED, +0x00, 0xE9, 0x01, 0xEF, 0x00, 0xEB, 0x01, 0xF1, 0x02, 0x62, 0x02, 0x64, 0x02, 0x67, 0x02, 0x63, +0x02, 0x68, 0x02, 0x82, 0x02, 0x80, 0x02, 0x81, 0x02, 0x83, 0x02, 0x99, 0x02, 0x9A, 0x02, 0x95, +0x02, 0x97, 0x02, 0x98, 0x02, 0x96, 0x02, 0xB1, 0x02, 0xB3, 0x02, 0x73, 0x02, 0xBE, 0x02, 0xC1, +0x02, 0xBC, 0x02, 0xBD, 0x02, 0xC0, 0x02, 0xC6, 0x02, 0xBF, 0x02, 0xC8, 0x02, 0xC2, 0x02, 0xC3, +0x02, 0xC7, 0x02, 0xDE, 0x02, 0xE1, 0x02, 0xE3, 0x02, 0xCF, 0x02, 0xCC, 0x02, 0xE4, 0x02, 0xD7, +0x02, 0xD6, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0A, 0x01, 0xDE, 0x03, 0x1C, 0x00, 0x02, +0x44, 0x46, 0x4C, 0x54, 0x01, 0xAE, 0x6C, 0x61, 0x74, 0x6E, 0x00, 0x0E, 0x01, 0x7E, 0x00, 0x09, +0x41, 0x5A, 0x45, 0x20, 0x01, 0x5A, 0x43, 0x41, 0x54, 0x20, 0x01, 0x36, 0x43, 0x52, 0x54, 0x20, +0x01, 0x12, 0x4B, 0x41, 0x5A, 0x20, 0x00, 0xEE, 0x4D, 0x4F, 0x4C, 0x20, 0x00, 0xCA, 0x4E, 0x4C, +0x44, 0x20, 0x00, 0xA6, 0x52, 0x4F, 0x4D, 0x20, 0x00, 0x82, 0x54, 0x41, 0x54, 0x20, 0x00, 0x5E, +0x54, 0x52, 0x4B, 0x20, 0x00, 0x3A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x01, +0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, +0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0F, +0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x0F, +0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, +0x00, 0x07, 0x00, 0x0E, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, +0x00, 0x17, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, +0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, +0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x01, +0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x0C, 0x00, 0x11, 0x00, 0x12, +0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0F, +0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x0B, +0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, +0x00, 0x07, 0x00, 0x0A, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, +0x00, 0x17, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, +0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x09, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, +0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x01, +0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x11, 0x00, 0x12, +0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0E, +0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x11, +0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x04, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, +0x00, 0x06, 0x00, 0x07, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, +0x00, 0x17, 0x00, 0x18, 0x61, 0x61, 0x6C, 0x74, 0x01, 0x36, 0x63, 0x61, 0x73, 0x65, 0x01, 0x30, +0x63, 0x63, 0x6D, 0x70, 0x01, 0x22, 0x63, 0x63, 0x6D, 0x70, 0x01, 0x10, 0x64, 0x6C, 0x69, 0x67, +0x01, 0x0A, 0x64, 0x6E, 0x6F, 0x6D, 0x01, 0x04, 0x66, 0x72, 0x61, 0x63, 0x00, 0xFA, 0x6C, 0x69, +0x67, 0x61, 0x00, 0xF4, 0x6C, 0x6F, 0x63, 0x6C, 0x00, 0xEE, 0x6C, 0x6F, 0x63, 0x6C, 0x00, 0xE8, +0x6C, 0x6F, 0x63, 0x6C, 0x00, 0xE2, 0x6C, 0x6F, 0x63, 0x6C, 0x00, 0xDC, 0x6C, 0x6F, 0x63, 0x6C, +0x00, 0xD6, 0x6C, 0x6F, 0x63, 0x6C, 0x00, 0xD0, 0x6C, 0x6F, 0x63, 0x6C, 0x00, 0xCA, 0x6C, 0x6F, +0x63, 0x6C, 0x00, 0xC4, 0x6C, 0x6F, 0x63, 0x6C, 0x00, 0xBE, 0x6E, 0x75, 0x6D, 0x72, 0x00, 0xB8, +0x6F, 0x72, 0x64, 0x6E, 0x00, 0xB0, 0x73, 0x69, 0x6E, 0x66, 0x00, 0xAA, 0x73, 0x73, 0x30, 0x31, +0x00, 0xA4, 0x73, 0x75, 0x62, 0x73, 0x00, 0x9E, 0x73, 0x75, 0x70, 0x73, 0x00, 0x98, 0x7A, 0x65, +0x72, 0x6F, 0x00, 0x92, 0x00, 0x00, 0x00, 0x01, 0x00, 0x26, 0x00, 0x00, 0x00, 0x01, 0x00, 0x18, +0x00, 0x00, 0x00, 0x01, 0x00, 0x16, 0x00, 0x00, 0x00, 0x01, 0x00, 0x27, 0x00, 0x00, 0x00, 0x01, +0x00, 0x17, 0x00, 0x00, 0x00, 0x02, 0x00, 0x20, 0x00, 0x22, 0x00, 0x00, 0x00, 0x01, 0x00, 0x19, +0x00, 0x00, 0x00, 0x01, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x01, +0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x11, 0x00, 0x00, +0x00, 0x01, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x13, +0x00, 0x00, 0x00, 0x01, 0x00, 0x0B, 0x00, 0x00, 0x00, 0x01, 0x00, 0x25, 0x00, 0x00, 0x00, 0x03, +0x00, 0x1B, 0x00, 0x1C, 0x00, 0x1D, 0x00, 0x00, 0x00, 0x01, 0x00, 0x1A, 0x00, 0x00, 0x00, 0x01, +0x00, 0x24, 0x00, 0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0x05, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0A, +0x00, 0x09, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x05, 0x00, 0x02, 0x00, 0x05, 0x00, 0x08, 0x00, 0x09, +0x00, 0x0A, 0x00, 0x00, 0x00, 0x01, 0x00, 0x23, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, +0x00, 0x28, 0x08, 0x30, 0x07, 0x72, 0x06, 0xAE, 0x06, 0x26, 0x06, 0x26, 0x05, 0xEE, 0x05, 0x98, +0x05, 0x98, 0x05, 0x0A, 0x04, 0x80, 0x04, 0x22, 0x04, 0x0E, 0x04, 0x0E, 0x04, 0x0E, 0x04, 0x0E, +0x04, 0x0E, 0x03, 0xEC, 0x03, 0xEC, 0x03, 0xBE, 0x03, 0x82, 0x03, 0x74, 0x03, 0x66, 0x03, 0x4E, +0x03, 0x4E, 0x03, 0x40, 0x03, 0x32, 0x03, 0x24, 0x03, 0x10, 0x03, 0x32, 0x02, 0xC8, 0x02, 0xBA, +0x02, 0xBA, 0x02, 0x7C, 0x02, 0x5A, 0x02, 0x38, 0x01, 0x6A, 0x01, 0x40, 0x01, 0x02, 0x00, 0xEE, +0x00, 0x52, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x72, 0x00, 0x36, +0x00, 0xF2, 0x00, 0xF3, 0x00, 0xF4, 0x00, 0xF5, 0x00, 0xF6, 0x00, 0xF7, 0x00, 0xF8, 0x00, 0xF9, +0x00, 0xFA, 0x00, 0xFB, 0x00, 0xFC, 0x00, 0xFD, 0x00, 0xFE, 0x00, 0xFF, 0x01, 0x00, 0x01, 0x01, +0x01, 0x02, 0x01, 0x03, 0x01, 0x04, 0x01, 0x05, 0x01, 0x06, 0x01, 0xF8, 0x01, 0xF9, 0x01, 0xFA, +0x01, 0xFB, 0x01, 0xFC, 0x01, 0xFD, 0x01, 0xFE, 0x01, 0xFF, 0x02, 0x00, 0x02, 0x01, 0x02, 0x02, +0x02, 0x03, 0x02, 0x04, 0x02, 0x05, 0x02, 0x06, 0x02, 0x07, 0x02, 0x08, 0x02, 0x09, 0x02, 0x0A, +0x02, 0x0B, 0x02, 0x0C, 0x02, 0x0D, 0x02, 0x0E, 0x02, 0x0F, 0x02, 0x10, 0x02, 0x11, 0x02, 0x12, +0x02, 0x13, 0x02, 0x14, 0x02, 0x15, 0x02, 0x16, 0x02, 0x17, 0x02, 0x18, 0x00, 0x02, 0x00, 0x05, +0x00, 0x53, 0x00, 0x65, 0x00, 0x00, 0x00, 0x69, 0x00, 0x69, 0x00, 0x13, 0x00, 0x75, 0x00, 0x75, +0x00, 0x14, 0x01, 0x07, 0x01, 0x20, 0x00, 0x15, 0x01, 0x4B, 0x01, 0x51, 0x00, 0x2F, 0x00, 0x01, +0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x01, 0x00, 0x01, +0x02, 0x26, 0x00, 0x04, 0x00, 0x08, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x5A, 0x00, 0x01, +0x00, 0x08, 0x00, 0x05, 0x00, 0x26, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x12, 0x00, 0x0C, 0x02, 0x1F, +0x00, 0x02, 0x01, 0x6F, 0x02, 0x1E, 0x00, 0x02, 0x01, 0x57, 0x02, 0x19, 0x00, 0x02, 0x01, 0x4A, +0x02, 0x1C, 0x00, 0x03, 0x01, 0x4A, 0x01, 0x6F, 0x02, 0x1A, 0x00, 0x03, 0x01, 0x4A, 0x01, 0x57, +0x00, 0x04, 0x00, 0x08, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x1C, 0x00, 0x01, 0x00, 0x08, +0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x02, 0x1D, 0x00, 0x02, 0x01, 0x65, 0x02, 0x1B, 0x00, 0x03, +0x01, 0x4A, 0x01, 0x65, 0x00, 0x01, 0x00, 0x01, 0x01, 0x4A, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, +0x00, 0x08, 0x00, 0x02, 0x00, 0x74, 0x00, 0x37, 0x02, 0x78, 0x02, 0x79, 0x02, 0x7A, 0x02, 0x7B, +0x02, 0x7D, 0x02, 0x86, 0x02, 0x87, 0x02, 0x88, 0x02, 0x8F, 0x02, 0x90, 0x02, 0x91, 0x02, 0x92, +0x02, 0x93, 0x02, 0x94, 0x02, 0xA1, 0x02, 0xA2, 0x02, 0xA3, 0x02, 0xA4, 0x02, 0xB6, 0x03, 0x34, +0x03, 0x33, 0x03, 0x36, 0x03, 0x35, 0x03, 0x2E, 0x03, 0x2D, 0x03, 0x30, 0x03, 0x2F, 0x03, 0x23, +0x03, 0x24, 0x03, 0x25, 0x03, 0x26, 0x03, 0x27, 0x03, 0x28, 0x03, 0x29, 0x03, 0x2A, 0x03, 0x2B, +0x03, 0x2C, 0x03, 0x31, 0x03, 0x32, 0x03, 0x37, 0x03, 0x38, 0x03, 0x39, 0x03, 0x3A, 0x03, 0x3B, +0x03, 0x3C, 0x03, 0x3D, 0x03, 0x3E, 0x03, 0x3F, 0x03, 0x40, 0x03, 0x41, 0x03, 0x42, 0x03, 0x43, +0x03, 0x44, 0x03, 0x45, 0x03, 0x46, 0x00, 0x02, 0x00, 0x0D, 0x02, 0x72, 0x02, 0x73, 0x00, 0x00, +0x02, 0x76, 0x02, 0x77, 0x00, 0x02, 0x02, 0x7C, 0x02, 0x7C, 0x00, 0x04, 0x02, 0x7E, 0x02, 0x7E, +0x00, 0x05, 0x02, 0x80, 0x02, 0x81, 0x00, 0x06, 0x02, 0x89, 0x02, 0x8E, 0x00, 0x08, 0x02, 0x9B, +0x02, 0x9E, 0x00, 0x0E, 0x02, 0xA6, 0x02, 0xA6, 0x00, 0x12, 0x02, 0xEA, 0x02, 0xFA, 0x00, 0x13, +0x02, 0xFC, 0x02, 0xFD, 0x00, 0x24, 0x02, 0xFF, 0x03, 0x0B, 0x00, 0x26, 0x03, 0x0D, 0x03, 0x0D, +0x00, 0x33, 0x03, 0x10, 0x03, 0x12, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, +0x00, 0x01, 0x00, 0x14, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x04, 0x02, 0xB5, 0x00, 0x03, +0x01, 0x86, 0x02, 0x69, 0x00, 0x01, 0x00, 0x01, 0x00, 0x74, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, +0x00, 0x08, 0x00, 0x02, 0x00, 0x0E, 0x00, 0x04, 0x02, 0x20, 0x02, 0x21, 0x02, 0x20, 0x02, 0x21, +0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x80, 0x01, 0x07, 0x01, 0x86, 0x00, 0x06, 0x00, 0x00, +0x00, 0x02, 0x00, 0x24, 0x00, 0x0A, 0x00, 0x03, 0x00, 0x01, 0x00, 0xD6, 0x00, 0x01, 0x00, 0x12, +0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x21, 0x00, 0x01, 0x00, 0x02, 0x00, 0x80, 0x01, 0x86, +0x00, 0x03, 0x00, 0x01, 0x00, 0xBC, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, +0x00, 0x21, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x01, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, +0x00, 0x08, 0x00, 0x01, 0x00, 0x3E, 0xFF, 0xEC, 0x00, 0x06, 0x00, 0x00, 0x00, 0x02, 0x00, 0x26, +0x00, 0x0A, 0x00, 0x03, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x00, 0x2E, 0x00, 0x00, 0x00, 0x01, +0x00, 0x00, 0x00, 0x1F, 0x00, 0x02, 0x00, 0x01, 0x02, 0x31, 0x02, 0x3A, 0x00, 0x00, 0x00, 0x03, +0x00, 0x01, 0x00, 0x1C, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1E, +0x00, 0x02, 0x00, 0x01, 0x02, 0x45, 0x02, 0x4E, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x02, 0x59, +0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0xFF, 0xE3, 0x00, 0x01, +0x00, 0x01, 0x02, 0x76, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x30, +0x00, 0x0B, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x22, 0x00, 0x1F, +0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x14, 0x00, 0x29, 0x00, 0x01, +0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0x00, 0x15, 0x00, 0x02, 0x00, 0x01, +0x02, 0x26, 0x02, 0x2F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, +0x00, 0x24, 0x00, 0x0B, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x16, +0x00, 0x0A, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, +0x00, 0x0E, 0x00, 0x01, 0x00, 0x01, 0x02, 0x72, 0x00, 0x02, 0x00, 0x16, 0x00, 0x06, 0x00, 0x01, +0x00, 0x68, 0x00, 0x01, 0x00, 0x01, 0x00, 0x68, 0x00, 0x01, 0x00, 0x00, 0x00, 0x15, 0x00, 0x01, +0x01, 0x6F, 0x00, 0x01, 0x00, 0x01, 0x01, 0x6F, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x04, +0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x1E, 0x00, 0x02, 0x00, 0x14, 0x00, 0x0A, +0x00, 0x01, 0x00, 0x04, 0x01, 0xF7, 0x00, 0x02, 0x01, 0x69, 0x00, 0x01, 0x00, 0x04, 0x00, 0xF1, +0x00, 0x02, 0x00, 0x64, 0x00, 0x01, 0x00, 0x02, 0x00, 0x55, 0x01, 0x59, 0x00, 0x01, 0x00, 0x00, +0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x0E, 0x00, 0x04, 0x00, 0xB6, 0x00, 0xC0, 0x01, 0xBC, +0x01, 0xC5, 0x00, 0x01, 0x00, 0x04, 0x00, 0xB4, 0x00, 0xBF, 0x01, 0xBA, 0x01, 0xC4, 0x00, 0x01, +0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0x00, 0x09, 0x00, 0x01, 0x00, 0x01, +0x01, 0x57, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x4E, 0x00, 0x02, +0x00, 0x2C, 0x00, 0x0A, 0x00, 0x04, 0x00, 0x1C, 0x00, 0x16, 0x00, 0x10, 0x00, 0x0A, 0x02, 0xED, +0x00, 0x02, 0x03, 0x01, 0x02, 0xEC, 0x00, 0x02, 0x03, 0x09, 0x02, 0xEB, 0x00, 0x02, 0x02, 0xF7, +0x02, 0xEA, 0x00, 0x02, 0x02, 0xF8, 0x00, 0x04, 0x00, 0x1C, 0x00, 0x16, 0x00, 0x10, 0x00, 0x0A, +0x02, 0xF1, 0x00, 0x02, 0x03, 0x01, 0x02, 0xF0, 0x00, 0x02, 0x03, 0x09, 0x02, 0xEF, 0x00, 0x02, +0x02, 0xF7, 0x02, 0xEE, 0x00, 0x02, 0x02, 0xF8, 0x00, 0x01, 0x00, 0x02, 0x02, 0xFC, 0x02, 0xFF, +0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x1E, 0x00, 0x0C, 0x00, 0x7C, +0x00, 0x76, 0x00, 0x70, 0x00, 0x6A, 0x00, 0x64, 0x00, 0x5E, 0x00, 0x58, 0x00, 0x52, 0x00, 0x4C, +0x00, 0x46, 0x00, 0x40, 0x00, 0x3A, 0x00, 0x01, 0x00, 0x0C, 0x00, 0x27, 0x00, 0x2E, 0x00, 0x69, +0x00, 0x6D, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x7C, 0x01, 0x31, 0x01, 0x75, 0x01, 0x82, 0x02, 0x1E, +0x02, 0x1F, 0x00, 0x02, 0x01, 0x4A, 0x01, 0x6F, 0x00, 0x02, 0x01, 0x4A, 0x01, 0x57, 0x00, 0x02, +0x01, 0x7A, 0x01, 0x69, 0x00, 0x02, 0x01, 0x6F, 0x01, 0x69, 0x00, 0x02, 0x01, 0x2B, 0x01, 0xF4, +0x00, 0x02, 0x00, 0x74, 0x01, 0x69, 0x00, 0x02, 0x00, 0x74, 0x00, 0x64, 0x00, 0x02, 0x00, 0x68, +0x01, 0x69, 0x00, 0x02, 0x00, 0x68, 0x02, 0x7D, 0x00, 0x02, 0x00, 0x68, 0x00, 0x64, 0x00, 0x02, +0x00, 0x25, 0x01, 0xF4, 0x00, 0x02, 0x00, 0x25, 0x00, 0xEE, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, +0x00, 0x08, 0x00, 0x01, 0x00, 0x76, 0x00, 0x06, 0x00, 0x64, 0x00, 0x5A, 0x00, 0x50, 0x00, 0x46, +0x00, 0x2C, 0x00, 0x12, 0x00, 0x03, 0x00, 0x14, 0x00, 0x0E, 0x00, 0x08, 0x03, 0x07, 0x00, 0x02, +0x02, 0xF7, 0x03, 0x06, 0x00, 0x02, 0x02, 0xF2, 0x03, 0x08, 0x00, 0x02, 0x02, 0xF8, 0x00, 0x03, +0x00, 0x14, 0x00, 0x0E, 0x00, 0x08, 0x03, 0x04, 0x00, 0x02, 0x03, 0x05, 0x03, 0x02, 0x00, 0x02, +0x02, 0xF2, 0x03, 0x03, 0x00, 0x02, 0x02, 0xF8, 0x00, 0x01, 0x00, 0x04, 0x02, 0xFE, 0x00, 0x02, +0x02, 0xF5, 0x00, 0x01, 0x00, 0x04, 0x02, 0xF9, 0x00, 0x02, 0x02, 0xF5, 0x00, 0x01, 0x00, 0x04, +0x02, 0xF6, 0x00, 0x02, 0x03, 0x05, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x02, 0xF4, 0x00, 0x02, +0x03, 0x05, 0x02, 0xF3, 0x00, 0x02, 0x02, 0xF8, 0x00, 0x01, 0x00, 0x06, 0x02, 0xF2, 0x02, 0xF5, +0x02, 0xF8, 0x02, 0xFD, 0x03, 0x01, 0x03, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, +0x00, 0x02, 0x01, 0x50, 0x00, 0x24, 0x03, 0x34, 0x03, 0x33, 0x03, 0x36, 0x03, 0x35, 0x03, 0x2E, +0x03, 0x2D, 0x03, 0x30, 0x03, 0x2F, 0x03, 0x23, 0x03, 0x24, 0x03, 0x25, 0x03, 0x26, 0x03, 0x27, +0x03, 0x28, 0x03, 0x29, 0x03, 0x2A, 0x03, 0x2B, 0x03, 0x2C, 0x03, 0x31, 0x03, 0x32, 0x03, 0x37, +0x03, 0x38, 0x03, 0x39, 0x03, 0x3A, 0x03, 0x3B, 0x03, 0x3C, 0x03, 0x3D, 0x03, 0x3E, 0x03, 0x3F, +0x03, 0x40, 0x03, 0x41, 0x03, 0x42, 0x03, 0x43, 0x03, 0x44, 0x03, 0x45, 0x03, 0x46, 0x00, 0x06, +0x00, 0x00, 0x00, 0x02, 0x00, 0x1C, 0x00, 0x0A, 0x00, 0x03, 0x00, 0x01, 0x00, 0x24, 0x00, 0x01, +0x00, 0xF8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, +0x00, 0xE6, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x00, 0x02, 0x00, 0x01, +0x03, 0x23, 0x03, 0x46, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, +0x00, 0x52, 0x00, 0x26, 0x01, 0x58, 0x01, 0x6A, 0x03, 0x34, 0x03, 0x33, 0x03, 0x36, 0x03, 0x35, +0x03, 0x2E, 0x03, 0x2D, 0x03, 0x30, 0x03, 0x2F, 0x03, 0x23, 0x03, 0x24, 0x03, 0x25, 0x03, 0x26, +0x03, 0x27, 0x03, 0x28, 0x03, 0x29, 0x03, 0x2A, 0x03, 0x2B, 0x03, 0x2C, 0x03, 0x31, 0x03, 0x32, +0x03, 0x37, 0x03, 0x38, 0x03, 0x39, 0x03, 0x3A, 0x03, 0x3B, 0x03, 0x3C, 0x03, 0x3D, 0x03, 0x3E, +0x03, 0x3F, 0x03, 0x40, 0x03, 0x41, 0x03, 0x42, 0x03, 0x43, 0x03, 0x44, 0x03, 0x45, 0x03, 0x46, +0x00, 0x02, 0x00, 0x07, 0x01, 0x57, 0x01, 0x57, 0x00, 0x00, 0x01, 0x69, 0x01, 0x69, 0x00, 0x01, +0x02, 0xEA, 0x02, 0xFA, 0x00, 0x02, 0x02, 0xFC, 0x02, 0xFD, 0x00, 0x13, 0x02, 0xFF, 0x03, 0x0B, +0x00, 0x15, 0x03, 0x0D, 0x03, 0x0D, 0x00, 0x22, 0x03, 0x10, 0x03, 0x12, 0x00, 0x23, 0x00, 0x06, +0x00, 0x00, 0x00, 0x04, 0x00, 0x88, 0x00, 0x64, 0x00, 0x30, 0x00, 0x0E, 0x00, 0x03, 0x00, 0x01, +0x00, 0x12, 0x00, 0x01, 0x00, 0x34, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, +0x00, 0x02, 0x00, 0x01, 0x01, 0x06, 0x00, 0x00, 0x02, 0x22, 0x02, 0x23, 0x01, 0x06, 0x00, 0x03, +0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, +0x00, 0x02, 0x00, 0x05, 0x02, 0xEA, 0x02, 0xFA, 0x00, 0x00, 0x02, 0xFC, 0x02, 0xFD, 0x00, 0x11, +0x02, 0xFF, 0x03, 0x0B, 0x00, 0x13, 0x03, 0x0D, 0x03, 0x0D, 0x00, 0x20, 0x03, 0x10, 0x03, 0x12, +0x00, 0x21, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x58, 0x00, 0x02, 0x00, 0x14, 0x00, 0x36, +0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x03, 0x0D, 0x03, 0x0F, 0x00, 0x00, +0x03, 0x11, 0x03, 0x15, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x34, 0x00, 0x01, +0x00, 0x12, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x00, 0x0F, 0x02, 0xF2, 0x02, 0xF5, +0x02, 0xF7, 0x02, 0xF8, 0x02, 0xFA, 0x02, 0xFC, 0x02, 0xFD, 0x02, 0xFF, 0x03, 0x00, 0x03, 0x01, +0x03, 0x05, 0x03, 0x09, 0x03, 0x0A, 0x03, 0x0B, 0x03, 0x0C, 0x00, 0x01, 0x00, 0x02, 0x01, 0x57, +0x01, 0x69, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x20, 0x00, 0x0D, +0x00, 0xB0, 0x00, 0xA4, 0x00, 0x9A, 0x00, 0x90, 0x00, 0x86, 0x00, 0x7C, 0x00, 0x72, 0x00, 0x68, +0x00, 0x5E, 0x00, 0x54, 0x00, 0x4A, 0x00, 0x42, 0x00, 0x3C, 0x00, 0x02, 0x00, 0x04, 0x01, 0x07, +0x01, 0x07, 0x00, 0x00, 0x02, 0x26, 0x02, 0x2F, 0x00, 0x01, 0x02, 0x72, 0x02, 0x72, 0x00, 0x0B, +0x02, 0x76, 0x02, 0x76, 0x00, 0x0C, 0x00, 0x02, 0x02, 0x59, 0x02, 0x7A, 0x00, 0x03, 0x02, 0x78, +0x02, 0x7C, 0x02, 0x7D, 0x00, 0x04, 0x02, 0x3A, 0x02, 0x44, 0x02, 0x4E, 0x02, 0x58, 0x00, 0x04, +0x02, 0x39, 0x02, 0x43, 0x02, 0x4D, 0x02, 0x57, 0x00, 0x04, 0x02, 0x38, 0x02, 0x42, 0x02, 0x4C, +0x02, 0x56, 0x00, 0x04, 0x02, 0x37, 0x02, 0x41, 0x02, 0x4B, 0x02, 0x55, 0x00, 0x04, 0x02, 0x36, +0x02, 0x40, 0x02, 0x4A, 0x02, 0x54, 0x00, 0x04, 0x02, 0x35, 0x02, 0x3F, 0x02, 0x49, 0x02, 0x53, +0x00, 0x04, 0x02, 0x34, 0x02, 0x3E, 0x02, 0x48, 0x02, 0x52, 0x00, 0x04, 0x02, 0x33, 0x02, 0x3D, +0x02, 0x47, 0x02, 0x51, 0x00, 0x04, 0x02, 0x32, 0x02, 0x3C, 0x02, 0x46, 0x02, 0x50, 0x00, 0x05, +0x02, 0x30, 0x02, 0x31, 0x02, 0x3B, 0x02, 0x45, 0x02, 0x4F, 0x00, 0x02, 0x01, 0xF8, 0x02, 0x20, +0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0xFE, 0x00, 0x7C, 0x02, 0x20, +0x00, 0xF2, 0x00, 0xF3, 0x00, 0xF4, 0x00, 0xF5, 0x00, 0xF6, 0x00, 0xF7, 0x00, 0xF8, 0x00, 0xF9, +0x00, 0xFA, 0x00, 0xFB, 0x00, 0xFC, 0x00, 0xFD, 0x00, 0xFE, 0x00, 0xFF, 0x01, 0x00, 0x01, 0x01, +0x01, 0x02, 0x01, 0x03, 0x01, 0x04, 0x01, 0x05, 0x01, 0x06, 0x02, 0x21, 0x00, 0xB6, 0x00, 0xC0, +0x01, 0xF9, 0x01, 0xFA, 0x01, 0xFB, 0x01, 0xFC, 0x01, 0xFD, 0x01, 0xFE, 0x01, 0xFF, 0x02, 0x00, +0x02, 0x01, 0x02, 0x02, 0x02, 0x03, 0x02, 0x04, 0x02, 0x05, 0x02, 0x06, 0x02, 0x07, 0x02, 0x08, +0x02, 0x09, 0x02, 0x0A, 0x02, 0x0B, 0x02, 0x0C, 0x02, 0x0D, 0x02, 0x0E, 0x02, 0x0F, 0x02, 0x10, +0x02, 0x11, 0x02, 0x12, 0x02, 0x13, 0x02, 0x14, 0x02, 0x15, 0x02, 0x16, 0x02, 0x17, 0x02, 0x18, +0x01, 0x60, 0x02, 0x21, 0x01, 0xBC, 0x01, 0xC5, 0x02, 0x31, 0x02, 0x32, 0x02, 0x33, 0x02, 0x34, +0x02, 0x35, 0x02, 0x36, 0x02, 0x37, 0x02, 0x38, 0x02, 0x39, 0x02, 0x3A, 0x02, 0x79, 0x02, 0x7B, +0x02, 0x7D, 0x02, 0x86, 0x02, 0x87, 0x02, 0x88, 0x02, 0x8F, 0x02, 0x90, 0x02, 0x91, 0x02, 0x92, +0x02, 0x93, 0x02, 0x94, 0x02, 0xA1, 0x02, 0xA2, 0x02, 0xA3, 0x02, 0xA4, 0x02, 0xB6, 0x03, 0x34, +0x03, 0x33, 0x03, 0x36, 0x03, 0x35, 0x03, 0x2E, 0x03, 0x2D, 0x03, 0x30, 0x03, 0x2F, 0x03, 0x23, +0x03, 0x24, 0x03, 0x25, 0x03, 0x26, 0x03, 0x27, 0x03, 0x28, 0x03, 0x29, 0x03, 0x2A, 0x03, 0x2B, +0x03, 0x2C, 0x03, 0x31, 0x03, 0x32, 0x03, 0x37, 0x03, 0x38, 0x03, 0x39, 0x03, 0x3A, 0x03, 0x3B, +0x03, 0x3C, 0x03, 0x3D, 0x03, 0x3E, 0x03, 0x3F, 0x03, 0x40, 0x03, 0x41, 0x03, 0x42, 0x03, 0x43, +0x03, 0x44, 0x03, 0x45, 0x03, 0x46, 0x00, 0x02, 0x00, 0x1B, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, +0x00, 0x53, 0x00, 0x65, 0x00, 0x01, 0x00, 0x69, 0x00, 0x69, 0x00, 0x14, 0x00, 0x75, 0x00, 0x75, +0x00, 0x15, 0x00, 0x80, 0x00, 0x80, 0x00, 0x16, 0x00, 0xB4, 0x00, 0xB4, 0x00, 0x17, 0x00, 0xBF, +0x00, 0xBF, 0x00, 0x18, 0x01, 0x08, 0x01, 0x20, 0x00, 0x19, 0x01, 0x4B, 0x01, 0x51, 0x00, 0x32, +0x01, 0x57, 0x01, 0x57, 0x00, 0x39, 0x01, 0x86, 0x01, 0x86, 0x00, 0x3A, 0x01, 0xBA, 0x01, 0xBA, +0x00, 0x3B, 0x01, 0xC4, 0x01, 0xC4, 0x00, 0x3C, 0x02, 0x45, 0x02, 0x4E, 0x00, 0x3D, 0x02, 0x73, +0x02, 0x73, 0x00, 0x47, 0x02, 0x77, 0x02, 0x77, 0x00, 0x48, 0x02, 0x7C, 0x02, 0x7C, 0x00, 0x49, +0x02, 0x7E, 0x02, 0x7E, 0x00, 0x4A, 0x02, 0x80, 0x02, 0x81, 0x00, 0x4B, 0x02, 0x89, 0x02, 0x8E, +0x00, 0x4D, 0x02, 0x9B, 0x02, 0x9E, 0x00, 0x53, 0x02, 0xA6, 0x02, 0xA6, 0x00, 0x57, 0x02, 0xEA, +0x02, 0xFA, 0x00, 0x58, 0x02, 0xFC, 0x02, 0xFD, 0x00, 0x69, 0x02, 0xFF, 0x03, 0x0B, 0x00, 0x6B, +0x03, 0x0D, 0x03, 0x0D, 0x00, 0x78, 0x03, 0x10, 0x03, 0x12, 0x00, 0x79, 0x02, 0x48, 0x00, 0x28, +0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, +0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, +0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, +0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, +0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, +0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, +0x02, 0xB6, 0xFF, 0xFF, 0x02, 0xB6, 0xFF, 0xFF, 0x04, 0x33, 0xFF, 0xF7, 0x04, 0x33, 0xFF, 0xF7, +0x02, 0xBD, 0x00, 0x58, 0x02, 0xB6, 0x00, 0x2B, 0x02, 0xB6, 0x00, 0x2B, 0x02, 0xB6, 0x00, 0x2B, +0x02, 0xB6, 0x00, 0x2B, 0x02, 0xB6, 0x00, 0x2B, 0x02, 0xB6, 0x00, 0x2B, 0x02, 0xB6, 0x00, 0x2B, +0x03, 0x04, 0x00, 0x58, 0x05, 0x82, 0x00, 0x58, 0x05, 0x82, 0x00, 0x58, 0x03, 0x04, 0x00, 0x23, +0x03, 0x04, 0x00, 0x58, 0x03, 0x04, 0x00, 0x23, 0x03, 0x04, 0x00, 0x58, 0x03, 0x04, 0x00, 0x58, +0x05, 0x29, 0x00, 0x58, 0x05, 0x29, 0x00, 0x58, 0x02, 0x85, 0x00, 0x58, 0x02, 0x85, 0x00, 0x58, +0x02, 0x85, 0x00, 0x58, 0x02, 0x85, 0x00, 0x58, 0x02, 0x85, 0x00, 0x58, 0x02, 0x85, 0x00, 0x58, +0x02, 0x85, 0x00, 0x58, 0x02, 0x85, 0x00, 0x58, 0x02, 0x85, 0x00, 0x58, 0x02, 0x85, 0x00, 0x58, +0x02, 0x85, 0x00, 0x58, 0x02, 0x85, 0x00, 0x42, 0x02, 0x85, 0x00, 0x58, 0x02, 0x85, 0x00, 0x58, +0x02, 0x85, 0x00, 0x58, 0x02, 0x85, 0x00, 0x58, 0x02, 0x85, 0x00, 0x58, 0x02, 0x85, 0x00, 0x58, +0x02, 0x85, 0x00, 0x58, 0x02, 0x85, 0x00, 0x58, 0x02, 0x85, 0x00, 0x58, 0x02, 0x85, 0x00, 0x58, +0x02, 0x85, 0x00, 0x58, 0x02, 0x6A, 0x00, 0x58, 0x03, 0x0E, 0x00, 0x2B, 0x03, 0x0E, 0x00, 0x2B, +0x03, 0x0E, 0x00, 0x2B, 0x03, 0x0E, 0x00, 0x2B, 0x03, 0x0E, 0x00, 0x2B, 0x03, 0x0E, 0x00, 0x2B, +0x03, 0x0E, 0x00, 0x2B, 0x03, 0x0B, 0x00, 0x58, 0x03, 0x34, 0x00, 0x22, 0x03, 0x0B, 0x00, 0x58, +0x03, 0x0B, 0x00, 0x58, 0x03, 0x0B, 0x00, 0x58, 0x02, 0x2B, 0x00, 0x4A, 0x04, 0xC4, 0x00, 0x4A, +0x02, 0x2B, 0x00, 0x4A, 0x02, 0x2B, 0x00, 0x4A, 0x02, 0x2B, 0x00, 0x4A, 0x02, 0x2B, 0x00, 0x4A, +0x02, 0x2B, 0x00, 0x01, 0x02, 0x2B, 0x00, 0x45, 0x02, 0x2B, 0x00, 0x45, 0x02, 0x2B, 0x00, 0x4A, +0x02, 0x2B, 0x00, 0x4A, 0x02, 0x2B, 0x00, 0x4A, 0x02, 0x2B, 0x00, 0x4A, 0x02, 0x2B, 0x00, 0x4A, +0x02, 0x2B, 0x00, 0x4A, 0x02, 0x2B, 0x00, 0x4A, 0x02, 0x2B, 0x00, 0x4A, 0x02, 0x99, 0x00, 0x27, +0x02, 0x99, 0x00, 0x27, 0x02, 0xE3, 0x00, 0x58, 0x02, 0xE3, 0x00, 0x58, 0x02, 0x61, 0x00, 0x58, +0x04, 0xFA, 0x00, 0x58, 0x02, 0x61, 0x00, 0x31, 0x02, 0x61, 0x00, 0x58, 0x02, 0x61, 0x00, 0x58, +0x02, 0x61, 0x00, 0x58, 0x02, 0x61, 0x00, 0x58, 0x03, 0x9C, 0x00, 0x58, 0x02, 0x61, 0x00, 0x58, +0x02, 0x71, 0xFF, 0xF8, 0x03, 0x6E, 0x00, 0x58, 0x03, 0x6E, 0x00, 0x58, 0x03, 0x27, 0x00, 0x58, +0x05, 0xC0, 0x00, 0x58, 0x03, 0x27, 0x00, 0x58, 0x03, 0x27, 0x00, 0x58, 0x03, 0x27, 0x00, 0x58, +0x03, 0x27, 0x00, 0x58, 0x03, 0x27, 0x00, 0x58, 0x03, 0x1D, 0xFF, 0xCF, 0x04, 0x62, 0x00, 0x58, +0x03, 0x27, 0x00, 0x58, 0x03, 0x27, 0x00, 0x58, 0x03, 0x27, 0x00, 0x58, 0x03, 0x2C, 0x00, 0x2B, +0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, +0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, +0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, +0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, +0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, +0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, +0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, +0x03, 0x27, 0x00, 0x2B, 0x03, 0x27, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, +0x03, 0x2C, 0x00, 0x2B, 0x03, 0x2C, 0x00, 0x2B, 0x04, 0x37, 0x00, 0x2B, 0x02, 0x96, 0x00, 0x58, +0x02, 0x96, 0x00, 0x58, 0x03, 0x2C, 0x00, 0x2B, 0x02, 0xBE, 0x00, 0x58, 0x02, 0xBE, 0x00, 0x58, +0x02, 0xBE, 0x00, 0x58, 0x02, 0xBE, 0x00, 0x58, 0x02, 0xBE, 0x00, 0x38, 0x02, 0xBE, 0x00, 0x58, +0x02, 0xBE, 0x00, 0x58, 0x02, 0xBE, 0x00, 0x58, 0x02, 0x7A, 0x00, 0x14, 0x02, 0x7A, 0x00, 0x14, +0x02, 0x7A, 0x00, 0x14, 0x02, 0x7A, 0x00, 0x14, 0x02, 0x7A, 0x00, 0x14, 0x02, 0x7A, 0x00, 0x14, +0x02, 0x7A, 0x00, 0x14, 0x02, 0x7A, 0x00, 0x14, 0x02, 0x7A, 0x00, 0x14, 0x02, 0x7A, 0x00, 0x14, +0x02, 0x7A, 0x00, 0x14, 0x03, 0x2B, 0x00, 0x58, 0x03, 0x03, 0x00, 0x2B, 0x02, 0x8F, 0x00, 0x20, +0x02, 0x8F, 0x00, 0x20, 0x02, 0x8F, 0x00, 0x20, 0x02, 0x8F, 0x00, 0x20, 0x02, 0x8F, 0x00, 0x20, +0x02, 0x8F, 0x00, 0x20, 0x02, 0x8F, 0x00, 0x20, 0x02, 0xFD, 0x00, 0x53, 0x02, 0xFD, 0x00, 0x53, +0x02, 0xFD, 0x00, 0x53, 0x02, 0xFD, 0x00, 0x53, 0x02, 0xFD, 0x00, 0x53, 0x02, 0xFD, 0x00, 0x53, +0x02, 0xFD, 0x00, 0x53, 0x02, 0xFD, 0x00, 0x53, 0x02, 0xFD, 0x00, 0x53, 0x02, 0xFD, 0x00, 0x53, +0x02, 0xFD, 0x00, 0x53, 0x02, 0xFD, 0x00, 0x53, 0x02, 0xFD, 0x00, 0x53, 0x02, 0xFD, 0x00, 0x53, +0x02, 0xFD, 0x00, 0x53, 0x02, 0xFD, 0x00, 0x53, 0x02, 0xFD, 0x00, 0x53, 0x02, 0xFD, 0x00, 0x53, +0x02, 0xFD, 0x00, 0x53, 0x02, 0xFD, 0x00, 0x53, 0x02, 0xFD, 0x00, 0x53, 0x02, 0xFD, 0x00, 0x53, +0x02, 0xFD, 0x00, 0x53, 0x02, 0xFD, 0x00, 0x53, 0x02, 0xC8, 0x00, 0x04, 0x03, 0xE1, 0x00, 0x04, +0x03, 0xE1, 0x00, 0x04, 0x03, 0xE1, 0x00, 0x04, 0x03, 0xE1, 0x00, 0x04, 0x03, 0xE1, 0x00, 0x04, +0x02, 0xC1, 0xFF, 0xFF, 0x02, 0xB1, 0xFF, 0xF9, 0x02, 0xB1, 0xFF, 0xF9, 0x02, 0xB1, 0xFF, 0xF9, +0x02, 0xB1, 0xFF, 0xF9, 0x02, 0xB1, 0xFF, 0xF9, 0x02, 0xB1, 0xFF, 0xF9, 0x02, 0xB1, 0xFF, 0xF9, +0x02, 0xB1, 0xFF, 0xF9, 0x02, 0xB1, 0xFF, 0xF9, 0x02, 0xB1, 0xFF, 0xF9, 0x02, 0xAB, 0x00, 0x3C, +0x02, 0xAB, 0x00, 0x3C, 0x02, 0xAB, 0x00, 0x3C, 0x02, 0xAB, 0x00, 0x3C, 0x02, 0xAB, 0x00, 0x3C, +0x04, 0xC4, 0x00, 0x4A, 0x01, 0x5B, 0x00, 0x59, 0x03, 0x9C, 0x00, 0x59, 0x01, 0x5B, 0x00, 0x30, +0x01, 0x5B, 0xFF, 0xFA, 0x01, 0x5B, 0xFF, 0xF8, 0x01, 0x5B, 0xFF, 0xF8, 0x01, 0x5B, 0xFF, 0x99, +0x01, 0x5B, 0xFF, 0xDD, 0x01, 0x5B, 0xFF, 0xDD, 0x01, 0x5B, 0x00, 0x4E, 0x01, 0x5B, 0x00, 0x4C, +0x01, 0x5B, 0x00, 0x2D, 0x01, 0x5B, 0x00, 0x33, 0x01, 0x5B, 0xFF, 0xFA, 0x01, 0x5B, 0xFF, 0xFA, +0x01, 0x5B, 0x00, 0x27, 0x01, 0x5B, 0xFF, 0xEF, 0x02, 0x41, 0x00, 0x21, 0x02, 0x41, 0x00, 0x21, +0x04, 0xA2, 0x00, 0x58, 0x05, 0x68, 0x00, 0x58, 0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, +0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, +0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, +0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, +0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, +0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, +0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, 0x02, 0x93, 0x00, 0x21, +0x03, 0x84, 0x00, 0x21, 0x03, 0x84, 0x00, 0x21, 0x02, 0x92, 0x00, 0x47, 0x02, 0x21, 0x00, 0x22, +0x02, 0x21, 0x00, 0x22, 0x02, 0x21, 0x00, 0x22, 0x02, 0x21, 0x00, 0x22, 0x02, 0x21, 0x00, 0x22, +0x02, 0x21, 0x00, 0x22, 0x02, 0x21, 0x00, 0x22, 0x02, 0x8E, 0x00, 0x22, 0x02, 0x55, 0x00, 0x22, +0x02, 0xF2, 0x00, 0x22, 0x02, 0x8E, 0x00, 0x22, 0x02, 0x8E, 0x00, 0x22, 0x02, 0x8E, 0x00, 0x22, +0x04, 0xB4, 0x00, 0x22, 0x02, 0x4A, 0x00, 0x22, 0x02, 0x4A, 0x00, 0x22, 0x02, 0x4A, 0x00, 0x22, +0x02, 0x4A, 0x00, 0x22, 0x02, 0x4A, 0x00, 0x22, 0x02, 0x4A, 0x00, 0x22, 0x02, 0x4A, 0x00, 0x22, +0x02, 0x4A, 0x00, 0x22, 0x02, 0x4A, 0x00, 0x22, 0x02, 0x4A, 0x00, 0x22, 0x02, 0x4A, 0x00, 0x22, +0x02, 0x4A, 0x00, 0x10, 0x02, 0x4A, 0x00, 0x22, 0x02, 0x4A, 0x00, 0x22, 0x02, 0x4A, 0x00, 0x22, +0x02, 0x4A, 0x00, 0x22, 0x02, 0x4A, 0x00, 0x22, 0x02, 0x4A, 0x00, 0x22, 0x02, 0x4A, 0x00, 0x22, +0x02, 0x4A, 0x00, 0x22, 0x02, 0x4A, 0x00, 0x22, 0x02, 0x4A, 0x00, 0x22, 0x02, 0x4A, 0x00, 0x22, +0x02, 0x4A, 0x00, 0x1F, 0x01, 0x89, 0x00, 0x1B, 0x02, 0x9D, 0x00, 0x22, 0x02, 0x9D, 0x00, 0x22, +0x02, 0x9D, 0x00, 0x22, 0x02, 0x9D, 0x00, 0x22, 0x02, 0x9D, 0x00, 0x22, 0x02, 0x9D, 0x00, 0x22, +0x02, 0x9D, 0x00, 0x22, 0x02, 0x7B, 0x00, 0x47, 0x02, 0x7B, 0x00, 0x0D, 0x02, 0x7B, 0x00, 0x47, +0x02, 0x7B, 0x00, 0x47, 0x02, 0x7B, 0x00, 0x47, 0x01, 0x3F, 0x00, 0x40, 0x01, 0x21, 0x00, 0x40, +0x01, 0x21, 0x00, 0x12, 0x01, 0x21, 0xFF, 0xDD, 0x01, 0x21, 0xFF, 0xD4, 0x01, 0x21, 0xFF, 0xD0, +0x01, 0x21, 0xFF, 0x70, 0x01, 0x21, 0xFF, 0xC1, 0x01, 0x21, 0xFF, 0xC2, 0x01, 0x21, 0x00, 0x31, +0x01, 0x3F, 0x00, 0x3E, 0x01, 0x21, 0xFF, 0xFE, 0x01, 0x21, 0x00, 0x15, 0x01, 0x21, 0xFF, 0xDD, +0x02, 0x7B, 0x00, 0x40, 0x01, 0x21, 0xFF, 0xE8, 0x01, 0x21, 0x00, 0x02, 0x01, 0x21, 0xFF, 0xDB, +0x01, 0x3C, 0xFF, 0xDA, 0x01, 0x3B, 0xFF, 0xDA, 0x01, 0x3B, 0xFF, 0xDA, 0x02, 0x72, 0x00, 0x47, +0x02, 0x72, 0x00, 0x47, 0x02, 0x75, 0x00, 0x47, 0x01, 0x30, 0x00, 0x48, 0x01, 0x30, 0x00, 0x1B, +0x01, 0x94, 0x00, 0x48, 0x01, 0x30, 0x00, 0x39, 0x01, 0xC0, 0x00, 0x48, 0x01, 0x30, 0x00, 0x37, +0x02, 0x5D, 0x00, 0x48, 0x01, 0x30, 0xFF, 0xFF, 0x01, 0x79, 0xFF, 0xFF, 0x03, 0xC2, 0x00, 0x46, +0x03, 0xC2, 0x00, 0x46, 0x02, 0x7B, 0x00, 0x47, 0x02, 0x7B, 0x00, 0x47, 0x02, 0x9E, 0xFF, 0xA3, +0x02, 0x7B, 0x00, 0x47, 0x02, 0x7B, 0x00, 0x47, 0x02, 0x7B, 0x00, 0x47, 0x02, 0x7B, 0x00, 0x47, +0x02, 0x86, 0xFF, 0xDA, 0x03, 0xB7, 0x00, 0x47, 0x02, 0x7B, 0x00, 0x47, 0x02, 0x7B, 0x00, 0x47, +0x02, 0x7B, 0x00, 0x47, 0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, +0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, +0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x21, +0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, +0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, +0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, +0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, +0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, +0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, 0x02, 0x81, 0x00, 0x22, +0x03, 0xEB, 0x00, 0x22, 0x02, 0x93, 0x00, 0x47, 0x02, 0x93, 0x00, 0x47, 0x02, 0x92, 0x00, 0x22, +0x01, 0xC7, 0x00, 0x47, 0x01, 0xC7, 0x00, 0x47, 0x01, 0xC7, 0x00, 0x47, 0x01, 0xC7, 0x00, 0x34, +0x01, 0xC7, 0xFF, 0xE6, 0x01, 0xC7, 0x00, 0x31, 0x01, 0xC7, 0x00, 0x47, 0x01, 0xC7, 0xFF, 0xFA, +0x01, 0xEF, 0x00, 0x12, 0x01, 0xEF, 0x00, 0x12, 0x01, 0xEF, 0x00, 0x12, 0x01, 0xEF, 0x00, 0x12, +0x01, 0xEF, 0x00, 0x12, 0x01, 0xEF, 0x00, 0x12, 0x01, 0xEF, 0x00, 0x12, 0x01, 0xEF, 0x00, 0x12, +0x01, 0xEF, 0x00, 0x12, 0x01, 0xEF, 0x00, 0x12, 0x01, 0xEF, 0x00, 0x12, 0x02, 0x9B, 0x00, 0x1B, +0x01, 0x8E, 0x00, 0x15, 0x01, 0x8E, 0x00, 0x15, 0x01, 0x8E, 0x00, 0x15, 0x01, 0x8E, 0x00, 0x15, +0x01, 0x8E, 0x00, 0x15, 0x01, 0x8E, 0xFF, 0xF6, 0x01, 0x8E, 0x00, 0x15, 0x01, 0x8E, 0x00, 0x15, +0x02, 0x82, 0x00, 0x41, 0x02, 0x82, 0x00, 0x41, 0x02, 0x82, 0x00, 0x41, 0x02, 0x82, 0x00, 0x41, +0x02, 0x82, 0x00, 0x41, 0x02, 0x82, 0x00, 0x22, 0x02, 0x82, 0x00, 0x41, 0x02, 0x82, 0x00, 0x41, +0x02, 0x82, 0x00, 0x41, 0x02, 0x82, 0x00, 0x41, 0x02, 0x82, 0x00, 0x41, 0x02, 0x82, 0x00, 0x41, +0x02, 0x82, 0x00, 0x41, 0x02, 0x82, 0x00, 0x41, 0x02, 0x82, 0x00, 0x41, 0x02, 0x82, 0x00, 0x41, +0x02, 0x82, 0x00, 0x41, 0x02, 0x82, 0x00, 0x41, 0x02, 0x82, 0x00, 0x41, 0x02, 0x82, 0x00, 0x41, +0x02, 0x82, 0x00, 0x41, 0x02, 0x82, 0x00, 0x41, 0x02, 0x82, 0x00, 0x41, 0x02, 0x82, 0x00, 0x41, +0x02, 0x5D, 0x00, 0x0C, 0x03, 0x42, 0x00, 0x0C, 0x03, 0x42, 0x00, 0x0C, 0x03, 0x42, 0x00, 0x0C, +0x03, 0x42, 0x00, 0x0C, 0x03, 0x42, 0x00, 0x0C, 0x02, 0x5E, 0x00, 0x12, 0x02, 0x6C, 0x00, 0x05, +0x02, 0x6C, 0x00, 0x05, 0x02, 0x6C, 0x00, 0x05, 0x02, 0x6C, 0x00, 0x05, 0x02, 0x6C, 0x00, 0x05, +0x02, 0x6C, 0x00, 0x05, 0x02, 0x6C, 0x00, 0x05, 0x02, 0x6C, 0x00, 0x05, 0x02, 0x6C, 0x00, 0x05, +0x02, 0x6C, 0x00, 0x05, 0x02, 0x26, 0x00, 0x32, 0x02, 0x26, 0x00, 0x32, 0x02, 0x26, 0x00, 0x32, +0x02, 0x26, 0x00, 0x32, 0x02, 0x26, 0x00, 0x32, 0x02, 0x5C, 0x00, 0x12, 0x02, 0x37, 0x00, 0x26, +0x02, 0x37, 0x00, 0x26, 0x02, 0x37, 0x00, 0x26, 0x02, 0x37, 0x00, 0x26, 0x02, 0x37, 0x00, 0x26, +0x02, 0x37, 0x00, 0x26, 0x02, 0x37, 0x00, 0x26, 0x02, 0x37, 0x00, 0x26, 0x02, 0x37, 0x00, 0x26, +0x02, 0x37, 0x00, 0x26, 0x02, 0x37, 0x00, 0x26, 0x02, 0x37, 0x00, 0x26, 0x02, 0x37, 0x00, 0x26, +0x02, 0x37, 0x00, 0x26, 0x02, 0x37, 0x00, 0x26, 0x02, 0x37, 0xFF, 0xFC, 0x02, 0x37, 0x00, 0x26, +0x02, 0x37, 0x00, 0x26, 0x02, 0x37, 0x00, 0x26, 0x02, 0x37, 0x00, 0x26, 0x02, 0x37, 0x00, 0x26, +0x02, 0x37, 0x00, 0x26, 0x02, 0x37, 0x00, 0x26, 0x02, 0x37, 0x00, 0x26, 0x02, 0x37, 0x00, 0x26, +0x02, 0x37, 0x00, 0x26, 0x02, 0x53, 0x00, 0x24, 0x02, 0x53, 0x00, 0x24, 0x02, 0x53, 0x00, 0x24, +0x02, 0x53, 0x00, 0x24, 0x02, 0x53, 0x00, 0x24, 0x02, 0x53, 0x00, 0x24, 0x02, 0x53, 0x00, 0x24, +0x03, 0x12, 0x00, 0x1B, 0x04, 0x51, 0x00, 0x1B, 0x05, 0x8D, 0x00, 0x1B, 0x04, 0x42, 0x00, 0x1B, +0x04, 0x04, 0x00, 0x1B, 0x02, 0xC8, 0x00, 0x1B, 0x02, 0xB9, 0x00, 0x1B, 0x01, 0x87, 0x00, 0x12, +0x01, 0x90, 0x00, 0x1F, 0x02, 0xC7, 0xFF, 0xFD, 0x02, 0xD7, 0x00, 0x1C, 0x02, 0x7F, 0x00, 0x4A, +0x02, 0x86, 0x00, 0x1F, 0x02, 0xA3, 0x00, 0x28, 0x02, 0x31, 0x00, 0x45, 0x02, 0x24, 0x00, 0x1A, +0x02, 0x4F, 0x00, 0x17, 0x02, 0x96, 0x00, 0x13, 0x02, 0x54, 0x00, 0x20, 0x02, 0x43, 0x00, 0x22, +0x02, 0x29, 0x00, 0x2E, 0x02, 0x57, 0x00, 0x28, 0x02, 0x41, 0x00, 0x1E, 0x02, 0xA3, 0x00, 0x28, +0x01, 0x9A, 0x00, 0x24, 0x01, 0x23, 0x00, 0x1A, 0x01, 0x6C, 0x00, 0x26, 0x01, 0x64, 0x00, 0x24, +0x01, 0x98, 0x00, 0x19, 0x01, 0x70, 0x00, 0x21, 0x01, 0x79, 0x00, 0x24, 0x01, 0x4A, 0x00, 0x27, +0x01, 0x80, 0x00, 0x2A, 0x01, 0x6F, 0x00, 0x21, 0x01, 0x9A, 0x00, 0x24, 0x01, 0x23, 0x00, 0x1A, +0x01, 0x6C, 0x00, 0x26, 0x01, 0x64, 0x00, 0x24, 0x01, 0x98, 0x00, 0x19, 0x01, 0x70, 0x00, 0x21, +0x01, 0x79, 0x00, 0x24, 0x01, 0x4A, 0x00, 0x27, 0x01, 0x80, 0x00, 0x2A, 0x01, 0x6F, 0x00, 0x21, +0x01, 0x9A, 0x00, 0x24, 0x01, 0x23, 0x00, 0x1A, 0x01, 0x6C, 0x00, 0x26, 0x01, 0x64, 0x00, 0x24, +0x01, 0x98, 0x00, 0x19, 0x01, 0x70, 0x00, 0x21, 0x01, 0x79, 0x00, 0x24, 0x01, 0x4A, 0x00, 0x27, +0x01, 0x80, 0x00, 0x2A, 0x01, 0x6F, 0x00, 0x21, 0x01, 0x9A, 0x00, 0x24, 0x01, 0x23, 0x00, 0x1A, +0x01, 0x6C, 0x00, 0x26, 0x01, 0x64, 0x00, 0x24, 0x01, 0x98, 0x00, 0x19, 0x01, 0x70, 0x00, 0x21, +0x01, 0x79, 0x00, 0x24, 0x01, 0x4A, 0x00, 0x27, 0x01, 0x80, 0x00, 0x2A, 0x01, 0x6F, 0x00, 0x21, +0x02, 0x5E, 0xFF, 0xFD, 0x03, 0x3B, 0x00, 0x22, 0x03, 0x35, 0x00, 0x22, 0x03, 0x52, 0x00, 0x17, +0x03, 0x53, 0x00, 0x3C, 0x03, 0x51, 0x00, 0x17, 0x03, 0x78, 0x00, 0x20, 0x03, 0x5F, 0x00, 0x3C, +0x01, 0x15, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, +0x01, 0x40, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x00, 0xCD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x01, 0x01, 0x00, 0x2A, 0x01, 0x1F, 0x00, 0x27, 0x01, 0x01, 0x00, 0x2A, 0x01, 0x23, 0x00, 0x2A, +0x02, 0xE0, 0x00, 0x2A, 0x01, 0x35, 0x00, 0x43, 0x01, 0x35, 0x00, 0x42, 0x02, 0x18, 0x00, 0x18, +0x02, 0x18, 0x00, 0x18, 0x01, 0x01, 0x00, 0x2A, 0x01, 0x5A, 0x00, 0x25, 0x01, 0xB8, 0x00, 0x11, +0x02, 0xDE, 0x00, 0x30, 0x02, 0x53, 0x00, 0x08, 0x02, 0x48, 0x00, 0x14, 0x01, 0x01, 0x00, 0x2A, +0x01, 0x6B, 0x00, 0x2D, 0x02, 0x2B, 0x00, 0x08, 0x02, 0x20, 0x00, 0x14, 0x00, 0x95, 0xFF, 0xF5, +0x00, 0x00, 0xFF, 0x29, 0x01, 0xC0, 0x00, 0x33, 0x01, 0xC6, 0x00, 0x39, 0x02, 0x53, 0x00, 0x39, +0x03, 0xA5, 0x00, 0x39, 0x02, 0x47, 0x00, 0x33, 0x03, 0x9A, 0x00, 0x33, 0x01, 0xC0, 0x00, 0x33, +0x02, 0xAF, 0x00, 0x28, 0x01, 0xC0, 0x00, 0x33, 0x02, 0x47, 0x00, 0x33, 0x03, 0x9A, 0x00, 0x33, +0x01, 0x86, 0x00, 0x28, 0x01, 0x86, 0x00, 0x09, 0x01, 0xAB, 0x00, 0x27, 0x01, 0xAB, 0x00, 0x1B, +0x01, 0xA4, 0x00, 0x50, 0x01, 0xA4, 0x00, 0x2A, 0x01, 0x65, 0x00, 0x28, 0x01, 0x65, 0x00, 0x09, +0x01, 0xAB, 0x00, 0x27, 0x01, 0xAB, 0x00, 0x1B, 0x01, 0xA4, 0x00, 0x50, 0x01, 0xA4, 0x00, 0x2A, +0x01, 0x1F, 0x00, 0x27, 0x02, 0x00, 0x00, 0x27, 0x01, 0xFA, 0x00, 0x28, 0x01, 0xF9, 0x00, 0x1A, +0x01, 0x14, 0x00, 0x28, 0x01, 0x14, 0x00, 0x1A, 0x02, 0x32, 0x00, 0x0A, 0x02, 0x35, 0x00, 0x25, +0x01, 0x3B, 0x00, 0x0A, 0x01, 0x3C, 0x00, 0x25, 0x01, 0xDD, 0x00, 0x2C, 0x00, 0xFC, 0x00, 0x2C, +0x02, 0x32, 0x00, 0x0A, 0x02, 0x35, 0x00, 0x25, 0x01, 0x3B, 0x00, 0x0A, 0x01, 0x3C, 0x00, 0x25, +0x02, 0x2D, 0xFF, 0xFC, 0x03, 0xC5, 0x00, 0x28, 0x03, 0x08, 0x00, 0x32, 0x02, 0xFB, 0x00, 0x2B, +0x02, 0x3F, 0x00, 0x22, 0x03, 0x17, 0x00, 0x1A, 0x01, 0xFB, 0x00, 0x07, 0x03, 0x72, 0x00, 0x23, +0x02, 0x14, 0x00, 0x63, 0x01, 0xEF, 0x00, 0x2C, 0x01, 0x3E, 0x00, 0x53, 0x01, 0x44, 0x00, 0x55, +0x01, 0xB8, 0x00, 0x28, 0x02, 0x39, 0x00, 0x10, 0x01, 0xA9, 0x00, 0x28, 0x02, 0xBC, 0x00, 0x3B, +0x04, 0xD6, 0x00, 0x58, 0x03, 0xC5, 0x00, 0x28, 0x02, 0xB6, 0x00, 0x2B, 0x02, 0x33, 0x00, 0x2E, +0x02, 0xB6, 0x00, 0x2B, 0x02, 0x30, 0x00, 0x1C, 0x02, 0x7A, 0x00, 0x1C, 0x02, 0x22, 0x00, 0x28, +0x02, 0xA7, 0x00, 0x12, 0x02, 0x6A, 0x00, 0x1F, 0x03, 0x0E, 0x00, 0x2B, 0x02, 0xFE, 0x00, 0x1E, +0x02, 0x7C, 0x00, 0x15, 0x02, 0x71, 0x00, 0x12, 0x03, 0x06, 0x00, 0x58, 0x03, 0x56, 0x00, 0x10, +0x03, 0x10, 0x00, 0x35, 0x03, 0x0B, 0x00, 0x35, 0x02, 0xC5, 0x00, 0x35, 0x02, 0x5A, 0x00, 0x28, +0x02, 0x7E, 0x00, 0x15, 0x03, 0xF1, 0x00, 0x07, 0x02, 0xB1, 0xFF, 0xF9, 0x01, 0x58, 0x00, 0x38, +0x02, 0x37, 0x00, 0x04, 0x02, 0x55, 0x00, 0x30, 0x02, 0x44, 0x00, 0x26, 0x02, 0x14, 0x00, 0x26, +0x02, 0x55, 0x00, 0x2B, 0x02, 0x6F, 0x00, 0x43, 0x02, 0x7B, 0x00, 0x3D, 0x02, 0x0E, 0x00, 0x28, +0x02, 0x0D, 0x00, 0x29, 0x02, 0x73, 0x00, 0x41, 0x02, 0x73, 0x00, 0x41, 0x02, 0x81, 0x00, 0x43, +0x02, 0x60, 0x00, 0x38, 0x02, 0x2E, 0x00, 0x20, 0x02, 0x9E, 0x00, 0x29, 0x02, 0x50, 0x00, 0x0C, +0x03, 0x8B, 0x00, 0x2A, 0x02, 0x81, 0x00, 0x22, 0x02, 0x6A, 0xFF, 0xE7, 0x02, 0xD7, 0x00, 0x1C, +0x02, 0xC7, 0xFF, 0xFD, 0x02, 0xE4, 0x00, 0x23, 0x02, 0x0B, 0x00, 0x20, 0x02, 0xE3, 0x00, 0x09, +0x02, 0x7F, 0x00, 0x4A, 0x02, 0x62, 0x00, 0x22, 0x03, 0xC8, 0x00, 0x28, 0x05, 0x46, 0x00, 0x28, +0x02, 0x8C, 0x00, 0x26, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x47, +0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x0B, +0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x2B, 0x00, 0x00, 0x00, 0x2B, 0x00, 0x00, 0x00, 0x2B, +0x00, 0x00, 0x00, 0x9B, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x7C, 0x00, 0x00, 0x00, 0x7C, +0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x9B, 0x00, 0x00, 0x00, 0x3A, +0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x82, +0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x44, +0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x2B, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x52, +0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x9B, +0x00, 0x00, 0x00, 0x8F, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x2B, 0x00, 0x00, 0x00, 0x9B, +0x00, 0x00, 0x00, 0x8E, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x61, +0x00, 0x00, 0x00, 0x57, 0x01, 0xF4, 0x00, 0x2B, 0x01, 0xF4, 0x00, 0x9B, 0x01, 0xF4, 0x00, 0x7C, +0x01, 0xF4, 0x00, 0x7C, 0x01, 0xF4, 0x00, 0x19, 0x01, 0xF4, 0x00, 0x3A, 0x01, 0xF4, 0x00, 0x3E, +0x01, 0x92, 0x00, 0x47, 0x01, 0xF4, 0x00, 0x82, 0x01, 0xF4, 0x00, 0x45, 0x01, 0xA8, 0x00, 0x52, +0x01, 0xF4, 0x00, 0x8E, 0x01, 0xF4, 0x00, 0x82, 0x00, 0x00, 0x00, 0x2A, 0x00, 0x00, 0x00, 0x2A, +0x00, 0x00, 0x00, 0x2A, 0x00, 0x00, 0x00, 0x9B, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x76, +0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x45, +0x00, 0x00, 0x00, 0x2D, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x0E, +0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x47, +0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x3C, +0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x3B, 0x00, 0x00, 0x00, 0x3B, 0x00, 0x00, 0x00, 0x47, +0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x80, +0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x8F, 0x00, 0x00, 0x00, 0x9B, +0x00, 0x00, 0x00, 0x8E, 0x00, 0x00, 0x00, 0x82, 0x00, 0xFC, 0x00, 0x2C, 0x01, 0x14, 0x00, 0x28, +0x00, 0xDC, 0x00, 0x27, 0x00, 0xDC, 0x00, 0x34, 0x00, 0xFD, 0x00, 0x3F, 0x00, 0xE7, 0x00, 0x43, +0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x9C, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x03, 0x4D, 0x00, 0x00, 0x00, 0x24, 0x00, 0xC9, 0x01, 0x02, 0x01, 0x03, 0x01, 0x04, 0x01, 0x05, +0x01, 0x06, 0x01, 0x07, 0x01, 0x08, 0x00, 0xC7, 0x01, 0x09, 0x01, 0x0A, 0x01, 0x0B, 0x01, 0x0C, +0x01, 0x0D, 0x01, 0x0E, 0x00, 0x62, 0x01, 0x0F, 0x00, 0xAD, 0x01, 0x10, 0x01, 0x11, 0x01, 0x12, +0x01, 0x13, 0x00, 0x63, 0x01, 0x14, 0x00, 0xAE, 0x00, 0x90, 0x01, 0x15, 0x00, 0x25, 0x00, 0x26, +0x00, 0xFD, 0x00, 0xFF, 0x00, 0x64, 0x01, 0x16, 0x01, 0x17, 0x01, 0x18, 0x00, 0x27, 0x01, 0x19, +0x01, 0x1A, 0x00, 0xE9, 0x01, 0x1B, 0x01, 0x1C, 0x01, 0x1D, 0x01, 0x1E, 0x01, 0x1F, 0x01, 0x20, +0x00, 0x28, 0x00, 0x65, 0x01, 0x21, 0x01, 0x22, 0x01, 0x23, 0x00, 0xC8, 0x01, 0x24, 0x01, 0x25, +0x01, 0x26, 0x01, 0x27, 0x01, 0x28, 0x01, 0x29, 0x00, 0xCA, 0x01, 0x2A, 0x01, 0x2B, 0x00, 0xCB, +0x01, 0x2C, 0x01, 0x2D, 0x01, 0x2E, 0x01, 0x2F, 0x01, 0x30, 0x01, 0x31, 0x01, 0x32, 0x00, 0x29, +0x00, 0x2A, 0x00, 0xF8, 0x01, 0x33, 0x01, 0x34, 0x01, 0x35, 0x01, 0x36, 0x01, 0x37, 0x00, 0x2B, +0x01, 0x38, 0x01, 0x39, 0x01, 0x3A, 0x01, 0x3B, 0x00, 0x2C, 0x01, 0x3C, 0x00, 0xCC, 0x01, 0x3D, +0x01, 0x3E, 0x00, 0xCD, 0x01, 0x3F, 0x00, 0xCE, 0x01, 0x40, 0x00, 0xFA, 0x01, 0x41, 0x00, 0xCF, +0x01, 0x42, 0x01, 0x43, 0x01, 0x44, 0x01, 0x45, 0x01, 0x46, 0x00, 0x2D, 0x01, 0x47, 0x00, 0x2E, +0x01, 0x48, 0x00, 0x2F, 0x01, 0x49, 0x01, 0x4A, 0x01, 0x4B, 0x01, 0x4C, 0x01, 0x4D, 0x01, 0x4E, +0x01, 0x4F, 0x01, 0x50, 0x00, 0xE2, 0x00, 0x30, 0x01, 0x51, 0x00, 0x31, 0x01, 0x52, 0x01, 0x53, +0x01, 0x54, 0x01, 0x55, 0x01, 0x56, 0x01, 0x57, 0x01, 0x58, 0x01, 0x59, 0x01, 0x5A, 0x00, 0x66, +0x01, 0x5B, 0x00, 0x32, 0x00, 0xD0, 0x01, 0x5C, 0x01, 0x5D, 0x00, 0xD1, 0x01, 0x5E, 0x01, 0x5F, +0x01, 0x60, 0x01, 0x61, 0x01, 0x62, 0x01, 0x63, 0x00, 0x67, 0x01, 0x64, 0x01, 0x65, 0x01, 0x66, +0x00, 0xD3, 0x01, 0x67, 0x01, 0x68, 0x01, 0x69, 0x01, 0x6A, 0x01, 0x6B, 0x01, 0x6C, 0x01, 0x6D, +0x01, 0x6E, 0x01, 0x6F, 0x01, 0x70, 0x01, 0x71, 0x01, 0x72, 0x01, 0x73, 0x00, 0x91, 0x01, 0x74, +0x00, 0xAF, 0x01, 0x75, 0x01, 0x76, 0x01, 0x77, 0x00, 0xB0, 0x00, 0x33, 0x00, 0xED, 0x00, 0x34, +0x00, 0x35, 0x01, 0x78, 0x01, 0x79, 0x01, 0x7A, 0x01, 0x7B, 0x01, 0x7C, 0x01, 0x7D, 0x01, 0x7E, +0x00, 0x36, 0x01, 0x7F, 0x01, 0x80, 0x00, 0xE4, 0x01, 0x81, 0x00, 0xFB, 0x01, 0x82, 0x01, 0x83, +0x01, 0x84, 0x01, 0x85, 0x01, 0x86, 0x01, 0x87, 0x01, 0x88, 0x00, 0x37, 0x01, 0x89, 0x01, 0x8A, +0x01, 0x8B, 0x01, 0x8C, 0x01, 0x8D, 0x01, 0x8E, 0x00, 0x38, 0x00, 0xD4, 0x01, 0x8F, 0x01, 0x90, +0x00, 0xD5, 0x01, 0x91, 0x00, 0x68, 0x01, 0x92, 0x00, 0xD6, 0x01, 0x93, 0x01, 0x94, 0x01, 0x95, +0x01, 0x96, 0x01, 0x97, 0x01, 0x98, 0x01, 0x99, 0x01, 0x9A, 0x01, 0x9B, 0x01, 0x9C, 0x01, 0x9D, +0x01, 0x9E, 0x01, 0x9F, 0x01, 0xA0, 0x01, 0xA1, 0x00, 0x39, 0x00, 0x3A, 0x01, 0xA2, 0x01, 0xA3, +0x01, 0xA4, 0x01, 0xA5, 0x00, 0x3B, 0x00, 0x3C, 0x00, 0xEB, 0x01, 0xA6, 0x00, 0xBB, 0x01, 0xA7, +0x01, 0xA8, 0x01, 0xA9, 0x01, 0xAA, 0x01, 0xAB, 0x01, 0xAC, 0x00, 0x3D, 0x01, 0xAD, 0x00, 0xE6, +0x01, 0xAE, 0x01, 0xAF, 0x01, 0xB0, 0x01, 0xB1, 0x01, 0xB2, 0x01, 0xB3, 0x01, 0xB4, 0x01, 0xB5, +0x01, 0xB6, 0x01, 0xB7, 0x01, 0xB8, 0x01, 0xB9, 0x01, 0xBA, 0x01, 0xBB, 0x01, 0xBC, 0x01, 0xBD, +0x01, 0xBE, 0x01, 0xBF, 0x01, 0xC0, 0x01, 0xC1, 0x01, 0xC2, 0x01, 0xC3, 0x01, 0xC4, 0x01, 0xC5, +0x00, 0x44, 0x00, 0x69, 0x01, 0xC6, 0x01, 0xC7, 0x01, 0xC8, 0x01, 0xC9, 0x01, 0xCA, 0x01, 0xCB, +0x01, 0xCC, 0x00, 0x6B, 0x01, 0xCD, 0x01, 0xCE, 0x01, 0xCF, 0x01, 0xD0, 0x01, 0xD1, 0x01, 0xD2, +0x00, 0x6C, 0x01, 0xD3, 0x00, 0x6A, 0x01, 0xD4, 0x01, 0xD5, 0x01, 0xD6, 0x01, 0xD7, 0x00, 0x6E, +0x01, 0xD8, 0x00, 0x6D, 0x00, 0xA0, 0x01, 0xD9, 0x00, 0x45, 0x00, 0x46, 0x00, 0xFE, 0x01, 0x00, +0x00, 0x6F, 0x01, 0xDA, 0x01, 0xDB, 0x01, 0xDC, 0x00, 0x47, 0x00, 0xEA, 0x01, 0xDD, 0x01, 0x01, +0x01, 0xDE, 0x01, 0xDF, 0x01, 0xE0, 0x00, 0x48, 0x00, 0x70, 0x01, 0xE1, 0x01, 0xE2, 0x01, 0xE3, +0x00, 0x72, 0x01, 0xE4, 0x01, 0xE5, 0x01, 0xE6, 0x01, 0xE7, 0x01, 0xE8, 0x01, 0xE9, 0x00, 0x73, +0x01, 0xEA, 0x01, 0xEB, 0x00, 0x71, 0x01, 0xEC, 0x01, 0xED, 0x01, 0xEE, 0x01, 0xEF, 0x01, 0xF0, +0x01, 0xF1, 0x01, 0xF2, 0x01, 0xF3, 0x00, 0x49, 0x00, 0x4A, 0x00, 0xF9, 0x01, 0xF4, 0x01, 0xF5, +0x01, 0xF6, 0x01, 0xF7, 0x01, 0xF8, 0x00, 0x4B, 0x01, 0xF9, 0x01, 0xFA, 0x01, 0xFB, 0x01, 0xFC, +0x00, 0x4C, 0x00, 0xD7, 0x00, 0x74, 0x01, 0xFD, 0x01, 0xFE, 0x00, 0x76, 0x01, 0xFF, 0x00, 0x77, +0x02, 0x00, 0x02, 0x01, 0x02, 0x02, 0x00, 0x75, 0x02, 0x03, 0x02, 0x04, 0x02, 0x05, 0x02, 0x06, +0x02, 0x07, 0x02, 0x08, 0x00, 0x4D, 0x02, 0x09, 0x02, 0x0A, 0x00, 0x4E, 0x02, 0x0B, 0x02, 0x0C, +0x00, 0x4F, 0x02, 0x0D, 0x02, 0x0E, 0x02, 0x0F, 0x02, 0x10, 0x02, 0x11, 0x02, 0x12, 0x02, 0x13, +0x00, 0xE3, 0x00, 0x50, 0x02, 0x14, 0x00, 0x51, 0x02, 0x15, 0x02, 0x16, 0x02, 0x17, 0x02, 0x18, +0x02, 0x19, 0x02, 0x1A, 0x02, 0x1B, 0x02, 0x1C, 0x02, 0x1D, 0x00, 0x78, 0x02, 0x1E, 0x00, 0x52, +0x00, 0x79, 0x02, 0x1F, 0x02, 0x20, 0x00, 0x7B, 0x02, 0x21, 0x02, 0x22, 0x02, 0x23, 0x02, 0x24, +0x02, 0x25, 0x02, 0x26, 0x00, 0x7C, 0x02, 0x27, 0x02, 0x28, 0x02, 0x29, 0x00, 0x7A, 0x02, 0x2A, +0x02, 0x2B, 0x02, 0x2C, 0x02, 0x2D, 0x02, 0x2E, 0x02, 0x2F, 0x02, 0x30, 0x02, 0x31, 0x02, 0x32, +0x02, 0x33, 0x02, 0x34, 0x02, 0x35, 0x02, 0x36, 0x00, 0xA1, 0x02, 0x37, 0x00, 0x7D, 0x02, 0x38, +0x02, 0x39, 0x02, 0x3A, 0x00, 0xB1, 0x00, 0x53, 0x00, 0xEE, 0x00, 0x54, 0x00, 0x55, 0x02, 0x3B, +0x02, 0x3C, 0x02, 0x3D, 0x02, 0x3E, 0x02, 0x3F, 0x02, 0x40, 0x02, 0x41, 0x00, 0x56, 0x02, 0x42, +0x02, 0x43, 0x00, 0xE5, 0x02, 0x44, 0x00, 0xFC, 0x02, 0x45, 0x02, 0x46, 0x02, 0x47, 0x02, 0x48, +0x02, 0x49, 0x00, 0x89, 0x00, 0x57, 0x02, 0x4A, 0x02, 0x4B, 0x02, 0x4C, 0x02, 0x4D, 0x02, 0x4E, +0x02, 0x4F, 0x02, 0x50, 0x00, 0x58, 0x00, 0x7E, 0x02, 0x51, 0x02, 0x52, 0x00, 0x80, 0x02, 0x53, +0x00, 0x81, 0x02, 0x54, 0x00, 0x7F, 0x02, 0x55, 0x02, 0x56, 0x02, 0x57, 0x02, 0x58, 0x02, 0x59, +0x02, 0x5A, 0x02, 0x5B, 0x02, 0x5C, 0x02, 0x5D, 0x02, 0x5E, 0x02, 0x5F, 0x02, 0x60, 0x02, 0x61, +0x02, 0x62, 0x02, 0x63, 0x00, 0x59, 0x00, 0x5A, 0x02, 0x64, 0x02, 0x65, 0x02, 0x66, 0x02, 0x67, +0x00, 0x5B, 0x00, 0x5C, 0x00, 0xEC, 0x02, 0x68, 0x00, 0xBA, 0x02, 0x69, 0x02, 0x6A, 0x02, 0x6B, +0x02, 0x6C, 0x02, 0x6D, 0x02, 0x6E, 0x00, 0x5D, 0x02, 0x6F, 0x00, 0xE7, 0x02, 0x70, 0x02, 0x71, +0x02, 0x72, 0x02, 0x73, 0x02, 0x74, 0x02, 0x75, 0x02, 0x76, 0x02, 0x77, 0x02, 0x78, 0x02, 0x79, +0x02, 0x7A, 0x02, 0x7B, 0x02, 0x7C, 0x02, 0x7D, 0x02, 0x7E, 0x02, 0x7F, 0x02, 0x80, 0x02, 0x81, +0x02, 0x82, 0x02, 0x83, 0x02, 0x84, 0x02, 0x85, 0x02, 0x86, 0x02, 0x87, 0x02, 0x88, 0x02, 0x89, +0x02, 0x8A, 0x02, 0x8B, 0x02, 0x8C, 0x02, 0x8D, 0x02, 0x8E, 0x02, 0x8F, 0x02, 0x90, 0x02, 0x91, +0x02, 0x92, 0x02, 0x93, 0x02, 0x94, 0x02, 0x95, 0x02, 0x96, 0x02, 0x97, 0x02, 0x98, 0x00, 0xC0, +0x00, 0xC1, 0x00, 0x9D, 0x00, 0x9E, 0x02, 0x99, 0x02, 0x9A, 0x02, 0x9B, 0x00, 0x9B, 0x00, 0x13, +0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x18, 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, +0x00, 0x1C, 0x02, 0x9C, 0x02, 0x9D, 0x02, 0x9E, 0x02, 0x9F, 0x02, 0xA0, 0x02, 0xA1, 0x02, 0xA2, +0x02, 0xA3, 0x02, 0xA4, 0x02, 0xA5, 0x02, 0xA6, 0x02, 0xA7, 0x02, 0xA8, 0x02, 0xA9, 0x02, 0xAA, +0x02, 0xAB, 0x02, 0xAC, 0x02, 0xAD, 0x02, 0xAE, 0x02, 0xAF, 0x02, 0xB0, 0x02, 0xB1, 0x02, 0xB2, +0x02, 0xB3, 0x02, 0xB4, 0x02, 0xB5, 0x02, 0xB6, 0x02, 0xB7, 0x02, 0xB8, 0x02, 0xB9, 0x02, 0xBA, +0x02, 0xBB, 0x02, 0xBC, 0x02, 0xBD, 0x02, 0xBE, 0x02, 0xBF, 0x02, 0xC0, 0x02, 0xC1, 0x02, 0xC2, +0x02, 0xC3, 0x02, 0xC4, 0x00, 0xBC, 0x00, 0xF4, 0x00, 0xF5, 0x00, 0xF6, 0x02, 0xC5, 0x02, 0xC6, +0x02, 0xC7, 0x02, 0xC8, 0x02, 0xC9, 0x02, 0xCA, 0x02, 0xCB, 0x02, 0xCC, 0x00, 0x03, 0x02, 0xCD, +0x02, 0xCE, 0x02, 0xCF, 0x00, 0x11, 0x00, 0x0F, 0x00, 0x1D, 0x00, 0x1E, 0x00, 0xAB, 0x00, 0x04, +0x00, 0xA3, 0x00, 0x22, 0x00, 0xA2, 0x00, 0xC3, 0x00, 0x87, 0x00, 0x0D, 0x00, 0x06, 0x00, 0x12, +0x00, 0x3F, 0x02, 0xD0, 0x02, 0xD1, 0x02, 0xD2, 0x02, 0xD3, 0x02, 0xD4, 0x02, 0xD5, 0x00, 0x10, +0x02, 0xD6, 0x00, 0xB2, 0x00, 0xB3, 0x02, 0xD7, 0x02, 0xD8, 0x02, 0xD9, 0x00, 0x42, 0x02, 0xDA, +0x02, 0xDB, 0x02, 0xDC, 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x5E, 0x00, 0x60, 0x00, 0x3E, 0x00, 0x40, +0x02, 0xDD, 0x02, 0xDE, 0x02, 0xDF, 0x02, 0xE0, 0x02, 0xE1, 0x02, 0xE2, 0x00, 0xC4, 0x00, 0xC5, +0x00, 0xB4, 0x00, 0xB5, 0x00, 0xB6, 0x00, 0xB7, 0x00, 0xA9, 0x00, 0xAA, 0x00, 0xBE, 0x00, 0xBF, +0x00, 0x05, 0x00, 0x0A, 0x02, 0xE3, 0x02, 0xE4, 0x02, 0xE5, 0x02, 0xE6, 0x00, 0xA6, 0x00, 0x23, +0x00, 0x09, 0x00, 0x88, 0x00, 0x86, 0x00, 0x8B, 0x00, 0x8A, 0x00, 0x8C, 0x00, 0x83, 0x02, 0xE7, +0x00, 0x5F, 0x00, 0xE8, 0x00, 0x82, 0x02, 0xE8, 0x00, 0xC2, 0x02, 0xE9, 0x02, 0xEA, 0x02, 0xEB, +0x02, 0xEC, 0x00, 0x84, 0x02, 0xED, 0x00, 0xBD, 0x00, 0x07, 0x02, 0xEE, 0x02, 0xEF, 0x00, 0xF7, +0x02, 0xF0, 0x02, 0xF1, 0x02, 0xF2, 0x02, 0xF3, 0x02, 0xF4, 0x02, 0xF5, 0x02, 0xF6, 0x02, 0xF7, +0x02, 0xF8, 0x02, 0xF9, 0x00, 0x85, 0x02, 0xFA, 0x00, 0x96, 0x02, 0xFB, 0x02, 0xFC, 0x00, 0x0E, +0x00, 0xEF, 0x00, 0xF0, 0x00, 0xB8, 0x00, 0x20, 0x00, 0x8F, 0x00, 0x21, 0x00, 0x1F, 0x00, 0x95, +0x00, 0x94, 0x00, 0x93, 0x00, 0xA7, 0x00, 0x61, 0x00, 0xA4, 0x00, 0x41, 0x00, 0x92, 0x02, 0xFD, +0x00, 0x9C, 0x02, 0xFE, 0x02, 0xFF, 0x00, 0x9A, 0x00, 0x99, 0x00, 0xA5, 0x03, 0x00, 0x00, 0x98, +0x00, 0x08, 0x00, 0xC6, 0x00, 0xB9, 0x03, 0x01, 0x03, 0x02, 0x03, 0x03, 0x03, 0x04, 0x03, 0x05, +0x03, 0x06, 0x03, 0x07, 0x03, 0x08, 0x03, 0x09, 0x03, 0x0A, 0x03, 0x0B, 0x03, 0x0C, 0x03, 0x0D, +0x03, 0x0E, 0x03, 0x0F, 0x03, 0x10, 0x03, 0x11, 0x03, 0x12, 0x03, 0x13, 0x03, 0x14, 0x03, 0x15, +0x03, 0x16, 0x03, 0x17, 0x03, 0x18, 0x03, 0x19, 0x03, 0x1A, 0x03, 0x1B, 0x03, 0x1C, 0x03, 0x1D, +0x03, 0x1E, 0x03, 0x1F, 0x03, 0x20, 0x03, 0x21, 0x03, 0x22, 0x03, 0x23, 0x03, 0x24, 0x03, 0x25, +0x03, 0x26, 0x03, 0x27, 0x03, 0x28, 0x03, 0x29, 0x03, 0x2A, 0x03, 0x2B, 0x03, 0x2C, 0x00, 0x8E, +0x00, 0xDC, 0x00, 0x43, 0x00, 0x8D, 0x00, 0xDF, 0x00, 0xD8, 0x00, 0xE1, 0x00, 0xDB, 0x00, 0xDD, +0x00, 0xD9, 0x00, 0xDA, 0x00, 0xDE, 0x00, 0xE0, 0x03, 0x2D, 0x03, 0x2E, 0x03, 0x2F, 0x03, 0x30, +0x03, 0x31, 0x03, 0x32, 0x03, 0x33, 0x03, 0x34, 0x03, 0x35, 0x03, 0x36, 0x03, 0x37, 0x03, 0x38, +0x03, 0x39, 0x03, 0x3A, 0x03, 0x3B, 0x03, 0x3C, 0x03, 0x3D, 0x03, 0x3E, 0x03, 0x3F, 0x03, 0x40, +0x03, 0x41, 0x03, 0x42, 0x03, 0x43, 0x03, 0x44, 0x03, 0x45, 0x03, 0x46, 0x03, 0x47, 0x03, 0x48, +0x03, 0x49, 0x03, 0x4A, 0x03, 0x4B, 0x03, 0x4C, 0x03, 0x4D, 0x03, 0x4E, 0x03, 0x4F, 0x03, 0x50, +0x03, 0x51, 0x03, 0x52, 0x03, 0x53, 0x03, 0x54, 0x03, 0x55, 0x03, 0x56, 0x06, 0x41, 0x62, 0x72, +0x65, 0x76, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x42, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x42, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x31, 0x43, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x41, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x41, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x32, 0x30, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x41, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x32, 0x07, 0x41, 0x6D, 0x61, 0x63, +0x72, 0x6F, 0x6E, 0x07, 0x41, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x0A, 0x41, 0x72, 0x69, 0x6E, +0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x41, 0x45, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, +0x6E, 0x69, 0x31, 0x45, 0x30, 0x38, 0x0B, 0x43, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, +0x65, 0x78, 0x0A, 0x43, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, +0x69, 0x30, 0x31, 0x46, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x34, 0x06, 0x44, 0x63, +0x61, 0x72, 0x6F, 0x6E, 0x06, 0x44, 0x63, 0x72, 0x6F, 0x61, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x30, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x31, 0x46, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x35, 0x06, 0x45, 0x62, 0x72, 0x65, +0x76, 0x65, 0x06, 0x45, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, +0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, +0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, +0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, +0x34, 0x0A, 0x45, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x42, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x41, 0x07, 0x75, 0x6E, 0x69, +0x30, 0x32, 0x30, 0x36, 0x07, 0x45, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x31, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x34, 0x07, 0x45, 0x6F, 0x67, +0x6F, 0x6E, 0x65, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x43, 0x06, 0x47, 0x63, 0x61, +0x72, 0x6F, 0x6E, 0x0B, 0x47, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, +0x75, 0x6E, 0x69, 0x30, 0x31, 0x32, 0x32, 0x0A, 0x47, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, +0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x30, 0x04, 0x48, 0x62, 0x61, 0x72, 0x07, +0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x41, 0x0B, 0x48, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, +0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x34, 0x02, 0x49, 0x4A, 0x06, 0x49, +0x62, 0x72, 0x65, 0x76, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x46, 0x07, 0x75, 0x6E, +0x69, 0x30, 0x32, 0x30, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x45, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x43, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x38, 0x07, 0x75, 0x6E, +0x69, 0x30, 0x32, 0x30, 0x41, 0x07, 0x49, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x07, 0x49, 0x6F, +0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x06, 0x49, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x0B, 0x4A, 0x63, 0x69, +0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x36, +0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x37, 0x06, 0x4C, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, +0x4C, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x42, 0x04, 0x4C, +0x64, 0x6F, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x31, 0x43, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x34, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x41, 0x06, 0x4E, 0x61, 0x63, 0x75, +0x74, 0x65, 0x06, 0x4E, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x34, +0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, +0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x39, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, +0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x38, 0x03, 0x45, 0x6E, 0x67, 0x06, 0x4F, 0x62, +0x72, 0x65, 0x76, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x31, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x44, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x38, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x44, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x34, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x44, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x43, 0x07, 0x75, 0x6E, 0x69, +0x30, 0x32, 0x32, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x30, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x43, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x45, 0x05, 0x4F, 0x68, 0x6F, +0x72, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x45, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x44, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x30, 0x0D, 0x4F, 0x68, 0x75, 0x6E, 0x67, +0x61, 0x72, 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x45, +0x07, 0x4F, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x32, +0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x45, 0x41, +0x0B, 0x4F, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x34, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x45, 0x07, 0x75, 0x6E, 0x69, +0x30, 0x32, 0x32, 0x43, 0x06, 0x52, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x52, 0x63, 0x61, 0x72, +0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x35, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, +0x31, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, +0x31, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x45, 0x06, 0x53, 0x61, 0x63, 0x75, 0x74, +0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, +0x36, 0x0B, 0x53, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, +0x69, 0x30, 0x32, 0x31, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x30, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x36, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x38, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x39, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x38, 0x46, 0x04, 0x54, 0x62, +0x61, 0x72, 0x06, 0x54, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x36, +0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, +0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x45, 0x06, 0x55, 0x62, 0x72, 0x65, 0x76, 0x65, +0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x34, +0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x36, +0x05, 0x55, 0x68, 0x6F, 0x72, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x38, 0x07, 0x75, +0x6E, 0x69, 0x31, 0x45, 0x46, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x41, 0x07, 0x75, +0x6E, 0x69, 0x31, 0x45, 0x45, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x45, 0x0D, 0x55, +0x68, 0x75, 0x6E, 0x67, 0x61, 0x72, 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, 0x07, 0x75, 0x6E, 0x69, +0x30, 0x32, 0x31, 0x36, 0x07, 0x55, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x37, 0x41, 0x07, 0x55, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x05, 0x55, 0x72, 0x69, +0x6E, 0x67, 0x06, 0x55, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, +0x38, 0x06, 0x57, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0B, 0x57, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, +0x66, 0x6C, 0x65, 0x78, 0x09, 0x57, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x06, 0x57, +0x67, 0x72, 0x61, 0x76, 0x65, 0x0B, 0x59, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, +0x78, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, +0x34, 0x06, 0x59, 0x67, 0x72, 0x61, 0x76, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x36, +0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x38, +0x06, 0x5A, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0A, 0x5A, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, +0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x32, 0x10, 0x49, 0x61, 0x63, 0x75, 0x74, +0x65, 0x5F, 0x4A, 0x2E, 0x6C, 0x6F, 0x63, 0x6C, 0x4E, 0x4C, 0x44, 0x06, 0x49, 0x2E, 0x73, 0x73, +0x30, 0x31, 0x07, 0x49, 0x4A, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0B, 0x49, 0x61, 0x63, 0x75, 0x74, +0x65, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0B, 0x49, 0x62, 0x72, 0x65, 0x76, 0x65, 0x2E, 0x73, 0x73, +0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x46, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x10, +0x49, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x2E, 0x73, 0x73, 0x30, 0x31, +0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x38, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0E, 0x49, 0x64, +0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x32, 0x45, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0F, 0x49, 0x64, 0x6F, 0x74, 0x61, 0x63, +0x63, 0x65, 0x6E, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, +0x41, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0B, 0x49, 0x67, 0x72, 0x61, 0x76, 0x65, 0x2E, 0x73, 0x73, +0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x38, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, +0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x41, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x49, 0x6D, 0x61, +0x63, 0x72, 0x6F, 0x6E, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x49, 0x6F, 0x67, 0x6F, 0x6E, 0x65, +0x6B, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0B, 0x49, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x2E, 0x73, 0x73, +0x30, 0x31, 0x06, 0x4A, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x10, 0x4A, 0x63, 0x69, 0x72, 0x63, 0x75, +0x6D, 0x66, 0x6C, 0x65, 0x78, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, +0x43, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x41, 0x2E, +0x73, 0x73, 0x30, 0x31, 0x06, 0x61, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x41, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x42, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x42, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x41, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x41, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x41, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x41, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x32, 0x30, 0x33, 0x07, 0x61, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x07, 0x61, 0x6F, 0x67, 0x6F, +0x6E, 0x65, 0x6B, 0x0A, 0x61, 0x72, 0x69, 0x6E, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x61, +0x65, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x39, 0x0B, 0x63, +0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x0A, 0x63, 0x64, 0x6F, 0x74, 0x61, +0x63, 0x63, 0x65, 0x6E, 0x74, 0x06, 0x64, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x30, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x46, 0x07, 0x75, 0x6E, 0x69, +0x30, 0x31, 0x43, 0x36, 0x06, 0x65, 0x62, 0x72, 0x65, 0x76, 0x65, 0x06, 0x65, 0x63, 0x61, 0x72, +0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x42, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x43, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x43, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x35, 0x0A, 0x65, 0x64, 0x6F, 0x74, 0x61, +0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x39, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x42, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x37, 0x07, 0x65, 0x6D, +0x61, 0x63, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x37, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x31, 0x35, 0x07, 0x65, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x42, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x35, 0x39, 0x06, 0x67, 0x63, +0x61, 0x72, 0x6F, 0x6E, 0x0B, 0x67, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, +0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x32, 0x33, 0x0A, 0x67, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, +0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x31, 0x04, 0x68, 0x62, 0x61, 0x72, +0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x42, 0x0B, 0x68, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, +0x66, 0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x35, 0x06, 0x69, 0x62, 0x72, +0x65, 0x76, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x32, 0x30, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x46, 0x09, 0x69, 0x2E, 0x6C, 0x6F, +0x63, 0x6C, 0x54, 0x52, 0x4B, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x42, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x43, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x42, 0x02, 0x69, 0x6A, +0x07, 0x69, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x07, 0x69, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, +0x06, 0x69, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x37, 0x0B, +0x6A, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x31, 0x33, 0x37, 0x0C, 0x6B, 0x67, 0x72, 0x65, 0x65, 0x6E, 0x6C, 0x61, 0x6E, 0x64, 0x69, 0x63, +0x06, 0x6C, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x6C, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, +0x6E, 0x69, 0x30, 0x31, 0x33, 0x43, 0x04, 0x6C, 0x64, 0x6F, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x33, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x33, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x33, 0x06, 0x6E, 0x61, 0x63, 0x75, +0x74, 0x65, 0x0B, 0x6E, 0x61, 0x70, 0x6F, 0x73, 0x74, 0x72, 0x6F, 0x70, 0x68, 0x65, 0x06, 0x6E, +0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x34, 0x36, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x34, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x37, 0x07, 0x75, 0x6E, +0x69, 0x30, 0x32, 0x37, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x43, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x34, 0x39, 0x03, 0x65, 0x6E, 0x67, 0x06, 0x6F, 0x62, 0x72, 0x65, 0x76, 0x65, +0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x31, +0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x33, +0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x37, +0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x42, +0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x44, +0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x46, 0x05, 0x6F, 0x68, 0x6F, 0x72, 0x6E, 0x07, 0x75, +0x6E, 0x69, 0x31, 0x45, 0x44, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x33, 0x07, 0x75, +0x6E, 0x69, 0x31, 0x45, 0x44, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x46, 0x07, 0x75, +0x6E, 0x69, 0x31, 0x45, 0x45, 0x31, 0x0D, 0x6F, 0x68, 0x75, 0x6E, 0x67, 0x61, 0x72, 0x75, 0x6D, +0x6C, 0x61, 0x75, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x46, 0x07, 0x6F, 0x6D, 0x61, +0x63, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x33, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x35, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x45, 0x42, 0x0B, 0x6F, 0x73, 0x6C, +0x61, 0x73, 0x68, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x44, +0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x44, +0x06, 0x72, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x72, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, +0x6E, 0x69, 0x30, 0x31, 0x35, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x31, 0x07, 0x75, +0x6E, 0x69, 0x31, 0x45, 0x35, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x33, 0x07, 0x75, +0x6E, 0x69, 0x31, 0x45, 0x35, 0x46, 0x06, 0x73, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x36, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x37, 0x0B, 0x73, 0x63, +0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, +0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, +0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x39, 0x04, 0x74, 0x62, 0x61, 0x72, 0x06, 0x74, +0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x36, 0x33, 0x07, 0x75, 0x6E, +0x69, 0x30, 0x32, 0x31, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x37, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x36, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x46, 0x06, 0x75, 0x62, +0x72, 0x65, 0x76, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x34, 0x07, 0x75, 0x6E, 0x69, +0x30, 0x32, 0x31, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x35, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x45, 0x37, 0x05, 0x75, 0x68, 0x6F, 0x72, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x45, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x45, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x45, 0x46, 0x0D, 0x75, 0x68, 0x75, 0x6E, 0x67, 0x61, 0x72, 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, +0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x37, 0x07, 0x75, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, +0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x42, 0x07, 0x75, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, +0x05, 0x75, 0x72, 0x69, 0x6E, 0x67, 0x06, 0x75, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x37, 0x39, 0x06, 0x77, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0B, 0x77, 0x63, 0x69, +0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x09, 0x77, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, +0x69, 0x73, 0x06, 0x77, 0x67, 0x72, 0x61, 0x76, 0x65, 0x0B, 0x79, 0x63, 0x69, 0x72, 0x63, 0x75, +0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x46, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x46, 0x35, 0x06, 0x79, 0x67, 0x72, 0x61, 0x76, 0x65, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x46, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x33, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x46, 0x39, 0x06, 0x7A, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0A, 0x7A, 0x64, 0x6F, 0x74, +0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x33, 0x10, 0x69, +0x61, 0x63, 0x75, 0x74, 0x65, 0x5F, 0x6A, 0x2E, 0x6C, 0x6F, 0x63, 0x6C, 0x4E, 0x4C, 0x44, 0x06, +0x61, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0B, 0x61, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2E, 0x73, 0x73, +0x30, 0x31, 0x0B, 0x61, 0x62, 0x72, 0x65, 0x76, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, +0x6E, 0x69, 0x31, 0x45, 0x41, 0x46, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x42, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x31, +0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x33, 0x2E, 0x73, 0x73, +0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x35, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, +0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x45, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x10, 0x61, 0x63, 0x69, +0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x41, 0x35, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x41, 0x44, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x37, 0x2E, +0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x39, 0x2E, 0x73, 0x73, 0x30, +0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x42, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, +0x6E, 0x69, 0x30, 0x32, 0x30, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0E, 0x61, 0x64, 0x69, 0x65, +0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x41, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0B, 0x61, 0x67, 0x72, 0x61, 0x76, 0x65, 0x2E, 0x73, +0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x33, 0x2E, 0x73, 0x73, 0x30, 0x31, +0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x33, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x61, 0x6D, +0x61, 0x63, 0x72, 0x6F, 0x6E, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x61, 0x6F, 0x67, 0x6F, 0x6E, +0x65, 0x6B, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0A, 0x61, 0x72, 0x69, 0x6E, 0x67, 0x2E, 0x73, 0x73, +0x30, 0x31, 0x0F, 0x61, 0x72, 0x69, 0x6E, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2E, 0x73, 0x73, +0x30, 0x31, 0x0B, 0x61, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x06, 0x67, +0x2E, 0x73, 0x73, 0x30, 0x31, 0x0B, 0x67, 0x62, 0x72, 0x65, 0x76, 0x65, 0x2E, 0x73, 0x73, 0x30, +0x31, 0x0B, 0x67, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x10, 0x67, 0x63, +0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, +0x6E, 0x69, 0x30, 0x31, 0x32, 0x33, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0F, 0x67, 0x64, 0x6F, 0x74, +0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x32, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x03, 0x66, 0x5F, 0x66, 0x05, 0x66, 0x5F, 0x66, +0x5F, 0x69, 0x06, 0x66, 0x5F, 0x66, 0x5F, 0x69, 0x6A, 0x05, 0x66, 0x5F, 0x66, 0x5F, 0x6C, 0x04, +0x66, 0x5F, 0x69, 0x6A, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x39, 0x34, 0x07, 0x75, 0x6E, 0x69, +0x30, 0x33, 0x41, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x42, 0x43, 0x09, 0x7A, 0x65, 0x72, +0x6F, 0x2E, 0x7A, 0x65, 0x72, 0x6F, 0x09, 0x7A, 0x65, 0x72, 0x6F, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, +0x08, 0x6F, 0x6E, 0x65, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x08, 0x74, 0x77, 0x6F, 0x2E, 0x64, 0x6E, +0x6F, 0x6D, 0x0A, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x09, 0x66, 0x6F, +0x75, 0x72, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x09, 0x66, 0x69, 0x76, 0x65, 0x2E, 0x64, 0x6E, 0x6F, +0x6D, 0x08, 0x73, 0x69, 0x78, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0A, 0x73, 0x65, 0x76, 0x65, 0x6E, +0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0A, 0x65, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, +0x09, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, +0x38, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x38, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, +0x38, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x38, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, +0x38, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x38, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, +0x38, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x38, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, +0x38, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x38, 0x39, 0x09, 0x7A, 0x65, 0x72, 0x6F, 0x2E, +0x6E, 0x75, 0x6D, 0x72, 0x08, 0x6F, 0x6E, 0x65, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x08, 0x74, 0x77, +0x6F, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0A, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, 0x6E, 0x75, 0x6D, +0x72, 0x09, 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x09, 0x66, 0x69, 0x76, 0x65, +0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x08, 0x73, 0x69, 0x78, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0A, 0x73, +0x65, 0x76, 0x65, 0x6E, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0A, 0x65, 0x69, 0x67, 0x68, 0x74, 0x2E, +0x6E, 0x75, 0x6D, 0x72, 0x09, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x07, 0x75, +0x6E, 0x69, 0x32, 0x30, 0x37, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x42, 0x39, 0x07, 0x75, +0x6E, 0x69, 0x30, 0x30, 0x42, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x42, 0x33, 0x07, 0x75, +0x6E, 0x69, 0x32, 0x30, 0x37, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x37, 0x35, 0x07, 0x75, +0x6E, 0x69, 0x32, 0x30, 0x37, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x37, 0x37, 0x07, 0x75, +0x6E, 0x69, 0x32, 0x30, 0x37, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x37, 0x39, 0x09, 0x6F, +0x6E, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x0C, 0x74, 0x68, 0x72, 0x65, 0x65, 0x65, 0x69, +0x67, 0x68, 0x74, 0x68, 0x73, 0x0B, 0x66, 0x69, 0x76, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, +0x73, 0x0C, 0x73, 0x65, 0x76, 0x65, 0x6E, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x02, 0x43, +0x52, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, +0x41, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x41, +0x30, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, +0x42, 0x13, 0x70, 0x65, 0x72, 0x69, 0x6F, 0x64, 0x63, 0x65, 0x6E, 0x74, 0x65, 0x72, 0x65, 0x64, +0x2E, 0x63, 0x61, 0x73, 0x65, 0x0B, 0x62, 0x75, 0x6C, 0x6C, 0x65, 0x74, 0x2E, 0x63, 0x61, 0x73, +0x65, 0x0A, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0E, 0x62, 0x61, 0x63, +0x6B, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x16, 0x70, 0x65, 0x72, 0x69, +0x6F, 0x64, 0x63, 0x65, 0x6E, 0x74, 0x65, 0x72, 0x65, 0x64, 0x2E, 0x6C, 0x6F, 0x63, 0x6C, 0x43, +0x41, 0x54, 0x1B, 0x70, 0x65, 0x72, 0x69, 0x6F, 0x64, 0x63, 0x65, 0x6E, 0x74, 0x65, 0x72, 0x65, +0x64, 0x2E, 0x6C, 0x6F, 0x63, 0x6C, 0x43, 0x41, 0x54, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x07, 0x75, +0x6E, 0x69, 0x30, 0x30, 0x41, 0x44, 0x0A, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x64, 0x61, 0x73, +0x68, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x31, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x31, +0x30, 0x0B, 0x68, 0x79, 0x70, 0x68, 0x65, 0x6E, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0B, 0x65, 0x6E, +0x64, 0x61, 0x73, 0x68, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0B, 0x65, 0x6D, 0x64, 0x61, 0x73, 0x68, +0x2E, 0x63, 0x61, 0x73, 0x65, 0x0E, 0x70, 0x61, 0x72, 0x65, 0x6E, 0x6C, 0x65, 0x66, 0x74, 0x2E, +0x63, 0x61, 0x73, 0x65, 0x0F, 0x70, 0x61, 0x72, 0x65, 0x6E, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, +0x63, 0x61, 0x73, 0x65, 0x0E, 0x62, 0x72, 0x61, 0x63, 0x65, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, +0x61, 0x73, 0x65, 0x0F, 0x62, 0x72, 0x61, 0x63, 0x65, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x63, +0x61, 0x73, 0x65, 0x10, 0x62, 0x72, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x6C, 0x65, 0x66, 0x74, 0x2E, +0x63, 0x61, 0x73, 0x65, 0x11, 0x62, 0x72, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x72, 0x69, 0x67, 0x68, +0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x12, 0x67, 0x75, 0x69, 0x6C, 0x6C, 0x65, 0x6D, 0x6F, 0x74, +0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x13, 0x67, 0x75, 0x69, 0x6C, 0x6C, 0x65, +0x6D, 0x6F, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x12, 0x67, 0x75, +0x69, 0x6C, 0x73, 0x69, 0x6E, 0x67, 0x6C, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, +0x13, 0x67, 0x75, 0x69, 0x6C, 0x73, 0x69, 0x6E, 0x67, 0x6C, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, +0x63, 0x61, 0x73, 0x65, 0x06, 0x73, 0x65, 0x63, 0x6F, 0x6E, 0x64, 0x07, 0x75, 0x6E, 0x69, 0x32, +0x31, 0x31, 0x33, 0x09, 0x65, 0x73, 0x74, 0x69, 0x6D, 0x61, 0x74, 0x65, 0x64, 0x07, 0x75, 0x6E, +0x69, 0x32, 0x31, 0x31, 0x36, 0x07, 0x61, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x07, 0x75, 0x6E, +0x69, 0x32, 0x30, 0x42, 0x35, 0x0D, 0x63, 0x6F, 0x6C, 0x6F, 0x6E, 0x6D, 0x6F, 0x6E, 0x65, 0x74, +0x61, 0x72, 0x79, 0x04, 0x64, 0x6F, 0x6E, 0x67, 0x04, 0x45, 0x75, 0x72, 0x6F, 0x07, 0x75, 0x6E, +0x69, 0x32, 0x30, 0x42, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x41, 0x44, 0x04, 0x6C, 0x69, +0x72, 0x61, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x42, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, +0x42, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x41, 0x36, 0x06, 0x70, 0x65, 0x73, 0x65, 0x74, +0x61, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x42, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x42, +0x44, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x42, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x41, +0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x32, 0x31, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x32, 0x31, +0x35, 0x08, 0x65, 0x6D, 0x70, 0x74, 0x79, 0x73, 0x65, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, +0x32, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x32, 0x30, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x30, +0x42, 0x35, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x31, 0x0B, 0x75, +0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x30, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x30, 0x36, 0x30, 0x33, 0x30, 0x39, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, +0x30, 0x33, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x31, 0x0B, 0x75, +0x6E, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x30, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x30, 0x32, 0x30, 0x33, 0x30, 0x39, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, +0x30, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x38, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x30, 0x38, 0x30, 0x33, 0x30, 0x31, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x38, 0x30, 0x33, +0x30, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x37, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x30, 0x37, 0x30, 0x33, 0x30, 0x34, 0x09, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, 0x6F, 0x6D, 0x62, +0x09, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x30, 0x31, 0x30, 0x33, 0x30, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x42, 0x0B, 0x75, +0x6E, 0x69, 0x30, 0x33, 0x30, 0x43, 0x2E, 0x61, 0x6C, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x30, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x43, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x30, 0x43, 0x30, 0x33, 0x30, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x07, 0x75, +0x6E, 0x69, 0x30, 0x33, 0x30, 0x41, 0x09, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x63, 0x6F, 0x6D, 0x62, +0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x33, 0x30, 0x33, 0x30, 0x38, 0x13, 0x74, 0x69, 0x6C, +0x64, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x5F, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6F, 0x6D, 0x62, +0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x33, 0x30, 0x33, 0x30, 0x34, 0x07, 0x75, 0x6E, 0x69, +0x30, 0x33, 0x30, 0x34, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x34, 0x30, 0x33, 0x30, 0x38, +0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x34, 0x30, 0x33, 0x30, 0x30, 0x0B, 0x75, 0x6E, 0x69, +0x30, 0x33, 0x30, 0x34, 0x30, 0x33, 0x30, 0x31, 0x0D, 0x68, 0x6F, 0x6F, 0x6B, 0x61, 0x62, 0x6F, +0x76, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x46, 0x07, 0x75, +0x6E, 0x69, 0x30, 0x33, 0x31, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x31, 0x32, 0x07, 0x75, +0x6E, 0x69, 0x30, 0x33, 0x31, 0x42, 0x0C, 0x64, 0x6F, 0x74, 0x62, 0x65, 0x6C, 0x6F, 0x77, 0x63, +0x6F, 0x6D, 0x62, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x32, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x33, 0x32, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x32, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x33, 0x32, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x32, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x33, 0x33, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x33, 0x35, 0x0C, 0x75, 0x6E, 0x69, 0x30, +0x33, 0x30, 0x38, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x38, +0x30, 0x33, 0x30, 0x31, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, +0x38, 0x30, 0x33, 0x30, 0x34, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x30, 0x37, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x37, 0x30, +0x33, 0x30, 0x34, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0E, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, 0x6F, +0x6D, 0x62, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0E, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6F, 0x6D, +0x62, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x31, 0x30, 0x33, +0x30, 0x37, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x42, 0x2E, +0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x32, 0x2E, 0x63, 0x61, 0x73, +0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x30, 0x2E, 0x63, 0x61, +0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x31, 0x2E, 0x63, +0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x33, 0x2E, +0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x39, +0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x43, 0x2E, 0x63, 0x61, +0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, +0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x30, 0x2E, 0x63, 0x61, 0x73, 0x65, +0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x31, 0x2E, 0x63, 0x61, 0x73, +0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x33, 0x2E, 0x63, 0x61, +0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x39, 0x2E, 0x63, +0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x41, 0x2E, 0x63, 0x61, 0x73, 0x65, +0x0E, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, +0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x33, 0x30, 0x33, 0x30, 0x38, 0x2E, 0x63, 0x61, 0x73, 0x65, +0x18, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x5F, 0x61, 0x63, 0x75, 0x74, 0x65, +0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, +0x33, 0x30, 0x33, 0x30, 0x34, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x30, 0x34, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x34, 0x30, +0x33, 0x30, 0x38, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x34, +0x30, 0x33, 0x30, 0x30, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, +0x34, 0x30, 0x33, 0x30, 0x31, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x12, 0x68, 0x6F, 0x6F, 0x6B, 0x61, +0x62, 0x6F, 0x76, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, +0x69, 0x30, 0x33, 0x30, 0x46, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x31, 0x31, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x31, 0x42, 0x2E, +0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x32, 0x36, 0x2E, 0x63, 0x61, 0x73, +0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x32, 0x37, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, +0x6E, 0x69, 0x30, 0x33, 0x32, 0x38, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x32, 0x42, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x42, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x32, 0x42, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x42, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x32, 0x43, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x43, 0x38, 0x00, 0x00, 0x01, 0x00, 0x00, +0x00, 0x0A, 0x00, 0x28, 0x00, 0x54, 0x00, 0x02, 0x44, 0x46, 0x4C, 0x54, 0x00, 0x0E, 0x6C, 0x61, +0x74, 0x6E, 0x00, 0x0E, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x03, 0x00, 0x00, +0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x6B, 0x65, 0x72, 0x6E, 0x00, 0x26, 0x6D, 0x61, 0x72, 0x6B, +0x00, 0x1E, 0x6D, 0x6B, 0x6D, 0x6B, 0x00, 0x14, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x04, +0x00, 0x05, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, +0x00, 0x06, 0x24, 0xFC, 0x05, 0x8A, 0x03, 0x46, 0x02, 0xBE, 0x00, 0x48, 0x00, 0x0E, 0x00, 0x06, +0x00, 0x10, 0x00, 0x01, 0x00, 0x0A, 0x00, 0x02, 0x00, 0x01, 0x00, 0x28, 0x00, 0x28, 0x00, 0x01, +0x00, 0x1E, 0x00, 0x0C, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x00, 0x01, 0x01, 0x7A, 0x02, 0x8A, +0x00, 0x01, 0x01, 0x7A, 0x02, 0x96, 0x00, 0x02, 0x00, 0x00, 0x24, 0x74, 0x00, 0x00, 0x24, 0x20, +0x00, 0x01, 0x00, 0x02, 0x03, 0x0D, 0x03, 0x43, 0x00, 0x06, 0x00, 0x10, 0x00, 0x01, 0x00, 0x0A, +0x00, 0x01, 0x00, 0x01, 0x02, 0x56, 0x02, 0x56, 0x00, 0x01, 0x01, 0x4C, 0x00, 0x0C, 0x00, 0x42, +0x01, 0x3A, 0x01, 0x3A, 0x01, 0x3A, 0x01, 0x34, 0x01, 0x2E, 0x01, 0x28, 0x01, 0x22, 0x01, 0x34, +0x01, 0x1C, 0x01, 0x3A, 0x01, 0x16, 0x01, 0x10, 0x01, 0x16, 0x01, 0x0A, 0x01, 0x0A, 0x01, 0x04, +0x01, 0x0A, 0x01, 0x0A, 0x01, 0x0A, 0x01, 0x3A, 0x01, 0x0A, 0x00, 0xFE, 0x01, 0x0A, 0x00, 0xF8, +0x00, 0xF2, 0x00, 0xEC, 0x01, 0x0A, 0x00, 0xE6, 0x00, 0xE0, 0x00, 0xE0, 0x01, 0x0A, 0x01, 0x0A, +0x01, 0x0A, 0x00, 0xDA, 0x00, 0xD4, 0x00, 0xCE, 0x00, 0xC8, 0x00, 0xC2, 0x00, 0xC8, 0x00, 0xBC, +0x00, 0xBC, 0x00, 0xB6, 0x00, 0xB0, 0x00, 0xC2, 0x00, 0xAA, 0x00, 0xA4, 0x00, 0x9E, 0x00, 0x98, +0x00, 0xC2, 0x00, 0xC2, 0x00, 0x9E, 0x00, 0x9E, 0x00, 0x9E, 0x00, 0x9E, 0x00, 0x92, 0x00, 0xD4, +0x00, 0x8C, 0x00, 0x86, 0x00, 0x8C, 0x00, 0xD4, 0x00, 0x8C, 0x00, 0xC8, 0x00, 0x86, 0x00, 0xC2, +0x00, 0xC2, 0x00, 0xC2, 0x00, 0x01, 0x00, 0xFE, 0x04, 0x38, 0x00, 0x01, 0x00, 0xFA, 0x04, 0x38, +0x00, 0x01, 0x00, 0xFB, 0x03, 0x7D, 0x00, 0x01, 0x00, 0xC2, 0x03, 0x6F, 0x00, 0x01, 0x00, 0xFA, +0x03, 0x6F, 0x00, 0x01, 0x00, 0xBB, 0x03, 0x6F, 0x00, 0x01, 0x00, 0xE0, 0x03, 0x6F, 0x00, 0x01, +0x00, 0xF7, 0x03, 0x7A, 0x00, 0x01, 0x00, 0xEA, 0x03, 0x7A, 0x00, 0x01, 0x00, 0xF8, 0x03, 0x7A, +0x00, 0x01, 0x00, 0xFA, 0x03, 0x7A, 0x00, 0x01, 0x00, 0xFB, 0x04, 0x38, 0x00, 0x01, 0x00, 0xFF, +0x03, 0xE2, 0x00, 0x01, 0x00, 0xFB, 0x03, 0x7A, 0x00, 0x01, 0x00, 0xFA, 0x02, 0xC0, 0x00, 0x01, +0x00, 0xFA, 0x02, 0xD3, 0x00, 0x01, 0x00, 0xFB, 0x03, 0x98, 0x00, 0x01, 0x00, 0xFA, 0x03, 0xAD, +0x00, 0x01, 0x00, 0xFA, 0x02, 0xFF, 0x00, 0x01, 0x00, 0xFB, 0x03, 0x8E, 0x00, 0x01, 0x00, 0xFA, +0x03, 0x20, 0x00, 0x01, 0x00, 0xEA, 0x02, 0xC1, 0x00, 0x01, 0x00, 0xFA, 0x02, 0xDD, 0x00, 0x01, +0x00, 0xFA, 0x02, 0xE3, 0x00, 0x01, 0x00, 0xFA, 0x03, 0xB3, 0x00, 0x01, 0x00, 0xFB, 0x02, 0xE3, +0x00, 0x01, 0x00, 0xC0, 0x03, 0x21, 0x00, 0x01, 0x00, 0xE3, 0x03, 0x21, 0x00, 0x01, 0x00, 0xB5, +0x03, 0x21, 0x00, 0x01, 0x00, 0xFB, 0x03, 0x21, 0x00, 0x01, 0x00, 0xFA, 0x03, 0x21, 0x00, 0x42, +0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x3C, +0x00, 0x00, 0x23, 0x36, 0x00, 0x00, 0x23, 0x30, 0x00, 0x00, 0x23, 0x2A, 0x00, 0x00, 0x23, 0x3C, +0x00, 0x00, 0x23, 0x3C, 0x00, 0x00, 0x23, 0x24, 0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x42, +0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x1E, 0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x18, +0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x42, +0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x3C, +0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x3C, +0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x12, +0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x23, 0x42, 0x00, 0x00, 0x22, 0xEE, 0x00, 0x00, 0x22, 0xEE, +0x00, 0x00, 0x22, 0xEE, 0x00, 0x00, 0x22, 0xE8, 0x00, 0x00, 0x22, 0xEE, 0x00, 0x00, 0x22, 0xE2, +0x00, 0x00, 0x22, 0xDC, 0x00, 0x00, 0x22, 0xD6, 0x00, 0x00, 0x22, 0xD0, 0x00, 0x00, 0x22, 0xE8, +0x00, 0x00, 0x22, 0xCA, 0x00, 0x00, 0x22, 0xC4, 0x00, 0x00, 0x22, 0xE8, 0x00, 0x00, 0x22, 0xD0, +0x00, 0x00, 0x22, 0xE8, 0x00, 0x00, 0x22, 0xE8, 0x00, 0x00, 0x22, 0xE8, 0x00, 0x00, 0x22, 0xE8, +0x00, 0x00, 0x22, 0xE8, 0x00, 0x00, 0x22, 0xE8, 0x00, 0x00, 0x22, 0xEE, 0x00, 0x00, 0x22, 0xEE, +0x00, 0x00, 0x22, 0xE8, 0x00, 0x00, 0x22, 0xE8, 0x00, 0x00, 0x22, 0xE8, 0x00, 0x00, 0x22, 0xEE, +0x00, 0x00, 0x22, 0xE8, 0x00, 0x00, 0x22, 0xE8, 0x00, 0x00, 0x22, 0xE8, 0x00, 0x00, 0x22, 0xE8, +0x00, 0x00, 0x22, 0xBE, 0x00, 0x00, 0x22, 0xE8, 0x00, 0x02, 0x00, 0x03, 0x02, 0xEA, 0x02, 0xFA, +0x00, 0x00, 0x02, 0xFC, 0x03, 0x0C, 0x00, 0x11, 0x03, 0x23, 0x03, 0x42, 0x00, 0x22, 0x00, 0x06, +0x00, 0x10, 0x00, 0x01, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x01, 0x00, 0x6A, 0x00, 0x6A, 0x00, 0x01, +0x00, 0x48, 0x00, 0x0C, 0x00, 0x08, 0x00, 0x36, 0x00, 0x30, 0x00, 0x2A, 0x00, 0x24, 0x00, 0x1E, +0x00, 0x18, 0x00, 0x12, 0x00, 0x24, 0x00, 0x01, 0x00, 0xFA, 0xFE, 0xDA, 0x00, 0x01, 0x00, 0xFA, +0xFF, 0x3A, 0x00, 0x01, 0x00, 0xFA, 0xFF, 0x15, 0x00, 0x01, 0x00, 0xFB, 0xFF, 0x0A, 0x00, 0x01, +0x00, 0xFA, 0xFE, 0xDB, 0x00, 0x01, 0x00, 0xFB, 0xFF, 0x20, 0x00, 0x01, 0x00, 0xFA, 0xFF, 0x20, +0x00, 0x08, 0x00, 0x00, 0x21, 0x94, 0x00, 0x00, 0x21, 0x8E, 0x00, 0x00, 0x21, 0x94, 0x00, 0x00, +0x21, 0x8E, 0x00, 0x00, 0x21, 0x94, 0x00, 0x00, 0x21, 0x94, 0x00, 0x00, 0x21, 0x94, 0x00, 0x00, +0x21, 0x8E, 0x00, 0x01, 0x00, 0x08, 0x03, 0x0E, 0x03, 0x0F, 0x03, 0x10, 0x03, 0x11, 0x03, 0x13, +0x03, 0x14, 0x03, 0x44, 0x03, 0x45, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, +0x02, 0x14, 0x00, 0xE0, 0x00, 0x02, 0x00, 0xEA, 0x00, 0x0C, 0x00, 0x07, 0x00, 0xBE, 0x00, 0xA4, +0x00, 0x72, 0x00, 0x58, 0x00, 0x36, 0x00, 0x20, 0x00, 0x10, 0x00, 0x02, 0x1A, 0x52, 0x1A, 0x4C, +0x00, 0x0A, 0x1E, 0x7E, 0x00, 0x01, 0x02, 0x21, 0x02, 0xE4, 0x00, 0x02, 0x1A, 0x42, 0x1A, 0x3C, +0x00, 0x10, 0x00, 0x0A, 0x00, 0x01, 0x02, 0x29, 0x00, 0x00, 0x00, 0x01, 0x02, 0x29, 0x02, 0xE3, +0x00, 0x02, 0x00, 0x1C, 0x00, 0x16, 0x00, 0x10, 0x00, 0x0A, 0x00, 0x01, 0x02, 0xFC, 0x00, 0x00, +0x00, 0x01, 0x02, 0xFC, 0x02, 0xE4, 0x00, 0x01, 0x00, 0xFE, 0x00, 0x00, 0x00, 0x01, 0x00, 0xFE, +0x02, 0xE4, 0x00, 0x03, 0x1A, 0x0A, 0x1A, 0x04, 0x00, 0x76, 0x00, 0x70, 0x00, 0x14, 0x00, 0x0E, +0x00, 0x01, 0x03, 0xAA, 0x00, 0x00, 0x00, 0x01, 0x03, 0xAA, 0x02, 0xE4, 0x00, 0x03, 0x00, 0x2C, +0x00, 0x26, 0x00, 0x20, 0x00, 0x1A, 0x00, 0x14, 0x00, 0x0E, 0x00, 0x01, 0x04, 0x5B, 0x00, 0x00, +0x00, 0x01, 0x04, 0x5B, 0x02, 0xE4, 0x00, 0x01, 0x02, 0x9D, 0x00, 0x00, 0x00, 0x01, 0x02, 0x9D, +0x02, 0xE4, 0x00, 0x01, 0x00, 0xDF, 0x00, 0x00, 0x00, 0x01, 0x00, 0xDF, 0x02, 0xE4, 0x00, 0x03, +0x19, 0xBE, 0x19, 0xB8, 0x00, 0x2A, 0x00, 0x24, 0x00, 0x14, 0x00, 0x0E, 0x00, 0x01, 0x03, 0xB2, +0x00, 0x00, 0x00, 0x01, 0x03, 0xB2, 0x02, 0xE3, 0x00, 0x02, 0x19, 0xA4, 0x19, 0x9E, 0x00, 0x10, +0x00, 0x0A, 0x00, 0x01, 0x02, 0x4E, 0x00, 0x00, 0x00, 0x01, 0x02, 0x4E, 0x02, 0xE4, 0x00, 0x02, +0x00, 0x01, 0x02, 0x19, 0x02, 0x1F, 0x00, 0x00, 0x00, 0x4A, 0x00, 0x00, 0x20, 0xA8, 0x00, 0x00, +0x20, 0xA8, 0x00, 0x00, 0x20, 0xA8, 0x00, 0x00, 0x20, 0xA2, 0x00, 0x00, 0x20, 0x9C, 0x00, 0x00, +0x20, 0x96, 0x00, 0x00, 0x20, 0x90, 0x00, 0x00, 0x20, 0xA2, 0x00, 0x00, 0x20, 0xA2, 0x00, 0x00, +0x20, 0x8A, 0x00, 0x00, 0x20, 0xA8, 0x00, 0x00, 0x20, 0xA8, 0x00, 0x00, 0x20, 0xA8, 0x00, 0x00, +0x20, 0x84, 0x00, 0x00, 0x20, 0xA8, 0x00, 0x00, 0x20, 0x7E, 0x00, 0x00, 0x20, 0xA8, 0x00, 0x00, +0x20, 0xA8, 0x00, 0x00, 0x20, 0xA8, 0x00, 0x00, 0x20, 0xA8, 0x00, 0x00, 0x20, 0xA8, 0x00, 0x00, +0x20, 0xA8, 0x00, 0x00, 0x20, 0xA8, 0x00, 0x00, 0x20, 0xA2, 0x00, 0x00, 0x20, 0xA8, 0x00, 0x00, +0x20, 0xA8, 0x00, 0x00, 0x20, 0xA8, 0x00, 0x00, 0x20, 0xA2, 0x00, 0x00, 0x20, 0xA8, 0x00, 0x00, +0x20, 0xA8, 0x00, 0x00, 0x20, 0xA8, 0x00, 0x00, 0x20, 0x78, 0x00, 0x00, 0x20, 0xA8, 0x00, 0x00, +0x20, 0xA8, 0x00, 0x01, 0x20, 0x6C, 0x00, 0x01, 0x20, 0x66, 0x00, 0x01, 0x20, 0x6C, 0x00, 0x01, +0x20, 0x66, 0x00, 0x01, 0x20, 0x6C, 0x00, 0x01, 0x20, 0x6C, 0x00, 0x00, 0x20, 0x54, 0x00, 0x00, +0x20, 0x54, 0x00, 0x00, 0x20, 0x54, 0x00, 0x00, 0x20, 0x4E, 0x00, 0x00, 0x20, 0x54, 0x00, 0x00, +0x20, 0x48, 0x00, 0x00, 0x20, 0x42, 0x00, 0x00, 0x20, 0x3C, 0x00, 0x00, 0x20, 0x36, 0x00, 0x00, +0x20, 0x4E, 0x00, 0x00, 0x20, 0x30, 0x00, 0x00, 0x20, 0x2A, 0x00, 0x00, 0x20, 0x4E, 0x00, 0x00, +0x20, 0x36, 0x00, 0x00, 0x20, 0x4E, 0x00, 0x00, 0x20, 0x4E, 0x00, 0x00, 0x20, 0x4E, 0x00, 0x00, +0x20, 0x4E, 0x00, 0x00, 0x20, 0x4E, 0x00, 0x00, 0x20, 0x4E, 0x00, 0x00, 0x20, 0x54, 0x00, 0x00, +0x20, 0x54, 0x00, 0x00, 0x20, 0x4E, 0x00, 0x00, 0x20, 0x4E, 0x00, 0x00, 0x20, 0x4E, 0x00, 0x00, +0x20, 0x54, 0x00, 0x00, 0x20, 0x4E, 0x00, 0x00, 0x20, 0x4E, 0x00, 0x00, 0x20, 0x4E, 0x00, 0x00, +0x20, 0x4E, 0x00, 0x00, 0x20, 0x24, 0x00, 0x00, 0x20, 0x4E, 0x00, 0x01, 0x20, 0x6C, 0x00, 0x01, +0x20, 0x66, 0x00, 0x02, 0x00, 0x06, 0x02, 0xEA, 0x02, 0xFA, 0x00, 0x00, 0x02, 0xFC, 0x03, 0x0C, +0x00, 0x11, 0x03, 0x0E, 0x03, 0x11, 0x00, 0x22, 0x03, 0x13, 0x03, 0x14, 0x00, 0x26, 0x03, 0x23, +0x03, 0x42, 0x00, 0x28, 0x03, 0x44, 0x03, 0x45, 0x00, 0x48, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, +0x00, 0x08, 0x00, 0x01, 0x1F, 0x54, 0x1D, 0x0A, 0x00, 0x05, 0x1D, 0x80, 0x00, 0x0C, 0x02, 0x14, +0x1C, 0xF8, 0x00, 0x00, 0x1C, 0xF2, 0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xE6, 0x00, 0x00, 0x1C, 0xF2, +0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xE0, 0x00, 0x00, 0x1C, 0xF2, 0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xDA, +0x00, 0x00, 0x1C, 0xF2, 0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xE0, 0x00, 0x00, 0x1C, 0xD4, 0x1C, 0xEC, +0x00, 0x00, 0x1C, 0xDA, 0x00, 0x00, 0x1C, 0xF2, 0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xDA, 0x00, 0x00, +0x1C, 0xF2, 0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xDA, 0x00, 0x00, 0x1C, 0xF2, 0x1C, 0xEC, 0x00, 0x00, +0x1C, 0xE0, 0x00, 0x00, 0x1C, 0xF2, 0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xE0, 0x00, 0x00, 0x1C, 0xF2, +0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xDA, 0x00, 0x00, 0x1C, 0xF2, 0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xE0, +0x00, 0x00, 0x1C, 0xD4, 0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xDA, 0x00, 0x00, 0x1C, 0xF2, 0x1C, 0xEC, +0x00, 0x00, 0x1C, 0xDA, 0x00, 0x00, 0x1C, 0xF2, 0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xDA, 0x00, 0x00, +0x1C, 0xF2, 0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xCE, 0x00, 0x00, 0x1C, 0xF2, 0x1C, 0xEC, 0x00, 0x00, +0x1C, 0xE0, 0x00, 0x00, 0x1C, 0xF2, 0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xF8, 0x00, 0x00, 0x1C, 0xD4, +0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xC8, 0x00, 0x00, 0x1C, 0xF2, 0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xE0, +0x00, 0x00, 0x1C, 0xF2, 0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xE0, 0x00, 0x00, 0x1C, 0xF2, 0x1C, 0xEC, +0x00, 0x00, 0x1C, 0xE0, 0x00, 0x00, 0x1C, 0xF2, 0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xF8, 0x00, 0x00, +0x1C, 0xF2, 0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xC2, 0x00, 0x00, 0x1C, 0xF2, 0x1C, 0xEC, 0x00, 0x00, +0x1C, 0xBC, 0x00, 0x00, 0x1C, 0xF2, 0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xE0, 0x00, 0x00, 0x1C, 0xF2, +0x1C, 0xEC, 0x00, 0x00, 0x1C, 0xB6, 0x00, 0x00, 0x1C, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x1C, 0xAA, +0x00, 0x00, 0x1C, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x1C, 0xA4, 0x00, 0x00, 0x1C, 0x9E, 0x00, 0x00, +0x00, 0x00, 0x1C, 0x98, 0x00, 0x00, 0x1C, 0x92, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x8C, 0x00, 0x00, +0x1C, 0x92, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x86, 0x00, 0x00, 0x1C, 0x92, 0x00, 0x00, 0x00, 0x00, +0x1C, 0x98, 0x00, 0x00, 0x1C, 0x80, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x8C, 0x00, 0x00, 0x1C, 0x80, +0x00, 0x00, 0x00, 0x00, 0x1C, 0x86, 0x00, 0x00, 0x1C, 0x92, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x86, +0x00, 0x00, 0x1C, 0x92, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x7A, 0x00, 0x00, 0x1C, 0x74, 0x00, 0x00, +0x1C, 0x6E, 0x1C, 0x7A, 0x00, 0x00, 0x1C, 0x74, 0x00, 0x00, 0x1C, 0x6E, 0x1C, 0x68, 0x00, 0x00, +0x1C, 0x74, 0x00, 0x00, 0x1C, 0x6E, 0x1C, 0x7A, 0x00, 0x00, 0x1C, 0x74, 0x00, 0x00, 0x1C, 0x6E, +0x1C, 0x7A, 0x00, 0x00, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x6E, 0x1C, 0x7A, 0x00, 0x00, 0x1C, 0x5C, +0x00, 0x00, 0x1C, 0x6E, 0x1C, 0x56, 0x00, 0x00, 0x1C, 0x50, 0x1C, 0x4A, 0x00, 0x00, 0x1C, 0xE0, +0x00, 0x00, 0x1C, 0x50, 0x1C, 0x4A, 0x00, 0x00, 0x1C, 0x44, 0x00, 0x00, 0x1C, 0x50, 0x1C, 0x4A, +0x00, 0x00, 0x1C, 0x44, 0x00, 0x00, 0x1C, 0x50, 0x1C, 0x4A, 0x00, 0x00, 0x1C, 0x44, 0x00, 0x00, +0x1C, 0x3E, 0x1C, 0x4A, 0x00, 0x00, 0x1C, 0x44, 0x00, 0x00, 0x1C, 0x50, 0x1C, 0x4A, 0x00, 0x00, +0x1C, 0x38, 0x00, 0x00, 0x1C, 0x50, 0x1C, 0x4A, 0x00, 0x00, 0x1C, 0x44, 0x00, 0x00, 0x1C, 0x32, +0x1C, 0x4A, 0x00, 0x00, 0x1C, 0x38, 0x00, 0x00, 0x1C, 0x50, 0x1C, 0x4A, 0x00, 0x00, 0x1C, 0x38, +0x00, 0x00, 0x1C, 0x50, 0x1C, 0x4A, 0x00, 0x00, 0x1C, 0x38, 0x00, 0x00, 0x1C, 0x50, 0x1C, 0x4A, +0x00, 0x00, 0x1C, 0x2C, 0x00, 0x00, 0x1C, 0x50, 0x1C, 0x4A, 0x00, 0x00, 0x1C, 0x44, 0x00, 0x00, +0x1C, 0x50, 0x1C, 0x4A, 0x00, 0x00, 0x1C, 0x44, 0x00, 0x00, 0x1C, 0x50, 0x1C, 0x4A, 0x00, 0x00, +0x1C, 0x56, 0x00, 0x00, 0x1C, 0x32, 0x1C, 0x4A, 0x00, 0x00, 0x1C, 0x26, 0x00, 0x00, 0x1C, 0x50, +0x1C, 0x4A, 0x00, 0x00, 0x1C, 0x44, 0x00, 0x00, 0x1C, 0x50, 0x1C, 0x4A, 0x00, 0x00, 0x1C, 0x44, +0x00, 0x00, 0x1C, 0x50, 0x1C, 0x4A, 0x00, 0x00, 0x1C, 0x44, 0x00, 0x00, 0x1C, 0x50, 0x1C, 0x4A, +0x00, 0x00, 0x1C, 0x20, 0x00, 0x00, 0x1C, 0x50, 0x1C, 0x4A, 0x00, 0x00, 0x1C, 0x1A, 0x00, 0x00, +0x1C, 0x50, 0x1C, 0x4A, 0x00, 0x00, 0x1C, 0x56, 0x00, 0x00, 0x1C, 0x50, 0x1C, 0x4A, 0x00, 0x00, +0x1C, 0x44, 0x00, 0x00, 0x1C, 0x50, 0x1C, 0x4A, 0x00, 0x00, 0x1C, 0x14, 0x00, 0x00, 0x1C, 0x0E, +0x00, 0x00, 0x00, 0x00, 0x1C, 0x08, 0x00, 0x00, 0x1C, 0x02, 0x00, 0x00, 0x00, 0x00, 0x1B, 0xFC, +0x00, 0x00, 0x1C, 0x02, 0x00, 0x00, 0x00, 0x00, 0x1B, 0xFC, 0x00, 0x00, 0x1C, 0x02, 0x00, 0x00, +0x00, 0x00, 0x1B, 0xFC, 0x00, 0x00, 0x1C, 0x02, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x08, 0x00, 0x00, +0x1B, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x1B, 0xFC, 0x00, 0x00, 0x1C, 0x02, 0x00, 0x00, 0x00, 0x00, +0x1B, 0xFC, 0x00, 0x00, 0x1C, 0x02, 0x00, 0x00, 0x00, 0x00, 0x1B, 0xF0, 0x00, 0x00, 0x1B, 0xEA, +0x00, 0x00, 0x1B, 0xE4, 0x1C, 0x08, 0x00, 0x00, 0x1B, 0xDE, 0x00, 0x00, 0x1B, 0xD8, 0x1B, 0xF0, +0x00, 0x00, 0x1B, 0xD2, 0x00, 0x00, 0x1B, 0xE4, 0x1B, 0xCC, 0x00, 0x00, 0x1B, 0xEA, 0x00, 0x00, +0x1B, 0xE4, 0x1B, 0xF0, 0x00, 0x00, 0x1B, 0xC6, 0x00, 0x00, 0x1B, 0xE4, 0x1B, 0xC0, 0x00, 0x00, +0x1B, 0xBA, 0x1C, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x92, 0x00, 0x00, +0x1B, 0xB4, 0x00, 0x00, 0x1B, 0xBA, 0x1C, 0x92, 0x00, 0x00, 0x1B, 0xAE, 0x00, 0x00, 0x1B, 0xBA, +0x1C, 0x92, 0x00, 0x00, 0x1B, 0xAE, 0x00, 0x00, 0x1B, 0xBA, 0x1C, 0x92, 0x00, 0x00, 0x1B, 0xAE, +0x00, 0x00, 0x1B, 0xBA, 0x1C, 0x92, 0x00, 0x00, 0x1B, 0xA8, 0x00, 0x00, 0x1B, 0xBA, 0x1C, 0x92, +0x00, 0x00, 0x1B, 0xAE, 0x00, 0x00, 0x1B, 0xBA, 0x1C, 0x92, 0x00, 0x00, 0x1B, 0xA2, 0x00, 0x00, +0x1B, 0xBA, 0x1C, 0x92, 0x00, 0x00, 0x1B, 0xAE, 0x00, 0x00, 0x1B, 0xBA, 0x1C, 0x92, 0x00, 0x00, +0x1B, 0xC0, 0x00, 0x00, 0x1B, 0x9C, 0x1C, 0x92, 0x00, 0x00, 0x1B, 0x96, 0x00, 0x00, 0x1B, 0xBA, +0x1C, 0x92, 0x00, 0x00, 0x1B, 0xAE, 0x00, 0x00, 0x1B, 0xBA, 0x1C, 0x92, 0x00, 0x00, 0x1B, 0xAE, +0x00, 0x00, 0x1B, 0xBA, 0x1C, 0x92, 0x00, 0x00, 0x1B, 0xAE, 0x00, 0x00, 0x1B, 0xBA, 0x1C, 0x92, +0x00, 0x00, 0x1B, 0xC0, 0x00, 0x00, 0x1B, 0xBA, 0x1C, 0x92, 0x00, 0x00, 0x1B, 0xAE, 0x00, 0x00, +0x1B, 0xBA, 0x1C, 0x92, 0x00, 0x00, 0x1B, 0x90, 0x00, 0x00, 0x1B, 0x8A, 0x00, 0x00, 0x00, 0x00, +0x1B, 0x84, 0x00, 0x00, 0x1B, 0x8A, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x7E, 0x00, 0x00, 0x1B, 0x78, +0x00, 0x00, 0x00, 0x00, 0x1B, 0x7E, 0x00, 0x00, 0x1B, 0x72, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x6C, +0x1B, 0x66, 0x1B, 0x60, 0x00, 0x00, 0x1B, 0x5A, 0x00, 0x00, 0x1B, 0x66, 0x00, 0x00, 0x00, 0x00, +0x1B, 0x5A, 0x1B, 0x54, 0x1B, 0x66, 0x1B, 0x60, 0x00, 0x00, 0x1B, 0x5A, 0x1B, 0x6C, 0x1B, 0x66, +0x1B, 0x60, 0x00, 0x00, 0x1B, 0x5A, 0x1B, 0x6C, 0x1B, 0x66, 0x1B, 0x4E, 0x00, 0x00, 0x1B, 0x5A, +0x1B, 0x6C, 0x1B, 0x66, 0x1B, 0x60, 0x00, 0x00, 0x1B, 0x5A, 0x1B, 0x6C, 0x1B, 0x66, 0x1B, 0x48, +0x00, 0x00, 0x1B, 0x5A, 0x1B, 0x6C, 0x1B, 0x66, 0x1B, 0x60, 0x00, 0x00, 0x1B, 0x5A, 0x1B, 0x6C, +0x1B, 0x66, 0x1B, 0x42, 0x00, 0x00, 0x1B, 0x5A, 0x1B, 0x3C, 0x1B, 0x36, 0x1B, 0x30, 0x00, 0x00, +0x1B, 0x2A, 0x1B, 0x24, 0x00, 0x00, 0x1B, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x24, 0x00, 0x00, +0x1B, 0x18, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x12, 0x00, 0x00, 0x1B, 0x0C, 0x00, 0x00, 0x00, 0x00, +0x1B, 0x06, 0x00, 0x00, 0x1B, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x00, 0x00, 0x00, 0x1B, 0x0C, +0x00, 0x00, 0x00, 0x00, 0x1B, 0x12, 0x00, 0x00, 0x1A, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x00, +0x00, 0x00, 0x1B, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x12, 0x00, 0x00, 0x1A, 0xF4, 0x00, 0x00, +0x00, 0x00, 0x1B, 0x12, 0x00, 0x00, 0x1B, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x12, 0x00, 0x00, +0x1A, 0xEE, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x00, 0x00, 0x00, 0x1B, 0x0C, 0x00, 0x00, 0x00, 0x00, +0x1B, 0x90, 0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, 0x1A, 0xD0, 0x1A, 0xE8, 0x1A, 0xE2, +0x1A, 0xDC, 0x1A, 0xD6, 0x1B, 0x84, 0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, 0x1B, 0x84, +0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, 0x1B, 0x84, 0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, +0x1A, 0xD6, 0x1A, 0xCA, 0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, 0x1B, 0x84, 0x1A, 0xE8, +0x1A, 0xC4, 0x1A, 0xDC, 0x1A, 0xD6, 0x1A, 0xCA, 0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, +0x1A, 0xCA, 0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, 0x1A, 0xCA, 0x1A, 0xE8, 0x1A, 0xE2, +0x1A, 0xDC, 0x1A, 0xD6, 0x1A, 0xBE, 0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, 0x1B, 0x84, +0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, 0x1A, 0xB8, 0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, +0x1A, 0xD6, 0x1A, 0xB8, 0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, 0x1B, 0x90, 0x1A, 0xE8, +0x1A, 0xC4, 0x1A, 0xDC, 0x1A, 0xD6, 0x1A, 0xB2, 0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, +0x1B, 0x84, 0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, 0x1B, 0x90, 0x00, 0x00, 0x1A, 0xE2, +0x00, 0x00, 0x00, 0x00, 0x1A, 0xD0, 0x00, 0x00, 0x1A, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x90, +0x00, 0x00, 0x1A, 0xC4, 0x00, 0x00, 0x00, 0x00, 0x1A, 0xB2, 0x00, 0x00, 0x1A, 0xE2, 0x00, 0x00, +0x00, 0x00, 0x1B, 0x84, 0x00, 0x00, 0x1A, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x84, 0x00, 0x00, +0x1A, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x1A, 0xAC, 0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, +0x1B, 0x84, 0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, 0x1B, 0x84, 0x1A, 0xE8, 0x1A, 0xE2, +0x1A, 0xDC, 0x1A, 0xD6, 0x1A, 0xA6, 0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, 0x1A, 0xA0, +0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, 0x1B, 0x90, 0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, +0x1A, 0xD6, 0x1A, 0x9A, 0x1A, 0x94, 0x1A, 0x8E, 0x1A, 0xDC, 0x1A, 0xD6, 0x1B, 0x06, 0x1A, 0x94, +0x1A, 0x8E, 0x1A, 0xDC, 0x1A, 0xD6, 0x1B, 0x84, 0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, +0x1A, 0xA6, 0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, 0x1A, 0xB8, 0x1A, 0xE8, 0x1A, 0xE2, +0x1A, 0xDC, 0x1A, 0xD6, 0x1A, 0xB8, 0x1A, 0xE8, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, 0x1A, 0x88, +0x00, 0x00, 0x1A, 0x82, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x7C, 0x00, 0x00, 0x1A, 0x76, 0x00, 0x00, +0x00, 0x00, 0x1A, 0x7C, 0x00, 0x00, 0x1A, 0x76, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x90, 0x1A, 0xE8, +0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, 0x1A, 0x70, 0x00, 0x00, 0x1C, 0x9E, 0x00, 0x00, 0x00, 0x00, +0x1A, 0x6A, 0x00, 0x00, 0x1C, 0x9E, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x64, 0x00, 0x00, 0x1C, 0x9E, +0x00, 0x00, 0x00, 0x00, 0x1A, 0x70, 0x00, 0x00, 0x1A, 0x5E, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x58, +0x00, 0x00, 0x1C, 0x9E, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x70, 0x00, 0x00, 0x1A, 0x52, 0x00, 0x00, +0x00, 0x00, 0x1A, 0x64, 0x00, 0x00, 0x1C, 0x9E, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x70, 0x00, 0x00, +0x1A, 0x4C, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x7C, 0x00, 0x00, 0x1A, 0x46, 0x00, 0x00, 0x00, 0x00, +0x1A, 0x40, 0x00, 0x00, 0x1A, 0x46, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x3A, 0x00, 0x00, 0x1A, 0x46, +0x00, 0x00, 0x00, 0x00, 0x1A, 0x3A, 0x00, 0x00, 0x1A, 0x46, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x34, +0x00, 0x00, 0x1A, 0x46, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x7C, 0x00, 0x00, 0x1A, 0x2E, 0x00, 0x00, +0x00, 0x00, 0x1A, 0x3A, 0x00, 0x00, 0x1A, 0x46, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x7C, 0x00, 0x00, +0x1A, 0x28, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x3A, 0x00, 0x00, 0x1A, 0x46, 0x00, 0x00, 0x00, 0x00, +0x1A, 0x7C, 0x00, 0x00, 0x1A, 0x22, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x3A, 0x00, 0x00, 0x1A, 0x22, +0x00, 0x00, 0x00, 0x00, 0x1B, 0x90, 0x00, 0x00, 0x1A, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x1C, +0x00, 0x00, 0x1A, 0x16, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x10, 0x00, 0x00, 0x1A, 0x0A, 0x00, 0x00, +0x1A, 0x04, 0x1A, 0x10, 0x00, 0x00, 0x1A, 0x0A, 0x00, 0x00, 0x1A, 0x04, 0x19, 0xFE, 0x00, 0x00, +0x1A, 0x0A, 0x00, 0x00, 0x1A, 0x04, 0x1A, 0x10, 0x00, 0x00, 0x19, 0xF8, 0x00, 0x00, 0x1A, 0x04, +0x1A, 0x10, 0x00, 0x00, 0x19, 0xF2, 0x00, 0x00, 0x1A, 0x04, 0x1A, 0x10, 0x00, 0x00, 0x19, 0xEC, +0x00, 0x00, 0x1A, 0x04, 0x1A, 0x10, 0x00, 0x00, 0x19, 0xE6, 0x00, 0x00, 0x1A, 0x04, 0x19, 0xE0, +0x19, 0xDA, 0x19, 0xD4, 0x19, 0xCE, 0x00, 0x00, 0x19, 0xC8, 0x19, 0xDA, 0x19, 0xD4, 0x19, 0xCE, +0x00, 0x00, 0x19, 0xC2, 0x19, 0xDA, 0x19, 0xD4, 0x19, 0xCE, 0x00, 0x00, 0x19, 0xC2, 0x19, 0xDA, +0x19, 0xD4, 0x19, 0xCE, 0x00, 0x00, 0x19, 0xC2, 0x19, 0xDA, 0x19, 0xD4, 0x19, 0xCE, 0x00, 0x00, +0x19, 0xBC, 0x19, 0xDA, 0x19, 0xD4, 0x19, 0xCE, 0x00, 0x00, 0x19, 0xC2, 0x19, 0xDA, 0x19, 0xD4, +0x19, 0xCE, 0x00, 0x00, 0x19, 0xE0, 0x19, 0xDA, 0x19, 0xB6, 0x19, 0xCE, 0x00, 0x00, 0x19, 0xB0, +0x19, 0xDA, 0x19, 0xD4, 0x19, 0xCE, 0x00, 0x00, 0x19, 0xC2, 0x19, 0xDA, 0x19, 0xD4, 0x19, 0xCE, +0x00, 0x00, 0x19, 0xE0, 0x00, 0x00, 0x19, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x19, 0xC8, 0x00, 0x00, +0x19, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x19, 0xE0, 0x00, 0x00, 0x19, 0xB6, 0x00, 0x00, 0x00, 0x00, +0x19, 0xB0, 0x00, 0x00, 0x19, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x19, 0xC2, 0x00, 0x00, 0x19, 0xD4, +0x00, 0x00, 0x00, 0x00, 0x19, 0xC2, 0x00, 0x00, 0x19, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x19, 0xAA, +0x19, 0xDA, 0x19, 0xD4, 0x19, 0xCE, 0x00, 0x00, 0x19, 0xC2, 0x19, 0xDA, 0x19, 0xD4, 0x19, 0xCE, +0x00, 0x00, 0x19, 0xC2, 0x19, 0xDA, 0x19, 0xD4, 0x19, 0xCE, 0x00, 0x00, 0x19, 0xA4, 0x19, 0xDA, +0x19, 0xD4, 0x19, 0xCE, 0x00, 0x00, 0x19, 0xE0, 0x19, 0xDA, 0x19, 0xD4, 0x19, 0xCE, 0x00, 0x00, +0x19, 0x9E, 0x19, 0xDA, 0x19, 0xD4, 0x19, 0xCE, 0x00, 0x00, 0x19, 0xC2, 0x19, 0xDA, 0x19, 0xD4, +0x19, 0xCE, 0x00, 0x00, 0x19, 0x98, 0x19, 0xDA, 0x19, 0xD4, 0x19, 0xCE, 0x00, 0x00, 0x19, 0x92, +0x00, 0x00, 0x19, 0x8C, 0x00, 0x00, 0x00, 0x00, 0x19, 0x86, 0x00, 0x00, 0x19, 0x80, 0x00, 0x00, +0x00, 0x00, 0x19, 0x7A, 0x00, 0x00, 0x19, 0x80, 0x00, 0x00, 0x00, 0x00, 0x19, 0x74, 0x00, 0x00, +0x19, 0x80, 0x00, 0x00, 0x00, 0x00, 0x19, 0x74, 0x00, 0x00, 0x19, 0x80, 0x00, 0x00, 0x00, 0x00, +0x19, 0x6E, 0x00, 0x00, 0x19, 0x80, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x36, 0x00, 0x00, 0x19, 0x68, +0x00, 0x00, 0x00, 0x00, 0x19, 0x62, 0x00, 0x00, 0x19, 0x5C, 0x00, 0x00, 0x00, 0x00, 0x1C, 0xC8, +0x00, 0x00, 0x19, 0x5C, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x26, 0x00, 0x00, 0x19, 0x5C, 0x00, 0x00, +0x00, 0x00, 0x1C, 0x26, 0x00, 0x00, 0x19, 0x5C, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x26, 0x00, 0x00, +0x19, 0x5C, 0x00, 0x00, 0x00, 0x00, 0x19, 0x62, 0x00, 0x00, 0x19, 0x56, 0x00, 0x00, 0x00, 0x00, +0x19, 0x50, 0x00, 0x00, 0x19, 0x5C, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x26, 0x00, 0x00, 0x19, 0x5C, +0x00, 0x00, 0x00, 0x00, 0x1C, 0x26, 0x00, 0x00, 0x19, 0x5C, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x26, +0x00, 0x00, 0x19, 0x5C, 0x00, 0x00, 0x00, 0x00, 0x19, 0x4A, 0x00, 0x00, 0x1E, 0xFA, 0x00, 0x00, +0x19, 0x44, 0x19, 0x50, 0x00, 0x00, 0x1E, 0xFA, 0x00, 0x00, 0x19, 0x44, 0x19, 0x3E, 0x00, 0x00, +0x1E, 0xFA, 0x00, 0x00, 0x19, 0x44, 0x19, 0x3E, 0x00, 0x00, 0x1E, 0xFA, 0x00, 0x00, 0x19, 0x44, +0x19, 0x4A, 0x00, 0x00, 0x19, 0x38, 0x00, 0x00, 0x19, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x1C, 0x92, 0x00, 0x00, 0x1B, 0x6C, 0x00, 0x00, 0x19, 0x32, 0x19, 0x2C, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x19, 0x2C, 0x00, 0x00, 0x19, 0x26, 0x00, 0x00, 0x19, 0x32, 0x19, 0x2C, +0x00, 0x00, 0x19, 0x20, 0x00, 0x00, 0x19, 0x32, 0x19, 0x2C, 0x00, 0x00, 0x19, 0x20, 0x00, 0x00, +0x19, 0x32, 0x19, 0x2C, 0x00, 0x00, 0x19, 0x20, 0x00, 0x00, 0x19, 0x32, 0x19, 0x2C, 0x00, 0x00, +0x19, 0x1A, 0x00, 0x00, 0x19, 0x32, 0x19, 0x2C, 0x00, 0x00, 0x19, 0x20, 0x00, 0x00, 0x19, 0x32, +0x19, 0x2C, 0x00, 0x00, 0x19, 0x14, 0x00, 0x00, 0x19, 0x32, 0x19, 0x2C, 0x00, 0x00, 0x19, 0x20, +0x00, 0x00, 0x19, 0x32, 0x19, 0x2C, 0x00, 0x00, 0x1B, 0x6C, 0x00, 0x00, 0x19, 0x0E, 0x19, 0x2C, +0x00, 0x00, 0x19, 0x08, 0x00, 0x00, 0x19, 0x32, 0x19, 0x2C, 0x00, 0x00, 0x19, 0x20, 0x00, 0x00, +0x19, 0x32, 0x19, 0x2C, 0x00, 0x00, 0x19, 0x20, 0x00, 0x00, 0x19, 0x32, 0x19, 0x2C, 0x00, 0x00, +0x19, 0x20, 0x00, 0x00, 0x19, 0x32, 0x19, 0x2C, 0x00, 0x00, 0x1B, 0x6C, 0x00, 0x00, 0x19, 0x32, +0x19, 0x2C, 0x00, 0x00, 0x19, 0x20, 0x00, 0x00, 0x19, 0x32, 0x19, 0x2C, 0x00, 0x00, 0x19, 0x02, +0x00, 0x00, 0x18, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x06, 0x00, 0x00, 0x18, 0xFC, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x1B, 0x66, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x5A, 0x18, 0xF6, 0x00, 0x00, +0x18, 0xF0, 0x18, 0xEA, 0x00, 0x00, 0x18, 0xE4, 0x00, 0x00, 0x18, 0xF0, 0x18, 0xEA, 0x00, 0x00, +0x18, 0xE4, 0x00, 0x00, 0x18, 0xF0, 0x18, 0xEA, 0x00, 0x00, 0x18, 0xDE, 0x00, 0x00, 0x18, 0xF0, +0x18, 0xEA, 0x00, 0x00, 0x18, 0xE4, 0x00, 0x00, 0x18, 0xD8, 0x18, 0xEA, 0x00, 0x00, 0x18, 0xDE, +0x00, 0x00, 0x18, 0xF0, 0x18, 0xEA, 0x00, 0x00, 0x18, 0xDE, 0x00, 0x00, 0x18, 0xF0, 0x18, 0xEA, +0x00, 0x00, 0x18, 0xDE, 0x00, 0x00, 0x18, 0xF0, 0x18, 0xEA, 0x00, 0x00, 0x18, 0xE4, 0x00, 0x00, +0x18, 0xF0, 0x18, 0xEA, 0x00, 0x00, 0x18, 0xE4, 0x00, 0x00, 0x18, 0xF0, 0x18, 0xEA, 0x00, 0x00, +0x18, 0xD2, 0x00, 0x00, 0x18, 0xF0, 0x18, 0xEA, 0x00, 0x00, 0x18, 0xE4, 0x00, 0x00, 0x18, 0xD8, +0x18, 0xEA, 0x00, 0x00, 0x18, 0xDE, 0x00, 0x00, 0x18, 0xF0, 0x18, 0xEA, 0x00, 0x00, 0x18, 0xDE, +0x00, 0x00, 0x18, 0xF0, 0x18, 0xEA, 0x00, 0x00, 0x18, 0xDE, 0x00, 0x00, 0x18, 0xF0, 0x18, 0xEA, +0x00, 0x00, 0x18, 0xCC, 0x00, 0x00, 0x18, 0xF0, 0x18, 0xEA, 0x00, 0x00, 0x18, 0xC6, 0x00, 0x00, +0x18, 0xF0, 0x18, 0xEA, 0x00, 0x00, 0x18, 0xF6, 0x00, 0x00, 0x18, 0xD8, 0x18, 0xEA, 0x00, 0x00, +0x18, 0xC0, 0x00, 0x00, 0x18, 0xF0, 0x18, 0xEA, 0x00, 0x00, 0x18, 0xE4, 0x00, 0x00, 0x18, 0xF0, +0x18, 0xEA, 0x00, 0x00, 0x18, 0xE4, 0x00, 0x00, 0x18, 0xF0, 0x18, 0xEA, 0x00, 0x00, 0x18, 0xE4, +0x00, 0x00, 0x18, 0xF0, 0x18, 0xEA, 0x00, 0x00, 0x18, 0xF6, 0x00, 0x00, 0x18, 0xF0, 0x18, 0xEA, +0x00, 0x00, 0x18, 0xBA, 0x00, 0x00, 0x18, 0xF0, 0x18, 0xEA, 0x00, 0x00, 0x18, 0xB4, 0x00, 0x00, +0x18, 0xF0, 0x18, 0xEA, 0x00, 0x00, 0x18, 0xE4, 0x00, 0x00, 0x18, 0xF0, 0x18, 0xEA, 0x00, 0x00, +0x18, 0xAE, 0x00, 0x00, 0x18, 0xA8, 0x00, 0x00, 0x00, 0x00, 0x18, 0xA2, 0x00, 0x00, 0x18, 0xA8, +0x00, 0x00, 0x00, 0x00, 0x18, 0x9C, 0x00, 0x00, 0x18, 0x96, 0x00, 0x00, 0x00, 0x00, 0x18, 0x90, +0x00, 0x00, 0x1B, 0x60, 0x00, 0x00, 0x00, 0x00, 0x18, 0x8A, 0x00, 0x00, 0x1B, 0x60, 0x00, 0x00, +0x00, 0x00, 0x18, 0x8A, 0x00, 0x00, 0x1B, 0x60, 0x00, 0x00, 0x00, 0x00, 0x18, 0x90, 0x00, 0x00, +0x18, 0x84, 0x00, 0x00, 0x00, 0x00, 0x18, 0x8A, 0x00, 0x00, 0x18, 0x84, 0x00, 0x00, 0x00, 0x00, +0x18, 0x8A, 0x00, 0x00, 0x1B, 0x60, 0x00, 0x00, 0x00, 0x00, 0x18, 0x7E, 0x00, 0x00, 0x1B, 0x60, +0x00, 0x00, 0x00, 0x00, 0x18, 0x78, 0x18, 0x72, 0x18, 0x6C, 0x00, 0x00, 0x18, 0x66, 0x18, 0x78, +0x18, 0x72, 0x18, 0x6C, 0x00, 0x00, 0x18, 0x66, 0x18, 0x78, 0x18, 0x72, 0x18, 0x6C, 0x00, 0x00, +0x18, 0x66, 0x18, 0x78, 0x18, 0x72, 0x18, 0x60, 0x00, 0x00, 0x18, 0x66, 0x18, 0x78, 0x18, 0x72, +0x18, 0x5A, 0x00, 0x00, 0x18, 0x66, 0x00, 0x00, 0x18, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x18, 0x90, 0x00, 0x00, 0x18, 0x54, 0x18, 0x4E, 0x00, 0x00, 0x18, 0x8A, 0x00, 0x00, 0x18, 0x54, +0x18, 0x4E, 0x00, 0x00, 0x18, 0x8A, 0x00, 0x00, 0x18, 0x54, 0x18, 0x4E, 0x00, 0x00, 0x18, 0x8A, +0x00, 0x00, 0x18, 0x54, 0x18, 0x4E, 0x00, 0x00, 0x18, 0x8A, 0x00, 0x00, 0x18, 0x48, 0x18, 0x4E, +0x00, 0x00, 0x18, 0x8A, 0x00, 0x00, 0x18, 0x54, 0x18, 0x4E, 0x00, 0x00, 0x18, 0x42, 0x00, 0x00, +0x18, 0x54, 0x18, 0x4E, 0x00, 0x00, 0x18, 0x8A, 0x00, 0x00, 0x18, 0x3C, 0x18, 0x4E, 0x00, 0x00, +0x18, 0x42, 0x00, 0x00, 0x18, 0x54, 0x18, 0x4E, 0x00, 0x00, 0x18, 0x42, 0x00, 0x00, 0x18, 0x54, +0x18, 0x4E, 0x00, 0x00, 0x18, 0x42, 0x00, 0x00, 0x18, 0x54, 0x18, 0x4E, 0x00, 0x00, 0x18, 0x36, +0x00, 0x00, 0x18, 0x54, 0x18, 0x4E, 0x00, 0x00, 0x18, 0x7E, 0x00, 0x00, 0x18, 0x54, 0x18, 0x4E, +0x00, 0x00, 0x18, 0x7E, 0x00, 0x00, 0x18, 0x54, 0x18, 0x4E, 0x00, 0x00, 0x18, 0x90, 0x00, 0x00, +0x18, 0x3C, 0x18, 0x4E, 0x00, 0x00, 0x18, 0x30, 0x00, 0x00, 0x18, 0x54, 0x18, 0x4E, 0x00, 0x00, +0x18, 0x8A, 0x00, 0x00, 0x18, 0x54, 0x18, 0x4E, 0x00, 0x00, 0x18, 0x8A, 0x00, 0x00, 0x18, 0x54, +0x18, 0x4E, 0x00, 0x00, 0x18, 0x8A, 0x00, 0x00, 0x18, 0x54, 0x18, 0x4E, 0x00, 0x00, 0x18, 0x2A, +0x00, 0x00, 0x18, 0x54, 0x18, 0x4E, 0x00, 0x00, 0x18, 0x2A, 0x00, 0x00, 0x18, 0x54, 0x18, 0x4E, +0x00, 0x00, 0x18, 0x24, 0x00, 0x00, 0x18, 0x54, 0x18, 0x4E, 0x00, 0x00, 0x18, 0x8A, 0x00, 0x00, +0x18, 0x54, 0x18, 0x4E, 0x00, 0x00, 0x18, 0x1E, 0x00, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, +0x18, 0x12, 0x00, 0x00, 0x18, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x18, 0x06, 0x00, 0x00, 0x18, 0x0C, +0x00, 0x00, 0x00, 0x00, 0x18, 0x06, 0x00, 0x00, 0x18, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x18, 0x06, +0x00, 0x00, 0x18, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x18, 0x0C, 0x00, 0x00, +0x00, 0x00, 0x17, 0xFA, 0x00, 0x00, 0x18, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x18, 0x06, 0x00, 0x00, +0x18, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x17, 0xF4, 0x00, 0x00, 0x17, 0xEE, 0x00, 0x00, 0x17, 0xE8, +0x17, 0xF4, 0x00, 0x00, 0x17, 0xEE, 0x00, 0x00, 0x17, 0xE8, 0x17, 0xF4, 0x00, 0x00, 0x17, 0xE2, +0x00, 0x00, 0x17, 0xE8, 0x17, 0xDC, 0x00, 0x00, 0x17, 0xEE, 0x00, 0x00, 0x17, 0xE8, 0x17, 0xF4, +0x00, 0x00, 0x17, 0xD6, 0x00, 0x00, 0x17, 0xE8, 0x17, 0xD0, 0x00, 0x00, 0x17, 0xCA, 0x17, 0xC4, +0x00, 0x00, 0x17, 0xBE, 0x00, 0x00, 0x17, 0xB8, 0x17, 0xB2, 0x00, 0x00, 0x17, 0xAC, 0x00, 0x00, +0x17, 0xB8, 0x17, 0xB2, 0x00, 0x00, 0x17, 0xAC, 0x00, 0x00, 0x17, 0xB8, 0x17, 0xB2, 0x00, 0x00, +0x17, 0xAC, 0x00, 0x00, 0x17, 0xB8, 0x17, 0xB2, 0x00, 0x00, 0x17, 0xAC, 0x00, 0x00, 0x17, 0xB8, +0x17, 0xB2, 0x00, 0x00, 0x17, 0xA6, 0x00, 0x00, 0x17, 0xB8, 0x17, 0xB2, 0x00, 0x00, 0x17, 0xA0, +0x00, 0x00, 0x17, 0xB8, 0x17, 0xB2, 0x00, 0x00, 0x17, 0x9A, 0x00, 0x00, 0x17, 0xB8, 0x17, 0xB2, +0x00, 0x00, 0x17, 0xA0, 0x00, 0x00, 0x17, 0xB8, 0x17, 0xB2, 0x00, 0x00, 0x17, 0xD0, 0x00, 0x00, +0x17, 0x94, 0x17, 0xC4, 0x00, 0x00, 0x17, 0x8E, 0x00, 0x00, 0x17, 0xB8, 0x17, 0xB2, 0x00, 0x00, +0x17, 0xAC, 0x00, 0x00, 0x17, 0xB8, 0x17, 0xB2, 0x00, 0x00, 0x17, 0xAC, 0x00, 0x00, 0x17, 0xB8, +0x17, 0xB2, 0x00, 0x00, 0x17, 0xD0, 0x00, 0x00, 0x17, 0xCA, 0x17, 0xC4, 0x00, 0x00, 0x17, 0xAC, +0x00, 0x00, 0x17, 0xB8, 0x17, 0xB2, 0x00, 0x00, 0x17, 0xA0, 0x00, 0x00, 0x17, 0xB8, 0x17, 0xB2, +0x00, 0x00, 0x17, 0xAC, 0x00, 0x00, 0x17, 0xB8, 0x17, 0xB2, 0x00, 0x00, 0x17, 0x88, 0x00, 0x00, +0x17, 0x82, 0x00, 0x00, 0x00, 0x00, 0x17, 0x7C, 0x00, 0x00, 0x17, 0x82, 0x00, 0x00, 0x00, 0x00, +0x17, 0x76, 0x00, 0x00, 0x17, 0x70, 0x00, 0x00, 0x00, 0x00, 0x17, 0x76, 0x00, 0x00, 0x17, 0x6A, +0x00, 0x00, 0x00, 0x00, 0x17, 0x64, 0x00, 0x00, 0x17, 0x5E, 0x00, 0x00, 0x00, 0x00, 0x17, 0x58, +0x17, 0x52, 0x17, 0x4C, 0x00, 0x00, 0x17, 0x46, 0x17, 0x40, 0x17, 0x52, 0x17, 0x4C, 0x00, 0x00, +0x17, 0x46, 0x17, 0x58, 0x17, 0x52, 0x17, 0x4C, 0x00, 0x00, 0x17, 0x46, 0x17, 0x58, 0x17, 0x52, +0x17, 0x3A, 0x00, 0x00, 0x17, 0x46, 0x17, 0x58, 0x17, 0x52, 0x17, 0x4C, 0x00, 0x00, 0x17, 0x46, +0x17, 0x58, 0x17, 0x52, 0x17, 0x34, 0x00, 0x00, 0x17, 0x46, 0x17, 0x58, 0x17, 0x52, 0x17, 0x4C, +0x00, 0x00, 0x17, 0x46, 0x17, 0x58, 0x17, 0x52, 0x17, 0x2E, 0x00, 0x00, 0x17, 0x46, 0x17, 0x28, +0x17, 0x22, 0x17, 0x1C, 0x00, 0x00, 0x17, 0x16, 0x17, 0x10, 0x00, 0x00, 0x17, 0x0A, 0x00, 0x00, +0x00, 0x00, 0x17, 0x10, 0x00, 0x00, 0x17, 0x04, 0x00, 0x00, 0x00, 0x00, 0x16, 0xFE, 0x00, 0x00, +0x17, 0xEE, 0x00, 0x00, 0x00, 0x00, 0x16, 0xF8, 0x00, 0x00, 0x17, 0xEE, 0x00, 0x00, 0x00, 0x00, +0x16, 0xF2, 0x00, 0x00, 0x19, 0x68, 0x00, 0x00, 0x00, 0x00, 0x16, 0xF8, 0x00, 0x00, 0x17, 0xEE, +0x00, 0x00, 0x00, 0x00, 0x16, 0xFE, 0x00, 0x00, 0x16, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x16, 0xE6, +0x00, 0x00, 0x17, 0xEE, 0x00, 0x00, 0x00, 0x00, 0x16, 0xFE, 0x00, 0x00, 0x17, 0xD6, 0x00, 0x00, +0x00, 0x00, 0x16, 0xFE, 0x00, 0x00, 0x17, 0xEE, 0x00, 0x00, 0x00, 0x00, 0x16, 0xFE, 0x00, 0x00, +0x16, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x16, 0xF8, 0x00, 0x00, 0x17, 0xEE, 0x00, 0x00, 0x00, 0x00, +0x16, 0xDA, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, 0x16, 0xC2, 0x16, 0xD4, 0x1B, 0x30, +0x16, 0xCE, 0x16, 0xC8, 0x16, 0xC2, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, 0x16, 0xC2, +0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, 0x16, 0xC2, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, +0x16, 0xC8, 0x16, 0xBC, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, 0x16, 0xC2, 0x16, 0xD4, +0x16, 0xB6, 0x16, 0xCE, 0x16, 0xC8, 0x16, 0xBC, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, +0x16, 0xBC, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, 0x16, 0xBC, 0x16, 0xD4, 0x1B, 0x30, +0x16, 0xCE, 0x16, 0xC8, 0x16, 0xB0, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, 0x16, 0xAA, +0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, 0x16, 0xA4, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, +0x16, 0xC8, 0x16, 0xA4, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, 0x16, 0xDA, 0x16, 0xD4, +0x16, 0xB6, 0x16, 0xCE, 0x16, 0xC8, 0x16, 0x9E, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, +0x16, 0xC2, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, 0x16, 0xDA, 0x00, 0x00, 0x1B, 0x30, +0x00, 0x00, 0x00, 0x00, 0x16, 0xC2, 0x00, 0x00, 0x1B, 0x30, 0x00, 0x00, 0x00, 0x00, 0x16, 0xDA, +0x00, 0x00, 0x16, 0xB6, 0x00, 0x00, 0x00, 0x00, 0x16, 0x9E, 0x00, 0x00, 0x1B, 0x30, 0x00, 0x00, +0x00, 0x00, 0x16, 0xC2, 0x00, 0x00, 0x1B, 0x30, 0x00, 0x00, 0x00, 0x00, 0x16, 0xC2, 0x00, 0x00, +0x1B, 0x30, 0x00, 0x00, 0x00, 0x00, 0x16, 0xC2, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, +0x16, 0xC2, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, 0x16, 0xC2, 0x16, 0xD4, 0x1B, 0x30, +0x16, 0xCE, 0x16, 0xC8, 0x16, 0x98, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, 0x16, 0x98, +0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, 0x16, 0xDA, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, +0x16, 0xC8, 0x16, 0xDA, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, 0x16, 0xC2, 0x16, 0xD4, +0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, 0x16, 0xC2, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, +0x16, 0x92, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, 0x16, 0x8C, 0x16, 0xD4, 0x1B, 0x30, +0x16, 0xCE, 0x16, 0xC8, 0x16, 0x86, 0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, 0x16, 0x80, +0x00, 0x00, 0x16, 0x7A, 0x00, 0x00, 0x00, 0x00, 0x18, 0xF6, 0x00, 0x00, 0x18, 0xF0, 0x00, 0x00, +0x00, 0x00, 0x18, 0xF6, 0x00, 0x00, 0x18, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x16, 0x74, 0x00, 0x00, +0x18, 0x96, 0x00, 0x00, 0x00, 0x00, 0x16, 0x6E, 0x00, 0x00, 0x16, 0x68, 0x00, 0x00, 0x00, 0x00, +0x16, 0x62, 0x00, 0x00, 0x16, 0x68, 0x00, 0x00, 0x00, 0x00, 0x16, 0x62, 0x00, 0x00, 0x16, 0x68, +0x00, 0x00, 0x00, 0x00, 0x16, 0x6E, 0x00, 0x00, 0x16, 0x5C, 0x00, 0x00, 0x00, 0x00, 0x16, 0x56, +0x00, 0x00, 0x16, 0x68, 0x00, 0x00, 0x00, 0x00, 0x16, 0x6E, 0x00, 0x00, 0x16, 0x50, 0x00, 0x00, +0x00, 0x00, 0x16, 0x62, 0x00, 0x00, 0x16, 0x68, 0x00, 0x00, 0x00, 0x00, 0x16, 0x6E, 0x00, 0x00, +0x16, 0x4A, 0x00, 0x00, 0x00, 0x00, 0x16, 0x44, 0x00, 0x00, 0x16, 0x3E, 0x00, 0x00, 0x00, 0x00, +0x16, 0x38, 0x00, 0x00, 0x16, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x16, 0x32, 0x00, 0x00, 0x16, 0x3E, +0x00, 0x00, 0x00, 0x00, 0x16, 0x38, 0x00, 0x00, 0x16, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x16, 0x2C, +0x00, 0x00, 0x16, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x16, 0x44, 0x00, 0x00, 0x16, 0x26, 0x00, 0x00, +0x00, 0x00, 0x16, 0x38, 0x00, 0x00, 0x16, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x16, 0x44, 0x00, 0x00, +0x16, 0x20, 0x00, 0x00, 0x00, 0x00, 0x16, 0x1A, 0x00, 0x00, 0x16, 0x3E, 0x00, 0x00, 0x00, 0x00, +0x16, 0x44, 0x00, 0x00, 0x16, 0x14, 0x00, 0x00, 0x00, 0x00, 0x16, 0x1A, 0x00, 0x00, 0x16, 0x14, +0x00, 0x00, 0x00, 0x00, 0x16, 0x0E, 0x00, 0x00, 0x16, 0x08, 0x00, 0x00, 0x00, 0x00, 0x16, 0x02, +0x15, 0xFC, 0x15, 0xF6, 0x00, 0x00, 0x15, 0xF0, 0x16, 0x02, 0x15, 0xFC, 0x15, 0xF6, 0x00, 0x00, +0x15, 0xF0, 0x16, 0x02, 0x15, 0xFC, 0x15, 0xF6, 0x00, 0x00, 0x15, 0xF0, 0x16, 0x02, 0x15, 0xFC, +0x15, 0xEA, 0x00, 0x00, 0x15, 0xF0, 0x16, 0x02, 0x15, 0xFC, 0x15, 0xE4, 0x00, 0x00, 0x15, 0xF0, +0x15, 0xDE, 0x15, 0xFC, 0x15, 0xF6, 0x00, 0x00, 0x15, 0xF0, 0x16, 0x02, 0x15, 0xFC, 0x15, 0xD8, +0x00, 0x00, 0x15, 0xF0, 0x16, 0x02, 0x15, 0xFC, 0x15, 0xD2, 0x00, 0x00, 0x15, 0xF0, 0x16, 0xDA, +0x15, 0xCC, 0x1B, 0x30, 0x15, 0xC6, 0x00, 0x00, 0x16, 0xC2, 0x15, 0xCC, 0x1B, 0x30, 0x15, 0xC6, +0x00, 0x00, 0x16, 0xC2, 0x15, 0xCC, 0x1B, 0x30, 0x15, 0xC6, 0x00, 0x00, 0x16, 0xC2, 0x15, 0xCC, +0x1B, 0x30, 0x15, 0xC6, 0x00, 0x00, 0x16, 0xC2, 0x15, 0xCC, 0x1B, 0x30, 0x15, 0xC6, 0x00, 0x00, +0x16, 0xB0, 0x15, 0xCC, 0x1B, 0x30, 0x15, 0xC6, 0x00, 0x00, 0x16, 0xAA, 0x15, 0xCC, 0x1B, 0x30, +0x15, 0xC6, 0x00, 0x00, 0x16, 0xDA, 0x15, 0xCC, 0x16, 0xB6, 0x15, 0xC6, 0x00, 0x00, 0x16, 0x9E, +0x15, 0xCC, 0x1B, 0x30, 0x15, 0xC6, 0x00, 0x00, 0x16, 0xC2, 0x15, 0xCC, 0x1B, 0x30, 0x15, 0xC6, +0x00, 0x00, 0x16, 0xDA, 0x00, 0x00, 0x1B, 0x30, 0x00, 0x00, 0x00, 0x00, 0x16, 0xC2, 0x00, 0x00, +0x1B, 0x30, 0x00, 0x00, 0x00, 0x00, 0x16, 0xDA, 0x00, 0x00, 0x16, 0xB6, 0x00, 0x00, 0x00, 0x00, +0x16, 0x9E, 0x00, 0x00, 0x1B, 0x30, 0x00, 0x00, 0x00, 0x00, 0x16, 0xC2, 0x00, 0x00, 0x1B, 0x30, +0x00, 0x00, 0x00, 0x00, 0x16, 0xC2, 0x00, 0x00, 0x1B, 0x30, 0x00, 0x00, 0x00, 0x00, 0x16, 0xC2, +0x15, 0xCC, 0x1B, 0x30, 0x15, 0xC6, 0x00, 0x00, 0x16, 0xC2, 0x15, 0xCC, 0x1B, 0x30, 0x15, 0xC6, +0x00, 0x00, 0x16, 0xC2, 0x15, 0xCC, 0x1B, 0x30, 0x15, 0xC6, 0x00, 0x00, 0x15, 0xC0, 0x15, 0xCC, +0x1B, 0x30, 0x15, 0xC6, 0x00, 0x00, 0x16, 0xDA, 0x15, 0xCC, 0x1B, 0x30, 0x15, 0xC6, 0x00, 0x00, +0x15, 0xBA, 0x15, 0xCC, 0x1B, 0x30, 0x15, 0xC6, 0x00, 0x00, 0x16, 0xC2, 0x15, 0xCC, 0x1B, 0x30, +0x15, 0xC6, 0x00, 0x00, 0x16, 0x92, 0x15, 0xCC, 0x1B, 0x30, 0x15, 0xC6, 0x00, 0x00, 0x15, 0xB4, +0x00, 0x00, 0x15, 0xAE, 0x00, 0x00, 0x00, 0x00, 0x15, 0xA8, 0x00, 0x00, 0x15, 0xA2, 0x00, 0x00, +0x00, 0x00, 0x15, 0x9C, 0x00, 0x00, 0x15, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x15, 0x9C, 0x00, 0x00, +0x15, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x15, 0x96, 0x00, 0x00, 0x15, 0xA2, 0x00, 0x00, 0x00, 0x00, +0x15, 0x90, 0x00, 0x00, 0x15, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x15, 0xB4, 0x00, 0x00, 0x15, 0xAE, +0x00, 0x00, 0x00, 0x00, 0x15, 0x8A, 0x00, 0x00, 0x15, 0x84, 0x00, 0x00, 0x00, 0x00, 0x15, 0x7E, +0x00, 0x00, 0x15, 0x84, 0x00, 0x00, 0x00, 0x00, 0x15, 0x7E, 0x00, 0x00, 0x15, 0x84, 0x00, 0x00, +0x00, 0x00, 0x15, 0x78, 0x00, 0x00, 0x15, 0x84, 0x00, 0x00, 0x00, 0x00, 0x15, 0x78, 0x00, 0x00, +0x15, 0x84, 0x00, 0x00, 0x00, 0x00, 0x15, 0x8A, 0x00, 0x00, 0x15, 0x72, 0x00, 0x00, 0x00, 0x00, +0x15, 0x6C, 0x00, 0x00, 0x15, 0x84, 0x00, 0x00, 0x00, 0x00, 0x15, 0x7E, 0x00, 0x00, 0x15, 0x84, +0x00, 0x00, 0x00, 0x00, 0x15, 0x7E, 0x00, 0x00, 0x15, 0x84, 0x00, 0x00, 0x00, 0x00, 0x15, 0x7E, +0x00, 0x00, 0x15, 0x84, 0x00, 0x00, 0x00, 0x00, 0x15, 0x66, 0x00, 0x00, 0x15, 0x60, 0x00, 0x00, +0x15, 0x5A, 0x15, 0x54, 0x00, 0x00, 0x15, 0x60, 0x00, 0x00, 0x15, 0x5A, 0x15, 0x54, 0x00, 0x00, +0x15, 0x60, 0x00, 0x00, 0x15, 0x5A, 0x15, 0x4E, 0x00, 0x00, 0x15, 0x60, 0x00, 0x00, 0x15, 0x5A, +0x15, 0x66, 0x00, 0x00, 0x15, 0x48, 0x00, 0x00, 0x15, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x17, 0xB2, 0x00, 0x00, 0x15, 0x42, 0x00, 0x00, 0x15, 0x3C, 0x15, 0x36, 0x00, 0x00, 0x18, 0x30, +0x00, 0x00, 0x15, 0x3C, 0x15, 0x36, 0x00, 0x00, 0x18, 0x30, 0x00, 0x00, 0x15, 0x3C, 0x15, 0x36, +0x00, 0x00, 0x15, 0x30, 0x00, 0x00, 0x15, 0x3C, 0x15, 0x36, 0x00, 0x00, 0x18, 0x30, 0x00, 0x00, +0x15, 0x2A, 0x15, 0x36, 0x00, 0x00, 0x15, 0x30, 0x00, 0x00, 0x15, 0x3C, 0x15, 0x36, 0x00, 0x00, +0x15, 0x30, 0x00, 0x00, 0x15, 0x3C, 0x15, 0x36, 0x00, 0x00, 0x15, 0x30, 0x00, 0x00, 0x15, 0x3C, +0x15, 0x36, 0x00, 0x00, 0x18, 0x30, 0x00, 0x00, 0x15, 0x3C, 0x15, 0x36, 0x00, 0x00, 0x18, 0x30, +0x00, 0x00, 0x15, 0x3C, 0x15, 0x36, 0x00, 0x00, 0x15, 0x30, 0x00, 0x00, 0x15, 0x3C, 0x15, 0x36, +0x00, 0x00, 0x18, 0x30, 0x00, 0x00, 0x15, 0x2A, 0x15, 0x36, 0x00, 0x00, 0x15, 0x30, 0x00, 0x00, +0x15, 0x3C, 0x15, 0x36, 0x00, 0x00, 0x15, 0x30, 0x00, 0x00, 0x15, 0x3C, 0x15, 0x36, 0x00, 0x00, +0x15, 0x30, 0x00, 0x00, 0x15, 0x3C, 0x15, 0x36, 0x00, 0x00, 0x15, 0x24, 0x00, 0x00, 0x15, 0x3C, +0x15, 0x36, 0x00, 0x00, 0x15, 0x1E, 0x00, 0x00, 0x15, 0x3C, 0x15, 0x36, 0x00, 0x00, 0x15, 0x42, +0x00, 0x00, 0x15, 0x2A, 0x15, 0x36, 0x00, 0x00, 0x15, 0x18, 0x00, 0x00, 0x15, 0x3C, 0x15, 0x36, +0x00, 0x00, 0x18, 0x30, 0x00, 0x00, 0x15, 0x3C, 0x15, 0x36, 0x00, 0x00, 0x18, 0x30, 0x00, 0x00, +0x15, 0x3C, 0x15, 0x36, 0x00, 0x00, 0x18, 0x30, 0x00, 0x00, 0x15, 0x3C, 0x15, 0x36, 0x00, 0x00, +0x15, 0x42, 0x00, 0x00, 0x15, 0x3C, 0x15, 0x36, 0x00, 0x00, 0x15, 0x12, 0x00, 0x00, 0x15, 0x3C, +0x15, 0x36, 0x00, 0x00, 0x15, 0x0C, 0x00, 0x00, 0x15, 0x3C, 0x15, 0x36, 0x00, 0x00, 0x18, 0x30, +0x00, 0x00, 0x15, 0x3C, 0x15, 0x36, 0x00, 0x00, 0x15, 0x06, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, +0x00, 0x00, 0x14, 0xFA, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0xFA, 0x00, 0x00, +0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0xFA, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, +0x14, 0xF4, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0xEE, 0x00, 0x00, 0x15, 0x00, +0x00, 0x00, 0x00, 0x00, 0x14, 0xFA, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x12, +0x00, 0x00, 0x1B, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x98, 0x00, 0x00, 0x1C, 0x92, 0x00, 0x00, +0x00, 0x00, 0x1C, 0x98, 0x00, 0x00, 0x1C, 0x92, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x14, 0x00, 0x00, +0x1C, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x14, 0xE8, 0x00, 0x00, 0x14, 0xE2, 0x00, 0x00, 0x00, 0x00, +0x14, 0xDC, 0x00, 0x00, 0x14, 0xD6, 0x00, 0x00, 0x00, 0x00, 0x14, 0xDC, 0x00, 0x00, 0x14, 0xD6, +0x00, 0x00, 0x00, 0x00, 0x14, 0xD0, 0x00, 0x00, 0x14, 0xCA, 0x00, 0x00, 0x00, 0x00, 0x16, 0xDA, +0x16, 0xD4, 0x1B, 0x30, 0x16, 0xCE, 0x16, 0xC8, 0x00, 0x01, 0x01, 0xF3, 0x00, 0x00, 0x00, 0x01, +0x01, 0xF3, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x80, 0x00, 0x00, 0x00, 0x01, 0x01, 0x80, 0x02, 0xBC, +0x00, 0x01, 0x01, 0xAF, 0x00, 0x00, 0x00, 0x01, 0x01, 0xAF, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x2A, +0x02, 0xE8, 0x00, 0x01, 0x01, 0x2A, 0x02, 0xC6, 0x00, 0x01, 0x01, 0x2A, 0x02, 0xE3, 0x00, 0x01, +0x01, 0x2A, 0xFF, 0x1A, 0x00, 0x01, 0x01, 0x2A, 0x02, 0x13, 0x00, 0x01, 0x01, 0x1C, 0x03, 0xF6, +0x00, 0x01, 0x01, 0x1C, 0x03, 0x26, 0x00, 0x01, 0x01, 0x08, 0x02, 0xE3, 0x00, 0x01, 0x01, 0x1C, +0x02, 0xE8, 0x00, 0x01, 0x00, 0xDE, 0x02, 0xE3, 0x00, 0x01, 0x01, 0x1C, 0xFF, 0x20, 0x00, 0x01, +0x01, 0x1C, 0x03, 0x27, 0x00, 0x01, 0x01, 0xE7, 0x00, 0x00, 0x00, 0x01, 0x01, 0x1C, 0x00, 0x00, +0x00, 0x01, 0x01, 0x1C, 0x02, 0x13, 0x00, 0x01, 0x01, 0x13, 0xFF, 0x20, 0x00, 0x01, 0x01, 0x13, +0x02, 0xE8, 0x00, 0x01, 0x01, 0x13, 0x02, 0xE3, 0x00, 0x01, 0x01, 0x13, 0x01, 0x0A, 0x00, 0x01, +0x01, 0x13, 0x00, 0x00, 0x00, 0x01, 0x01, 0x13, 0x02, 0x13, 0x00, 0x01, 0x01, 0x23, 0x02, 0xE3, +0x00, 0x01, 0x01, 0xFC, 0xFF, 0x20, 0x00, 0x01, 0x01, 0x37, 0x02, 0xE8, 0x00, 0x01, 0x01, 0x37, +0x02, 0xE3, 0x00, 0x01, 0x01, 0xFC, 0x00, 0x00, 0x00, 0x01, 0x01, 0x37, 0x02, 0x13, 0x00, 0x01, +0x01, 0x8D, 0x02, 0xE3, 0x00, 0x01, 0x01, 0xA1, 0x02, 0xE8, 0x00, 0x01, 0x01, 0xA1, 0x02, 0xE3, +0x00, 0x01, 0x01, 0xA1, 0x00, 0x00, 0x00, 0x01, 0x01, 0xA1, 0x02, 0x13, 0x00, 0x01, 0x01, 0x2F, +0x00, 0x00, 0x00, 0x01, 0x01, 0x2F, 0x02, 0x13, 0x00, 0x01, 0x01, 0x41, 0x03, 0x26, 0x00, 0x01, +0x01, 0x41, 0x03, 0x9D, 0x00, 0x01, 0x02, 0x23, 0x00, 0x00, 0x00, 0x01, 0x02, 0x6E, 0x02, 0x13, +0x00, 0x01, 0x00, 0xC7, 0xFF, 0x3A, 0x00, 0x01, 0x00, 0xC7, 0xFF, 0x20, 0x00, 0x01, 0x00, 0xC5, +0x03, 0x3A, 0x00, 0x01, 0x00, 0xC7, 0xFE, 0xDB, 0x00, 0x01, 0x00, 0xC7, 0xFF, 0x0A, 0x00, 0x01, +0x00, 0xC7, 0x01, 0x0A, 0x00, 0x01, 0x00, 0xC7, 0x00, 0x00, 0x00, 0x01, 0x01, 0x22, 0x03, 0x3D, +0x00, 0x01, 0x00, 0xC5, 0x02, 0x64, 0x00, 0x01, 0x01, 0x4E, 0x00, 0x00, 0x00, 0x01, 0x01, 0x4E, +0x02, 0x13, 0x00, 0x01, 0x00, 0xFC, 0xFF, 0x20, 0x00, 0x01, 0x00, 0xF8, 0x02, 0xE8, 0x00, 0x01, +0x00, 0xFC, 0xFE, 0xDB, 0x00, 0x01, 0x00, 0xFC, 0xFF, 0x0A, 0x00, 0x01, 0x00, 0xF8, 0x03, 0x27, +0x00, 0x01, 0x00, 0xF8, 0x02, 0xC7, 0x00, 0x01, 0x00, 0xF8, 0x02, 0xE3, 0x00, 0x01, 0x00, 0xFC, +0x00, 0x00, 0x00, 0x01, 0x00, 0xF8, 0x02, 0x13, 0x00, 0x01, 0x00, 0x93, 0xFF, 0x3A, 0x00, 0x01, +0x00, 0x93, 0xFF, 0x20, 0x00, 0x01, 0x00, 0xC8, 0x02, 0xE3, 0x00, 0x01, 0x00, 0x93, 0xFE, 0xDB, +0x00, 0x01, 0x01, 0x06, 0x02, 0xE3, 0x00, 0x01, 0x00, 0x93, 0x00, 0x00, 0x00, 0x01, 0x01, 0x06, +0x02, 0x13, 0x00, 0x01, 0x01, 0x49, 0x02, 0x13, 0x00, 0x01, 0x02, 0x08, 0x00, 0x00, 0x00, 0x01, +0x02, 0x0A, 0x02, 0x10, 0x00, 0x01, 0x01, 0x41, 0x03, 0xB3, 0x00, 0x01, 0x01, 0x40, 0x03, 0x94, +0x00, 0x01, 0x01, 0x41, 0x03, 0x05, 0x00, 0x01, 0x01, 0x41, 0x02, 0xD9, 0x00, 0x01, 0x01, 0x2D, +0x02, 0xE3, 0x00, 0x01, 0x01, 0x41, 0x03, 0xB8, 0x00, 0x01, 0x01, 0x41, 0x02, 0xE8, 0x00, 0x01, +0x01, 0x03, 0x02, 0xE3, 0x00, 0x01, 0x01, 0x41, 0xFF, 0x20, 0x00, 0x01, 0x01, 0x41, 0x03, 0x27, +0x00, 0x01, 0x01, 0x41, 0x02, 0xE3, 0x00, 0x01, 0x01, 0x41, 0x01, 0x0A, 0x00, 0x01, 0x01, 0xEB, +0x00, 0x00, 0x00, 0x01, 0x02, 0x6D, 0x02, 0x13, 0x00, 0x01, 0x01, 0x41, 0x02, 0x13, 0x00, 0x01, +0x01, 0x3E, 0xFF, 0x3A, 0x00, 0x01, 0x01, 0x5C, 0x02, 0xE8, 0x00, 0x01, 0x01, 0x3E, 0xFE, 0xDB, +0x00, 0x01, 0x01, 0x7F, 0x02, 0x13, 0x00, 0x01, 0x01, 0x5C, 0x02, 0xE3, 0x00, 0x01, 0x01, 0x5C, +0x02, 0x13, 0x00, 0x01, 0x01, 0xE2, 0xFF, 0x20, 0x00, 0x01, 0x01, 0xE2, 0x00, 0x00, 0x00, 0x01, +0x01, 0xE2, 0x02, 0x13, 0x00, 0x01, 0x00, 0xBC, 0x01, 0x72, 0x00, 0x01, 0x00, 0xBC, 0x00, 0x00, +0x00, 0x01, 0x01, 0x38, 0x02, 0xE4, 0x00, 0x01, 0x00, 0xBC, 0x02, 0xE4, 0x00, 0x01, 0x00, 0x98, +0xFF, 0x3A, 0x00, 0x01, 0x00, 0x98, 0xFF, 0x20, 0x00, 0x01, 0x00, 0x98, 0xFE, 0xDB, 0x00, 0x01, +0x00, 0x9D, 0x03, 0xA2, 0x00, 0x01, 0x00, 0x98, 0x01, 0x72, 0x00, 0x01, 0x00, 0x98, 0x00, 0x00, +0x00, 0x01, 0x01, 0x14, 0x02, 0xE4, 0x00, 0x01, 0x00, 0x98, 0x02, 0xE4, 0x00, 0x01, 0x01, 0x3A, +0x00, 0x00, 0x00, 0x01, 0x01, 0x3A, 0x02, 0x13, 0x00, 0x01, 0x01, 0x39, 0xFE, 0xDB, 0x00, 0x01, +0x01, 0x39, 0x00, 0x00, 0x00, 0x01, 0x01, 0x39, 0x02, 0xE4, 0x00, 0x01, 0x00, 0xA4, 0x02, 0xE3, +0x00, 0x01, 0x00, 0x9B, 0xFF, 0x1A, 0x00, 0x01, 0x00, 0xA4, 0x02, 0x13, 0x00, 0x01, 0x00, 0x7C, +0x02, 0xE3, 0x00, 0x01, 0x00, 0xA0, 0xFF, 0x20, 0x00, 0x01, 0x00, 0x91, 0x03, 0x27, 0x00, 0x01, +0x00, 0x90, 0x02, 0xE8, 0x00, 0x01, 0x00, 0x52, 0x02, 0xE3, 0x00, 0x01, 0x00, 0x90, 0x02, 0xE3, +0x00, 0x01, 0x00, 0xD6, 0x00, 0x00, 0x00, 0x01, 0x00, 0x90, 0x00, 0x00, 0x00, 0x01, 0x00, 0x90, +0x02, 0x13, 0x00, 0x01, 0x00, 0xE5, 0x00, 0x00, 0x00, 0x01, 0x00, 0xA0, 0x00, 0x00, 0x00, 0x01, +0x00, 0xA0, 0x02, 0xE3, 0x00, 0x01, 0x01, 0x3E, 0xFF, 0x20, 0x00, 0x01, 0x01, 0x3E, 0x03, 0xA2, +0x00, 0x01, 0x01, 0x3E, 0xFF, 0x15, 0x00, 0x01, 0x00, 0xB0, 0x02, 0x7D, 0x00, 0x01, 0x01, 0x3E, +0x00, 0x00, 0x00, 0x01, 0x01, 0x3E, 0x02, 0xE4, 0x00, 0x01, 0x01, 0x4F, 0x02, 0xE8, 0x00, 0x01, +0x01, 0x4F, 0x02, 0xC6, 0x00, 0x01, 0x01, 0x4F, 0x02, 0xE3, 0x00, 0x01, 0x01, 0x4F, 0xFF, 0x1A, +0x00, 0x01, 0x01, 0x4F, 0x02, 0x13, 0x00, 0x01, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x01, 0x00, 0xC5, +0x02, 0xE4, 0x00, 0x01, 0x01, 0x25, 0x02, 0x13, 0x00, 0x01, 0x01, 0x30, 0x02, 0xD9, 0x00, 0x01, +0x01, 0x1C, 0x02, 0xE3, 0x00, 0x01, 0x00, 0xF2, 0x02, 0xE3, 0x00, 0x01, 0x01, 0x44, 0xFF, 0x20, +0x00, 0x01, 0x01, 0x30, 0x03, 0x27, 0x00, 0x01, 0x01, 0x44, 0xFF, 0x0A, 0x00, 0x01, 0x02, 0x03, +0x00, 0x06, 0x00, 0x01, 0x01, 0x44, 0x00, 0x00, 0x00, 0x01, 0x01, 0x47, 0xFF, 0x3A, 0x00, 0x01, +0x01, 0x47, 0xFF, 0x20, 0x00, 0x01, 0x01, 0xE0, 0x02, 0x7A, 0x00, 0x01, 0x01, 0x47, 0x00, 0x00, +0x00, 0x01, 0x02, 0x72, 0x02, 0xE4, 0x00, 0x01, 0x01, 0x47, 0x02, 0xE4, 0x00, 0x01, 0x01, 0x30, +0x02, 0xE8, 0x00, 0x01, 0x01, 0x31, 0xFF, 0x0A, 0x00, 0x01, 0x01, 0x30, 0x02, 0xE3, 0x00, 0x01, +0x01, 0x30, 0x02, 0x13, 0x00, 0x01, 0x01, 0x49, 0x00, 0x00, 0x00, 0x01, 0x01, 0x49, 0x02, 0xE4, +0x00, 0x01, 0x01, 0xC9, 0x02, 0xE3, 0x00, 0x01, 0x01, 0xC3, 0x00, 0x00, 0x00, 0x01, 0x01, 0xC9, +0x02, 0x13, 0x00, 0x01, 0x01, 0x4A, 0x03, 0xF6, 0x00, 0x01, 0x01, 0x4A, 0x03, 0x26, 0x00, 0x01, +0x01, 0x36, 0x02, 0xE3, 0x00, 0x01, 0x01, 0x4A, 0x02, 0xE8, 0x00, 0x01, 0x01, 0x0C, 0x02, 0xE3, +0x00, 0x01, 0x01, 0x4B, 0x03, 0x27, 0x00, 0x01, 0x01, 0x4A, 0xFF, 0x20, 0x00, 0x01, 0x01, 0x4A, +0x03, 0x27, 0x00, 0x01, 0x01, 0x4A, 0x02, 0xE3, 0x00, 0x01, 0x02, 0x2D, 0x00, 0x00, 0x00, 0x01, +0x01, 0x4A, 0x00, 0x00, 0x00, 0x01, 0x01, 0x4A, 0x02, 0x13, 0x00, 0x01, 0x01, 0x21, 0x00, 0x00, +0x00, 0x01, 0x01, 0x98, 0x02, 0xBC, 0x00, 0x01, 0x00, 0xAF, 0x03, 0x7A, 0x00, 0x01, 0x00, 0xAE, +0xFF, 0x20, 0x00, 0x01, 0x00, 0xB2, 0x03, 0xE2, 0x00, 0x01, 0x00, 0x7C, 0x03, 0x7A, 0x00, 0x01, +0x00, 0xAE, 0x03, 0x7A, 0x00, 0x01, 0x00, 0xB2, 0x03, 0x7A, 0x00, 0x01, 0x00, 0xF2, 0x00, 0x00, +0x00, 0x01, 0x00, 0xAE, 0x00, 0x00, 0x00, 0x01, 0x01, 0x56, 0xFF, 0x20, 0x00, 0x01, 0x01, 0x56, +0x03, 0x7A, 0x00, 0x01, 0x01, 0x56, 0x01, 0x5E, 0x00, 0x01, 0x01, 0x56, 0x02, 0xBC, 0x00, 0x01, +0x01, 0x5A, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x58, 0xFF, 0x20, 0x00, 0x01, 0x01, 0x58, 0x00, 0x00, +0x00, 0x01, 0x01, 0x58, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x61, 0x00, 0x00, 0x00, 0x01, 0x01, 0xF2, +0x03, 0x7A, 0x00, 0x01, 0x01, 0xF0, 0x03, 0x7A, 0x00, 0x01, 0x01, 0xF5, 0x03, 0x7A, 0x00, 0x01, +0x01, 0xF0, 0x00, 0x00, 0x00, 0x01, 0x01, 0xF0, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x64, 0x00, 0x00, +0x00, 0x01, 0x01, 0x64, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x83, 0x04, 0x38, 0x00, 0x01, 0x01, 0x7F, +0x03, 0x7D, 0x00, 0x01, 0x01, 0x7F, 0x04, 0x38, 0x00, 0x01, 0x01, 0xB3, 0x03, 0x7A, 0x00, 0x01, +0x01, 0x80, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x7F, 0xFF, 0x20, 0x00, 0x01, 0x01, 0x4E, 0x03, 0x7A, +0x00, 0x01, 0x01, 0x7F, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x83, 0x03, 0x7A, 0x00, 0x01, 0x02, 0x36, +0x00, 0x00, 0x00, 0x01, 0x01, 0x7F, 0x00, 0x00, 0x00, 0x01, 0x02, 0xE9, 0x02, 0xBC, 0x00, 0x01, +0x01, 0x7F, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x48, 0xFF, 0x3A, 0x00, 0x01, 0x01, 0x48, 0xFF, 0x20, +0x00, 0x01, 0x01, 0x48, 0xFE, 0xDA, 0x00, 0x01, 0x01, 0x48, 0xFF, 0x0A, 0x00, 0x01, 0x01, 0x48, +0x03, 0x7A, 0x00, 0x01, 0x01, 0x48, 0x01, 0x5E, 0x00, 0x01, 0x01, 0x48, 0x00, 0x00, 0x00, 0x01, +0x01, 0x48, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x81, 0x00, 0x00, 0x00, 0x01, 0x01, 0x81, 0x02, 0xBC, +0x00, 0x01, 0x01, 0x51, 0xFF, 0x20, 0x00, 0x01, 0x01, 0x51, 0xFE, 0xDA, 0x00, 0x01, 0x01, 0x51, +0xFF, 0x0A, 0x00, 0x01, 0x01, 0x4B, 0x04, 0x38, 0x00, 0x01, 0x01, 0x4B, 0x03, 0x7A, 0x00, 0x01, +0x01, 0x50, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x51, 0x00, 0x00, 0x00, 0x01, 0x01, 0x5F, 0xFF, 0x3A, +0x00, 0x01, 0x01, 0x5F, 0xFF, 0x20, 0x00, 0x01, 0x01, 0x1C, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x5F, +0xFE, 0xDA, 0x00, 0x01, 0x01, 0x4D, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x51, 0x03, 0x7A, 0x00, 0x01, +0x01, 0x4D, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x4B, 0x00, 0x00, 0x00, 0x01, 0x01, 0x4B, 0x02, 0xBC, +0x00, 0x01, 0x02, 0x1C, 0x00, 0x00, 0x00, 0x01, 0x02, 0x1C, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x93, +0x00, 0x00, 0x00, 0x01, 0x03, 0x17, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x93, 0x02, 0xBC, 0x00, 0x01, +0x01, 0x97, 0x04, 0x38, 0x00, 0x01, 0x01, 0x9A, 0x04, 0x38, 0x00, 0x01, 0x01, 0xCA, 0x03, 0x7A, +0x00, 0x01, 0x01, 0x97, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x96, 0x04, 0x38, 0x00, 0x01, 0x01, 0x65, +0x03, 0x7A, 0x00, 0x01, 0x01, 0x96, 0xFF, 0x20, 0x00, 0x01, 0x01, 0x96, 0x03, 0x6F, 0x00, 0x01, +0x01, 0x9A, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x96, 0x01, 0x5E, 0x00, 0x01, 0x02, 0x9F, 0x00, 0x06, +0x00, 0x01, 0x01, 0x96, 0x00, 0x00, 0x00, 0x01, 0x03, 0x18, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x94, +0xFF, 0x3A, 0x00, 0x01, 0x01, 0x94, 0xFF, 0x20, 0x00, 0x01, 0x01, 0x94, 0xFE, 0xDA, 0x00, 0x01, +0x01, 0x94, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x98, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x94, 0x00, 0x00, +0x00, 0x01, 0x01, 0x94, 0x02, 0xBC, 0x00, 0x01, 0x01, 0xB7, 0xFF, 0x20, 0x00, 0x01, 0x01, 0xB7, +0x00, 0x00, 0x00, 0x01, 0x01, 0xB7, 0x02, 0xBC, 0x00, 0x01, 0x00, 0xBF, 0x01, 0x5E, 0x00, 0x01, +0x01, 0x41, 0x00, 0x00, 0x00, 0x01, 0x01, 0x61, 0x02, 0xBC, 0x00, 0x01, 0x00, 0xBF, 0x02, 0xBC, +0x00, 0x01, 0x01, 0x31, 0xFF, 0x3A, 0x00, 0x01, 0x01, 0x31, 0xFF, 0x20, 0x00, 0x01, 0x01, 0x31, +0xFE, 0xDA, 0x00, 0x01, 0x00, 0xB3, 0x03, 0x7A, 0x00, 0x01, 0x00, 0xAF, 0x01, 0x5E, 0x00, 0x01, +0x01, 0x31, 0x00, 0x00, 0x00, 0x01, 0x01, 0x51, 0x02, 0xBC, 0x00, 0x01, 0x00, 0xAE, 0x02, 0xBC, +0x00, 0x01, 0x01, 0x71, 0xFE, 0xDA, 0x00, 0x01, 0x01, 0x71, 0x00, 0x00, 0x00, 0x01, 0x01, 0x71, +0x02, 0xBC, 0x00, 0x01, 0x01, 0x96, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x4C, 0x00, 0x00, 0x00, 0x01, +0x01, 0x96, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x17, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x15, 0xFF, 0x20, +0x00, 0x01, 0x01, 0x1A, 0x03, 0xE2, 0x00, 0x01, 0x00, 0xE4, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x15, +0x03, 0x7A, 0x00, 0x01, 0x01, 0x1A, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x15, 0x00, 0x00, 0x00, 0x01, +0x01, 0x15, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x86, 0xFF, 0x20, 0x00, 0x01, 0x01, 0x86, 0x03, 0x7A, +0x00, 0x01, 0x01, 0x86, 0xFF, 0x15, 0x00, 0x01, 0x01, 0x9C, 0x01, 0x5E, 0x00, 0x01, 0x01, 0x9C, +0x00, 0x00, 0x00, 0x01, 0x01, 0x86, 0x01, 0x5E, 0x00, 0x01, 0x01, 0x86, 0x00, 0x00, 0x00, 0x01, +0x01, 0x86, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x87, 0xFE, 0xDA, 0x00, 0x01, 0x01, 0x9C, 0x03, 0x7A, +0x00, 0x01, 0x01, 0x87, 0x00, 0x00, 0x00, 0x01, 0x01, 0x9C, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x35, +0x00, 0x00, 0x00, 0x01, 0x01, 0x35, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x58, 0x04, 0x38, 0x00, 0x01, +0x01, 0x5B, 0x04, 0x38, 0x00, 0x01, 0x01, 0x58, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x25, 0x03, 0x7A, +0x00, 0x01, 0x01, 0x43, 0xFF, 0x20, 0x00, 0x01, 0x01, 0x57, 0x03, 0x6F, 0x00, 0x01, 0x01, 0x43, +0xFF, 0x0A, 0x00, 0x01, 0x01, 0x57, 0x03, 0x7A, 0x00, 0x01, 0x02, 0x21, 0x00, 0x00, 0x00, 0x01, +0x01, 0x43, 0x00, 0x00, 0x00, 0x01, 0x01, 0x57, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x82, 0xFF, 0x3A, +0x00, 0x01, 0x01, 0x82, 0xFF, 0x20, 0x00, 0x01, 0x01, 0x82, 0x03, 0x7A, 0x00, 0x01, 0x00, 0xC8, +0x01, 0x5E, 0x00, 0x01, 0x01, 0x82, 0x00, 0x00, 0x00, 0x01, 0x01, 0x82, 0x02, 0xBC, 0x00, 0x01, +0x01, 0x8D, 0xFF, 0x0A, 0x00, 0x01, 0x01, 0x9B, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x9F, 0x03, 0x7A, +0x00, 0x01, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x01, 0x01, 0x9B, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x5F, +0x00, 0x00, 0x00, 0x01, 0x01, 0x5F, 0x02, 0xBC, 0x00, 0x01, 0x02, 0xD4, 0x03, 0x7A, 0x00, 0x01, +0x02, 0x1A, 0x00, 0x00, 0x00, 0x01, 0x02, 0xD0, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x5F, 0x04, 0x3B, +0x00, 0x01, 0x01, 0x5B, 0x03, 0x7D, 0x00, 0x01, 0x01, 0x5D, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x2A, +0x03, 0x7A, 0x00, 0x01, 0x01, 0x5B, 0xFF, 0x20, 0x00, 0x01, 0x01, 0x5B, 0x03, 0x6F, 0x00, 0x01, +0x01, 0x5B, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x5F, 0x03, 0x7A, 0x00, 0x01, 0x02, 0x8A, 0x00, 0x00, +0x00, 0x01, 0x01, 0x5B, 0x00, 0x00, 0x00, 0x01, 0x01, 0x5B, 0x02, 0xBC, 0x00, 0x02, 0x00, 0x13, +0x00, 0x01, 0x00, 0x25, 0x00, 0x00, 0x00, 0x28, 0x00, 0x2C, 0x00, 0x25, 0x00, 0x2F, 0x00, 0x74, +0x00, 0x2A, 0x00, 0x76, 0x00, 0x7A, 0x00, 0x70, 0x00, 0x7C, 0x00, 0x7E, 0x00, 0x75, 0x00, 0x80, +0x01, 0x05, 0x00, 0x78, 0x01, 0x07, 0x01, 0x2B, 0x00, 0xFE, 0x01, 0x2D, 0x01, 0x48, 0x01, 0x23, +0x01, 0x4A, 0x01, 0x68, 0x01, 0x3F, 0x01, 0x6A, 0x01, 0x80, 0x01, 0x5E, 0x01, 0x82, 0x01, 0x84, +0x01, 0x75, 0x01, 0x86, 0x02, 0x18, 0x01, 0x78, 0x02, 0xB5, 0x02, 0xB5, 0x02, 0x0B, 0x02, 0xB7, +0x02, 0xB7, 0x02, 0x0C, 0x02, 0xB9, 0x02, 0xB9, 0x02, 0x0D, 0x02, 0xBE, 0x02, 0xBE, 0x02, 0x0E, +0x02, 0xC4, 0x02, 0xC6, 0x02, 0x0F, 0x02, 0xCA, 0x02, 0xCA, 0x02, 0x12, 0x02, 0xDE, 0x02, 0xDE, +0x02, 0x13, 0x00, 0x4F, 0x00, 0x00, 0x01, 0xCE, 0x00, 0x00, 0x01, 0xCE, 0x00, 0x00, 0x01, 0xCE, +0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xC2, 0x00, 0x00, 0x01, 0xBC, 0x00, 0x00, 0x01, 0xB6, +0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xB0, 0x00, 0x00, 0x01, 0xCE, +0x00, 0x00, 0x01, 0xCE, 0x00, 0x00, 0x01, 0xCE, 0x00, 0x00, 0x01, 0xAA, 0x00, 0x00, 0x01, 0xCE, +0x00, 0x00, 0x01, 0xA4, 0x00, 0x00, 0x01, 0xCE, 0x00, 0x00, 0x01, 0xCE, 0x00, 0x00, 0x01, 0xCE, +0x00, 0x00, 0x01, 0xCE, 0x00, 0x00, 0x01, 0xCE, 0x00, 0x00, 0x01, 0xCE, 0x00, 0x00, 0x01, 0xCE, +0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xCE, 0x00, 0x00, 0x01, 0xCE, 0x00, 0x00, 0x01, 0xCE, +0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xCE, 0x00, 0x00, 0x01, 0xCE, 0x00, 0x00, 0x01, 0xCE, +0x00, 0x00, 0x01, 0x9E, 0x00, 0x00, 0x01, 0xCE, 0x00, 0x00, 0x01, 0xCE, 0x00, 0x01, 0x01, 0x98, +0x00, 0x02, 0x01, 0x92, 0x00, 0x02, 0x01, 0x8C, 0x00, 0x02, 0x01, 0x92, 0x00, 0x02, 0x01, 0x8C, +0x00, 0x03, 0x01, 0x86, 0x00, 0x02, 0x01, 0x92, 0x00, 0x02, 0x01, 0x92, 0x00, 0x04, 0x01, 0x80, +0x00, 0x00, 0x01, 0x7A, 0x00, 0x00, 0x01, 0x7A, 0x00, 0x00, 0x01, 0x7A, 0x00, 0x00, 0x01, 0x74, +0x00, 0x00, 0x01, 0x7A, 0x00, 0x00, 0x01, 0x6E, 0x00, 0x00, 0x01, 0x68, 0x00, 0x00, 0x01, 0x62, +0x00, 0x00, 0x01, 0x5C, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x56, 0x00, 0x00, 0x01, 0x50, +0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x5C, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, +0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, +0x00, 0x00, 0x01, 0x7A, 0x00, 0x00, 0x01, 0x7A, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, +0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x7A, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, +0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x4A, 0x00, 0x00, 0x01, 0x74, +0x00, 0x01, 0x01, 0x44, 0x00, 0x02, 0x01, 0x92, 0x00, 0x02, 0x01, 0x8C, 0x00, 0x03, 0x01, 0x3E, +0x00, 0x01, 0x01, 0x4D, 0x00, 0x00, 0x00, 0x01, 0x00, 0x8F, 0x02, 0x0D, 0x00, 0x01, 0x01, 0x2B, +0x02, 0xBC, 0x00, 0x01, 0x00, 0xBB, 0x02, 0xBC, 0x00, 0x01, 0x00, 0xE0, 0x02, 0xBC, 0x00, 0x01, +0x00, 0xC2, 0x02, 0xBC, 0x00, 0x01, 0x00, 0xEA, 0x02, 0xBC, 0x00, 0x01, 0x00, 0xF4, 0x02, 0xBC, +0x00, 0x01, 0x00, 0xF7, 0x02, 0xBC, 0x00, 0x01, 0x00, 0xFA, 0x02, 0xBC, 0x00, 0x01, 0x00, 0xFB, +0x02, 0xBC, 0x00, 0x01, 0x00, 0xFA, 0x01, 0x25, 0x00, 0x01, 0x01, 0x56, 0x00, 0x00, 0x00, 0x01, +0x00, 0xFB, 0x00, 0x00, 0x00, 0x01, 0x00, 0xFA, 0x00, 0x00, 0x00, 0x01, 0x00, 0x8F, 0x02, 0x24, +0x00, 0x01, 0x01, 0x38, 0x02, 0x0D, 0x00, 0x01, 0x00, 0xEA, 0x02, 0x0D, 0x00, 0x01, 0x01, 0x0E, +0x02, 0x0D, 0x00, 0x01, 0x00, 0xF9, 0x02, 0x0D, 0x00, 0x01, 0x00, 0xC0, 0x02, 0x0D, 0x00, 0x01, +0x00, 0xE3, 0x02, 0x0D, 0x00, 0x01, 0x00, 0xB5, 0x02, 0x0D, 0x00, 0x01, 0x00, 0xFB, 0x02, 0x0D, +0x00, 0x01, 0x00, 0xFA, 0x02, 0x0D, 0x00, 0x02, 0x00, 0x03, 0x02, 0xEA, 0x02, 0xFA, 0x00, 0x00, +0x02, 0xFC, 0x03, 0x15, 0x00, 0x11, 0x03, 0x23, 0x03, 0x46, 0x00, 0x2B, 0x00, 0x02, 0x00, 0x08, +0x00, 0x02, 0x10, 0x48, 0x00, 0x0A, 0x00, 0x02, 0x0C, 0x48, 0x00, 0x04, 0x00, 0x00, 0x0E, 0x30, +0x0C, 0xAC, 0x00, 0x2E, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x14, +0xFF, 0xF6, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCB, 0x00, 0x00, +0xFF, 0xF4, 0x00, 0x00, 0xFF, 0xBF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE4, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xDD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xFB, +0xFF, 0xD3, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xE2, 0xFF, 0xDD, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xD9, 0xFF, 0xEC, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xD0, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xE9, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, +0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xEC, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB0, 0xFF, 0xEC, 0xFF, 0xE7, 0xFF, 0xFB, +0xFF, 0xCE, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD3, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xBA, 0xFF, 0xB5, 0xFF, 0xB5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, +0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xDD, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xD3, 0xFF, 0xFB, +0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, +0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xE2, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xE7, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xCE, 0x00, 0x00, 0xFF, 0xE2, 0xFF, 0xB5, 0xFF, 0xCE, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0xFF, 0xCE, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCE, +0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, +0x00, 0x3C, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBA, 0xFF, 0xD8, 0xFF, 0xCE, 0xFF, 0xD8, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xFB, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, +0xFF, 0xB0, 0x00, 0x00, 0xFF, 0xDD, 0xFF, 0xB0, 0xFF, 0xEC, 0xFF, 0xF6, 0xFF, 0xE9, 0x00, 0x00, +0xFF, 0xE7, 0xFF, 0xDC, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x0A, 0xFF, 0xB0, +0xFF, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF6, 0xFF, 0x9C, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x88, 0xFF, 0xEB, 0xFF, 0x88, 0xFF, 0xF6, +0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xFD, +0xFF, 0xE7, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0xFF, 0xF1, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xE7, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF6, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, +0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0x88, 0x00, 0x00, 0xFF, 0xD8, 0xFF, 0xFB, 0xFF, 0xAC, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB5, +0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x88, 0xFF, 0x9C, +0xFF, 0xB5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, +0xFF, 0xE2, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, +0xFF, 0xF6, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x32, +0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xBA, 0x00, 0x00, +0xFF, 0x8E, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0xFF, 0xE7, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0x9C, 0x00, 0x00, 0xFF, 0xE2, 0xFF, 0xCE, 0xFF, 0x9C, 0x00, 0x00, +0xFF, 0xC4, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x9C, 0x00, 0x0A, 0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, +0x00, 0x1E, 0xFF, 0xD3, 0xFF, 0xB0, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBA, 0xFF, 0xBA, +0x00, 0x00, 0xFF, 0x8C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0xFF, 0x9C, 0xFF, 0xEC, +0xFF, 0x9C, 0xFF, 0xF6, 0xFF, 0xF1, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, +0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xDD, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, +0xFF, 0xF1, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF1, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xFB, 0xFF, 0xF6, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xD8, 0xFF, 0xF6, 0x00, 0x00, +0xFF, 0xFD, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x0A, 0xFF, 0xEC, 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xBA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB0, 0xFF, 0xFD, +0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xF6, 0x00, 0x00, +0x00, 0x00, 0x00, 0x32, 0xFF, 0xF6, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, +0xFF, 0xD8, 0x00, 0x00, 0xFF, 0xEA, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD3, 0x00, 0x00, 0xFF, 0xD3, 0x00, 0x00, +0xFF, 0xF4, 0xFF, 0xF1, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xFC, 0x00, 0x14, 0x00, 0x00, +0xFF, 0xD8, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xBF, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x08, 0x00, 0x0A, 0x00, 0x0F, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xB5, 0x00, 0x08, +0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x32, +0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xE3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x4F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, +0x00, 0x00, 0x00, 0x03, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0x32, 0x00, 0x00, +0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x28, 0x00, 0x37, 0x00, 0x32, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xB5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0xFF, 0x88, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFD, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xFB, +0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xFD, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xC4, 0xFF, 0xF1, 0x00, 0x00, +0xFF, 0xF7, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x0F, 0xFF, 0xF6, 0xFF, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, +0x00, 0x00, 0xFF, 0x93, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xB0, 0xFF, 0xF7, +0xFF, 0xB0, 0xFF, 0xFB, 0xFF, 0xF1, 0x00, 0x00, 0xFF, 0xC4, 0x00, 0x00, 0xFF, 0xE2, 0xFF, 0xB5, +0xFF, 0xE7, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0xFF, 0xEC, 0xFF, 0x9C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xFB, 0x00, 0x00, 0xFF, 0x9C, 0xFF, 0x7D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0x88, 0xFF, 0xF3, 0xFF, 0x9C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, 0x00, 0x00, +0xFF, 0xDD, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE6, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xF6, 0x00, 0x00, +0x00, 0x00, 0x00, 0x32, 0xFF, 0xF6, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE6, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, +0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, +0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, +0x00, 0x10, 0x00, 0x01, 0x00, 0x1D, 0x00, 0x00, 0x00, 0x25, 0x00, 0x4D, 0x00, 0x1D, 0x00, 0x54, +0x00, 0x54, 0x00, 0x46, 0x00, 0x64, 0x00, 0x71, 0x00, 0x47, 0x00, 0x75, 0x00, 0x75, 0x00, 0x55, +0x00, 0x7C, 0x00, 0x7C, 0x00, 0x56, 0x00, 0x80, 0x00, 0xF1, 0x00, 0x57, 0x00, 0xF3, 0x00, 0xF3, +0x00, 0xC9, 0x01, 0x03, 0x01, 0x20, 0x00, 0xCA, 0x01, 0x23, 0x02, 0x11, 0x00, 0xE8, 0x02, 0x19, +0x02, 0x1F, 0x01, 0xD7, 0x02, 0x22, 0x02, 0x22, 0x01, 0xDE, 0x02, 0x69, 0x02, 0x6A, 0x01, 0xDF, +0x02, 0x8B, 0x02, 0x8D, 0x01, 0xE1, 0x02, 0x97, 0x02, 0x97, 0x01, 0xE4, 0x02, 0x99, 0x02, 0x9A, +0x01, 0xE5, 0x00, 0x02, 0x00, 0x40, 0x00, 0x01, 0x00, 0x1A, 0x00, 0x04, 0x00, 0x1B, 0x00, 0x1C, +0x00, 0x18, 0x00, 0x1D, 0x00, 0x1D, 0x00, 0x02, 0x00, 0x1E, 0x00, 0x24, 0x00, 0x03, 0x00, 0x25, +0x00, 0x46, 0x00, 0x02, 0x00, 0x47, 0x00, 0x4D, 0x00, 0x03, 0x00, 0x4E, 0x00, 0x4E, 0x00, 0x02, +0x00, 0x50, 0x00, 0x52, 0x00, 0x02, 0x00, 0x64, 0x00, 0x65, 0x00, 0x11, 0x00, 0x66, 0x00, 0x7F, +0x00, 0x02, 0x00, 0x80, 0x00, 0xA3, 0x00, 0x03, 0x00, 0xA4, 0x00, 0xA5, 0x00, 0x02, 0x00, 0xA6, +0x00, 0xA6, 0x00, 0x03, 0x00, 0xA7, 0x00, 0xAE, 0x00, 0x02, 0x00, 0xAF, 0x00, 0xB9, 0x00, 0x09, +0x00, 0xBA, 0x00, 0xBA, 0x00, 0x0C, 0x00, 0xBB, 0x00, 0xBB, 0x00, 0x03, 0x00, 0xBC, 0x00, 0xC2, +0x00, 0x0F, 0x00, 0xC3, 0x00, 0xDA, 0x00, 0x06, 0x00, 0xDB, 0x00, 0xDB, 0x00, 0x1B, 0x00, 0xDC, +0x00, 0xE0, 0x00, 0x12, 0x00, 0xE1, 0x00, 0xE1, 0x00, 0x1C, 0x00, 0xE2, 0x00, 0xEB, 0x00, 0x0B, +0x00, 0xEC, 0x00, 0xF0, 0x00, 0x13, 0x00, 0xF2, 0x01, 0x02, 0x00, 0x02, 0x01, 0x03, 0x01, 0x04, +0x00, 0x11, 0x01, 0x05, 0x01, 0x06, 0x00, 0x02, 0x01, 0x07, 0x01, 0x20, 0x00, 0x01, 0x01, 0x23, +0x01, 0x23, 0x00, 0x08, 0x01, 0x24, 0x01, 0x49, 0x00, 0x01, 0x01, 0x4A, 0x01, 0x4A, 0x00, 0x0C, +0x01, 0x4B, 0x01, 0x51, 0x00, 0x10, 0x01, 0x52, 0x01, 0x56, 0x00, 0x08, 0x01, 0x69, 0x01, 0x6B, +0x00, 0x14, 0x01, 0x6C, 0x01, 0x77, 0x00, 0x08, 0x01, 0x78, 0x01, 0x7B, 0x00, 0x07, 0x01, 0x7D, +0x01, 0x80, 0x00, 0x07, 0x01, 0x81, 0x01, 0x81, 0x00, 0x14, 0x01, 0x82, 0x01, 0x85, 0x00, 0x07, +0x01, 0x86, 0x01, 0xA9, 0x00, 0x01, 0x01, 0xAA, 0x01, 0xAA, 0x00, 0x1E, 0x01, 0xAB, 0x01, 0xAB, +0x00, 0x08, 0x01, 0xAC, 0x01, 0xAC, 0x00, 0x01, 0x01, 0xAD, 0x01, 0xB4, 0x00, 0x07, 0x01, 0xB5, +0x01, 0xBF, 0x00, 0x0A, 0x01, 0xC0, 0x01, 0xC0, 0x00, 0x0C, 0x01, 0xC1, 0x01, 0xC8, 0x00, 0x0E, +0x01, 0xC9, 0x01, 0xE0, 0x00, 0x05, 0x01, 0xE1, 0x01, 0xE1, 0x00, 0x20, 0x01, 0xE2, 0x01, 0xE6, +0x00, 0x16, 0x01, 0xE7, 0x01, 0xE7, 0x00, 0x21, 0x01, 0xE8, 0x01, 0xF1, 0x00, 0x0D, 0x01, 0xF2, +0x01, 0xF6, 0x00, 0x15, 0x01, 0xF8, 0x02, 0x11, 0x00, 0x01, 0x02, 0x19, 0x02, 0x1F, 0x00, 0x0C, +0x02, 0x22, 0x02, 0x22, 0x00, 0x04, 0x02, 0x24, 0x02, 0x24, 0x00, 0x05, 0x02, 0x69, 0x02, 0x69, +0x00, 0x1F, 0x02, 0x6A, 0x02, 0x6A, 0x00, 0x1D, 0x02, 0x8B, 0x02, 0x8D, 0x00, 0x17, 0x02, 0x97, +0x02, 0x97, 0x00, 0x19, 0x02, 0x98, 0x02, 0x98, 0x00, 0x1A, 0x02, 0x99, 0x02, 0x99, 0x00, 0x19, +0x02, 0x9A, 0x02, 0x9A, 0x00, 0x1A, 0x00, 0x02, 0x00, 0x57, 0x00, 0x01, 0x00, 0x1A, 0x00, 0x03, +0x00, 0x1B, 0x00, 0x1C, 0x00, 0x04, 0x00, 0x1D, 0x00, 0x1D, 0x00, 0x26, 0x00, 0x25, 0x00, 0x25, +0x00, 0x01, 0x00, 0x26, 0x00, 0x27, 0x00, 0x18, 0x00, 0x28, 0x00, 0x2C, 0x00, 0x01, 0x00, 0x2D, +0x00, 0x2E, 0x00, 0x15, 0x00, 0x2F, 0x00, 0x45, 0x00, 0x04, 0x00, 0x46, 0x00, 0x46, 0x00, 0x27, +0x00, 0x47, 0x00, 0x4D, 0x00, 0x16, 0x00, 0x54, 0x00, 0x54, 0x00, 0x0A, 0x00, 0x64, 0x00, 0x65, +0x00, 0x0A, 0x00, 0x66, 0x00, 0x67, 0x00, 0x20, 0x00, 0x68, 0x00, 0x68, 0x00, 0x11, 0x00, 0x69, +0x00, 0x69, 0x00, 0x0A, 0x00, 0x6A, 0x00, 0x6E, 0x00, 0x11, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x0C, +0x00, 0x70, 0x00, 0x71, 0x00, 0x11, 0x00, 0x75, 0x00, 0x75, 0x00, 0x0A, 0x00, 0x7C, 0x00, 0x7C, +0x00, 0x0C, 0x00, 0x80, 0x00, 0xA2, 0x00, 0x01, 0x00, 0xA3, 0x00, 0xA3, 0x00, 0x04, 0x00, 0xA4, +0x00, 0xA5, 0x00, 0x21, 0x00, 0xA6, 0x00, 0xA6, 0x00, 0x01, 0x00, 0xA7, 0x00, 0xAE, 0x00, 0x12, +0x00, 0xAF, 0x00, 0xBA, 0x00, 0x0B, 0x00, 0xBB, 0x00, 0xBB, 0x00, 0x01, 0x00, 0xBC, 0x00, 0xC2, +0x00, 0x17, 0x00, 0xC3, 0x00, 0xDA, 0x00, 0x05, 0x00, 0xDB, 0x00, 0xDB, 0x00, 0x28, 0x00, 0xDC, +0x00, 0xE0, 0x00, 0x1B, 0x00, 0xE1, 0x00, 0xE1, 0x00, 0x29, 0x00, 0xE2, 0x00, 0xEB, 0x00, 0x0E, +0x00, 0xEC, 0x00, 0xF0, 0x00, 0x18, 0x00, 0xF1, 0x00, 0xF1, 0x00, 0x0A, 0x00, 0xF3, 0x00, 0xF3, +0x00, 0x0A, 0x01, 0x03, 0x01, 0x06, 0x00, 0x0A, 0x01, 0x23, 0x01, 0x23, 0x00, 0x02, 0x01, 0x24, +0x01, 0x2A, 0x00, 0x19, 0x01, 0x2B, 0x01, 0x2B, 0x00, 0x1D, 0x01, 0x2C, 0x01, 0x2C, 0x00, 0x01, +0x01, 0x2D, 0x01, 0x2D, 0x00, 0x23, 0x01, 0x2E, 0x01, 0x30, 0x00, 0x1D, 0x01, 0x31, 0x01, 0x31, +0x00, 0x15, 0x01, 0x32, 0x01, 0x48, 0x00, 0x06, 0x01, 0x49, 0x01, 0x49, 0x00, 0x02, 0x01, 0x4A, +0x01, 0x4A, 0x00, 0x24, 0x01, 0x4B, 0x01, 0x51, 0x00, 0x1A, 0x01, 0x52, 0x01, 0x56, 0x00, 0x09, +0x01, 0x57, 0x01, 0x64, 0x00, 0x08, 0x01, 0x65, 0x01, 0x65, 0x00, 0x0C, 0x01, 0x66, 0x01, 0x68, +0x00, 0x08, 0x01, 0x69, 0x01, 0x6B, 0x00, 0x0C, 0x01, 0x6C, 0x01, 0x6E, 0x00, 0x1F, 0x01, 0x6F, +0x01, 0x70, 0x00, 0x0F, 0x01, 0x71, 0x01, 0x71, 0x00, 0x23, 0x01, 0x72, 0x01, 0x77, 0x00, 0x0F, +0x01, 0x78, 0x01, 0x81, 0x00, 0x09, 0x01, 0x82, 0x01, 0x82, 0x00, 0x0C, 0x01, 0x83, 0x01, 0x85, +0x00, 0x09, 0x01, 0x86, 0x01, 0xA8, 0x00, 0x02, 0x01, 0xA9, 0x01, 0xA9, 0x00, 0x06, 0x01, 0xAA, +0x01, 0xAB, 0x00, 0x02, 0x01, 0xAC, 0x01, 0xAC, 0x00, 0x2A, 0x01, 0xAD, 0x01, 0xB4, 0x00, 0x13, +0x01, 0xB5, 0x01, 0xBF, 0x00, 0x0D, 0x01, 0xC0, 0x01, 0xC0, 0x00, 0x02, 0x01, 0xC1, 0x01, 0xC8, +0x00, 0x14, 0x01, 0xC9, 0x01, 0xE0, 0x00, 0x07, 0x01, 0xE1, 0x01, 0xE1, 0x00, 0x2C, 0x01, 0xE2, +0x01, 0xE6, 0x00, 0x1C, 0x01, 0xE7, 0x01, 0xE7, 0x00, 0x2D, 0x01, 0xE8, 0x01, 0xF1, 0x00, 0x10, +0x01, 0xF2, 0x01, 0xF6, 0x00, 0x15, 0x01, 0xF7, 0x01, 0xF7, 0x00, 0x0C, 0x02, 0x19, 0x02, 0x19, +0x00, 0x24, 0x02, 0x1A, 0x02, 0x1B, 0x00, 0x0C, 0x02, 0x1C, 0x02, 0x1C, 0x00, 0x0F, 0x02, 0x1D, +0x02, 0x1D, 0x00, 0x0C, 0x02, 0x1E, 0x02, 0x1E, 0x00, 0x08, 0x02, 0x1F, 0x02, 0x1F, 0x00, 0x0F, +0x02, 0x22, 0x02, 0x22, 0x00, 0x03, 0x02, 0x69, 0x02, 0x6A, 0x00, 0x22, 0x02, 0x8B, 0x02, 0x8D, +0x00, 0x1E, 0x02, 0x97, 0x02, 0x97, 0x00, 0x25, 0x02, 0x99, 0x02, 0x99, 0x00, 0x25, 0x02, 0x9A, +0x02, 0x9A, 0x00, 0x2B, 0x00, 0x01, 0x02, 0xCA, 0x00, 0x04, 0x00, 0x00, 0x01, 0x60, 0x1A, 0xEC, +0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, +0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, +0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, +0x1A, 0xEC, 0x1A, 0xE2, 0x1A, 0xD4, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, +0x1A, 0xBE, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xAA, 0x1A, 0xAA, 0x1A, 0xAA, 0x1A, 0xAA, 0x1A, 0xAA, +0x1A, 0xAA, 0x1A, 0xAA, 0x19, 0xD8, 0x19, 0xC6, 0x19, 0xC6, 0x19, 0xC6, 0x19, 0xB8, 0x19, 0xB8, +0x19, 0x96, 0x19, 0xC6, 0x19, 0x96, 0x19, 0x96, 0x19, 0x96, 0x19, 0x96, 0x19, 0x96, 0x19, 0x96, +0x19, 0x96, 0x19, 0xC6, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, +0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, +0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, +0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, +0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x19, 0x84, 0x19, 0x4A, 0x19, 0x30, +0x19, 0x1E, 0x19, 0x0C, 0x19, 0x0C, 0x19, 0x0C, 0x19, 0x0C, 0x19, 0x0C, 0x19, 0x0C, 0x19, 0x0C, +0x1A, 0xBE, 0x18, 0xF6, 0x18, 0xF6, 0x18, 0xF6, 0x18, 0xF6, 0x18, 0xF6, 0x18, 0xF6, 0x18, 0xF6, +0x18, 0xC8, 0x18, 0xBA, 0x18, 0xBA, 0x18, 0xBA, 0x18, 0xBA, 0x18, 0xBA, 0x18, 0xB4, 0x18, 0xA6, +0x18, 0xA6, 0x18, 0xA6, 0x18, 0xA6, 0x18, 0xA6, 0x18, 0xA6, 0x18, 0xA6, 0x18, 0xA6, 0x18, 0xA6, +0x18, 0xA6, 0x19, 0xC6, 0x19, 0xC6, 0x19, 0xC6, 0x19, 0xC6, 0x19, 0xC6, 0x19, 0xC6, 0x18, 0xA0, +0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, +0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, +0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, +0x18, 0xA0, 0x18, 0x8E, 0x18, 0x64, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, +0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, +0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, +0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x18, 0x8E, 0x18, 0x52, 0x18, 0x48, 0x18, 0xA0, 0x18, 0xA0, +0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, +0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, +0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, +0x1A, 0xB8, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, +0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, +0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, +0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, +0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x1A, 0xB8, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x36, +0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, +0x18, 0x06, 0x17, 0xE0, 0x17, 0xD2, 0x17, 0xD2, 0x17, 0xD2, 0x17, 0xD2, 0x17, 0xD2, 0x17, 0xBC, +0x17, 0xAE, 0x17, 0xAE, 0x17, 0xAE, 0x17, 0xAE, 0x17, 0xAE, 0x17, 0xAE, 0x17, 0xAE, 0x17, 0xAE, +0x17, 0xAE, 0x17, 0xAE, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x18, 0xA0, +0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, +0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, +0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, +0x18, 0xA0, 0x18, 0x52, 0x1A, 0xEC, 0x17, 0xA4, 0x17, 0x9E, 0x17, 0x94, 0x17, 0x8A, 0x17, 0x7C, +0x17, 0x72, 0x17, 0x6C, 0x17, 0x42, 0x17, 0x3C, 0x17, 0x32, 0x16, 0xCC, 0x16, 0x66, 0x16, 0x60, +0x15, 0xDE, 0x15, 0xD0, 0x15, 0xC2, 0x15, 0xBC, 0x15, 0x46, 0x11, 0x90, 0x0E, 0x46, 0x0E, 0x34, +0x0B, 0x22, 0x08, 0x20, 0x07, 0xFA, 0x07, 0xC4, 0x05, 0x2E, 0x04, 0xB0, 0x04, 0xB0, 0x04, 0xA6, +0x04, 0x00, 0x03, 0xF2, 0x03, 0xE4, 0x03, 0xDE, 0x03, 0xD8, 0x03, 0xD2, 0x03, 0xC4, 0x00, 0x02, +0x00, 0x29, 0x00, 0x01, 0x00, 0x1A, 0x00, 0x00, 0x00, 0x1D, 0x00, 0x1E, 0x00, 0x1A, 0x00, 0x25, +0x00, 0x25, 0x00, 0x1C, 0x00, 0x28, 0x00, 0x2E, 0x00, 0x1D, 0x00, 0x47, 0x00, 0x4D, 0x00, 0x24, +0x00, 0x53, 0x00, 0x54, 0x00, 0x2B, 0x00, 0x64, 0x00, 0x6E, 0x00, 0x2D, 0x00, 0x70, 0x00, 0x71, +0x00, 0x38, 0x00, 0x75, 0x00, 0x75, 0x00, 0x3A, 0x00, 0x80, 0x00, 0xA2, 0x00, 0x3B, 0x00, 0xA4, +0x00, 0xAE, 0x00, 0x5E, 0x00, 0xBB, 0x00, 0xC2, 0x00, 0x69, 0x00, 0xDB, 0x00, 0xEB, 0x00, 0x71, +0x00, 0xF1, 0x00, 0xF1, 0x00, 0x82, 0x00, 0xF3, 0x00, 0xF3, 0x00, 0x83, 0x01, 0x03, 0x01, 0x20, +0x00, 0x84, 0x01, 0x23, 0x01, 0x23, 0x00, 0xA2, 0x01, 0x2C, 0x01, 0x2C, 0x00, 0xA3, 0x01, 0x31, +0x01, 0x56, 0x00, 0xA4, 0x01, 0x6C, 0x01, 0x6E, 0x00, 0xCA, 0x01, 0x78, 0x01, 0x81, 0x00, 0xCD, +0x01, 0x83, 0x01, 0xB4, 0x00, 0xD7, 0x01, 0xC0, 0x01, 0xC0, 0x01, 0x09, 0x01, 0xE1, 0x01, 0xF6, +0x01, 0x0A, 0x01, 0xF8, 0x02, 0x11, 0x01, 0x20, 0x02, 0x19, 0x02, 0x19, 0x01, 0x3A, 0x02, 0x22, +0x02, 0x22, 0x01, 0x3B, 0x02, 0x26, 0x02, 0x2F, 0x01, 0x3C, 0x02, 0x69, 0x02, 0x6A, 0x01, 0x46, +0x02, 0x6F, 0x02, 0x74, 0x01, 0x48, 0x02, 0x76, 0x02, 0x77, 0x01, 0x4E, 0x02, 0x85, 0x02, 0x85, +0x01, 0x50, 0x02, 0x89, 0x02, 0x89, 0x01, 0x51, 0x02, 0x8B, 0x02, 0x8D, 0x01, 0x52, 0x02, 0x98, +0x02, 0x9A, 0x01, 0x55, 0x02, 0xA6, 0x02, 0xA7, 0x01, 0x58, 0x02, 0xC9, 0x02, 0xC9, 0x01, 0x5A, +0x02, 0xD4, 0x02, 0xD5, 0x01, 0x5B, 0x02, 0xDD, 0x02, 0xDD, 0x01, 0x5D, 0x02, 0xDF, 0x02, 0xDF, +0x01, 0x5E, 0x02, 0xE1, 0x02, 0xE1, 0x01, 0x5F, 0x00, 0x03, 0x02, 0x26, 0xFF, 0xCE, 0x02, 0x2E, +0xFF, 0xE2, 0x02, 0x2F, 0xFF, 0xD8, 0x00, 0x01, 0x02, 0x2A, 0xFF, 0xB0, 0x00, 0x01, 0x02, 0x27, +0xFF, 0xD8, 0x00, 0x01, 0x02, 0x27, 0xFF, 0xEC, 0x00, 0x03, 0x02, 0x27, 0xFF, 0xC4, 0x02, 0x28, +0xFF, 0xE2, 0x02, 0x2D, 0xFF, 0xCE, 0x00, 0x03, 0x02, 0x26, 0xFF, 0xD8, 0x02, 0x27, 0xFF, 0xE2, +0x02, 0x2A, 0xFF, 0xE2, 0x00, 0x29, 0x00, 0xBC, 0xFF, 0xC9, 0x00, 0xBD, 0xFF, 0xC9, 0x00, 0xBE, +0xFF, 0xC9, 0x00, 0xBF, 0xFF, 0xC9, 0x00, 0xC0, 0xFF, 0xC9, 0x00, 0xC1, 0xFF, 0xC9, 0x00, 0xC2, +0xFF, 0xC9, 0x00, 0xDB, 0xFF, 0xC4, 0x00, 0xDC, 0xFF, 0xD8, 0x00, 0xDD, 0xFF, 0xD8, 0x00, 0xDE, +0xFF, 0xD8, 0x00, 0xDF, 0xFF, 0xD8, 0x00, 0xE0, 0xFF, 0xD8, 0x00, 0xE2, 0xFF, 0xCE, 0x00, 0xE3, +0xFF, 0xCE, 0x00, 0xE4, 0xFF, 0xCE, 0x00, 0xE5, 0xFF, 0xCE, 0x00, 0xE6, 0xFF, 0xCE, 0x00, 0xE7, +0xFF, 0xCE, 0x00, 0xE8, 0xFF, 0xCE, 0x00, 0xE9, 0xFF, 0xCE, 0x00, 0xEA, 0xFF, 0xCE, 0x00, 0xEB, +0xFF, 0xCE, 0x01, 0x2C, 0xFF, 0xF6, 0x01, 0xE1, 0xFF, 0xE2, 0x01, 0xE2, 0xFF, 0xE2, 0x01, 0xE3, +0xFF, 0xE2, 0x01, 0xE4, 0xFF, 0xE2, 0x01, 0xE5, 0xFF, 0xE2, 0x01, 0xE6, 0xFF, 0xE2, 0x01, 0xE8, +0xFF, 0xE2, 0x01, 0xE9, 0xFF, 0xE2, 0x01, 0xEA, 0xFF, 0xE2, 0x01, 0xEB, 0xFF, 0xE2, 0x01, 0xEC, +0xFF, 0xE2, 0x01, 0xED, 0xFF, 0xE2, 0x01, 0xEE, 0xFF, 0xE2, 0x01, 0xEF, 0xFF, 0xE2, 0x01, 0xF0, +0xFF, 0xE2, 0x01, 0xF1, 0xFF, 0xE2, 0x02, 0x8A, 0xFF, 0xF1, 0x00, 0x02, 0x00, 0xDB, 0xFF, 0xFA, +0x01, 0xE7, 0xFF, 0xFD, 0x00, 0x1F, 0x00, 0x01, 0xFF, 0xC4, 0x00, 0x02, 0xFF, 0xC4, 0x00, 0x03, +0xFF, 0xC4, 0x00, 0x04, 0xFF, 0xC4, 0x00, 0x05, 0xFF, 0xC4, 0x00, 0x06, 0xFF, 0xC4, 0x00, 0x07, +0xFF, 0xC4, 0x00, 0x08, 0xFF, 0xC4, 0x00, 0x09, 0xFF, 0xC4, 0x00, 0x0A, 0xFF, 0xC4, 0x00, 0x0B, +0xFF, 0xC4, 0x00, 0x0C, 0xFF, 0xC4, 0x00, 0x0D, 0xFF, 0xC4, 0x00, 0x0E, 0xFF, 0xC4, 0x00, 0x0F, +0xFF, 0xC4, 0x00, 0x10, 0xFF, 0xC4, 0x00, 0x11, 0xFF, 0xC4, 0x00, 0x12, 0xFF, 0xC4, 0x00, 0x13, +0xFF, 0xC4, 0x00, 0x14, 0xFF, 0xC4, 0x00, 0x15, 0xFF, 0xC4, 0x00, 0x16, 0xFF, 0xC4, 0x00, 0x17, +0xFF, 0xC4, 0x00, 0x18, 0xFF, 0xC4, 0x00, 0x19, 0xFF, 0xC4, 0x00, 0x1A, 0xFF, 0xC4, 0x00, 0x64, +0xFF, 0x88, 0x00, 0x65, 0xFF, 0x88, 0x01, 0x03, 0xFF, 0x88, 0x01, 0x04, 0xFF, 0x88, 0x02, 0x22, +0xFF, 0xC4, 0x00, 0xA5, 0x00, 0x01, 0xFF, 0xB5, 0x00, 0x02, 0xFF, 0xB5, 0x00, 0x03, 0xFF, 0xB5, +0x00, 0x04, 0xFF, 0xB5, 0x00, 0x05, 0xFF, 0xB5, 0x00, 0x06, 0xFF, 0xB5, 0x00, 0x07, 0xFF, 0xB5, +0x00, 0x08, 0xFF, 0xB5, 0x00, 0x09, 0xFF, 0xB5, 0x00, 0x0A, 0xFF, 0xB5, 0x00, 0x0B, 0xFF, 0xB5, +0x00, 0x0C, 0xFF, 0xB5, 0x00, 0x0D, 0xFF, 0xB5, 0x00, 0x0E, 0xFF, 0xB5, 0x00, 0x0F, 0xFF, 0xB5, +0x00, 0x10, 0xFF, 0xB5, 0x00, 0x11, 0xFF, 0xB5, 0x00, 0x12, 0xFF, 0xB5, 0x00, 0x13, 0xFF, 0xB5, +0x00, 0x14, 0xFF, 0xB5, 0x00, 0x15, 0xFF, 0xB5, 0x00, 0x16, 0xFF, 0xB5, 0x00, 0x17, 0xFF, 0xB5, +0x00, 0x18, 0xFF, 0xB5, 0x00, 0x19, 0xFF, 0xB5, 0x00, 0x1A, 0xFF, 0xB5, 0x00, 0x64, 0xFF, 0x9C, +0x00, 0x65, 0xFF, 0x9C, 0x01, 0x03, 0xFF, 0x9C, 0x01, 0x04, 0xFF, 0x9C, 0x01, 0x07, 0xFF, 0xD8, +0x01, 0x08, 0xFF, 0xD8, 0x01, 0x09, 0xFF, 0xD8, 0x01, 0x0A, 0xFF, 0xD8, 0x01, 0x0B, 0xFF, 0xD8, +0x01, 0x0C, 0xFF, 0xD8, 0x01, 0x0D, 0xFF, 0xD8, 0x01, 0x0E, 0xFF, 0xD8, 0x01, 0x0F, 0xFF, 0xD8, +0x01, 0x10, 0xFF, 0xD8, 0x01, 0x11, 0xFF, 0xD8, 0x01, 0x12, 0xFF, 0xD8, 0x01, 0x13, 0xFF, 0xD8, +0x01, 0x14, 0xFF, 0xD8, 0x01, 0x15, 0xFF, 0xD8, 0x01, 0x16, 0xFF, 0xD8, 0x01, 0x17, 0xFF, 0xD8, +0x01, 0x18, 0xFF, 0xD8, 0x01, 0x19, 0xFF, 0xD8, 0x01, 0x1A, 0xFF, 0xD8, 0x01, 0x1B, 0xFF, 0xD8, +0x01, 0x1C, 0xFF, 0xD8, 0x01, 0x1D, 0xFF, 0xD8, 0x01, 0x1E, 0xFF, 0xD8, 0x01, 0x1F, 0xFF, 0xD8, +0x01, 0x20, 0xFF, 0xD8, 0x01, 0x24, 0xFF, 0xD8, 0x01, 0x25, 0xFF, 0xD8, 0x01, 0x26, 0xFF, 0xD8, +0x01, 0x27, 0xFF, 0xD8, 0x01, 0x28, 0xFF, 0xD8, 0x01, 0x29, 0xFF, 0xD8, 0x01, 0x2A, 0xFF, 0xD8, +0x01, 0x2B, 0xFF, 0xD8, 0x01, 0x2C, 0xFF, 0xD8, 0x01, 0x2D, 0xFF, 0xD8, 0x01, 0x2E, 0xFF, 0xD8, +0x01, 0x2F, 0xFF, 0xD8, 0x01, 0x30, 0xFF, 0xD8, 0x01, 0x31, 0xFF, 0xD8, 0x01, 0x32, 0xFF, 0xD8, +0x01, 0x33, 0xFF, 0xD8, 0x01, 0x34, 0xFF, 0xD8, 0x01, 0x35, 0xFF, 0xD8, 0x01, 0x36, 0xFF, 0xD8, +0x01, 0x37, 0xFF, 0xD8, 0x01, 0x38, 0xFF, 0xD8, 0x01, 0x39, 0xFF, 0xD8, 0x01, 0x3A, 0xFF, 0xD8, +0x01, 0x3B, 0xFF, 0xD8, 0x01, 0x3C, 0xFF, 0xD8, 0x01, 0x3D, 0xFF, 0xD8, 0x01, 0x3E, 0xFF, 0xD8, +0x01, 0x3F, 0xFF, 0xD8, 0x01, 0x40, 0xFF, 0xD8, 0x01, 0x41, 0xFF, 0xD8, 0x01, 0x42, 0xFF, 0xD8, +0x01, 0x43, 0xFF, 0xD8, 0x01, 0x44, 0xFF, 0xD8, 0x01, 0x45, 0xFF, 0xD8, 0x01, 0x46, 0xFF, 0xD8, +0x01, 0x47, 0xFF, 0xD8, 0x01, 0x48, 0xFF, 0xD8, 0x01, 0x49, 0xFF, 0xD8, 0x01, 0x4B, 0xFF, 0xCE, +0x01, 0x4C, 0xFF, 0xCE, 0x01, 0x4D, 0xFF, 0xCE, 0x01, 0x4E, 0xFF, 0xCE, 0x01, 0x4F, 0xFF, 0xCE, +0x01, 0x50, 0xFF, 0xCE, 0x01, 0x51, 0xFF, 0xCE, 0x01, 0x86, 0xFF, 0xD8, 0x01, 0x87, 0xFF, 0xD8, +0x01, 0x88, 0xFF, 0xD8, 0x01, 0x89, 0xFF, 0xD8, 0x01, 0x8A, 0xFF, 0xD8, 0x01, 0x8B, 0xFF, 0xD8, +0x01, 0x8C, 0xFF, 0xD8, 0x01, 0x8D, 0xFF, 0xD8, 0x01, 0x8E, 0xFF, 0xD8, 0x01, 0x8F, 0xFF, 0xD8, +0x01, 0x90, 0xFF, 0xD8, 0x01, 0x91, 0xFF, 0xD8, 0x01, 0x92, 0xFF, 0xD8, 0x01, 0x93, 0xFF, 0xD8, +0x01, 0x94, 0xFF, 0xD8, 0x01, 0x95, 0xFF, 0xD8, 0x01, 0x96, 0xFF, 0xD8, 0x01, 0x97, 0xFF, 0xD8, +0x01, 0x98, 0xFF, 0xD8, 0x01, 0x99, 0xFF, 0xD8, 0x01, 0x9A, 0xFF, 0xD8, 0x01, 0x9B, 0xFF, 0xD8, +0x01, 0x9C, 0xFF, 0xD8, 0x01, 0x9D, 0xFF, 0xD8, 0x01, 0x9E, 0xFF, 0xD8, 0x01, 0x9F, 0xFF, 0xD8, +0x01, 0xA0, 0xFF, 0xD8, 0x01, 0xA1, 0xFF, 0xD8, 0x01, 0xA2, 0xFF, 0xD8, 0x01, 0xA3, 0xFF, 0xD8, +0x01, 0xA4, 0xFF, 0xD8, 0x01, 0xA5, 0xFF, 0xD8, 0x01, 0xA6, 0xFF, 0xD8, 0x01, 0xA7, 0xFF, 0xD8, +0x01, 0xA8, 0xFF, 0xD8, 0x01, 0xA9, 0xFF, 0xD8, 0x01, 0xAC, 0xFF, 0xD8, 0x01, 0xF8, 0xFF, 0xD8, +0x01, 0xF9, 0xFF, 0xD8, 0x01, 0xFA, 0xFF, 0xD8, 0x01, 0xFB, 0xFF, 0xD8, 0x01, 0xFC, 0xFF, 0xD8, +0x01, 0xFD, 0xFF, 0xD8, 0x01, 0xFE, 0xFF, 0xD8, 0x01, 0xFF, 0xFF, 0xD8, 0x02, 0x00, 0xFF, 0xD8, +0x02, 0x01, 0xFF, 0xD8, 0x02, 0x02, 0xFF, 0xD8, 0x02, 0x03, 0xFF, 0xD8, 0x02, 0x04, 0xFF, 0xD8, +0x02, 0x05, 0xFF, 0xD8, 0x02, 0x06, 0xFF, 0xD8, 0x02, 0x07, 0xFF, 0xD8, 0x02, 0x08, 0xFF, 0xD8, +0x02, 0x09, 0xFF, 0xD8, 0x02, 0x0A, 0xFF, 0xD8, 0x02, 0x0B, 0xFF, 0xD8, 0x02, 0x0C, 0xFF, 0xD8, +0x02, 0x0D, 0xFF, 0xD8, 0x02, 0x0E, 0xFF, 0xD8, 0x02, 0x0F, 0xFF, 0xD8, 0x02, 0x10, 0xFF, 0xD8, +0x02, 0x11, 0xFF, 0xD8, 0x02, 0x22, 0xFF, 0xB5, 0x00, 0x0D, 0x00, 0x01, 0xFF, 0xCE, 0x00, 0x64, +0xFF, 0xC4, 0x00, 0x65, 0xFF, 0xC4, 0x00, 0xBC, 0xFF, 0x9C, 0x00, 0xDB, 0xFF, 0x9C, 0x00, 0xDC, +0xFF, 0xBA, 0x00, 0xE1, 0xFF, 0xB0, 0x00, 0xE2, 0xFF, 0x88, 0x01, 0x03, 0xFF, 0xC4, 0x01, 0x04, +0xFF, 0xC4, 0x02, 0x27, 0xFF, 0xD8, 0x02, 0x28, 0xFF, 0xCE, 0x02, 0x81, 0x00, 0x00, 0x00, 0x09, +0x00, 0x01, 0xFF, 0xCE, 0x00, 0xBC, 0xFF, 0x9C, 0x00, 0xDB, 0xFF, 0x9C, 0x00, 0xDC, 0xFF, 0xBA, +0x00, 0xE1, 0xFF, 0xB0, 0x00, 0xE2, 0xFF, 0x88, 0x02, 0x27, 0xFF, 0xD8, 0x02, 0x28, 0xFF, 0xCE, +0x02, 0x81, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x01, 0xFF, 0xCE, 0x00, 0x1E, 0xFF, 0xE7, 0x00, 0x1F, +0xFF, 0xE7, 0x00, 0x20, 0xFF, 0xE7, 0x00, 0x21, 0xFF, 0xE7, 0x00, 0x22, 0xFF, 0xE7, 0x00, 0x23, +0xFF, 0xE7, 0x00, 0x24, 0xFF, 0xE7, 0x00, 0x47, 0xFF, 0xE7, 0x00, 0x48, 0xFF, 0xE7, 0x00, 0x49, +0xFF, 0xE7, 0x00, 0x4A, 0xFF, 0xE7, 0x00, 0x4B, 0xFF, 0xE7, 0x00, 0x4C, 0xFF, 0xE7, 0x00, 0x4D, +0xFF, 0xE7, 0x00, 0x64, 0xFF, 0xCE, 0x00, 0x65, 0xFF, 0xCE, 0x00, 0x80, 0xFF, 0xE7, 0x00, 0x81, +0xFF, 0xE7, 0x00, 0x82, 0xFF, 0xE7, 0x00, 0x83, 0xFF, 0xE7, 0x00, 0x84, 0xFF, 0xE7, 0x00, 0x85, +0xFF, 0xE7, 0x00, 0x86, 0xFF, 0xE7, 0x00, 0x87, 0xFF, 0xE7, 0x00, 0x88, 0xFF, 0xE7, 0x00, 0x89, +0xFF, 0xE7, 0x00, 0x8A, 0xFF, 0xE7, 0x00, 0x8B, 0xFF, 0xE7, 0x00, 0x8C, 0xFF, 0xE7, 0x00, 0x8D, +0xFF, 0xE7, 0x00, 0x8E, 0xFF, 0xE7, 0x00, 0x8F, 0xFF, 0xE7, 0x00, 0x90, 0xFF, 0xE7, 0x00, 0x91, +0xFF, 0xE7, 0x00, 0x92, 0xFF, 0xE7, 0x00, 0x93, 0xFF, 0xE7, 0x00, 0x94, 0xFF, 0xE7, 0x00, 0x95, +0xFF, 0xE7, 0x00, 0x96, 0xFF, 0xE7, 0x00, 0x97, 0xFF, 0xE7, 0x00, 0x98, 0xFF, 0xE7, 0x00, 0x99, +0xFF, 0xE7, 0x00, 0x9A, 0xFF, 0xE7, 0x00, 0x9B, 0xFF, 0xE7, 0x00, 0x9C, 0xFF, 0xE7, 0x00, 0x9D, +0xFF, 0xE7, 0x00, 0x9E, 0xFF, 0xE7, 0x00, 0x9F, 0xFF, 0xE7, 0x00, 0xA0, 0xFF, 0xE7, 0x00, 0xA1, +0xFF, 0xE7, 0x00, 0xA2, 0xFF, 0xE7, 0x00, 0xA3, 0xFF, 0xE7, 0x00, 0xA6, 0xFF, 0xE7, 0x00, 0xBB, +0xFF, 0xE7, 0x00, 0xBC, 0xFF, 0x9C, 0x00, 0xDB, 0xFF, 0x9C, 0x00, 0xDC, 0xFF, 0xBA, 0x00, 0xE1, +0xFF, 0xB0, 0x00, 0xE2, 0xFF, 0x88, 0x01, 0x03, 0xFF, 0xCE, 0x01, 0x04, 0xFF, 0xCE, 0x01, 0x07, +0xFF, 0xE7, 0x01, 0x08, 0xFF, 0xE7, 0x01, 0x09, 0xFF, 0xE7, 0x01, 0x0A, 0xFF, 0xE7, 0x01, 0x0B, +0xFF, 0xE7, 0x01, 0x0C, 0xFF, 0xE7, 0x01, 0x0D, 0xFF, 0xE7, 0x01, 0x0E, 0xFF, 0xE7, 0x01, 0x0F, +0xFF, 0xE7, 0x01, 0x10, 0xFF, 0xE7, 0x01, 0x11, 0xFF, 0xE7, 0x01, 0x12, 0xFF, 0xE7, 0x01, 0x13, +0xFF, 0xE7, 0x01, 0x14, 0xFF, 0xE7, 0x01, 0x15, 0xFF, 0xE7, 0x01, 0x16, 0xFF, 0xE7, 0x01, 0x17, +0xFF, 0xE7, 0x01, 0x18, 0xFF, 0xE7, 0x01, 0x19, 0xFF, 0xE7, 0x01, 0x1A, 0xFF, 0xE7, 0x01, 0x1B, +0xFF, 0xE7, 0x01, 0x1C, 0xFF, 0xE7, 0x01, 0x1D, 0xFF, 0xE7, 0x01, 0x1E, 0xFF, 0xE7, 0x01, 0x1F, +0xFF, 0xE7, 0x01, 0x20, 0xFF, 0xE7, 0x01, 0x24, 0xFF, 0xE7, 0x01, 0x25, 0xFF, 0xE7, 0x01, 0x26, +0xFF, 0xE7, 0x01, 0x27, 0xFF, 0xE7, 0x01, 0x28, 0xFF, 0xE7, 0x01, 0x29, 0xFF, 0xE7, 0x01, 0x2A, +0xFF, 0xE7, 0x01, 0x2B, 0xFF, 0xE7, 0x01, 0x2C, 0xFF, 0xE7, 0x01, 0x2D, 0xFF, 0xE7, 0x01, 0x2E, +0xFF, 0xE7, 0x01, 0x2F, 0xFF, 0xE7, 0x01, 0x30, 0xFF, 0xE7, 0x01, 0x31, 0xFF, 0xE7, 0x01, 0x32, +0xFF, 0xE7, 0x01, 0x33, 0xFF, 0xE7, 0x01, 0x34, 0xFF, 0xE7, 0x01, 0x35, 0xFF, 0xE7, 0x01, 0x36, +0xFF, 0xE7, 0x01, 0x37, 0xFF, 0xE7, 0x01, 0x38, 0xFF, 0xE7, 0x01, 0x39, 0xFF, 0xE7, 0x01, 0x3A, +0xFF, 0xE7, 0x01, 0x3B, 0xFF, 0xE7, 0x01, 0x3C, 0xFF, 0xE7, 0x01, 0x3D, 0xFF, 0xE7, 0x01, 0x3E, +0xFF, 0xE7, 0x01, 0x3F, 0xFF, 0xE7, 0x01, 0x40, 0xFF, 0xE7, 0x01, 0x41, 0xFF, 0xE7, 0x01, 0x42, +0xFF, 0xE7, 0x01, 0x43, 0xFF, 0xE7, 0x01, 0x44, 0xFF, 0xE7, 0x01, 0x45, 0xFF, 0xE7, 0x01, 0x46, +0xFF, 0xE7, 0x01, 0x47, 0xFF, 0xE7, 0x01, 0x48, 0xFF, 0xE7, 0x01, 0x49, 0xFF, 0xE7, 0x01, 0x86, +0xFF, 0xE7, 0x01, 0x87, 0xFF, 0xE7, 0x01, 0x88, 0xFF, 0xE7, 0x01, 0x89, 0xFF, 0xE7, 0x01, 0x8A, +0xFF, 0xE7, 0x01, 0x8B, 0xFF, 0xE7, 0x01, 0x8C, 0xFF, 0xE7, 0x01, 0x8D, 0xFF, 0xE7, 0x01, 0x8E, +0xFF, 0xE7, 0x01, 0x8F, 0xFF, 0xE7, 0x01, 0x90, 0xFF, 0xE7, 0x01, 0x91, 0xFF, 0xE7, 0x01, 0x92, +0xFF, 0xE7, 0x01, 0x93, 0xFF, 0xE7, 0x01, 0x94, 0xFF, 0xE7, 0x01, 0x95, 0xFF, 0xE7, 0x01, 0x96, +0xFF, 0xE7, 0x01, 0x97, 0xFF, 0xE7, 0x01, 0x98, 0xFF, 0xE7, 0x01, 0x99, 0xFF, 0xE7, 0x01, 0x9A, +0xFF, 0xE7, 0x01, 0x9B, 0xFF, 0xE7, 0x01, 0x9C, 0xFF, 0xE7, 0x01, 0x9D, 0xFF, 0xE7, 0x01, 0x9E, +0xFF, 0xE7, 0x01, 0x9F, 0xFF, 0xE7, 0x01, 0xA0, 0xFF, 0xE7, 0x01, 0xA1, 0xFF, 0xE7, 0x01, 0xA2, +0xFF, 0xE7, 0x01, 0xA3, 0xFF, 0xE7, 0x01, 0xA4, 0xFF, 0xE7, 0x01, 0xA5, 0xFF, 0xE7, 0x01, 0xA6, +0xFF, 0xE7, 0x01, 0xA7, 0xFF, 0xE7, 0x01, 0xA8, 0xFF, 0xE7, 0x01, 0xA9, 0xFF, 0xE7, 0x01, 0xAC, +0xFF, 0xE7, 0x01, 0xF8, 0xFF, 0xE7, 0x01, 0xF9, 0xFF, 0xE7, 0x01, 0xFA, 0xFF, 0xE7, 0x01, 0xFB, +0xFF, 0xE7, 0x01, 0xFC, 0xFF, 0xE7, 0x01, 0xFD, 0xFF, 0xE7, 0x01, 0xFE, 0xFF, 0xE7, 0x01, 0xFF, +0xFF, 0xE7, 0x02, 0x00, 0xFF, 0xE7, 0x02, 0x01, 0xFF, 0xE7, 0x02, 0x02, 0xFF, 0xE7, 0x02, 0x03, +0xFF, 0xE7, 0x02, 0x04, 0xFF, 0xE7, 0x02, 0x05, 0xFF, 0xE7, 0x02, 0x06, 0xFF, 0xE7, 0x02, 0x07, +0xFF, 0xE7, 0x02, 0x08, 0xFF, 0xE7, 0x02, 0x09, 0xFF, 0xE7, 0x02, 0x0A, 0xFF, 0xE7, 0x02, 0x0B, +0xFF, 0xE7, 0x02, 0x0C, 0xFF, 0xE7, 0x02, 0x0D, 0xFF, 0xE7, 0x02, 0x0E, 0xFF, 0xE7, 0x02, 0x0F, +0xFF, 0xE7, 0x02, 0x10, 0xFF, 0xE7, 0x02, 0x11, 0xFF, 0xE7, 0x02, 0x27, 0xFF, 0xD8, 0x02, 0x28, +0xFF, 0xCE, 0x02, 0x81, 0x00, 0x00, 0x00, 0xC4, 0x00, 0x1E, 0xFF, 0xE2, 0x00, 0x1F, 0xFF, 0xE2, +0x00, 0x20, 0xFF, 0xE2, 0x00, 0x21, 0xFF, 0xE2, 0x00, 0x22, 0xFF, 0xE2, 0x00, 0x23, 0xFF, 0xE2, +0x00, 0x24, 0xFF, 0xE2, 0x00, 0x47, 0xFF, 0xE2, 0x00, 0x48, 0xFF, 0xE2, 0x00, 0x49, 0xFF, 0xE2, +0x00, 0x4A, 0xFF, 0xE2, 0x00, 0x4B, 0xFF, 0xE2, 0x00, 0x4C, 0xFF, 0xE2, 0x00, 0x4D, 0xFF, 0xE2, +0x00, 0x64, 0xFF, 0xD8, 0x00, 0x65, 0xFF, 0xD8, 0x00, 0x80, 0xFF, 0xE2, 0x00, 0x81, 0xFF, 0xE2, +0x00, 0x82, 0xFF, 0xE2, 0x00, 0x83, 0xFF, 0xE2, 0x00, 0x84, 0xFF, 0xE2, 0x00, 0x85, 0xFF, 0xE2, +0x00, 0x86, 0xFF, 0xE2, 0x00, 0x87, 0xFF, 0xE2, 0x00, 0x88, 0xFF, 0xE2, 0x00, 0x89, 0xFF, 0xE2, +0x00, 0x8A, 0xFF, 0xE2, 0x00, 0x8B, 0xFF, 0xE2, 0x00, 0x8C, 0xFF, 0xE2, 0x00, 0x8D, 0xFF, 0xE2, +0x00, 0x8E, 0xFF, 0xE2, 0x00, 0x8F, 0xFF, 0xE2, 0x00, 0x90, 0xFF, 0xE2, 0x00, 0x91, 0xFF, 0xE2, +0x00, 0x92, 0xFF, 0xE2, 0x00, 0x93, 0xFF, 0xE2, 0x00, 0x94, 0xFF, 0xE2, 0x00, 0x95, 0xFF, 0xE2, +0x00, 0x96, 0xFF, 0xE2, 0x00, 0x97, 0xFF, 0xE2, 0x00, 0x98, 0xFF, 0xE2, 0x00, 0x99, 0xFF, 0xE2, +0x00, 0x9A, 0xFF, 0xE2, 0x00, 0x9B, 0xFF, 0xE2, 0x00, 0x9C, 0xFF, 0xE2, 0x00, 0x9D, 0xFF, 0xE2, +0x00, 0x9E, 0xFF, 0xE2, 0x00, 0x9F, 0xFF, 0xE2, 0x00, 0xA0, 0xFF, 0xE2, 0x00, 0xA1, 0xFF, 0xE2, +0x00, 0xA2, 0xFF, 0xE2, 0x00, 0xA3, 0xFF, 0xE2, 0x00, 0xA6, 0xFF, 0xE2, 0x00, 0xBB, 0xFF, 0xE2, +0x01, 0x03, 0xFF, 0xD8, 0x01, 0x04, 0xFF, 0xD8, 0x01, 0x07, 0xFF, 0xE7, 0x01, 0x08, 0xFF, 0xE7, +0x01, 0x09, 0xFF, 0xE7, 0x01, 0x0A, 0xFF, 0xE7, 0x01, 0x0B, 0xFF, 0xE7, 0x01, 0x0C, 0xFF, 0xE7, +0x01, 0x0D, 0xFF, 0xE7, 0x01, 0x0E, 0xFF, 0xE7, 0x01, 0x0F, 0xFF, 0xE7, 0x01, 0x10, 0xFF, 0xE7, +0x01, 0x11, 0xFF, 0xE7, 0x01, 0x12, 0xFF, 0xE7, 0x01, 0x13, 0xFF, 0xE7, 0x01, 0x14, 0xFF, 0xE7, +0x01, 0x15, 0xFF, 0xE7, 0x01, 0x16, 0xFF, 0xE7, 0x01, 0x17, 0xFF, 0xE7, 0x01, 0x18, 0xFF, 0xE7, +0x01, 0x19, 0xFF, 0xE7, 0x01, 0x1A, 0xFF, 0xE7, 0x01, 0x1B, 0xFF, 0xE7, 0x01, 0x1C, 0xFF, 0xE7, +0x01, 0x1D, 0xFF, 0xE7, 0x01, 0x1E, 0xFF, 0xE7, 0x01, 0x1F, 0xFF, 0xE7, 0x01, 0x20, 0xFF, 0xE7, +0x01, 0x24, 0xFF, 0xE7, 0x01, 0x25, 0xFF, 0xE7, 0x01, 0x26, 0xFF, 0xE7, 0x01, 0x27, 0xFF, 0xE7, +0x01, 0x28, 0xFF, 0xE7, 0x01, 0x29, 0xFF, 0xE7, 0x01, 0x2A, 0xFF, 0xE7, 0x01, 0x2B, 0xFF, 0xE7, +0x01, 0x2C, 0xFF, 0xE7, 0x01, 0x2D, 0xFF, 0xE7, 0x01, 0x2E, 0xFF, 0xE7, 0x01, 0x2F, 0xFF, 0xE7, +0x01, 0x30, 0xFF, 0xE7, 0x01, 0x31, 0xFF, 0xE7, 0x01, 0x32, 0xFF, 0xE7, 0x01, 0x33, 0xFF, 0xE7, +0x01, 0x34, 0xFF, 0xE7, 0x01, 0x35, 0xFF, 0xE7, 0x01, 0x36, 0xFF, 0xE7, 0x01, 0x37, 0xFF, 0xE7, +0x01, 0x38, 0xFF, 0xE7, 0x01, 0x39, 0xFF, 0xE7, 0x01, 0x3A, 0xFF, 0xE7, 0x01, 0x3B, 0xFF, 0xE7, +0x01, 0x3C, 0xFF, 0xE7, 0x01, 0x3D, 0xFF, 0xE7, 0x01, 0x3E, 0xFF, 0xE7, 0x01, 0x3F, 0xFF, 0xE7, +0x01, 0x40, 0xFF, 0xE7, 0x01, 0x41, 0xFF, 0xE7, 0x01, 0x42, 0xFF, 0xE7, 0x01, 0x43, 0xFF, 0xE7, +0x01, 0x44, 0xFF, 0xE7, 0x01, 0x45, 0xFF, 0xE7, 0x01, 0x46, 0xFF, 0xE7, 0x01, 0x47, 0xFF, 0xE7, +0x01, 0x48, 0xFF, 0xE7, 0x01, 0x49, 0xFF, 0xE7, 0x01, 0x4B, 0xFF, 0xE8, 0x01, 0x4C, 0xFF, 0xE8, +0x01, 0x4D, 0xFF, 0xE8, 0x01, 0x4E, 0xFF, 0xE8, 0x01, 0x4F, 0xFF, 0xE8, 0x01, 0x50, 0xFF, 0xE8, +0x01, 0x51, 0xFF, 0xE8, 0x01, 0x69, 0x00, 0x1E, 0x01, 0x6A, 0x00, 0x1E, 0x01, 0x6B, 0x00, 0x1E, +0x01, 0x81, 0x00, 0x1E, 0x01, 0x86, 0xFF, 0xE7, 0x01, 0x87, 0xFF, 0xE7, 0x01, 0x88, 0xFF, 0xE7, +0x01, 0x89, 0xFF, 0xE7, 0x01, 0x8A, 0xFF, 0xE7, 0x01, 0x8B, 0xFF, 0xE7, 0x01, 0x8C, 0xFF, 0xE7, +0x01, 0x8D, 0xFF, 0xE7, 0x01, 0x8E, 0xFF, 0xE7, 0x01, 0x8F, 0xFF, 0xE7, 0x01, 0x90, 0xFF, 0xE7, +0x01, 0x91, 0xFF, 0xE7, 0x01, 0x92, 0xFF, 0xE7, 0x01, 0x93, 0xFF, 0xE7, 0x01, 0x94, 0xFF, 0xE7, +0x01, 0x95, 0xFF, 0xE7, 0x01, 0x96, 0xFF, 0xE7, 0x01, 0x97, 0xFF, 0xE7, 0x01, 0x98, 0xFF, 0xE7, +0x01, 0x99, 0xFF, 0xE7, 0x01, 0x9A, 0xFF, 0xE7, 0x01, 0x9B, 0xFF, 0xE7, 0x01, 0x9C, 0xFF, 0xE7, +0x01, 0x9D, 0xFF, 0xE7, 0x01, 0x9E, 0xFF, 0xE7, 0x01, 0x9F, 0xFF, 0xE7, 0x01, 0xA0, 0xFF, 0xE7, +0x01, 0xA1, 0xFF, 0xE7, 0x01, 0xA2, 0xFF, 0xE7, 0x01, 0xA3, 0xFF, 0xE7, 0x01, 0xA4, 0xFF, 0xE7, +0x01, 0xA5, 0xFF, 0xE7, 0x01, 0xA6, 0xFF, 0xE7, 0x01, 0xA7, 0xFF, 0xE7, 0x01, 0xA8, 0xFF, 0xE7, +0x01, 0xA9, 0xFF, 0xE7, 0x01, 0xAA, 0x00, 0x1E, 0x01, 0xAB, 0x00, 0x0F, 0x01, 0xAC, 0xFF, 0xE7, +0x01, 0xF8, 0xFF, 0xE7, 0x01, 0xF9, 0xFF, 0xE7, 0x01, 0xFA, 0xFF, 0xE7, 0x01, 0xFB, 0xFF, 0xE7, +0x01, 0xFC, 0xFF, 0xE7, 0x01, 0xFD, 0xFF, 0xE7, 0x01, 0xFE, 0xFF, 0xE7, 0x01, 0xFF, 0xFF, 0xE7, +0x02, 0x00, 0xFF, 0xE7, 0x02, 0x01, 0xFF, 0xE7, 0x02, 0x02, 0xFF, 0xE7, 0x02, 0x03, 0xFF, 0xE7, +0x02, 0x04, 0xFF, 0xE7, 0x02, 0x05, 0xFF, 0xE7, 0x02, 0x06, 0xFF, 0xE7, 0x02, 0x07, 0xFF, 0xE7, +0x02, 0x08, 0xFF, 0xE7, 0x02, 0x09, 0xFF, 0xE7, 0x02, 0x0A, 0xFF, 0xE7, 0x02, 0x0B, 0xFF, 0xE7, +0x02, 0x0C, 0xFF, 0xE7, 0x02, 0x0D, 0xFF, 0xE7, 0x02, 0x0E, 0xFF, 0xE7, 0x02, 0x0F, 0xFF, 0xE7, +0x02, 0x10, 0xFF, 0xE7, 0x02, 0x11, 0xFF, 0xE7, 0x00, 0x04, 0x00, 0xDB, 0xFF, 0xE3, 0x01, 0x2C, +0xFF, 0xDE, 0x01, 0xAB, 0x00, 0x08, 0x01, 0xE1, 0xFF, 0xEB, 0x00, 0xD2, 0x00, 0x1E, 0xFF, 0xCE, +0x00, 0x1F, 0xFF, 0xCE, 0x00, 0x20, 0xFF, 0xCE, 0x00, 0x21, 0xFF, 0xCE, 0x00, 0x22, 0xFF, 0xCE, +0x00, 0x23, 0xFF, 0xCE, 0x00, 0x24, 0xFF, 0xCE, 0x00, 0x47, 0xFF, 0xCE, 0x00, 0x48, 0xFF, 0xCE, +0x00, 0x49, 0xFF, 0xCE, 0x00, 0x4A, 0xFF, 0xCE, 0x00, 0x4B, 0xFF, 0xCE, 0x00, 0x4C, 0xFF, 0xCE, +0x00, 0x4D, 0xFF, 0xCE, 0x00, 0x80, 0xFF, 0xCE, 0x00, 0x81, 0xFF, 0xCE, 0x00, 0x82, 0xFF, 0xCE, +0x00, 0x83, 0xFF, 0xCE, 0x00, 0x84, 0xFF, 0xCE, 0x00, 0x85, 0xFF, 0xCE, 0x00, 0x86, 0xFF, 0xCE, +0x00, 0x87, 0xFF, 0xCE, 0x00, 0x88, 0xFF, 0xCE, 0x00, 0x89, 0xFF, 0xCE, 0x00, 0x8A, 0xFF, 0xCE, +0x00, 0x8B, 0xFF, 0xCE, 0x00, 0x8C, 0xFF, 0xCE, 0x00, 0x8D, 0xFF, 0xCE, 0x00, 0x8E, 0xFF, 0xCE, +0x00, 0x8F, 0xFF, 0xCE, 0x00, 0x90, 0xFF, 0xCE, 0x00, 0x91, 0xFF, 0xCE, 0x00, 0x92, 0xFF, 0xCE, +0x00, 0x93, 0xFF, 0xCE, 0x00, 0x94, 0xFF, 0xCE, 0x00, 0x95, 0xFF, 0xCE, 0x00, 0x96, 0xFF, 0xCE, +0x00, 0x97, 0xFF, 0xCE, 0x00, 0x98, 0xFF, 0xCE, 0x00, 0x99, 0xFF, 0xCE, 0x00, 0x9A, 0xFF, 0xCE, +0x00, 0x9B, 0xFF, 0xCE, 0x00, 0x9C, 0xFF, 0xCE, 0x00, 0x9D, 0xFF, 0xCE, 0x00, 0x9E, 0xFF, 0xCE, +0x00, 0x9F, 0xFF, 0xCE, 0x00, 0xA0, 0xFF, 0xCE, 0x00, 0xA1, 0xFF, 0xCE, 0x00, 0xA2, 0xFF, 0xCE, +0x00, 0xA3, 0xFF, 0xCE, 0x00, 0xA6, 0xFF, 0xCE, 0x00, 0xBB, 0xFF, 0xCE, 0x00, 0xBC, 0xFF, 0xC4, +0x00, 0xBD, 0xFF, 0xC4, 0x00, 0xBE, 0xFF, 0xC4, 0x00, 0xBF, 0xFF, 0xC4, 0x00, 0xC0, 0xFF, 0xC4, +0x00, 0xC1, 0xFF, 0xC4, 0x00, 0xC2, 0xFF, 0xC4, 0x00, 0xDB, 0xFF, 0xD8, 0x00, 0xDC, 0xFF, 0xD8, +0x00, 0xDD, 0xFF, 0xD8, 0x00, 0xDE, 0xFF, 0xD8, 0x00, 0xDF, 0xFF, 0xD8, 0x00, 0xE0, 0xFF, 0xD8, +0x00, 0xE2, 0xFF, 0xB0, 0x00, 0xE3, 0xFF, 0xB0, 0x00, 0xE4, 0xFF, 0xB0, 0x00, 0xE5, 0xFF, 0xB0, +0x00, 0xE6, 0xFF, 0xB0, 0x00, 0xE7, 0xFF, 0xB0, 0x00, 0xE8, 0xFF, 0xB0, 0x00, 0xE9, 0xFF, 0xB0, +0x00, 0xEA, 0xFF, 0xB0, 0x00, 0xEB, 0xFF, 0xB0, 0x01, 0x07, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, +0x01, 0x09, 0x00, 0x00, 0x01, 0x0A, 0x00, 0x00, 0x01, 0x0B, 0x00, 0x00, 0x01, 0x0C, 0x00, 0x00, +0x01, 0x0D, 0x00, 0x00, 0x01, 0x0E, 0x00, 0x00, 0x01, 0x0F, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, +0x01, 0x11, 0x00, 0x00, 0x01, 0x12, 0x00, 0x00, 0x01, 0x13, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, +0x01, 0x15, 0x00, 0x00, 0x01, 0x16, 0x00, 0x00, 0x01, 0x17, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, +0x01, 0x19, 0x00, 0x00, 0x01, 0x1A, 0x00, 0x00, 0x01, 0x1B, 0x00, 0x00, 0x01, 0x1C, 0x00, 0x00, +0x01, 0x1D, 0x00, 0x00, 0x01, 0x1E, 0x00, 0x00, 0x01, 0x1F, 0x00, 0x00, 0x01, 0x20, 0x00, 0x00, +0x01, 0x24, 0x00, 0x00, 0x01, 0x25, 0x00, 0x00, 0x01, 0x26, 0x00, 0x00, 0x01, 0x27, 0x00, 0x00, +0x01, 0x28, 0x00, 0x00, 0x01, 0x29, 0x00, 0x00, 0x01, 0x2A, 0x00, 0x00, 0x01, 0x2B, 0x00, 0x00, +0x01, 0x2C, 0xFF, 0xEA, 0x01, 0x2D, 0x00, 0x00, 0x01, 0x2E, 0x00, 0x00, 0x01, 0x2F, 0x00, 0x00, +0x01, 0x30, 0x00, 0x00, 0x01, 0x31, 0x00, 0x00, 0x01, 0x32, 0x00, 0x00, 0x01, 0x33, 0x00, 0x00, +0x01, 0x34, 0x00, 0x00, 0x01, 0x35, 0x00, 0x00, 0x01, 0x36, 0x00, 0x00, 0x01, 0x37, 0x00, 0x00, +0x01, 0x38, 0x00, 0x00, 0x01, 0x39, 0x00, 0x00, 0x01, 0x3A, 0x00, 0x00, 0x01, 0x3B, 0x00, 0x00, +0x01, 0x3C, 0x00, 0x00, 0x01, 0x3D, 0x00, 0x00, 0x01, 0x3E, 0x00, 0x00, 0x01, 0x3F, 0x00, 0x00, +0x01, 0x40, 0x00, 0x00, 0x01, 0x41, 0x00, 0x00, 0x01, 0x42, 0x00, 0x00, 0x01, 0x43, 0x00, 0x00, +0x01, 0x44, 0x00, 0x00, 0x01, 0x45, 0x00, 0x00, 0x01, 0x46, 0x00, 0x00, 0x01, 0x47, 0x00, 0x00, +0x01, 0x48, 0x00, 0x00, 0x01, 0x49, 0x00, 0x00, 0x01, 0x69, 0x00, 0x3C, 0x01, 0x6A, 0x00, 0x3C, +0x01, 0x6B, 0x00, 0x3C, 0x01, 0x81, 0x00, 0x3C, 0x01, 0x86, 0x00, 0x00, 0x01, 0x87, 0x00, 0x00, +0x01, 0x88, 0x00, 0x00, 0x01, 0x89, 0x00, 0x00, 0x01, 0x8A, 0x00, 0x00, 0x01, 0x8B, 0x00, 0x00, +0x01, 0x8C, 0x00, 0x00, 0x01, 0x8D, 0x00, 0x00, 0x01, 0x8E, 0x00, 0x00, 0x01, 0x8F, 0x00, 0x00, +0x01, 0x90, 0x00, 0x00, 0x01, 0x91, 0x00, 0x00, 0x01, 0x92, 0x00, 0x00, 0x01, 0x93, 0x00, 0x00, +0x01, 0x94, 0x00, 0x00, 0x01, 0x95, 0x00, 0x00, 0x01, 0x96, 0x00, 0x00, 0x01, 0x97, 0x00, 0x00, +0x01, 0x98, 0x00, 0x00, 0x01, 0x99, 0x00, 0x00, 0x01, 0x9A, 0x00, 0x00, 0x01, 0x9B, 0x00, 0x00, +0x01, 0x9C, 0x00, 0x00, 0x01, 0x9D, 0x00, 0x00, 0x01, 0x9E, 0x00, 0x00, 0x01, 0x9F, 0x00, 0x00, +0x01, 0xA0, 0x00, 0x00, 0x01, 0xA1, 0x00, 0x00, 0x01, 0xA2, 0x00, 0x00, 0x01, 0xA3, 0x00, 0x00, +0x01, 0xA4, 0x00, 0x00, 0x01, 0xA5, 0x00, 0x00, 0x01, 0xA6, 0x00, 0x00, 0x01, 0xA7, 0x00, 0x00, +0x01, 0xA8, 0x00, 0x00, 0x01, 0xA9, 0x00, 0x00, 0x01, 0xAC, 0x00, 0x00, 0x01, 0xC0, 0xFF, 0xFA, +0x01, 0xE1, 0xFF, 0xF9, 0x01, 0xE7, 0xFF, 0xFF, 0x01, 0xF8, 0x00, 0x00, 0x01, 0xF9, 0x00, 0x00, +0x01, 0xFA, 0x00, 0x00, 0x01, 0xFB, 0x00, 0x00, 0x01, 0xFC, 0x00, 0x00, 0x01, 0xFD, 0x00, 0x00, +0x01, 0xFE, 0x00, 0x00, 0x01, 0xFF, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00, 0x00, +0x02, 0x02, 0x00, 0x00, 0x02, 0x03, 0x00, 0x00, 0x02, 0x04, 0x00, 0x00, 0x02, 0x05, 0x00, 0x00, +0x02, 0x06, 0x00, 0x00, 0x02, 0x07, 0x00, 0x00, 0x02, 0x08, 0x00, 0x00, 0x02, 0x09, 0x00, 0x00, +0x02, 0x0A, 0x00, 0x00, 0x02, 0x0B, 0x00, 0x00, 0x02, 0x0C, 0x00, 0x00, 0x02, 0x0D, 0x00, 0x00, +0x02, 0x0E, 0x00, 0x00, 0x02, 0x0F, 0x00, 0x00, 0x02, 0x10, 0x00, 0x00, 0x02, 0x11, 0x00, 0x00, +0x02, 0x77, 0xFF, 0xA4, 0x00, 0xED, 0x00, 0x01, 0xFF, 0x9C, 0x00, 0x02, 0xFF, 0x9C, 0x00, 0x03, +0xFF, 0x9C, 0x00, 0x04, 0xFF, 0x9C, 0x00, 0x05, 0xFF, 0x9C, 0x00, 0x06, 0xFF, 0x9C, 0x00, 0x07, +0xFF, 0x9C, 0x00, 0x08, 0xFF, 0x9C, 0x00, 0x09, 0xFF, 0x9C, 0x00, 0x0A, 0xFF, 0x9C, 0x00, 0x0B, +0xFF, 0x9C, 0x00, 0x0C, 0xFF, 0x9C, 0x00, 0x0D, 0xFF, 0x9C, 0x00, 0x0E, 0xFF, 0x9C, 0x00, 0x0F, +0xFF, 0x9C, 0x00, 0x10, 0xFF, 0x9C, 0x00, 0x11, 0xFF, 0x9C, 0x00, 0x12, 0xFF, 0x9C, 0x00, 0x13, +0xFF, 0x9C, 0x00, 0x14, 0xFF, 0x9C, 0x00, 0x15, 0xFF, 0x9C, 0x00, 0x16, 0xFF, 0x9C, 0x00, 0x17, +0xFF, 0x9C, 0x00, 0x18, 0xFF, 0x9C, 0x00, 0x19, 0xFF, 0x9C, 0x00, 0x1A, 0xFF, 0x9C, 0x00, 0x1E, +0xFF, 0xD8, 0x00, 0x1F, 0xFF, 0xD8, 0x00, 0x20, 0xFF, 0xD8, 0x00, 0x21, 0xFF, 0xD8, 0x00, 0x22, +0xFF, 0xD8, 0x00, 0x23, 0xFF, 0xD8, 0x00, 0x24, 0xFF, 0xD8, 0x00, 0x47, 0xFF, 0xD8, 0x00, 0x48, +0xFF, 0xD8, 0x00, 0x49, 0xFF, 0xD8, 0x00, 0x4A, 0xFF, 0xD8, 0x00, 0x4B, 0xFF, 0xD8, 0x00, 0x4C, +0xFF, 0xD8, 0x00, 0x4D, 0xFF, 0xD8, 0x00, 0x64, 0xFF, 0xCE, 0x00, 0x65, 0xFF, 0xCE, 0x00, 0x80, +0xFF, 0xD8, 0x00, 0x81, 0xFF, 0xD8, 0x00, 0x82, 0xFF, 0xD8, 0x00, 0x83, 0xFF, 0xD8, 0x00, 0x84, +0xFF, 0xD8, 0x00, 0x85, 0xFF, 0xD8, 0x00, 0x86, 0xFF, 0xD8, 0x00, 0x87, 0xFF, 0xD8, 0x00, 0x88, +0xFF, 0xD8, 0x00, 0x89, 0xFF, 0xD8, 0x00, 0x8A, 0xFF, 0xD8, 0x00, 0x8B, 0xFF, 0xD8, 0x00, 0x8C, +0xFF, 0xD8, 0x00, 0x8D, 0xFF, 0xD8, 0x00, 0x8E, 0xFF, 0xD8, 0x00, 0x8F, 0xFF, 0xD8, 0x00, 0x90, +0xFF, 0xD8, 0x00, 0x91, 0xFF, 0xD8, 0x00, 0x92, 0xFF, 0xD8, 0x00, 0x93, 0xFF, 0xD8, 0x00, 0x94, +0xFF, 0xD8, 0x00, 0x95, 0xFF, 0xD8, 0x00, 0x96, 0xFF, 0xD8, 0x00, 0x97, 0xFF, 0xD8, 0x00, 0x98, +0xFF, 0xD8, 0x00, 0x99, 0xFF, 0xD8, 0x00, 0x9A, 0xFF, 0xD8, 0x00, 0x9B, 0xFF, 0xD8, 0x00, 0x9C, +0xFF, 0xD8, 0x00, 0x9D, 0xFF, 0xD8, 0x00, 0x9E, 0xFF, 0xD8, 0x00, 0x9F, 0xFF, 0xD8, 0x00, 0xA0, +0xFF, 0xD8, 0x00, 0xA1, 0xFF, 0xD8, 0x00, 0xA2, 0xFF, 0xD8, 0x00, 0xA3, 0xFF, 0xD8, 0x00, 0xA6, +0xFF, 0xD8, 0x00, 0xBB, 0xFF, 0xD8, 0x01, 0x03, 0xFF, 0xCE, 0x01, 0x04, 0xFF, 0xCE, 0x01, 0x07, +0xFF, 0xCE, 0x01, 0x08, 0xFF, 0xCE, 0x01, 0x09, 0xFF, 0xCE, 0x01, 0x0A, 0xFF, 0xCE, 0x01, 0x0B, +0xFF, 0xCE, 0x01, 0x0C, 0xFF, 0xCE, 0x01, 0x0D, 0xFF, 0xCE, 0x01, 0x0E, 0xFF, 0xCE, 0x01, 0x0F, +0xFF, 0xCE, 0x01, 0x10, 0xFF, 0xCE, 0x01, 0x11, 0xFF, 0xCE, 0x01, 0x12, 0xFF, 0xCE, 0x01, 0x13, +0xFF, 0xCE, 0x01, 0x14, 0xFF, 0xCE, 0x01, 0x15, 0xFF, 0xCE, 0x01, 0x16, 0xFF, 0xCE, 0x01, 0x17, +0xFF, 0xCE, 0x01, 0x18, 0xFF, 0xCE, 0x01, 0x19, 0xFF, 0xCE, 0x01, 0x1A, 0xFF, 0xCE, 0x01, 0x1B, +0xFF, 0xCE, 0x01, 0x1C, 0xFF, 0xCE, 0x01, 0x1D, 0xFF, 0xCE, 0x01, 0x1E, 0xFF, 0xCE, 0x01, 0x1F, +0xFF, 0xCE, 0x01, 0x20, 0xFF, 0xCE, 0x01, 0x24, 0xFF, 0xCE, 0x01, 0x25, 0xFF, 0xCE, 0x01, 0x26, +0xFF, 0xCE, 0x01, 0x27, 0xFF, 0xCE, 0x01, 0x28, 0xFF, 0xCE, 0x01, 0x29, 0xFF, 0xCE, 0x01, 0x2A, +0xFF, 0xCE, 0x01, 0x2B, 0xFF, 0xCE, 0x01, 0x2C, 0xFF, 0xE0, 0x01, 0x2D, 0xFF, 0xCE, 0x01, 0x2E, +0xFF, 0xCE, 0x01, 0x2F, 0xFF, 0xCE, 0x01, 0x30, 0xFF, 0xCE, 0x01, 0x31, 0xFF, 0xCE, 0x01, 0x32, +0xFF, 0xCE, 0x01, 0x33, 0xFF, 0xCE, 0x01, 0x34, 0xFF, 0xCE, 0x01, 0x35, 0xFF, 0xCE, 0x01, 0x36, +0xFF, 0xCE, 0x01, 0x37, 0xFF, 0xCE, 0x01, 0x38, 0xFF, 0xCE, 0x01, 0x39, 0xFF, 0xCE, 0x01, 0x3A, +0xFF, 0xCE, 0x01, 0x3B, 0xFF, 0xCE, 0x01, 0x3C, 0xFF, 0xCE, 0x01, 0x3D, 0xFF, 0xCE, 0x01, 0x3E, +0xFF, 0xCE, 0x01, 0x3F, 0xFF, 0xCE, 0x01, 0x40, 0xFF, 0xCE, 0x01, 0x41, 0xFF, 0xCE, 0x01, 0x42, +0xFF, 0xCE, 0x01, 0x43, 0xFF, 0xCE, 0x01, 0x44, 0xFF, 0xCE, 0x01, 0x45, 0xFF, 0xCE, 0x01, 0x46, +0xFF, 0xCE, 0x01, 0x47, 0xFF, 0xCE, 0x01, 0x48, 0xFF, 0xCE, 0x01, 0x49, 0xFF, 0xCE, 0x01, 0x4B, +0xFF, 0xCE, 0x01, 0x4C, 0xFF, 0xCE, 0x01, 0x4D, 0xFF, 0xCE, 0x01, 0x4E, 0xFF, 0xCE, 0x01, 0x4F, +0xFF, 0xCE, 0x01, 0x50, 0xFF, 0xCE, 0x01, 0x51, 0xFF, 0xCE, 0x01, 0x86, 0xFF, 0xCE, 0x01, 0x87, +0xFF, 0xCE, 0x01, 0x88, 0xFF, 0xCE, 0x01, 0x89, 0xFF, 0xCE, 0x01, 0x8A, 0xFF, 0xCE, 0x01, 0x8B, +0xFF, 0xCE, 0x01, 0x8C, 0xFF, 0xCE, 0x01, 0x8D, 0xFF, 0xCE, 0x01, 0x8E, 0xFF, 0xCE, 0x01, 0x8F, +0xFF, 0xCE, 0x01, 0x90, 0xFF, 0xCE, 0x01, 0x91, 0xFF, 0xCE, 0x01, 0x92, 0xFF, 0xCE, 0x01, 0x93, +0xFF, 0xCE, 0x01, 0x94, 0xFF, 0xCE, 0x01, 0x95, 0xFF, 0xCE, 0x01, 0x96, 0xFF, 0xCE, 0x01, 0x97, +0xFF, 0xCE, 0x01, 0x98, 0xFF, 0xCE, 0x01, 0x99, 0xFF, 0xCE, 0x01, 0x9A, 0xFF, 0xCE, 0x01, 0x9B, +0xFF, 0xCE, 0x01, 0x9C, 0xFF, 0xCE, 0x01, 0x9D, 0xFF, 0xCE, 0x01, 0x9E, 0xFF, 0xCE, 0x01, 0x9F, +0xFF, 0xCE, 0x01, 0xA0, 0xFF, 0xCE, 0x01, 0xA1, 0xFF, 0xCE, 0x01, 0xA2, 0xFF, 0xCE, 0x01, 0xA3, +0xFF, 0xCE, 0x01, 0xA4, 0xFF, 0xCE, 0x01, 0xA5, 0xFF, 0xCE, 0x01, 0xA6, 0xFF, 0xCE, 0x01, 0xA7, +0xFF, 0xCE, 0x01, 0xA8, 0xFF, 0xCE, 0x01, 0xA9, 0xFF, 0xCE, 0x01, 0xAC, 0xFF, 0xCE, 0x01, 0xB5, +0xFF, 0xE2, 0x01, 0xB6, 0xFF, 0xE2, 0x01, 0xB7, 0xFF, 0xE2, 0x01, 0xB8, 0xFF, 0xE2, 0x01, 0xB9, +0xFF, 0xE2, 0x01, 0xBA, 0xFF, 0xE2, 0x01, 0xBB, 0xFF, 0xE2, 0x01, 0xBC, 0xFF, 0xE2, 0x01, 0xBD, +0xFF, 0xE2, 0x01, 0xBE, 0xFF, 0xE2, 0x01, 0xBF, 0xFF, 0xE2, 0x01, 0xC0, 0xFF, 0xF4, 0x01, 0xE1, +0xFF, 0xFF, 0x01, 0xE7, 0xFF, 0xFA, 0x01, 0xF8, 0xFF, 0xCE, 0x01, 0xF9, 0xFF, 0xCE, 0x01, 0xFA, +0xFF, 0xCE, 0x01, 0xFB, 0xFF, 0xCE, 0x01, 0xFC, 0xFF, 0xCE, 0x01, 0xFD, 0xFF, 0xCE, 0x01, 0xFE, +0xFF, 0xCE, 0x01, 0xFF, 0xFF, 0xCE, 0x02, 0x00, 0xFF, 0xCE, 0x02, 0x01, 0xFF, 0xCE, 0x02, 0x02, +0xFF, 0xCE, 0x02, 0x03, 0xFF, 0xCE, 0x02, 0x04, 0xFF, 0xCE, 0x02, 0x05, 0xFF, 0xCE, 0x02, 0x06, +0xFF, 0xCE, 0x02, 0x07, 0xFF, 0xCE, 0x02, 0x08, 0xFF, 0xCE, 0x02, 0x09, 0xFF, 0xCE, 0x02, 0x0A, +0xFF, 0xCE, 0x02, 0x0B, 0xFF, 0xCE, 0x02, 0x0C, 0xFF, 0xCE, 0x02, 0x0D, 0xFF, 0xCE, 0x02, 0x0E, +0xFF, 0xCE, 0x02, 0x0F, 0xFF, 0xCE, 0x02, 0x10, 0xFF, 0xCE, 0x02, 0x11, 0xFF, 0xCE, 0x02, 0x22, +0xFF, 0x9C, 0x02, 0x26, 0xFF, 0xCE, 0x02, 0x27, 0xFF, 0xE2, 0x02, 0x28, 0xFF, 0xE2, 0x02, 0x2A, +0xFF, 0xC4, 0x02, 0x2C, 0xFF, 0xCE, 0x02, 0x76, 0xFF, 0xA4, 0x00, 0x1D, 0x00, 0x01, 0xFF, 0xB5, +0x00, 0x02, 0xFF, 0xB5, 0x00, 0x03, 0xFF, 0xB5, 0x00, 0x04, 0xFF, 0xB5, 0x00, 0x05, 0xFF, 0xB5, +0x00, 0x06, 0xFF, 0xB5, 0x00, 0x07, 0xFF, 0xB5, 0x00, 0x08, 0xFF, 0xB5, 0x00, 0x09, 0xFF, 0xB5, +0x00, 0x0A, 0xFF, 0xB5, 0x00, 0x0B, 0xFF, 0xB5, 0x00, 0x0C, 0xFF, 0xB5, 0x00, 0x0D, 0xFF, 0xB5, +0x00, 0x0E, 0xFF, 0xB5, 0x00, 0x0F, 0xFF, 0xB5, 0x00, 0x10, 0xFF, 0xB5, 0x00, 0x11, 0xFF, 0xB5, +0x00, 0x12, 0xFF, 0xB5, 0x00, 0x13, 0xFF, 0xB5, 0x00, 0x14, 0xFF, 0xB5, 0x00, 0x15, 0xFF, 0xB5, +0x00, 0x16, 0xFF, 0xB5, 0x00, 0x17, 0xFF, 0xB5, 0x00, 0x18, 0xFF, 0xB5, 0x00, 0x19, 0xFF, 0xB5, +0x00, 0x1A, 0xFF, 0xB5, 0x01, 0x2C, 0xFF, 0xE7, 0x01, 0xE1, 0x00, 0x06, 0x02, 0x22, 0xFF, 0xB5, +0x00, 0x01, 0x00, 0xDB, 0xFF, 0xF8, 0x00, 0x03, 0x00, 0xDB, 0xFF, 0xF4, 0x01, 0x2C, 0x00, 0x0A, +0x01, 0xE7, 0xFF, 0xFA, 0x00, 0x03, 0x00, 0xDB, 0xFF, 0xEF, 0x01, 0x2C, 0xFF, 0xE2, 0x01, 0xE1, +0xFF, 0xF7, 0x00, 0x20, 0x00, 0x01, 0xFF, 0xD8, 0x00, 0x02, 0xFF, 0xD8, 0x00, 0x03, 0xFF, 0xD8, +0x00, 0x04, 0xFF, 0xD8, 0x00, 0x05, 0xFF, 0xD8, 0x00, 0x06, 0xFF, 0xD8, 0x00, 0x07, 0xFF, 0xD8, +0x00, 0x08, 0xFF, 0xD8, 0x00, 0x09, 0xFF, 0xD8, 0x00, 0x0A, 0xFF, 0xD8, 0x00, 0x0B, 0xFF, 0xD8, +0x00, 0x0C, 0xFF, 0xD8, 0x00, 0x0D, 0xFF, 0xD8, 0x00, 0x0E, 0xFF, 0xD8, 0x00, 0x0F, 0xFF, 0xD8, +0x00, 0x10, 0xFF, 0xD8, 0x00, 0x11, 0xFF, 0xD8, 0x00, 0x12, 0xFF, 0xD8, 0x00, 0x13, 0xFF, 0xD8, +0x00, 0x14, 0xFF, 0xD8, 0x00, 0x15, 0xFF, 0xD8, 0x00, 0x16, 0xFF, 0xD8, 0x00, 0x17, 0xFF, 0xD8, +0x00, 0x18, 0xFF, 0xD8, 0x00, 0x19, 0xFF, 0xD8, 0x00, 0x1A, 0xFF, 0xD8, 0x00, 0x64, 0xFF, 0xB5, +0x00, 0x65, 0xFF, 0xB5, 0x01, 0x03, 0xFF, 0xB5, 0x01, 0x04, 0xFF, 0xB5, 0x01, 0x2C, 0xFF, 0xF1, +0x02, 0x22, 0xFF, 0xD8, 0x00, 0x01, 0x00, 0xDB, 0xFF, 0xFA, 0x00, 0x19, 0x00, 0xBC, 0xFF, 0x9C, +0x00, 0xBD, 0xFF, 0x9C, 0x00, 0xBE, 0xFF, 0x9C, 0x00, 0xBF, 0xFF, 0x9C, 0x00, 0xC0, 0xFF, 0x9C, +0x00, 0xC1, 0xFF, 0x9C, 0x00, 0xC2, 0xFF, 0x9C, 0x00, 0xDB, 0xFF, 0x88, 0x00, 0xDC, 0xFF, 0xB0, +0x00, 0xDD, 0xFF, 0xB0, 0x00, 0xDE, 0xFF, 0xB0, 0x00, 0xDF, 0xFF, 0xB0, 0x00, 0xE0, 0xFF, 0xB0, +0x00, 0xE2, 0xFF, 0x88, 0x00, 0xE3, 0xFF, 0x88, 0x00, 0xE4, 0xFF, 0x88, 0x00, 0xE5, 0xFF, 0x88, +0x00, 0xE6, 0xFF, 0x88, 0x00, 0xE7, 0xFF, 0x88, 0x00, 0xE8, 0xFF, 0x88, 0x00, 0xE9, 0xFF, 0x88, +0x00, 0xEA, 0xFF, 0x88, 0x00, 0xEB, 0xFF, 0x88, 0x01, 0xE1, 0xFF, 0xD8, 0x02, 0x2A, 0xFF, 0xE7, +0x00, 0x19, 0x00, 0xBC, 0xFF, 0x9C, 0x00, 0xBD, 0xFF, 0x9C, 0x00, 0xBE, 0xFF, 0x9C, 0x00, 0xBF, +0xFF, 0x9C, 0x00, 0xC0, 0xFF, 0x9C, 0x00, 0xC1, 0xFF, 0x9C, 0x00, 0xC2, 0xFF, 0x9C, 0x00, 0xDB, +0xFF, 0x9C, 0x00, 0xDC, 0xFF, 0xB0, 0x00, 0xDD, 0xFF, 0xB0, 0x00, 0xDE, 0xFF, 0xB0, 0x00, 0xDF, +0xFF, 0xB0, 0x00, 0xE0, 0xFF, 0xB0, 0x00, 0xE2, 0xFF, 0x88, 0x00, 0xE3, 0xFF, 0x88, 0x00, 0xE4, +0xFF, 0x88, 0x00, 0xE5, 0xFF, 0x88, 0x00, 0xE6, 0xFF, 0x88, 0x00, 0xE7, 0xFF, 0x88, 0x00, 0xE8, +0xFF, 0x88, 0x00, 0xE9, 0xFF, 0x88, 0x00, 0xEA, 0xFF, 0x88, 0x00, 0xEB, 0xFF, 0x88, 0x01, 0xE1, +0xFF, 0xD8, 0x02, 0x2A, 0xFF, 0xE7, 0x00, 0x02, 0x02, 0x76, 0xFF, 0xCE, 0x02, 0xE1, 0xFF, 0xD8, +0x00, 0x01, 0x02, 0xE1, 0xFF, 0xE2, 0x00, 0x0A, 0x02, 0x27, 0xFF, 0xF1, 0x02, 0x28, 0xFF, 0xEC, +0x02, 0x2A, 0xFF, 0xE7, 0x02, 0x2C, 0xFF, 0xEC, 0x02, 0x2E, 0xFF, 0xEC, 0x02, 0x69, 0xFF, 0xB0, +0x02, 0x6A, 0xFF, 0x9C, 0x02, 0x76, 0xFF, 0x88, 0x02, 0xD5, 0xFF, 0xCE, 0x02, 0xE1, 0xFF, 0xA6, +0x00, 0x01, 0x02, 0xE1, 0xFF, 0xEC, 0x00, 0x02, 0x02, 0x76, 0xFF, 0xD8, 0x02, 0xE1, 0xFF, 0xEC, +0x00, 0x03, 0x02, 0x28, 0xFF, 0xEC, 0x02, 0x2D, 0xFF, 0xEC, 0x02, 0xDF, 0xFF, 0xC4, 0x00, 0x02, +0x02, 0x76, 0xFF, 0xE7, 0x02, 0xE1, 0xFF, 0xE2, 0x00, 0x02, 0x02, 0x2A, 0xFF, 0xEC, 0x02, 0x8C, +0x00, 0x0A, 0x00, 0x01, 0x02, 0xD5, 0xFF, 0xD8, 0x00, 0x02, 0x02, 0x76, 0xFF, 0xCE, 0x02, 0xE1, +0xFF, 0xCE, 0x00, 0x03, 0x02, 0x6A, 0x00, 0x00, 0x02, 0x76, 0xFF, 0xEC, 0x02, 0xA7, 0xFF, 0xE2, +0x00, 0x05, 0x01, 0x2C, 0xFF, 0xFD, 0x02, 0x72, 0xFF, 0xFA, 0x02, 0x76, 0xFF, 0xFF, 0x02, 0x77, +0xFF, 0xFA, 0x02, 0xA7, 0xFF, 0xFD, 0x00, 0x03, 0x02, 0x6A, 0xFF, 0xD8, 0x02, 0x76, 0xFF, 0xEC, +0x02, 0xA7, 0xFF, 0xE2, 0x00, 0x09, 0x01, 0x2C, 0xFF, 0xFC, 0x02, 0x6A, 0xFF, 0xD8, 0x02, 0x70, +0x00, 0x04, 0x02, 0x71, 0xFF, 0xF4, 0x02, 0x74, 0x00, 0x06, 0x02, 0x76, 0xFF, 0xEC, 0x02, 0x77, +0xFF, 0xFF, 0x02, 0x85, 0xFF, 0xEB, 0x02, 0xA7, 0xFF, 0xE2, 0x00, 0x09, 0x01, 0xE1, 0xFF, 0xFD, +0x01, 0xE7, 0xFF, 0xFD, 0x02, 0x72, 0x00, 0x0A, 0x02, 0x74, 0xFF, 0xEC, 0x02, 0x76, 0xFF, 0xF4, +0x02, 0x77, 0xFF, 0xFB, 0x02, 0x85, 0xFF, 0xDE, 0x02, 0x8A, 0xFF, 0xE7, 0x02, 0x8C, 0xFF, 0xE7, +0x00, 0x02, 0x02, 0x74, 0x00, 0x14, 0x02, 0x76, 0xFF, 0xEC, 0x00, 0x04, 0x00, 0xDB, 0xFF, 0xF6, +0x02, 0x77, 0xFF, 0xFA, 0x02, 0x85, 0x00, 0x01, 0x02, 0x8A, 0x00, 0x1E, 0x00, 0x02, 0x02, 0x6A, +0xFF, 0xFD, 0x02, 0x77, 0xFF, 0xE2, 0x00, 0x04, 0x02, 0x74, 0x00, 0x1E, 0x02, 0x76, 0xFF, 0xEC, +0x02, 0x8A, 0x00, 0x1E, 0x02, 0x8E, 0x00, 0x28, 0x00, 0x0A, 0x00, 0x53, 0xFF, 0xF1, 0x01, 0xE7, +0xFF, 0xFD, 0x02, 0x71, 0xFF, 0xEC, 0x02, 0x72, 0x00, 0x0A, 0x02, 0x74, 0xFF, 0xF1, 0x02, 0x76, +0xFF, 0xE3, 0x02, 0x77, 0xFF, 0xCE, 0x02, 0x85, 0xFF, 0xCA, 0x02, 0x8A, 0xFF, 0xE2, 0x02, 0x8C, +0xFF, 0xE7, 0x00, 0x04, 0x02, 0x76, 0xFF, 0xCE, 0x02, 0x77, 0xFF, 0xCE, 0x02, 0x8A, 0xFF, 0xE7, +0x02, 0x8C, 0xFF, 0xE7, 0x00, 0x01, 0x02, 0x77, 0xFF, 0xE2, 0x00, 0x03, 0x02, 0x76, 0xFF, 0x88, +0x02, 0x81, 0xFF, 0x88, 0x02, 0xA7, 0xFF, 0xCE, 0x00, 0x01, 0x02, 0x81, 0xFF, 0xB0, 0x00, 0x03, +0x02, 0x76, 0xFF, 0xB0, 0x02, 0x81, 0xFF, 0xBA, 0x02, 0xA7, 0xFF, 0xE2, 0x00, 0x0B, 0x02, 0x6F, +0xFF, 0xFA, 0x02, 0x70, 0x00, 0x07, 0x02, 0x71, 0xFF, 0xEC, 0x02, 0x72, 0xFF, 0xF4, 0x02, 0x73, +0xFF, 0xF8, 0x02, 0x76, 0xFF, 0xB0, 0x02, 0x81, 0xFF, 0x9C, 0x02, 0x85, 0xFF, 0xE3, 0x02, 0xA6, +0xFF, 0xFA, 0x02, 0xA7, 0xFF, 0xCE, 0x02, 0xAC, 0x00, 0x06, 0x00, 0x05, 0x02, 0x76, 0xFF, 0xC4, +0x02, 0x7E, 0xFF, 0x9C, 0x02, 0x80, 0xFF, 0x9C, 0x02, 0x81, 0xFF, 0x9C, 0x02, 0xA7, 0xFF, 0xC9, +0x00, 0x04, 0x02, 0x77, 0xFF, 0xD8, 0x02, 0x7E, 0xFF, 0xC4, 0x02, 0x80, 0x00, 0x00, 0x02, 0x81, +0xFF, 0xC4, 0x00, 0x04, 0x02, 0x77, 0xFF, 0xD8, 0x02, 0x7E, 0xFF, 0xC4, 0x02, 0x80, 0xFF, 0xC4, +0x02, 0x81, 0xFF, 0xC4, 0x00, 0x06, 0x00, 0x53, 0xFF, 0xF1, 0x02, 0x76, 0xFF, 0xD8, 0x02, 0x77, +0xFF, 0xCE, 0x02, 0x85, 0xFF, 0xF6, 0x02, 0x8A, 0xFF, 0xE2, 0x02, 0x8C, 0xFF, 0xE7, 0x00, 0x0E, +0x01, 0xE1, 0x00, 0x03, 0x01, 0xE7, 0xFF, 0xFD, 0x02, 0x69, 0xFF, 0x9C, 0x02, 0x6A, 0xFF, 0x9C, +0x02, 0x6E, 0x00, 0x0A, 0x02, 0x6F, 0x00, 0x14, 0x02, 0x71, 0xFF, 0xEC, 0x02, 0x72, 0x00, 0x19, +0x02, 0x73, 0x00, 0x04, 0x02, 0x74, 0xFF, 0xFB, 0x02, 0x76, 0xFF, 0xD8, 0x02, 0x77, 0xFF, 0xEC, +0x02, 0x85, 0xFF, 0xCA, 0x02, 0xAC, 0xFF, 0xF0, 0x00, 0x04, 0x02, 0x69, 0xFF, 0x9C, 0x02, 0x6A, +0xFF, 0x9C, 0x02, 0x76, 0xFF, 0xB0, 0x02, 0x77, 0xFF, 0xCE, 0x00, 0x08, 0x00, 0x2F, 0x00, 0x00, +0x00, 0x46, 0x00, 0x00, 0x00, 0x4E, 0x00, 0x00, 0x02, 0x74, 0xFF, 0xB5, 0x02, 0x77, 0xFF, 0x9C, +0x02, 0x7E, 0xFF, 0xC4, 0x02, 0x80, 0xFF, 0xC4, 0x02, 0x81, 0xFF, 0xC4, 0x00, 0x03, 0x02, 0x7E, +0xFF, 0xA6, 0x02, 0x80, 0xFF, 0xA6, 0x02, 0x81, 0xFF, 0xA6, 0x00, 0x04, 0x02, 0x76, 0xFF, 0xCE, +0x02, 0x8A, 0x00, 0x28, 0x02, 0x8C, 0x00, 0x28, 0x02, 0x8E, 0x00, 0x1E, 0x00, 0x34, 0x00, 0x1E, +0xFF, 0xF1, 0x00, 0x1F, 0xFF, 0xF1, 0x00, 0x20, 0xFF, 0xF1, 0x00, 0x21, 0xFF, 0xF1, 0x00, 0x22, +0xFF, 0xF1, 0x00, 0x23, 0xFF, 0xF1, 0x00, 0x24, 0xFF, 0xF1, 0x00, 0x47, 0xFF, 0xF1, 0x00, 0x48, +0xFF, 0xF1, 0x00, 0x49, 0xFF, 0xF1, 0x00, 0x4A, 0xFF, 0xF1, 0x00, 0x4B, 0xFF, 0xF1, 0x00, 0x4C, +0xFF, 0xF1, 0x00, 0x4D, 0xFF, 0xF1, 0x00, 0x80, 0xFF, 0xF1, 0x00, 0x81, 0xFF, 0xF1, 0x00, 0x82, +0xFF, 0xF1, 0x00, 0x83, 0xFF, 0xF1, 0x00, 0x84, 0xFF, 0xF1, 0x00, 0x85, 0xFF, 0xF1, 0x00, 0x86, +0xFF, 0xF1, 0x00, 0x87, 0xFF, 0xF1, 0x00, 0x88, 0xFF, 0xF1, 0x00, 0x89, 0xFF, 0xF1, 0x00, 0x8A, +0xFF, 0xF1, 0x00, 0x8B, 0xFF, 0xF1, 0x00, 0x8C, 0xFF, 0xF1, 0x00, 0x8D, 0xFF, 0xF1, 0x00, 0x8E, +0xFF, 0xF1, 0x00, 0x8F, 0xFF, 0xF1, 0x00, 0x90, 0xFF, 0xF1, 0x00, 0x91, 0xFF, 0xF1, 0x00, 0x92, +0xFF, 0xF1, 0x00, 0x93, 0xFF, 0xF1, 0x00, 0x94, 0xFF, 0xF1, 0x00, 0x95, 0xFF, 0xF1, 0x00, 0x96, +0xFF, 0xF1, 0x00, 0x97, 0xFF, 0xF1, 0x00, 0x98, 0xFF, 0xF1, 0x00, 0x99, 0xFF, 0xF1, 0x00, 0x9A, +0xFF, 0xF1, 0x00, 0x9B, 0xFF, 0xF1, 0x00, 0x9C, 0xFF, 0xF1, 0x00, 0x9D, 0xFF, 0xF1, 0x00, 0x9E, +0xFF, 0xF1, 0x00, 0x9F, 0xFF, 0xF1, 0x00, 0xA0, 0xFF, 0xF1, 0x00, 0xA1, 0xFF, 0xF1, 0x00, 0xA2, +0xFF, 0xF1, 0x00, 0xA3, 0xFF, 0xF1, 0x00, 0xA6, 0xFF, 0xF1, 0x00, 0xBB, 0xFF, 0xF1, 0x00, 0x03, +0x00, 0x53, 0xFF, 0xF6, 0x02, 0x76, 0xFF, 0xD8, 0x02, 0x77, 0xFF, 0xCE, 0x00, 0x01, 0x02, 0x77, +0xFF, 0xD8, 0x00, 0x05, 0x00, 0x53, 0xFF, 0xF1, 0x02, 0x76, 0xFF, 0xD8, 0x02, 0x77, 0xFF, 0xCE, +0x02, 0x8A, 0xFF, 0xE2, 0x02, 0x8C, 0xFF, 0xE7, 0x00, 0x03, 0x02, 0x8A, 0x00, 0x14, 0x02, 0x98, +0x00, 0x28, 0x02, 0x9A, 0x00, 0x28, 0x00, 0x02, 0x02, 0x76, 0xFF, 0xD8, 0x02, 0x8A, 0xFF, 0xEC, +0x00, 0x07, 0x02, 0x74, 0xFF, 0xB5, 0x02, 0x77, 0xFF, 0x9C, 0x02, 0x7E, 0xFF, 0xCE, 0x02, 0x80, +0xFF, 0xCE, 0x02, 0x81, 0xFF, 0xCE, 0x02, 0x99, 0xFF, 0xC4, 0x02, 0x9A, 0xFF, 0xC4, 0x00, 0x00, +0x00, 0x03, 0x00, 0x28, 0x00, 0x00, 0x02, 0x20, 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x16, 0x00, 0x21, +0x00, 0x00, 0x73, 0x22, 0x35, 0x11, 0x34, 0x33, 0x21, 0x32, 0x15, 0x11, 0x14, 0x23, 0x25, 0x21, +0x32, 0x36, 0x27, 0x01, 0x26, 0x06, 0x15, 0x11, 0x14, 0x25, 0x16, 0x36, 0x35, 0x11, 0x34, 0x23, +0x21, 0x22, 0x06, 0x17, 0x4B, 0x23, 0x23, 0x01, 0xB2, 0x23, 0x23, 0xFE, 0x4E, 0x01, 0x9D, 0x03, +0x02, 0x02, 0xFE, 0x61, 0x02, 0x04, 0x01, 0xB6, 0x02, 0x04, 0x05, 0xFE, 0x62, 0x03, 0x02, 0x02, +0x23, 0x02, 0x76, 0x23, 0x23, 0xFD, 0x8A, 0x23, 0x1E, 0x04, 0x02, 0x02, 0x57, 0x03, 0x01, 0x04, +0xFD, 0xAA, 0x05, 0x23, 0x03, 0x01, 0x04, 0x02, 0x56, 0x05, 0x04, 0x02, 0x00, 0x02, 0xFF, 0xFF, +0x00, 0x00, 0x02, 0xB7, 0x02, 0xBC, 0x00, 0x11, 0x00, 0x15, 0x00, 0x00, 0x63, 0x01, 0x33, 0x01, +0x23, 0x03, 0x2E, 0x03, 0x27, 0x37, 0x0E, 0x03, 0x07, 0x03, 0x27, 0x37, 0x21, 0x17, 0x01, 0x01, +0x15, 0x90, 0x01, 0x13, 0xAC, 0x84, 0x08, 0x10, 0x10, 0x0F, 0x05, 0x1E, 0x06, 0x0F, 0x0F, 0x12, +0x08, 0x84, 0x24, 0x35, 0x01, 0x42, 0x34, 0x02, 0xBC, 0xFD, 0x44, 0x01, 0x63, 0x15, 0x30, 0x33, +0x31, 0x15, 0x01, 0x19, 0x30, 0x2F, 0x2F, 0x19, 0xFE, 0x9E, 0x86, 0x80, 0x80, 0x00, 0xFF, 0xFF, +0xFF, 0xFF, 0x00, 0x00, 0x02, 0xB7, 0x03, 0xAF, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, +0x03, 0x29, 0x67, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x02, 0xB7, 0x03, 0x99, 0x06, 0x26, +0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x32, 0x61, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, +0x02, 0xB7, 0x04, 0x4A, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x34, 0x61, 0x00, +0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x20, 0x02, 0xB7, 0x03, 0x99, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, +0x00, 0x26, 0x03, 0x0E, 0x61, 0x00, 0x00, 0x06, 0x03, 0x32, 0x61, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, +0x00, 0x00, 0x02, 0xB7, 0x04, 0x4A, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x33, +0x61, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x02, 0xB7, 0x04, 0x4F, 0x06, 0x26, 0x00, 0x01, +0x00, 0x00, 0x00, 0x06, 0x03, 0x36, 0x61, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x02, 0xB7, +0x04, 0x41, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x35, 0x61, 0x00, 0xFF, 0xFF, +0xFF, 0xFF, 0x00, 0x00, 0x02, 0xB7, 0x03, 0x96, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, +0x03, 0x31, 0x61, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x02, 0xB7, 0x03, 0x95, 0x06, 0x26, +0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x2C, 0x61, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, +0x02, 0xB7, 0x04, 0x40, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2E, 0x00, 0xA0, +0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x20, 0x02, 0xB7, 0x03, 0x95, 0x06, 0x26, 0x00, 0x01, +0x00, 0x00, 0x00, 0x26, 0x03, 0x0E, 0x61, 0x00, 0x00, 0x06, 0x03, 0x2C, 0x61, 0x00, 0xFF, 0xFF, +0xFF, 0xFF, 0x00, 0x00, 0x02, 0xB7, 0x04, 0x42, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, +0x03, 0x2D, 0x00, 0x7B, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x02, 0xB7, 0x04, 0x46, +0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x03, 0x30, 0x00, 0x99, 0x00, 0x00, 0xFF, 0xFF, +0xFF, 0xFF, 0x00, 0x00, 0x02, 0xB7, 0x04, 0x40, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, +0x03, 0x2F, 0x61, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x02, 0xB7, 0x03, 0xC0, 0x06, 0x26, +0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x41, 0x30, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, +0x02, 0xB7, 0x03, 0x9C, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x23, 0x61, 0x00, +0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x20, 0x02, 0xB7, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, +0x00, 0x06, 0x03, 0x0E, 0x61, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x02, 0xB7, 0x03, 0xAF, +0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x28, 0x64, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, +0x00, 0x00, 0x02, 0xB7, 0x03, 0xD4, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x40, +0x61, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x02, 0xB7, 0x03, 0x99, 0x06, 0x26, 0x00, 0x01, +0x00, 0x00, 0x00, 0x06, 0x03, 0x42, 0x61, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x02, 0xB7, +0x03, 0x7A, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x3C, 0x60, 0x00, 0xFF, 0xFF, +0xFF, 0xFF, 0xFF, 0x2D, 0x02, 0xB7, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, +0x03, 0x46, 0x01, 0x3D, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x02, 0xB7, 0x03, 0x9C, +0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x37, 0x60, 0x00, 0xFF, 0xFF, 0xFF, 0xFF, +0x00, 0x00, 0x02, 0xB7, 0x04, 0x70, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x03, 0x37, +0x60, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0x67, 0x00, 0xC1, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00, +0x02, 0xB7, 0x03, 0x8E, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x38, 0x60, 0x00, +0x00, 0x01, 0xFF, 0xF7, 0x00, 0x00, 0x03, 0xF8, 0x02, 0xBC, 0x00, 0x13, 0x00, 0x00, 0x63, 0x01, +0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x35, 0x21, 0x37, 0x33, 0x11, +0x17, 0x01, 0x09, 0x01, 0xE8, 0x02, 0x19, 0xFE, 0xB8, 0x01, 0x1B, 0xFE, 0xE5, 0x01, 0x48, 0xFE, +0x16, 0xFE, 0xF3, 0x5B, 0xB2, 0x19, 0xFE, 0x88, 0x02, 0xBC, 0x8C, 0x8A, 0x87, 0x93, 0x8C, 0x8F, +0x85, 0x01, 0x1A, 0x08, 0xFD, 0xDA, 0xFF, 0xFF, 0xFF, 0xF7, 0x00, 0x00, 0x03, 0xF8, 0x03, 0xAF, +0x06, 0x26, 0x00, 0x1B, 0x00, 0x00, 0x00, 0x07, 0x03, 0x29, 0x01, 0xDC, 0x00, 0x00, 0x00, 0x03, +0x00, 0x58, 0x00, 0x00, 0x02, 0x91, 0x02, 0xBC, 0x00, 0x13, 0x00, 0x1E, 0x00, 0x28, 0x00, 0x00, +0x73, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x27, 0x1E, 0x02, 0x15, 0x14, 0x0E, +0x02, 0x23, 0x27, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, +0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x58, 0x01, 0x35, 0x48, 0x64, 0x33, 0x3B, 0x38, 0x02, +0x2F, 0x45, 0x26, 0x24, 0x44, 0x5B, 0x37, 0x9F, 0x99, 0x1C, 0x27, 0x16, 0x17, 0x2A, 0x1D, 0x94, +0x7D, 0x1A, 0x25, 0x13, 0x2C, 0x2C, 0x77, 0x02, 0xBC, 0x29, 0x4D, 0x36, 0x3C, 0x52, 0x0E, 0x13, +0x0A, 0x32, 0x49, 0x2E, 0x35, 0x4F, 0x36, 0x1A, 0x8E, 0x12, 0x23, 0x19, 0x17, 0x20, 0x11, 0x7F, +0x11, 0x1F, 0x16, 0x20, 0x25, 0x00, 0x00, 0x01, 0x00, 0x2B, 0xFF, 0xF6, 0x02, 0xA0, 0x02, 0xCA, +0x00, 0x25, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, +0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, +0x37, 0x17, 0x0E, 0x02, 0x01, 0x96, 0x4F, 0x85, 0x62, 0x35, 0x38, 0x63, 0x87, 0x50, 0x32, 0x60, +0x53, 0x1E, 0x68, 0x15, 0x2F, 0x38, 0x20, 0x28, 0x47, 0x35, 0x1E, 0x1E, 0x36, 0x4D, 0x2F, 0x20, +0x3A, 0x31, 0x13, 0x52, 0x19, 0x53, 0x65, 0x0A, 0x35, 0x61, 0x85, 0x50, 0x4E, 0x84, 0x61, 0x36, +0x1A, 0x33, 0x23, 0x77, 0x16, 0x21, 0x12, 0x1D, 0x35, 0x4C, 0x2F, 0x2E, 0x4B, 0x36, 0x1C, 0x12, +0x1F, 0x14, 0x82, 0x1C, 0x2C, 0x19, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x02, 0xA0, 0x03, 0xAF, +0x06, 0x26, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0xA7, 0x00, 0x00, 0xFF, 0xFF, +0x00, 0x2B, 0xFF, 0xF6, 0x02, 0xA0, 0x03, 0x96, 0x06, 0x26, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x07, +0x03, 0x31, 0x00, 0xA1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0x09, 0x02, 0xA0, 0x02, 0xCA, +0x06, 0x26, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x07, 0x03, 0x45, 0x00, 0x93, 0x00, 0x00, 0xFF, 0xFF, +0x00, 0x2B, 0xFF, 0x09, 0x02, 0xA0, 0x03, 0xAF, 0x06, 0x26, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x27, +0x03, 0x45, 0x00, 0x93, 0x00, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0xA7, 0x00, 0x00, 0xFF, 0xFF, +0x00, 0x2B, 0xFF, 0xF6, 0x02, 0xA0, 0x03, 0x95, 0x06, 0x26, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x07, +0x03, 0x2C, 0x00, 0xA0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x02, 0xA0, 0x03, 0x9A, +0x06, 0x26, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x07, 0x03, 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x02, +0x00, 0x58, 0x00, 0x00, 0x02, 0xD9, 0x02, 0xBC, 0x00, 0x0C, 0x00, 0x1B, 0x00, 0x00, 0x73, 0x11, +0x21, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x23, 0x27, 0x27, 0x33, 0x32, 0x3E, 0x02, 0x35, +0x34, 0x2E, 0x02, 0x23, 0x23, 0x37, 0x58, 0x01, 0x25, 0x4D, 0x80, 0x5D, 0x32, 0x32, 0x5D, 0x80, +0x4D, 0x7B, 0x17, 0x8D, 0x2A, 0x42, 0x2F, 0x1A, 0x1A, 0x2F, 0x42, 0x2A, 0x90, 0x1A, 0x02, 0xBC, +0x33, 0x5E, 0x80, 0x4D, 0x4D, 0x81, 0x5D, 0x33, 0x74, 0x22, 0x1D, 0x34, 0x4A, 0x2D, 0x2D, 0x4A, +0x34, 0x1D, 0x20, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x05, 0x48, 0x02, 0xBC, 0x04, 0x26, +0x00, 0x25, 0x00, 0x00, 0x00, 0x07, 0x00, 0xEC, 0x02, 0xD7, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, +0x00, 0x00, 0x05, 0x48, 0x03, 0x96, 0x04, 0x26, 0x00, 0x25, 0x00, 0x00, 0x00, 0x27, 0x00, 0xEC, +0x02, 0xD7, 0x00, 0x00, 0x00, 0x07, 0x03, 0x31, 0x03, 0x33, 0x00, 0x00, 0x00, 0x03, 0x00, 0x23, +0x00, 0x00, 0x02, 0xD9, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x10, 0x00, 0x1F, 0x00, 0x00, 0x53, 0x35, +0x21, 0x15, 0x01, 0x11, 0x21, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x23, 0x27, 0x27, 0x33, +0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x23, 0x37, 0x23, 0x01, 0x46, 0xFE, 0xEF, 0x01, +0x25, 0x4D, 0x80, 0x5D, 0x32, 0x32, 0x5D, 0x80, 0x4D, 0x7B, 0x17, 0x8D, 0x2A, 0x42, 0x2F, 0x1A, +0x1A, 0x2F, 0x42, 0x2A, 0x90, 0x1A, 0x01, 0x23, 0x76, 0x76, 0xFE, 0xDD, 0x02, 0xBC, 0x33, 0x5E, +0x80, 0x4D, 0x4D, 0x81, 0x5D, 0x33, 0x74, 0x22, 0x1D, 0x34, 0x4A, 0x2D, 0x2D, 0x4A, 0x34, 0x1D, +0x20, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0xD9, 0x03, 0x96, 0x06, 0x26, 0x00, 0x25, +0x00, 0x00, 0x00, 0x07, 0x03, 0x31, 0x00, 0x88, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x23, 0x00, 0x00, +0x02, 0xD9, 0x02, 0xBC, 0x06, 0x06, 0x00, 0x28, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0x20, +0x02, 0xD9, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x25, 0x00, 0x00, 0x00, 0x07, 0x03, 0x0E, 0x00, 0x88, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0x3A, 0x02, 0xD9, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x25, +0x00, 0x00, 0x00, 0x07, 0x03, 0x14, 0x00, 0x88, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, +0x04, 0xF6, 0x02, 0xBC, 0x04, 0x26, 0x00, 0x25, 0x00, 0x00, 0x00, 0x07, 0x01, 0xF2, 0x03, 0x03, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x04, 0xF6, 0x03, 0x12, 0x04, 0x26, 0x00, 0x25, +0x00, 0x00, 0x00, 0x27, 0x01, 0xF2, 0x03, 0x03, 0x00, 0x00, 0x00, 0x07, 0x02, 0xFD, 0x03, 0x1C, +0x00, 0x06, 0x00, 0x02, 0x00, 0x58, 0x00, 0x00, 0x02, 0x4A, 0x02, 0xBC, 0x00, 0x07, 0x00, 0x0B, +0x00, 0x00, 0x73, 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x58, 0x01, +0xE8, 0xFE, 0xBD, 0x01, 0x4D, 0xFE, 0x5E, 0x01, 0x6B, 0x02, 0xBC, 0x91, 0xFE, 0x66, 0x91, 0x01, +0x1F, 0x8A, 0x8A, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0x4A, 0x03, 0xAF, 0x06, 0x26, +0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x29, 0x63, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, +0x02, 0x4A, 0x03, 0x99, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x32, 0x5D, 0x00, +0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0x4A, 0x03, 0x96, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, +0x00, 0x06, 0x03, 0x31, 0x5D, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0x09, 0x02, 0x4A, 0x03, 0x99, +0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x26, 0x03, 0x45, 0x48, 0x00, 0x00, 0x06, 0x03, 0x32, +0x5D, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0x4A, 0x03, 0x95, 0x06, 0x26, 0x00, 0x2F, +0x00, 0x00, 0x00, 0x06, 0x03, 0x2C, 0x5C, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0x8D, +0x04, 0x40, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2E, 0x00, 0x9B, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x58, 0xFF, 0x20, 0x02, 0x4A, 0x03, 0x95, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, +0x00, 0x26, 0x03, 0x0E, 0x49, 0x00, 0x00, 0x06, 0x03, 0x2C, 0x5C, 0x00, 0xFF, 0xFF, 0x00, 0x58, +0x00, 0x00, 0x02, 0x4A, 0x04, 0x42, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x2D, +0x76, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0x7B, 0x04, 0x46, 0x06, 0x26, 0x00, 0x2F, +0x00, 0x00, 0x00, 0x07, 0x03, 0x30, 0x00, 0x95, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, +0x02, 0x4A, 0x04, 0x40, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x2F, 0x5C, 0x00, +0xFF, 0xFF, 0x00, 0x42, 0x00, 0x00, 0x02, 0x4A, 0x03, 0xC0, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, +0x00, 0x06, 0x03, 0x41, 0x2B, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0x4A, 0x03, 0x9C, +0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x23, 0x5C, 0x00, 0xFF, 0xFF, 0x00, 0x58, +0x00, 0x00, 0x02, 0x4A, 0x03, 0x9A, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x26, +0x5D, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0x20, 0x02, 0x4A, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x2F, +0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x49, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0x4A, +0x03, 0xAF, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x28, 0x60, 0x00, 0xFF, 0xFF, +0x00, 0x58, 0x00, 0x00, 0x02, 0x4A, 0x03, 0xD4, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, +0x03, 0x40, 0x5C, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0x4A, 0x03, 0x99, 0x06, 0x26, +0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x42, 0x5D, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, +0x02, 0x4A, 0x03, 0x7A, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x3C, 0x5C, 0x00, +0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0x4A, 0x04, 0x6D, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, +0x00, 0x26, 0x03, 0x3C, 0x5C, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0x63, 0x00, 0xBE, 0xFF, 0xFF, +0x00, 0x58, 0x00, 0x00, 0x02, 0x4A, 0x04, 0x6D, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x26, +0x03, 0x3C, 0x5C, 0x00, 0x00, 0x07, 0x03, 0x28, 0x00, 0x60, 0x00, 0xBE, 0xFF, 0xFF, 0x00, 0x58, +0xFF, 0x2D, 0x02, 0x4A, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x07, 0x03, 0x46, +0x00, 0xD4, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0x4A, 0x03, 0x8E, 0x06, 0x26, +0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x38, 0x5C, 0x00, 0x00, 0x03, 0x00, 0x58, 0x00, 0x00, +0x02, 0x3A, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, +0x03, 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x58, 0xAA, 0x5B, 0x01, 0x6A, 0xFE, 0x96, 0x01, +0x93, 0x02, 0xBC, 0xFD, 0x44, 0x01, 0x0C, 0x8E, 0x8E, 0x01, 0x1A, 0x96, 0x96, 0x00, 0x00, 0x01, +0x00, 0x2B, 0xFF, 0xF6, 0x02, 0xE4, 0x02, 0xCA, 0x00, 0x2F, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, +0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, +0x15, 0x14, 0x1E, 0x02, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x35, 0x17, 0x23, 0x35, 0x21, 0x1E, 0x02, +0x15, 0x14, 0x0E, 0x02, 0x01, 0x9D, 0x54, 0x88, 0x62, 0x34, 0x37, 0x66, 0x8B, 0x52, 0x3A, 0x67, +0x54, 0x1D, 0x67, 0x19, 0x35, 0x3C, 0x22, 0x2C, 0x49, 0x37, 0x1E, 0x20, 0x38, 0x4D, 0x2C, 0x1F, +0x37, 0x28, 0x18, 0x16, 0xC1, 0x01, 0x49, 0x02, 0x02, 0x01, 0x31, 0x58, 0x78, 0x0A, 0x36, 0x62, +0x85, 0x4E, 0x4E, 0x83, 0x62, 0x36, 0x1E, 0x34, 0x22, 0x6D, 0x18, 0x20, 0x13, 0x20, 0x39, 0x4D, +0x2D, 0x2D, 0x4E, 0x39, 0x21, 0x14, 0x22, 0x2F, 0x1B, 0x1A, 0x22, 0x85, 0x0B, 0x26, 0x24, 0x09, +0x44, 0x71, 0x52, 0x2E, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x02, 0xE4, 0x03, 0x99, 0x06, 0x26, +0x00, 0x47, 0x00, 0x00, 0x00, 0x07, 0x03, 0x32, 0x00, 0xA2, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, +0xFF, 0xF6, 0x02, 0xE4, 0x03, 0x96, 0x06, 0x26, 0x00, 0x47, 0x00, 0x00, 0x00, 0x07, 0x03, 0x31, +0x00, 0xA2, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x02, 0xE4, 0x03, 0x95, 0x06, 0x26, +0x00, 0x47, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2C, 0x00, 0xA1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, +0xFE, 0xDA, 0x02, 0xE4, 0x02, 0xCA, 0x06, 0x26, 0x00, 0x47, 0x00, 0x00, 0x00, 0x07, 0x03, 0x44, +0x00, 0x8D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x02, 0xE4, 0x03, 0x9A, 0x06, 0x26, +0x00, 0x47, 0x00, 0x00, 0x00, 0x07, 0x03, 0x26, 0x00, 0xA2, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, +0xFF, 0xF6, 0x02, 0xE4, 0x03, 0x7A, 0x06, 0x26, 0x00, 0x47, 0x00, 0x00, 0x00, 0x07, 0x03, 0x3C, +0x00, 0xA1, 0x00, 0x00, 0x00, 0x03, 0x00, 0x58, 0x00, 0x00, 0x02, 0xB4, 0x02, 0xBC, 0x00, 0x03, +0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x61, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x03, 0x37, +0x21, 0x15, 0x02, 0x0A, 0xAA, 0xFD, 0xA4, 0xAA, 0x68, 0x01, 0x01, 0xC9, 0x02, 0xBC, 0xFD, 0x44, +0x02, 0xBC, 0xFD, 0x44, 0x01, 0x11, 0x98, 0x98, 0x00, 0x04, 0x00, 0x22, 0x00, 0x00, 0x03, 0x15, +0x02, 0xBC, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, 0x53, 0x35, 0x33, 0x17, +0x21, 0x37, 0x33, 0x15, 0x23, 0x27, 0x21, 0x07, 0x01, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, +0x03, 0x35, 0x21, 0x15, 0x22, 0x5B, 0x4D, 0x01, 0x8A, 0x54, 0x6D, 0x6A, 0x4B, 0xFE, 0x60, 0x47, +0x01, 0xA6, 0xAA, 0xFD, 0xA4, 0xAA, 0x67, 0x01, 0xCA, 0x01, 0xDF, 0x8B, 0x0A, 0x0A, 0x8B, 0x0A, +0x0A, 0xFE, 0x21, 0x02, 0xBC, 0xFD, 0x44, 0x02, 0xBC, 0xFD, 0x44, 0x01, 0x11, 0x98, 0x98, 0x00, +0xFF, 0xFF, 0x00, 0x58, 0xFF, 0x15, 0x02, 0xB4, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x4E, 0x00, 0x00, +0x00, 0x07, 0x03, 0x13, 0x00, 0x8C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0xB4, +0x03, 0x95, 0x06, 0x26, 0x00, 0x4E, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2C, 0x00, 0x8C, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x58, 0xFF, 0x20, 0x02, 0xB4, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x4E, 0x00, 0x00, +0x00, 0x07, 0x03, 0x0E, 0x00, 0x8C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x4A, 0x00, 0x00, 0x01, 0xE1, +0x02, 0xBC, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, +0x33, 0x15, 0x4A, 0x76, 0x76, 0x01, 0x97, 0x77, 0x77, 0x8F, 0x01, 0x9E, 0x8F, 0x8F, 0xFE, 0x62, +0x8F, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xF6, 0x04, 0x81, 0x02, 0xBC, 0x04, 0x26, 0x00, 0x53, +0x00, 0x00, 0x00, 0x07, 0x00, 0x64, 0x02, 0x2B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0x00, 0x00, +0x01, 0xE1, 0x03, 0xAF, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, 0x03, 0x29, 0x22, 0x00, +0xFF, 0xFF, 0x00, 0x4A, 0x00, 0x00, 0x01, 0xE1, 0x03, 0x99, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, +0x00, 0x06, 0x03, 0x32, 0x1B, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0x00, 0x00, 0x01, 0xE1, 0x03, 0x96, +0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, 0x03, 0x31, 0x1B, 0x00, 0xFF, 0xFF, 0x00, 0x4A, +0x00, 0x00, 0x01, 0xE1, 0x03, 0x95, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, 0x03, 0x2C, +0x1B, 0x00, 0xFF, 0xFF, 0x00, 0x01, 0x00, 0x00, 0x01, 0xE1, 0x03, 0xC0, 0x06, 0x26, 0x00, 0x53, +0x00, 0x00, 0x00, 0x06, 0x03, 0x41, 0xEA, 0x00, 0xFF, 0xFF, 0x00, 0x45, 0x00, 0x00, 0x01, 0xE6, +0x03, 0x9C, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, 0x03, 0x23, 0x1B, 0x00, 0xFF, 0xFF, +0x00, 0x45, 0x00, 0x00, 0x01, 0xE6, 0x04, 0x7D, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, +0x03, 0x24, 0x1B, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0x00, 0x00, 0x01, 0xE1, 0x03, 0x9A, 0x06, 0x26, +0x00, 0x53, 0x00, 0x00, 0x00, 0x06, 0x03, 0x26, 0x1B, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0x20, +0x01, 0xE1, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x1B, 0x00, +0xFF, 0xFF, 0x00, 0x4A, 0x00, 0x00, 0x01, 0xE1, 0x03, 0xAF, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, +0x00, 0x06, 0x03, 0x28, 0x1F, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0x00, 0x00, 0x01, 0xE1, 0x03, 0xD4, +0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, 0x03, 0x40, 0x1B, 0x00, 0xFF, 0xFF, 0x00, 0x4A, +0x00, 0x00, 0x01, 0xE1, 0x03, 0x99, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, 0x03, 0x42, +0x1B, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0x00, 0x00, 0x01, 0xE1, 0x03, 0x7A, 0x06, 0x26, 0x00, 0x53, +0x00, 0x00, 0x00, 0x06, 0x03, 0x3C, 0x1A, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0x2D, 0x01, 0xE1, +0x02, 0xBC, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, 0x03, 0x46, 0x40, 0x00, 0xFF, 0xFF, +0x00, 0x4A, 0x00, 0x00, 0x01, 0xE1, 0x03, 0x8E, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, +0x03, 0x38, 0x1A, 0x00, 0x00, 0x01, 0x00, 0x27, 0xFF, 0xF6, 0x02, 0x56, 0x02, 0xBC, 0x00, 0x1A, +0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x27, 0x37, 0x1E, 0x03, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, +0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x14, 0x0E, 0x02, 0x01, 0x05, 0x26, 0x44, 0x38, 0x2C, 0x10, +0x61, 0x0E, 0x1A, 0x19, 0x1B, 0x0F, 0x18, 0x25, 0x14, 0x80, 0x01, 0x92, 0x6C, 0x23, 0x3E, 0x53, +0x0A, 0x11, 0x21, 0x2F, 0x1D, 0x65, 0x15, 0x1B, 0x12, 0x08, 0x17, 0x28, 0x1B, 0x01, 0x3F, 0x94, +0x94, 0xFE, 0xAD, 0x33, 0x52, 0x3B, 0x1F, 0x00, 0xFF, 0xFF, 0x00, 0x27, 0xFF, 0xF6, 0x02, 0x56, +0x03, 0x95, 0x06, 0x26, 0x00, 0x64, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2C, 0x00, 0x9B, 0x00, 0x00, +0x00, 0x03, 0x00, 0x58, 0x00, 0x00, 0x02, 0xDF, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, +0x00, 0x00, 0x77, 0x27, 0x01, 0x33, 0x01, 0x11, 0x33, 0x11, 0x21, 0x01, 0x37, 0x01, 0xD4, 0x2C, +0x01, 0x5B, 0xC9, 0xFD, 0x8C, 0xAA, 0x01, 0x17, 0xFE, 0xFC, 0x73, 0x01, 0x57, 0xCD, 0x8F, 0x01, +0x60, 0xFD, 0x44, 0x02, 0xBC, 0xFD, 0x44, 0x01, 0x56, 0x63, 0xFE, 0x47, 0xFF, 0xFF, 0x00, 0x58, +0xFE, 0xDA, 0x02, 0xDF, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x66, 0x00, 0x00, 0x00, 0x06, 0x03, 0x44, +0x77, 0x00, 0x00, 0x01, 0x00, 0x58, 0x00, 0x00, 0x02, 0x3A, 0x02, 0xBC, 0x00, 0x05, 0x00, 0x00, +0x73, 0x11, 0x33, 0x11, 0x21, 0x15, 0x58, 0xAA, 0x01, 0x38, 0x02, 0xBC, 0xFD, 0xDA, 0x96, 0x00, +0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xF6, 0x04, 0xB7, 0x02, 0xBC, 0x04, 0x26, 0x00, 0x68, 0x00, 0x00, +0x00, 0x07, 0x00, 0x64, 0x02, 0x61, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x31, 0x00, 0x00, 0x02, 0x3A, +0x03, 0xAF, 0x06, 0x26, 0x00, 0x68, 0x00, 0x00, 0x00, 0x06, 0x03, 0x29, 0xBB, 0x00, 0xFF, 0xFF, +0x00, 0x58, 0x00, 0x00, 0x02, 0x3A, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x68, 0x00, 0x00, 0x00, 0x07, +0x02, 0xFB, 0x00, 0xCA, 0x00, 0x08, 0xFF, 0xFF, 0x00, 0x58, 0xFE, 0xDA, 0x02, 0x3A, 0x02, 0xBC, +0x06, 0x26, 0x00, 0x68, 0x00, 0x00, 0x00, 0x06, 0x03, 0x44, 0x37, 0x00, 0xFF, 0xFF, 0x00, 0x58, +0x00, 0x00, 0x02, 0x3A, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x68, 0x00, 0x00, 0x00, 0x07, 0x02, 0x69, +0x01, 0x5E, 0x01, 0x36, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0x20, 0x02, 0x3A, 0x02, 0xBC, 0x06, 0x26, +0x00, 0x68, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x37, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0x2E, +0x03, 0x65, 0x03, 0x21, 0x04, 0x26, 0x00, 0x68, 0x00, 0x00, 0x00, 0x07, 0x01, 0x69, 0x02, 0x61, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0x3A, 0x02, 0x3A, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x68, +0x00, 0x00, 0x00, 0x06, 0x03, 0x14, 0x36, 0x00, 0x00, 0x02, 0xFF, 0xF8, 0x00, 0x00, 0x02, 0x4A, +0x02, 0xBC, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x77, 0x27, 0x25, 0x17, 0x01, 0x11, 0x33, 0x11, +0x21, 0x15, 0x28, 0x30, 0x01, 0x65, 0x32, 0xFE, 0xD9, 0xAA, 0x01, 0x38, 0xEE, 0x7C, 0x9D, 0x7E, +0xFE, 0x77, 0x02, 0xBC, 0xFD, 0xDA, 0x96, 0x00, 0x00, 0x01, 0x00, 0x58, 0x00, 0x00, 0x03, 0x16, +0x02, 0xBC, 0x00, 0x15, 0x00, 0x00, 0x73, 0x11, 0x33, 0x13, 0x27, 0x01, 0x33, 0x11, 0x23, 0x35, +0x34, 0x36, 0x37, 0x17, 0x03, 0x23, 0x03, 0x37, 0x16, 0x16, 0x15, 0x15, 0x58, 0x98, 0xFF, 0x6D, +0x01, 0x02, 0x92, 0xA5, 0x09, 0x0B, 0x13, 0xC2, 0x42, 0xBE, 0x13, 0x0B, 0x09, 0x02, 0xBC, 0xFE, +0x61, 0x01, 0x01, 0x9E, 0xFD, 0x44, 0xDA, 0x5A, 0x90, 0x47, 0x34, 0xFE, 0xD3, 0x01, 0x2B, 0x36, +0x43, 0x8D, 0x61, 0xDA, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0x20, 0x03, 0x16, 0x02, 0xBC, 0x06, 0x26, +0x00, 0x72, 0x00, 0x00, 0x00, 0x07, 0x03, 0x0E, 0x00, 0xBD, 0x00, 0x00, 0x00, 0x01, 0x00, 0x58, +0x00, 0x00, 0x02, 0xCF, 0x02, 0xBC, 0x00, 0x17, 0x00, 0x00, 0x73, 0x11, 0x33, 0x01, 0x27, 0x2E, +0x04, 0x35, 0x35, 0x33, 0x11, 0x23, 0x01, 0x17, 0x1E, 0x04, 0x15, 0x15, 0x58, 0x98, 0x01, 0x6F, +0x21, 0x05, 0x06, 0x05, 0x03, 0x01, 0xA5, 0x9A, 0xFE, 0x81, 0x33, 0x05, 0x07, 0x05, 0x02, 0x01, +0x02, 0xBC, 0xFE, 0x0C, 0x05, 0x21, 0x3C, 0x3A, 0x3C, 0x46, 0x29, 0xAD, 0xFD, 0x44, 0x02, 0x04, +0x07, 0x30, 0x43, 0x34, 0x2A, 0x29, 0x19, 0xEA, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xF6, 0x05, 0x7D, +0x02, 0xBC, 0x04, 0x26, 0x00, 0x74, 0x00, 0x00, 0x00, 0x07, 0x00, 0x64, 0x03, 0x27, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0xCF, 0x03, 0xAF, 0x06, 0x26, 0x00, 0x74, 0x00, 0x00, +0x00, 0x07, 0x03, 0x29, 0x00, 0xA0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0xCF, +0x03, 0x96, 0x06, 0x26, 0x00, 0x74, 0x00, 0x00, 0x00, 0x07, 0x03, 0x31, 0x00, 0x9A, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x58, 0xFE, 0xDA, 0x02, 0xCF, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x74, 0x00, 0x00, +0x00, 0x07, 0x03, 0x44, 0x00, 0x9A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0xCF, +0x03, 0x9A, 0x06, 0x26, 0x00, 0x74, 0x00, 0x00, 0x00, 0x07, 0x03, 0x26, 0x00, 0x9A, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x58, 0xFF, 0x20, 0x02, 0xCF, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x74, 0x00, 0x00, +0x00, 0x07, 0x03, 0x0E, 0x00, 0x9A, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xCF, 0xFF, 0x35, 0x02, 0xC5, +0x02, 0xBC, 0x00, 0x1D, 0x00, 0x00, 0x57, 0x27, 0x32, 0x36, 0x35, 0x11, 0x33, 0x01, 0x27, 0x2E, +0x03, 0x35, 0x35, 0x33, 0x11, 0x23, 0x01, 0x17, 0x1E, 0x03, 0x14, 0x15, 0x15, 0x14, 0x06, 0x06, +0x12, 0x43, 0x40, 0x3F, 0x98, 0x01, 0x6F, 0x21, 0x06, 0x07, 0x05, 0x02, 0xA5, 0x9A, 0xFE, 0x81, +0x33, 0x05, 0x07, 0x05, 0x03, 0x33, 0x66, 0xCB, 0x7D, 0x3C, 0x3B, 0x02, 0x93, 0xFE, 0x0C, 0x05, +0x2A, 0x48, 0x4A, 0x52, 0x34, 0xAD, 0xFD, 0x44, 0x02, 0x04, 0x07, 0x28, 0x43, 0x3A, 0x36, 0x35, +0x1E, 0xCC, 0x47, 0x5B, 0x2C, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0x2E, 0x04, 0x2B, 0x03, 0x21, +0x04, 0x26, 0x00, 0x74, 0x00, 0x00, 0x00, 0x07, 0x01, 0x69, 0x03, 0x27, 0x00, 0x00, 0xFF, 0xFF, +0x00, 0x58, 0xFF, 0x3A, 0x02, 0xCF, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x74, 0x00, 0x00, 0x00, 0x07, +0x03, 0x14, 0x00, 0x99, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0xCF, 0x03, 0x8E, +0x06, 0x26, 0x00, 0x74, 0x00, 0x00, 0x00, 0x07, 0x03, 0x38, 0x00, 0x99, 0x00, 0x00, 0x00, 0x01, +0x00, 0x58, 0xFF, 0x35, 0x02, 0xCF, 0x02, 0xBC, 0x00, 0x21, 0x00, 0x00, 0x45, 0x27, 0x32, 0x3E, +0x02, 0x35, 0x35, 0x17, 0x01, 0x37, 0x1E, 0x04, 0x15, 0x11, 0x23, 0x11, 0x33, 0x01, 0x07, 0x2E, +0x03, 0x35, 0x35, 0x33, 0x11, 0x14, 0x06, 0x06, 0x01, 0xEE, 0x43, 0x18, 0x2F, 0x26, 0x16, 0x09, +0xFE, 0xAB, 0x0D, 0x02, 0x04, 0x04, 0x03, 0x01, 0xA5, 0x98, 0x01, 0x5B, 0x0F, 0x06, 0x07, 0x04, +0x01, 0xA5, 0x36, 0x65, 0xCB, 0x7D, 0x09, 0x14, 0x1D, 0x14, 0x3C, 0x3E, 0x01, 0xCA, 0x09, 0x16, +0x2D, 0x2E, 0x2B, 0x25, 0x0E, 0xFE, 0xFE, 0x02, 0xBC, 0xFE, 0x29, 0x08, 0x29, 0x47, 0x46, 0x4D, +0x2F, 0xAD, 0xFD, 0x3A, 0x42, 0x55, 0x2A, 0x00, 0x00, 0x02, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, +0x02, 0xCC, 0x00, 0x13, 0x00, 0x27, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, +0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x27, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, +0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x01, 0x97, 0x50, 0x84, 0x62, 0x36, 0x36, 0x62, +0x84, 0x4F, 0x4F, 0x84, 0x62, 0x35, 0x35, 0x62, 0x84, 0x4F, 0x29, 0x45, 0x33, 0x1C, 0x1C, 0x33, +0x45, 0x29, 0x29, 0x45, 0x34, 0x1B, 0x1B, 0x34, 0x45, 0x0A, 0x36, 0x62, 0x84, 0x4F, 0x4F, 0x84, +0x62, 0x36, 0x36, 0x62, 0x84, 0x4F, 0x4E, 0x85, 0x62, 0x36, 0xA0, 0x1E, 0x37, 0x4A, 0x2C, 0x2C, +0x4A, 0x37, 0x1E, 0x1E, 0x37, 0x4A, 0x2C, 0x2C, 0x4B, 0x36, 0x1E, 0x00, 0xFF, 0xFF, 0x00, 0x2B, +0xFF, 0xF6, 0x03, 0x00, 0x03, 0xAF, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x29, +0x00, 0xA2, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, 0x03, 0x99, 0x06, 0x26, +0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x32, 0x00, 0x9C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, +0xFF, 0xF6, 0x03, 0x00, 0x03, 0x96, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x31, +0x00, 0x9C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, 0x03, 0x95, 0x06, 0x26, +0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2C, 0x00, 0x9C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, +0xFF, 0xF6, 0x03, 0x00, 0x04, 0x40, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2E, +0x00, 0xDB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0x20, 0x03, 0x00, 0x03, 0x95, 0x06, 0x26, +0x00, 0x80, 0x00, 0x00, 0x00, 0x27, 0x03, 0x0E, 0x00, 0x9C, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2C, +0x00, 0x9C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, 0x04, 0x42, 0x06, 0x26, +0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2D, 0x00, 0xB6, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, +0xFF, 0xF6, 0x03, 0x00, 0x04, 0x46, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x30, +0x00, 0xD4, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, 0x04, 0x40, 0x06, 0x26, +0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2F, 0x00, 0x9C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, +0xFF, 0xF6, 0x03, 0x00, 0x03, 0xC0, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x06, 0x03, 0x41, +0x6B, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, 0x03, 0x9C, 0x06, 0x26, 0x00, 0x80, +0x00, 0x00, 0x00, 0x07, 0x03, 0x23, 0x00, 0x9B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, +0x03, 0x00, 0x04, 0x38, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x27, 0x03, 0x23, 0x00, 0x9B, +0x00, 0x00, 0x00, 0x07, 0x03, 0x3C, 0x00, 0x9B, 0x00, 0xBE, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, +0x03, 0x00, 0x04, 0x38, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x27, 0x03, 0x26, 0x00, 0x9C, +0x00, 0x00, 0x00, 0x07, 0x03, 0x3C, 0x00, 0x9B, 0x00, 0xBE, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0x20, +0x03, 0x00, 0x02, 0xCC, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x0E, 0x00, 0x9C, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, 0x03, 0xAF, 0x06, 0x26, 0x00, 0x80, +0x00, 0x00, 0x00, 0x07, 0x03, 0x28, 0x00, 0x9F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, +0x03, 0x00, 0x03, 0xD4, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x40, 0x00, 0x9C, +0x00, 0x00, 0x00, 0x02, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, 0x03, 0x39, 0x00, 0x23, 0x00, 0x37, +0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, +0x33, 0x32, 0x36, 0x36, 0x35, 0x33, 0x14, 0x0E, 0x02, 0x07, 0x37, 0x1E, 0x02, 0x15, 0x14, 0x0E, +0x02, 0x27, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, +0x02, 0x01, 0x96, 0x4F, 0x84, 0x62, 0x36, 0x36, 0x62, 0x84, 0x4F, 0x15, 0x2D, 0x15, 0x10, 0x1F, +0x11, 0x1C, 0x25, 0x13, 0x7F, 0x0F, 0x22, 0x3C, 0x2E, 0x18, 0x29, 0x3B, 0x1F, 0x35, 0x62, 0x84, +0x4F, 0x29, 0x45, 0x33, 0x1C, 0x1C, 0x33, 0x45, 0x29, 0x29, 0x45, 0x34, 0x1B, 0x1B, 0x34, 0x45, +0x0A, 0x36, 0x62, 0x84, 0x4F, 0x4F, 0x84, 0x62, 0x36, 0x06, 0x04, 0x04, 0x06, 0x1D, 0x39, 0x2B, +0x28, 0x4A, 0x3A, 0x23, 0x02, 0x16, 0x20, 0x57, 0x6A, 0x3C, 0x4E, 0x85, 0x62, 0x36, 0xA0, 0x1E, +0x37, 0x4A, 0x2C, 0x2C, 0x4A, 0x37, 0x1E, 0x1E, 0x37, 0x4A, 0x2C, 0x2C, 0x4B, 0x36, 0x1E, 0x00, +0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, 0x03, 0xAF, 0x06, 0x26, 0x00, 0x91, 0x00, 0x00, +0x00, 0x07, 0x03, 0x29, 0x00, 0xA2, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0x20, 0x03, 0x00, +0x03, 0x39, 0x06, 0x26, 0x00, 0x91, 0x00, 0x00, 0x00, 0x07, 0x03, 0x0E, 0x00, 0x9C, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, 0x03, 0xAF, 0x06, 0x26, 0x00, 0x91, 0x00, 0x00, +0x00, 0x07, 0x03, 0x28, 0x00, 0x9F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, +0x03, 0xD4, 0x06, 0x26, 0x00, 0x91, 0x00, 0x00, 0x00, 0x07, 0x03, 0x40, 0x00, 0x9C, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, 0x03, 0x8E, 0x06, 0x26, 0x00, 0x91, 0x00, 0x00, +0x00, 0x07, 0x03, 0x38, 0x00, 0x9B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, +0x03, 0xC6, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2B, 0x00, 0xD4, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, 0x03, 0x99, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, +0x00, 0x07, 0x03, 0x42, 0x00, 0x9C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, +0x03, 0x7A, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x3C, 0x00, 0x9B, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, 0x04, 0x6D, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, +0x00, 0x27, 0x03, 0x3C, 0x00, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0xA2, 0x00, 0xBE, +0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, 0x04, 0x6D, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, +0x00, 0x27, 0x03, 0x3C, 0x00, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x03, 0x28, 0x00, 0x9F, 0x00, 0xBE, +0x00, 0x03, 0x00, 0x2B, 0xFF, 0x2D, 0x03, 0x00, 0x02, 0xCC, 0x00, 0x17, 0x00, 0x2B, 0x00, 0x3F, +0x00, 0x00, 0x45, 0x22, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x37, 0x17, 0x0E, 0x03, 0x15, 0x14, 0x16, +0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x27, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, +0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x27, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, 0x23, +0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x01, 0xF4, 0x32, 0x42, 0x1D, 0x35, 0x45, 0x29, 0x22, +0x17, 0x29, 0x21, 0x12, 0x0F, 0x0D, 0x0A, 0x10, 0x07, 0x46, 0x0F, 0x43, 0x8A, 0x4F, 0x84, 0x62, +0x36, 0x36, 0x62, 0x84, 0x4F, 0x4F, 0x84, 0x62, 0x35, 0x35, 0x62, 0x84, 0x4F, 0x29, 0x45, 0x33, +0x1C, 0x1C, 0x33, 0x45, 0x29, 0x29, 0x45, 0x34, 0x1B, 0x1B, 0x34, 0x45, 0xD3, 0x3D, 0x32, 0x20, +0x38, 0x2F, 0x29, 0x14, 0x2F, 0x0E, 0x1D, 0x1E, 0x20, 0x12, 0x0F, 0x13, 0x0C, 0x0C, 0x33, 0x1E, +0x2E, 0xC9, 0x36, 0x62, 0x84, 0x4F, 0x4F, 0x84, 0x62, 0x36, 0x36, 0x62, 0x84, 0x4F, 0x4E, 0x85, +0x62, 0x36, 0xA0, 0x1E, 0x37, 0x4A, 0x2C, 0x2C, 0x4A, 0x37, 0x1E, 0x1E, 0x37, 0x4A, 0x2C, 0x2C, +0x4B, 0x36, 0x1E, 0x00, 0x00, 0x03, 0x00, 0x2B, 0xFF, 0xDF, 0x03, 0x00, 0x02, 0xE5, 0x00, 0x03, +0x00, 0x17, 0x00, 0x2B, 0x00, 0x00, 0x57, 0x27, 0x01, 0x17, 0x01, 0x22, 0x2E, 0x02, 0x35, 0x34, +0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x27, 0x32, 0x3E, 0x02, 0x35, 0x34, +0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x8B, 0x3F, 0x02, 0x4D, 0x44, 0xFE, +0xB9, 0x4F, 0x85, 0x62, 0x35, 0x35, 0x62, 0x85, 0x4F, 0x4F, 0x84, 0x62, 0x35, 0x35, 0x62, 0x84, +0x4F, 0x29, 0x45, 0x33, 0x1C, 0x1C, 0x33, 0x45, 0x29, 0x2A, 0x45, 0x33, 0x1C, 0x1C, 0x33, 0x45, +0x21, 0x35, 0x02, 0xD1, 0x2F, 0xFD, 0x40, 0x36, 0x62, 0x84, 0x4F, 0x4F, 0x84, 0x62, 0x36, 0x36, +0x62, 0x84, 0x4F, 0x4E, 0x85, 0x62, 0x36, 0xA0, 0x1E, 0x37, 0x4A, 0x2C, 0x2C, 0x4A, 0x37, 0x1E, +0x1E, 0x37, 0x4A, 0x2C, 0x2C, 0x4B, 0x36, 0x1E, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xDF, 0x03, 0x00, +0x03, 0xAF, 0x06, 0x26, 0x00, 0x9D, 0x00, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0xA0, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, 0x03, 0x8E, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, +0x00, 0x07, 0x03, 0x38, 0x00, 0x9B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, +0x04, 0x6D, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x27, 0x03, 0x38, 0x00, 0x9B, 0x00, 0x00, +0x00, 0x07, 0x03, 0x29, 0x00, 0xA2, 0x00, 0xBE, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, +0x04, 0x5A, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x27, 0x03, 0x38, 0x00, 0x9B, 0x00, 0x00, +0x00, 0x07, 0x03, 0x23, 0x00, 0x9B, 0x00, 0xBE, 0xFF, 0xFF, 0x00, 0x2B, 0xFF, 0xF6, 0x03, 0x00, +0x04, 0x38, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x27, 0x03, 0x38, 0x00, 0x9B, 0x00, 0x00, +0x00, 0x07, 0x03, 0x3C, 0x00, 0x9B, 0x00, 0xBE, 0x00, 0x02, 0x00, 0x2B, 0x00, 0x00, 0x03, 0xFC, +0x02, 0xBC, 0x00, 0x14, 0x00, 0x21, 0x00, 0x00, 0x61, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, +0x33, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x01, 0x14, 0x1E, 0x02, 0x33, +0x33, 0x11, 0x23, 0x22, 0x0E, 0x02, 0x01, 0x77, 0x4C, 0x7B, 0x56, 0x2F, 0x32, 0x5C, 0x82, 0x50, +0x02, 0x71, 0xFE, 0xB3, 0x01, 0x16, 0xFE, 0xEA, 0x01, 0x4D, 0xFC, 0xDB, 0x18, 0x2E, 0x43, 0x2B, +0x7F, 0x77, 0x2D, 0x45, 0x30, 0x1A, 0x32, 0x5D, 0x81, 0x4E, 0x4E, 0x80, 0x5E, 0x32, 0x91, 0x7F, +0x8A, 0x91, 0x91, 0x01, 0x5E, 0x2F, 0x4A, 0x33, 0x1C, 0x01, 0x90, 0x1C, 0x34, 0x49, 0x00, 0x02, +0x00, 0x58, 0x00, 0x00, 0x02, 0x6C, 0x02, 0xBC, 0x00, 0x0C, 0x00, 0x17, 0x00, 0x00, 0x73, 0x11, +0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x15, 0x03, 0x33, 0x32, 0x36, 0x36, +0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x58, 0x01, 0x2E, 0x42, 0x67, 0x3D, 0x3D, 0x67, 0x42, 0x84, +0x03, 0x6F, 0x16, 0x24, 0x16, 0x16, 0x24, 0x16, 0x6F, 0x02, 0xBC, 0x3C, 0x68, 0x41, 0x44, 0x6B, +0x3E, 0xEA, 0x01, 0x7F, 0x16, 0x26, 0x19, 0x1A, 0x24, 0x14, 0x00, 0x02, 0x00, 0x58, 0x00, 0x00, +0x02, 0x6C, 0x02, 0xBC, 0x00, 0x0E, 0x00, 0x19, 0x00, 0x00, 0x73, 0x11, 0x33, 0x15, 0x33, 0x32, +0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x15, 0x11, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, +0x26, 0x26, 0x23, 0x23, 0x58, 0xAA, 0x84, 0x42, 0x67, 0x3D, 0x3D, 0x67, 0x42, 0x84, 0x6C, 0x16, +0x24, 0x16, 0x16, 0x24, 0x16, 0x6C, 0x02, 0xBC, 0x6F, 0x3C, 0x68, 0x42, 0x43, 0x6C, 0x3E, 0x7A, +0x01, 0x10, 0x16, 0x26, 0x19, 0x19, 0x24, 0x15, 0x00, 0x03, 0x00, 0x2B, 0xFF, 0x92, 0x03, 0x00, +0x02, 0xCC, 0x00, 0x03, 0x00, 0x17, 0x00, 0x2B, 0x00, 0x00, 0x45, 0x01, 0x37, 0x01, 0x25, 0x22, +0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x27, 0x32, +0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x02, 0x67, +0xFE, 0xF4, 0x7D, 0x01, 0x09, 0xFE, 0xB5, 0x4F, 0x84, 0x62, 0x36, 0x36, 0x62, 0x84, 0x4F, 0x4F, +0x84, 0x62, 0x35, 0x35, 0x62, 0x84, 0x4F, 0x29, 0x45, 0x33, 0x1C, 0x1C, 0x33, 0x45, 0x29, 0x29, +0x45, 0x34, 0x1B, 0x1B, 0x34, 0x45, 0x6E, 0x01, 0x6B, 0x57, 0xFE, 0x98, 0x0A, 0x36, 0x62, 0x84, +0x4F, 0x4F, 0x84, 0x62, 0x36, 0x36, 0x62, 0x84, 0x4F, 0x4E, 0x85, 0x62, 0x36, 0xA0, 0x1E, 0x37, +0x4A, 0x2C, 0x2C, 0x4A, 0x37, 0x1E, 0x1E, 0x37, 0x4A, 0x2C, 0x2C, 0x4B, 0x36, 0x1E, 0x00, 0x03, +0x00, 0x58, 0x00, 0x00, 0x02, 0x9E, 0x02, 0xBC, 0x00, 0x0C, 0x00, 0x10, 0x00, 0x1B, 0x00, 0x00, +0x73, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x15, 0x33, 0x03, 0x37, +0x13, 0x01, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x58, 0x01, 0x3B, 0x43, +0x6D, 0x3E, 0x3E, 0x6C, 0x44, 0x99, 0xE2, 0xB2, 0xAE, 0xC6, 0xFE, 0x5C, 0x8A, 0x1A, 0x27, 0x15, +0x18, 0x2D, 0x20, 0x7B, 0x02, 0xBC, 0x3A, 0x65, 0x40, 0x42, 0x69, 0x3C, 0xF6, 0x01, 0x3C, 0x19, +0xFE, 0xAB, 0x01, 0x78, 0x17, 0x2A, 0x1B, 0x1B, 0x29, 0x16, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, +0x02, 0x9E, 0x03, 0xAF, 0x06, 0x26, 0x00, 0xA7, 0x00, 0x00, 0x00, 0x06, 0x03, 0x29, 0x59, 0x00, +0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0x9E, 0x03, 0x96, 0x06, 0x26, 0x00, 0xA7, 0x00, 0x00, +0x00, 0x06, 0x03, 0x31, 0x53, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFE, 0xDA, 0x02, 0x9E, 0x02, 0xBC, +0x06, 0x26, 0x00, 0xA7, 0x00, 0x00, 0x00, 0x06, 0x03, 0x44, 0x65, 0x00, 0xFF, 0xFF, 0x00, 0x38, +0x00, 0x00, 0x02, 0x9E, 0x03, 0xC0, 0x06, 0x26, 0x00, 0xA7, 0x00, 0x00, 0x00, 0x06, 0x03, 0x41, +0x22, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0x20, 0x02, 0x9E, 0x02, 0xBC, 0x06, 0x26, 0x00, 0xA7, +0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x65, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0x9E, +0x03, 0x99, 0x06, 0x26, 0x00, 0xA7, 0x00, 0x00, 0x00, 0x06, 0x03, 0x42, 0x53, 0x00, 0xFF, 0xFF, +0x00, 0x58, 0xFF, 0x3A, 0x02, 0x9E, 0x02, 0xBC, 0x06, 0x26, 0x00, 0xA7, 0x00, 0x00, 0x00, 0x06, +0x03, 0x14, 0x65, 0x00, 0x00, 0x01, 0x00, 0x14, 0xFF, 0xF6, 0x02, 0x52, 0x02, 0xCC, 0x00, 0x36, +0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, +0x2E, 0x03, 0x27, 0x2E, 0x03, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, +0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1E, 0x02, 0x17, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x06, +0x01, 0x40, 0x45, 0x6F, 0x56, 0x22, 0x67, 0x32, 0x65, 0x36, 0x1B, 0x2C, 0x18, 0x0F, 0x1A, 0x24, +0x28, 0x15, 0x3A, 0x56, 0x39, 0x1C, 0x2B, 0x49, 0x60, 0x34, 0x45, 0x63, 0x47, 0x19, 0x69, 0x15, +0x31, 0x37, 0x1D, 0x1E, 0x2B, 0x18, 0x14, 0x22, 0x2C, 0x18, 0x37, 0x59, 0x41, 0x23, 0x47, 0x7B, +0x0A, 0x21, 0x3F, 0x2B, 0x75, 0x43, 0x2E, 0x0E, 0x1B, 0x14, 0x0F, 0x18, 0x12, 0x0F, 0x0B, 0x04, +0x0D, 0x26, 0x37, 0x47, 0x2C, 0x2F, 0x4F, 0x39, 0x1F, 0x1D, 0x36, 0x26, 0x65, 0x1A, 0x22, 0x12, +0x0F, 0x1B, 0x13, 0x11, 0x18, 0x13, 0x0D, 0x04, 0x0B, 0x24, 0x34, 0x47, 0x2F, 0x49, 0x65, 0x35, +0xFF, 0xFF, 0x00, 0x14, 0xFF, 0xF6, 0x02, 0x52, 0x03, 0xAF, 0x06, 0x26, 0x00, 0xAF, 0x00, 0x00, +0x00, 0x06, 0x03, 0x29, 0x58, 0x00, 0xFF, 0xFF, 0x00, 0x14, 0xFF, 0xF6, 0x02, 0x52, 0x03, 0xC1, +0x06, 0x26, 0x00, 0xAF, 0x00, 0x00, 0x00, 0x06, 0x03, 0x2A, 0x62, 0x00, 0xFF, 0xFF, 0x00, 0x14, +0xFF, 0xF6, 0x02, 0x52, 0x03, 0x96, 0x06, 0x26, 0x00, 0xAF, 0x00, 0x00, 0x00, 0x06, 0x03, 0x31, +0x52, 0x00, 0xFF, 0xFF, 0x00, 0x14, 0xFF, 0xF6, 0x02, 0x52, 0x04, 0x58, 0x06, 0x26, 0x00, 0xAF, +0x00, 0x00, 0x00, 0x26, 0x03, 0x31, 0x52, 0x00, 0x00, 0x07, 0x03, 0x26, 0x00, 0x51, 0x00, 0xBE, +0xFF, 0xFF, 0x00, 0x14, 0xFF, 0x09, 0x02, 0x52, 0x02, 0xCC, 0x06, 0x26, 0x00, 0xAF, 0x00, 0x00, +0x00, 0x06, 0x03, 0x45, 0x57, 0x00, 0xFF, 0xFF, 0x00, 0x14, 0xFF, 0xF6, 0x02, 0x52, 0x03, 0x95, +0x06, 0x26, 0x00, 0xAF, 0x00, 0x00, 0x00, 0x06, 0x03, 0x2C, 0x51, 0x00, 0xFF, 0xFF, 0x00, 0x14, +0xFE, 0xDA, 0x02, 0x52, 0x02, 0xCC, 0x06, 0x26, 0x00, 0xAF, 0x00, 0x00, 0x00, 0x06, 0x03, 0x44, +0x57, 0x00, 0xFF, 0xFF, 0x00, 0x14, 0xFF, 0xF6, 0x02, 0x52, 0x03, 0x9A, 0x06, 0x26, 0x00, 0xAF, +0x00, 0x00, 0x00, 0x06, 0x03, 0x26, 0x52, 0x00, 0xFF, 0xFF, 0x00, 0x14, 0xFF, 0x20, 0x02, 0x52, +0x02, 0xCC, 0x06, 0x26, 0x00, 0xAF, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x57, 0x00, 0xFF, 0xFF, +0x00, 0x14, 0xFF, 0x20, 0x02, 0x52, 0x03, 0x9A, 0x06, 0x26, 0x00, 0xAF, 0x00, 0x00, 0x00, 0x26, +0x03, 0x0E, 0x57, 0x00, 0x00, 0x06, 0x03, 0x26, 0x52, 0x00, 0x00, 0x01, 0x00, 0x58, 0xFF, 0xF6, +0x03, 0x03, 0x02, 0xD6, 0x00, 0x3B, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, 0x37, 0x16, 0x16, +0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x27, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x37, 0x17, +0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x03, 0x23, 0x11, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x17, +0x17, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x16, 0x17, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x02, 0x0F, +0x2C, 0x52, 0x43, 0x15, 0x5B, 0x1B, 0x39, 0x1B, 0x24, 0x29, 0x17, 0x33, 0x2A, 0x2A, 0x32, 0x16, +0x22, 0x3A, 0x49, 0x28, 0x36, 0x1F, 0x60, 0x29, 0x2D, 0x47, 0x33, 0x1B, 0x01, 0xAA, 0x01, 0x58, +0xA0, 0x6B, 0x42, 0x7C, 0x37, 0x02, 0x36, 0x46, 0x23, 0x15, 0x28, 0x1D, 0x2F, 0x42, 0x24, 0x43, +0x6E, 0x0A, 0x17, 0x26, 0x18, 0x6D, 0x1B, 0x1E, 0x22, 0x1A, 0x13, 0x1D, 0x21, 0x17, 0x18, 0x2C, +0x33, 0x21, 0x23, 0x3B, 0x2C, 0x1A, 0x02, 0x26, 0x0B, 0x10, 0x22, 0x43, 0x5E, 0x3C, 0xFE, 0xA9, +0x01, 0x5E, 0x71, 0xA9, 0x5E, 0x15, 0x17, 0x77, 0x06, 0x1B, 0x25, 0x15, 0x13, 0x1D, 0x1C, 0x0E, +0x17, 0x2E, 0x42, 0x36, 0x38, 0x5C, 0x37, 0x00, 0x00, 0x01, 0x00, 0x2B, 0xFF, 0xF6, 0x02, 0xD7, +0x02, 0xC6, 0x00, 0x2A, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x27, 0x35, 0x21, 0x17, 0x21, 0x1E, +0x03, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x3E, +0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x01, 0x81, 0x44, 0x79, 0x5D, 0x39, 0x03, +0x02, 0x7E, 0x09, 0xFE, 0x2C, 0x09, 0x20, 0x2B, 0x34, 0x1B, 0x26, 0x3E, 0x2F, 0x19, 0x1B, 0x31, +0x44, 0x2A, 0x27, 0x40, 0x39, 0x1E, 0x4A, 0x2C, 0x51, 0x5C, 0x3A, 0x47, 0x7D, 0x5F, 0x36, 0x35, +0x5F, 0x7B, 0x0A, 0x30, 0x58, 0x76, 0x45, 0x64, 0x89, 0x1E, 0x2F, 0x22, 0x13, 0x1B, 0x35, 0x4C, +0x31, 0x2E, 0x4B, 0x36, 0x1C, 0x0E, 0x1E, 0x17, 0x80, 0x21, 0x2A, 0x14, 0x38, 0x63, 0x82, 0x4B, +0x4B, 0x82, 0x63, 0x38, 0x00, 0x01, 0x00, 0x20, 0x00, 0x00, 0x02, 0x6F, 0x02, 0xBC, 0x00, 0x07, +0x00, 0x00, 0x73, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0xF0, 0xD0, 0x02, 0x4F, 0xD5, 0x02, +0x26, 0x96, 0x96, 0xFD, 0xDA, 0x00, 0x00, 0x02, 0x00, 0x20, 0x00, 0x00, 0x02, 0x6F, 0x02, 0xBC, +0x00, 0x03, 0x00, 0x0B, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x03, 0x11, 0x23, 0x35, 0x21, 0x15, +0x23, 0x11, 0xA9, 0x01, 0x45, 0xFE, 0xD0, 0x02, 0x4F, 0xD5, 0x01, 0x24, 0x77, 0x77, 0xFE, 0xDC, +0x02, 0x26, 0x96, 0x96, 0xFD, 0xDA, 0xFF, 0xFF, 0x00, 0x20, 0x00, 0x00, 0x02, 0x6F, 0x03, 0x96, +0x06, 0x26, 0x00, 0xBC, 0x00, 0x00, 0x00, 0x06, 0x03, 0x31, 0x4E, 0x00, 0xFF, 0xFF, 0x00, 0x20, +0xFF, 0x09, 0x02, 0x6F, 0x02, 0xBC, 0x06, 0x26, 0x00, 0xBC, 0x00, 0x00, 0x00, 0x06, 0x03, 0x45, +0x4D, 0x00, 0xFF, 0xFF, 0x00, 0x20, 0xFE, 0xDA, 0x02, 0x6F, 0x02, 0xBC, 0x06, 0x26, 0x00, 0xBC, +0x00, 0x00, 0x00, 0x06, 0x03, 0x44, 0x4E, 0x00, 0xFF, 0xFF, 0x00, 0x20, 0xFF, 0x20, 0x02, 0x6F, +0x02, 0xBC, 0x06, 0x26, 0x00, 0xBC, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x4E, 0x00, 0xFF, 0xFF, +0x00, 0x20, 0xFF, 0x3A, 0x02, 0x6F, 0x02, 0xBC, 0x06, 0x26, 0x00, 0xBC, 0x00, 0x00, 0x00, 0x06, +0x03, 0x14, 0x4D, 0x00, 0x00, 0x01, 0x00, 0x53, 0xFF, 0xFA, 0x02, 0xAA, 0x02, 0xBC, 0x00, 0x15, +0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, +0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, 0x01, 0x7F, 0x57, 0x88, 0x4D, 0xAC, 0x22, 0x3A, +0x24, 0x26, 0x3B, 0x24, 0xA6, 0x4D, 0x88, 0x06, 0x47, 0x7C, 0x50, 0x01, 0xAF, 0xFE, 0x5A, 0x26, +0x3D, 0x23, 0x23, 0x3D, 0x26, 0x01, 0xA6, 0xFE, 0x51, 0x50, 0x7C, 0x47, 0xFF, 0xFF, 0x00, 0x53, +0xFF, 0xFA, 0x02, 0xAA, 0x03, 0xAF, 0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x07, 0x03, 0x29, +0x00, 0x8B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0xFA, 0x02, 0xAA, 0x03, 0x99, 0x06, 0x26, +0x00, 0xC3, 0x00, 0x00, 0x00, 0x07, 0x03, 0x32, 0x00, 0x85, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x53, +0xFF, 0xFA, 0x02, 0xAA, 0x03, 0x96, 0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x07, 0x03, 0x31, +0x00, 0x85, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0xFA, 0x02, 0xAA, 0x03, 0x95, 0x06, 0x26, +0x00, 0xC3, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2C, 0x00, 0x84, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x53, +0xFF, 0xFA, 0x02, 0xAA, 0x03, 0xC0, 0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x06, 0x03, 0x41, +0x54, 0x00, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0xFA, 0x02, 0xAA, 0x03, 0x9C, 0x06, 0x26, 0x00, 0xC3, +0x00, 0x00, 0x00, 0x07, 0x03, 0x23, 0x00, 0x84, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0x20, +0x02, 0xAA, 0x02, 0xBC, 0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x07, 0x03, 0x0E, 0x00, 0x85, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0xFA, 0x02, 0xAA, 0x03, 0xAF, 0x06, 0x26, 0x00, 0xC3, +0x00, 0x00, 0x00, 0x07, 0x03, 0x28, 0x00, 0x88, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0xFA, +0x02, 0xAA, 0x03, 0xD4, 0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x07, 0x03, 0x40, 0x00, 0x84, +0x00, 0x00, 0x00, 0x01, 0x00, 0x53, 0xFF, 0xFA, 0x03, 0x17, 0x03, 0x39, 0x00, 0x1E, 0x00, 0x00, +0x45, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, +0x11, 0x33, 0x32, 0x36, 0x35, 0x33, 0x14, 0x06, 0x06, 0x07, 0x37, 0x11, 0x14, 0x06, 0x06, 0x01, +0x7F, 0x57, 0x88, 0x4D, 0xAC, 0x22, 0x3A, 0x24, 0x26, 0x3B, 0x24, 0x3D, 0x2E, 0x2A, 0x7E, 0x21, +0x45, 0x36, 0x2F, 0x4D, 0x88, 0x06, 0x47, 0x7C, 0x50, 0x01, 0xAF, 0xFE, 0x5A, 0x26, 0x3D, 0x23, +0x23, 0x3D, 0x26, 0x01, 0xA6, 0x41, 0x3C, 0x35, 0x5A, 0x3A, 0x06, 0x2F, 0xFE, 0x74, 0x50, 0x7C, +0x47, 0x00, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0xFA, 0x03, 0x17, 0x03, 0xAF, 0x06, 0x26, 0x00, 0xCD, +0x00, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0x8B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0x20, +0x03, 0x17, 0x03, 0x39, 0x06, 0x26, 0x00, 0xCD, 0x00, 0x00, 0x00, 0x07, 0x03, 0x0E, 0x00, 0x85, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0xFA, 0x03, 0x17, 0x03, 0xAF, 0x06, 0x26, 0x00, 0xCD, +0x00, 0x00, 0x00, 0x07, 0x03, 0x28, 0x00, 0x88, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0xFA, +0x03, 0x17, 0x03, 0xD4, 0x06, 0x26, 0x00, 0xCD, 0x00, 0x00, 0x00, 0x07, 0x03, 0x40, 0x00, 0x84, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0xFA, 0x03, 0x17, 0x03, 0x8E, 0x06, 0x26, 0x00, 0xCD, +0x00, 0x00, 0x00, 0x07, 0x03, 0x38, 0x00, 0x84, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0xFA, +0x02, 0xAA, 0x03, 0xC6, 0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2B, 0x00, 0xBC, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0xFA, 0x02, 0xAA, 0x03, 0x99, 0x06, 0x26, 0x00, 0xC3, +0x00, 0x00, 0x00, 0x07, 0x03, 0x42, 0x00, 0x85, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0xFA, +0x02, 0xAA, 0x03, 0x7A, 0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x07, 0x03, 0x3C, 0x00, 0x84, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0xFA, 0x02, 0xAA, 0x04, 0x5A, 0x06, 0x26, 0x00, 0xC3, +0x00, 0x00, 0x00, 0x27, 0x03, 0x3C, 0x00, 0x84, 0x00, 0x00, 0x00, 0x07, 0x03, 0x23, 0x00, 0x84, +0x00, 0xBE, 0x00, 0x02, 0x00, 0x53, 0xFF, 0x2D, 0x02, 0xAA, 0x02, 0xBC, 0x00, 0x17, 0x00, 0x2D, +0x00, 0x00, 0x45, 0x22, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x37, 0x17, 0x0E, 0x03, 0x15, 0x14, 0x16, +0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x27, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, +0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, 0x01, 0xCA, 0x32, +0x43, 0x1D, 0x35, 0x46, 0x28, 0x23, 0x18, 0x29, 0x20, 0x13, 0x10, 0x0C, 0x0B, 0x0F, 0x07, 0x46, +0x0F, 0x42, 0x77, 0x57, 0x88, 0x4D, 0xAC, 0x22, 0x3A, 0x24, 0x26, 0x3B, 0x24, 0xA6, 0x4D, 0x88, +0xD3, 0x3D, 0x32, 0x20, 0x38, 0x2F, 0x29, 0x14, 0x2F, 0x0E, 0x1D, 0x1E, 0x20, 0x12, 0x0F, 0x13, +0x0C, 0x0C, 0x33, 0x1E, 0x2E, 0xCD, 0x47, 0x7C, 0x50, 0x01, 0xAF, 0xFE, 0x5A, 0x26, 0x3D, 0x23, +0x23, 0x3D, 0x26, 0x01, 0xA6, 0xFE, 0x51, 0x50, 0x7C, 0x47, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0xFA, +0x02, 0xAA, 0x03, 0x9C, 0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x07, 0x03, 0x37, 0x00, 0x84, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0xFA, 0x02, 0xAA, 0x03, 0x8E, 0x06, 0x26, 0x00, 0xC3, +0x00, 0x00, 0x00, 0x07, 0x03, 0x38, 0x00, 0x84, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0xFA, +0x02, 0xAA, 0x04, 0x6D, 0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x27, 0x03, 0x38, 0x00, 0x84, +0x00, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0x8B, 0x00, 0xBE, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, +0x02, 0xC4, 0x02, 0xBC, 0x00, 0x10, 0x00, 0x00, 0x61, 0x01, 0x33, 0x13, 0x1E, 0x03, 0x17, 0x23, +0x3E, 0x02, 0x37, 0x13, 0x33, 0x01, 0x01, 0x1C, 0xFE, 0xE8, 0xB1, 0x87, 0x0C, 0x11, 0x0D, 0x0B, +0x07, 0x1F, 0x08, 0x10, 0x14, 0x0F, 0x82, 0xAE, 0xFE, 0xE6, 0x02, 0xBC, 0xFE, 0x9B, 0x1F, 0x2E, +0x28, 0x29, 0x1A, 0x22, 0x35, 0x39, 0x28, 0x01, 0x65, 0xFD, 0x44, 0x00, 0x00, 0x01, 0x00, 0x04, +0x00, 0x00, 0x03, 0xDC, 0x02, 0xBC, 0x00, 0x22, 0x00, 0x00, 0x73, 0x03, 0x33, 0x13, 0x1E, 0x03, +0x17, 0x23, 0x3E, 0x02, 0x37, 0x13, 0x33, 0x13, 0x1E, 0x02, 0x17, 0x07, 0x3E, 0x04, 0x37, 0x13, +0x33, 0x03, 0x23, 0x03, 0x17, 0x03, 0xD6, 0xD2, 0xAD, 0x69, 0x07, 0x0B, 0x07, 0x04, 0x02, 0x16, +0x06, 0x09, 0x0C, 0x09, 0x68, 0x88, 0x66, 0x0C, 0x10, 0x09, 0x03, 0x14, 0x02, 0x02, 0x03, 0x04, +0x08, 0x07, 0x68, 0xA9, 0xD2, 0x82, 0xA6, 0x13, 0x99, 0x02, 0xBC, 0xFE, 0x90, 0x19, 0x33, 0x2E, +0x27, 0x0D, 0x25, 0x3A, 0x33, 0x1C, 0x01, 0x15, 0xFE, 0xEB, 0x21, 0x3A, 0x35, 0x1A, 0x03, 0x12, +0x1F, 0x1D, 0x20, 0x27, 0x19, 0x01, 0x6F, 0xFD, 0x44, 0x01, 0x93, 0x02, 0xFE, 0x6F, 0xFF, 0xFF, +0x00, 0x04, 0x00, 0x00, 0x03, 0xDC, 0x03, 0xAF, 0x06, 0x26, 0x00, 0xDC, 0x00, 0x00, 0x00, 0x07, +0x03, 0x29, 0x00, 0xFD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x04, 0x00, 0x00, 0x03, 0xDC, 0x03, 0x95, +0x06, 0x26, 0x00, 0xDC, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2C, 0x00, 0xF6, 0x00, 0x00, 0xFF, 0xFF, +0x00, 0x04, 0x00, 0x00, 0x03, 0xDC, 0x03, 0x9C, 0x06, 0x26, 0x00, 0xDC, 0x00, 0x00, 0x00, 0x07, +0x03, 0x23, 0x00, 0xF6, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x04, 0x00, 0x00, 0x03, 0xDC, 0x03, 0xAF, +0x06, 0x26, 0x00, 0xDC, 0x00, 0x00, 0x00, 0x07, 0x03, 0x28, 0x00, 0xF9, 0x00, 0x00, 0x00, 0x03, +0xFF, 0xFF, 0x00, 0x00, 0x02, 0xC2, 0x02, 0xBC, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0D, 0x00, 0x00, +0x61, 0x03, 0x01, 0x33, 0x13, 0x01, 0x21, 0x01, 0x17, 0x03, 0x13, 0x27, 0x13, 0x33, 0x01, 0xF3, +0xD9, 0xFE, 0xEA, 0xCF, 0xD4, 0x01, 0x1B, 0xFD, 0x3D, 0x01, 0x0B, 0x89, 0xCF, 0xF3, 0x88, 0xC4, +0xC5, 0x01, 0x3A, 0x01, 0x82, 0xFE, 0xCA, 0xFE, 0x7A, 0x01, 0x7D, 0x4F, 0xFE, 0xD2, 0x01, 0x45, +0x4C, 0x01, 0x2B, 0x00, 0x00, 0x01, 0xFF, 0xF9, 0x00, 0x00, 0x02, 0xB8, 0x02, 0xBC, 0x00, 0x0B, +0x00, 0x00, 0x61, 0x11, 0x17, 0x01, 0x33, 0x13, 0x27, 0x13, 0x33, 0x01, 0x37, 0x11, 0x01, 0x0D, +0x07, 0xFE, 0xE5, 0xC1, 0xD8, 0x58, 0xC3, 0xBB, 0xFE, 0xF1, 0x0F, 0x01, 0x5D, 0x31, 0x01, 0x90, +0xFE, 0xCA, 0x03, 0x01, 0x33, 0xFE, 0x65, 0x44, 0xFE, 0x9B, 0xFF, 0xFF, 0xFF, 0xF9, 0x00, 0x00, +0x02, 0xB8, 0x03, 0xAF, 0x06, 0x26, 0x00, 0xE2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x29, 0x65, 0x00, +0xFF, 0xFF, 0xFF, 0xF9, 0x00, 0x00, 0x02, 0xB8, 0x03, 0x95, 0x06, 0x26, 0x00, 0xE2, 0x00, 0x00, +0x00, 0x06, 0x03, 0x2C, 0x5E, 0x00, 0xFF, 0xFF, 0xFF, 0xF9, 0x00, 0x00, 0x02, 0xB8, 0x03, 0x9C, +0x06, 0x26, 0x00, 0xE2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x23, 0x5E, 0x00, 0xFF, 0xFF, 0xFF, 0xF9, +0x00, 0x00, 0x02, 0xB8, 0x03, 0x9A, 0x06, 0x26, 0x00, 0xE2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x26, +0x5E, 0x00, 0xFF, 0xFF, 0xFF, 0xF9, 0xFF, 0x20, 0x02, 0xB8, 0x02, 0xBC, 0x06, 0x26, 0x00, 0xE2, +0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x5E, 0x00, 0xFF, 0xFF, 0xFF, 0xF9, 0x00, 0x00, 0x02, 0xB8, +0x03, 0xAF, 0x06, 0x26, 0x00, 0xE2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x28, 0x62, 0x00, 0xFF, 0xFF, +0xFF, 0xF9, 0x00, 0x00, 0x02, 0xB8, 0x03, 0xD4, 0x06, 0x26, 0x00, 0xE2, 0x00, 0x00, 0x00, 0x06, +0x03, 0x40, 0x5E, 0x00, 0xFF, 0xFF, 0xFF, 0xF9, 0x00, 0x00, 0x02, 0xB8, 0x03, 0x7A, 0x06, 0x26, +0x00, 0xE2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x3C, 0x5D, 0x00, 0xFF, 0xFF, 0xFF, 0xF9, 0x00, 0x00, +0x02, 0xB8, 0x03, 0x8E, 0x06, 0x26, 0x00, 0xE2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x38, 0x5D, 0x00, +0x00, 0x01, 0x00, 0x3C, 0x00, 0x00, 0x02, 0x71, 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x35, +0x01, 0x17, 0x21, 0x35, 0x21, 0x15, 0x01, 0x27, 0x21, 0x15, 0x3C, 0x01, 0x78, 0x3B, 0xFE, 0x67, +0x02, 0x10, 0xFE, 0x8A, 0x3C, 0x01, 0xBD, 0x71, 0x01, 0xF4, 0x45, 0x9C, 0x70, 0xFE, 0x0B, 0x3E, +0x95, 0x00, 0xFF, 0xFF, 0x00, 0x3C, 0x00, 0x00, 0x02, 0x71, 0x03, 0xAF, 0x06, 0x26, 0x00, 0xEC, +0x00, 0x00, 0x00, 0x06, 0x03, 0x29, 0x63, 0x00, 0xFF, 0xFF, 0x00, 0x3C, 0x00, 0x00, 0x02, 0x71, +0x03, 0x96, 0x06, 0x26, 0x00, 0xEC, 0x00, 0x00, 0x00, 0x06, 0x03, 0x31, 0x5C, 0x00, 0xFF, 0xFF, +0x00, 0x3C, 0x00, 0x00, 0x02, 0x71, 0x03, 0x9A, 0x06, 0x26, 0x00, 0xEC, 0x00, 0x00, 0x00, 0x06, +0x03, 0x26, 0x5C, 0x00, 0xFF, 0xFF, 0x00, 0x3C, 0xFF, 0x20, 0x02, 0x71, 0x02, 0xBC, 0x06, 0x26, +0x00, 0xEC, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x5C, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xF6, +0x04, 0x81, 0x03, 0xAF, 0x04, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x26, 0x03, 0x29, 0x22, 0x00, +0x00, 0x27, 0x00, 0x64, 0x02, 0x2B, 0x00, 0x00, 0x00, 0x07, 0x03, 0x29, 0x02, 0xCD, 0x00, 0x00, +0x00, 0x01, 0x00, 0x59, 0x00, 0x00, 0x01, 0x03, 0x02, 0xBC, 0x00, 0x06, 0x00, 0x00, 0x73, 0x11, +0x33, 0x32, 0x32, 0x33, 0x11, 0x59, 0x55, 0x15, 0x2A, 0x16, 0x02, 0xBC, 0xFD, 0x44, 0xFF, 0xFF, +0x00, 0x59, 0xFF, 0xF6, 0x03, 0x45, 0x02, 0xBC, 0x04, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x07, +0x01, 0x03, 0x01, 0x5B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0x00, 0x00, 0x01, 0x38, 0x03, 0xAF, +0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x29, 0xBA, 0x00, 0xFF, 0xFF, 0xFF, 0xFA, +0x00, 0x00, 0x01, 0x61, 0x03, 0x99, 0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x32, +0xB4, 0x00, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x01, 0x63, 0x03, 0x96, 0x06, 0x26, 0x00, 0xF2, +0x00, 0x00, 0x00, 0x06, 0x03, 0x31, 0xB4, 0x00, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x01, 0x62, +0x03, 0x95, 0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x2C, 0xB3, 0x00, 0xFF, 0xFF, +0xFF, 0x99, 0x00, 0x00, 0x01, 0x60, 0x03, 0xC0, 0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x07, +0x03, 0x41, 0xFF, 0x82, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xDD, 0x00, 0x00, 0x01, 0x7E, 0x03, 0x9C, +0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x23, 0xB3, 0x00, 0xFF, 0xFF, 0xFF, 0xDD, +0x00, 0x00, 0x01, 0x7E, 0x04, 0x7D, 0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x24, +0xB3, 0x00, 0xFF, 0xFF, 0x00, 0x4E, 0x00, 0x00, 0x01, 0x0D, 0x03, 0x9A, 0x06, 0x26, 0x00, 0xF2, +0x00, 0x00, 0x00, 0x06, 0x03, 0x26, 0xB4, 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0x20, 0x01, 0x0F, +0x02, 0xBC, 0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0xB4, 0x00, 0xFF, 0xFF, +0x00, 0x2D, 0x00, 0x00, 0x01, 0x35, 0x03, 0xAF, 0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, +0x03, 0x28, 0xB7, 0x00, 0xFF, 0xFF, 0x00, 0x33, 0x00, 0x00, 0x01, 0x28, 0x03, 0xD4, 0x06, 0x26, +0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x40, 0xB3, 0x00, 0xFF, 0xFF, 0xFF, 0xFA, 0x00, 0x00, +0x01, 0x61, 0x03, 0x99, 0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x42, 0xB4, 0x00, +0xFF, 0xFF, 0xFF, 0xFA, 0x00, 0x00, 0x01, 0x60, 0x03, 0x7A, 0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, +0x00, 0x06, 0x03, 0x3C, 0xB3, 0x00, 0xFF, 0xFF, 0x00, 0x27, 0xFF, 0x2D, 0x01, 0x18, 0x02, 0xBC, +0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x07, 0x03, 0x46, 0xFF, 0xA5, 0x00, 0x00, 0xFF, 0xFF, +0xFF, 0xEF, 0x00, 0x00, 0x01, 0x6B, 0x03, 0x8E, 0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, +0x03, 0x38, 0xB3, 0x00, 0x00, 0x01, 0x00, 0x21, 0xFF, 0xF6, 0x01, 0xEA, 0x02, 0xBC, 0x00, 0x15, +0x00, 0x00, 0x57, 0x22, 0x2E, 0x02, 0x27, 0x37, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, +0x33, 0x11, 0x14, 0x0E, 0x02, 0xFD, 0x28, 0x45, 0x37, 0x2A, 0x0E, 0x65, 0x12, 0x20, 0x23, 0x14, +0x19, 0x26, 0x16, 0xA6, 0x22, 0x3F, 0x57, 0x0A, 0x11, 0x20, 0x2B, 0x1A, 0x66, 0x19, 0x1F, 0x0E, +0x16, 0x29, 0x1B, 0x01, 0xD6, 0xFE, 0x19, 0x33, 0x52, 0x3B, 0x1F, 0x00, 0xFF, 0xFF, 0x00, 0x21, +0xFF, 0xF6, 0x02, 0x4D, 0x03, 0x95, 0x06, 0x26, 0x01, 0x03, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2C, +0x00, 0x9E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xF6, 0x04, 0x4B, 0x02, 0xBC, 0x04, 0x26, +0x00, 0x68, 0x00, 0x00, 0x00, 0x07, 0x01, 0x03, 0x02, 0x61, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, +0xFF, 0xF6, 0x05, 0x11, 0x02, 0xBC, 0x04, 0x26, 0x00, 0x74, 0x00, 0x00, 0x00, 0x07, 0x01, 0x03, +0x03, 0x27, 0x00, 0x00, 0x00, 0x02, 0x00, 0x21, 0xFF, 0xF7, 0x02, 0x4D, 0x02, 0x1E, 0x00, 0x18, +0x00, 0x28, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, +0x17, 0x27, 0x35, 0x33, 0x11, 0x23, 0x35, 0x37, 0x0E, 0x03, 0x37, 0x32, 0x36, 0x36, 0x35, 0x34, +0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x0B, 0x43, 0x69, 0x3E, 0x3E, +0x6C, 0x45, 0x26, 0x3F, 0x30, 0x22, 0x08, 0x21, 0x9F, 0xA2, 0x24, 0x08, 0x24, 0x34, 0x40, 0x08, +0x25, 0x36, 0x1E, 0x1E, 0x36, 0x25, 0x24, 0x35, 0x1E, 0x1E, 0x35, 0x09, 0x47, 0x7D, 0x4F, 0x51, +0x7C, 0x47, 0x16, 0x27, 0x33, 0x1D, 0x04, 0x7E, 0xFD, 0xED, 0x80, 0x01, 0x1C, 0x32, 0x26, 0x16, +0x87, 0x22, 0x3F, 0x2B, 0x2B, 0x3F, 0x23, 0x23, 0x3F, 0x2B, 0x2B, 0x3F, 0x22, 0x00, 0xFF, 0xFF, +0x00, 0x21, 0xFF, 0xF7, 0x02, 0x4D, 0x03, 0x23, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, +0x02, 0xF8, 0x50, 0x06, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0xF7, 0x02, 0x4D, 0x03, 0x05, 0x06, 0x26, +0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFF, 0x50, 0x06, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0xF7, +0x02, 0x4D, 0x03, 0xD3, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x02, 0xEA, 0x50, 0x06, +0xFF, 0xFF, 0x00, 0x21, 0xFF, 0x20, 0x02, 0x4D, 0x03, 0x05, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, +0x00, 0x26, 0x03, 0x0E, 0x50, 0x00, 0x00, 0x06, 0x02, 0xFF, 0x50, 0x06, 0xFF, 0xFF, 0x00, 0x21, +0xFF, 0xF7, 0x02, 0x4D, 0x03, 0xD3, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x02, 0xEB, +0x50, 0x06, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0xF7, 0x02, 0x4D, 0x03, 0xDD, 0x06, 0x26, 0x01, 0x07, +0x00, 0x00, 0x00, 0x06, 0x02, 0xEC, 0x50, 0x06, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0xF7, 0x02, 0x4D, +0x03, 0xC5, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x02, 0xED, 0x50, 0x06, 0xFF, 0xFF, +0x00, 0x21, 0xFF, 0xF7, 0x02, 0x4D, 0x03, 0x12, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, +0x02, 0xFD, 0x50, 0x06, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0xF7, 0x02, 0x4D, 0x03, 0x0C, 0x06, 0x26, +0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFC, 0x50, 0x06, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0xF7, +0x02, 0x8E, 0x03, 0xC3, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x07, 0x02, 0xEE, 0x00, 0x96, +0x00, 0x06, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0x20, 0x02, 0x4D, 0x03, 0x0C, 0x06, 0x26, 0x01, 0x07, +0x00, 0x00, 0x00, 0x26, 0x03, 0x0E, 0x50, 0x00, 0x00, 0x06, 0x02, 0xFC, 0x50, 0x06, 0xFF, 0xFF, +0x00, 0x21, 0xFF, 0xF7, 0x02, 0x4D, 0x03, 0xC3, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, +0x02, 0xEF, 0x67, 0x06, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0xF7, 0x02, 0x73, 0x03, 0xC8, 0x06, 0x26, +0x01, 0x07, 0x00, 0x00, 0x00, 0x07, 0x02, 0xF0, 0x00, 0x8A, 0x00, 0x06, 0xFF, 0xFF, 0x00, 0x21, +0xFF, 0xF7, 0x02, 0x4D, 0x03, 0xC1, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF1, +0x4F, 0x06, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0xF7, 0x02, 0x4D, 0x03, 0x2B, 0x06, 0x26, 0x01, 0x07, +0x00, 0x00, 0x00, 0x06, 0x03, 0x0A, 0x12, 0x06, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0xF7, 0x02, 0x4D, +0x03, 0x22, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF2, 0x50, 0x06, 0xFF, 0xFF, +0x00, 0x21, 0xFF, 0x20, 0x02, 0x4D, 0x02, 0x1E, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, +0x03, 0x0E, 0x50, 0x00, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0xF7, 0x02, 0x4D, 0x03, 0x24, 0x06, 0x26, +0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF7, 0x3C, 0x06, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0xF7, +0x02, 0x4D, 0x03, 0x3A, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x03, 0x09, 0x50, 0x06, +0xFF, 0xFF, 0x00, 0x21, 0xFF, 0xF7, 0x02, 0x4D, 0x03, 0x0F, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, +0x00, 0x06, 0x03, 0x0B, 0x50, 0x06, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0xF7, 0x02, 0x4D, 0x02, 0xE5, +0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x03, 0x05, 0x50, 0x06, 0xFF, 0xFF, 0x00, 0x21, +0xFF, 0x2D, 0x02, 0x4D, 0x02, 0x1E, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x07, 0x03, 0x12, +0x00, 0xD7, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0xF7, 0x02, 0x4D, 0x03, 0x45, 0x06, 0x26, +0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x03, 0x00, 0x50, 0x06, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0xF7, +0x02, 0x4D, 0x04, 0x37, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x26, 0x03, 0x00, 0x50, 0x06, +0x00, 0x07, 0x02, 0xF8, 0x00, 0x50, 0x01, 0x19, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0xF7, 0x02, 0x4D, +0x02, 0xFF, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x03, 0x01, 0x50, 0x06, 0x00, 0x02, +0x00, 0x21, 0xFF, 0xF6, 0x03, 0x66, 0x02, 0x1E, 0x00, 0x40, 0x00, 0x55, 0x00, 0x00, 0x57, 0x22, +0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x21, 0x07, 0x35, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, +0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, +0x34, 0x3E, 0x02, 0x33, 0x1E, 0x02, 0x07, 0x07, 0x21, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x16, +0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x13, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, 0x06, +0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x15, 0xD6, 0x33, 0x52, 0x30, 0x1F, 0x3C, +0x59, 0x3B, 0x01, 0xCA, 0x09, 0x02, 0x1A, 0x2B, 0x1B, 0x28, 0x37, 0x1C, 0x28, 0x4A, 0x32, 0x24, +0x38, 0x20, 0x44, 0x1F, 0x46, 0x48, 0x24, 0x58, 0x81, 0x46, 0x27, 0x46, 0x60, 0x38, 0x49, 0x71, +0x3F, 0x01, 0x01, 0xFD, 0xB1, 0x15, 0x20, 0x16, 0x0B, 0x0F, 0x1D, 0x12, 0x1A, 0x2F, 0x26, 0x0B, +0x35, 0x15, 0x44, 0x52, 0x64, 0x0C, 0x18, 0x22, 0x15, 0x27, 0x38, 0x18, 0x5F, 0x1A, 0x47, 0x5A, +0x32, 0x30, 0x4D, 0x36, 0x1E, 0x0A, 0x28, 0x47, 0x30, 0x28, 0x3E, 0x2A, 0x14, 0x0C, 0x15, 0x19, +0x27, 0x16, 0x1F, 0x3B, 0x2B, 0x2B, 0x41, 0x25, 0x13, 0x19, 0x6B, 0x1B, 0x21, 0x11, 0x46, 0x7B, +0x50, 0x3D, 0x66, 0x4B, 0x29, 0x01, 0x45, 0x79, 0x4D, 0x30, 0x09, 0x11, 0x17, 0x10, 0x0F, 0x19, +0x0E, 0x11, 0x20, 0x15, 0x51, 0x21, 0x30, 0x19, 0x01, 0x02, 0x54, 0x14, 0x1C, 0x12, 0x09, 0x1D, +0x22, 0x5E, 0x1F, 0x2F, 0x1A, 0x15, 0x2C, 0x41, 0x2D, 0x74, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0xF6, +0x03, 0x66, 0x03, 0x23, 0x06, 0x26, 0x01, 0x21, 0x00, 0x00, 0x00, 0x07, 0x02, 0xF8, 0x00, 0xCF, +0x00, 0x06, 0x00, 0x02, 0x00, 0x47, 0xFF, 0xF5, 0x02, 0x70, 0x02, 0xE4, 0x00, 0x18, 0x00, 0x28, +0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x27, 0x37, 0x07, 0x23, 0x11, 0x33, 0x11, 0x27, 0x3E, 0x03, +0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, +0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x86, 0x24, 0x42, 0x35, 0x23, 0x06, 0x23, +0x09, 0x95, 0xA1, 0x21, 0x06, 0x22, 0x34, 0x3E, 0x21, 0x45, 0x6B, 0x3E, 0x3D, 0x6A, 0x6D, 0x24, +0x36, 0x1D, 0x1D, 0x36, 0x24, 0x25, 0x36, 0x1E, 0x1E, 0x36, 0x0B, 0x14, 0x22, 0x2D, 0x18, 0x0C, +0x7B, 0x02, 0xE3, 0xFE, 0xB0, 0x0C, 0x1A, 0x2D, 0x23, 0x14, 0x47, 0x7D, 0x50, 0x51, 0x7D, 0x47, +0x87, 0x24, 0x3F, 0x2B, 0x2A, 0x40, 0x22, 0x22, 0x40, 0x2A, 0x2B, 0x3F, 0x24, 0x00, 0x00, 0x01, +0x00, 0x22, 0xFF, 0xF6, 0x02, 0x11, 0x02, 0x1E, 0x00, 0x1F, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, +0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, +0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0x30, 0x4D, 0x7A, 0x47, +0x47, 0x7A, 0x4D, 0x47, 0x77, 0x23, 0x57, 0x0E, 0x26, 0x2E, 0x19, 0x26, 0x3A, 0x20, 0x21, 0x3A, +0x25, 0x1A, 0x2C, 0x25, 0x10, 0x56, 0x22, 0x79, 0x0A, 0x48, 0x7D, 0x4F, 0x4F, 0x7D, 0x48, 0x32, +0x2D, 0x68, 0x10, 0x1C, 0x10, 0x23, 0x3E, 0x28, 0x26, 0x3E, 0x24, 0x0D, 0x1A, 0x13, 0x69, 0x2B, +0x32, 0x00, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x11, 0x03, 0x23, 0x06, 0x26, 0x01, 0x24, +0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0x36, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x11, +0x03, 0x12, 0x06, 0x26, 0x01, 0x24, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFD, 0x36, 0x06, 0xFF, 0xFF, +0x00, 0x22, 0xFF, 0x09, 0x02, 0x11, 0x02, 0x1E, 0x06, 0x26, 0x01, 0x24, 0x00, 0x00, 0x00, 0x06, +0x03, 0x11, 0x36, 0x00, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0x09, 0x02, 0x11, 0x03, 0x23, 0x06, 0x26, +0x01, 0x24, 0x00, 0x00, 0x00, 0x26, 0x03, 0x11, 0x36, 0x00, 0x00, 0x06, 0x02, 0xF8, 0x36, 0x06, +0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x11, 0x03, 0x0C, 0x06, 0x26, 0x01, 0x24, 0x00, 0x00, +0x00, 0x06, 0x02, 0xFC, 0x36, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x11, 0x03, 0x21, +0x06, 0x26, 0x01, 0x24, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF5, 0x36, 0x06, 0x00, 0x02, 0x00, 0x22, +0xFF, 0xF5, 0x02, 0x4E, 0x02, 0xE4, 0x00, 0x18, 0x00, 0x28, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, +0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x07, 0x11, 0x33, 0x11, 0x23, 0x27, 0x17, +0x0E, 0x03, 0x37, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, +0x16, 0x16, 0x01, 0x10, 0x45, 0x6B, 0x3E, 0x3E, 0x6C, 0x46, 0x24, 0x42, 0x36, 0x22, 0x03, 0x26, +0xA1, 0x95, 0x09, 0x20, 0x03, 0x21, 0x34, 0x43, 0x04, 0x25, 0x36, 0x1D, 0x1D, 0x36, 0x25, 0x25, +0x35, 0x1E, 0x1E, 0x35, 0x0B, 0x47, 0x7D, 0x50, 0x50, 0x7D, 0x48, 0x16, 0x26, 0x31, 0x1A, 0x09, +0x01, 0x56, 0xFD, 0x1C, 0x79, 0x05, 0x19, 0x2E, 0x23, 0x15, 0x85, 0x24, 0x40, 0x2B, 0x2C, 0x40, +0x24, 0x24, 0x40, 0x2C, 0x2B, 0x40, 0x24, 0x00, 0x00, 0x03, 0x00, 0x22, 0xFF, 0xF9, 0x02, 0x33, +0x02, 0xEA, 0x00, 0x1E, 0x00, 0x2E, 0x00, 0x36, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, +0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x27, 0x2E, 0x04, 0x27, 0x37, 0x1E, 0x04, 0x15, 0x14, +0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, +0x16, 0x16, 0x03, 0x27, 0x3F, 0x02, 0x17, 0x07, 0x07, 0x01, 0x29, 0x4D, 0x76, 0x44, 0x29, 0x47, +0x5B, 0x31, 0x32, 0x50, 0x36, 0x09, 0x5F, 0x02, 0x12, 0x20, 0x31, 0x45, 0x2D, 0x30, 0x3F, 0x6B, +0x55, 0x3B, 0x20, 0x43, 0x77, 0x4F, 0x21, 0x34, 0x1F, 0x1F, 0x34, 0x21, 0x20, 0x34, 0x1F, 0x1F, +0x34, 0x74, 0x0D, 0xA0, 0x39, 0x92, 0x12, 0x71, 0x2B, 0x07, 0x46, 0x77, 0x4A, 0x35, 0x5E, 0x49, +0x29, 0x2A, 0x4B, 0x34, 0x1F, 0x2C, 0x47, 0x39, 0x2D, 0x23, 0x0E, 0x65, 0x0F, 0x39, 0x52, 0x69, +0x7E, 0x49, 0x57, 0x85, 0x4B, 0x88, 0x23, 0x3C, 0x26, 0x24, 0x3B, 0x23, 0x22, 0x3B, 0x25, 0x26, +0x3C, 0x23, 0x01, 0x84, 0x41, 0x29, 0x1B, 0x21, 0x42, 0x1A, 0x18, 0x00, 0xFF, 0xFF, 0x00, 0x22, +0xFF, 0xF5, 0x03, 0x44, 0x02, 0xE4, 0x04, 0x26, 0x01, 0x2B, 0x00, 0x00, 0x00, 0x07, 0x02, 0xFB, +0x01, 0xEB, 0x00, 0x30, 0x00, 0x03, 0x00, 0x22, 0xFF, 0xF5, 0x02, 0x83, 0x02, 0xE4, 0x00, 0x03, +0x00, 0x1C, 0x00, 0x2C, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, +0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x07, 0x11, 0x33, 0x11, 0x23, 0x27, 0x17, 0x0E, 0x03, +0x37, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, +0x01, 0x3D, 0x01, 0x46, 0xFE, 0x8D, 0x45, 0x6B, 0x3E, 0x3E, 0x6C, 0x46, 0x24, 0x42, 0x36, 0x22, +0x03, 0x26, 0xA1, 0x95, 0x09, 0x20, 0x03, 0x21, 0x34, 0x43, 0x04, 0x25, 0x36, 0x1D, 0x1D, 0x36, +0x25, 0x25, 0x35, 0x1E, 0x1E, 0x35, 0x02, 0x3F, 0x76, 0x76, 0xFD, 0xB6, 0x47, 0x7D, 0x50, 0x50, +0x7D, 0x48, 0x16, 0x26, 0x31, 0x1A, 0x09, 0x01, 0x56, 0xFD, 0x1C, 0x79, 0x05, 0x19, 0x2E, 0x23, +0x15, 0x85, 0x24, 0x40, 0x2B, 0x2C, 0x40, 0x24, 0x24, 0x40, 0x2C, 0x2B, 0x40, 0x24, 0xFF, 0xFF, +0x00, 0x22, 0xFF, 0x20, 0x02, 0x4E, 0x02, 0xE4, 0x06, 0x26, 0x01, 0x2B, 0x00, 0x00, 0x00, 0x06, +0x03, 0x0E, 0x4D, 0x00, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0x3A, 0x02, 0x4E, 0x02, 0xE4, 0x06, 0x26, +0x01, 0x2B, 0x00, 0x00, 0x00, 0x06, 0x03, 0x14, 0x4D, 0x00, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF5, +0x04, 0x81, 0x03, 0x12, 0x04, 0x26, 0x01, 0x2B, 0x00, 0x00, 0x00, 0x27, 0x01, 0xF2, 0x02, 0x8E, +0x00, 0x00, 0x00, 0x07, 0x02, 0xFD, 0x02, 0xA7, 0x00, 0x06, 0x00, 0x01, 0x00, 0x22, 0xFF, 0xF6, +0x02, 0x2D, 0x02, 0x1E, 0x00, 0x27, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, +0x33, 0x32, 0x1E, 0x02, 0x07, 0x07, 0x21, 0x27, 0x21, 0x07, 0x35, 0x2E, 0x02, 0x23, 0x22, 0x06, +0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x01, 0x44, 0x58, 0x82, +0x48, 0x28, 0x48, 0x63, 0x3B, 0x38, 0x5D, 0x44, 0x24, 0x02, 0x01, 0xFE, 0x59, 0x17, 0x01, 0x3C, +0x11, 0x02, 0x1B, 0x2C, 0x1C, 0x27, 0x37, 0x1C, 0x25, 0x47, 0x31, 0x22, 0x35, 0x1F, 0x4B, 0x1F, +0x46, 0x49, 0x0A, 0x47, 0x7B, 0x4F, 0x3D, 0x66, 0x4B, 0x29, 0x28, 0x48, 0x62, 0x3A, 0x2B, 0x5A, +0x13, 0x14, 0x19, 0x27, 0x16, 0x1F, 0x3B, 0x2B, 0x2C, 0x41, 0x24, 0x14, 0x18, 0x6A, 0x1B, 0x22, +0x11, 0x00, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x2D, 0x03, 0x23, 0x06, 0x26, 0x01, 0x32, +0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0x36, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x2D, +0x03, 0x05, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFF, 0x36, 0x06, 0xFF, 0xFF, +0x00, 0x22, 0xFF, 0xF6, 0x02, 0x2D, 0x03, 0x12, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, +0x02, 0xFD, 0x36, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0x09, 0x02, 0x2D, 0x03, 0x05, 0x06, 0x26, +0x01, 0x32, 0x00, 0x00, 0x00, 0x26, 0x03, 0x11, 0x49, 0x00, 0x00, 0x06, 0x02, 0xFF, 0x36, 0x06, +0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x2D, 0x03, 0x0C, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, +0x00, 0x06, 0x02, 0xFC, 0x36, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x74, 0x03, 0xC3, +0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x02, 0xEE, 0x7B, 0x06, 0xFF, 0xFF, 0x00, 0x22, +0xFF, 0x20, 0x02, 0x2D, 0x03, 0x0C, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x26, 0x03, 0x0E, +0x4A, 0x00, 0x00, 0x06, 0x02, 0xFC, 0x36, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x2D, +0x03, 0xC3, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x02, 0xEF, 0x4D, 0x06, 0xFF, 0xFF, +0x00, 0x22, 0xFF, 0xF6, 0x02, 0x59, 0x03, 0xC8, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, +0x02, 0xF0, 0x70, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x2D, 0x03, 0xC1, 0x06, 0x26, +0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF1, 0x35, 0x06, 0xFF, 0xFF, 0x00, 0x10, 0xFF, 0xF6, +0x02, 0x2D, 0x03, 0x2B, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0A, 0xF8, 0x06, +0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x2D, 0x03, 0x22, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, +0x00, 0x06, 0x02, 0xF2, 0x35, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x2D, 0x03, 0x21, +0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF5, 0x36, 0x06, 0xFF, 0xFF, 0x00, 0x22, +0xFF, 0x20, 0x02, 0x2D, 0x02, 0x1E, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, +0x4A, 0x00, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x2D, 0x03, 0x24, 0x06, 0x26, 0x01, 0x32, +0x00, 0x00, 0x00, 0x06, 0x02, 0xF7, 0x22, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x2D, +0x03, 0x3A, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x03, 0x09, 0x36, 0x06, 0xFF, 0xFF, +0x00, 0x22, 0xFF, 0xF6, 0x02, 0x2D, 0x03, 0x0F, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, +0x03, 0x0B, 0x36, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x2D, 0x02, 0xE5, 0x06, 0x26, +0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x03, 0x05, 0x36, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, +0x02, 0x2D, 0x03, 0xD9, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x03, 0x08, 0x36, 0x06, +0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x2D, 0x03, 0xD9, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, +0x00, 0x06, 0x03, 0x07, 0x36, 0x06, 0x00, 0x02, 0x00, 0x22, 0xFF, 0x33, 0x02, 0x2D, 0x02, 0x1E, +0x00, 0x15, 0x00, 0x3D, 0x00, 0x00, 0x45, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x17, 0x06, +0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x27, 0x22, 0x26, 0x26, 0x35, +0x34, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x07, 0x07, 0x21, 0x27, 0x21, 0x07, 0x35, 0x2E, 0x02, +0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x01, +0x7F, 0x36, 0x3D, 0x34, 0x5B, 0x3C, 0x1B, 0x3A, 0x3D, 0x10, 0x0C, 0x0B, 0x10, 0x09, 0x45, 0x0A, +0x24, 0x33, 0x5B, 0x58, 0x82, 0x48, 0x28, 0x48, 0x63, 0x3B, 0x38, 0x5D, 0x44, 0x24, 0x02, 0x01, +0xFE, 0x59, 0x17, 0x01, 0x3C, 0x11, 0x02, 0x1B, 0x2C, 0x1C, 0x27, 0x37, 0x1C, 0x25, 0x47, 0x31, +0x22, 0x35, 0x1F, 0x4B, 0x1F, 0x46, 0x49, 0xCD, 0x3F, 0x2B, 0x2A, 0x40, 0x38, 0x1B, 0x30, 0x20, +0x33, 0x1C, 0x0F, 0x12, 0x0C, 0x0C, 0x33, 0x12, 0x23, 0x17, 0xC3, 0x47, 0x7B, 0x4F, 0x3D, 0x66, +0x4B, 0x29, 0x28, 0x48, 0x62, 0x3A, 0x2B, 0x5A, 0x13, 0x14, 0x19, 0x27, 0x16, 0x1F, 0x3B, 0x2B, +0x2C, 0x41, 0x24, 0x14, 0x18, 0x6A, 0x1B, 0x22, 0x11, 0x00, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, +0x02, 0x2D, 0x02, 0xFF, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x03, 0x01, 0x36, 0x06, +0x00, 0x01, 0x00, 0x1F, 0xFF, 0xF5, 0x02, 0x28, 0x02, 0x1D, 0x00, 0x26, 0x00, 0x00, 0x45, 0x22, +0x26, 0x26, 0x35, 0x37, 0x21, 0x17, 0x21, 0x37, 0x15, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, +0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, +0x0E, 0x02, 0x01, 0x1A, 0x4A, 0x71, 0x40, 0x01, 0x01, 0xA7, 0x17, 0xFE, 0xC4, 0x11, 0x02, 0x1A, +0x2D, 0x1C, 0x28, 0x36, 0x1C, 0x25, 0x46, 0x32, 0x22, 0x35, 0x1F, 0x4B, 0x20, 0x45, 0x49, 0x24, +0x59, 0x81, 0x48, 0x28, 0x48, 0x63, 0x0B, 0x45, 0x7A, 0x4D, 0x2B, 0x5A, 0x13, 0x15, 0x18, 0x27, +0x16, 0x1F, 0x3B, 0x2A, 0x2C, 0x41, 0x25, 0x14, 0x18, 0x6A, 0x1B, 0x22, 0x11, 0x47, 0x7B, 0x50, +0x3C, 0x66, 0x4B, 0x29, 0x00, 0x02, 0x00, 0x1B, 0x00, 0x00, 0x01, 0x9B, 0x02, 0xE6, 0x00, 0x14, +0x00, 0x18, 0x00, 0x00, 0x73, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, +0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x23, 0x22, 0x22, 0x03, 0x35, 0x21, 0x15, 0x68, 0x2D, 0x51, +0x36, 0x26, 0x40, 0x19, 0x2E, 0x0D, 0x18, 0x0A, 0x12, 0x18, 0x0B, 0x50, 0x1B, 0x29, 0x5A, 0x01, +0x5B, 0x02, 0x2D, 0x34, 0x54, 0x31, 0x16, 0x14, 0x75, 0x07, 0x08, 0x0C, 0x19, 0x12, 0xFD, 0xE1, +0x01, 0x80, 0x84, 0x84, 0x00, 0x02, 0x00, 0x22, 0xFF, 0x1A, 0x02, 0x59, 0x02, 0x1E, 0x00, 0x28, +0x00, 0x38, 0x00, 0x00, 0x45, 0x22, 0x26, 0x27, 0x37, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, +0x35, 0x17, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x03, +0x17, 0x07, 0x37, 0x33, 0x11, 0x14, 0x0E, 0x02, 0x03, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, +0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x3A, 0x41, 0x81, 0x28, 0x38, 0x15, 0x33, +0x38, 0x1D, 0x33, 0x40, 0x20, 0x1F, 0x07, 0x37, 0x50, 0x2D, 0x48, 0x71, 0x41, 0x40, 0x70, 0x46, +0x1E, 0x37, 0x2F, 0x25, 0x17, 0x04, 0x21, 0x06, 0x98, 0x27, 0x4B, 0x6A, 0x3F, 0x27, 0x39, 0x1F, +0x1F, 0x39, 0x27, 0x26, 0x38, 0x1F, 0x1F, 0x38, 0xE6, 0x26, 0x1E, 0x70, 0x0E, 0x15, 0x0C, 0x1E, +0x3D, 0x2E, 0x59, 0x05, 0x21, 0x36, 0x21, 0x43, 0x77, 0x4E, 0x50, 0x7B, 0x47, 0x0E, 0x17, 0x1F, +0x24, 0x13, 0x08, 0x78, 0xFE, 0x18, 0x41, 0x65, 0x47, 0x24, 0x01, 0x66, 0x23, 0x3E, 0x2A, 0x2A, +0x3F, 0x23, 0x23, 0x3F, 0x2A, 0x2A, 0x3E, 0x23, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0x1A, 0x02, 0x59, +0x03, 0x05, 0x06, 0x26, 0x01, 0x4B, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFF, 0x55, 0x06, 0xFF, 0xFF, +0x00, 0x22, 0xFF, 0x1A, 0x02, 0x59, 0x03, 0x12, 0x06, 0x26, 0x01, 0x4B, 0x00, 0x00, 0x00, 0x06, +0x02, 0xFD, 0x55, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0x1A, 0x02, 0x59, 0x03, 0x0C, 0x06, 0x26, +0x01, 0x4B, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFC, 0x55, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0x1A, +0x02, 0x59, 0x03, 0x51, 0x06, 0x26, 0x01, 0x4B, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0C, 0x55, 0x06, +0xFF, 0xFF, 0x00, 0x22, 0xFF, 0x1A, 0x02, 0x59, 0x03, 0x21, 0x06, 0x26, 0x01, 0x4B, 0x00, 0x00, +0x00, 0x06, 0x02, 0xF5, 0x55, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0x1A, 0x02, 0x59, 0x02, 0xE5, +0x06, 0x26, 0x01, 0x4B, 0x00, 0x00, 0x00, 0x06, 0x03, 0x05, 0x55, 0x06, 0x00, 0x01, 0x00, 0x47, +0x00, 0x00, 0x02, 0x3C, 0x02, 0xE4, 0x00, 0x1C, 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x07, 0x3E, +0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x26, 0x07, 0x22, 0x0E, 0x02, +0x15, 0x11, 0x23, 0x22, 0x22, 0x47, 0x9D, 0x20, 0x0B, 0x39, 0x50, 0x2C, 0x3C, 0x52, 0x2A, 0xA1, +0x12, 0x25, 0x1B, 0x15, 0x24, 0x1A, 0x0F, 0x4F, 0x1C, 0x28, 0x02, 0xE4, 0xFE, 0xC3, 0x0C, 0x24, +0x3B, 0x24, 0x31, 0x61, 0x46, 0xFE, 0xBA, 0x01, 0x39, 0x20, 0x2A, 0x15, 0x01, 0x0D, 0x19, 0x20, +0x13, 0xFE, 0xC2, 0x00, 0x00, 0x02, 0x00, 0x0D, 0x00, 0x00, 0x02, 0x3C, 0x02, 0xE4, 0x00, 0x03, +0x00, 0x20, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x01, 0x11, 0x33, 0x11, 0x07, 0x3E, 0x02, 0x33, +0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x26, 0x07, 0x22, 0x0E, 0x02, 0x15, 0x11, +0x23, 0x22, 0x22, 0x0D, 0x01, 0x46, 0xFE, 0xF4, 0x9D, 0x20, 0x0B, 0x39, 0x50, 0x2C, 0x3C, 0x52, +0x2A, 0xA1, 0x12, 0x25, 0x1B, 0x15, 0x24, 0x1A, 0x0F, 0x4F, 0x1C, 0x28, 0x02, 0x42, 0x77, 0x77, +0xFD, 0xBE, 0x02, 0xE4, 0xFE, 0xC3, 0x0C, 0x24, 0x3B, 0x24, 0x31, 0x61, 0x46, 0xFE, 0xBA, 0x01, +0x39, 0x20, 0x2A, 0x15, 0x01, 0x0D, 0x19, 0x20, 0x13, 0xFE, 0xC2, 0x00, 0xFF, 0xFF, 0x00, 0x47, +0xFF, 0x15, 0x02, 0x3C, 0x02, 0xE4, 0x06, 0x26, 0x01, 0x52, 0x00, 0x00, 0x00, 0x06, 0x03, 0x13, +0x44, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0x00, 0x00, 0x02, 0x3C, 0x03, 0xBD, 0x06, 0x26, 0x01, 0x52, +0x00, 0x00, 0x00, 0x06, 0x03, 0x2C, 0x44, 0x28, 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0x20, 0x02, 0x3C, +0x02, 0xE4, 0x06, 0x26, 0x01, 0x52, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x44, 0x00, 0x00, 0x02, +0x00, 0x40, 0x00, 0x00, 0x00, 0xFF, 0x03, 0x21, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x73, 0x11, +0x33, 0x11, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x50, 0xA0, +0x50, 0x2D, 0x33, 0x34, 0x2C, 0x2D, 0x32, 0x33, 0x02, 0x13, 0xFD, 0xED, 0x02, 0x7C, 0x2B, 0x28, +0x24, 0x2E, 0x2B, 0x27, 0x25, 0x2E, 0x00, 0x01, 0x00, 0x40, 0x00, 0x00, 0x00, 0xE1, 0x02, 0x13, +0x00, 0x03, 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x40, 0xA1, 0x02, 0x13, 0xFD, 0xED, 0xFF, 0xFF, +0x00, 0x12, 0x00, 0x00, 0x01, 0x0F, 0x03, 0x23, 0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x00, 0x07, +0x02, 0xF8, 0xFF, 0x96, 0x00, 0x06, 0xFF, 0xFF, 0xFF, 0xDD, 0x00, 0x00, 0x01, 0x43, 0x03, 0x05, +0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x00, 0x07, 0x02, 0xFF, 0xFF, 0x96, 0x00, 0x06, 0xFF, 0xFF, +0xFF, 0xD4, 0x00, 0x00, 0x01, 0x4C, 0x03, 0x12, 0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x00, 0x07, +0x02, 0xFD, 0xFF, 0x96, 0x00, 0x06, 0xFF, 0xFF, 0xFF, 0xD0, 0x00, 0x00, 0x01, 0x50, 0x03, 0x0C, +0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x00, 0x07, 0x02, 0xFC, 0xFF, 0x96, 0x00, 0x06, 0xFF, 0xFF, +0xFF, 0x70, 0x00, 0x00, 0x01, 0x34, 0x03, 0x2B, 0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x00, 0x07, +0x03, 0x0A, 0xFF, 0x58, 0x00, 0x06, 0xFF, 0xFF, 0xFF, 0xC1, 0x00, 0x00, 0x01, 0x5F, 0x03, 0x22, +0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x00, 0x07, 0x02, 0xF2, 0xFF, 0x96, 0x00, 0x06, 0xFF, 0xFF, +0xFF, 0xC2, 0x00, 0x00, 0x01, 0x60, 0x03, 0xEA, 0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x00, 0x07, +0x02, 0xF3, 0xFF, 0x97, 0x00, 0x06, 0xFF, 0xFF, 0x00, 0x31, 0x00, 0x00, 0x00, 0xF0, 0x03, 0x21, +0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x00, 0x07, 0x02, 0xF5, 0xFF, 0x96, 0x00, 0x06, 0xFF, 0xFF, +0x00, 0x3E, 0xFF, 0x20, 0x01, 0x01, 0x03, 0x21, 0x06, 0x26, 0x01, 0x57, 0x00, 0x00, 0x00, 0x06, +0x03, 0x0E, 0xA6, 0x00, 0xFF, 0xFF, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0xFB, 0x03, 0x24, 0x06, 0x26, +0x01, 0x58, 0x00, 0x00, 0x00, 0x07, 0x02, 0xF7, 0xFF, 0x82, 0x00, 0x06, 0xFF, 0xFF, 0x00, 0x15, +0x00, 0x00, 0x01, 0x0A, 0x03, 0x3A, 0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x00, 0x07, 0x03, 0x09, +0xFF, 0x96, 0x00, 0x06, 0xFF, 0xFF, 0xFF, 0xDD, 0x00, 0x00, 0x01, 0x43, 0x03, 0x0F, 0x06, 0x26, +0x01, 0x58, 0x00, 0x00, 0x00, 0x07, 0x03, 0x0B, 0xFF, 0x96, 0x00, 0x06, 0xFF, 0xFF, 0x00, 0x40, +0xFF, 0x2E, 0x02, 0x43, 0x03, 0x21, 0x04, 0x26, 0x01, 0x57, 0x00, 0x00, 0x00, 0x07, 0x01, 0x69, +0x01, 0x3F, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xE8, 0x00, 0x00, 0x01, 0x38, 0x02, 0xE5, 0x06, 0x26, +0x01, 0x58, 0x00, 0x00, 0x00, 0x07, 0x03, 0x05, 0xFF, 0x96, 0x00, 0x06, 0xFF, 0xFF, 0x00, 0x02, +0xFF, 0x2D, 0x00, 0xF3, 0x03, 0x21, 0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x00, 0x27, 0x02, 0xF5, +0xFF, 0x96, 0x00, 0x06, 0x00, 0x07, 0x03, 0x12, 0xFF, 0x80, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xDB, +0x00, 0x00, 0x01, 0x45, 0x02, 0xFF, 0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x00, 0x07, 0x03, 0x01, +0xFF, 0x96, 0x00, 0x06, 0x00, 0x02, 0xFF, 0xDA, 0xFF, 0x2E, 0x01, 0x04, 0x03, 0x21, 0x00, 0x0B, +0x00, 0x17, 0x00, 0x00, 0x57, 0x27, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, +0x13, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x17, 0x3D, 0x2E, 0x34, +0x16, 0xA0, 0x32, 0x62, 0x47, 0x2D, 0x33, 0x34, 0x2C, 0x2D, 0x32, 0x33, 0xD2, 0x7C, 0x18, 0x37, +0x30, 0x01, 0xEA, 0xFD, 0xF0, 0x49, 0x5E, 0x2E, 0x03, 0x4E, 0x2B, 0x28, 0x24, 0x2E, 0x2B, 0x27, +0x25, 0x2E, 0x00, 0x01, 0xFF, 0xDA, 0xFF, 0x2E, 0x00, 0xF2, 0x02, 0x13, 0x00, 0x0B, 0x00, 0x00, +0x57, 0x27, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, 0x16, 0x3C, 0x2D, 0x35, +0x16, 0xA0, 0x33, 0x62, 0xD2, 0x7C, 0x18, 0x37, 0x30, 0x01, 0xEA, 0xFD, 0xF0, 0x49, 0x5E, 0x2E, +0xFF, 0xFF, 0xFF, 0xDA, 0xFF, 0x2E, 0x01, 0x64, 0x03, 0x0C, 0x06, 0x26, 0x01, 0x6A, 0x00, 0x00, +0x00, 0x06, 0x02, 0xFC, 0xAA, 0x06, 0x00, 0x03, 0x00, 0x47, 0x00, 0x00, 0x02, 0x71, 0x02, 0xE4, +0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x77, 0x27, 0x37, 0x33, 0x01, 0x11, 0x33, 0x11, +0x33, 0x27, 0x37, 0x01, 0xE1, 0x3B, 0xF8, 0xD3, 0xFD, 0xD6, 0xA0, 0xC8, 0xBB, 0x71, 0x01, 0x07, +0x9C, 0x78, 0xFF, 0xFD, 0xED, 0x02, 0xE4, 0xFD, 0x1C, 0xF2, 0x58, 0xFE, 0xB6, 0x00, 0xFF, 0xFF, +0x00, 0x47, 0xFE, 0xDB, 0x02, 0x71, 0x02, 0xE4, 0x06, 0x26, 0x01, 0x6C, 0x00, 0x00, 0x00, 0x06, +0x03, 0x10, 0x3F, 0x00, 0x00, 0x03, 0x00, 0x47, 0x00, 0x00, 0x02, 0x67, 0x02, 0x13, 0x00, 0x03, +0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x77, 0x27, 0x13, 0x33, 0x01, 0x11, 0x33, 0x11, 0x33, 0x03, +0x37, 0x13, 0xDF, 0x3C, 0xF9, 0xCB, 0xFD, 0xE0, 0x9E, 0xC2, 0xB2, 0x6F, 0xFD, 0x86, 0x74, 0x01, +0x19, 0xFD, 0xED, 0x02, 0x13, 0xFD, 0xED, 0x01, 0x04, 0x4F, 0xFE, 0xAD, 0x00, 0x01, 0x00, 0x48, +0x00, 0x00, 0x00, 0xE8, 0x02, 0xE4, 0x00, 0x03, 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x48, 0xA0, +0x02, 0xE4, 0xFD, 0x1C, 0xFF, 0xFF, 0x00, 0x1B, 0x00, 0x00, 0x01, 0x22, 0x03, 0xD7, 0x06, 0x26, +0x01, 0x6F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x29, 0xA5, 0x28, 0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, +0x01, 0xE6, 0x02, 0xE4, 0x04, 0x26, 0x01, 0x6F, 0x00, 0x00, 0x00, 0x07, 0x02, 0xFB, 0x00, 0x8D, +0x00, 0x30, 0xFF, 0xFF, 0x00, 0x39, 0xFE, 0xDB, 0x00, 0xF8, 0x02, 0xE4, 0x06, 0x26, 0x01, 0x6F, +0x00, 0x00, 0x00, 0x06, 0x03, 0x10, 0x9E, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, 0x01, 0xD0, +0x02, 0xE4, 0x04, 0x26, 0x01, 0x6F, 0x00, 0x00, 0x00, 0x07, 0x02, 0x69, 0x00, 0xFA, 0x01, 0x36, +0xFF, 0xFF, 0x00, 0x37, 0xFF, 0x20, 0x00, 0xFA, 0x02, 0xE4, 0x06, 0x26, 0x01, 0x6F, 0x00, 0x00, +0x00, 0x06, 0x03, 0x0E, 0x9E, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0x2E, 0x02, 0x26, 0x03, 0x21, +0x04, 0x26, 0x01, 0x6F, 0x00, 0x00, 0x00, 0x07, 0x01, 0x69, 0x01, 0x22, 0x00, 0x00, 0xFF, 0xFF, +0xFF, 0xFF, 0xFF, 0x3A, 0x01, 0x31, 0x02, 0xE4, 0x06, 0x26, 0x01, 0x6F, 0x00, 0x00, 0x00, 0x06, +0x03, 0x14, 0x9E, 0x00, 0x00, 0x02, 0xFF, 0xFF, 0x00, 0x00, 0x01, 0x7A, 0x02, 0xE4, 0x00, 0x03, +0x00, 0x07, 0x00, 0x00, 0x77, 0x27, 0x25, 0x17, 0x01, 0x11, 0x33, 0x11, 0x31, 0x32, 0x01, 0x48, +0x33, 0xFE, 0xF2, 0xA0, 0xFD, 0x7E, 0x90, 0x7D, 0xFE, 0x72, 0x02, 0xE4, 0xFD, 0x1C, 0x00, 0x01, +0x00, 0x46, 0x00, 0x00, 0x03, 0x84, 0x02, 0x1D, 0x00, 0x31, 0x00, 0x00, 0x73, 0x11, 0x33, 0x17, +0x07, 0x3E, 0x03, 0x33, 0x32, 0x16, 0x16, 0x17, 0x27, 0x37, 0x3E, 0x03, 0x33, 0x32, 0x16, 0x16, +0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x11, 0x23, 0x11, 0x34, +0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x11, 0x46, 0x98, 0x05, 0x15, 0x0C, 0x25, 0x2F, 0x33, +0x1A, 0x27, 0x40, 0x30, 0x0E, 0x19, 0x08, 0x0D, 0x29, 0x32, 0x36, 0x19, 0x3F, 0x54, 0x2B, 0xA1, +0x12, 0x23, 0x1A, 0x15, 0x23, 0x19, 0x0E, 0xA1, 0x12, 0x24, 0x18, 0x15, 0x23, 0x19, 0x0E, 0x02, +0x13, 0x60, 0x01, 0x1A, 0x28, 0x1B, 0x0E, 0x18, 0x35, 0x2D, 0x02, 0x10, 0x18, 0x27, 0x1B, 0x0E, +0x31, 0x62, 0x46, 0xFE, 0xBC, 0x01, 0x37, 0x20, 0x2A, 0x15, 0x0E, 0x18, 0x20, 0x14, 0xFE, 0xC4, +0x01, 0x38, 0x1E, 0x2A, 0x16, 0x0E, 0x18, 0x20, 0x13, 0xFE, 0xC3, 0x00, 0xFF, 0xFF, 0x00, 0x46, +0xFF, 0x20, 0x03, 0x84, 0x02, 0x1D, 0x06, 0x26, 0x01, 0x78, 0x00, 0x00, 0x00, 0x07, 0x03, 0x0E, +0x00, 0xE8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x47, 0x00, 0x00, 0x02, 0x3C, 0x02, 0x1E, 0x00, 0x1C, +0x00, 0x00, 0x73, 0x11, 0x33, 0x17, 0x07, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, +0x11, 0x34, 0x26, 0x26, 0x07, 0x22, 0x0E, 0x02, 0x15, 0x11, 0x23, 0x22, 0x22, 0x47, 0x98, 0x05, +0x20, 0x0B, 0x39, 0x50, 0x2C, 0x3C, 0x52, 0x2A, 0xA1, 0x12, 0x25, 0x1B, 0x15, 0x24, 0x1A, 0x0F, +0x4F, 0x1C, 0x28, 0x02, 0x13, 0x6C, 0x0C, 0x24, 0x3B, 0x24, 0x31, 0x61, 0x46, 0xFE, 0xBA, 0x01, +0x39, 0x20, 0x2A, 0x15, 0x01, 0x0D, 0x19, 0x20, 0x13, 0xFE, 0xC2, 0x00, 0xFF, 0xFF, 0x00, 0x47, +0x00, 0x00, 0x02, 0x3C, 0x03, 0x23, 0x06, 0x26, 0x01, 0x7A, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, +0x62, 0x06, 0xFF, 0xFF, 0xFF, 0xA3, 0x00, 0x00, 0x02, 0x5E, 0x02, 0xBC, 0x04, 0x27, 0x02, 0xA0, +0xFF, 0x77, 0x00, 0x00, 0x00, 0x06, 0x01, 0x7A, 0x23, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0x00, 0x00, +0x02, 0x3C, 0x03, 0x12, 0x06, 0x26, 0x01, 0x7A, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFD, 0x62, 0x06, +0xFF, 0xFF, 0x00, 0x47, 0xFE, 0xDB, 0x02, 0x3C, 0x02, 0x1E, 0x06, 0x26, 0x01, 0x7A, 0x00, 0x00, +0x00, 0x06, 0x03, 0x10, 0x44, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0x00, 0x00, 0x02, 0x3C, 0x03, 0x21, +0x06, 0x26, 0x01, 0x7A, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF5, 0x62, 0x06, 0xFF, 0xFF, 0x00, 0x47, +0xFF, 0x20, 0x02, 0x3C, 0x02, 0x1E, 0x06, 0x26, 0x01, 0x7A, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, +0x44, 0x00, 0x00, 0x01, 0xFF, 0xDA, 0xFF, 0x2E, 0x02, 0x47, 0x02, 0x1E, 0x00, 0x22, 0x00, 0x00, +0x57, 0x27, 0x32, 0x3E, 0x02, 0x35, 0x11, 0x33, 0x17, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, +0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x26, 0x07, 0x22, 0x0E, 0x02, 0x15, 0x11, 0x0E, 0x02, 0x17, +0x3D, 0x22, 0x2E, 0x1C, 0x0C, 0x98, 0x05, 0x12, 0x10, 0x37, 0x46, 0x25, 0x3C, 0x52, 0x2A, 0xA1, +0x12, 0x24, 0x1C, 0x15, 0x24, 0x1A, 0x0F, 0x01, 0x34, 0x61, 0xD2, 0x7C, 0x0C, 0x1A, 0x2B, 0x1F, +0x01, 0xF9, 0x6F, 0x16, 0x1D, 0x2C, 0x1B, 0x31, 0x60, 0x47, 0xFE, 0xBA, 0x01, 0x39, 0x20, 0x2A, +0x15, 0x01, 0x0D, 0x19, 0x20, 0x13, 0xFE, 0xC4, 0x44, 0x5E, 0x32, 0x00, 0xFF, 0xFF, 0x00, 0x47, +0xFF, 0x2E, 0x03, 0x7F, 0x03, 0x21, 0x04, 0x26, 0x01, 0x7A, 0x00, 0x00, 0x00, 0x07, 0x01, 0x69, +0x02, 0x7B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0x3A, 0x02, 0x3C, 0x02, 0x1E, 0x06, 0x26, +0x01, 0x7A, 0x00, 0x00, 0x00, 0x06, 0x03, 0x14, 0x44, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0x00, 0x00, +0x02, 0x3C, 0x02, 0xFF, 0x06, 0x26, 0x01, 0x7A, 0x00, 0x00, 0x00, 0x06, 0x03, 0x01, 0x62, 0x06, +0x00, 0x01, 0x00, 0x47, 0xFF, 0x35, 0x02, 0x3C, 0x02, 0x1E, 0x00, 0x1F, 0x00, 0x00, 0x45, 0x27, +0x32, 0x36, 0x37, 0x11, 0x34, 0x26, 0x26, 0x07, 0x22, 0x0E, 0x02, 0x15, 0x11, 0x23, 0x11, 0x33, +0x17, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x14, 0x06, 0x06, 0x01, 0x5D, 0x3D, 0x40, +0x3A, 0x01, 0x12, 0x25, 0x1B, 0x15, 0x24, 0x1A, 0x0F, 0xA0, 0x98, 0x03, 0x12, 0x33, 0x3C, 0x21, +0x3C, 0x52, 0x2A, 0x34, 0x64, 0xCB, 0x7D, 0x39, 0x39, 0x01, 0x15, 0x20, 0x2A, 0x15, 0x01, 0x0D, +0x19, 0x20, 0x13, 0xFE, 0xC2, 0x02, 0x13, 0x42, 0x16, 0x23, 0x14, 0x31, 0x61, 0x46, 0xFE, 0xB0, +0x40, 0x55, 0x2C, 0x00, 0x00, 0x02, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x5F, 0x02, 0x1E, 0x00, 0x0F, +0x00, 0x1F, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, +0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x27, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, +0x17, 0x06, 0x16, 0x16, 0x01, 0x41, 0x53, 0x81, 0x4B, 0x4B, 0x81, 0x53, 0x53, 0x81, 0x4A, 0x4A, +0x81, 0x53, 0x24, 0x38, 0x20, 0x01, 0x01, 0x20, 0x38, 0x24, 0x24, 0x39, 0x20, 0x01, 0x01, 0x20, +0x39, 0x0A, 0x48, 0x7C, 0x50, 0x50, 0x7C, 0x48, 0x48, 0x7C, 0x50, 0x50, 0x7C, 0x48, 0x8A, 0x24, +0x3E, 0x28, 0x28, 0x3F, 0x24, 0x24, 0x3F, 0x28, 0x28, 0x3E, 0x24, 0x00, 0xFF, 0xFF, 0x00, 0x22, +0xFF, 0xF6, 0x02, 0x5F, 0x03, 0x23, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, +0x47, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x5F, 0x03, 0x05, 0x06, 0x26, 0x01, 0x86, +0x00, 0x00, 0x00, 0x06, 0x02, 0xFF, 0x47, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x5F, +0x03, 0x12, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFD, 0x47, 0x06, 0xFF, 0xFF, +0x00, 0x22, 0xFF, 0xF6, 0x02, 0x5F, 0x03, 0x0C, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, +0x02, 0xFC, 0x47, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x85, 0x03, 0xC3, 0x06, 0x26, +0x01, 0x86, 0x00, 0x00, 0x00, 0x07, 0x02, 0xEE, 0x00, 0x8C, 0x00, 0x06, 0xFF, 0xFF, 0x00, 0x22, +0xFF, 0x20, 0x02, 0x5F, 0x03, 0x0C, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x26, 0x03, 0x0E, +0x47, 0x00, 0x00, 0x06, 0x02, 0xFC, 0x47, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x5F, +0x03, 0xC3, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x02, 0xEF, 0x5D, 0x06, 0xFF, 0xFF, +0x00, 0x22, 0xFF, 0xF6, 0x02, 0x69, 0x03, 0xC8, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x07, +0x02, 0xF0, 0x00, 0x81, 0x00, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x5F, 0x03, 0xC1, +0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF1, 0x46, 0x06, 0xFF, 0xFF, 0x00, 0x21, +0xFF, 0xF6, 0x02, 0x5F, 0x03, 0x2B, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0A, +0x08, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x5F, 0x03, 0x22, 0x06, 0x26, 0x01, 0x86, +0x00, 0x00, 0x00, 0x06, 0x02, 0xF2, 0x46, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x5F, +0x03, 0xBA, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x26, 0x02, 0xF2, 0x46, 0x06, 0x00, 0x07, +0x03, 0x05, 0x00, 0x47, 0x00, 0xDB, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x5F, 0x03, 0xBA, +0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x26, 0x02, 0xF5, 0x47, 0x06, 0x00, 0x07, 0x03, 0x05, +0x00, 0x47, 0x00, 0xDB, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0x20, 0x02, 0x5F, 0x02, 0x1E, 0x06, 0x26, +0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x47, 0x00, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, +0x02, 0x5F, 0x03, 0x24, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF7, 0x33, 0x06, +0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x5F, 0x03, 0x3A, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, +0x00, 0x06, 0x03, 0x09, 0x46, 0x06, 0x00, 0x02, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x72, 0x02, 0x85, +0x00, 0x1D, 0x00, 0x2D, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, +0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x33, 0x14, 0x06, 0x06, 0x07, 0x37, 0x16, 0x16, +0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x27, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, +0x17, 0x06, 0x16, 0x16, 0x01, 0x41, 0x53, 0x81, 0x4B, 0x4B, 0x81, 0x53, 0x11, 0x20, 0x0E, 0x0B, +0x12, 0x07, 0x29, 0x2A, 0x7B, 0x1B, 0x3A, 0x2F, 0x0D, 0x2E, 0x36, 0x4A, 0x81, 0x53, 0x24, 0x38, +0x20, 0x01, 0x01, 0x20, 0x38, 0x24, 0x24, 0x39, 0x20, 0x01, 0x01, 0x20, 0x39, 0x0A, 0x48, 0x7C, +0x50, 0x50, 0x7C, 0x48, 0x05, 0x02, 0x02, 0x04, 0x3B, 0x39, 0x2E, 0x50, 0x37, 0x09, 0x18, 0x24, +0x6E, 0x43, 0x50, 0x7C, 0x48, 0x8A, 0x24, 0x3E, 0x28, 0x28, 0x3F, 0x24, 0x24, 0x3F, 0x28, 0x28, +0x3E, 0x24, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x72, 0x03, 0x23, 0x06, 0x26, 0x01, 0x97, +0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0x47, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0x20, 0x02, 0x72, +0x02, 0x85, 0x06, 0x26, 0x01, 0x97, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x47, 0x00, 0xFF, 0xFF, +0x00, 0x22, 0xFF, 0xF6, 0x02, 0x72, 0x03, 0x24, 0x06, 0x26, 0x01, 0x97, 0x00, 0x00, 0x00, 0x06, +0x02, 0xF7, 0x33, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x72, 0x03, 0x3A, 0x06, 0x26, +0x01, 0x97, 0x00, 0x00, 0x00, 0x06, 0x03, 0x09, 0x46, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, +0x02, 0x72, 0x02, 0xFF, 0x06, 0x26, 0x01, 0x97, 0x00, 0x00, 0x00, 0x06, 0x03, 0x01, 0x46, 0x06, +0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x5F, 0x03, 0x2B, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, +0x00, 0x06, 0x02, 0xFA, 0x46, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x5F, 0x03, 0x0F, +0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0B, 0x47, 0x06, 0xFF, 0xFF, 0x00, 0x22, +0xFF, 0xF6, 0x02, 0x5F, 0x02, 0xE5, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x03, 0x05, +0x47, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x5F, 0x03, 0xD9, 0x06, 0x26, 0x01, 0x86, +0x00, 0x00, 0x00, 0x06, 0x03, 0x08, 0x47, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x5F, +0x03, 0xD9, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x03, 0x07, 0x47, 0x06, 0x00, 0x03, +0x00, 0x22, 0xFF, 0x33, 0x02, 0x5F, 0x02, 0x1E, 0x00, 0x15, 0x00, 0x25, 0x00, 0x35, 0x00, 0x00, +0x45, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, +0x36, 0x37, 0x17, 0x0E, 0x02, 0x27, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, +0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x27, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, +0x06, 0x17, 0x06, 0x16, 0x16, 0x01, 0x7B, 0x34, 0x3C, 0x33, 0x5A, 0x3B, 0x16, 0x33, 0x3C, 0x0F, +0x0B, 0x0A, 0x11, 0x08, 0x46, 0x0B, 0x24, 0x33, 0x5A, 0x53, 0x81, 0x4B, 0x4B, 0x81, 0x53, 0x53, +0x81, 0x4A, 0x4A, 0x81, 0x53, 0x24, 0x38, 0x20, 0x01, 0x01, 0x20, 0x38, 0x24, 0x24, 0x39, 0x20, +0x01, 0x01, 0x20, 0x39, 0xCD, 0x3F, 0x2C, 0x2A, 0x3F, 0x38, 0x1B, 0x33, 0x1D, 0x31, 0x1E, 0x0F, +0x12, 0x0C, 0x0C, 0x33, 0x12, 0x23, 0x17, 0xC3, 0x48, 0x7C, 0x50, 0x50, 0x7C, 0x48, 0x48, 0x7C, +0x50, 0x50, 0x7C, 0x48, 0x8A, 0x24, 0x3E, 0x28, 0x28, 0x3F, 0x24, 0x24, 0x3F, 0x28, 0x28, 0x3E, +0x24, 0x00, 0x00, 0x03, 0x00, 0x22, 0xFF, 0xDD, 0x02, 0x5F, 0x02, 0x30, 0x00, 0x03, 0x00, 0x13, +0x00, 0x23, 0x00, 0x00, 0x57, 0x27, 0x01, 0x17, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, +0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x27, 0x36, 0x26, 0x26, +0x23, 0x22, 0x06, 0x06, 0x17, 0x06, 0x16, 0x16, 0x78, 0x42, 0x01, 0xCE, 0x43, 0xFE, 0xFA, 0x53, +0x81, 0x4B, 0x4B, 0x81, 0x53, 0x53, 0x81, 0x4A, 0x4A, 0x81, 0x53, 0x24, 0x38, 0x20, 0x01, 0x01, +0x20, 0x38, 0x24, 0x24, 0x39, 0x20, 0x01, 0x01, 0x20, 0x39, 0x23, 0x30, 0x02, 0x23, 0x31, 0xFD, +0xF7, 0x48, 0x7C, 0x50, 0x50, 0x7C, 0x48, 0x48, 0x7C, 0x50, 0x50, 0x7C, 0x48, 0x8A, 0x24, 0x3E, +0x28, 0x28, 0x3F, 0x24, 0x24, 0x3F, 0x28, 0x28, 0x3E, 0x24, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xDD, +0x02, 0x5F, 0x03, 0x23, 0x06, 0x26, 0x01, 0xA3, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0x47, 0x06, +0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x5F, 0x02, 0xFF, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, +0x00, 0x06, 0x03, 0x01, 0x46, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x5F, 0x03, 0xE2, +0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x03, 0x03, 0x46, 0x06, 0xFF, 0xFF, 0x00, 0x22, +0xFF, 0xF6, 0x02, 0x5F, 0x03, 0xC8, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x03, 0x02, +0x46, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF6, 0x02, 0x5F, 0x03, 0xB5, 0x06, 0x26, 0x01, 0x86, +0x00, 0x00, 0x00, 0x26, 0x03, 0x01, 0x46, 0x06, 0x00, 0x07, 0x03, 0x05, 0x00, 0x47, 0x00, 0xD6, +0x00, 0x02, 0x00, 0x22, 0xFF, 0xF6, 0x03, 0xCD, 0x02, 0x1E, 0x00, 0x39, 0x00, 0x49, 0x00, 0x00, +0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, 0x3E, 0x02, +0x33, 0x32, 0x1E, 0x02, 0x07, 0x07, 0x21, 0x27, 0x21, 0x07, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, +0x0E, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x23, 0x22, 0x26, +0x26, 0x27, 0x33, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, 0x27, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, +0x06, 0x17, 0x06, 0x16, 0x16, 0x01, 0x41, 0x53, 0x81, 0x4B, 0x4B, 0x81, 0x53, 0x30, 0x52, 0x45, +0x19, 0x21, 0x18, 0x3E, 0x4D, 0x2B, 0x39, 0x5E, 0x44, 0x24, 0x01, 0x01, 0xFE, 0x85, 0x02, 0x01, +0x16, 0x2D, 0x1B, 0x30, 0x1F, 0x1E, 0x2C, 0x1C, 0x0D, 0x1E, 0x43, 0x35, 0x23, 0x38, 0x20, 0x4C, +0x1F, 0x47, 0x48, 0x24, 0x33, 0x57, 0x46, 0x19, 0x20, 0x16, 0x43, 0x53, 0x2F, 0x24, 0x38, 0x20, +0x01, 0x01, 0x20, 0x38, 0x24, 0x24, 0x39, 0x20, 0x01, 0x01, 0x20, 0x39, 0x0A, 0x48, 0x7C, 0x50, +0x50, 0x7C, 0x48, 0x19, 0x30, 0x22, 0x22, 0x30, 0x19, 0x28, 0x48, 0x62, 0x3A, 0x2B, 0x5A, 0x27, +0x25, 0x1B, 0x28, 0x16, 0x14, 0x24, 0x2F, 0x1B, 0x2B, 0x43, 0x26, 0x14, 0x18, 0x6A, 0x1A, 0x23, +0x11, 0x19, 0x31, 0x23, 0x23, 0x30, 0x1A, 0x8A, 0x24, 0x3E, 0x28, 0x28, 0x3F, 0x24, 0x24, 0x3F, +0x28, 0x28, 0x3E, 0x24, 0x00, 0x02, 0x00, 0x47, 0xFF, 0x24, 0x02, 0x70, 0x02, 0x1D, 0x00, 0x16, +0x00, 0x26, 0x00, 0x00, 0x57, 0x11, 0x33, 0x17, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, +0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x37, 0x11, 0x13, 0x32, 0x36, 0x36, 0x35, 0x34, +0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x47, 0x98, 0x06, 0x1E, 0x07, 0x36, +0x53, 0x2E, 0x44, 0x6A, 0x3D, 0x3D, 0x6B, 0x45, 0x2D, 0x52, 0x38, 0x09, 0x25, 0x74, 0x24, 0x36, +0x1E, 0x1E, 0x35, 0x25, 0x25, 0x36, 0x1E, 0x1E, 0x36, 0xDC, 0x02, 0xEF, 0x77, 0x09, 0x21, 0x36, +0x21, 0x47, 0x7B, 0x51, 0x50, 0x7C, 0x47, 0x22, 0x3A, 0x22, 0x0E, 0xFE, 0xA1, 0x01, 0x5A, 0x23, +0x3E, 0x2B, 0x2A, 0x3F, 0x23, 0x22, 0x40, 0x2A, 0x2B, 0x3E, 0x23, 0x00, 0x00, 0x02, 0x00, 0x47, +0xFF, 0x24, 0x02, 0x70, 0x02, 0xE4, 0x00, 0x17, 0x00, 0x27, 0x00, 0x00, 0x57, 0x11, 0x33, 0x11, +0x27, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, +0x37, 0x11, 0x13, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, +0x16, 0x16, 0x47, 0xA1, 0x21, 0x07, 0x36, 0x53, 0x2E, 0x33, 0x56, 0x3F, 0x23, 0x3D, 0x6B, 0x45, +0x2D, 0x52, 0x38, 0x09, 0x25, 0x74, 0x24, 0x36, 0x1E, 0x1E, 0x35, 0x25, 0x25, 0x36, 0x1E, 0x1E, +0x36, 0xDC, 0x03, 0xC0, 0xFE, 0xB8, 0x09, 0x21, 0x36, 0x21, 0x28, 0x4A, 0x64, 0x3D, 0x50, 0x7C, +0x47, 0x22, 0x3A, 0x22, 0x0E, 0xFE, 0xA1, 0x01, 0x5A, 0x23, 0x3E, 0x2B, 0x2A, 0x3F, 0x23, 0x22, +0x40, 0x2A, 0x2B, 0x3E, 0x23, 0x00, 0x00, 0x02, 0x00, 0x22, 0xFF, 0x24, 0x02, 0x4B, 0x02, 0x1E, +0x00, 0x18, 0x00, 0x28, 0x00, 0x00, 0x45, 0x11, 0x17, 0x0E, 0x03, 0x23, 0x22, 0x26, 0x26, 0x35, +0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x07, 0x37, 0x33, 0x11, 0x01, 0x32, 0x36, 0x36, +0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0xAA, 0x23, 0x04, +0x22, 0x33, 0x40, 0x22, 0x46, 0x6C, 0x3E, 0x3D, 0x6B, 0x43, 0x26, 0x44, 0x36, 0x22, 0x02, 0x24, +0x06, 0x98, 0xFE, 0xEB, 0x25, 0x36, 0x1E, 0x1E, 0x36, 0x25, 0x24, 0x36, 0x1D, 0x1D, 0x36, 0xDC, +0x01, 0x5C, 0x08, 0x19, 0x2F, 0x24, 0x15, 0x47, 0x7C, 0x50, 0x51, 0x7C, 0x47, 0x16, 0x24, 0x2F, +0x1A, 0x06, 0x7E, 0xFD, 0x11, 0x01, 0x5A, 0x22, 0x3F, 0x2B, 0x2B, 0x3F, 0x23, 0x23, 0x40, 0x2A, +0x2B, 0x3F, 0x22, 0x00, 0x00, 0x01, 0x00, 0x47, 0x00, 0x00, 0x01, 0xBD, 0x02, 0x1E, 0x00, 0x15, +0x00, 0x00, 0x73, 0x11, 0x33, 0x17, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, +0x23, 0x22, 0x0E, 0x02, 0x15, 0x11, 0x47, 0x98, 0x07, 0x1E, 0x0C, 0x37, 0x4A, 0x2A, 0x12, 0x1F, +0x0D, 0x2C, 0x0B, 0x25, 0x14, 0x16, 0x26, 0x1A, 0x0F, 0x02, 0x13, 0xAD, 0x21, 0x2B, 0x44, 0x28, +0x06, 0x04, 0xB1, 0x07, 0x09, 0x0F, 0x1C, 0x26, 0x18, 0xFE, 0xF6, 0x00, 0xFF, 0xFF, 0x00, 0x47, +0x00, 0x00, 0x01, 0xBD, 0x03, 0x23, 0x06, 0x26, 0x01, 0xAD, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, +0x0C, 0x06, 0xFF, 0xFF, 0x00, 0x47, 0x00, 0x00, 0x01, 0xC2, 0x03, 0x12, 0x06, 0x26, 0x01, 0xAD, +0x00, 0x00, 0x00, 0x06, 0x02, 0xFD, 0x0C, 0x06, 0xFF, 0xFF, 0x00, 0x34, 0xFE, 0xDB, 0x01, 0xBD, +0x02, 0x1E, 0x06, 0x26, 0x01, 0xAD, 0x00, 0x00, 0x00, 0x06, 0x03, 0x10, 0x99, 0x00, 0xFF, 0xFF, +0xFF, 0xE6, 0x00, 0x00, 0x01, 0xBD, 0x03, 0x2B, 0x06, 0x26, 0x01, 0xAD, 0x00, 0x00, 0x00, 0x06, +0x03, 0x0A, 0xCE, 0x06, 0xFF, 0xFF, 0x00, 0x31, 0xFF, 0x20, 0x01, 0xBD, 0x02, 0x1E, 0x06, 0x26, +0x01, 0xAD, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x99, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0x00, 0x00, +0x01, 0xBD, 0x03, 0x0F, 0x06, 0x26, 0x01, 0xAD, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0B, 0x0C, 0x06, +0xFF, 0xFF, 0xFF, 0xFA, 0xFF, 0x3A, 0x01, 0xBD, 0x02, 0x1E, 0x06, 0x26, 0x01, 0xAD, 0x00, 0x00, +0x00, 0x06, 0x03, 0x14, 0x99, 0x00, 0x00, 0x01, 0x00, 0x12, 0xFF, 0xF6, 0x01, 0xD7, 0x02, 0x1E, +0x00, 0x39, 0x00, 0x00, 0x57, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x35, +0x34, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, +0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, +0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0xFA, 0x4E, 0x77, 0x23, 0x61, 0x1F, +0x4E, 0x23, 0x0E, 0x16, 0x0F, 0x08, 0x12, 0x09, 0x2A, 0x21, 0x2F, 0x45, 0x16, 0x14, 0x16, 0x23, +0x3B, 0x4D, 0x29, 0x2C, 0x50, 0x45, 0x1B, 0x54, 0x12, 0x2D, 0x30, 0x14, 0x0F, 0x17, 0x10, 0x08, +0x0B, 0x0A, 0x0A, 0x2C, 0x26, 0x2F, 0x44, 0x14, 0x10, 0x10, 0x39, 0x64, 0x0A, 0x32, 0x2A, 0x54, +0x1F, 0x1D, 0x06, 0x0B, 0x0F, 0x0A, 0x14, 0x0B, 0x05, 0x0E, 0x09, 0x0C, 0x21, 0x16, 0x15, 0x33, +0x20, 0x25, 0x3C, 0x2C, 0x17, 0x14, 0x24, 0x19, 0x5E, 0x11, 0x1B, 0x10, 0x05, 0x0B, 0x0F, 0x0A, +0x0A, 0x12, 0x06, 0x06, 0x0F, 0x0B, 0x0D, 0x20, 0x16, 0x11, 0x2D, 0x1A, 0x33, 0x4F, 0x2D, 0x00, +0xFF, 0xFF, 0x00, 0x12, 0xFF, 0xF6, 0x01, 0xD7, 0x03, 0x23, 0x06, 0x26, 0x01, 0xB5, 0x00, 0x00, +0x00, 0x06, 0x02, 0xF8, 0xFE, 0x06, 0xFF, 0xFF, 0x00, 0x12, 0xFF, 0xF6, 0x01, 0xD7, 0x03, 0x3C, +0x06, 0x26, 0x01, 0xB5, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF9, 0x0E, 0x06, 0xFF, 0xFF, 0x00, 0x12, +0xFF, 0xF6, 0x01, 0xD7, 0x03, 0x12, 0x06, 0x26, 0x01, 0xB5, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFD, +0xFE, 0x06, 0xFF, 0xFF, 0x00, 0x12, 0xFF, 0xF6, 0x01, 0xD7, 0x03, 0xC3, 0x06, 0x26, 0x01, 0xB5, +0x00, 0x00, 0x00, 0x06, 0x02, 0xFE, 0xFE, 0x06, 0xFF, 0xFF, 0x00, 0x12, 0xFF, 0x09, 0x01, 0xD7, +0x02, 0x1E, 0x06, 0x26, 0x01, 0xB5, 0x00, 0x00, 0x00, 0x06, 0x03, 0x11, 0x01, 0x00, 0xFF, 0xFF, +0x00, 0x12, 0xFF, 0xF6, 0x01, 0xD7, 0x03, 0x0C, 0x06, 0x26, 0x01, 0xB5, 0x00, 0x00, 0x00, 0x06, +0x02, 0xFC, 0xFE, 0x06, 0xFF, 0xFF, 0x00, 0x12, 0xFE, 0xDB, 0x01, 0xD7, 0x02, 0x1E, 0x06, 0x26, +0x01, 0xB5, 0x00, 0x00, 0x00, 0x06, 0x03, 0x10, 0x02, 0x00, 0xFF, 0xFF, 0x00, 0x12, 0xFF, 0xF6, +0x01, 0xD7, 0x03, 0x21, 0x06, 0x26, 0x01, 0xB5, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF5, 0xFE, 0x06, +0xFF, 0xFF, 0x00, 0x12, 0xFF, 0x20, 0x01, 0xD7, 0x02, 0x1E, 0x06, 0x26, 0x01, 0xB5, 0x00, 0x00, +0x00, 0x06, 0x03, 0x0E, 0x02, 0x00, 0xFF, 0xFF, 0x00, 0x12, 0xFF, 0x20, 0x01, 0xD7, 0x03, 0x21, +0x06, 0x26, 0x01, 0xB5, 0x00, 0x00, 0x00, 0x26, 0x03, 0x0E, 0x02, 0x00, 0x00, 0x06, 0x02, 0xF5, +0xFE, 0x06, 0x00, 0x02, 0x00, 0x1B, 0xFF, 0xF6, 0x02, 0x84, 0x02, 0xDE, 0x00, 0x33, 0x00, 0x37, +0x00, 0x00, 0x45, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x02, +0x27, 0x35, 0x3E, 0x03, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x23, 0x11, 0x34, 0x36, +0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x27, 0x1E, 0x03, 0x15, 0x14, 0x06, +0x06, 0x01, 0x35, 0x33, 0x15, 0x01, 0xAB, 0x2A, 0x41, 0x19, 0x3F, 0x12, 0x1E, 0x10, 0x1F, 0x24, +0x16, 0x29, 0x35, 0x1E, 0x15, 0x1E, 0x13, 0x08, 0x2A, 0x24, 0x28, 0x29, 0x9E, 0x3B, 0x6D, 0x4D, +0x40, 0x64, 0x3A, 0x1B, 0x32, 0x23, 0x02, 0x2A, 0x44, 0x32, 0x1B, 0x38, 0x62, 0xFE, 0x31, 0x97, +0x0A, 0x1A, 0x19, 0x6E, 0x0F, 0x0B, 0x29, 0x24, 0x1C, 0x2D, 0x24, 0x1B, 0x0B, 0x55, 0x09, 0x14, +0x16, 0x1A, 0x0E, 0x1F, 0x21, 0x31, 0x2A, 0xFE, 0x0E, 0x01, 0xF3, 0x46, 0x6A, 0x3B, 0x28, 0x4C, +0x35, 0x20, 0x40, 0x35, 0x0F, 0x24, 0x0D, 0x2C, 0x3B, 0x4A, 0x2C, 0x3D, 0x60, 0x38, 0x01, 0x76, +0x8A, 0x8A, 0x00, 0x02, 0x00, 0x15, 0x00, 0x00, 0x01, 0x7A, 0x02, 0x99, 0x00, 0x03, 0x00, 0x07, +0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x73, 0xA0, 0xFE, 0x01, 0x65, 0x02, +0x99, 0xFD, 0x67, 0x01, 0x87, 0x8C, 0x8C, 0x00, 0x00, 0x03, 0x00, 0x15, 0x00, 0x00, 0x01, 0x7A, +0x02, 0x99, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x77, 0x35, 0x21, 0x15, 0x07, 0x11, +0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x23, 0x01, 0x45, 0xF5, 0xA0, 0xFE, 0x01, 0x65, 0xC3, 0x77, +0x77, 0xC3, 0x02, 0x99, 0xFD, 0x67, 0x01, 0x87, 0x8C, 0x8C, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, +0x01, 0xF4, 0x03, 0x3D, 0x06, 0x26, 0x01, 0xC1, 0x00, 0x00, 0x00, 0x07, 0x02, 0xFB, 0x00, 0x9B, +0x00, 0x89, 0xFF, 0xFF, 0x00, 0x15, 0xFF, 0x09, 0x01, 0x7A, 0x02, 0x99, 0x06, 0x26, 0x01, 0xC1, +0x00, 0x00, 0x00, 0x06, 0x03, 0x11, 0xCC, 0x00, 0xFF, 0xFF, 0x00, 0x15, 0xFE, 0xDB, 0x01, 0x7A, +0x02, 0x99, 0x06, 0x26, 0x01, 0xC1, 0x00, 0x00, 0x00, 0x06, 0x03, 0x10, 0xCD, 0x00, 0xFF, 0xFF, +0xFF, 0xF6, 0x00, 0x00, 0x01, 0x94, 0x03, 0x73, 0x06, 0x26, 0x01, 0xC1, 0x00, 0x00, 0x00, 0x06, +0x02, 0xF2, 0xCB, 0x57, 0xFF, 0xFF, 0x00, 0x15, 0xFF, 0x20, 0x01, 0x7A, 0x02, 0x99, 0x06, 0x26, +0x01, 0xC1, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0xCD, 0x00, 0xFF, 0xFF, 0x00, 0x15, 0xFF, 0x3A, +0x01, 0x7A, 0x02, 0x99, 0x06, 0x26, 0x01, 0xC1, 0x00, 0x00, 0x00, 0x06, 0x03, 0x14, 0xCD, 0x00, +0x00, 0x01, 0x00, 0x41, 0xFF, 0xF5, 0x02, 0x3A, 0x02, 0x13, 0x00, 0x19, 0x00, 0x00, 0x57, 0x22, +0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x11, 0x33, +0x11, 0x23, 0x27, 0x37, 0x0E, 0x02, 0xFC, 0x3B, 0x53, 0x2D, 0xA1, 0x14, 0x28, 0x1C, 0x15, 0x23, +0x19, 0x0E, 0xA1, 0x97, 0x07, 0x1E, 0x0C, 0x38, 0x4E, 0x0B, 0x33, 0x60, 0x43, 0x01, 0x48, 0xFE, +0xCE, 0x20, 0x2E, 0x19, 0x0E, 0x19, 0x21, 0x14, 0x01, 0x3D, 0xFD, 0xED, 0x6D, 0x0C, 0x26, 0x3B, +0x23, 0x00, 0xFF, 0xFF, 0x00, 0x41, 0xFF, 0xF5, 0x02, 0x3A, 0x03, 0x23, 0x06, 0x26, 0x01, 0xC9, +0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0x47, 0x06, 0xFF, 0xFF, 0x00, 0x41, 0xFF, 0xF5, 0x02, 0x3A, +0x03, 0x05, 0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFF, 0x47, 0x06, 0xFF, 0xFF, +0x00, 0x41, 0xFF, 0xF5, 0x02, 0x3A, 0x03, 0x12, 0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, +0x02, 0xFD, 0x47, 0x06, 0xFF, 0xFF, 0x00, 0x41, 0xFF, 0xF5, 0x02, 0x3A, 0x03, 0x0C, 0x06, 0x26, +0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFC, 0x47, 0x06, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xF5, +0x02, 0x3A, 0x03, 0x2B, 0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0A, 0x09, 0x06, +0xFF, 0xFF, 0x00, 0x41, 0xFF, 0xF5, 0x02, 0x3A, 0x03, 0x22, 0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, +0x00, 0x06, 0x02, 0xF2, 0x47, 0x06, 0xFF, 0xFF, 0x00, 0x41, 0xFF, 0x20, 0x02, 0x3A, 0x02, 0x13, +0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x47, 0x00, 0xFF, 0xFF, 0x00, 0x41, +0xFF, 0xF5, 0x02, 0x3A, 0x03, 0x24, 0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF7, +0x33, 0x06, 0xFF, 0xFF, 0x00, 0x41, 0xFF, 0xF5, 0x02, 0x3A, 0x03, 0x3A, 0x06, 0x26, 0x01, 0xC9, +0x00, 0x00, 0x00, 0x06, 0x03, 0x09, 0x47, 0x06, 0x00, 0x01, 0x00, 0x41, 0xFF, 0xF5, 0x02, 0x9D, +0x02, 0x85, 0x00, 0x23, 0x00, 0x00, 0x57, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, +0x16, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x11, 0x32, 0x3E, 0x02, 0x35, 0x33, 0x14, 0x06, 0x06, 0x07, +0x37, 0x11, 0x23, 0x27, 0x17, 0x0E, 0x02, 0xFC, 0x3B, 0x53, 0x2D, 0xA1, 0x14, 0x28, 0x1C, 0x15, +0x23, 0x19, 0x0E, 0x29, 0x35, 0x1F, 0x0D, 0x7A, 0x1D, 0x3C, 0x2F, 0x25, 0x97, 0x07, 0x12, 0x0F, +0x36, 0x46, 0x0B, 0x33, 0x60, 0x43, 0x01, 0x48, 0xFE, 0xCE, 0x20, 0x2E, 0x19, 0x0E, 0x19, 0x21, +0x14, 0x01, 0x3D, 0x0D, 0x1B, 0x2B, 0x1F, 0x2F, 0x51, 0x35, 0x05, 0x2C, 0xFE, 0x09, 0x73, 0x16, +0x1E, 0x2F, 0x1B, 0x00, 0xFF, 0xFF, 0x00, 0x41, 0xFF, 0xF5, 0x02, 0x9D, 0x03, 0x23, 0x06, 0x26, +0x01, 0xD3, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0x47, 0x06, 0xFF, 0xFF, 0x00, 0x41, 0xFF, 0x20, +0x02, 0x9D, 0x02, 0x85, 0x06, 0x26, 0x01, 0xD3, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x47, 0x00, +0xFF, 0xFF, 0x00, 0x41, 0xFF, 0xF5, 0x02, 0x9D, 0x03, 0x24, 0x06, 0x26, 0x01, 0xD3, 0x00, 0x00, +0x00, 0x06, 0x02, 0xF7, 0x33, 0x06, 0xFF, 0xFF, 0x00, 0x41, 0xFF, 0xF5, 0x02, 0x9D, 0x03, 0x3A, +0x06, 0x26, 0x01, 0xD3, 0x00, 0x00, 0x00, 0x06, 0x03, 0x09, 0x47, 0x06, 0xFF, 0xFF, 0x00, 0x41, +0xFF, 0xF5, 0x02, 0x9D, 0x02, 0xFF, 0x06, 0x26, 0x01, 0xD3, 0x00, 0x00, 0x00, 0x06, 0x03, 0x01, +0x47, 0x06, 0xFF, 0xFF, 0x00, 0x41, 0xFF, 0xF5, 0x02, 0x3A, 0x03, 0x2B, 0x06, 0x26, 0x01, 0xC9, +0x00, 0x00, 0x00, 0x06, 0x02, 0xFA, 0x47, 0x06, 0xFF, 0xFF, 0x00, 0x41, 0xFF, 0xF5, 0x02, 0x3A, +0x03, 0x0F, 0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0B, 0x47, 0x06, 0xFF, 0xFF, +0x00, 0x41, 0xFF, 0xF5, 0x02, 0x3A, 0x02, 0xE5, 0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, +0x03, 0x05, 0x47, 0x06, 0xFF, 0xFF, 0x00, 0x41, 0xFF, 0xF5, 0x02, 0x3A, 0x03, 0xD7, 0x06, 0x26, +0x01, 0xC9, 0x00, 0x00, 0x00, 0x26, 0x03, 0x05, 0x47, 0x06, 0x00, 0x07, 0x02, 0xF2, 0x00, 0x47, +0x00, 0xBB, 0xFF, 0xFF, 0x00, 0x41, 0xFF, 0x2D, 0x02, 0x40, 0x02, 0x13, 0x06, 0x26, 0x01, 0xC9, +0x00, 0x00, 0x00, 0x07, 0x03, 0x12, 0x00, 0xCD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x41, 0xFF, 0xF5, +0x02, 0x3A, 0x03, 0x45, 0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, 0x03, 0x00, 0x47, 0x06, +0xFF, 0xFF, 0x00, 0x41, 0xFF, 0xF5, 0x02, 0x3A, 0x02, 0xFF, 0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, +0x00, 0x06, 0x03, 0x01, 0x47, 0x06, 0xFF, 0xFF, 0x00, 0x41, 0xFF, 0xF5, 0x02, 0x3A, 0x03, 0xE2, +0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, 0x03, 0x03, 0x47, 0x06, 0x00, 0x01, 0x00, 0x0C, +0x00, 0x00, 0x02, 0x51, 0x02, 0x13, 0x00, 0x07, 0x00, 0x00, 0x73, 0x03, 0x33, 0x13, 0x07, 0x13, +0x33, 0x03, 0xEA, 0xDE, 0xB1, 0x84, 0x27, 0x88, 0xAF, 0xE9, 0x02, 0x13, 0xFE, 0x73, 0x04, 0x01, +0x91, 0xFD, 0xED, 0x00, 0x00, 0x01, 0x00, 0x0C, 0x00, 0x00, 0x03, 0x36, 0x02, 0x13, 0x00, 0x0F, +0x00, 0x00, 0x73, 0x03, 0x33, 0x13, 0x27, 0x13, 0x33, 0x13, 0x07, 0x13, 0x33, 0x03, 0x23, 0x03, +0x17, 0x03, 0xBB, 0xAF, 0xA9, 0x62, 0x15, 0x6E, 0x5E, 0x74, 0x17, 0x62, 0xA9, 0xB5, 0x76, 0x73, +0x0C, 0x73, 0x02, 0x13, 0xFE, 0xA7, 0x04, 0x01, 0x0C, 0xFE, 0xF3, 0x02, 0x01, 0x58, 0xFD, 0xED, +0x01, 0x1D, 0x02, 0xFE, 0xE5, 0x00, 0xFF, 0xFF, 0x00, 0x0C, 0x00, 0x00, 0x03, 0x36, 0x03, 0x23, +0x06, 0x26, 0x01, 0xE2, 0x00, 0x00, 0x00, 0x07, 0x02, 0xF8, 0x00, 0xA7, 0x00, 0x06, 0xFF, 0xFF, +0x00, 0x0C, 0x00, 0x00, 0x03, 0x36, 0x03, 0x0C, 0x06, 0x26, 0x01, 0xE2, 0x00, 0x00, 0x00, 0x07, +0x02, 0xFC, 0x00, 0xA7, 0x00, 0x06, 0xFF, 0xFF, 0x00, 0x0C, 0x00, 0x00, 0x03, 0x36, 0x03, 0x22, +0x06, 0x26, 0x01, 0xE2, 0x00, 0x00, 0x00, 0x07, 0x02, 0xF2, 0x00, 0xA7, 0x00, 0x06, 0xFF, 0xFF, +0x00, 0x0C, 0x00, 0x00, 0x03, 0x36, 0x03, 0x24, 0x06, 0x26, 0x01, 0xE2, 0x00, 0x00, 0x00, 0x07, +0x02, 0xF7, 0x00, 0x93, 0x00, 0x06, 0x00, 0x03, 0x00, 0x12, 0x00, 0x00, 0x02, 0x4C, 0x02, 0x13, +0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, 0x61, 0x27, 0x27, 0x03, 0x33, 0x17, 0x17, 0x13, +0x21, 0x13, 0x17, 0x07, 0x37, 0x27, 0x37, 0x33, 0x01, 0x8E, 0x71, 0x34, 0xD2, 0xC0, 0x6D, 0x39, +0xCF, 0xFD, 0xC6, 0xD6, 0x56, 0x6F, 0xA2, 0x55, 0x69, 0xBD, 0xAB, 0x49, 0x01, 0x1F, 0xA3, 0x4E, +0xFE, 0xDE, 0x01, 0x2A, 0x67, 0xC3, 0xE7, 0x66, 0xC6, 0x00, 0x00, 0x01, 0x00, 0x05, 0xFF, 0x1A, +0x02, 0x67, 0x02, 0x13, 0x00, 0x10, 0x00, 0x00, 0x57, 0x13, 0x17, 0x01, 0x33, 0x13, 0x16, 0x16, +0x17, 0x07, 0x36, 0x36, 0x37, 0x13, 0x33, 0x03, 0x07, 0x8A, 0x79, 0x02, 0xFF, 0x00, 0xB5, 0x70, +0x09, 0x10, 0x04, 0x16, 0x06, 0x0F, 0x09, 0x62, 0xB6, 0xE2, 0x5C, 0xE6, 0x01, 0x1D, 0x52, 0x02, +0x2E, 0xFE, 0xF5, 0x14, 0x2E, 0x15, 0x0D, 0x0F, 0x2D, 0x1A, 0x01, 0x19, 0xFD, 0xED, 0xE6, 0x00, +0xFF, 0xFF, 0x00, 0x05, 0xFF, 0x1A, 0x02, 0x67, 0x03, 0x23, 0x06, 0x26, 0x01, 0xE8, 0x00, 0x00, +0x00, 0x06, 0x02, 0xF8, 0x3D, 0x06, 0xFF, 0xFF, 0x00, 0x05, 0xFF, 0x1A, 0x02, 0x67, 0x03, 0x0C, +0x06, 0x26, 0x01, 0xE8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFC, 0x3D, 0x06, 0xFF, 0xFF, 0x00, 0x05, +0xFF, 0x1A, 0x02, 0x67, 0x03, 0x22, 0x06, 0x26, 0x01, 0xE8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF2, +0x3C, 0x06, 0xFF, 0xFF, 0x00, 0x05, 0xFF, 0x1A, 0x02, 0x67, 0x03, 0x21, 0x06, 0x26, 0x01, 0xE8, +0x00, 0x00, 0x00, 0x06, 0x02, 0xF5, 0x3D, 0x06, 0xFF, 0xFF, 0x00, 0x05, 0xFF, 0x1A, 0x02, 0x67, +0x02, 0x13, 0x06, 0x26, 0x01, 0xE8, 0x00, 0x00, 0x00, 0x07, 0x03, 0x0E, 0x01, 0x02, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x05, 0xFF, 0x1A, 0x02, 0x67, 0x03, 0x24, 0x06, 0x26, 0x01, 0xE8, 0x00, 0x00, +0x00, 0x06, 0x02, 0xF7, 0x29, 0x06, 0xFF, 0xFF, 0x00, 0x05, 0xFF, 0x1A, 0x02, 0x67, 0x03, 0x3A, +0x06, 0x26, 0x01, 0xE8, 0x00, 0x00, 0x00, 0x06, 0x03, 0x09, 0x3C, 0x06, 0xFF, 0xFF, 0x00, 0x05, +0xFF, 0x1A, 0x02, 0x67, 0x02, 0xE5, 0x06, 0x26, 0x01, 0xE8, 0x00, 0x00, 0x00, 0x06, 0x03, 0x05, +0x3D, 0x06, 0xFF, 0xFF, 0x00, 0x05, 0xFF, 0x1A, 0x02, 0x67, 0x02, 0xFF, 0x06, 0x26, 0x01, 0xE8, +0x00, 0x00, 0x00, 0x06, 0x03, 0x01, 0x3C, 0x06, 0x00, 0x01, 0x00, 0x32, 0x00, 0x00, 0x01, 0xF3, +0x02, 0x13, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x35, 0x01, 0x15, 0x21, 0x35, 0x21, 0x15, 0x01, 0x27, +0x21, 0x15, 0x32, 0x01, 0x1A, 0xFE, 0xE6, 0x01, 0xB8, 0xFE, 0xF5, 0x04, 0x01, 0x18, 0x5C, 0x01, +0x6A, 0x35, 0x82, 0x60, 0xFE, 0xA1, 0x2E, 0x82, 0xFF, 0xFF, 0x00, 0x32, 0x00, 0x00, 0x01, 0xF3, +0x03, 0x23, 0x06, 0x26, 0x01, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0x19, 0x06, 0xFF, 0xFF, +0x00, 0x32, 0x00, 0x00, 0x01, 0xF3, 0x03, 0x12, 0x06, 0x26, 0x01, 0xF2, 0x00, 0x00, 0x00, 0x06, +0x02, 0xFD, 0x19, 0x06, 0xFF, 0xFF, 0x00, 0x32, 0x00, 0x00, 0x01, 0xF3, 0x03, 0x21, 0x06, 0x26, +0x01, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF5, 0x19, 0x06, 0xFF, 0xFF, 0x00, 0x32, 0xFF, 0x20, +0x01, 0xF3, 0x02, 0x13, 0x06, 0x26, 0x01, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x19, 0x00, +0xFF, 0xFF, 0x00, 0x12, 0xFF, 0x2E, 0x02, 0x43, 0x03, 0x23, 0x04, 0x26, 0x01, 0x58, 0x00, 0x00, +0x00, 0x27, 0x02, 0xF8, 0xFF, 0x96, 0x00, 0x06, 0x00, 0x27, 0x01, 0x6A, 0x01, 0x21, 0x00, 0x00, +0x00, 0x07, 0x02, 0xF8, 0x00, 0xCB, 0x00, 0x06, 0x00, 0x02, 0x00, 0x26, 0xFF, 0xF6, 0x01, 0xFE, +0x02, 0x1E, 0x00, 0x10, 0x00, 0x2E, 0x00, 0x00, 0x61, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, +0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x05, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, +0x02, 0x33, 0x33, 0x07, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, +0x37, 0x17, 0x0E, 0x02, 0x01, 0x63, 0x2D, 0x2A, 0x26, 0x3E, 0x1D, 0x5E, 0x30, 0x7B, 0x4B, 0x42, +0x63, 0x36, 0xFE, 0xDA, 0x33, 0x50, 0x2F, 0x1E, 0x3B, 0x59, 0x3A, 0xA3, 0x09, 0x96, 0x14, 0x20, +0x17, 0x0B, 0x10, 0x1C, 0x12, 0x1A, 0x30, 0x25, 0x0B, 0x1C, 0x15, 0x3C, 0x45, 0x01, 0x46, 0x2A, +0x27, 0x1D, 0x22, 0x5E, 0x2F, 0x39, 0x28, 0x52, 0x3F, 0xFE, 0x9B, 0x0A, 0x28, 0x47, 0x30, 0x28, +0x3E, 0x29, 0x15, 0x63, 0x08, 0x0E, 0x15, 0x0E, 0x0F, 0x16, 0x0D, 0x11, 0x20, 0x15, 0x46, 0x22, +0x35, 0x1E, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x01, 0xFE, 0x03, 0x23, 0x06, 0x26, 0x01, 0xF8, +0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0x22, 0x06, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x01, 0xFE, +0x03, 0x05, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFF, 0x22, 0x06, 0xFF, 0xFF, +0x00, 0x26, 0xFF, 0xF6, 0x01, 0xFE, 0x03, 0xD3, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, +0x02, 0xEA, 0x22, 0x06, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0x20, 0x01, 0xFE, 0x03, 0x05, 0x06, 0x26, +0x01, 0xF8, 0x00, 0x00, 0x00, 0x26, 0x03, 0x0E, 0x22, 0x00, 0x00, 0x06, 0x02, 0xFF, 0x22, 0x06, +0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x01, 0xFE, 0x03, 0xD3, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, +0x00, 0x06, 0x02, 0xEB, 0x22, 0x06, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x01, 0xFE, 0x03, 0xDD, +0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xEC, 0x22, 0x06, 0xFF, 0xFF, 0x00, 0x26, +0xFF, 0xF6, 0x01, 0xFE, 0x03, 0xC5, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xED, +0x21, 0x06, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x01, 0xFE, 0x03, 0x12, 0x06, 0x26, 0x01, 0xF8, +0x00, 0x00, 0x00, 0x06, 0x02, 0xFD, 0x22, 0x06, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x01, 0xFE, +0x03, 0x0C, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFC, 0x22, 0x06, 0xFF, 0xFF, +0x00, 0x26, 0xFF, 0xF6, 0x02, 0x60, 0x03, 0xC3, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, +0x02, 0xEE, 0x67, 0x06, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0x20, 0x01, 0xFE, 0x03, 0x0C, 0x06, 0x26, +0x01, 0xF8, 0x00, 0x00, 0x00, 0x26, 0x03, 0x0E, 0x22, 0x00, 0x00, 0x06, 0x02, 0xFC, 0x22, 0x06, +0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x02, 0x03, 0x03, 0xC3, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, +0x00, 0x06, 0x02, 0xEF, 0x38, 0x06, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x02, 0x44, 0x03, 0xC8, +0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF0, 0x5C, 0x06, 0xFF, 0xFF, 0x00, 0x26, +0xFF, 0xF6, 0x01, 0xFE, 0x03, 0xC1, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF1, +0x21, 0x06, 0xFF, 0xFF, 0xFF, 0xFC, 0xFF, 0xF6, 0x01, 0xFE, 0x03, 0x2B, 0x06, 0x26, 0x01, 0xF8, +0x00, 0x00, 0x00, 0x06, 0x03, 0x0A, 0xE3, 0x06, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x01, 0xFE, +0x03, 0x22, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF2, 0x21, 0x06, 0xFF, 0xFF, +0x00, 0x26, 0xFF, 0x20, 0x01, 0xFE, 0x02, 0x1E, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, +0x03, 0x0E, 0x22, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x01, 0xFE, 0x03, 0x24, 0x06, 0x26, +0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF7, 0x0E, 0x06, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, +0x01, 0xFE, 0x03, 0x3A, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x03, 0x09, 0x21, 0x06, +0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x01, 0xFE, 0x03, 0x0F, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, +0x00, 0x06, 0x03, 0x0B, 0x22, 0x06, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x01, 0xFE, 0x02, 0xE5, +0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x03, 0x05, 0x22, 0x06, 0xFF, 0xFF, 0x00, 0x26, +0xFF, 0x2D, 0x02, 0x04, 0x02, 0x1E, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x07, 0x03, 0x12, +0x00, 0x92, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x01, 0xFE, 0x03, 0x45, 0x06, 0x26, +0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x03, 0x00, 0x21, 0x06, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, +0x01, 0xFE, 0x04, 0x37, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x26, 0x03, 0x00, 0x21, 0x06, +0x00, 0x07, 0x02, 0xF8, 0x00, 0x22, 0x01, 0x19, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x01, 0xFE, +0x02, 0xFF, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x03, 0x01, 0x21, 0x06, 0x00, 0x03, +0x00, 0x24, 0xFF, 0x16, 0x02, 0x3B, 0x02, 0x1C, 0x00, 0x37, 0x00, 0x45, 0x00, 0x55, 0x00, 0x00, +0x45, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x07, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, +0x07, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x27, 0x33, 0x15, 0x23, +0x37, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, +0x32, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, +0x15, 0x14, 0x16, 0x16, 0x13, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, +0x15, 0x14, 0x16, 0x16, 0x01, 0x2F, 0x83, 0x88, 0x15, 0x2D, 0x23, 0x02, 0x24, 0x27, 0x19, 0x2C, +0x1E, 0x04, 0x24, 0x27, 0x0F, 0x3C, 0x66, 0x3E, 0x10, 0x1C, 0x22, 0x1A, 0x36, 0xE8, 0x67, 0x14, +0x09, 0x0A, 0x04, 0x3C, 0x65, 0x3E, 0x26, 0x12, 0x15, 0x14, 0x13, 0x35, 0x7E, 0x8E, 0x40, 0x78, +0x55, 0x21, 0x30, 0x1B, 0x3A, 0x32, 0x2F, 0x3A, 0x1A, 0x30, 0x12, 0x16, 0x23, 0x15, 0x15, 0x23, +0x16, 0x16, 0x22, 0x15, 0x15, 0x22, 0xEA, 0x5E, 0x4F, 0x1D, 0x31, 0x28, 0x0C, 0x08, 0x09, 0x2D, +0x1B, 0x17, 0x22, 0x17, 0x03, 0x14, 0x1E, 0x32, 0x2F, 0x1B, 0x32, 0x52, 0x31, 0x04, 0x08, 0x07, +0x08, 0x70, 0x1C, 0x14, 0x1D, 0x18, 0x0D, 0x33, 0x55, 0x32, 0x10, 0x0D, 0x0F, 0x10, 0x58, 0x56, +0x34, 0x4F, 0x2A, 0x75, 0x0F, 0x19, 0x10, 0x1A, 0x1F, 0x1F, 0x1A, 0x10, 0x19, 0x0F, 0x01, 0x92, +0x11, 0x21, 0x15, 0x13, 0x1F, 0x12, 0x12, 0x1F, 0x13, 0x14, 0x21, 0x12, 0xFF, 0xFF, 0x00, 0x24, +0xFF, 0x16, 0x02, 0x3B, 0x03, 0x05, 0x06, 0x26, 0x02, 0x12, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFF, +0x30, 0x06, 0xFF, 0xFF, 0x00, 0x24, 0xFF, 0x16, 0x02, 0x3B, 0x03, 0x12, 0x06, 0x26, 0x02, 0x12, +0x00, 0x00, 0x00, 0x06, 0x02, 0xFD, 0x30, 0x06, 0xFF, 0xFF, 0x00, 0x24, 0xFF, 0x16, 0x02, 0x3B, +0x03, 0x0C, 0x06, 0x26, 0x02, 0x12, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFC, 0x30, 0x06, 0xFF, 0xFF, +0x00, 0x24, 0xFF, 0x16, 0x02, 0x3B, 0x03, 0x51, 0x06, 0x26, 0x02, 0x12, 0x00, 0x00, 0x00, 0x06, +0x03, 0x0C, 0x30, 0x06, 0xFF, 0xFF, 0x00, 0x24, 0xFF, 0x16, 0x02, 0x3B, 0x03, 0x21, 0x06, 0x26, +0x02, 0x12, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF5, 0x30, 0x06, 0xFF, 0xFF, 0x00, 0x24, 0xFF, 0x16, +0x02, 0x3B, 0x02, 0xE5, 0x06, 0x26, 0x02, 0x12, 0x00, 0x00, 0x00, 0x06, 0x03, 0x05, 0x30, 0x06, +0xFF, 0xFF, 0x00, 0x1B, 0x00, 0x00, 0x03, 0x24, 0x02, 0xE6, 0x04, 0x26, 0x01, 0x4A, 0x00, 0x00, +0x00, 0x07, 0x01, 0x4A, 0x01, 0x89, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1B, 0x00, 0x00, 0x04, 0x11, +0x03, 0x21, 0x04, 0x26, 0x01, 0x4A, 0x00, 0x00, 0x00, 0x27, 0x01, 0x4A, 0x01, 0x89, 0x00, 0x00, +0x00, 0x07, 0x01, 0x57, 0x03, 0x12, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1B, 0xFF, 0x2E, 0x05, 0x55, +0x03, 0x21, 0x04, 0x26, 0x01, 0x4A, 0x00, 0x00, 0x00, 0x27, 0x01, 0x4A, 0x01, 0x89, 0x00, 0x00, +0x00, 0x27, 0x01, 0x57, 0x03, 0x12, 0x00, 0x00, 0x00, 0x07, 0x01, 0x69, 0x04, 0x51, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x1B, 0x00, 0x00, 0x03, 0xFA, 0x02, 0xE6, 0x04, 0x26, 0x01, 0x4A, 0x00, 0x00, +0x00, 0x27, 0x01, 0x4A, 0x01, 0x89, 0x00, 0x00, 0x00, 0x07, 0x01, 0x6F, 0x03, 0x12, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x1B, 0xFF, 0x2E, 0x03, 0xCC, 0x03, 0x21, 0x04, 0x26, 0x01, 0x4A, 0x00, 0x00, +0x00, 0x27, 0x01, 0x57, 0x01, 0x89, 0x00, 0x00, 0x00, 0x07, 0x01, 0x69, 0x02, 0xC8, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x1B, 0x00, 0x00, 0x02, 0x88, 0x03, 0x21, 0x04, 0x26, 0x01, 0x4A, 0x00, 0x00, +0x00, 0x07, 0x01, 0x57, 0x01, 0x89, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1B, 0x00, 0x00, 0x02, 0x71, +0x02, 0xE6, 0x04, 0x26, 0x01, 0x4A, 0x00, 0x00, 0x00, 0x07, 0x01, 0x6F, 0x01, 0x89, 0x00, 0x00, +0x00, 0x02, 0x00, 0x12, 0x01, 0x86, 0x01, 0x63, 0x02, 0xD2, 0x00, 0x15, 0x00, 0x24, 0x00, 0x00, +0x53, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x27, 0x35, 0x33, 0x11, +0x23, 0x35, 0x37, 0x14, 0x06, 0x06, 0x37, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, +0x06, 0x15, 0x14, 0x16, 0x16, 0x8C, 0x26, 0x37, 0x1D, 0x22, 0x3C, 0x28, 0x37, 0x35, 0x15, 0x74, +0x74, 0x15, 0x1D, 0x36, 0x09, 0x11, 0x1A, 0x0E, 0x1F, 0x1B, 0x0F, 0x18, 0x0D, 0x0C, 0x18, 0x01, +0x86, 0x2B, 0x4E, 0x33, 0x2E, 0x48, 0x2A, 0x41, 0x3B, 0x32, 0x43, 0xFE, 0xC6, 0x49, 0x20, 0x1D, +0x35, 0x22, 0x5B, 0x13, 0x22, 0x17, 0x22, 0x28, 0x13, 0x20, 0x14, 0x18, 0x24, 0x13, 0x00, 0x02, +0x00, 0x1F, 0x01, 0x89, 0x01, 0x70, 0x02, 0xCC, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, 0x53, 0x22, +0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, +0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0xC7, 0x30, +0x4C, 0x2C, 0x2C, 0x4C, 0x30, 0x30, 0x4D, 0x2C, 0x2B, 0x4E, 0x31, 0x11, 0x19, 0x0E, 0x0D, 0x19, +0x12, 0x10, 0x18, 0x0E, 0x0D, 0x19, 0x01, 0x89, 0x29, 0x49, 0x2E, 0x2F, 0x49, 0x2B, 0x2B, 0x4A, +0x2E, 0x2E, 0x48, 0x2A, 0x54, 0x14, 0x23, 0x17, 0x17, 0x22, 0x12, 0x13, 0x22, 0x16, 0x18, 0x23, +0x13, 0x00, 0xFF, 0xFF, 0xFF, 0xFD, 0x00, 0x00, 0x02, 0xCE, 0x02, 0xDF, 0x06, 0x06, 0x02, 0xE1, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1C, 0x00, 0x00, 0x02, 0xBB, 0x02, 0xCC, 0x06, 0x06, 0x02, 0xE0, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0x5E, 0x02, 0x38, 0x02, 0x13, 0x06, 0x06, 0x02, 0xE5, +0x00, 0x00, 0x00, 0x01, 0x00, 0x1F, 0x00, 0x00, 0x02, 0x6F, 0x02, 0x13, 0x00, 0x0F, 0x00, 0x00, +0x73, 0x11, 0x17, 0x23, 0x35, 0x21, 0x15, 0x23, 0x37, 0x11, 0x23, 0x11, 0x17, 0x23, 0x37, 0x11, +0x69, 0x11, 0x5B, 0x02, 0x50, 0x53, 0x09, 0x96, 0x0A, 0xA6, 0x0D, 0x01, 0xE1, 0x5A, 0x8C, 0x8C, +0x34, 0xFE, 0x45, 0x01, 0xD1, 0x4A, 0x34, 0xFE, 0x45, 0x00, 0x00, 0x02, 0x00, 0x28, 0xFF, 0xF6, +0x02, 0x7B, 0x02, 0xC6, 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, +0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, +0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0x51, 0x5E, 0x85, 0x46, 0x46, 0x85, 0x5E, 0x5E, 0x86, +0x46, 0x46, 0x86, 0x5E, 0x41, 0x47, 0x47, 0x41, 0x41, 0x47, 0x47, 0x0A, 0x56, 0xA1, 0x71, 0x71, +0xA1, 0x56, 0x56, 0xA1, 0x71, 0x71, 0xA1, 0x56, 0x90, 0x70, 0x68, 0x6B, 0x73, 0x73, 0x6B, 0x68, +0x70, 0x00, 0x00, 0x02, 0x00, 0x45, 0x00, 0x00, 0x01, 0xFD, 0x02, 0xC6, 0x00, 0x07, 0x00, 0x0B, +0x00, 0x00, 0x77, 0x11, 0x17, 0x07, 0x27, 0x37, 0x33, 0x11, 0x05, 0x35, 0x21, 0x15, 0xD3, 0x25, +0x96, 0x1D, 0xC7, 0x6E, 0xFE, 0xD9, 0x01, 0xAA, 0x31, 0x02, 0x38, 0x55, 0x47, 0x98, 0x61, 0xFD, +0x6B, 0x31, 0x96, 0x96, 0x00, 0x01, 0x00, 0x1A, 0x00, 0x00, 0x02, 0x1B, 0x02, 0xCC, 0x00, 0x22, +0x00, 0x00, 0x73, 0x27, 0x37, 0x3E, 0x03, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, +0x27, 0x3E, 0x02, 0x33, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x03, 0x07, 0x07, 0x27, 0x21, 0x15, 0x3B, +0x21, 0xCC, 0x11, 0x28, 0x26, 0x17, 0x12, 0x22, 0x1A, 0x17, 0x2A, 0x25, 0x10, 0x7E, 0x15, 0x4D, +0x68, 0x3B, 0x3E, 0x64, 0x3B, 0x0A, 0x14, 0x21, 0x2E, 0x1F, 0x9F, 0x14, 0x01, 0x5E, 0x52, 0xDF, +0x13, 0x30, 0x33, 0x30, 0x14, 0x14, 0x1E, 0x11, 0x17, 0x30, 0x23, 0x44, 0x3A, 0x59, 0x31, 0x01, +0x33, 0x5B, 0x3D, 0x15, 0x2E, 0x31, 0x37, 0x3C, 0x22, 0xAD, 0x4C, 0x96, 0x00, 0x01, 0x00, 0x17, +0xFF, 0xF6, 0x02, 0x29, 0x02, 0xC2, 0x00, 0x28, 0x00, 0x00, 0x45, 0x22, 0x26, 0x27, 0x37, 0x1E, +0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x37, +0x17, 0x25, 0x35, 0x21, 0x17, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x06, +0x06, 0x01, 0x1F, 0x55, 0x7F, 0x34, 0x7A, 0x16, 0x2F, 0x33, 0x1C, 0x1C, 0x2F, 0x1D, 0x19, 0x2F, +0x21, 0x0F, 0x22, 0x26, 0x14, 0x25, 0xAA, 0x2E, 0xFE, 0xDC, 0x01, 0xAE, 0x1F, 0xE7, 0x28, 0x08, +0x25, 0x11, 0x2F, 0x52, 0x40, 0x24, 0x47, 0x79, 0x0A, 0x47, 0x57, 0x4F, 0x23, 0x2A, 0x13, 0x19, +0x2E, 0x1D, 0x1F, 0x2B, 0x16, 0x07, 0x0C, 0x0A, 0x63, 0xB9, 0x19, 0x06, 0x8F, 0x3E, 0xF8, 0x2F, +0x04, 0x07, 0x22, 0x3C, 0x51, 0x2E, 0x46, 0x6D, 0x40, 0x00, 0x00, 0x01, 0x00, 0x13, 0x00, 0x00, +0x02, 0x73, 0x02, 0xC2, 0x00, 0x0B, 0x00, 0x00, 0x61, 0x11, 0x17, 0x03, 0x27, 0x21, 0x15, 0x21, +0x27, 0x01, 0x33, 0x11, 0x01, 0x5D, 0x5B, 0xFD, 0x18, 0x01, 0xD0, 0xFD, 0xE4, 0x44, 0x01, 0x65, +0x89, 0x02, 0x36, 0x02, 0xFE, 0xCA, 0x1E, 0x8C, 0x83, 0x01, 0xAF, 0xFD, 0x3E, 0x00, 0x00, 0x01, +0x00, 0x20, 0xFF, 0xF9, 0x02, 0x21, 0x02, 0xC2, 0x00, 0x26, 0x00, 0x00, 0x45, 0x22, 0x26, 0x27, +0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, +0x27, 0x13, 0x21, 0x15, 0x21, 0x37, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, +0x06, 0x06, 0x01, 0x1A, 0x4F, 0x81, 0x2A, 0x5B, 0x29, 0x46, 0x2B, 0x20, 0x32, 0x1D, 0x1D, 0x31, +0x20, 0x17, 0x28, 0x2D, 0x1F, 0x48, 0x2B, 0x01, 0x92, 0xFE, 0xBF, 0x2C, 0x21, 0x3C, 0x13, 0x37, +0x40, 0x20, 0x42, 0x69, 0x3E, 0x46, 0x76, 0x07, 0x40, 0x3C, 0x64, 0x2D, 0x21, 0x1A, 0x2F, 0x1D, +0x1E, 0x2F, 0x1C, 0x08, 0x13, 0x12, 0x60, 0x01, 0x35, 0x8F, 0x38, 0xDE, 0x14, 0x11, 0x1A, 0x11, +0x3D, 0x6C, 0x46, 0x45, 0x6F, 0x41, 0x00, 0x02, 0x00, 0x22, 0x00, 0x00, 0x02, 0x29, 0x02, 0xC7, +0x00, 0x1F, 0x00, 0x2F, 0x00, 0x00, 0x61, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x37, 0x37, +0x33, 0x17, 0x07, 0x0E, 0x02, 0x07, 0x27, 0x3E, 0x03, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, +0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, +0x16, 0x01, 0x26, 0x36, 0x5F, 0x46, 0x29, 0x10, 0x1D, 0x29, 0x19, 0x62, 0x9D, 0x04, 0x88, 0x1A, +0x26, 0x1E, 0x0F, 0x20, 0x0A, 0x2C, 0x3B, 0x40, 0x1F, 0x3B, 0x63, 0x3C, 0x43, 0x75, 0x49, 0x20, +0x31, 0x1C, 0x1D, 0x31, 0x1E, 0x20, 0x33, 0x1C, 0x1C, 0x32, 0x27, 0x45, 0x5C, 0x35, 0x25, 0x45, +0x47, 0x4B, 0x2A, 0xA4, 0x0A, 0xD6, 0x2A, 0x49, 0x48, 0x28, 0x45, 0x23, 0x3B, 0x2B, 0x17, 0x3F, +0x68, 0x3E, 0x4A, 0x76, 0x44, 0x8C, 0x1C, 0x33, 0x21, 0x1C, 0x31, 0x1F, 0x1D, 0x31, 0x1E, 0x20, +0x33, 0x1D, 0x00, 0x01, 0x00, 0x2E, 0x00, 0x00, 0x02, 0x06, 0x02, 0xC2, 0x00, 0x07, 0x00, 0x00, +0x73, 0x01, 0x17, 0x21, 0x35, 0x21, 0x17, 0x01, 0x54, 0x01, 0x18, 0x30, 0xFE, 0x92, 0x01, 0xC8, +0x10, 0xFE, 0xF8, 0x02, 0x7E, 0x50, 0x94, 0x51, 0xFD, 0x8F, 0x00, 0x03, 0x00, 0x28, 0xFF, 0xFD, +0x02, 0x2F, 0x02, 0xC7, 0x00, 0x25, 0x00, 0x35, 0x00, 0x45, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, +0x35, 0x34, 0x3E, 0x02, 0x37, 0x07, 0x2E, 0x03, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, +0x15, 0x14, 0x0E, 0x02, 0x07, 0x27, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, +0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x13, 0x32, 0x36, 0x36, +0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x2B, 0x48, 0x75, +0x46, 0x14, 0x29, 0x3B, 0x26, 0x0C, 0x1C, 0x2E, 0x20, 0x11, 0x3F, 0x6B, 0x42, 0x41, 0x6B, 0x40, +0x10, 0x20, 0x2E, 0x1E, 0x09, 0x22, 0x3A, 0x2A, 0x17, 0x46, 0x76, 0x48, 0x1C, 0x2C, 0x1A, 0x19, +0x2D, 0x1C, 0x1C, 0x2C, 0x1A, 0x1A, 0x2C, 0x1C, 0x18, 0x27, 0x16, 0x16, 0x27, 0x18, 0x19, 0x27, +0x16, 0x16, 0x27, 0x03, 0x37, 0x5E, 0x3B, 0x27, 0x3F, 0x31, 0x23, 0x0B, 0x28, 0x0B, 0x20, 0x29, +0x30, 0x1A, 0x38, 0x56, 0x31, 0x31, 0x56, 0x38, 0x1A, 0x30, 0x27, 0x21, 0x0C, 0x24, 0x09, 0x21, +0x31, 0x3F, 0x27, 0x3C, 0x5E, 0x36, 0x86, 0x16, 0x26, 0x19, 0x1A, 0x27, 0x17, 0x17, 0x27, 0x1A, +0x18, 0x26, 0x17, 0x01, 0x34, 0x13, 0x21, 0x16, 0x16, 0x22, 0x14, 0x14, 0x22, 0x16, 0x16, 0x21, +0x13, 0x00, 0x00, 0x02, 0x00, 0x1E, 0x00, 0x00, 0x02, 0x26, 0x02, 0xCD, 0x00, 0x1B, 0x00, 0x2B, +0x00, 0x00, 0x73, 0x27, 0x13, 0x17, 0x0E, 0x03, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, +0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x07, 0x07, 0x03, 0x32, 0x36, 0x36, 0x35, 0x34, +0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0xD0, 0x04, 0xDB, 0x1D, 0x0A, 0x2C, +0x3D, 0x42, 0x1E, 0x39, 0x60, 0x3A, 0x45, 0x76, 0x4A, 0x36, 0x5E, 0x47, 0x28, 0x0C, 0x1A, 0x23, +0x17, 0x58, 0x54, 0x1F, 0x30, 0x1B, 0x1B, 0x2F, 0x1F, 0x1E, 0x2D, 0x1B, 0x1B, 0x2E, 0x0A, 0x01, +0xBA, 0x3C, 0x24, 0x3A, 0x2B, 0x17, 0x3E, 0x68, 0x3D, 0x48, 0x75, 0x45, 0x26, 0x43, 0x58, 0x31, +0x24, 0x45, 0x48, 0x4E, 0x2E, 0xAE, 0x01, 0x6E, 0x1C, 0x2F, 0x1D, 0x1F, 0x31, 0x1C, 0x1B, 0x31, +0x20, 0x1B, 0x2F, 0x1E, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x7B, 0x02, 0xC6, 0x06, 0x26, +0x02, 0x26, 0x00, 0x00, 0x00, 0x07, 0x02, 0x69, 0x00, 0xD1, 0x01, 0x14, 0x00, 0x02, 0x00, 0x24, +0xFF, 0xF6, 0x01, 0x76, 0x01, 0x78, 0x00, 0x0F, 0x00, 0x1C, 0x00, 0x00, 0x57, 0x22, 0x26, 0x26, +0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, +0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0xCE, 0x31, 0x4D, 0x2C, 0x2B, 0x4C, 0x33, +0x32, 0x4C, 0x2A, 0x2B, 0x4D, 0x30, 0x12, 0x1A, 0x0D, 0x1E, 0x1B, 0x1B, 0x21, 0x20, 0x0A, 0x32, +0x57, 0x38, 0x38, 0x58, 0x31, 0x31, 0x58, 0x38, 0x38, 0x57, 0x32, 0x66, 0x17, 0x28, 0x1C, 0x29, +0x32, 0x32, 0x29, 0x29, 0x32, 0x00, 0x00, 0x01, 0x00, 0x1A, 0xFF, 0xFF, 0x00, 0xE6, 0x01, 0x6D, +0x00, 0x0A, 0x00, 0x00, 0x57, 0x11, 0x17, 0x07, 0x27, 0x37, 0x33, 0x11, 0x23, 0x22, 0x22, 0x74, +0x11, 0x3D, 0x2E, 0x75, 0x57, 0x39, 0x0E, 0x1C, 0x01, 0x01, 0x24, 0x29, 0x26, 0x53, 0x46, 0xFE, +0x92, 0x00, 0x00, 0x01, 0x00, 0x26, 0x00, 0x00, 0x01, 0x4C, 0x01, 0x79, 0x00, 0x1D, 0x00, 0x00, +0x73, 0x27, 0x37, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, +0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x07, 0x37, 0x33, 0x15, 0x3C, 0x0D, 0x66, 0x10, +0x1D, 0x13, 0x0E, 0x0D, 0x13, 0x25, 0x0E, 0x4E, 0x15, 0x30, 0x37, 0x21, 0x27, 0x39, 0x1F, 0x26, +0x39, 0x1C, 0x36, 0x02, 0xB9, 0x54, 0x53, 0x0B, 0x1B, 0x1F, 0x0E, 0x0D, 0x10, 0x1F, 0x16, 0x38, +0x1F, 0x2B, 0x15, 0x1D, 0x32, 0x1E, 0x28, 0x3C, 0x2D, 0x12, 0x28, 0x19, 0x5A, 0x00, 0x00, 0x01, +0x00, 0x24, 0xFF, 0xF6, 0x01, 0x3A, 0x01, 0x6F, 0x00, 0x23, 0x00, 0x00, 0x57, 0x22, 0x26, 0x26, +0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x37, +0x17, 0x23, 0x35, 0x33, 0x17, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06, +0xB1, 0x1C, 0x2F, 0x2B, 0x17, 0x2D, 0x11, 0x24, 0x13, 0x17, 0x1C, 0x1A, 0x17, 0x0D, 0x1D, 0x0E, +0x17, 0x8F, 0x08, 0xA4, 0xDB, 0x0A, 0x78, 0x06, 0x0A, 0x19, 0x07, 0x2E, 0x3C, 0x26, 0x3F, 0x0A, +0x07, 0x0F, 0x0C, 0x4E, 0x0A, 0x0A, 0x15, 0x12, 0x0F, 0x12, 0x05, 0x04, 0x3D, 0x63, 0x1D, 0x5B, +0x55, 0x56, 0x07, 0x06, 0x07, 0x39, 0x2F, 0x24, 0x37, 0x1F, 0x00, 0x03, 0x00, 0x19, 0xFF, 0xFF, +0x01, 0x72, 0x01, 0x71, 0x00, 0x03, 0x00, 0x09, 0x00, 0x11, 0x00, 0x00, 0x65, 0x33, 0x15, 0x23, +0x27, 0x27, 0x33, 0x07, 0x35, 0x17, 0x13, 0x23, 0x35, 0x17, 0x23, 0x27, 0x37, 0x33, 0x01, 0x28, +0x4A, 0x4A, 0xB9, 0x10, 0x93, 0x22, 0x1D, 0x4B, 0x79, 0x1F, 0xB1, 0x14, 0xB5, 0x6A, 0x9F, 0x5A, +0x38, 0x22, 0x22, 0x9E, 0x0B, 0xFE, 0xEF, 0x68, 0x22, 0x50, 0xDC, 0x00, 0x00, 0x01, 0x00, 0x21, +0xFF, 0xF6, 0x01, 0x43, 0x01, 0x6D, 0x00, 0x22, 0x00, 0x00, 0x57, 0x22, 0x26, 0x27, 0x37, 0x16, +0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x37, 0x33, 0x15, 0x23, +0x37, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x9F, 0x1E, 0x49, +0x17, 0x30, 0x13, 0x29, 0x17, 0x17, 0x1B, 0x1A, 0x16, 0x12, 0x23, 0x15, 0x2E, 0x1B, 0xE8, 0xB6, +0x2D, 0x1C, 0x1C, 0x0F, 0x2A, 0x1E, 0x23, 0x38, 0x21, 0x29, 0x4A, 0x0A, 0x17, 0x11, 0x4E, 0x0B, +0x0D, 0x17, 0x12, 0x11, 0x17, 0x08, 0x0D, 0x2E, 0xAF, 0x5B, 0x2B, 0x89, 0x14, 0x13, 0x0F, 0x1D, +0x33, 0x1F, 0x28, 0x3B, 0x22, 0x00, 0x00, 0x02, 0x00, 0x24, 0xFF, 0xF6, 0x01, 0x52, 0x01, 0x78, +0x00, 0x1C, 0x00, 0x28, 0x00, 0x00, 0x57, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, +0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x07, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, +0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0xC0, +0x47, 0x55, 0x29, 0x4D, 0x37, 0x22, 0x3E, 0x18, 0x2C, 0x0F, 0x24, 0x0E, 0x25, 0x28, 0x01, 0x3A, +0x12, 0x45, 0x2A, 0x25, 0x38, 0x20, 0x26, 0x42, 0x29, 0x12, 0x1A, 0x18, 0x13, 0x14, 0x1A, 0x19, +0x0A, 0x5F, 0x52, 0x3C, 0x5F, 0x36, 0x13, 0x13, 0x4A, 0x0B, 0x0A, 0x33, 0x32, 0x41, 0x37, 0x3F, +0x1F, 0x34, 0x22, 0x26, 0x3B, 0x21, 0x53, 0x19, 0x13, 0x12, 0x1A, 0x1A, 0x11, 0x14, 0x19, 0x00, +0x00, 0x01, 0x00, 0x27, 0x00, 0x00, 0x01, 0x38, 0x01, 0x6C, 0x00, 0x08, 0x00, 0x00, 0x73, 0x35, +0x13, 0x17, 0x23, 0x35, 0x33, 0x17, 0x03, 0x3D, 0x87, 0x21, 0xBE, 0xEC, 0x25, 0x87, 0x09, 0x01, +0x2A, 0x2A, 0x63, 0x41, 0xFE, 0xD5, 0x00, 0x03, 0x00, 0x2A, 0xFF, 0xF5, 0x01, 0x56, 0x01, 0x78, +0x00, 0x1E, 0x00, 0x2A, 0x00, 0x36, 0x00, 0x00, 0x57, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, +0x07, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, +0x27, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, +0x15, 0x14, 0x16, 0x37, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0xC1, +0x2A, 0x44, 0x29, 0x2B, 0x2A, 0x03, 0x21, 0x27, 0x25, 0x3F, 0x29, 0x27, 0x40, 0x25, 0x11, 0x20, +0x17, 0x01, 0x25, 0x2D, 0x28, 0x44, 0x29, 0x14, 0x1D, 0x1D, 0x14, 0x15, 0x1D, 0x1D, 0x15, 0x12, +0x19, 0x19, 0x12, 0x13, 0x18, 0x19, 0x0B, 0x1F, 0x33, 0x1F, 0x24, 0x30, 0x0C, 0x12, 0x0C, 0x2C, +0x20, 0x1E, 0x31, 0x1D, 0x1D, 0x31, 0x1E, 0x15, 0x20, 0x19, 0x0A, 0x12, 0x0A, 0x32, 0x24, 0x1F, +0x33, 0x1F, 0x4D, 0x1A, 0x14, 0x12, 0x1A, 0x1A, 0x12, 0x14, 0x1A, 0xA0, 0x15, 0x10, 0x11, 0x17, +0x16, 0x12, 0x10, 0x15, 0x00, 0x02, 0x00, 0x21, 0xFF, 0xF6, 0x01, 0x4F, 0x01, 0x78, 0x00, 0x1D, +0x00, 0x29, 0x00, 0x00, 0x57, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, +0x37, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, +0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0xA2, 0x22, +0x3E, 0x18, 0x2C, 0x0F, 0x23, 0x11, 0x18, 0x21, 0x12, 0x01, 0x3A, 0x12, 0x45, 0x2A, 0x25, 0x38, +0x20, 0x27, 0x45, 0x2C, 0x44, 0x52, 0x29, 0x4D, 0x28, 0x14, 0x1A, 0x19, 0x14, 0x12, 0x1A, 0x18, +0x0A, 0x13, 0x13, 0x4A, 0x0B, 0x0A, 0x17, 0x2D, 0x21, 0x41, 0x37, 0x3F, 0x1F, 0x35, 0x21, 0x26, +0x3B, 0x21, 0x5F, 0x52, 0x3C, 0x5F, 0x36, 0xD7, 0x1A, 0x11, 0x14, 0x19, 0x19, 0x13, 0x12, 0x1A, +0xFF, 0xFF, 0x00, 0x24, 0xFF, 0x38, 0x01, 0x76, 0x00, 0xBA, 0x06, 0x07, 0x02, 0x31, 0x00, 0x00, +0xFF, 0x42, 0xFF, 0xFF, 0x00, 0x1A, 0xFF, 0x37, 0x00, 0xE6, 0x00, 0xA5, 0x06, 0x07, 0x02, 0x32, +0x00, 0x00, 0xFF, 0x38, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0x38, 0x01, 0x4C, 0x00, 0xB1, 0x06, 0x07, +0x02, 0x33, 0x00, 0x00, 0xFF, 0x38, 0xFF, 0xFF, 0x00, 0x24, 0xFF, 0x38, 0x01, 0x3A, 0x00, 0xB1, +0x06, 0x07, 0x02, 0x34, 0x00, 0x00, 0xFF, 0x42, 0xFF, 0xFF, 0x00, 0x19, 0xFF, 0x37, 0x01, 0x72, +0x00, 0xA9, 0x06, 0x07, 0x02, 0x35, 0x00, 0x00, 0xFF, 0x38, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0x2E, +0x01, 0x43, 0x00, 0xA5, 0x06, 0x07, 0x02, 0x36, 0x00, 0x00, 0xFF, 0x38, 0xFF, 0xFF, 0x00, 0x24, +0xFF, 0x38, 0x01, 0x52, 0x00, 0xBA, 0x06, 0x07, 0x02, 0x37, 0x00, 0x00, 0xFF, 0x42, 0xFF, 0xFF, +0x00, 0x27, 0xFF, 0x38, 0x01, 0x38, 0x00, 0xA4, 0x06, 0x07, 0x02, 0x38, 0x00, 0x00, 0xFF, 0x38, +0xFF, 0xFF, 0x00, 0x2A, 0xFF, 0x37, 0x01, 0x56, 0x00, 0xBA, 0x06, 0x07, 0x02, 0x39, 0x00, 0x00, +0xFF, 0x42, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0x38, 0x01, 0x4F, 0x00, 0xBA, 0x06, 0x07, 0x02, 0x3A, +0x00, 0x00, 0xFF, 0x42, 0xFF, 0xFF, 0x00, 0x24, 0x01, 0x56, 0x01, 0x76, 0x02, 0xD8, 0x06, 0x07, +0x02, 0x31, 0x00, 0x00, 0x01, 0x60, 0xFF, 0xFF, 0x00, 0x1A, 0x01, 0x68, 0x00, 0xE6, 0x02, 0xD6, +0x06, 0x07, 0x02, 0x32, 0x00, 0x00, 0x01, 0x69, 0xFF, 0xFF, 0x00, 0x26, 0x01, 0x5C, 0x01, 0x4C, +0x02, 0xD5, 0x06, 0x07, 0x02, 0x33, 0x00, 0x00, 0x01, 0x5C, 0xFF, 0xFF, 0x00, 0x24, 0x01, 0x56, +0x01, 0x3A, 0x02, 0xCF, 0x06, 0x07, 0x02, 0x34, 0x00, 0x00, 0x01, 0x60, 0xFF, 0xFF, 0x00, 0x19, +0x01, 0x5D, 0x01, 0x72, 0x02, 0xCF, 0x06, 0x07, 0x02, 0x35, 0x00, 0x00, 0x01, 0x5E, 0xFF, 0xFF, +0x00, 0x21, 0x01, 0x57, 0x01, 0x43, 0x02, 0xCE, 0x06, 0x07, 0x02, 0x36, 0x00, 0x00, 0x01, 0x61, +0xFF, 0xFF, 0x00, 0x24, 0x01, 0x58, 0x01, 0x52, 0x02, 0xDA, 0x06, 0x07, 0x02, 0x37, 0x00, 0x00, +0x01, 0x62, 0xFF, 0xFF, 0x00, 0x27, 0x01, 0x64, 0x01, 0x38, 0x02, 0xD0, 0x06, 0x07, 0x02, 0x38, +0x00, 0x00, 0x01, 0x64, 0xFF, 0xFF, 0x00, 0x2A, 0x01, 0x55, 0x01, 0x56, 0x02, 0xD8, 0x06, 0x07, +0x02, 0x39, 0x00, 0x00, 0x01, 0x60, 0xFF, 0xFF, 0x00, 0x21, 0x01, 0x56, 0x01, 0x4F, 0x02, 0xD8, +0x06, 0x07, 0x02, 0x3A, 0x00, 0x00, 0x01, 0x60, 0xFF, 0xFF, 0x00, 0x24, 0x01, 0x9C, 0x01, 0x76, +0x03, 0x1E, 0x06, 0x07, 0x02, 0x31, 0x00, 0x00, 0x01, 0xA6, 0xFF, 0xFF, 0x00, 0x1A, 0x01, 0xAE, +0x00, 0xE6, 0x03, 0x1C, 0x06, 0x07, 0x02, 0x32, 0x00, 0x00, 0x01, 0xAF, 0xFF, 0xFF, 0x00, 0x26, +0x01, 0xA2, 0x01, 0x4C, 0x03, 0x1B, 0x06, 0x07, 0x02, 0x33, 0x00, 0x00, 0x01, 0xA2, 0xFF, 0xFF, +0x00, 0x24, 0x01, 0x9C, 0x01, 0x3A, 0x03, 0x15, 0x06, 0x07, 0x02, 0x34, 0x00, 0x00, 0x01, 0xA6, +0xFF, 0xFF, 0x00, 0x19, 0x01, 0xA3, 0x01, 0x72, 0x03, 0x15, 0x06, 0x07, 0x02, 0x35, 0x00, 0x00, +0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x21, 0x01, 0x9D, 0x01, 0x43, 0x03, 0x14, 0x06, 0x07, 0x02, 0x36, +0x00, 0x00, 0x01, 0xA7, 0xFF, 0xFF, 0x00, 0x24, 0x01, 0x9E, 0x01, 0x52, 0x03, 0x20, 0x06, 0x07, +0x02, 0x37, 0x00, 0x00, 0x01, 0xA8, 0xFF, 0xFF, 0x00, 0x27, 0x01, 0xAA, 0x01, 0x38, 0x03, 0x16, +0x06, 0x07, 0x02, 0x38, 0x00, 0x00, 0x01, 0xAA, 0xFF, 0xFF, 0x00, 0x2A, 0x01, 0x9B, 0x01, 0x56, +0x03, 0x1E, 0x06, 0x07, 0x02, 0x39, 0x00, 0x00, 0x01, 0xA6, 0xFF, 0xFF, 0x00, 0x21, 0x01, 0x9C, +0x01, 0x4F, 0x03, 0x1E, 0x06, 0x07, 0x02, 0x3A, 0x00, 0x00, 0x01, 0xA6, 0x00, 0x01, 0xFF, 0xFD, +0x00, 0x00, 0x02, 0x61, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x00, 0x63, 0x01, 0x33, 0x01, 0x03, 0x01, +0xD3, 0x91, 0xFE, 0x2C, 0x02, 0xBC, 0xFD, 0x44, 0xFF, 0xFF, 0x00, 0x22, 0x00, 0x00, 0x03, 0x16, +0x02, 0xD6, 0x04, 0x27, 0x02, 0x32, 0x00, 0x09, 0x01, 0x69, 0x00, 0x26, 0x02, 0x59, 0x5C, 0x00, +0x00, 0x07, 0x02, 0x33, 0x01, 0xCB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x22, 0xFF, 0xFF, 0x03, 0x11, +0x02, 0xD6, 0x04, 0x27, 0x02, 0x32, 0x00, 0x09, 0x01, 0x69, 0x00, 0x26, 0x02, 0x59, 0x5C, 0x00, +0x00, 0x07, 0x02, 0x35, 0x01, 0xA0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x17, 0xFF, 0xFF, 0x03, 0x2E, +0x02, 0xCF, 0x04, 0x27, 0x02, 0x34, 0xFF, 0xF3, 0x01, 0x60, 0x00, 0x26, 0x02, 0x59, 0x7E, 0x00, +0x00, 0x07, 0x02, 0x35, 0x01, 0xBD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x3C, 0xFF, 0xF5, 0x03, 0x2B, +0x02, 0xD6, 0x04, 0x27, 0x02, 0x32, 0x00, 0x22, 0x01, 0x69, 0x00, 0x26, 0x02, 0x59, 0x66, 0x00, +0x00, 0x07, 0x02, 0x39, 0x01, 0xD4, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x17, 0xFF, 0xF5, 0x03, 0x29, +0x02, 0xCF, 0x04, 0x27, 0x02, 0x34, 0xFF, 0xF3, 0x01, 0x60, 0x00, 0x26, 0x02, 0x59, 0x6A, 0x00, +0x00, 0x07, 0x02, 0x39, 0x01, 0xD3, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x20, 0xFF, 0xF5, 0x03, 0x51, +0x02, 0xCE, 0x04, 0x27, 0x02, 0x36, 0xFF, 0xFF, 0x01, 0x61, 0x00, 0x27, 0x02, 0x59, 0x00, 0x89, +0x00, 0x00, 0x00, 0x07, 0x02, 0x39, 0x01, 0xFA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x3C, 0xFF, 0xF5, +0x03, 0x37, 0x02, 0xD0, 0x04, 0x27, 0x02, 0x38, 0x00, 0x15, 0x01, 0x64, 0x00, 0x26, 0x02, 0x59, +0x66, 0x00, 0x00, 0x07, 0x02, 0x39, 0x01, 0xE1, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2A, 0xFF, 0xF5, +0x00, 0xD7, 0x00, 0xA8, 0x00, 0x0B, 0x00, 0x00, 0x57, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, +0x16, 0x15, 0x14, 0x06, 0x80, 0x29, 0x2D, 0x30, 0x26, 0x29, 0x2E, 0x30, 0x0B, 0x2E, 0x2B, 0x28, +0x32, 0x2F, 0x2B, 0x27, 0x32, 0x00, 0x00, 0x01, 0x00, 0x27, 0xFF, 0x38, 0x00, 0xF5, 0x00, 0x82, +0x00, 0x15, 0x00, 0x00, 0x57, 0x27, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, +0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x55, 0x2E, 0x28, 0x30, 0x09, 0x12, 0x17, +0x10, 0x2D, 0x24, 0x1D, 0x2F, 0x1B, 0x18, 0x2B, 0x3B, 0xC8, 0x39, 0x12, 0x37, 0x14, 0x09, 0x15, +0x0D, 0x11, 0x21, 0x14, 0x1F, 0x24, 0x20, 0x38, 0x25, 0x22, 0x3F, 0x37, 0x2A, 0x00, 0xFF, 0xFF, +0x00, 0x2A, 0xFF, 0xF5, 0x00, 0xD7, 0x02, 0x1D, 0x06, 0x26, 0x02, 0x69, 0x00, 0x00, 0x00, 0x07, +0x02, 0x69, 0x00, 0x00, 0x01, 0x75, 0xFF, 0xFF, 0x00, 0x2A, 0xFF, 0x38, 0x00, 0xF8, 0x02, 0x1D, +0x04, 0x26, 0x02, 0x6A, 0x04, 0x00, 0x00, 0x07, 0x02, 0x69, 0x00, 0x0F, 0x01, 0x76, 0xFF, 0xFF, +0x00, 0x2A, 0xFF, 0xF5, 0x02, 0xB6, 0x00, 0xA8, 0x04, 0x26, 0x02, 0x69, 0x00, 0x00, 0x00, 0x27, +0x02, 0x69, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x07, 0x02, 0x69, 0x01, 0xE0, 0x00, 0x00, 0x00, 0x02, +0x00, 0x43, 0xFF, 0xF5, 0x00, 0xF0, 0x02, 0xC7, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x00, 0x77, 0x2E, +0x02, 0x35, 0x35, 0x33, 0x15, 0x14, 0x06, 0x06, 0x07, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, +0x32, 0x16, 0x15, 0x14, 0x06, 0x68, 0x08, 0x10, 0x0A, 0xA9, 0x0A, 0x10, 0x09, 0x32, 0x29, 0x2E, +0x30, 0x27, 0x29, 0x2D, 0x30, 0xFF, 0x3D, 0x82, 0x80, 0x3B, 0x4E, 0x4E, 0x3C, 0x82, 0x81, 0x3B, +0xFE, 0xF6, 0x2E, 0x2B, 0x28, 0x32, 0x2F, 0x2B, 0x27, 0x32, 0x00, 0x02, 0x00, 0x42, 0xFF, 0x4B, +0x00, 0xEF, 0x02, 0x1D, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x00, 0x53, 0x1E, 0x02, 0x15, 0x15, 0x23, +0x35, 0x34, 0x36, 0x36, 0x37, 0x13, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, +0x36, 0xCA, 0x08, 0x10, 0x0A, 0xA9, 0x0A, 0x11, 0x08, 0x32, 0x2A, 0x2D, 0x30, 0x27, 0x29, 0x2D, +0x30, 0x01, 0x13, 0x3D, 0x81, 0x81, 0x3B, 0x4E, 0x4E, 0x3C, 0x83, 0x80, 0x3B, 0x01, 0x0A, 0x2E, +0x2B, 0x28, 0x32, 0x2F, 0x2B, 0x27, 0x32, 0x00, 0x00, 0x02, 0x00, 0x18, 0xFF, 0xF5, 0x01, 0xF0, +0x02, 0xCB, 0x00, 0x1C, 0x00, 0x28, 0x00, 0x00, 0x77, 0x27, 0x3E, 0x04, 0x35, 0x34, 0x26, 0x26, +0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x0F, +0x02, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0xC3, 0x20, 0x1D, 0x34, +0x2C, 0x1F, 0x12, 0x14, 0x22, 0x17, 0x21, 0x42, 0x1C, 0x6D, 0x2D, 0x7D, 0x44, 0x42, 0x6A, 0x3E, +0x1F, 0x37, 0x4A, 0x2D, 0x0A, 0x7A, 0x30, 0x26, 0x29, 0x2E, 0x30, 0x27, 0x29, 0x2D, 0xF0, 0x83, +0x07, 0x13, 0x16, 0x1D, 0x23, 0x14, 0x14, 0x1D, 0x10, 0x2F, 0x34, 0x65, 0x45, 0x4C, 0x35, 0x5D, +0x3A, 0x25, 0x48, 0x3F, 0x30, 0x0D, 0x26, 0xA2, 0x28, 0x32, 0x2F, 0x2B, 0x27, 0x32, 0x2E, 0x00, +0x00, 0x02, 0x00, 0x18, 0xFF, 0x4B, 0x01, 0xF0, 0x02, 0x21, 0x00, 0x1C, 0x00, 0x28, 0x00, 0x00, +0x41, 0x17, 0x0E, 0x04, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, +0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x3F, 0x02, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, +0x36, 0x33, 0x32, 0x16, 0x01, 0x44, 0x20, 0x1D, 0x34, 0x2B, 0x20, 0x11, 0x13, 0x23, 0x16, 0x22, +0x41, 0x1C, 0x6E, 0x2E, 0x7C, 0x45, 0x42, 0x69, 0x3E, 0x1E, 0x37, 0x4B, 0x2C, 0x0A, 0x7A, 0x2F, +0x27, 0x29, 0x2D, 0x30, 0x26, 0x29, 0x2D, 0x01, 0x26, 0x83, 0x07, 0x13, 0x16, 0x1D, 0x22, 0x15, +0x13, 0x1E, 0x10, 0x2F, 0x34, 0x65, 0x45, 0x4C, 0x35, 0x5D, 0x3A, 0x26, 0x47, 0x3F, 0x30, 0x0D, +0x26, 0xA2, 0x28, 0x32, 0x2F, 0x2B, 0x27, 0x32, 0x2E, 0x00, 0xFF, 0xFF, 0x00, 0x2A, 0x00, 0xFD, +0x00, 0xD7, 0x01, 0xB0, 0x06, 0x07, 0x02, 0x69, 0x00, 0x00, 0x01, 0x08, 0x00, 0x01, 0x00, 0x25, +0x00, 0xD8, 0x01, 0x36, 0x01, 0xE8, 0x00, 0x0F, 0x00, 0x00, 0x77, 0x22, 0x26, 0x26, 0x35, 0x34, +0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0xAD, 0x25, 0x3E, 0x25, 0x24, 0x3E, +0x26, 0x26, 0x3E, 0x25, 0x25, 0x3E, 0xD8, 0x24, 0x3E, 0x25, 0x26, 0x3E, 0x25, 0x25, 0x3E, 0x26, +0x25, 0x3E, 0x24, 0x00, 0x00, 0x01, 0x00, 0x11, 0x01, 0x61, 0x01, 0xA7, 0x02, 0xE0, 0x00, 0x17, +0x00, 0x00, 0x53, 0x37, 0x17, 0x07, 0x27, 0x37, 0x07, 0x27, 0x37, 0x17, 0x07, 0x27, 0x33, 0x07, +0x27, 0x37, 0x17, 0x07, 0x35, 0x17, 0x07, 0x27, 0x17, 0x17, 0xA6, 0x0E, 0x11, 0x7D, 0x36, 0x87, +0x01, 0x87, 0x36, 0x81, 0x14, 0x10, 0x73, 0x0F, 0x10, 0x79, 0x36, 0x8A, 0x88, 0x35, 0x77, 0x10, +0x10, 0x01, 0x61, 0x88, 0x03, 0x55, 0x5C, 0x36, 0x09, 0x3D, 0x5D, 0x5F, 0x01, 0x8C, 0x91, 0x07, +0x5D, 0x5D, 0x3D, 0x0A, 0x36, 0x5B, 0x58, 0x01, 0x88, 0x00, 0x00, 0x04, 0x00, 0x30, 0x00, 0x00, +0x02, 0xAF, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, 0x61, 0x13, +0x33, 0x03, 0x25, 0x35, 0x21, 0x15, 0x05, 0x13, 0x33, 0x03, 0x03, 0x35, 0x21, 0x15, 0x01, 0x70, +0x78, 0x8D, 0x78, 0xFE, 0x33, 0x02, 0x5A, 0xFD, 0xE0, 0x78, 0x8D, 0x78, 0xA1, 0x02, 0x59, 0x02, +0xBC, 0xFD, 0x44, 0x96, 0x81, 0x81, 0x96, 0x02, 0xBC, 0xFD, 0x44, 0x01, 0xAE, 0x81, 0x81, 0x00, +0x00, 0x01, 0x00, 0x08, 0xFF, 0x72, 0x02, 0x47, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x00, 0x57, 0x01, +0x33, 0x01, 0x08, 0x01, 0xA0, 0x9F, 0xFE, 0x62, 0x8E, 0x03, 0x4A, 0xFC, 0xB6, 0x00, 0x00, 0x01, +0x00, 0x14, 0xFF, 0x95, 0x02, 0x44, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x00, 0x45, 0x01, 0x33, 0x01, +0x01, 0xA2, 0xFE, 0x72, 0xA0, 0x01, 0x90, 0x6B, 0x03, 0x27, 0xFC, 0xD9, 0xFF, 0xFF, 0x00, 0x2A, +0x01, 0x2B, 0x00, 0xD7, 0x01, 0xDE, 0x06, 0x07, 0x02, 0x69, 0x00, 0x00, 0x01, 0x36, 0xFF, 0xFF, +0x00, 0x2D, 0x00, 0xDB, 0x01, 0x3E, 0x01, 0xEB, 0x04, 0x06, 0x02, 0x73, 0x08, 0x03, 0xFF, 0xFF, +0x00, 0x08, 0xFF, 0x72, 0x02, 0x47, 0x02, 0xBC, 0x04, 0x06, 0x02, 0x76, 0x00, 0x00, 0xFF, 0xFF, +0x00, 0x14, 0xFF, 0x95, 0x02, 0x44, 0x02, 0xBC, 0x04, 0x06, 0x02, 0x77, 0x00, 0x00, 0xFF, 0xFF, +0xFF, 0xF5, 0x01, 0x2B, 0x00, 0xA1, 0x01, 0xDE, 0x04, 0x07, 0x02, 0x69, 0xFF, 0xCB, 0x01, 0x36, +0xFF, 0xFF, 0xFF, 0x29, 0x01, 0x2B, 0xFF, 0xD6, 0x01, 0xDE, 0x04, 0x07, 0x02, 0x69, 0xFE, 0xFF, +0x01, 0x36, 0x00, 0x01, 0x00, 0x33, 0x00, 0xD6, 0x01, 0x8D, 0x01, 0x69, 0x00, 0x03, 0x00, 0x00, +0x77, 0x35, 0x21, 0x15, 0x33, 0x01, 0x5A, 0xD6, 0x93, 0x93, 0xFF, 0xFF, 0x00, 0x39, 0x00, 0xD6, +0x01, 0x92, 0x01, 0x69, 0x06, 0x06, 0x02, 0x7E, 0x06, 0x00, 0x00, 0x01, 0x00, 0x39, 0x00, 0xDC, +0x02, 0x1A, 0x01, 0x65, 0x00, 0x03, 0x00, 0x00, 0x77, 0x35, 0x21, 0x15, 0x39, 0x01, 0xE1, 0xDC, +0x89, 0x89, 0x00, 0x01, 0x00, 0x39, 0x00, 0xDC, 0x03, 0x6C, 0x01, 0x65, 0x00, 0x03, 0x00, 0x00, +0x77, 0x35, 0x21, 0x15, 0x39, 0x03, 0x33, 0xDC, 0x89, 0x89, 0xFF, 0xFF, 0x00, 0x33, 0x00, 0xDC, +0x02, 0x14, 0x01, 0x65, 0x06, 0x06, 0x02, 0x80, 0xFA, 0x00, 0xFF, 0xFF, 0x00, 0x33, 0x00, 0xDC, +0x03, 0x67, 0x01, 0x65, 0x06, 0x06, 0x02, 0x81, 0xFA, 0x00, 0xFF, 0xFF, 0x00, 0x33, 0x00, 0xD6, +0x01, 0x8D, 0x01, 0x69, 0x06, 0x06, 0x02, 0x7E, 0x00, 0x00, 0x00, 0x01, 0x00, 0x28, 0xFF, 0x40, +0x02, 0x87, 0xFF, 0xC3, 0x00, 0x03, 0x00, 0x00, 0x57, 0x35, 0x21, 0x15, 0x28, 0x02, 0x5F, 0xC0, +0x83, 0x83, 0xFF, 0xFF, 0x00, 0x33, 0x01, 0x01, 0x01, 0x8D, 0x01, 0x94, 0x06, 0x06, 0x02, 0x7E, +0x00, 0x2B, 0xFF, 0xFF, 0x00, 0x33, 0x01, 0x07, 0x02, 0x14, 0x01, 0x90, 0x06, 0x06, 0x02, 0x80, +0xFA, 0x2B, 0xFF, 0xFF, 0x00, 0x33, 0x01, 0x0A, 0x03, 0x67, 0x01, 0x93, 0x06, 0x06, 0x02, 0x81, +0xFA, 0x2E, 0x00, 0x01, 0x00, 0x28, 0xFF, 0x46, 0x01, 0x7D, 0x02, 0xBE, 0x00, 0x0D, 0x00, 0x00, +0x45, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x17, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x01, 0x22, +0x7A, 0x80, 0x81, 0x7A, 0x5A, 0x5C, 0x5B, 0x5B, 0x5C, 0xBA, 0x4C, 0xE4, 0x8C, 0x8B, 0xE5, 0x4C, +0x55, 0x40, 0xBC, 0x6B, 0x6B, 0xBC, 0x40, 0x00, 0x00, 0x01, 0x00, 0x09, 0xFF, 0x46, 0x01, 0x5E, +0x02, 0xBE, 0x00, 0x0D, 0x00, 0x00, 0x57, 0x27, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x37, 0x16, +0x16, 0x15, 0x14, 0x06, 0x63, 0x5A, 0x5C, 0x5A, 0x5A, 0x5C, 0x5B, 0x7A, 0x80, 0x81, 0xBA, 0x55, +0x40, 0xBC, 0x6B, 0x6B, 0xBC, 0x40, 0x55, 0x4C, 0xE4, 0x8C, 0x8B, 0xE5, 0x00, 0x01, 0x00, 0x27, +0xFF, 0x32, 0x01, 0x8F, 0x02, 0xC2, 0x00, 0x25, 0x00, 0x00, 0x45, 0x2E, 0x03, 0x35, 0x37, 0x34, +0x26, 0x27, 0x23, 0x35, 0x33, 0x36, 0x36, 0x35, 0x27, 0x34, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x15, +0x17, 0x14, 0x06, 0x07, 0x27, 0x16, 0x16, 0x15, 0x07, 0x14, 0x16, 0x16, 0x17, 0x01, 0x6C, 0x33, +0x4C, 0x32, 0x18, 0x01, 0x2C, 0x29, 0x28, 0x2A, 0x29, 0x2A, 0x01, 0x61, 0x68, 0x23, 0x23, 0x28, +0x11, 0x02, 0x47, 0x4B, 0x01, 0x4C, 0x47, 0x02, 0x11, 0x28, 0x23, 0xCE, 0x0B, 0x21, 0x2F, 0x42, +0x2A, 0x5F, 0x32, 0x30, 0x01, 0x7E, 0x01, 0x2F, 0x33, 0x5F, 0x52, 0x5F, 0x16, 0x73, 0x0C, 0x17, +0x28, 0x22, 0x54, 0x3A, 0x4E, 0x13, 0x0F, 0x15, 0x4E, 0x39, 0x54, 0x20, 0x25, 0x16, 0x0C, 0x00, +0x00, 0x01, 0x00, 0x1B, 0xFF, 0x32, 0x01, 0x84, 0x02, 0xC2, 0x00, 0x25, 0x00, 0x00, 0x57, 0x27, +0x3E, 0x02, 0x35, 0x27, 0x34, 0x36, 0x37, 0x15, 0x26, 0x26, 0x35, 0x37, 0x34, 0x26, 0x26, 0x27, +0x37, 0x1E, 0x03, 0x15, 0x07, 0x14, 0x16, 0x17, 0x33, 0x15, 0x23, 0x06, 0x06, 0x15, 0x17, 0x14, +0x06, 0x3F, 0x24, 0x24, 0x27, 0x11, 0x02, 0x47, 0x4C, 0x4C, 0x47, 0x02, 0x10, 0x28, 0x24, 0x24, +0x33, 0x4C, 0x31, 0x19, 0x01, 0x2B, 0x2A, 0x28, 0x2A, 0x2A, 0x29, 0x01, 0x62, 0xCE, 0x73, 0x0C, +0x17, 0x28, 0x22, 0x54, 0x3A, 0x4E, 0x13, 0x0F, 0x15, 0x4E, 0x39, 0x54, 0x20, 0x25, 0x16, 0x0C, +0x79, 0x0A, 0x22, 0x2F, 0x42, 0x2A, 0x5F, 0x32, 0x30, 0x01, 0x7E, 0x01, 0x2F, 0x33, 0x5F, 0x52, +0x5F, 0x00, 0x00, 0x01, 0x00, 0x50, 0xFF, 0x42, 0x01, 0x79, 0x02, 0xBC, 0x00, 0x09, 0x00, 0x00, +0x57, 0x11, 0x21, 0x15, 0x23, 0x37, 0x11, 0x27, 0x33, 0x15, 0x50, 0x01, 0x29, 0x95, 0x06, 0x0A, +0x99, 0xBE, 0x03, 0x7A, 0x89, 0x08, 0xFD, 0x84, 0x0C, 0x89, 0x00, 0x01, 0x00, 0x2A, 0xFF, 0x42, +0x01, 0x54, 0x02, 0xBC, 0x00, 0x09, 0x00, 0x00, 0x57, 0x35, 0x33, 0x07, 0x11, 0x17, 0x23, 0x35, +0x21, 0x11, 0x2A, 0x96, 0x06, 0x0A, 0x9A, 0x01, 0x2A, 0xBE, 0x89, 0x08, 0x02, 0x7C, 0x0C, 0x89, +0xFC, 0x86, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0x78, 0x01, 0x7D, 0x02, 0xF0, 0x04, 0x06, 0x02, 0x89, +0x00, 0x32, 0xFF, 0xFF, 0x00, 0x09, 0xFF, 0x78, 0x01, 0x5E, 0x02, 0xF0, 0x04, 0x06, 0x02, 0x8A, +0x00, 0x32, 0xFF, 0xFF, 0x00, 0x27, 0xFF, 0x64, 0x01, 0x8F, 0x02, 0xF4, 0x06, 0x06, 0x02, 0x8B, +0x00, 0x32, 0xFF, 0xFF, 0x00, 0x1B, 0xFF, 0x64, 0x01, 0x84, 0x02, 0xF4, 0x06, 0x06, 0x02, 0x8C, +0x00, 0x32, 0xFF, 0xFF, 0x00, 0x50, 0xFF, 0x6A, 0x01, 0x79, 0x02, 0xE4, 0x06, 0x06, 0x02, 0x8D, +0x00, 0x28, 0xFF, 0xFF, 0x00, 0x2A, 0xFF, 0x6A, 0x01, 0x54, 0x02, 0xE4, 0x06, 0x06, 0x02, 0x8E, +0x00, 0x28, 0xFF, 0xFF, 0x00, 0x27, 0xFF, 0x38, 0x00, 0xF5, 0x00, 0x82, 0x06, 0x06, 0x02, 0x6A, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x27, 0xFF, 0x38, 0x01, 0xD6, 0x00, 0x82, 0x04, 0x26, 0x02, 0x6A, +0x00, 0x00, 0x00, 0x07, 0x02, 0x6A, 0x00, 0xE1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0x01, 0xAB, +0x01, 0xE0, 0x02, 0xEC, 0x04, 0x26, 0x02, 0x99, 0x00, 0xFB, 0x00, 0x07, 0x02, 0x99, 0x00, 0xE6, +0xFF, 0xFB, 0xFF, 0xFF, 0x00, 0x1A, 0x01, 0xAD, 0x01, 0xD1, 0x02, 0xEE, 0x04, 0x26, 0x02, 0x9A, +0x00, 0x00, 0x00, 0x07, 0x02, 0x9A, 0x00, 0xE5, 0x00, 0x00, 0x00, 0x01, 0x00, 0x28, 0x01, 0xB0, +0x00, 0xFA, 0x02, 0xF1, 0x00, 0x15, 0x00, 0x00, 0x53, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, +0x37, 0x17, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x93, 0x1E, 0x31, +0x1C, 0x18, 0x2D, 0x3C, 0x23, 0x2E, 0x2A, 0x33, 0x0F, 0x0F, 0x17, 0x12, 0x2D, 0x01, 0xB0, 0x20, +0x38, 0x25, 0x20, 0x3D, 0x35, 0x29, 0x09, 0x38, 0x12, 0x35, 0x12, 0x0B, 0x15, 0x09, 0x11, 0x20, +0x13, 0x1F, 0x24, 0x00, 0x00, 0x01, 0x00, 0x1A, 0x01, 0xAD, 0x00, 0xEC, 0x02, 0xEE, 0x00, 0x15, +0x00, 0x00, 0x53, 0x27, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x33, +0x32, 0x16, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x48, 0x2E, 0x2A, 0x33, 0x0F, 0x0F, 0x17, 0x12, 0x2D, +0x24, 0x1E, 0x31, 0x1C, 0x18, 0x2D, 0x3C, 0x01, 0xAD, 0x38, 0x12, 0x35, 0x12, 0x0B, 0x15, 0x09, +0x11, 0x20, 0x13, 0x1F, 0x24, 0x1F, 0x39, 0x25, 0x20, 0x3D, 0x35, 0x28, 0xFF, 0xFF, 0x00, 0x0A, +0x00, 0x1A, 0x02, 0x0D, 0x01, 0xEC, 0x04, 0x27, 0x02, 0x9D, 0x00, 0xF7, 0x00, 0x00, 0x00, 0x06, +0x02, 0x9D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x25, 0x00, 0x1D, 0x02, 0x2A, 0x01, 0xEF, 0x04, 0x27, +0x02, 0x9E, 0x00, 0xF9, 0x00, 0x00, 0x00, 0x06, 0x02, 0x9E, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0A, +0x00, 0x1A, 0x01, 0x16, 0x01, 0xEC, 0x00, 0x07, 0x00, 0x00, 0x77, 0x27, 0x35, 0x37, 0x17, 0x07, +0x35, 0x17, 0xBA, 0xB0, 0xB0, 0x5B, 0x7A, 0x7B, 0x1A, 0xE2, 0x0D, 0xE3, 0x3F, 0xBB, 0x22, 0xBA, +0x00, 0x01, 0x00, 0x25, 0x00, 0x1D, 0x01, 0x30, 0x01, 0xEF, 0x00, 0x07, 0x00, 0x00, 0x77, 0x27, +0x37, 0x15, 0x27, 0x37, 0x17, 0x15, 0x81, 0x5B, 0x7A, 0x7B, 0x5C, 0xAF, 0x1D, 0x3F, 0xBB, 0x22, +0xBA, 0x40, 0xE2, 0x0D, 0x00, 0x02, 0x00, 0x2C, 0x01, 0xB4, 0x01, 0xC6, 0x02, 0xBC, 0x00, 0x03, +0x00, 0x07, 0x00, 0x00, 0x41, 0x13, 0x33, 0x03, 0x21, 0x13, 0x33, 0x03, 0x01, 0x0F, 0x14, 0xA3, +0x53, 0xFE, 0xB9, 0x15, 0xA4, 0x54, 0x01, 0xB4, 0x01, 0x08, 0xFE, 0xF8, 0x01, 0x08, 0xFE, 0xF8, +0x00, 0x01, 0x00, 0x2C, 0x01, 0xB4, 0x00, 0xE5, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x00, 0x53, 0x13, +0x33, 0x03, 0x2C, 0x15, 0xA4, 0x54, 0x01, 0xB4, 0x01, 0x08, 0xFE, 0xF8, 0xFF, 0xFF, 0x00, 0x0A, +0x00, 0x64, 0x02, 0x0D, 0x02, 0x36, 0x04, 0x27, 0x02, 0x9D, 0x00, 0xF7, 0x00, 0x4A, 0x00, 0x06, +0x02, 0x9D, 0x00, 0x4A, 0xFF, 0xFF, 0x00, 0x25, 0x00, 0x67, 0x02, 0x2A, 0x02, 0x39, 0x04, 0x27, +0x02, 0x9E, 0x00, 0xF9, 0x00, 0x4A, 0x00, 0x06, 0x02, 0x9E, 0x00, 0x4A, 0xFF, 0xFF, 0x00, 0x0A, +0x00, 0x6B, 0x01, 0x16, 0x02, 0x3D, 0x06, 0x06, 0x02, 0x9D, 0x00, 0x51, 0xFF, 0xFF, 0x00, 0x25, +0x00, 0x6E, 0x01, 0x30, 0x02, 0x40, 0x06, 0x06, 0x02, 0x9E, 0x00, 0x51, 0x00, 0x02, 0xFF, 0xFC, +0xFF, 0xE1, 0x02, 0x30, 0x02, 0xBB, 0x00, 0x1C, 0x00, 0x20, 0x00, 0x00, 0x57, 0x22, 0x26, 0x27, +0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x13, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, +0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x03, 0x06, 0x06, 0x03, 0x35, 0x05, 0x15, 0x6F, 0x20, 0x3C, +0x17, 0x35, 0x10, 0x19, 0x11, 0x0F, 0x16, 0x0F, 0x05, 0x39, 0x0F, 0x6A, 0x57, 0x25, 0x40, 0x1E, +0x36, 0x12, 0x1C, 0x0F, 0x1E, 0x1E, 0x06, 0x3A, 0x11, 0x6A, 0x70, 0x01, 0x82, 0x1F, 0x10, 0x10, +0x7F, 0x08, 0x07, 0x11, 0x21, 0x19, 0x01, 0x4E, 0x5B, 0x56, 0x12, 0x13, 0x7D, 0x0B, 0x08, 0x22, +0x20, 0xFE, 0xB1, 0x5F, 0x5B, 0x01, 0x55, 0x81, 0x01, 0x81, 0x00, 0x02, 0x00, 0x28, 0xFF, 0x5E, +0x03, 0x9D, 0x02, 0xC6, 0x00, 0x50, 0x00, 0x62, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x35, 0x34, +0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, +0x36, 0x37, 0x17, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, +0x16, 0x17, 0x07, 0x37, 0x33, 0x03, 0x06, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x26, +0x26, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, +0x02, 0x03, 0x32, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, +0x15, 0x14, 0x16, 0x01, 0x9E, 0x57, 0x8B, 0x61, 0x33, 0x53, 0x93, 0xC3, 0x6F, 0x50, 0x80, 0x5C, +0x31, 0x27, 0x46, 0x5D, 0x36, 0x26, 0x3C, 0x21, 0x03, 0x01, 0x1A, 0x10, 0x33, 0x43, 0x28, 0x2E, +0x48, 0x2A, 0x24, 0x43, 0x58, 0x34, 0x1F, 0x31, 0x1F, 0x03, 0x1F, 0x1D, 0x90, 0x3B, 0x03, 0x0A, +0x13, 0x0B, 0x1C, 0x30, 0x23, 0x14, 0x41, 0x7A, 0x55, 0x67, 0xA5, 0x74, 0x3E, 0x27, 0x4A, 0x6E, +0x46, 0x2F, 0x44, 0x3E, 0x26, 0x25, 0x3B, 0x54, 0x48, 0x12, 0x1A, 0x31, 0x24, 0x06, 0x02, 0x04, +0x0D, 0x1B, 0x15, 0x1F, 0x33, 0x1E, 0x1B, 0xA2, 0x35, 0x61, 0x88, 0x52, 0x75, 0xBB, 0x83, 0x45, +0x2D, 0x54, 0x73, 0x46, 0x45, 0x7D, 0x61, 0x38, 0x1A, 0x2F, 0x1F, 0x10, 0x23, 0x12, 0x14, 0x31, +0x44, 0x24, 0x30, 0x54, 0x38, 0x31, 0x64, 0x54, 0x33, 0x20, 0x3A, 0x26, 0x1C, 0x91, 0xFE, 0xC4, +0x11, 0x13, 0x0A, 0x27, 0x43, 0x58, 0x31, 0x4C, 0x6B, 0x3A, 0x3A, 0x6D, 0x9D, 0x63, 0x45, 0x6B, +0x4C, 0x27, 0x0D, 0x1B, 0x14, 0x43, 0x1E, 0x1F, 0x0C, 0x01, 0x4C, 0x22, 0x38, 0x23, 0x0E, 0x17, +0x0B, 0x13, 0x1D, 0x10, 0x2E, 0x4C, 0x2B, 0x21, 0x27, 0x00, 0x00, 0x02, 0x00, 0x32, 0xFF, 0xF6, +0x03, 0x0A, 0x02, 0xCC, 0x00, 0x20, 0x00, 0x3B, 0x00, 0x00, 0x61, 0x2F, 0x02, 0x2E, 0x03, 0x35, +0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, +0x14, 0x1E, 0x02, 0x1F, 0x03, 0x05, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x17, 0x06, 0x06, +0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x33, 0x0E, 0x04, 0x02, 0x44, 0x46, 0x3C, +0x93, 0x27, 0x36, 0x1F, 0x0E, 0x39, 0x65, 0x42, 0x33, 0x58, 0x40, 0x0D, 0x7E, 0x11, 0x28, 0x1B, +0x16, 0x1E, 0x10, 0x1F, 0x30, 0x32, 0x14, 0x4A, 0x45, 0x9F, 0xFE, 0x3D, 0x4F, 0x7D, 0x49, 0x55, +0x53, 0x64, 0x38, 0x38, 0x20, 0x3E, 0x2B, 0x28, 0x45, 0x37, 0x22, 0x06, 0x95, 0x09, 0x2C, 0x43, +0x57, 0x67, 0x48, 0x38, 0x9C, 0x2A, 0x45, 0x3B, 0x34, 0x16, 0x36, 0x55, 0x31, 0x21, 0x3C, 0x28, +0x4B, 0x29, 0x1E, 0x0E, 0x1B, 0x14, 0x13, 0x37, 0x3B, 0x35, 0x13, 0x51, 0x3F, 0xA9, 0x0A, 0x3C, +0x68, 0x40, 0x49, 0x75, 0x1E, 0x61, 0x0C, 0x38, 0x2B, 0x22, 0x32, 0x1B, 0x21, 0x3C, 0x53, 0x33, +0x40, 0x6D, 0x58, 0x3E, 0x21, 0x00, 0x00, 0x01, 0x00, 0x2B, 0x00, 0x00, 0x02, 0xA3, 0x02, 0xBC, +0x00, 0x13, 0x00, 0x00, 0x73, 0x11, 0x17, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, +0x21, 0x11, 0x23, 0x11, 0x17, 0x23, 0x37, 0x11, 0xF7, 0x2F, 0x3F, 0x36, 0x55, 0x31, 0x38, 0x65, +0x44, 0x01, 0x97, 0xA5, 0x32, 0xE2, 0x4F, 0x01, 0x3A, 0x29, 0x37, 0x5F, 0x3C, 0x42, 0x61, 0x36, +0xFD, 0x44, 0x02, 0x94, 0x40, 0x38, 0xFD, 0x74, 0x00, 0x02, 0x00, 0x22, 0xFF, 0x72, 0x02, 0x1E, +0x02, 0xCC, 0x00, 0x2A, 0x00, 0x52, 0x00, 0x00, 0x65, 0x27, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x27, +0x27, 0x2E, 0x03, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, +0x22, 0x06, 0x15, 0x14, 0x16, 0x16, 0x17, 0x17, 0x16, 0x16, 0x07, 0x0E, 0x02, 0x03, 0x22, 0x26, +0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x27, 0x27, 0x26, 0x26, +0x35, 0x34, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x17, 0x17, 0x1E, 0x02, 0x15, +0x14, 0x06, 0x06, 0x01, 0x5C, 0x28, 0x1C, 0x24, 0x11, 0x1B, 0x1E, 0x55, 0x1F, 0x3C, 0x2F, 0x1D, +0x1B, 0x37, 0x57, 0x3B, 0x30, 0x53, 0x41, 0x18, 0x53, 0x1A, 0x30, 0x2C, 0x14, 0x23, 0x27, 0x15, +0x24, 0x17, 0x55, 0x49, 0x47, 0x01, 0x02, 0x2F, 0x54, 0x89, 0x31, 0x59, 0x49, 0x19, 0x50, 0x2B, +0x50, 0x20, 0x25, 0x28, 0x19, 0x27, 0x18, 0x55, 0x46, 0x46, 0x2C, 0x53, 0x3B, 0x27, 0x16, 0x1F, +0x10, 0x1E, 0x21, 0x47, 0x34, 0x4F, 0x2D, 0x30, 0x65, 0x84, 0x50, 0x03, 0x11, 0x19, 0x0F, 0x12, +0x18, 0x0C, 0x1D, 0x0D, 0x21, 0x2D, 0x3D, 0x28, 0x22, 0x3E, 0x2F, 0x1A, 0x15, 0x28, 0x1C, 0x5A, +0x17, 0x19, 0x0B, 0x1C, 0x16, 0x10, 0x19, 0x12, 0x09, 0x20, 0x1B, 0x4F, 0x38, 0x2C, 0x42, 0x26, +0xFE, 0xEA, 0x18, 0x2A, 0x1A, 0x5F, 0x24, 0x20, 0x1A, 0x18, 0x10, 0x17, 0x13, 0x09, 0x1F, 0x1A, +0x50, 0x38, 0x29, 0x43, 0x2A, 0x03, 0x54, 0x02, 0x11, 0x17, 0x10, 0x13, 0x1B, 0x0C, 0x19, 0x14, +0x2F, 0x42, 0x30, 0x32, 0x4F, 0x2F, 0x00, 0x03, 0x00, 0x1A, 0xFF, 0xEE, 0x02, 0xFB, 0x02, 0xCE, +0x00, 0x13, 0x00, 0x32, 0x00, 0x46, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, +0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x27, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, +0x33, 0x32, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, +0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x07, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, +0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x01, 0x8B, 0x4E, 0x85, 0x65, 0x39, 0x39, 0x65, 0x85, 0x4E, +0x4C, 0x86, 0x65, 0x39, 0x39, 0x65, 0x86, 0x3D, 0x3B, 0x60, 0x39, 0x39, 0x60, 0x3B, 0x24, 0x44, +0x20, 0x31, 0x0F, 0x1A, 0x17, 0x0B, 0x19, 0x27, 0x17, 0x17, 0x27, 0x19, 0x12, 0x27, 0x15, 0x32, +0x20, 0x47, 0x34, 0x3D, 0x6B, 0x50, 0x2E, 0x2E, 0x50, 0x6B, 0x3D, 0x3E, 0x6B, 0x50, 0x2E, 0x2E, +0x50, 0x6B, 0x12, 0x38, 0x65, 0x86, 0x4D, 0x4D, 0x86, 0x65, 0x38, 0x38, 0x65, 0x86, 0x4D, 0x4D, +0x86, 0x65, 0x38, 0xA1, 0x36, 0x5D, 0x3B, 0x39, 0x5F, 0x38, 0x19, 0x17, 0x69, 0x0A, 0x0D, 0x06, +0x17, 0x25, 0x18, 0x18, 0x26, 0x16, 0x0D, 0x10, 0x6B, 0x16, 0x16, 0x57, 0x2D, 0x51, 0x6B, 0x3D, +0x3E, 0x6B, 0x50, 0x2D, 0x2D, 0x50, 0x6B, 0x3E, 0x3D, 0x6B, 0x51, 0x2D, 0x00, 0x05, 0x00, 0x07, +0x00, 0xEC, 0x01, 0xFA, 0x02, 0xDC, 0x00, 0x12, 0x00, 0x22, 0x00, 0x26, 0x00, 0x32, 0x00, 0x3D, +0x00, 0x00, 0x65, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, +0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, +0x16, 0x16, 0x37, 0x27, 0x37, 0x17, 0x23, 0x35, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x23, +0x37, 0x15, 0x35, 0x27, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x37, 0x01, 0x04, 0x47, +0x73, 0x43, 0x27, 0x45, 0x5C, 0x35, 0x32, 0x59, 0x44, 0x27, 0x26, 0x44, 0x59, 0x33, 0x32, 0x53, +0x31, 0x31, 0x53, 0x32, 0x35, 0x56, 0x33, 0x33, 0x56, 0x56, 0x25, 0x44, 0x37, 0xDC, 0x79, 0x26, +0x30, 0x32, 0x24, 0x37, 0x0E, 0x0D, 0x22, 0x0C, 0x10, 0x0D, 0x0D, 0x26, 0x0F, 0xEC, 0x42, 0x71, +0x45, 0x34, 0x5A, 0x44, 0x26, 0x26, 0x45, 0x59, 0x34, 0x34, 0x5A, 0x44, 0x26, 0x40, 0x31, 0x54, +0x33, 0x33, 0x54, 0x32, 0x32, 0x54, 0x33, 0x34, 0x54, 0x30, 0x43, 0x59, 0x10, 0x69, 0xEF, 0x2A, +0x22, 0x22, 0x2C, 0x0C, 0x61, 0x80, 0x07, 0x0C, 0x09, 0x0A, 0x0C, 0x08, 0x00, 0x03, 0x00, 0x23, +0x01, 0x49, 0x03, 0x3D, 0x02, 0xBC, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, 0x41, 0x11, +0x33, 0x17, 0x23, 0x37, 0x33, 0x11, 0x23, 0x13, 0x37, 0x07, 0x23, 0x27, 0x17, 0x13, 0x21, 0x11, +0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x01, 0x80, 0x79, 0x82, 0x38, 0x82, 0x78, 0x7A, 0x06, 0x43, +0x8D, 0x42, 0x93, 0x4A, 0x07, 0xFE, 0x7E, 0x7C, 0xD2, 0x01, 0x2A, 0x01, 0x49, 0x01, 0x73, 0xD0, +0xD0, 0xFE, 0x8D, 0x01, 0x14, 0x1E, 0xEA, 0xF2, 0x22, 0xFE, 0xE8, 0x01, 0x5B, 0xFE, 0xA5, 0x01, +0x07, 0x6C, 0x6C, 0x00, 0x00, 0x02, 0x00, 0x63, 0x01, 0x89, 0x01, 0xB1, 0x02, 0xCB, 0x00, 0x0F, +0x00, 0x1F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, +0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, +0x15, 0x14, 0x16, 0x16, 0x01, 0x0A, 0x2F, 0x4C, 0x2C, 0x2B, 0x4C, 0x30, 0x30, 0x4C, 0x2B, 0x2C, +0x4C, 0x2F, 0x11, 0x1B, 0x10, 0x10, 0x1B, 0x11, 0x11, 0x1C, 0x0F, 0x10, 0x1B, 0x01, 0x89, 0x2B, +0x49, 0x2C, 0x2E, 0x49, 0x2B, 0x2B, 0x49, 0x2D, 0x2D, 0x49, 0x2B, 0x60, 0x12, 0x1D, 0x12, 0x12, +0x1D, 0x11, 0x11, 0x1E, 0x12, 0x12, 0x1D, 0x11, 0xFF, 0xFF, 0x00, 0x2C, 0x01, 0xB4, 0x01, 0xC6, +0x02, 0xBC, 0x06, 0x06, 0x02, 0x9F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x53, 0xFF, 0x3F, 0x00, 0xEB, +0x02, 0xE4, 0x00, 0x03, 0x00, 0x00, 0x57, 0x11, 0x33, 0x11, 0x53, 0x98, 0xC1, 0x03, 0xA5, 0xFC, +0x5B, 0x00, 0x00, 0x02, 0x00, 0x55, 0xFF, 0x36, 0x00, 0xEF, 0x02, 0xE4, 0x00, 0x03, 0x00, 0x07, +0x00, 0x00, 0x57, 0x11, 0x33, 0x11, 0x03, 0x11, 0x33, 0x11, 0x55, 0x9A, 0x9A, 0x9A, 0xCA, 0x01, +0x8A, 0xFE, 0x76, 0x02, 0x25, 0x01, 0x89, 0xFE, 0x77, 0x00, 0x00, 0x02, 0x00, 0x28, 0x00, 0xCD, +0x01, 0x90, 0x02, 0xD1, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x77, 0x11, 0x33, 0x11, 0x25, 0x35, +0x21, 0x15, 0x8E, 0x9C, 0xFE, 0xFE, 0x01, 0x68, 0xCD, 0x02, 0x04, 0xFD, 0xFC, 0xF1, 0x85, 0x85, +0x00, 0x01, 0x00, 0x10, 0xFF, 0xF6, 0x02, 0x25, 0x02, 0xF3, 0x00, 0x38, 0x00, 0x00, 0x45, 0x22, +0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06, +0x07, 0x0E, 0x02, 0x07, 0x27, 0x36, 0x36, 0x37, 0x3E, 0x03, 0x35, 0x34, 0x26, 0x23, 0x22, 0x0E, +0x02, 0x07, 0x0E, 0x03, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, +0x01, 0x33, 0x3D, 0x5C, 0x35, 0x0D, 0x17, 0x10, 0x1B, 0x4E, 0x60, 0x34, 0x42, 0x4D, 0x26, 0x48, +0x32, 0x2B, 0x69, 0x78, 0x42, 0x27, 0x55, 0x94, 0x38, 0x22, 0x37, 0x25, 0x15, 0x14, 0x12, 0x0D, +0x17, 0x15, 0x14, 0x09, 0x0B, 0x18, 0x16, 0x0C, 0x15, 0x25, 0x19, 0x0E, 0x1B, 0x1B, 0x0D, 0x37, +0x25, 0x59, 0x0A, 0x4A, 0x84, 0x53, 0x2D, 0x60, 0x5F, 0x29, 0x43, 0x58, 0x2C, 0x4E, 0x3E, 0x30, +0x6E, 0x73, 0x36, 0x2E, 0x53, 0x48, 0x1F, 0x47, 0x28, 0x5F, 0x3D, 0x25, 0x4C, 0x4B, 0x46, 0x1F, +0x19, 0x21, 0x0F, 0x1B, 0x28, 0x19, 0x1D, 0x4D, 0x54, 0x4F, 0x1F, 0x25, 0x3A, 0x21, 0x0C, 0x13, +0x09, 0x79, 0x21, 0x1F, 0x00, 0x03, 0x00, 0x28, 0x00, 0xAE, 0x01, 0x81, 0x02, 0xD4, 0x00, 0x03, +0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x77, 0x11, 0x33, 0x11, 0x27, 0x35, 0x21, 0x15, 0x25, 0x35, +0x21, 0x15, 0x87, 0x9C, 0xFB, 0x01, 0x59, 0xFE, 0xA7, 0x01, 0x59, 0xAE, 0x02, 0x26, 0xFD, 0xDA, +0x97, 0x79, 0x79, 0xB0, 0x79, 0x79, 0x00, 0x02, 0x00, 0x3B, 0xFF, 0xF5, 0x02, 0x80, 0x02, 0x45, +0x00, 0x24, 0x00, 0x32, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, +0x16, 0x16, 0x17, 0x16, 0x06, 0x23, 0x21, 0x37, 0x15, 0x14, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, +0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x03, 0x27, 0x21, 0x07, 0x35, 0x34, +0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x01, 0x65, 0x57, 0x88, 0x4B, 0x4A, 0x84, 0x57, 0x51, +0x7E, 0x4B, 0x05, 0x01, 0x0D, 0x0A, 0xFE, 0x68, 0x0A, 0x19, 0x29, 0x34, 0x1A, 0x45, 0x62, 0x25, +0x07, 0x0A, 0x09, 0x0D, 0x03, 0x03, 0x30, 0x70, 0xDD, 0x0E, 0x01, 0x28, 0x0F, 0x11, 0x22, 0x32, +0x21, 0x2B, 0x3B, 0x1F, 0x0B, 0x4D, 0x86, 0x55, 0x56, 0x86, 0x4C, 0x44, 0x7B, 0x51, 0x0A, 0x0E, +0x07, 0xB3, 0x11, 0x1E, 0x18, 0x0E, 0x35, 0x3A, 0x0B, 0x0B, 0x09, 0x03, 0x08, 0x04, 0x45, 0x39, +0x01, 0x45, 0x0A, 0x07, 0x7F, 0x10, 0x22, 0x1E, 0x13, 0x1F, 0x2E, 0x16, 0x00, 0x04, 0x00, 0x58, +0x00, 0x00, 0x04, 0xA1, 0x02, 0xC7, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x23, 0x00, 0x3B, 0x00, 0x00, +0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, +0x07, 0x35, 0x21, 0x15, 0x03, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, +0x15, 0x14, 0x16, 0x16, 0x01, 0x11, 0x33, 0x01, 0x27, 0x2E, 0x04, 0x35, 0x35, 0x33, 0x11, 0x23, +0x01, 0x17, 0x1E, 0x04, 0x15, 0x15, 0x03, 0xE1, 0x36, 0x55, 0x31, 0x32, 0x55, 0x35, 0x37, 0x56, +0x33, 0x32, 0x56, 0xEC, 0x01, 0x73, 0xBF, 0x14, 0x1C, 0x10, 0x10, 0x1C, 0x14, 0x12, 0x1B, 0x10, +0x10, 0x1B, 0xFC, 0x89, 0x98, 0x01, 0x6F, 0x21, 0x05, 0x06, 0x05, 0x03, 0x01, 0xA5, 0x9A, 0xFE, +0x81, 0x33, 0x05, 0x07, 0x05, 0x02, 0x01, 0x01, 0x47, 0x32, 0x55, 0x37, 0x38, 0x58, 0x32, 0x33, +0x58, 0x37, 0x36, 0x56, 0x32, 0xB7, 0x7F, 0x7F, 0x01, 0x2F, 0x12, 0x1F, 0x15, 0x16, 0x22, 0x13, +0x13, 0x22, 0x16, 0x15, 0x1F, 0x12, 0xFE, 0x41, 0x02, 0xBC, 0xFE, 0x0C, 0x05, 0x21, 0x3C, 0x3A, +0x3C, 0x46, 0x29, 0xAD, 0xFD, 0x44, 0x02, 0x04, 0x07, 0x30, 0x43, 0x34, 0x2A, 0x29, 0x19, 0xEA, +0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xC2, 0x03, 0x9D, 0x03, 0x2A, 0x06, 0x06, 0x02, 0xA6, 0x00, 0x64, +0x00, 0x02, 0x00, 0x2B, 0xFF, 0xA4, 0x02, 0xA0, 0x03, 0x1A, 0x00, 0x0B, 0x00, 0x31, 0x00, 0x00, +0x45, 0x35, 0x37, 0x11, 0x27, 0x35, 0x33, 0x15, 0x07, 0x11, 0x17, 0x15, 0x27, 0x22, 0x2E, 0x02, +0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, +0x15, 0x14, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x01, 0x51, 0x17, 0x17, +0x7C, 0x15, 0x15, 0x37, 0x4F, 0x85, 0x62, 0x35, 0x38, 0x63, 0x87, 0x50, 0x32, 0x60, 0x53, 0x1E, +0x68, 0x15, 0x2F, 0x38, 0x20, 0x28, 0x47, 0x35, 0x1E, 0x1E, 0x36, 0x4D, 0x2F, 0x20, 0x3A, 0x31, +0x13, 0x52, 0x19, 0x53, 0x65, 0x5C, 0x68, 0x2D, 0x02, 0x4A, 0x2F, 0x68, 0x65, 0x30, 0xFD, 0xB1, +0x29, 0x69, 0x52, 0x35, 0x61, 0x85, 0x50, 0x4E, 0x84, 0x61, 0x36, 0x1A, 0x33, 0x23, 0x77, 0x16, +0x21, 0x12, 0x1D, 0x35, 0x4C, 0x2F, 0x2E, 0x4B, 0x36, 0x1C, 0x12, 0x1F, 0x14, 0x82, 0x1C, 0x2C, +0x19, 0x00, 0x00, 0x02, 0x00, 0x2E, 0x00, 0x00, 0x02, 0x22, 0x02, 0xC2, 0x00, 0x1F, 0x00, 0x2B, +0x00, 0x00, 0x65, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x2E, +0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x06, +0x06, 0x07, 0x35, 0x37, 0x11, 0x27, 0x35, 0x33, 0x15, 0x07, 0x11, 0x17, 0x15, 0x01, 0x41, 0x4F, +0x7C, 0x48, 0x48, 0x7C, 0x4F, 0x48, 0x77, 0x22, 0x57, 0x0D, 0x27, 0x2E, 0x19, 0x27, 0x3C, 0x23, +0x23, 0x3C, 0x27, 0x1A, 0x2C, 0x25, 0x10, 0x57, 0x23, 0x79, 0x7D, 0x1A, 0x1A, 0x78, 0x16, 0x16, +0x4E, 0x48, 0x7D, 0x4F, 0x4F, 0x7D, 0x48, 0x32, 0x2D, 0x68, 0x10, 0x1C, 0x10, 0x23, 0x3E, 0x28, +0x26, 0x3E, 0x24, 0x0D, 0x1A, 0x13, 0x69, 0x2B, 0x32, 0x4E, 0x6C, 0x26, 0x01, 0x9A, 0x32, 0x64, +0x65, 0x2E, 0xFE, 0x60, 0x24, 0x6B, 0x00, 0x03, 0x00, 0x2B, 0xFF, 0x9B, 0x02, 0xA0, 0x03, 0x15, +0x00, 0x03, 0x00, 0x07, 0x00, 0x2D, 0x00, 0x00, 0x57, 0x27, 0x01, 0x17, 0x01, 0x27, 0x01, 0x17, +0x03, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, +0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, +0xEF, 0x3D, 0x01, 0x67, 0x3B, 0xFE, 0x9C, 0x3C, 0x01, 0x5F, 0x3B, 0xB8, 0x4F, 0x85, 0x62, 0x35, +0x38, 0x63, 0x87, 0x50, 0x32, 0x60, 0x53, 0x1E, 0x68, 0x15, 0x2F, 0x38, 0x20, 0x28, 0x47, 0x35, +0x1E, 0x1E, 0x36, 0x4D, 0x2F, 0x20, 0x3A, 0x31, 0x13, 0x52, 0x19, 0x53, 0x65, 0x65, 0x1B, 0x03, +0x5F, 0x19, 0xFC, 0xAE, 0x1A, 0x03, 0x4C, 0x19, 0xFC, 0xFF, 0x35, 0x61, 0x85, 0x50, 0x4E, 0x84, +0x61, 0x36, 0x1A, 0x33, 0x23, 0x77, 0x16, 0x21, 0x12, 0x1D, 0x35, 0x4C, 0x2F, 0x2E, 0x4B, 0x36, +0x1C, 0x12, 0x1F, 0x14, 0x82, 0x1C, 0x2C, 0x19, 0x00, 0x06, 0x00, 0x1C, 0x00, 0x3C, 0x02, 0x16, +0x02, 0x2B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x17, 0x00, 0x27, 0x00, 0x2B, 0x00, 0x2F, 0x00, 0x00, +0x65, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, +0x07, 0x27, 0x37, 0x17, 0x27, 0x27, 0x37, 0x17, 0x17, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, +0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x17, 0x27, 0x37, 0x17, 0x27, 0x27, 0x37, 0x17, +0x01, 0x1A, 0x3B, 0x5F, 0x37, 0x37, 0x5F, 0x3B, 0x3B, 0x5E, 0x36, 0x36, 0x5E, 0xD2, 0x63, 0x56, +0x62, 0x68, 0x54, 0x63, 0x56, 0x45, 0x15, 0x21, 0x12, 0x12, 0x21, 0x15, 0x15, 0x21, 0x13, 0x13, +0x21, 0xAE, 0x58, 0x61, 0x5A, 0x5B, 0x63, 0x5B, 0x63, 0x6D, 0x33, 0x59, 0x38, 0x39, 0x59, 0x33, +0x34, 0x59, 0x38, 0x38, 0x59, 0x33, 0x31, 0x63, 0x5A, 0x66, 0xDF, 0x52, 0x63, 0x54, 0xF0, 0x14, +0x23, 0x17, 0x18, 0x24, 0x14, 0x14, 0x24, 0x18, 0x17, 0x23, 0x14, 0xA3, 0x55, 0x64, 0x56, 0xC7, +0x62, 0x5F, 0x63, 0x00, 0x00, 0x03, 0x00, 0x1C, 0xFF, 0xA5, 0x02, 0x52, 0x03, 0x14, 0x00, 0x32, +0x00, 0x36, 0x00, 0x3A, 0x00, 0x00, 0x45, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, +0x36, 0x35, 0x34, 0x2E, 0x03, 0x27, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x17, +0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1E, 0x02, 0x17, 0x1E, 0x03, 0x15, 0x14, +0x06, 0x06, 0x07, 0x13, 0x17, 0x13, 0x13, 0x27, 0x03, 0x33, 0x01, 0x40, 0x62, 0x8F, 0x33, 0x50, +0x38, 0x6A, 0x3A, 0x1B, 0x2C, 0x18, 0x0F, 0x1A, 0x24, 0x28, 0x15, 0x4E, 0x65, 0x32, 0x2B, 0x49, +0x60, 0x34, 0x55, 0x86, 0x35, 0x48, 0x28, 0x64, 0x37, 0x1E, 0x2B, 0x18, 0x14, 0x22, 0x2C, 0x18, +0x37, 0x59, 0x41, 0x23, 0x47, 0x7B, 0x8C, 0x0B, 0x51, 0x0B, 0x0E, 0x51, 0x0B, 0x67, 0x0A, 0x3D, +0x3A, 0x82, 0x3A, 0x30, 0x0E, 0x1B, 0x14, 0x0F, 0x18, 0x12, 0x0F, 0x0B, 0x04, 0x11, 0x3A, 0x57, +0x3B, 0x2F, 0x4F, 0x39, 0x1F, 0x34, 0x37, 0x76, 0x29, 0x28, 0x0F, 0x1B, 0x13, 0x11, 0x18, 0x13, +0x0D, 0x04, 0x0B, 0x24, 0x34, 0x47, 0x2F, 0x49, 0x65, 0x35, 0x51, 0x01, 0xD1, 0x21, 0xFE, 0x50, +0x01, 0xAF, 0x21, 0x01, 0x9F, 0x00, 0x00, 0x04, 0x00, 0x28, 0xFF, 0xF5, 0x02, 0x00, 0x02, 0xC4, +0x00, 0x16, 0x00, 0x1A, 0x00, 0x2A, 0x00, 0x2E, 0x00, 0x00, 0x77, 0x22, 0x26, 0x26, 0x35, 0x34, +0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x27, 0x11, 0x33, 0x11, 0x23, 0x35, 0x17, 0x14, 0x06, +0x06, 0x07, 0x35, 0x21, 0x15, 0x03, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, +0x06, 0x15, 0x14, 0x16, 0x16, 0x03, 0x35, 0x21, 0x15, 0xCA, 0x2A, 0x4B, 0x2D, 0x2D, 0x4C, 0x2D, +0x21, 0x36, 0x25, 0x06, 0x23, 0x8F, 0x8F, 0x22, 0x25, 0x3D, 0xBE, 0x01, 0xA7, 0xE1, 0x11, 0x1C, +0x10, 0x10, 0x1C, 0x11, 0x12, 0x1B, 0x0F, 0x0F, 0x1B, 0x0D, 0x01, 0x2A, 0x92, 0x31, 0x52, 0x32, +0x2F, 0x4E, 0x2D, 0x1A, 0x31, 0x22, 0x10, 0x01, 0x30, 0xFD, 0xD8, 0x6E, 0x0A, 0x19, 0x33, 0x22, +0x9D, 0x66, 0x66, 0x01, 0x0E, 0x13, 0x1F, 0x12, 0x13, 0x20, 0x12, 0x12, 0x1F, 0x14, 0x14, 0x1E, +0x12, 0x01, 0x18, 0x5F, 0x5F, 0x00, 0x00, 0x03, 0x00, 0x12, 0xFF, 0xF6, 0x02, 0x84, 0x02, 0xCA, +0x00, 0x24, 0x00, 0x28, 0x00, 0x2C, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, +0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, +0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x01, 0x35, 0x21, 0x15, 0x25, 0x35, 0x21, 0x15, +0x01, 0xC9, 0x4F, 0x87, 0x62, 0x36, 0x36, 0x63, 0x86, 0x4F, 0x23, 0x3F, 0x3C, 0x1D, 0x51, 0x1E, +0x39, 0x1E, 0x29, 0x44, 0x32, 0x1C, 0x1C, 0x31, 0x44, 0x2A, 0x16, 0x26, 0x26, 0x14, 0x4C, 0x1D, +0x3C, 0x3E, 0xFE, 0x29, 0x01, 0xC8, 0xFE, 0x38, 0x01, 0xC8, 0x0A, 0x35, 0x61, 0x85, 0x50, 0x4F, +0x83, 0x61, 0x36, 0x0A, 0x18, 0x13, 0x85, 0x15, 0x0F, 0x1F, 0x39, 0x4D, 0x2E, 0x2F, 0x4F, 0x38, +0x1F, 0x06, 0x10, 0x0F, 0x88, 0x12, 0x17, 0x0A, 0x01, 0x03, 0x4A, 0x4A, 0x7F, 0x4A, 0x4A, 0x00, +0x00, 0x04, 0x00, 0x1F, 0x00, 0x00, 0x02, 0x3A, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, +0x00, 0x0F, 0x00, 0x00, 0x77, 0x35, 0x21, 0x15, 0x05, 0x11, 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, +0x01, 0x35, 0x21, 0x15, 0x1F, 0x01, 0x46, 0xFE, 0xF3, 0xAA, 0x5B, 0x01, 0x6A, 0xFE, 0x96, 0x01, +0x93, 0x56, 0x76, 0x76, 0x56, 0x02, 0xBC, 0xFD, 0x44, 0x01, 0x0C, 0x8E, 0x8E, 0x01, 0x1A, 0x96, +0x96, 0x00, 0x00, 0x02, 0x00, 0x2B, 0xFF, 0x79, 0x02, 0xE4, 0x03, 0x1E, 0x00, 0x2F, 0x00, 0x33, +0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, +0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x35, +0x17, 0x23, 0x35, 0x21, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x07, 0x11, 0x33, 0x11, 0x01, 0x9D, +0x54, 0x88, 0x62, 0x34, 0x37, 0x66, 0x8B, 0x52, 0x3A, 0x67, 0x54, 0x1D, 0x67, 0x19, 0x35, 0x3C, +0x22, 0x2C, 0x49, 0x37, 0x1E, 0x20, 0x38, 0x4D, 0x2C, 0x1F, 0x37, 0x28, 0x18, 0x33, 0xDE, 0x01, +0x49, 0x02, 0x02, 0x01, 0x31, 0x58, 0x78, 0x80, 0x4C, 0x0A, 0x36, 0x62, 0x85, 0x4E, 0x4E, 0x83, +0x62, 0x36, 0x1E, 0x34, 0x22, 0x6D, 0x18, 0x20, 0x13, 0x20, 0x39, 0x4D, 0x2D, 0x2D, 0x4E, 0x39, +0x21, 0x14, 0x22, 0x2F, 0x1B, 0x1A, 0x22, 0x85, 0x0B, 0x26, 0x24, 0x09, 0x44, 0x71, 0x53, 0x2D, +0x7D, 0x03, 0xA5, 0xFC, 0x5B, 0x00, 0x00, 0x05, 0x00, 0x1E, 0x00, 0x00, 0x02, 0xFA, 0x02, 0xBC, +0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x77, 0x27, 0x01, 0x33, +0x01, 0x35, 0x33, 0x07, 0x03, 0x11, 0x33, 0x11, 0x21, 0x01, 0x37, 0x01, 0x01, 0x35, 0x21, 0x15, +0xEF, 0x2A, 0x01, 0x5B, 0xC7, 0xFD, 0x37, 0xB3, 0x04, 0x5A, 0xAA, 0x01, 0x17, 0xFE, 0xFC, 0x73, +0x01, 0x57, 0xFE, 0x85, 0x01, 0x1B, 0xD2, 0x90, 0x01, 0x5A, 0xFE, 0x98, 0x4A, 0x4A, 0xFE, 0xAC, +0x02, 0xBC, 0xFD, 0x44, 0x01, 0x5C, 0x63, 0xFE, 0x41, 0x01, 0x54, 0x4A, 0x4A, 0x00, 0x00, 0x04, +0x00, 0x15, 0xFF, 0xEB, 0x02, 0x6B, 0x02, 0xCC, 0x00, 0x24, 0x00, 0x40, 0x00, 0x44, 0x00, 0x48, +0x00, 0x00, 0x77, 0x27, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, +0x33, 0x32, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, +0x16, 0x15, 0x14, 0x06, 0x06, 0x17, 0x22, 0x26, 0x27, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x07, +0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, +0x25, 0x35, 0x21, 0x15, 0x25, 0x35, 0x21, 0x15, 0xB8, 0x4B, 0x19, 0x22, 0x0C, 0x14, 0x0C, 0x0C, +0x05, 0x3C, 0x6D, 0x4A, 0x47, 0x69, 0x18, 0x78, 0x0B, 0x18, 0x1E, 0x11, 0x1B, 0x2B, 0x1A, 0x11, +0x0A, 0x0B, 0x11, 0x18, 0x36, 0xD5, 0x1C, 0x43, 0x1C, 0x0D, 0x24, 0x24, 0x0E, 0x15, 0x2F, 0x32, +0x1A, 0x37, 0x28, 0x6D, 0x3F, 0x13, 0x2D, 0x2B, 0x15, 0x30, 0x16, 0x1E, 0x3D, 0x1E, 0x43, 0x22, +0x5C, 0xFE, 0x41, 0x01, 0xB7, 0xFE, 0x49, 0x01, 0xB7, 0x35, 0x15, 0x0E, 0x46, 0x2B, 0x1C, 0x3F, +0x3C, 0x25, 0x30, 0x22, 0x10, 0x45, 0x67, 0x39, 0x30, 0x2B, 0x5E, 0x0E, 0x11, 0x09, 0x19, 0x2B, +0x1C, 0x1F, 0x3E, 0x1D, 0x23, 0x41, 0x18, 0x1F, 0x38, 0x39, 0x6A, 0x11, 0x08, 0x04, 0x0A, 0x08, +0x0A, 0x11, 0x0B, 0x69, 0x1A, 0x23, 0x0A, 0x0F, 0x07, 0x0F, 0x11, 0x12, 0x63, 0x1F, 0x21, 0xF1, +0x47, 0x47, 0x77, 0x47, 0x47, 0x00, 0x00, 0x03, 0x00, 0x12, 0xFF, 0xF6, 0x02, 0x61, 0x02, 0xBC, +0x00, 0x11, 0x00, 0x15, 0x00, 0x19, 0x00, 0x00, 0x45, 0x22, 0x26, 0x27, 0x11, 0x33, 0x11, 0x27, +0x32, 0x3E, 0x02, 0x37, 0x17, 0x0E, 0x03, 0x25, 0x27, 0x25, 0x17, 0x05, 0x27, 0x25, 0x17, 0x01, +0x11, 0x2E, 0x48, 0x1C, 0x9D, 0x0F, 0x25, 0x3F, 0x32, 0x28, 0x0E, 0x88, 0x13, 0x44, 0x5A, 0x68, +0xFE, 0xF5, 0x22, 0x01, 0x8E, 0x24, 0xFE, 0x67, 0x22, 0x01, 0x8F, 0x24, 0x0A, 0x0C, 0x09, 0x02, +0xB1, 0xFD, 0xA6, 0x19, 0x0F, 0x1F, 0x30, 0x20, 0x28, 0x36, 0x53, 0x36, 0x1C, 0xAA, 0x3B, 0xE1, +0x3A, 0x3D, 0x3A, 0xE1, 0x3A, 0x00, 0x00, 0x02, 0x00, 0x58, 0x00, 0x00, 0x02, 0xAE, 0x03, 0x2C, +0x00, 0x15, 0x00, 0x19, 0x00, 0x00, 0x73, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, +0x11, 0x23, 0x11, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x37, 0x11, 0x33, 0x11, +0x58, 0x4D, 0x87, 0x57, 0x57, 0x87, 0x4D, 0xAB, 0x22, 0x3B, 0x23, 0x26, 0x3C, 0x23, 0x5E, 0x4B, +0x01, 0xAF, 0x50, 0x7C, 0x47, 0x47, 0x7C, 0x50, 0xFE, 0x51, 0x01, 0xA6, 0x27, 0x3C, 0x23, 0x23, +0x3C, 0x27, 0xFE, 0x5A, 0xAA, 0x02, 0x82, 0xFD, 0x7E, 0x00, 0x00, 0x02, 0x00, 0x10, 0x00, 0x00, +0x03, 0x46, 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x23, 0x00, 0x00, 0x53, 0x35, 0x33, 0x17, 0x21, 0x37, +0x33, 0x15, 0x23, 0x27, 0x21, 0x07, 0x03, 0x11, 0x33, 0x01, 0x27, 0x2E, 0x04, 0x35, 0x35, 0x33, +0x11, 0x23, 0x01, 0x17, 0x1E, 0x04, 0x15, 0x15, 0x10, 0x75, 0x22, 0x02, 0x07, 0x2A, 0x6E, 0x73, +0x29, 0xFD, 0xF7, 0x1E, 0x10, 0x98, 0x01, 0x6F, 0x21, 0x04, 0x07, 0x05, 0x03, 0x01, 0xA6, 0x9A, +0xFE, 0x80, 0x34, 0x05, 0x07, 0x04, 0x03, 0x01, 0x01, 0x35, 0x4D, 0x0C, 0x0C, 0x4D, 0x14, 0x14, +0xFE, 0xCB, 0x02, 0xBC, 0xFE, 0x0C, 0x05, 0x21, 0x3C, 0x3A, 0x3C, 0x46, 0x29, 0xAD, 0xFD, 0x44, +0x02, 0x04, 0x07, 0x30, 0x43, 0x34, 0x2A, 0x29, 0x19, 0xEA, 0x00, 0x03, 0x00, 0x35, 0x00, 0x00, +0x02, 0xEA, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x10, 0x00, 0x1B, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, +0x01, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x15, 0x03, 0x33, 0x32, +0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35, 0x02, 0xB5, 0xFD, 0xA3, 0x01, 0x2E, 0x42, +0x67, 0x3D, 0x3D, 0x67, 0x42, 0x84, 0x03, 0x6F, 0x16, 0x24, 0x16, 0x16, 0x24, 0x16, 0x6F, 0x01, +0xAC, 0x4A, 0x4A, 0xFE, 0x54, 0x02, 0xBC, 0x3C, 0x68, 0x41, 0x44, 0x6B, 0x3E, 0xEA, 0x01, 0x7F, +0x16, 0x26, 0x19, 0x1A, 0x24, 0x14, 0x00, 0x04, 0x00, 0x35, 0x00, 0x00, 0x02, 0xE6, 0x02, 0xBC, +0x00, 0x0B, 0x00, 0x17, 0x00, 0x24, 0x00, 0x2F, 0x00, 0x00, 0x53, 0x35, 0x33, 0x17, 0x21, 0x37, +0x33, 0x15, 0x23, 0x27, 0x21, 0x07, 0x07, 0x35, 0x33, 0x17, 0x21, 0x37, 0x33, 0x15, 0x23, 0x27, +0x21, 0x07, 0x03, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x15, 0x03, +0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35, 0x68, 0x1D, 0x01, 0x5B, 0x27, +0xAA, 0xAF, 0x25, 0xFE, 0xA4, 0x1C, 0x65, 0x69, 0x1D, 0x01, 0x63, 0x28, 0xA0, 0xA1, 0x26, 0xFE, +0x98, 0x1C, 0x0E, 0x01, 0x2E, 0x41, 0x68, 0x3D, 0x3D, 0x68, 0x41, 0x84, 0x03, 0x6F, 0x16, 0x24, +0x16, 0x16, 0x24, 0x16, 0x6F, 0x01, 0xC1, 0x4A, 0x09, 0x09, 0x4A, 0x1B, 0x1B, 0x28, 0x49, 0x1B, +0x1B, 0x49, 0x08, 0x08, 0xFE, 0x67, 0x02, 0xBC, 0x3C, 0x68, 0x41, 0x44, 0x6B, 0x3E, 0xEA, 0x01, +0x7F, 0x16, 0x26, 0x19, 0x1A, 0x24, 0x14, 0x00, 0x00, 0x04, 0x00, 0x35, 0x00, 0x00, 0x02, 0x9B, +0x02, 0xBC, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x15, 0x00, 0x22, 0x00, 0x00, 0x73, 0x11, 0x21, 0x32, +0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x37, 0x11, 0x27, 0x35, 0x21, 0x15, 0x25, 0x35, +0x33, 0x15, 0x37, 0x27, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x37, 0x87, +0x01, 0x2E, 0x42, 0x67, 0x3D, 0x3D, 0x67, 0x42, 0xB9, 0x35, 0xFC, 0x01, 0x59, 0xFE, 0xA8, 0x8E, +0x6A, 0x33, 0xA2, 0x17, 0x24, 0x15, 0x15, 0x24, 0x17, 0xA2, 0x33, 0x02, 0xBC, 0x3C, 0x68, 0x41, +0x44, 0x6B, 0x3E, 0x30, 0xFE, 0xE6, 0x6B, 0x49, 0x49, 0x80, 0x61, 0x61, 0x7B, 0x19, 0x16, 0x27, +0x18, 0x1A, 0x24, 0x14, 0x3D, 0x00, 0x00, 0x03, 0x00, 0x28, 0xFF, 0xF9, 0x02, 0x3C, 0x02, 0xB6, +0x00, 0x1A, 0x00, 0x1E, 0x00, 0x22, 0x00, 0x00, 0x77, 0x27, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, +0x26, 0x26, 0x23, 0x23, 0x35, 0x21, 0x15, 0x23, 0x27, 0x1E, 0x03, 0x15, 0x14, 0x0E, 0x02, 0x23, +0x13, 0x03, 0x37, 0x13, 0x01, 0x35, 0x21, 0x15, 0xB0, 0x4E, 0x7E, 0x28, 0x2E, 0x18, 0x2D, 0x1F, +0xAA, 0x02, 0x12, 0xDE, 0x52, 0x2B, 0x4C, 0x3B, 0x22, 0x25, 0x40, 0x57, 0x33, 0x4E, 0xD9, 0xAE, +0xED, 0xFE, 0xB8, 0x01, 0x85, 0xFB, 0x4C, 0x2B, 0x33, 0x28, 0x1C, 0x28, 0x17, 0x8E, 0x77, 0x4F, +0x09, 0x1E, 0x2D, 0x3F, 0x2A, 0x2E, 0x4E, 0x3A, 0x20, 0xFE, 0xFF, 0x01, 0x4C, 0x19, 0xFE, 0x9A, +0x01, 0xB1, 0x48, 0x48, 0x00, 0x03, 0x00, 0x15, 0xFF, 0xEB, 0x02, 0x6D, 0x02, 0xCC, 0x00, 0x27, +0x00, 0x42, 0x00, 0x46, 0x00, 0x00, 0x77, 0x27, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, 0x27, 0x2E, +0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, +0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x17, 0x22, 0x26, 0x27, 0x2E, 0x02, +0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, +0x37, 0x17, 0x06, 0x06, 0x01, 0x35, 0x21, 0x15, 0xBA, 0x4B, 0x12, 0x1D, 0x11, 0x06, 0x0B, 0x0E, +0x07, 0x0C, 0x0C, 0x05, 0x3E, 0x6F, 0x4C, 0x47, 0x69, 0x19, 0x79, 0x0A, 0x1A, 0x20, 0x12, 0x1C, +0x2C, 0x19, 0x11, 0x0A, 0x0B, 0x10, 0x18, 0x35, 0xDA, 0x23, 0x47, 0x16, 0x0D, 0x22, 0x26, 0x13, +0x21, 0x45, 0x25, 0x39, 0x2C, 0x66, 0x35, 0x1E, 0x31, 0x2B, 0x15, 0x32, 0x1D, 0x16, 0x37, 0x1D, +0x49, 0x23, 0x60, 0xFE, 0x42, 0x01, 0xA9, 0x35, 0x15, 0x0A, 0x28, 0x31, 0x17, 0x0E, 0x24, 0x2A, +0x2B, 0x15, 0x25, 0x30, 0x22, 0x10, 0x45, 0x67, 0x39, 0x30, 0x2B, 0x5E, 0x0E, 0x11, 0x09, 0x19, +0x2B, 0x1C, 0x1F, 0x3E, 0x1D, 0x23, 0x41, 0x18, 0x1F, 0x38, 0x39, 0x6A, 0x12, 0x07, 0x04, 0x0A, +0x08, 0x14, 0x12, 0x72, 0x1B, 0x1F, 0x0A, 0x0F, 0x07, 0x0F, 0x11, 0x12, 0x69, 0x20, 0x20, 0x01, +0x44, 0x5E, 0x5E, 0x00, 0x00, 0x02, 0x00, 0x07, 0x00, 0x00, 0x03, 0xE3, 0x02, 0xBC, 0x00, 0x0B, +0x00, 0x2E, 0x00, 0x00, 0x53, 0x35, 0x33, 0x17, 0x21, 0x37, 0x33, 0x15, 0x23, 0x27, 0x21, 0x07, +0x13, 0x03, 0x33, 0x13, 0x1E, 0x03, 0x17, 0x23, 0x3E, 0x02, 0x37, 0x13, 0x33, 0x13, 0x1E, 0x02, +0x17, 0x07, 0x3E, 0x04, 0x37, 0x13, 0x33, 0x03, 0x23, 0x03, 0x17, 0x03, 0x0E, 0x9C, 0x22, 0x02, +0x45, 0x27, 0xAB, 0xC9, 0x2C, 0xFD, 0xF8, 0x26, 0x18, 0xD1, 0xAD, 0x68, 0x07, 0x0B, 0x07, 0x05, +0x01, 0x16, 0x07, 0x09, 0x0B, 0x0A, 0x67, 0x88, 0x66, 0x0C, 0x10, 0x09, 0x03, 0x14, 0x03, 0x02, +0x02, 0x04, 0x08, 0x07, 0x68, 0xA9, 0xD2, 0x82, 0xA6, 0x14, 0x9A, 0x01, 0x42, 0x5D, 0x0F, 0x0F, +0x5D, 0x0D, 0x0D, 0xFE, 0xBE, 0x02, 0xBC, 0xFE, 0x90, 0x19, 0x33, 0x2E, 0x27, 0x0D, 0x25, 0x3A, +0x33, 0x1C, 0x01, 0x15, 0xFE, 0xEB, 0x21, 0x3A, 0x35, 0x1A, 0x03, 0x12, 0x1F, 0x1D, 0x20, 0x27, +0x19, 0x01, 0x6F, 0xFD, 0x44, 0x01, 0x93, 0x02, 0xFE, 0x6F, 0x00, 0x03, 0xFF, 0xF9, 0x00, 0x00, +0x02, 0xB8, 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x61, 0x11, 0x17, 0x01, +0x33, 0x13, 0x27, 0x13, 0x33, 0x01, 0x37, 0x11, 0x25, 0x35, 0x21, 0x15, 0x25, 0x35, 0x05, 0x15, +0x01, 0x0D, 0x07, 0xFE, 0xE5, 0xC1, 0xD8, 0x58, 0xC3, 0xBB, 0xFE, 0xF1, 0x0F, 0xFE, 0xD6, 0x01, +0xB3, 0xFE, 0x4D, 0x01, 0xB3, 0x01, 0x5D, 0x31, 0x01, 0x90, 0xFE, 0xCA, 0x03, 0x01, 0x33, 0xFE, +0x65, 0x44, 0xFE, 0x9B, 0x7B, 0x47, 0x48, 0x7C, 0x47, 0x01, 0x47, 0x00, 0x00, 0x01, 0x00, 0x38, +0x00, 0xBC, 0x01, 0x21, 0x01, 0xA5, 0x00, 0x0F, 0x00, 0x00, 0x77, 0x22, 0x26, 0x26, 0x35, 0x34, +0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0xAE, 0x21, 0x35, 0x20, 0x20, 0x35, +0x21, 0x1F, 0x34, 0x20, 0x20, 0x34, 0xBC, 0x1F, 0x34, 0x20, 0x20, 0x35, 0x21, 0x21, 0x35, 0x20, +0x20, 0x34, 0x1F, 0x00, 0x00, 0x01, 0x00, 0x04, 0xFF, 0x95, 0x02, 0x33, 0x02, 0xF4, 0x00, 0x03, +0x00, 0x00, 0x57, 0x01, 0x33, 0x01, 0x04, 0x01, 0xA3, 0x8C, 0xFE, 0x5A, 0x6B, 0x03, 0x5F, 0xFC, +0xA1, 0x00, 0x00, 0x02, 0x00, 0x30, 0x00, 0x27, 0x02, 0x25, 0x02, 0x10, 0x00, 0x03, 0x00, 0x07, +0x00, 0x00, 0x77, 0x35, 0x21, 0x15, 0x05, 0x11, 0x33, 0x11, 0x30, 0x01, 0xF5, 0xFE, 0xBE, 0x8E, +0xDA, 0x83, 0x83, 0xB3, 0x01, 0xE9, 0xFE, 0x17, 0x00, 0x01, 0x00, 0x26, 0x00, 0xE4, 0x02, 0x1D, +0x01, 0x6C, 0x00, 0x03, 0x00, 0x00, 0x77, 0x35, 0x21, 0x15, 0x26, 0x01, 0xF7, 0xE4, 0x88, 0x88, +0x00, 0x02, 0x00, 0x26, 0x00, 0x32, 0x01, 0xEE, 0x01, 0xFB, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, +0x65, 0x01, 0x37, 0x01, 0x05, 0x27, 0x01, 0x17, 0x01, 0x8E, 0xFE, 0x98, 0x60, 0x01, 0x68, 0xFE, +0x98, 0x5E, 0x01, 0x67, 0x5F, 0x35, 0x01, 0x68, 0x5E, 0xFE, 0x98, 0x61, 0x61, 0x01, 0x68, 0x60, +0x00, 0x03, 0x00, 0x2B, 0xFF, 0xE9, 0x02, 0x2A, 0x02, 0x27, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23, +0x00, 0x00, 0x77, 0x35, 0x21, 0x15, 0x05, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, +0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, +0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x2B, 0x01, 0xFF, 0xFE, 0xFE, 0x1B, 0x29, 0x16, 0x17, 0x28, +0x1B, 0x1C, 0x29, 0x16, 0x17, 0x28, 0x1C, 0x1B, 0x29, 0x16, 0x17, 0x28, 0x1B, 0x1C, 0x29, 0x16, +0x17, 0x29, 0xC7, 0x83, 0x83, 0xDE, 0x14, 0x27, 0x1A, 0x18, 0x27, 0x16, 0x15, 0x26, 0x1A, 0x19, +0x26, 0x16, 0x01, 0x94, 0x15, 0x26, 0x1A, 0x18, 0x27, 0x16, 0x14, 0x27, 0x1A, 0x18, 0x26, 0x17, +0x00, 0x02, 0x00, 0x43, 0x00, 0x6C, 0x02, 0x2C, 0x01, 0xC7, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, +0x53, 0x35, 0x21, 0x15, 0x05, 0x35, 0x21, 0x15, 0x43, 0x01, 0xE9, 0xFE, 0x17, 0x01, 0xE9, 0x01, +0x45, 0x82, 0x82, 0xD9, 0x81, 0x81, 0x00, 0x03, 0x00, 0x3D, 0x00, 0x17, 0x02, 0x3D, 0x02, 0x1C, +0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x77, 0x01, 0x33, 0x01, 0x27, 0x35, 0x21, 0x15, +0x25, 0x35, 0x21, 0x15, 0x73, 0x01, 0x07, 0x89, 0xFE, 0xF5, 0xBB, 0x02, 0x00, 0xFE, 0x00, 0x02, +0x00, 0x17, 0x02, 0x05, 0xFD, 0xFB, 0x55, 0x81, 0x81, 0xDA, 0x81, 0x81, 0x00, 0x01, 0x00, 0x28, +0xFF, 0xF3, 0x01, 0xED, 0x02, 0x10, 0x00, 0x07, 0x00, 0x00, 0x57, 0x27, 0x25, 0x15, 0x25, 0x37, +0x05, 0x15, 0x69, 0x41, 0x01, 0x53, 0xFE, 0xAD, 0x41, 0x01, 0x84, 0x0D, 0x7E, 0xB3, 0x45, 0xB2, +0x7F, 0xDE, 0x61, 0x00, 0x00, 0x01, 0x00, 0x29, 0xFF, 0xF3, 0x01, 0xEF, 0x02, 0x10, 0x00, 0x07, +0x00, 0x00, 0x45, 0x25, 0x35, 0x25, 0x17, 0x05, 0x35, 0x05, 0x01, 0xAD, 0xFE, 0x7C, 0x01, 0x84, +0x42, 0xFE, 0xAC, 0x01, 0x54, 0x0D, 0xDE, 0x61, 0xDE, 0x7F, 0xB2, 0x45, 0xB3, 0x00, 0x00, 0x02, +0x00, 0x41, 0x00, 0x00, 0x02, 0x32, 0x02, 0x33, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x77, 0x27, +0x25, 0x07, 0x25, 0x37, 0x05, 0x15, 0x01, 0x35, 0x21, 0x15, 0x6D, 0x13, 0x01, 0x6E, 0x02, 0xFE, +0x91, 0x16, 0x01, 0xC5, 0xFE, 0x0F, 0x01, 0xF1, 0x9E, 0x78, 0x72, 0x3D, 0x73, 0x75, 0x9A, 0x61, +0xFE, 0xC8, 0x81, 0x81, 0x00, 0x02, 0x00, 0x41, 0x00, 0x00, 0x02, 0x32, 0x02, 0x33, 0x00, 0x07, +0x00, 0x0B, 0x00, 0x00, 0x65, 0x25, 0x35, 0x25, 0x17, 0x05, 0x27, 0x05, 0x01, 0x35, 0x21, 0x15, +0x02, 0x06, 0xFE, 0x3B, 0x01, 0xC5, 0x16, 0xFE, 0x91, 0x02, 0x01, 0x6E, 0xFE, 0x28, 0x01, 0xF1, +0x9E, 0x9A, 0x61, 0x9A, 0x75, 0x73, 0x3D, 0x72, 0xFE, 0xEA, 0x81, 0x81, 0x00, 0x03, 0x00, 0x43, +0xFF, 0xFA, 0x02, 0x3D, 0x02, 0x40, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x53, 0x35, +0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x25, 0x11, 0x33, 0x11, 0x43, 0x01, 0xF9, 0xFE, 0x09, 0x01, +0xF8, 0xFE, 0xB8, 0x96, 0x01, 0x39, 0x82, 0x82, 0xFE, 0xC1, 0x83, 0x83, 0xBE, 0x01, 0x88, 0xFE, +0x78, 0x00, 0x00, 0x02, 0x00, 0x38, 0x00, 0x45, 0x02, 0x28, 0x01, 0xD1, 0x00, 0x1F, 0x00, 0x3F, +0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x27, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x17, 0x07, 0x34, 0x36, +0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x27, 0x37, 0x14, 0x06, 0x06, +0x07, 0x22, 0x26, 0x26, 0x27, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x17, 0x07, 0x34, 0x36, 0x36, 0x33, +0x32, 0x16, 0x16, 0x17, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x27, 0x37, 0x14, 0x06, 0x06, 0x01, 0xA9, +0x14, 0x31, 0x30, 0x15, 0x0D, 0x1F, 0x1F, 0x0F, 0x11, 0x13, 0x01, 0x6A, 0x20, 0x3F, 0x31, 0x12, +0x2E, 0x2D, 0x11, 0x0B, 0x1D, 0x1E, 0x0B, 0x14, 0x14, 0x01, 0x6A, 0x1C, 0x39, 0x2A, 0x14, 0x31, +0x30, 0x15, 0x0D, 0x1F, 0x1F, 0x0F, 0x11, 0x13, 0x01, 0x6A, 0x1E, 0x3D, 0x2F, 0x14, 0x2F, 0x2E, +0x13, 0x0B, 0x1D, 0x1E, 0x0B, 0x14, 0x14, 0x01, 0x6A, 0x1C, 0x39, 0x01, 0x1D, 0x0D, 0x12, 0x08, +0x05, 0x0D, 0x09, 0x18, 0x17, 0x04, 0x35, 0x4A, 0x26, 0x0E, 0x13, 0x07, 0x04, 0x0D, 0x09, 0x14, +0x17, 0x03, 0x33, 0x48, 0x25, 0xD8, 0x0D, 0x13, 0x08, 0x05, 0x0D, 0x08, 0x18, 0x16, 0x04, 0x34, +0x4A, 0x27, 0x0D, 0x13, 0x08, 0x04, 0x0D, 0x09, 0x14, 0x17, 0x03, 0x34, 0x47, 0x26, 0x00, 0x01, +0x00, 0x20, 0x00, 0xC4, 0x02, 0x0C, 0x01, 0x8B, 0x00, 0x1F, 0x00, 0x00, 0x65, 0x22, 0x26, 0x26, +0x27, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x15, 0x23, 0x34, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x1E, +0x02, 0x33, 0x32, 0x36, 0x27, 0x17, 0x14, 0x06, 0x06, 0x01, 0x7F, 0x11, 0x27, 0x26, 0x11, 0x0F, +0x21, 0x1C, 0x0A, 0x13, 0x14, 0x73, 0x4A, 0x4E, 0x0C, 0x1E, 0x1C, 0x1D, 0x0B, 0x0D, 0x1C, 0x1B, +0x0A, 0x11, 0x16, 0x02, 0x73, 0x20, 0x3F, 0xCA, 0x09, 0x0E, 0x07, 0x07, 0x0C, 0x08, 0x20, 0x1F, +0x60, 0x66, 0x06, 0x0A, 0x0B, 0x05, 0x05, 0x0C, 0x08, 0x21, 0x19, 0x01, 0x3F, 0x55, 0x2C, 0x00, +0x00, 0x01, 0x00, 0x29, 0x00, 0x6A, 0x02, 0x75, 0x01, 0x9F, 0x00, 0x06, 0x00, 0x00, 0x65, 0x35, +0x17, 0x21, 0x35, 0x21, 0x11, 0x01, 0xDE, 0x41, 0xFE, 0x0A, 0x02, 0x4C, 0x6A, 0xD5, 0x2A, 0x8A, +0xFE, 0xCB, 0x00, 0x01, 0x00, 0x0C, 0x01, 0x69, 0x02, 0x44, 0x02, 0xDD, 0x00, 0x07, 0x00, 0x00, +0x53, 0x13, 0x33, 0x13, 0x23, 0x03, 0x37, 0x03, 0x0C, 0xDC, 0x81, 0xDB, 0xA1, 0xA4, 0x54, 0xA8, +0x01, 0x69, 0x01, 0x74, 0xFE, 0x8C, 0x01, 0x1B, 0x02, 0xFE, 0xE3, 0x00, 0x00, 0x02, 0x00, 0x2A, +0x00, 0x24, 0x03, 0x61, 0x01, 0xD7, 0x00, 0x1E, 0x00, 0x3E, 0x00, 0x00, 0x65, 0x22, 0x26, 0x27, +0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x37, +0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x21, 0x22, 0x26, 0x26, 0x35, 0x34, +0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, +0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x07, 0x0E, 0x02, 0x02, 0xA2, 0x34, 0x53, 0x32, 0x87, 0x18, +0x37, 0x1C, 0x14, 0x20, 0x12, 0x12, 0x20, 0x15, 0x1D, 0x2F, 0x1C, 0x82, 0x22, 0x3B, 0x3E, 0x23, +0x39, 0x57, 0x31, 0x30, 0x56, 0xFE, 0x0E, 0x39, 0x56, 0x30, 0x31, 0x57, 0x39, 0x24, 0x3B, 0x3B, +0x24, 0x82, 0x1B, 0x32, 0x1B, 0x15, 0x20, 0x12, 0x12, 0x20, 0x15, 0x1B, 0x34, 0x1B, 0x86, 0x21, +0x39, 0x3D, 0x24, 0x27, 0x33, 0x98, 0x1C, 0x1A, 0x13, 0x23, 0x19, 0x18, 0x23, 0x13, 0x1A, 0x1E, +0x92, 0x27, 0x28, 0x0F, 0x35, 0x63, 0x42, 0x42, 0x62, 0x35, 0x35, 0x62, 0x42, 0x42, 0x63, 0x35, +0x0F, 0x29, 0x26, 0x92, 0x20, 0x18, 0x13, 0x23, 0x18, 0x19, 0x23, 0x13, 0x1B, 0x1B, 0x98, 0x25, +0x27, 0x0E, 0x00, 0x03, 0x00, 0x22, 0xFF, 0xF3, 0x02, 0x5F, 0x02, 0x1E, 0x00, 0x03, 0x00, 0x13, +0x00, 0x23, 0x00, 0x00, 0x57, 0x27, 0x01, 0x17, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, +0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x27, 0x36, 0x26, 0x26, +0x23, 0x22, 0x06, 0x06, 0x17, 0x06, 0x16, 0x16, 0x62, 0x40, 0x01, 0xF1, 0x3D, 0xFE, 0xF1, 0x53, +0x81, 0x4B, 0x4B, 0x81, 0x53, 0x53, 0x81, 0x4A, 0x4A, 0x81, 0x53, 0x24, 0x38, 0x20, 0x01, 0x01, +0x20, 0x38, 0x24, 0x24, 0x39, 0x20, 0x01, 0x01, 0x20, 0x39, 0x0D, 0x42, 0x01, 0xE2, 0x42, 0xFE, +0x21, 0x48, 0x7C, 0x50, 0x50, 0x7C, 0x48, 0x48, 0x7C, 0x50, 0x50, 0x7C, 0x48, 0x8A, 0x24, 0x3E, +0x28, 0x28, 0x3F, 0x24, 0x24, 0x3F, 0x28, 0x28, 0x3E, 0x24, 0x00, 0x01, 0xFF, 0xE7, 0xFF, 0x7B, +0x02, 0x81, 0x02, 0xF4, 0x00, 0x20, 0x00, 0x00, 0x57, 0x22, 0x26, 0x26, 0x27, 0x37, 0x16, 0x16, +0x33, 0x32, 0x36, 0x36, 0x37, 0x13, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, +0x22, 0x06, 0x06, 0x07, 0x03, 0x0E, 0x02, 0x87, 0x16, 0x34, 0x39, 0x1D, 0x53, 0x0F, 0x26, 0x12, +0x11, 0x1C, 0x13, 0x05, 0x4F, 0x0D, 0x37, 0x52, 0x37, 0x34, 0x4E, 0x1D, 0x30, 0x16, 0x2E, 0x13, +0x13, 0x1E, 0x15, 0x05, 0x49, 0x0D, 0x3B, 0x5A, 0x85, 0x0E, 0x1A, 0x15, 0x89, 0x0C, 0x0F, 0x12, +0x24, 0x18, 0x01, 0xAF, 0x47, 0x5C, 0x2E, 0x1A, 0x1A, 0x86, 0x0E, 0x10, 0x13, 0x29, 0x1E, 0xFE, +0x5D, 0x4B, 0x64, 0x31, 0x00, 0x01, 0x00, 0x1C, 0x00, 0x00, 0x02, 0xBB, 0x02, 0xCC, 0x00, 0x36, +0x00, 0x00, 0x73, 0x35, 0x33, 0x07, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, +0x15, 0x14, 0x06, 0x06, 0x07, 0x27, 0x33, 0x15, 0x21, 0x35, 0x3E, 0x02, 0x37, 0x3E, 0x02, 0x35, +0x34, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x16, 0x17, 0x1E, 0x03, 0x17, 0x15, +0x32, 0xBA, 0x2C, 0x30, 0x4A, 0x2A, 0x32, 0x5C, 0x7A, 0x48, 0x47, 0x7B, 0x5B, 0x32, 0x29, 0x4A, +0x31, 0x29, 0xB7, 0xFE, 0xF3, 0x11, 0x20, 0x1B, 0x08, 0x0E, 0x15, 0x0A, 0x19, 0x30, 0x3F, 0x25, +0x26, 0x3F, 0x2F, 0x1A, 0x10, 0x1C, 0x13, 0x09, 0x12, 0x12, 0x0F, 0x06, 0x8F, 0x20, 0x2D, 0x63, +0x6A, 0x36, 0x41, 0x6E, 0x51, 0x2D, 0x2D, 0x51, 0x6E, 0x41, 0x36, 0x6A, 0x63, 0x2D, 0x20, 0x8F, +0x99, 0x11, 0x22, 0x1F, 0x0E, 0x17, 0x2D, 0x33, 0x1D, 0x23, 0x3C, 0x2B, 0x19, 0x19, 0x2B, 0x3C, +0x23, 0x22, 0x3B, 0x34, 0x19, 0x0E, 0x17, 0x12, 0x0E, 0x05, 0x99, 0x00, 0x00, 0x02, 0xFF, 0xFD, +0x00, 0x00, 0x02, 0xCE, 0x02, 0xDF, 0x00, 0x02, 0x00, 0x08, 0x00, 0x00, 0x63, 0x01, 0x01, 0x25, +0x27, 0x21, 0x07, 0x03, 0x33, 0x03, 0x01, 0x66, 0x01, 0x6B, 0xFD, 0xDA, 0x34, 0x01, 0xE8, 0x3C, +0xE7, 0x54, 0x02, 0xDF, 0xFD, 0x21, 0x40, 0x41, 0x44, 0x01, 0xD5, 0x00, 0x00, 0x03, 0x00, 0x23, +0xFF, 0x38, 0x02, 0xC1, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x45, 0x11, +0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x01, 0xCA, 0x9F, 0xFE, 0x12, 0x9F, +0xF7, 0x02, 0x9E, 0xC8, 0x03, 0x4F, 0xFC, 0xB1, 0x03, 0x49, 0xFC, 0xB7, 0x02, 0xF1, 0x93, 0x93, +0x00, 0x01, 0x00, 0x20, 0xFF, 0xF5, 0x01, 0xEB, 0x02, 0xAF, 0x00, 0x0F, 0x00, 0x00, 0x57, 0x27, +0x13, 0x17, 0x03, 0x37, 0x21, 0x15, 0x21, 0x37, 0x13, 0x15, 0x03, 0x27, 0x21, 0x15, 0x4C, 0x2C, +0xDE, 0x03, 0xE1, 0x2C, 0x01, 0x9F, 0xFE, 0x9E, 0x2C, 0xD3, 0xD4, 0x25, 0x01, 0x5C, 0x0B, 0x64, +0x01, 0x16, 0x3B, 0x01, 0x17, 0x64, 0x8A, 0x45, 0xFE, 0xF0, 0x0F, 0xFE, 0xF0, 0x43, 0x89, 0x00, +0x00, 0x01, 0x00, 0x09, 0xFF, 0x6B, 0x02, 0xE6, 0x02, 0xBC, 0x00, 0x0A, 0x00, 0x00, 0x57, 0x03, +0x33, 0x13, 0x27, 0x13, 0x21, 0x15, 0x23, 0x37, 0x01, 0xC9, 0xC0, 0xA7, 0x74, 0x41, 0xFC, 0x01, +0x07, 0xE0, 0x5D, 0xFE, 0xF2, 0x95, 0x01, 0xDB, 0xFE, 0x9A, 0x02, 0x02, 0xDA, 0xA8, 0x40, 0xFD, +0x17, 0x00, 0x00, 0x01, 0x00, 0x4A, 0xFF, 0x5E, 0x02, 0x38, 0x02, 0x13, 0x00, 0x1C, 0x00, 0x00, +0x57, 0x11, 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x11, 0x33, 0x11, 0x23, +0x27, 0x17, 0x0E, 0x02, 0x07, 0x22, 0x26, 0x26, 0x27, 0x37, 0x17, 0x4A, 0x9E, 0x13, 0x24, 0x1B, +0x15, 0x23, 0x1A, 0x0E, 0x9E, 0x94, 0x06, 0x0F, 0x14, 0x2F, 0x3C, 0x26, 0x0C, 0x15, 0x0F, 0x04, +0x0E, 0x06, 0xA2, 0x02, 0xB5, 0xFE, 0xCB, 0x21, 0x2C, 0x17, 0x0F, 0x1B, 0x23, 0x14, 0x01, 0x38, +0xFD, 0xED, 0x64, 0x0A, 0x23, 0x2B, 0x15, 0x02, 0x06, 0x0B, 0x07, 0x35, 0xE4, 0x00, 0x00, 0x02, +0x00, 0x22, 0xFF, 0xF9, 0x02, 0x40, 0x02, 0xEA, 0x00, 0x20, 0x00, 0x30, 0x00, 0x00, 0x45, 0x22, +0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x04, 0x27, 0x37, +0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, +0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x2C, 0x38, 0x60, 0x49, 0x29, 0x2A, +0x47, 0x5B, 0x32, 0x28, 0x4B, 0x44, 0x1E, 0x41, 0x02, 0x18, 0x29, 0x3C, 0x4E, 0x2F, 0x34, 0x45, +0x75, 0x2C, 0x38, 0x36, 0x29, 0x49, 0x65, 0x3A, 0x24, 0x39, 0x22, 0x22, 0x39, 0x24, 0x22, 0x37, +0x20, 0x20, 0x37, 0x07, 0x2A, 0x4A, 0x63, 0x39, 0x34, 0x5B, 0x47, 0x28, 0x1C, 0x45, 0x3C, 0x11, +0x22, 0x43, 0x3E, 0x35, 0x2A, 0x0D, 0x82, 0x12, 0x4E, 0x36, 0x40, 0x9D, 0x54, 0x3E, 0x6C, 0x52, +0x2E, 0x8D, 0x23, 0x3B, 0x25, 0x25, 0x3A, 0x22, 0x22, 0x3A, 0x25, 0x25, 0x3B, 0x23, 0x00, 0x05, +0x00, 0x28, 0xFF, 0xF6, 0x03, 0x9C, 0x02, 0xD0, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x33, +0x00, 0x43, 0x00, 0x00, 0x73, 0x01, 0x33, 0x01, 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, +0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, +0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, +0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, +0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0xAB, 0x01, 0xCF, 0x95, 0xFE, 0x2C, 0x63, 0x33, +0x50, 0x2D, 0x2D, 0x50, 0x33, 0x34, 0x4F, 0x2C, 0x2E, 0x4F, 0x32, 0x11, 0x17, 0x0C, 0x0C, 0x17, +0x11, 0x10, 0x18, 0x0D, 0x0C, 0x19, 0x02, 0x25, 0x33, 0x50, 0x2D, 0x2C, 0x50, 0x34, 0x34, 0x4F, +0x2C, 0x2E, 0x4F, 0x32, 0x11, 0x17, 0x0C, 0x0C, 0x17, 0x11, 0x11, 0x18, 0x0D, 0x0D, 0x18, 0x02, +0xBC, 0xFD, 0x44, 0x01, 0x49, 0x33, 0x58, 0x38, 0x39, 0x59, 0x32, 0x32, 0x59, 0x39, 0x38, 0x58, +0x33, 0x67, 0x16, 0x2A, 0x1C, 0x1C, 0x2A, 0x17, 0x17, 0x2A, 0x1C, 0x1C, 0x2A, 0x16, 0xFE, 0x46, +0x34, 0x57, 0x38, 0x39, 0x59, 0x32, 0x32, 0x59, 0x39, 0x37, 0x58, 0x34, 0x67, 0x17, 0x29, 0x1C, +0x1C, 0x2A, 0x17, 0x16, 0x2B, 0x1C, 0x1C, 0x29, 0x17, 0x00, 0x00, 0x07, 0x00, 0x28, 0xFF, 0xF7, +0x05, 0x19, 0x02, 0xCB, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x33, 0x00, 0x43, 0x00, 0x53, +0x00, 0x63, 0x00, 0x00, 0x73, 0x01, 0x33, 0x01, 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, +0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, +0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, +0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, +0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x05, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, +0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, +0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0xAC, 0x01, 0xCF, 0x95, 0xFE, 0x2C, 0x64, 0x33, +0x50, 0x2D, 0x2D, 0x50, 0x33, 0x34, 0x4F, 0x2C, 0x2E, 0x4F, 0x32, 0x11, 0x17, 0x0C, 0x0C, 0x17, +0x11, 0x10, 0x18, 0x0D, 0x0C, 0x19, 0x02, 0x1C, 0x33, 0x50, 0x2D, 0x2C, 0x50, 0x34, 0x34, 0x4F, +0x2C, 0x2E, 0x4F, 0x32, 0x10, 0x18, 0x0C, 0x0C, 0x18, 0x10, 0x11, 0x18, 0x0D, 0x0D, 0x18, 0x01, +0x98, 0x33, 0x50, 0x2E, 0x2D, 0x50, 0x34, 0x33, 0x4F, 0x2C, 0x2D, 0x4F, 0x32, 0x10, 0x17, 0x0D, +0x0D, 0x17, 0x10, 0x11, 0x18, 0x0D, 0x0C, 0x19, 0x02, 0xBC, 0xFD, 0x44, 0x01, 0x44, 0x33, 0x58, +0x38, 0x39, 0x59, 0x32, 0x32, 0x59, 0x39, 0x37, 0x58, 0x34, 0x67, 0x17, 0x29, 0x1C, 0x1C, 0x2A, +0x17, 0x17, 0x2A, 0x1C, 0x1C, 0x29, 0x17, 0xFE, 0x4C, 0x33, 0x58, 0x38, 0x39, 0x59, 0x32, 0x32, +0x59, 0x39, 0x38, 0x58, 0x33, 0x66, 0x17, 0x2A, 0x1C, 0x1C, 0x2A, 0x17, 0x17, 0x2A, 0x1C, 0x1C, +0x2A, 0x17, 0x66, 0x33, 0x58, 0x38, 0x39, 0x59, 0x32, 0x32, 0x59, 0x39, 0x38, 0x58, 0x33, 0x66, +0x17, 0x2A, 0x1C, 0x1C, 0x2A, 0x17, 0x17, 0x2A, 0x1C, 0x1C, 0x2A, 0x17, 0x00, 0x02, 0x00, 0x26, +0xFF, 0xC1, 0x02, 0x68, 0x02, 0xC9, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x45, 0x09, 0x02, 0x05, +0x37, 0x27, 0x07, 0x01, 0x47, 0xFE, 0xDF, 0x01, 0x21, 0x01, 0x21, 0xFE, 0xE0, 0x76, 0x77, 0x76, +0x3F, 0x01, 0x87, 0x01, 0x81, 0xFE, 0x82, 0xAE, 0xAA, 0xA6, 0xA5, 0x00, 0x00, 0x02, 0x00, 0x47, +0x02, 0x4C, 0x01, 0xAD, 0x03, 0xCD, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x00, 0x53, 0x22, 0x26, 0x27, +0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x27, 0x27, 0x37, 0x17, 0xFA, 0x45, +0x60, 0x0E, 0x62, 0x0C, 0x2C, 0x19, 0x19, 0x2C, 0x0C, 0x62, 0x0E, 0x60, 0x3C, 0x3F, 0x5E, 0x65, +0x02, 0x4C, 0x4C, 0x42, 0x0C, 0x1E, 0x1A, 0x1A, 0x1E, 0x0C, 0x42, 0x4C, 0xB0, 0x2D, 0xA4, 0x48, +0x00, 0x02, 0x00, 0x47, 0x02, 0x4C, 0x01, 0xAD, 0x03, 0xCD, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x00, +0x53, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x27, 0x27, +0x37, 0x17, 0xFA, 0x45, 0x60, 0x0E, 0x62, 0x0C, 0x2C, 0x19, 0x19, 0x2C, 0x0C, 0x62, 0x0E, 0x5F, +0x46, 0x86, 0x64, 0x5F, 0x02, 0x4C, 0x4D, 0x46, 0x0C, 0x21, 0x1C, 0x1C, 0x21, 0x0C, 0x45, 0x4E, +0xAF, 0x8A, 0x48, 0xA4, 0x00, 0x02, 0x00, 0x47, 0x02, 0x4C, 0x01, 0xAD, 0x03, 0xD8, 0x00, 0x0D, +0x00, 0x2D, 0x00, 0x00, 0x53, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, +0x06, 0x06, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, +0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, +0x14, 0x17, 0xFA, 0x45, 0x60, 0x0E, 0x62, 0x0C, 0x2C, 0x19, 0x19, 0x2C, 0x0C, 0x62, 0x0E, 0x5F, +0x60, 0x09, 0x09, 0x0A, 0x10, 0x0B, 0x10, 0x12, 0x0F, 0x13, 0x2B, 0x15, 0x15, 0x14, 0x3E, 0x22, +0x3A, 0x45, 0x1D, 0x12, 0x10, 0x14, 0x01, 0x02, 0x4C, 0x4D, 0x46, 0x0C, 0x21, 0x1C, 0x1C, 0x21, +0x0C, 0x45, 0x4E, 0xAE, 0x09, 0x15, 0x0B, 0x0A, 0x13, 0x0B, 0x08, 0x0E, 0x07, 0x0A, 0x0A, 0x0C, +0x08, 0x55, 0x0C, 0x0F, 0x32, 0x2A, 0x20, 0x20, 0x09, 0x08, 0x10, 0x0A, 0x02, 0x05, 0x02, 0x00, +0x00, 0x02, 0x00, 0x45, 0x02, 0x4C, 0x01, 0xB0, 0x03, 0xC0, 0x00, 0x0D, 0x00, 0x28, 0x00, 0x00, +0x53, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x37, 0x22, +0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, +0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0xFB, 0x46, 0x5F, 0x0F, 0x63, 0x0C, 0x2C, 0x19, +0x18, 0x2C, 0x0C, 0x63, 0x0E, 0x60, 0x09, 0x15, 0x28, 0x17, 0x0F, 0x18, 0x09, 0x0E, 0x16, 0x03, +0x59, 0x01, 0x3C, 0x30, 0x12, 0x26, 0x15, 0x0F, 0x18, 0x0B, 0x0E, 0x15, 0x02, 0x5A, 0x01, 0x19, +0x2E, 0x02, 0x4C, 0x4D, 0x46, 0x0C, 0x21, 0x1C, 0x1C, 0x21, 0x0C, 0x45, 0x4E, 0xEC, 0x0D, 0x09, +0x07, 0x07, 0x12, 0x12, 0x0D, 0x32, 0x48, 0x0C, 0x09, 0x06, 0x09, 0x13, 0x12, 0x0D, 0x20, 0x38, +0x23, 0x00, 0x00, 0x02, 0x00, 0x01, 0x02, 0x54, 0x01, 0xF9, 0x03, 0xBD, 0x00, 0x07, 0x00, 0x0B, +0x00, 0x00, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27, 0x33, 0x37, 0x27, 0x37, 0x17, 0x30, 0x2F, +0x84, 0x5F, 0x85, 0x30, 0x93, 0x1E, 0xB2, 0x40, 0x5F, 0x64, 0x02, 0x54, 0x35, 0x6C, 0x6C, 0x35, +0x44, 0x54, 0x2D, 0xA4, 0x47, 0x00, 0x00, 0x02, 0x00, 0x2F, 0x02, 0x53, 0x01, 0xCB, 0x03, 0xBD, +0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27, 0x33, 0x37, 0x27, +0x37, 0x17, 0x5F, 0x30, 0x85, 0x5F, 0x84, 0x2F, 0x94, 0x1E, 0x9B, 0x85, 0x64, 0x5F, 0x02, 0x53, +0x36, 0x6B, 0x6B, 0x36, 0x44, 0x54, 0x8A, 0x48, 0xA5, 0x00, 0x00, 0x02, 0x00, 0x0B, 0x02, 0x54, +0x01, 0xE9, 0x03, 0xC2, 0x00, 0x07, 0x00, 0x27, 0x00, 0x00, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, +0x27, 0x33, 0x37, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, +0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, +0x14, 0x17, 0x3B, 0x30, 0x85, 0x5F, 0x85, 0x30, 0x93, 0x1E, 0x8C, 0x08, 0x0A, 0x0A, 0x10, 0x0C, +0x0F, 0x12, 0x0E, 0x14, 0x2A, 0x16, 0x15, 0x15, 0x3E, 0x21, 0x3A, 0x46, 0x1E, 0x12, 0x0F, 0x15, +0x01, 0x02, 0x54, 0x35, 0x6C, 0x6C, 0x35, 0x44, 0x4C, 0x09, 0x15, 0x0B, 0x0A, 0x14, 0x0A, 0x08, +0x0E, 0x08, 0x09, 0x0A, 0x0B, 0x09, 0x55, 0x0B, 0x10, 0x32, 0x2A, 0x1F, 0x20, 0x0A, 0x08, 0x0F, +0x0B, 0x02, 0x04, 0x03, 0x00, 0x02, 0x00, 0x45, 0x02, 0x54, 0x01, 0xB0, 0x03, 0xBB, 0x00, 0x07, +0x00, 0x22, 0x00, 0x00, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27, 0x33, 0x37, 0x22, 0x26, 0x27, +0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, +0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x76, 0x2F, 0x84, 0x5F, 0x84, 0x2F, 0x93, 0x1E, 0x3F, 0x15, +0x28, 0x17, 0x0F, 0x18, 0x09, 0x0E, 0x16, 0x03, 0x59, 0x01, 0x3C, 0x30, 0x12, 0x26, 0x15, 0x0F, +0x18, 0x0B, 0x0E, 0x15, 0x02, 0x5A, 0x01, 0x19, 0x2E, 0x02, 0x54, 0x35, 0x6C, 0x6C, 0x35, 0x44, +0x9C, 0x0C, 0x0A, 0x06, 0x08, 0x12, 0x12, 0x0C, 0x33, 0x48, 0x0C, 0x09, 0x07, 0x08, 0x13, 0x11, +0x0D, 0x1F, 0x38, 0x23, 0x00, 0x02, 0x00, 0x2B, 0x02, 0x72, 0x01, 0xC9, 0x03, 0x1C, 0x00, 0x0B, +0x00, 0x17, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, +0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x01, 0x73, 0x2A, 0x2D, +0x2F, 0x28, 0x29, 0x2D, 0x2E, 0xFE, 0xE7, 0x2A, 0x2D, 0x2F, 0x28, 0x2A, 0x2D, 0x2F, 0x02, 0x72, +0x2C, 0x29, 0x26, 0x2F, 0x2C, 0x29, 0x26, 0x2F, 0x2C, 0x29, 0x26, 0x2F, 0x2C, 0x29, 0x26, 0x2F, +0x00, 0x03, 0x00, 0x2B, 0x02, 0x60, 0x01, 0xC9, 0x03, 0xE4, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x1B, +0x00, 0x00, 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x33, 0x22, +0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x27, 0x27, 0x37, 0x17, 0x81, 0x29, +0x2D, 0x2E, 0x28, 0x2A, 0x2D, 0x2F, 0xC9, 0x2A, 0x2D, 0x2F, 0x28, 0x2A, 0x2D, 0x2F, 0x93, 0x43, +0x59, 0x6A, 0x02, 0x60, 0x2C, 0x29, 0x26, 0x2F, 0x2C, 0x29, 0x26, 0x2F, 0x2C, 0x29, 0x26, 0x2F, +0x2C, 0x29, 0x26, 0x2F, 0xB1, 0x2C, 0xA7, 0x4A, 0xFF, 0xFF, 0x00, 0x2B, 0x02, 0x72, 0x01, 0xC9, +0x03, 0xB5, 0x06, 0x26, 0x02, 0xF2, 0x00, 0x00, 0x00, 0x07, 0x03, 0x05, 0x00, 0x00, 0x00, 0xD6, +0x00, 0x01, 0x00, 0x9B, 0x02, 0x76, 0x01, 0x59, 0x03, 0x1C, 0x00, 0x0B, 0x00, 0x00, 0x53, 0x22, +0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xFA, 0x2D, 0x32, 0x33, 0x2C, 0x2D, +0x32, 0x33, 0x02, 0x76, 0x2B, 0x28, 0x24, 0x2F, 0x2B, 0x28, 0x25, 0x2E, 0xFF, 0xFF, 0x00, 0x52, +0x02, 0x76, 0x01, 0xA2, 0x03, 0xB5, 0x06, 0x26, 0x02, 0xF5, 0x00, 0x00, 0x00, 0x07, 0x03, 0x05, +0x00, 0x00, 0x00, 0xD6, 0x00, 0x01, 0x00, 0x7C, 0x02, 0x48, 0x01, 0x78, 0x03, 0x1E, 0x00, 0x03, +0x00, 0x00, 0x41, 0x27, 0x37, 0x17, 0x01, 0x49, 0xCD, 0x49, 0xB3, 0x02, 0x48, 0x6E, 0x68, 0x8E, +0x00, 0x01, 0x00, 0x7C, 0x02, 0x47, 0x01, 0x78, 0x03, 0x1E, 0x00, 0x03, 0x00, 0x00, 0x53, 0x27, +0x37, 0x17, 0xAB, 0x2F, 0xB3, 0x49, 0x02, 0x47, 0x49, 0x8E, 0x69, 0x00, 0x00, 0x02, 0x00, 0x34, +0x02, 0x65, 0x01, 0xC1, 0x03, 0x36, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x27, 0x37, 0x17, +0x05, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x01, 0x41, 0x43, 0x5E, +0x65, 0xFE, 0xCB, 0x2A, 0x2E, 0x2F, 0x29, 0x29, 0x2F, 0x30, 0x02, 0x65, 0x2C, 0xA5, 0x49, 0x86, +0x29, 0x24, 0x22, 0x2A, 0x27, 0x25, 0x22, 0x2B, 0x00, 0x02, 0x00, 0x19, 0x02, 0x45, 0x01, 0xDC, +0x03, 0x25, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x27, 0x37, 0x17, 0x05, 0x27, 0x37, 0x17, +0x01, 0x29, 0x40, 0x99, 0x5A, 0xFE, 0x80, 0x43, 0x8D, 0x5F, 0x02, 0x48, 0x33, 0xA9, 0x5A, 0x85, +0x30, 0xB0, 0x54, 0x00, 0x00, 0x01, 0x00, 0x9B, 0x01, 0xB6, 0x01, 0x59, 0x02, 0xB4, 0x00, 0x15, +0x00, 0x00, 0x53, 0x27, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x33, +0x32, 0x16, 0x15, 0x14, 0x0E, 0x02, 0xC3, 0x28, 0x0E, 0x21, 0x19, 0x0B, 0x0D, 0x15, 0x12, 0x2E, +0x23, 0x2A, 0x3A, 0x15, 0x27, 0x38, 0x01, 0xB6, 0x37, 0x05, 0x11, 0x18, 0x0C, 0x08, 0x09, 0x06, +0x08, 0x19, 0x14, 0x20, 0x21, 0x31, 0x30, 0x1D, 0x31, 0x27, 0x1D, 0x00, 0x00, 0x01, 0x00, 0x3A, +0x02, 0x53, 0x01, 0xBA, 0x03, 0x06, 0x00, 0x07, 0x00, 0x00, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, +0x27, 0x33, 0x74, 0x3A, 0x90, 0x60, 0x90, 0x3A, 0x95, 0x1E, 0x02, 0x53, 0x32, 0x81, 0x81, 0x32, +0x56, 0x00, 0x00, 0x01, 0x00, 0x3E, 0x02, 0x59, 0x01, 0xB6, 0x03, 0x0C, 0x00, 0x07, 0x00, 0x00, +0x53, 0x27, 0x37, 0x17, 0x23, 0x37, 0x17, 0x07, 0xCA, 0x8C, 0x3A, 0x91, 0x1E, 0x91, 0x3A, 0x8C, +0x02, 0x59, 0x81, 0x32, 0x56, 0x56, 0x32, 0x81, 0x00, 0x02, 0x00, 0x3E, 0x02, 0x54, 0x01, 0xB6, +0x03, 0xBD, 0x00, 0x07, 0x00, 0x13, 0x00, 0x00, 0x53, 0x27, 0x37, 0x17, 0x23, 0x37, 0x17, 0x07, +0x27, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xCA, 0x8C, 0x3A, 0x91, +0x1E, 0x91, 0x3A, 0x8C, 0x30, 0x2D, 0x32, 0x33, 0x2C, 0x2D, 0x32, 0x33, 0x02, 0x54, 0x81, 0x32, +0x56, 0x56, 0x32, 0x81, 0xC3, 0x2B, 0x28, 0x25, 0x2E, 0x2B, 0x28, 0x24, 0x2F, 0x00, 0x00, 0x01, +0x00, 0x47, 0x02, 0x53, 0x01, 0xAD, 0x02, 0xFF, 0x00, 0x0D, 0x00, 0x00, 0x53, 0x22, 0x26, 0x27, +0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0xFA, 0x45, 0x60, 0x0E, 0x66, 0x0B, +0x29, 0x19, 0x19, 0x29, 0x0B, 0x66, 0x0E, 0x60, 0x02, 0x53, 0x56, 0x4A, 0x0C, 0x1F, 0x25, 0x25, +0x1F, 0x0C, 0x4A, 0x56, 0x00, 0x02, 0x00, 0x82, 0x02, 0x56, 0x01, 0x73, 0x03, 0x40, 0x00, 0x0F, +0x00, 0x1B, 0x00, 0x00, 0x53, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, +0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, +0xFA, 0x1F, 0x38, 0x21, 0x20, 0x38, 0x20, 0x21, 0x37, 0x21, 0x22, 0x36, 0x21, 0x10, 0x15, 0x15, +0x10, 0x10, 0x15, 0x16, 0x02, 0x56, 0x20, 0x35, 0x1F, 0x21, 0x35, 0x20, 0x20, 0x35, 0x21, 0x1F, +0x35, 0x20, 0x51, 0x14, 0x0F, 0x11, 0x14, 0x14, 0x10, 0x10, 0x14, 0x00, 0x00, 0x01, 0x00, 0x45, +0x02, 0x60, 0x01, 0xB0, 0x02, 0xFA, 0x00, 0x1A, 0x00, 0x00, 0x41, 0x22, 0x26, 0x27, 0x26, 0x26, +0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, +0x37, 0x17, 0x0E, 0x02, 0x01, 0x3F, 0x11, 0x24, 0x17, 0x11, 0x16, 0x07, 0x0E, 0x16, 0x03, 0x59, +0x01, 0x3E, 0x34, 0x11, 0x22, 0x17, 0x0D, 0x17, 0x0B, 0x0E, 0x15, 0x02, 0x5A, 0x01, 0x1C, 0x33, +0x02, 0x60, 0x0C, 0x10, 0x0E, 0x0B, 0x17, 0x19, 0x0D, 0x38, 0x50, 0x0C, 0x0F, 0x0B, 0x0F, 0x19, +0x17, 0x0D, 0x23, 0x3F, 0x26, 0x00, 0x00, 0x03, 0x00, 0x32, 0x02, 0x60, 0x01, 0xC3, 0x03, 0xC3, +0x00, 0x0B, 0x00, 0x17, 0x00, 0x32, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, +0x16, 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, +0x17, 0x22, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, +0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x01, 0x6F, 0x29, 0x2B, 0x2D, 0x27, +0x28, 0x2C, 0x2D, 0xFE, 0xF0, 0x29, 0x2B, 0x2E, 0x26, 0x28, 0x2B, 0x2D, 0x93, 0x11, 0x23, 0x17, +0x12, 0x16, 0x07, 0x0E, 0x16, 0x03, 0x59, 0x01, 0x3E, 0x34, 0x11, 0x22, 0x17, 0x0D, 0x18, 0x0A, +0x0E, 0x15, 0x02, 0x5A, 0x01, 0x1C, 0x33, 0x03, 0x28, 0x29, 0x25, 0x22, 0x2B, 0x28, 0x25, 0x22, +0x2C, 0x29, 0x25, 0x22, 0x2B, 0x28, 0x25, 0x22, 0x2C, 0xC8, 0x0C, 0x10, 0x0E, 0x0B, 0x17, 0x19, +0x0D, 0x38, 0x50, 0x0C, 0x0F, 0x0B, 0x0F, 0x19, 0x17, 0x0D, 0x23, 0x3F, 0x26, 0x00, 0x00, 0x02, +0x00, 0x45, 0x02, 0x60, 0x01, 0xB0, 0x03, 0xDC, 0x00, 0x1A, 0x00, 0x1E, 0x00, 0x00, 0x41, 0x22, +0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, +0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x27, 0x27, 0x37, 0x17, 0x01, 0x3F, 0x11, 0x24, +0x17, 0x11, 0x16, 0x07, 0x0E, 0x16, 0x03, 0x59, 0x01, 0x3E, 0x34, 0x11, 0x22, 0x17, 0x0D, 0x17, +0x0B, 0x0E, 0x15, 0x02, 0x5A, 0x01, 0x1C, 0x33, 0x5B, 0x43, 0x5E, 0x65, 0x02, 0x60, 0x0C, 0x10, +0x0E, 0x0B, 0x17, 0x19, 0x0D, 0x38, 0x50, 0x0C, 0x0F, 0x0B, 0x0F, 0x19, 0x17, 0x0D, 0x23, 0x3F, +0x26, 0xAB, 0x2C, 0xA5, 0x48, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0x02, 0x60, 0x01, 0xAF, 0x03, 0xAF, +0x04, 0x26, 0x03, 0x01, 0xFF, 0x00, 0x02, 0x07, 0x03, 0x05, 0x00, 0x00, 0x00, 0xD0, 0x00, 0x01, +0x00, 0x52, 0x02, 0x7A, 0x01, 0xA2, 0x02, 0xDF, 0x00, 0x03, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, +0x52, 0x01, 0x50, 0x02, 0x7A, 0x65, 0x65, 0x00, 0xFF, 0xFF, 0x00, 0x2B, 0x02, 0x7A, 0x01, 0xC9, +0x03, 0xD1, 0x06, 0x26, 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x02, 0xF2, 0x00, 0x00, 0x00, 0xB5, +0x00, 0x02, 0x00, 0x52, 0x02, 0x70, 0x01, 0xA2, 0x03, 0xD4, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, +0x41, 0x27, 0x37, 0x17, 0x07, 0x35, 0x21, 0x15, 0x01, 0x04, 0x7F, 0x65, 0x5E, 0xF6, 0x01, 0x50, +0x03, 0x03, 0x88, 0x49, 0xA5, 0xBF, 0x65, 0x65, 0x00, 0x02, 0x00, 0x52, 0x02, 0x70, 0x01, 0xA2, +0x03, 0xD4, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x27, 0x27, 0x37, 0x17, +0x52, 0x01, 0x50, 0xA2, 0x43, 0x5E, 0x65, 0x02, 0x70, 0x65, 0x65, 0x93, 0x2C, 0xA5, 0x49, 0x00, +0x00, 0x01, 0x00, 0x80, 0x02, 0x4A, 0x01, 0x75, 0x03, 0x34, 0x00, 0x1F, 0x00, 0x00, 0x53, 0x26, +0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, +0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0xE1, 0x07, +0x0C, 0x0D, 0x12, 0x0E, 0x10, 0x11, 0x0D, 0x14, 0x2C, 0x16, 0x17, 0x16, 0x41, 0x22, 0x39, 0x43, +0x1C, 0x10, 0x10, 0x15, 0x02, 0x01, 0x02, 0x4A, 0x09, 0x15, 0x0C, 0x0D, 0x17, 0x0C, 0x0A, 0x0D, +0x0A, 0x09, 0x09, 0x0C, 0x09, 0x54, 0x0C, 0x12, 0x31, 0x2A, 0x20, 0x22, 0x0B, 0x09, 0x13, 0x0A, +0x03, 0x07, 0x03, 0x00, 0x00, 0x02, 0x00, 0x19, 0x02, 0x45, 0x01, 0xDC, 0x03, 0x25, 0x00, 0x03, +0x00, 0x07, 0x00, 0x00, 0x41, 0x27, 0x37, 0x17, 0x05, 0x27, 0x37, 0x17, 0x01, 0x99, 0xAA, 0x5F, +0x8E, 0xFE, 0xEF, 0xB2, 0x5A, 0x98, 0x02, 0x45, 0x8C, 0x54, 0xB0, 0x2D, 0x82, 0x5A, 0xA9, 0x00, +0x00, 0x01, 0x00, 0x47, 0x02, 0x5D, 0x01, 0xAD, 0x03, 0x09, 0x00, 0x0D, 0x00, 0x00, 0x53, 0x27, +0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0xAD, 0x66, 0x0E, 0x60, +0x45, 0x45, 0x60, 0x0E, 0x66, 0x0B, 0x29, 0x19, 0x19, 0x29, 0x02, 0x5D, 0x0C, 0x4B, 0x55, 0x55, +0x4B, 0x0C, 0x20, 0x24, 0x24, 0x00, 0x00, 0x01, 0x00, 0x9B, 0x02, 0x4E, 0x01, 0x59, 0x03, 0x4C, +0x00, 0x15, 0x00, 0x00, 0x53, 0x22, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x37, 0x17, 0x0E, 0x02, 0x15, +0x14, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0xFC, 0x26, 0x3B, 0x19, 0x2B, 0x36, 0x1C, 0x28, +0x0D, 0x22, 0x19, 0x0E, 0x0B, 0x11, 0x15, 0x31, 0x02, 0x4E, 0x30, 0x34, 0x1D, 0x2F, 0x26, 0x1D, +0x0B, 0x37, 0x04, 0x11, 0x17, 0x0E, 0x0A, 0x08, 0x05, 0x08, 0x16, 0x17, 0x21, 0x20, 0x00, 0x01, +0x00, 0x8F, 0x01, 0xC2, 0x01, 0x66, 0x02, 0x96, 0x00, 0x08, 0x00, 0x00, 0x53, 0x35, 0x32, 0x36, +0x35, 0x33, 0x14, 0x06, 0x06, 0x8F, 0x2F, 0x2E, 0x7A, 0x30, 0x5F, 0x01, 0xC2, 0x62, 0x39, 0x39, +0x3C, 0x60, 0x38, 0x00, 0x00, 0x01, 0x00, 0x98, 0xFF, 0x20, 0x01, 0x5C, 0xFF, 0xCA, 0x00, 0x0B, +0x00, 0x00, 0x57, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xFA, 0x2E, +0x34, 0x35, 0x2D, 0x2E, 0x34, 0x35, 0xE0, 0x2D, 0x28, 0x26, 0x2F, 0x2C, 0x29, 0x25, 0x30, 0x00, +0x00, 0x02, 0x00, 0x2B, 0xFF, 0x20, 0x01, 0xC9, 0xFF, 0xCA, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x00, +0x45, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, 0x35, +0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x01, 0x73, 0x2A, 0x2D, 0x2F, 0x28, 0x29, 0x2D, +0x2E, 0xFE, 0xE7, 0x2A, 0x2D, 0x2F, 0x28, 0x2A, 0x2D, 0x2F, 0xE0, 0x2C, 0x29, 0x25, 0x30, 0x2C, +0x29, 0x26, 0x2F, 0x2C, 0x29, 0x25, 0x30, 0x2C, 0x29, 0x26, 0x2F, 0x00, 0x00, 0x01, 0x00, 0x9B, +0xFE, 0xDB, 0x01, 0x59, 0xFF, 0xD9, 0x00, 0x15, 0x00, 0x00, 0x53, 0x27, 0x3E, 0x02, 0x35, 0x34, +0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x02, 0xC3, 0x28, +0x0E, 0x21, 0x19, 0x0B, 0x0D, 0x15, 0x12, 0x30, 0x24, 0x29, 0x38, 0x15, 0x27, 0x38, 0xFE, 0xDB, +0x37, 0x04, 0x12, 0x16, 0x0D, 0x09, 0x09, 0x05, 0x08, 0x19, 0x15, 0x20, 0x21, 0x33, 0x31, 0x1A, +0x2D, 0x27, 0x20, 0x00, 0x00, 0x01, 0x00, 0x8E, 0xFF, 0x09, 0x01, 0x67, 0x00, 0x18, 0x00, 0x14, +0x00, 0x00, 0x57, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x27, 0x37, 0x33, 0x07, +0x16, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x98, 0x0A, 0x15, 0x2D, 0x1F, 0x17, 0x20, 0x10, 0x11, 0x45, +0x52, 0x2E, 0x34, 0x33, 0x27, 0x3E, 0x48, 0xF6, 0x4B, 0x0A, 0x13, 0x0B, 0x0C, 0x0E, 0x07, 0x0E, +0x6C, 0x43, 0x06, 0x35, 0x25, 0x1F, 0x29, 0x1A, 0x0A, 0x00, 0x00, 0x01, 0x00, 0x82, 0xFF, 0x2D, +0x01, 0x72, 0x00, 0x2E, 0x00, 0x18, 0x00, 0x00, 0x57, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, +0x37, 0x17, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0xFA, 0x22, +0x37, 0x1F, 0x15, 0x2B, 0x41, 0x2B, 0x28, 0x1C, 0x2E, 0x1B, 0x0F, 0x0C, 0x0A, 0x0F, 0x08, 0x45, +0x09, 0x24, 0x2E, 0xD3, 0x1E, 0x32, 0x1F, 0x1A, 0x2B, 0x24, 0x1E, 0x0B, 0x2E, 0x06, 0x19, 0x1F, +0x12, 0x0C, 0x0F, 0x0B, 0x0C, 0x33, 0x12, 0x23, 0x17, 0x00, 0x00, 0x01, 0x00, 0x47, 0xFF, 0x15, +0x01, 0xAD, 0xFF, 0xC1, 0x00, 0x0D, 0x00, 0x00, 0x57, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, +0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0xFA, 0x44, 0x61, 0x0E, 0x66, 0x0B, 0x2A, 0x18, 0x18, 0x2A, +0x0B, 0x66, 0x0E, 0x61, 0xEB, 0x55, 0x4B, 0x0C, 0x20, 0x24, 0x24, 0x20, 0x0C, 0x4B, 0x55, 0x00, +0x00, 0x01, 0x00, 0x61, 0xFF, 0x3A, 0x01, 0x93, 0xFF, 0xB0, 0x00, 0x03, 0x00, 0x00, 0x57, 0x35, +0x21, 0x15, 0x61, 0x01, 0x32, 0xC6, 0x76, 0x76, 0x00, 0x01, 0x00, 0x57, 0x00, 0xEA, 0x01, 0x9D, +0x01, 0x60, 0x00, 0x03, 0x00, 0x00, 0x77, 0x35, 0x21, 0x15, 0x57, 0x01, 0x46, 0xEA, 0x76, 0x76, +0xFF, 0xFF, 0x00, 0x2B, 0x02, 0x72, 0x01, 0xC9, 0x03, 0x1C, 0x04, 0x06, 0x02, 0xF2, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x9B, 0x02, 0x76, 0x01, 0x59, 0x03, 0x1C, 0x04, 0x06, 0x02, 0xF5, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x7C, 0x02, 0x48, 0x01, 0x78, 0x03, 0x1E, 0x04, 0x06, 0x02, 0xF7, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x7C, 0x02, 0x47, 0x01, 0x78, 0x03, 0x1E, 0x04, 0x06, 0x02, 0xF8, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x19, 0x02, 0x45, 0x01, 0xDC, 0x03, 0x25, 0x04, 0x06, 0x02, 0xFA, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x3A, 0x02, 0x53, 0x01, 0xBA, 0x03, 0x06, 0x04, 0x06, 0x02, 0xFC, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x3E, 0x02, 0x59, 0x01, 0xB6, 0x03, 0x0C, 0x04, 0x06, 0x02, 0xFD, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x47, 0x02, 0x53, 0x01, 0xAD, 0x02, 0xFF, 0x04, 0x06, 0x02, 0xFF, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x82, 0x02, 0x56, 0x01, 0x73, 0x03, 0x40, 0x04, 0x06, 0x03, 0x00, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x45, 0x02, 0x60, 0x01, 0xB0, 0x02, 0xFA, 0x04, 0x06, 0x03, 0x01, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x52, 0x02, 0x7A, 0x01, 0xA2, 0x02, 0xDF, 0x04, 0x06, 0x03, 0x05, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x8E, 0xFF, 0x09, 0x01, 0x67, 0x00, 0x18, 0x04, 0x06, 0x03, 0x11, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x82, 0xFF, 0x2D, 0x01, 0x72, 0x00, 0x2E, 0x04, 0x06, 0x03, 0x12, 0x00, 0x00, +0x00, 0x02, 0x00, 0x2A, 0x02, 0xF2, 0x01, 0xCB, 0x03, 0x9C, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x00, +0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, 0x35, +0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x01, 0x74, 0x2B, 0x2C, 0x2E, 0x29, 0x2A, 0x2D, +0x2E, 0xFE, 0xE4, 0x2B, 0x2C, 0x2D, 0x2A, 0x2A, 0x2C, 0x2D, 0x02, 0xF2, 0x2D, 0x28, 0x24, 0x31, +0x2D, 0x28, 0x24, 0x31, 0x2D, 0x28, 0x24, 0x31, 0x2D, 0x28, 0x24, 0x31, 0x00, 0x03, 0x00, 0x2A, +0x02, 0xF2, 0x01, 0xCB, 0x04, 0x7D, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x53, 0x27, +0x37, 0x17, 0x01, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x33, 0x22, +0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xA2, 0x25, 0xD1, 0x37, 0xFE, 0xFC, +0x2B, 0x2C, 0x2D, 0x2A, 0x2A, 0x2C, 0x2D, 0xCA, 0x2B, 0x2C, 0x2E, 0x29, 0x2A, 0x2D, 0x2E, 0x03, +0xB9, 0x51, 0x73, 0x75, 0xFE, 0xEA, 0x2D, 0x28, 0x24, 0x31, 0x2D, 0x28, 0x24, 0x31, 0x2D, 0x28, +0x24, 0x31, 0x2D, 0x28, 0x24, 0x31, 0xFF, 0xFF, 0x00, 0x2A, 0x02, 0xF2, 0x01, 0xCB, 0x04, 0x38, +0x06, 0x26, 0x03, 0x23, 0x00, 0x00, 0x00, 0x07, 0x03, 0x3C, 0x00, 0x00, 0x00, 0xBE, 0x00, 0x01, +0x00, 0x9B, 0x02, 0xF4, 0x01, 0x59, 0x03, 0x9A, 0x00, 0x0B, 0x00, 0x00, 0x53, 0x22, 0x26, 0x35, +0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xFA, 0x2E, 0x31, 0x32, 0x2D, 0x2E, 0x31, 0x32, +0x02, 0xF4, 0x2C, 0x27, 0x23, 0x30, 0x2C, 0x27, 0x23, 0x30, 0xFF, 0xFF, 0x00, 0x47, 0x02, 0xF4, +0x01, 0xAE, 0x04, 0x38, 0x04, 0x26, 0x03, 0x26, 0x01, 0x00, 0x02, 0x07, 0x03, 0x3C, 0x00, 0x00, +0x00, 0xBE, 0x00, 0x01, 0x00, 0x76, 0x02, 0xEC, 0x01, 0x7E, 0x03, 0xAF, 0x00, 0x03, 0x00, 0x00, +0x41, 0x27, 0x37, 0x17, 0x01, 0x59, 0xE3, 0x37, 0xD1, 0x02, 0xEC, 0x4E, 0x75, 0x73, 0x00, 0x01, +0x00, 0x76, 0x02, 0xEC, 0x01, 0x7E, 0x03, 0xAF, 0x00, 0x03, 0x00, 0x00, 0x53, 0x27, 0x37, 0x17, +0x9B, 0x25, 0xD1, 0x37, 0x02, 0xEC, 0x50, 0x73, 0x75, 0x00, 0x00, 0x02, 0x00, 0x34, 0x02, 0xF0, +0x01, 0xC1, 0x03, 0xC1, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x27, 0x37, 0x17, 0x05, 0x22, +0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x01, 0x41, 0x43, 0x5E, 0x65, 0xFE, +0xCB, 0x2A, 0x2E, 0x2F, 0x29, 0x29, 0x2F, 0x30, 0x02, 0xF0, 0x2C, 0xA5, 0x49, 0x86, 0x29, 0x24, +0x22, 0x2A, 0x27, 0x25, 0x22, 0x2B, 0x00, 0x02, 0x00, 0x15, 0x02, 0xEF, 0x01, 0xDF, 0x03, 0xC6, +0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, 0x27, 0x37, 0x17, 0x17, 0x27, 0x37, 0x17, 0x49, 0x34, +0x97, 0x4D, 0x2E, 0x32, 0x9D, 0x4D, 0x02, 0xF1, 0x46, 0x8F, 0x62, 0x75, 0x48, 0x8D, 0x66, 0x00, +0x00, 0x01, 0x00, 0x45, 0x02, 0xF2, 0x01, 0xAF, 0x03, 0x95, 0x00, 0x07, 0x00, 0x00, 0x53, 0x27, +0x37, 0x33, 0x17, 0x07, 0x27, 0x33, 0x76, 0x31, 0x88, 0x5A, 0x88, 0x31, 0x93, 0x1E, 0x02, 0xF2, +0x39, 0x6A, 0x6A, 0x39, 0x47, 0x00, 0x00, 0x02, 0x00, 0x2D, 0x02, 0xEE, 0x01, 0xC7, 0x04, 0x42, +0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27, 0x33, 0x37, 0x27, +0x37, 0x17, 0x5A, 0x2D, 0x86, 0x5A, 0x86, 0x2D, 0x95, 0x1E, 0x9A, 0x85, 0x64, 0x5F, 0x02, 0xEE, +0x37, 0x66, 0x66, 0x37, 0x41, 0x41, 0x8A, 0x48, 0xA5, 0x00, 0x00, 0x02, 0x00, 0x08, 0x02, 0xEE, +0x01, 0xF2, 0x04, 0x40, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, +0x27, 0x33, 0x37, 0x27, 0x37, 0x17, 0x35, 0x2D, 0x86, 0x5A, 0x86, 0x2D, 0x95, 0x1E, 0xA5, 0x40, +0x5F, 0x64, 0x02, 0xEE, 0x37, 0x66, 0x66, 0x37, 0x41, 0x41, 0x2C, 0xA4, 0x47, 0x00, 0x00, 0x02, +0x00, 0x42, 0x02, 0xEE, 0x01, 0xB3, 0x04, 0x40, 0x00, 0x07, 0x00, 0x22, 0x00, 0x00, 0x53, 0x27, +0x37, 0x33, 0x17, 0x07, 0x27, 0x33, 0x37, 0x22, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, +0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x14, 0x06, +0x06, 0x74, 0x2D, 0x86, 0x5A, 0x86, 0x2D, 0x95, 0x1E, 0x43, 0x16, 0x29, 0x14, 0x13, 0x18, 0x0A, +0x11, 0x12, 0x03, 0x5C, 0x01, 0x41, 0x32, 0x15, 0x22, 0x16, 0x10, 0x1A, 0x0A, 0x10, 0x0D, 0x03, +0x5C, 0x1B, 0x2D, 0x02, 0xEE, 0x37, 0x66, 0x66, 0x37, 0x41, 0x8B, 0x0B, 0x09, 0x08, 0x08, 0x14, +0x11, 0x05, 0x39, 0x48, 0x0B, 0x0A, 0x06, 0x09, 0x14, 0x11, 0x04, 0x24, 0x3B, 0x23, 0x00, 0x02, +0x00, 0x0E, 0x02, 0xEE, 0x01, 0xE6, 0x04, 0x46, 0x00, 0x07, 0x00, 0x27, 0x00, 0x00, 0x53, 0x27, +0x37, 0x33, 0x17, 0x07, 0x27, 0x33, 0x37, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x35, +0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, +0x06, 0x06, 0x15, 0x14, 0x14, 0x17, 0x3C, 0x2E, 0x87, 0x5A, 0x86, 0x2D, 0x95, 0x1E, 0x88, 0x08, +0x0A, 0x09, 0x11, 0x0B, 0x10, 0x12, 0x0F, 0x13, 0x2B, 0x15, 0x15, 0x15, 0x3D, 0x22, 0x3A, 0x45, +0x1E, 0x11, 0x10, 0x14, 0x01, 0x02, 0xEE, 0x37, 0x66, 0x66, 0x37, 0x41, 0x3D, 0x09, 0x14, 0x0B, +0x0A, 0x12, 0x0B, 0x08, 0x0D, 0x07, 0x09, 0x0A, 0x0C, 0x08, 0x55, 0x0B, 0x10, 0x32, 0x2A, 0x1E, +0x1E, 0x0A, 0x09, 0x10, 0x09, 0x01, 0x04, 0x03, 0x00, 0x01, 0x00, 0x44, 0x02, 0xF3, 0x01, 0xB0, +0x03, 0x96, 0x00, 0x07, 0x00, 0x00, 0x53, 0x27, 0x37, 0x17, 0x23, 0x37, 0x17, 0x07, 0xCA, 0x86, +0x32, 0x93, 0x1E, 0x93, 0x32, 0x86, 0x02, 0xF3, 0x6B, 0x38, 0x46, 0x46, 0x38, 0x6B, 0x00, 0x01, +0x00, 0x47, 0x02, 0xF5, 0x01, 0xAD, 0x03, 0x99, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x22, 0x26, 0x26, +0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0xFA, 0x2D, 0x4A, 0x33, 0x09, +0x66, 0x0A, 0x2A, 0x19, 0x19, 0x2A, 0x0A, 0x66, 0x09, 0x33, 0x49, 0x02, 0xF5, 0x26, 0x45, 0x2D, +0x0C, 0x1A, 0x22, 0x22, 0x1A, 0x0C, 0x2D, 0x45, 0x26, 0x00, 0x00, 0x02, 0x00, 0x47, 0x02, 0xE9, +0x01, 0xAD, 0x04, 0x4A, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x00, 0x53, 0x22, 0x26, 0x27, 0x37, 0x16, +0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x27, 0x27, 0x37, 0x17, 0xFA, 0x44, 0x61, 0x0E, +0x61, 0x0C, 0x2C, 0x1A, 0x19, 0x2D, 0x0C, 0x61, 0x0E, 0x61, 0x46, 0x85, 0x64, 0x5F, 0x02, 0xE9, +0x4B, 0x43, 0x0C, 0x21, 0x19, 0x19, 0x21, 0x0C, 0x42, 0x4C, 0x8F, 0x8A, 0x48, 0xA4, 0x00, 0x02, +0x00, 0x47, 0x02, 0xE9, 0x01, 0xAD, 0x04, 0x4A, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x00, 0x53, 0x22, +0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x27, 0x27, 0x37, 0x17, +0xFA, 0x44, 0x61, 0x0E, 0x61, 0x0C, 0x2D, 0x19, 0x19, 0x2D, 0x0C, 0x61, 0x0E, 0x61, 0x3B, 0x3E, +0x5F, 0x64, 0x02, 0xE9, 0x4C, 0x42, 0x0C, 0x21, 0x19, 0x19, 0x21, 0x0C, 0x42, 0x4C, 0x8F, 0x2E, +0xA4, 0x48, 0x00, 0x02, 0x00, 0x42, 0x02, 0xE9, 0x01, 0xB3, 0x04, 0x41, 0x00, 0x0D, 0x00, 0x28, +0x00, 0x00, 0x53, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, +0x37, 0x22, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, +0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x14, 0x06, 0x06, 0xFA, 0x44, 0x61, 0x0E, 0x61, +0x0C, 0x2D, 0x19, 0x19, 0x2D, 0x0C, 0x61, 0x0E, 0x61, 0x0B, 0x14, 0x26, 0x16, 0x13, 0x18, 0x0A, +0x11, 0x12, 0x03, 0x5C, 0x01, 0x41, 0x32, 0x15, 0x25, 0x15, 0x0F, 0x19, 0x0A, 0x10, 0x0D, 0x03, +0x5C, 0x1B, 0x2F, 0x02, 0xE9, 0x49, 0x41, 0x0C, 0x1F, 0x17, 0x17, 0x1F, 0x0C, 0x41, 0x49, 0xCF, +0x0C, 0x0A, 0x08, 0x0A, 0x15, 0x12, 0x05, 0x3A, 0x49, 0x0D, 0x0A, 0x07, 0x0A, 0x15, 0x12, 0x04, +0x24, 0x3D, 0x23, 0x00, 0x00, 0x02, 0x00, 0x47, 0x02, 0xE9, 0x01, 0xAD, 0x04, 0x4F, 0x00, 0x0D, +0x00, 0x2D, 0x00, 0x00, 0x53, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, +0x06, 0x06, 0x27, 0x26, 0x26, 0x35, 0x36, 0x36, 0x37, 0x36, 0x36, 0x37, 0x34, 0x26, 0x23, 0x22, +0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, +0x16, 0x17, 0xFA, 0x44, 0x61, 0x0E, 0x61, 0x0B, 0x2E, 0x19, 0x19, 0x2E, 0x0B, 0x61, 0x0E, 0x61, +0x5D, 0x08, 0x0B, 0x01, 0x09, 0x0F, 0x0B, 0x10, 0x01, 0x12, 0x10, 0x13, 0x2A, 0x15, 0x16, 0x15, +0x3E, 0x21, 0x3A, 0x46, 0x1E, 0x11, 0x11, 0x14, 0x01, 0x01, 0x02, 0xE9, 0x4C, 0x42, 0x0C, 0x21, +0x19, 0x19, 0x21, 0x0C, 0x42, 0x4C, 0x8D, 0x08, 0x14, 0x0B, 0x0A, 0x13, 0x0A, 0x08, 0x0E, 0x06, +0x09, 0x0A, 0x0B, 0x09, 0x55, 0x0C, 0x0F, 0x31, 0x2B, 0x1D, 0x1F, 0x0A, 0x09, 0x0F, 0x09, 0x02, +0x04, 0x02, 0x00, 0x02, 0x00, 0x76, 0x02, 0xA1, 0x01, 0x7F, 0x03, 0x9C, 0x00, 0x0F, 0x00, 0x1B, +0x00, 0x00, 0x53, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, +0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0xFB, 0x23, +0x3D, 0x25, 0x25, 0x3C, 0x24, 0x23, 0x3C, 0x25, 0x25, 0x3C, 0x23, 0x11, 0x18, 0x19, 0x10, 0x11, +0x18, 0x18, 0x02, 0xA1, 0x22, 0x38, 0x20, 0x24, 0x3B, 0x22, 0x22, 0x3B, 0x24, 0x20, 0x38, 0x22, +0x52, 0x18, 0x10, 0x13, 0x17, 0x17, 0x13, 0x10, 0x18, 0x00, 0x00, 0x01, 0x00, 0x3C, 0x03, 0x00, +0x01, 0xB9, 0x03, 0x8E, 0x00, 0x1A, 0x00, 0x00, 0x41, 0x22, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, +0x06, 0x15, 0x23, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x27, 0x33, +0x14, 0x06, 0x06, 0x01, 0x48, 0x14, 0x28, 0x18, 0x12, 0x19, 0x0A, 0x0E, 0x11, 0x64, 0x49, 0x37, +0x12, 0x23, 0x1B, 0x10, 0x16, 0x09, 0x0D, 0x0F, 0x01, 0x63, 0x1D, 0x32, 0x03, 0x00, 0x0C, 0x0A, +0x09, 0x08, 0x14, 0x12, 0x42, 0x4B, 0x0A, 0x0C, 0x08, 0x08, 0x15, 0x11, 0x26, 0x42, 0x26, 0x00, +0xFF, 0xFF, 0x00, 0x29, 0x03, 0x00, 0x01, 0xCA, 0x04, 0x5A, 0x04, 0x26, 0x03, 0x38, 0xFF, 0x00, +0x02, 0x07, 0x03, 0x23, 0xFF, 0xFF, 0x00, 0xBE, 0xFF, 0xFF, 0x00, 0x3B, 0x03, 0x00, 0x01, 0xB8, +0x04, 0x6D, 0x04, 0x26, 0x03, 0x38, 0xFF, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0x06, 0x00, 0xBE, +0xFF, 0xFF, 0x00, 0x3B, 0x03, 0x00, 0x01, 0xB8, 0x04, 0x38, 0x04, 0x26, 0x03, 0x38, 0xFF, 0x00, +0x00, 0x07, 0x03, 0x3C, 0xFF, 0xFF, 0x00, 0xBE, 0x00, 0x01, 0x00, 0x47, 0x03, 0x15, 0x01, 0xAE, +0x03, 0x7A, 0x00, 0x03, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x47, 0x01, 0x67, 0x03, 0x15, 0x65, +0x65, 0x00, 0xFF, 0xFF, 0x00, 0x29, 0x03, 0x15, 0x01, 0xCA, 0x04, 0x5A, 0x04, 0x26, 0x03, 0x3C, +0xFF, 0x00, 0x02, 0x07, 0x03, 0x23, 0xFF, 0xFF, 0x00, 0xBE, 0xFF, 0xFF, 0x00, 0x46, 0x03, 0x15, +0x01, 0xAD, 0x04, 0x6D, 0x04, 0x26, 0x03, 0x3C, 0xFF, 0x00, 0x00, 0x07, 0x03, 0x28, 0x00, 0x03, +0x00, 0xBE, 0xFF, 0xFF, 0x00, 0x46, 0x03, 0x15, 0x01, 0xAD, 0x04, 0x6D, 0x04, 0x26, 0x03, 0x3C, +0xFF, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0x06, 0x00, 0xBE, 0x00, 0x01, 0x00, 0x80, 0x02, 0xEA, +0x01, 0x75, 0x03, 0xD4, 0x00, 0x1F, 0x00, 0x00, 0x53, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, +0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, +0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0xE1, 0x07, 0x0C, 0x0D, 0x12, 0x0E, 0x10, 0x11, +0x0D, 0x14, 0x2C, 0x16, 0x17, 0x16, 0x41, 0x22, 0x39, 0x43, 0x1C, 0x10, 0x10, 0x15, 0x02, 0x01, +0x02, 0xEA, 0x09, 0x16, 0x0C, 0x0C, 0x17, 0x0D, 0x09, 0x0E, 0x0A, 0x09, 0x09, 0x0C, 0x0A, 0x55, +0x0C, 0x11, 0x31, 0x29, 0x21, 0x22, 0x0A, 0x0A, 0x12, 0x0A, 0x04, 0x06, 0x04, 0x00, 0x00, 0x02, +0x00, 0x17, 0x02, 0xE4, 0x01, 0xDD, 0x03, 0xC0, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x27, +0x37, 0x17, 0x05, 0x27, 0x37, 0x17, 0x01, 0xA6, 0xAA, 0x53, 0x8E, 0xFE, 0xEB, 0xB1, 0x52, 0x95, +0x02, 0xE7, 0x7B, 0x5E, 0x98, 0x44, 0x78, 0x62, 0x96, 0x00, 0x00, 0x01, 0x00, 0x47, 0x02, 0xF6, +0x01, 0xAD, 0x03, 0x99, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, +0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0xAD, 0x66, 0x09, 0x33, 0x4A, 0x2D, 0x2E, 0x49, 0x33, +0x09, 0x66, 0x0A, 0x2A, 0x19, 0x19, 0x2A, 0x02, 0xF6, 0x0C, 0x2D, 0x44, 0x26, 0x26, 0x44, 0x2D, +0x0C, 0x19, 0x22, 0x22, 0x00, 0x01, 0x00, 0x8F, 0x01, 0xA4, 0x01, 0x66, 0x02, 0x8A, 0x00, 0x08, +0x00, 0x00, 0x53, 0x35, 0x32, 0x36, 0x35, 0x33, 0x14, 0x06, 0x06, 0x8F, 0x2D, 0x2C, 0x7E, 0x33, +0x5F, 0x01, 0xA4, 0x69, 0x3F, 0x3E, 0x43, 0x68, 0x3B, 0x00, 0x00, 0x01, 0x00, 0x9B, 0xFE, 0xDA, +0x01, 0x59, 0xFF, 0xD8, 0x00, 0x15, 0x00, 0x00, 0x53, 0x27, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x27, +0x26, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x02, 0xC3, 0x28, 0x0E, 0x21, +0x19, 0x0B, 0x0D, 0x15, 0x12, 0x2E, 0x23, 0x2A, 0x3A, 0x15, 0x27, 0x38, 0xFE, 0xDA, 0x37, 0x05, +0x11, 0x18, 0x0C, 0x08, 0x09, 0x06, 0x08, 0x19, 0x14, 0x20, 0x21, 0x31, 0x30, 0x1D, 0x31, 0x27, +0x1D, 0x00, 0x00, 0x01, 0x00, 0x8E, 0xFF, 0x09, 0x01, 0x66, 0x00, 0x18, 0x00, 0x14, 0x00, 0x00, +0x57, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x27, 0x37, 0x33, 0x07, 0x16, 0x16, +0x15, 0x14, 0x0E, 0x02, 0x97, 0x09, 0x14, 0x2D, 0x20, 0x17, 0x20, 0x10, 0x12, 0x45, 0x52, 0x2D, +0x34, 0x32, 0x26, 0x3E, 0x48, 0xF6, 0x4B, 0x0A, 0x13, 0x0B, 0x0C, 0x0E, 0x07, 0x0E, 0x6C, 0x43, +0x06, 0x35, 0x25, 0x1F, 0x29, 0x1A, 0x0A, 0x00, 0x00, 0x01, 0x00, 0x82, 0xFF, 0x2D, 0x01, 0x72, +0x00, 0x32, 0x00, 0x17, 0x00, 0x00, 0x57, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x37, 0x17, +0x0E, 0x02, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0xFA, 0x22, 0x37, 0x1F, +0x16, 0x2C, 0x3E, 0x26, 0x25, 0x19, 0x2B, 0x18, 0x0E, 0x0D, 0x0A, 0x0F, 0x08, 0x45, 0x0E, 0x3F, +0xD3, 0x1B, 0x31, 0x1F, 0x19, 0x2F, 0x28, 0x1F, 0x0B, 0x32, 0x04, 0x19, 0x1F, 0x11, 0x0D, 0x12, +0x0C, 0x0C, 0x33, 0x21, 0x2B, 0x00, 0xFF, 0xFF, 0x00, 0x2C, 0x01, 0xB4, 0x00, 0xE5, 0x02, 0xBC, +0x06, 0x06, 0x02, 0xA0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0x01, 0xB0, 0x00, 0xFA, 0x02, 0xF1, +0x06, 0x06, 0x02, 0x99, 0x00, 0x00, 0x00, 0x01, 0x00, 0x27, 0x02, 0x08, 0x00, 0xA0, 0x02, 0xF2, +0x00, 0x0F, 0x00, 0x00, 0x53, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x15, 0x22, 0x06, +0x15, 0x14, 0x16, 0x33, 0xA0, 0x1F, 0x37, 0x23, 0x21, 0x37, 0x21, 0x0F, 0x15, 0x15, 0x0F, 0x02, +0x08, 0x20, 0x34, 0x20, 0x21, 0x34, 0x20, 0x01, 0x52, 0x13, 0x11, 0x0F, 0x14, 0x00, 0x00, 0x01, +0x00, 0x34, 0x02, 0x08, 0x00, 0xAD, 0x02, 0xF2, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x35, 0x32, 0x36, +0x35, 0x34, 0x26, 0x23, 0x37, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x34, 0x10, 0x14, 0x14, 0x10, +0x01, 0x20, 0x37, 0x21, 0x22, 0x36, 0x02, 0x08, 0x51, 0x14, 0x0F, 0x10, 0x14, 0x52, 0x01, 0x20, +0x34, 0x21, 0x1F, 0x35, 0x20, 0x00, 0x00, 0x01, 0x00, 0x3F, 0xFF, 0x6D, 0x00, 0xBE, 0x00, 0xC5, +0x00, 0x03, 0x00, 0x00, 0x57, 0x11, 0x33, 0x11, 0x3F, 0x7F, 0x93, 0x01, 0x58, 0xFE, 0xA8, 0x00, +0x00, 0x01, 0x00, 0x43, 0x01, 0x70, 0x00, 0xA4, 0x02, 0xC8, 0x00, 0x03, 0x00, 0x00, 0x53, 0x11, +0x33, 0x11, 0x43, 0x61, 0x01, 0x70, 0x01, 0x58, 0xFE, 0xA8, 0x00, 0x00 +}; + +unsigned char lexend_regular[] = +{ +0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, 0x47, 0x44, 0x45, 0x46, +0x4F, 0x44, 0x4C, 0x5D, 0x00, 0x00, 0x02, 0x28, 0x00, 0x00, 0x01, 0x30, 0x47, 0x50, 0x4F, 0x53, +0xD6, 0xD7, 0x6D, 0xD3, 0x00, 0x00, 0x4F, 0x8C, 0x00, 0x00, 0x4F, 0xF4, 0x47, 0x53, 0x55, 0x42, +0xD0, 0x82, 0x6E, 0x2A, 0x00, 0x00, 0x18, 0x74, 0x00, 0x00, 0x0C, 0xF8, 0x4F, 0x53, 0x2F, 0x32, +0x82, 0xB4, 0x57, 0x6E, 0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x00, 0x60, 0x53, 0x54, 0x41, 0x54, +0x79, 0x94, 0x6C, 0xDD, 0x00, 0x00, 0x01, 0x60, 0x00, 0x00, 0x00, 0x2E, 0x63, 0x6D, 0x61, 0x70, +0x77, 0x18, 0x90, 0xFD, 0x00, 0x00, 0x10, 0x5C, 0x00, 0x00, 0x08, 0x16, 0x67, 0x61, 0x73, 0x70, +0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0x08, 0x67, 0x6C, 0x79, 0x66, +0x7D, 0xE1, 0x13, 0x31, 0x00, 0x00, 0x9F, 0x80, 0x00, 0x00, 0x93, 0x1C, 0x68, 0x65, 0x61, 0x64, +0x1B, 0x0F, 0x86, 0xE6, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, 0x65, 0x61, +0x08, 0x83, 0x06, 0x17, 0x00, 0x00, 0x01, 0x3C, 0x00, 0x00, 0x00, 0x24, 0x68, 0x6D, 0x74, 0x78, +0xD8, 0xEC, 0xAE, 0x29, 0x00, 0x00, 0x25, 0x6C, 0x00, 0x00, 0x0D, 0x32, 0x6C, 0x6F, 0x63, 0x61, +0xC1, 0xFB, 0xE5, 0x75, 0x00, 0x00, 0x09, 0xC0, 0x00, 0x00, 0x06, 0x9C, 0x6D, 0x61, 0x78, 0x70, +0x03, 0x61, 0x00, 0xD2, 0x00, 0x00, 0x01, 0x1C, 0x00, 0x00, 0x00, 0x20, 0x6E, 0x61, 0x6D, 0x65, +0xC8, 0xF4, 0xFA, 0x6F, 0x00, 0x00, 0x03, 0x58, 0x00, 0x00, 0x06, 0x66, 0x70, 0x6F, 0x73, 0x74, +0x0C, 0x72, 0x98, 0x72, 0x00, 0x00, 0x32, 0xA0, 0x00, 0x00, 0x1C, 0xEB, 0x70, 0x72, 0x65, 0x70, +0x68, 0x06, 0x8C, 0x85, 0x00, 0x00, 0x01, 0x0C, 0x00, 0x00, 0x00, 0x07, 0xB8, 0x01, 0xFF, 0x85, +0xB0, 0x04, 0x8D, 0x00, 0x00, 0x01, 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x01, 0x00, 0x00, +0x03, 0x4D, 0x00, 0x64, 0x00, 0x07, 0x00, 0x6C, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, +0x03, 0xE8, 0xFF, 0x06, 0x00, 0x00, 0x05, 0x9B, 0xFF, 0x2F, 0xFE, 0x29, 0x05, 0x69, 0x00, 0x01, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x4C, +0x00, 0x01, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x01, 0x00, 0x00, +0x00, 0x1C, 0x00, 0x02, 0x77, 0x67, 0x68, 0x74, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x03, +0x00, 0x00, 0x00, 0x02, 0x01, 0x05, 0x01, 0x90, 0x00, 0x00, 0x02, 0xBC, 0x00, 0x00, 0x00, 0x00, +0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x01, 0xCB, 0xD6, 0x29, 0x4B, 0x74, 0x5F, 0x0F, 0x3C, 0xF5, +0x00, 0x03, 0x03, 0xE8, 0x00, 0x00, 0x00, 0x00, 0xDA, 0x36, 0x6A, 0x60, 0x00, 0x00, 0x00, 0x00, +0xDD, 0x29, 0xD6, 0x95, 0xFF, 0x2F, 0xFF, 0x0B, 0x05, 0x69, 0x04, 0x38, 0x00, 0x00, 0x00, 0x06, +0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x02, 0x4C, 0x01, 0x90, 0x00, 0x05, +0x00, 0x00, 0x02, 0x8A, 0x02, 0x58, 0x00, 0x00, 0x00, 0x4B, 0x02, 0x8A, 0x02, 0x58, 0x00, 0x00, +0x01, 0x5E, 0x00, 0x32, 0x01, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xA0, 0x00, 0x00, 0xFF, 0x40, 0x00, 0x20, 0x5B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x4E, 0x4F, 0x4E, 0x45, 0x00, 0xC0, 0x00, 0x0D, 0xFB, 0x02, 0x03, 0xE8, 0xFF, 0x06, +0x00, 0x00, 0x04, 0xB0, 0x01, 0x86, 0x20, 0x00, 0x01, 0x93, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0D, +0x02, 0xBC, 0x00, 0x00, 0x00, 0x20, 0x00, 0x03, 0x00, 0x01, 0x00, 0x02, 0x00, 0xBA, 0x00, 0x00, +0x00, 0x54, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, +0x00, 0x2E, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x10, 0x00, 0x01, 0x00, 0x02, 0x03, 0x0D, +0x03, 0x43, 0x00, 0x02, 0x00, 0x03, 0x02, 0xEA, 0x02, 0xFA, 0x00, 0x00, 0x02, 0xFC, 0x03, 0x0C, +0x00, 0x11, 0x03, 0x23, 0x03, 0x42, 0x00, 0x22, 0x00, 0x01, 0x00, 0x08, 0x03, 0x0E, 0x03, 0x0F, +0x03, 0x10, 0x03, 0x11, 0x03, 0x13, 0x03, 0x14, 0x03, 0x44, 0x03, 0x45, 0x00, 0x12, 0x00, 0x07, +0x00, 0x5E, 0x00, 0x50, 0x00, 0x42, 0x00, 0x34, 0x00, 0x2C, 0x00, 0x24, 0x00, 0x1C, 0x00, 0x02, +0x00, 0x01, 0x02, 0x19, 0x02, 0x1F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x01, 0x42, +0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x01, 0x48, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x01, 0xB8, +0x00, 0x02, 0x00, 0x0A, 0x00, 0x06, 0x00, 0x01, 0x02, 0xB3, 0x00, 0x01, 0x01, 0x5A, 0x00, 0x02, +0x00, 0x0A, 0x00, 0x06, 0x00, 0x01, 0x03, 0x5D, 0x00, 0x01, 0x01, 0xAF, 0x00, 0x02, 0x00, 0x0A, +0x00, 0x06, 0x00, 0x01, 0x02, 0xAE, 0x00, 0x01, 0x01, 0x57, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, +0x01, 0x7F, 0x00, 0x02, 0x00, 0x13, 0x00, 0x01, 0x00, 0x7A, 0x00, 0x01, 0x00, 0x7C, 0x00, 0x7E, +0x00, 0x01, 0x00, 0x80, 0x01, 0x2B, 0x00, 0x01, 0x01, 0x2D, 0x01, 0x48, 0x00, 0x01, 0x01, 0x4A, +0x01, 0x68, 0x00, 0x01, 0x01, 0x6A, 0x01, 0x80, 0x00, 0x01, 0x01, 0x82, 0x01, 0x84, 0x00, 0x01, +0x01, 0x86, 0x02, 0x18, 0x00, 0x01, 0x02, 0x19, 0x02, 0x1F, 0x00, 0x02, 0x02, 0xB5, 0x02, 0xB5, +0x00, 0x01, 0x02, 0xB7, 0x02, 0xB7, 0x00, 0x01, 0x02, 0xB9, 0x02, 0xB9, 0x00, 0x01, 0x02, 0xBE, +0x02, 0xBE, 0x00, 0x01, 0x02, 0xC4, 0x02, 0xC6, 0x00, 0x01, 0x02, 0xCA, 0x02, 0xCA, 0x00, 0x01, +0x02, 0xDE, 0x02, 0xDE, 0x00, 0x01, 0x02, 0xEA, 0x02, 0xFA, 0x00, 0x03, 0x02, 0xFC, 0x03, 0x15, +0x00, 0x03, 0x03, 0x23, 0x03, 0x46, 0x00, 0x03, 0x00, 0x00, 0x00, 0x21, 0x01, 0x92, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x00, 0x00, 0x00, 0xA2, 0x04, 0x32, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x00, 0x01, 0x00, 0x16, 0x04, 0x1C, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x02, 0x00, 0x0E, +0x04, 0x0E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x03, 0x00, 0x3A, 0x03, 0xD4, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x00, 0x04, 0x00, 0x26, 0x03, 0xAE, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x00, 0x05, 0x00, 0x1A, 0x03, 0x94, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x06, 0x00, 0x24, +0x03, 0x70, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x08, 0x00, 0x0C, 0x03, 0x64, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x00, 0x09, 0x00, 0x44, 0x03, 0x20, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x00, 0x0B, 0x00, 0x2C, 0x02, 0xF4, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x0C, 0x00, 0x2C, +0x02, 0xF4, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x0D, 0x01, 0x22, 0x01, 0xD2, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x00, 0x0E, 0x00, 0x36, 0x01, 0x9C, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x00, 0x19, 0x00, 0x14, 0x01, 0x88, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x00, 0x00, 0x0C, +0x01, 0x7C, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x02, 0x00, 0x08, 0x01, 0x74, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x01, 0x03, 0x00, 0x14, 0x01, 0x60, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x01, 0x04, 0x00, 0x0A, 0x01, 0x56, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x05, 0x00, 0x0E, +0x04, 0x0E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x06, 0x00, 0x0C, 0x01, 0x4A, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x01, 0x07, 0x00, 0x10, 0x01, 0x3A, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x01, 0x08, 0x00, 0x08, 0x01, 0x32, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x09, 0x00, 0x12, +0x01, 0x20, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x0A, 0x00, 0x0A, 0x01, 0x16, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x01, 0x0B, 0x00, 0x1E, 0x00, 0xF8, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x01, 0x0C, 0x00, 0x2A, 0x00, 0xCE, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x0D, 0x00, 0x20, +0x00, 0xAE, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x0E, 0x00, 0x24, 0x03, 0x70, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x01, 0x0F, 0x00, 0x22, 0x00, 0x8C, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x01, 0x10, 0x00, 0x26, 0x00, 0x66, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x11, 0x00, 0x1E, +0x00, 0x48, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x12, 0x00, 0x28, 0x00, 0x20, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x01, 0x13, 0x00, 0x20, 0x00, 0x00, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, +0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, +0x00, 0x42, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x63, 0x00, 0x6B, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, +0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, +0x00, 0x45, 0x00, 0x78, 0x00, 0x74, 0x00, 0x72, 0x00, 0x61, 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6C, +0x00, 0x64, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x44, +0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, +0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x44, 0x00, 0x65, +0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, 0x00, 0x53, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x42, +0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, +0x00, 0x64, 0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, 0x00, 0x4D, 0x00, 0x65, +0x00, 0x64, 0x00, 0x69, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, +0x00, 0x6E, 0x00, 0x64, 0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, 0x00, 0x4C, +0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, +0x00, 0x6E, 0x00, 0x64, 0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, 0x00, 0x45, +0x00, 0x78, 0x00, 0x74, 0x00, 0x72, 0x00, 0x61, 0x00, 0x4C, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, +0x00, 0x74, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x44, +0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x6E, +0x00, 0x42, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x63, 0x00, 0x6B, 0x00, 0x45, 0x00, 0x78, 0x00, 0x74, +0x00, 0x72, 0x00, 0x61, 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x42, 0x00, 0x6F, +0x00, 0x6C, 0x00, 0x64, 0x00, 0x53, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x42, 0x00, 0x6F, +0x00, 0x6C, 0x00, 0x64, 0x00, 0x4D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x69, 0x00, 0x75, 0x00, 0x6D, +0x00, 0x4C, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x45, 0x00, 0x78, 0x00, 0x74, +0x00, 0x72, 0x00, 0x61, 0x00, 0x4C, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x54, +0x00, 0x68, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x57, 0x00, 0x65, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, +0x00, 0x74, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x44, +0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x73, +0x00, 0x3A, 0x00, 0x2F, 0x00, 0x2F, 0x00, 0x73, 0x00, 0x63, 0x00, 0x72, 0x00, 0x69, 0x00, 0x70, +0x00, 0x74, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x2E, 0x00, 0x6F, +0x00, 0x72, 0x00, 0x67, 0x00, 0x2F, 0x00, 0x4F, 0x00, 0x46, 0x00, 0x4C, 0x00, 0x54, 0x00, 0x68, +0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, +0x00, 0x53, 0x00, 0x6F, 0x00, 0x66, 0x00, 0x74, 0x00, 0x77, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, +0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, +0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, +0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x53, +0x00, 0x49, 0x00, 0x4C, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x70, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, +0x00, 0x46, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x4C, 0x00, 0x69, 0x00, 0x63, +0x00, 0x65, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x56, 0x00, 0x65, +0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, +0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, +0x00, 0x6C, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, +0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x76, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6C, +0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, +0x00, 0x68, 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x46, 0x00, 0x41, 0x00, 0x51, 0x00, 0x20, +0x00, 0x61, 0x00, 0x74, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, +0x00, 0x73, 0x00, 0x3A, 0x00, 0x2F, 0x00, 0x2F, 0x00, 0x73, 0x00, 0x63, 0x00, 0x72, 0x00, 0x69, +0x00, 0x70, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x2E, +0x00, 0x6F, 0x00, 0x72, 0x00, 0x67, 0x00, 0x2F, 0x00, 0x4F, 0x00, 0x46, 0x00, 0x4C, 0x00, 0x68, +0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x2F, 0x00, 0x2F, 0x00, 0x77, +0x00, 0x77, 0x00, 0x77, 0x00, 0x2E, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, +0x00, 0x64, 0x00, 0x2E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6E, +0x00, 0x6E, 0x00, 0x69, 0x00, 0x65, 0x00, 0x20, 0x00, 0x53, 0x00, 0x68, 0x00, 0x61, 0x00, 0x76, +0x00, 0x65, 0x00, 0x72, 0x00, 0x2D, 0x00, 0x54, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x70, +0x00, 0x2C, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x73, +0x00, 0x20, 0x00, 0x4A, 0x00, 0x6F, 0x00, 0x63, 0x00, 0x6B, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x4C, +0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, +0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, +0x00, 0x52, 0x00, 0x65, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, 0x00, 0x56, +0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x31, +0x00, 0x2E, 0x00, 0x30, 0x00, 0x30, 0x00, 0x37, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, +0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x20, +0x00, 0x52, 0x00, 0x65, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, 0x00, 0x31, +0x00, 0x2E, 0x00, 0x30, 0x00, 0x30, 0x00, 0x37, 0x00, 0x3B, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x4E, +0x00, 0x45, 0x00, 0x3B, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, +0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x2D, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, +0x00, 0x75, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, 0x00, 0x75, +0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, +0x00, 0x64, 0x00, 0x20, 0x00, 0x44, 0x00, 0x65, 0x00, 0x63, 0x00, 0x61, 0x00, 0x43, 0x00, 0x6F, +0x00, 0x70, 0x00, 0x79, 0x00, 0x72, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x20, +0x00, 0x32, 0x00, 0x30, 0x00, 0x31, 0x00, 0x39, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, +0x00, 0x20, 0x00, 0x4C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, +0x00, 0x50, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6A, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 0x20, +0x00, 0x41, 0x00, 0x75, 0x00, 0x74, 0x00, 0x68, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, +0x00, 0x28, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x2F, +0x00, 0x2F, 0x00, 0x67, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x75, 0x00, 0x62, 0x00, 0x2E, +0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x2F, 0x00, 0x67, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x67, +0x00, 0x6C, 0x00, 0x65, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x73, 0x00, 0x2F, +0x00, 0x6C, 0x00, 0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x29, 0x00, 0x00, +0x00, 0x00, 0x00, 0x36, 0x00, 0x5F, 0x00, 0x6A, 0x00, 0x75, 0x00, 0x80, 0x00, 0x8E, 0x00, 0x99, +0x00, 0xA4, 0x00, 0xAF, 0x00, 0xBA, 0x00, 0xC5, 0x00, 0xD1, 0x00, 0xDF, 0x00, 0xEB, 0x00, 0xF7, +0x01, 0x02, 0x01, 0x0D, 0x01, 0x18, 0x01, 0x23, 0x01, 0x2E, 0x01, 0x39, 0x01, 0x44, 0x01, 0x4F, +0x01, 0x5B, 0x01, 0x66, 0x01, 0x75, 0x01, 0x80, 0x01, 0xA3, 0x01, 0xAF, 0x01, 0xEA, 0x02, 0x22, +0x02, 0x2E, 0x02, 0x3A, 0x02, 0x45, 0x02, 0x54, 0x02, 0x60, 0x02, 0x6C, 0x02, 0x97, 0x02, 0xA3, +0x02, 0xB3, 0x02, 0xE5, 0x02, 0xF0, 0x02, 0xF8, 0x03, 0x03, 0x03, 0x0E, 0x03, 0x1A, 0x03, 0x2A, +0x03, 0x43, 0x03, 0x4E, 0x03, 0x59, 0x03, 0x64, 0x03, 0x72, 0x03, 0x7D, 0x03, 0x89, 0x03, 0x97, +0x03, 0xA2, 0x03, 0xAD, 0x03, 0xB8, 0x03, 0xC3, 0x03, 0xCE, 0x03, 0xD9, 0x03, 0xE4, 0x03, 0xEF, +0x03, 0xFA, 0x04, 0x05, 0x04, 0x10, 0x04, 0x1F, 0x04, 0x2E, 0x04, 0x3A, 0x04, 0x45, 0x04, 0x5F, +0x04, 0xA2, 0x04, 0xAE, 0x04, 0xBA, 0x04, 0xC6, 0x04, 0xD2, 0x04, 0xDE, 0x04, 0xEA, 0x05, 0x04, +0x05, 0x30, 0x05, 0x3C, 0x05, 0x48, 0x05, 0x54, 0x05, 0x69, 0x05, 0x75, 0x05, 0x80, 0x05, 0x8B, +0x05, 0x96, 0x05, 0xA1, 0x05, 0xAC, 0x05, 0xB7, 0x05, 0xC2, 0x05, 0xCD, 0x05, 0xD8, 0x05, 0xE3, +0x05, 0xEE, 0x05, 0xF9, 0x06, 0x04, 0x06, 0x0F, 0x06, 0x1A, 0x06, 0x44, 0x06, 0x50, 0x06, 0x6E, +0x06, 0x79, 0x06, 0x88, 0x06, 0x94, 0x06, 0x9F, 0x06, 0xAB, 0x06, 0xB6, 0x06, 0xC2, 0x06, 0xCD, +0x06, 0xD9, 0x06, 0xE4, 0x06, 0xFC, 0x07, 0x23, 0x07, 0x2F, 0x07, 0x56, 0x07, 0x62, 0x07, 0x6E, +0x07, 0x7A, 0x07, 0x86, 0x07, 0x92, 0x07, 0x9E, 0x07, 0xCD, 0x07, 0xD9, 0x07, 0xE5, 0x07, 0xF1, +0x08, 0x26, 0x08, 0x60, 0x08, 0x6C, 0x08, 0x78, 0x08, 0x84, 0x08, 0x90, 0x08, 0x9C, 0x08, 0xAC, +0x08, 0xB8, 0x08, 0xC4, 0x08, 0xD0, 0x08, 0xDB, 0x08, 0xE7, 0x08, 0xF7, 0x09, 0x07, 0x09, 0x13, +0x09, 0x1F, 0x09, 0x2B, 0x09, 0x7A, 0x09, 0x86, 0x09, 0x92, 0x09, 0x9E, 0x09, 0xAA, 0x09, 0xB6, +0x09, 0xC2, 0x09, 0xCE, 0x09, 0xDA, 0x09, 0xEA, 0x09, 0xFA, 0x0A, 0x54, 0x0A, 0x96, 0x0A, 0xA2, +0x0A, 0xAE, 0x0A, 0xBE, 0x0A, 0xCE, 0x0A, 0xDE, 0x0B, 0x11, 0x0B, 0x37, 0x0B, 0x5E, 0x0B, 0xA1, +0x0B, 0xD0, 0x0B, 0xDB, 0x0B, 0xE6, 0x0B, 0xF1, 0x0B, 0xFC, 0x0C, 0x07, 0x0C, 0x12, 0x0C, 0x1D, +0x0C, 0x6B, 0x0C, 0x76, 0x0C, 0x81, 0x0C, 0x8C, 0x0C, 0x9B, 0x0C, 0xA6, 0x0C, 0xB1, 0x0C, 0xBC, +0x0C, 0xC7, 0x0C, 0xD2, 0x0C, 0xE0, 0x0D, 0x38, 0x0D, 0x76, 0x0D, 0x87, 0x0D, 0x9F, 0x0D, 0xAA, +0x0D, 0xB5, 0x0D, 0xC0, 0x0D, 0xCB, 0x0D, 0xD6, 0x0D, 0xFA, 0x0E, 0x06, 0x0E, 0x11, 0x0E, 0x1C, +0x0E, 0x27, 0x0E, 0x32, 0x0E, 0x3D, 0x0E, 0x48, 0x0E, 0x53, 0x0E, 0x5E, 0x0E, 0x8E, 0x0E, 0x9A, +0x0E, 0xA5, 0x0E, 0xB0, 0x0E, 0xBB, 0x0E, 0xC6, 0x0E, 0xD2, 0x0E, 0xDD, 0x0E, 0xE8, 0x0E, 0xF7, +0x0F, 0x3B, 0x0F, 0x46, 0x0F, 0x51, 0x0F, 0x60, 0x0F, 0x81, 0x0F, 0xBB, 0x0F, 0xC7, 0x0F, 0xD3, +0x0F, 0xDF, 0x0F, 0xEB, 0x10, 0x0E, 0x10, 0x29, 0x10, 0x34, 0x10, 0x3F, 0x10, 0x4A, 0x10, 0x55, +0x10, 0x60, 0x10, 0x6B, 0x10, 0x76, 0x10, 0x81, 0x10, 0x8C, 0x10, 0xA5, 0x10, 0xB0, 0x10, 0xBB, +0x10, 0xC6, 0x10, 0xD1, 0x10, 0xE4, 0x10, 0xF3, 0x10, 0xFF, 0x11, 0x0A, 0x11, 0x15, 0x11, 0x20, +0x11, 0x2B, 0x11, 0x37, 0x11, 0x42, 0x11, 0x4D, 0x11, 0x58, 0x11, 0x63, 0x11, 0x6E, 0x11, 0x79, +0x11, 0x84, 0x11, 0x8F, 0x11, 0x9B, 0x11, 0xA6, 0x11, 0xCA, 0x11, 0xD6, 0x11, 0xE2, 0x11, 0xEE, +0x12, 0x2B, 0x12, 0x36, 0x12, 0x41, 0x12, 0x4C, 0x12, 0x5A, 0x12, 0x65, 0x12, 0x70, 0x12, 0x7B, +0x12, 0x86, 0x12, 0x91, 0x12, 0x9D, 0x12, 0xAB, 0x12, 0xB6, 0x12, 0xC1, 0x12, 0xCC, 0x12, 0xD7, +0x12, 0xE2, 0x12, 0xED, 0x12, 0xF8, 0x13, 0x03, 0x13, 0x0E, 0x13, 0x19, 0x13, 0x25, 0x13, 0x30, +0x13, 0x3F, 0x13, 0x4A, 0x13, 0xC0, 0x13, 0xCC, 0x14, 0x09, 0x14, 0x3B, 0x14, 0x46, 0x14, 0x51, +0x14, 0x5C, 0x14, 0x6A, 0x14, 0x75, 0x14, 0x80, 0x14, 0xBC, 0x15, 0x0E, 0x15, 0x1A, 0x15, 0x5E, +0x15, 0x69, 0x15, 0x74, 0x15, 0x84, 0x15, 0xC0, 0x15, 0xCB, 0x15, 0xD6, 0x15, 0xE1, 0x15, 0xEF, +0x15, 0xFA, 0x16, 0x05, 0x16, 0x13, 0x16, 0x1E, 0x16, 0x29, 0x16, 0x34, 0x16, 0x3F, 0x16, 0x4A, +0x16, 0x55, 0x16, 0x60, 0x16, 0x6B, 0x16, 0x76, 0x16, 0x81, 0x16, 0x8C, 0x16, 0x97, 0x16, 0xA2, +0x16, 0xFC, 0x17, 0x07, 0x17, 0x41, 0x17, 0x69, 0x17, 0xBB, 0x17, 0xC6, 0x17, 0xD1, 0x17, 0xDC, +0x17, 0xE7, 0x17, 0xF2, 0x17, 0xFD, 0x18, 0x29, 0x18, 0x5C, 0x18, 0x67, 0x18, 0x72, 0x18, 0x7D, +0x18, 0x99, 0x18, 0xA5, 0x18, 0xB1, 0x18, 0xBD, 0x18, 0xC9, 0x18, 0xD5, 0x18, 0xE1, 0x18, 0xED, +0x18, 0xF9, 0x19, 0x05, 0x19, 0x10, 0x19, 0x1C, 0x19, 0x28, 0x19, 0x34, 0x19, 0x40, 0x19, 0x4C, +0x19, 0x5C, 0x19, 0x68, 0x19, 0x8F, 0x19, 0xA6, 0x19, 0xB1, 0x19, 0xCD, 0x19, 0xD8, 0x19, 0xF4, +0x1A, 0x00, 0x1A, 0x0B, 0x1A, 0x16, 0x1A, 0x21, 0x1A, 0x2D, 0x1A, 0x38, 0x1A, 0x44, 0x1A, 0x4F, +0x1A, 0x64, 0x1A, 0xAA, 0x1A, 0xB6, 0x1A, 0xE1, 0x1A, 0xEC, 0x1A, 0xF7, 0x1B, 0x02, 0x1B, 0x0D, +0x1B, 0x18, 0x1B, 0x23, 0x1B, 0x57, 0x1B, 0x63, 0x1B, 0x6E, 0x1B, 0x79, 0x1B, 0xAA, 0x1B, 0xDE, +0x1B, 0xE9, 0x1B, 0xF4, 0x1B, 0xFF, 0x1C, 0x0A, 0x1C, 0x15, 0x1C, 0x23, 0x1C, 0x2E, 0x1C, 0x39, +0x1C, 0x44, 0x1C, 0x4F, 0x1C, 0x5A, 0x1C, 0x69, 0x1C, 0x78, 0x1C, 0x83, 0x1C, 0x8E, 0x1C, 0x99, +0x1C, 0xDF, 0x1C, 0xEA, 0x1C, 0xF5, 0x1D, 0x00, 0x1D, 0x0B, 0x1D, 0x16, 0x1D, 0x21, 0x1D, 0x2C, +0x1D, 0x37, 0x1D, 0x42, 0x1D, 0x4D, 0x1D, 0x9F, 0x1D, 0xDB, 0x1D, 0xE6, 0x1D, 0xF1, 0x1D, 0xFC, +0x1E, 0x07, 0x1E, 0x16, 0x1E, 0x81, 0x1E, 0xBC, 0x1E, 0xF9, 0x1F, 0x36, 0x1F, 0x59, 0x1F, 0x64, +0x1F, 0x6F, 0x1F, 0x7A, 0x1F, 0x85, 0x1F, 0x90, 0x1F, 0x9B, 0x1F, 0xA6, 0x1F, 0xFB, 0x20, 0x06, +0x20, 0x11, 0x20, 0x1C, 0x20, 0x27, 0x20, 0x32, 0x20, 0x3D, 0x20, 0x48, 0x20, 0x53, 0x20, 0x5E, +0x20, 0x6C, 0x20, 0xBC, 0x20, 0xCF, 0x20, 0xE8, 0x20, 0xF3, 0x20, 0xFE, 0x21, 0x09, 0x21, 0x14, +0x21, 0x1F, 0x21, 0x2A, 0x21, 0x53, 0x21, 0x5E, 0x21, 0x69, 0x21, 0x74, 0x21, 0x7F, 0x21, 0x8A, +0x21, 0x95, 0x21, 0xA0, 0x21, 0xAB, 0x21, 0xB6, 0x21, 0xEC, 0x21, 0xF7, 0x22, 0x02, 0x22, 0x0D, +0x22, 0x18, 0x22, 0x23, 0x22, 0x2E, 0x22, 0x39, 0x22, 0x44, 0x22, 0x53, 0x22, 0x5F, 0x22, 0x6A, +0x22, 0x75, 0x22, 0x80, 0x22, 0x94, 0x22, 0xB5, 0x22, 0xC1, 0x22, 0xCD, 0x22, 0xD9, 0x22, 0xE5, +0x23, 0x07, 0x23, 0x29, 0x23, 0x34, 0x23, 0x3F, 0x23, 0x4A, 0x23, 0x55, 0x23, 0x61, 0x23, 0x6C, +0x23, 0x77, 0x23, 0x82, 0x23, 0x8D, 0x23, 0xA5, 0x23, 0xB0, 0x23, 0xBB, 0x23, 0xC6, 0x23, 0xD1, +0x23, 0xE5, 0x24, 0x2A, 0x24, 0x35, 0x24, 0x40, 0x24, 0x4B, 0x24, 0x59, 0x24, 0x64, 0x24, 0x6F, +0x24, 0x7A, 0x24, 0x85, 0x24, 0x90, 0x24, 0x9B, 0x24, 0xA9, 0x24, 0xB4, 0x24, 0xBF, 0x24, 0xCA, +0x24, 0xD5, 0x24, 0xE0, 0x24, 0xEB, 0x24, 0xF6, 0x25, 0x01, 0x25, 0x0C, 0x25, 0x17, 0x25, 0x23, +0x25, 0x2E, 0x25, 0x3D, 0x25, 0x48, 0x25, 0xBF, 0x25, 0xCA, 0x25, 0xD5, 0x25, 0xE0, 0x25, 0xEB, +0x25, 0xF6, 0x26, 0x01, 0x26, 0x0D, 0x26, 0x1D, 0x26, 0x31, 0x26, 0x41, 0x26, 0x51, 0x26, 0x5D, +0x26, 0x69, 0x26, 0xA0, 0x26, 0xD2, 0x26, 0xDA, 0x26, 0xE2, 0x26, 0xEA, 0x27, 0x06, 0x27, 0x32, +0x27, 0x4B, 0x27, 0x7F, 0x27, 0xBD, 0x27, 0xD7, 0x28, 0x13, 0x28, 0x59, 0x28, 0x6D, 0x28, 0xD1, +0x29, 0x12, 0x29, 0x1E, 0x29, 0x4B, 0x29, 0x61, 0x29, 0x8F, 0x29, 0xC5, 0x29, 0xE6, 0x2A, 0x1B, +0x2A, 0x57, 0x2A, 0x6A, 0x2A, 0xB9, 0x2A, 0xF7, 0x2B, 0x00, 0x2B, 0x09, 0x2B, 0x12, 0x2B, 0x1B, +0x2B, 0x24, 0x2B, 0x2D, 0x2B, 0x36, 0x2B, 0x3F, 0x2B, 0x48, 0x2B, 0x51, 0x2B, 0x5A, 0x2B, 0x63, +0x2B, 0x6C, 0x2B, 0x75, 0x2B, 0x7E, 0x2B, 0x87, 0x2B, 0x90, 0x2B, 0x99, 0x2B, 0xA2, 0x2B, 0xAB, +0x2B, 0xB4, 0x2B, 0xBD, 0x2B, 0xC6, 0x2B, 0xCF, 0x2B, 0xD8, 0x2B, 0xE1, 0x2B, 0xEA, 0x2B, 0xF3, +0x2B, 0xFC, 0x2C, 0x05, 0x2C, 0x13, 0x2C, 0x23, 0x2C, 0x33, 0x2C, 0x43, 0x2C, 0x53, 0x2C, 0x63, +0x2C, 0x73, 0x2C, 0x83, 0x2C, 0x83, 0x2C, 0x83, 0x2C, 0x83, 0x2C, 0x83, 0x2C, 0x83, 0x2C, 0x83, +0x2C, 0x83, 0x2C, 0x83, 0x2C, 0x99, 0x2C, 0xBD, 0x2C, 0xC9, 0x2C, 0xD5, 0x2C, 0xE5, 0x2D, 0x0B, +0x2D, 0x31, 0x2D, 0x6D, 0x2D, 0xAA, 0x2D, 0xB3, 0x2D, 0xCF, 0x2D, 0xF9, 0x2E, 0x1C, 0x2E, 0x2B, +0x2E, 0x3A, 0x2E, 0x43, 0x2E, 0x4B, 0x2E, 0x53, 0x2E, 0x5B, 0x2E, 0x64, 0x2E, 0x6D, 0x2E, 0x79, +0x2E, 0x81, 0x2E, 0x8D, 0x2E, 0x99, 0x2E, 0xA1, 0x2E, 0xA9, 0x2E, 0xB1, 0x2E, 0xBD, 0x2E, 0xC5, +0x2E, 0xCD, 0x2E, 0xD5, 0x2E, 0xF0, 0x2F, 0x0A, 0x2F, 0x44, 0x2F, 0x7D, 0x2F, 0x91, 0x2F, 0xA5, +0x2F, 0xAD, 0x2F, 0xB5, 0x2F, 0xBD, 0x2F, 0xC5, 0x2F, 0xCD, 0x2F, 0xD5, 0x2F, 0xDD, 0x2F, 0xE9, +0x2F, 0xF5, 0x30, 0x01, 0x30, 0x26, 0x30, 0x4A, 0x30, 0x56, 0x30, 0x62, 0x30, 0x75, 0x30, 0x88, +0x30, 0x9E, 0x30, 0xAC, 0x30, 0xB8, 0x30, 0xC4, 0x30, 0xCC, 0x30, 0xD4, 0x31, 0x0B, 0x31, 0x93, +0x31, 0xE9, 0x32, 0x0A, 0x32, 0x81, 0x32, 0xE4, 0x33, 0x3D, 0x33, 0x67, 0x33, 0x99, 0x33, 0xA1, +0x33, 0xAE, 0x33, 0xC2, 0x33, 0xD5, 0x34, 0x28, 0x34, 0x41, 0x34, 0x8C, 0x34, 0xE6, 0x34, 0xEE, +0x35, 0x37, 0x35, 0x79, 0x35, 0xC3, 0x36, 0x11, 0x36, 0x68, 0x36, 0xAF, 0x36, 0xF4, 0x37, 0x14, +0x37, 0x5E, 0x37, 0x89, 0x37, 0xF5, 0x38, 0x24, 0x38, 0x4E, 0x38, 0x87, 0x38, 0xB5, 0x38, 0xFE, +0x39, 0x35, 0x39, 0x6C, 0x39, 0xD4, 0x3A, 0x20, 0x3A, 0x49, 0x3A, 0x65, 0x3A, 0x74, 0x3A, 0x87, +0x3A, 0x93, 0x3A, 0xAB, 0x3A, 0xE3, 0x3A, 0xF6, 0x3B, 0x12, 0x3B, 0x26, 0x3B, 0x3B, 0x3B, 0x56, +0x3B, 0x72, 0x3B, 0x8D, 0x3B, 0xEA, 0x3C, 0x1B, 0x3C, 0x2C, 0x3C, 0x41, 0x3C, 0x9C, 0x3C, 0xD8, +0x3D, 0x0D, 0x3D, 0x58, 0x3D, 0x70, 0x3D, 0x8A, 0x3D, 0xA9, 0x3D, 0xC2, 0x3D, 0xEE, 0x3E, 0x36, +0x3E, 0x9C, 0x3F, 0x2D, 0x3F, 0x45, 0x3F, 0x67, 0x3F, 0x89, 0x3F, 0xCF, 0x40, 0x10, 0x40, 0x2A, +0x40, 0x44, 0x40, 0x82, 0x40, 0xBA, 0x40, 0xE0, 0x41, 0x0C, 0x41, 0x18, 0x41, 0x2E, 0x41, 0x3A, +0x41, 0x48, 0x41, 0x56, 0x41, 0x74, 0x41, 0x8A, 0x41, 0xAE, 0x41, 0xC1, 0x41, 0xD4, 0x41, 0xF7, +0x42, 0x12, 0x42, 0x3E, 0x42, 0x6B, 0x42, 0xB6, 0x42, 0xEA, 0x42, 0xF6, 0x43, 0x03, 0x43, 0x0F, +0x43, 0x23, 0x43, 0x37, 0x43, 0x69, 0x43, 0x7E, 0x43, 0x99, 0x43, 0xBD, 0x43, 0xD0, 0x43, 0xE6, +0x44, 0x0B, 0x44, 0x2E, 0x44, 0x51, 0x44, 0x79, 0x44, 0x94, 0x44, 0xA0, 0x44, 0xAC, 0x44, 0xB4, +0x44, 0xBC, 0x44, 0xC4, 0x44, 0xCC, 0x44, 0xD4, 0x44, 0xDC, 0x44, 0xE4, 0x44, 0xEC, 0x44, 0xF4, +0x44, 0xFC, 0x45, 0x04, 0x45, 0x0C, 0x45, 0x14, 0x45, 0x3A, 0x45, 0x66, 0x45, 0x72, 0x45, 0x88, +0x45, 0x94, 0x45, 0xA2, 0x45, 0xB0, 0x45, 0xCE, 0x45, 0xE3, 0x45, 0xF6, 0x46, 0x10, 0x46, 0x2A, +0x46, 0x62, 0x46, 0xA0, 0x46, 0xB3, 0x46, 0xD1, 0x46, 0xF3, 0x47, 0x15, 0x47, 0x56, 0x47, 0x9C, +0x47, 0xC8, 0x47, 0xF3, 0x47, 0xFF, 0x48, 0x0B, 0x48, 0x17, 0x48, 0x24, 0x48, 0x30, 0x48, 0x3C, +0x48, 0x48, 0x48, 0x7A, 0x48, 0x8F, 0x48, 0xAC, 0x48, 0xBF, 0x48, 0xE2, 0x49, 0x05, 0x49, 0x2C, +0x49, 0x34, 0x49, 0x3C, 0x49, 0x58, 0x49, 0x74, 0x49, 0x81, 0x49, 0x8E, 0x00, 0x00, 0x00, 0x02, +0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x14, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, +0x00, 0x04, 0x08, 0x02, 0x00, 0x00, 0x00, 0xD0, 0x00, 0x80, 0x00, 0x06, 0x00, 0x50, 0x00, 0x0D, +0x00, 0x2F, 0x00, 0x39, 0x00, 0x7E, 0x01, 0x7E, 0x01, 0x8F, 0x01, 0x92, 0x01, 0x9D, 0x01, 0xA1, +0x01, 0xB0, 0x01, 0xD4, 0x01, 0xE7, 0x01, 0xEB, 0x01, 0xF2, 0x02, 0x1B, 0x02, 0x2D, 0x02, 0x33, +0x02, 0x37, 0x02, 0x59, 0x02, 0x72, 0x02, 0xBC, 0x02, 0xBF, 0x02, 0xC8, 0x02, 0xCC, 0x02, 0xDD, +0x03, 0x04, 0x03, 0x0C, 0x03, 0x0F, 0x03, 0x12, 0x03, 0x1B, 0x03, 0x24, 0x03, 0x28, 0x03, 0x2E, +0x03, 0x31, 0x03, 0x35, 0x03, 0x94, 0x03, 0xA9, 0x03, 0xBC, 0x03, 0xC0, 0x1E, 0x09, 0x1E, 0x0F, +0x1E, 0x17, 0x1E, 0x1D, 0x1E, 0x21, 0x1E, 0x25, 0x1E, 0x2B, 0x1E, 0x2F, 0x1E, 0x37, 0x1E, 0x3B, +0x1E, 0x49, 0x1E, 0x53, 0x1E, 0x5B, 0x1E, 0x69, 0x1E, 0x6F, 0x1E, 0x7B, 0x1E, 0x85, 0x1E, 0x8F, +0x1E, 0x93, 0x1E, 0x97, 0x1E, 0x9E, 0x1E, 0xF9, 0x20, 0x0B, 0x20, 0x10, 0x20, 0x15, 0x20, 0x1A, +0x20, 0x1E, 0x20, 0x22, 0x20, 0x26, 0x20, 0x30, 0x20, 0x33, 0x20, 0x3A, 0x20, 0x44, 0x20, 0x70, +0x20, 0x79, 0x20, 0x89, 0x20, 0xA1, 0x20, 0xA4, 0x20, 0xA7, 0x20, 0xA9, 0x20, 0xAD, 0x20, 0xB2, +0x20, 0xB5, 0x20, 0xBA, 0x20, 0xBD, 0x21, 0x13, 0x21, 0x16, 0x21, 0x22, 0x21, 0x26, 0x21, 0x2E, +0x21, 0x5E, 0x22, 0x02, 0x22, 0x06, 0x22, 0x0F, 0x22, 0x12, 0x22, 0x15, 0x22, 0x1A, 0x22, 0x1E, +0x22, 0x2B, 0x22, 0x48, 0x22, 0x60, 0x22, 0x65, 0x25, 0xCA, 0xFB, 0x02, 0xFF, 0xFF, 0x00, 0x00, +0x00, 0x0D, 0x00, 0x20, 0x00, 0x30, 0x00, 0x3A, 0x00, 0xA0, 0x01, 0x8F, 0x01, 0x92, 0x01, 0x9D, +0x01, 0xA0, 0x01, 0xAF, 0x01, 0xC4, 0x01, 0xE6, 0x01, 0xEA, 0x01, 0xF1, 0x01, 0xFA, 0x02, 0x2A, +0x02, 0x30, 0x02, 0x37, 0x02, 0x59, 0x02, 0x72, 0x02, 0xBB, 0x02, 0xBE, 0x02, 0xC6, 0x02, 0xCC, +0x02, 0xD8, 0x03, 0x00, 0x03, 0x06, 0x03, 0x0F, 0x03, 0x11, 0x03, 0x1B, 0x03, 0x23, 0x03, 0x26, +0x03, 0x2E, 0x03, 0x31, 0x03, 0x35, 0x03, 0x94, 0x03, 0xA9, 0x03, 0xBC, 0x03, 0xC0, 0x1E, 0x08, +0x1E, 0x0C, 0x1E, 0x14, 0x1E, 0x1C, 0x1E, 0x20, 0x1E, 0x24, 0x1E, 0x2A, 0x1E, 0x2E, 0x1E, 0x36, +0x1E, 0x3A, 0x1E, 0x42, 0x1E, 0x4C, 0x1E, 0x5A, 0x1E, 0x5E, 0x1E, 0x6C, 0x1E, 0x78, 0x1E, 0x80, +0x1E, 0x8E, 0x1E, 0x92, 0x1E, 0x97, 0x1E, 0x9E, 0x1E, 0xA0, 0x20, 0x07, 0x20, 0x10, 0x20, 0x12, +0x20, 0x18, 0x20, 0x1C, 0x20, 0x20, 0x20, 0x26, 0x20, 0x30, 0x20, 0x33, 0x20, 0x39, 0x20, 0x44, +0x20, 0x70, 0x20, 0x74, 0x20, 0x80, 0x20, 0xA1, 0x20, 0xA3, 0x20, 0xA6, 0x20, 0xA9, 0x20, 0xAB, +0x20, 0xB1, 0x20, 0xB5, 0x20, 0xB9, 0x20, 0xBC, 0x21, 0x13, 0x21, 0x16, 0x21, 0x22, 0x21, 0x26, +0x21, 0x2E, 0x21, 0x5B, 0x22, 0x02, 0x22, 0x05, 0x22, 0x0F, 0x22, 0x11, 0x22, 0x15, 0x22, 0x19, +0x22, 0x1E, 0x22, 0x2B, 0x22, 0x48, 0x22, 0x60, 0x22, 0x64, 0x25, 0xCA, 0xFB, 0x01, 0xFF, 0xFF, +0x02, 0x54, 0x00, 0x00, 0x01, 0xF6, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x2C, 0x01, 0x13, 0xFE, 0xDE, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0x33, 0xFE, 0xF0, 0xFF, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7F, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xFA, 0xFF, 0xF2, 0xFF, 0xEB, 0xFF, 0xEA, +0xFF, 0xE5, 0xFF, 0xE3, 0xFF, 0xE0, 0xFE, 0x8E, 0xFE, 0x7A, 0xFE, 0x68, 0xFE, 0x65, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xE3, 0x2F, 0xE2, 0x1C, 0x00, 0x00, 0x00, 0x00, 0xE2, 0x74, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE2, 0x47, 0xE2, 0xB8, 0xE2, 0x7B, 0xE2, 0x64, 0xE2, 0x15, +0xE1, 0xDF, 0xE1, 0xDF, 0xE1, 0xBB, 0xE2, 0x18, 0x00, 0x00, 0xE2, 0x1E, 0xE2, 0x21, 0x00, 0x00, +0x00, 0x00, 0xE2, 0x02, 0x00, 0x00, 0x00, 0x00, 0xE1, 0x9F, 0xE1, 0x9F, 0xE1, 0x8A, 0xE1, 0xBA, +0xE1, 0x86, 0xE1, 0x02, 0xE0, 0xE4, 0x00, 0x00, 0xE0, 0xD3, 0x00, 0x00, 0xE0, 0xB8, 0x00, 0x00, +0xE0, 0xBF, 0xE0, 0xB4, 0xE0, 0x91, 0xE0, 0x73, 0x00, 0x00, 0xDD, 0x1F, 0x07, 0x1D, 0x00, 0x01, +0x00, 0x00, 0x00, 0xCE, 0x00, 0x00, 0x00, 0xEA, 0x01, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x03, 0x28, 0x03, 0x2A, 0x03, 0x2C, 0x03, 0x4C, 0x03, 0x4E, 0x03, 0x50, 0x03, 0x52, 0x03, 0x94, +0x03, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x9A, 0x03, 0x9C, 0x03, 0x9E, 0x00, 0x00, +0x03, 0xA0, 0x03, 0xAA, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xA6, +0x03, 0xA8, 0x03, 0xAE, 0x03, 0xB4, 0x03, 0xB6, 0x03, 0xB8, 0x03, 0xBA, 0x03, 0xBC, 0x03, 0xBE, +0x03, 0xC0, 0x03, 0xC2, 0x03, 0xD0, 0x03, 0xDE, 0x03, 0xE0, 0x03, 0xF6, 0x03, 0xFC, 0x04, 0x02, +0x04, 0x0C, 0x04, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x04, 0x0C, 0x04, 0xBE, 0x00, 0x00, 0x04, 0xC4, +0x04, 0xCA, 0x04, 0xCE, 0x04, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xC4, 0x00, 0x00, 0x00, 0x00, 0x04, 0xC2, +0x04, 0xC6, 0x00, 0x00, 0x04, 0xC6, 0x04, 0xC8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xBC, 0x00, 0x00, 0x04, 0xBC, 0x00, 0x00, 0x04, 0xBC, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xB6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x02, 0x65, 0x02, 0x6E, 0x02, 0x9F, 0x02, 0x75, 0x02, 0xBB, 0x02, 0xE7, 0x02, 0xA7, 0x02, 0xA0, +0x02, 0x89, 0x02, 0x8A, 0x02, 0x74, 0x02, 0xCE, 0x02, 0x6A, 0x02, 0x7E, 0x02, 0x69, 0x02, 0x76, +0x02, 0x6B, 0x02, 0x6C, 0x02, 0xD5, 0x02, 0xD2, 0x02, 0xD4, 0x02, 0x70, 0x02, 0xA6, 0x00, 0x01, +0x00, 0x1D, 0x00, 0x1E, 0x00, 0x25, 0x00, 0x2F, 0x00, 0x46, 0x00, 0x47, 0x00, 0x4E, 0x00, 0x53, +0x00, 0x64, 0x00, 0x66, 0x00, 0x68, 0x00, 0x72, 0x00, 0x74, 0x00, 0x80, 0x00, 0xA4, 0x00, 0xA6, +0x00, 0xA7, 0x00, 0xAF, 0x00, 0xBC, 0x00, 0xC3, 0x00, 0xDB, 0x00, 0xDC, 0x00, 0xE1, 0x00, 0xE2, +0x00, 0xEC, 0x02, 0x8D, 0x02, 0x77, 0x02, 0x8E, 0x02, 0xDC, 0x02, 0x85, 0x03, 0x18, 0x01, 0x07, +0x01, 0x23, 0x01, 0x24, 0x01, 0x2B, 0x01, 0x32, 0x01, 0x4A, 0x01, 0x4B, 0x01, 0x52, 0x01, 0x57, +0x01, 0x69, 0x01, 0x6C, 0x01, 0x6F, 0x01, 0x78, 0x01, 0x7A, 0x01, 0x86, 0x01, 0xAA, 0x01, 0xAC, +0x01, 0xAD, 0x01, 0xB5, 0x01, 0xC1, 0x01, 0xC9, 0x01, 0xE1, 0x01, 0xE2, 0x01, 0xE7, 0x01, 0xE8, +0x01, 0xF2, 0x02, 0x8B, 0x02, 0xAF, 0x02, 0x8C, 0x02, 0xDA, 0x02, 0x66, 0x02, 0x6F, 0x02, 0xB8, +0x02, 0xC9, 0x02, 0xBA, 0x02, 0xCB, 0x02, 0xB0, 0x02, 0xA9, 0x03, 0x16, 0x02, 0xAA, 0x02, 0x20, +0x02, 0x9B, 0x02, 0xDB, 0x02, 0x7F, 0x02, 0xAB, 0x03, 0x20, 0x02, 0xAD, 0x02, 0xD8, 0x02, 0x51, +0x02, 0x52, 0x03, 0x19, 0x02, 0xE5, 0x02, 0xA8, 0x02, 0x72, 0x03, 0x21, 0x02, 0x50, 0x02, 0x21, +0x02, 0x9C, 0x02, 0x5B, 0x02, 0x5A, 0x02, 0x5C, 0x02, 0x71, 0x00, 0x13, 0x00, 0x02, 0x00, 0x0A, +0x00, 0x1A, 0x00, 0x11, 0x00, 0x18, 0x00, 0x1B, 0x00, 0x21, 0x00, 0x3E, 0x00, 0x30, 0x00, 0x34, +0x00, 0x3B, 0x00, 0x5E, 0x00, 0x55, 0x00, 0x58, 0x00, 0x5A, 0x00, 0x28, 0x00, 0x7E, 0x00, 0x8F, +0x00, 0x81, 0x00, 0x84, 0x00, 0x9F, 0x00, 0x8B, 0x02, 0xD0, 0x00, 0x9D, 0x00, 0xCB, 0x00, 0xC4, +0x00, 0xC7, 0x00, 0xC9, 0x00, 0xE3, 0x00, 0xA5, 0x01, 0xC0, 0x01, 0x19, 0x01, 0x08, 0x01, 0x10, +0x01, 0x20, 0x01, 0x17, 0x01, 0x1E, 0x01, 0x21, 0x01, 0x27, 0x01, 0x41, 0x01, 0x33, 0x01, 0x37, +0x01, 0x3E, 0x01, 0x62, 0x01, 0x59, 0x01, 0x5C, 0x01, 0x5E, 0x01, 0x2C, 0x01, 0x84, 0x01, 0x95, +0x01, 0x87, 0x01, 0x8A, 0x01, 0xA5, 0x01, 0x91, 0x02, 0xD1, 0x01, 0xA3, 0x01, 0xD1, 0x01, 0xCA, +0x01, 0xCD, 0x01, 0xCF, 0x01, 0xE9, 0x01, 0xAB, 0x01, 0xEB, 0x00, 0x16, 0x01, 0x1C, 0x00, 0x03, +0x01, 0x09, 0x00, 0x17, 0x01, 0x1D, 0x00, 0x1F, 0x01, 0x25, 0x00, 0x23, 0x01, 0x29, 0x00, 0x24, +0x01, 0x2A, 0x00, 0x20, 0x01, 0x26, 0x00, 0x29, 0x01, 0x2D, 0x00, 0x2A, 0x01, 0x2E, 0x00, 0x41, +0x01, 0x44, 0x00, 0x31, 0x01, 0x34, 0x00, 0x3C, 0x01, 0x3F, 0x00, 0x44, 0x01, 0x47, 0x00, 0x32, +0x01, 0x35, 0x00, 0x4A, 0x01, 0x4E, 0x00, 0x48, 0x01, 0x4C, 0x00, 0x4C, 0x01, 0x50, 0x00, 0x4B, +0x01, 0x4F, 0x00, 0x51, 0x01, 0x55, 0x00, 0x4F, 0x01, 0x53, 0x00, 0x63, 0x01, 0x68, 0x00, 0x61, +0x01, 0x66, 0x00, 0x56, 0x01, 0x5A, 0x00, 0x62, 0x01, 0x67, 0x00, 0x5C, 0x01, 0x58, 0x00, 0x54, +0x01, 0x65, 0x00, 0x65, 0x01, 0x6B, 0x00, 0x67, 0x01, 0x6D, 0x01, 0x6E, 0x00, 0x6A, 0x01, 0x70, +0x00, 0x6C, 0x01, 0x72, 0x00, 0x6B, 0x01, 0x71, 0x00, 0x6D, 0x01, 0x73, 0x00, 0x71, 0x01, 0x77, +0x00, 0x76, 0x01, 0x7B, 0x00, 0x78, 0x01, 0x7E, 0x00, 0x77, 0x01, 0x7D, 0x01, 0x7C, 0x00, 0x7F, +0x01, 0x85, 0x00, 0x99, 0x01, 0x9F, 0x00, 0x82, 0x01, 0x88, 0x00, 0x97, 0x01, 0x9D, 0x00, 0xA3, +0x01, 0xA9, 0x00, 0xA8, 0x01, 0xAE, 0x00, 0xAA, 0x01, 0xB0, 0x00, 0xA9, 0x01, 0xAF, 0x00, 0xB0, +0x01, 0xB6, 0x00, 0xB5, 0x01, 0xBB, 0x00, 0xB4, 0x01, 0xBA, 0x00, 0xB2, 0x01, 0xB8, 0x00, 0xBF, +0x01, 0xC4, 0x00, 0xBE, 0x01, 0xC3, 0x00, 0xBD, 0x01, 0xC2, 0x00, 0xD9, 0x01, 0xDF, 0x00, 0xD5, +0x01, 0xDB, 0x00, 0xC5, 0x01, 0xCB, 0x00, 0xD8, 0x01, 0xDE, 0x00, 0xD3, 0x01, 0xD9, 0x00, 0xD7, +0x01, 0xDD, 0x00, 0xDE, 0x01, 0xE4, 0x00, 0xE4, 0x01, 0xEA, 0x00, 0xE5, 0x00, 0xED, 0x01, 0xF3, +0x00, 0xEF, 0x01, 0xF5, 0x00, 0xEE, 0x01, 0xF4, 0x00, 0x91, 0x01, 0x97, 0x00, 0xCD, 0x01, 0xD3, +0x00, 0x27, 0x00, 0x2E, 0x01, 0x31, 0x00, 0x69, 0x00, 0x6F, 0x01, 0x75, 0x00, 0x75, 0x00, 0x7C, +0x01, 0x82, 0x00, 0x09, 0x01, 0x0F, 0x00, 0x57, 0x01, 0x5B, 0x00, 0x83, 0x01, 0x89, 0x00, 0xC6, +0x01, 0xCC, 0x00, 0x49, 0x01, 0x4D, 0x00, 0x9C, 0x01, 0xA2, 0x00, 0x26, 0x00, 0x2D, 0x00, 0x19, +0x01, 0x1F, 0x00, 0x1C, 0x01, 0x22, 0x00, 0x9E, 0x01, 0xA4, 0x00, 0x10, 0x01, 0x16, 0x00, 0x15, +0x01, 0x1B, 0x00, 0x3A, 0x01, 0x3D, 0x00, 0x40, 0x01, 0x43, 0x00, 0x59, 0x01, 0x5D, 0x00, 0x60, +0x01, 0x64, 0x00, 0x8A, 0x01, 0x90, 0x00, 0x98, 0x01, 0x9E, 0x00, 0xAB, 0x01, 0xB1, 0x00, 0xAD, +0x01, 0xB3, 0x00, 0xC8, 0x01, 0xCE, 0x00, 0xD4, 0x01, 0xDA, 0x00, 0xB6, 0x01, 0xBC, 0x00, 0xC0, +0x01, 0xC5, 0x00, 0x8C, 0x01, 0x92, 0x00, 0xA2, 0x01, 0xA8, 0x00, 0x8D, 0x01, 0x93, 0x00, 0xEA, +0x01, 0xF0, 0x03, 0x48, 0x03, 0x47, 0x03, 0x4A, 0x03, 0x49, 0x03, 0x1B, 0x03, 0x1C, 0x03, 0x4C, +0x03, 0x1D, 0x03, 0x17, 0x03, 0x1E, 0x03, 0x22, 0x03, 0x1F, 0x03, 0x1A, 0x02, 0xF7, 0x02, 0xF8, +0x02, 0xFC, 0x03, 0x01, 0x03, 0x05, 0x02, 0xFF, 0x02, 0xF5, 0x02, 0xF2, 0x03, 0x09, 0x03, 0x00, +0x02, 0xFA, 0x02, 0xFD, 0x00, 0x22, 0x01, 0x28, 0x00, 0x2B, 0x01, 0x2F, 0x00, 0x2C, 0x01, 0x30, +0x00, 0x43, 0x01, 0x46, 0x00, 0x42, 0x01, 0x45, 0x00, 0x33, 0x01, 0x36, 0x00, 0x4D, 0x01, 0x51, +0x00, 0x52, 0x01, 0x56, 0x00, 0x50, 0x01, 0x54, 0x00, 0x5B, 0x01, 0x5F, 0x00, 0x6E, 0x01, 0x74, +0x00, 0x70, 0x01, 0x76, 0x00, 0x73, 0x01, 0x79, 0x00, 0x79, 0x01, 0x7F, 0x00, 0x7A, 0x01, 0x80, +0x00, 0x7D, 0x01, 0x83, 0x00, 0xA0, 0x01, 0xA6, 0x00, 0xA1, 0x01, 0xA7, 0x00, 0x9B, 0x01, 0xA1, +0x00, 0x9A, 0x01, 0xA0, 0x00, 0xAC, 0x01, 0xB2, 0x00, 0xAE, 0x01, 0xB4, 0x00, 0xB7, 0x01, 0xBD, +0x00, 0xB8, 0x01, 0xBE, 0x00, 0xB1, 0x01, 0xB7, 0x00, 0xB3, 0x01, 0xB9, 0x00, 0xB9, 0x01, 0xBF, +0x00, 0xC1, 0x01, 0xC7, 0x00, 0xC2, 0x01, 0xC8, 0x00, 0xDA, 0x01, 0xE0, 0x00, 0xD6, 0x01, 0xDC, +0x00, 0xE0, 0x01, 0xE6, 0x00, 0xDD, 0x01, 0xE3, 0x00, 0xDF, 0x01, 0xE5, 0x00, 0xE6, 0x01, 0xEC, +0x00, 0xF0, 0x01, 0xF6, 0x00, 0x12, 0x01, 0x18, 0x00, 0x14, 0x01, 0x1A, 0x00, 0x0B, 0x01, 0x11, +0x00, 0x0D, 0x01, 0x13, 0x00, 0x0E, 0x01, 0x14, 0x00, 0x0F, 0x01, 0x15, 0x00, 0x0C, 0x01, 0x12, +0x00, 0x04, 0x01, 0x0A, 0x00, 0x06, 0x01, 0x0C, 0x00, 0x07, 0x01, 0x0D, 0x00, 0x08, 0x01, 0x0E, +0x00, 0x05, 0x01, 0x0B, 0x00, 0x3D, 0x01, 0x40, 0x00, 0x3F, 0x01, 0x42, 0x00, 0x45, 0x01, 0x48, +0x00, 0x35, 0x01, 0x38, 0x00, 0x37, 0x01, 0x3A, 0x00, 0x38, 0x01, 0x3B, 0x00, 0x39, 0x01, 0x3C, +0x00, 0x36, 0x01, 0x39, 0x00, 0x5F, 0x01, 0x63, 0x00, 0x5D, 0x01, 0x61, 0x00, 0x8E, 0x01, 0x94, +0x00, 0x90, 0x01, 0x96, 0x00, 0x85, 0x01, 0x8B, 0x00, 0x87, 0x01, 0x8D, 0x00, 0x88, 0x01, 0x8E, +0x00, 0x89, 0x01, 0x8F, 0x00, 0x86, 0x01, 0x8C, 0x00, 0x92, 0x01, 0x98, 0x00, 0x94, 0x01, 0x9A, +0x00, 0x95, 0x01, 0x9B, 0x00, 0x96, 0x01, 0x9C, 0x00, 0x93, 0x01, 0x99, 0x00, 0xCA, 0x01, 0xD0, +0x00, 0xCC, 0x01, 0xD2, 0x00, 0xCE, 0x01, 0xD4, 0x00, 0xD0, 0x01, 0xD6, 0x00, 0xD1, 0x01, 0xD7, +0x00, 0xD2, 0x01, 0xD8, 0x00, 0xCF, 0x01, 0xD5, 0x00, 0xE8, 0x01, 0xEE, 0x00, 0xE7, 0x01, 0xED, +0x00, 0xE9, 0x01, 0xEF, 0x00, 0xEB, 0x01, 0xF1, 0x02, 0x62, 0x02, 0x64, 0x02, 0x67, 0x02, 0x63, +0x02, 0x68, 0x02, 0x82, 0x02, 0x80, 0x02, 0x81, 0x02, 0x83, 0x02, 0x99, 0x02, 0x9A, 0x02, 0x95, +0x02, 0x97, 0x02, 0x98, 0x02, 0x96, 0x02, 0xB1, 0x02, 0xB3, 0x02, 0x73, 0x02, 0xBE, 0x02, 0xC1, +0x02, 0xBC, 0x02, 0xBD, 0x02, 0xC0, 0x02, 0xC6, 0x02, 0xBF, 0x02, 0xC8, 0x02, 0xC2, 0x02, 0xC3, +0x02, 0xC7, 0x02, 0xDE, 0x02, 0xE1, 0x02, 0xE3, 0x02, 0xCF, 0x02, 0xCC, 0x02, 0xE4, 0x02, 0xD7, +0x02, 0xD6, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0A, 0x01, 0xDE, 0x03, 0x1C, 0x00, 0x02, +0x44, 0x46, 0x4C, 0x54, 0x01, 0xAE, 0x6C, 0x61, 0x74, 0x6E, 0x00, 0x0E, 0x01, 0x7E, 0x00, 0x09, +0x41, 0x5A, 0x45, 0x20, 0x01, 0x5A, 0x43, 0x41, 0x54, 0x20, 0x01, 0x36, 0x43, 0x52, 0x54, 0x20, +0x01, 0x12, 0x4B, 0x41, 0x5A, 0x20, 0x00, 0xEE, 0x4D, 0x4F, 0x4C, 0x20, 0x00, 0xCA, 0x4E, 0x4C, +0x44, 0x20, 0x00, 0xA6, 0x52, 0x4F, 0x4D, 0x20, 0x00, 0x82, 0x54, 0x41, 0x54, 0x20, 0x00, 0x5E, +0x54, 0x52, 0x4B, 0x20, 0x00, 0x3A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x01, +0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, +0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0F, +0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x0F, +0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, +0x00, 0x07, 0x00, 0x0E, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, +0x00, 0x17, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, +0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, +0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x01, +0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x0C, 0x00, 0x11, 0x00, 0x12, +0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0F, +0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x0B, +0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, +0x00, 0x07, 0x00, 0x0A, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, +0x00, 0x17, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, +0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x09, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, +0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x01, +0x00, 0x02, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x11, 0x00, 0x12, +0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0E, +0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x11, +0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x04, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x05, +0x00, 0x06, 0x00, 0x07, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x00, 0x16, +0x00, 0x17, 0x00, 0x18, 0x61, 0x61, 0x6C, 0x74, 0x01, 0x36, 0x63, 0x61, 0x73, 0x65, 0x01, 0x30, +0x63, 0x63, 0x6D, 0x70, 0x01, 0x22, 0x63, 0x63, 0x6D, 0x70, 0x01, 0x10, 0x64, 0x6C, 0x69, 0x67, +0x01, 0x0A, 0x64, 0x6E, 0x6F, 0x6D, 0x01, 0x04, 0x66, 0x72, 0x61, 0x63, 0x00, 0xFA, 0x6C, 0x69, +0x67, 0x61, 0x00, 0xF4, 0x6C, 0x6F, 0x63, 0x6C, 0x00, 0xEE, 0x6C, 0x6F, 0x63, 0x6C, 0x00, 0xE8, +0x6C, 0x6F, 0x63, 0x6C, 0x00, 0xE2, 0x6C, 0x6F, 0x63, 0x6C, 0x00, 0xDC, 0x6C, 0x6F, 0x63, 0x6C, +0x00, 0xD6, 0x6C, 0x6F, 0x63, 0x6C, 0x00, 0xD0, 0x6C, 0x6F, 0x63, 0x6C, 0x00, 0xCA, 0x6C, 0x6F, +0x63, 0x6C, 0x00, 0xC4, 0x6C, 0x6F, 0x63, 0x6C, 0x00, 0xBE, 0x6E, 0x75, 0x6D, 0x72, 0x00, 0xB8, +0x6F, 0x72, 0x64, 0x6E, 0x00, 0xB0, 0x73, 0x69, 0x6E, 0x66, 0x00, 0xAA, 0x73, 0x73, 0x30, 0x31, +0x00, 0xA4, 0x73, 0x75, 0x62, 0x73, 0x00, 0x9E, 0x73, 0x75, 0x70, 0x73, 0x00, 0x98, 0x7A, 0x65, +0x72, 0x6F, 0x00, 0x92, 0x00, 0x00, 0x00, 0x01, 0x00, 0x26, 0x00, 0x00, 0x00, 0x01, 0x00, 0x18, +0x00, 0x00, 0x00, 0x01, 0x00, 0x16, 0x00, 0x00, 0x00, 0x01, 0x00, 0x27, 0x00, 0x00, 0x00, 0x01, +0x00, 0x17, 0x00, 0x00, 0x00, 0x02, 0x00, 0x20, 0x00, 0x22, 0x00, 0x00, 0x00, 0x01, 0x00, 0x19, +0x00, 0x00, 0x00, 0x01, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x01, +0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x11, 0x00, 0x00, +0x00, 0x01, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x13, +0x00, 0x00, 0x00, 0x01, 0x00, 0x0B, 0x00, 0x00, 0x00, 0x01, 0x00, 0x25, 0x00, 0x00, 0x00, 0x03, +0x00, 0x1B, 0x00, 0x1C, 0x00, 0x1D, 0x00, 0x00, 0x00, 0x01, 0x00, 0x1A, 0x00, 0x00, 0x00, 0x01, +0x00, 0x24, 0x00, 0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0x05, 0x00, 0x08, 0x00, 0x09, 0x00, 0x0A, +0x00, 0x09, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x05, 0x00, 0x02, 0x00, 0x05, 0x00, 0x08, 0x00, 0x09, +0x00, 0x0A, 0x00, 0x00, 0x00, 0x01, 0x00, 0x23, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, +0x00, 0x28, 0x08, 0x30, 0x07, 0x72, 0x06, 0xAE, 0x06, 0x26, 0x06, 0x26, 0x05, 0xEE, 0x05, 0x98, +0x05, 0x98, 0x05, 0x0A, 0x04, 0x80, 0x04, 0x22, 0x04, 0x0E, 0x04, 0x0E, 0x04, 0x0E, 0x04, 0x0E, +0x04, 0x0E, 0x03, 0xEC, 0x03, 0xEC, 0x03, 0xBE, 0x03, 0x82, 0x03, 0x74, 0x03, 0x66, 0x03, 0x4E, +0x03, 0x4E, 0x03, 0x40, 0x03, 0x32, 0x03, 0x24, 0x03, 0x10, 0x03, 0x32, 0x02, 0xC8, 0x02, 0xBA, +0x02, 0xBA, 0x02, 0x7C, 0x02, 0x5A, 0x02, 0x38, 0x01, 0x6A, 0x01, 0x40, 0x01, 0x02, 0x00, 0xEE, +0x00, 0x52, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x72, 0x00, 0x36, +0x00, 0xF2, 0x00, 0xF3, 0x00, 0xF4, 0x00, 0xF5, 0x00, 0xF6, 0x00, 0xF7, 0x00, 0xF8, 0x00, 0xF9, +0x00, 0xFA, 0x00, 0xFB, 0x00, 0xFC, 0x00, 0xFD, 0x00, 0xFE, 0x00, 0xFF, 0x01, 0x00, 0x01, 0x01, +0x01, 0x02, 0x01, 0x03, 0x01, 0x04, 0x01, 0x05, 0x01, 0x06, 0x01, 0xF8, 0x01, 0xF9, 0x01, 0xFA, +0x01, 0xFB, 0x01, 0xFC, 0x01, 0xFD, 0x01, 0xFE, 0x01, 0xFF, 0x02, 0x00, 0x02, 0x01, 0x02, 0x02, +0x02, 0x03, 0x02, 0x04, 0x02, 0x05, 0x02, 0x06, 0x02, 0x07, 0x02, 0x08, 0x02, 0x09, 0x02, 0x0A, +0x02, 0x0B, 0x02, 0x0C, 0x02, 0x0D, 0x02, 0x0E, 0x02, 0x0F, 0x02, 0x10, 0x02, 0x11, 0x02, 0x12, +0x02, 0x13, 0x02, 0x14, 0x02, 0x15, 0x02, 0x16, 0x02, 0x17, 0x02, 0x18, 0x00, 0x02, 0x00, 0x05, +0x00, 0x53, 0x00, 0x65, 0x00, 0x00, 0x00, 0x69, 0x00, 0x69, 0x00, 0x13, 0x00, 0x75, 0x00, 0x75, +0x00, 0x14, 0x01, 0x07, 0x01, 0x20, 0x00, 0x15, 0x01, 0x4B, 0x01, 0x51, 0x00, 0x2F, 0x00, 0x01, +0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x01, 0x00, 0x01, +0x02, 0x26, 0x00, 0x04, 0x00, 0x08, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x5A, 0x00, 0x01, +0x00, 0x08, 0x00, 0x05, 0x00, 0x26, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x12, 0x00, 0x0C, 0x02, 0x1F, +0x00, 0x02, 0x01, 0x6F, 0x02, 0x1E, 0x00, 0x02, 0x01, 0x57, 0x02, 0x19, 0x00, 0x02, 0x01, 0x4A, +0x02, 0x1C, 0x00, 0x03, 0x01, 0x4A, 0x01, 0x6F, 0x02, 0x1A, 0x00, 0x03, 0x01, 0x4A, 0x01, 0x57, +0x00, 0x04, 0x00, 0x08, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x1C, 0x00, 0x01, 0x00, 0x08, +0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x02, 0x1D, 0x00, 0x02, 0x01, 0x65, 0x02, 0x1B, 0x00, 0x03, +0x01, 0x4A, 0x01, 0x65, 0x00, 0x01, 0x00, 0x01, 0x01, 0x4A, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, +0x00, 0x08, 0x00, 0x02, 0x00, 0x74, 0x00, 0x37, 0x02, 0x78, 0x02, 0x79, 0x02, 0x7A, 0x02, 0x7B, +0x02, 0x7D, 0x02, 0x86, 0x02, 0x87, 0x02, 0x88, 0x02, 0x8F, 0x02, 0x90, 0x02, 0x91, 0x02, 0x92, +0x02, 0x93, 0x02, 0x94, 0x02, 0xA1, 0x02, 0xA2, 0x02, 0xA3, 0x02, 0xA4, 0x02, 0xB6, 0x03, 0x34, +0x03, 0x33, 0x03, 0x36, 0x03, 0x35, 0x03, 0x2E, 0x03, 0x2D, 0x03, 0x30, 0x03, 0x2F, 0x03, 0x23, +0x03, 0x24, 0x03, 0x25, 0x03, 0x26, 0x03, 0x27, 0x03, 0x28, 0x03, 0x29, 0x03, 0x2A, 0x03, 0x2B, +0x03, 0x2C, 0x03, 0x31, 0x03, 0x32, 0x03, 0x37, 0x03, 0x38, 0x03, 0x39, 0x03, 0x3A, 0x03, 0x3B, +0x03, 0x3C, 0x03, 0x3D, 0x03, 0x3E, 0x03, 0x3F, 0x03, 0x40, 0x03, 0x41, 0x03, 0x42, 0x03, 0x43, +0x03, 0x44, 0x03, 0x45, 0x03, 0x46, 0x00, 0x02, 0x00, 0x0D, 0x02, 0x72, 0x02, 0x73, 0x00, 0x00, +0x02, 0x76, 0x02, 0x77, 0x00, 0x02, 0x02, 0x7C, 0x02, 0x7C, 0x00, 0x04, 0x02, 0x7E, 0x02, 0x7E, +0x00, 0x05, 0x02, 0x80, 0x02, 0x81, 0x00, 0x06, 0x02, 0x89, 0x02, 0x8E, 0x00, 0x08, 0x02, 0x9B, +0x02, 0x9E, 0x00, 0x0E, 0x02, 0xA6, 0x02, 0xA6, 0x00, 0x12, 0x02, 0xEA, 0x02, 0xFA, 0x00, 0x13, +0x02, 0xFC, 0x02, 0xFD, 0x00, 0x24, 0x02, 0xFF, 0x03, 0x0B, 0x00, 0x26, 0x03, 0x0D, 0x03, 0x0D, +0x00, 0x33, 0x03, 0x10, 0x03, 0x12, 0x00, 0x34, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, +0x00, 0x01, 0x00, 0x14, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x04, 0x02, 0xB5, 0x00, 0x03, +0x01, 0x86, 0x02, 0x69, 0x00, 0x01, 0x00, 0x01, 0x00, 0x74, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, +0x00, 0x08, 0x00, 0x02, 0x00, 0x0E, 0x00, 0x04, 0x02, 0x20, 0x02, 0x21, 0x02, 0x20, 0x02, 0x21, +0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x80, 0x01, 0x07, 0x01, 0x86, 0x00, 0x06, 0x00, 0x00, +0x00, 0x02, 0x00, 0x24, 0x00, 0x0A, 0x00, 0x03, 0x00, 0x01, 0x00, 0xD6, 0x00, 0x01, 0x00, 0x12, +0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x21, 0x00, 0x01, 0x00, 0x02, 0x00, 0x80, 0x01, 0x86, +0x00, 0x03, 0x00, 0x01, 0x00, 0xBC, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, +0x00, 0x21, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x01, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, +0x00, 0x08, 0x00, 0x01, 0x00, 0x3E, 0xFF, 0xEC, 0x00, 0x06, 0x00, 0x00, 0x00, 0x02, 0x00, 0x26, +0x00, 0x0A, 0x00, 0x03, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x00, 0x2E, 0x00, 0x00, 0x00, 0x01, +0x00, 0x00, 0x00, 0x1F, 0x00, 0x02, 0x00, 0x01, 0x02, 0x31, 0x02, 0x3A, 0x00, 0x00, 0x00, 0x03, +0x00, 0x01, 0x00, 0x1C, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1E, +0x00, 0x02, 0x00, 0x01, 0x02, 0x45, 0x02, 0x4E, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x02, 0x59, +0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0xFF, 0xE3, 0x00, 0x01, +0x00, 0x01, 0x02, 0x76, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x30, +0x00, 0x0B, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x22, 0x00, 0x1F, +0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x14, 0x00, 0x29, 0x00, 0x01, +0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0x00, 0x15, 0x00, 0x02, 0x00, 0x01, +0x02, 0x26, 0x02, 0x2F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, +0x00, 0x24, 0x00, 0x0B, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x16, +0x00, 0x0A, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, +0x00, 0x0E, 0x00, 0x01, 0x00, 0x01, 0x02, 0x72, 0x00, 0x02, 0x00, 0x16, 0x00, 0x06, 0x00, 0x01, +0x00, 0x68, 0x00, 0x01, 0x00, 0x01, 0x00, 0x68, 0x00, 0x01, 0x00, 0x00, 0x00, 0x15, 0x00, 0x01, +0x01, 0x6F, 0x00, 0x01, 0x00, 0x01, 0x01, 0x6F, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x04, +0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x1E, 0x00, 0x02, 0x00, 0x14, 0x00, 0x0A, +0x00, 0x01, 0x00, 0x04, 0x01, 0xF7, 0x00, 0x02, 0x01, 0x69, 0x00, 0x01, 0x00, 0x04, 0x00, 0xF1, +0x00, 0x02, 0x00, 0x64, 0x00, 0x01, 0x00, 0x02, 0x00, 0x55, 0x01, 0x59, 0x00, 0x01, 0x00, 0x00, +0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x0E, 0x00, 0x04, 0x00, 0xB6, 0x00, 0xC0, 0x01, 0xBC, +0x01, 0xC5, 0x00, 0x01, 0x00, 0x04, 0x00, 0xB4, 0x00, 0xBF, 0x01, 0xBA, 0x01, 0xC4, 0x00, 0x01, +0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0x00, 0x09, 0x00, 0x01, 0x00, 0x01, +0x01, 0x57, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x4E, 0x00, 0x02, +0x00, 0x2C, 0x00, 0x0A, 0x00, 0x04, 0x00, 0x1C, 0x00, 0x16, 0x00, 0x10, 0x00, 0x0A, 0x02, 0xED, +0x00, 0x02, 0x03, 0x01, 0x02, 0xEC, 0x00, 0x02, 0x03, 0x09, 0x02, 0xEB, 0x00, 0x02, 0x02, 0xF7, +0x02, 0xEA, 0x00, 0x02, 0x02, 0xF8, 0x00, 0x04, 0x00, 0x1C, 0x00, 0x16, 0x00, 0x10, 0x00, 0x0A, +0x02, 0xF1, 0x00, 0x02, 0x03, 0x01, 0x02, 0xF0, 0x00, 0x02, 0x03, 0x09, 0x02, 0xEF, 0x00, 0x02, +0x02, 0xF7, 0x02, 0xEE, 0x00, 0x02, 0x02, 0xF8, 0x00, 0x01, 0x00, 0x02, 0x02, 0xFC, 0x02, 0xFF, +0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x1E, 0x00, 0x0C, 0x00, 0x7C, +0x00, 0x76, 0x00, 0x70, 0x00, 0x6A, 0x00, 0x64, 0x00, 0x5E, 0x00, 0x58, 0x00, 0x52, 0x00, 0x4C, +0x00, 0x46, 0x00, 0x40, 0x00, 0x3A, 0x00, 0x01, 0x00, 0x0C, 0x00, 0x27, 0x00, 0x2E, 0x00, 0x69, +0x00, 0x6D, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x7C, 0x01, 0x31, 0x01, 0x75, 0x01, 0x82, 0x02, 0x1E, +0x02, 0x1F, 0x00, 0x02, 0x01, 0x4A, 0x01, 0x6F, 0x00, 0x02, 0x01, 0x4A, 0x01, 0x57, 0x00, 0x02, +0x01, 0x7A, 0x01, 0x69, 0x00, 0x02, 0x01, 0x6F, 0x01, 0x69, 0x00, 0x02, 0x01, 0x2B, 0x01, 0xF4, +0x00, 0x02, 0x00, 0x74, 0x01, 0x69, 0x00, 0x02, 0x00, 0x74, 0x00, 0x64, 0x00, 0x02, 0x00, 0x68, +0x01, 0x69, 0x00, 0x02, 0x00, 0x68, 0x02, 0x7D, 0x00, 0x02, 0x00, 0x68, 0x00, 0x64, 0x00, 0x02, +0x00, 0x25, 0x01, 0xF4, 0x00, 0x02, 0x00, 0x25, 0x00, 0xEE, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, +0x00, 0x08, 0x00, 0x01, 0x00, 0x76, 0x00, 0x06, 0x00, 0x64, 0x00, 0x5A, 0x00, 0x50, 0x00, 0x46, +0x00, 0x2C, 0x00, 0x12, 0x00, 0x03, 0x00, 0x14, 0x00, 0x0E, 0x00, 0x08, 0x03, 0x07, 0x00, 0x02, +0x02, 0xF7, 0x03, 0x06, 0x00, 0x02, 0x02, 0xF2, 0x03, 0x08, 0x00, 0x02, 0x02, 0xF8, 0x00, 0x03, +0x00, 0x14, 0x00, 0x0E, 0x00, 0x08, 0x03, 0x04, 0x00, 0x02, 0x03, 0x05, 0x03, 0x02, 0x00, 0x02, +0x02, 0xF2, 0x03, 0x03, 0x00, 0x02, 0x02, 0xF8, 0x00, 0x01, 0x00, 0x04, 0x02, 0xFE, 0x00, 0x02, +0x02, 0xF5, 0x00, 0x01, 0x00, 0x04, 0x02, 0xF9, 0x00, 0x02, 0x02, 0xF5, 0x00, 0x01, 0x00, 0x04, +0x02, 0xF6, 0x00, 0x02, 0x03, 0x05, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x02, 0xF4, 0x00, 0x02, +0x03, 0x05, 0x02, 0xF3, 0x00, 0x02, 0x02, 0xF8, 0x00, 0x01, 0x00, 0x06, 0x02, 0xF2, 0x02, 0xF5, +0x02, 0xF8, 0x02, 0xFD, 0x03, 0x01, 0x03, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, +0x00, 0x02, 0x01, 0x50, 0x00, 0x24, 0x03, 0x34, 0x03, 0x33, 0x03, 0x36, 0x03, 0x35, 0x03, 0x2E, +0x03, 0x2D, 0x03, 0x30, 0x03, 0x2F, 0x03, 0x23, 0x03, 0x24, 0x03, 0x25, 0x03, 0x26, 0x03, 0x27, +0x03, 0x28, 0x03, 0x29, 0x03, 0x2A, 0x03, 0x2B, 0x03, 0x2C, 0x03, 0x31, 0x03, 0x32, 0x03, 0x37, +0x03, 0x38, 0x03, 0x39, 0x03, 0x3A, 0x03, 0x3B, 0x03, 0x3C, 0x03, 0x3D, 0x03, 0x3E, 0x03, 0x3F, +0x03, 0x40, 0x03, 0x41, 0x03, 0x42, 0x03, 0x43, 0x03, 0x44, 0x03, 0x45, 0x03, 0x46, 0x00, 0x06, +0x00, 0x00, 0x00, 0x02, 0x00, 0x1C, 0x00, 0x0A, 0x00, 0x03, 0x00, 0x01, 0x00, 0x24, 0x00, 0x01, +0x00, 0xF8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, +0x00, 0xE6, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x00, 0x02, 0x00, 0x01, +0x03, 0x23, 0x03, 0x46, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, +0x00, 0x52, 0x00, 0x26, 0x01, 0x58, 0x01, 0x6A, 0x03, 0x34, 0x03, 0x33, 0x03, 0x36, 0x03, 0x35, +0x03, 0x2E, 0x03, 0x2D, 0x03, 0x30, 0x03, 0x2F, 0x03, 0x23, 0x03, 0x24, 0x03, 0x25, 0x03, 0x26, +0x03, 0x27, 0x03, 0x28, 0x03, 0x29, 0x03, 0x2A, 0x03, 0x2B, 0x03, 0x2C, 0x03, 0x31, 0x03, 0x32, +0x03, 0x37, 0x03, 0x38, 0x03, 0x39, 0x03, 0x3A, 0x03, 0x3B, 0x03, 0x3C, 0x03, 0x3D, 0x03, 0x3E, +0x03, 0x3F, 0x03, 0x40, 0x03, 0x41, 0x03, 0x42, 0x03, 0x43, 0x03, 0x44, 0x03, 0x45, 0x03, 0x46, +0x00, 0x02, 0x00, 0x07, 0x01, 0x57, 0x01, 0x57, 0x00, 0x00, 0x01, 0x69, 0x01, 0x69, 0x00, 0x01, +0x02, 0xEA, 0x02, 0xFA, 0x00, 0x02, 0x02, 0xFC, 0x02, 0xFD, 0x00, 0x13, 0x02, 0xFF, 0x03, 0x0B, +0x00, 0x15, 0x03, 0x0D, 0x03, 0x0D, 0x00, 0x22, 0x03, 0x10, 0x03, 0x12, 0x00, 0x23, 0x00, 0x06, +0x00, 0x00, 0x00, 0x04, 0x00, 0x88, 0x00, 0x64, 0x00, 0x30, 0x00, 0x0E, 0x00, 0x03, 0x00, 0x01, +0x00, 0x12, 0x00, 0x01, 0x00, 0x34, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, +0x00, 0x02, 0x00, 0x01, 0x01, 0x06, 0x00, 0x00, 0x02, 0x22, 0x02, 0x23, 0x01, 0x06, 0x00, 0x03, +0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, +0x00, 0x02, 0x00, 0x05, 0x02, 0xEA, 0x02, 0xFA, 0x00, 0x00, 0x02, 0xFC, 0x02, 0xFD, 0x00, 0x11, +0x02, 0xFF, 0x03, 0x0B, 0x00, 0x13, 0x03, 0x0D, 0x03, 0x0D, 0x00, 0x20, 0x03, 0x10, 0x03, 0x12, +0x00, 0x21, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x58, 0x00, 0x02, 0x00, 0x14, 0x00, 0x36, +0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x02, 0x03, 0x0D, 0x03, 0x0F, 0x00, 0x00, +0x03, 0x11, 0x03, 0x15, 0x00, 0x03, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x34, 0x00, 0x01, +0x00, 0x12, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x00, 0x0F, 0x02, 0xF2, 0x02, 0xF5, +0x02, 0xF7, 0x02, 0xF8, 0x02, 0xFA, 0x02, 0xFC, 0x02, 0xFD, 0x02, 0xFF, 0x03, 0x00, 0x03, 0x01, +0x03, 0x05, 0x03, 0x09, 0x03, 0x0A, 0x03, 0x0B, 0x03, 0x0C, 0x00, 0x01, 0x00, 0x02, 0x01, 0x57, +0x01, 0x69, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x20, 0x00, 0x0D, +0x00, 0xB0, 0x00, 0xA4, 0x00, 0x9A, 0x00, 0x90, 0x00, 0x86, 0x00, 0x7C, 0x00, 0x72, 0x00, 0x68, +0x00, 0x5E, 0x00, 0x54, 0x00, 0x4A, 0x00, 0x42, 0x00, 0x3C, 0x00, 0x02, 0x00, 0x04, 0x01, 0x07, +0x01, 0x07, 0x00, 0x00, 0x02, 0x26, 0x02, 0x2F, 0x00, 0x01, 0x02, 0x72, 0x02, 0x72, 0x00, 0x0B, +0x02, 0x76, 0x02, 0x76, 0x00, 0x0C, 0x00, 0x02, 0x02, 0x59, 0x02, 0x7A, 0x00, 0x03, 0x02, 0x78, +0x02, 0x7C, 0x02, 0x7D, 0x00, 0x04, 0x02, 0x3A, 0x02, 0x44, 0x02, 0x4E, 0x02, 0x58, 0x00, 0x04, +0x02, 0x39, 0x02, 0x43, 0x02, 0x4D, 0x02, 0x57, 0x00, 0x04, 0x02, 0x38, 0x02, 0x42, 0x02, 0x4C, +0x02, 0x56, 0x00, 0x04, 0x02, 0x37, 0x02, 0x41, 0x02, 0x4B, 0x02, 0x55, 0x00, 0x04, 0x02, 0x36, +0x02, 0x40, 0x02, 0x4A, 0x02, 0x54, 0x00, 0x04, 0x02, 0x35, 0x02, 0x3F, 0x02, 0x49, 0x02, 0x53, +0x00, 0x04, 0x02, 0x34, 0x02, 0x3E, 0x02, 0x48, 0x02, 0x52, 0x00, 0x04, 0x02, 0x33, 0x02, 0x3D, +0x02, 0x47, 0x02, 0x51, 0x00, 0x04, 0x02, 0x32, 0x02, 0x3C, 0x02, 0x46, 0x02, 0x50, 0x00, 0x05, +0x02, 0x30, 0x02, 0x31, 0x02, 0x3B, 0x02, 0x45, 0x02, 0x4F, 0x00, 0x02, 0x01, 0xF8, 0x02, 0x20, +0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0xFE, 0x00, 0x7C, 0x02, 0x20, +0x00, 0xF2, 0x00, 0xF3, 0x00, 0xF4, 0x00, 0xF5, 0x00, 0xF6, 0x00, 0xF7, 0x00, 0xF8, 0x00, 0xF9, +0x00, 0xFA, 0x00, 0xFB, 0x00, 0xFC, 0x00, 0xFD, 0x00, 0xFE, 0x00, 0xFF, 0x01, 0x00, 0x01, 0x01, +0x01, 0x02, 0x01, 0x03, 0x01, 0x04, 0x01, 0x05, 0x01, 0x06, 0x02, 0x21, 0x00, 0xB6, 0x00, 0xC0, +0x01, 0xF9, 0x01, 0xFA, 0x01, 0xFB, 0x01, 0xFC, 0x01, 0xFD, 0x01, 0xFE, 0x01, 0xFF, 0x02, 0x00, +0x02, 0x01, 0x02, 0x02, 0x02, 0x03, 0x02, 0x04, 0x02, 0x05, 0x02, 0x06, 0x02, 0x07, 0x02, 0x08, +0x02, 0x09, 0x02, 0x0A, 0x02, 0x0B, 0x02, 0x0C, 0x02, 0x0D, 0x02, 0x0E, 0x02, 0x0F, 0x02, 0x10, +0x02, 0x11, 0x02, 0x12, 0x02, 0x13, 0x02, 0x14, 0x02, 0x15, 0x02, 0x16, 0x02, 0x17, 0x02, 0x18, +0x01, 0x60, 0x02, 0x21, 0x01, 0xBC, 0x01, 0xC5, 0x02, 0x31, 0x02, 0x32, 0x02, 0x33, 0x02, 0x34, +0x02, 0x35, 0x02, 0x36, 0x02, 0x37, 0x02, 0x38, 0x02, 0x39, 0x02, 0x3A, 0x02, 0x79, 0x02, 0x7B, +0x02, 0x7D, 0x02, 0x86, 0x02, 0x87, 0x02, 0x88, 0x02, 0x8F, 0x02, 0x90, 0x02, 0x91, 0x02, 0x92, +0x02, 0x93, 0x02, 0x94, 0x02, 0xA1, 0x02, 0xA2, 0x02, 0xA3, 0x02, 0xA4, 0x02, 0xB6, 0x03, 0x34, +0x03, 0x33, 0x03, 0x36, 0x03, 0x35, 0x03, 0x2E, 0x03, 0x2D, 0x03, 0x30, 0x03, 0x2F, 0x03, 0x23, +0x03, 0x24, 0x03, 0x25, 0x03, 0x26, 0x03, 0x27, 0x03, 0x28, 0x03, 0x29, 0x03, 0x2A, 0x03, 0x2B, +0x03, 0x2C, 0x03, 0x31, 0x03, 0x32, 0x03, 0x37, 0x03, 0x38, 0x03, 0x39, 0x03, 0x3A, 0x03, 0x3B, +0x03, 0x3C, 0x03, 0x3D, 0x03, 0x3E, 0x03, 0x3F, 0x03, 0x40, 0x03, 0x41, 0x03, 0x42, 0x03, 0x43, +0x03, 0x44, 0x03, 0x45, 0x03, 0x46, 0x00, 0x02, 0x00, 0x1B, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, +0x00, 0x53, 0x00, 0x65, 0x00, 0x01, 0x00, 0x69, 0x00, 0x69, 0x00, 0x14, 0x00, 0x75, 0x00, 0x75, +0x00, 0x15, 0x00, 0x80, 0x00, 0x80, 0x00, 0x16, 0x00, 0xB4, 0x00, 0xB4, 0x00, 0x17, 0x00, 0xBF, +0x00, 0xBF, 0x00, 0x18, 0x01, 0x08, 0x01, 0x20, 0x00, 0x19, 0x01, 0x4B, 0x01, 0x51, 0x00, 0x32, +0x01, 0x57, 0x01, 0x57, 0x00, 0x39, 0x01, 0x86, 0x01, 0x86, 0x00, 0x3A, 0x01, 0xBA, 0x01, 0xBA, +0x00, 0x3B, 0x01, 0xC4, 0x01, 0xC4, 0x00, 0x3C, 0x02, 0x45, 0x02, 0x4E, 0x00, 0x3D, 0x02, 0x73, +0x02, 0x73, 0x00, 0x47, 0x02, 0x77, 0x02, 0x77, 0x00, 0x48, 0x02, 0x7C, 0x02, 0x7C, 0x00, 0x49, +0x02, 0x7E, 0x02, 0x7E, 0x00, 0x4A, 0x02, 0x80, 0x02, 0x81, 0x00, 0x4B, 0x02, 0x89, 0x02, 0x8E, +0x00, 0x4D, 0x02, 0x9B, 0x02, 0x9E, 0x00, 0x53, 0x02, 0xA6, 0x02, 0xA6, 0x00, 0x57, 0x02, 0xEA, +0x02, 0xFA, 0x00, 0x58, 0x02, 0xFC, 0x02, 0xFD, 0x00, 0x69, 0x02, 0xFF, 0x03, 0x0B, 0x00, 0x6B, +0x03, 0x0D, 0x03, 0x0D, 0x00, 0x78, 0x03, 0x10, 0x03, 0x12, 0x00, 0x79, 0x02, 0x48, 0x00, 0x28, +0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, +0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, +0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, +0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, +0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, +0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, +0x02, 0xBC, 0x00, 0x19, 0x02, 0xBC, 0x00, 0x19, 0x03, 0xC9, 0x00, 0x05, 0x03, 0xC9, 0x00, 0x05, +0x02, 0xA9, 0x00, 0x62, 0x02, 0xA7, 0x00, 0x30, 0x02, 0xA7, 0x00, 0x30, 0x02, 0xA7, 0x00, 0x30, +0x02, 0xA7, 0x00, 0x30, 0x02, 0xA7, 0x00, 0x30, 0x02, 0xA7, 0x00, 0x30, 0x02, 0xA7, 0x00, 0x30, +0x02, 0xEC, 0x00, 0x62, 0x05, 0x52, 0x00, 0x62, 0x05, 0x52, 0x00, 0x62, 0x02, 0xEC, 0x00, 0x31, +0x02, 0xEC, 0x00, 0x62, 0x02, 0xEC, 0x00, 0x31, 0x02, 0xEC, 0x00, 0x62, 0x02, 0xEC, 0x00, 0x62, +0x04, 0xCF, 0x00, 0x62, 0x04, 0xCF, 0x00, 0x62, 0x02, 0x66, 0x00, 0x62, 0x02, 0x66, 0x00, 0x62, +0x02, 0x66, 0x00, 0x62, 0x02, 0x66, 0x00, 0x62, 0x02, 0x66, 0x00, 0x62, 0x02, 0x66, 0x00, 0x62, +0x02, 0x66, 0x00, 0x62, 0x02, 0x66, 0x00, 0x62, 0x02, 0x66, 0x00, 0x62, 0x02, 0x66, 0x00, 0x62, +0x02, 0x66, 0x00, 0x62, 0x02, 0x66, 0x00, 0x4A, 0x02, 0x66, 0x00, 0x62, 0x02, 0x66, 0x00, 0x62, +0x02, 0x66, 0x00, 0x62, 0x02, 0x66, 0x00, 0x62, 0x02, 0x66, 0x00, 0x62, 0x02, 0x66, 0x00, 0x62, +0x02, 0x66, 0x00, 0x62, 0x02, 0x66, 0x00, 0x62, 0x02, 0x66, 0x00, 0x62, 0x02, 0x66, 0x00, 0x62, +0x02, 0x66, 0x00, 0x62, 0x02, 0x5A, 0x00, 0x62, 0x02, 0xFE, 0x00, 0x30, 0x02, 0xFE, 0x00, 0x30, +0x02, 0xFE, 0x00, 0x30, 0x02, 0xFE, 0x00, 0x30, 0x02, 0xFE, 0x00, 0x30, 0x02, 0xFE, 0x00, 0x30, +0x02, 0xFE, 0x00, 0x30, 0x02, 0xF9, 0x00, 0x62, 0x03, 0x59, 0x00, 0x39, 0x02, 0xF9, 0x00, 0x62, +0x02, 0xF9, 0x00, 0x62, 0x02, 0xF9, 0x00, 0x62, 0x01, 0xDE, 0x00, 0x48, 0x04, 0x60, 0x00, 0x48, +0x01, 0xDE, 0x00, 0x48, 0x01, 0xDE, 0x00, 0x48, 0x01, 0xDE, 0x00, 0x48, 0x01, 0xDE, 0x00, 0x48, +0x01, 0xDE, 0xFF, 0xF2, 0x01, 0xDE, 0x00, 0x43, 0x01, 0xDE, 0x00, 0x43, 0x01, 0xDE, 0x00, 0x48, +0x01, 0xDE, 0x00, 0x48, 0x01, 0xDE, 0x00, 0x48, 0x01, 0xDE, 0x00, 0x48, 0x01, 0xDE, 0x00, 0x48, +0x01, 0xDE, 0x00, 0x48, 0x01, 0xDE, 0x00, 0x48, 0x01, 0xDE, 0x00, 0x40, 0x02, 0x82, 0x00, 0x32, +0x02, 0x82, 0x00, 0x32, 0x02, 0xDC, 0x00, 0x62, 0x02, 0xDC, 0x00, 0x62, 0x02, 0x57, 0x00, 0x62, +0x04, 0xD9, 0x00, 0x62, 0x02, 0x57, 0x00, 0x39, 0x02, 0x57, 0x00, 0x62, 0x02, 0x57, 0x00, 0x62, +0x02, 0x57, 0x00, 0x62, 0x02, 0x57, 0x00, 0x62, 0x03, 0x60, 0x00, 0x62, 0x02, 0x57, 0x00, 0x62, +0x02, 0x7E, 0x00, 0x28, 0x03, 0x60, 0x00, 0x62, 0x03, 0x60, 0x00, 0x62, 0x03, 0x19, 0x00, 0x62, +0x05, 0x9B, 0x00, 0x62, 0x03, 0x19, 0x00, 0x62, 0x03, 0x19, 0x00, 0x62, 0x03, 0x19, 0x00, 0x62, +0x03, 0x19, 0x00, 0x62, 0x03, 0x19, 0x00, 0x62, 0x03, 0x09, 0xFF, 0xDE, 0x04, 0x22, 0x00, 0x62, +0x03, 0x19, 0x00, 0x62, 0x03, 0x19, 0x00, 0x62, 0x03, 0x19, 0x00, 0x62, 0x03, 0x0E, 0x00, 0x30, +0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, +0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, +0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, +0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, +0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, +0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, +0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, +0x03, 0x02, 0x00, 0x2F, 0x03, 0x02, 0x00, 0x2F, 0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, +0x03, 0x0E, 0x00, 0x30, 0x03, 0x0E, 0x00, 0x30, 0x04, 0x03, 0x00, 0x30, 0x02, 0x7A, 0x00, 0x62, +0x02, 0x7A, 0x00, 0x62, 0x03, 0x0E, 0x00, 0x30, 0x02, 0xB7, 0x00, 0x62, 0x02, 0xB7, 0x00, 0x62, +0x02, 0xB7, 0x00, 0x62, 0x02, 0xB7, 0x00, 0x62, 0x02, 0xB7, 0x00, 0x41, 0x02, 0xB7, 0x00, 0x62, +0x02, 0xB7, 0x00, 0x62, 0x02, 0xB7, 0x00, 0x62, 0x02, 0x70, 0x00, 0x32, 0x02, 0x70, 0x00, 0x32, +0x02, 0x70, 0x00, 0x32, 0x02, 0x70, 0x00, 0x32, 0x02, 0x70, 0x00, 0x32, 0x02, 0x70, 0x00, 0x32, +0x02, 0x70, 0x00, 0x32, 0x02, 0x70, 0x00, 0x32, 0x02, 0x70, 0x00, 0x32, 0x02, 0x70, 0x00, 0x32, +0x02, 0x70, 0x00, 0x32, 0x02, 0xFA, 0x00, 0x62, 0x03, 0x0C, 0x00, 0x30, 0x02, 0x40, 0x00, 0x23, +0x02, 0x40, 0x00, 0x23, 0x02, 0x40, 0x00, 0x23, 0x02, 0x40, 0x00, 0x23, 0x02, 0x40, 0x00, 0x23, +0x02, 0x40, 0x00, 0x23, 0x02, 0x40, 0x00, 0x23, 0x02, 0xE4, 0x00, 0x58, 0x02, 0xE4, 0x00, 0x58, +0x02, 0xE4, 0x00, 0x58, 0x02, 0xE4, 0x00, 0x58, 0x02, 0xE4, 0x00, 0x58, 0x02, 0xE4, 0x00, 0x58, +0x02, 0xE4, 0x00, 0x58, 0x02, 0xE4, 0x00, 0x58, 0x02, 0xE4, 0x00, 0x58, 0x02, 0xE4, 0x00, 0x58, +0x02, 0xE4, 0x00, 0x58, 0x02, 0xE4, 0x00, 0x58, 0x02, 0xE4, 0x00, 0x58, 0x02, 0xE4, 0x00, 0x58, +0x02, 0xE4, 0x00, 0x58, 0x02, 0xE4, 0x00, 0x58, 0x02, 0xE4, 0x00, 0x58, 0x02, 0xE4, 0x00, 0x58, +0x02, 0xE4, 0x00, 0x58, 0x02, 0xE4, 0x00, 0x58, 0x02, 0xE4, 0x00, 0x58, 0x02, 0xE4, 0x00, 0x58, +0x02, 0xE4, 0x00, 0x58, 0x02, 0xE4, 0x00, 0x58, 0x02, 0xCB, 0x00, 0x18, 0x03, 0xE4, 0x00, 0x18, +0x03, 0xE4, 0x00, 0x18, 0x03, 0xE4, 0x00, 0x18, 0x03, 0xE4, 0x00, 0x18, 0x03, 0xE4, 0x00, 0x18, +0x02, 0xAD, 0x00, 0x18, 0x02, 0x94, 0x00, 0x0A, 0x02, 0x94, 0x00, 0x0A, 0x02, 0x94, 0x00, 0x0A, +0x02, 0x94, 0x00, 0x0A, 0x02, 0x94, 0x00, 0x0A, 0x02, 0x94, 0x00, 0x0A, 0x02, 0x94, 0x00, 0x0A, +0x02, 0x94, 0x00, 0x0A, 0x02, 0x94, 0x00, 0x0A, 0x02, 0x94, 0x00, 0x0A, 0x02, 0x93, 0x00, 0x3C, +0x02, 0x93, 0x00, 0x3C, 0x02, 0x93, 0x00, 0x3C, 0x02, 0x93, 0x00, 0x3C, 0x02, 0x93, 0x00, 0x3C, +0x04, 0x60, 0x00, 0x48, 0x01, 0x34, 0x00, 0x64, 0x03, 0x7A, 0x00, 0x64, 0x01, 0x34, 0x00, 0x3A, +0x01, 0x34, 0xFF, 0xF8, 0x01, 0x34, 0xFF, 0xF7, 0x01, 0x34, 0xFF, 0xF9, 0x01, 0x34, 0xFF, 0x9D, +0x01, 0x34, 0xFF, 0xEE, 0x01, 0x34, 0xFF, 0xEE, 0x01, 0x34, 0x00, 0x55, 0x01, 0x34, 0x00, 0x55, +0x01, 0x34, 0x00, 0x1C, 0x01, 0x34, 0x00, 0x38, 0x01, 0x34, 0xFF, 0xF8, 0x01, 0x34, 0xFF, 0xF4, +0x01, 0x34, 0x00, 0x09, 0x01, 0x34, 0xFF, 0xEB, 0x02, 0x46, 0x00, 0x32, 0x02, 0x46, 0x00, 0x32, +0x04, 0x9D, 0x00, 0x62, 0x05, 0x5F, 0x00, 0x62, 0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, +0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, +0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, +0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, +0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, +0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, +0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, 0x02, 0x79, 0x00, 0x26, +0x03, 0x83, 0x00, 0x26, 0x03, 0x83, 0x00, 0x26, 0x02, 0x76, 0x00, 0x48, 0x02, 0x17, 0x00, 0x28, +0x02, 0x17, 0x00, 0x28, 0x02, 0x17, 0x00, 0x28, 0x02, 0x17, 0x00, 0x28, 0x02, 0x17, 0x00, 0x28, +0x02, 0x17, 0x00, 0x28, 0x02, 0x17, 0x00, 0x28, 0x02, 0x7A, 0x00, 0x28, 0x02, 0x3E, 0x00, 0x28, +0x02, 0x8D, 0x00, 0x28, 0x02, 0x7A, 0x00, 0x28, 0x02, 0x7A, 0x00, 0x28, 0x02, 0x7A, 0x00, 0x28, +0x04, 0x5E, 0x00, 0x28, 0x02, 0x4A, 0x00, 0x28, 0x02, 0x4A, 0x00, 0x28, 0x02, 0x4A, 0x00, 0x28, +0x02, 0x4A, 0x00, 0x28, 0x02, 0x4A, 0x00, 0x28, 0x02, 0x4A, 0x00, 0x28, 0x02, 0x4A, 0x00, 0x28, +0x02, 0x4A, 0x00, 0x28, 0x02, 0x4A, 0x00, 0x28, 0x02, 0x4A, 0x00, 0x28, 0x02, 0x4A, 0x00, 0x28, +0x02, 0x4A, 0x00, 0x26, 0x02, 0x4A, 0x00, 0x28, 0x02, 0x4A, 0x00, 0x28, 0x02, 0x4A, 0x00, 0x28, +0x02, 0x4A, 0x00, 0x28, 0x02, 0x4A, 0x00, 0x28, 0x02, 0x4A, 0x00, 0x28, 0x02, 0x4A, 0x00, 0x28, +0x02, 0x4A, 0x00, 0x28, 0x02, 0x4A, 0x00, 0x28, 0x02, 0x4A, 0x00, 0x28, 0x02, 0x4A, 0x00, 0x28, +0x02, 0x4A, 0x00, 0x28, 0x01, 0x89, 0x00, 0x2D, 0x02, 0x89, 0x00, 0x28, 0x02, 0x89, 0x00, 0x28, +0x02, 0x89, 0x00, 0x28, 0x02, 0x89, 0x00, 0x28, 0x02, 0x89, 0x00, 0x28, 0x02, 0x89, 0x00, 0x28, +0x02, 0x89, 0x00, 0x28, 0x02, 0x53, 0x00, 0x48, 0x02, 0x53, 0x00, 0x0C, 0x02, 0x53, 0x00, 0x48, +0x02, 0x53, 0x00, 0x48, 0x02, 0x53, 0x00, 0x48, 0x01, 0x16, 0x00, 0x46, 0x00, 0xF3, 0x00, 0x46, +0x00, 0xF3, 0x00, 0x10, 0x00, 0xF3, 0xFF, 0xD6, 0x00, 0xF3, 0xFF, 0xE4, 0x00, 0xF3, 0xFF, 0xDA, +0x00, 0xF3, 0xFF, 0x6A, 0x00, 0xF3, 0xFF, 0xCF, 0x00, 0xF3, 0xFF, 0xD0, 0x00, 0xF3, 0x00, 0x33, +0x01, 0x16, 0x00, 0x46, 0x00, 0xF3, 0xFF, 0xFC, 0x00, 0xF3, 0x00, 0x16, 0x00, 0xF3, 0xFF, 0xD6, +0x02, 0x1F, 0x00, 0x46, 0x00, 0xF3, 0xFF, 0xEA, 0x00, 0xF3, 0xFF, 0xE6, 0x00, 0xF3, 0xFF, 0xD6, +0x01, 0x09, 0xFF, 0xE2, 0x01, 0x07, 0xFF, 0xE1, 0x01, 0x07, 0xFF, 0xE1, 0x02, 0x38, 0x00, 0x48, +0x02, 0x38, 0x00, 0x48, 0x02, 0x2A, 0x00, 0x48, 0x00, 0xFB, 0x00, 0x4A, 0x00, 0xFB, 0x00, 0x1E, +0x01, 0x0F, 0x00, 0x4A, 0x00, 0xFB, 0x00, 0x34, 0x01, 0x5F, 0x00, 0x4A, 0x00, 0xFB, 0x00, 0x39, +0x01, 0xF6, 0x00, 0x4A, 0x00, 0xFB, 0xFF, 0xF1, 0x00, 0xFD, 0xFF, 0xFD, 0x03, 0x99, 0x00, 0x46, +0x03, 0x99, 0x00, 0x46, 0x02, 0x53, 0x00, 0x48, 0x02, 0x53, 0x00, 0x48, 0x02, 0x7C, 0xFF, 0xC8, +0x02, 0x53, 0x00, 0x48, 0x02, 0x53, 0x00, 0x48, 0x02, 0x53, 0x00, 0x48, 0x02, 0x53, 0x00, 0x48, +0x02, 0x61, 0xFF, 0xE2, 0x03, 0x5C, 0x00, 0x48, 0x02, 0x53, 0x00, 0x48, 0x02, 0x53, 0x00, 0x48, +0x02, 0x53, 0x00, 0x48, 0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, +0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, +0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x26, +0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, +0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, +0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, +0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, +0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, +0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, 0x02, 0x67, 0x00, 0x28, +0x03, 0xF9, 0x00, 0x28, 0x02, 0x77, 0x00, 0x48, 0x02, 0x77, 0x00, 0x48, 0x02, 0x76, 0x00, 0x28, +0x01, 0x93, 0x00, 0x48, 0x01, 0x93, 0x00, 0x48, 0x01, 0x93, 0x00, 0x48, 0x01, 0x93, 0x00, 0x32, +0x01, 0x93, 0xFF, 0xE4, 0x01, 0x93, 0x00, 0x37, 0x01, 0x93, 0x00, 0x48, 0x01, 0x93, 0xFF, 0xEF, +0x01, 0xDF, 0x00, 0x28, 0x01, 0xDF, 0x00, 0x28, 0x01, 0xDF, 0x00, 0x28, 0x01, 0xDF, 0x00, 0x28, +0x01, 0xDF, 0x00, 0x28, 0x01, 0xDF, 0x00, 0x28, 0x01, 0xDF, 0x00, 0x28, 0x01, 0xDF, 0x00, 0x28, +0x01, 0xDF, 0x00, 0x28, 0x01, 0xDF, 0x00, 0x28, 0x01, 0xDF, 0x00, 0x28, 0x02, 0x98, 0x00, 0x2D, +0x01, 0x80, 0x00, 0x1C, 0x01, 0x80, 0x00, 0x1C, 0x01, 0x80, 0x00, 0x1C, 0x01, 0x80, 0x00, 0x1C, +0x01, 0x80, 0x00, 0x1C, 0x01, 0x80, 0x00, 0x17, 0x01, 0x80, 0x00, 0x1C, 0x01, 0x80, 0x00, 0x1C, +0x02, 0x5D, 0x00, 0x48, 0x02, 0x5D, 0x00, 0x48, 0x02, 0x5D, 0x00, 0x48, 0x02, 0x5D, 0x00, 0x48, +0x02, 0x5D, 0x00, 0x48, 0x02, 0x5D, 0x00, 0x21, 0x02, 0x5D, 0x00, 0x48, 0x02, 0x5D, 0x00, 0x48, +0x02, 0x5D, 0x00, 0x48, 0x02, 0x5D, 0x00, 0x48, 0x02, 0x5D, 0x00, 0x48, 0x02, 0x5D, 0x00, 0x48, +0x02, 0x5D, 0x00, 0x48, 0x02, 0x5D, 0x00, 0x48, 0x02, 0x5D, 0x00, 0x48, 0x02, 0x5D, 0x00, 0x48, +0x02, 0x5D, 0x00, 0x48, 0x02, 0x5D, 0x00, 0x48, 0x02, 0x5D, 0x00, 0x48, 0x02, 0x5D, 0x00, 0x48, +0x02, 0x5D, 0x00, 0x48, 0x02, 0x5D, 0x00, 0x48, 0x02, 0x5D, 0x00, 0x48, 0x02, 0x5D, 0x00, 0x48, +0x02, 0x3D, 0x00, 0x16, 0x03, 0x20, 0x00, 0x16, 0x03, 0x20, 0x00, 0x16, 0x03, 0x20, 0x00, 0x16, +0x03, 0x20, 0x00, 0x16, 0x03, 0x20, 0x00, 0x16, 0x02, 0x32, 0x00, 0x0F, 0x02, 0x45, 0x00, 0x05, +0x02, 0x45, 0x00, 0x05, 0x02, 0x45, 0x00, 0x05, 0x02, 0x45, 0x00, 0x05, 0x02, 0x45, 0x00, 0x05, +0x02, 0x45, 0x00, 0x05, 0x02, 0x45, 0x00, 0x05, 0x02, 0x45, 0x00, 0x05, 0x02, 0x45, 0x00, 0x05, +0x02, 0x45, 0x00, 0x05, 0x01, 0xE4, 0x00, 0x32, 0x01, 0xE4, 0x00, 0x32, 0x01, 0xE4, 0x00, 0x32, +0x01, 0xE4, 0x00, 0x32, 0x01, 0xE4, 0x00, 0x32, 0x01, 0xFA, 0x00, 0x10, 0x02, 0x16, 0x00, 0x30, +0x02, 0x16, 0x00, 0x30, 0x02, 0x16, 0x00, 0x30, 0x02, 0x16, 0x00, 0x30, 0x02, 0x16, 0x00, 0x30, +0x02, 0x16, 0x00, 0x30, 0x02, 0x16, 0x00, 0x30, 0x02, 0x16, 0x00, 0x30, 0x02, 0x16, 0x00, 0x30, +0x02, 0x16, 0x00, 0x30, 0x02, 0x16, 0x00, 0x30, 0x02, 0x16, 0x00, 0x30, 0x02, 0x16, 0x00, 0x30, +0x02, 0x16, 0x00, 0x30, 0x02, 0x16, 0x00, 0x30, 0x02, 0x16, 0xFF, 0xFD, 0x02, 0x16, 0x00, 0x30, +0x02, 0x16, 0x00, 0x30, 0x02, 0x16, 0x00, 0x30, 0x02, 0x16, 0x00, 0x30, 0x02, 0x16, 0x00, 0x30, +0x02, 0x16, 0x00, 0x30, 0x02, 0x16, 0x00, 0x30, 0x02, 0x16, 0x00, 0x30, 0x02, 0x16, 0x00, 0x30, +0x02, 0x16, 0x00, 0x30, 0x02, 0x1A, 0x00, 0x1E, 0x02, 0x1A, 0x00, 0x1E, 0x02, 0x1A, 0x00, 0x1E, +0x02, 0x1A, 0x00, 0x1E, 0x02, 0x1A, 0x00, 0x1E, 0x02, 0x1A, 0x00, 0x1E, 0x02, 0x1A, 0x00, 0x1E, +0x03, 0x12, 0x00, 0x2D, 0x04, 0x28, 0x00, 0x2D, 0x05, 0x31, 0x00, 0x2D, 0x04, 0x0D, 0x00, 0x2D, +0x03, 0xA8, 0x00, 0x2D, 0x02, 0x9F, 0x00, 0x2D, 0x02, 0x84, 0x00, 0x2D, 0x01, 0x6D, 0x00, 0x0F, +0x01, 0x62, 0x00, 0x14, 0x02, 0xC7, 0x00, 0x0E, 0x02, 0xA3, 0x00, 0x19, 0x02, 0x4A, 0x00, 0x50, +0x02, 0x66, 0x00, 0x28, 0x02, 0x5F, 0x00, 0x2E, 0x01, 0xF4, 0x00, 0x57, 0x02, 0x24, 0x00, 0x33, +0x02, 0x11, 0x00, 0x14, 0x02, 0x6C, 0x00, 0x1E, 0x02, 0x38, 0x00, 0x27, 0x02, 0x2D, 0x00, 0x28, +0x02, 0x1E, 0x00, 0x3C, 0x02, 0x43, 0x00, 0x35, 0x02, 0x27, 0x00, 0x1E, 0x02, 0x5F, 0x00, 0x2E, +0x01, 0x6C, 0x00, 0x1E, 0x01, 0x19, 0x00, 0x2F, 0x01, 0x5A, 0x00, 0x2A, 0x01, 0x56, 0x00, 0x39, +0x01, 0x86, 0x00, 0x2D, 0x01, 0x66, 0x00, 0x32, 0x01, 0x57, 0x00, 0x23, 0x01, 0x46, 0x00, 0x35, +0x01, 0x61, 0x00, 0x2C, 0x01, 0x4D, 0x00, 0x23, 0x01, 0x6C, 0x00, 0x1E, 0x01, 0x19, 0x00, 0x2F, +0x01, 0x5A, 0x00, 0x2A, 0x01, 0x56, 0x00, 0x39, 0x01, 0x86, 0x00, 0x2D, 0x01, 0x66, 0x00, 0x32, +0x01, 0x57, 0x00, 0x23, 0x01, 0x46, 0x00, 0x35, 0x01, 0x61, 0x00, 0x2C, 0x01, 0x4D, 0x00, 0x23, +0x01, 0x6C, 0x00, 0x1E, 0x01, 0x19, 0x00, 0x2F, 0x01, 0x5A, 0x00, 0x2A, 0x01, 0x56, 0x00, 0x39, +0x01, 0x86, 0x00, 0x2D, 0x01, 0x66, 0x00, 0x32, 0x01, 0x57, 0x00, 0x23, 0x01, 0x46, 0x00, 0x35, +0x01, 0x61, 0x00, 0x2C, 0x01, 0x4D, 0x00, 0x23, 0x01, 0x6C, 0x00, 0x1E, 0x01, 0x19, 0x00, 0x2F, +0x01, 0x5A, 0x00, 0x2A, 0x01, 0x56, 0x00, 0x39, 0x01, 0x86, 0x00, 0x2D, 0x01, 0x66, 0x00, 0x32, +0x01, 0x57, 0x00, 0x23, 0x01, 0x46, 0x00, 0x35, 0x01, 0x61, 0x00, 0x2C, 0x01, 0x4D, 0x00, 0x23, +0x02, 0x5E, 0x00, 0x14, 0x03, 0x11, 0x00, 0x36, 0x03, 0x19, 0x00, 0x36, 0x03, 0x17, 0x00, 0x14, +0x03, 0x18, 0x00, 0x3C, 0x03, 0x25, 0x00, 0x14, 0x03, 0x4F, 0x00, 0x27, 0x03, 0x31, 0x00, 0x3C, +0x01, 0x15, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, +0x01, 0x18, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00, 0xCD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0xE4, 0x00, 0x2D, 0x01, 0x0B, 0x00, 0x32, 0x00, 0xE4, 0x00, 0x2D, 0x01, 0x06, 0x00, 0x2D, +0x02, 0x5D, 0x00, 0x2D, 0x00, 0xEC, 0x00, 0x2D, 0x00, 0xEC, 0x00, 0x2D, 0x01, 0xFF, 0x00, 0x16, +0x01, 0xFF, 0x00, 0x16, 0x00, 0xE4, 0x00, 0x2D, 0x01, 0x5A, 0x00, 0x25, 0x01, 0x83, 0x00, 0x1E, +0x02, 0xA6, 0x00, 0x1F, 0x02, 0x2D, 0x00, 0x12, 0x02, 0x2D, 0x00, 0x30, 0x00, 0xE4, 0x00, 0x2D, +0x01, 0x6B, 0x00, 0x2D, 0x02, 0x20, 0x00, 0x12, 0x02, 0x20, 0x00, 0x30, 0x00, 0x6C, 0xFF, 0xF1, +0x00, 0x00, 0xFF, 0x2F, 0x01, 0x8A, 0x00, 0x35, 0x01, 0x8A, 0x00, 0x35, 0x02, 0x02, 0x00, 0x35, +0x03, 0x64, 0x00, 0x35, 0x02, 0x02, 0x00, 0x35, 0x03, 0x64, 0x00, 0x35, 0x01, 0x8A, 0x00, 0x35, +0x02, 0xB2, 0x00, 0x35, 0x01, 0x8A, 0x00, 0x35, 0x02, 0x02, 0x00, 0x35, 0x03, 0x64, 0x00, 0x35, +0x01, 0x6E, 0x00, 0x28, 0x01, 0x6E, 0x00, 0x14, 0x01, 0x9B, 0x00, 0x2C, 0x01, 0x9B, 0x00, 0x18, +0x01, 0x93, 0x00, 0x50, 0x01, 0x93, 0x00, 0x42, 0x01, 0x65, 0x00, 0x28, 0x01, 0x65, 0x00, 0x14, +0x01, 0x9B, 0x00, 0x2C, 0x01, 0x9B, 0x00, 0x18, 0x01, 0x93, 0x00, 0x50, 0x01, 0x93, 0x00, 0x42, +0x01, 0x0B, 0x00, 0x32, 0x01, 0xEC, 0x00, 0x32, 0x01, 0xC0, 0x00, 0x28, 0x01, 0xBD, 0x00, 0x14, +0x00, 0xF1, 0x00, 0x28, 0x00, 0xF1, 0x00, 0x14, 0x01, 0xE6, 0x00, 0x0B, 0x01, 0xEB, 0x00, 0x28, +0x01, 0x11, 0x00, 0x0B, 0x01, 0x13, 0x00, 0x28, 0x01, 0x9C, 0x00, 0x25, 0x00, 0xCD, 0x00, 0x25, +0x01, 0xE6, 0x00, 0x0B, 0x01, 0xEB, 0x00, 0x28, 0x01, 0x11, 0x00, 0x0B, 0x01, 0x13, 0x00, 0x28, +0x02, 0x07, 0x00, 0x04, 0x03, 0xC5, 0x00, 0x28, 0x02, 0xE3, 0x00, 0x32, 0x02, 0xC8, 0x00, 0x30, +0x02, 0x25, 0x00, 0x2F, 0x03, 0x12, 0x00, 0x24, 0x01, 0xFB, 0x00, 0x1D, 0x03, 0x1A, 0x00, 0x1D, +0x02, 0x14, 0x00, 0x6E, 0x01, 0x9C, 0x00, 0x25, 0x00, 0xE7, 0x00, 0x43, 0x00, 0xEF, 0x00, 0x47, +0x01, 0xB8, 0x00, 0x2E, 0x02, 0x1B, 0x00, 0x19, 0x01, 0x94, 0x00, 0x2E, 0x02, 0x75, 0x00, 0x2B, +0x04, 0x99, 0x00, 0x62, 0x03, 0xC5, 0x00, 0x28, 0x02, 0xA7, 0x00, 0x30, 0x02, 0x17, 0x00, 0x28, +0x02, 0xA7, 0x00, 0x1C, 0x02, 0x26, 0x00, 0x32, 0x02, 0x70, 0x00, 0x32, 0x01, 0xEB, 0x00, 0x28, +0x02, 0x86, 0x00, 0x0F, 0x02, 0x5A, 0x00, 0x24, 0x02, 0xFE, 0x00, 0x30, 0x02, 0xF7, 0x00, 0x1E, +0x02, 0x62, 0x00, 0x1E, 0x02, 0x61, 0x00, 0x1C, 0x02, 0xF8, 0x00, 0x62, 0x03, 0x1B, 0x00, 0x0A, +0x03, 0x17, 0x00, 0x62, 0x03, 0x1B, 0x00, 0x62, 0x02, 0xD7, 0x00, 0x62, 0x02, 0x1C, 0x00, 0x44, +0x02, 0x62, 0x00, 0x1E, 0x03, 0xE4, 0x00, 0x18, 0x02, 0x94, 0x00, 0x0A, 0x00, 0xF4, 0x00, 0x32, +0x02, 0x27, 0x00, 0x17, 0x02, 0x4F, 0x00, 0x2D, 0x02, 0x44, 0x00, 0x32, 0x01, 0xE4, 0x00, 0x23, +0x02, 0x55, 0x00, 0x32, 0x02, 0x36, 0x00, 0x32, 0x02, 0x36, 0x00, 0x32, 0x02, 0x0C, 0x00, 0x41, +0x02, 0x0C, 0x00, 0x32, 0x02, 0x73, 0x00, 0x42, 0x02, 0x73, 0x00, 0x40, 0x02, 0x46, 0x00, 0x32, +0x02, 0x2F, 0x00, 0x32, 0x01, 0xFE, 0x00, 0x28, 0x02, 0x9E, 0x00, 0x32, 0x02, 0x43, 0x00, 0x1D, +0x03, 0x63, 0x00, 0x2D, 0x02, 0x67, 0x00, 0x22, 0x02, 0x29, 0x00, 0x00, 0x02, 0xA3, 0x00, 0x19, +0x02, 0xC7, 0x00, 0x0E, 0x02, 0xC4, 0x00, 0x1C, 0x02, 0x0B, 0x00, 0x3D, 0x02, 0xAC, 0x00, 0x0F, +0x02, 0x4A, 0x00, 0x50, 0x02, 0x4E, 0x00, 0x28, 0x03, 0x47, 0x00, 0x28, 0x04, 0xA6, 0x00, 0x28, +0x02, 0x54, 0x00, 0x23, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x58, +0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x1D, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x27, +0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x51, +0x00, 0x00, 0x00, 0xB5, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, 0x00, 0x92, +0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x2F, 0x00, 0x00, 0x00, 0xB0, 0x00, 0x00, 0x00, 0x5C, +0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x8D, +0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x58, +0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, 0x6C, +0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0xB0, +0x00, 0x00, 0x00, 0xA0, 0x00, 0x00, 0x00, 0xB5, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0xB0, +0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x8D, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x6E, +0x00, 0x00, 0x00, 0x74, 0x01, 0xF4, 0x00, 0x51, 0x01, 0xF4, 0x00, 0xB5, 0x01, 0xF4, 0x00, 0x92, +0x01, 0xF4, 0x00, 0x92, 0x01, 0xF4, 0x00, 0x2F, 0x01, 0xF4, 0x00, 0x5C, 0x01, 0xF4, 0x00, 0x66, +0x01, 0x92, 0x00, 0x58, 0x01, 0xF4, 0x00, 0x8D, 0x01, 0xF4, 0x00, 0x59, 0x01, 0xA8, 0x00, 0x6C, +0x01, 0xF4, 0x00, 0x98, 0x01, 0xF4, 0x00, 0x8D, 0x00, 0x00, 0x00, 0x4E, 0x00, 0x00, 0x00, 0x4E, +0x00, 0x00, 0x00, 0x4E, 0x00, 0x00, 0x00, 0xB5, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x86, +0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x5A, +0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x2D, +0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x58, +0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x8D, 0x00, 0x00, 0x00, 0x4C, +0x00, 0x00, 0x00, 0x4B, 0x00, 0x00, 0x00, 0x4B, 0x00, 0x00, 0x00, 0x4B, 0x00, 0x00, 0x00, 0x55, +0x00, 0x00, 0x00, 0x4E, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x99, +0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0xA0, 0x00, 0x00, 0x00, 0xB0, +0x00, 0x00, 0x00, 0x97, 0x00, 0x00, 0x00, 0x8D, 0x00, 0xCD, 0x00, 0x25, 0x00, 0xF1, 0x00, 0x28, +0x00, 0xDD, 0x00, 0x20, 0x00, 0xDD, 0x00, 0x3E, 0x00, 0xE7, 0x00, 0x43, 0x00, 0x43, 0x00, 0x00, +0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x9C, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x03, 0x4D, 0x00, 0x00, 0x00, 0x24, 0x00, 0xC9, 0x01, 0x02, 0x01, 0x03, 0x01, 0x04, 0x01, 0x05, +0x01, 0x06, 0x01, 0x07, 0x01, 0x08, 0x00, 0xC7, 0x01, 0x09, 0x01, 0x0A, 0x01, 0x0B, 0x01, 0x0C, +0x01, 0x0D, 0x01, 0x0E, 0x00, 0x62, 0x01, 0x0F, 0x00, 0xAD, 0x01, 0x10, 0x01, 0x11, 0x01, 0x12, +0x01, 0x13, 0x00, 0x63, 0x01, 0x14, 0x00, 0xAE, 0x00, 0x90, 0x01, 0x15, 0x00, 0x25, 0x00, 0x26, +0x00, 0xFD, 0x00, 0xFF, 0x00, 0x64, 0x01, 0x16, 0x01, 0x17, 0x01, 0x18, 0x00, 0x27, 0x01, 0x19, +0x01, 0x1A, 0x00, 0xE9, 0x01, 0x1B, 0x01, 0x1C, 0x01, 0x1D, 0x01, 0x1E, 0x01, 0x1F, 0x01, 0x20, +0x00, 0x28, 0x00, 0x65, 0x01, 0x21, 0x01, 0x22, 0x01, 0x23, 0x00, 0xC8, 0x01, 0x24, 0x01, 0x25, +0x01, 0x26, 0x01, 0x27, 0x01, 0x28, 0x01, 0x29, 0x00, 0xCA, 0x01, 0x2A, 0x01, 0x2B, 0x00, 0xCB, +0x01, 0x2C, 0x01, 0x2D, 0x01, 0x2E, 0x01, 0x2F, 0x01, 0x30, 0x01, 0x31, 0x01, 0x32, 0x00, 0x29, +0x00, 0x2A, 0x00, 0xF8, 0x01, 0x33, 0x01, 0x34, 0x01, 0x35, 0x01, 0x36, 0x01, 0x37, 0x00, 0x2B, +0x01, 0x38, 0x01, 0x39, 0x01, 0x3A, 0x01, 0x3B, 0x00, 0x2C, 0x01, 0x3C, 0x00, 0xCC, 0x01, 0x3D, +0x01, 0x3E, 0x00, 0xCD, 0x01, 0x3F, 0x00, 0xCE, 0x01, 0x40, 0x00, 0xFA, 0x01, 0x41, 0x00, 0xCF, +0x01, 0x42, 0x01, 0x43, 0x01, 0x44, 0x01, 0x45, 0x01, 0x46, 0x00, 0x2D, 0x01, 0x47, 0x00, 0x2E, +0x01, 0x48, 0x00, 0x2F, 0x01, 0x49, 0x01, 0x4A, 0x01, 0x4B, 0x01, 0x4C, 0x01, 0x4D, 0x01, 0x4E, +0x01, 0x4F, 0x01, 0x50, 0x00, 0xE2, 0x00, 0x30, 0x01, 0x51, 0x00, 0x31, 0x01, 0x52, 0x01, 0x53, +0x01, 0x54, 0x01, 0x55, 0x01, 0x56, 0x01, 0x57, 0x01, 0x58, 0x01, 0x59, 0x01, 0x5A, 0x00, 0x66, +0x01, 0x5B, 0x00, 0x32, 0x00, 0xD0, 0x01, 0x5C, 0x01, 0x5D, 0x00, 0xD1, 0x01, 0x5E, 0x01, 0x5F, +0x01, 0x60, 0x01, 0x61, 0x01, 0x62, 0x01, 0x63, 0x00, 0x67, 0x01, 0x64, 0x01, 0x65, 0x01, 0x66, +0x00, 0xD3, 0x01, 0x67, 0x01, 0x68, 0x01, 0x69, 0x01, 0x6A, 0x01, 0x6B, 0x01, 0x6C, 0x01, 0x6D, +0x01, 0x6E, 0x01, 0x6F, 0x01, 0x70, 0x01, 0x71, 0x01, 0x72, 0x01, 0x73, 0x00, 0x91, 0x01, 0x74, +0x00, 0xAF, 0x01, 0x75, 0x01, 0x76, 0x01, 0x77, 0x00, 0xB0, 0x00, 0x33, 0x00, 0xED, 0x00, 0x34, +0x00, 0x35, 0x01, 0x78, 0x01, 0x79, 0x01, 0x7A, 0x01, 0x7B, 0x01, 0x7C, 0x01, 0x7D, 0x01, 0x7E, +0x00, 0x36, 0x01, 0x7F, 0x01, 0x80, 0x00, 0xE4, 0x01, 0x81, 0x00, 0xFB, 0x01, 0x82, 0x01, 0x83, +0x01, 0x84, 0x01, 0x85, 0x01, 0x86, 0x01, 0x87, 0x01, 0x88, 0x00, 0x37, 0x01, 0x89, 0x01, 0x8A, +0x01, 0x8B, 0x01, 0x8C, 0x01, 0x8D, 0x01, 0x8E, 0x00, 0x38, 0x00, 0xD4, 0x01, 0x8F, 0x01, 0x90, +0x00, 0xD5, 0x01, 0x91, 0x00, 0x68, 0x01, 0x92, 0x00, 0xD6, 0x01, 0x93, 0x01, 0x94, 0x01, 0x95, +0x01, 0x96, 0x01, 0x97, 0x01, 0x98, 0x01, 0x99, 0x01, 0x9A, 0x01, 0x9B, 0x01, 0x9C, 0x01, 0x9D, +0x01, 0x9E, 0x01, 0x9F, 0x01, 0xA0, 0x01, 0xA1, 0x00, 0x39, 0x00, 0x3A, 0x01, 0xA2, 0x01, 0xA3, +0x01, 0xA4, 0x01, 0xA5, 0x00, 0x3B, 0x00, 0x3C, 0x00, 0xEB, 0x01, 0xA6, 0x00, 0xBB, 0x01, 0xA7, +0x01, 0xA8, 0x01, 0xA9, 0x01, 0xAA, 0x01, 0xAB, 0x01, 0xAC, 0x00, 0x3D, 0x01, 0xAD, 0x00, 0xE6, +0x01, 0xAE, 0x01, 0xAF, 0x01, 0xB0, 0x01, 0xB1, 0x01, 0xB2, 0x01, 0xB3, 0x01, 0xB4, 0x01, 0xB5, +0x01, 0xB6, 0x01, 0xB7, 0x01, 0xB8, 0x01, 0xB9, 0x01, 0xBA, 0x01, 0xBB, 0x01, 0xBC, 0x01, 0xBD, +0x01, 0xBE, 0x01, 0xBF, 0x01, 0xC0, 0x01, 0xC1, 0x01, 0xC2, 0x01, 0xC3, 0x01, 0xC4, 0x01, 0xC5, +0x00, 0x44, 0x00, 0x69, 0x01, 0xC6, 0x01, 0xC7, 0x01, 0xC8, 0x01, 0xC9, 0x01, 0xCA, 0x01, 0xCB, +0x01, 0xCC, 0x00, 0x6B, 0x01, 0xCD, 0x01, 0xCE, 0x01, 0xCF, 0x01, 0xD0, 0x01, 0xD1, 0x01, 0xD2, +0x00, 0x6C, 0x01, 0xD3, 0x00, 0x6A, 0x01, 0xD4, 0x01, 0xD5, 0x01, 0xD6, 0x01, 0xD7, 0x00, 0x6E, +0x01, 0xD8, 0x00, 0x6D, 0x00, 0xA0, 0x01, 0xD9, 0x00, 0x45, 0x00, 0x46, 0x00, 0xFE, 0x01, 0x00, +0x00, 0x6F, 0x01, 0xDA, 0x01, 0xDB, 0x01, 0xDC, 0x00, 0x47, 0x00, 0xEA, 0x01, 0xDD, 0x01, 0x01, +0x01, 0xDE, 0x01, 0xDF, 0x01, 0xE0, 0x00, 0x48, 0x00, 0x70, 0x01, 0xE1, 0x01, 0xE2, 0x01, 0xE3, +0x00, 0x72, 0x01, 0xE4, 0x01, 0xE5, 0x01, 0xE6, 0x01, 0xE7, 0x01, 0xE8, 0x01, 0xE9, 0x00, 0x73, +0x01, 0xEA, 0x01, 0xEB, 0x00, 0x71, 0x01, 0xEC, 0x01, 0xED, 0x01, 0xEE, 0x01, 0xEF, 0x01, 0xF0, +0x01, 0xF1, 0x01, 0xF2, 0x01, 0xF3, 0x00, 0x49, 0x00, 0x4A, 0x00, 0xF9, 0x01, 0xF4, 0x01, 0xF5, +0x01, 0xF6, 0x01, 0xF7, 0x01, 0xF8, 0x00, 0x4B, 0x01, 0xF9, 0x01, 0xFA, 0x01, 0xFB, 0x01, 0xFC, +0x00, 0x4C, 0x00, 0xD7, 0x00, 0x74, 0x01, 0xFD, 0x01, 0xFE, 0x00, 0x76, 0x01, 0xFF, 0x00, 0x77, +0x02, 0x00, 0x02, 0x01, 0x02, 0x02, 0x00, 0x75, 0x02, 0x03, 0x02, 0x04, 0x02, 0x05, 0x02, 0x06, +0x02, 0x07, 0x02, 0x08, 0x00, 0x4D, 0x02, 0x09, 0x02, 0x0A, 0x00, 0x4E, 0x02, 0x0B, 0x02, 0x0C, +0x00, 0x4F, 0x02, 0x0D, 0x02, 0x0E, 0x02, 0x0F, 0x02, 0x10, 0x02, 0x11, 0x02, 0x12, 0x02, 0x13, +0x00, 0xE3, 0x00, 0x50, 0x02, 0x14, 0x00, 0x51, 0x02, 0x15, 0x02, 0x16, 0x02, 0x17, 0x02, 0x18, +0x02, 0x19, 0x02, 0x1A, 0x02, 0x1B, 0x02, 0x1C, 0x02, 0x1D, 0x00, 0x78, 0x02, 0x1E, 0x00, 0x52, +0x00, 0x79, 0x02, 0x1F, 0x02, 0x20, 0x00, 0x7B, 0x02, 0x21, 0x02, 0x22, 0x02, 0x23, 0x02, 0x24, +0x02, 0x25, 0x02, 0x26, 0x00, 0x7C, 0x02, 0x27, 0x02, 0x28, 0x02, 0x29, 0x00, 0x7A, 0x02, 0x2A, +0x02, 0x2B, 0x02, 0x2C, 0x02, 0x2D, 0x02, 0x2E, 0x02, 0x2F, 0x02, 0x30, 0x02, 0x31, 0x02, 0x32, +0x02, 0x33, 0x02, 0x34, 0x02, 0x35, 0x02, 0x36, 0x00, 0xA1, 0x02, 0x37, 0x00, 0x7D, 0x02, 0x38, +0x02, 0x39, 0x02, 0x3A, 0x00, 0xB1, 0x00, 0x53, 0x00, 0xEE, 0x00, 0x54, 0x00, 0x55, 0x02, 0x3B, +0x02, 0x3C, 0x02, 0x3D, 0x02, 0x3E, 0x02, 0x3F, 0x02, 0x40, 0x02, 0x41, 0x00, 0x56, 0x02, 0x42, +0x02, 0x43, 0x00, 0xE5, 0x02, 0x44, 0x00, 0xFC, 0x02, 0x45, 0x02, 0x46, 0x02, 0x47, 0x02, 0x48, +0x02, 0x49, 0x00, 0x89, 0x00, 0x57, 0x02, 0x4A, 0x02, 0x4B, 0x02, 0x4C, 0x02, 0x4D, 0x02, 0x4E, +0x02, 0x4F, 0x02, 0x50, 0x00, 0x58, 0x00, 0x7E, 0x02, 0x51, 0x02, 0x52, 0x00, 0x80, 0x02, 0x53, +0x00, 0x81, 0x02, 0x54, 0x00, 0x7F, 0x02, 0x55, 0x02, 0x56, 0x02, 0x57, 0x02, 0x58, 0x02, 0x59, +0x02, 0x5A, 0x02, 0x5B, 0x02, 0x5C, 0x02, 0x5D, 0x02, 0x5E, 0x02, 0x5F, 0x02, 0x60, 0x02, 0x61, +0x02, 0x62, 0x02, 0x63, 0x00, 0x59, 0x00, 0x5A, 0x02, 0x64, 0x02, 0x65, 0x02, 0x66, 0x02, 0x67, +0x00, 0x5B, 0x00, 0x5C, 0x00, 0xEC, 0x02, 0x68, 0x00, 0xBA, 0x02, 0x69, 0x02, 0x6A, 0x02, 0x6B, +0x02, 0x6C, 0x02, 0x6D, 0x02, 0x6E, 0x00, 0x5D, 0x02, 0x6F, 0x00, 0xE7, 0x02, 0x70, 0x02, 0x71, +0x02, 0x72, 0x02, 0x73, 0x02, 0x74, 0x02, 0x75, 0x02, 0x76, 0x02, 0x77, 0x02, 0x78, 0x02, 0x79, +0x02, 0x7A, 0x02, 0x7B, 0x02, 0x7C, 0x02, 0x7D, 0x02, 0x7E, 0x02, 0x7F, 0x02, 0x80, 0x02, 0x81, +0x02, 0x82, 0x02, 0x83, 0x02, 0x84, 0x02, 0x85, 0x02, 0x86, 0x02, 0x87, 0x02, 0x88, 0x02, 0x89, +0x02, 0x8A, 0x02, 0x8B, 0x02, 0x8C, 0x02, 0x8D, 0x02, 0x8E, 0x02, 0x8F, 0x02, 0x90, 0x02, 0x91, +0x02, 0x92, 0x02, 0x93, 0x02, 0x94, 0x02, 0x95, 0x02, 0x96, 0x02, 0x97, 0x02, 0x98, 0x00, 0xC0, +0x00, 0xC1, 0x00, 0x9D, 0x00, 0x9E, 0x02, 0x99, 0x02, 0x9A, 0x02, 0x9B, 0x00, 0x9B, 0x00, 0x13, +0x00, 0x14, 0x00, 0x15, 0x00, 0x16, 0x00, 0x17, 0x00, 0x18, 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, +0x00, 0x1C, 0x02, 0x9C, 0x02, 0x9D, 0x02, 0x9E, 0x02, 0x9F, 0x02, 0xA0, 0x02, 0xA1, 0x02, 0xA2, +0x02, 0xA3, 0x02, 0xA4, 0x02, 0xA5, 0x02, 0xA6, 0x02, 0xA7, 0x02, 0xA8, 0x02, 0xA9, 0x02, 0xAA, +0x02, 0xAB, 0x02, 0xAC, 0x02, 0xAD, 0x02, 0xAE, 0x02, 0xAF, 0x02, 0xB0, 0x02, 0xB1, 0x02, 0xB2, +0x02, 0xB3, 0x02, 0xB4, 0x02, 0xB5, 0x02, 0xB6, 0x02, 0xB7, 0x02, 0xB8, 0x02, 0xB9, 0x02, 0xBA, +0x02, 0xBB, 0x02, 0xBC, 0x02, 0xBD, 0x02, 0xBE, 0x02, 0xBF, 0x02, 0xC0, 0x02, 0xC1, 0x02, 0xC2, +0x02, 0xC3, 0x02, 0xC4, 0x00, 0xBC, 0x00, 0xF4, 0x00, 0xF5, 0x00, 0xF6, 0x02, 0xC5, 0x02, 0xC6, +0x02, 0xC7, 0x02, 0xC8, 0x02, 0xC9, 0x02, 0xCA, 0x02, 0xCB, 0x02, 0xCC, 0x00, 0x03, 0x02, 0xCD, +0x02, 0xCE, 0x02, 0xCF, 0x00, 0x11, 0x00, 0x0F, 0x00, 0x1D, 0x00, 0x1E, 0x00, 0xAB, 0x00, 0x04, +0x00, 0xA3, 0x00, 0x22, 0x00, 0xA2, 0x00, 0xC3, 0x00, 0x87, 0x00, 0x0D, 0x00, 0x06, 0x00, 0x12, +0x00, 0x3F, 0x02, 0xD0, 0x02, 0xD1, 0x02, 0xD2, 0x02, 0xD3, 0x02, 0xD4, 0x02, 0xD5, 0x00, 0x10, +0x02, 0xD6, 0x00, 0xB2, 0x00, 0xB3, 0x02, 0xD7, 0x02, 0xD8, 0x02, 0xD9, 0x00, 0x42, 0x02, 0xDA, +0x02, 0xDB, 0x02, 0xDC, 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x5E, 0x00, 0x60, 0x00, 0x3E, 0x00, 0x40, +0x02, 0xDD, 0x02, 0xDE, 0x02, 0xDF, 0x02, 0xE0, 0x02, 0xE1, 0x02, 0xE2, 0x00, 0xC4, 0x00, 0xC5, +0x00, 0xB4, 0x00, 0xB5, 0x00, 0xB6, 0x00, 0xB7, 0x00, 0xA9, 0x00, 0xAA, 0x00, 0xBE, 0x00, 0xBF, +0x00, 0x05, 0x00, 0x0A, 0x02, 0xE3, 0x02, 0xE4, 0x02, 0xE5, 0x02, 0xE6, 0x00, 0xA6, 0x00, 0x23, +0x00, 0x09, 0x00, 0x88, 0x00, 0x86, 0x00, 0x8B, 0x00, 0x8A, 0x00, 0x8C, 0x00, 0x83, 0x02, 0xE7, +0x00, 0x5F, 0x00, 0xE8, 0x00, 0x82, 0x02, 0xE8, 0x00, 0xC2, 0x02, 0xE9, 0x02, 0xEA, 0x02, 0xEB, +0x02, 0xEC, 0x00, 0x84, 0x02, 0xED, 0x00, 0xBD, 0x00, 0x07, 0x02, 0xEE, 0x02, 0xEF, 0x00, 0xF7, +0x02, 0xF0, 0x02, 0xF1, 0x02, 0xF2, 0x02, 0xF3, 0x02, 0xF4, 0x02, 0xF5, 0x02, 0xF6, 0x02, 0xF7, +0x02, 0xF8, 0x02, 0xF9, 0x00, 0x85, 0x02, 0xFA, 0x00, 0x96, 0x02, 0xFB, 0x02, 0xFC, 0x00, 0x0E, +0x00, 0xEF, 0x00, 0xF0, 0x00, 0xB8, 0x00, 0x20, 0x00, 0x8F, 0x00, 0x21, 0x00, 0x1F, 0x00, 0x95, +0x00, 0x94, 0x00, 0x93, 0x00, 0xA7, 0x00, 0x61, 0x00, 0xA4, 0x00, 0x41, 0x00, 0x92, 0x02, 0xFD, +0x00, 0x9C, 0x02, 0xFE, 0x02, 0xFF, 0x00, 0x9A, 0x00, 0x99, 0x00, 0xA5, 0x03, 0x00, 0x00, 0x98, +0x00, 0x08, 0x00, 0xC6, 0x00, 0xB9, 0x03, 0x01, 0x03, 0x02, 0x03, 0x03, 0x03, 0x04, 0x03, 0x05, +0x03, 0x06, 0x03, 0x07, 0x03, 0x08, 0x03, 0x09, 0x03, 0x0A, 0x03, 0x0B, 0x03, 0x0C, 0x03, 0x0D, +0x03, 0x0E, 0x03, 0x0F, 0x03, 0x10, 0x03, 0x11, 0x03, 0x12, 0x03, 0x13, 0x03, 0x14, 0x03, 0x15, +0x03, 0x16, 0x03, 0x17, 0x03, 0x18, 0x03, 0x19, 0x03, 0x1A, 0x03, 0x1B, 0x03, 0x1C, 0x03, 0x1D, +0x03, 0x1E, 0x03, 0x1F, 0x03, 0x20, 0x03, 0x21, 0x03, 0x22, 0x03, 0x23, 0x03, 0x24, 0x03, 0x25, +0x03, 0x26, 0x03, 0x27, 0x03, 0x28, 0x03, 0x29, 0x03, 0x2A, 0x03, 0x2B, 0x03, 0x2C, 0x00, 0x8E, +0x00, 0xDC, 0x00, 0x43, 0x00, 0x8D, 0x00, 0xDF, 0x00, 0xD8, 0x00, 0xE1, 0x00, 0xDB, 0x00, 0xDD, +0x00, 0xD9, 0x00, 0xDA, 0x00, 0xDE, 0x00, 0xE0, 0x03, 0x2D, 0x03, 0x2E, 0x03, 0x2F, 0x03, 0x30, +0x03, 0x31, 0x03, 0x32, 0x03, 0x33, 0x03, 0x34, 0x03, 0x35, 0x03, 0x36, 0x03, 0x37, 0x03, 0x38, +0x03, 0x39, 0x03, 0x3A, 0x03, 0x3B, 0x03, 0x3C, 0x03, 0x3D, 0x03, 0x3E, 0x03, 0x3F, 0x03, 0x40, +0x03, 0x41, 0x03, 0x42, 0x03, 0x43, 0x03, 0x44, 0x03, 0x45, 0x03, 0x46, 0x03, 0x47, 0x03, 0x48, +0x03, 0x49, 0x03, 0x4A, 0x03, 0x4B, 0x03, 0x4C, 0x03, 0x4D, 0x03, 0x4E, 0x03, 0x4F, 0x03, 0x50, +0x03, 0x51, 0x03, 0x52, 0x03, 0x53, 0x03, 0x54, 0x03, 0x55, 0x03, 0x56, 0x06, 0x41, 0x62, 0x72, +0x65, 0x76, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x42, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x42, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x31, 0x43, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x41, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x41, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x32, 0x30, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x41, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x32, 0x07, 0x41, 0x6D, 0x61, 0x63, +0x72, 0x6F, 0x6E, 0x07, 0x41, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x0A, 0x41, 0x72, 0x69, 0x6E, +0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x41, 0x45, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, +0x6E, 0x69, 0x31, 0x45, 0x30, 0x38, 0x0B, 0x43, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, +0x65, 0x78, 0x0A, 0x43, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, +0x69, 0x30, 0x31, 0x46, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x34, 0x06, 0x44, 0x63, +0x61, 0x72, 0x6F, 0x6E, 0x06, 0x44, 0x63, 0x72, 0x6F, 0x61, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x30, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x31, 0x46, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x35, 0x06, 0x45, 0x62, 0x72, 0x65, +0x76, 0x65, 0x06, 0x45, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, +0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, +0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, +0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, +0x34, 0x0A, 0x45, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x42, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x41, 0x07, 0x75, 0x6E, 0x69, +0x30, 0x32, 0x30, 0x36, 0x07, 0x45, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x31, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x34, 0x07, 0x45, 0x6F, 0x67, +0x6F, 0x6E, 0x65, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x43, 0x06, 0x47, 0x63, 0x61, +0x72, 0x6F, 0x6E, 0x0B, 0x47, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, +0x75, 0x6E, 0x69, 0x30, 0x31, 0x32, 0x32, 0x0A, 0x47, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, +0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x30, 0x04, 0x48, 0x62, 0x61, 0x72, 0x07, +0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x41, 0x0B, 0x48, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, +0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x34, 0x02, 0x49, 0x4A, 0x06, 0x49, +0x62, 0x72, 0x65, 0x76, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x46, 0x07, 0x75, 0x6E, +0x69, 0x30, 0x32, 0x30, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x45, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x43, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x38, 0x07, 0x75, 0x6E, +0x69, 0x30, 0x32, 0x30, 0x41, 0x07, 0x49, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x07, 0x49, 0x6F, +0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x06, 0x49, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x0B, 0x4A, 0x63, 0x69, +0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x36, +0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x37, 0x06, 0x4C, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, +0x4C, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x42, 0x04, 0x4C, +0x64, 0x6F, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x31, 0x43, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x34, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x41, 0x06, 0x4E, 0x61, 0x63, 0x75, +0x74, 0x65, 0x06, 0x4E, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x34, +0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, +0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x39, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, +0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x38, 0x03, 0x45, 0x6E, 0x67, 0x06, 0x4F, 0x62, +0x72, 0x65, 0x76, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x31, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x44, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x38, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x44, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x34, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x44, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x43, 0x07, 0x75, 0x6E, 0x69, +0x30, 0x32, 0x32, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x30, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x43, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x45, 0x05, 0x4F, 0x68, 0x6F, +0x72, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x45, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x44, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x30, 0x0D, 0x4F, 0x68, 0x75, 0x6E, 0x67, +0x61, 0x72, 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x45, +0x07, 0x4F, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x32, +0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x45, 0x41, +0x0B, 0x4F, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x34, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x45, 0x07, 0x75, 0x6E, 0x69, +0x30, 0x32, 0x32, 0x43, 0x06, 0x52, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x52, 0x63, 0x61, 0x72, +0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x35, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, +0x31, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, +0x31, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x45, 0x06, 0x53, 0x61, 0x63, 0x75, 0x74, +0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, +0x36, 0x0B, 0x53, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, +0x69, 0x30, 0x32, 0x31, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x30, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x36, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x38, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x39, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x38, 0x46, 0x04, 0x54, 0x62, +0x61, 0x72, 0x06, 0x54, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x36, +0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, +0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x45, 0x06, 0x55, 0x62, 0x72, 0x65, 0x76, 0x65, +0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x34, +0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x36, +0x05, 0x55, 0x68, 0x6F, 0x72, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x38, 0x07, 0x75, +0x6E, 0x69, 0x31, 0x45, 0x46, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x41, 0x07, 0x75, +0x6E, 0x69, 0x31, 0x45, 0x45, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x45, 0x0D, 0x55, +0x68, 0x75, 0x6E, 0x67, 0x61, 0x72, 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, 0x07, 0x75, 0x6E, 0x69, +0x30, 0x32, 0x31, 0x36, 0x07, 0x55, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x37, 0x41, 0x07, 0x55, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x05, 0x55, 0x72, 0x69, +0x6E, 0x67, 0x06, 0x55, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, +0x38, 0x06, 0x57, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0B, 0x57, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, +0x66, 0x6C, 0x65, 0x78, 0x09, 0x57, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x06, 0x57, +0x67, 0x72, 0x61, 0x76, 0x65, 0x0B, 0x59, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, +0x78, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, +0x34, 0x06, 0x59, 0x67, 0x72, 0x61, 0x76, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x36, +0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x38, +0x06, 0x5A, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0A, 0x5A, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, +0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x32, 0x10, 0x49, 0x61, 0x63, 0x75, 0x74, +0x65, 0x5F, 0x4A, 0x2E, 0x6C, 0x6F, 0x63, 0x6C, 0x4E, 0x4C, 0x44, 0x06, 0x49, 0x2E, 0x73, 0x73, +0x30, 0x31, 0x07, 0x49, 0x4A, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0B, 0x49, 0x61, 0x63, 0x75, 0x74, +0x65, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0B, 0x49, 0x62, 0x72, 0x65, 0x76, 0x65, 0x2E, 0x73, 0x73, +0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x46, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x10, +0x49, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x2E, 0x73, 0x73, 0x30, 0x31, +0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x38, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0E, 0x49, 0x64, +0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x32, 0x45, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0F, 0x49, 0x64, 0x6F, 0x74, 0x61, 0x63, +0x63, 0x65, 0x6E, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, +0x41, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0B, 0x49, 0x67, 0x72, 0x61, 0x76, 0x65, 0x2E, 0x73, 0x73, +0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x38, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, +0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x41, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x49, 0x6D, 0x61, +0x63, 0x72, 0x6F, 0x6E, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x49, 0x6F, 0x67, 0x6F, 0x6E, 0x65, +0x6B, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0B, 0x49, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x2E, 0x73, 0x73, +0x30, 0x31, 0x06, 0x4A, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x10, 0x4A, 0x63, 0x69, 0x72, 0x63, 0x75, +0x6D, 0x66, 0x6C, 0x65, 0x78, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, +0x43, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x41, 0x2E, +0x73, 0x73, 0x30, 0x31, 0x06, 0x61, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x41, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x42, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x42, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x41, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x41, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x41, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x41, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x32, 0x30, 0x33, 0x07, 0x61, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x07, 0x61, 0x6F, 0x67, 0x6F, +0x6E, 0x65, 0x6B, 0x0A, 0x61, 0x72, 0x69, 0x6E, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x61, +0x65, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x39, 0x0B, 0x63, +0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x0A, 0x63, 0x64, 0x6F, 0x74, 0x61, +0x63, 0x63, 0x65, 0x6E, 0x74, 0x06, 0x64, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x30, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x46, 0x07, 0x75, 0x6E, 0x69, +0x30, 0x31, 0x43, 0x36, 0x06, 0x65, 0x62, 0x72, 0x65, 0x76, 0x65, 0x06, 0x65, 0x63, 0x61, 0x72, +0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x42, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x43, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x43, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x35, 0x0A, 0x65, 0x64, 0x6F, 0x74, 0x61, +0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x39, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x42, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x37, 0x07, 0x65, 0x6D, +0x61, 0x63, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x37, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x31, 0x35, 0x07, 0x65, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x42, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x35, 0x39, 0x06, 0x67, 0x63, +0x61, 0x72, 0x6F, 0x6E, 0x0B, 0x67, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, +0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x32, 0x33, 0x0A, 0x67, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, +0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x31, 0x04, 0x68, 0x62, 0x61, 0x72, +0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x42, 0x0B, 0x68, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, +0x66, 0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x35, 0x06, 0x69, 0x62, 0x72, +0x65, 0x76, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x32, 0x30, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x46, 0x09, 0x69, 0x2E, 0x6C, 0x6F, +0x63, 0x6C, 0x54, 0x52, 0x4B, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x42, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x43, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x42, 0x02, 0x69, 0x6A, +0x07, 0x69, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x07, 0x69, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, +0x06, 0x69, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x37, 0x0B, +0x6A, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x31, 0x33, 0x37, 0x0C, 0x6B, 0x67, 0x72, 0x65, 0x65, 0x6E, 0x6C, 0x61, 0x6E, 0x64, 0x69, 0x63, +0x06, 0x6C, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x6C, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, +0x6E, 0x69, 0x30, 0x31, 0x33, 0x43, 0x04, 0x6C, 0x64, 0x6F, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x33, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x33, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x33, 0x06, 0x6E, 0x61, 0x63, 0x75, +0x74, 0x65, 0x0B, 0x6E, 0x61, 0x70, 0x6F, 0x73, 0x74, 0x72, 0x6F, 0x70, 0x68, 0x65, 0x06, 0x6E, +0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x34, 0x36, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x34, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x37, 0x07, 0x75, 0x6E, +0x69, 0x30, 0x32, 0x37, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x43, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x34, 0x39, 0x03, 0x65, 0x6E, 0x67, 0x06, 0x6F, 0x62, 0x72, 0x65, 0x76, 0x65, +0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x31, +0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x33, +0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x37, +0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x42, +0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x44, +0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x46, 0x05, 0x6F, 0x68, 0x6F, 0x72, 0x6E, 0x07, 0x75, +0x6E, 0x69, 0x31, 0x45, 0x44, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x33, 0x07, 0x75, +0x6E, 0x69, 0x31, 0x45, 0x44, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x46, 0x07, 0x75, +0x6E, 0x69, 0x31, 0x45, 0x45, 0x31, 0x0D, 0x6F, 0x68, 0x75, 0x6E, 0x67, 0x61, 0x72, 0x75, 0x6D, +0x6C, 0x61, 0x75, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x46, 0x07, 0x6F, 0x6D, 0x61, +0x63, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x33, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x35, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x45, 0x42, 0x0B, 0x6F, 0x73, 0x6C, +0x61, 0x73, 0x68, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x44, +0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x44, +0x06, 0x72, 0x61, 0x63, 0x75, 0x74, 0x65, 0x06, 0x72, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, +0x6E, 0x69, 0x30, 0x31, 0x35, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x31, 0x07, 0x75, +0x6E, 0x69, 0x31, 0x45, 0x35, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x33, 0x07, 0x75, +0x6E, 0x69, 0x31, 0x45, 0x35, 0x46, 0x06, 0x73, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x36, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x37, 0x0B, 0x73, 0x63, +0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, +0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, +0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x39, 0x04, 0x74, 0x62, 0x61, 0x72, 0x06, 0x74, +0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x36, 0x33, 0x07, 0x75, 0x6E, +0x69, 0x30, 0x32, 0x31, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x37, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x36, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x46, 0x06, 0x75, 0x62, +0x72, 0x65, 0x76, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x34, 0x07, 0x75, 0x6E, 0x69, +0x30, 0x32, 0x31, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x35, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x45, 0x37, 0x05, 0x75, 0x68, 0x6F, 0x72, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x45, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x45, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x45, 0x46, 0x0D, 0x75, 0x68, 0x75, 0x6E, 0x67, 0x61, 0x72, 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, +0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x37, 0x07, 0x75, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, +0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x42, 0x07, 0x75, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, +0x05, 0x75, 0x72, 0x69, 0x6E, 0x67, 0x06, 0x75, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x37, 0x39, 0x06, 0x77, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0B, 0x77, 0x63, 0x69, +0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x09, 0x77, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, +0x69, 0x73, 0x06, 0x77, 0x67, 0x72, 0x61, 0x76, 0x65, 0x0B, 0x79, 0x63, 0x69, 0x72, 0x63, 0x75, +0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x46, 0x07, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x46, 0x35, 0x06, 0x79, 0x67, 0x72, 0x61, 0x76, 0x65, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x46, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x33, 0x07, 0x75, 0x6E, 0x69, +0x31, 0x45, 0x46, 0x39, 0x06, 0x7A, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0A, 0x7A, 0x64, 0x6F, 0x74, +0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x33, 0x10, 0x69, +0x61, 0x63, 0x75, 0x74, 0x65, 0x5F, 0x6A, 0x2E, 0x6C, 0x6F, 0x63, 0x6C, 0x4E, 0x4C, 0x44, 0x06, +0x61, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0B, 0x61, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2E, 0x73, 0x73, +0x30, 0x31, 0x0B, 0x61, 0x62, 0x72, 0x65, 0x76, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, +0x6E, 0x69, 0x31, 0x45, 0x41, 0x46, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x42, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x31, +0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x33, 0x2E, 0x73, 0x73, +0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x35, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, +0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x45, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x10, 0x61, 0x63, 0x69, +0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, +0x69, 0x31, 0x45, 0x41, 0x35, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x41, 0x44, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x37, 0x2E, +0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x39, 0x2E, 0x73, 0x73, 0x30, +0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x42, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, +0x6E, 0x69, 0x30, 0x32, 0x30, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0E, 0x61, 0x64, 0x69, 0x65, +0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, +0x41, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0B, 0x61, 0x67, 0x72, 0x61, 0x76, 0x65, 0x2E, 0x73, +0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x33, 0x2E, 0x73, 0x73, 0x30, 0x31, +0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x33, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x61, 0x6D, +0x61, 0x63, 0x72, 0x6F, 0x6E, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x61, 0x6F, 0x67, 0x6F, 0x6E, +0x65, 0x6B, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0A, 0x61, 0x72, 0x69, 0x6E, 0x67, 0x2E, 0x73, 0x73, +0x30, 0x31, 0x0F, 0x61, 0x72, 0x69, 0x6E, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2E, 0x73, 0x73, +0x30, 0x31, 0x0B, 0x61, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x06, 0x67, +0x2E, 0x73, 0x73, 0x30, 0x31, 0x0B, 0x67, 0x62, 0x72, 0x65, 0x76, 0x65, 0x2E, 0x73, 0x73, 0x30, +0x31, 0x0B, 0x67, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x10, 0x67, 0x63, +0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, +0x6E, 0x69, 0x30, 0x31, 0x32, 0x33, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0F, 0x67, 0x64, 0x6F, 0x74, +0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0C, 0x75, 0x6E, 0x69, 0x31, +0x45, 0x32, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x03, 0x66, 0x5F, 0x66, 0x05, 0x66, 0x5F, 0x66, +0x5F, 0x69, 0x06, 0x66, 0x5F, 0x66, 0x5F, 0x69, 0x6A, 0x05, 0x66, 0x5F, 0x66, 0x5F, 0x6C, 0x04, +0x66, 0x5F, 0x69, 0x6A, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x39, 0x34, 0x07, 0x75, 0x6E, 0x69, +0x30, 0x33, 0x41, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x42, 0x43, 0x09, 0x7A, 0x65, 0x72, +0x6F, 0x2E, 0x7A, 0x65, 0x72, 0x6F, 0x09, 0x7A, 0x65, 0x72, 0x6F, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, +0x08, 0x6F, 0x6E, 0x65, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x08, 0x74, 0x77, 0x6F, 0x2E, 0x64, 0x6E, +0x6F, 0x6D, 0x0A, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x09, 0x66, 0x6F, +0x75, 0x72, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x09, 0x66, 0x69, 0x76, 0x65, 0x2E, 0x64, 0x6E, 0x6F, +0x6D, 0x08, 0x73, 0x69, 0x78, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0A, 0x73, 0x65, 0x76, 0x65, 0x6E, +0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0A, 0x65, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, +0x09, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, +0x38, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x38, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, +0x38, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x38, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, +0x38, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x38, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, +0x38, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x38, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, +0x38, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x38, 0x39, 0x09, 0x7A, 0x65, 0x72, 0x6F, 0x2E, +0x6E, 0x75, 0x6D, 0x72, 0x08, 0x6F, 0x6E, 0x65, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x08, 0x74, 0x77, +0x6F, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0A, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, 0x6E, 0x75, 0x6D, +0x72, 0x09, 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x09, 0x66, 0x69, 0x76, 0x65, +0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x08, 0x73, 0x69, 0x78, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0A, 0x73, +0x65, 0x76, 0x65, 0x6E, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0A, 0x65, 0x69, 0x67, 0x68, 0x74, 0x2E, +0x6E, 0x75, 0x6D, 0x72, 0x09, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x07, 0x75, +0x6E, 0x69, 0x32, 0x30, 0x37, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x42, 0x39, 0x07, 0x75, +0x6E, 0x69, 0x30, 0x30, 0x42, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x42, 0x33, 0x07, 0x75, +0x6E, 0x69, 0x32, 0x30, 0x37, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x37, 0x35, 0x07, 0x75, +0x6E, 0x69, 0x32, 0x30, 0x37, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x37, 0x37, 0x07, 0x75, +0x6E, 0x69, 0x32, 0x30, 0x37, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x37, 0x39, 0x09, 0x6F, +0x6E, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x0C, 0x74, 0x68, 0x72, 0x65, 0x65, 0x65, 0x69, +0x67, 0x68, 0x74, 0x68, 0x73, 0x0B, 0x66, 0x69, 0x76, 0x65, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, +0x73, 0x0C, 0x73, 0x65, 0x76, 0x65, 0x6E, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x02, 0x43, +0x52, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, +0x41, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x41, +0x30, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, +0x42, 0x13, 0x70, 0x65, 0x72, 0x69, 0x6F, 0x64, 0x63, 0x65, 0x6E, 0x74, 0x65, 0x72, 0x65, 0x64, +0x2E, 0x63, 0x61, 0x73, 0x65, 0x0B, 0x62, 0x75, 0x6C, 0x6C, 0x65, 0x74, 0x2E, 0x63, 0x61, 0x73, +0x65, 0x0A, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0E, 0x62, 0x61, 0x63, +0x6B, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x16, 0x70, 0x65, 0x72, 0x69, +0x6F, 0x64, 0x63, 0x65, 0x6E, 0x74, 0x65, 0x72, 0x65, 0x64, 0x2E, 0x6C, 0x6F, 0x63, 0x6C, 0x43, +0x41, 0x54, 0x1B, 0x70, 0x65, 0x72, 0x69, 0x6F, 0x64, 0x63, 0x65, 0x6E, 0x74, 0x65, 0x72, 0x65, +0x64, 0x2E, 0x6C, 0x6F, 0x63, 0x6C, 0x43, 0x41, 0x54, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x07, 0x75, +0x6E, 0x69, 0x30, 0x30, 0x41, 0x44, 0x0A, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x64, 0x61, 0x73, +0x68, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x31, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x31, +0x30, 0x0B, 0x68, 0x79, 0x70, 0x68, 0x65, 0x6E, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0B, 0x65, 0x6E, +0x64, 0x61, 0x73, 0x68, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0B, 0x65, 0x6D, 0x64, 0x61, 0x73, 0x68, +0x2E, 0x63, 0x61, 0x73, 0x65, 0x0E, 0x70, 0x61, 0x72, 0x65, 0x6E, 0x6C, 0x65, 0x66, 0x74, 0x2E, +0x63, 0x61, 0x73, 0x65, 0x0F, 0x70, 0x61, 0x72, 0x65, 0x6E, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, +0x63, 0x61, 0x73, 0x65, 0x0E, 0x62, 0x72, 0x61, 0x63, 0x65, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, +0x61, 0x73, 0x65, 0x0F, 0x62, 0x72, 0x61, 0x63, 0x65, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x63, +0x61, 0x73, 0x65, 0x10, 0x62, 0x72, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x6C, 0x65, 0x66, 0x74, 0x2E, +0x63, 0x61, 0x73, 0x65, 0x11, 0x62, 0x72, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x72, 0x69, 0x67, 0x68, +0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x12, 0x67, 0x75, 0x69, 0x6C, 0x6C, 0x65, 0x6D, 0x6F, 0x74, +0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x13, 0x67, 0x75, 0x69, 0x6C, 0x6C, 0x65, +0x6D, 0x6F, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x12, 0x67, 0x75, +0x69, 0x6C, 0x73, 0x69, 0x6E, 0x67, 0x6C, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, +0x13, 0x67, 0x75, 0x69, 0x6C, 0x73, 0x69, 0x6E, 0x67, 0x6C, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, +0x63, 0x61, 0x73, 0x65, 0x06, 0x73, 0x65, 0x63, 0x6F, 0x6E, 0x64, 0x07, 0x75, 0x6E, 0x69, 0x32, +0x31, 0x31, 0x33, 0x09, 0x65, 0x73, 0x74, 0x69, 0x6D, 0x61, 0x74, 0x65, 0x64, 0x07, 0x75, 0x6E, +0x69, 0x32, 0x31, 0x31, 0x36, 0x07, 0x61, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x07, 0x75, 0x6E, +0x69, 0x32, 0x30, 0x42, 0x35, 0x0D, 0x63, 0x6F, 0x6C, 0x6F, 0x6E, 0x6D, 0x6F, 0x6E, 0x65, 0x74, +0x61, 0x72, 0x79, 0x04, 0x64, 0x6F, 0x6E, 0x67, 0x04, 0x45, 0x75, 0x72, 0x6F, 0x07, 0x75, 0x6E, +0x69, 0x32, 0x30, 0x42, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x41, 0x44, 0x04, 0x6C, 0x69, +0x72, 0x61, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x42, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, +0x42, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x41, 0x36, 0x06, 0x70, 0x65, 0x73, 0x65, 0x74, +0x61, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x42, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x42, +0x44, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x42, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x41, +0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x32, 0x31, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x32, 0x31, +0x35, 0x08, 0x65, 0x6D, 0x70, 0x74, 0x79, 0x73, 0x65, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, +0x32, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x32, 0x30, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x30, +0x42, 0x35, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x31, 0x0B, 0x75, +0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x30, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x30, 0x36, 0x30, 0x33, 0x30, 0x39, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, +0x30, 0x33, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x31, 0x0B, 0x75, +0x6E, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x30, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x30, 0x32, 0x30, 0x33, 0x30, 0x39, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, +0x30, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x38, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x30, 0x38, 0x30, 0x33, 0x30, 0x31, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x38, 0x30, 0x33, +0x30, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x37, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x30, 0x37, 0x30, 0x33, 0x30, 0x34, 0x09, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, 0x6F, 0x6D, 0x62, +0x09, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x30, 0x31, 0x30, 0x33, 0x30, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x42, 0x0B, 0x75, +0x6E, 0x69, 0x30, 0x33, 0x30, 0x43, 0x2E, 0x61, 0x6C, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x30, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x43, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x30, 0x43, 0x30, 0x33, 0x30, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x07, 0x75, +0x6E, 0x69, 0x30, 0x33, 0x30, 0x41, 0x09, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x63, 0x6F, 0x6D, 0x62, +0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x33, 0x30, 0x33, 0x30, 0x38, 0x13, 0x74, 0x69, 0x6C, +0x64, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x5F, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6F, 0x6D, 0x62, +0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x33, 0x30, 0x33, 0x30, 0x34, 0x07, 0x75, 0x6E, 0x69, +0x30, 0x33, 0x30, 0x34, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x34, 0x30, 0x33, 0x30, 0x38, +0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x34, 0x30, 0x33, 0x30, 0x30, 0x0B, 0x75, 0x6E, 0x69, +0x30, 0x33, 0x30, 0x34, 0x30, 0x33, 0x30, 0x31, 0x0D, 0x68, 0x6F, 0x6F, 0x6B, 0x61, 0x62, 0x6F, +0x76, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x46, 0x07, 0x75, +0x6E, 0x69, 0x30, 0x33, 0x31, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x31, 0x32, 0x07, 0x75, +0x6E, 0x69, 0x30, 0x33, 0x31, 0x42, 0x0C, 0x64, 0x6F, 0x74, 0x62, 0x65, 0x6C, 0x6F, 0x77, 0x63, +0x6F, 0x6D, 0x62, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x32, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x33, 0x32, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x32, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x33, 0x32, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x32, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x33, 0x33, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x33, 0x35, 0x0C, 0x75, 0x6E, 0x69, 0x30, +0x33, 0x30, 0x38, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x38, +0x30, 0x33, 0x30, 0x31, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, +0x38, 0x30, 0x33, 0x30, 0x34, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x30, 0x37, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x37, 0x30, +0x33, 0x30, 0x34, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0E, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, 0x6F, +0x6D, 0x62, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0E, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6F, 0x6D, +0x62, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x31, 0x30, 0x33, +0x30, 0x37, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x42, 0x2E, +0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x32, 0x2E, 0x63, 0x61, 0x73, +0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x30, 0x2E, 0x63, 0x61, +0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x31, 0x2E, 0x63, +0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x33, 0x2E, +0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x32, 0x30, 0x33, 0x30, 0x39, +0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x43, 0x2E, 0x63, 0x61, +0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, +0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x30, 0x2E, 0x63, 0x61, 0x73, 0x65, +0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x31, 0x2E, 0x63, 0x61, 0x73, +0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x33, 0x2E, 0x63, 0x61, +0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x30, 0x33, 0x30, 0x39, 0x2E, 0x63, +0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x41, 0x2E, 0x63, 0x61, 0x73, 0x65, +0x0E, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, +0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x33, 0x30, 0x33, 0x30, 0x38, 0x2E, 0x63, 0x61, 0x73, 0x65, +0x18, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x5F, 0x61, 0x63, 0x75, 0x74, 0x65, +0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, +0x33, 0x30, 0x33, 0x30, 0x34, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x30, 0x34, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x34, 0x30, +0x33, 0x30, 0x38, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x34, +0x30, 0x33, 0x30, 0x30, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, +0x34, 0x30, 0x33, 0x30, 0x31, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x12, 0x68, 0x6F, 0x6F, 0x6B, 0x61, +0x62, 0x6F, 0x76, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, +0x69, 0x30, 0x33, 0x30, 0x46, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, +0x31, 0x31, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x31, 0x42, 0x2E, +0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x32, 0x36, 0x2E, 0x63, 0x61, 0x73, +0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x32, 0x37, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, +0x6E, 0x69, 0x30, 0x33, 0x32, 0x38, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x32, 0x42, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x42, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x32, 0x42, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x42, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, +0x32, 0x43, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x43, 0x38, 0x00, 0x00, 0x01, 0x00, 0x00, +0x00, 0x0A, 0x00, 0x28, 0x00, 0x54, 0x00, 0x02, 0x44, 0x46, 0x4C, 0x54, 0x00, 0x0E, 0x6C, 0x61, +0x74, 0x6E, 0x00, 0x0E, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x03, 0x00, 0x00, +0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x6B, 0x65, 0x72, 0x6E, 0x00, 0x26, 0x6D, 0x61, 0x72, 0x6B, +0x00, 0x1E, 0x6D, 0x6B, 0x6D, 0x6B, 0x00, 0x14, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x04, +0x00, 0x05, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, +0x00, 0x06, 0x24, 0x4E, 0x05, 0x6C, 0x03, 0x22, 0x02, 0x9A, 0x00, 0x48, 0x00, 0x0E, 0x00, 0x06, +0x00, 0x10, 0x00, 0x01, 0x00, 0x0A, 0x00, 0x02, 0x00, 0x01, 0x00, 0x28, 0x00, 0x28, 0x00, 0x01, +0x00, 0x1E, 0x00, 0x0C, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x00, 0x01, 0x01, 0x69, 0x02, 0x68, +0x00, 0x01, 0x01, 0x68, 0x02, 0x68, 0x00, 0x02, 0x00, 0x00, 0x23, 0xC6, 0x00, 0x00, 0x23, 0xC6, +0x00, 0x01, 0x00, 0x02, 0x03, 0x0D, 0x03, 0x43, 0x00, 0x06, 0x00, 0x10, 0x00, 0x01, 0x00, 0x0A, +0x00, 0x01, 0x00, 0x01, 0x02, 0x32, 0x02, 0x32, 0x00, 0x01, 0x01, 0x28, 0x00, 0x0C, 0x00, 0x42, +0x01, 0x16, 0x01, 0x16, 0x01, 0x16, 0x01, 0x16, 0x01, 0x10, 0x01, 0x0A, 0x01, 0x04, 0x00, 0xFE, +0x00, 0xF8, 0x00, 0xF2, 0x00, 0xEC, 0x00, 0xF8, 0x00, 0xEC, 0x00, 0xF8, 0x00, 0xF8, 0x00, 0xE6, +0x1D, 0x70, 0x00, 0xF8, 0x00, 0xF8, 0x01, 0x16, 0x00, 0xF8, 0x00, 0xE0, 0x1D, 0x70, 0x00, 0xDA, +0x00, 0xFE, 0x00, 0xEC, 0x00, 0xF8, 0x00, 0xD4, 0x23, 0x80, 0x23, 0x80, 0x1D, 0x70, 0x1D, 0x70, +0x00, 0xF8, 0x00, 0xF8, 0x00, 0xCE, 0x00, 0xC8, 0x00, 0xC2, 0x00, 0xCE, 0x00, 0xBC, 0x00, 0xCE, +0x00, 0xB6, 0x00, 0xB0, 0x20, 0x46, 0x00, 0xAA, 0x00, 0xA4, 0x00, 0x9E, 0x00, 0xAA, 0x00, 0x98, +0x00, 0xCE, 0x00, 0xCE, 0x00, 0xCE, 0x00, 0xCE, 0x00, 0xCE, 0x00, 0xCE, 0x00, 0x92, 0x00, 0xAA, +0x00, 0xC2, 0x00, 0x8C, 0x00, 0xC2, 0x00, 0xAA, 0x00, 0xC2, 0x00, 0x86, 0x00, 0x8C, 0x00, 0xAA, +0x00, 0xCE, 0x00, 0xCE, 0x00, 0x01, 0x00, 0xF0, 0x03, 0xE8, 0x00, 0x01, 0x01, 0x04, 0x03, 0xE8, +0x00, 0x01, 0x00, 0xFB, 0x03, 0x5C, 0x00, 0x01, 0x00, 0xCA, 0x03, 0x52, 0x00, 0x01, 0x00, 0xBD, +0x03, 0x52, 0x00, 0x01, 0x00, 0xDE, 0x03, 0x52, 0x00, 0x01, 0x00, 0xFB, 0x03, 0x52, 0x00, 0x01, +0x00, 0xEA, 0x03, 0x52, 0x00, 0x01, 0x00, 0xF1, 0x03, 0x52, 0x00, 0x01, 0x00, 0xFB, 0x03, 0xE8, +0x00, 0x01, 0x00, 0xFA, 0x03, 0xE8, 0x00, 0x01, 0x01, 0x04, 0x03, 0x52, 0x00, 0x01, 0x00, 0xFA, +0x03, 0x52, 0x00, 0x01, 0x00, 0xFA, 0x03, 0x4D, 0x00, 0x01, 0x00, 0xFA, 0x03, 0x61, 0x00, 0x01, +0x00, 0xFB, 0x02, 0xF6, 0x00, 0x01, 0x00, 0xEA, 0x02, 0xC6, 0x00, 0x01, 0x00, 0xFA, 0x03, 0x7F, +0x00, 0x01, 0x00, 0xF9, 0x03, 0x16, 0x00, 0x01, 0x00, 0xFA, 0x02, 0xC6, 0x00, 0x01, 0x00, 0xFB, +0x03, 0x16, 0x00, 0x01, 0x00, 0xC5, 0x03, 0x16, 0x00, 0x01, 0x00, 0xE5, 0x03, 0x16, 0x00, 0x01, +0x00, 0xBC, 0x03, 0x16, 0x00, 0x01, 0x00, 0xFA, 0x03, 0x16, 0x00, 0x42, 0x00, 0x00, 0x22, 0xB8, +0x00, 0x00, 0x22, 0xB8, 0x00, 0x00, 0x22, 0xB8, 0x00, 0x00, 0x22, 0xB8, 0x00, 0x00, 0x22, 0xB2, +0x00, 0x00, 0x22, 0xAC, 0x00, 0x00, 0x22, 0xA6, 0x00, 0x00, 0x22, 0xA0, 0x00, 0x00, 0x22, 0xB8, +0x00, 0x00, 0x22, 0x9A, 0x00, 0x00, 0x22, 0xB8, 0x00, 0x00, 0x22, 0xB8, 0x00, 0x00, 0x22, 0xB8, +0x00, 0x00, 0x22, 0x94, 0x00, 0x00, 0x22, 0xB8, 0x00, 0x00, 0x22, 0x8E, 0x00, 0x00, 0x22, 0xA0, +0x00, 0x00, 0x22, 0xB8, 0x00, 0x00, 0x22, 0xB8, 0x00, 0x00, 0x22, 0xB8, 0x00, 0x00, 0x22, 0xB8, +0x00, 0x00, 0x22, 0xA0, 0x00, 0x00, 0x22, 0xA0, 0x00, 0x00, 0x22, 0xA0, 0x00, 0x00, 0x22, 0xA0, +0x00, 0x00, 0x22, 0xB8, 0x00, 0x00, 0x22, 0xB8, 0x00, 0x00, 0x22, 0xB8, 0x00, 0x00, 0x22, 0xB8, +0x00, 0x00, 0x22, 0xB8, 0x00, 0x00, 0x22, 0xA0, 0x00, 0x00, 0x22, 0x88, 0x00, 0x00, 0x22, 0xB8, +0x00, 0x00, 0x22, 0xB8, 0x00, 0x00, 0x22, 0x64, 0x00, 0x00, 0x22, 0x64, 0x00, 0x00, 0x22, 0x64, +0x00, 0x00, 0x22, 0x64, 0x00, 0x00, 0x22, 0x5E, 0x00, 0x00, 0x22, 0x58, 0x00, 0x00, 0x22, 0x52, +0x00, 0x00, 0x22, 0x4C, 0x00, 0x00, 0x22, 0x46, 0x00, 0x00, 0x22, 0x5E, 0x00, 0x00, 0x22, 0x40, +0x00, 0x00, 0x22, 0x3A, 0x00, 0x00, 0x22, 0x5E, 0x00, 0x00, 0x22, 0x34, 0x00, 0x00, 0x22, 0x64, +0x00, 0x00, 0x22, 0x64, 0x00, 0x00, 0x22, 0x64, 0x00, 0x00, 0x22, 0x64, 0x00, 0x00, 0x22, 0x64, +0x00, 0x00, 0x22, 0x64, 0x00, 0x00, 0x22, 0x5E, 0x00, 0x00, 0x22, 0x5E, 0x00, 0x00, 0x22, 0x64, +0x00, 0x00, 0x22, 0x64, 0x00, 0x00, 0x22, 0x64, 0x00, 0x00, 0x22, 0x5E, 0x00, 0x00, 0x22, 0x64, +0x00, 0x00, 0x22, 0x64, 0x00, 0x00, 0x22, 0x64, 0x00, 0x00, 0x22, 0x5E, 0x00, 0x00, 0x22, 0x2E, +0x00, 0x00, 0x22, 0x64, 0x00, 0x02, 0x00, 0x03, 0x02, 0xEA, 0x02, 0xFA, 0x00, 0x00, 0x02, 0xFC, +0x03, 0x0C, 0x00, 0x11, 0x03, 0x23, 0x03, 0x42, 0x00, 0x22, 0x00, 0x06, 0x00, 0x10, 0x00, 0x01, +0x00, 0x0A, 0x00, 0x00, 0x00, 0x01, 0x00, 0x6A, 0x00, 0x6A, 0x00, 0x01, 0x00, 0x48, 0x00, 0x0C, +0x00, 0x08, 0x00, 0x36, 0x00, 0x36, 0x00, 0x30, 0x00, 0x2A, 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, +0x00, 0x12, 0x00, 0x01, 0x00, 0xFA, 0xFF, 0x0C, 0x00, 0x01, 0x00, 0xFA, 0xFF, 0x0D, 0x00, 0x01, +0x00, 0xFB, 0xFF, 0x4E, 0x00, 0x01, 0x00, 0xFA, 0xFF, 0x16, 0x00, 0x01, 0x00, 0xFB, 0xFF, 0x0C, +0x00, 0x01, 0x00, 0xFA, 0xFF, 0x0E, 0x00, 0x01, 0x00, 0xFA, 0xFF, 0x32, 0x00, 0x08, 0x00, 0x00, +0x21, 0x0A, 0x00, 0x00, 0x21, 0x0A, 0x00, 0x00, 0x21, 0x0A, 0x00, 0x00, 0x21, 0x04, 0x00, 0x00, +0x21, 0x0A, 0x00, 0x00, 0x21, 0x04, 0x00, 0x00, 0x21, 0x0A, 0x00, 0x00, 0x21, 0x0A, 0x00, 0x01, +0x00, 0x08, 0x03, 0x0E, 0x03, 0x0F, 0x03, 0x10, 0x03, 0x11, 0x03, 0x13, 0x03, 0x14, 0x03, 0x44, +0x03, 0x45, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x02, 0x1A, 0x00, 0xE6, +0x00, 0x02, 0x00, 0xF0, 0x00, 0x0C, 0x00, 0x07, 0x00, 0xC4, 0x00, 0xAA, 0x00, 0x78, 0x00, 0x5E, +0x00, 0x3C, 0x00, 0x26, 0x00, 0x10, 0x00, 0x02, 0x19, 0xE6, 0x19, 0xE0, 0x00, 0x10, 0x00, 0x0A, +0x00, 0x01, 0x02, 0x07, 0x00, 0x00, 0x00, 0x01, 0x02, 0x07, 0x02, 0xE4, 0x00, 0x02, 0x19, 0xD0, +0x19, 0xCA, 0x00, 0x10, 0x00, 0x0A, 0x00, 0x01, 0x02, 0x14, 0x00, 0x00, 0x00, 0x01, 0x02, 0x14, +0x02, 0xC6, 0x00, 0x02, 0x00, 0x1C, 0x00, 0x16, 0x00, 0x10, 0x00, 0x0A, 0x00, 0x01, 0x02, 0x95, +0x00, 0x00, 0x00, 0x01, 0x02, 0x95, 0x02, 0xE4, 0x00, 0x01, 0x00, 0xDC, 0x00, 0x00, 0x00, 0x01, +0x00, 0xDC, 0x02, 0xE4, 0x00, 0x03, 0x19, 0x98, 0x19, 0x92, 0x00, 0x76, 0x00, 0x70, 0x00, 0x14, +0x00, 0x0E, 0x00, 0x01, 0x03, 0x90, 0x00, 0x00, 0x00, 0x01, 0x03, 0x90, 0x02, 0xE4, 0x00, 0x03, +0x00, 0x2C, 0x00, 0x26, 0x00, 0x20, 0x00, 0x1A, 0x00, 0x14, 0x00, 0x0E, 0x00, 0x01, 0x04, 0x35, +0x00, 0x00, 0x00, 0x01, 0x04, 0x35, 0x02, 0xE4, 0x00, 0x01, 0x02, 0x86, 0x00, 0x00, 0x00, 0x01, +0x02, 0x86, 0x02, 0xE4, 0x00, 0x01, 0x00, 0xD7, 0x00, 0x00, 0x00, 0x01, 0x00, 0xD7, 0x02, 0xE4, +0x00, 0x03, 0x19, 0x4C, 0x19, 0x46, 0x00, 0x2A, 0x00, 0x24, 0x00, 0x14, 0x00, 0x0E, 0x00, 0x01, +0x03, 0x9D, 0x00, 0x00, 0x00, 0x01, 0x03, 0x9D, 0x02, 0xC6, 0x00, 0x02, 0x19, 0x32, 0x19, 0x2C, +0x00, 0x10, 0x00, 0x0A, 0x00, 0x01, 0x02, 0x4E, 0x00, 0x00, 0x00, 0x01, 0x02, 0x4E, 0x02, 0xE4, +0x00, 0x02, 0x00, 0x01, 0x02, 0x19, 0x02, 0x1F, 0x00, 0x00, 0x00, 0x4A, 0x00, 0x00, 0x20, 0x18, +0x00, 0x00, 0x20, 0x18, 0x00, 0x00, 0x20, 0x18, 0x00, 0x00, 0x20, 0x18, 0x00, 0x00, 0x20, 0x12, +0x00, 0x00, 0x20, 0x0C, 0x00, 0x00, 0x20, 0x06, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, 0x18, +0x00, 0x00, 0x1F, 0xFA, 0x00, 0x00, 0x20, 0x18, 0x00, 0x00, 0x20, 0x18, 0x00, 0x00, 0x20, 0x18, +0x00, 0x00, 0x1F, 0xF4, 0x00, 0x00, 0x20, 0x18, 0x00, 0x00, 0x1F, 0xEE, 0x00, 0x00, 0x20, 0x00, +0x00, 0x00, 0x20, 0x18, 0x00, 0x00, 0x20, 0x18, 0x00, 0x00, 0x20, 0x18, 0x00, 0x00, 0x20, 0x18, +0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, 0x00, +0x00, 0x00, 0x20, 0x18, 0x00, 0x00, 0x20, 0x18, 0x00, 0x00, 0x20, 0x18, 0x00, 0x00, 0x20, 0x18, +0x00, 0x00, 0x20, 0x18, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x1F, 0xE8, 0x00, 0x00, 0x20, 0x18, +0x00, 0x00, 0x20, 0x18, 0x00, 0x01, 0x1F, 0xDC, 0x00, 0x01, 0x1F, 0xDC, 0x00, 0x01, 0x1F, 0xDC, +0x00, 0x01, 0x1F, 0xD6, 0x00, 0x01, 0x1F, 0xDC, 0x00, 0x01, 0x1F, 0xD6, 0x00, 0x00, 0x1F, 0xC4, +0x00, 0x00, 0x1F, 0xC4, 0x00, 0x00, 0x1F, 0xC4, 0x00, 0x00, 0x1F, 0xC4, 0x00, 0x00, 0x1F, 0xBE, +0x00, 0x00, 0x1F, 0xB8, 0x00, 0x00, 0x1F, 0xB2, 0x00, 0x00, 0x1F, 0xAC, 0x00, 0x00, 0x1F, 0xA6, +0x00, 0x00, 0x1F, 0xBE, 0x00, 0x00, 0x1F, 0xA0, 0x00, 0x00, 0x1F, 0x9A, 0x00, 0x00, 0x1F, 0xBE, +0x00, 0x00, 0x1F, 0x94, 0x00, 0x00, 0x1F, 0xC4, 0x00, 0x00, 0x1F, 0xC4, 0x00, 0x00, 0x1F, 0xC4, +0x00, 0x00, 0x1F, 0xC4, 0x00, 0x00, 0x1F, 0xC4, 0x00, 0x00, 0x1F, 0xC4, 0x00, 0x00, 0x1F, 0xBE, +0x00, 0x00, 0x1F, 0xBE, 0x00, 0x00, 0x1F, 0xC4, 0x00, 0x00, 0x1F, 0xC4, 0x00, 0x00, 0x1F, 0xC4, +0x00, 0x00, 0x1F, 0xBE, 0x00, 0x00, 0x1F, 0xC4, 0x00, 0x00, 0x1F, 0xC4, 0x00, 0x00, 0x1F, 0xC4, +0x00, 0x00, 0x1F, 0xBE, 0x00, 0x00, 0x1F, 0x8E, 0x00, 0x00, 0x1F, 0xC4, 0x00, 0x01, 0x1F, 0xDC, +0x00, 0x01, 0x1F, 0xDC, 0x00, 0x02, 0x00, 0x06, 0x02, 0xEA, 0x02, 0xFA, 0x00, 0x00, 0x02, 0xFC, +0x03, 0x0C, 0x00, 0x11, 0x03, 0x0E, 0x03, 0x11, 0x00, 0x22, 0x03, 0x13, 0x03, 0x14, 0x00, 0x26, +0x03, 0x23, 0x03, 0x42, 0x00, 0x28, 0x03, 0x44, 0x03, 0x45, 0x00, 0x48, 0x00, 0x04, 0x00, 0x00, +0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x1E, 0xC4, 0x1C, 0x80, 0x00, 0x05, 0x1C, 0xF6, 0x00, 0x0C, +0x02, 0x14, 0x1C, 0x6E, 0x00, 0x00, 0x1C, 0x68, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x5C, 0x00, 0x00, +0x1C, 0x68, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x56, 0x00, 0x00, 0x1C, 0x68, 0x1C, 0x62, 0x00, 0x00, +0x1C, 0x56, 0x00, 0x00, 0x1C, 0x68, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x56, 0x00, 0x00, 0x1C, 0x50, +0x1C, 0x62, 0x00, 0x00, 0x1C, 0x56, 0x00, 0x00, 0x1C, 0x68, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x56, +0x00, 0x00, 0x1C, 0x68, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x56, 0x00, 0x00, 0x1C, 0x68, 0x1C, 0x62, +0x00, 0x00, 0x1C, 0x56, 0x00, 0x00, 0x1C, 0x68, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x56, 0x00, 0x00, +0x1C, 0x68, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x56, 0x00, 0x00, 0x1C, 0x68, 0x1C, 0x62, 0x00, 0x00, +0x1C, 0x56, 0x00, 0x00, 0x1C, 0x50, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x56, 0x00, 0x00, 0x1C, 0x68, +0x1C, 0x62, 0x00, 0x00, 0x1C, 0x56, 0x00, 0x00, 0x1C, 0x68, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x56, +0x00, 0x00, 0x1C, 0x68, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x4A, 0x00, 0x00, 0x1C, 0x68, 0x1C, 0x62, +0x00, 0x00, 0x1C, 0x56, 0x00, 0x00, 0x1C, 0x68, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x6E, 0x00, 0x00, +0x1C, 0x50, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x44, 0x00, 0x00, 0x1C, 0x68, 0x1C, 0x62, 0x00, 0x00, +0x1C, 0x56, 0x00, 0x00, 0x1C, 0x68, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x56, 0x00, 0x00, 0x1C, 0x68, +0x1C, 0x62, 0x00, 0x00, 0x1C, 0x56, 0x00, 0x00, 0x1C, 0x68, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x6E, +0x00, 0x00, 0x1C, 0x68, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x3E, 0x00, 0x00, 0x1C, 0x68, 0x1C, 0x62, +0x00, 0x00, 0x1C, 0x38, 0x00, 0x00, 0x1C, 0x68, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x56, 0x00, 0x00, +0x1C, 0x68, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x32, 0x00, 0x00, 0x1C, 0x2C, 0x00, 0x00, 0x00, 0x00, +0x1C, 0x26, 0x00, 0x00, 0x1C, 0x2C, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x20, 0x00, 0x00, 0x1C, 0x1A, +0x00, 0x00, 0x00, 0x00, 0x1C, 0x14, 0x00, 0x00, 0x1C, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x08, +0x00, 0x00, 0x1C, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x02, 0x00, 0x00, 0x1C, 0x0E, 0x00, 0x00, +0x00, 0x00, 0x1C, 0x14, 0x00, 0x00, 0x1B, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x08, 0x00, 0x00, +0x1B, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x02, 0x00, 0x00, 0x1C, 0x0E, 0x00, 0x00, 0x00, 0x00, +0x1C, 0x02, 0x00, 0x00, 0x1C, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x1B, 0xF6, 0x00, 0x00, 0x1B, 0xF0, +0x00, 0x00, 0x1B, 0xEA, 0x1B, 0xF6, 0x00, 0x00, 0x1B, 0xF0, 0x00, 0x00, 0x1B, 0xEA, 0x1B, 0xE4, +0x00, 0x00, 0x1B, 0xF0, 0x00, 0x00, 0x1B, 0xEA, 0x1B, 0xF6, 0x00, 0x00, 0x1B, 0xF0, 0x00, 0x00, +0x1B, 0xEA, 0x1B, 0xF6, 0x00, 0x00, 0x1B, 0xDE, 0x00, 0x00, 0x1B, 0xEA, 0x1B, 0xF6, 0x00, 0x00, +0x1B, 0xD8, 0x00, 0x00, 0x1B, 0xEA, 0x1B, 0xD2, 0x00, 0x00, 0x1B, 0xCC, 0x1B, 0xC6, 0x00, 0x00, +0x1B, 0xC0, 0x00, 0x00, 0x1B, 0xCC, 0x1B, 0xC6, 0x00, 0x00, 0x1B, 0xBA, 0x00, 0x00, 0x1B, 0xCC, +0x1B, 0xC6, 0x00, 0x00, 0x1B, 0xBA, 0x00, 0x00, 0x1B, 0xCC, 0x1B, 0xC6, 0x00, 0x00, 0x1B, 0xBA, +0x00, 0x00, 0x1B, 0xB4, 0x1B, 0xC6, 0x00, 0x00, 0x1B, 0xBA, 0x00, 0x00, 0x1B, 0xCC, 0x1B, 0xC6, +0x00, 0x00, 0x1B, 0xBA, 0x00, 0x00, 0x1B, 0xCC, 0x1B, 0xC6, 0x00, 0x00, 0x1B, 0xBA, 0x00, 0x00, +0x1B, 0xAE, 0x1B, 0xC6, 0x00, 0x00, 0x1B, 0xBA, 0x00, 0x00, 0x1B, 0xCC, 0x1B, 0xC6, 0x00, 0x00, +0x1B, 0xBA, 0x00, 0x00, 0x1B, 0xCC, 0x1B, 0xC6, 0x00, 0x00, 0x1B, 0xBA, 0x00, 0x00, 0x1B, 0xCC, +0x1B, 0xC6, 0x00, 0x00, 0x1B, 0xA8, 0x00, 0x00, 0x1B, 0xCC, 0x1B, 0xC6, 0x00, 0x00, 0x1B, 0xBA, +0x00, 0x00, 0x1B, 0xCC, 0x1B, 0xC6, 0x00, 0x00, 0x1B, 0xBA, 0x00, 0x00, 0x1B, 0xCC, 0x1B, 0xC6, +0x00, 0x00, 0x1B, 0xD2, 0x00, 0x00, 0x1B, 0xAE, 0x1B, 0xC6, 0x00, 0x00, 0x1B, 0xA2, 0x00, 0x00, +0x1B, 0xCC, 0x1B, 0xC6, 0x00, 0x00, 0x1B, 0xBA, 0x00, 0x00, 0x1B, 0xCC, 0x1B, 0xC6, 0x00, 0x00, +0x1B, 0xBA, 0x00, 0x00, 0x1B, 0xCC, 0x1B, 0xC6, 0x00, 0x00, 0x1B, 0xBA, 0x00, 0x00, 0x1B, 0xCC, +0x1B, 0xC6, 0x00, 0x00, 0x1B, 0x9C, 0x00, 0x00, 0x1B, 0xCC, 0x1B, 0xC6, 0x00, 0x00, 0x1B, 0x96, +0x00, 0x00, 0x1B, 0xCC, 0x1B, 0xC6, 0x00, 0x00, 0x1B, 0xD2, 0x00, 0x00, 0x1B, 0xCC, 0x1B, 0xC6, +0x00, 0x00, 0x1B, 0xBA, 0x00, 0x00, 0x1B, 0xCC, 0x1B, 0xC6, 0x00, 0x00, 0x1B, 0x90, 0x00, 0x00, +0x1B, 0x8A, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x84, 0x00, 0x00, 0x1B, 0x7E, 0x00, 0x00, 0x00, 0x00, +0x1B, 0x78, 0x00, 0x00, 0x1B, 0x7E, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x78, 0x00, 0x00, 0x1B, 0x7E, +0x00, 0x00, 0x00, 0x00, 0x1B, 0x78, 0x00, 0x00, 0x1B, 0x7E, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x84, +0x00, 0x00, 0x1B, 0x72, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x78, 0x00, 0x00, 0x1B, 0x7E, 0x00, 0x00, +0x00, 0x00, 0x1B, 0x78, 0x00, 0x00, 0x1B, 0x7E, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x6C, 0x00, 0x00, +0x1B, 0x66, 0x00, 0x00, 0x1B, 0x60, 0x1B, 0x5A, 0x00, 0x00, 0x1B, 0x54, 0x00, 0x00, 0x1B, 0x4E, +0x1B, 0x6C, 0x00, 0x00, 0x1B, 0x48, 0x00, 0x00, 0x1B, 0x60, 0x1B, 0x42, 0x00, 0x00, 0x1B, 0x66, +0x00, 0x00, 0x1B, 0x60, 0x1B, 0x6C, 0x00, 0x00, 0x1B, 0x3C, 0x00, 0x00, 0x1B, 0x60, 0x1B, 0x36, +0x00, 0x00, 0x1B, 0x30, 0x1B, 0x2A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x2A, +0x00, 0x00, 0x1B, 0x24, 0x00, 0x00, 0x1B, 0x30, 0x1B, 0x2A, 0x00, 0x00, 0x1B, 0x1E, 0x00, 0x00, +0x1B, 0x30, 0x1B, 0x2A, 0x00, 0x00, 0x1B, 0x1E, 0x00, 0x00, 0x1B, 0x30, 0x1B, 0x2A, 0x00, 0x00, +0x1B, 0x1E, 0x00, 0x00, 0x1B, 0x30, 0x1B, 0x2A, 0x00, 0x00, 0x1B, 0x18, 0x00, 0x00, 0x1B, 0x30, +0x1B, 0x2A, 0x00, 0x00, 0x1B, 0x1E, 0x00, 0x00, 0x1B, 0x30, 0x1B, 0x2A, 0x00, 0x00, 0x1B, 0x24, +0x00, 0x00, 0x1B, 0x30, 0x1B, 0x2A, 0x00, 0x00, 0x1B, 0x1E, 0x00, 0x00, 0x1B, 0x30, 0x1B, 0x2A, +0x00, 0x00, 0x1B, 0x36, 0x00, 0x00, 0x1B, 0x12, 0x1B, 0x2A, 0x00, 0x00, 0x1B, 0x0C, 0x00, 0x00, +0x1B, 0x30, 0x1B, 0x2A, 0x00, 0x00, 0x1B, 0x1E, 0x00, 0x00, 0x1B, 0x30, 0x1B, 0x2A, 0x00, 0x00, +0x1B, 0x1E, 0x00, 0x00, 0x1B, 0x30, 0x1B, 0x2A, 0x00, 0x00, 0x1B, 0x1E, 0x00, 0x00, 0x1B, 0x30, +0x1B, 0x2A, 0x00, 0x00, 0x1B, 0x36, 0x00, 0x00, 0x1B, 0x30, 0x1B, 0x2A, 0x00, 0x00, 0x1B, 0x1E, +0x00, 0x00, 0x1B, 0x30, 0x1B, 0x2A, 0x00, 0x00, 0x1B, 0x06, 0x00, 0x00, 0x1B, 0x00, 0x00, 0x00, +0x00, 0x00, 0x1A, 0xFA, 0x00, 0x00, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1A, 0xF4, 0x00, 0x00, +0x1A, 0xEE, 0x00, 0x00, 0x00, 0x00, 0x1A, 0xF4, 0x00, 0x00, 0x1A, 0xE8, 0x00, 0x00, 0x00, 0x00, +0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, 0x00, 0x00, 0x1A, 0xD0, 0x00, 0x00, 0x1A, 0xDC, 0x00, 0x00, +0x00, 0x00, 0x1A, 0xD0, 0x1A, 0xCA, 0x1A, 0xDC, 0x1A, 0xD6, 0x00, 0x00, 0x1A, 0xD0, 0x1A, 0xE2, +0x1A, 0xDC, 0x1A, 0xD6, 0x00, 0x00, 0x1A, 0xD0, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xC4, 0x00, 0x00, +0x1A, 0xD0, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, 0x00, 0x00, 0x1A, 0xD0, 0x1A, 0xE2, 0x1A, 0xDC, +0x1A, 0xBE, 0x00, 0x00, 0x1A, 0xD0, 0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xD6, 0x00, 0x00, 0x1A, 0xD0, +0x1A, 0xE2, 0x1A, 0xDC, 0x1A, 0xB8, 0x00, 0x00, 0x1A, 0xD0, 0x1A, 0xB2, 0x1A, 0xAC, 0x1A, 0xA6, +0x00, 0x00, 0x1A, 0xA0, 0x1A, 0x9A, 0x00, 0x00, 0x1A, 0x94, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x9A, +0x00, 0x00, 0x1A, 0x8E, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x88, 0x00, 0x00, 0x1A, 0x82, 0x00, 0x00, +0x00, 0x00, 0x1A, 0x7C, 0x00, 0x00, 0x1A, 0x82, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x76, 0x00, 0x00, +0x1A, 0x82, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x88, 0x00, 0x00, 0x1A, 0x70, 0x00, 0x00, 0x00, 0x00, +0x1A, 0x76, 0x00, 0x00, 0x1A, 0x82, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x88, 0x00, 0x00, 0x1A, 0x6A, +0x00, 0x00, 0x00, 0x00, 0x1A, 0x88, 0x00, 0x00, 0x1A, 0x82, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x88, +0x00, 0x00, 0x1A, 0x64, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x76, 0x00, 0x00, 0x1A, 0x82, 0x00, 0x00, +0x00, 0x00, 0x1A, 0x5E, 0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, 0x1A, 0x40, 0x1A, 0x58, +0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, 0x1A, 0x3A, 0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, +0x1A, 0x3A, 0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, 0x1A, 0x3A, 0x1A, 0x58, 0x1A, 0x52, +0x1A, 0x4C, 0x1A, 0x46, 0x1A, 0x3A, 0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, 0x1A, 0x3A, +0x1A, 0x58, 0x1A, 0x34, 0x1A, 0x4C, 0x1A, 0x46, 0x1A, 0x3A, 0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, +0x1A, 0x46, 0x1A, 0x3A, 0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, 0x1A, 0x3A, 0x1A, 0x58, +0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, 0x1A, 0x2E, 0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, +0x1A, 0x3A, 0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, 0x1A, 0x28, 0x1A, 0x58, 0x1A, 0x52, +0x1A, 0x4C, 0x1A, 0x46, 0x1A, 0x28, 0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, 0x1A, 0x5E, +0x1A, 0x58, 0x1A, 0x34, 0x1A, 0x4C, 0x1A, 0x46, 0x1B, 0x42, 0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, +0x1A, 0x46, 0x1A, 0x3A, 0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, 0x1A, 0x5E, 0x00, 0x00, +0x1A, 0x52, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x40, 0x00, 0x00, 0x1A, 0x52, 0x00, 0x00, 0x00, 0x00, +0x1A, 0x5E, 0x00, 0x00, 0x1A, 0x34, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x42, 0x00, 0x00, 0x1A, 0x52, +0x00, 0x00, 0x00, 0x00, 0x1A, 0x3A, 0x00, 0x00, 0x1A, 0x52, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x3A, +0x00, 0x00, 0x1A, 0x52, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x22, 0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, +0x1A, 0x46, 0x1A, 0x3A, 0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, 0x1A, 0x3A, 0x1A, 0x58, +0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, 0x1A, 0x1C, 0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, +0x1A, 0x16, 0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, 0x1A, 0x5E, 0x1A, 0x58, 0x1A, 0x52, +0x1A, 0x4C, 0x1A, 0x46, 0x1A, 0x10, 0x1A, 0x0A, 0x1A, 0x04, 0x19, 0xFE, 0x19, 0xF8, 0x19, 0xF2, +0x1A, 0x0A, 0x1A, 0x04, 0x19, 0xFE, 0x19, 0xF8, 0x1A, 0x3A, 0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, +0x1A, 0x46, 0x1A, 0x1C, 0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, 0x1A, 0x28, 0x1A, 0x58, +0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, 0x1A, 0x28, 0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, +0x19, 0xEC, 0x00, 0x00, 0x19, 0xE6, 0x00, 0x00, 0x00, 0x00, 0x19, 0xE0, 0x00, 0x00, 0x19, 0xDA, +0x00, 0x00, 0x00, 0x00, 0x19, 0xE0, 0x00, 0x00, 0x19, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x5E, +0x1A, 0x58, 0x1A, 0x52, 0x1A, 0x4C, 0x1A, 0x46, 0x19, 0xD4, 0x00, 0x00, 0x19, 0xCE, 0x00, 0x00, +0x00, 0x00, 0x19, 0xC8, 0x00, 0x00, 0x19, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x19, 0xC2, 0x00, 0x00, +0x19, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x19, 0xD4, 0x00, 0x00, 0x19, 0xBC, 0x00, 0x00, 0x00, 0x00, +0x19, 0xB6, 0x00, 0x00, 0x19, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x19, 0xD4, 0x00, 0x00, 0x19, 0xB0, +0x00, 0x00, 0x00, 0x00, 0x19, 0xC2, 0x00, 0x00, 0x19, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x19, 0xD4, +0x00, 0x00, 0x19, 0xAA, 0x00, 0x00, 0x00, 0x00, 0x1A, 0xAC, 0x00, 0x00, 0x19, 0xA4, 0x00, 0x00, +0x00, 0x00, 0x19, 0x9E, 0x00, 0x00, 0x19, 0xA4, 0x00, 0x00, 0x00, 0x00, 0x19, 0x98, 0x00, 0x00, +0x19, 0xA4, 0x00, 0x00, 0x00, 0x00, 0x19, 0x98, 0x00, 0x00, 0x19, 0xA4, 0x00, 0x00, 0x00, 0x00, +0x19, 0x92, 0x00, 0x00, 0x19, 0xA4, 0x00, 0x00, 0x00, 0x00, 0x1A, 0xAC, 0x00, 0x00, 0x19, 0x8C, +0x00, 0x00, 0x00, 0x00, 0x19, 0x98, 0x00, 0x00, 0x19, 0xA4, 0x00, 0x00, 0x00, 0x00, 0x1A, 0xAC, +0x00, 0x00, 0x19, 0x86, 0x00, 0x00, 0x00, 0x00, 0x19, 0x98, 0x00, 0x00, 0x19, 0xA4, 0x00, 0x00, +0x00, 0x00, 0x1A, 0xAC, 0x00, 0x00, 0x19, 0x80, 0x00, 0x00, 0x00, 0x00, 0x19, 0x98, 0x00, 0x00, +0x19, 0x80, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x6C, 0x00, 0x00, 0x1B, 0x66, 0x00, 0x00, 0x00, 0x00, +0x1C, 0x14, 0x00, 0x00, 0x19, 0x7A, 0x00, 0x00, 0x00, 0x00, 0x19, 0x74, 0x00, 0x00, 0x19, 0x6E, +0x00, 0x00, 0x19, 0x68, 0x19, 0x74, 0x00, 0x00, 0x19, 0x6E, 0x00, 0x00, 0x19, 0x68, 0x19, 0x62, +0x00, 0x00, 0x19, 0x6E, 0x00, 0x00, 0x19, 0x68, 0x19, 0x74, 0x00, 0x00, 0x19, 0x5C, 0x00, 0x00, +0x19, 0x68, 0x19, 0x74, 0x00, 0x00, 0x19, 0x56, 0x00, 0x00, 0x19, 0x68, 0x19, 0x74, 0x00, 0x00, +0x19, 0x50, 0x00, 0x00, 0x19, 0x68, 0x19, 0x74, 0x00, 0x00, 0x19, 0x4A, 0x00, 0x00, 0x19, 0x68, +0x19, 0x44, 0x19, 0x3E, 0x19, 0x38, 0x19, 0x32, 0x00, 0x00, 0x19, 0x2C, 0x19, 0x3E, 0x19, 0x38, +0x19, 0x32, 0x00, 0x00, 0x19, 0x26, 0x19, 0x3E, 0x19, 0x38, 0x19, 0x32, 0x00, 0x00, 0x19, 0x26, +0x19, 0x3E, 0x19, 0x38, 0x19, 0x32, 0x00, 0x00, 0x19, 0x26, 0x19, 0x3E, 0x19, 0x38, 0x19, 0x32, +0x00, 0x00, 0x19, 0xC2, 0x19, 0x3E, 0x19, 0x38, 0x19, 0x32, 0x00, 0x00, 0x19, 0x26, 0x19, 0x3E, +0x19, 0x38, 0x19, 0x32, 0x00, 0x00, 0x19, 0x44, 0x19, 0x3E, 0x19, 0x20, 0x19, 0x32, 0x00, 0x00, +0x1C, 0x5C, 0x19, 0x3E, 0x19, 0x38, 0x19, 0x32, 0x00, 0x00, 0x19, 0x26, 0x19, 0x3E, 0x19, 0x38, +0x19, 0x32, 0x00, 0x00, 0x19, 0x44, 0x00, 0x00, 0x19, 0x38, 0x00, 0x00, 0x00, 0x00, 0x19, 0x2C, +0x00, 0x00, 0x19, 0x38, 0x00, 0x00, 0x00, 0x00, 0x19, 0x44, 0x00, 0x00, 0x19, 0x20, 0x00, 0x00, +0x00, 0x00, 0x1C, 0x5C, 0x00, 0x00, 0x19, 0x38, 0x00, 0x00, 0x00, 0x00, 0x19, 0x26, 0x00, 0x00, +0x19, 0x38, 0x00, 0x00, 0x00, 0x00, 0x19, 0x26, 0x00, 0x00, 0x19, 0x38, 0x00, 0x00, 0x00, 0x00, +0x19, 0x1A, 0x19, 0x3E, 0x19, 0x38, 0x19, 0x32, 0x00, 0x00, 0x19, 0x26, 0x19, 0x3E, 0x19, 0x38, +0x19, 0x32, 0x00, 0x00, 0x19, 0x26, 0x19, 0x3E, 0x19, 0x38, 0x19, 0x32, 0x00, 0x00, 0x19, 0x14, +0x19, 0x3E, 0x19, 0x38, 0x19, 0x32, 0x00, 0x00, 0x19, 0x44, 0x19, 0x3E, 0x19, 0x38, 0x19, 0x32, +0x00, 0x00, 0x19, 0x0E, 0x19, 0x3E, 0x19, 0x38, 0x19, 0x32, 0x00, 0x00, 0x19, 0x26, 0x19, 0x3E, +0x19, 0x38, 0x19, 0x32, 0x00, 0x00, 0x19, 0x08, 0x19, 0x3E, 0x19, 0x38, 0x19, 0x32, 0x00, 0x00, +0x19, 0x02, 0x00, 0x00, 0x18, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x18, 0xF6, 0x00, 0x00, 0x18, 0xF0, +0x00, 0x00, 0x00, 0x00, 0x18, 0xEA, 0x00, 0x00, 0x18, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x18, 0xE4, +0x00, 0x00, 0x18, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x18, 0xE4, 0x00, 0x00, 0x18, 0xF0, 0x00, 0x00, +0x00, 0x00, 0x18, 0xDE, 0x00, 0x00, 0x18, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x18, 0xD8, 0x00, 0x00, +0x1B, 0x2A, 0x00, 0x00, 0x00, 0x00, 0x18, 0xD2, 0x00, 0x00, 0x18, 0xCC, 0x00, 0x00, 0x00, 0x00, +0x1C, 0x44, 0x00, 0x00, 0x18, 0xCC, 0x00, 0x00, 0x00, 0x00, 0x18, 0xC6, 0x00, 0x00, 0x18, 0xCC, +0x00, 0x00, 0x00, 0x00, 0x18, 0xC6, 0x00, 0x00, 0x18, 0xCC, 0x00, 0x00, 0x00, 0x00, 0x18, 0xC6, +0x00, 0x00, 0x18, 0xCC, 0x00, 0x00, 0x00, 0x00, 0x18, 0xD2, 0x00, 0x00, 0x18, 0xC0, 0x00, 0x00, +0x00, 0x00, 0x18, 0xBA, 0x00, 0x00, 0x18, 0xCC, 0x00, 0x00, 0x00, 0x00, 0x18, 0xC6, 0x00, 0x00, +0x18, 0xCC, 0x00, 0x00, 0x00, 0x00, 0x18, 0xC6, 0x00, 0x00, 0x18, 0xCC, 0x00, 0x00, 0x00, 0x00, +0x18, 0xC6, 0x00, 0x00, 0x18, 0xCC, 0x00, 0x00, 0x00, 0x00, 0x18, 0xD2, 0x00, 0x00, 0x18, 0xCC, +0x00, 0x00, 0x18, 0xB4, 0x1C, 0x44, 0x00, 0x00, 0x18, 0xCC, 0x00, 0x00, 0x18, 0xB4, 0x18, 0xC6, +0x00, 0x00, 0x18, 0xCC, 0x00, 0x00, 0x18, 0xB4, 0x18, 0xC6, 0x00, 0x00, 0x18, 0xCC, 0x00, 0x00, +0x18, 0xB4, 0x18, 0xD2, 0x00, 0x00, 0x18, 0xC0, 0x00, 0x00, 0x18, 0xB4, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x1B, 0x2A, 0x00, 0x00, 0x18, 0xAE, 0x00, 0x00, 0x18, 0xA8, 0x18, 0xA2, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0xA2, 0x00, 0x00, 0x18, 0x9C, 0x00, 0x00, 0x18, 0xA8, +0x18, 0xA2, 0x00, 0x00, 0x18, 0x96, 0x00, 0x00, 0x18, 0xA8, 0x18, 0xA2, 0x00, 0x00, 0x18, 0x96, +0x00, 0x00, 0x18, 0xA8, 0x18, 0xA2, 0x00, 0x00, 0x18, 0x96, 0x00, 0x00, 0x18, 0xA8, 0x18, 0xA2, +0x00, 0x00, 0x18, 0x90, 0x00, 0x00, 0x18, 0xA8, 0x18, 0xA2, 0x00, 0x00, 0x18, 0x96, 0x00, 0x00, +0x18, 0xA8, 0x18, 0xA2, 0x00, 0x00, 0x18, 0x9C, 0x00, 0x00, 0x18, 0xA8, 0x18, 0xA2, 0x00, 0x00, +0x18, 0x96, 0x00, 0x00, 0x18, 0xA8, 0x18, 0xA2, 0x00, 0x00, 0x18, 0xAE, 0x00, 0x00, 0x18, 0x8A, +0x18, 0xA2, 0x00, 0x00, 0x18, 0x84, 0x00, 0x00, 0x18, 0xA8, 0x18, 0xA2, 0x00, 0x00, 0x18, 0x96, +0x00, 0x00, 0x18, 0xA8, 0x18, 0xA2, 0x00, 0x00, 0x18, 0x96, 0x00, 0x00, 0x18, 0xA8, 0x18, 0xA2, +0x00, 0x00, 0x18, 0x96, 0x00, 0x00, 0x18, 0xA8, 0x18, 0xA2, 0x00, 0x00, 0x18, 0xAE, 0x00, 0x00, +0x18, 0xA8, 0x18, 0xA2, 0x00, 0x00, 0x18, 0x96, 0x00, 0x00, 0x18, 0xA8, 0x18, 0xA2, 0x00, 0x00, +0x18, 0x7E, 0x00, 0x00, 0x18, 0x78, 0x00, 0x00, 0x00, 0x00, 0x18, 0x72, 0x00, 0x00, 0x18, 0x78, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1A, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x1A, 0xD0, 0x1E, 0x82, +0x00, 0x00, 0x19, 0xDA, 0x18, 0x6C, 0x00, 0x00, 0x18, 0x66, 0x00, 0x00, 0x19, 0xDA, 0x18, 0x6C, +0x00, 0x00, 0x18, 0x66, 0x00, 0x00, 0x19, 0xDA, 0x18, 0x6C, 0x00, 0x00, 0x18, 0x60, 0x00, 0x00, +0x19, 0xDA, 0x18, 0x6C, 0x00, 0x00, 0x18, 0x66, 0x00, 0x00, 0x18, 0x5A, 0x18, 0x6C, 0x00, 0x00, +0x18, 0x60, 0x00, 0x00, 0x19, 0xDA, 0x18, 0x6C, 0x00, 0x00, 0x18, 0x60, 0x00, 0x00, 0x19, 0xDA, +0x18, 0x6C, 0x00, 0x00, 0x18, 0x60, 0x00, 0x00, 0x19, 0xDA, 0x18, 0x6C, 0x00, 0x00, 0x18, 0x66, +0x00, 0x00, 0x19, 0xDA, 0x18, 0x6C, 0x00, 0x00, 0x18, 0x66, 0x00, 0x00, 0x19, 0xDA, 0x18, 0x6C, +0x00, 0x00, 0x18, 0x54, 0x00, 0x00, 0x19, 0xDA, 0x18, 0x6C, 0x00, 0x00, 0x18, 0x66, 0x00, 0x00, +0x18, 0x5A, 0x18, 0x6C, 0x00, 0x00, 0x18, 0x60, 0x00, 0x00, 0x19, 0xDA, 0x18, 0x6C, 0x00, 0x00, +0x18, 0x60, 0x00, 0x00, 0x19, 0xDA, 0x18, 0x6C, 0x00, 0x00, 0x18, 0x60, 0x00, 0x00, 0x19, 0xDA, +0x18, 0x6C, 0x00, 0x00, 0x18, 0x4E, 0x00, 0x00, 0x19, 0xDA, 0x18, 0x6C, 0x00, 0x00, 0x18, 0x66, +0x00, 0x00, 0x19, 0xDA, 0x18, 0x6C, 0x00, 0x00, 0x1E, 0x82, 0x00, 0x00, 0x18, 0x5A, 0x18, 0x6C, +0x00, 0x00, 0x18, 0x48, 0x00, 0x00, 0x19, 0xDA, 0x18, 0x6C, 0x00, 0x00, 0x18, 0x66, 0x00, 0x00, +0x19, 0xDA, 0x18, 0x6C, 0x00, 0x00, 0x18, 0x66, 0x00, 0x00, 0x19, 0xDA, 0x18, 0x6C, 0x00, 0x00, +0x18, 0x66, 0x00, 0x00, 0x19, 0xDA, 0x18, 0x6C, 0x00, 0x00, 0x1E, 0x82, 0x00, 0x00, 0x19, 0xDA, +0x18, 0x6C, 0x00, 0x00, 0x18, 0x42, 0x00, 0x00, 0x19, 0xDA, 0x18, 0x6C, 0x00, 0x00, 0x18, 0x3C, +0x00, 0x00, 0x19, 0xDA, 0x18, 0x6C, 0x00, 0x00, 0x18, 0x66, 0x00, 0x00, 0x19, 0xDA, 0x18, 0x6C, +0x00, 0x00, 0x18, 0x36, 0x00, 0x00, 0x18, 0x30, 0x00, 0x00, 0x00, 0x00, 0x18, 0x2A, 0x00, 0x00, +0x18, 0x30, 0x00, 0x00, 0x00, 0x00, 0x18, 0x24, 0x00, 0x00, 0x18, 0x1E, 0x00, 0x00, 0x00, 0x00, +0x18, 0x18, 0x00, 0x00, 0x18, 0x12, 0x00, 0x00, 0x00, 0x00, 0x18, 0x0C, 0x00, 0x00, 0x18, 0x12, +0x00, 0x00, 0x00, 0x00, 0x18, 0x0C, 0x00, 0x00, 0x18, 0x12, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, +0x00, 0x00, 0x18, 0x06, 0x00, 0x00, 0x00, 0x00, 0x18, 0x0C, 0x00, 0x00, 0x18, 0x06, 0x00, 0x00, +0x00, 0x00, 0x18, 0x0C, 0x00, 0x00, 0x18, 0x12, 0x00, 0x00, 0x00, 0x00, 0x18, 0x0C, 0x00, 0x00, +0x18, 0x12, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x17, 0xFA, 0x19, 0xDA, 0x00, 0x00, 0x17, 0xF4, +0x18, 0x00, 0x17, 0xFA, 0x19, 0xDA, 0x00, 0x00, 0x17, 0xF4, 0x18, 0x00, 0x17, 0xFA, 0x19, 0xDA, +0x00, 0x00, 0x17, 0xF4, 0x18, 0x00, 0x17, 0xFA, 0x18, 0x5A, 0x00, 0x00, 0x17, 0xF4, 0x18, 0x00, +0x17, 0xFA, 0x17, 0xEE, 0x00, 0x00, 0x17, 0xF4, 0x00, 0x00, 0x17, 0xFA, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x17, 0xE8, 0x00, 0x00, 0x19, 0xDA, 0x17, 0xE2, 0x00, 0x00, 0x17, 0xDC, 0x00, 0x00, +0x19, 0xDA, 0x17, 0xE2, 0x00, 0x00, 0x17, 0xDC, 0x00, 0x00, 0x19, 0xDA, 0x17, 0xE2, 0x00, 0x00, +0x17, 0xDC, 0x00, 0x00, 0x19, 0xDA, 0x17, 0xE2, 0x00, 0x00, 0x17, 0xDC, 0x00, 0x00, 0x17, 0xD6, +0x17, 0xE2, 0x00, 0x00, 0x17, 0xDC, 0x00, 0x00, 0x19, 0xDA, 0x17, 0xE2, 0x00, 0x00, 0x17, 0xD0, +0x00, 0x00, 0x19, 0xDA, 0x17, 0xE2, 0x00, 0x00, 0x17, 0xDC, 0x00, 0x00, 0x18, 0x5A, 0x17, 0xE2, +0x00, 0x00, 0x17, 0xCA, 0x00, 0x00, 0x19, 0xDA, 0x17, 0xE2, 0x00, 0x00, 0x17, 0xCA, 0x00, 0x00, +0x19, 0xDA, 0x17, 0xE2, 0x00, 0x00, 0x17, 0xCA, 0x00, 0x00, 0x19, 0xDA, 0x17, 0xE2, 0x00, 0x00, +0x17, 0xC4, 0x00, 0x00, 0x19, 0xDA, 0x17, 0xE2, 0x00, 0x00, 0x17, 0xDC, 0x00, 0x00, 0x19, 0xDA, +0x17, 0xE2, 0x00, 0x00, 0x17, 0xDC, 0x00, 0x00, 0x19, 0xDA, 0x17, 0xE2, 0x00, 0x00, 0x17, 0xE8, +0x00, 0x00, 0x18, 0x5A, 0x17, 0xE2, 0x00, 0x00, 0x17, 0xBE, 0x00, 0x00, 0x19, 0xDA, 0x17, 0xE2, +0x00, 0x00, 0x17, 0xDC, 0x00, 0x00, 0x19, 0xDA, 0x17, 0xE2, 0x00, 0x00, 0x17, 0xDC, 0x00, 0x00, +0x19, 0xDA, 0x17, 0xE2, 0x00, 0x00, 0x17, 0xDC, 0x00, 0x00, 0x19, 0xDA, 0x17, 0xE2, 0x00, 0x00, +0x17, 0xB8, 0x00, 0x00, 0x19, 0xDA, 0x17, 0xE2, 0x00, 0x00, 0x17, 0xB8, 0x00, 0x00, 0x19, 0xDA, +0x17, 0xE2, 0x00, 0x00, 0x17, 0xB2, 0x00, 0x00, 0x19, 0xDA, 0x17, 0xE2, 0x00, 0x00, 0x17, 0xDC, +0x00, 0x00, 0x19, 0xDA, 0x17, 0xE2, 0x00, 0x00, 0x17, 0xAC, 0x00, 0x00, 0x17, 0xA6, 0x00, 0x00, +0x00, 0x00, 0x17, 0xA0, 0x00, 0x00, 0x17, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x17, 0x94, 0x00, 0x00, +0x17, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x17, 0x94, 0x00, 0x00, 0x17, 0x9A, 0x00, 0x00, 0x00, 0x00, +0x17, 0x94, 0x00, 0x00, 0x17, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x17, 0x94, 0x00, 0x00, 0x17, 0x9A, +0x00, 0x00, 0x00, 0x00, 0x17, 0x94, 0x00, 0x00, 0x17, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x17, 0x94, +0x00, 0x00, 0x17, 0x9A, 0x00, 0x00, 0x00, 0x00, 0x17, 0x8E, 0x00, 0x00, 0x17, 0x88, 0x00, 0x00, +0x17, 0x82, 0x17, 0x8E, 0x00, 0x00, 0x17, 0x88, 0x00, 0x00, 0x17, 0x82, 0x17, 0x8E, 0x00, 0x00, +0x17, 0x7C, 0x00, 0x00, 0x17, 0x82, 0x17, 0x76, 0x00, 0x00, 0x17, 0x88, 0x00, 0x00, 0x17, 0x82, +0x17, 0x8E, 0x00, 0x00, 0x17, 0x70, 0x00, 0x00, 0x17, 0x82, 0x17, 0x6A, 0x00, 0x00, 0x17, 0x64, +0x17, 0x5E, 0x00, 0x00, 0x17, 0x58, 0x00, 0x00, 0x17, 0x52, 0x17, 0x4C, 0x00, 0x00, 0x17, 0x46, +0x00, 0x00, 0x17, 0x52, 0x17, 0x4C, 0x00, 0x00, 0x17, 0x46, 0x00, 0x00, 0x17, 0x52, 0x17, 0x4C, +0x00, 0x00, 0x17, 0x46, 0x00, 0x00, 0x17, 0x52, 0x17, 0x4C, 0x00, 0x00, 0x17, 0x46, 0x00, 0x00, +0x17, 0x52, 0x17, 0x4C, 0x00, 0x00, 0x17, 0x40, 0x00, 0x00, 0x17, 0x52, 0x17, 0x4C, 0x00, 0x00, +0x17, 0x46, 0x00, 0x00, 0x17, 0x52, 0x17, 0x4C, 0x00, 0x00, 0x17, 0x3A, 0x00, 0x00, 0x17, 0x52, +0x17, 0x4C, 0x00, 0x00, 0x17, 0x46, 0x00, 0x00, 0x17, 0x52, 0x17, 0x4C, 0x00, 0x00, 0x17, 0x6A, +0x00, 0x00, 0x17, 0x34, 0x17, 0x5E, 0x00, 0x00, 0x17, 0x2E, 0x00, 0x00, 0x17, 0x52, 0x17, 0x4C, +0x00, 0x00, 0x17, 0x46, 0x00, 0x00, 0x17, 0x52, 0x17, 0x4C, 0x00, 0x00, 0x17, 0x46, 0x00, 0x00, +0x17, 0x52, 0x17, 0x4C, 0x00, 0x00, 0x17, 0x6A, 0x00, 0x00, 0x17, 0x64, 0x17, 0x5E, 0x00, 0x00, +0x17, 0x46, 0x00, 0x00, 0x17, 0x52, 0x17, 0x4C, 0x00, 0x00, 0x17, 0x46, 0x00, 0x00, 0x17, 0x52, +0x17, 0x4C, 0x00, 0x00, 0x17, 0x46, 0x00, 0x00, 0x17, 0x52, 0x17, 0x4C, 0x00, 0x00, 0x17, 0x28, +0x00, 0x00, 0x17, 0x22, 0x00, 0x00, 0x00, 0x00, 0x17, 0x1C, 0x00, 0x00, 0x17, 0x22, 0x00, 0x00, +0x00, 0x00, 0x17, 0x16, 0x00, 0x00, 0x17, 0x10, 0x00, 0x00, 0x00, 0x00, 0x17, 0x16, 0x00, 0x00, +0x17, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x17, 0x04, 0x00, 0x00, 0x16, 0xFE, 0x00, 0x00, 0x00, 0x00, +0x16, 0xF8, 0x16, 0xF2, 0x16, 0xEC, 0x00, 0x00, 0x16, 0xE6, 0x16, 0xE0, 0x16, 0xF2, 0x16, 0xEC, +0x00, 0x00, 0x16, 0xE6, 0x16, 0xF8, 0x16, 0xF2, 0x16, 0xEC, 0x00, 0x00, 0x16, 0xE6, 0x16, 0xF8, +0x16, 0xF2, 0x16, 0xDA, 0x00, 0x00, 0x16, 0xE6, 0x16, 0xF8, 0x16, 0xF2, 0x16, 0xEC, 0x00, 0x00, +0x16, 0xE6, 0x16, 0xF8, 0x16, 0xF2, 0x16, 0xD4, 0x00, 0x00, 0x16, 0xE6, 0x16, 0xF8, 0x16, 0xF2, +0x16, 0xEC, 0x00, 0x00, 0x16, 0xE6, 0x16, 0xF8, 0x16, 0xF2, 0x16, 0xCE, 0x00, 0x00, 0x16, 0xE6, +0x16, 0xC8, 0x16, 0xC2, 0x16, 0xBC, 0x00, 0x00, 0x16, 0xB6, 0x16, 0xB0, 0x00, 0x00, 0x16, 0xAA, +0x00, 0x00, 0x00, 0x00, 0x16, 0xB0, 0x00, 0x00, 0x16, 0xA4, 0x00, 0x00, 0x00, 0x00, 0x16, 0x9E, +0x00, 0x00, 0x17, 0x88, 0x00, 0x00, 0x00, 0x00, 0x16, 0x98, 0x00, 0x00, 0x17, 0x88, 0x00, 0x00, +0x00, 0x00, 0x16, 0x92, 0x00, 0x00, 0x1A, 0xA6, 0x00, 0x00, 0x00, 0x00, 0x16, 0x98, 0x00, 0x00, +0x17, 0x88, 0x00, 0x00, 0x00, 0x00, 0x16, 0x9E, 0x00, 0x00, 0x16, 0x8C, 0x00, 0x00, 0x00, 0x00, +0x16, 0x98, 0x00, 0x00, 0x17, 0x88, 0x00, 0x00, 0x00, 0x00, 0x16, 0x9E, 0x00, 0x00, 0x17, 0x70, +0x00, 0x00, 0x00, 0x00, 0x16, 0x9E, 0x00, 0x00, 0x17, 0x88, 0x00, 0x00, 0x00, 0x00, 0x16, 0x9E, +0x00, 0x00, 0x16, 0x86, 0x00, 0x00, 0x00, 0x00, 0x16, 0x98, 0x00, 0x00, 0x17, 0x88, 0x00, 0x00, +0x00, 0x00, 0x17, 0xE8, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, 0x17, 0xDC, 0x16, 0x80, +0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, 0x17, 0xDC, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, +0x17, 0xDC, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, 0x17, 0xDC, 0x16, 0x80, 0x16, 0x7A, +0x16, 0xAA, 0x16, 0x74, 0x17, 0xD0, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, 0x17, 0xDC, +0x16, 0x80, 0x16, 0x6E, 0x16, 0xAA, 0x16, 0x74, 0x17, 0xCA, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, +0x16, 0x74, 0x17, 0xCA, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, 0x17, 0xCA, 0x16, 0x80, +0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, 0x17, 0xC4, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, +0x17, 0xDC, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, 0x16, 0x68, 0x16, 0x80, 0x16, 0x7A, +0x16, 0xAA, 0x16, 0x74, 0x16, 0x68, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, 0x17, 0xE8, +0x16, 0x80, 0x16, 0x6E, 0x16, 0xAA, 0x16, 0x74, 0x17, 0xBE, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, +0x16, 0x74, 0x17, 0xDC, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, 0x17, 0xE8, 0x00, 0x00, +0x16, 0x7A, 0x00, 0x00, 0x00, 0x00, 0x17, 0xDC, 0x00, 0x00, 0x16, 0x7A, 0x00, 0x00, 0x00, 0x00, +0x17, 0xE8, 0x00, 0x00, 0x16, 0x6E, 0x00, 0x00, 0x00, 0x00, 0x17, 0xBE, 0x00, 0x00, 0x16, 0x7A, +0x00, 0x00, 0x00, 0x00, 0x17, 0xDC, 0x00, 0x00, 0x16, 0x7A, 0x00, 0x00, 0x00, 0x00, 0x17, 0xDC, +0x00, 0x00, 0x16, 0x7A, 0x00, 0x00, 0x00, 0x00, 0x17, 0xDC, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, +0x16, 0x74, 0x17, 0xDC, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, 0x17, 0xDC, 0x16, 0x80, +0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, 0x17, 0xB8, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, +0x17, 0xB8, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, 0x17, 0xE8, 0x16, 0x80, 0x16, 0x7A, +0x16, 0xAA, 0x16, 0x74, 0x17, 0xE8, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, 0x17, 0xDC, +0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, 0x17, 0xDC, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, +0x16, 0x74, 0x17, 0xCA, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, 0x16, 0x62, 0x16, 0x80, +0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, 0x16, 0x68, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, +0x16, 0x5C, 0x00, 0x00, 0x1B, 0xC6, 0x00, 0x00, 0x00, 0x00, 0x16, 0x56, 0x00, 0x00, 0x16, 0x50, +0x00, 0x00, 0x00, 0x00, 0x16, 0x56, 0x00, 0x00, 0x16, 0x50, 0x00, 0x00, 0x00, 0x00, 0x16, 0x4A, +0x00, 0x00, 0x18, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x16, 0x44, 0x00, 0x00, 0x16, 0xBC, 0x00, 0x00, +0x00, 0x00, 0x17, 0xC4, 0x00, 0x00, 0x16, 0xBC, 0x00, 0x00, 0x00, 0x00, 0x17, 0xC4, 0x00, 0x00, +0x16, 0xBC, 0x00, 0x00, 0x00, 0x00, 0x16, 0x44, 0x00, 0x00, 0x16, 0x3E, 0x00, 0x00, 0x00, 0x00, +0x16, 0x38, 0x00, 0x00, 0x16, 0xBC, 0x00, 0x00, 0x00, 0x00, 0x16, 0x44, 0x00, 0x00, 0x16, 0x32, +0x00, 0x00, 0x00, 0x00, 0x17, 0xC4, 0x00, 0x00, 0x16, 0xBC, 0x00, 0x00, 0x00, 0x00, 0x16, 0x44, +0x00, 0x00, 0x16, 0x2C, 0x00, 0x00, 0x00, 0x00, 0x16, 0x26, 0x00, 0x00, 0x16, 0x20, 0x00, 0x00, +0x00, 0x00, 0x16, 0x1A, 0x00, 0x00, 0x16, 0x20, 0x00, 0x00, 0x00, 0x00, 0x16, 0x1A, 0x00, 0x00, +0x16, 0x20, 0x00, 0x00, 0x00, 0x00, 0x16, 0x1A, 0x00, 0x00, 0x16, 0x20, 0x00, 0x00, 0x00, 0x00, +0x16, 0x14, 0x00, 0x00, 0x16, 0x20, 0x00, 0x00, 0x00, 0x00, 0x16, 0x26, 0x00, 0x00, 0x16, 0x0E, +0x00, 0x00, 0x00, 0x00, 0x16, 0x1A, 0x00, 0x00, 0x16, 0x20, 0x00, 0x00, 0x00, 0x00, 0x16, 0x26, +0x00, 0x00, 0x16, 0x08, 0x00, 0x00, 0x00, 0x00, 0x16, 0x1A, 0x00, 0x00, 0x16, 0x20, 0x00, 0x00, +0x00, 0x00, 0x16, 0x26, 0x00, 0x00, 0x16, 0x02, 0x00, 0x00, 0x00, 0x00, 0x16, 0x1A, 0x00, 0x00, +0x16, 0x02, 0x00, 0x00, 0x00, 0x00, 0x15, 0xFC, 0x00, 0x00, 0x19, 0xA4, 0x00, 0x00, 0x00, 0x00, +0x15, 0xF6, 0x15, 0xF0, 0x17, 0x5E, 0x00, 0x00, 0x15, 0xEA, 0x15, 0xF6, 0x15, 0xF0, 0x17, 0x5E, +0x00, 0x00, 0x15, 0xEA, 0x15, 0xF6, 0x15, 0xF0, 0x17, 0x5E, 0x00, 0x00, 0x15, 0xEA, 0x15, 0xF6, +0x15, 0xF0, 0x15, 0xE4, 0x00, 0x00, 0x15, 0xEA, 0x15, 0xF6, 0x15, 0xF0, 0x15, 0xDE, 0x00, 0x00, +0x15, 0xEA, 0x15, 0xD8, 0x15, 0xF0, 0x17, 0x5E, 0x00, 0x00, 0x15, 0xEA, 0x15, 0xF6, 0x15, 0xF0, +0x15, 0xD2, 0x00, 0x00, 0x15, 0xEA, 0x15, 0xF6, 0x15, 0xF0, 0x15, 0xCC, 0x00, 0x00, 0x15, 0xEA, +0x15, 0xC6, 0x15, 0xC0, 0x15, 0xBA, 0x15, 0xB4, 0x00, 0x00, 0x15, 0xAE, 0x15, 0xC0, 0x15, 0xBA, +0x15, 0xB4, 0x00, 0x00, 0x15, 0xAE, 0x15, 0xC0, 0x15, 0xBA, 0x15, 0xB4, 0x00, 0x00, 0x15, 0xAE, +0x15, 0xC0, 0x15, 0xBA, 0x15, 0xB4, 0x00, 0x00, 0x15, 0xAE, 0x15, 0xC0, 0x15, 0xBA, 0x15, 0xB4, +0x00, 0x00, 0x15, 0xA8, 0x15, 0xC0, 0x15, 0xBA, 0x15, 0xB4, 0x00, 0x00, 0x15, 0xAE, 0x15, 0xC0, +0x15, 0xBA, 0x15, 0xB4, 0x00, 0x00, 0x15, 0xC6, 0x15, 0xC0, 0x15, 0xA2, 0x15, 0xB4, 0x00, 0x00, +0x15, 0x9C, 0x15, 0xC0, 0x15, 0xBA, 0x15, 0xB4, 0x00, 0x00, 0x15, 0xAE, 0x15, 0xC0, 0x15, 0xBA, +0x15, 0xB4, 0x00, 0x00, 0x15, 0xC6, 0x00, 0x00, 0x15, 0xBA, 0x00, 0x00, 0x00, 0x00, 0x15, 0xAE, +0x00, 0x00, 0x15, 0xBA, 0x00, 0x00, 0x00, 0x00, 0x15, 0xC6, 0x00, 0x00, 0x15, 0xA2, 0x00, 0x00, +0x00, 0x00, 0x15, 0x9C, 0x00, 0x00, 0x15, 0xBA, 0x00, 0x00, 0x00, 0x00, 0x15, 0xAE, 0x00, 0x00, +0x15, 0xBA, 0x00, 0x00, 0x00, 0x00, 0x15, 0xAE, 0x00, 0x00, 0x15, 0xBA, 0x00, 0x00, 0x00, 0x00, +0x15, 0xAE, 0x15, 0xC0, 0x15, 0xBA, 0x15, 0xB4, 0x00, 0x00, 0x15, 0xAE, 0x15, 0xC0, 0x15, 0xBA, +0x15, 0xB4, 0x00, 0x00, 0x15, 0xAE, 0x15, 0xC0, 0x15, 0xBA, 0x15, 0xB4, 0x00, 0x00, 0x15, 0x96, +0x15, 0xC0, 0x15, 0xBA, 0x15, 0xB4, 0x00, 0x00, 0x15, 0xC6, 0x15, 0xC0, 0x15, 0xBA, 0x15, 0xB4, +0x00, 0x00, 0x15, 0x90, 0x15, 0xC0, 0x15, 0xBA, 0x15, 0xB4, 0x00, 0x00, 0x15, 0xAE, 0x15, 0xC0, +0x15, 0xBA, 0x15, 0xB4, 0x00, 0x00, 0x15, 0x8A, 0x15, 0xC0, 0x15, 0xBA, 0x15, 0xB4, 0x00, 0x00, +0x15, 0x84, 0x00, 0x00, 0x15, 0x7E, 0x00, 0x00, 0x00, 0x00, 0x15, 0x78, 0x00, 0x00, 0x15, 0x72, +0x00, 0x00, 0x00, 0x00, 0x15, 0x6C, 0x00, 0x00, 0x15, 0x72, 0x00, 0x00, 0x00, 0x00, 0x15, 0x6C, +0x00, 0x00, 0x15, 0x72, 0x00, 0x00, 0x00, 0x00, 0x15, 0x6C, 0x00, 0x00, 0x15, 0x72, 0x00, 0x00, +0x00, 0x00, 0x15, 0x66, 0x00, 0x00, 0x15, 0x72, 0x00, 0x00, 0x00, 0x00, 0x15, 0x60, 0x00, 0x00, +0x15, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x15, 0x54, 0x00, 0x00, 0x15, 0x4E, 0x00, 0x00, 0x00, 0x00, +0x15, 0x48, 0x00, 0x00, 0x15, 0x4E, 0x00, 0x00, 0x00, 0x00, 0x15, 0x48, 0x00, 0x00, 0x15, 0x4E, +0x00, 0x00, 0x00, 0x00, 0x15, 0x48, 0x00, 0x00, 0x15, 0x4E, 0x00, 0x00, 0x00, 0x00, 0x15, 0x48, +0x00, 0x00, 0x15, 0x4E, 0x00, 0x00, 0x00, 0x00, 0x15, 0x54, 0x00, 0x00, 0x15, 0x42, 0x00, 0x00, +0x00, 0x00, 0x15, 0x3C, 0x00, 0x00, 0x15, 0x4E, 0x00, 0x00, 0x00, 0x00, 0x15, 0x48, 0x00, 0x00, +0x15, 0x4E, 0x00, 0x00, 0x00, 0x00, 0x15, 0x48, 0x00, 0x00, 0x15, 0x4E, 0x00, 0x00, 0x00, 0x00, +0x15, 0x48, 0x00, 0x00, 0x15, 0x4E, 0x00, 0x00, 0x00, 0x00, 0x16, 0x44, 0x00, 0x00, 0x15, 0x36, +0x00, 0x00, 0x15, 0x30, 0x17, 0xC4, 0x00, 0x00, 0x15, 0x36, 0x00, 0x00, 0x15, 0x30, 0x17, 0xC4, +0x00, 0x00, 0x15, 0x36, 0x00, 0x00, 0x15, 0x30, 0x17, 0xC4, 0x00, 0x00, 0x15, 0x36, 0x00, 0x00, +0x15, 0x30, 0x16, 0x44, 0x00, 0x00, 0x15, 0x2A, 0x00, 0x00, 0x15, 0x30, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x17, 0x4C, 0x00, 0x00, 0x15, 0x24, 0x00, 0x00, 0x15, 0x1E, 0x15, 0x18, 0x00, 0x00, +0x15, 0x12, 0x00, 0x00, 0x15, 0x1E, 0x15, 0x18, 0x00, 0x00, 0x15, 0x12, 0x00, 0x00, 0x15, 0x1E, +0x15, 0x18, 0x00, 0x00, 0x15, 0x0C, 0x00, 0x00, 0x15, 0x1E, 0x15, 0x18, 0x00, 0x00, 0x15, 0x12, +0x00, 0x00, 0x15, 0x06, 0x15, 0x18, 0x00, 0x00, 0x15, 0x0C, 0x00, 0x00, 0x15, 0x1E, 0x15, 0x18, +0x00, 0x00, 0x15, 0x0C, 0x00, 0x00, 0x15, 0x1E, 0x15, 0x18, 0x00, 0x00, 0x15, 0x0C, 0x00, 0x00, +0x15, 0x1E, 0x15, 0x18, 0x00, 0x00, 0x15, 0x12, 0x00, 0x00, 0x15, 0x1E, 0x15, 0x18, 0x00, 0x00, +0x15, 0x12, 0x00, 0x00, 0x15, 0x1E, 0x15, 0x18, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x1E, +0x15, 0x18, 0x00, 0x00, 0x15, 0x12, 0x00, 0x00, 0x15, 0x06, 0x15, 0x18, 0x00, 0x00, 0x15, 0x0C, +0x00, 0x00, 0x15, 0x1E, 0x15, 0x18, 0x00, 0x00, 0x15, 0x0C, 0x00, 0x00, 0x15, 0x1E, 0x15, 0x18, +0x00, 0x00, 0x15, 0x0C, 0x00, 0x00, 0x15, 0x1E, 0x15, 0x18, 0x00, 0x00, 0x14, 0xFA, 0x00, 0x00, +0x15, 0x1E, 0x15, 0x18, 0x00, 0x00, 0x15, 0x12, 0x00, 0x00, 0x15, 0x1E, 0x15, 0x18, 0x00, 0x00, +0x15, 0x24, 0x00, 0x00, 0x15, 0x06, 0x15, 0x18, 0x00, 0x00, 0x14, 0xF4, 0x00, 0x00, 0x15, 0x1E, +0x15, 0x18, 0x00, 0x00, 0x15, 0x12, 0x00, 0x00, 0x15, 0x1E, 0x15, 0x18, 0x00, 0x00, 0x15, 0x12, +0x00, 0x00, 0x15, 0x1E, 0x15, 0x18, 0x00, 0x00, 0x15, 0x12, 0x00, 0x00, 0x15, 0x1E, 0x15, 0x18, +0x00, 0x00, 0x15, 0x24, 0x00, 0x00, 0x15, 0x1E, 0x15, 0x18, 0x00, 0x00, 0x14, 0xEE, 0x00, 0x00, +0x15, 0x1E, 0x15, 0x18, 0x00, 0x00, 0x14, 0xE8, 0x00, 0x00, 0x15, 0x1E, 0x15, 0x18, 0x00, 0x00, +0x15, 0x12, 0x00, 0x00, 0x15, 0x1E, 0x15, 0x18, 0x00, 0x00, 0x14, 0xE2, 0x00, 0x00, 0x14, 0xDC, +0x00, 0x00, 0x00, 0x00, 0x14, 0xD6, 0x00, 0x00, 0x14, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x14, 0xD6, +0x00, 0x00, 0x14, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x14, 0xD6, 0x00, 0x00, 0x14, 0xDC, 0x00, 0x00, +0x00, 0x00, 0x14, 0xD6, 0x00, 0x00, 0x14, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x14, 0xD6, 0x00, 0x00, +0x14, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x14, 0xD6, 0x00, 0x00, 0x14, 0xDC, 0x00, 0x00, 0x00, 0x00, +0x1A, 0x88, 0x00, 0x00, 0x1A, 0x82, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x14, 0x00, 0x00, 0x1C, 0x0E, +0x00, 0x00, 0x00, 0x00, 0x1C, 0x14, 0x00, 0x00, 0x1C, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x90, +0x00, 0x00, 0x1B, 0x8A, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x88, 0x00, 0x00, 0x1A, 0x82, 0x00, 0x00, +0x00, 0x00, 0x1A, 0x88, 0x00, 0x00, 0x1A, 0x82, 0x00, 0x00, 0x00, 0x00, 0x14, 0xD0, 0x00, 0x00, +0x14, 0xCA, 0x00, 0x00, 0x00, 0x00, 0x18, 0xF6, 0x00, 0x00, 0x18, 0xF0, 0x00, 0x00, 0x00, 0x00, +0x17, 0xE8, 0x16, 0x80, 0x16, 0x7A, 0x16, 0xAA, 0x16, 0x74, 0x00, 0x01, 0x01, 0x95, 0x00, 0x00, +0x00, 0x01, 0x01, 0x95, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x0D, 0x02, 0xC6, 0x00, 0x01, 0x01, 0x0D, +0xFF, 0x1A, 0x00, 0x01, 0x01, 0x0D, 0x02, 0x0D, 0x00, 0x01, 0x01, 0x0B, 0x03, 0xAF, 0x00, 0x01, +0x01, 0x0B, 0x02, 0xF6, 0x00, 0x01, 0x00, 0xF7, 0x02, 0xC6, 0x00, 0x01, 0x00, 0xC9, 0x02, 0xC6, +0x00, 0x01, 0x01, 0x0C, 0x03, 0x16, 0x00, 0x01, 0x01, 0x0B, 0xFF, 0x32, 0x00, 0x01, 0x01, 0x0B, +0x03, 0x16, 0x00, 0x01, 0x01, 0x0B, 0x02, 0xC6, 0x00, 0x01, 0x01, 0xDC, 0x00, 0x00, 0x00, 0x01, +0x01, 0x0B, 0x00, 0x00, 0x00, 0x01, 0x01, 0x0B, 0x02, 0x0D, 0x00, 0x01, 0x00, 0xF2, 0xFF, 0x32, +0x00, 0x01, 0x00, 0xF2, 0x01, 0x07, 0x00, 0x01, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x01, 0x01, 0x0F, +0x02, 0xC6, 0x00, 0x01, 0x01, 0xD8, 0xFF, 0x32, 0x00, 0x01, 0x01, 0x23, 0x02, 0xC6, 0x00, 0x01, +0x01, 0xD8, 0x00, 0x00, 0x00, 0x01, 0x01, 0x23, 0x02, 0x0D, 0x00, 0x01, 0x01, 0x19, 0x00, 0x00, +0x00, 0x01, 0x01, 0x19, 0x02, 0x0D, 0x00, 0x01, 0x01, 0x7C, 0x02, 0xC6, 0x00, 0x01, 0x01, 0x90, +0x02, 0xC6, 0x00, 0x01, 0x01, 0x90, 0x00, 0x00, 0x00, 0x01, 0x01, 0x90, 0x02, 0x0D, 0x00, 0x01, +0x01, 0x1F, 0x00, 0x00, 0x00, 0x01, 0x01, 0x1F, 0x02, 0x0D, 0x00, 0x01, 0x01, 0x2F, 0x03, 0x16, +0x00, 0x01, 0x01, 0x2F, 0x02, 0xF6, 0x00, 0x01, 0x01, 0x2F, 0x03, 0x4D, 0x00, 0x01, 0x01, 0x1B, +0x02, 0xC6, 0x00, 0x01, 0x01, 0x2F, 0xFF, 0x32, 0x00, 0x01, 0x00, 0xED, 0x02, 0xC6, 0x00, 0x01, +0x01, 0x2F, 0x02, 0xC6, 0x00, 0x01, 0x02, 0x15, 0x00, 0x00, 0x00, 0x01, 0x01, 0x2F, 0x00, 0x00, +0x00, 0x01, 0x02, 0x49, 0x02, 0x0D, 0x00, 0x01, 0x01, 0x2F, 0x02, 0x0D, 0x00, 0x01, 0x00, 0xC0, +0xFF, 0x4E, 0x00, 0x01, 0x00, 0xC0, 0xFF, 0x32, 0x00, 0x01, 0x00, 0xC0, 0x03, 0x1D, 0x00, 0x01, +0x00, 0xC0, 0xFF, 0x0E, 0x00, 0x01, 0x00, 0xC0, 0xFF, 0x0C, 0x00, 0x01, 0x00, 0xC0, 0x01, 0x07, +0x00, 0x01, 0x01, 0x0D, 0x03, 0x13, 0x00, 0x01, 0x00, 0xC0, 0x02, 0x64, 0x00, 0x01, 0x01, 0x4C, +0x02, 0x0D, 0x00, 0x01, 0x00, 0xF9, 0xFF, 0x32, 0x00, 0x01, 0x00, 0xF9, 0xFF, 0x0E, 0x00, 0x01, +0x00, 0xF9, 0xFF, 0x0C, 0x00, 0x01, 0x00, 0xF0, 0x03, 0x16, 0x00, 0x01, 0x00, 0xF0, 0x02, 0xC6, +0x00, 0x01, 0x00, 0xF9, 0x00, 0x00, 0x00, 0x01, 0x00, 0xF0, 0x02, 0x0D, 0x00, 0x01, 0x00, 0x7C, +0xFF, 0x4E, 0x00, 0x01, 0x00, 0x7C, 0xFF, 0x32, 0x00, 0x01, 0x00, 0xB0, 0x02, 0xC6, 0x00, 0x01, +0x00, 0x7C, 0xFF, 0x0E, 0x00, 0x01, 0x00, 0xF2, 0x02, 0x0D, 0x00, 0x01, 0x01, 0x3B, 0x02, 0x0D, +0x00, 0x01, 0x01, 0x3C, 0x00, 0x00, 0x00, 0x01, 0x01, 0x3C, 0x02, 0x0D, 0x00, 0x01, 0x01, 0xFD, +0x02, 0x0D, 0x00, 0x01, 0x01, 0x33, 0x03, 0x61, 0x00, 0x01, 0x01, 0x34, 0x03, 0x7F, 0x00, 0x01, +0x01, 0x34, 0xFF, 0x32, 0x00, 0x01, 0x01, 0x34, 0x01, 0x07, 0x00, 0x01, 0x01, 0x34, 0x00, 0x00, +0x00, 0x01, 0x02, 0x53, 0x02, 0x0D, 0x00, 0x01, 0x01, 0x2A, 0xFF, 0x4E, 0x00, 0x01, 0x01, 0x2A, +0xFF, 0x0E, 0x00, 0x01, 0x01, 0x71, 0x02, 0x0D, 0x00, 0x01, 0x01, 0x48, 0x02, 0xC6, 0x00, 0x01, +0x01, 0x48, 0x02, 0x0D, 0x00, 0x01, 0x01, 0xCD, 0xFF, 0x32, 0x00, 0x01, 0x01, 0xCD, 0x00, 0x00, +0x00, 0x01, 0x01, 0xCD, 0x02, 0x0D, 0x00, 0x01, 0x00, 0x7C, 0x01, 0x72, 0x00, 0x01, 0x00, 0x7C, +0x00, 0x00, 0x00, 0x01, 0x00, 0xD2, 0x02, 0xE4, 0x00, 0x01, 0x00, 0x7C, 0x02, 0xE4, 0x00, 0x01, +0x00, 0x7E, 0xFF, 0x4E, 0x00, 0x01, 0x00, 0x7E, 0xFF, 0x32, 0x00, 0x01, 0x00, 0x7E, 0xFF, 0x0E, +0x00, 0x01, 0x00, 0x88, 0x03, 0x7A, 0x00, 0x01, 0x00, 0x7E, 0x01, 0x72, 0x00, 0x01, 0x00, 0x7E, +0x00, 0x00, 0x00, 0x01, 0x00, 0xD4, 0x02, 0xE4, 0x00, 0x01, 0x00, 0x7E, 0x02, 0xE4, 0x00, 0x01, +0x01, 0x14, 0x00, 0x00, 0x00, 0x01, 0x01, 0x14, 0x02, 0x0D, 0x00, 0x01, 0x01, 0x1B, 0xFF, 0x0E, +0x00, 0x01, 0x01, 0x1B, 0x00, 0x00, 0x00, 0x01, 0x01, 0x1B, 0x02, 0xE4, 0x00, 0x01, 0x00, 0x8A, +0x02, 0xC6, 0x00, 0x01, 0x00, 0x84, 0xFF, 0x1A, 0x00, 0x01, 0x00, 0x8A, 0x02, 0x0D, 0x00, 0x01, +0x00, 0x64, 0x02, 0xC6, 0x00, 0x01, 0x00, 0x8B, 0xFF, 0x32, 0x00, 0x01, 0x00, 0x78, 0x03, 0x16, +0x00, 0x01, 0x00, 0x36, 0x02, 0xC6, 0x00, 0x01, 0x00, 0x78, 0x02, 0xC6, 0x00, 0x01, 0x00, 0xAD, +0x00, 0x00, 0x00, 0x01, 0x00, 0x78, 0x00, 0x00, 0x00, 0x01, 0x00, 0x78, 0x02, 0x0D, 0x00, 0x01, +0x00, 0xC0, 0x00, 0x00, 0x00, 0x01, 0x00, 0x8B, 0x00, 0x00, 0x00, 0x01, 0x00, 0x8B, 0x02, 0xC6, +0x00, 0x01, 0x01, 0x2A, 0xFF, 0x32, 0x00, 0x01, 0x01, 0x2A, 0x03, 0x7A, 0x00, 0x01, 0x01, 0x2A, +0xFF, 0x16, 0x00, 0x01, 0x00, 0x92, 0x02, 0x7E, 0x00, 0x01, 0x01, 0x2A, 0x00, 0x00, 0x00, 0x01, +0x01, 0x2A, 0x02, 0xE4, 0x00, 0x01, 0x01, 0x45, 0x02, 0xC6, 0x00, 0x01, 0x01, 0x45, 0xFF, 0x1A, +0x00, 0x01, 0x01, 0x45, 0x02, 0x0D, 0x00, 0x01, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x01, 0x00, 0xC5, +0x02, 0xE4, 0x00, 0x01, 0x01, 0x25, 0x02, 0x0D, 0x00, 0x01, 0x01, 0x34, 0x02, 0xBC, 0x00, 0x01, +0x01, 0x20, 0x02, 0xC6, 0x00, 0x01, 0x00, 0xF2, 0x02, 0xC6, 0x00, 0x01, 0x01, 0x34, 0x03, 0x16, +0x00, 0x01, 0x01, 0x35, 0x03, 0x16, 0x00, 0x01, 0x01, 0x3D, 0xFF, 0x0C, 0x00, 0x01, 0x01, 0x34, +0x02, 0xC6, 0x00, 0x01, 0x01, 0xF3, 0x00, 0x00, 0x00, 0x01, 0x01, 0x34, 0x02, 0x0D, 0x00, 0x01, +0x01, 0x3D, 0xFF, 0x4E, 0x00, 0x01, 0x01, 0xF4, 0x02, 0x7A, 0x00, 0x01, 0x02, 0x52, 0x02, 0xE4, +0x00, 0x01, 0x01, 0x3D, 0x02, 0xE4, 0x00, 0x01, 0x01, 0x28, 0xFF, 0x0C, 0x00, 0x01, 0x01, 0x27, +0x02, 0xC6, 0x00, 0x01, 0x01, 0x28, 0x00, 0x00, 0x00, 0x01, 0x01, 0x27, 0x02, 0x0D, 0x00, 0x01, +0x01, 0x3B, 0x00, 0x00, 0x00, 0x01, 0x01, 0x3B, 0x02, 0xE4, 0x00, 0x01, 0x01, 0xC2, 0x02, 0xC6, +0x00, 0x01, 0x01, 0xC2, 0x00, 0x00, 0x00, 0x01, 0x01, 0xC2, 0x02, 0x0D, 0x00, 0x01, 0x01, 0x3D, +0x03, 0xAF, 0x00, 0x01, 0x01, 0x3D, 0x02, 0xF6, 0x00, 0x01, 0x01, 0x29, 0x02, 0xC6, 0x00, 0x01, +0x00, 0xFB, 0x02, 0xC6, 0x00, 0x01, 0x01, 0x3E, 0x03, 0x16, 0x00, 0x01, 0x01, 0x3D, 0xFF, 0x32, +0x00, 0x01, 0x01, 0x3D, 0x03, 0x16, 0x00, 0x01, 0x01, 0x3D, 0x02, 0xC6, 0x00, 0x01, 0x02, 0x31, +0x00, 0x00, 0x00, 0x01, 0x01, 0xAF, 0x03, 0x52, 0x00, 0x01, 0x01, 0x23, 0x00, 0x00, 0x00, 0x01, +0x01, 0xAF, 0x02, 0xBC, 0x00, 0x01, 0x00, 0x90, 0x03, 0x52, 0x00, 0x01, 0x00, 0x9A, 0xFF, 0x32, +0x00, 0x01, 0x00, 0x66, 0x03, 0x52, 0x00, 0x01, 0x00, 0x9A, 0x03, 0x52, 0x00, 0x01, 0x00, 0xA4, +0x03, 0x52, 0x00, 0x01, 0x00, 0xD0, 0x00, 0x00, 0x00, 0x01, 0x00, 0x9A, 0x00, 0x00, 0x00, 0x01, +0x00, 0x9A, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x4A, 0x01, 0x5E, 0x00, 0x01, 0x01, 0x40, 0x03, 0x52, +0x00, 0x01, 0x01, 0x4A, 0xFF, 0x32, 0x00, 0x01, 0x01, 0x4A, 0x03, 0x52, 0x00, 0x01, 0x01, 0x4A, +0x00, 0x00, 0x00, 0x01, 0x01, 0x4A, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x57, 0x02, 0xBC, 0x00, 0x01, +0x01, 0xE8, 0x03, 0x52, 0x00, 0x01, 0x01, 0xF2, 0x03, 0x52, 0x00, 0x01, 0x01, 0xFC, 0x03, 0x52, +0x00, 0x01, 0x01, 0xF2, 0x00, 0x00, 0x00, 0x01, 0x01, 0xF2, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x66, +0x00, 0x00, 0x00, 0x01, 0x01, 0x66, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x7C, 0x03, 0xE8, 0x00, 0x01, +0x01, 0x72, 0x03, 0x5C, 0x00, 0x01, 0x01, 0x72, 0x03, 0xE8, 0x00, 0x01, 0x01, 0xA7, 0x03, 0x52, +0x00, 0x01, 0x01, 0x72, 0xFF, 0x32, 0x00, 0x01, 0x01, 0x72, 0x03, 0x52, 0x00, 0x01, 0x01, 0x7C, +0x03, 0x52, 0x00, 0x01, 0x02, 0x1C, 0x00, 0x00, 0x00, 0x01, 0x01, 0x72, 0x00, 0x00, 0x00, 0x01, +0x02, 0xD0, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x72, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x20, 0xFF, 0x4E, +0x00, 0x01, 0x01, 0x20, 0xFF, 0x32, 0x00, 0x01, 0x01, 0x20, 0xFF, 0x0D, 0x00, 0x01, 0x01, 0x20, +0xFF, 0x0C, 0x00, 0x01, 0x01, 0x20, 0x03, 0x52, 0x00, 0x01, 0x01, 0x20, 0x01, 0x5E, 0x00, 0x01, +0x01, 0x20, 0x00, 0x00, 0x00, 0x01, 0x01, 0x20, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x86, 0x00, 0x00, +0x00, 0x01, 0x01, 0x4C, 0xFF, 0x32, 0x00, 0x01, 0x01, 0x4C, 0xFF, 0x0D, 0x00, 0x01, 0x01, 0x4C, +0xFF, 0x0C, 0x00, 0x01, 0x01, 0x4C, 0x03, 0xE8, 0x00, 0x01, 0x01, 0x4C, 0x03, 0x52, 0x00, 0x01, +0x01, 0x56, 0x03, 0x52, 0x00, 0x01, 0x01, 0x4C, 0x00, 0x00, 0x00, 0x01, 0x01, 0x5C, 0xFF, 0x4E, +0x00, 0x01, 0x01, 0x5C, 0xFF, 0x32, 0x00, 0x01, 0x01, 0x0A, 0x03, 0x52, 0x00, 0x01, 0x01, 0x5C, +0xFF, 0x0D, 0x00, 0x01, 0x01, 0x3E, 0x03, 0x52, 0x00, 0x01, 0x01, 0x48, 0x03, 0x52, 0x00, 0x01, +0x01, 0x5C, 0x00, 0x00, 0x00, 0x01, 0x01, 0x3E, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x3D, 0x00, 0x00, +0x00, 0x01, 0x01, 0x3D, 0x02, 0xBC, 0x00, 0x01, 0x02, 0x02, 0x00, 0x00, 0x00, 0x01, 0x02, 0x02, +0x02, 0xBC, 0x00, 0x01, 0x01, 0x8B, 0x03, 0x52, 0x00, 0x01, 0x01, 0x86, 0x01, 0x5E, 0x00, 0x01, +0x02, 0x32, 0x00, 0x00, 0x00, 0x01, 0x01, 0x81, 0x00, 0x00, 0x00, 0x01, 0x02, 0xF9, 0x02, 0xBC, +0x00, 0x01, 0x01, 0x81, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x7D, 0x03, 0xE8, 0x00, 0x01, 0x01, 0x91, +0x03, 0xE8, 0x00, 0x01, 0x01, 0xBC, 0x03, 0x52, 0x00, 0x01, 0x01, 0x87, 0x03, 0xE8, 0x00, 0x01, +0x01, 0x53, 0x03, 0x52, 0x00, 0x01, 0x01, 0x87, 0xFF, 0x32, 0x00, 0x01, 0x01, 0x87, 0x03, 0x52, +0x00, 0x01, 0x01, 0x91, 0x03, 0x52, 0x00, 0x01, 0x01, 0x87, 0x01, 0x5E, 0x00, 0x01, 0x02, 0x33, +0x00, 0x00, 0x00, 0x01, 0x01, 0x87, 0x00, 0x00, 0x00, 0x01, 0x02, 0xFA, 0x02, 0xBC, 0x00, 0x01, +0x01, 0x87, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x8D, 0xFF, 0x4E, 0x00, 0x01, 0x01, 0x8D, 0xFF, 0x32, +0x00, 0x01, 0x01, 0x8D, 0xFF, 0x0D, 0x00, 0x01, 0x01, 0x8D, 0x03, 0x52, 0x00, 0x01, 0x01, 0x97, +0x03, 0x52, 0x00, 0x01, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x01, 0x01, 0x8D, 0x02, 0xBC, 0x00, 0x01, +0x01, 0xB0, 0xFF, 0x32, 0x00, 0x01, 0x01, 0xB0, 0x00, 0x00, 0x00, 0x01, 0x01, 0xB0, 0x02, 0xBC, +0x00, 0x01, 0x00, 0xC0, 0x01, 0x5E, 0x00, 0x01, 0x01, 0x53, 0x00, 0x00, 0x00, 0x01, 0x01, 0x4C, +0x02, 0xBC, 0x00, 0x01, 0x00, 0xC0, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x2C, 0xFF, 0x4E, 0x00, 0x01, +0x01, 0x2C, 0xFF, 0x32, 0x00, 0x01, 0x01, 0x2C, 0xFF, 0x0D, 0x00, 0x01, 0x00, 0xA3, 0x03, 0x52, +0x00, 0x01, 0x00, 0x99, 0x01, 0x5E, 0x00, 0x01, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x01, 0x01, 0x25, +0x02, 0xBC, 0x00, 0x01, 0x00, 0x99, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x6E, 0xFF, 0x0D, 0x00, 0x01, +0x01, 0x6E, 0x00, 0x00, 0x00, 0x01, 0x01, 0x6E, 0x02, 0xBC, 0x00, 0x01, 0x01, 0xAA, 0x03, 0x52, +0x00, 0x01, 0x01, 0x41, 0x00, 0x00, 0x00, 0x01, 0x01, 0xAA, 0x02, 0xBC, 0x00, 0x01, 0x00, 0xE5, +0x03, 0x52, 0x00, 0x01, 0x00, 0xEF, 0xFF, 0x32, 0x00, 0x01, 0x00, 0xBB, 0x03, 0x52, 0x00, 0x01, +0x00, 0xEF, 0x03, 0x52, 0x00, 0x01, 0x00, 0xF9, 0x03, 0x52, 0x00, 0x01, 0x01, 0x57, 0x00, 0x00, +0x00, 0x01, 0x00, 0xEF, 0x00, 0x00, 0x00, 0x01, 0x00, 0xEF, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x7D, +0xFF, 0x32, 0x00, 0x01, 0x01, 0x7D, 0x03, 0x52, 0x00, 0x01, 0x01, 0x7D, 0xFF, 0x16, 0x00, 0x01, +0x01, 0xAD, 0x01, 0x5E, 0x00, 0x01, 0x01, 0xAD, 0x00, 0x00, 0x00, 0x01, 0x01, 0xAD, 0x02, 0xBC, +0x00, 0x01, 0x01, 0x7D, 0x01, 0x5E, 0x00, 0x01, 0x01, 0x7D, 0x00, 0x00, 0x00, 0x01, 0x01, 0x7D, +0x02, 0xBC, 0x00, 0x01, 0x01, 0x7F, 0xFF, 0x0D, 0x00, 0x01, 0x01, 0x93, 0x03, 0x52, 0x00, 0x01, +0x01, 0x7F, 0x00, 0x00, 0x00, 0x01, 0x01, 0x93, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x2D, 0x00, 0x00, +0x00, 0x01, 0x01, 0x2D, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x3D, 0x03, 0xE8, 0x00, 0x01, 0x01, 0x51, +0x03, 0xE8, 0x00, 0x01, 0x01, 0x3D, 0x03, 0x52, 0x00, 0x01, 0x01, 0x13, 0x03, 0x52, 0x00, 0x01, +0x01, 0x33, 0xFF, 0x32, 0x00, 0x01, 0x01, 0x33, 0xFF, 0x0C, 0x00, 0x01, 0x01, 0x47, 0x03, 0x52, +0x00, 0x01, 0x01, 0x51, 0x03, 0x52, 0x00, 0x01, 0x01, 0xFD, 0x00, 0x00, 0x00, 0x01, 0x01, 0x33, +0x00, 0x00, 0x00, 0x01, 0x01, 0x47, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x76, 0xFF, 0x4E, 0x00, 0x01, +0x01, 0x76, 0xFF, 0x32, 0x00, 0x01, 0x01, 0x76, 0x03, 0x52, 0x00, 0x01, 0x00, 0xBC, 0x01, 0x5E, +0x00, 0x01, 0x01, 0x76, 0x00, 0x00, 0x00, 0x01, 0x01, 0x76, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x78, +0xFF, 0x0C, 0x00, 0x01, 0x01, 0x86, 0x03, 0x52, 0x00, 0x01, 0x01, 0x90, 0x03, 0x52, 0x00, 0x01, +0x01, 0x78, 0x00, 0x00, 0x00, 0x01, 0x01, 0x86, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x55, 0x00, 0x00, +0x00, 0x01, 0x01, 0x55, 0x02, 0xBC, 0x00, 0x01, 0x02, 0x8F, 0x03, 0x52, 0x00, 0x01, 0x01, 0xE5, +0x00, 0x00, 0x00, 0x01, 0x02, 0x85, 0x02, 0xBC, 0x00, 0x01, 0x01, 0x68, 0x03, 0xF2, 0x00, 0x01, +0x01, 0x5E, 0x03, 0x5C, 0x00, 0x01, 0x01, 0x54, 0x03, 0x52, 0x00, 0x01, 0x01, 0x2A, 0x03, 0x52, +0x00, 0x01, 0x01, 0x5E, 0xFF, 0x32, 0x00, 0x01, 0x01, 0x5E, 0x03, 0x52, 0x00, 0x01, 0x01, 0x68, +0x03, 0x52, 0x00, 0x01, 0x02, 0xA3, 0x00, 0x00, 0x00, 0x01, 0x01, 0x5E, 0x00, 0x00, 0x00, 0x01, +0x01, 0x5E, 0x02, 0xBC, 0x00, 0x02, 0x00, 0x13, 0x00, 0x01, 0x00, 0x25, 0x00, 0x00, 0x00, 0x28, +0x00, 0x2C, 0x00, 0x25, 0x00, 0x2F, 0x00, 0x74, 0x00, 0x2A, 0x00, 0x76, 0x00, 0x7A, 0x00, 0x70, +0x00, 0x7C, 0x00, 0x7E, 0x00, 0x75, 0x00, 0x80, 0x01, 0x05, 0x00, 0x78, 0x01, 0x07, 0x01, 0x2B, +0x00, 0xFE, 0x01, 0x2D, 0x01, 0x48, 0x01, 0x23, 0x01, 0x4A, 0x01, 0x68, 0x01, 0x3F, 0x01, 0x6A, +0x01, 0x80, 0x01, 0x5E, 0x01, 0x82, 0x01, 0x84, 0x01, 0x75, 0x01, 0x86, 0x02, 0x18, 0x01, 0x78, +0x02, 0xB5, 0x02, 0xB5, 0x02, 0x0B, 0x02, 0xB7, 0x02, 0xB7, 0x02, 0x0C, 0x02, 0xB9, 0x02, 0xB9, +0x02, 0x0D, 0x02, 0xBE, 0x02, 0xBE, 0x02, 0x0E, 0x02, 0xC4, 0x02, 0xC6, 0x02, 0x0F, 0x02, 0xCA, +0x02, 0xCA, 0x02, 0x12, 0x02, 0xDE, 0x02, 0xDE, 0x02, 0x13, 0x00, 0x4F, 0x00, 0x00, 0x01, 0xC8, +0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xC2, +0x00, 0x00, 0x01, 0xBC, 0x00, 0x00, 0x01, 0xB6, 0x00, 0x00, 0x01, 0xB0, 0x00, 0x00, 0x01, 0xC8, +0x00, 0x00, 0x01, 0xAA, 0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xC8, +0x00, 0x00, 0x01, 0xA4, 0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0x9E, 0x00, 0x00, 0x01, 0xB0, +0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xC8, +0x00, 0x00, 0x01, 0xB0, 0x00, 0x00, 0x01, 0xB0, 0x00, 0x00, 0x01, 0xB0, 0x00, 0x00, 0x01, 0xB0, +0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xC8, +0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xB0, 0x00, 0x00, 0x01, 0x98, 0x00, 0x00, 0x01, 0xC8, +0x00, 0x00, 0x01, 0xC8, 0x00, 0x01, 0x01, 0x92, 0x00, 0x02, 0x01, 0x8C, 0x00, 0x02, 0x01, 0x8C, +0x00, 0x02, 0x01, 0x8C, 0x00, 0x02, 0x01, 0x86, 0x00, 0x03, 0x01, 0x80, 0x00, 0x02, 0x01, 0x8C, +0x00, 0x02, 0x01, 0x86, 0x00, 0x04, 0x01, 0x7A, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, +0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x6E, 0x00, 0x00, 0x01, 0x68, +0x00, 0x00, 0x01, 0x62, 0x00, 0x00, 0x01, 0x5C, 0x00, 0x00, 0x01, 0x56, 0x00, 0x00, 0x01, 0x6E, +0x00, 0x00, 0x01, 0x50, 0x00, 0x00, 0x01, 0x4A, 0x00, 0x00, 0x01, 0x6E, 0x00, 0x00, 0x01, 0x44, +0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, +0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x6E, 0x00, 0x00, 0x01, 0x6E, +0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x6E, +0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x6E, +0x00, 0x00, 0x01, 0x3E, 0x00, 0x00, 0x01, 0x74, 0x00, 0x01, 0x01, 0x92, 0x00, 0x02, 0x01, 0x8C, +0x00, 0x02, 0x01, 0x8C, 0x00, 0x03, 0x01, 0x80, 0x00, 0x01, 0x01, 0x2E, 0x02, 0xBC, 0x00, 0x01, +0x00, 0xCA, 0x02, 0xBC, 0x00, 0x01, 0x00, 0xBD, 0x02, 0xBC, 0x00, 0x01, 0x00, 0xDE, 0x02, 0xBC, +0x00, 0x01, 0x00, 0xC4, 0x02, 0xBC, 0x00, 0x01, 0x00, 0xEA, 0x02, 0xBC, 0x00, 0x01, 0x00, 0xE7, +0x02, 0xBC, 0x00, 0x01, 0x01, 0x04, 0x02, 0xBC, 0x00, 0x01, 0x00, 0xFB, 0x02, 0xBC, 0x00, 0x01, +0x00, 0xFA, 0x02, 0xBC, 0x00, 0x01, 0x00, 0xFA, 0x01, 0x28, 0x00, 0x01, 0x01, 0x54, 0x00, 0x00, +0x00, 0x01, 0x00, 0xFB, 0x00, 0x00, 0x00, 0x01, 0x00, 0xFA, 0x00, 0x00, 0x00, 0x01, 0x00, 0xA0, +0x01, 0xF6, 0x00, 0x01, 0x01, 0x3D, 0x02, 0x0D, 0x00, 0x01, 0x00, 0xEA, 0x02, 0x0D, 0x00, 0x01, +0x01, 0x0E, 0x02, 0x0D, 0x00, 0x01, 0x00, 0xF9, 0x02, 0x0D, 0x00, 0x01, 0x00, 0xFB, 0x02, 0x0D, +0x00, 0x01, 0x00, 0xC5, 0x02, 0x0D, 0x00, 0x01, 0x00, 0xE5, 0x02, 0x0D, 0x00, 0x01, 0x00, 0xBB, +0x02, 0x0D, 0x00, 0x01, 0x00, 0xFA, 0x02, 0x0D, 0x00, 0x02, 0x00, 0x03, 0x02, 0xEA, 0x02, 0xFA, +0x00, 0x00, 0x02, 0xFC, 0x03, 0x15, 0x00, 0x11, 0x03, 0x23, 0x03, 0x46, 0x00, 0x2B, 0x00, 0x02, +0x00, 0x08, 0x00, 0x02, 0x10, 0x48, 0x00, 0x0A, 0x00, 0x02, 0x0C, 0x48, 0x00, 0x04, 0x00, 0x00, +0x0E, 0x30, 0x0C, 0xAC, 0x00, 0x2E, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, +0x00, 0x14, 0xFF, 0xF6, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCB, +0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0xFF, 0xBF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE4, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xDD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0xFF, 0xF1, +0xFF, 0xFB, 0xFF, 0xD3, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xE2, 0xFF, 0xDD, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xF6, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD9, 0xFF, 0xEC, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xD0, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xEC, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE9, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xF1, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xF6, +0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB0, 0xFF, 0xEC, 0xFF, 0xE7, +0xFF, 0xFB, 0xFF, 0xCE, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xD3, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBA, 0xFF, 0xB5, 0xFF, 0xB5, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, +0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDD, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xD3, +0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xF6, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xE2, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xE7, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0xFF, 0xE2, 0xFF, 0xB5, 0xFF, 0xCE, 0x00, 0x00, 0xFF, 0xD8, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0xFF, 0xCE, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xCE, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0xFF, 0xEC, 0x00, 0x00, +0x00, 0x00, 0x00, 0x3C, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBA, 0xFF, 0xD8, 0xFF, 0xCE, +0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD3, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, +0x00, 0x00, 0xFF, 0xB0, 0x00, 0x00, 0xFF, 0xDD, 0xFF, 0xB0, 0xFF, 0xEC, 0xFF, 0xF6, 0xFF, 0xE9, +0x00, 0x00, 0xFF, 0xE7, 0xFF, 0xDC, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x0A, +0xFF, 0xB0, 0xFF, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF6, 0xFF, 0x9C, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x88, 0xFF, 0xEB, 0xFF, 0x88, +0xFF, 0xF6, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xFB, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0xFF, 0xF1, +0xFF, 0xFD, 0xFF, 0xE7, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, +0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xE7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF6, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, +0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0x88, 0x00, 0x00, 0xFF, 0xD8, 0xFF, 0xFB, 0xFF, 0xAC, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xB5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x88, +0xFF, 0x9C, 0xFF, 0xB5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xFB, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, +0x00, 0x00, 0xFF, 0xE2, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x14, 0xFF, 0xF6, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, +0x00, 0x32, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xBA, +0x00, 0x00, 0xFF, 0x8E, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, +0xFF, 0xE7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x9C, 0x00, 0x00, 0xFF, 0xE2, 0xFF, 0xCE, 0xFF, 0x9C, +0x00, 0x00, 0xFF, 0xC4, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x9C, 0x00, 0x0A, 0x00, 0x00, 0xFF, 0xCE, +0x00, 0x00, 0x00, 0x1E, 0xFF, 0xD3, 0xFF, 0xB0, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBA, +0xFF, 0xBA, 0x00, 0x00, 0xFF, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0xFF, 0x9C, +0xFF, 0xEC, 0xFF, 0x9C, 0xFF, 0xF6, 0xFF, 0xF1, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xFB, +0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xDD, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x1E, 0xFF, 0xF1, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF1, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xF6, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFE, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xD8, 0xFF, 0xF6, +0x00, 0x00, 0xFF, 0xFD, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x0A, 0xFF, 0xEC, 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xBA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB0, +0xFF, 0xFD, 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xF6, +0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0xFF, 0xF6, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xEC, 0xFF, 0xD8, 0x00, 0x00, 0xFF, 0xEA, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xFB, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD3, 0x00, 0x00, 0xFF, 0xD3, +0x00, 0x00, 0xFF, 0xF4, 0xFF, 0xF1, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xFC, 0x00, 0x14, +0x00, 0x00, 0xFF, 0xD8, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0xFF, 0xFB, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xBF, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x0A, 0x00, 0x0F, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xB5, +0x00, 0x08, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, +0x00, 0x32, 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xE3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, +0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0x32, +0x00, 0x00, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x28, 0x00, 0x37, +0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xB5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0xFF, 0x88, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, +0xFF, 0xFB, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xFD, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0xFF, 0xF7, 0xFF, 0xC4, 0xFF, 0xF1, +0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x0F, 0xFF, 0xF6, 0xFF, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, +0x00, 0x00, 0x00, 0x00, 0xFF, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xB0, +0xFF, 0xF7, 0xFF, 0xB0, 0xFF, 0xFB, 0xFF, 0xF1, 0x00, 0x00, 0xFF, 0xC4, 0x00, 0x00, 0xFF, 0xE2, +0xFF, 0xB5, 0xFF, 0xE7, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF1, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0xFF, 0xEC, 0xFF, 0x9C, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xFB, 0x00, 0x00, 0xFF, 0x9C, 0xFF, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0x88, 0xFF, 0xF3, 0xFF, 0x9C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, +0x00, 0x00, 0xFF, 0xDD, 0x00, 0x00, 0xFF, 0xF6, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFE, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE6, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xE7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xF6, +0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0xFF, 0xF6, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xE6, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, +0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0xFB, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0xFF, 0xFB, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x02, 0x00, 0x10, 0x00, 0x01, 0x00, 0x1D, 0x00, 0x00, 0x00, 0x25, 0x00, 0x4D, 0x00, 0x1D, +0x00, 0x54, 0x00, 0x54, 0x00, 0x46, 0x00, 0x64, 0x00, 0x71, 0x00, 0x47, 0x00, 0x75, 0x00, 0x75, +0x00, 0x55, 0x00, 0x7C, 0x00, 0x7C, 0x00, 0x56, 0x00, 0x80, 0x00, 0xF1, 0x00, 0x57, 0x00, 0xF3, +0x00, 0xF3, 0x00, 0xC9, 0x01, 0x03, 0x01, 0x20, 0x00, 0xCA, 0x01, 0x23, 0x02, 0x11, 0x00, 0xE8, +0x02, 0x19, 0x02, 0x1F, 0x01, 0xD7, 0x02, 0x22, 0x02, 0x22, 0x01, 0xDE, 0x02, 0x69, 0x02, 0x6A, +0x01, 0xDF, 0x02, 0x8B, 0x02, 0x8D, 0x01, 0xE1, 0x02, 0x97, 0x02, 0x97, 0x01, 0xE4, 0x02, 0x99, +0x02, 0x9A, 0x01, 0xE5, 0x00, 0x02, 0x00, 0x40, 0x00, 0x01, 0x00, 0x1A, 0x00, 0x04, 0x00, 0x1B, +0x00, 0x1C, 0x00, 0x18, 0x00, 0x1D, 0x00, 0x1D, 0x00, 0x02, 0x00, 0x1E, 0x00, 0x24, 0x00, 0x03, +0x00, 0x25, 0x00, 0x46, 0x00, 0x02, 0x00, 0x47, 0x00, 0x4D, 0x00, 0x03, 0x00, 0x4E, 0x00, 0x4E, +0x00, 0x02, 0x00, 0x50, 0x00, 0x52, 0x00, 0x02, 0x00, 0x64, 0x00, 0x65, 0x00, 0x11, 0x00, 0x66, +0x00, 0x7F, 0x00, 0x02, 0x00, 0x80, 0x00, 0xA3, 0x00, 0x03, 0x00, 0xA4, 0x00, 0xA5, 0x00, 0x02, +0x00, 0xA6, 0x00, 0xA6, 0x00, 0x03, 0x00, 0xA7, 0x00, 0xAE, 0x00, 0x02, 0x00, 0xAF, 0x00, 0xB9, +0x00, 0x09, 0x00, 0xBA, 0x00, 0xBA, 0x00, 0x0C, 0x00, 0xBB, 0x00, 0xBB, 0x00, 0x03, 0x00, 0xBC, +0x00, 0xC2, 0x00, 0x0F, 0x00, 0xC3, 0x00, 0xDA, 0x00, 0x06, 0x00, 0xDB, 0x00, 0xDB, 0x00, 0x1B, +0x00, 0xDC, 0x00, 0xE0, 0x00, 0x12, 0x00, 0xE1, 0x00, 0xE1, 0x00, 0x1C, 0x00, 0xE2, 0x00, 0xEB, +0x00, 0x0B, 0x00, 0xEC, 0x00, 0xF0, 0x00, 0x13, 0x00, 0xF2, 0x01, 0x02, 0x00, 0x02, 0x01, 0x03, +0x01, 0x04, 0x00, 0x11, 0x01, 0x05, 0x01, 0x06, 0x00, 0x02, 0x01, 0x07, 0x01, 0x20, 0x00, 0x01, +0x01, 0x23, 0x01, 0x23, 0x00, 0x08, 0x01, 0x24, 0x01, 0x49, 0x00, 0x01, 0x01, 0x4A, 0x01, 0x4A, +0x00, 0x0C, 0x01, 0x4B, 0x01, 0x51, 0x00, 0x10, 0x01, 0x52, 0x01, 0x56, 0x00, 0x08, 0x01, 0x69, +0x01, 0x6B, 0x00, 0x14, 0x01, 0x6C, 0x01, 0x77, 0x00, 0x08, 0x01, 0x78, 0x01, 0x7B, 0x00, 0x07, +0x01, 0x7D, 0x01, 0x80, 0x00, 0x07, 0x01, 0x81, 0x01, 0x81, 0x00, 0x14, 0x01, 0x82, 0x01, 0x85, +0x00, 0x07, 0x01, 0x86, 0x01, 0xA9, 0x00, 0x01, 0x01, 0xAA, 0x01, 0xAA, 0x00, 0x1E, 0x01, 0xAB, +0x01, 0xAB, 0x00, 0x08, 0x01, 0xAC, 0x01, 0xAC, 0x00, 0x01, 0x01, 0xAD, 0x01, 0xB4, 0x00, 0x07, +0x01, 0xB5, 0x01, 0xBF, 0x00, 0x0A, 0x01, 0xC0, 0x01, 0xC0, 0x00, 0x0C, 0x01, 0xC1, 0x01, 0xC8, +0x00, 0x0E, 0x01, 0xC9, 0x01, 0xE0, 0x00, 0x05, 0x01, 0xE1, 0x01, 0xE1, 0x00, 0x20, 0x01, 0xE2, +0x01, 0xE6, 0x00, 0x16, 0x01, 0xE7, 0x01, 0xE7, 0x00, 0x21, 0x01, 0xE8, 0x01, 0xF1, 0x00, 0x0D, +0x01, 0xF2, 0x01, 0xF6, 0x00, 0x15, 0x01, 0xF8, 0x02, 0x11, 0x00, 0x01, 0x02, 0x19, 0x02, 0x1F, +0x00, 0x0C, 0x02, 0x22, 0x02, 0x22, 0x00, 0x04, 0x02, 0x24, 0x02, 0x24, 0x00, 0x05, 0x02, 0x69, +0x02, 0x69, 0x00, 0x1F, 0x02, 0x6A, 0x02, 0x6A, 0x00, 0x1D, 0x02, 0x8B, 0x02, 0x8D, 0x00, 0x17, +0x02, 0x97, 0x02, 0x97, 0x00, 0x19, 0x02, 0x98, 0x02, 0x98, 0x00, 0x1A, 0x02, 0x99, 0x02, 0x99, +0x00, 0x19, 0x02, 0x9A, 0x02, 0x9A, 0x00, 0x1A, 0x00, 0x02, 0x00, 0x57, 0x00, 0x01, 0x00, 0x1A, +0x00, 0x03, 0x00, 0x1B, 0x00, 0x1C, 0x00, 0x04, 0x00, 0x1D, 0x00, 0x1D, 0x00, 0x26, 0x00, 0x25, +0x00, 0x25, 0x00, 0x01, 0x00, 0x26, 0x00, 0x27, 0x00, 0x18, 0x00, 0x28, 0x00, 0x2C, 0x00, 0x01, +0x00, 0x2D, 0x00, 0x2E, 0x00, 0x15, 0x00, 0x2F, 0x00, 0x45, 0x00, 0x04, 0x00, 0x46, 0x00, 0x46, +0x00, 0x27, 0x00, 0x47, 0x00, 0x4D, 0x00, 0x16, 0x00, 0x54, 0x00, 0x54, 0x00, 0x0A, 0x00, 0x64, +0x00, 0x65, 0x00, 0x0A, 0x00, 0x66, 0x00, 0x67, 0x00, 0x20, 0x00, 0x68, 0x00, 0x68, 0x00, 0x11, +0x00, 0x69, 0x00, 0x69, 0x00, 0x0A, 0x00, 0x6A, 0x00, 0x6E, 0x00, 0x11, 0x00, 0x6F, 0x00, 0x6F, +0x00, 0x0C, 0x00, 0x70, 0x00, 0x71, 0x00, 0x11, 0x00, 0x75, 0x00, 0x75, 0x00, 0x0A, 0x00, 0x7C, +0x00, 0x7C, 0x00, 0x0C, 0x00, 0x80, 0x00, 0xA2, 0x00, 0x01, 0x00, 0xA3, 0x00, 0xA3, 0x00, 0x04, +0x00, 0xA4, 0x00, 0xA5, 0x00, 0x21, 0x00, 0xA6, 0x00, 0xA6, 0x00, 0x01, 0x00, 0xA7, 0x00, 0xAE, +0x00, 0x12, 0x00, 0xAF, 0x00, 0xBA, 0x00, 0x0B, 0x00, 0xBB, 0x00, 0xBB, 0x00, 0x01, 0x00, 0xBC, +0x00, 0xC2, 0x00, 0x17, 0x00, 0xC3, 0x00, 0xDA, 0x00, 0x05, 0x00, 0xDB, 0x00, 0xDB, 0x00, 0x28, +0x00, 0xDC, 0x00, 0xE0, 0x00, 0x1B, 0x00, 0xE1, 0x00, 0xE1, 0x00, 0x29, 0x00, 0xE2, 0x00, 0xEB, +0x00, 0x0E, 0x00, 0xEC, 0x00, 0xF0, 0x00, 0x18, 0x00, 0xF1, 0x00, 0xF1, 0x00, 0x0A, 0x00, 0xF3, +0x00, 0xF3, 0x00, 0x0A, 0x01, 0x03, 0x01, 0x06, 0x00, 0x0A, 0x01, 0x23, 0x01, 0x23, 0x00, 0x02, +0x01, 0x24, 0x01, 0x2A, 0x00, 0x19, 0x01, 0x2B, 0x01, 0x2B, 0x00, 0x1D, 0x01, 0x2C, 0x01, 0x2C, +0x00, 0x01, 0x01, 0x2D, 0x01, 0x2D, 0x00, 0x23, 0x01, 0x2E, 0x01, 0x30, 0x00, 0x1D, 0x01, 0x31, +0x01, 0x31, 0x00, 0x15, 0x01, 0x32, 0x01, 0x48, 0x00, 0x06, 0x01, 0x49, 0x01, 0x49, 0x00, 0x02, +0x01, 0x4A, 0x01, 0x4A, 0x00, 0x24, 0x01, 0x4B, 0x01, 0x51, 0x00, 0x1A, 0x01, 0x52, 0x01, 0x56, +0x00, 0x09, 0x01, 0x57, 0x01, 0x64, 0x00, 0x08, 0x01, 0x65, 0x01, 0x65, 0x00, 0x0C, 0x01, 0x66, +0x01, 0x68, 0x00, 0x08, 0x01, 0x69, 0x01, 0x6B, 0x00, 0x0C, 0x01, 0x6C, 0x01, 0x6E, 0x00, 0x1F, +0x01, 0x6F, 0x01, 0x70, 0x00, 0x0F, 0x01, 0x71, 0x01, 0x71, 0x00, 0x23, 0x01, 0x72, 0x01, 0x77, +0x00, 0x0F, 0x01, 0x78, 0x01, 0x81, 0x00, 0x09, 0x01, 0x82, 0x01, 0x82, 0x00, 0x0C, 0x01, 0x83, +0x01, 0x85, 0x00, 0x09, 0x01, 0x86, 0x01, 0xA8, 0x00, 0x02, 0x01, 0xA9, 0x01, 0xA9, 0x00, 0x06, +0x01, 0xAA, 0x01, 0xAB, 0x00, 0x02, 0x01, 0xAC, 0x01, 0xAC, 0x00, 0x2A, 0x01, 0xAD, 0x01, 0xB4, +0x00, 0x13, 0x01, 0xB5, 0x01, 0xBF, 0x00, 0x0D, 0x01, 0xC0, 0x01, 0xC0, 0x00, 0x02, 0x01, 0xC1, +0x01, 0xC8, 0x00, 0x14, 0x01, 0xC9, 0x01, 0xE0, 0x00, 0x07, 0x01, 0xE1, 0x01, 0xE1, 0x00, 0x2C, +0x01, 0xE2, 0x01, 0xE6, 0x00, 0x1C, 0x01, 0xE7, 0x01, 0xE7, 0x00, 0x2D, 0x01, 0xE8, 0x01, 0xF1, +0x00, 0x10, 0x01, 0xF2, 0x01, 0xF6, 0x00, 0x15, 0x01, 0xF7, 0x01, 0xF7, 0x00, 0x0C, 0x02, 0x19, +0x02, 0x19, 0x00, 0x24, 0x02, 0x1A, 0x02, 0x1B, 0x00, 0x0C, 0x02, 0x1C, 0x02, 0x1C, 0x00, 0x0F, +0x02, 0x1D, 0x02, 0x1D, 0x00, 0x0C, 0x02, 0x1E, 0x02, 0x1E, 0x00, 0x08, 0x02, 0x1F, 0x02, 0x1F, +0x00, 0x0F, 0x02, 0x22, 0x02, 0x22, 0x00, 0x03, 0x02, 0x69, 0x02, 0x6A, 0x00, 0x22, 0x02, 0x8B, +0x02, 0x8D, 0x00, 0x1E, 0x02, 0x97, 0x02, 0x97, 0x00, 0x25, 0x02, 0x99, 0x02, 0x99, 0x00, 0x25, +0x02, 0x9A, 0x02, 0x9A, 0x00, 0x2B, 0x00, 0x01, 0x02, 0xCA, 0x00, 0x04, 0x00, 0x00, 0x01, 0x60, +0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, +0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, +0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xEC, +0x1A, 0xEC, 0x1A, 0xEC, 0x1A, 0xE2, 0x1A, 0xD4, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, +0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xAA, 0x1A, 0xAA, 0x1A, 0xAA, 0x1A, 0xAA, +0x1A, 0xAA, 0x1A, 0xAA, 0x1A, 0xAA, 0x19, 0xD8, 0x19, 0xC6, 0x19, 0xC6, 0x19, 0xC6, 0x19, 0xB8, +0x19, 0xB8, 0x19, 0x96, 0x19, 0xC6, 0x19, 0x96, 0x19, 0x96, 0x19, 0x96, 0x19, 0x96, 0x19, 0x96, +0x19, 0x96, 0x19, 0x96, 0x19, 0xC6, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, +0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, +0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, +0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, +0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x1A, 0xBE, 0x19, 0x84, 0x19, 0x4A, +0x19, 0x30, 0x19, 0x1E, 0x19, 0x0C, 0x19, 0x0C, 0x19, 0x0C, 0x19, 0x0C, 0x19, 0x0C, 0x19, 0x0C, +0x19, 0x0C, 0x1A, 0xBE, 0x18, 0xF6, 0x18, 0xF6, 0x18, 0xF6, 0x18, 0xF6, 0x18, 0xF6, 0x18, 0xF6, +0x18, 0xF6, 0x18, 0xC8, 0x18, 0xBA, 0x18, 0xBA, 0x18, 0xBA, 0x18, 0xBA, 0x18, 0xBA, 0x18, 0xB4, +0x18, 0xA6, 0x18, 0xA6, 0x18, 0xA6, 0x18, 0xA6, 0x18, 0xA6, 0x18, 0xA6, 0x18, 0xA6, 0x18, 0xA6, +0x18, 0xA6, 0x18, 0xA6, 0x19, 0xC6, 0x19, 0xC6, 0x19, 0xC6, 0x19, 0xC6, 0x19, 0xC6, 0x19, 0xC6, +0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, +0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, +0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, +0x18, 0xA0, 0x18, 0xA0, 0x18, 0x8E, 0x18, 0x64, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, +0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, +0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, +0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x18, 0x8E, 0x18, 0x52, 0x18, 0x48, 0x18, 0xA0, +0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, +0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, +0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, +0x1A, 0xB8, 0x1A, 0xB8, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, +0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, +0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, +0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, +0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x18, 0x8E, 0x1A, 0xB8, 0x18, 0x8E, 0x18, 0x8E, +0x18, 0x36, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, +0x18, 0x2C, 0x18, 0x06, 0x17, 0xE0, 0x17, 0xD2, 0x17, 0xD2, 0x17, 0xD2, 0x17, 0xD2, 0x17, 0xD2, +0x17, 0xBC, 0x17, 0xAE, 0x17, 0xAE, 0x17, 0xAE, 0x17, 0xAE, 0x17, 0xAE, 0x17, 0xAE, 0x17, 0xAE, +0x17, 0xAE, 0x17, 0xAE, 0x17, 0xAE, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, 0x1A, 0xB8, +0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, +0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, +0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, 0x18, 0xA0, +0x18, 0xA0, 0x18, 0xA0, 0x18, 0x52, 0x1A, 0xEC, 0x17, 0xA4, 0x17, 0x9E, 0x17, 0x94, 0x17, 0x8A, +0x17, 0x7C, 0x17, 0x72, 0x17, 0x6C, 0x17, 0x42, 0x17, 0x3C, 0x17, 0x32, 0x16, 0xCC, 0x16, 0x66, +0x16, 0x60, 0x15, 0xDE, 0x15, 0xD0, 0x15, 0xC2, 0x15, 0xBC, 0x15, 0x46, 0x11, 0x90, 0x0E, 0x46, +0x0E, 0x34, 0x0B, 0x22, 0x08, 0x20, 0x07, 0xFA, 0x07, 0xC4, 0x05, 0x2E, 0x04, 0xB0, 0x04, 0xB0, +0x04, 0xA6, 0x04, 0x00, 0x03, 0xF2, 0x03, 0xE4, 0x03, 0xDE, 0x03, 0xD8, 0x03, 0xD2, 0x03, 0xC4, +0x00, 0x02, 0x00, 0x29, 0x00, 0x01, 0x00, 0x1A, 0x00, 0x00, 0x00, 0x1D, 0x00, 0x1E, 0x00, 0x1A, +0x00, 0x25, 0x00, 0x25, 0x00, 0x1C, 0x00, 0x28, 0x00, 0x2E, 0x00, 0x1D, 0x00, 0x47, 0x00, 0x4D, +0x00, 0x24, 0x00, 0x53, 0x00, 0x54, 0x00, 0x2B, 0x00, 0x64, 0x00, 0x6E, 0x00, 0x2D, 0x00, 0x70, +0x00, 0x71, 0x00, 0x38, 0x00, 0x75, 0x00, 0x75, 0x00, 0x3A, 0x00, 0x80, 0x00, 0xA2, 0x00, 0x3B, +0x00, 0xA4, 0x00, 0xAE, 0x00, 0x5E, 0x00, 0xBB, 0x00, 0xC2, 0x00, 0x69, 0x00, 0xDB, 0x00, 0xEB, +0x00, 0x71, 0x00, 0xF1, 0x00, 0xF1, 0x00, 0x82, 0x00, 0xF3, 0x00, 0xF3, 0x00, 0x83, 0x01, 0x03, +0x01, 0x20, 0x00, 0x84, 0x01, 0x23, 0x01, 0x23, 0x00, 0xA2, 0x01, 0x2C, 0x01, 0x2C, 0x00, 0xA3, +0x01, 0x31, 0x01, 0x56, 0x00, 0xA4, 0x01, 0x6C, 0x01, 0x6E, 0x00, 0xCA, 0x01, 0x78, 0x01, 0x81, +0x00, 0xCD, 0x01, 0x83, 0x01, 0xB4, 0x00, 0xD7, 0x01, 0xC0, 0x01, 0xC0, 0x01, 0x09, 0x01, 0xE1, +0x01, 0xF6, 0x01, 0x0A, 0x01, 0xF8, 0x02, 0x11, 0x01, 0x20, 0x02, 0x19, 0x02, 0x19, 0x01, 0x3A, +0x02, 0x22, 0x02, 0x22, 0x01, 0x3B, 0x02, 0x26, 0x02, 0x2F, 0x01, 0x3C, 0x02, 0x69, 0x02, 0x6A, +0x01, 0x46, 0x02, 0x6F, 0x02, 0x74, 0x01, 0x48, 0x02, 0x76, 0x02, 0x77, 0x01, 0x4E, 0x02, 0x85, +0x02, 0x85, 0x01, 0x50, 0x02, 0x89, 0x02, 0x89, 0x01, 0x51, 0x02, 0x8B, 0x02, 0x8D, 0x01, 0x52, +0x02, 0x98, 0x02, 0x9A, 0x01, 0x55, 0x02, 0xA6, 0x02, 0xA7, 0x01, 0x58, 0x02, 0xC9, 0x02, 0xC9, +0x01, 0x5A, 0x02, 0xD4, 0x02, 0xD5, 0x01, 0x5B, 0x02, 0xDD, 0x02, 0xDD, 0x01, 0x5D, 0x02, 0xDF, +0x02, 0xDF, 0x01, 0x5E, 0x02, 0xE1, 0x02, 0xE1, 0x01, 0x5F, 0x00, 0x03, 0x02, 0x26, 0xFF, 0xCE, +0x02, 0x2E, 0xFF, 0xE2, 0x02, 0x2F, 0xFF, 0xD8, 0x00, 0x01, 0x02, 0x2A, 0xFF, 0xB0, 0x00, 0x01, +0x02, 0x27, 0xFF, 0xD8, 0x00, 0x01, 0x02, 0x27, 0xFF, 0xEC, 0x00, 0x03, 0x02, 0x27, 0xFF, 0xC4, +0x02, 0x28, 0xFF, 0xE2, 0x02, 0x2D, 0xFF, 0xCE, 0x00, 0x03, 0x02, 0x26, 0xFF, 0xD8, 0x02, 0x27, +0xFF, 0xE2, 0x02, 0x2A, 0xFF, 0xE2, 0x00, 0x29, 0x00, 0xBC, 0xFF, 0xC9, 0x00, 0xBD, 0xFF, 0xC9, +0x00, 0xBE, 0xFF, 0xC9, 0x00, 0xBF, 0xFF, 0xC9, 0x00, 0xC0, 0xFF, 0xC9, 0x00, 0xC1, 0xFF, 0xC9, +0x00, 0xC2, 0xFF, 0xC9, 0x00, 0xDB, 0xFF, 0xC4, 0x00, 0xDC, 0xFF, 0xD8, 0x00, 0xDD, 0xFF, 0xD8, +0x00, 0xDE, 0xFF, 0xD8, 0x00, 0xDF, 0xFF, 0xD8, 0x00, 0xE0, 0xFF, 0xD8, 0x00, 0xE2, 0xFF, 0xCE, +0x00, 0xE3, 0xFF, 0xCE, 0x00, 0xE4, 0xFF, 0xCE, 0x00, 0xE5, 0xFF, 0xCE, 0x00, 0xE6, 0xFF, 0xCE, +0x00, 0xE7, 0xFF, 0xCE, 0x00, 0xE8, 0xFF, 0xCE, 0x00, 0xE9, 0xFF, 0xCE, 0x00, 0xEA, 0xFF, 0xCE, +0x00, 0xEB, 0xFF, 0xCE, 0x01, 0x2C, 0xFF, 0xF6, 0x01, 0xE1, 0xFF, 0xE2, 0x01, 0xE2, 0xFF, 0xE2, +0x01, 0xE3, 0xFF, 0xE2, 0x01, 0xE4, 0xFF, 0xE2, 0x01, 0xE5, 0xFF, 0xE2, 0x01, 0xE6, 0xFF, 0xE2, +0x01, 0xE8, 0xFF, 0xE2, 0x01, 0xE9, 0xFF, 0xE2, 0x01, 0xEA, 0xFF, 0xE2, 0x01, 0xEB, 0xFF, 0xE2, +0x01, 0xEC, 0xFF, 0xE2, 0x01, 0xED, 0xFF, 0xE2, 0x01, 0xEE, 0xFF, 0xE2, 0x01, 0xEF, 0xFF, 0xE2, +0x01, 0xF0, 0xFF, 0xE2, 0x01, 0xF1, 0xFF, 0xE2, 0x02, 0x8A, 0xFF, 0xF1, 0x00, 0x02, 0x00, 0xDB, +0xFF, 0xFA, 0x01, 0xE7, 0xFF, 0xFD, 0x00, 0x1F, 0x00, 0x01, 0xFF, 0xC4, 0x00, 0x02, 0xFF, 0xC4, +0x00, 0x03, 0xFF, 0xC4, 0x00, 0x04, 0xFF, 0xC4, 0x00, 0x05, 0xFF, 0xC4, 0x00, 0x06, 0xFF, 0xC4, +0x00, 0x07, 0xFF, 0xC4, 0x00, 0x08, 0xFF, 0xC4, 0x00, 0x09, 0xFF, 0xC4, 0x00, 0x0A, 0xFF, 0xC4, +0x00, 0x0B, 0xFF, 0xC4, 0x00, 0x0C, 0xFF, 0xC4, 0x00, 0x0D, 0xFF, 0xC4, 0x00, 0x0E, 0xFF, 0xC4, +0x00, 0x0F, 0xFF, 0xC4, 0x00, 0x10, 0xFF, 0xC4, 0x00, 0x11, 0xFF, 0xC4, 0x00, 0x12, 0xFF, 0xC4, +0x00, 0x13, 0xFF, 0xC4, 0x00, 0x14, 0xFF, 0xC4, 0x00, 0x15, 0xFF, 0xC4, 0x00, 0x16, 0xFF, 0xC4, +0x00, 0x17, 0xFF, 0xC4, 0x00, 0x18, 0xFF, 0xC4, 0x00, 0x19, 0xFF, 0xC4, 0x00, 0x1A, 0xFF, 0xC4, +0x00, 0x64, 0xFF, 0x88, 0x00, 0x65, 0xFF, 0x88, 0x01, 0x03, 0xFF, 0x88, 0x01, 0x04, 0xFF, 0x88, +0x02, 0x22, 0xFF, 0xC4, 0x00, 0xA5, 0x00, 0x01, 0xFF, 0xB5, 0x00, 0x02, 0xFF, 0xB5, 0x00, 0x03, +0xFF, 0xB5, 0x00, 0x04, 0xFF, 0xB5, 0x00, 0x05, 0xFF, 0xB5, 0x00, 0x06, 0xFF, 0xB5, 0x00, 0x07, +0xFF, 0xB5, 0x00, 0x08, 0xFF, 0xB5, 0x00, 0x09, 0xFF, 0xB5, 0x00, 0x0A, 0xFF, 0xB5, 0x00, 0x0B, +0xFF, 0xB5, 0x00, 0x0C, 0xFF, 0xB5, 0x00, 0x0D, 0xFF, 0xB5, 0x00, 0x0E, 0xFF, 0xB5, 0x00, 0x0F, +0xFF, 0xB5, 0x00, 0x10, 0xFF, 0xB5, 0x00, 0x11, 0xFF, 0xB5, 0x00, 0x12, 0xFF, 0xB5, 0x00, 0x13, +0xFF, 0xB5, 0x00, 0x14, 0xFF, 0xB5, 0x00, 0x15, 0xFF, 0xB5, 0x00, 0x16, 0xFF, 0xB5, 0x00, 0x17, +0xFF, 0xB5, 0x00, 0x18, 0xFF, 0xB5, 0x00, 0x19, 0xFF, 0xB5, 0x00, 0x1A, 0xFF, 0xB5, 0x00, 0x64, +0xFF, 0x9C, 0x00, 0x65, 0xFF, 0x9C, 0x01, 0x03, 0xFF, 0x9C, 0x01, 0x04, 0xFF, 0x9C, 0x01, 0x07, +0xFF, 0xD8, 0x01, 0x08, 0xFF, 0xD8, 0x01, 0x09, 0xFF, 0xD8, 0x01, 0x0A, 0xFF, 0xD8, 0x01, 0x0B, +0xFF, 0xD8, 0x01, 0x0C, 0xFF, 0xD8, 0x01, 0x0D, 0xFF, 0xD8, 0x01, 0x0E, 0xFF, 0xD8, 0x01, 0x0F, +0xFF, 0xD8, 0x01, 0x10, 0xFF, 0xD8, 0x01, 0x11, 0xFF, 0xD8, 0x01, 0x12, 0xFF, 0xD8, 0x01, 0x13, +0xFF, 0xD8, 0x01, 0x14, 0xFF, 0xD8, 0x01, 0x15, 0xFF, 0xD8, 0x01, 0x16, 0xFF, 0xD8, 0x01, 0x17, +0xFF, 0xD8, 0x01, 0x18, 0xFF, 0xD8, 0x01, 0x19, 0xFF, 0xD8, 0x01, 0x1A, 0xFF, 0xD8, 0x01, 0x1B, +0xFF, 0xD8, 0x01, 0x1C, 0xFF, 0xD8, 0x01, 0x1D, 0xFF, 0xD8, 0x01, 0x1E, 0xFF, 0xD8, 0x01, 0x1F, +0xFF, 0xD8, 0x01, 0x20, 0xFF, 0xD8, 0x01, 0x24, 0xFF, 0xD8, 0x01, 0x25, 0xFF, 0xD8, 0x01, 0x26, +0xFF, 0xD8, 0x01, 0x27, 0xFF, 0xD8, 0x01, 0x28, 0xFF, 0xD8, 0x01, 0x29, 0xFF, 0xD8, 0x01, 0x2A, +0xFF, 0xD8, 0x01, 0x2B, 0xFF, 0xD8, 0x01, 0x2C, 0xFF, 0xD8, 0x01, 0x2D, 0xFF, 0xD8, 0x01, 0x2E, +0xFF, 0xD8, 0x01, 0x2F, 0xFF, 0xD8, 0x01, 0x30, 0xFF, 0xD8, 0x01, 0x31, 0xFF, 0xD8, 0x01, 0x32, +0xFF, 0xD8, 0x01, 0x33, 0xFF, 0xD8, 0x01, 0x34, 0xFF, 0xD8, 0x01, 0x35, 0xFF, 0xD8, 0x01, 0x36, +0xFF, 0xD8, 0x01, 0x37, 0xFF, 0xD8, 0x01, 0x38, 0xFF, 0xD8, 0x01, 0x39, 0xFF, 0xD8, 0x01, 0x3A, +0xFF, 0xD8, 0x01, 0x3B, 0xFF, 0xD8, 0x01, 0x3C, 0xFF, 0xD8, 0x01, 0x3D, 0xFF, 0xD8, 0x01, 0x3E, +0xFF, 0xD8, 0x01, 0x3F, 0xFF, 0xD8, 0x01, 0x40, 0xFF, 0xD8, 0x01, 0x41, 0xFF, 0xD8, 0x01, 0x42, +0xFF, 0xD8, 0x01, 0x43, 0xFF, 0xD8, 0x01, 0x44, 0xFF, 0xD8, 0x01, 0x45, 0xFF, 0xD8, 0x01, 0x46, +0xFF, 0xD8, 0x01, 0x47, 0xFF, 0xD8, 0x01, 0x48, 0xFF, 0xD8, 0x01, 0x49, 0xFF, 0xD8, 0x01, 0x4B, +0xFF, 0xCE, 0x01, 0x4C, 0xFF, 0xCE, 0x01, 0x4D, 0xFF, 0xCE, 0x01, 0x4E, 0xFF, 0xCE, 0x01, 0x4F, +0xFF, 0xCE, 0x01, 0x50, 0xFF, 0xCE, 0x01, 0x51, 0xFF, 0xCE, 0x01, 0x86, 0xFF, 0xD8, 0x01, 0x87, +0xFF, 0xD8, 0x01, 0x88, 0xFF, 0xD8, 0x01, 0x89, 0xFF, 0xD8, 0x01, 0x8A, 0xFF, 0xD8, 0x01, 0x8B, +0xFF, 0xD8, 0x01, 0x8C, 0xFF, 0xD8, 0x01, 0x8D, 0xFF, 0xD8, 0x01, 0x8E, 0xFF, 0xD8, 0x01, 0x8F, +0xFF, 0xD8, 0x01, 0x90, 0xFF, 0xD8, 0x01, 0x91, 0xFF, 0xD8, 0x01, 0x92, 0xFF, 0xD8, 0x01, 0x93, +0xFF, 0xD8, 0x01, 0x94, 0xFF, 0xD8, 0x01, 0x95, 0xFF, 0xD8, 0x01, 0x96, 0xFF, 0xD8, 0x01, 0x97, +0xFF, 0xD8, 0x01, 0x98, 0xFF, 0xD8, 0x01, 0x99, 0xFF, 0xD8, 0x01, 0x9A, 0xFF, 0xD8, 0x01, 0x9B, +0xFF, 0xD8, 0x01, 0x9C, 0xFF, 0xD8, 0x01, 0x9D, 0xFF, 0xD8, 0x01, 0x9E, 0xFF, 0xD8, 0x01, 0x9F, +0xFF, 0xD8, 0x01, 0xA0, 0xFF, 0xD8, 0x01, 0xA1, 0xFF, 0xD8, 0x01, 0xA2, 0xFF, 0xD8, 0x01, 0xA3, +0xFF, 0xD8, 0x01, 0xA4, 0xFF, 0xD8, 0x01, 0xA5, 0xFF, 0xD8, 0x01, 0xA6, 0xFF, 0xD8, 0x01, 0xA7, +0xFF, 0xD8, 0x01, 0xA8, 0xFF, 0xD8, 0x01, 0xA9, 0xFF, 0xD8, 0x01, 0xAC, 0xFF, 0xD8, 0x01, 0xF8, +0xFF, 0xD8, 0x01, 0xF9, 0xFF, 0xD8, 0x01, 0xFA, 0xFF, 0xD8, 0x01, 0xFB, 0xFF, 0xD8, 0x01, 0xFC, +0xFF, 0xD8, 0x01, 0xFD, 0xFF, 0xD8, 0x01, 0xFE, 0xFF, 0xD8, 0x01, 0xFF, 0xFF, 0xD8, 0x02, 0x00, +0xFF, 0xD8, 0x02, 0x01, 0xFF, 0xD8, 0x02, 0x02, 0xFF, 0xD8, 0x02, 0x03, 0xFF, 0xD8, 0x02, 0x04, +0xFF, 0xD8, 0x02, 0x05, 0xFF, 0xD8, 0x02, 0x06, 0xFF, 0xD8, 0x02, 0x07, 0xFF, 0xD8, 0x02, 0x08, +0xFF, 0xD8, 0x02, 0x09, 0xFF, 0xD8, 0x02, 0x0A, 0xFF, 0xD8, 0x02, 0x0B, 0xFF, 0xD8, 0x02, 0x0C, +0xFF, 0xD8, 0x02, 0x0D, 0xFF, 0xD8, 0x02, 0x0E, 0xFF, 0xD8, 0x02, 0x0F, 0xFF, 0xD8, 0x02, 0x10, +0xFF, 0xD8, 0x02, 0x11, 0xFF, 0xD8, 0x02, 0x22, 0xFF, 0xB5, 0x00, 0x0D, 0x00, 0x01, 0xFF, 0xCE, +0x00, 0x64, 0xFF, 0xC4, 0x00, 0x65, 0xFF, 0xC4, 0x00, 0xBC, 0xFF, 0x9C, 0x00, 0xDB, 0xFF, 0x9C, +0x00, 0xDC, 0xFF, 0xBA, 0x00, 0xE1, 0xFF, 0xB0, 0x00, 0xE2, 0xFF, 0x88, 0x01, 0x03, 0xFF, 0xC4, +0x01, 0x04, 0xFF, 0xC4, 0x02, 0x27, 0xFF, 0xD8, 0x02, 0x28, 0xFF, 0xCE, 0x02, 0x81, 0x00, 0x00, +0x00, 0x09, 0x00, 0x01, 0xFF, 0xCE, 0x00, 0xBC, 0xFF, 0x9C, 0x00, 0xDB, 0xFF, 0x9C, 0x00, 0xDC, +0xFF, 0xBA, 0x00, 0xE1, 0xFF, 0xB0, 0x00, 0xE2, 0xFF, 0x88, 0x02, 0x27, 0xFF, 0xD8, 0x02, 0x28, +0xFF, 0xCE, 0x02, 0x81, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x01, 0xFF, 0xCE, 0x00, 0x1E, 0xFF, 0xE7, +0x00, 0x1F, 0xFF, 0xE7, 0x00, 0x20, 0xFF, 0xE7, 0x00, 0x21, 0xFF, 0xE7, 0x00, 0x22, 0xFF, 0xE7, +0x00, 0x23, 0xFF, 0xE7, 0x00, 0x24, 0xFF, 0xE7, 0x00, 0x47, 0xFF, 0xE7, 0x00, 0x48, 0xFF, 0xE7, +0x00, 0x49, 0xFF, 0xE7, 0x00, 0x4A, 0xFF, 0xE7, 0x00, 0x4B, 0xFF, 0xE7, 0x00, 0x4C, 0xFF, 0xE7, +0x00, 0x4D, 0xFF, 0xE7, 0x00, 0x64, 0xFF, 0xCE, 0x00, 0x65, 0xFF, 0xCE, 0x00, 0x80, 0xFF, 0xE7, +0x00, 0x81, 0xFF, 0xE7, 0x00, 0x82, 0xFF, 0xE7, 0x00, 0x83, 0xFF, 0xE7, 0x00, 0x84, 0xFF, 0xE7, +0x00, 0x85, 0xFF, 0xE7, 0x00, 0x86, 0xFF, 0xE7, 0x00, 0x87, 0xFF, 0xE7, 0x00, 0x88, 0xFF, 0xE7, +0x00, 0x89, 0xFF, 0xE7, 0x00, 0x8A, 0xFF, 0xE7, 0x00, 0x8B, 0xFF, 0xE7, 0x00, 0x8C, 0xFF, 0xE7, +0x00, 0x8D, 0xFF, 0xE7, 0x00, 0x8E, 0xFF, 0xE7, 0x00, 0x8F, 0xFF, 0xE7, 0x00, 0x90, 0xFF, 0xE7, +0x00, 0x91, 0xFF, 0xE7, 0x00, 0x92, 0xFF, 0xE7, 0x00, 0x93, 0xFF, 0xE7, 0x00, 0x94, 0xFF, 0xE7, +0x00, 0x95, 0xFF, 0xE7, 0x00, 0x96, 0xFF, 0xE7, 0x00, 0x97, 0xFF, 0xE7, 0x00, 0x98, 0xFF, 0xE7, +0x00, 0x99, 0xFF, 0xE7, 0x00, 0x9A, 0xFF, 0xE7, 0x00, 0x9B, 0xFF, 0xE7, 0x00, 0x9C, 0xFF, 0xE7, +0x00, 0x9D, 0xFF, 0xE7, 0x00, 0x9E, 0xFF, 0xE7, 0x00, 0x9F, 0xFF, 0xE7, 0x00, 0xA0, 0xFF, 0xE7, +0x00, 0xA1, 0xFF, 0xE7, 0x00, 0xA2, 0xFF, 0xE7, 0x00, 0xA3, 0xFF, 0xE7, 0x00, 0xA6, 0xFF, 0xE7, +0x00, 0xBB, 0xFF, 0xE7, 0x00, 0xBC, 0xFF, 0x9C, 0x00, 0xDB, 0xFF, 0x9C, 0x00, 0xDC, 0xFF, 0xBA, +0x00, 0xE1, 0xFF, 0xB0, 0x00, 0xE2, 0xFF, 0x88, 0x01, 0x03, 0xFF, 0xCE, 0x01, 0x04, 0xFF, 0xCE, +0x01, 0x07, 0xFF, 0xE7, 0x01, 0x08, 0xFF, 0xE7, 0x01, 0x09, 0xFF, 0xE7, 0x01, 0x0A, 0xFF, 0xE7, +0x01, 0x0B, 0xFF, 0xE7, 0x01, 0x0C, 0xFF, 0xE7, 0x01, 0x0D, 0xFF, 0xE7, 0x01, 0x0E, 0xFF, 0xE7, +0x01, 0x0F, 0xFF, 0xE7, 0x01, 0x10, 0xFF, 0xE7, 0x01, 0x11, 0xFF, 0xE7, 0x01, 0x12, 0xFF, 0xE7, +0x01, 0x13, 0xFF, 0xE7, 0x01, 0x14, 0xFF, 0xE7, 0x01, 0x15, 0xFF, 0xE7, 0x01, 0x16, 0xFF, 0xE7, +0x01, 0x17, 0xFF, 0xE7, 0x01, 0x18, 0xFF, 0xE7, 0x01, 0x19, 0xFF, 0xE7, 0x01, 0x1A, 0xFF, 0xE7, +0x01, 0x1B, 0xFF, 0xE7, 0x01, 0x1C, 0xFF, 0xE7, 0x01, 0x1D, 0xFF, 0xE7, 0x01, 0x1E, 0xFF, 0xE7, +0x01, 0x1F, 0xFF, 0xE7, 0x01, 0x20, 0xFF, 0xE7, 0x01, 0x24, 0xFF, 0xE7, 0x01, 0x25, 0xFF, 0xE7, +0x01, 0x26, 0xFF, 0xE7, 0x01, 0x27, 0xFF, 0xE7, 0x01, 0x28, 0xFF, 0xE7, 0x01, 0x29, 0xFF, 0xE7, +0x01, 0x2A, 0xFF, 0xE7, 0x01, 0x2B, 0xFF, 0xE7, 0x01, 0x2C, 0xFF, 0xE7, 0x01, 0x2D, 0xFF, 0xE7, +0x01, 0x2E, 0xFF, 0xE7, 0x01, 0x2F, 0xFF, 0xE7, 0x01, 0x30, 0xFF, 0xE7, 0x01, 0x31, 0xFF, 0xE7, +0x01, 0x32, 0xFF, 0xE7, 0x01, 0x33, 0xFF, 0xE7, 0x01, 0x34, 0xFF, 0xE7, 0x01, 0x35, 0xFF, 0xE7, +0x01, 0x36, 0xFF, 0xE7, 0x01, 0x37, 0xFF, 0xE7, 0x01, 0x38, 0xFF, 0xE7, 0x01, 0x39, 0xFF, 0xE7, +0x01, 0x3A, 0xFF, 0xE7, 0x01, 0x3B, 0xFF, 0xE7, 0x01, 0x3C, 0xFF, 0xE7, 0x01, 0x3D, 0xFF, 0xE7, +0x01, 0x3E, 0xFF, 0xE7, 0x01, 0x3F, 0xFF, 0xE7, 0x01, 0x40, 0xFF, 0xE7, 0x01, 0x41, 0xFF, 0xE7, +0x01, 0x42, 0xFF, 0xE7, 0x01, 0x43, 0xFF, 0xE7, 0x01, 0x44, 0xFF, 0xE7, 0x01, 0x45, 0xFF, 0xE7, +0x01, 0x46, 0xFF, 0xE7, 0x01, 0x47, 0xFF, 0xE7, 0x01, 0x48, 0xFF, 0xE7, 0x01, 0x49, 0xFF, 0xE7, +0x01, 0x86, 0xFF, 0xE7, 0x01, 0x87, 0xFF, 0xE7, 0x01, 0x88, 0xFF, 0xE7, 0x01, 0x89, 0xFF, 0xE7, +0x01, 0x8A, 0xFF, 0xE7, 0x01, 0x8B, 0xFF, 0xE7, 0x01, 0x8C, 0xFF, 0xE7, 0x01, 0x8D, 0xFF, 0xE7, +0x01, 0x8E, 0xFF, 0xE7, 0x01, 0x8F, 0xFF, 0xE7, 0x01, 0x90, 0xFF, 0xE7, 0x01, 0x91, 0xFF, 0xE7, +0x01, 0x92, 0xFF, 0xE7, 0x01, 0x93, 0xFF, 0xE7, 0x01, 0x94, 0xFF, 0xE7, 0x01, 0x95, 0xFF, 0xE7, +0x01, 0x96, 0xFF, 0xE7, 0x01, 0x97, 0xFF, 0xE7, 0x01, 0x98, 0xFF, 0xE7, 0x01, 0x99, 0xFF, 0xE7, +0x01, 0x9A, 0xFF, 0xE7, 0x01, 0x9B, 0xFF, 0xE7, 0x01, 0x9C, 0xFF, 0xE7, 0x01, 0x9D, 0xFF, 0xE7, +0x01, 0x9E, 0xFF, 0xE7, 0x01, 0x9F, 0xFF, 0xE7, 0x01, 0xA0, 0xFF, 0xE7, 0x01, 0xA1, 0xFF, 0xE7, +0x01, 0xA2, 0xFF, 0xE7, 0x01, 0xA3, 0xFF, 0xE7, 0x01, 0xA4, 0xFF, 0xE7, 0x01, 0xA5, 0xFF, 0xE7, +0x01, 0xA6, 0xFF, 0xE7, 0x01, 0xA7, 0xFF, 0xE7, 0x01, 0xA8, 0xFF, 0xE7, 0x01, 0xA9, 0xFF, 0xE7, +0x01, 0xAC, 0xFF, 0xE7, 0x01, 0xF8, 0xFF, 0xE7, 0x01, 0xF9, 0xFF, 0xE7, 0x01, 0xFA, 0xFF, 0xE7, +0x01, 0xFB, 0xFF, 0xE7, 0x01, 0xFC, 0xFF, 0xE7, 0x01, 0xFD, 0xFF, 0xE7, 0x01, 0xFE, 0xFF, 0xE7, +0x01, 0xFF, 0xFF, 0xE7, 0x02, 0x00, 0xFF, 0xE7, 0x02, 0x01, 0xFF, 0xE7, 0x02, 0x02, 0xFF, 0xE7, +0x02, 0x03, 0xFF, 0xE7, 0x02, 0x04, 0xFF, 0xE7, 0x02, 0x05, 0xFF, 0xE7, 0x02, 0x06, 0xFF, 0xE7, +0x02, 0x07, 0xFF, 0xE7, 0x02, 0x08, 0xFF, 0xE7, 0x02, 0x09, 0xFF, 0xE7, 0x02, 0x0A, 0xFF, 0xE7, +0x02, 0x0B, 0xFF, 0xE7, 0x02, 0x0C, 0xFF, 0xE7, 0x02, 0x0D, 0xFF, 0xE7, 0x02, 0x0E, 0xFF, 0xE7, +0x02, 0x0F, 0xFF, 0xE7, 0x02, 0x10, 0xFF, 0xE7, 0x02, 0x11, 0xFF, 0xE7, 0x02, 0x27, 0xFF, 0xD8, +0x02, 0x28, 0xFF, 0xCE, 0x02, 0x81, 0x00, 0x00, 0x00, 0xC4, 0x00, 0x1E, 0xFF, 0xE2, 0x00, 0x1F, +0xFF, 0xE2, 0x00, 0x20, 0xFF, 0xE2, 0x00, 0x21, 0xFF, 0xE2, 0x00, 0x22, 0xFF, 0xE2, 0x00, 0x23, +0xFF, 0xE2, 0x00, 0x24, 0xFF, 0xE2, 0x00, 0x47, 0xFF, 0xE2, 0x00, 0x48, 0xFF, 0xE2, 0x00, 0x49, +0xFF, 0xE2, 0x00, 0x4A, 0xFF, 0xE2, 0x00, 0x4B, 0xFF, 0xE2, 0x00, 0x4C, 0xFF, 0xE2, 0x00, 0x4D, +0xFF, 0xE2, 0x00, 0x64, 0xFF, 0xD8, 0x00, 0x65, 0xFF, 0xD8, 0x00, 0x80, 0xFF, 0xE2, 0x00, 0x81, +0xFF, 0xE2, 0x00, 0x82, 0xFF, 0xE2, 0x00, 0x83, 0xFF, 0xE2, 0x00, 0x84, 0xFF, 0xE2, 0x00, 0x85, +0xFF, 0xE2, 0x00, 0x86, 0xFF, 0xE2, 0x00, 0x87, 0xFF, 0xE2, 0x00, 0x88, 0xFF, 0xE2, 0x00, 0x89, +0xFF, 0xE2, 0x00, 0x8A, 0xFF, 0xE2, 0x00, 0x8B, 0xFF, 0xE2, 0x00, 0x8C, 0xFF, 0xE2, 0x00, 0x8D, +0xFF, 0xE2, 0x00, 0x8E, 0xFF, 0xE2, 0x00, 0x8F, 0xFF, 0xE2, 0x00, 0x90, 0xFF, 0xE2, 0x00, 0x91, +0xFF, 0xE2, 0x00, 0x92, 0xFF, 0xE2, 0x00, 0x93, 0xFF, 0xE2, 0x00, 0x94, 0xFF, 0xE2, 0x00, 0x95, +0xFF, 0xE2, 0x00, 0x96, 0xFF, 0xE2, 0x00, 0x97, 0xFF, 0xE2, 0x00, 0x98, 0xFF, 0xE2, 0x00, 0x99, +0xFF, 0xE2, 0x00, 0x9A, 0xFF, 0xE2, 0x00, 0x9B, 0xFF, 0xE2, 0x00, 0x9C, 0xFF, 0xE2, 0x00, 0x9D, +0xFF, 0xE2, 0x00, 0x9E, 0xFF, 0xE2, 0x00, 0x9F, 0xFF, 0xE2, 0x00, 0xA0, 0xFF, 0xE2, 0x00, 0xA1, +0xFF, 0xE2, 0x00, 0xA2, 0xFF, 0xE2, 0x00, 0xA3, 0xFF, 0xE2, 0x00, 0xA6, 0xFF, 0xE2, 0x00, 0xBB, +0xFF, 0xE2, 0x01, 0x03, 0xFF, 0xD8, 0x01, 0x04, 0xFF, 0xD8, 0x01, 0x07, 0xFF, 0xE7, 0x01, 0x08, +0xFF, 0xE7, 0x01, 0x09, 0xFF, 0xE7, 0x01, 0x0A, 0xFF, 0xE7, 0x01, 0x0B, 0xFF, 0xE7, 0x01, 0x0C, +0xFF, 0xE7, 0x01, 0x0D, 0xFF, 0xE7, 0x01, 0x0E, 0xFF, 0xE7, 0x01, 0x0F, 0xFF, 0xE7, 0x01, 0x10, +0xFF, 0xE7, 0x01, 0x11, 0xFF, 0xE7, 0x01, 0x12, 0xFF, 0xE7, 0x01, 0x13, 0xFF, 0xE7, 0x01, 0x14, +0xFF, 0xE7, 0x01, 0x15, 0xFF, 0xE7, 0x01, 0x16, 0xFF, 0xE7, 0x01, 0x17, 0xFF, 0xE7, 0x01, 0x18, +0xFF, 0xE7, 0x01, 0x19, 0xFF, 0xE7, 0x01, 0x1A, 0xFF, 0xE7, 0x01, 0x1B, 0xFF, 0xE7, 0x01, 0x1C, +0xFF, 0xE7, 0x01, 0x1D, 0xFF, 0xE7, 0x01, 0x1E, 0xFF, 0xE7, 0x01, 0x1F, 0xFF, 0xE7, 0x01, 0x20, +0xFF, 0xE7, 0x01, 0x24, 0xFF, 0xE7, 0x01, 0x25, 0xFF, 0xE7, 0x01, 0x26, 0xFF, 0xE7, 0x01, 0x27, +0xFF, 0xE7, 0x01, 0x28, 0xFF, 0xE7, 0x01, 0x29, 0xFF, 0xE7, 0x01, 0x2A, 0xFF, 0xE7, 0x01, 0x2B, +0xFF, 0xE7, 0x01, 0x2C, 0xFF, 0xE7, 0x01, 0x2D, 0xFF, 0xE7, 0x01, 0x2E, 0xFF, 0xE7, 0x01, 0x2F, +0xFF, 0xE7, 0x01, 0x30, 0xFF, 0xE7, 0x01, 0x31, 0xFF, 0xE7, 0x01, 0x32, 0xFF, 0xE7, 0x01, 0x33, +0xFF, 0xE7, 0x01, 0x34, 0xFF, 0xE7, 0x01, 0x35, 0xFF, 0xE7, 0x01, 0x36, 0xFF, 0xE7, 0x01, 0x37, +0xFF, 0xE7, 0x01, 0x38, 0xFF, 0xE7, 0x01, 0x39, 0xFF, 0xE7, 0x01, 0x3A, 0xFF, 0xE7, 0x01, 0x3B, +0xFF, 0xE7, 0x01, 0x3C, 0xFF, 0xE7, 0x01, 0x3D, 0xFF, 0xE7, 0x01, 0x3E, 0xFF, 0xE7, 0x01, 0x3F, +0xFF, 0xE7, 0x01, 0x40, 0xFF, 0xE7, 0x01, 0x41, 0xFF, 0xE7, 0x01, 0x42, 0xFF, 0xE7, 0x01, 0x43, +0xFF, 0xE7, 0x01, 0x44, 0xFF, 0xE7, 0x01, 0x45, 0xFF, 0xE7, 0x01, 0x46, 0xFF, 0xE7, 0x01, 0x47, +0xFF, 0xE7, 0x01, 0x48, 0xFF, 0xE7, 0x01, 0x49, 0xFF, 0xE7, 0x01, 0x4B, 0xFF, 0xE8, 0x01, 0x4C, +0xFF, 0xE8, 0x01, 0x4D, 0xFF, 0xE8, 0x01, 0x4E, 0xFF, 0xE8, 0x01, 0x4F, 0xFF, 0xE8, 0x01, 0x50, +0xFF, 0xE8, 0x01, 0x51, 0xFF, 0xE8, 0x01, 0x69, 0x00, 0x1E, 0x01, 0x6A, 0x00, 0x1E, 0x01, 0x6B, +0x00, 0x1E, 0x01, 0x81, 0x00, 0x1E, 0x01, 0x86, 0xFF, 0xE7, 0x01, 0x87, 0xFF, 0xE7, 0x01, 0x88, +0xFF, 0xE7, 0x01, 0x89, 0xFF, 0xE7, 0x01, 0x8A, 0xFF, 0xE7, 0x01, 0x8B, 0xFF, 0xE7, 0x01, 0x8C, +0xFF, 0xE7, 0x01, 0x8D, 0xFF, 0xE7, 0x01, 0x8E, 0xFF, 0xE7, 0x01, 0x8F, 0xFF, 0xE7, 0x01, 0x90, +0xFF, 0xE7, 0x01, 0x91, 0xFF, 0xE7, 0x01, 0x92, 0xFF, 0xE7, 0x01, 0x93, 0xFF, 0xE7, 0x01, 0x94, +0xFF, 0xE7, 0x01, 0x95, 0xFF, 0xE7, 0x01, 0x96, 0xFF, 0xE7, 0x01, 0x97, 0xFF, 0xE7, 0x01, 0x98, +0xFF, 0xE7, 0x01, 0x99, 0xFF, 0xE7, 0x01, 0x9A, 0xFF, 0xE7, 0x01, 0x9B, 0xFF, 0xE7, 0x01, 0x9C, +0xFF, 0xE7, 0x01, 0x9D, 0xFF, 0xE7, 0x01, 0x9E, 0xFF, 0xE7, 0x01, 0x9F, 0xFF, 0xE7, 0x01, 0xA0, +0xFF, 0xE7, 0x01, 0xA1, 0xFF, 0xE7, 0x01, 0xA2, 0xFF, 0xE7, 0x01, 0xA3, 0xFF, 0xE7, 0x01, 0xA4, +0xFF, 0xE7, 0x01, 0xA5, 0xFF, 0xE7, 0x01, 0xA6, 0xFF, 0xE7, 0x01, 0xA7, 0xFF, 0xE7, 0x01, 0xA8, +0xFF, 0xE7, 0x01, 0xA9, 0xFF, 0xE7, 0x01, 0xAA, 0x00, 0x1E, 0x01, 0xAB, 0x00, 0x0F, 0x01, 0xAC, +0xFF, 0xE7, 0x01, 0xF8, 0xFF, 0xE7, 0x01, 0xF9, 0xFF, 0xE7, 0x01, 0xFA, 0xFF, 0xE7, 0x01, 0xFB, +0xFF, 0xE7, 0x01, 0xFC, 0xFF, 0xE7, 0x01, 0xFD, 0xFF, 0xE7, 0x01, 0xFE, 0xFF, 0xE7, 0x01, 0xFF, +0xFF, 0xE7, 0x02, 0x00, 0xFF, 0xE7, 0x02, 0x01, 0xFF, 0xE7, 0x02, 0x02, 0xFF, 0xE7, 0x02, 0x03, +0xFF, 0xE7, 0x02, 0x04, 0xFF, 0xE7, 0x02, 0x05, 0xFF, 0xE7, 0x02, 0x06, 0xFF, 0xE7, 0x02, 0x07, +0xFF, 0xE7, 0x02, 0x08, 0xFF, 0xE7, 0x02, 0x09, 0xFF, 0xE7, 0x02, 0x0A, 0xFF, 0xE7, 0x02, 0x0B, +0xFF, 0xE7, 0x02, 0x0C, 0xFF, 0xE7, 0x02, 0x0D, 0xFF, 0xE7, 0x02, 0x0E, 0xFF, 0xE7, 0x02, 0x0F, +0xFF, 0xE7, 0x02, 0x10, 0xFF, 0xE7, 0x02, 0x11, 0xFF, 0xE7, 0x00, 0x04, 0x00, 0xDB, 0xFF, 0xE3, +0x01, 0x2C, 0xFF, 0xDE, 0x01, 0xAB, 0x00, 0x08, 0x01, 0xE1, 0xFF, 0xEB, 0x00, 0xD2, 0x00, 0x1E, +0xFF, 0xCE, 0x00, 0x1F, 0xFF, 0xCE, 0x00, 0x20, 0xFF, 0xCE, 0x00, 0x21, 0xFF, 0xCE, 0x00, 0x22, +0xFF, 0xCE, 0x00, 0x23, 0xFF, 0xCE, 0x00, 0x24, 0xFF, 0xCE, 0x00, 0x47, 0xFF, 0xCE, 0x00, 0x48, +0xFF, 0xCE, 0x00, 0x49, 0xFF, 0xCE, 0x00, 0x4A, 0xFF, 0xCE, 0x00, 0x4B, 0xFF, 0xCE, 0x00, 0x4C, +0xFF, 0xCE, 0x00, 0x4D, 0xFF, 0xCE, 0x00, 0x80, 0xFF, 0xCE, 0x00, 0x81, 0xFF, 0xCE, 0x00, 0x82, +0xFF, 0xCE, 0x00, 0x83, 0xFF, 0xCE, 0x00, 0x84, 0xFF, 0xCE, 0x00, 0x85, 0xFF, 0xCE, 0x00, 0x86, +0xFF, 0xCE, 0x00, 0x87, 0xFF, 0xCE, 0x00, 0x88, 0xFF, 0xCE, 0x00, 0x89, 0xFF, 0xCE, 0x00, 0x8A, +0xFF, 0xCE, 0x00, 0x8B, 0xFF, 0xCE, 0x00, 0x8C, 0xFF, 0xCE, 0x00, 0x8D, 0xFF, 0xCE, 0x00, 0x8E, +0xFF, 0xCE, 0x00, 0x8F, 0xFF, 0xCE, 0x00, 0x90, 0xFF, 0xCE, 0x00, 0x91, 0xFF, 0xCE, 0x00, 0x92, +0xFF, 0xCE, 0x00, 0x93, 0xFF, 0xCE, 0x00, 0x94, 0xFF, 0xCE, 0x00, 0x95, 0xFF, 0xCE, 0x00, 0x96, +0xFF, 0xCE, 0x00, 0x97, 0xFF, 0xCE, 0x00, 0x98, 0xFF, 0xCE, 0x00, 0x99, 0xFF, 0xCE, 0x00, 0x9A, +0xFF, 0xCE, 0x00, 0x9B, 0xFF, 0xCE, 0x00, 0x9C, 0xFF, 0xCE, 0x00, 0x9D, 0xFF, 0xCE, 0x00, 0x9E, +0xFF, 0xCE, 0x00, 0x9F, 0xFF, 0xCE, 0x00, 0xA0, 0xFF, 0xCE, 0x00, 0xA1, 0xFF, 0xCE, 0x00, 0xA2, +0xFF, 0xCE, 0x00, 0xA3, 0xFF, 0xCE, 0x00, 0xA6, 0xFF, 0xCE, 0x00, 0xBB, 0xFF, 0xCE, 0x00, 0xBC, +0xFF, 0xC4, 0x00, 0xBD, 0xFF, 0xC4, 0x00, 0xBE, 0xFF, 0xC4, 0x00, 0xBF, 0xFF, 0xC4, 0x00, 0xC0, +0xFF, 0xC4, 0x00, 0xC1, 0xFF, 0xC4, 0x00, 0xC2, 0xFF, 0xC4, 0x00, 0xDB, 0xFF, 0xD8, 0x00, 0xDC, +0xFF, 0xD8, 0x00, 0xDD, 0xFF, 0xD8, 0x00, 0xDE, 0xFF, 0xD8, 0x00, 0xDF, 0xFF, 0xD8, 0x00, 0xE0, +0xFF, 0xD8, 0x00, 0xE2, 0xFF, 0xB0, 0x00, 0xE3, 0xFF, 0xB0, 0x00, 0xE4, 0xFF, 0xB0, 0x00, 0xE5, +0xFF, 0xB0, 0x00, 0xE6, 0xFF, 0xB0, 0x00, 0xE7, 0xFF, 0xB0, 0x00, 0xE8, 0xFF, 0xB0, 0x00, 0xE9, +0xFF, 0xB0, 0x00, 0xEA, 0xFF, 0xB0, 0x00, 0xEB, 0xFF, 0xB0, 0x01, 0x07, 0x00, 0x00, 0x01, 0x08, +0x00, 0x00, 0x01, 0x09, 0x00, 0x00, 0x01, 0x0A, 0x00, 0x00, 0x01, 0x0B, 0x00, 0x00, 0x01, 0x0C, +0x00, 0x00, 0x01, 0x0D, 0x00, 0x00, 0x01, 0x0E, 0x00, 0x00, 0x01, 0x0F, 0x00, 0x00, 0x01, 0x10, +0x00, 0x00, 0x01, 0x11, 0x00, 0x00, 0x01, 0x12, 0x00, 0x00, 0x01, 0x13, 0x00, 0x00, 0x01, 0x14, +0x00, 0x00, 0x01, 0x15, 0x00, 0x00, 0x01, 0x16, 0x00, 0x00, 0x01, 0x17, 0x00, 0x00, 0x01, 0x18, +0x00, 0x00, 0x01, 0x19, 0x00, 0x00, 0x01, 0x1A, 0x00, 0x00, 0x01, 0x1B, 0x00, 0x00, 0x01, 0x1C, +0x00, 0x00, 0x01, 0x1D, 0x00, 0x00, 0x01, 0x1E, 0x00, 0x00, 0x01, 0x1F, 0x00, 0x00, 0x01, 0x20, +0x00, 0x00, 0x01, 0x24, 0x00, 0x00, 0x01, 0x25, 0x00, 0x00, 0x01, 0x26, 0x00, 0x00, 0x01, 0x27, +0x00, 0x00, 0x01, 0x28, 0x00, 0x00, 0x01, 0x29, 0x00, 0x00, 0x01, 0x2A, 0x00, 0x00, 0x01, 0x2B, +0x00, 0x00, 0x01, 0x2C, 0xFF, 0xEA, 0x01, 0x2D, 0x00, 0x00, 0x01, 0x2E, 0x00, 0x00, 0x01, 0x2F, +0x00, 0x00, 0x01, 0x30, 0x00, 0x00, 0x01, 0x31, 0x00, 0x00, 0x01, 0x32, 0x00, 0x00, 0x01, 0x33, +0x00, 0x00, 0x01, 0x34, 0x00, 0x00, 0x01, 0x35, 0x00, 0x00, 0x01, 0x36, 0x00, 0x00, 0x01, 0x37, +0x00, 0x00, 0x01, 0x38, 0x00, 0x00, 0x01, 0x39, 0x00, 0x00, 0x01, 0x3A, 0x00, 0x00, 0x01, 0x3B, +0x00, 0x00, 0x01, 0x3C, 0x00, 0x00, 0x01, 0x3D, 0x00, 0x00, 0x01, 0x3E, 0x00, 0x00, 0x01, 0x3F, +0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x41, 0x00, 0x00, 0x01, 0x42, 0x00, 0x00, 0x01, 0x43, +0x00, 0x00, 0x01, 0x44, 0x00, 0x00, 0x01, 0x45, 0x00, 0x00, 0x01, 0x46, 0x00, 0x00, 0x01, 0x47, +0x00, 0x00, 0x01, 0x48, 0x00, 0x00, 0x01, 0x49, 0x00, 0x00, 0x01, 0x69, 0x00, 0x3C, 0x01, 0x6A, +0x00, 0x3C, 0x01, 0x6B, 0x00, 0x3C, 0x01, 0x81, 0x00, 0x3C, 0x01, 0x86, 0x00, 0x00, 0x01, 0x87, +0x00, 0x00, 0x01, 0x88, 0x00, 0x00, 0x01, 0x89, 0x00, 0x00, 0x01, 0x8A, 0x00, 0x00, 0x01, 0x8B, +0x00, 0x00, 0x01, 0x8C, 0x00, 0x00, 0x01, 0x8D, 0x00, 0x00, 0x01, 0x8E, 0x00, 0x00, 0x01, 0x8F, +0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x91, 0x00, 0x00, 0x01, 0x92, 0x00, 0x00, 0x01, 0x93, +0x00, 0x00, 0x01, 0x94, 0x00, 0x00, 0x01, 0x95, 0x00, 0x00, 0x01, 0x96, 0x00, 0x00, 0x01, 0x97, +0x00, 0x00, 0x01, 0x98, 0x00, 0x00, 0x01, 0x99, 0x00, 0x00, 0x01, 0x9A, 0x00, 0x00, 0x01, 0x9B, +0x00, 0x00, 0x01, 0x9C, 0x00, 0x00, 0x01, 0x9D, 0x00, 0x00, 0x01, 0x9E, 0x00, 0x00, 0x01, 0x9F, +0x00, 0x00, 0x01, 0xA0, 0x00, 0x00, 0x01, 0xA1, 0x00, 0x00, 0x01, 0xA2, 0x00, 0x00, 0x01, 0xA3, +0x00, 0x00, 0x01, 0xA4, 0x00, 0x00, 0x01, 0xA5, 0x00, 0x00, 0x01, 0xA6, 0x00, 0x00, 0x01, 0xA7, +0x00, 0x00, 0x01, 0xA8, 0x00, 0x00, 0x01, 0xA9, 0x00, 0x00, 0x01, 0xAC, 0x00, 0x00, 0x01, 0xC0, +0xFF, 0xFA, 0x01, 0xE1, 0xFF, 0xF9, 0x01, 0xE7, 0xFF, 0xFF, 0x01, 0xF8, 0x00, 0x00, 0x01, 0xF9, +0x00, 0x00, 0x01, 0xFA, 0x00, 0x00, 0x01, 0xFB, 0x00, 0x00, 0x01, 0xFC, 0x00, 0x00, 0x01, 0xFD, +0x00, 0x00, 0x01, 0xFE, 0x00, 0x00, 0x01, 0xFF, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x01, +0x00, 0x00, 0x02, 0x02, 0x00, 0x00, 0x02, 0x03, 0x00, 0x00, 0x02, 0x04, 0x00, 0x00, 0x02, 0x05, +0x00, 0x00, 0x02, 0x06, 0x00, 0x00, 0x02, 0x07, 0x00, 0x00, 0x02, 0x08, 0x00, 0x00, 0x02, 0x09, +0x00, 0x00, 0x02, 0x0A, 0x00, 0x00, 0x02, 0x0B, 0x00, 0x00, 0x02, 0x0C, 0x00, 0x00, 0x02, 0x0D, +0x00, 0x00, 0x02, 0x0E, 0x00, 0x00, 0x02, 0x0F, 0x00, 0x00, 0x02, 0x10, 0x00, 0x00, 0x02, 0x11, +0x00, 0x00, 0x02, 0x77, 0xFF, 0xA4, 0x00, 0xED, 0x00, 0x01, 0xFF, 0x9C, 0x00, 0x02, 0xFF, 0x9C, +0x00, 0x03, 0xFF, 0x9C, 0x00, 0x04, 0xFF, 0x9C, 0x00, 0x05, 0xFF, 0x9C, 0x00, 0x06, 0xFF, 0x9C, +0x00, 0x07, 0xFF, 0x9C, 0x00, 0x08, 0xFF, 0x9C, 0x00, 0x09, 0xFF, 0x9C, 0x00, 0x0A, 0xFF, 0x9C, +0x00, 0x0B, 0xFF, 0x9C, 0x00, 0x0C, 0xFF, 0x9C, 0x00, 0x0D, 0xFF, 0x9C, 0x00, 0x0E, 0xFF, 0x9C, +0x00, 0x0F, 0xFF, 0x9C, 0x00, 0x10, 0xFF, 0x9C, 0x00, 0x11, 0xFF, 0x9C, 0x00, 0x12, 0xFF, 0x9C, +0x00, 0x13, 0xFF, 0x9C, 0x00, 0x14, 0xFF, 0x9C, 0x00, 0x15, 0xFF, 0x9C, 0x00, 0x16, 0xFF, 0x9C, +0x00, 0x17, 0xFF, 0x9C, 0x00, 0x18, 0xFF, 0x9C, 0x00, 0x19, 0xFF, 0x9C, 0x00, 0x1A, 0xFF, 0x9C, +0x00, 0x1E, 0xFF, 0xD8, 0x00, 0x1F, 0xFF, 0xD8, 0x00, 0x20, 0xFF, 0xD8, 0x00, 0x21, 0xFF, 0xD8, +0x00, 0x22, 0xFF, 0xD8, 0x00, 0x23, 0xFF, 0xD8, 0x00, 0x24, 0xFF, 0xD8, 0x00, 0x47, 0xFF, 0xD8, +0x00, 0x48, 0xFF, 0xD8, 0x00, 0x49, 0xFF, 0xD8, 0x00, 0x4A, 0xFF, 0xD8, 0x00, 0x4B, 0xFF, 0xD8, +0x00, 0x4C, 0xFF, 0xD8, 0x00, 0x4D, 0xFF, 0xD8, 0x00, 0x64, 0xFF, 0xCE, 0x00, 0x65, 0xFF, 0xCE, +0x00, 0x80, 0xFF, 0xD8, 0x00, 0x81, 0xFF, 0xD8, 0x00, 0x82, 0xFF, 0xD8, 0x00, 0x83, 0xFF, 0xD8, +0x00, 0x84, 0xFF, 0xD8, 0x00, 0x85, 0xFF, 0xD8, 0x00, 0x86, 0xFF, 0xD8, 0x00, 0x87, 0xFF, 0xD8, +0x00, 0x88, 0xFF, 0xD8, 0x00, 0x89, 0xFF, 0xD8, 0x00, 0x8A, 0xFF, 0xD8, 0x00, 0x8B, 0xFF, 0xD8, +0x00, 0x8C, 0xFF, 0xD8, 0x00, 0x8D, 0xFF, 0xD8, 0x00, 0x8E, 0xFF, 0xD8, 0x00, 0x8F, 0xFF, 0xD8, +0x00, 0x90, 0xFF, 0xD8, 0x00, 0x91, 0xFF, 0xD8, 0x00, 0x92, 0xFF, 0xD8, 0x00, 0x93, 0xFF, 0xD8, +0x00, 0x94, 0xFF, 0xD8, 0x00, 0x95, 0xFF, 0xD8, 0x00, 0x96, 0xFF, 0xD8, 0x00, 0x97, 0xFF, 0xD8, +0x00, 0x98, 0xFF, 0xD8, 0x00, 0x99, 0xFF, 0xD8, 0x00, 0x9A, 0xFF, 0xD8, 0x00, 0x9B, 0xFF, 0xD8, +0x00, 0x9C, 0xFF, 0xD8, 0x00, 0x9D, 0xFF, 0xD8, 0x00, 0x9E, 0xFF, 0xD8, 0x00, 0x9F, 0xFF, 0xD8, +0x00, 0xA0, 0xFF, 0xD8, 0x00, 0xA1, 0xFF, 0xD8, 0x00, 0xA2, 0xFF, 0xD8, 0x00, 0xA3, 0xFF, 0xD8, +0x00, 0xA6, 0xFF, 0xD8, 0x00, 0xBB, 0xFF, 0xD8, 0x01, 0x03, 0xFF, 0xCE, 0x01, 0x04, 0xFF, 0xCE, +0x01, 0x07, 0xFF, 0xCE, 0x01, 0x08, 0xFF, 0xCE, 0x01, 0x09, 0xFF, 0xCE, 0x01, 0x0A, 0xFF, 0xCE, +0x01, 0x0B, 0xFF, 0xCE, 0x01, 0x0C, 0xFF, 0xCE, 0x01, 0x0D, 0xFF, 0xCE, 0x01, 0x0E, 0xFF, 0xCE, +0x01, 0x0F, 0xFF, 0xCE, 0x01, 0x10, 0xFF, 0xCE, 0x01, 0x11, 0xFF, 0xCE, 0x01, 0x12, 0xFF, 0xCE, +0x01, 0x13, 0xFF, 0xCE, 0x01, 0x14, 0xFF, 0xCE, 0x01, 0x15, 0xFF, 0xCE, 0x01, 0x16, 0xFF, 0xCE, +0x01, 0x17, 0xFF, 0xCE, 0x01, 0x18, 0xFF, 0xCE, 0x01, 0x19, 0xFF, 0xCE, 0x01, 0x1A, 0xFF, 0xCE, +0x01, 0x1B, 0xFF, 0xCE, 0x01, 0x1C, 0xFF, 0xCE, 0x01, 0x1D, 0xFF, 0xCE, 0x01, 0x1E, 0xFF, 0xCE, +0x01, 0x1F, 0xFF, 0xCE, 0x01, 0x20, 0xFF, 0xCE, 0x01, 0x24, 0xFF, 0xCE, 0x01, 0x25, 0xFF, 0xCE, +0x01, 0x26, 0xFF, 0xCE, 0x01, 0x27, 0xFF, 0xCE, 0x01, 0x28, 0xFF, 0xCE, 0x01, 0x29, 0xFF, 0xCE, +0x01, 0x2A, 0xFF, 0xCE, 0x01, 0x2B, 0xFF, 0xCE, 0x01, 0x2C, 0xFF, 0xE0, 0x01, 0x2D, 0xFF, 0xCE, +0x01, 0x2E, 0xFF, 0xCE, 0x01, 0x2F, 0xFF, 0xCE, 0x01, 0x30, 0xFF, 0xCE, 0x01, 0x31, 0xFF, 0xCE, +0x01, 0x32, 0xFF, 0xCE, 0x01, 0x33, 0xFF, 0xCE, 0x01, 0x34, 0xFF, 0xCE, 0x01, 0x35, 0xFF, 0xCE, +0x01, 0x36, 0xFF, 0xCE, 0x01, 0x37, 0xFF, 0xCE, 0x01, 0x38, 0xFF, 0xCE, 0x01, 0x39, 0xFF, 0xCE, +0x01, 0x3A, 0xFF, 0xCE, 0x01, 0x3B, 0xFF, 0xCE, 0x01, 0x3C, 0xFF, 0xCE, 0x01, 0x3D, 0xFF, 0xCE, +0x01, 0x3E, 0xFF, 0xCE, 0x01, 0x3F, 0xFF, 0xCE, 0x01, 0x40, 0xFF, 0xCE, 0x01, 0x41, 0xFF, 0xCE, +0x01, 0x42, 0xFF, 0xCE, 0x01, 0x43, 0xFF, 0xCE, 0x01, 0x44, 0xFF, 0xCE, 0x01, 0x45, 0xFF, 0xCE, +0x01, 0x46, 0xFF, 0xCE, 0x01, 0x47, 0xFF, 0xCE, 0x01, 0x48, 0xFF, 0xCE, 0x01, 0x49, 0xFF, 0xCE, +0x01, 0x4B, 0xFF, 0xCE, 0x01, 0x4C, 0xFF, 0xCE, 0x01, 0x4D, 0xFF, 0xCE, 0x01, 0x4E, 0xFF, 0xCE, +0x01, 0x4F, 0xFF, 0xCE, 0x01, 0x50, 0xFF, 0xCE, 0x01, 0x51, 0xFF, 0xCE, 0x01, 0x86, 0xFF, 0xCE, +0x01, 0x87, 0xFF, 0xCE, 0x01, 0x88, 0xFF, 0xCE, 0x01, 0x89, 0xFF, 0xCE, 0x01, 0x8A, 0xFF, 0xCE, +0x01, 0x8B, 0xFF, 0xCE, 0x01, 0x8C, 0xFF, 0xCE, 0x01, 0x8D, 0xFF, 0xCE, 0x01, 0x8E, 0xFF, 0xCE, +0x01, 0x8F, 0xFF, 0xCE, 0x01, 0x90, 0xFF, 0xCE, 0x01, 0x91, 0xFF, 0xCE, 0x01, 0x92, 0xFF, 0xCE, +0x01, 0x93, 0xFF, 0xCE, 0x01, 0x94, 0xFF, 0xCE, 0x01, 0x95, 0xFF, 0xCE, 0x01, 0x96, 0xFF, 0xCE, +0x01, 0x97, 0xFF, 0xCE, 0x01, 0x98, 0xFF, 0xCE, 0x01, 0x99, 0xFF, 0xCE, 0x01, 0x9A, 0xFF, 0xCE, +0x01, 0x9B, 0xFF, 0xCE, 0x01, 0x9C, 0xFF, 0xCE, 0x01, 0x9D, 0xFF, 0xCE, 0x01, 0x9E, 0xFF, 0xCE, +0x01, 0x9F, 0xFF, 0xCE, 0x01, 0xA0, 0xFF, 0xCE, 0x01, 0xA1, 0xFF, 0xCE, 0x01, 0xA2, 0xFF, 0xCE, +0x01, 0xA3, 0xFF, 0xCE, 0x01, 0xA4, 0xFF, 0xCE, 0x01, 0xA5, 0xFF, 0xCE, 0x01, 0xA6, 0xFF, 0xCE, +0x01, 0xA7, 0xFF, 0xCE, 0x01, 0xA8, 0xFF, 0xCE, 0x01, 0xA9, 0xFF, 0xCE, 0x01, 0xAC, 0xFF, 0xCE, +0x01, 0xB5, 0xFF, 0xE2, 0x01, 0xB6, 0xFF, 0xE2, 0x01, 0xB7, 0xFF, 0xE2, 0x01, 0xB8, 0xFF, 0xE2, +0x01, 0xB9, 0xFF, 0xE2, 0x01, 0xBA, 0xFF, 0xE2, 0x01, 0xBB, 0xFF, 0xE2, 0x01, 0xBC, 0xFF, 0xE2, +0x01, 0xBD, 0xFF, 0xE2, 0x01, 0xBE, 0xFF, 0xE2, 0x01, 0xBF, 0xFF, 0xE2, 0x01, 0xC0, 0xFF, 0xF4, +0x01, 0xE1, 0xFF, 0xFF, 0x01, 0xE7, 0xFF, 0xFA, 0x01, 0xF8, 0xFF, 0xCE, 0x01, 0xF9, 0xFF, 0xCE, +0x01, 0xFA, 0xFF, 0xCE, 0x01, 0xFB, 0xFF, 0xCE, 0x01, 0xFC, 0xFF, 0xCE, 0x01, 0xFD, 0xFF, 0xCE, +0x01, 0xFE, 0xFF, 0xCE, 0x01, 0xFF, 0xFF, 0xCE, 0x02, 0x00, 0xFF, 0xCE, 0x02, 0x01, 0xFF, 0xCE, +0x02, 0x02, 0xFF, 0xCE, 0x02, 0x03, 0xFF, 0xCE, 0x02, 0x04, 0xFF, 0xCE, 0x02, 0x05, 0xFF, 0xCE, +0x02, 0x06, 0xFF, 0xCE, 0x02, 0x07, 0xFF, 0xCE, 0x02, 0x08, 0xFF, 0xCE, 0x02, 0x09, 0xFF, 0xCE, +0x02, 0x0A, 0xFF, 0xCE, 0x02, 0x0B, 0xFF, 0xCE, 0x02, 0x0C, 0xFF, 0xCE, 0x02, 0x0D, 0xFF, 0xCE, +0x02, 0x0E, 0xFF, 0xCE, 0x02, 0x0F, 0xFF, 0xCE, 0x02, 0x10, 0xFF, 0xCE, 0x02, 0x11, 0xFF, 0xCE, +0x02, 0x22, 0xFF, 0x9C, 0x02, 0x26, 0xFF, 0xCE, 0x02, 0x27, 0xFF, 0xE2, 0x02, 0x28, 0xFF, 0xE2, +0x02, 0x2A, 0xFF, 0xC4, 0x02, 0x2C, 0xFF, 0xCE, 0x02, 0x76, 0xFF, 0xA4, 0x00, 0x1D, 0x00, 0x01, +0xFF, 0xB5, 0x00, 0x02, 0xFF, 0xB5, 0x00, 0x03, 0xFF, 0xB5, 0x00, 0x04, 0xFF, 0xB5, 0x00, 0x05, +0xFF, 0xB5, 0x00, 0x06, 0xFF, 0xB5, 0x00, 0x07, 0xFF, 0xB5, 0x00, 0x08, 0xFF, 0xB5, 0x00, 0x09, +0xFF, 0xB5, 0x00, 0x0A, 0xFF, 0xB5, 0x00, 0x0B, 0xFF, 0xB5, 0x00, 0x0C, 0xFF, 0xB5, 0x00, 0x0D, +0xFF, 0xB5, 0x00, 0x0E, 0xFF, 0xB5, 0x00, 0x0F, 0xFF, 0xB5, 0x00, 0x10, 0xFF, 0xB5, 0x00, 0x11, +0xFF, 0xB5, 0x00, 0x12, 0xFF, 0xB5, 0x00, 0x13, 0xFF, 0xB5, 0x00, 0x14, 0xFF, 0xB5, 0x00, 0x15, +0xFF, 0xB5, 0x00, 0x16, 0xFF, 0xB5, 0x00, 0x17, 0xFF, 0xB5, 0x00, 0x18, 0xFF, 0xB5, 0x00, 0x19, +0xFF, 0xB5, 0x00, 0x1A, 0xFF, 0xB5, 0x01, 0x2C, 0xFF, 0xE7, 0x01, 0xE1, 0x00, 0x06, 0x02, 0x22, +0xFF, 0xB5, 0x00, 0x01, 0x00, 0xDB, 0xFF, 0xF8, 0x00, 0x03, 0x00, 0xDB, 0xFF, 0xF4, 0x01, 0x2C, +0x00, 0x0A, 0x01, 0xE7, 0xFF, 0xFA, 0x00, 0x03, 0x00, 0xDB, 0xFF, 0xEF, 0x01, 0x2C, 0xFF, 0xE2, +0x01, 0xE1, 0xFF, 0xF7, 0x00, 0x20, 0x00, 0x01, 0xFF, 0xD8, 0x00, 0x02, 0xFF, 0xD8, 0x00, 0x03, +0xFF, 0xD8, 0x00, 0x04, 0xFF, 0xD8, 0x00, 0x05, 0xFF, 0xD8, 0x00, 0x06, 0xFF, 0xD8, 0x00, 0x07, +0xFF, 0xD8, 0x00, 0x08, 0xFF, 0xD8, 0x00, 0x09, 0xFF, 0xD8, 0x00, 0x0A, 0xFF, 0xD8, 0x00, 0x0B, +0xFF, 0xD8, 0x00, 0x0C, 0xFF, 0xD8, 0x00, 0x0D, 0xFF, 0xD8, 0x00, 0x0E, 0xFF, 0xD8, 0x00, 0x0F, +0xFF, 0xD8, 0x00, 0x10, 0xFF, 0xD8, 0x00, 0x11, 0xFF, 0xD8, 0x00, 0x12, 0xFF, 0xD8, 0x00, 0x13, +0xFF, 0xD8, 0x00, 0x14, 0xFF, 0xD8, 0x00, 0x15, 0xFF, 0xD8, 0x00, 0x16, 0xFF, 0xD8, 0x00, 0x17, +0xFF, 0xD8, 0x00, 0x18, 0xFF, 0xD8, 0x00, 0x19, 0xFF, 0xD8, 0x00, 0x1A, 0xFF, 0xD8, 0x00, 0x64, +0xFF, 0xB5, 0x00, 0x65, 0xFF, 0xB5, 0x01, 0x03, 0xFF, 0xB5, 0x01, 0x04, 0xFF, 0xB5, 0x01, 0x2C, +0xFF, 0xF1, 0x02, 0x22, 0xFF, 0xD8, 0x00, 0x01, 0x00, 0xDB, 0xFF, 0xFA, 0x00, 0x19, 0x00, 0xBC, +0xFF, 0x9C, 0x00, 0xBD, 0xFF, 0x9C, 0x00, 0xBE, 0xFF, 0x9C, 0x00, 0xBF, 0xFF, 0x9C, 0x00, 0xC0, +0xFF, 0x9C, 0x00, 0xC1, 0xFF, 0x9C, 0x00, 0xC2, 0xFF, 0x9C, 0x00, 0xDB, 0xFF, 0x88, 0x00, 0xDC, +0xFF, 0xB0, 0x00, 0xDD, 0xFF, 0xB0, 0x00, 0xDE, 0xFF, 0xB0, 0x00, 0xDF, 0xFF, 0xB0, 0x00, 0xE0, +0xFF, 0xB0, 0x00, 0xE2, 0xFF, 0x88, 0x00, 0xE3, 0xFF, 0x88, 0x00, 0xE4, 0xFF, 0x88, 0x00, 0xE5, +0xFF, 0x88, 0x00, 0xE6, 0xFF, 0x88, 0x00, 0xE7, 0xFF, 0x88, 0x00, 0xE8, 0xFF, 0x88, 0x00, 0xE9, +0xFF, 0x88, 0x00, 0xEA, 0xFF, 0x88, 0x00, 0xEB, 0xFF, 0x88, 0x01, 0xE1, 0xFF, 0xD8, 0x02, 0x2A, +0xFF, 0xE7, 0x00, 0x19, 0x00, 0xBC, 0xFF, 0x9C, 0x00, 0xBD, 0xFF, 0x9C, 0x00, 0xBE, 0xFF, 0x9C, +0x00, 0xBF, 0xFF, 0x9C, 0x00, 0xC0, 0xFF, 0x9C, 0x00, 0xC1, 0xFF, 0x9C, 0x00, 0xC2, 0xFF, 0x9C, +0x00, 0xDB, 0xFF, 0x9C, 0x00, 0xDC, 0xFF, 0xB0, 0x00, 0xDD, 0xFF, 0xB0, 0x00, 0xDE, 0xFF, 0xB0, +0x00, 0xDF, 0xFF, 0xB0, 0x00, 0xE0, 0xFF, 0xB0, 0x00, 0xE2, 0xFF, 0x88, 0x00, 0xE3, 0xFF, 0x88, +0x00, 0xE4, 0xFF, 0x88, 0x00, 0xE5, 0xFF, 0x88, 0x00, 0xE6, 0xFF, 0x88, 0x00, 0xE7, 0xFF, 0x88, +0x00, 0xE8, 0xFF, 0x88, 0x00, 0xE9, 0xFF, 0x88, 0x00, 0xEA, 0xFF, 0x88, 0x00, 0xEB, 0xFF, 0x88, +0x01, 0xE1, 0xFF, 0xD8, 0x02, 0x2A, 0xFF, 0xE7, 0x00, 0x02, 0x02, 0x76, 0xFF, 0xCE, 0x02, 0xE1, +0xFF, 0xD8, 0x00, 0x01, 0x02, 0xE1, 0xFF, 0xE2, 0x00, 0x0A, 0x02, 0x27, 0xFF, 0xF1, 0x02, 0x28, +0xFF, 0xEC, 0x02, 0x2A, 0xFF, 0xE7, 0x02, 0x2C, 0xFF, 0xEC, 0x02, 0x2E, 0xFF, 0xEC, 0x02, 0x69, +0xFF, 0xB0, 0x02, 0x6A, 0xFF, 0x9C, 0x02, 0x76, 0xFF, 0x88, 0x02, 0xD5, 0xFF, 0xCE, 0x02, 0xE1, +0xFF, 0xA6, 0x00, 0x01, 0x02, 0xE1, 0xFF, 0xEC, 0x00, 0x02, 0x02, 0x76, 0xFF, 0xD8, 0x02, 0xE1, +0xFF, 0xEC, 0x00, 0x03, 0x02, 0x28, 0xFF, 0xEC, 0x02, 0x2D, 0xFF, 0xEC, 0x02, 0xDF, 0xFF, 0xC4, +0x00, 0x02, 0x02, 0x76, 0xFF, 0xE7, 0x02, 0xE1, 0xFF, 0xE2, 0x00, 0x02, 0x02, 0x2A, 0xFF, 0xEC, +0x02, 0x8C, 0x00, 0x0A, 0x00, 0x01, 0x02, 0xD5, 0xFF, 0xD8, 0x00, 0x02, 0x02, 0x76, 0xFF, 0xCE, +0x02, 0xE1, 0xFF, 0xCE, 0x00, 0x03, 0x02, 0x6A, 0x00, 0x00, 0x02, 0x76, 0xFF, 0xEC, 0x02, 0xA7, +0xFF, 0xE2, 0x00, 0x05, 0x01, 0x2C, 0xFF, 0xFD, 0x02, 0x72, 0xFF, 0xFA, 0x02, 0x76, 0xFF, 0xFF, +0x02, 0x77, 0xFF, 0xFA, 0x02, 0xA7, 0xFF, 0xFD, 0x00, 0x03, 0x02, 0x6A, 0xFF, 0xD8, 0x02, 0x76, +0xFF, 0xEC, 0x02, 0xA7, 0xFF, 0xE2, 0x00, 0x09, 0x01, 0x2C, 0xFF, 0xFC, 0x02, 0x6A, 0xFF, 0xD8, +0x02, 0x70, 0x00, 0x04, 0x02, 0x71, 0xFF, 0xF4, 0x02, 0x74, 0x00, 0x06, 0x02, 0x76, 0xFF, 0xEC, +0x02, 0x77, 0xFF, 0xFF, 0x02, 0x85, 0xFF, 0xEB, 0x02, 0xA7, 0xFF, 0xE2, 0x00, 0x09, 0x01, 0xE1, +0xFF, 0xFD, 0x01, 0xE7, 0xFF, 0xFD, 0x02, 0x72, 0x00, 0x0A, 0x02, 0x74, 0xFF, 0xEC, 0x02, 0x76, +0xFF, 0xF4, 0x02, 0x77, 0xFF, 0xFB, 0x02, 0x85, 0xFF, 0xDE, 0x02, 0x8A, 0xFF, 0xE7, 0x02, 0x8C, +0xFF, 0xE7, 0x00, 0x02, 0x02, 0x74, 0x00, 0x14, 0x02, 0x76, 0xFF, 0xEC, 0x00, 0x04, 0x00, 0xDB, +0xFF, 0xF6, 0x02, 0x77, 0xFF, 0xFA, 0x02, 0x85, 0x00, 0x01, 0x02, 0x8A, 0x00, 0x1E, 0x00, 0x02, +0x02, 0x6A, 0xFF, 0xFD, 0x02, 0x77, 0xFF, 0xE2, 0x00, 0x04, 0x02, 0x74, 0x00, 0x1E, 0x02, 0x76, +0xFF, 0xEC, 0x02, 0x8A, 0x00, 0x1E, 0x02, 0x8E, 0x00, 0x28, 0x00, 0x0A, 0x00, 0x53, 0xFF, 0xF1, +0x01, 0xE7, 0xFF, 0xFD, 0x02, 0x71, 0xFF, 0xEC, 0x02, 0x72, 0x00, 0x0A, 0x02, 0x74, 0xFF, 0xF1, +0x02, 0x76, 0xFF, 0xE3, 0x02, 0x77, 0xFF, 0xCE, 0x02, 0x85, 0xFF, 0xCA, 0x02, 0x8A, 0xFF, 0xE2, +0x02, 0x8C, 0xFF, 0xE7, 0x00, 0x04, 0x02, 0x76, 0xFF, 0xCE, 0x02, 0x77, 0xFF, 0xCE, 0x02, 0x8A, +0xFF, 0xE7, 0x02, 0x8C, 0xFF, 0xE7, 0x00, 0x01, 0x02, 0x77, 0xFF, 0xE2, 0x00, 0x03, 0x02, 0x76, +0xFF, 0x88, 0x02, 0x81, 0xFF, 0x88, 0x02, 0xA7, 0xFF, 0xCE, 0x00, 0x01, 0x02, 0x81, 0xFF, 0xB0, +0x00, 0x03, 0x02, 0x76, 0xFF, 0xB0, 0x02, 0x81, 0xFF, 0xBA, 0x02, 0xA7, 0xFF, 0xE2, 0x00, 0x0B, +0x02, 0x6F, 0xFF, 0xFA, 0x02, 0x70, 0x00, 0x07, 0x02, 0x71, 0xFF, 0xEC, 0x02, 0x72, 0xFF, 0xF4, +0x02, 0x73, 0xFF, 0xF8, 0x02, 0x76, 0xFF, 0xB0, 0x02, 0x81, 0xFF, 0x9C, 0x02, 0x85, 0xFF, 0xE3, +0x02, 0xA6, 0xFF, 0xFA, 0x02, 0xA7, 0xFF, 0xCE, 0x02, 0xAC, 0x00, 0x06, 0x00, 0x05, 0x02, 0x76, +0xFF, 0xC4, 0x02, 0x7E, 0xFF, 0x9C, 0x02, 0x80, 0xFF, 0x9C, 0x02, 0x81, 0xFF, 0x9C, 0x02, 0xA7, +0xFF, 0xC9, 0x00, 0x04, 0x02, 0x77, 0xFF, 0xD8, 0x02, 0x7E, 0xFF, 0xC4, 0x02, 0x80, 0x00, 0x00, +0x02, 0x81, 0xFF, 0xC4, 0x00, 0x04, 0x02, 0x77, 0xFF, 0xD8, 0x02, 0x7E, 0xFF, 0xC4, 0x02, 0x80, +0xFF, 0xC4, 0x02, 0x81, 0xFF, 0xC4, 0x00, 0x06, 0x00, 0x53, 0xFF, 0xF1, 0x02, 0x76, 0xFF, 0xD8, +0x02, 0x77, 0xFF, 0xCE, 0x02, 0x85, 0xFF, 0xF6, 0x02, 0x8A, 0xFF, 0xE2, 0x02, 0x8C, 0xFF, 0xE7, +0x00, 0x0E, 0x01, 0xE1, 0x00, 0x03, 0x01, 0xE7, 0xFF, 0xFD, 0x02, 0x69, 0xFF, 0x9C, 0x02, 0x6A, +0xFF, 0x9C, 0x02, 0x6E, 0x00, 0x0A, 0x02, 0x6F, 0x00, 0x14, 0x02, 0x71, 0xFF, 0xEC, 0x02, 0x72, +0x00, 0x19, 0x02, 0x73, 0x00, 0x04, 0x02, 0x74, 0xFF, 0xFB, 0x02, 0x76, 0xFF, 0xD8, 0x02, 0x77, +0xFF, 0xEC, 0x02, 0x85, 0xFF, 0xCA, 0x02, 0xAC, 0xFF, 0xF0, 0x00, 0x04, 0x02, 0x69, 0xFF, 0x9C, +0x02, 0x6A, 0xFF, 0x9C, 0x02, 0x76, 0xFF, 0xB0, 0x02, 0x77, 0xFF, 0xCE, 0x00, 0x08, 0x00, 0x2F, +0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x4E, 0x00, 0x00, 0x02, 0x74, 0xFF, 0xB5, 0x02, 0x77, +0xFF, 0x9C, 0x02, 0x7E, 0xFF, 0xC4, 0x02, 0x80, 0xFF, 0xC4, 0x02, 0x81, 0xFF, 0xC4, 0x00, 0x03, +0x02, 0x7E, 0xFF, 0xA6, 0x02, 0x80, 0xFF, 0xA6, 0x02, 0x81, 0xFF, 0xA6, 0x00, 0x04, 0x02, 0x76, +0xFF, 0xCE, 0x02, 0x8A, 0x00, 0x28, 0x02, 0x8C, 0x00, 0x28, 0x02, 0x8E, 0x00, 0x1E, 0x00, 0x34, +0x00, 0x1E, 0xFF, 0xF1, 0x00, 0x1F, 0xFF, 0xF1, 0x00, 0x20, 0xFF, 0xF1, 0x00, 0x21, 0xFF, 0xF1, +0x00, 0x22, 0xFF, 0xF1, 0x00, 0x23, 0xFF, 0xF1, 0x00, 0x24, 0xFF, 0xF1, 0x00, 0x47, 0xFF, 0xF1, +0x00, 0x48, 0xFF, 0xF1, 0x00, 0x49, 0xFF, 0xF1, 0x00, 0x4A, 0xFF, 0xF1, 0x00, 0x4B, 0xFF, 0xF1, +0x00, 0x4C, 0xFF, 0xF1, 0x00, 0x4D, 0xFF, 0xF1, 0x00, 0x80, 0xFF, 0xF1, 0x00, 0x81, 0xFF, 0xF1, +0x00, 0x82, 0xFF, 0xF1, 0x00, 0x83, 0xFF, 0xF1, 0x00, 0x84, 0xFF, 0xF1, 0x00, 0x85, 0xFF, 0xF1, +0x00, 0x86, 0xFF, 0xF1, 0x00, 0x87, 0xFF, 0xF1, 0x00, 0x88, 0xFF, 0xF1, 0x00, 0x89, 0xFF, 0xF1, +0x00, 0x8A, 0xFF, 0xF1, 0x00, 0x8B, 0xFF, 0xF1, 0x00, 0x8C, 0xFF, 0xF1, 0x00, 0x8D, 0xFF, 0xF1, +0x00, 0x8E, 0xFF, 0xF1, 0x00, 0x8F, 0xFF, 0xF1, 0x00, 0x90, 0xFF, 0xF1, 0x00, 0x91, 0xFF, 0xF1, +0x00, 0x92, 0xFF, 0xF1, 0x00, 0x93, 0xFF, 0xF1, 0x00, 0x94, 0xFF, 0xF1, 0x00, 0x95, 0xFF, 0xF1, +0x00, 0x96, 0xFF, 0xF1, 0x00, 0x97, 0xFF, 0xF1, 0x00, 0x98, 0xFF, 0xF1, 0x00, 0x99, 0xFF, 0xF1, +0x00, 0x9A, 0xFF, 0xF1, 0x00, 0x9B, 0xFF, 0xF1, 0x00, 0x9C, 0xFF, 0xF1, 0x00, 0x9D, 0xFF, 0xF1, +0x00, 0x9E, 0xFF, 0xF1, 0x00, 0x9F, 0xFF, 0xF1, 0x00, 0xA0, 0xFF, 0xF1, 0x00, 0xA1, 0xFF, 0xF1, +0x00, 0xA2, 0xFF, 0xF1, 0x00, 0xA3, 0xFF, 0xF1, 0x00, 0xA6, 0xFF, 0xF1, 0x00, 0xBB, 0xFF, 0xF1, +0x00, 0x03, 0x00, 0x53, 0xFF, 0xF6, 0x02, 0x76, 0xFF, 0xD8, 0x02, 0x77, 0xFF, 0xCE, 0x00, 0x01, +0x02, 0x77, 0xFF, 0xD8, 0x00, 0x05, 0x00, 0x53, 0xFF, 0xF1, 0x02, 0x76, 0xFF, 0xD8, 0x02, 0x77, +0xFF, 0xCE, 0x02, 0x8A, 0xFF, 0xE2, 0x02, 0x8C, 0xFF, 0xE7, 0x00, 0x03, 0x02, 0x8A, 0x00, 0x14, +0x02, 0x98, 0x00, 0x28, 0x02, 0x9A, 0x00, 0x28, 0x00, 0x02, 0x02, 0x76, 0xFF, 0xD8, 0x02, 0x8A, +0xFF, 0xEC, 0x00, 0x07, 0x02, 0x74, 0xFF, 0xB5, 0x02, 0x77, 0xFF, 0x9C, 0x02, 0x7E, 0xFF, 0xCE, +0x02, 0x80, 0xFF, 0xCE, 0x02, 0x81, 0xFF, 0xCE, 0x02, 0x99, 0xFF, 0xC4, 0x02, 0x9A, 0xFF, 0xC4, +0x00, 0x03, 0x00, 0x28, 0x00, 0x00, 0x02, 0x20, 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x16, 0x00, 0x21, +0x00, 0x00, 0x73, 0x22, 0x35, 0x11, 0x34, 0x33, 0x21, 0x32, 0x15, 0x11, 0x14, 0x23, 0x25, 0x21, +0x32, 0x36, 0x27, 0x01, 0x26, 0x06, 0x15, 0x11, 0x14, 0x25, 0x16, 0x36, 0x35, 0x11, 0x34, 0x23, +0x21, 0x22, 0x06, 0x17, 0x4B, 0x23, 0x23, 0x01, 0xB2, 0x23, 0x23, 0xFE, 0x4E, 0x01, 0x9D, 0x03, +0x02, 0x02, 0xFE, 0x61, 0x02, 0x04, 0x01, 0xB6, 0x02, 0x04, 0x05, 0xFE, 0x62, 0x03, 0x02, 0x02, +0x23, 0x02, 0x76, 0x23, 0x23, 0xFD, 0x8A, 0x23, 0x1E, 0x04, 0x02, 0x02, 0x57, 0x03, 0x01, 0x04, +0xFD, 0xAA, 0x05, 0x23, 0x03, 0x01, 0x04, 0x02, 0x56, 0x05, 0x04, 0x02, 0x00, 0x02, 0x00, 0x19, +0x00, 0x00, 0x02, 0xA3, 0x02, 0xBC, 0x00, 0x11, 0x00, 0x15, 0x00, 0x00, 0x73, 0x01, 0x33, 0x01, +0x23, 0x03, 0x2E, 0x03, 0x27, 0x37, 0x0E, 0x03, 0x07, 0x03, 0x37, 0x37, 0x21, 0x17, 0x19, 0x01, +0x0F, 0x6E, 0x01, 0x0D, 0x73, 0xA0, 0x03, 0x11, 0x16, 0x12, 0x03, 0x17, 0x06, 0x11, 0x13, 0x12, +0x06, 0x9F, 0x0A, 0x28, 0x01, 0x3E, 0x2E, 0x02, 0xBC, 0xFD, 0x44, 0x01, 0xA6, 0x07, 0x36, 0x42, +0x37, 0x08, 0x01, 0x11, 0x34, 0x3A, 0x33, 0x11, 0xFE, 0x5E, 0xAE, 0x68, 0x68, 0x00, 0xFF, 0xFF, +0x00, 0x19, 0x00, 0x00, 0x02, 0xA3, 0x03, 0x98, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, +0x03, 0x29, 0x77, 0x00, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, 0x02, 0xA3, 0x03, 0x81, 0x06, 0x26, +0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x32, 0x64, 0x00, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, +0x02, 0xA3, 0x04, 0x2D, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x34, 0x64, 0x00, +0xFF, 0xFF, 0x00, 0x19, 0xFF, 0x32, 0x02, 0xA3, 0x03, 0x81, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, +0x00, 0x26, 0x03, 0x0E, 0x64, 0x00, 0x00, 0x06, 0x03, 0x32, 0x64, 0x00, 0xFF, 0xFF, 0x00, 0x19, +0x00, 0x00, 0x02, 0xA3, 0x04, 0x2D, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x33, +0x64, 0x00, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, 0x02, 0xA3, 0x04, 0x2F, 0x06, 0x26, 0x00, 0x01, +0x00, 0x00, 0x00, 0x06, 0x03, 0x36, 0x64, 0x00, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, 0x02, 0xA3, +0x04, 0x1B, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x35, 0x64, 0x00, 0xFF, 0xFF, +0x00, 0x19, 0x00, 0x00, 0x02, 0xA3, 0x03, 0x7D, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, +0x03, 0x31, 0x64, 0x00, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, 0x02, 0xA3, 0x03, 0x7B, 0x06, 0x26, +0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x2C, 0x63, 0x00, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, +0x02, 0xA3, 0x04, 0x16, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2E, 0x00, 0xA1, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x19, 0xFF, 0x32, 0x02, 0xA3, 0x03, 0x7B, 0x06, 0x26, 0x00, 0x01, +0x00, 0x00, 0x00, 0x26, 0x03, 0x0E, 0x64, 0x00, 0x00, 0x06, 0x03, 0x2C, 0x63, 0x00, 0xFF, 0xFF, +0x00, 0x19, 0x00, 0x00, 0x02, 0xA3, 0x04, 0x19, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, +0x03, 0x2D, 0x00, 0x80, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, 0x02, 0xA3, 0x04, 0x19, +0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x03, 0x30, 0x00, 0x94, 0x00, 0x00, 0xFF, 0xFF, +0x00, 0x19, 0x00, 0x00, 0x02, 0xA3, 0x04, 0x1B, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, +0x03, 0x2F, 0x63, 0x00, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, 0x02, 0xA3, 0x03, 0xA7, 0x06, 0x26, +0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x41, 0x30, 0x00, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, +0x02, 0xA3, 0x03, 0x79, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x23, 0x64, 0x00, +0xFF, 0xFF, 0x00, 0x19, 0xFF, 0x32, 0x02, 0xA3, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, +0x00, 0x06, 0x03, 0x0E, 0x64, 0x00, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, 0x02, 0xA3, 0x03, 0x98, +0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x28, 0x5A, 0x00, 0xFF, 0xFF, 0x00, 0x19, +0x00, 0x00, 0x02, 0xA3, 0x03, 0xBA, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x40, +0x63, 0x00, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, 0x02, 0xA3, 0x03, 0x81, 0x06, 0x26, 0x00, 0x01, +0x00, 0x00, 0x00, 0x06, 0x03, 0x42, 0x64, 0x00, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, 0x02, 0xA3, +0x03, 0x5E, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x3C, 0x63, 0x00, 0xFF, 0xFF, +0x00, 0x19, 0xFF, 0x38, 0x02, 0xB6, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, +0x03, 0x46, 0x01, 0x4F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, 0x02, 0xA3, 0x03, 0x7A, +0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x37, 0x63, 0x00, 0xFF, 0xFF, 0x00, 0x19, +0x00, 0x00, 0x02, 0xA3, 0x04, 0x38, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x03, 0x37, +0x63, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0x77, 0x00, 0xA0, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, +0x02, 0xA3, 0x03, 0x71, 0x06, 0x26, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06, 0x03, 0x38, 0x63, 0x00, +0x00, 0x01, 0x00, 0x05, 0x00, 0x00, 0x03, 0x7E, 0x02, 0xBC, 0x00, 0x13, 0x00, 0x00, 0x73, 0x01, +0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x35, 0x21, 0x37, 0x33, 0x11, +0x17, 0x01, 0x05, 0x01, 0xE8, 0x01, 0x91, 0xFE, 0xB8, 0x01, 0x1B, 0xFE, 0xE5, 0x01, 0x48, 0xFE, +0x53, 0xFE, 0xFA, 0x3F, 0xC7, 0x19, 0xFE, 0x88, 0x02, 0xBC, 0x5D, 0xCD, 0x5E, 0xD7, 0x5D, 0x99, +0x5C, 0x01, 0x39, 0x08, 0xFD, 0xDA, 0xFF, 0xFF, 0x00, 0x05, 0x00, 0x00, 0x03, 0x7E, 0x03, 0x98, +0x06, 0x26, 0x00, 0x1B, 0x00, 0x00, 0x00, 0x07, 0x03, 0x29, 0x01, 0x9E, 0x00, 0x00, 0x00, 0x03, +0x00, 0x62, 0x00, 0x00, 0x02, 0x79, 0x02, 0xBC, 0x00, 0x13, 0x00, 0x1E, 0x00, 0x28, 0x00, 0x00, +0x73, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x35, 0x1E, 0x02, 0x15, 0x14, 0x0E, +0x02, 0x23, 0x27, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, +0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x62, 0x01, 0x24, 0x43, 0x5C, 0x2F, 0x3F, 0x38, 0x2F, +0x46, 0x27, 0x1F, 0x3D, 0x56, 0x37, 0xC2, 0xBC, 0x29, 0x39, 0x1F, 0x21, 0x3C, 0x29, 0xB7, 0xB2, +0x1E, 0x2F, 0x1B, 0x3C, 0x38, 0xA6, 0x02, 0xBC, 0x28, 0x4F, 0x39, 0x39, 0x50, 0x0F, 0x14, 0x0A, +0x33, 0x4C, 0x31, 0x32, 0x4D, 0x34, 0x1B, 0x68, 0x18, 0x2F, 0x21, 0x1F, 0x2C, 0x17, 0x68, 0x18, +0x2A, 0x1B, 0x2D, 0x30, 0x00, 0x01, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0x83, 0x02, 0xC2, 0x00, 0x25, +0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, +0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, +0x0E, 0x02, 0x01, 0x7E, 0x49, 0x7A, 0x5A, 0x31, 0x35, 0x5E, 0x7C, 0x48, 0x33, 0x61, 0x4F, 0x19, +0x48, 0x1D, 0x3B, 0x3D, 0x1F, 0x31, 0x55, 0x3F, 0x24, 0x23, 0x40, 0x59, 0x36, 0x21, 0x40, 0x38, +0x17, 0x36, 0x17, 0x4F, 0x61, 0x0A, 0x34, 0x61, 0x84, 0x4F, 0x4B, 0x81, 0x62, 0x36, 0x1F, 0x37, +0x23, 0x4B, 0x1D, 0x27, 0x14, 0x25, 0x42, 0x5B, 0x36, 0x39, 0x5D, 0x42, 0x23, 0x12, 0x22, 0x17, +0x58, 0x1B, 0x2C, 0x19, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0x83, 0x03, 0x98, 0x06, 0x26, +0x00, 0x1E, 0x00, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0x9F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, +0xFF, 0xF6, 0x02, 0x83, 0x03, 0x7D, 0x06, 0x26, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x07, 0x03, 0x31, +0x00, 0x8C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0x0B, 0x02, 0x83, 0x02, 0xC2, 0x06, 0x26, +0x00, 0x1E, 0x00, 0x00, 0x00, 0x06, 0x03, 0x45, 0x7E, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0x0B, +0x02, 0x83, 0x03, 0x98, 0x06, 0x26, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x26, 0x03, 0x45, 0x7E, 0x00, +0x00, 0x07, 0x03, 0x29, 0x00, 0x9F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0x83, +0x03, 0x7B, 0x06, 0x26, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2C, 0x00, 0x8B, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0x83, 0x03, 0x79, 0x06, 0x26, 0x00, 0x1E, 0x00, 0x00, +0x00, 0x07, 0x03, 0x26, 0x00, 0x8C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x62, 0x00, 0x00, 0x02, 0xBC, +0x02, 0xBC, 0x00, 0x0C, 0x00, 0x1B, 0x00, 0x00, 0x73, 0x11, 0x21, 0x32, 0x1E, 0x02, 0x15, 0x14, +0x0E, 0x02, 0x23, 0x27, 0x27, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x23, 0x37, +0x62, 0x01, 0x12, 0x4B, 0x79, 0x56, 0x2E, 0x2E, 0x55, 0x7A, 0x4B, 0xA6, 0x03, 0xA4, 0x35, 0x53, +0x39, 0x1E, 0x1E, 0x3A, 0x52, 0x35, 0xA7, 0x06, 0x02, 0xBC, 0x32, 0x5E, 0x80, 0x4E, 0x4E, 0x81, +0x5D, 0x32, 0x5D, 0x0B, 0x22, 0x3F, 0x5C, 0x39, 0x39, 0x5B, 0x40, 0x22, 0x09, 0x00, 0xFF, 0xFF, +0x00, 0x62, 0x00, 0x00, 0x05, 0x1B, 0x02, 0xBC, 0x04, 0x26, 0x00, 0x25, 0x00, 0x00, 0x00, 0x07, +0x00, 0xEC, 0x02, 0xBF, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0x00, 0x00, 0x05, 0x1B, 0x03, 0x7D, +0x04, 0x26, 0x00, 0x25, 0x00, 0x00, 0x00, 0x27, 0x00, 0xEC, 0x02, 0xBF, 0x00, 0x00, 0x00, 0x07, +0x03, 0x31, 0x03, 0x0F, 0x00, 0x00, 0x00, 0x03, 0x00, 0x31, 0x00, 0x00, 0x02, 0xBC, 0x02, 0xBC, +0x00, 0x03, 0x00, 0x10, 0x00, 0x1F, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x03, 0x11, 0x21, 0x32, +0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x23, 0x27, 0x27, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, +0x02, 0x23, 0x23, 0x37, 0x31, 0x01, 0x0C, 0xDB, 0x01, 0x12, 0x4B, 0x79, 0x56, 0x2E, 0x2E, 0x55, +0x7A, 0x4B, 0xA6, 0x03, 0xA4, 0x35, 0x53, 0x39, 0x1E, 0x1E, 0x3A, 0x52, 0x35, 0xA7, 0x06, 0x01, +0x31, 0x5A, 0x5A, 0xFE, 0xCF, 0x02, 0xBC, 0x32, 0x5E, 0x80, 0x4E, 0x4E, 0x81, 0x5D, 0x32, 0x5D, +0x0B, 0x22, 0x3F, 0x5C, 0x39, 0x39, 0x5B, 0x40, 0x22, 0x09, 0xFF, 0xFF, 0x00, 0x62, 0x00, 0x00, +0x02, 0xBC, 0x03, 0x7D, 0x06, 0x26, 0x00, 0x25, 0x00, 0x00, 0x00, 0x06, 0x03, 0x31, 0x7C, 0x00, +0xFF, 0xFF, 0x00, 0x31, 0x00, 0x00, 0x02, 0xBC, 0x02, 0xBC, 0x06, 0x06, 0x00, 0x28, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x62, 0xFF, 0x32, 0x02, 0xBC, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x25, 0x00, 0x00, +0x00, 0x06, 0x03, 0x0E, 0x7C, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0xFF, 0x4E, 0x02, 0xBC, 0x02, 0xBC, +0x06, 0x26, 0x00, 0x25, 0x00, 0x00, 0x00, 0x06, 0x03, 0x14, 0x7B, 0x00, 0xFF, 0xFF, 0x00, 0x62, +0x00, 0x00, 0x04, 0xA2, 0x02, 0xBC, 0x04, 0x26, 0x00, 0x25, 0x00, 0x00, 0x00, 0x07, 0x01, 0xF2, +0x02, 0xEB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0x00, 0x00, 0x04, 0xA2, 0x02, 0xF1, 0x04, 0x26, +0x00, 0x25, 0x00, 0x00, 0x00, 0x27, 0x01, 0xF2, 0x02, 0xEB, 0x00, 0x00, 0x00, 0x07, 0x02, 0xFD, +0x02, 0xE3, 0x00, 0x00, 0x00, 0x02, 0x00, 0x62, 0x00, 0x00, 0x02, 0x1B, 0x02, 0xBC, 0x00, 0x07, +0x00, 0x0B, 0x00, 0x00, 0x73, 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, +0x62, 0x01, 0xB9, 0xFE, 0xB3, 0x01, 0x4D, 0xFE, 0x78, 0x01, 0x51, 0x02, 0xBC, 0x68, 0xFE, 0x14, +0x68, 0x01, 0x33, 0x68, 0x68, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0x00, 0x00, 0x02, 0x1B, 0x03, 0x98, +0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x29, 0x60, 0x00, 0xFF, 0xFF, 0x00, 0x62, +0x00, 0x00, 0x02, 0x1B, 0x03, 0x81, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x32, +0x4D, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0x00, 0x00, 0x02, 0x1B, 0x03, 0x7D, 0x06, 0x26, 0x00, 0x2F, +0x00, 0x00, 0x00, 0x06, 0x03, 0x31, 0x4D, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0xFF, 0x0B, 0x02, 0x1B, +0x03, 0x81, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x26, 0x03, 0x45, 0x39, 0x00, 0x00, 0x06, +0x03, 0x32, 0x4D, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0x00, 0x00, 0x02, 0x1B, 0x03, 0x7B, 0x06, 0x26, +0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x2C, 0x4C, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0x00, 0x00, +0x02, 0x5E, 0x04, 0x16, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2E, 0x00, 0x8A, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0xFF, 0x32, 0x02, 0x1B, 0x03, 0x7B, 0x06, 0x26, 0x00, 0x2F, +0x00, 0x00, 0x00, 0x26, 0x03, 0x0E, 0x39, 0x00, 0x00, 0x06, 0x03, 0x2C, 0x4C, 0x00, 0xFF, 0xFF, +0x00, 0x62, 0x00, 0x00, 0x02, 0x1C, 0x04, 0x19, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, +0x03, 0x2D, 0x69, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0x00, 0x00, 0x02, 0x45, 0x04, 0x19, 0x06, 0x26, +0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x30, 0x7D, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0x00, 0x00, +0x02, 0x1B, 0x04, 0x1B, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x2F, 0x4C, 0x00, +0xFF, 0xFF, 0x00, 0x4A, 0x00, 0x00, 0x02, 0x1B, 0x03, 0xA7, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, +0x00, 0x06, 0x03, 0x41, 0x19, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0x00, 0x00, 0x02, 0x1B, 0x03, 0x79, +0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x23, 0x4D, 0x00, 0xFF, 0xFF, 0x00, 0x62, +0x00, 0x00, 0x02, 0x1B, 0x03, 0x79, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x26, +0x4D, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0xFF, 0x32, 0x02, 0x1B, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x2F, +0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x39, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0x00, 0x00, 0x02, 0x1B, +0x03, 0x98, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x28, 0x43, 0x00, 0xFF, 0xFF, +0x00, 0x62, 0x00, 0x00, 0x02, 0x1B, 0x03, 0xBA, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, +0x03, 0x40, 0x4C, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0x00, 0x00, 0x02, 0x1B, 0x03, 0x81, 0x06, 0x26, +0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x42, 0x4D, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0x00, 0x00, +0x02, 0x1B, 0x03, 0x5E, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x3C, 0x4C, 0x00, +0xFF, 0xFF, 0x00, 0x62, 0x00, 0x00, 0x02, 0x1B, 0x04, 0x2E, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, +0x00, 0x26, 0x03, 0x3C, 0x4C, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0x60, 0x00, 0x96, 0xFF, 0xFF, +0x00, 0x62, 0x00, 0x00, 0x02, 0x1B, 0x04, 0x2E, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x26, +0x03, 0x3C, 0x4C, 0x00, 0x00, 0x07, 0x03, 0x28, 0x00, 0x43, 0x00, 0x96, 0xFF, 0xFF, 0x00, 0x62, +0xFF, 0x38, 0x02, 0x1B, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x07, 0x03, 0x46, +0x00, 0xA9, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0x00, 0x00, 0x02, 0x1B, 0x03, 0x71, 0x06, 0x26, +0x00, 0x2F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x38, 0x4C, 0x00, 0x00, 0x03, 0x00, 0x62, 0x00, 0x00, +0x02, 0x28, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, +0x03, 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x62, 0x6C, 0x3C, 0x01, 0x69, 0xFE, 0x97, 0x01, +0x96, 0x02, 0xBC, 0xFD, 0x44, 0x01, 0x2A, 0x68, 0x68, 0x01, 0x2A, 0x68, 0x68, 0x00, 0x00, 0x01, +0x00, 0x30, 0xFF, 0xF6, 0x02, 0xD3, 0x02, 0xC2, 0x00, 0x2F, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, +0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, +0x15, 0x14, 0x1E, 0x02, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x35, 0x17, 0x23, 0x35, 0x21, 0x1E, 0x02, +0x15, 0x14, 0x0E, 0x02, 0x01, 0x9B, 0x4C, 0x84, 0x64, 0x37, 0x37, 0x63, 0x84, 0x4C, 0x35, 0x65, +0x52, 0x1A, 0x46, 0x1E, 0x3F, 0x42, 0x21, 0x36, 0x5B, 0x45, 0x26, 0x28, 0x47, 0x5D, 0x34, 0x27, +0x46, 0x36, 0x1E, 0x0F, 0xD6, 0x01, 0x36, 0x02, 0x02, 0x01, 0x30, 0x55, 0x71, 0x0A, 0x37, 0x62, +0x83, 0x4C, 0x4B, 0x82, 0x61, 0x36, 0x1E, 0x36, 0x23, 0x49, 0x1D, 0x26, 0x14, 0x26, 0x44, 0x5B, +0x36, 0x34, 0x5D, 0x46, 0x28, 0x17, 0x2A, 0x37, 0x1F, 0x14, 0x0E, 0x6B, 0x0B, 0x15, 0x13, 0x09, +0x45, 0x71, 0x52, 0x2D, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xD3, 0x03, 0x81, 0x06, 0x26, +0x00, 0x47, 0x00, 0x00, 0x00, 0x07, 0x03, 0x32, 0x00, 0x99, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, +0xFF, 0xF6, 0x02, 0xD3, 0x03, 0x7D, 0x06, 0x26, 0x00, 0x47, 0x00, 0x00, 0x00, 0x07, 0x03, 0x31, +0x00, 0x99, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xD3, 0x03, 0x7B, 0x06, 0x26, +0x00, 0x47, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2C, 0x00, 0x98, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, +0xFF, 0x0D, 0x02, 0xD3, 0x02, 0xC2, 0x06, 0x26, 0x00, 0x47, 0x00, 0x00, 0x00, 0x07, 0x03, 0x44, +0x00, 0x85, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xD3, 0x03, 0x79, 0x06, 0x26, +0x00, 0x47, 0x00, 0x00, 0x00, 0x07, 0x03, 0x26, 0x00, 0x99, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, +0xFF, 0xF6, 0x02, 0xD3, 0x03, 0x5E, 0x06, 0x26, 0x00, 0x47, 0x00, 0x00, 0x00, 0x07, 0x03, 0x3C, +0x00, 0x98, 0x00, 0x00, 0x00, 0x03, 0x00, 0x62, 0x00, 0x00, 0x02, 0x97, 0x02, 0xBC, 0x00, 0x03, +0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x61, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x03, 0x35, +0x21, 0x15, 0x02, 0x2B, 0x6C, 0xFD, 0xCB, 0x6C, 0x3D, 0x01, 0xCA, 0x02, 0xBC, 0xFD, 0x44, 0x02, +0xBC, 0xFD, 0x44, 0x01, 0x29, 0x68, 0x68, 0x00, 0x00, 0x04, 0x00, 0x39, 0x00, 0x00, 0x03, 0x20, +0x02, 0xBC, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, 0x53, 0x35, 0x33, 0x17, +0x21, 0x37, 0x33, 0x15, 0x23, 0x27, 0x21, 0x07, 0x01, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, +0x03, 0x35, 0x21, 0x15, 0x39, 0x74, 0x2E, 0x01, 0x8A, 0x24, 0x97, 0x90, 0x1F, 0xFE, 0x60, 0x2E, +0x01, 0xB8, 0x6C, 0xFD, 0xCB, 0x6C, 0x3D, 0x01, 0xCA, 0x01, 0xD4, 0x68, 0x0A, 0x0A, 0x68, 0x0A, +0x0A, 0xFE, 0x2C, 0x02, 0xBC, 0xFD, 0x44, 0x02, 0xBC, 0xFD, 0x44, 0x01, 0x29, 0x68, 0x68, 0x00, +0xFF, 0xFF, 0x00, 0x62, 0xFF, 0x16, 0x02, 0x97, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x4E, 0x00, 0x00, +0x00, 0x07, 0x03, 0x13, 0x00, 0x83, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0x00, 0x00, 0x02, 0x97, +0x03, 0x7B, 0x06, 0x26, 0x00, 0x4E, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2C, 0x00, 0x82, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x62, 0xFF, 0x32, 0x02, 0x97, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x4E, 0x00, 0x00, +0x00, 0x07, 0x03, 0x0E, 0x00, 0x83, 0x00, 0x00, 0x00, 0x01, 0x00, 0x48, 0x00, 0x00, 0x01, 0x96, +0x02, 0xBC, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, +0x33, 0x15, 0x48, 0x71, 0x71, 0x01, 0x4E, 0x71, 0x71, 0x64, 0x01, 0xF4, 0x64, 0x64, 0xFE, 0x0C, +0x64, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0xF6, 0x04, 0x2E, 0x02, 0xBC, 0x04, 0x26, 0x00, 0x53, +0x00, 0x00, 0x00, 0x07, 0x00, 0x64, 0x01, 0xDE, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, +0x01, 0x96, 0x03, 0x98, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, 0x03, 0x29, 0x08, 0x00, +0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, 0x01, 0x96, 0x03, 0x81, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, +0x00, 0x06, 0x03, 0x32, 0xF5, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, 0x01, 0x96, 0x03, 0x7D, +0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, 0x03, 0x31, 0xF5, 0x00, 0xFF, 0xFF, 0x00, 0x48, +0x00, 0x00, 0x01, 0x96, 0x03, 0x7B, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, 0x03, 0x2C, +0xF4, 0x00, 0xFF, 0xFF, 0xFF, 0xF2, 0x00, 0x00, 0x01, 0x96, 0x03, 0xA7, 0x06, 0x26, 0x00, 0x53, +0x00, 0x00, 0x00, 0x06, 0x03, 0x41, 0xC1, 0x00, 0xFF, 0xFF, 0x00, 0x43, 0x00, 0x00, 0x01, 0x9B, +0x03, 0x79, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, 0x03, 0x23, 0xF5, 0x00, 0xFF, 0xFF, +0x00, 0x43, 0x00, 0x00, 0x01, 0x9B, 0x04, 0x38, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, +0x03, 0x24, 0xF5, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, 0x01, 0x96, 0x03, 0x79, 0x06, 0x26, +0x00, 0x53, 0x00, 0x00, 0x00, 0x06, 0x03, 0x26, 0xF5, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0x32, +0x01, 0x96, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0xF5, 0x00, +0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, 0x01, 0x96, 0x03, 0x98, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, +0x00, 0x06, 0x03, 0x28, 0xEB, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, 0x01, 0x96, 0x03, 0xBA, +0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, 0x03, 0x40, 0xF4, 0x00, 0xFF, 0xFF, 0x00, 0x48, +0x00, 0x00, 0x01, 0x96, 0x03, 0x81, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, 0x03, 0x42, +0xF5, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, 0x01, 0x96, 0x03, 0x5E, 0x06, 0x26, 0x00, 0x53, +0x00, 0x00, 0x00, 0x06, 0x03, 0x3C, 0xF4, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0x38, 0x01, 0x96, +0x02, 0xBC, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, 0x03, 0x46, 0x03, 0x00, 0xFF, 0xFF, +0x00, 0x40, 0x00, 0x00, 0x01, 0x9D, 0x03, 0x71, 0x06, 0x26, 0x00, 0x53, 0x00, 0x00, 0x00, 0x06, +0x03, 0x38, 0xF4, 0x00, 0x00, 0x01, 0x00, 0x32, 0xFF, 0xF6, 0x02, 0x50, 0x02, 0xBC, 0x00, 0x1A, +0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x27, 0x37, 0x1E, 0x03, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, +0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x14, 0x0E, 0x02, 0x01, 0x00, 0x22, 0x3E, 0x35, 0x2A, 0x0F, +0x44, 0x15, 0x23, 0x20, 0x20, 0x12, 0x24, 0x36, 0x1E, 0x80, 0x01, 0x58, 0x6C, 0x21, 0x3D, 0x53, +0x0A, 0x12, 0x22, 0x2F, 0x1C, 0x47, 0x1E, 0x24, 0x14, 0x07, 0x21, 0x3A, 0x25, 0x01, 0x79, 0x64, +0x64, 0xFE, 0x7D, 0x30, 0x51, 0x3C, 0x22, 0x00, 0xFF, 0xFF, 0x00, 0x32, 0xFF, 0xF6, 0x02, 0x50, +0x03, 0x7B, 0x06, 0x26, 0x00, 0x64, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2C, 0x00, 0xAF, 0x00, 0x00, +0x00, 0x03, 0x00, 0x62, 0x00, 0x00, 0x02, 0xB9, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, +0x00, 0x00, 0x77, 0x27, 0x01, 0x33, 0x01, 0x11, 0x33, 0x11, 0x21, 0x01, 0x37, 0x01, 0xBC, 0x06, +0x01, 0x6F, 0x8E, 0xFD, 0xAF, 0x6C, 0x01, 0x64, 0xFE, 0xF4, 0x50, 0x01, 0x43, 0xD4, 0x79, 0x01, +0x6F, 0xFD, 0x44, 0x02, 0xBC, 0xFD, 0x44, 0x01, 0x66, 0x45, 0xFE, 0x55, 0xFF, 0xFF, 0x00, 0x62, +0xFF, 0x0D, 0x02, 0xB9, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x66, 0x00, 0x00, 0x00, 0x06, 0x03, 0x44, +0x74, 0x00, 0x00, 0x01, 0x00, 0x62, 0x00, 0x00, 0x02, 0x16, 0x02, 0xBC, 0x00, 0x05, 0x00, 0x00, +0x73, 0x11, 0x33, 0x11, 0x21, 0x15, 0x62, 0x6C, 0x01, 0x48, 0x02, 0xBC, 0xFD, 0xAC, 0x68, 0x00, +0xFF, 0xFF, 0x00, 0x62, 0xFF, 0xF6, 0x04, 0xA7, 0x02, 0xBC, 0x04, 0x26, 0x00, 0x68, 0x00, 0x00, +0x00, 0x07, 0x00, 0x64, 0x02, 0x57, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x39, 0x00, 0x00, 0x02, 0x16, +0x03, 0x98, 0x06, 0x26, 0x00, 0x68, 0x00, 0x00, 0x00, 0x06, 0x03, 0x29, 0xB2, 0x00, 0xFF, 0xFF, +0x00, 0x62, 0x00, 0x00, 0x02, 0x16, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x68, 0x00, 0x00, 0x00, 0x07, +0x02, 0xFB, 0x00, 0x89, 0x00, 0x0D, 0xFF, 0xFF, 0x00, 0x62, 0xFF, 0x0D, 0x02, 0x16, 0x02, 0xBC, +0x06, 0x26, 0x00, 0x68, 0x00, 0x00, 0x00, 0x06, 0x03, 0x44, 0x32, 0x00, 0xFF, 0xFF, 0x00, 0x62, +0x00, 0x00, 0x02, 0x16, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x68, 0x00, 0x00, 0x00, 0x07, 0x02, 0x69, +0x01, 0x50, 0x01, 0x36, 0xFF, 0xFF, 0x00, 0x62, 0xFF, 0x32, 0x02, 0x16, 0x02, 0xBC, 0x06, 0x26, +0x00, 0x68, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x32, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0xFF, 0x3B, +0x03, 0x28, 0x03, 0x03, 0x04, 0x26, 0x00, 0x68, 0x00, 0x00, 0x00, 0x07, 0x01, 0x69, 0x02, 0x57, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0xFF, 0x4E, 0x02, 0x16, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x68, +0x00, 0x00, 0x00, 0x06, 0x03, 0x14, 0x31, 0x00, 0x00, 0x02, 0x00, 0x28, 0x00, 0x00, 0x02, 0x3D, +0x02, 0xBC, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x53, 0x27, 0x25, 0x17, 0x03, 0x11, 0x33, 0x11, +0x21, 0x15, 0x45, 0x1D, 0x01, 0x23, 0x20, 0xE2, 0x6C, 0x01, 0x48, 0x01, 0x00, 0x48, 0x83, 0x4D, +0xFE, 0x82, 0x02, 0xBC, 0xFD, 0xAC, 0x68, 0x00, 0x00, 0x01, 0x00, 0x62, 0x00, 0x00, 0x02, 0xFE, +0x02, 0xBC, 0x00, 0x15, 0x00, 0x00, 0x73, 0x11, 0x33, 0x13, 0x27, 0x01, 0x33, 0x11, 0x23, 0x11, +0x34, 0x36, 0x37, 0x17, 0x03, 0x23, 0x03, 0x37, 0x16, 0x16, 0x15, 0x11, 0x62, 0x6A, 0xFF, 0x33, +0x01, 0x02, 0x64, 0x6C, 0x09, 0x0B, 0x0E, 0xE5, 0x42, 0xDE, 0x0B, 0x0B, 0x09, 0x02, 0xBC, 0xFE, +0x61, 0x01, 0x01, 0x9E, 0xFD, 0x44, 0x01, 0x1F, 0x5A, 0x90, 0x47, 0x25, 0xFE, 0x9E, 0x01, 0x5E, +0x29, 0x43, 0x8D, 0x61, 0xFE, 0xE1, 0xFF, 0xFF, 0x00, 0x62, 0xFF, 0x32, 0x02, 0xFE, 0x02, 0xBC, +0x06, 0x26, 0x00, 0x72, 0x00, 0x00, 0x00, 0x07, 0x03, 0x0E, 0x00, 0xB6, 0x00, 0x00, 0x00, 0x01, +0x00, 0x62, 0x00, 0x00, 0x02, 0xB7, 0x02, 0xBC, 0x00, 0x17, 0x00, 0x00, 0x73, 0x11, 0x33, 0x01, +0x07, 0x2E, 0x04, 0x35, 0x35, 0x33, 0x11, 0x23, 0x01, 0x37, 0x1E, 0x04, 0x15, 0x11, 0x62, 0x61, +0x01, 0xAC, 0x10, 0x04, 0x06, 0x05, 0x03, 0x02, 0x6C, 0x63, 0xFE, 0x5B, 0x0B, 0x05, 0x07, 0x05, +0x02, 0x01, 0x02, 0xBC, 0xFD, 0xC3, 0x09, 0x19, 0x3B, 0x43, 0x4B, 0x52, 0x2C, 0xE6, 0xFD, 0x44, +0x02, 0x28, 0x0E, 0x3D, 0x55, 0x3B, 0x25, 0x18, 0x09, 0xFE, 0xDD, 0x00, 0xFF, 0xFF, 0x00, 0x62, +0xFF, 0xF6, 0x05, 0x69, 0x02, 0xBC, 0x04, 0x26, 0x00, 0x74, 0x00, 0x00, 0x00, 0x07, 0x00, 0x64, +0x03, 0x19, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0x00, 0x00, 0x02, 0xB7, 0x03, 0x98, 0x06, 0x26, +0x00, 0x74, 0x00, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0xA6, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x62, +0x00, 0x00, 0x02, 0xB7, 0x03, 0x7D, 0x06, 0x26, 0x00, 0x74, 0x00, 0x00, 0x00, 0x07, 0x03, 0x31, +0x00, 0x93, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0xFF, 0x0D, 0x02, 0xB7, 0x02, 0xBC, 0x06, 0x26, +0x00, 0x74, 0x00, 0x00, 0x00, 0x07, 0x03, 0x44, 0x00, 0x93, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x62, +0x00, 0x00, 0x02, 0xB7, 0x03, 0x79, 0x06, 0x26, 0x00, 0x74, 0x00, 0x00, 0x00, 0x07, 0x03, 0x26, +0x00, 0x93, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0xFF, 0x32, 0x02, 0xB7, 0x02, 0xBC, 0x06, 0x26, +0x00, 0x74, 0x00, 0x00, 0x00, 0x07, 0x03, 0x0E, 0x00, 0x93, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xDE, +0xFF, 0x3B, 0x02, 0xA7, 0x02, 0xBC, 0x00, 0x1D, 0x00, 0x00, 0x57, 0x27, 0x32, 0x36, 0x35, 0x11, +0x33, 0x01, 0x07, 0x2E, 0x03, 0x35, 0x35, 0x33, 0x11, 0x23, 0x01, 0x37, 0x1E, 0x04, 0x15, 0x11, +0x14, 0x06, 0x06, 0x05, 0x27, 0x3A, 0x3A, 0x61, 0x01, 0xAC, 0x10, 0x05, 0x07, 0x05, 0x03, 0x6C, +0x63, 0xFE, 0x5B, 0x0B, 0x03, 0x06, 0x05, 0x04, 0x02, 0x2E, 0x54, 0xC5, 0x4F, 0x3C, 0x3B, 0x02, +0xBB, 0xFD, 0xC3, 0x09, 0x1F, 0x4C, 0x5A, 0x64, 0x37, 0xE6, 0xFD, 0x44, 0x02, 0x28, 0x0E, 0x21, +0x42, 0x3E, 0x37, 0x2C, 0x0F, 0xFE, 0xC5, 0x34, 0x4E, 0x2B, 0xFF, 0xFF, 0x00, 0x62, 0xFF, 0x3B, +0x03, 0xEA, 0x03, 0x03, 0x04, 0x26, 0x00, 0x74, 0x00, 0x00, 0x00, 0x07, 0x01, 0x69, 0x03, 0x19, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0xFF, 0x4E, 0x02, 0xB7, 0x02, 0xBC, 0x06, 0x26, 0x00, 0x74, +0x00, 0x00, 0x00, 0x07, 0x03, 0x14, 0x00, 0x92, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0x00, 0x00, +0x02, 0xB7, 0x03, 0x71, 0x06, 0x26, 0x00, 0x74, 0x00, 0x00, 0x00, 0x07, 0x03, 0x38, 0x00, 0x92, +0x00, 0x00, 0x00, 0x01, 0x00, 0x62, 0xFF, 0x3B, 0x02, 0xB7, 0x02, 0xBC, 0x00, 0x21, 0x00, 0x00, +0x45, 0x27, 0x32, 0x3E, 0x02, 0x35, 0x35, 0x17, 0x01, 0x37, 0x1E, 0x04, 0x15, 0x11, 0x23, 0x11, +0x33, 0x01, 0x07, 0x2E, 0x03, 0x35, 0x35, 0x33, 0x11, 0x14, 0x06, 0x06, 0x01, 0xFE, 0x27, 0x1D, +0x2B, 0x1D, 0x0F, 0x09, 0xFE, 0x5B, 0x0B, 0x03, 0x06, 0x05, 0x04, 0x02, 0x6C, 0x61, 0x01, 0xAC, +0x10, 0x05, 0x07, 0x05, 0x03, 0x6C, 0x2E, 0x54, 0xC5, 0x4F, 0x0F, 0x1E, 0x2C, 0x1E, 0x4B, 0x4C, +0x02, 0x28, 0x0E, 0x21, 0x42, 0x3E, 0x37, 0x2C, 0x0F, 0xFE, 0xDD, 0x02, 0xBC, 0xFD, 0xC3, 0x09, +0x1F, 0x4C, 0x5A, 0x64, 0x37, 0xE6, 0xFD, 0x2C, 0x34, 0x4E, 0x2B, 0x00, 0x00, 0x02, 0x00, 0x30, +0xFF, 0xF6, 0x02, 0xDE, 0x02, 0xC6, 0x00, 0x13, 0x00, 0x27, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, +0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x27, 0x32, 0x3E, 0x02, +0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x01, 0x87, 0x4A, 0x7D, +0x5D, 0x33, 0x33, 0x5D, 0x7D, 0x4A, 0x4A, 0x7D, 0x5D, 0x33, 0x33, 0x5D, 0x7D, 0x4A, 0x33, 0x55, +0x3E, 0x23, 0x23, 0x3E, 0x55, 0x33, 0x33, 0x55, 0x3F, 0x22, 0x22, 0x3F, 0x55, 0x0A, 0x36, 0x61, +0x83, 0x4E, 0x4E, 0x83, 0x61, 0x36, 0x36, 0x62, 0x83, 0x4D, 0x4D, 0x83, 0x62, 0x36, 0x69, 0x26, +0x45, 0x5D, 0x37, 0x37, 0x5D, 0x45, 0x26, 0x26, 0x44, 0x5D, 0x38, 0x37, 0x5E, 0x44, 0x26, 0x00, +0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, 0x03, 0x98, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, +0x00, 0x07, 0x03, 0x29, 0x00, 0xA0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, +0x03, 0x81, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x32, 0x00, 0x8D, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, 0x03, 0x7D, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, +0x00, 0x07, 0x03, 0x31, 0x00, 0x8D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, +0x03, 0x7B, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2C, 0x00, 0x8C, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, 0x04, 0x16, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, +0x00, 0x07, 0x03, 0x2E, 0x00, 0xCA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0x32, 0x02, 0xDE, +0x03, 0x7B, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x27, 0x03, 0x0E, 0x00, 0x8D, 0x00, 0x00, +0x00, 0x07, 0x03, 0x2C, 0x00, 0x8C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, +0x04, 0x19, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2D, 0x00, 0xA9, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, 0x04, 0x19, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, +0x00, 0x07, 0x03, 0x30, 0x00, 0xBD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, +0x04, 0x1B, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2F, 0x00, 0x8C, 0x00, 0x00, +0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, 0x03, 0xA7, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, +0x00, 0x06, 0x03, 0x41, 0x59, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, 0x03, 0x79, +0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x23, 0x00, 0x8D, 0x00, 0x00, 0xFF, 0xFF, +0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, 0x03, 0xF4, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x27, +0x03, 0x23, 0x00, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x03, 0x3C, 0x00, 0x8C, 0x00, 0x96, 0xFF, 0xFF, +0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, 0x03, 0xF4, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x27, +0x03, 0x26, 0x00, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x03, 0x3C, 0x00, 0x8C, 0x00, 0x96, 0xFF, 0xFF, +0x00, 0x30, 0xFF, 0x32, 0x02, 0xDE, 0x02, 0xC6, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x07, +0x03, 0x0E, 0x00, 0x8D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, 0x03, 0x98, +0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x28, 0x00, 0x83, 0x00, 0x00, 0xFF, 0xFF, +0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, 0x03, 0xBA, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x07, +0x03, 0x40, 0x00, 0x8C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, 0x03, 0x2E, +0x00, 0x23, 0x00, 0x37, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, +0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x33, 0x14, 0x0E, 0x02, 0x07, 0x37, 0x1E, +0x02, 0x15, 0x14, 0x0E, 0x02, 0x27, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, 0x0E, +0x02, 0x15, 0x14, 0x1E, 0x02, 0x01, 0x87, 0x4A, 0x7D, 0x5D, 0x33, 0x33, 0x5D, 0x7D, 0x4A, 0x19, +0x27, 0x10, 0x0D, 0x17, 0x0C, 0x1E, 0x28, 0x13, 0x5C, 0x0F, 0x1E, 0x30, 0x21, 0x07, 0x2F, 0x45, +0x25, 0x33, 0x5D, 0x7D, 0x4A, 0x33, 0x55, 0x3E, 0x23, 0x23, 0x3E, 0x55, 0x33, 0x33, 0x55, 0x3F, +0x22, 0x22, 0x3F, 0x55, 0x0A, 0x36, 0x61, 0x83, 0x4E, 0x4E, 0x83, 0x61, 0x36, 0x05, 0x04, 0x03, +0x03, 0x1B, 0x35, 0x27, 0x26, 0x3F, 0x30, 0x1E, 0x05, 0x18, 0x1F, 0x5D, 0x72, 0x42, 0x4D, 0x83, +0x62, 0x36, 0x69, 0x26, 0x45, 0x5D, 0x37, 0x37, 0x5D, 0x45, 0x26, 0x26, 0x44, 0x5D, 0x38, 0x37, +0x5E, 0x44, 0x26, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, 0x03, 0x98, 0x06, 0x26, +0x00, 0x91, 0x00, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0xA0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, +0xFF, 0x32, 0x02, 0xDE, 0x03, 0x2E, 0x06, 0x26, 0x00, 0x91, 0x00, 0x00, 0x00, 0x07, 0x03, 0x0E, +0x00, 0x8D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, 0x03, 0x98, 0x06, 0x26, +0x00, 0x91, 0x00, 0x00, 0x00, 0x07, 0x03, 0x28, 0x00, 0x83, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, +0xFF, 0xF6, 0x02, 0xDE, 0x03, 0xBA, 0x06, 0x26, 0x00, 0x91, 0x00, 0x00, 0x00, 0x07, 0x03, 0x40, +0x00, 0x8C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, 0x03, 0x71, 0x06, 0x26, +0x00, 0x91, 0x00, 0x00, 0x00, 0x07, 0x03, 0x38, 0x00, 0x8C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, +0xFF, 0xF6, 0x02, 0xDE, 0x03, 0xA7, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2B, +0x00, 0xC3, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, 0x03, 0x81, 0x06, 0x26, +0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x42, 0x00, 0x8D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, +0xFF, 0xF6, 0x02, 0xDE, 0x03, 0x5E, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x3C, +0x00, 0x8C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, 0x04, 0x2E, 0x06, 0x26, +0x00, 0x80, 0x00, 0x00, 0x00, 0x27, 0x03, 0x3C, 0x00, 0x8C, 0x00, 0x00, 0x00, 0x07, 0x03, 0x29, +0x00, 0xA0, 0x00, 0x96, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, 0x04, 0x2E, 0x06, 0x26, +0x00, 0x80, 0x00, 0x00, 0x00, 0x27, 0x03, 0x3C, 0x00, 0x8C, 0x00, 0x00, 0x00, 0x07, 0x03, 0x28, +0x00, 0x83, 0x00, 0x96, 0x00, 0x03, 0x00, 0x30, 0xFF, 0x38, 0x02, 0xDE, 0x02, 0xC6, 0x00, 0x17, +0x00, 0x2B, 0x00, 0x3F, 0x00, 0x00, 0x45, 0x22, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x37, 0x17, 0x0E, +0x03, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x27, 0x22, 0x2E, 0x02, 0x35, +0x34, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x27, 0x32, 0x3E, 0x02, 0x35, +0x34, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x01, 0xD8, 0x2B, 0x42, 0x1B, +0x2F, 0x3D, 0x22, 0x26, 0x1D, 0x2B, 0x1D, 0x0F, 0x12, 0x10, 0x0B, 0x12, 0x08, 0x38, 0x0A, 0x3F, +0x75, 0x4A, 0x7D, 0x5D, 0x33, 0x33, 0x5D, 0x7D, 0x4A, 0x4A, 0x7D, 0x5D, 0x33, 0x33, 0x5D, 0x7D, +0x4A, 0x33, 0x55, 0x3E, 0x23, 0x23, 0x3E, 0x55, 0x33, 0x33, 0x55, 0x3F, 0x22, 0x22, 0x3F, 0x55, +0xC8, 0x35, 0x32, 0x1E, 0x34, 0x2C, 0x26, 0x12, 0x2D, 0x10, 0x20, 0x1F, 0x1E, 0x0F, 0x12, 0x15, +0x0D, 0x0C, 0x28, 0x19, 0x25, 0xBE, 0x36, 0x61, 0x83, 0x4E, 0x4E, 0x83, 0x61, 0x36, 0x36, 0x62, +0x83, 0x4D, 0x4D, 0x83, 0x62, 0x36, 0x69, 0x26, 0x45, 0x5D, 0x37, 0x37, 0x5D, 0x45, 0x26, 0x26, +0x44, 0x5D, 0x38, 0x37, 0x5E, 0x44, 0x26, 0x00, 0x00, 0x03, 0x00, 0x2F, 0xFF, 0xDF, 0x02, 0xDD, +0x02, 0xE5, 0x00, 0x03, 0x00, 0x17, 0x00, 0x2B, 0x00, 0x00, 0x57, 0x27, 0x01, 0x17, 0x01, 0x22, +0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x27, 0x32, +0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x7B, 0x3F, +0x02, 0x4D, 0x44, 0xFE, 0xB9, 0x4A, 0x7D, 0x5D, 0x33, 0x33, 0x5D, 0x7D, 0x4A, 0x4A, 0x7D, 0x5D, +0x33, 0x33, 0x5D, 0x7D, 0x4A, 0x33, 0x55, 0x3E, 0x23, 0x23, 0x3E, 0x55, 0x33, 0x33, 0x55, 0x3F, +0x22, 0x22, 0x3F, 0x55, 0x21, 0x35, 0x02, 0xD1, 0x2F, 0xFD, 0x40, 0x36, 0x61, 0x83, 0x4E, 0x4E, +0x83, 0x61, 0x36, 0x36, 0x62, 0x83, 0x4D, 0x4D, 0x83, 0x62, 0x36, 0x69, 0x26, 0x45, 0x5D, 0x37, +0x37, 0x5D, 0x45, 0x26, 0x26, 0x44, 0x5D, 0x38, 0x37, 0x5E, 0x44, 0x26, 0xFF, 0xFF, 0x00, 0x2F, +0xFF, 0xDF, 0x02, 0xDD, 0x03, 0x98, 0x06, 0x26, 0x00, 0x9D, 0x00, 0x00, 0x00, 0x07, 0x03, 0x29, +0x00, 0x9A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDE, 0x03, 0x71, 0x06, 0x26, +0x00, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x38, 0x00, 0x8C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, +0xFF, 0xF6, 0x02, 0xDE, 0x04, 0x2E, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x27, 0x03, 0x38, +0x00, 0x8C, 0x00, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0xA0, 0x00, 0x96, 0xFF, 0xFF, 0x00, 0x30, +0xFF, 0xF6, 0x02, 0xDE, 0x04, 0x0F, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x27, 0x03, 0x38, +0x00, 0x8C, 0x00, 0x00, 0x00, 0x07, 0x03, 0x23, 0x00, 0x8D, 0x00, 0x96, 0xFF, 0xFF, 0x00, 0x30, +0xFF, 0xF6, 0x02, 0xDE, 0x03, 0xF4, 0x06, 0x26, 0x00, 0x80, 0x00, 0x00, 0x00, 0x27, 0x03, 0x38, +0x00, 0x8C, 0x00, 0x00, 0x00, 0x07, 0x03, 0x3C, 0x00, 0x8C, 0x00, 0x96, 0x00, 0x02, 0x00, 0x30, +0x00, 0x00, 0x03, 0xB8, 0x02, 0xBC, 0x00, 0x14, 0x00, 0x21, 0x00, 0x00, 0x61, 0x22, 0x2E, 0x02, +0x35, 0x34, 0x3E, 0x02, 0x33, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x21, 0x15, 0x01, +0x14, 0x1E, 0x02, 0x33, 0x33, 0x11, 0x23, 0x22, 0x0E, 0x02, 0x01, 0x77, 0x4B, 0x79, 0x55, 0x2E, +0x31, 0x5B, 0x80, 0x4F, 0x02, 0x2D, 0xFE, 0xB3, 0x01, 0x16, 0xFE, 0xEA, 0x01, 0x4D, 0xFC, 0xE6, +0x1D, 0x39, 0x52, 0x34, 0x85, 0x71, 0x39, 0x59, 0x3E, 0x20, 0x32, 0x5D, 0x81, 0x4E, 0x4E, 0x80, +0x5E, 0x32, 0x68, 0xB9, 0x68, 0xCB, 0x68, 0x01, 0x5E, 0x39, 0x5C, 0x3F, 0x22, 0x01, 0xEC, 0x22, +0x40, 0x5B, 0x00, 0x02, 0x00, 0x62, 0x00, 0x00, 0x02, 0x4D, 0x02, 0xBC, 0x00, 0x0C, 0x00, 0x17, +0x00, 0x00, 0x73, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x11, 0x11, +0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x62, 0x01, 0x1D, 0x39, 0x5D, 0x38, +0x38, 0x5D, 0x39, 0xB1, 0xAF, 0x1B, 0x2C, 0x1B, 0x1B, 0x2C, 0x1B, 0xAF, 0x02, 0xBC, 0x39, 0x62, +0x3C, 0x3C, 0x62, 0x3B, 0xFE, 0xF4, 0x01, 0x74, 0x1F, 0x33, 0x1F, 0x1F, 0x32, 0x1E, 0x00, 0x02, +0x00, 0x62, 0x00, 0x00, 0x02, 0x4D, 0x02, 0xBC, 0x00, 0x0E, 0x00, 0x19, 0x00, 0x00, 0x73, 0x11, +0x33, 0x15, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x15, 0x35, 0x33, 0x32, +0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x62, 0x6C, 0xB1, 0x39, 0x5D, 0x38, 0x38, 0x5D, +0x39, 0xB1, 0xAF, 0x1B, 0x2C, 0x1B, 0x1B, 0x2C, 0x1B, 0xAF, 0x02, 0xBC, 0x7F, 0x39, 0x62, 0x3C, +0x3C, 0x63, 0x3A, 0x8D, 0xF5, 0x1F, 0x33, 0x1F, 0x1F, 0x32, 0x1E, 0x00, 0x00, 0x03, 0x00, 0x30, +0xFF, 0x92, 0x02, 0xDE, 0x02, 0xC6, 0x00, 0x03, 0x00, 0x17, 0x00, 0x2B, 0x00, 0x00, 0x45, 0x01, +0x37, 0x01, 0x25, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, +0x0E, 0x02, 0x27, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, +0x1E, 0x02, 0x02, 0x65, 0xFE, 0xF7, 0x59, 0x01, 0x06, 0xFE, 0xCC, 0x4A, 0x7D, 0x5D, 0x33, 0x33, +0x5D, 0x7D, 0x4A, 0x4A, 0x7D, 0x5D, 0x33, 0x33, 0x5D, 0x7D, 0x4A, 0x33, 0x55, 0x3E, 0x23, 0x23, +0x3E, 0x55, 0x33, 0x33, 0x55, 0x3F, 0x22, 0x22, 0x3F, 0x55, 0x6E, 0x01, 0x5B, 0x3B, 0xFE, 0xA8, +0x26, 0x36, 0x61, 0x83, 0x4E, 0x4E, 0x83, 0x61, 0x36, 0x36, 0x62, 0x83, 0x4D, 0x4D, 0x83, 0x62, +0x36, 0x69, 0x26, 0x45, 0x5D, 0x37, 0x37, 0x5D, 0x45, 0x26, 0x26, 0x44, 0x5D, 0x38, 0x37, 0x5E, +0x44, 0x26, 0x00, 0x03, 0x00, 0x62, 0xFF, 0xFF, 0x02, 0x85, 0x02, 0xBC, 0x00, 0x0C, 0x00, 0x10, +0x00, 0x1B, 0x00, 0x00, 0x73, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, +0x11, 0x21, 0x03, 0x37, 0x13, 0x01, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, +0x62, 0x01, 0x2A, 0x3C, 0x65, 0x3C, 0x3C, 0x64, 0x3D, 0xBE, 0x01, 0x34, 0xB2, 0x6F, 0xC6, 0xFE, +0x49, 0xC8, 0x1D, 0x2E, 0x1A, 0x21, 0x3B, 0x25, 0xAC, 0x02, 0xBC, 0x3B, 0x65, 0x3F, 0x39, 0x62, +0x3B, 0xFE, 0xF9, 0x01, 0x3C, 0x19, 0xFE, 0xAA, 0x01, 0x70, 0x1D, 0x33, 0x1F, 0x23, 0x35, 0x1E, +0xFF, 0xFF, 0x00, 0x62, 0xFF, 0xFF, 0x02, 0x85, 0x03, 0x98, 0x06, 0x26, 0x00, 0xA7, 0x00, 0x00, +0x00, 0x06, 0x03, 0x29, 0x57, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0xFF, 0xFF, 0x02, 0x85, 0x03, 0x7D, +0x06, 0x26, 0x00, 0xA7, 0x00, 0x00, 0x00, 0x06, 0x03, 0x31, 0x44, 0x00, 0xFF, 0xFF, 0x00, 0x62, +0xFF, 0x0D, 0x02, 0x85, 0x02, 0xBC, 0x06, 0x26, 0x00, 0xA7, 0x00, 0x00, 0x00, 0x06, 0x03, 0x44, +0x62, 0x00, 0xFF, 0xFF, 0x00, 0x41, 0xFF, 0xFF, 0x02, 0x85, 0x03, 0xA7, 0x06, 0x26, 0x00, 0xA7, +0x00, 0x00, 0x00, 0x06, 0x03, 0x41, 0x10, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0xFF, 0x32, 0x02, 0x85, +0x02, 0xBC, 0x06, 0x26, 0x00, 0xA7, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x62, 0x00, 0xFF, 0xFF, +0x00, 0x62, 0xFF, 0xFF, 0x02, 0x85, 0x03, 0x81, 0x06, 0x26, 0x00, 0xA7, 0x00, 0x00, 0x00, 0x06, +0x03, 0x42, 0x44, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0xFF, 0x4E, 0x02, 0x85, 0x02, 0xBC, 0x06, 0x26, +0x00, 0xA7, 0x00, 0x00, 0x00, 0x06, 0x03, 0x14, 0x61, 0x00, 0x00, 0x01, 0x00, 0x32, 0xFF, 0xF6, +0x02, 0x39, 0x02, 0xC6, 0x00, 0x36, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, 0x37, 0x16, 0x16, +0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x2E, 0x03, 0x27, 0x2E, 0x03, 0x35, 0x34, 0x3E, 0x02, 0x33, +0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1E, 0x02, 0x17, +0x1E, 0x03, 0x15, 0x14, 0x06, 0x06, 0x01, 0x3A, 0x39, 0x61, 0x4F, 0x1F, 0x4A, 0x31, 0x5A, 0x3E, +0x26, 0x3E, 0x24, 0x0C, 0x19, 0x27, 0x34, 0x22, 0x36, 0x50, 0x36, 0x1A, 0x25, 0x41, 0x58, 0x33, +0x36, 0x5A, 0x46, 0x17, 0x4C, 0x14, 0x32, 0x3C, 0x22, 0x27, 0x3A, 0x21, 0x10, 0x21, 0x38, 0x27, +0x37, 0x56, 0x3C, 0x1F, 0x3E, 0x72, 0x0A, 0x1E, 0x3D, 0x2D, 0x55, 0x46, 0x36, 0x18, 0x2A, 0x1B, +0x12, 0x20, 0x1A, 0x16, 0x11, 0x06, 0x0B, 0x24, 0x36, 0x45, 0x2B, 0x2A, 0x48, 0x35, 0x1D, 0x1C, +0x37, 0x28, 0x4B, 0x21, 0x2D, 0x17, 0x18, 0x2B, 0x1D, 0x15, 0x23, 0x1B, 0x15, 0x08, 0x0C, 0x25, +0x32, 0x3E, 0x24, 0x43, 0x62, 0x35, 0xFF, 0xFF, 0x00, 0x32, 0xFF, 0xF6, 0x02, 0x39, 0x03, 0x98, +0x06, 0x26, 0x00, 0xAF, 0x00, 0x00, 0x00, 0x06, 0x03, 0x29, 0x65, 0x00, 0xFF, 0xFF, 0x00, 0x32, +0xFF, 0xF6, 0x02, 0x39, 0x03, 0xA0, 0x06, 0x26, 0x00, 0xAF, 0x00, 0x00, 0x00, 0x06, 0x03, 0x2A, +0x62, 0x00, 0xFF, 0xFF, 0x00, 0x32, 0xFF, 0xF6, 0x02, 0x39, 0x03, 0x7D, 0x06, 0x26, 0x00, 0xAF, +0x00, 0x00, 0x00, 0x06, 0x03, 0x31, 0x52, 0x00, 0xFF, 0xFF, 0x00, 0x32, 0xFF, 0xF6, 0x02, 0x39, +0x04, 0x0F, 0x06, 0x26, 0x00, 0xAF, 0x00, 0x00, 0x00, 0x26, 0x03, 0x31, 0x52, 0x00, 0x00, 0x07, +0x03, 0x26, 0x00, 0x52, 0x00, 0x96, 0xFF, 0xFF, 0x00, 0x32, 0xFF, 0x0B, 0x02, 0x39, 0x02, 0xC6, +0x06, 0x26, 0x00, 0xAF, 0x00, 0x00, 0x00, 0x06, 0x03, 0x45, 0x52, 0x00, 0xFF, 0xFF, 0x00, 0x32, +0xFF, 0xF6, 0x02, 0x39, 0x03, 0x7B, 0x06, 0x26, 0x00, 0xAF, 0x00, 0x00, 0x00, 0x06, 0x03, 0x2C, +0x51, 0x00, 0xFF, 0xFF, 0x00, 0x32, 0xFF, 0x0D, 0x02, 0x39, 0x02, 0xC6, 0x06, 0x26, 0x00, 0xAF, +0x00, 0x00, 0x00, 0x06, 0x03, 0x44, 0x52, 0x00, 0xFF, 0xFF, 0x00, 0x32, 0xFF, 0xF6, 0x02, 0x39, +0x03, 0x79, 0x06, 0x26, 0x00, 0xAF, 0x00, 0x00, 0x00, 0x06, 0x03, 0x26, 0x52, 0x00, 0xFF, 0xFF, +0x00, 0x32, 0xFF, 0x32, 0x02, 0x39, 0x02, 0xC6, 0x06, 0x26, 0x00, 0xAF, 0x00, 0x00, 0x00, 0x06, +0x03, 0x0E, 0x52, 0x00, 0xFF, 0xFF, 0x00, 0x32, 0xFF, 0x32, 0x02, 0x39, 0x03, 0x79, 0x06, 0x26, +0x00, 0xAF, 0x00, 0x00, 0x00, 0x26, 0x03, 0x0E, 0x52, 0x00, 0x00, 0x06, 0x03, 0x26, 0x52, 0x00, +0x00, 0x01, 0x00, 0x62, 0xFF, 0xF6, 0x02, 0xC3, 0x02, 0xD6, 0x00, 0x3B, 0x00, 0x00, 0x45, 0x22, +0x26, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x27, 0x2E, 0x02, +0x35, 0x34, 0x3E, 0x02, 0x37, 0x17, 0x26, 0x26, 0x23, 0x26, 0x0E, 0x02, 0x15, 0x03, 0x23, 0x13, +0x3E, 0x02, 0x33, 0x32, 0x16, 0x17, 0x17, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x16, 0x17, 0x1E, 0x02, +0x15, 0x14, 0x06, 0x06, 0x01, 0xEA, 0x27, 0x4A, 0x3E, 0x14, 0x43, 0x19, 0x46, 0x20, 0x34, 0x3D, +0x19, 0x3A, 0x32, 0x30, 0x39, 0x1A, 0x1D, 0x36, 0x4B, 0x2D, 0x32, 0x20, 0x63, 0x2B, 0x30, 0x4C, +0x37, 0x1E, 0x02, 0x6C, 0x01, 0x01, 0x4C, 0x8A, 0x5D, 0x3E, 0x74, 0x33, 0x05, 0x3F, 0x57, 0x2E, +0x16, 0x2C, 0x22, 0x35, 0x48, 0x25, 0x3C, 0x62, 0x0A, 0x15, 0x26, 0x1A, 0x50, 0x1E, 0x26, 0x2D, +0x27, 0x18, 0x21, 0x24, 0x1B, 0x1A, 0x31, 0x39, 0x25, 0x27, 0x40, 0x2F, 0x1D, 0x04, 0x26, 0x0C, +0x0F, 0x01, 0x27, 0x4C, 0x6B, 0x44, 0xFE, 0xAA, 0x01, 0x5D, 0x71, 0xA9, 0x5E, 0x16, 0x16, 0x49, +0x0A, 0x24, 0x30, 0x1D, 0x14, 0x23, 0x1F, 0x10, 0x18, 0x31, 0x46, 0x39, 0x35, 0x58, 0x35, 0x00, +0x00, 0x01, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0xDC, 0x02, 0xC6, 0x00, 0x2A, 0x00, 0x00, 0x45, 0x22, +0x2E, 0x02, 0x27, 0x35, 0x21, 0x17, 0x21, 0x1E, 0x03, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, +0x02, 0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, +0x02, 0x01, 0x86, 0x44, 0x79, 0x5D, 0x39, 0x03, 0x02, 0x7E, 0x09, 0xFD, 0xE1, 0x08, 0x2B, 0x40, +0x50, 0x2B, 0x34, 0x57, 0x41, 0x23, 0x23, 0x40, 0x59, 0x36, 0x2A, 0x47, 0x3E, 0x1C, 0x44, 0x25, +0x51, 0x5F, 0x3A, 0x47, 0x7D, 0x5F, 0x36, 0x35, 0x5F, 0x7B, 0x0A, 0x30, 0x58, 0x76, 0x45, 0x50, +0x61, 0x2D, 0x4C, 0x39, 0x1F, 0x26, 0x46, 0x61, 0x3B, 0x3C, 0x61, 0x45, 0x24, 0x11, 0x22, 0x1A, +0x46, 0x24, 0x2E, 0x16, 0x38, 0x63, 0x82, 0x4B, 0x4B, 0x82, 0x63, 0x38, 0x00, 0x01, 0x00, 0x23, +0x00, 0x00, 0x02, 0x1D, 0x02, 0xBC, 0x00, 0x07, 0x00, 0x00, 0x73, 0x11, 0x23, 0x35, 0x21, 0x15, +0x23, 0x11, 0xE7, 0xC4, 0x01, 0xFA, 0xCA, 0x02, 0x54, 0x68, 0x68, 0xFD, 0xAC, 0x00, 0x00, 0x02, +0x00, 0x23, 0x00, 0x00, 0x02, 0x1D, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x0B, 0x00, 0x00, 0x53, 0x35, +0x21, 0x15, 0x03, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x9A, 0x01, 0x0C, 0xBF, 0xC4, 0x01, +0xFA, 0xCA, 0x01, 0x33, 0x5A, 0x5A, 0xFE, 0xCD, 0x02, 0x54, 0x68, 0x68, 0xFD, 0xAC, 0xFF, 0xFF, +0x00, 0x23, 0x00, 0x00, 0x02, 0x1D, 0x03, 0x7D, 0x06, 0x26, 0x00, 0xBC, 0x00, 0x00, 0x00, 0x06, +0x03, 0x31, 0x26, 0x00, 0xFF, 0xFF, 0x00, 0x23, 0xFF, 0x0B, 0x02, 0x1D, 0x02, 0xBC, 0x06, 0x26, +0x00, 0xBC, 0x00, 0x00, 0x00, 0x06, 0x03, 0x45, 0x26, 0x00, 0xFF, 0xFF, 0x00, 0x23, 0xFF, 0x0D, +0x02, 0x1D, 0x02, 0xBC, 0x06, 0x26, 0x00, 0xBC, 0x00, 0x00, 0x00, 0x06, 0x03, 0x44, 0x26, 0x00, +0xFF, 0xFF, 0x00, 0x23, 0xFF, 0x32, 0x02, 0x1D, 0x02, 0xBC, 0x06, 0x26, 0x00, 0xBC, 0x00, 0x00, +0x00, 0x06, 0x03, 0x0E, 0x26, 0x00, 0xFF, 0xFF, 0x00, 0x23, 0xFF, 0x4E, 0x02, 0x1D, 0x02, 0xBC, +0x06, 0x26, 0x00, 0xBC, 0x00, 0x00, 0x00, 0x06, 0x03, 0x14, 0x25, 0x00, 0x00, 0x01, 0x00, 0x58, +0xFF, 0xFA, 0x02, 0x8C, 0x02, 0xBD, 0x00, 0x15, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x11, +0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, +0x01, 0x72, 0x51, 0x80, 0x49, 0x6C, 0x30, 0x4F, 0x2F, 0x32, 0x51, 0x30, 0x67, 0x49, 0x80, 0x06, +0x47, 0x7D, 0x4F, 0x01, 0xB0, 0xFE, 0x59, 0x33, 0x51, 0x30, 0x30, 0x51, 0x33, 0x01, 0xA7, 0xFE, +0x50, 0x4F, 0x7D, 0x47, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xFA, 0x02, 0x8C, 0x03, 0x98, 0x06, 0x26, +0x00, 0xC3, 0x00, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0x8B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, +0xFF, 0xFA, 0x02, 0x8C, 0x03, 0x81, 0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x06, 0x03, 0x32, +0x78, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xFA, 0x02, 0x8C, 0x03, 0x7D, 0x06, 0x26, 0x00, 0xC3, +0x00, 0x00, 0x00, 0x06, 0x03, 0x31, 0x78, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xFA, 0x02, 0x8C, +0x03, 0x7B, 0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x06, 0x03, 0x2C, 0x77, 0x00, 0xFF, 0xFF, +0x00, 0x58, 0xFF, 0xFA, 0x02, 0x8C, 0x03, 0xA7, 0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x06, +0x03, 0x41, 0x44, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xFA, 0x02, 0x8C, 0x03, 0x79, 0x06, 0x26, +0x00, 0xC3, 0x00, 0x00, 0x00, 0x06, 0x03, 0x23, 0x78, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0x32, +0x02, 0x8C, 0x02, 0xBD, 0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x78, 0x00, +0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xFA, 0x02, 0x8C, 0x03, 0x98, 0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, +0x00, 0x06, 0x03, 0x28, 0x6E, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xFA, 0x02, 0x8C, 0x03, 0xBA, +0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x06, 0x03, 0x40, 0x77, 0x00, 0x00, 0x01, 0x00, 0x58, +0xFF, 0xFA, 0x02, 0xFD, 0x03, 0x2E, 0x00, 0x1E, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x11, +0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x32, 0x36, 0x35, 0x33, +0x14, 0x06, 0x06, 0x07, 0x37, 0x11, 0x14, 0x06, 0x06, 0x01, 0x72, 0x51, 0x80, 0x49, 0x6C, 0x30, +0x4F, 0x2F, 0x32, 0x51, 0x30, 0x26, 0x2F, 0x27, 0x5C, 0x21, 0x40, 0x2E, 0x1E, 0x49, 0x80, 0x06, +0x47, 0x7D, 0x4F, 0x01, 0xB0, 0xFE, 0x59, 0x33, 0x51, 0x30, 0x30, 0x51, 0x33, 0x01, 0xA7, 0x3D, +0x34, 0x35, 0x52, 0x32, 0x08, 0x34, 0xFE, 0x6C, 0x4F, 0x7D, 0x47, 0x00, 0xFF, 0xFF, 0x00, 0x58, +0xFF, 0xFA, 0x02, 0xFD, 0x03, 0x98, 0x06, 0x26, 0x00, 0xCD, 0x00, 0x00, 0x00, 0x07, 0x03, 0x29, +0x00, 0x8B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0x32, 0x02, 0xFD, 0x03, 0x2E, 0x06, 0x26, +0x00, 0xCD, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x78, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xFA, +0x02, 0xFD, 0x03, 0x98, 0x06, 0x26, 0x00, 0xCD, 0x00, 0x00, 0x00, 0x06, 0x03, 0x28, 0x6E, 0x00, +0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xFA, 0x02, 0xFD, 0x03, 0xBA, 0x06, 0x26, 0x00, 0xCD, 0x00, 0x00, +0x00, 0x06, 0x03, 0x40, 0x77, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xFA, 0x02, 0xFD, 0x03, 0x71, +0x06, 0x26, 0x00, 0xCD, 0x00, 0x00, 0x00, 0x06, 0x03, 0x38, 0x77, 0x00, 0xFF, 0xFF, 0x00, 0x58, +0xFF, 0xFA, 0x02, 0x8C, 0x03, 0xA7, 0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2B, +0x00, 0xAE, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xFA, 0x02, 0x8C, 0x03, 0x81, 0x06, 0x26, +0x00, 0xC3, 0x00, 0x00, 0x00, 0x06, 0x03, 0x42, 0x78, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xFA, +0x02, 0x8C, 0x03, 0x5E, 0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x06, 0x03, 0x3C, 0x77, 0x00, +0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xFA, 0x02, 0x8C, 0x04, 0x0F, 0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, +0x00, 0x26, 0x03, 0x3C, 0x77, 0x00, 0x00, 0x07, 0x03, 0x23, 0x00, 0x78, 0x00, 0x96, 0x00, 0x02, +0x00, 0x58, 0xFF, 0x38, 0x02, 0x8C, 0x02, 0xBD, 0x00, 0x17, 0x00, 0x2D, 0x00, 0x00, 0x45, 0x22, +0x26, 0x35, 0x34, 0x3E, 0x02, 0x37, 0x17, 0x0E, 0x03, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, +0x17, 0x06, 0x06, 0x27, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, +0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, 0x01, 0xB2, 0x2B, 0x42, 0x1B, 0x2F, 0x3D, +0x22, 0x26, 0x1D, 0x2B, 0x1D, 0x0F, 0x12, 0x10, 0x0B, 0x12, 0x08, 0x38, 0x0A, 0x3F, 0x64, 0x51, +0x80, 0x49, 0x6C, 0x30, 0x4F, 0x2F, 0x32, 0x51, 0x30, 0x67, 0x49, 0x80, 0xC8, 0x35, 0x32, 0x1E, +0x34, 0x2C, 0x26, 0x12, 0x2D, 0x10, 0x20, 0x1F, 0x1E, 0x0F, 0x12, 0x15, 0x0D, 0x0C, 0x28, 0x19, +0x25, 0xC2, 0x47, 0x7D, 0x4F, 0x01, 0xB0, 0xFE, 0x59, 0x33, 0x51, 0x30, 0x30, 0x51, 0x33, 0x01, +0xA7, 0xFE, 0x50, 0x4F, 0x7D, 0x47, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xFA, 0x02, 0x8C, 0x03, 0x7A, +0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x06, 0x03, 0x37, 0x77, 0x00, 0xFF, 0xFF, 0x00, 0x58, +0xFF, 0xFA, 0x02, 0x8C, 0x03, 0x71, 0x06, 0x26, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x06, 0x03, 0x38, +0x77, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xFA, 0x02, 0x8C, 0x04, 0x2E, 0x06, 0x26, 0x00, 0xC3, +0x00, 0x00, 0x00, 0x26, 0x03, 0x38, 0x77, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0x8B, 0x00, 0x96, +0x00, 0x01, 0x00, 0x18, 0x00, 0x00, 0x02, 0xB3, 0x02, 0xBC, 0x00, 0x10, 0x00, 0x00, 0x61, 0x01, +0x33, 0x13, 0x1E, 0x03, 0x17, 0x07, 0x3E, 0x02, 0x37, 0x13, 0x33, 0x01, 0x01, 0x30, 0xFE, 0xE8, +0x7B, 0xA7, 0x0C, 0x13, 0x0E, 0x0C, 0x06, 0x1A, 0x07, 0x10, 0x15, 0x0F, 0x9B, 0x7E, 0xFE, 0xE6, +0x02, 0xBC, 0xFE, 0x57, 0x1F, 0x32, 0x29, 0x24, 0x12, 0x01, 0x18, 0x34, 0x3E, 0x27, 0x01, 0xA9, +0xFD, 0x44, 0x00, 0x01, 0x00, 0x18, 0x00, 0x00, 0x03, 0xCC, 0x02, 0xBC, 0x00, 0x22, 0x00, 0x00, +0x73, 0x03, 0x33, 0x13, 0x1E, 0x03, 0x17, 0x27, 0x3E, 0x02, 0x37, 0x13, 0x33, 0x13, 0x1E, 0x02, +0x17, 0x07, 0x3E, 0x04, 0x37, 0x13, 0x33, 0x03, 0x23, 0x03, 0x17, 0x03, 0xF7, 0xDF, 0x73, 0x87, +0x06, 0x0A, 0x08, 0x07, 0x03, 0x1D, 0x0F, 0x11, 0x0A, 0x04, 0x7E, 0x61, 0x7A, 0x0A, 0x0F, 0x0C, +0x07, 0x1A, 0x05, 0x05, 0x04, 0x04, 0x09, 0x08, 0x85, 0x74, 0xDF, 0x4B, 0xB9, 0x09, 0xB2, 0x02, +0xBC, 0xFE, 0x4A, 0x10, 0x2B, 0x2C, 0x26, 0x0C, 0x01, 0x35, 0x3A, 0x1F, 0x0B, 0x01, 0x3C, 0xFE, +0xC4, 0x18, 0x2F, 0x2F, 0x1A, 0x07, 0x1B, 0x1F, 0x14, 0x13, 0x1E, 0x1A, 0x01, 0xB3, 0xFD, 0x44, +0x01, 0xB6, 0x04, 0xFE, 0x4E, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x03, 0xCC, 0x03, 0x98, +0x06, 0x26, 0x00, 0xDC, 0x00, 0x00, 0x00, 0x07, 0x03, 0x29, 0x01, 0x0B, 0x00, 0x00, 0xFF, 0xFF, +0x00, 0x18, 0x00, 0x00, 0x03, 0xCC, 0x03, 0x7B, 0x06, 0x26, 0x00, 0xDC, 0x00, 0x00, 0x00, 0x07, +0x03, 0x2C, 0x00, 0xF7, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x03, 0xCC, 0x03, 0x79, +0x06, 0x26, 0x00, 0xDC, 0x00, 0x00, 0x00, 0x07, 0x03, 0x23, 0x00, 0xF8, 0x00, 0x00, 0xFF, 0xFF, +0x00, 0x18, 0x00, 0x00, 0x03, 0xCC, 0x03, 0x98, 0x06, 0x26, 0x00, 0xDC, 0x00, 0x00, 0x00, 0x07, +0x03, 0x28, 0x00, 0xEE, 0x00, 0x00, 0x00, 0x03, 0x00, 0x18, 0x00, 0x00, 0x02, 0x95, 0x02, 0xBC, +0x00, 0x05, 0x00, 0x09, 0x00, 0x0D, 0x00, 0x00, 0x61, 0x03, 0x01, 0x33, 0x13, 0x01, 0x21, 0x01, +0x17, 0x03, 0x13, 0x27, 0x13, 0x33, 0x02, 0x0C, 0xD9, 0xFE, 0xEA, 0x89, 0xD4, 0x01, 0x1B, 0xFD, +0x83, 0x01, 0x0B, 0x43, 0xCF, 0xF3, 0x42, 0xC4, 0x7F, 0x01, 0x3A, 0x01, 0x82, 0xFE, 0xCA, 0xFE, +0x7A, 0x01, 0x7D, 0x4F, 0xFE, 0xD2, 0x01, 0x45, 0x4C, 0x01, 0x2B, 0x00, 0x00, 0x01, 0x00, 0x0A, +0x00, 0x00, 0x02, 0x8A, 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x00, 0x61, 0x11, 0x17, 0x01, 0x33, 0x13, +0x27, 0x13, 0x33, 0x01, 0x37, 0x11, 0x01, 0x1E, 0x07, 0xFE, 0xE5, 0x82, 0xD8, 0x19, 0xC3, 0x7C, +0xFE, 0xF1, 0x0F, 0x01, 0x5D, 0x31, 0x01, 0x90, 0xFE, 0xCA, 0x03, 0x01, 0x33, 0xFE, 0x65, 0x44, +0xFE, 0x9B, 0xFF, 0xFF, 0x00, 0x0A, 0x00, 0x00, 0x02, 0x8A, 0x03, 0x98, 0x06, 0x26, 0x00, 0xE2, +0x00, 0x00, 0x00, 0x06, 0x03, 0x29, 0x63, 0x00, 0xFF, 0xFF, 0x00, 0x0A, 0x00, 0x00, 0x02, 0x8A, +0x03, 0x7B, 0x06, 0x26, 0x00, 0xE2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x2C, 0x4F, 0x00, 0xFF, 0xFF, +0x00, 0x0A, 0x00, 0x00, 0x02, 0x8A, 0x03, 0x79, 0x06, 0x26, 0x00, 0xE2, 0x00, 0x00, 0x00, 0x06, +0x03, 0x23, 0x50, 0x00, 0xFF, 0xFF, 0x00, 0x0A, 0x00, 0x00, 0x02, 0x8A, 0x03, 0x79, 0x06, 0x26, +0x00, 0xE2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x26, 0x50, 0x00, 0xFF, 0xFF, 0x00, 0x0A, 0xFF, 0x32, +0x02, 0x8A, 0x02, 0xBC, 0x06, 0x26, 0x00, 0xE2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x50, 0x00, +0xFF, 0xFF, 0x00, 0x0A, 0x00, 0x00, 0x02, 0x8A, 0x03, 0x98, 0x06, 0x26, 0x00, 0xE2, 0x00, 0x00, +0x00, 0x06, 0x03, 0x28, 0x46, 0x00, 0xFF, 0xFF, 0x00, 0x0A, 0x00, 0x00, 0x02, 0x8A, 0x03, 0xBA, +0x06, 0x26, 0x00, 0xE2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x40, 0x4F, 0x00, 0xFF, 0xFF, 0x00, 0x0A, +0x00, 0x00, 0x02, 0x8A, 0x03, 0x5E, 0x06, 0x26, 0x00, 0xE2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x3C, +0x4F, 0x00, 0xFF, 0xFF, 0x00, 0x0A, 0x00, 0x00, 0x02, 0x8A, 0x03, 0x71, 0x06, 0x26, 0x00, 0xE2, +0x00, 0x00, 0x00, 0x06, 0x03, 0x38, 0x4F, 0x00, 0x00, 0x01, 0x00, 0x3C, 0x00, 0x00, 0x02, 0x5C, +0x02, 0xBC, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x35, 0x01, 0x17, 0x21, 0x35, 0x21, 0x15, 0x01, 0x27, +0x21, 0x15, 0x3C, 0x01, 0x8F, 0x0F, 0xFE, 0x7C, 0x01, 0xFB, 0xFE, 0x73, 0x10, 0x01, 0xA8, 0x4F, +0x02, 0x16, 0x11, 0x68, 0x4E, 0xFD, 0xE9, 0x11, 0x68, 0x00, 0xFF, 0xFF, 0x00, 0x3C, 0x00, 0x00, +0x02, 0x5C, 0x03, 0x98, 0x06, 0x26, 0x00, 0xEC, 0x00, 0x00, 0x00, 0x06, 0x03, 0x29, 0x63, 0x00, +0xFF, 0xFF, 0x00, 0x3C, 0x00, 0x00, 0x02, 0x5C, 0x03, 0x7D, 0x06, 0x26, 0x00, 0xEC, 0x00, 0x00, +0x00, 0x06, 0x03, 0x31, 0x50, 0x00, 0xFF, 0xFF, 0x00, 0x3C, 0x00, 0x00, 0x02, 0x5C, 0x03, 0x79, +0x06, 0x26, 0x00, 0xEC, 0x00, 0x00, 0x00, 0x06, 0x03, 0x26, 0x50, 0x00, 0xFF, 0xFF, 0x00, 0x3C, +0xFF, 0x32, 0x02, 0x5C, 0x02, 0xBC, 0x06, 0x26, 0x00, 0xEC, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, +0x50, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0xF6, 0x04, 0x2E, 0x03, 0x98, 0x04, 0x26, 0x00, 0x53, +0x00, 0x00, 0x00, 0x26, 0x03, 0x29, 0x08, 0x00, 0x00, 0x27, 0x00, 0x64, 0x01, 0xDE, 0x00, 0x00, +0x00, 0x07, 0x03, 0x29, 0x02, 0xA1, 0x00, 0x00, 0x00, 0x01, 0x00, 0x64, 0x00, 0x00, 0x00, 0xD0, +0x02, 0xBC, 0x00, 0x06, 0x00, 0x00, 0x73, 0x11, 0x33, 0x32, 0x32, 0x33, 0x11, 0x64, 0x36, 0x0E, +0x1B, 0x0D, 0x02, 0xBC, 0xFD, 0x44, 0xFF, 0xFF, 0x00, 0x64, 0xFF, 0xF6, 0x03, 0x18, 0x02, 0xBC, +0x04, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x07, 0x01, 0x03, 0x01, 0x34, 0x00, 0x00, 0xFF, 0xFF, +0x00, 0x3A, 0x00, 0x00, 0x01, 0x20, 0x03, 0x98, 0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, +0x03, 0x29, 0xB3, 0x00, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x01, 0x3C, 0x03, 0x81, 0x06, 0x26, +0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x32, 0xA0, 0x00, 0xFF, 0xFF, 0xFF, 0xF7, 0x00, 0x00, +0x01, 0x3D, 0x03, 0x7D, 0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x31, 0xA0, 0x00, +0xFF, 0xFF, 0xFF, 0xF9, 0x00, 0x00, 0x01, 0x3A, 0x03, 0x7B, 0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, +0x00, 0x06, 0x03, 0x2C, 0x9F, 0x00, 0xFF, 0xFF, 0xFF, 0x9D, 0x00, 0x00, 0x01, 0x2F, 0x03, 0xA7, +0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x07, 0x03, 0x41, 0xFF, 0x6C, 0x00, 0x00, 0xFF, 0xFF, +0xFF, 0xEE, 0x00, 0x00, 0x01, 0x46, 0x03, 0x79, 0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, +0x03, 0x23, 0xA0, 0x00, 0xFF, 0xFF, 0xFF, 0xEE, 0x00, 0x00, 0x01, 0x46, 0x04, 0x38, 0x06, 0x26, +0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x24, 0xA0, 0x00, 0xFF, 0xFF, 0x00, 0x55, 0x00, 0x00, +0x00, 0xDF, 0x03, 0x79, 0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x26, 0xA0, 0x00, +0xFF, 0xFF, 0x00, 0x55, 0xFF, 0x32, 0x00, 0xDF, 0x02, 0xBC, 0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, +0x00, 0x06, 0x03, 0x0E, 0xA0, 0x00, 0xFF, 0xFF, 0x00, 0x1C, 0x00, 0x00, 0x01, 0x04, 0x03, 0x98, +0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x28, 0x96, 0x00, 0xFF, 0xFF, 0x00, 0x38, +0x00, 0x00, 0x00, 0xFB, 0x03, 0xBA, 0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x40, +0x9F, 0x00, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x01, 0x3C, 0x03, 0x81, 0x06, 0x26, 0x00, 0xF2, +0x00, 0x00, 0x00, 0x06, 0x03, 0x42, 0xA0, 0x00, 0xFF, 0xFF, 0xFF, 0xF4, 0x00, 0x00, 0x01, 0x3F, +0x03, 0x5E, 0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x3C, 0x9F, 0x00, 0xFF, 0xFF, +0x00, 0x09, 0xFF, 0x38, 0x00, 0xE3, 0x02, 0xBC, 0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x07, +0x03, 0x46, 0xFF, 0x7C, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xEB, 0x00, 0x00, 0x01, 0x48, 0x03, 0x71, +0x06, 0x26, 0x00, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x38, 0x9F, 0x00, 0x00, 0x01, 0x00, 0x32, +0xFF, 0xF6, 0x01, 0xE4, 0x02, 0xBC, 0x00, 0x15, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x27, 0x37, +0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x0E, 0x02, 0x01, 0x00, 0x22, +0x3E, 0x35, 0x2A, 0x0F, 0x44, 0x1D, 0x2B, 0x29, 0x19, 0x24, 0x36, 0x1E, 0x6C, 0x21, 0x3D, 0x53, +0x0A, 0x12, 0x22, 0x2F, 0x1C, 0x47, 0x27, 0x28, 0x0E, 0x21, 0x3A, 0x25, 0x01, 0xDD, 0xFE, 0x19, +0x30, 0x51, 0x3C, 0x22, 0xFF, 0xFF, 0x00, 0x32, 0xFF, 0xF6, 0x02, 0x4F, 0x03, 0x7B, 0x06, 0x26, +0x01, 0x03, 0x00, 0x00, 0x00, 0x07, 0x03, 0x2C, 0x00, 0xB4, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x62, +0xFF, 0xF6, 0x04, 0x3B, 0x02, 0xBC, 0x04, 0x26, 0x00, 0x68, 0x00, 0x00, 0x00, 0x07, 0x01, 0x03, +0x02, 0x57, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x62, 0xFF, 0xF6, 0x04, 0xFD, 0x02, 0xBC, 0x04, 0x26, +0x00, 0x74, 0x00, 0x00, 0x00, 0x07, 0x01, 0x03, 0x03, 0x19, 0x00, 0x00, 0x00, 0x02, 0x00, 0x26, +0xFF, 0xF6, 0x02, 0x31, 0x02, 0x18, 0x00, 0x18, 0x00, 0x28, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, +0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x27, 0x35, 0x33, 0x11, 0x23, 0x35, 0x37, +0x0E, 0x03, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, +0x16, 0x16, 0x01, 0x12, 0x41, 0x6B, 0x40, 0x41, 0x6F, 0x45, 0x29, 0x44, 0x33, 0x21, 0x04, 0x17, +0x68, 0x68, 0x18, 0x06, 0x25, 0x39, 0x45, 0x0B, 0x2F, 0x48, 0x29, 0x29, 0x48, 0x2F, 0x2E, 0x47, +0x29, 0x29, 0x47, 0x0A, 0x48, 0x7C, 0x4E, 0x4F, 0x7B, 0x46, 0x18, 0x2B, 0x38, 0x20, 0x08, 0x88, +0xFD, 0xF3, 0x7D, 0x07, 0x1B, 0x33, 0x28, 0x18, 0x5F, 0x2E, 0x51, 0x34, 0x33, 0x50, 0x2E, 0x2E, +0x50, 0x33, 0x34, 0x51, 0x2E, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x02, 0x31, 0x03, 0x0E, +0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0x43, 0x00, 0xFF, 0xFF, 0x00, 0x26, +0xFF, 0xF6, 0x02, 0x31, 0x02, 0xF3, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFF, +0x43, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x02, 0x31, 0x03, 0xA9, 0x06, 0x26, 0x01, 0x07, +0x00, 0x00, 0x00, 0x06, 0x02, 0xEA, 0x43, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0x32, 0x02, 0x31, +0x02, 0xF3, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x26, 0x03, 0x0E, 0x43, 0x00, 0x00, 0x06, +0x02, 0xFF, 0x43, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x02, 0x31, 0x03, 0xA9, 0x06, 0x26, +0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x02, 0xEB, 0x43, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, +0x02, 0x31, 0x03, 0xB8, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x02, 0xEC, 0x43, 0x00, +0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x02, 0x31, 0x03, 0xA8, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, +0x00, 0x06, 0x02, 0xED, 0x43, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x02, 0x31, 0x02, 0xF1, +0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFD, 0x43, 0x00, 0xFF, 0xFF, 0x00, 0x26, +0xFF, 0xF6, 0x02, 0x31, 0x02, 0xF1, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFC, +0x43, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x02, 0x59, 0x03, 0x9F, 0x06, 0x26, 0x01, 0x07, +0x00, 0x00, 0x00, 0x07, 0x02, 0xEE, 0x00, 0x82, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0x32, +0x02, 0x31, 0x02, 0xF1, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x26, 0x03, 0x0E, 0x43, 0x00, +0x00, 0x06, 0x02, 0xFC, 0x43, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x02, 0x31, 0x03, 0x9F, +0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x02, 0xEF, 0x58, 0x00, 0xFF, 0xFF, 0x00, 0x26, +0xFF, 0xF6, 0x02, 0x45, 0x03, 0xA0, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF0, +0x78, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x02, 0x31, 0x03, 0x9E, 0x06, 0x26, 0x01, 0x07, +0x00, 0x00, 0x00, 0x06, 0x02, 0xF1, 0x42, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x02, 0x31, +0x03, 0x0E, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0A, 0x00, 0x00, 0xFF, 0xFF, +0x00, 0x26, 0xFF, 0xF6, 0x02, 0x31, 0x03, 0x04, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, +0x02, 0xF2, 0x43, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0x32, 0x02, 0x31, 0x02, 0x18, 0x06, 0x26, +0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x43, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, +0x02, 0x31, 0x03, 0x0E, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF7, 0x2F, 0x00, +0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x02, 0x31, 0x03, 0x15, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, +0x00, 0x06, 0x03, 0x09, 0x42, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x02, 0x31, 0x02, 0xFD, +0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0B, 0x43, 0x00, 0xFF, 0xFF, 0x00, 0x26, +0xFF, 0xF6, 0x02, 0x31, 0x02, 0xCD, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x03, 0x05, +0x43, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0x38, 0x02, 0x44, 0x02, 0x18, 0x06, 0x26, 0x01, 0x07, +0x00, 0x00, 0x00, 0x07, 0x03, 0x12, 0x00, 0xDD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, +0x02, 0x31, 0x03, 0x2F, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x03, 0x00, 0x42, 0x00, +0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x02, 0x31, 0x03, 0xF7, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, +0x00, 0x26, 0x03, 0x00, 0x42, 0x00, 0x00, 0x07, 0x02, 0xF8, 0x00, 0x43, 0x00, 0xE9, 0xFF, 0xFF, +0x00, 0x26, 0xFF, 0xF6, 0x02, 0x31, 0x02, 0xEA, 0x06, 0x26, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, +0x03, 0x01, 0x42, 0x00, 0x00, 0x02, 0x00, 0x26, 0xFF, 0xF6, 0x03, 0x5B, 0x02, 0x18, 0x00, 0x40, +0x00, 0x55, 0x00, 0x00, 0x57, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x21, 0x07, 0x35, +0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, +0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x1E, 0x02, 0x15, 0x07, 0x21, 0x22, +0x0E, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x13, 0x35, +0x34, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x15, +0xD8, 0x33, 0x50, 0x2F, 0x1E, 0x3C, 0x58, 0x3A, 0x01, 0xEF, 0x0F, 0x03, 0x26, 0x3A, 0x22, 0x32, +0x45, 0x24, 0x32, 0x55, 0x35, 0x27, 0x43, 0x27, 0x32, 0x18, 0x44, 0x4C, 0x25, 0x51, 0x7A, 0x44, +0x26, 0x43, 0x5B, 0x34, 0x44, 0x6C, 0x3E, 0x01, 0xFD, 0xAB, 0x1E, 0x2F, 0x21, 0x10, 0x16, 0x26, +0x19, 0x24, 0x41, 0x33, 0x0E, 0x2C, 0x17, 0x44, 0x50, 0x72, 0x12, 0x1F, 0x28, 0x16, 0x2C, 0x47, +0x1D, 0x43, 0x1D, 0x43, 0x4C, 0x29, 0x2F, 0x4A, 0x35, 0x1C, 0x0A, 0x28, 0x47, 0x30, 0x2A, 0x40, +0x2B, 0x15, 0x11, 0x18, 0x21, 0x34, 0x1E, 0x28, 0x4F, 0x3A, 0x35, 0x51, 0x2E, 0x1A, 0x22, 0x4B, +0x17, 0x24, 0x14, 0x43, 0x79, 0x4F, 0x3D, 0x66, 0x4B, 0x29, 0x01, 0x42, 0x73, 0x49, 0x2C, 0x0B, +0x17, 0x1F, 0x15, 0x16, 0x21, 0x12, 0x19, 0x2C, 0x1B, 0x43, 0x23, 0x34, 0x1E, 0x01, 0x0B, 0x63, +0x12, 0x20, 0x16, 0x0D, 0x24, 0x25, 0x43, 0x21, 0x2D, 0x17, 0x14, 0x25, 0x37, 0x24, 0x7D, 0x00, +0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x03, 0x5B, 0x03, 0x0E, 0x06, 0x26, 0x01, 0x21, 0x00, 0x00, +0x00, 0x07, 0x02, 0xF8, 0x00, 0xC8, 0x00, 0x00, 0x00, 0x02, 0x00, 0x48, 0xFF, 0xF6, 0x02, 0x4E, +0x02, 0xE4, 0x00, 0x18, 0x00, 0x28, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x27, 0x37, 0x15, 0x23, +0x11, 0x33, 0x11, 0x27, 0x3E, 0x03, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, +0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x5C, +0x22, 0x43, 0x37, 0x25, 0x06, 0x1A, 0x67, 0x67, 0x10, 0x05, 0x22, 0x35, 0x3E, 0x20, 0x47, 0x6E, +0x40, 0x3F, 0x6E, 0x56, 0x2E, 0x48, 0x2A, 0x29, 0x48, 0x2F, 0x2F, 0x48, 0x2A, 0x2A, 0x48, 0x0A, +0x16, 0x25, 0x2D, 0x17, 0x0E, 0x80, 0x02, 0xE1, 0xFE, 0xB1, 0x09, 0x17, 0x2B, 0x23, 0x15, 0x46, +0x7B, 0x4F, 0x4F, 0x7C, 0x47, 0x5E, 0x2F, 0x51, 0x34, 0x33, 0x51, 0x2E, 0x2E, 0x51, 0x33, 0x34, +0x51, 0x2F, 0x00, 0x01, 0x00, 0x28, 0xFF, 0xF6, 0x01, 0xFE, 0x02, 0x18, 0x00, 0x1F, 0x00, 0x00, +0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, +0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, +0x27, 0x49, 0x73, 0x43, 0x43, 0x73, 0x49, 0x46, 0x73, 0x1E, 0x39, 0x10, 0x32, 0x38, 0x1A, 0x30, +0x4B, 0x2C, 0x2E, 0x4C, 0x2E, 0x1B, 0x33, 0x30, 0x15, 0x39, 0x20, 0x77, 0x0A, 0x48, 0x7C, 0x4D, +0x4D, 0x7C, 0x48, 0x39, 0x31, 0x46, 0x17, 0x26, 0x16, 0x2F, 0x52, 0x33, 0x33, 0x51, 0x30, 0x12, +0x24, 0x1A, 0x46, 0x2D, 0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x01, 0xFE, 0x03, 0x0E, +0x06, 0x26, 0x01, 0x24, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0x2D, 0x00, 0xFF, 0xFF, 0x00, 0x28, +0xFF, 0xF6, 0x01, 0xFE, 0x02, 0xF1, 0x06, 0x26, 0x01, 0x24, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFD, +0x2D, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0x0B, 0x01, 0xFE, 0x02, 0x18, 0x06, 0x26, 0x01, 0x24, +0x00, 0x00, 0x00, 0x06, 0x03, 0x11, 0x2D, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0x0B, 0x01, 0xFE, +0x03, 0x0E, 0x06, 0x26, 0x01, 0x24, 0x00, 0x00, 0x00, 0x26, 0x03, 0x11, 0x2D, 0x00, 0x00, 0x06, +0x02, 0xF8, 0x2D, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x01, 0xFE, 0x02, 0xF1, 0x06, 0x26, +0x01, 0x24, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFC, 0x2D, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, +0x01, 0xFE, 0x03, 0x03, 0x06, 0x26, 0x01, 0x24, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF5, 0x2D, 0x00, +0x00, 0x02, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x34, 0x02, 0xE4, 0x00, 0x18, 0x00, 0x28, 0x00, 0x00, +0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x07, 0x11, 0x33, +0x11, 0x23, 0x35, 0x33, 0x14, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, +0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x23, 0x48, 0x71, 0x42, 0x41, 0x70, 0x47, 0x27, +0x49, 0x3A, 0x21, 0x1E, 0x67, 0x67, 0x14, 0x20, 0x35, 0x45, 0x16, 0x2F, 0x48, 0x29, 0x29, 0x48, +0x2F, 0x2F, 0x48, 0x29, 0x29, 0x48, 0x0A, 0x47, 0x7B, 0x4F, 0x4F, 0x7B, 0x47, 0x19, 0x2B, 0x33, +0x1A, 0x02, 0x01, 0x5F, 0xFD, 0x1C, 0x7D, 0x18, 0x2F, 0x28, 0x18, 0x59, 0x30, 0x53, 0x35, 0x35, +0x53, 0x30, 0x30, 0x53, 0x35, 0x35, 0x53, 0x30, 0x00, 0x03, 0x00, 0x28, 0xFF, 0xF9, 0x02, 0x16, +0x02, 0xE4, 0x00, 0x1E, 0x00, 0x2E, 0x00, 0x36, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, +0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x27, 0x2E, 0x04, 0x27, 0x37, 0x1E, 0x04, 0x15, 0x14, +0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, +0x16, 0x16, 0x03, 0x27, 0x3F, 0x02, 0x17, 0x07, 0x07, 0x01, 0x1F, 0x45, 0x70, 0x42, 0x26, 0x42, +0x55, 0x2E, 0x32, 0x4F, 0x35, 0x0B, 0x32, 0x02, 0x15, 0x26, 0x39, 0x4F, 0x34, 0x2A, 0x3B, 0x64, +0x4F, 0x38, 0x1D, 0x3F, 0x70, 0x48, 0x2A, 0x44, 0x28, 0x28, 0x44, 0x2A, 0x2A, 0x44, 0x28, 0x28, +0x44, 0x59, 0x0D, 0x91, 0x37, 0x92, 0x12, 0x71, 0x29, 0x07, 0x48, 0x7A, 0x4B, 0x36, 0x60, 0x4A, +0x2A, 0x2C, 0x51, 0x37, 0x1F, 0x2E, 0x4B, 0x3D, 0x2F, 0x26, 0x10, 0x4E, 0x0E, 0x39, 0x52, 0x6A, +0x7F, 0x49, 0x55, 0x82, 0x49, 0x60, 0x2E, 0x4E, 0x31, 0x2F, 0x4D, 0x2E, 0x2D, 0x4D, 0x30, 0x31, +0x4E, 0x2E, 0x01, 0xB7, 0x41, 0x25, 0x14, 0x21, 0x42, 0x1A, 0x11, 0x00, 0xFF, 0xFF, 0x00, 0x28, +0xFF, 0xF6, 0x02, 0xFA, 0x02, 0xE4, 0x04, 0x26, 0x01, 0x2B, 0x00, 0x00, 0x00, 0x07, 0x02, 0xFB, +0x01, 0xB6, 0x00, 0x35, 0x00, 0x03, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x7A, 0x02, 0xE4, 0x00, 0x03, +0x00, 0x1C, 0x00, 0x2C, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, +0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x07, 0x11, 0x33, 0x11, 0x23, 0x35, 0x33, 0x14, 0x0E, +0x02, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, +0x16, 0x01, 0x6E, 0x01, 0x0C, 0xFE, 0xA9, 0x48, 0x71, 0x42, 0x41, 0x70, 0x47, 0x27, 0x49, 0x3A, +0x21, 0x1E, 0x67, 0x67, 0x14, 0x20, 0x35, 0x45, 0x16, 0x2F, 0x48, 0x29, 0x29, 0x48, 0x2F, 0x2F, +0x48, 0x29, 0x29, 0x48, 0x02, 0x4D, 0x5A, 0x5A, 0xFD, 0xA9, 0x47, 0x7B, 0x4F, 0x4F, 0x7B, 0x47, +0x19, 0x2B, 0x33, 0x1A, 0x02, 0x01, 0x5F, 0xFD, 0x1C, 0x7D, 0x18, 0x2F, 0x28, 0x18, 0x59, 0x30, +0x53, 0x35, 0x35, 0x53, 0x30, 0x30, 0x53, 0x35, 0x35, 0x53, 0x30, 0x00, 0xFF, 0xFF, 0x00, 0x28, +0xFF, 0x32, 0x02, 0x34, 0x02, 0xE4, 0x06, 0x26, 0x01, 0x2B, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, +0x43, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0x4E, 0x02, 0x34, 0x02, 0xE4, 0x06, 0x26, 0x01, 0x2B, +0x00, 0x00, 0x00, 0x06, 0x03, 0x14, 0x42, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x04, 0x31, +0x02, 0xF1, 0x04, 0x26, 0x01, 0x2B, 0x00, 0x00, 0x00, 0x27, 0x01, 0xF2, 0x02, 0x7A, 0x00, 0x00, +0x00, 0x07, 0x02, 0xFD, 0x02, 0x72, 0x00, 0x00, 0x00, 0x01, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x23, +0x02, 0x19, 0x00, 0x27, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, +0x1E, 0x02, 0x07, 0x07, 0x21, 0x27, 0x21, 0x07, 0x35, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, +0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x01, 0x3D, 0x51, 0x7D, 0x47, 0x28, +0x47, 0x63, 0x3A, 0x33, 0x58, 0x41, 0x23, 0x01, 0x01, 0xFE, 0x53, 0x17, 0x01, 0x6B, 0x0F, 0x03, +0x26, 0x3A, 0x22, 0x36, 0x4A, 0x26, 0x2E, 0x54, 0x37, 0x27, 0x43, 0x27, 0x34, 0x18, 0x45, 0x4D, +0x0A, 0x45, 0x78, 0x4E, 0x3E, 0x66, 0x4B, 0x29, 0x27, 0x44, 0x5D, 0x37, 0x2C, 0x52, 0x11, 0x18, +0x21, 0x34, 0x1E, 0x29, 0x4F, 0x3A, 0x37, 0x51, 0x2C, 0x1A, 0x22, 0x49, 0x18, 0x24, 0x15, 0x00, +0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x23, 0x03, 0x0E, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, +0x00, 0x06, 0x02, 0xF8, 0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x23, 0x02, 0xF3, +0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFF, 0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, +0xFF, 0xF6, 0x02, 0x23, 0x02, 0xF1, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFD, +0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0x0B, 0x02, 0x23, 0x02, 0xF3, 0x06, 0x26, 0x01, 0x32, +0x00, 0x00, 0x00, 0x26, 0x03, 0x11, 0x42, 0x00, 0x00, 0x06, 0x02, 0xFF, 0x3A, 0x00, 0xFF, 0xFF, +0x00, 0x28, 0xFF, 0xF6, 0x02, 0x23, 0x02, 0xF1, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, +0x02, 0xFC, 0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x50, 0x03, 0x9F, 0x06, 0x26, +0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x02, 0xEE, 0x79, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0x32, +0x02, 0x23, 0x02, 0xF1, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x26, 0x03, 0x0E, 0x43, 0x00, +0x00, 0x06, 0x02, 0xFC, 0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x23, 0x03, 0x9F, +0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x02, 0xEF, 0x4F, 0x00, 0xFF, 0xFF, 0x00, 0x28, +0xFF, 0xF6, 0x02, 0x3C, 0x03, 0xA0, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF0, +0x6F, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x23, 0x03, 0x9E, 0x06, 0x26, 0x01, 0x32, +0x00, 0x00, 0x00, 0x06, 0x02, 0xF1, 0x39, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x02, 0x23, +0x03, 0x0E, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0A, 0xF7, 0x00, 0xFF, 0xFF, +0x00, 0x28, 0xFF, 0xF6, 0x02, 0x23, 0x03, 0x04, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, +0x02, 0xF2, 0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x23, 0x03, 0x03, 0x06, 0x26, +0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF5, 0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0x32, +0x02, 0x23, 0x02, 0x19, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x43, 0x00, +0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x23, 0x03, 0x0E, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, +0x00, 0x06, 0x02, 0xF7, 0x26, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x23, 0x03, 0x15, +0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x03, 0x09, 0x39, 0x00, 0xFF, 0xFF, 0x00, 0x28, +0xFF, 0xF6, 0x02, 0x23, 0x02, 0xFD, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0B, +0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x23, 0x02, 0xCD, 0x06, 0x26, 0x01, 0x32, +0x00, 0x00, 0x00, 0x06, 0x03, 0x05, 0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x23, +0x03, 0x9C, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x03, 0x08, 0x3A, 0x00, 0xFF, 0xFF, +0x00, 0x28, 0xFF, 0xF6, 0x02, 0x23, 0x03, 0x9C, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, +0x03, 0x07, 0x3A, 0x00, 0x00, 0x02, 0x00, 0x28, 0xFF, 0x38, 0x02, 0x23, 0x02, 0x19, 0x00, 0x15, +0x00, 0x3D, 0x00, 0x00, 0x45, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x15, +0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x27, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, +0x02, 0x33, 0x32, 0x1E, 0x02, 0x07, 0x07, 0x21, 0x27, 0x21, 0x07, 0x35, 0x2E, 0x02, 0x23, 0x22, +0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x01, 0x88, 0x36, +0x3B, 0x34, 0x56, 0x34, 0x16, 0x3D, 0x3C, 0x16, 0x11, 0x0E, 0x11, 0x09, 0x38, 0x09, 0x21, 0x2D, +0x65, 0x51, 0x7D, 0x47, 0x28, 0x47, 0x63, 0x3A, 0x33, 0x58, 0x41, 0x23, 0x01, 0x01, 0xFE, 0x53, +0x17, 0x01, 0x6B, 0x0F, 0x03, 0x26, 0x3A, 0x22, 0x36, 0x4A, 0x26, 0x2E, 0x54, 0x37, 0x27, 0x43, +0x27, 0x34, 0x18, 0x45, 0x4D, 0xC8, 0x3B, 0x28, 0x2D, 0x40, 0x32, 0x16, 0x23, 0x22, 0x3C, 0x20, +0x13, 0x17, 0x0D, 0x0C, 0x28, 0x10, 0x1D, 0x11, 0xBE, 0x45, 0x78, 0x4E, 0x3E, 0x66, 0x4B, 0x29, +0x27, 0x44, 0x5D, 0x37, 0x2C, 0x52, 0x11, 0x18, 0x21, 0x34, 0x1E, 0x29, 0x4F, 0x3A, 0x37, 0x51, +0x2C, 0x1A, 0x22, 0x49, 0x18, 0x24, 0x15, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x23, +0x02, 0xEA, 0x06, 0x26, 0x01, 0x32, 0x00, 0x00, 0x00, 0x06, 0x03, 0x01, 0x39, 0x00, 0x00, 0x01, +0x00, 0x28, 0xFF, 0xF4, 0x02, 0x22, 0x02, 0x17, 0x00, 0x26, 0x00, 0x00, 0x45, 0x2E, 0x02, 0x35, +0x37, 0x21, 0x17, 0x21, 0x37, 0x15, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, +0x23, 0x22, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x01, +0x16, 0x44, 0x6C, 0x3E, 0x01, 0x01, 0xAD, 0x17, 0xFE, 0x95, 0x0F, 0x04, 0x25, 0x3A, 0x22, 0x36, +0x4A, 0x26, 0x2E, 0x53, 0x38, 0x27, 0x43, 0x27, 0x34, 0x19, 0x44, 0x4D, 0x25, 0x52, 0x7C, 0x47, +0x28, 0x47, 0x62, 0x0C, 0x01, 0x42, 0x73, 0x49, 0x2C, 0x52, 0x11, 0x18, 0x20, 0x35, 0x1E, 0x29, +0x4F, 0x3A, 0x37, 0x50, 0x2D, 0x1A, 0x22, 0x49, 0x18, 0x24, 0x15, 0x44, 0x79, 0x4E, 0x3E, 0x66, +0x4B, 0x29, 0x00, 0x02, 0x00, 0x2D, 0x00, 0x00, 0x01, 0x86, 0x02, 0xE3, 0x00, 0x14, 0x00, 0x18, +0x00, 0x00, 0x73, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, +0x06, 0x06, 0x15, 0x11, 0x23, 0x22, 0x22, 0x03, 0x35, 0x21, 0x15, 0x81, 0x28, 0x46, 0x2E, 0x20, +0x38, 0x11, 0x23, 0x0D, 0x1F, 0x0E, 0x15, 0x1D, 0x0E, 0x34, 0x0D, 0x1A, 0x61, 0x01, 0x38, 0x02, +0x48, 0x2D, 0x46, 0x28, 0x18, 0x14, 0x4F, 0x0C, 0x0F, 0x0D, 0x1B, 0x13, 0xFD, 0xB8, 0x01, 0xA5, +0x5F, 0x5F, 0x00, 0x02, 0x00, 0x28, 0xFF, 0x1A, 0x02, 0x41, 0x02, 0x18, 0x00, 0x28, 0x00, 0x38, +0x00, 0x00, 0x45, 0x22, 0x26, 0x27, 0x37, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x35, 0x17, +0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x03, 0x17, 0x07, +0x35, 0x33, 0x11, 0x14, 0x0E, 0x02, 0x03, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, +0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x33, 0x38, 0x6F, 0x22, 0x26, 0x14, 0x36, 0x3C, 0x1D, +0x37, 0x4A, 0x26, 0x0B, 0x05, 0x37, 0x52, 0x2B, 0x4B, 0x75, 0x44, 0x43, 0x75, 0x49, 0x1E, 0x38, +0x30, 0x26, 0x18, 0x03, 0x16, 0x67, 0x25, 0x46, 0x64, 0x3B, 0x31, 0x4C, 0x2A, 0x2B, 0x4B, 0x31, +0x30, 0x4B, 0x2B, 0x2B, 0x4B, 0xE6, 0x23, 0x1C, 0x50, 0x0F, 0x17, 0x0D, 0x24, 0x46, 0x34, 0x65, +0x07, 0x1F, 0x39, 0x24, 0x47, 0x7B, 0x4F, 0x4F, 0x7B, 0x47, 0x0F, 0x1B, 0x20, 0x24, 0x10, 0x08, +0x7B, 0xFE, 0x13, 0x3F, 0x61, 0x43, 0x23, 0x01, 0x3B, 0x2E, 0x50, 0x34, 0x34, 0x51, 0x2E, 0x2F, +0x51, 0x33, 0x33, 0x51, 0x2E, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0x1A, 0x02, 0x41, 0x02, 0xF3, +0x06, 0x26, 0x01, 0x4B, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFF, 0x4B, 0x00, 0xFF, 0xFF, 0x00, 0x28, +0xFF, 0x1A, 0x02, 0x41, 0x02, 0xF1, 0x06, 0x26, 0x01, 0x4B, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFD, +0x4B, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0x1A, 0x02, 0x41, 0x02, 0xF1, 0x06, 0x26, 0x01, 0x4B, +0x00, 0x00, 0x00, 0x06, 0x02, 0xFC, 0x4B, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0x1A, 0x02, 0x41, +0x03, 0x24, 0x06, 0x26, 0x01, 0x4B, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0C, 0x4B, 0x00, 0xFF, 0xFF, +0x00, 0x28, 0xFF, 0x1A, 0x02, 0x41, 0x03, 0x03, 0x06, 0x26, 0x01, 0x4B, 0x00, 0x00, 0x00, 0x06, +0x02, 0xF5, 0x4B, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0x1A, 0x02, 0x41, 0x02, 0xCD, 0x06, 0x26, +0x01, 0x4B, 0x00, 0x00, 0x00, 0x06, 0x03, 0x05, 0x4B, 0x00, 0x00, 0x01, 0x00, 0x48, 0x00, 0x00, +0x02, 0x0F, 0x02, 0xE4, 0x00, 0x1C, 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x07, 0x3E, 0x02, 0x33, +0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x26, 0x07, 0x22, 0x0E, 0x02, 0x15, 0x11, +0x23, 0x22, 0x22, 0x48, 0x67, 0x12, 0x0A, 0x3A, 0x50, 0x2A, 0x3C, 0x50, 0x28, 0x67, 0x18, 0x32, +0x25, 0x1E, 0x32, 0x25, 0x15, 0x33, 0x0D, 0x1A, 0x02, 0xE4, 0xFE, 0xBD, 0x0C, 0x23, 0x3B, 0x25, +0x2F, 0x60, 0x49, 0xFE, 0xC0, 0x01, 0x39, 0x2D, 0x3B, 0x1B, 0x02, 0x13, 0x22, 0x2D, 0x1A, 0xFE, +0xC2, 0x00, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x00, 0x02, 0x0F, 0x02, 0xE4, 0x00, 0x03, 0x00, 0x20, +0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x03, 0x11, 0x33, 0x11, 0x07, 0x3E, 0x02, 0x33, 0x32, 0x16, +0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x26, 0x07, 0x22, 0x0E, 0x02, 0x15, 0x11, 0x23, 0x22, +0x22, 0x0C, 0x01, 0x0C, 0xD0, 0x67, 0x12, 0x0A, 0x3A, 0x50, 0x2A, 0x3C, 0x50, 0x28, 0x67, 0x18, +0x32, 0x25, 0x1E, 0x32, 0x25, 0x15, 0x33, 0x0D, 0x1A, 0x02, 0x51, 0x5A, 0x5A, 0xFD, 0xAF, 0x02, +0xE4, 0xFE, 0xBD, 0x0C, 0x23, 0x3B, 0x25, 0x2F, 0x60, 0x49, 0xFE, 0xC0, 0x01, 0x39, 0x2D, 0x3B, +0x1B, 0x02, 0x13, 0x22, 0x2D, 0x1A, 0xFE, 0xC2, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0x16, 0x02, 0x0F, +0x02, 0xE4, 0x06, 0x26, 0x01, 0x52, 0x00, 0x00, 0x00, 0x06, 0x03, 0x13, 0x30, 0x00, 0xFF, 0xFF, +0x00, 0x48, 0x00, 0x00, 0x02, 0x0F, 0x03, 0xA3, 0x06, 0x26, 0x01, 0x52, 0x00, 0x00, 0x00, 0x06, +0x03, 0x2C, 0x2F, 0x28, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0x32, 0x02, 0x0F, 0x02, 0xE4, 0x06, 0x26, +0x01, 0x52, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x30, 0x00, 0x00, 0x02, 0x00, 0x46, 0x00, 0x00, +0x00, 0xD0, 0x03, 0x03, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x03, 0x22, +0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x59, 0x67, 0x35, 0x21, 0x24, 0x25, +0x20, 0x21, 0x24, 0x25, 0x02, 0x0D, 0xFD, 0xF3, 0x02, 0x81, 0x22, 0x1F, 0x1D, 0x24, 0x22, 0x1F, +0x1D, 0x24, 0x00, 0x01, 0x00, 0x46, 0x00, 0x00, 0x00, 0xAD, 0x02, 0x0D, 0x00, 0x03, 0x00, 0x00, +0x73, 0x11, 0x33, 0x11, 0x46, 0x67, 0x02, 0x0D, 0xFD, 0xF3, 0xFF, 0xFF, 0x00, 0x10, 0x00, 0x00, +0x00, 0xE0, 0x03, 0x0E, 0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x00, 0x07, 0x02, 0xF8, 0xFF, 0x7E, +0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xD6, 0x00, 0x00, 0x01, 0x1A, 0x02, 0xF3, 0x06, 0x26, 0x01, 0x58, +0x00, 0x00, 0x00, 0x07, 0x02, 0xFF, 0xFF, 0x7E, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xE4, 0x00, 0x00, +0x01, 0x0C, 0x02, 0xF1, 0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x00, 0x07, 0x02, 0xFD, 0xFF, 0x7E, +0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xDA, 0x00, 0x00, 0x01, 0x16, 0x02, 0xF1, 0x06, 0x26, 0x01, 0x58, +0x00, 0x00, 0x00, 0x07, 0x02, 0xFC, 0xFF, 0x7E, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x6A, 0x00, 0x00, +0x01, 0x01, 0x03, 0x0E, 0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x00, 0x07, 0x03, 0x0A, 0xFF, 0x3B, +0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xCF, 0x00, 0x00, 0x01, 0x21, 0x03, 0x04, 0x06, 0x26, 0x01, 0x58, +0x00, 0x00, 0x00, 0x07, 0x02, 0xF2, 0xFF, 0x7E, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xD0, 0x00, 0x00, +0x01, 0x22, 0x03, 0xC3, 0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x00, 0x07, 0x02, 0xF3, 0xFF, 0x7F, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x33, 0x00, 0x00, 0x00, 0xBD, 0x03, 0x03, 0x06, 0x26, 0x01, 0x58, +0x00, 0x00, 0x00, 0x07, 0x02, 0xF5, 0xFF, 0x7E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x46, 0xFF, 0x32, +0x00, 0xD0, 0x03, 0x03, 0x06, 0x26, 0x01, 0x57, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x91, 0x00, +0xFF, 0xFF, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0xCC, 0x03, 0x0E, 0x06, 0x26, 0x01, 0x58, 0x00, 0x00, +0x00, 0x07, 0x02, 0xF7, 0xFF, 0x6A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x16, 0x00, 0x00, 0x00, 0xD9, +0x03, 0x15, 0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x00, 0x07, 0x03, 0x09, 0xFF, 0x7D, 0x00, 0x00, +0xFF, 0xFF, 0xFF, 0xD6, 0x00, 0x00, 0x01, 0x1A, 0x02, 0xFD, 0x06, 0x26, 0x01, 0x58, 0x00, 0x00, +0x00, 0x07, 0x03, 0x0B, 0xFF, 0x7E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x46, 0xFF, 0x3B, 0x01, 0xE7, +0x03, 0x03, 0x04, 0x26, 0x01, 0x57, 0x00, 0x00, 0x00, 0x07, 0x01, 0x69, 0x01, 0x16, 0x00, 0x00, +0xFF, 0xFF, 0xFF, 0xEA, 0x00, 0x00, 0x01, 0x06, 0x02, 0xCD, 0x06, 0x26, 0x01, 0x58, 0x00, 0x00, +0x00, 0x07, 0x03, 0x05, 0xFF, 0x7E, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xE6, 0xFF, 0x38, 0x00, 0xC0, +0x03, 0x03, 0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x00, 0x27, 0x02, 0xF5, 0xFF, 0x7E, 0x00, 0x00, +0x00, 0x07, 0x03, 0x12, 0xFF, 0x59, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xD6, 0x00, 0x00, 0x01, 0x19, +0x02, 0xEA, 0x06, 0x26, 0x01, 0x58, 0x00, 0x00, 0x00, 0x07, 0x03, 0x01, 0xFF, 0x7D, 0x00, 0x00, +0x00, 0x02, 0xFF, 0xE2, 0xFF, 0x3B, 0x00, 0xD1, 0x03, 0x03, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x00, +0x57, 0x27, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, 0x13, 0x22, 0x26, 0x35, +0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x09, 0x27, 0x27, 0x33, 0x1A, 0x67, 0x2D, 0x51, +0x4D, 0x21, 0x24, 0x25, 0x20, 0x21, 0x24, 0x25, 0xC5, 0x4F, 0x1B, 0x35, 0x27, 0x02, 0x0C, 0xFD, +0xDB, 0x33, 0x4E, 0x2C, 0x03, 0x46, 0x22, 0x1F, 0x1D, 0x24, 0x22, 0x1F, 0x1D, 0x24, 0x00, 0x01, +0xFF, 0xE1, 0xFF, 0x3B, 0x00, 0xBC, 0x02, 0x0D, 0x00, 0x0B, 0x00, 0x00, 0x57, 0x27, 0x32, 0x36, +0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, 0x08, 0x27, 0x27, 0x33, 0x1A, 0x67, 0x2E, 0x51, +0xC5, 0x4F, 0x1B, 0x35, 0x27, 0x02, 0x0C, 0xFD, 0xDB, 0x33, 0x4E, 0x2C, 0xFF, 0xFF, 0xFF, 0xE1, +0xFF, 0x3B, 0x01, 0x28, 0x02, 0xF1, 0x06, 0x26, 0x01, 0x6A, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFC, +0x90, 0x00, 0x00, 0x03, 0x00, 0x48, 0x00, 0x00, 0x02, 0x2E, 0x02, 0xE4, 0x00, 0x03, 0x00, 0x07, +0x00, 0x0B, 0x00, 0x00, 0x77, 0x27, 0x37, 0x33, 0x01, 0x11, 0x33, 0x11, 0x33, 0x27, 0x37, 0x01, +0xA6, 0x05, 0xFB, 0x8B, 0xFE, 0x21, 0x67, 0xFB, 0xC6, 0x49, 0x01, 0x01, 0xA4, 0x70, 0xF9, 0xFD, +0xF3, 0x02, 0xE4, 0xFD, 0x1C, 0xE7, 0x43, 0xFE, 0xD6, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0x0E, +0x02, 0x2E, 0x02, 0xE4, 0x06, 0x26, 0x01, 0x6C, 0x00, 0x00, 0x00, 0x06, 0x03, 0x10, 0x21, 0x00, +0x00, 0x03, 0x00, 0x48, 0xFF, 0xFF, 0x02, 0x14, 0x02, 0x0D, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, +0x00, 0x00, 0x77, 0x27, 0x13, 0x33, 0x01, 0x11, 0x33, 0x11, 0x33, 0x03, 0x37, 0x13, 0xA0, 0x05, +0xFB, 0x79, 0xFE, 0x39, 0x61, 0xF0, 0xC1, 0x45, 0xF7, 0x9A, 0x66, 0x01, 0x0D, 0xFD, 0xF3, 0x02, +0x0D, 0xFD, 0xF3, 0x01, 0x10, 0x2F, 0xFE, 0xC0, 0x00, 0x01, 0x00, 0x4A, 0x00, 0x00, 0x00, 0xB1, +0x02, 0xE4, 0x00, 0x03, 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x4A, 0x67, 0x02, 0xE4, 0xFD, 0x1C, +0xFF, 0xFF, 0x00, 0x1E, 0x00, 0x00, 0x01, 0x04, 0x03, 0xC0, 0x06, 0x26, 0x01, 0x6F, 0x00, 0x00, +0x00, 0x06, 0x03, 0x29, 0x97, 0x28, 0xFF, 0xFF, 0x00, 0x4A, 0x00, 0x00, 0x01, 0x7C, 0x02, 0xE4, +0x04, 0x26, 0x01, 0x6F, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFB, 0x38, 0x35, 0xFF, 0xFF, 0x00, 0x34, +0xFF, 0x0E, 0x00, 0xC8, 0x02, 0xE4, 0x06, 0x26, 0x01, 0x6F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x10, +0x84, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0x00, 0x00, 0x01, 0x75, 0x02, 0xE4, 0x04, 0x26, 0x01, 0x6F, +0x00, 0x00, 0x00, 0x07, 0x02, 0x69, 0x00, 0xBE, 0x01, 0x36, 0xFF, 0xFF, 0x00, 0x39, 0xFF, 0x32, +0x00, 0xC3, 0x02, 0xE4, 0x06, 0x26, 0x01, 0x6F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x84, 0x00, +0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0x3B, 0x01, 0xBE, 0x03, 0x03, 0x04, 0x26, 0x01, 0x6F, 0x00, 0x00, +0x00, 0x07, 0x01, 0x69, 0x00, 0xED, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xF1, 0xFF, 0x4E, 0x01, 0x0A, +0x02, 0xE4, 0x06, 0x26, 0x01, 0x6F, 0x00, 0x00, 0x00, 0x06, 0x03, 0x14, 0x83, 0x00, 0x00, 0x02, +0xFF, 0xFD, 0x00, 0x00, 0x01, 0x00, 0x02, 0xE4, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, 0x27, +0x37, 0x17, 0x03, 0x11, 0x33, 0x11, 0x1F, 0x22, 0xDF, 0x24, 0xB8, 0x67, 0x01, 0x24, 0x4D, 0x63, +0x4A, 0xFE, 0x76, 0x02, 0xE4, 0xFD, 0x1C, 0x00, 0x00, 0x01, 0x00, 0x46, 0x00, 0x00, 0x03, 0x57, +0x02, 0x16, 0x00, 0x31, 0x00, 0x00, 0x73, 0x11, 0x33, 0x15, 0x07, 0x3E, 0x03, 0x33, 0x32, 0x16, +0x16, 0x17, 0x27, 0x37, 0x3E, 0x03, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, +0x26, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, +0x15, 0x11, 0x46, 0x68, 0x13, 0x08, 0x23, 0x33, 0x3B, 0x1F, 0x2D, 0x44, 0x2C, 0x0A, 0x10, 0x07, +0x0B, 0x27, 0x32, 0x38, 0x1B, 0x3B, 0x4D, 0x27, 0x68, 0x17, 0x2E, 0x24, 0x1C, 0x31, 0x24, 0x14, +0x68, 0x18, 0x2E, 0x21, 0x1C, 0x30, 0x24, 0x14, 0x02, 0x0D, 0x70, 0x0C, 0x1A, 0x30, 0x25, 0x16, +0x1E, 0x3C, 0x2D, 0x04, 0x11, 0x17, 0x29, 0x20, 0x12, 0x30, 0x62, 0x49, 0xFE, 0xC5, 0x01, 0x35, +0x2D, 0x39, 0x1C, 0x13, 0x22, 0x2D, 0x1B, 0xFE, 0xC6, 0x01, 0x37, 0x29, 0x39, 0x1E, 0x13, 0x21, +0x2D, 0x1A, 0xFE, 0xC4, 0xFF, 0xFF, 0x00, 0x46, 0xFF, 0x32, 0x03, 0x57, 0x02, 0x16, 0x06, 0x26, +0x01, 0x78, 0x00, 0x00, 0x00, 0x07, 0x03, 0x0E, 0x00, 0xD3, 0x00, 0x00, 0x00, 0x01, 0x00, 0x48, +0x00, 0x00, 0x02, 0x0F, 0x02, 0x18, 0x00, 0x1C, 0x00, 0x00, 0x73, 0x11, 0x33, 0x15, 0x07, 0x3E, +0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x26, 0x07, 0x22, 0x0E, 0x02, +0x15, 0x11, 0x23, 0x22, 0x22, 0x48, 0x67, 0x12, 0x0A, 0x3A, 0x50, 0x2A, 0x3C, 0x50, 0x28, 0x67, +0x18, 0x32, 0x25, 0x1E, 0x32, 0x25, 0x15, 0x33, 0x0D, 0x1A, 0x02, 0x0D, 0x6C, 0x0C, 0x23, 0x3B, +0x25, 0x2F, 0x60, 0x49, 0xFE, 0xC0, 0x01, 0x39, 0x2D, 0x3B, 0x1B, 0x02, 0x13, 0x22, 0x2D, 0x1A, +0xFE, 0xC2, 0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, 0x02, 0x0F, 0x03, 0x0E, 0x06, 0x26, 0x01, 0x7A, +0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0x4E, 0x00, 0xFF, 0xFF, 0xFF, 0xC8, 0x00, 0x00, 0x02, 0x38, +0x02, 0xBC, 0x04, 0x26, 0x02, 0xA0, 0xA3, 0x00, 0x00, 0x06, 0x01, 0x7A, 0x29, 0x00, 0xFF, 0xFF, +0x00, 0x48, 0x00, 0x00, 0x02, 0x0F, 0x02, 0xF1, 0x06, 0x26, 0x01, 0x7A, 0x00, 0x00, 0x00, 0x06, +0x02, 0xFD, 0x4E, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0x0E, 0x02, 0x0F, 0x02, 0x18, 0x06, 0x26, +0x01, 0x7A, 0x00, 0x00, 0x00, 0x06, 0x03, 0x10, 0x30, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, +0x02, 0x0F, 0x03, 0x03, 0x06, 0x26, 0x01, 0x7A, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF5, 0x4E, 0x00, +0xFF, 0xFF, 0x00, 0x48, 0xFF, 0x32, 0x02, 0x0F, 0x02, 0x18, 0x06, 0x26, 0x01, 0x7A, 0x00, 0x00, +0x00, 0x06, 0x03, 0x0E, 0x30, 0x00, 0x00, 0x01, 0xFF, 0xE2, 0xFF, 0x3B, 0x02, 0x1D, 0x02, 0x18, +0x00, 0x22, 0x00, 0x00, 0x57, 0x27, 0x32, 0x3E, 0x02, 0x35, 0x11, 0x33, 0x15, 0x27, 0x3E, 0x02, +0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x26, 0x07, 0x22, 0x0E, 0x02, 0x15, +0x11, 0x14, 0x06, 0x06, 0x09, 0x27, 0x1D, 0x2B, 0x1D, 0x0F, 0x67, 0x0D, 0x0E, 0x39, 0x4B, 0x27, +0x3C, 0x50, 0x28, 0x67, 0x18, 0x31, 0x26, 0x1E, 0x32, 0x25, 0x15, 0x2D, 0x51, 0xC5, 0x4F, 0x0F, +0x1E, 0x2C, 0x1E, 0x02, 0x0C, 0x7F, 0x15, 0x20, 0x35, 0x20, 0x30, 0x5F, 0x49, 0xFE, 0xC0, 0x01, +0x39, 0x2E, 0x3A, 0x1B, 0x02, 0x13, 0x22, 0x2D, 0x1A, 0xFE, 0xAA, 0x33, 0x4E, 0x2C, 0xFF, 0xFF, +0x00, 0x48, 0xFF, 0x3B, 0x03, 0x24, 0x03, 0x03, 0x04, 0x26, 0x01, 0x7A, 0x00, 0x00, 0x00, 0x07, +0x01, 0x69, 0x02, 0x53, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0x4E, 0x02, 0x0F, 0x02, 0x18, +0x06, 0x26, 0x01, 0x7A, 0x00, 0x00, 0x00, 0x06, 0x03, 0x14, 0x2F, 0x00, 0xFF, 0xFF, 0x00, 0x48, +0x00, 0x00, 0x02, 0x0F, 0x02, 0xEA, 0x06, 0x26, 0x01, 0x7A, 0x00, 0x00, 0x00, 0x06, 0x03, 0x01, +0x4D, 0x00, 0x00, 0x01, 0x00, 0x48, 0xFF, 0x3B, 0x02, 0x0F, 0x02, 0x18, 0x00, 0x1F, 0x00, 0x00, +0x45, 0x27, 0x32, 0x36, 0x37, 0x11, 0x34, 0x26, 0x26, 0x07, 0x22, 0x0E, 0x02, 0x15, 0x11, 0x23, +0x11, 0x33, 0x15, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x14, 0x06, 0x06, 0x01, 0x5B, +0x27, 0x39, 0x3A, 0x01, 0x18, 0x32, 0x25, 0x1E, 0x32, 0x25, 0x15, 0x67, 0x67, 0x11, 0x37, 0x42, +0x22, 0x3C, 0x50, 0x28, 0x2E, 0x51, 0xC5, 0x4F, 0x3C, 0x3A, 0x01, 0x39, 0x2D, 0x3B, 0x1B, 0x02, +0x13, 0x22, 0x2D, 0x1A, 0xFE, 0xC2, 0x02, 0x0D, 0x52, 0x1A, 0x2A, 0x19, 0x2F, 0x60, 0x49, 0xFE, +0xA8, 0x33, 0x4E, 0x2C, 0x00, 0x02, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, 0x02, 0x18, 0x00, 0x0F, +0x00, 0x1F, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, +0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x27, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, +0x17, 0x06, 0x16, 0x16, 0x01, 0x34, 0x4D, 0x79, 0x46, 0x46, 0x79, 0x4D, 0x4C, 0x79, 0x46, 0x46, +0x79, 0x4C, 0x2F, 0x4A, 0x2A, 0x01, 0x01, 0x2A, 0x4A, 0x2F, 0x2F, 0x4B, 0x2A, 0x01, 0x01, 0x2A, +0x4B, 0x0A, 0x47, 0x7B, 0x4F, 0x4F, 0x7B, 0x47, 0x47, 0x7B, 0x4F, 0x4F, 0x7B, 0x47, 0x5E, 0x2F, +0x51, 0x33, 0x34, 0x51, 0x2E, 0x2F, 0x51, 0x33, 0x33, 0x51, 0x2F, 0x00, 0xFF, 0xFF, 0x00, 0x28, +0xFF, 0xF6, 0x02, 0x3F, 0x03, 0x0E, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, +0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, 0x02, 0xF3, 0x06, 0x26, 0x01, 0x86, +0x00, 0x00, 0x00, 0x06, 0x02, 0xFF, 0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, +0x02, 0xF1, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFD, 0x3A, 0x00, 0xFF, 0xFF, +0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, 0x02, 0xF1, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, +0x02, 0xFC, 0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x50, 0x03, 0x9F, 0x06, 0x26, +0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x02, 0xEE, 0x79, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0x32, +0x02, 0x3F, 0x02, 0xF1, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x26, 0x03, 0x0E, 0x3A, 0x00, +0x00, 0x06, 0x02, 0xFC, 0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, 0x03, 0x9F, +0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x02, 0xEF, 0x4F, 0x00, 0xFF, 0xFF, 0x00, 0x28, +0xFF, 0xF6, 0x02, 0x3F, 0x03, 0xA0, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF0, +0x6F, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, 0x03, 0x9E, 0x06, 0x26, 0x01, 0x86, +0x00, 0x00, 0x00, 0x06, 0x02, 0xF1, 0x39, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0xFF, 0xF6, 0x02, 0x3F, +0x03, 0x0E, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0A, 0xF7, 0x00, 0xFF, 0xFF, +0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, 0x03, 0x04, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, +0x02, 0xF2, 0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, 0x03, 0x86, 0x06, 0x26, +0x01, 0x86, 0x00, 0x00, 0x00, 0x26, 0x02, 0xF2, 0x3A, 0x00, 0x00, 0x07, 0x03, 0x05, 0x00, 0x3A, +0x00, 0xB9, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, 0x03, 0x86, 0x06, 0x26, 0x01, 0x86, +0x00, 0x00, 0x00, 0x26, 0x02, 0xF5, 0x3A, 0x00, 0x00, 0x07, 0x03, 0x05, 0x00, 0x3A, 0x00, 0xB9, +0xFF, 0xFF, 0x00, 0x28, 0xFF, 0x32, 0x02, 0x3F, 0x02, 0x18, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, +0x00, 0x06, 0x03, 0x0E, 0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, 0x03, 0x0E, +0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF7, 0x26, 0x00, 0xFF, 0xFF, 0x00, 0x28, +0xFF, 0xF6, 0x02, 0x3F, 0x03, 0x15, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x03, 0x09, +0x39, 0x00, 0x00, 0x02, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, 0x02, 0x7F, 0x00, 0x1D, 0x00, 0x2D, +0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, +0x33, 0x32, 0x36, 0x35, 0x33, 0x14, 0x06, 0x06, 0x07, 0x37, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, +0x27, 0x32, 0x36, 0x36, 0x27, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x17, 0x06, 0x16, 0x16, +0x01, 0x34, 0x4D, 0x79, 0x46, 0x46, 0x79, 0x4D, 0x16, 0x25, 0x0E, 0x09, 0x0F, 0x06, 0x28, 0x26, +0x52, 0x17, 0x33, 0x29, 0x07, 0x34, 0x3C, 0x46, 0x79, 0x4C, 0x2F, 0x4A, 0x2A, 0x01, 0x01, 0x2A, +0x4A, 0x2F, 0x2F, 0x4B, 0x2A, 0x01, 0x01, 0x2A, 0x4B, 0x0A, 0x47, 0x7B, 0x4F, 0x4F, 0x7B, 0x47, +0x06, 0x03, 0x02, 0x03, 0x3B, 0x3A, 0x2D, 0x4A, 0x31, 0x09, 0x1A, 0x24, 0x74, 0x49, 0x4F, 0x7B, +0x47, 0x5E, 0x2F, 0x51, 0x33, 0x34, 0x51, 0x2E, 0x2F, 0x51, 0x33, 0x33, 0x51, 0x2F, 0xFF, 0xFF, +0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, 0x03, 0x0E, 0x06, 0x26, 0x01, 0x97, 0x00, 0x00, 0x00, 0x06, +0x02, 0xF8, 0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0x32, 0x02, 0x3F, 0x02, 0x7F, 0x06, 0x26, +0x01, 0x97, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, +0x02, 0x3F, 0x03, 0x0E, 0x06, 0x26, 0x01, 0x97, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF7, 0x26, 0x00, +0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, 0x03, 0x15, 0x06, 0x26, 0x01, 0x97, 0x00, 0x00, +0x00, 0x06, 0x03, 0x09, 0x39, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, 0x02, 0xEA, +0x06, 0x26, 0x01, 0x97, 0x00, 0x00, 0x00, 0x06, 0x03, 0x01, 0x39, 0x00, 0xFF, 0xFF, 0x00, 0x28, +0xFF, 0xF6, 0x02, 0x3F, 0x03, 0x0E, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFA, +0x39, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, 0x02, 0xFD, 0x06, 0x26, 0x01, 0x86, +0x00, 0x00, 0x00, 0x06, 0x03, 0x0B, 0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, +0x02, 0xCD, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x03, 0x05, 0x3A, 0x00, 0xFF, 0xFF, +0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, 0x03, 0x9C, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, +0x03, 0x08, 0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, 0x03, 0x9C, 0x06, 0x26, +0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x03, 0x07, 0x3A, 0x00, 0x00, 0x03, 0x00, 0x28, 0xFF, 0x38, +0x02, 0x3F, 0x02, 0x18, 0x00, 0x15, 0x00, 0x25, 0x00, 0x35, 0x00, 0x00, 0x45, 0x22, 0x26, 0x35, +0x34, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, +0x02, 0x27, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, +0x06, 0x27, 0x32, 0x36, 0x36, 0x27, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x17, 0x06, 0x16, +0x16, 0x01, 0x7A, 0x32, 0x38, 0x32, 0x53, 0x32, 0x09, 0x2E, 0x37, 0x11, 0x11, 0x0B, 0x13, 0x08, +0x38, 0x09, 0x21, 0x2D, 0x60, 0x4D, 0x79, 0x46, 0x46, 0x79, 0x4D, 0x4C, 0x79, 0x46, 0x46, 0x79, +0x4C, 0x2F, 0x4A, 0x2A, 0x01, 0x01, 0x2A, 0x4A, 0x2F, 0x2F, 0x4B, 0x2A, 0x01, 0x01, 0x2A, 0x4B, +0xC8, 0x3C, 0x29, 0x2D, 0x3F, 0x31, 0x16, 0x28, 0x1F, 0x36, 0x24, 0x11, 0x19, 0x0D, 0x0C, 0x28, +0x10, 0x1D, 0x11, 0xBE, 0x47, 0x7B, 0x4F, 0x4F, 0x7B, 0x47, 0x47, 0x7B, 0x4F, 0x4F, 0x7B, 0x47, +0x5E, 0x2F, 0x51, 0x33, 0x34, 0x51, 0x2E, 0x2F, 0x51, 0x33, 0x33, 0x51, 0x2F, 0x00, 0x00, 0x03, +0x00, 0x28, 0xFF, 0xDD, 0x02, 0x3F, 0x02, 0x21, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x00, +0x57, 0x27, 0x01, 0x17, 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, +0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x27, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, +0x17, 0x06, 0x16, 0x16, 0x6B, 0x42, 0x01, 0xC5, 0x43, 0xFD, 0x4D, 0x79, 0x46, 0x46, 0x79, 0x4D, +0x4C, 0x79, 0x46, 0x46, 0x79, 0x4C, 0x2F, 0x4A, 0x2A, 0x01, 0x01, 0x2A, 0x4A, 0x2F, 0x2F, 0x4B, +0x2A, 0x01, 0x01, 0x2A, 0x4B, 0x23, 0x30, 0x02, 0x14, 0x31, 0xFE, 0x06, 0x47, 0x7B, 0x4F, 0x4F, +0x7B, 0x47, 0x47, 0x7B, 0x4F, 0x4F, 0x7B, 0x47, 0x5E, 0x2F, 0x51, 0x33, 0x34, 0x51, 0x2E, 0x2F, +0x51, 0x33, 0x33, 0x51, 0x2F, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xDD, 0x02, 0x3F, 0x03, 0x0E, +0x06, 0x26, 0x01, 0xA3, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0x3A, 0x00, 0xFF, 0xFF, 0x00, 0x28, +0xFF, 0xF6, 0x02, 0x3F, 0x02, 0xEA, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x03, 0x01, +0x39, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, 0x03, 0xB0, 0x06, 0x26, 0x01, 0x86, +0x00, 0x00, 0x00, 0x06, 0x03, 0x03, 0x39, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, +0x03, 0x9F, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x06, 0x03, 0x02, 0x39, 0x00, 0xFF, 0xFF, +0x00, 0x28, 0xFF, 0xF6, 0x02, 0x3F, 0x03, 0x86, 0x06, 0x26, 0x01, 0x86, 0x00, 0x00, 0x00, 0x26, +0x03, 0x01, 0x39, 0x00, 0x00, 0x07, 0x03, 0x05, 0x00, 0x3A, 0x00, 0xB9, 0x00, 0x02, 0x00, 0x28, +0xFF, 0xF6, 0x03, 0xD2, 0x02, 0x18, 0x00, 0x39, 0x00, 0x49, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, +0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, +0x07, 0x07, 0x21, 0x37, 0x21, 0x07, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, +0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x27, 0x37, 0x0E, +0x02, 0x27, 0x32, 0x36, 0x36, 0x27, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x17, 0x06, 0x16, +0x16, 0x01, 0x34, 0x4D, 0x79, 0x46, 0x46, 0x79, 0x4D, 0x33, 0x57, 0x46, 0x17, 0x20, 0x1A, 0x44, +0x54, 0x30, 0x35, 0x5A, 0x42, 0x24, 0x01, 0x01, 0xFE, 0x5E, 0x04, 0x01, 0x63, 0x2D, 0x27, 0x41, +0x27, 0x24, 0x39, 0x29, 0x15, 0x29, 0x52, 0x3D, 0x27, 0x43, 0x27, 0x34, 0x18, 0x45, 0x4D, 0x25, +0x36, 0x5D, 0x48, 0x17, 0x20, 0x17, 0x46, 0x57, 0x32, 0x2F, 0x4A, 0x2A, 0x01, 0x01, 0x2A, 0x4A, +0x2F, 0x2F, 0x4B, 0x2A, 0x01, 0x01, 0x2A, 0x4B, 0x0A, 0x47, 0x7B, 0x4F, 0x4F, 0x7B, 0x47, 0x20, +0x3B, 0x28, 0x29, 0x3A, 0x20, 0x26, 0x44, 0x5D, 0x37, 0x2C, 0x52, 0x2D, 0x2B, 0x25, 0x38, 0x1F, +0x18, 0x2E, 0x41, 0x29, 0x33, 0x53, 0x30, 0x1A, 0x22, 0x49, 0x17, 0x25, 0x15, 0x1F, 0x3A, 0x28, +0x01, 0x28, 0x3A, 0x20, 0x5E, 0x2F, 0x51, 0x33, 0x34, 0x51, 0x2E, 0x2F, 0x51, 0x33, 0x33, 0x51, +0x2F, 0x00, 0x00, 0x02, 0x00, 0x48, 0xFF, 0x24, 0x02, 0x4F, 0x02, 0x16, 0x00, 0x16, 0x00, 0x26, +0x00, 0x00, 0x57, 0x11, 0x33, 0x15, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, +0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x37, 0x11, 0x13, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, +0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x48, 0x68, 0x10, 0x06, 0x38, 0x51, 0x2B, 0x47, +0x6E, 0x40, 0x3F, 0x6E, 0x45, 0x2E, 0x56, 0x3C, 0x07, 0x1A, 0x9C, 0x2E, 0x48, 0x2A, 0x29, 0x48, +0x2F, 0x2F, 0x48, 0x2A, 0x2A, 0x48, 0xDC, 0x02, 0xE9, 0x78, 0x09, 0x1E, 0x37, 0x23, 0x46, 0x7A, +0x4F, 0x4E, 0x7B, 0x47, 0x25, 0x3A, 0x1F, 0x0E, 0xFE, 0xA1, 0x01, 0x32, 0x2E, 0x50, 0x33, 0x33, +0x4F, 0x2E, 0x2D, 0x50, 0x33, 0x33, 0x50, 0x2E, 0x00, 0x02, 0x00, 0x48, 0xFF, 0x24, 0x02, 0x4F, +0x02, 0xE4, 0x00, 0x17, 0x00, 0x27, 0x00, 0x00, 0x57, 0x11, 0x33, 0x11, 0x27, 0x3E, 0x02, 0x33, +0x32, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x37, 0x11, 0x13, 0x32, +0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x48, 0x68, +0x10, 0x06, 0x38, 0x51, 0x2B, 0x35, 0x59, 0x43, 0x24, 0x3F, 0x6E, 0x45, 0x2E, 0x56, 0x3C, 0x07, +0x1A, 0x9C, 0x2E, 0x48, 0x2A, 0x29, 0x48, 0x2F, 0x2F, 0x48, 0x2A, 0x2A, 0x48, 0xDC, 0x03, 0xC0, +0xFE, 0xB1, 0x09, 0x1E, 0x37, 0x23, 0x28, 0x49, 0x63, 0x3B, 0x4E, 0x7B, 0x47, 0x25, 0x3A, 0x1F, +0x0E, 0xFE, 0xA1, 0x01, 0x32, 0x2E, 0x50, 0x33, 0x33, 0x4F, 0x2E, 0x2D, 0x50, 0x33, 0x33, 0x50, +0x2E, 0x00, 0x00, 0x02, 0x00, 0x28, 0xFF, 0x24, 0x02, 0x2E, 0x02, 0x18, 0x00, 0x18, 0x00, 0x28, +0x00, 0x00, 0x45, 0x11, 0x33, 0x14, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, +0x33, 0x32, 0x1E, 0x02, 0x15, 0x07, 0x35, 0x33, 0x11, 0x01, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, +0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0xC7, 0x14, 0x20, 0x36, 0x42, 0x23, +0x47, 0x70, 0x41, 0x40, 0x6F, 0x46, 0x27, 0x47, 0x39, 0x21, 0x1E, 0x67, 0xFE, 0xFD, 0x2F, 0x48, +0x29, 0x29, 0x48, 0x2F, 0x2F, 0x48, 0x29, 0x29, 0x48, 0xDC, 0x01, 0x59, 0x18, 0x2F, 0x28, 0x18, +0x47, 0x7B, 0x4F, 0x4F, 0x7B, 0x47, 0x1A, 0x2A, 0x33, 0x1A, 0x02, 0x89, 0xFD, 0x16, 0x01, 0x31, +0x2E, 0x50, 0x34, 0x34, 0x51, 0x2E, 0x2F, 0x51, 0x33, 0x33, 0x51, 0x2E, 0x00, 0x01, 0x00, 0x48, +0x00, 0x00, 0x01, 0x89, 0x02, 0x18, 0x00, 0x15, 0x00, 0x00, 0x73, 0x11, 0x33, 0x15, 0x27, 0x3E, +0x02, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x11, 0x48, 0x68, +0x0A, 0x0B, 0x35, 0x45, 0x25, 0x11, 0x1F, 0x09, 0x1B, 0x0C, 0x1D, 0x0E, 0x1B, 0x31, 0x25, 0x16, +0x02, 0x0D, 0xA5, 0x28, 0x26, 0x3E, 0x24, 0x06, 0x04, 0x70, 0x05, 0x07, 0x15, 0x25, 0x31, 0x1D, +0xFE, 0xDE, 0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, 0x01, 0x89, 0x03, 0x0E, 0x06, 0x26, 0x01, 0xAD, +0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0xF8, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, 0x01, 0x89, +0x02, 0xF1, 0x06, 0x26, 0x01, 0xAD, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFD, 0xF8, 0x00, 0xFF, 0xFF, +0x00, 0x32, 0xFF, 0x0E, 0x01, 0x89, 0x02, 0x18, 0x06, 0x26, 0x01, 0xAD, 0x00, 0x00, 0x00, 0x06, +0x03, 0x10, 0x82, 0x00, 0xFF, 0xFF, 0xFF, 0xE4, 0x00, 0x00, 0x01, 0x89, 0x03, 0x0E, 0x06, 0x26, +0x01, 0xAD, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0A, 0xB5, 0x00, 0xFF, 0xFF, 0x00, 0x37, 0xFF, 0x32, +0x01, 0x89, 0x02, 0x18, 0x06, 0x26, 0x01, 0xAD, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x82, 0x00, +0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, 0x01, 0x94, 0x02, 0xFD, 0x06, 0x26, 0x01, 0xAD, 0x00, 0x00, +0x00, 0x06, 0x03, 0x0B, 0xF8, 0x00, 0xFF, 0xFF, 0xFF, 0xEF, 0xFF, 0x4E, 0x01, 0x89, 0x02, 0x18, +0x06, 0x26, 0x01, 0xAD, 0x00, 0x00, 0x00, 0x06, 0x03, 0x14, 0x81, 0x00, 0x00, 0x01, 0x00, 0x28, +0xFF, 0xF6, 0x01, 0xB5, 0x02, 0x18, 0x00, 0x39, 0x00, 0x00, 0x57, 0x22, 0x26, 0x27, 0x37, 0x16, +0x16, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, 0x27, 0x26, 0x26, +0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, +0x15, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, +0xF7, 0x42, 0x6A, 0x23, 0x46, 0x1E, 0x47, 0x2D, 0x12, 0x1F, 0x17, 0x0C, 0x13, 0x0A, 0x2B, 0x22, +0x3A, 0x4A, 0x14, 0x0F, 0x0E, 0x1D, 0x33, 0x45, 0x27, 0x25, 0x49, 0x3E, 0x15, 0x3B, 0x13, 0x2D, +0x2E, 0x13, 0x15, 0x22, 0x17, 0x0C, 0x01, 0x0B, 0x0A, 0x0B, 0x2C, 0x22, 0x32, 0x41, 0x13, 0x14, +0x10, 0x33, 0x56, 0x0A, 0x2E, 0x2D, 0x3C, 0x23, 0x1F, 0x09, 0x12, 0x19, 0x0F, 0x1A, 0x10, 0x07, +0x11, 0x09, 0x0F, 0x26, 0x18, 0x13, 0x2D, 0x1B, 0x21, 0x37, 0x29, 0x16, 0x14, 0x26, 0x1A, 0x41, +0x13, 0x1D, 0x10, 0x08, 0x10, 0x18, 0x0F, 0x0D, 0x17, 0x08, 0x08, 0x12, 0x08, 0x0D, 0x1F, 0x14, +0x13, 0x32, 0x1F, 0x2D, 0x47, 0x28, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x01, 0xB5, 0x03, 0x0E, +0x06, 0x26, 0x01, 0xB5, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0xF6, 0x00, 0xFF, 0xFF, 0x00, 0x28, +0xFF, 0xF6, 0x01, 0xB5, 0x03, 0x24, 0x06, 0x26, 0x01, 0xB5, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF9, +0x06, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x01, 0xB5, 0x02, 0xF1, 0x06, 0x26, 0x01, 0xB5, +0x00, 0x00, 0x00, 0x06, 0x02, 0xFD, 0xF6, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x01, 0xB5, +0x03, 0x84, 0x06, 0x26, 0x01, 0xB5, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFE, 0xF6, 0x00, 0xFF, 0xFF, +0x00, 0x28, 0xFF, 0x0B, 0x01, 0xB5, 0x02, 0x18, 0x06, 0x26, 0x01, 0xB5, 0x00, 0x00, 0x00, 0x06, +0x03, 0x11, 0xFE, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x01, 0xB5, 0x02, 0xF1, 0x06, 0x26, +0x01, 0xB5, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFC, 0xF6, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0x0E, +0x01, 0xB5, 0x02, 0x18, 0x06, 0x26, 0x01, 0xB5, 0x00, 0x00, 0x00, 0x06, 0x03, 0x10, 0xFF, 0x00, +0xFF, 0xFF, 0x00, 0x28, 0xFF, 0xF6, 0x01, 0xB5, 0x03, 0x03, 0x06, 0x26, 0x01, 0xB5, 0x00, 0x00, +0x00, 0x06, 0x02, 0xF5, 0xF6, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0x32, 0x01, 0xB5, 0x02, 0x18, +0x06, 0x26, 0x01, 0xB5, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0xFF, 0x00, 0xFF, 0xFF, 0x00, 0x28, +0xFF, 0x32, 0x01, 0xB5, 0x03, 0x03, 0x06, 0x26, 0x01, 0xB5, 0x00, 0x00, 0x00, 0x26, 0x03, 0x0E, +0xFF, 0x00, 0x00, 0x06, 0x02, 0xF5, 0xF6, 0x00, 0x00, 0x02, 0x00, 0x2D, 0xFF, 0xF6, 0x02, 0x6E, +0x02, 0xDE, 0x00, 0x33, 0x00, 0x37, 0x00, 0x00, 0x45, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, +0x32, 0x36, 0x35, 0x34, 0x2E, 0x02, 0x27, 0x35, 0x3E, 0x03, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, +0x15, 0x11, 0x23, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, +0x27, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x06, 0x01, 0x35, 0x33, 0x15, 0x01, 0xA6, 0x30, 0x48, 0x1B, +0x34, 0x1B, 0x2E, 0x18, 0x2E, 0x37, 0x15, 0x2D, 0x44, 0x2F, 0x1D, 0x2A, 0x1C, 0x0E, 0x39, 0x32, +0x39, 0x43, 0x61, 0x37, 0x65, 0x45, 0x3D, 0x59, 0x31, 0x1A, 0x2F, 0x1F, 0x02, 0x27, 0x40, 0x2F, +0x19, 0x34, 0x5A, 0xFE, 0x4D, 0x87, 0x0A, 0x21, 0x22, 0x37, 0x18, 0x14, 0x44, 0x35, 0x27, 0x3E, +0x31, 0x22, 0x0C, 0x41, 0x0C, 0x1B, 0x1D, 0x1F, 0x10, 0x25, 0x2A, 0x4E, 0x40, 0xFE, 0x0A, 0x01, +0xF3, 0x46, 0x6A, 0x3B, 0x29, 0x48, 0x2F, 0x1B, 0x34, 0x2A, 0x0E, 0x04, 0x0C, 0x2E, 0x3F, 0x4C, +0x2B, 0x3D, 0x60, 0x38, 0x01, 0x9E, 0x5D, 0x5D, 0x00, 0x02, 0x00, 0x1C, 0x00, 0x00, 0x01, 0x6A, +0x02, 0x93, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, +0x89, 0x67, 0xD4, 0x01, 0x4E, 0x02, 0x93, 0xFD, 0x6D, 0x01, 0xA9, 0x64, 0x64, 0x00, 0x00, 0x03, +0x00, 0x1C, 0x00, 0x00, 0x01, 0x6A, 0x02, 0x93, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, +0x77, 0x35, 0x21, 0x15, 0x07, 0x11, 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x3A, 0x01, 0x0C, 0xBD, +0x67, 0xD4, 0x01, 0x4E, 0xDA, 0x5A, 0x5A, 0xDA, 0x02, 0x93, 0xFD, 0x6D, 0x01, 0xA9, 0x64, 0x64, +0xFF, 0xFF, 0x00, 0x1C, 0x00, 0x00, 0x01, 0xB5, 0x03, 0x13, 0x06, 0x26, 0x01, 0xC1, 0x00, 0x00, +0x00, 0x06, 0x02, 0xFB, 0x71, 0x64, 0xFF, 0xFF, 0x00, 0x1C, 0xFF, 0x0B, 0x01, 0x6A, 0x02, 0x93, +0x06, 0x26, 0x01, 0xC1, 0x00, 0x00, 0x00, 0x06, 0x03, 0x11, 0xC5, 0x00, 0xFF, 0xFF, 0x00, 0x1C, +0xFF, 0x0E, 0x01, 0x6A, 0x02, 0x93, 0x06, 0x26, 0x01, 0xC1, 0x00, 0x00, 0x00, 0x06, 0x03, 0x10, +0xC6, 0x00, 0xFF, 0xFF, 0x00, 0x17, 0x00, 0x00, 0x01, 0x6A, 0x03, 0x5B, 0x06, 0x26, 0x01, 0xC1, +0x00, 0x00, 0x00, 0x06, 0x02, 0xF2, 0xC6, 0x57, 0xFF, 0xFF, 0x00, 0x1C, 0xFF, 0x32, 0x01, 0x6A, +0x02, 0x93, 0x06, 0x26, 0x01, 0xC1, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0xC6, 0x00, 0xFF, 0xFF, +0x00, 0x1C, 0xFF, 0x4E, 0x01, 0x6A, 0x02, 0x93, 0x06, 0x26, 0x01, 0xC1, 0x00, 0x00, 0x00, 0x06, +0x03, 0x14, 0xC5, 0x00, 0x00, 0x01, 0x00, 0x48, 0xFF, 0xF6, 0x02, 0x15, 0x02, 0x0D, 0x00, 0x19, +0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, +0x02, 0x35, 0x11, 0x33, 0x11, 0x23, 0x35, 0x37, 0x0E, 0x02, 0x01, 0x00, 0x38, 0x53, 0x2D, 0x67, +0x1D, 0x37, 0x27, 0x1D, 0x30, 0x23, 0x14, 0x67, 0x67, 0x12, 0x0C, 0x39, 0x4E, 0x0A, 0x34, 0x5E, +0x41, 0x01, 0x44, 0xFE, 0xD8, 0x2E, 0x43, 0x24, 0x13, 0x22, 0x30, 0x1C, 0x01, 0x3C, 0xFD, 0xF3, +0x6E, 0x0C, 0x25, 0x3C, 0x23, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0xF6, 0x02, 0x15, 0x03, 0x0E, +0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0x35, 0x00, 0xFF, 0xFF, 0x00, 0x48, +0xFF, 0xF6, 0x02, 0x15, 0x02, 0xF3, 0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFF, +0x35, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0xF6, 0x02, 0x15, 0x02, 0xF1, 0x06, 0x26, 0x01, 0xC9, +0x00, 0x00, 0x00, 0x06, 0x02, 0xFD, 0x35, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0xF6, 0x02, 0x15, +0x02, 0xF1, 0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFC, 0x35, 0x00, 0xFF, 0xFF, +0x00, 0x21, 0xFF, 0xF6, 0x02, 0x15, 0x03, 0x0E, 0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, +0x03, 0x0A, 0xF2, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0xF6, 0x02, 0x15, 0x03, 0x04, 0x06, 0x26, +0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF2, 0x35, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0x32, +0x02, 0x15, 0x02, 0x0D, 0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, 0x35, 0x00, +0xFF, 0xFF, 0x00, 0x48, 0xFF, 0xF6, 0x02, 0x15, 0x03, 0x0E, 0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, +0x00, 0x06, 0x02, 0xF7, 0x21, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0xF6, 0x02, 0x15, 0x03, 0x15, +0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, 0x03, 0x09, 0x34, 0x00, 0x00, 0x01, 0x00, 0x48, +0xFF, 0xF6, 0x02, 0x62, 0x02, 0x7F, 0x00, 0x23, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x11, +0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x11, 0x32, 0x3E, 0x02, 0x35, 0x33, +0x14, 0x06, 0x06, 0x07, 0x37, 0x11, 0x23, 0x35, 0x17, 0x0E, 0x02, 0x01, 0x00, 0x38, 0x53, 0x2D, +0x67, 0x1D, 0x37, 0x27, 0x1D, 0x30, 0x23, 0x14, 0x19, 0x25, 0x18, 0x0C, 0x52, 0x15, 0x2F, 0x27, +0x1E, 0x67, 0x0D, 0x0E, 0x39, 0x4A, 0x0A, 0x34, 0x5E, 0x41, 0x01, 0x44, 0xFE, 0xD8, 0x2E, 0x43, +0x24, 0x13, 0x22, 0x30, 0x1C, 0x01, 0x3C, 0x0E, 0x1D, 0x2B, 0x1C, 0x28, 0x44, 0x31, 0x0C, 0x39, +0xFD, 0xF1, 0x81, 0x14, 0x22, 0x36, 0x1F, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0xF6, 0x02, 0x62, +0x03, 0x0E, 0x06, 0x26, 0x01, 0xD3, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0x35, 0x00, 0xFF, 0xFF, +0x00, 0x48, 0xFF, 0x32, 0x02, 0x62, 0x02, 0x7F, 0x06, 0x26, 0x01, 0xD3, 0x00, 0x00, 0x00, 0x06, +0x03, 0x0E, 0x35, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0xF6, 0x02, 0x62, 0x03, 0x0E, 0x06, 0x26, +0x01, 0xD3, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF7, 0x21, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0xF6, +0x02, 0x62, 0x03, 0x15, 0x06, 0x26, 0x01, 0xD3, 0x00, 0x00, 0x00, 0x06, 0x03, 0x09, 0x34, 0x00, +0xFF, 0xFF, 0x00, 0x48, 0xFF, 0xF6, 0x02, 0x62, 0x02, 0xEA, 0x06, 0x26, 0x01, 0xD3, 0x00, 0x00, +0x00, 0x06, 0x03, 0x01, 0x34, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0xF6, 0x02, 0x15, 0x03, 0x0E, +0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFA, 0x34, 0x00, 0xFF, 0xFF, 0x00, 0x48, +0xFF, 0xF6, 0x02, 0x15, 0x02, 0xFD, 0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0B, +0x35, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0xF6, 0x02, 0x15, 0x02, 0xCD, 0x06, 0x26, 0x01, 0xC9, +0x00, 0x00, 0x00, 0x06, 0x03, 0x05, 0x35, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0xF6, 0x02, 0x15, +0x03, 0x8B, 0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x26, 0x03, 0x05, 0x35, 0x00, 0x00, 0x07, +0x02, 0xF2, 0x00, 0x35, 0x00, 0x87, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0x38, 0x02, 0x28, 0x02, 0x0D, +0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x07, 0x03, 0x12, 0x00, 0xC1, 0x00, 0x00, 0xFF, 0xFF, +0x00, 0x48, 0xFF, 0xF6, 0x02, 0x15, 0x03, 0x2F, 0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, +0x03, 0x00, 0x34, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0xF6, 0x02, 0x15, 0x02, 0xEA, 0x06, 0x26, +0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, 0x03, 0x01, 0x34, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0xFF, 0xF6, +0x02, 0x15, 0x03, 0xB0, 0x06, 0x26, 0x01, 0xC9, 0x00, 0x00, 0x00, 0x06, 0x03, 0x03, 0x34, 0x00, +0x00, 0x01, 0x00, 0x16, 0x00, 0x00, 0x02, 0x27, 0x02, 0x0D, 0x00, 0x07, 0x00, 0x00, 0x73, 0x03, +0x33, 0x13, 0x07, 0x13, 0x33, 0x03, 0xF4, 0xDE, 0x6F, 0xA0, 0x13, 0xAB, 0x6A, 0xE9, 0x02, 0x0D, +0xFE, 0x77, 0x09, 0x01, 0x92, 0xFD, 0xF3, 0x00, 0x00, 0x01, 0x00, 0x16, 0x00, 0x00, 0x03, 0x0A, +0x02, 0x0E, 0x00, 0x0F, 0x00, 0x00, 0x73, 0x03, 0x37, 0x13, 0x27, 0x13, 0x33, 0x13, 0x07, 0x13, +0x33, 0x03, 0x23, 0x03, 0x17, 0x03, 0xC9, 0xB3, 0x68, 0x80, 0x17, 0x8B, 0x3E, 0x8C, 0x1B, 0x81, +0x68, 0xB1, 0x47, 0x92, 0x17, 0x88, 0x02, 0x0D, 0x01, 0xFE, 0x77, 0x02, 0x01, 0x33, 0xFE, 0xCC, +0x02, 0x01, 0x89, 0xFD, 0xF3, 0x01, 0x4E, 0x03, 0xFE, 0xB5, 0xFF, 0xFF, 0x00, 0x16, 0x00, 0x00, +0x03, 0x0A, 0x03, 0x0E, 0x06, 0x26, 0x01, 0xE2, 0x00, 0x00, 0x00, 0x07, 0x02, 0xF8, 0x00, 0x96, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x16, 0x00, 0x00, 0x03, 0x0A, 0x02, 0xF1, 0x06, 0x26, 0x01, 0xE2, +0x00, 0x00, 0x00, 0x07, 0x02, 0xFC, 0x00, 0x96, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x16, 0x00, 0x00, +0x03, 0x0A, 0x03, 0x04, 0x06, 0x26, 0x01, 0xE2, 0x00, 0x00, 0x00, 0x07, 0x02, 0xF2, 0x00, 0x96, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x16, 0x00, 0x00, 0x03, 0x0A, 0x03, 0x0E, 0x06, 0x26, 0x01, 0xE2, +0x00, 0x00, 0x00, 0x07, 0x02, 0xF7, 0x00, 0x82, 0x00, 0x00, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, +0x02, 0x23, 0x02, 0x0D, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, 0x61, 0x27, 0x27, 0x03, +0x33, 0x17, 0x17, 0x13, 0x21, 0x13, 0x17, 0x07, 0x37, 0x27, 0x37, 0x33, 0x01, 0xA5, 0xAA, 0x0F, +0xDD, 0x82, 0xA7, 0x11, 0xDA, 0xFD, 0xED, 0xCF, 0x3D, 0x92, 0xC5, 0x39, 0x81, 0x7A, 0xDD, 0x13, +0x01, 0x1D, 0xDA, 0x16, 0xFE, 0xE3, 0x01, 0x0E, 0x49, 0xC5, 0xFE, 0x48, 0xC7, 0x00, 0x00, 0x01, +0x00, 0x05, 0xFF, 0x1A, 0x02, 0x40, 0x02, 0x0D, 0x00, 0x10, 0x00, 0x00, 0x57, 0x37, 0x17, 0x01, +0x33, 0x13, 0x16, 0x16, 0x17, 0x07, 0x36, 0x36, 0x37, 0x13, 0x33, 0x03, 0x07, 0xA0, 0x6A, 0x01, +0xFE, 0xFA, 0x78, 0xA4, 0x05, 0x0E, 0x05, 0x1A, 0x08, 0x0F, 0x07, 0x89, 0x7A, 0xD8, 0x59, 0xE6, +0xF5, 0x52, 0x02, 0x50, 0xFE, 0x7E, 0x0A, 0x29, 0x14, 0x06, 0x15, 0x2A, 0x15, 0x01, 0x7B, 0xFD, +0xF3, 0xE6, 0xFF, 0xFF, 0x00, 0x05, 0xFF, 0x1A, 0x02, 0x40, 0x03, 0x0E, 0x06, 0x26, 0x01, 0xE8, +0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0x29, 0x00, 0xFF, 0xFF, 0x00, 0x05, 0xFF, 0x1A, 0x02, 0x40, +0x02, 0xF1, 0x06, 0x26, 0x01, 0xE8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFC, 0x29, 0x00, 0xFF, 0xFF, +0x00, 0x05, 0xFF, 0x1A, 0x02, 0x40, 0x03, 0x04, 0x06, 0x26, 0x01, 0xE8, 0x00, 0x00, 0x00, 0x06, +0x02, 0xF2, 0x29, 0x00, 0xFF, 0xFF, 0x00, 0x05, 0xFF, 0x1A, 0x02, 0x40, 0x03, 0x03, 0x06, 0x26, +0x01, 0xE8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF5, 0x29, 0x00, 0xFF, 0xFF, 0x00, 0x05, 0xFF, 0x1A, +0x02, 0x40, 0x02, 0x0D, 0x06, 0x26, 0x01, 0xE8, 0x00, 0x00, 0x00, 0x07, 0x03, 0x0E, 0x00, 0xDE, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x05, 0xFF, 0x1A, 0x02, 0x40, 0x03, 0x0E, 0x06, 0x26, 0x01, 0xE8, +0x00, 0x00, 0x00, 0x06, 0x02, 0xF7, 0x15, 0x00, 0xFF, 0xFF, 0x00, 0x05, 0xFF, 0x1A, 0x02, 0x40, +0x03, 0x15, 0x06, 0x26, 0x01, 0xE8, 0x00, 0x00, 0x00, 0x06, 0x03, 0x09, 0x28, 0x00, 0xFF, 0xFF, +0x00, 0x05, 0xFF, 0x1A, 0x02, 0x40, 0x02, 0xCD, 0x06, 0x26, 0x01, 0xE8, 0x00, 0x00, 0x00, 0x06, +0x03, 0x05, 0x29, 0x00, 0xFF, 0xFF, 0x00, 0x05, 0xFF, 0x1A, 0x02, 0x40, 0x02, 0xEA, 0x06, 0x26, +0x01, 0xE8, 0x00, 0x00, 0x00, 0x06, 0x03, 0x01, 0x28, 0x00, 0x00, 0x01, 0x00, 0x32, 0x00, 0x00, +0x01, 0xB7, 0x02, 0x0D, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x35, 0x01, 0x15, 0x21, 0x35, 0x21, 0x15, +0x01, 0x27, 0x21, 0x15, 0x32, 0x01, 0x0F, 0xFE, 0xF1, 0x01, 0x7F, 0xFE, 0xF5, 0x04, 0x01, 0x15, +0x56, 0x01, 0x6A, 0x0C, 0x59, 0x54, 0xFE, 0x9B, 0x05, 0x59, 0xFF, 0xFF, 0x00, 0x32, 0x00, 0x00, +0x01, 0xB7, 0x03, 0x0E, 0x06, 0x26, 0x01, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0xF8, 0x00, +0xFF, 0xFF, 0x00, 0x32, 0x00, 0x00, 0x01, 0xB7, 0x02, 0xF1, 0x06, 0x26, 0x01, 0xF2, 0x00, 0x00, +0x00, 0x06, 0x02, 0xFD, 0xF8, 0x00, 0xFF, 0xFF, 0x00, 0x32, 0x00, 0x00, 0x01, 0xB7, 0x03, 0x03, +0x06, 0x26, 0x01, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF5, 0xF8, 0x00, 0xFF, 0xFF, 0x00, 0x32, +0xFF, 0x32, 0x01, 0xB7, 0x02, 0x0D, 0x06, 0x26, 0x01, 0xF2, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0E, +0xF8, 0x00, 0xFF, 0xFF, 0x00, 0x10, 0xFF, 0x3B, 0x01, 0xE5, 0x03, 0x0E, 0x04, 0x26, 0x01, 0x58, +0x00, 0x00, 0x00, 0x27, 0x02, 0xF8, 0xFF, 0x7E, 0x00, 0x00, 0x00, 0x27, 0x01, 0x6A, 0x00, 0xF3, +0x00, 0x00, 0x00, 0x07, 0x02, 0xF8, 0x00, 0x83, 0x00, 0x00, 0x00, 0x02, 0x00, 0x30, 0xFF, 0xF6, +0x01, 0xDC, 0x02, 0x18, 0x00, 0x10, 0x00, 0x2E, 0x00, 0x00, 0x61, 0x11, 0x34, 0x26, 0x23, 0x22, +0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x07, 0x22, 0x26, 0x26, 0x35, +0x34, 0x3E, 0x02, 0x33, 0x33, 0x07, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, +0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x01, 0x7F, 0x3F, 0x30, 0x2C, 0x47, 0x1D, 0x43, 0x2F, 0x6D, +0x3F, 0x3C, 0x58, 0x30, 0xFA, 0x33, 0x50, 0x2F, 0x1E, 0x3B, 0x59, 0x3A, 0x92, 0x09, 0x96, 0x1E, +0x2F, 0x21, 0x10, 0x16, 0x26, 0x19, 0x24, 0x41, 0x33, 0x0E, 0x18, 0x15, 0x3E, 0x48, 0x01, 0x56, +0x2C, 0x37, 0x24, 0x25, 0x43, 0x33, 0x32, 0x28, 0x4D, 0x37, 0xFE, 0x94, 0x0A, 0x28, 0x47, 0x30, +0x2A, 0x40, 0x2A, 0x16, 0x52, 0x0B, 0x17, 0x1F, 0x15, 0x16, 0x21, 0x12, 0x19, 0x2C, 0x1B, 0x43, +0x23, 0x34, 0x1E, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x01, 0xDC, 0x03, 0x0E, 0x06, 0x26, +0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF8, 0x11, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, +0x01, 0xDC, 0x02, 0xF3, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFF, 0x11, 0x00, +0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x01, 0xDC, 0x03, 0xA9, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, +0x00, 0x06, 0x02, 0xEA, 0x11, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0x32, 0x01, 0xDC, 0x02, 0xF3, +0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x26, 0x03, 0x0E, 0x11, 0x00, 0x00, 0x06, 0x02, 0xFF, +0x11, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x01, 0xDC, 0x03, 0xA9, 0x06, 0x26, 0x01, 0xF8, +0x00, 0x00, 0x00, 0x06, 0x02, 0xEB, 0x11, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x01, 0xDC, +0x03, 0xB8, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xEC, 0x11, 0x00, 0xFF, 0xFF, +0x00, 0x30, 0xFF, 0xF6, 0x01, 0xDC, 0x03, 0xA8, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, +0x02, 0xED, 0x11, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x01, 0xDC, 0x02, 0xF1, 0x06, 0x26, +0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFD, 0x11, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, +0x01, 0xDC, 0x02, 0xF1, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFC, 0x11, 0x00, +0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0x27, 0x03, 0x9F, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, +0x00, 0x06, 0x02, 0xEE, 0x50, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0x32, 0x01, 0xDC, 0x02, 0xF1, +0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x26, 0x03, 0x0E, 0x11, 0x00, 0x00, 0x06, 0x02, 0xFC, +0x11, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x01, 0xDC, 0x03, 0x9F, 0x06, 0x26, 0x01, 0xF8, +0x00, 0x00, 0x00, 0x06, 0x02, 0xEF, 0x26, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x02, 0x13, +0x03, 0xA0, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF0, 0x46, 0x00, 0xFF, 0xFF, +0x00, 0x30, 0xFF, 0xF6, 0x01, 0xDC, 0x03, 0x9E, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, +0x02, 0xF1, 0x10, 0x00, 0xFF, 0xFF, 0xFF, 0xFD, 0xFF, 0xF6, 0x01, 0xDC, 0x03, 0x0E, 0x06, 0x26, +0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x03, 0x0A, 0xCE, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, +0x01, 0xDC, 0x03, 0x04, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF2, 0x11, 0x00, +0xFF, 0xFF, 0x00, 0x30, 0xFF, 0x32, 0x01, 0xDC, 0x02, 0x18, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, +0x00, 0x06, 0x03, 0x0E, 0x11, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x01, 0xDC, 0x03, 0x0E, +0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF7, 0xFD, 0x00, 0xFF, 0xFF, 0x00, 0x30, +0xFF, 0xF6, 0x01, 0xDC, 0x03, 0x15, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x03, 0x09, +0x10, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x01, 0xDC, 0x02, 0xFD, 0x06, 0x26, 0x01, 0xF8, +0x00, 0x00, 0x00, 0x06, 0x03, 0x0B, 0x11, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x01, 0xDC, +0x02, 0xCD, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x03, 0x05, 0x11, 0x00, 0xFF, 0xFF, +0x00, 0x30, 0xFF, 0x38, 0x01, 0xEF, 0x02, 0x18, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x07, +0x03, 0x12, 0x00, 0x88, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, 0x01, 0xDC, 0x03, 0x2F, +0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x03, 0x00, 0x10, 0x00, 0xFF, 0xFF, 0x00, 0x30, +0xFF, 0xF6, 0x01, 0xDC, 0x03, 0xF7, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x26, 0x03, 0x00, +0x10, 0x00, 0x00, 0x07, 0x02, 0xF8, 0x00, 0x11, 0x00, 0xE9, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0xF6, +0x01, 0xDC, 0x02, 0xEA, 0x06, 0x26, 0x01, 0xF8, 0x00, 0x00, 0x00, 0x06, 0x03, 0x01, 0x10, 0x00, +0x00, 0x03, 0x00, 0x1E, 0xFF, 0x10, 0x01, 0xFC, 0x02, 0x13, 0x00, 0x37, 0x00, 0x45, 0x00, 0x55, +0x00, 0x00, 0x45, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x17, 0x26, 0x26, 0x35, 0x34, 0x36, +0x36, 0x37, 0x07, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x27, 0x33, +0x15, 0x23, 0x37, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, +0x33, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, +0x22, 0x06, 0x15, 0x14, 0x16, 0x16, 0x13, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, +0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x0D, 0x75, 0x7A, 0x13, 0x28, 0x1F, 0x02, 0x2F, 0x24, +0x12, 0x2B, 0x26, 0x04, 0x21, 0x24, 0x0E, 0x37, 0x5D, 0x39, 0x13, 0x1D, 0x1E, 0x11, 0x30, 0xCC, +0x65, 0x0F, 0x12, 0x11, 0x05, 0x37, 0x5D, 0x39, 0x3D, 0x15, 0x18, 0x18, 0x15, 0x4A, 0x70, 0x7F, +0x39, 0x6B, 0x4C, 0x2A, 0x3E, 0x21, 0x4A, 0x3F, 0x3C, 0x4B, 0x22, 0x3D, 0x1C, 0x1D, 0x2E, 0x1B, +0x1B, 0x2E, 0x1D, 0x1D, 0x2E, 0x1B, 0x1B, 0x2E, 0xF0, 0x5E, 0x47, 0x19, 0x2D, 0x26, 0x0E, 0x08, +0x0E, 0x32, 0x1A, 0x13, 0x22, 0x1B, 0x07, 0x15, 0x1E, 0x32, 0x2F, 0x1A, 0x33, 0x53, 0x31, 0x05, +0x08, 0x06, 0x09, 0x54, 0x1A, 0x1F, 0x27, 0x1D, 0x10, 0x33, 0x55, 0x32, 0x13, 0x0F, 0x12, 0x14, +0x59, 0x4C, 0x2F, 0x4B, 0x2B, 0x5A, 0x13, 0x22, 0x16, 0x22, 0x29, 0x29, 0x22, 0x16, 0x22, 0x13, +0x01, 0x92, 0x18, 0x2B, 0x1D, 0x1A, 0x2A, 0x19, 0x19, 0x2A, 0x1A, 0x1C, 0x2B, 0x19, 0xFF, 0xFF, +0x00, 0x1E, 0xFF, 0x10, 0x01, 0xFC, 0x02, 0xF3, 0x06, 0x26, 0x02, 0x12, 0x00, 0x00, 0x00, 0x06, +0x02, 0xFF, 0x13, 0x00, 0xFF, 0xFF, 0x00, 0x1E, 0xFF, 0x10, 0x01, 0xFC, 0x02, 0xF1, 0x06, 0x26, +0x02, 0x12, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFD, 0x13, 0x00, 0xFF, 0xFF, 0x00, 0x1E, 0xFF, 0x10, +0x01, 0xFC, 0x02, 0xF1, 0x06, 0x26, 0x02, 0x12, 0x00, 0x00, 0x00, 0x06, 0x02, 0xFC, 0x13, 0x00, +0xFF, 0xFF, 0x00, 0x1E, 0xFF, 0x10, 0x01, 0xFC, 0x03, 0x24, 0x06, 0x26, 0x02, 0x12, 0x00, 0x00, +0x00, 0x06, 0x03, 0x0C, 0x13, 0x00, 0xFF, 0xFF, 0x00, 0x1E, 0xFF, 0x10, 0x01, 0xFC, 0x03, 0x03, +0x06, 0x26, 0x02, 0x12, 0x00, 0x00, 0x00, 0x06, 0x02, 0xF5, 0x13, 0x00, 0xFF, 0xFF, 0x00, 0x1E, +0xFF, 0x10, 0x01, 0xFC, 0x02, 0xCD, 0x06, 0x26, 0x02, 0x12, 0x00, 0x00, 0x00, 0x06, 0x03, 0x05, +0x13, 0x00, 0xFF, 0xFF, 0x00, 0x2D, 0x00, 0x00, 0x03, 0x0F, 0x02, 0xE3, 0x04, 0x26, 0x01, 0x4A, +0x00, 0x00, 0x00, 0x07, 0x01, 0x4A, 0x01, 0x89, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2D, 0x00, 0x00, +0x03, 0xE2, 0x03, 0x03, 0x04, 0x26, 0x01, 0x4A, 0x00, 0x00, 0x00, 0x27, 0x01, 0x4A, 0x01, 0x89, +0x00, 0x00, 0x00, 0x07, 0x01, 0x57, 0x03, 0x12, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2D, 0xFF, 0x3B, +0x04, 0xF9, 0x03, 0x03, 0x04, 0x26, 0x01, 0x4A, 0x00, 0x00, 0x00, 0x27, 0x01, 0x4A, 0x01, 0x89, +0x00, 0x00, 0x00, 0x27, 0x01, 0x57, 0x03, 0x12, 0x00, 0x00, 0x00, 0x07, 0x01, 0x69, 0x04, 0x28, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2D, 0x00, 0x00, 0x03, 0xC3, 0x02, 0xE4, 0x04, 0x26, 0x01, 0x4A, +0x00, 0x00, 0x00, 0x27, 0x01, 0x4A, 0x01, 0x89, 0x00, 0x00, 0x00, 0x07, 0x01, 0x6F, 0x03, 0x12, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2D, 0xFF, 0x3B, 0x03, 0x70, 0x03, 0x03, 0x04, 0x26, 0x01, 0x4A, +0x00, 0x00, 0x00, 0x27, 0x01, 0x57, 0x01, 0x89, 0x00, 0x00, 0x00, 0x07, 0x01, 0x69, 0x02, 0x9F, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2D, 0x00, 0x00, 0x02, 0x59, 0x03, 0x03, 0x04, 0x26, 0x01, 0x4A, +0x00, 0x00, 0x00, 0x07, 0x01, 0x57, 0x01, 0x89, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2D, 0x00, 0x00, +0x02, 0x3A, 0x02, 0xE4, 0x04, 0x26, 0x01, 0x4A, 0x00, 0x00, 0x00, 0x07, 0x01, 0x6F, 0x01, 0x89, +0x00, 0x00, 0x00, 0x02, 0x00, 0x0F, 0x01, 0x87, 0x01, 0x4F, 0x02, 0xD1, 0x00, 0x15, 0x00, 0x24, +0x00, 0x00, 0x53, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x27, 0x35, +0x33, 0x11, 0x23, 0x35, 0x37, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, +0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x8F, 0x27, 0x3A, 0x1F, 0x24, 0x3F, 0x29, 0x31, 0x35, +0x0F, 0x5D, 0x5D, 0x0F, 0x1F, 0x34, 0x02, 0x16, 0x21, 0x13, 0x28, 0x23, 0x11, 0x1D, 0x11, 0x0F, +0x1D, 0x01, 0x87, 0x2B, 0x4D, 0x33, 0x2E, 0x48, 0x29, 0x43, 0x3E, 0x38, 0x43, 0xFE, 0xC6, 0x49, +0x26, 0x1E, 0x38, 0x23, 0x43, 0x18, 0x2C, 0x1D, 0x2E, 0x35, 0x19, 0x2A, 0x19, 0x20, 0x2F, 0x19, +0x00, 0x02, 0x00, 0x14, 0x01, 0x88, 0x01, 0x4E, 0x02, 0xC6, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, +0x53, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, +0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, +0xB0, 0x2D, 0x46, 0x29, 0x29, 0x46, 0x2D, 0x2D, 0x47, 0x2A, 0x29, 0x48, 0x2D, 0x15, 0x1F, 0x11, +0x11, 0x1F, 0x15, 0x15, 0x1E, 0x11, 0x11, 0x1F, 0x01, 0x88, 0x29, 0x47, 0x2D, 0x2E, 0x49, 0x2A, +0x2B, 0x49, 0x2D, 0x2D, 0x47, 0x29, 0x47, 0x16, 0x27, 0x19, 0x1B, 0x28, 0x17, 0x17, 0x28, 0x1B, +0x19, 0x27, 0x16, 0x00, 0xFF, 0xFF, 0x00, 0x0E, 0x00, 0x00, 0x02, 0xBD, 0x02, 0xCD, 0x06, 0x06, +0x02, 0xE1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, 0x02, 0x8A, 0x02, 0xC6, 0x06, 0x06, +0x02, 0xE0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x50, 0xFF, 0x63, 0x02, 0x04, 0x02, 0x0D, 0x06, 0x06, +0x02, 0xE5, 0x00, 0x00, 0x00, 0x01, 0x00, 0x28, 0x00, 0x00, 0x02, 0x3E, 0x02, 0x0E, 0x00, 0x0F, +0x00, 0x00, 0x73, 0x11, 0x17, 0x23, 0x35, 0x21, 0x15, 0x23, 0x37, 0x11, 0x23, 0x11, 0x17, 0x23, +0x37, 0x11, 0x72, 0x11, 0x5B, 0x02, 0x16, 0x53, 0x09, 0x5B, 0x0A, 0xE3, 0x0D, 0x01, 0xDC, 0x33, +0x65, 0x65, 0x0D, 0xFE, 0x4A, 0x01, 0xCC, 0x23, 0x0D, 0xFE, 0x4A, 0x00, 0x00, 0x02, 0x00, 0x2E, +0xFF, 0xF6, 0x02, 0x31, 0x02, 0xC6, 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, +0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, +0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0x2F, 0x50, 0x73, 0x3E, 0x3E, 0x73, 0x50, +0x50, 0x74, 0x3E, 0x3E, 0x74, 0x50, 0x49, 0x50, 0x50, 0x49, 0x49, 0x50, 0x50, 0x0A, 0x58, 0xA1, +0x6F, 0x6F, 0xA1, 0x58, 0x58, 0xA1, 0x6F, 0x6F, 0xA1, 0x58, 0x62, 0x89, 0x7D, 0x7D, 0x89, 0x89, +0x7D, 0x7D, 0x89, 0x00, 0x00, 0x02, 0x00, 0x57, 0x00, 0x00, 0x01, 0xB8, 0x02, 0xC6, 0x00, 0x07, +0x00, 0x0B, 0x00, 0x00, 0x77, 0x11, 0x17, 0x07, 0x27, 0x37, 0x33, 0x11, 0x07, 0x35, 0x21, 0x15, +0xD9, 0x25, 0x8A, 0x1D, 0xBB, 0x34, 0xDC, 0x01, 0x4E, 0x31, 0x02, 0x38, 0x1C, 0x49, 0x5E, 0x64, +0xFD, 0x6B, 0x31, 0x68, 0x68, 0x00, 0x00, 0x01, 0x00, 0x33, 0x00, 0x00, 0x02, 0x04, 0x02, 0xC6, +0x00, 0x22, 0x00, 0x00, 0x73, 0x27, 0x37, 0x3E, 0x03, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, +0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0E, 0x03, 0x07, 0x07, 0x27, +0x21, 0x15, 0x5D, 0x21, 0xD6, 0x11, 0x25, 0x22, 0x15, 0x19, 0x2F, 0x21, 0x1D, 0x38, 0x2E, 0x0D, +0x53, 0x11, 0x45, 0x61, 0x39, 0x3B, 0x5C, 0x34, 0x0A, 0x16, 0x22, 0x2F, 0x1E, 0x9F, 0x14, 0x01, +0x58, 0x52, 0xF1, 0x12, 0x2F, 0x32, 0x31, 0x16, 0x20, 0x2D, 0x18, 0x22, 0x3E, 0x29, 0x34, 0x3A, +0x53, 0x2C, 0x31, 0x57, 0x39, 0x17, 0x30, 0x33, 0x37, 0x3C, 0x21, 0xAD, 0x1E, 0x68, 0x00, 0x01, +0x00, 0x14, 0xFF, 0xF6, 0x01, 0xEE, 0x02, 0xBC, 0x00, 0x28, 0x00, 0x00, 0x57, 0x22, 0x26, 0x27, +0x37, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, +0x27, 0x37, 0x17, 0x21, 0x35, 0x21, 0x17, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, +0x14, 0x06, 0x06, 0xFB, 0x4A, 0x6D, 0x30, 0x54, 0x19, 0x31, 0x34, 0x1D, 0x23, 0x3C, 0x24, 0x1C, +0x36, 0x25, 0x11, 0x25, 0x2A, 0x19, 0x1E, 0xD8, 0x15, 0xFE, 0xD6, 0x01, 0x91, 0x14, 0xE5, 0x19, +0x08, 0x25, 0x0C, 0x2C, 0x4D, 0x39, 0x21, 0x41, 0x6E, 0x0A, 0x44, 0x50, 0x35, 0x25, 0x2F, 0x16, +0x23, 0x3E, 0x27, 0x27, 0x37, 0x1D, 0x07, 0x0D, 0x0A, 0x4F, 0xEE, 0x1F, 0x64, 0x28, 0xFE, 0x1A, +0x04, 0x07, 0x21, 0x3B, 0x4F, 0x2D, 0x44, 0x6B, 0x3E, 0x00, 0x00, 0x01, 0x00, 0x1E, 0x00, 0x00, +0x02, 0x42, 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x00, 0x61, 0x11, 0x17, 0x03, 0x27, 0x21, 0x15, 0x21, +0x27, 0x01, 0x33, 0x11, 0x01, 0x60, 0x19, 0xE6, 0x04, 0x01, 0xB3, 0xFE, 0x0A, 0x2E, 0x01, 0x57, +0x53, 0x02, 0x34, 0x06, 0xFE, 0xE7, 0x0C, 0x63, 0x5A, 0x01, 0xA4, 0xFD, 0x44, 0x00, 0x00, 0x01, +0x00, 0x27, 0xFF, 0xF9, 0x01, 0xFC, 0x02, 0xBC, 0x00, 0x26, 0x00, 0x00, 0x45, 0x22, 0x26, 0x27, +0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, +0x27, 0x13, 0x21, 0x15, 0x21, 0x37, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, +0x06, 0x06, 0x01, 0x01, 0x45, 0x70, 0x25, 0x3C, 0x2F, 0x46, 0x29, 0x29, 0x42, 0x27, 0x25, 0x3E, +0x27, 0x13, 0x22, 0x30, 0x27, 0x39, 0x29, 0x01, 0x7A, 0xFE, 0xCA, 0x15, 0x21, 0x19, 0x0A, 0x30, +0x3B, 0x1B, 0x40, 0x65, 0x3B, 0x42, 0x72, 0x07, 0x3F, 0x3B, 0x43, 0x34, 0x26, 0x24, 0x3E, 0x26, +0x28, 0x3F, 0x25, 0x05, 0x12, 0x13, 0x4D, 0x01, 0x29, 0x64, 0x13, 0xDE, 0x1D, 0x0A, 0x13, 0x0D, +0x3B, 0x68, 0x43, 0x45, 0x6F, 0x41, 0x00, 0x02, 0x00, 0x28, 0x00, 0x00, 0x02, 0x0A, 0x02, 0xC8, +0x00, 0x1F, 0x00, 0x2F, 0x00, 0x00, 0x61, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x37, 0x37, +0x33, 0x17, 0x07, 0x0E, 0x02, 0x07, 0x27, 0x3E, 0x03, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, +0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, +0x16, 0x01, 0x1B, 0x34, 0x59, 0x41, 0x25, 0x0F, 0x1F, 0x2C, 0x1D, 0x5B, 0x69, 0x04, 0x6E, 0x1E, +0x2F, 0x20, 0x08, 0x18, 0x13, 0x2C, 0x33, 0x38, 0x1E, 0x3A, 0x61, 0x3B, 0x3D, 0x6C, 0x46, 0x27, +0x3D, 0x23, 0x24, 0x3C, 0x25, 0x29, 0x40, 0x24, 0x24, 0x3E, 0x25, 0x42, 0x5A, 0x36, 0x1B, 0x43, +0x50, 0x59, 0x30, 0x9A, 0x0A, 0xB9, 0x33, 0x5C, 0x51, 0x21, 0x67, 0x1F, 0x2F, 0x20, 0x10, 0x3F, +0x68, 0x3E, 0x4B, 0x75, 0x44, 0x64, 0x25, 0x43, 0x2B, 0x25, 0x41, 0x28, 0x26, 0x40, 0x27, 0x2A, +0x43, 0x27, 0x00, 0x01, 0x00, 0x3C, 0x00, 0x00, 0x01, 0xFB, 0x02, 0xBC, 0x00, 0x07, 0x00, 0x00, +0x73, 0x01, 0x17, 0x21, 0x35, 0x21, 0x17, 0x01, 0x70, 0x01, 0x22, 0x0C, 0xFE, 0x9E, 0x01, 0xB1, +0x0E, 0xFE, 0xE9, 0x02, 0x78, 0x20, 0x64, 0x45, 0xFD, 0x89, 0x00, 0x03, 0x00, 0x35, 0xFF, 0xFD, +0x02, 0x0E, 0x02, 0xBC, 0x00, 0x25, 0x00, 0x35, 0x00, 0x45, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, +0x35, 0x34, 0x3E, 0x02, 0x37, 0x07, 0x2E, 0x03, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, +0x15, 0x14, 0x0E, 0x02, 0x07, 0x27, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, +0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x13, 0x32, 0x36, 0x36, +0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x21, 0x41, 0x6B, +0x40, 0x11, 0x23, 0x32, 0x21, 0x06, 0x1A, 0x29, 0x1E, 0x0F, 0x3B, 0x63, 0x3D, 0x3D, 0x63, 0x3B, +0x0F, 0x1C, 0x2B, 0x1B, 0x03, 0x1E, 0x31, 0x24, 0x13, 0x40, 0x6B, 0x42, 0x25, 0x3B, 0x22, 0x22, +0x3B, 0x25, 0x25, 0x3A, 0x22, 0x22, 0x3A, 0x25, 0x20, 0x33, 0x1D, 0x1D, 0x33, 0x20, 0x20, 0x33, +0x1D, 0x1D, 0x33, 0x03, 0x37, 0x5C, 0x38, 0x1F, 0x37, 0x2E, 0x26, 0x0F, 0x15, 0x0A, 0x1D, 0x26, +0x2C, 0x18, 0x35, 0x56, 0x34, 0x34, 0x56, 0x35, 0x18, 0x2C, 0x24, 0x1E, 0x0B, 0x11, 0x0C, 0x26, +0x30, 0x36, 0x1D, 0x39, 0x5C, 0x36, 0x64, 0x1C, 0x30, 0x1F, 0x21, 0x33, 0x1E, 0x1E, 0x33, 0x21, +0x1E, 0x30, 0x1D, 0x01, 0x3D, 0x18, 0x29, 0x1B, 0x1B, 0x2A, 0x19, 0x19, 0x2A, 0x1B, 0x1B, 0x29, +0x18, 0x00, 0x00, 0x02, 0x00, 0x1E, 0x00, 0x00, 0x02, 0x04, 0x02, 0xC8, 0x00, 0x1B, 0x00, 0x2B, +0x00, 0x00, 0x73, 0x27, 0x13, 0x17, 0x0E, 0x03, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, +0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x07, 0x07, 0x03, 0x32, 0x36, 0x36, 0x35, 0x34, +0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0xE4, 0x04, 0xD0, 0x03, 0x12, 0x2B, +0x33, 0x36, 0x1C, 0x39, 0x60, 0x3A, 0x40, 0x6F, 0x45, 0x32, 0x58, 0x42, 0x26, 0x0A, 0x17, 0x26, +0x1C, 0x53, 0x46, 0x27, 0x3E, 0x23, 0x22, 0x3D, 0x27, 0x24, 0x38, 0x21, 0x21, 0x38, 0x0A, 0x01, +0xBA, 0x53, 0x1E, 0x2E, 0x21, 0x11, 0x3C, 0x64, 0x3B, 0x47, 0x71, 0x42, 0x24, 0x41, 0x55, 0x30, +0x19, 0x39, 0x47, 0x5B, 0x3C, 0xAE, 0x01, 0x57, 0x23, 0x3B, 0x25, 0x27, 0x3F, 0x24, 0x23, 0x3D, +0x29, 0x23, 0x3C, 0x25, 0xFF, 0xFF, 0x00, 0x2E, 0xFF, 0xF6, 0x02, 0x31, 0x02, 0xC6, 0x06, 0x26, +0x02, 0x26, 0x00, 0x00, 0x00, 0x07, 0x02, 0x69, 0x00, 0xBE, 0x01, 0x25, 0x00, 0x02, 0x00, 0x1E, +0xFF, 0xF6, 0x01, 0x4E, 0x01, 0x67, 0x00, 0x0F, 0x00, 0x1C, 0x00, 0x00, 0x57, 0x22, 0x26, 0x26, +0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, +0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0xB7, 0x2C, 0x45, 0x28, 0x27, 0x45, 0x2D, +0x2D, 0x44, 0x26, 0x27, 0x45, 0x2B, 0x15, 0x1F, 0x11, 0x25, 0x20, 0x20, 0x27, 0x26, 0x0A, 0x30, +0x53, 0x35, 0x36, 0x54, 0x2F, 0x2F, 0x54, 0x36, 0x35, 0x53, 0x30, 0x4A, 0x1B, 0x32, 0x21, 0x32, +0x3D, 0x3D, 0x32, 0x32, 0x3C, 0x00, 0x00, 0x01, 0x00, 0x2F, 0xFF, 0xFE, 0x00, 0xC9, 0x01, 0x5A, +0x00, 0x0A, 0x00, 0x00, 0x57, 0x11, 0x17, 0x07, 0x27, 0x37, 0x33, 0x11, 0x23, 0x22, 0x22, 0x7E, +0x06, 0x32, 0x23, 0x62, 0x38, 0x25, 0x0A, 0x12, 0x02, 0x01, 0x12, 0x12, 0x20, 0x42, 0x3A, 0xFE, +0xA4, 0x00, 0x00, 0x01, 0x00, 0x2A, 0x00, 0x00, 0x01, 0x28, 0x01, 0x69, 0x00, 0x1D, 0x00, 0x00, +0x73, 0x27, 0x37, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, +0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x07, 0x37, 0x33, 0x15, 0x41, 0x09, 0x63, 0x09, +0x1A, 0x14, 0x12, 0x11, 0x11, 0x29, 0x15, 0x36, 0x0F, 0x2C, 0x34, 0x1D, 0x21, 0x31, 0x1C, 0x1E, +0x28, 0x11, 0x43, 0x04, 0x9A, 0x47, 0x63, 0x08, 0x1A, 0x21, 0x11, 0x10, 0x13, 0x19, 0x1D, 0x28, +0x1A, 0x27, 0x15, 0x1A, 0x2D, 0x1D, 0x1C, 0x33, 0x2B, 0x10, 0x41, 0x09, 0x43, 0x00, 0x00, 0x01, +0x00, 0x39, 0xFF, 0xF6, 0x01, 0x29, 0x01, 0x5E, 0x00, 0x23, 0x00, 0x00, 0x57, 0x22, 0x26, 0x26, +0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x37, +0x17, 0x23, 0x35, 0x33, 0x17, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06, +0xA5, 0x13, 0x27, 0x24, 0x0E, 0x21, 0x13, 0x21, 0x11, 0x1C, 0x23, 0x1F, 0x1A, 0x0D, 0x1F, 0x0C, +0x15, 0x66, 0x13, 0x82, 0xBA, 0x07, 0x63, 0x0D, 0x05, 0x10, 0x05, 0x34, 0x3B, 0x23, 0x3C, 0x0A, +0x09, 0x0F, 0x0A, 0x37, 0x0C, 0x0B, 0x1D, 0x19, 0x14, 0x19, 0x07, 0x05, 0x39, 0x58, 0x06, 0x44, +0x42, 0x52, 0x07, 0x03, 0x04, 0x39, 0x30, 0x23, 0x37, 0x1F, 0x00, 0x03, 0x00, 0x2D, 0xFF, 0xFE, +0x01, 0x54, 0x01, 0x64, 0x00, 0x03, 0x00, 0x09, 0x00, 0x11, 0x00, 0x00, 0x65, 0x33, 0x15, 0x23, +0x27, 0x27, 0x33, 0x07, 0x35, 0x17, 0x13, 0x23, 0x35, 0x17, 0x23, 0x27, 0x37, 0x33, 0x01, 0x07, +0x4D, 0x4D, 0xA6, 0x10, 0x8D, 0x12, 0x1D, 0x2E, 0x4B, 0x0D, 0x9B, 0x11, 0xA8, 0x42, 0x95, 0x44, +0x22, 0x22, 0x13, 0x9A, 0x0B, 0xFE, 0xED, 0x66, 0x13, 0x45, 0xCE, 0x00, 0x00, 0x01, 0x00, 0x32, +0xFF, 0xF7, 0x01, 0x32, 0x01, 0x59, 0x00, 0x22, 0x00, 0x00, 0x57, 0x22, 0x26, 0x27, 0x37, 0x16, +0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x37, 0x33, 0x15, 0x23, +0x37, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x9B, 0x19, 0x3C, +0x14, 0x25, 0x0F, 0x25, 0x14, 0x1E, 0x25, 0x20, 0x1A, 0x11, 0x1C, 0x19, 0x23, 0x17, 0xCB, 0xA4, +0x1B, 0x0F, 0x1F, 0x10, 0x2D, 0x20, 0x1E, 0x31, 0x1C, 0x26, 0x44, 0x09, 0x16, 0x0F, 0x3A, 0x0D, +0x0E, 0x1E, 0x19, 0x16, 0x1E, 0x08, 0x10, 0x28, 0xA3, 0x45, 0x15, 0x7D, 0x11, 0x17, 0x17, 0x1E, +0x34, 0x20, 0x27, 0x3B, 0x20, 0x00, 0x00, 0x02, 0x00, 0x23, 0xFF, 0xF8, 0x01, 0x2A, 0x01, 0x66, +0x00, 0x1C, 0x00, 0x28, 0x00, 0x00, 0x57, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, +0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x07, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, +0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0xA8, +0x3F, 0x46, 0x24, 0x41, 0x2B, 0x20, 0x35, 0x12, 0x21, 0x0C, 0x21, 0x13, 0x1F, 0x2A, 0x2A, 0x10, +0x3F, 0x26, 0x22, 0x32, 0x1B, 0x23, 0x3B, 0x25, 0x15, 0x1F, 0x1C, 0x16, 0x19, 0x1E, 0x1E, 0x08, +0x5E, 0x48, 0x3C, 0x5A, 0x32, 0x16, 0x10, 0x38, 0x0A, 0x0C, 0x35, 0x36, 0x3A, 0x32, 0x38, 0x1D, +0x2F, 0x1D, 0x26, 0x3B, 0x21, 0x40, 0x1F, 0x18, 0x16, 0x20, 0x20, 0x15, 0x18, 0x20, 0x00, 0x01, +0x00, 0x35, 0x00, 0x00, 0x01, 0x28, 0x01, 0x58, 0x00, 0x08, 0x00, 0x00, 0x73, 0x35, 0x13, 0x17, +0x23, 0x35, 0x33, 0x17, 0x03, 0x54, 0x88, 0x0C, 0xB3, 0xD8, 0x1B, 0x89, 0x09, 0x01, 0x2A, 0x1F, +0x44, 0x32, 0xFE, 0xDA, 0x00, 0x03, 0x00, 0x2C, 0xFF, 0xF5, 0x01, 0x35, 0x01, 0x66, 0x00, 0x1E, +0x00, 0x2A, 0x00, 0x36, 0x00, 0x00, 0x57, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x07, 0x26, +0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x27, 0x16, +0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, +0x16, 0x37, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0xB1, 0x25, 0x3C, +0x24, 0x27, 0x25, 0x03, 0x1D, 0x22, 0x21, 0x37, 0x23, 0x22, 0x38, 0x21, 0x0F, 0x1C, 0x14, 0x01, +0x21, 0x28, 0x24, 0x3C, 0x24, 0x17, 0x21, 0x21, 0x17, 0x18, 0x20, 0x21, 0x17, 0x14, 0x1C, 0x1C, +0x14, 0x15, 0x1B, 0x1C, 0x0B, 0x1E, 0x31, 0x1D, 0x1C, 0x2F, 0x10, 0x0B, 0x0A, 0x29, 0x1B, 0x1D, +0x2E, 0x1C, 0x1C, 0x2E, 0x1D, 0x11, 0x1D, 0x18, 0x08, 0x0B, 0x0E, 0x31, 0x1C, 0x1D, 0x31, 0x1E, +0x3F, 0x1E, 0x16, 0x14, 0x1B, 0x1B, 0x14, 0x16, 0x1E, 0xA1, 0x17, 0x11, 0x11, 0x18, 0x17, 0x12, +0x11, 0x17, 0x00, 0x02, 0x00, 0x23, 0xFF, 0xF8, 0x01, 0x2A, 0x01, 0x66, 0x00, 0x1D, 0x00, 0x29, +0x00, 0x00, 0x57, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x37, 0x06, +0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06, +0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x9A, 0x20, 0x35, 0x12, +0x21, 0x0C, 0x21, 0x13, 0x15, 0x21, 0x13, 0x2A, 0x10, 0x3F, 0x26, 0x22, 0x32, 0x1B, 0x23, 0x3C, +0x23, 0x3F, 0x46, 0x24, 0x41, 0x21, 0x19, 0x1E, 0x1E, 0x17, 0x15, 0x1F, 0x1C, 0x08, 0x16, 0x10, +0x38, 0x0A, 0x0C, 0x18, 0x2F, 0x24, 0x3A, 0x32, 0x38, 0x1D, 0x30, 0x1C, 0x26, 0x3B, 0x21, 0x5E, +0x48, 0x3B, 0x5B, 0x32, 0xC1, 0x20, 0x15, 0x18, 0x20, 0x1F, 0x18, 0x16, 0x20, 0x00, 0xFF, 0xFF, +0x00, 0x1E, 0xFF, 0x38, 0x01, 0x4E, 0x00, 0xA9, 0x06, 0x07, 0x02, 0x31, 0x00, 0x00, 0xFF, 0x42, +0xFF, 0xFF, 0x00, 0x2F, 0xFF, 0x36, 0x00, 0xC9, 0x00, 0x92, 0x06, 0x07, 0x02, 0x32, 0x00, 0x00, +0xFF, 0x38, 0xFF, 0xFF, 0x00, 0x2A, 0xFF, 0x38, 0x01, 0x28, 0x00, 0xA1, 0x06, 0x07, 0x02, 0x33, +0x00, 0x00, 0xFF, 0x38, 0xFF, 0xFF, 0x00, 0x39, 0xFF, 0x38, 0x01, 0x29, 0x00, 0xA0, 0x06, 0x07, +0x02, 0x34, 0x00, 0x00, 0xFF, 0x42, 0xFF, 0xFF, 0x00, 0x2D, 0xFF, 0x36, 0x01, 0x54, 0x00, 0x9C, +0x06, 0x07, 0x02, 0x35, 0x00, 0x00, 0xFF, 0x38, 0xFF, 0xFF, 0x00, 0x32, 0xFF, 0x2F, 0x01, 0x32, +0x00, 0x91, 0x06, 0x07, 0x02, 0x36, 0x00, 0x00, 0xFF, 0x38, 0xFF, 0xFF, 0x00, 0x23, 0xFF, 0x3A, +0x01, 0x2A, 0x00, 0xA8, 0x06, 0x07, 0x02, 0x37, 0x00, 0x00, 0xFF, 0x42, 0xFF, 0xFF, 0x00, 0x35, +0xFF, 0x38, 0x01, 0x28, 0x00, 0x90, 0x06, 0x07, 0x02, 0x38, 0x00, 0x00, 0xFF, 0x38, 0xFF, 0xFF, +0x00, 0x2C, 0xFF, 0x37, 0x01, 0x35, 0x00, 0xA8, 0x06, 0x07, 0x02, 0x39, 0x00, 0x00, 0xFF, 0x42, +0xFF, 0xFF, 0x00, 0x23, 0xFF, 0x3A, 0x01, 0x2A, 0x00, 0xA8, 0x06, 0x07, 0x02, 0x3A, 0x00, 0x00, +0xFF, 0x42, 0xFF, 0xFF, 0x00, 0x1E, 0x01, 0x56, 0x01, 0x4E, 0x02, 0xC7, 0x06, 0x07, 0x02, 0x31, +0x00, 0x00, 0x01, 0x60, 0xFF, 0xFF, 0x00, 0x2F, 0x01, 0x67, 0x00, 0xC9, 0x02, 0xC3, 0x06, 0x07, +0x02, 0x32, 0x00, 0x00, 0x01, 0x69, 0xFF, 0xFF, 0x00, 0x2A, 0x01, 0x5C, 0x01, 0x28, 0x02, 0xC5, +0x06, 0x07, 0x02, 0x33, 0x00, 0x00, 0x01, 0x5C, 0xFF, 0xFF, 0x00, 0x39, 0x01, 0x56, 0x01, 0x29, +0x02, 0xBE, 0x06, 0x07, 0x02, 0x34, 0x00, 0x00, 0x01, 0x60, 0xFF, 0xFF, 0x00, 0x2D, 0x01, 0x5C, +0x01, 0x54, 0x02, 0xC2, 0x06, 0x07, 0x02, 0x35, 0x00, 0x00, 0x01, 0x5E, 0xFF, 0xFF, 0x00, 0x32, +0x01, 0x58, 0x01, 0x32, 0x02, 0xBA, 0x06, 0x07, 0x02, 0x36, 0x00, 0x00, 0x01, 0x61, 0xFF, 0xFF, +0x00, 0x23, 0x01, 0x5A, 0x01, 0x2A, 0x02, 0xC8, 0x06, 0x07, 0x02, 0x37, 0x00, 0x00, 0x01, 0x62, +0xFF, 0xFF, 0x00, 0x35, 0x01, 0x64, 0x01, 0x28, 0x02, 0xBC, 0x06, 0x07, 0x02, 0x38, 0x00, 0x00, +0x01, 0x64, 0xFF, 0xFF, 0x00, 0x2C, 0x01, 0x55, 0x01, 0x35, 0x02, 0xC6, 0x06, 0x07, 0x02, 0x39, +0x00, 0x00, 0x01, 0x60, 0xFF, 0xFF, 0x00, 0x23, 0x01, 0x58, 0x01, 0x2A, 0x02, 0xC6, 0x06, 0x07, +0x02, 0x3A, 0x00, 0x00, 0x01, 0x60, 0xFF, 0xFF, 0x00, 0x1E, 0x01, 0x9C, 0x01, 0x4E, 0x03, 0x0D, +0x06, 0x07, 0x02, 0x31, 0x00, 0x00, 0x01, 0xA6, 0xFF, 0xFF, 0x00, 0x2F, 0x01, 0xAD, 0x00, 0xC9, +0x03, 0x09, 0x06, 0x07, 0x02, 0x32, 0x00, 0x00, 0x01, 0xAF, 0xFF, 0xFF, 0x00, 0x2A, 0x01, 0xA2, +0x01, 0x28, 0x03, 0x0B, 0x06, 0x07, 0x02, 0x33, 0x00, 0x00, 0x01, 0xA2, 0xFF, 0xFF, 0x00, 0x39, +0x01, 0x9C, 0x01, 0x29, 0x03, 0x04, 0x06, 0x07, 0x02, 0x34, 0x00, 0x00, 0x01, 0xA6, 0xFF, 0xFF, +0x00, 0x2D, 0x01, 0xA2, 0x01, 0x54, 0x03, 0x08, 0x06, 0x07, 0x02, 0x35, 0x00, 0x00, 0x01, 0xA4, +0xFF, 0xFF, 0x00, 0x32, 0x01, 0x9E, 0x01, 0x32, 0x03, 0x00, 0x06, 0x07, 0x02, 0x36, 0x00, 0x00, +0x01, 0xA7, 0xFF, 0xFF, 0x00, 0x23, 0x01, 0xA0, 0x01, 0x2A, 0x03, 0x0E, 0x06, 0x07, 0x02, 0x37, +0x00, 0x00, 0x01, 0xA8, 0xFF, 0xFF, 0x00, 0x35, 0x01, 0xAA, 0x01, 0x28, 0x03, 0x02, 0x06, 0x07, +0x02, 0x38, 0x00, 0x00, 0x01, 0xAA, 0xFF, 0xFF, 0x00, 0x2C, 0x01, 0x9B, 0x01, 0x35, 0x03, 0x0C, +0x06, 0x07, 0x02, 0x39, 0x00, 0x00, 0x01, 0xA6, 0xFF, 0xFF, 0x00, 0x23, 0x01, 0x9E, 0x01, 0x2A, +0x03, 0x0C, 0x06, 0x07, 0x02, 0x3A, 0x00, 0x00, 0x01, 0xA6, 0x00, 0x01, 0x00, 0x14, 0x00, 0x00, +0x02, 0x4A, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x00, 0x73, 0x01, 0x33, 0x01, 0x14, 0x01, 0xD3, 0x63, +0xFE, 0x2C, 0x02, 0xBC, 0xFD, 0x44, 0xFF, 0xFF, 0x00, 0x36, 0x00, 0x00, 0x02, 0xF1, 0x02, 0xC3, +0x04, 0x27, 0x02, 0x32, 0x00, 0x07, 0x01, 0x69, 0x00, 0x26, 0x02, 0x59, 0x5D, 0x00, 0x00, 0x07, +0x02, 0x33, 0x01, 0xC9, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x36, 0xFF, 0xFE, 0x02, 0xEF, 0x02, 0xC3, +0x04, 0x27, 0x02, 0x32, 0x00, 0x07, 0x01, 0x69, 0x00, 0x26, 0x02, 0x59, 0x5B, 0x00, 0x00, 0x07, +0x02, 0x35, 0x01, 0x9B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x14, 0xFF, 0xFE, 0x02, 0xED, 0x02, 0xBE, +0x04, 0x27, 0x02, 0x34, 0xFF, 0xDB, 0x01, 0x60, 0x00, 0x26, 0x02, 0x59, 0x65, 0x00, 0x00, 0x07, +0x02, 0x35, 0x01, 0x99, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x3C, 0xFF, 0xF5, 0x02, 0xE3, 0x02, 0xC3, +0x04, 0x27, 0x02, 0x32, 0x00, 0x0D, 0x01, 0x69, 0x00, 0x26, 0x02, 0x59, 0x40, 0x00, 0x00, 0x07, +0x02, 0x39, 0x01, 0xAE, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x14, 0xFF, 0xF5, 0x02, 0xF0, 0x02, 0xBE, +0x04, 0x27, 0x02, 0x34, 0xFF, 0xDB, 0x01, 0x60, 0x00, 0x26, 0x02, 0x59, 0x52, 0x00, 0x00, 0x07, +0x02, 0x39, 0x01, 0xBB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x27, 0xFF, 0xF5, 0x03, 0x1A, 0x02, 0xBC, +0x04, 0x27, 0x02, 0x36, 0xFF, 0xF5, 0x01, 0x61, 0x00, 0x26, 0x02, 0x59, 0x7F, 0x00, 0x00, 0x07, +0x02, 0x39, 0x01, 0xE5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x3C, 0xFF, 0xF5, 0x02, 0xFC, 0x02, 0xBC, +0x04, 0x27, 0x02, 0x38, 0x00, 0x07, 0x01, 0x64, 0x00, 0x26, 0x02, 0x59, 0x58, 0x00, 0x00, 0x07, +0x02, 0x39, 0x01, 0xC7, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2D, 0xFF, 0xF5, 0x00, 0xB7, 0x00, 0x8B, +0x00, 0x0B, 0x00, 0x00, 0x57, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, +0x72, 0x21, 0x24, 0x26, 0x1F, 0x21, 0x24, 0x26, 0x0B, 0x27, 0x24, 0x21, 0x2A, 0x27, 0x24, 0x21, +0x2A, 0x00, 0x00, 0x01, 0x00, 0x32, 0xFF, 0x4D, 0x00, 0xDD, 0x00, 0x75, 0x00, 0x15, 0x00, 0x00, +0x57, 0x27, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, +0x16, 0x15, 0x14, 0x0E, 0x02, 0x58, 0x26, 0x23, 0x2C, 0x0A, 0x10, 0x14, 0x0C, 0x22, 0x1B, 0x19, +0x29, 0x17, 0x14, 0x24, 0x30, 0xB3, 0x2E, 0x14, 0x34, 0x13, 0x0A, 0x13, 0x11, 0x13, 0x1A, 0x0F, +0x18, 0x1D, 0x1D, 0x33, 0x21, 0x1E, 0x38, 0x30, 0x26, 0x00, 0xFF, 0xFF, 0x00, 0x2D, 0xFF, 0xF6, +0x00, 0xB7, 0x02, 0x17, 0x06, 0x26, 0x02, 0x69, 0x00, 0x01, 0x00, 0x07, 0x02, 0x69, 0x00, 0x00, +0x01, 0x8C, 0xFF, 0xFF, 0x00, 0x2D, 0xFF, 0x4D, 0x00, 0xD8, 0x02, 0x17, 0x04, 0x26, 0x02, 0x6A, +0xFB, 0x00, 0x00, 0x07, 0x02, 0x69, 0x00, 0x12, 0x01, 0x8C, 0xFF, 0xFF, 0x00, 0x2D, 0xFF, 0xF5, +0x02, 0x30, 0x00, 0x8B, 0x04, 0x26, 0x02, 0x69, 0x00, 0x00, 0x00, 0x27, 0x02, 0x69, 0x00, 0xBC, +0x00, 0x00, 0x00, 0x07, 0x02, 0x69, 0x01, 0x79, 0x00, 0x00, 0x00, 0x02, 0x00, 0x2D, 0xFF, 0xF5, +0x00, 0xB7, 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x00, 0x77, 0x2E, 0x02, 0x35, 0x35, 0x33, +0x15, 0x14, 0x06, 0x06, 0x07, 0x07, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, +0x06, 0x57, 0x07, 0x0B, 0x06, 0x6C, 0x06, 0x0B, 0x07, 0x21, 0x21, 0x24, 0x26, 0x1F, 0x21, 0x24, +0x26, 0xF1, 0x3F, 0x87, 0x84, 0x3B, 0x46, 0x46, 0x3E, 0x88, 0x85, 0x3A, 0xFC, 0x27, 0x24, 0x21, +0x2A, 0x27, 0x24, 0x21, 0x2A, 0x00, 0x00, 0x02, 0x00, 0x2D, 0xFF, 0x56, 0x00, 0xB7, 0x02, 0x1D, +0x00, 0x0B, 0x00, 0x17, 0x00, 0x00, 0x53, 0x1E, 0x02, 0x15, 0x15, 0x23, 0x35, 0x34, 0x36, 0x36, +0x37, 0x37, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x8D, 0x07, 0x0B, +0x06, 0x6C, 0x06, 0x0B, 0x07, 0x21, 0x21, 0x24, 0x26, 0x1F, 0x21, 0x24, 0x26, 0x01, 0x21, 0x3F, +0x87, 0x84, 0x3B, 0x46, 0x46, 0x3E, 0x88, 0x85, 0x3A, 0xFC, 0x27, 0x24, 0x21, 0x2A, 0x27, 0x24, +0x21, 0x2A, 0x00, 0x02, 0x00, 0x16, 0xFF, 0xF5, 0x01, 0xD7, 0x02, 0xC5, 0x00, 0x1C, 0x00, 0x28, +0x00, 0x00, 0x77, 0x27, 0x3E, 0x04, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, +0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x0F, 0x02, 0x34, 0x36, 0x33, 0x32, 0x16, +0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0xC1, 0x1A, 0x27, 0x3E, 0x2D, 0x1E, 0x0F, 0x1F, 0x36, 0x22, +0x28, 0x4B, 0x1B, 0x4B, 0x2B, 0x77, 0x41, 0x3F, 0x64, 0x3B, 0x1B, 0x32, 0x43, 0x28, 0x11, 0x70, +0x26, 0x1F, 0x21, 0x24, 0x26, 0x1F, 0x21, 0x24, 0xD3, 0x8D, 0x0A, 0x19, 0x1D, 0x22, 0x27, 0x16, +0x1D, 0x2E, 0x1A, 0x37, 0x32, 0x3F, 0x42, 0x49, 0x34, 0x5A, 0x38, 0x21, 0x3F, 0x38, 0x2C, 0x0E, +0x5A, 0x93, 0x21, 0x2A, 0x27, 0x24, 0x21, 0x2A, 0x27, 0x00, 0x00, 0x02, 0x00, 0x16, 0xFF, 0x51, +0x01, 0xD7, 0x02, 0x21, 0x00, 0x1C, 0x00, 0x28, 0x00, 0x00, 0x41, 0x17, 0x0E, 0x04, 0x15, 0x14, +0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, +0x02, 0x3F, 0x02, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x01, 0x2C, +0x1A, 0x27, 0x3E, 0x2D, 0x1E, 0x0F, 0x1F, 0x36, 0x22, 0x28, 0x4B, 0x1B, 0x4B, 0x2B, 0x77, 0x41, +0x3F, 0x64, 0x3B, 0x1B, 0x32, 0x43, 0x28, 0x11, 0x70, 0x26, 0x1F, 0x21, 0x24, 0x26, 0x1F, 0x21, +0x24, 0x01, 0x43, 0x8D, 0x0A, 0x19, 0x1D, 0x22, 0x27, 0x16, 0x1D, 0x2E, 0x1A, 0x37, 0x32, 0x3F, +0x42, 0x49, 0x34, 0x5A, 0x38, 0x21, 0x3F, 0x38, 0x2C, 0x0E, 0x5A, 0x93, 0x21, 0x2A, 0x27, 0x24, +0x21, 0x2A, 0x27, 0x00, 0xFF, 0xFF, 0x00, 0x2D, 0x00, 0xFD, 0x00, 0xB7, 0x01, 0x93, 0x06, 0x07, +0x02, 0x69, 0x00, 0x00, 0x01, 0x08, 0x00, 0x01, 0x00, 0x25, 0x00, 0xD8, 0x01, 0x36, 0x01, 0xE8, +0x00, 0x0F, 0x00, 0x00, 0x77, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, +0x15, 0x14, 0x06, 0x06, 0xAD, 0x25, 0x3E, 0x25, 0x24, 0x3E, 0x26, 0x26, 0x3E, 0x25, 0x25, 0x3E, +0xD8, 0x24, 0x3E, 0x25, 0x26, 0x3E, 0x25, 0x25, 0x3E, 0x26, 0x25, 0x3E, 0x24, 0x00, 0x00, 0x01, +0x00, 0x1E, 0x01, 0x78, 0x01, 0x65, 0x02, 0xBC, 0x00, 0x17, 0x00, 0x00, 0x53, 0x37, 0x33, 0x07, +0x27, 0x37, 0x07, 0x27, 0x37, 0x17, 0x27, 0x27, 0x33, 0x07, 0x27, 0x37, 0x17, 0x07, 0x35, 0x17, +0x07, 0x27, 0x17, 0x17, 0x9F, 0x08, 0x05, 0x67, 0x25, 0x70, 0x02, 0x70, 0x26, 0x68, 0x05, 0x08, +0x4B, 0x09, 0x08, 0x67, 0x25, 0x71, 0x70, 0x25, 0x68, 0x0B, 0x08, 0x01, 0x78, 0x73, 0x46, 0x41, +0x36, 0x05, 0x36, 0x40, 0x46, 0x02, 0x73, 0x7F, 0x08, 0x46, 0x41, 0x37, 0x0B, 0x37, 0x40, 0x46, +0x02, 0x73, 0x00, 0x04, 0x00, 0x1F, 0x00, 0x00, 0x02, 0x87, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x07, +0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, 0x61, 0x13, 0x33, 0x03, 0x25, 0x35, 0x21, 0x15, 0x05, 0x13, +0x33, 0x03, 0x03, 0x35, 0x21, 0x15, 0x01, 0x6F, 0x78, 0x5A, 0x78, 0xFE, 0x56, 0x02, 0x43, 0xFE, +0x03, 0x78, 0x5A, 0x78, 0x7A, 0x02, 0x42, 0x02, 0xBC, 0xFD, 0x44, 0xAD, 0x53, 0x53, 0xAD, 0x02, +0xBC, 0xFD, 0x44, 0x01, 0xC5, 0x53, 0x53, 0x00, 0x00, 0x01, 0x00, 0x12, 0xFF, 0x7C, 0x02, 0x11, +0x02, 0xBC, 0x00, 0x03, 0x00, 0x00, 0x57, 0x01, 0x33, 0x01, 0x12, 0x01, 0x9C, 0x63, 0xFE, 0x65, +0x84, 0x03, 0x40, 0xFC, 0xC0, 0x00, 0x00, 0x01, 0x00, 0x30, 0xFF, 0x95, 0x02, 0x23, 0x02, 0xBC, +0x00, 0x03, 0x00, 0x00, 0x45, 0x01, 0x33, 0x01, 0x01, 0xBE, 0xFE, 0x72, 0x63, 0x01, 0x90, 0x6B, +0x03, 0x27, 0xFC, 0xD9, 0xFF, 0xFF, 0x00, 0x2D, 0x01, 0x2B, 0x00, 0xB7, 0x01, 0xC1, 0x06, 0x07, +0x02, 0x69, 0x00, 0x00, 0x01, 0x36, 0xFF, 0xFF, 0x00, 0x2D, 0x00, 0xDB, 0x01, 0x3E, 0x01, 0xEB, +0x04, 0x06, 0x02, 0x73, 0x08, 0x03, 0xFF, 0xFF, 0x00, 0x12, 0xFF, 0x7C, 0x02, 0x11, 0x02, 0xBC, +0x04, 0x06, 0x02, 0x76, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0xFF, 0x95, 0x02, 0x23, 0x02, 0xBC, +0x04, 0x06, 0x02, 0x77, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xF1, 0x01, 0x2B, 0x00, 0x7B, 0x01, 0xC1, +0x04, 0x07, 0x02, 0x69, 0xFF, 0xC4, 0x01, 0x36, 0xFF, 0xFF, 0xFF, 0x2F, 0x01, 0x2B, 0xFF, 0xB9, +0x01, 0xC1, 0x04, 0x07, 0x02, 0x69, 0xFF, 0x02, 0x01, 0x36, 0x00, 0x01, 0x00, 0x35, 0x00, 0xEB, +0x01, 0x55, 0x01, 0x51, 0x00, 0x03, 0x00, 0x00, 0x77, 0x35, 0x21, 0x15, 0x35, 0x01, 0x20, 0xEB, +0x66, 0x66, 0xFF, 0xFF, 0x00, 0x35, 0x00, 0xEB, 0x01, 0x55, 0x01, 0x51, 0x06, 0x06, 0x02, 0x7E, +0x00, 0x00, 0x00, 0x01, 0x00, 0x35, 0x00, 0xED, 0x01, 0xCD, 0x01, 0x50, 0x00, 0x03, 0x00, 0x00, +0x77, 0x35, 0x21, 0x15, 0x35, 0x01, 0x98, 0xED, 0x63, 0x63, 0x00, 0x01, 0x00, 0x35, 0x00, 0xED, +0x03, 0x2F, 0x01, 0x51, 0x00, 0x03, 0x00, 0x00, 0x77, 0x35, 0x21, 0x15, 0x35, 0x02, 0xFA, 0xED, +0x64, 0x64, 0xFF, 0xFF, 0x00, 0x35, 0x00, 0xED, 0x01, 0xCD, 0x01, 0x50, 0x06, 0x06, 0x02, 0x80, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x35, 0x00, 0xED, 0x03, 0x2F, 0x01, 0x51, 0x06, 0x06, 0x02, 0x81, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x35, 0x00, 0xEB, 0x01, 0x55, 0x01, 0x51, 0x06, 0x06, 0x02, 0x7E, +0x00, 0x00, 0x00, 0x01, 0x00, 0x35, 0xFF, 0x60, 0x02, 0x7D, 0xFF, 0xAE, 0x00, 0x03, 0x00, 0x00, +0x57, 0x35, 0x21, 0x15, 0x35, 0x02, 0x48, 0xA0, 0x4E, 0x4E, 0xFF, 0xFF, 0x00, 0x35, 0x01, 0x16, +0x01, 0x55, 0x01, 0x7C, 0x06, 0x06, 0x02, 0x7E, 0x00, 0x2B, 0xFF, 0xFF, 0x00, 0x35, 0x01, 0x18, +0x01, 0xCD, 0x01, 0x7B, 0x06, 0x06, 0x02, 0x80, 0x00, 0x2B, 0xFF, 0xFF, 0x00, 0x35, 0x01, 0x1B, +0x03, 0x2F, 0x01, 0x7F, 0x06, 0x06, 0x02, 0x81, 0x00, 0x2E, 0x00, 0x01, 0x00, 0x28, 0xFF, 0x46, +0x01, 0x5A, 0x02, 0xBE, 0x00, 0x0D, 0x00, 0x00, 0x45, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x17, +0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x01, 0x22, 0x7A, 0x80, 0x81, 0x7A, 0x37, 0x66, 0x6B, 0x6B, +0x66, 0xBA, 0x4C, 0xE4, 0x8C, 0x8B, 0xE5, 0x4C, 0x3E, 0x47, 0xC5, 0x72, 0x72, 0xC5, 0x47, 0x00, +0x00, 0x01, 0x00, 0x14, 0xFF, 0x46, 0x01, 0x46, 0x02, 0xBE, 0x00, 0x0D, 0x00, 0x00, 0x57, 0x27, +0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x37, 0x16, 0x16, 0x15, 0x14, 0x06, 0x4B, 0x37, 0x66, 0x6B, +0x6B, 0x66, 0x38, 0x7A, 0x80, 0x81, 0xBA, 0x3E, 0x47, 0xC5, 0x72, 0x72, 0xC5, 0x47, 0x3E, 0x4C, +0xE4, 0x8C, 0x8B, 0xE5, 0x00, 0x01, 0x00, 0x2C, 0xFF, 0x38, 0x01, 0x83, 0x02, 0xBC, 0x00, 0x25, +0x00, 0x00, 0x45, 0x2E, 0x03, 0x35, 0x37, 0x34, 0x26, 0x27, 0x23, 0x35, 0x33, 0x36, 0x36, 0x35, +0x27, 0x34, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x15, 0x17, 0x14, 0x06, 0x07, 0x27, 0x16, 0x16, 0x15, +0x07, 0x14, 0x16, 0x16, 0x17, 0x01, 0x71, 0x31, 0x46, 0x2D, 0x15, 0x01, 0x33, 0x2F, 0x2B, 0x2D, +0x2F, 0x31, 0x01, 0x56, 0x63, 0x12, 0x2B, 0x31, 0x14, 0x02, 0x35, 0x32, 0x01, 0x33, 0x35, 0x02, +0x14, 0x31, 0x2B, 0xC8, 0x0A, 0x1F, 0x2E, 0x40, 0x2A, 0x5F, 0x3A, 0x41, 0x01, 0x4C, 0x01, 0x40, +0x3B, 0x5F, 0x52, 0x5A, 0x15, 0x45, 0x0E, 0x20, 0x33, 0x29, 0x5F, 0x3A, 0x4C, 0x0F, 0x03, 0x11, +0x4C, 0x39, 0x5F, 0x29, 0x32, 0x20, 0x0F, 0x00, 0x00, 0x01, 0x00, 0x18, 0xFF, 0x38, 0x01, 0x6F, +0x02, 0xBC, 0x00, 0x25, 0x00, 0x00, 0x57, 0x27, 0x3E, 0x02, 0x35, 0x27, 0x34, 0x36, 0x37, 0x17, +0x26, 0x26, 0x35, 0x37, 0x34, 0x26, 0x26, 0x27, 0x37, 0x1E, 0x03, 0x15, 0x07, 0x14, 0x16, 0x17, +0x33, 0x15, 0x23, 0x06, 0x06, 0x15, 0x17, 0x14, 0x06, 0x2A, 0x12, 0x2B, 0x30, 0x15, 0x02, 0x35, +0x32, 0x01, 0x33, 0x35, 0x02, 0x14, 0x30, 0x2C, 0x12, 0x31, 0x46, 0x2D, 0x15, 0x01, 0x33, 0x2F, +0x2B, 0x2D, 0x2F, 0x31, 0x01, 0x56, 0xC8, 0x45, 0x0E, 0x20, 0x33, 0x29, 0x5F, 0x3A, 0x4C, 0x0F, +0x03, 0x11, 0x4C, 0x39, 0x5F, 0x29, 0x32, 0x21, 0x0E, 0x45, 0x0A, 0x1F, 0x2E, 0x40, 0x2A, 0x5F, +0x3A, 0x41, 0x01, 0x4C, 0x01, 0x40, 0x3B, 0x5F, 0x52, 0x5A, 0x00, 0x01, 0x00, 0x50, 0xFF, 0x42, +0x01, 0x51, 0x02, 0xBC, 0x00, 0x09, 0x00, 0x00, 0x57, 0x11, 0x21, 0x15, 0x23, 0x37, 0x11, 0x27, +0x33, 0x15, 0x50, 0x01, 0x01, 0xAA, 0x06, 0x0A, 0xAE, 0xBE, 0x03, 0x7A, 0x4F, 0x08, 0xFD, 0x10, +0x0C, 0x4F, 0x00, 0x01, 0x00, 0x42, 0xFF, 0x42, 0x01, 0x43, 0x02, 0xBC, 0x00, 0x09, 0x00, 0x00, +0x57, 0x35, 0x33, 0x07, 0x11, 0x17, 0x23, 0x35, 0x21, 0x11, 0x42, 0xAA, 0x06, 0x0A, 0xAE, 0x01, +0x01, 0xBE, 0x4F, 0x08, 0x02, 0xF0, 0x0C, 0x4F, 0xFC, 0x86, 0xFF, 0xFF, 0x00, 0x28, 0xFF, 0x78, +0x01, 0x5A, 0x02, 0xF0, 0x04, 0x06, 0x02, 0x89, 0x00, 0x32, 0xFF, 0xFF, 0x00, 0x14, 0xFF, 0x78, +0x01, 0x46, 0x02, 0xF0, 0x04, 0x06, 0x02, 0x8A, 0x00, 0x32, 0xFF, 0xFF, 0x00, 0x2C, 0xFF, 0x6A, +0x01, 0x83, 0x02, 0xEE, 0x06, 0x06, 0x02, 0x8B, 0x00, 0x32, 0xFF, 0xFF, 0x00, 0x18, 0xFF, 0x6A, +0x01, 0x6F, 0x02, 0xEE, 0x06, 0x06, 0x02, 0x8C, 0x00, 0x32, 0xFF, 0xFF, 0x00, 0x50, 0xFF, 0x6A, +0x01, 0x51, 0x02, 0xE4, 0x06, 0x06, 0x02, 0x8D, 0x00, 0x28, 0xFF, 0xFF, 0x00, 0x42, 0xFF, 0x6A, +0x01, 0x43, 0x02, 0xE4, 0x06, 0x06, 0x02, 0x8E, 0x00, 0x28, 0xFF, 0xFF, 0x00, 0x32, 0xFF, 0x4D, +0x00, 0xDD, 0x00, 0x75, 0x06, 0x06, 0x02, 0x6A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x32, 0xFF, 0x4D, +0x01, 0xBE, 0x00, 0x75, 0x04, 0x26, 0x02, 0x6A, 0x00, 0x00, 0x00, 0x07, 0x02, 0x6A, 0x00, 0xE1, +0x00, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0x01, 0xDB, 0x01, 0xAC, 0x02, 0xEF, 0x04, 0x26, 0x02, 0x99, +0x00, 0xFB, 0x00, 0x07, 0x02, 0x99, 0x00, 0xCF, 0xFF, 0xFB, 0xFF, 0xFF, 0x00, 0x14, 0x01, 0xDB, +0x01, 0x95, 0x02, 0xEF, 0x04, 0x26, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x07, 0x02, 0x9A, 0x00, 0xCC, +0x00, 0x00, 0x00, 0x01, 0x00, 0x28, 0x01, 0xE0, 0x00, 0xDD, 0x02, 0xF4, 0x00, 0x15, 0x00, 0x00, +0x53, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x37, 0x17, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, +0x16, 0x16, 0x15, 0x14, 0x06, 0x8B, 0x1C, 0x2D, 0x1A, 0x16, 0x27, 0x34, 0x1E, 0x26, 0x27, 0x32, +0x16, 0x09, 0x16, 0x0F, 0x22, 0x01, 0xE0, 0x1D, 0x33, 0x21, 0x1A, 0x32, 0x2C, 0x22, 0x09, 0x2E, +0x12, 0x2E, 0x11, 0x0D, 0x14, 0x08, 0x12, 0x18, 0x0D, 0x18, 0x1D, 0x00, 0x00, 0x01, 0x00, 0x14, +0x01, 0xDB, 0x00, 0xC9, 0x02, 0xEF, 0x00, 0x15, 0x00, 0x00, 0x53, 0x27, 0x36, 0x36, 0x35, 0x34, +0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x3A, +0x26, 0x27, 0x32, 0x16, 0x09, 0x16, 0x0F, 0x22, 0x1B, 0x1C, 0x2D, 0x1A, 0x16, 0x27, 0x34, 0x01, +0xDB, 0x2E, 0x12, 0x2E, 0x11, 0x0D, 0x15, 0x07, 0x12, 0x18, 0x0D, 0x18, 0x1D, 0x1D, 0x32, 0x22, +0x1A, 0x32, 0x2C, 0x22, 0xFF, 0xFF, 0x00, 0x0B, 0x00, 0x32, 0x01, 0xBE, 0x01, 0xD7, 0x04, 0x27, +0x02, 0x9D, 0x00, 0xD5, 0x00, 0x00, 0x00, 0x06, 0x02, 0x9D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x28, +0x00, 0x32, 0x01, 0xDE, 0x01, 0xD7, 0x04, 0x27, 0x02, 0x9E, 0x00, 0xD8, 0x00, 0x00, 0x00, 0x06, +0x02, 0x9E, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0B, 0x00, 0x32, 0x00, 0xE9, 0x01, 0xD7, 0x00, 0x07, +0x00, 0x00, 0x77, 0x27, 0x35, 0x37, 0x17, 0x07, 0x37, 0x17, 0xAA, 0x9F, 0x9E, 0x3F, 0x77, 0x01, +0x77, 0x32, 0xCF, 0x02, 0xD4, 0x2D, 0xAB, 0x0B, 0xAB, 0x00, 0x00, 0x01, 0x00, 0x28, 0x00, 0x32, +0x01, 0x06, 0x01, 0xD7, 0x00, 0x07, 0x00, 0x00, 0x77, 0x27, 0x37, 0x07, 0x27, 0x37, 0x17, 0x15, +0x68, 0x3F, 0x77, 0x01, 0x77, 0x3F, 0x9F, 0x32, 0x2D, 0xAB, 0x0B, 0xAB, 0x2D, 0xCF, 0x02, 0x00, +0x00, 0x02, 0x00, 0x25, 0x01, 0xBA, 0x01, 0x81, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, +0x53, 0x13, 0x33, 0x03, 0x21, 0x13, 0x33, 0x03, 0xF5, 0x18, 0x74, 0x50, 0xFE, 0xF4, 0x17, 0x76, +0x51, 0x01, 0xBA, 0x01, 0x02, 0xFE, 0xFE, 0x01, 0x02, 0xFE, 0xFE, 0x00, 0x00, 0x01, 0x00, 0x25, +0x01, 0xBA, 0x00, 0xB2, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x00, 0x53, 0x13, 0x33, 0x03, 0x25, 0x17, +0x76, 0x51, 0x01, 0xBA, 0x01, 0x02, 0xFE, 0xFE, 0xFF, 0xFF, 0x00, 0x0B, 0x00, 0x7C, 0x01, 0xBE, +0x02, 0x21, 0x04, 0x27, 0x02, 0x9D, 0x00, 0xD5, 0x00, 0x4A, 0x00, 0x06, 0x02, 0x9D, 0x00, 0x4A, +0xFF, 0xFF, 0x00, 0x28, 0x00, 0x7C, 0x01, 0xDE, 0x02, 0x21, 0x04, 0x27, 0x02, 0x9E, 0x00, 0xD8, +0x00, 0x4A, 0x00, 0x06, 0x02, 0x9E, 0x00, 0x4A, 0xFF, 0xFF, 0x00, 0x0B, 0x00, 0x83, 0x00, 0xE9, +0x02, 0x28, 0x06, 0x06, 0x02, 0x9D, 0x00, 0x51, 0xFF, 0xFF, 0x00, 0x28, 0x00, 0x83, 0x01, 0x06, +0x02, 0x28, 0x06, 0x06, 0x02, 0x9E, 0x00, 0x51, 0x00, 0x02, 0x00, 0x04, 0xFF, 0xE1, 0x02, 0x04, +0x02, 0xB4, 0x00, 0x1C, 0x00, 0x20, 0x00, 0x00, 0x57, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, +0x32, 0x36, 0x36, 0x37, 0x13, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, +0x06, 0x07, 0x03, 0x06, 0x06, 0x03, 0x35, 0x05, 0x15, 0x60, 0x1A, 0x32, 0x10, 0x1C, 0x0F, 0x1A, +0x11, 0x11, 0x1A, 0x11, 0x05, 0x48, 0x0E, 0x54, 0x49, 0x22, 0x3A, 0x1A, 0x1E, 0x16, 0x21, 0x0E, +0x28, 0x2D, 0x08, 0x47, 0x0E, 0x4E, 0x5A, 0x01, 0x71, 0x1F, 0x12, 0x0E, 0x44, 0x08, 0x07, 0x11, +0x22, 0x18, 0x01, 0x99, 0x4E, 0x4C, 0x11, 0x12, 0x40, 0x08, 0x07, 0x29, 0x2C, 0xFE, 0x6C, 0x4C, +0x4A, 0x01, 0x89, 0x53, 0x01, 0x53, 0x00, 0x02, 0x00, 0x28, 0xFF, 0x5E, 0x03, 0x9D, 0x02, 0xC6, +0x00, 0x50, 0x00, 0x62, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, +0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x17, 0x0E, +0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x37, +0x33, 0x03, 0x06, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0E, +0x02, 0x15, 0x14, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x03, 0x32, 0x36, +0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x01, +0x9E, 0x57, 0x8B, 0x61, 0x33, 0x53, 0x93, 0xC3, 0x6F, 0x50, 0x80, 0x5C, 0x31, 0x27, 0x46, 0x5D, +0x36, 0x23, 0x35, 0x1E, 0x07, 0x02, 0x0E, 0x0F, 0x33, 0x44, 0x28, 0x2B, 0x43, 0x26, 0x22, 0x40, +0x58, 0x35, 0x1F, 0x31, 0x1F, 0x03, 0x18, 0x1A, 0x65, 0x33, 0x03, 0x0B, 0x16, 0x0D, 0x1E, 0x34, +0x26, 0x16, 0x40, 0x79, 0x55, 0x66, 0xA6, 0x75, 0x3F, 0x27, 0x4A, 0x6E, 0x46, 0x2F, 0x44, 0x3E, +0x26, 0x25, 0x3B, 0x54, 0x48, 0x1F, 0x22, 0x3F, 0x2D, 0x05, 0x03, 0x04, 0x14, 0x25, 0x19, 0x27, +0x40, 0x26, 0x25, 0xA2, 0x35, 0x61, 0x88, 0x52, 0x75, 0xBB, 0x83, 0x45, 0x2D, 0x54, 0x73, 0x46, +0x44, 0x7B, 0x5F, 0x37, 0x19, 0x2C, 0x1F, 0x0F, 0x22, 0x12, 0x14, 0x2F, 0x42, 0x22, 0x2E, 0x52, +0x36, 0x2F, 0x60, 0x50, 0x32, 0x1E, 0x36, 0x24, 0x3B, 0xAA, 0xFE, 0xCC, 0x13, 0x19, 0x0C, 0x28, +0x47, 0x5C, 0x33, 0x4B, 0x6B, 0x39, 0x39, 0x6D, 0x9C, 0x63, 0x45, 0x6B, 0x4C, 0x27, 0x0D, 0x1B, +0x14, 0x43, 0x1E, 0x1F, 0x0C, 0x01, 0x2E, 0x2B, 0x43, 0x24, 0x12, 0x1A, 0x0C, 0x1A, 0x25, 0x14, +0x39, 0x59, 0x2F, 0x2B, 0x31, 0x00, 0x00, 0x02, 0x00, 0x32, 0xFF, 0xF6, 0x02, 0xC5, 0x02, 0xC6, +0x00, 0x20, 0x00, 0x3B, 0x00, 0x00, 0x61, 0x2F, 0x02, 0x2E, 0x03, 0x35, 0x34, 0x36, 0x36, 0x33, +0x32, 0x16, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1E, 0x02, 0x1F, +0x03, 0x05, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x17, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, +0x33, 0x32, 0x3E, 0x02, 0x37, 0x33, 0x0E, 0x04, 0x02, 0x3F, 0x5B, 0x10, 0xAD, 0x19, 0x2E, 0x23, +0x15, 0x35, 0x5D, 0x3D, 0x2D, 0x4E, 0x39, 0x0D, 0x4E, 0x13, 0x37, 0x29, 0x1F, 0x2A, 0x16, 0x19, +0x26, 0x28, 0x0F, 0x8B, 0x1D, 0x8F, 0xFE, 0x6D, 0x47, 0x74, 0x45, 0x57, 0x54, 0x40, 0x40, 0x3E, +0x28, 0x4B, 0x34, 0x2D, 0x4B, 0x3C, 0x27, 0x09, 0x5C, 0x08, 0x29, 0x3D, 0x4F, 0x60, 0x61, 0x12, +0xC1, 0x1C, 0x3B, 0x3A, 0x37, 0x18, 0x33, 0x51, 0x2E, 0x21, 0x3B, 0x27, 0x32, 0x2E, 0x2A, 0x13, +0x24, 0x1B, 0x16, 0x35, 0x36, 0x2E, 0x11, 0x9B, 0x20, 0x9C, 0x0A, 0x3D, 0x65, 0x3C, 0x4F, 0x74, +0x1F, 0x4D, 0x0E, 0x41, 0x37, 0x2A, 0x40, 0x24, 0x23, 0x40, 0x5A, 0x37, 0x3D, 0x68, 0x54, 0x3B, +0x1F, 0x00, 0x00, 0x01, 0x00, 0x30, 0x00, 0x00, 0x02, 0x66, 0x02, 0xBC, 0x00, 0x13, 0x00, 0x00, +0x73, 0x11, 0x17, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x21, 0x11, 0x23, 0x11, +0x17, 0x23, 0x37, 0x11, 0xF6, 0x18, 0x22, 0x36, 0x55, 0x31, 0x38, 0x65, 0x44, 0x01, 0x55, 0x6C, +0x10, 0xD4, 0x2C, 0x01, 0x3A, 0x23, 0x36, 0x5D, 0x3C, 0x41, 0x60, 0x35, 0xFD, 0x44, 0x02, 0x94, +0x40, 0x38, 0xFD, 0x74, 0x00, 0x02, 0x00, 0x2F, 0xFF, 0x7A, 0x02, 0x04, 0x02, 0xC7, 0x00, 0x2A, +0x00, 0x52, 0x00, 0x00, 0x65, 0x27, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x27, 0x27, 0x2E, 0x03, 0x35, +0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x15, 0x14, +0x16, 0x16, 0x17, 0x17, 0x16, 0x16, 0x07, 0x0E, 0x02, 0x03, 0x22, 0x26, 0x26, 0x27, 0x37, 0x16, +0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x27, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, +0x33, 0x17, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x17, 0x17, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x01, +0x43, 0x0C, 0x24, 0x2E, 0x16, 0x1F, 0x23, 0x81, 0x09, 0x29, 0x2C, 0x20, 0x1A, 0x33, 0x4B, 0x31, +0x25, 0x42, 0x37, 0x17, 0x39, 0x11, 0x29, 0x2E, 0x19, 0x2A, 0x38, 0x11, 0x24, 0x1C, 0x5D, 0x4D, +0x49, 0x03, 0x03, 0x30, 0x53, 0x69, 0x26, 0x51, 0x49, 0x1B, 0x32, 0x24, 0x5B, 0x29, 0x32, 0x39, +0x14, 0x22, 0x17, 0x76, 0x46, 0x44, 0x29, 0x4E, 0x37, 0x0A, 0x17, 0x23, 0x13, 0x26, 0x2B, 0x5F, +0x25, 0x44, 0x2B, 0x2E, 0x5A, 0x80, 0x3E, 0x04, 0x16, 0x20, 0x12, 0x17, 0x1E, 0x0A, 0x26, 0x03, +0x14, 0x27, 0x3E, 0x2D, 0x26, 0x40, 0x2F, 0x1A, 0x12, 0x25, 0x1C, 0x42, 0x12, 0x19, 0x0C, 0x2A, +0x22, 0x11, 0x1E, 0x18, 0x08, 0x1B, 0x16, 0x4E, 0x39, 0x31, 0x42, 0x21, 0xFE, 0xF8, 0x17, 0x29, +0x1A, 0x4F, 0x23, 0x2B, 0x25, 0x23, 0x11, 0x1A, 0x14, 0x07, 0x24, 0x15, 0x4D, 0x39, 0x2B, 0x45, +0x2A, 0x46, 0x03, 0x15, 0x1E, 0x14, 0x18, 0x25, 0x0C, 0x1B, 0x0A, 0x28, 0x3F, 0x2E, 0x33, 0x4F, +0x2D, 0x00, 0x00, 0x03, 0x00, 0x24, 0xFF, 0xF9, 0x02, 0xEE, 0x02, 0xC3, 0x00, 0x13, 0x00, 0x32, +0x00, 0x46, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, +0x15, 0x14, 0x0E, 0x02, 0x27, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, +0x07, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, +0x06, 0x06, 0x07, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, +0x1E, 0x02, 0x01, 0x89, 0x4B, 0x81, 0x62, 0x37, 0x37, 0x62, 0x81, 0x4B, 0x4A, 0x81, 0x63, 0x37, +0x37, 0x63, 0x81, 0x38, 0x3C, 0x61, 0x39, 0x39, 0x61, 0x3C, 0x22, 0x42, 0x1D, 0x25, 0x13, 0x20, +0x1C, 0x0D, 0x25, 0x3A, 0x21, 0x21, 0x3A, 0x25, 0x17, 0x30, 0x19, 0x25, 0x1E, 0x44, 0x35, 0x3B, +0x67, 0x4D, 0x2C, 0x2C, 0x4D, 0x67, 0x3B, 0x3B, 0x67, 0x4D, 0x2C, 0x2C, 0x4D, 0x67, 0x07, 0x37, +0x62, 0x81, 0x4B, 0x4B, 0x81, 0x62, 0x37, 0x37, 0x62, 0x81, 0x4B, 0x4B, 0x81, 0x62, 0x37, 0x95, +0x36, 0x5E, 0x3C, 0x39, 0x5E, 0x38, 0x17, 0x16, 0x4B, 0x0E, 0x11, 0x08, 0x22, 0x39, 0x23, 0x25, +0x3A, 0x20, 0x13, 0x13, 0x4C, 0x15, 0x16, 0x4B, 0x2C, 0x4D, 0x67, 0x3B, 0x3C, 0x66, 0x4E, 0x2B, +0x2B, 0x4E, 0x66, 0x3C, 0x3B, 0x67, 0x4D, 0x2C, 0x00, 0x05, 0x00, 0x1D, 0x01, 0x03, 0x01, 0xE8, +0x02, 0xC5, 0x00, 0x12, 0x00, 0x22, 0x00, 0x26, 0x00, 0x32, 0x00, 0x3D, 0x00, 0x00, 0x41, 0x22, +0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x27, 0x32, +0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x37, 0x27, +0x37, 0x17, 0x23, 0x35, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x23, 0x37, 0x15, 0x35, 0x27, +0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x37, 0x01, 0x03, 0x40, 0x68, 0x3E, 0x24, 0x3F, +0x53, 0x30, 0x2F, 0x53, 0x3F, 0x24, 0x24, 0x3E, 0x53, 0x30, 0x2E, 0x4B, 0x2D, 0x2D, 0x4B, 0x2E, +0x2F, 0x4C, 0x2D, 0x2D, 0x4C, 0x50, 0x25, 0x35, 0x2C, 0xB4, 0x6E, 0x21, 0x29, 0x2B, 0x1F, 0x47, +0x12, 0x10, 0x31, 0x11, 0x16, 0x13, 0x12, 0x36, 0x13, 0x01, 0x03, 0x3C, 0x66, 0x3F, 0x2F, 0x52, +0x3D, 0x23, 0x23, 0x3E, 0x51, 0x2F, 0x2F, 0x52, 0x3D, 0x23, 0x3F, 0x2B, 0x4A, 0x2D, 0x2D, 0x4A, +0x2C, 0x2C, 0x4A, 0x2D, 0x2D, 0x4A, 0x2B, 0x2D, 0x64, 0x0E, 0x72, 0xEF, 0x28, 0x20, 0x20, 0x29, +0x09, 0x67, 0x80, 0x07, 0x0F, 0x0C, 0x0D, 0x0E, 0x08, 0x00, 0x00, 0x03, 0x00, 0x1D, 0x01, 0x54, +0x02, 0xE1, 0x02, 0xBC, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, 0x41, 0x11, 0x33, 0x17, +0x23, 0x37, 0x33, 0x11, 0x23, 0x11, 0x33, 0x07, 0x23, 0x27, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, +0x03, 0x35, 0x21, 0x15, 0x01, 0x63, 0x45, 0x93, 0x38, 0x93, 0x4B, 0x53, 0x2D, 0x7C, 0x42, 0x82, +0x39, 0xFE, 0xCA, 0x4C, 0xAD, 0x01, 0x13, 0x01, 0x54, 0x01, 0x68, 0xF8, 0xF8, 0xFE, 0x98, 0x01, +0x27, 0xD9, 0xE1, 0xFE, 0xD1, 0x01, 0x50, 0xFE, 0xB0, 0x01, 0x1E, 0x4A, 0x4A, 0x00, 0x00, 0x02, +0x00, 0x6E, 0x01, 0x8F, 0x01, 0xA6, 0x02, 0xC5, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, 0x41, 0x22, +0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, +0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x0A, +0x2C, 0x47, 0x29, 0x29, 0x46, 0x2D, 0x2D, 0x46, 0x29, 0x29, 0x47, 0x2C, 0x17, 0x24, 0x16, 0x16, +0x24, 0x17, 0x17, 0x25, 0x15, 0x16, 0x24, 0x01, 0x8F, 0x29, 0x46, 0x2B, 0x2C, 0x47, 0x29, 0x29, +0x47, 0x2B, 0x2B, 0x47, 0x29, 0x43, 0x18, 0x28, 0x18, 0x18, 0x28, 0x17, 0x17, 0x28, 0x19, 0x18, +0x28, 0x17, 0xFF, 0xFF, 0x00, 0x25, 0x01, 0xBA, 0x01, 0x81, 0x02, 0xBC, 0x06, 0x06, 0x02, 0x9F, +0x00, 0x00, 0x00, 0x01, 0x00, 0x43, 0xFF, 0x3F, 0x00, 0xA4, 0x02, 0xE4, 0x00, 0x03, 0x00, 0x00, +0x57, 0x11, 0x33, 0x11, 0x43, 0x61, 0xC1, 0x03, 0xA5, 0xFC, 0x5B, 0x00, 0x00, 0x02, 0x00, 0x47, +0xFF, 0x36, 0x00, 0xA8, 0x02, 0xE4, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x57, 0x11, 0x33, 0x11, +0x03, 0x11, 0x33, 0x11, 0x47, 0x61, 0x61, 0x61, 0xCA, 0x01, 0x90, 0xFE, 0x70, 0x02, 0x1F, 0x01, +0x8F, 0xFE, 0x71, 0x00, 0x00, 0x02, 0x00, 0x2E, 0x00, 0xD8, 0x01, 0x89, 0x02, 0xD1, 0x00, 0x03, +0x00, 0x07, 0x00, 0x00, 0x77, 0x11, 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0xAB, 0x61, 0xDE, 0x01, +0x5B, 0xD8, 0x01, 0xF9, 0xFE, 0x07, 0x01, 0x18, 0x53, 0x53, 0x00, 0x01, 0x00, 0x19, 0xFF, 0xF6, +0x02, 0x07, 0x02, 0xF3, 0x00, 0x38, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, +0x37, 0x3E, 0x02, 0x33, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x0E, 0x02, 0x07, 0x27, 0x36, +0x36, 0x37, 0x3E, 0x03, 0x35, 0x34, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x07, 0x0E, 0x03, 0x15, 0x14, +0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0x21, 0x32, 0x4E, 0x2C, 0x0E, +0x1A, 0x12, 0x1A, 0x41, 0x4E, 0x2C, 0x3C, 0x47, 0x26, 0x48, 0x32, 0x27, 0x5F, 0x6C, 0x3C, 0x20, +0x4F, 0x87, 0x35, 0x22, 0x36, 0x25, 0x13, 0x1B, 0x16, 0x14, 0x26, 0x24, 0x21, 0x0F, 0x0A, 0x11, +0x0C, 0x06, 0x1D, 0x33, 0x22, 0x0E, 0x25, 0x22, 0x0B, 0x20, 0x22, 0x4F, 0x0A, 0x44, 0x78, 0x4C, +0x30, 0x69, 0x67, 0x2E, 0x40, 0x58, 0x2F, 0x01, 0x4D, 0x3E, 0x30, 0x6F, 0x72, 0x36, 0x2A, 0x4D, +0x43, 0x1C, 0x39, 0x26, 0x63, 0x3A, 0x25, 0x4D, 0x4C, 0x48, 0x1F, 0x1B, 0x23, 0x1A, 0x31, 0x46, +0x2C, 0x1F, 0x43, 0x41, 0x39, 0x17, 0x34, 0x52, 0x2E, 0x11, 0x15, 0x07, 0x3C, 0x1F, 0x21, 0x00, +0x00, 0x03, 0x00, 0x2E, 0x00, 0xC2, 0x01, 0x66, 0x02, 0xD4, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, +0x00, 0x00, 0x77, 0x11, 0x33, 0x11, 0x27, 0x35, 0x21, 0x15, 0x25, 0x35, 0x21, 0x15, 0x9C, 0x61, +0xCF, 0x01, 0x38, 0xFE, 0xC8, 0x01, 0x38, 0xC2, 0x02, 0x12, 0xFD, 0xEE, 0xAF, 0x53, 0x53, 0x8F, +0x53, 0x53, 0x00, 0x02, 0x00, 0x2B, 0xFF, 0xF5, 0x02, 0x54, 0x02, 0x45, 0x00, 0x24, 0x00, 0x32, +0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x16, +0x06, 0x23, 0x21, 0x37, 0x15, 0x14, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x36, 0x33, 0x32, 0x16, +0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x03, 0x27, 0x21, 0x07, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, +0x06, 0x06, 0x15, 0x01, 0x3F, 0x51, 0x7D, 0x46, 0x46, 0x7D, 0x51, 0x4E, 0x79, 0x48, 0x05, 0x01, +0x0D, 0x0A, 0xFE, 0x5C, 0x05, 0x1A, 0x2D, 0x3A, 0x20, 0x42, 0x60, 0x24, 0x07, 0x0A, 0x09, 0x0D, +0x03, 0x03, 0x2F, 0x6A, 0xEF, 0x09, 0x01, 0x56, 0x09, 0x17, 0x2B, 0x3C, 0x26, 0x2F, 0x48, 0x29, +0x0B, 0x4D, 0x86, 0x55, 0x56, 0x86, 0x4C, 0x44, 0x7B, 0x51, 0x0A, 0x0E, 0x07, 0xC2, 0x06, 0x16, +0x19, 0x11, 0x36, 0x39, 0x0B, 0x0B, 0x09, 0x03, 0x08, 0x04, 0x44, 0x3A, 0x01, 0x45, 0x0A, 0x04, +0x99, 0x03, 0x16, 0x1A, 0x13, 0x1E, 0x22, 0x06, 0x00, 0x04, 0x00, 0x62, 0x00, 0x00, 0x04, 0x76, +0x02, 0xC4, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x23, 0x00, 0x3B, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, +0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x35, 0x21, 0x15, +0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, +0x01, 0x11, 0x33, 0x01, 0x07, 0x2E, 0x04, 0x35, 0x35, 0x33, 0x11, 0x23, 0x01, 0x37, 0x1E, 0x04, +0x15, 0x11, 0x03, 0xBF, 0x31, 0x4E, 0x2C, 0x2D, 0x4D, 0x31, 0x31, 0x4F, 0x2E, 0x2D, 0x4F, 0xD5, +0x01, 0x5A, 0xB7, 0x19, 0x25, 0x15, 0x15, 0x25, 0x19, 0x18, 0x24, 0x15, 0x15, 0x24, 0xFC, 0xBB, +0x61, 0x01, 0xAC, 0x10, 0x04, 0x06, 0x05, 0x03, 0x02, 0x6C, 0x63, 0xFE, 0x5B, 0x0B, 0x05, 0x07, +0x05, 0x02, 0x01, 0x01, 0x66, 0x2D, 0x4E, 0x32, 0x33, 0x50, 0x2E, 0x2F, 0x50, 0x32, 0x31, 0x4F, +0x2D, 0xA5, 0x59, 0x59, 0xF8, 0x17, 0x29, 0x1A, 0x1C, 0x2A, 0x18, 0x18, 0x2A, 0x1C, 0x1B, 0x28, +0x17, 0xFE, 0x47, 0x02, 0xBC, 0xFD, 0xC3, 0x09, 0x19, 0x3B, 0x43, 0x4B, 0x52, 0x2C, 0xE6, 0xFD, +0x44, 0x02, 0x28, 0x0E, 0x3D, 0x55, 0x3B, 0x25, 0x18, 0x09, 0xFE, 0xDD, 0xFF, 0xFF, 0x00, 0x28, +0xFF, 0xC2, 0x03, 0x9D, 0x03, 0x2A, 0x06, 0x06, 0x02, 0xA6, 0x00, 0x64, 0x00, 0x02, 0x00, 0x30, +0xFF, 0xAF, 0x02, 0x83, 0x03, 0x08, 0x00, 0x0B, 0x00, 0x31, 0x00, 0x00, 0x45, 0x35, 0x37, 0x11, +0x27, 0x35, 0x33, 0x15, 0x07, 0x11, 0x17, 0x15, 0x27, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, +0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, +0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x01, 0x41, 0x04, 0x04, 0x6B, 0x0A, 0x0A, 0x2E, +0x49, 0x7A, 0x5A, 0x31, 0x35, 0x5E, 0x7C, 0x48, 0x33, 0x61, 0x4F, 0x19, 0x48, 0x1D, 0x3B, 0x3D, +0x1F, 0x31, 0x55, 0x3F, 0x24, 0x23, 0x40, 0x59, 0x36, 0x21, 0x40, 0x38, 0x17, 0x36, 0x17, 0x4F, +0x61, 0x51, 0x63, 0x37, 0x02, 0x34, 0x24, 0x67, 0x60, 0x26, 0xFD, 0xC0, 0x2D, 0x66, 0x47, 0x34, +0x61, 0x84, 0x4F, 0x4B, 0x81, 0x62, 0x36, 0x1F, 0x37, 0x23, 0x4B, 0x1D, 0x27, 0x14, 0x25, 0x42, +0x5B, 0x36, 0x39, 0x5D, 0x42, 0x23, 0x12, 0x22, 0x17, 0x58, 0x1B, 0x2C, 0x19, 0x00, 0x00, 0x02, +0x00, 0x28, 0x00, 0x00, 0x01, 0xFE, 0x02, 0xBC, 0x00, 0x1F, 0x00, 0x2B, 0x00, 0x00, 0x65, 0x22, +0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x06, +0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x07, 0x35, 0x37, +0x11, 0x27, 0x35, 0x33, 0x15, 0x07, 0x11, 0x17, 0x15, 0x01, 0x27, 0x49, 0x73, 0x43, 0x43, 0x73, +0x49, 0x46, 0x73, 0x1E, 0x39, 0x10, 0x32, 0x38, 0x1A, 0x30, 0x4B, 0x2C, 0x2E, 0x4C, 0x2E, 0x1B, +0x33, 0x30, 0x15, 0x39, 0x20, 0x77, 0x78, 0x07, 0x07, 0x61, 0x07, 0x07, 0x4E, 0x48, 0x7C, 0x4D, +0x4D, 0x7C, 0x48, 0x39, 0x31, 0x46, 0x17, 0x26, 0x16, 0x2F, 0x52, 0x33, 0x33, 0x51, 0x30, 0x12, +0x24, 0x1A, 0x46, 0x2D, 0x3A, 0x4E, 0x6C, 0x25, 0x01, 0xA2, 0x2B, 0x5E, 0x5F, 0x21, 0xFE, 0x51, +0x22, 0x6B, 0x00, 0x03, 0x00, 0x1C, 0xFF, 0x75, 0x02, 0xB5, 0x03, 0x23, 0x00, 0x03, 0x00, 0x07, +0x00, 0x2D, 0x00, 0x00, 0x45, 0x27, 0x01, 0x17, 0x01, 0x27, 0x01, 0x17, 0x03, 0x22, 0x2E, 0x02, +0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, +0x15, 0x14, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x01, 0x09, 0x4D, 0x01, +0xB0, 0x49, 0xFD, 0xB4, 0x4D, 0x01, 0xB0, 0x49, 0x97, 0x49, 0x7A, 0x5A, 0x31, 0x35, 0x5E, 0x7C, +0x48, 0x33, 0x61, 0x4F, 0x19, 0x48, 0x1D, 0x3B, 0x3D, 0x1F, 0x31, 0x55, 0x3F, 0x24, 0x23, 0x40, +0x59, 0x36, 0x21, 0x40, 0x38, 0x17, 0x36, 0x17, 0x4F, 0x61, 0x8B, 0x24, 0x03, 0x69, 0x1E, 0xFC, +0xB2, 0x24, 0x03, 0x69, 0x1E, 0xFC, 0xF1, 0x34, 0x61, 0x84, 0x4F, 0x4B, 0x81, 0x62, 0x36, 0x1F, +0x37, 0x23, 0x4B, 0x1D, 0x27, 0x14, 0x25, 0x42, 0x5B, 0x36, 0x39, 0x5D, 0x42, 0x23, 0x12, 0x22, +0x17, 0x58, 0x1B, 0x2C, 0x19, 0x00, 0x00, 0x06, 0x00, 0x32, 0x00, 0x52, 0x01, 0xF4, 0x02, 0x12, +0x00, 0x0F, 0x00, 0x13, 0x00, 0x17, 0x00, 0x27, 0x00, 0x2B, 0x00, 0x2F, 0x00, 0x00, 0x65, 0x22, +0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x27, +0x37, 0x17, 0x27, 0x27, 0x37, 0x17, 0x17, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, +0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x17, 0x27, 0x37, 0x17, 0x27, 0x27, 0x37, 0x17, 0x01, 0x17, +0x31, 0x51, 0x30, 0x30, 0x51, 0x31, 0x31, 0x51, 0x30, 0x30, 0x51, 0xC7, 0x47, 0x5C, 0x47, 0x49, +0x62, 0x46, 0x62, 0x3D, 0x19, 0x25, 0x15, 0x15, 0x25, 0x19, 0x18, 0x25, 0x15, 0x15, 0x25, 0xAD, +0x62, 0x46, 0x62, 0x5B, 0x46, 0x5C, 0x47, 0x7A, 0x30, 0x52, 0x32, 0x32, 0x52, 0x30, 0x31, 0x52, +0x31, 0x32, 0x52, 0x30, 0x28, 0x46, 0x62, 0x47, 0xB4, 0x5C, 0x46, 0x5C, 0xDB, 0x18, 0x29, 0x1B, +0x1B, 0x2A, 0x18, 0x18, 0x2A, 0x1B, 0x1B, 0x29, 0x18, 0x78, 0x5C, 0x46, 0x5C, 0xCA, 0x46, 0x62, +0x46, 0x00, 0x00, 0x03, 0x00, 0x32, 0xFF, 0xA5, 0x02, 0x39, 0x03, 0x0E, 0x00, 0x32, 0x00, 0x36, +0x00, 0x3A, 0x00, 0x00, 0x45, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, +0x34, 0x2E, 0x03, 0x27, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, +0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1E, 0x02, 0x17, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x06, +0x07, 0x11, 0x17, 0x11, 0x13, 0x27, 0x11, 0x33, 0x01, 0x3A, 0x56, 0x83, 0x2F, 0x4A, 0x31, 0x5A, +0x3E, 0x26, 0x3E, 0x24, 0x0C, 0x19, 0x27, 0x34, 0x22, 0x48, 0x5F, 0x2F, 0x25, 0x41, 0x58, 0x33, +0x51, 0x79, 0x23, 0x4C, 0x1E, 0x53, 0x33, 0x27, 0x3A, 0x21, 0x10, 0x21, 0x38, 0x27, 0x37, 0x56, +0x3C, 0x1F, 0x3E, 0x72, 0x8B, 0x61, 0x28, 0x61, 0x61, 0x0A, 0x44, 0x44, 0x55, 0x46, 0x36, 0x18, +0x2A, 0x1B, 0x12, 0x20, 0x1A, 0x16, 0x11, 0x06, 0x0E, 0x38, 0x56, 0x39, 0x2A, 0x48, 0x35, 0x1D, +0x3F, 0x3C, 0x4B, 0x31, 0x34, 0x18, 0x2B, 0x1D, 0x15, 0x23, 0x1B, 0x15, 0x08, 0x0C, 0x25, 0x32, +0x3E, 0x24, 0x43, 0x62, 0x35, 0x51, 0x01, 0xC6, 0x21, 0xFE, 0x5B, 0x01, 0xA5, 0x21, 0x01, 0xA3, +0x00, 0x04, 0x00, 0x28, 0x00, 0x00, 0x01, 0xD2, 0x02, 0xBC, 0x00, 0x16, 0x00, 0x1A, 0x00, 0x2A, +0x00, 0x2E, 0x00, 0x00, 0x77, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, +0x17, 0x27, 0x11, 0x33, 0x11, 0x23, 0x35, 0x17, 0x14, 0x06, 0x06, 0x07, 0x35, 0x21, 0x15, 0x27, +0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x13, +0x35, 0x21, 0x15, 0xBF, 0x28, 0x45, 0x2A, 0x2A, 0x46, 0x2B, 0x21, 0x35, 0x25, 0x07, 0x1E, 0x61, +0x61, 0x14, 0x23, 0x39, 0xB6, 0x01, 0x85, 0xD6, 0x17, 0x26, 0x17, 0x16, 0x26, 0x18, 0x17, 0x24, +0x14, 0x14, 0x24, 0x0A, 0x01, 0x07, 0x92, 0x30, 0x4F, 0x30, 0x31, 0x50, 0x2F, 0x1D, 0x36, 0x25, +0x1B, 0x01, 0x28, 0xFD, 0xE0, 0x6E, 0x04, 0x1A, 0x36, 0x24, 0x92, 0x4E, 0x4E, 0xE3, 0x1A, 0x2B, +0x19, 0x1B, 0x2B, 0x1A, 0x19, 0x2B, 0x1C, 0x1B, 0x2A, 0x19, 0x01, 0x33, 0x50, 0x50, 0x00, 0x03, +0x00, 0x0F, 0xFF, 0xF6, 0x02, 0x4F, 0x02, 0xC2, 0x00, 0x24, 0x00, 0x28, 0x00, 0x2C, 0x00, 0x00, +0x45, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x26, 0x26, +0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, +0x25, 0x35, 0x05, 0x15, 0x25, 0x35, 0x05, 0x15, 0x01, 0xAD, 0x49, 0x7C, 0x5A, 0x32, 0x32, 0x5C, +0x7B, 0x48, 0x1D, 0x38, 0x35, 0x17, 0x31, 0x19, 0x3A, 0x1D, 0x34, 0x58, 0x41, 0x23, 0x23, 0x3F, +0x58, 0x36, 0x15, 0x26, 0x24, 0x11, 0x32, 0x19, 0x36, 0x38, 0xFE, 0x47, 0x01, 0x92, 0xFE, 0x6E, +0x01, 0x92, 0x0A, 0x34, 0x5F, 0x84, 0x51, 0x4D, 0x81, 0x61, 0x35, 0x0B, 0x15, 0x0F, 0x53, 0x11, +0x11, 0x26, 0x46, 0x5F, 0x39, 0x3C, 0x61, 0x46, 0x25, 0x08, 0x10, 0x0B, 0x54, 0x0F, 0x15, 0x0B, +0xE8, 0x5E, 0x02, 0x5D, 0x93, 0x5D, 0x01, 0x5D, 0x00, 0x04, 0x00, 0x24, 0x00, 0x00, 0x02, 0x28, +0x02, 0xBC, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, 0x77, 0x35, 0x21, 0x15, +0x07, 0x11, 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x24, 0x01, 0x0C, 0xCE, +0x6C, 0x3C, 0x01, 0x69, 0xFE, 0x97, 0x01, 0x96, 0x80, 0x5A, 0x5A, 0x80, 0x02, 0xBC, 0xFD, 0x44, +0x01, 0x2A, 0x68, 0x68, 0x01, 0x2A, 0x68, 0x68, 0x00, 0x02, 0x00, 0x30, 0xFF, 0x78, 0x02, 0xD3, +0x03, 0x1D, 0x00, 0x2F, 0x00, 0x33, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, +0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, +0x33, 0x32, 0x3E, 0x02, 0x35, 0x35, 0x17, 0x23, 0x35, 0x21, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, +0x07, 0x11, 0x33, 0x11, 0x01, 0x9B, 0x4C, 0x84, 0x64, 0x37, 0x37, 0x63, 0x84, 0x4C, 0x35, 0x65, +0x52, 0x1A, 0x46, 0x1E, 0x3F, 0x42, 0x21, 0x36, 0x5B, 0x45, 0x26, 0x28, 0x47, 0x5D, 0x34, 0x27, +0x46, 0x36, 0x1E, 0x0F, 0xD6, 0x01, 0x36, 0x02, 0x02, 0x01, 0x30, 0x55, 0x71, 0x9E, 0x61, 0x0A, +0x37, 0x62, 0x83, 0x4C, 0x4B, 0x82, 0x61, 0x36, 0x1E, 0x36, 0x23, 0x49, 0x1D, 0x26, 0x14, 0x26, +0x44, 0x5B, 0x36, 0x34, 0x5D, 0x46, 0x28, 0x17, 0x2A, 0x37, 0x1F, 0x14, 0x0E, 0x6B, 0x0B, 0x15, +0x13, 0x09, 0x45, 0x71, 0x53, 0x2C, 0x7E, 0x03, 0xA5, 0xFC, 0x5B, 0x00, 0x00, 0x05, 0x00, 0x1E, +0x00, 0x00, 0x02, 0xD4, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, +0x00, 0x00, 0x77, 0x27, 0x01, 0x33, 0x01, 0x35, 0x33, 0x07, 0x03, 0x11, 0x33, 0x11, 0x21, 0x01, +0x37, 0x01, 0x01, 0x35, 0x33, 0x15, 0xD7, 0x06, 0x01, 0x6F, 0x8E, 0xFD, 0x50, 0xAD, 0x04, 0x4A, +0x6C, 0x01, 0x64, 0xFE, 0xF4, 0x50, 0x01, 0x43, 0xFE, 0xA5, 0xFF, 0xD4, 0x79, 0x01, 0x6F, 0xFE, +0x84, 0x5F, 0x5F, 0xFE, 0xC0, 0x02, 0xBC, 0xFD, 0x44, 0x01, 0x66, 0x45, 0xFE, 0x55, 0x01, 0x40, +0x5F, 0x5F, 0x00, 0x04, 0x00, 0x1E, 0xFF, 0xEB, 0x02, 0x4E, 0x02, 0xC6, 0x00, 0x24, 0x00, 0x40, +0x00, 0x44, 0x00, 0x48, 0x00, 0x00, 0x77, 0x27, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x02, +0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, +0x14, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x17, 0x22, 0x26, 0x27, 0x2E, 0x02, 0x23, +0x22, 0x06, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, +0x37, 0x17, 0x06, 0x06, 0x25, 0x35, 0x21, 0x15, 0x25, 0x35, 0x21, 0x15, 0xC5, 0x4B, 0x16, 0x1F, +0x0C, 0x14, 0x0C, 0x0C, 0x05, 0x38, 0x65, 0x45, 0x43, 0x63, 0x17, 0x4A, 0x0F, 0x24, 0x29, 0x17, +0x25, 0x39, 0x20, 0x15, 0x0A, 0x0A, 0x14, 0x11, 0x22, 0xC9, 0x17, 0x43, 0x16, 0x0D, 0x24, 0x24, +0x0E, 0x15, 0x30, 0x32, 0x19, 0x28, 0x27, 0x63, 0x3B, 0x13, 0x2D, 0x2B, 0x15, 0x30, 0x16, 0x1C, +0x38, 0x1D, 0x34, 0x1F, 0x57, 0xFE, 0x54, 0x01, 0x98, 0xFE, 0x68, 0x01, 0x98, 0x35, 0x15, 0x0C, +0x48, 0x2B, 0x1C, 0x3F, 0x3C, 0x25, 0x30, 0x22, 0x10, 0x43, 0x65, 0x37, 0x2D, 0x28, 0x38, 0x10, +0x15, 0x0B, 0x22, 0x3B, 0x26, 0x1F, 0x49, 0x1D, 0x1E, 0x45, 0x1E, 0x1E, 0x39, 0x37, 0x67, 0x12, +0x07, 0x04, 0x0A, 0x08, 0x08, 0x0E, 0x0A, 0x47, 0x18, 0x19, 0x0A, 0x0F, 0x07, 0x0F, 0x11, 0x12, +0x41, 0x1C, 0x1E, 0xE0, 0x55, 0x55, 0x78, 0x55, 0x55, 0x00, 0x00, 0x03, 0x00, 0x1C, 0xFF, 0xF6, +0x02, 0x30, 0x02, 0xBC, 0x00, 0x11, 0x00, 0x15, 0x00, 0x19, 0x00, 0x00, 0x57, 0x22, 0x26, 0x27, +0x11, 0x33, 0x11, 0x27, 0x32, 0x3E, 0x02, 0x37, 0x17, 0x0E, 0x03, 0x27, 0x27, 0x25, 0x17, 0x05, +0x27, 0x25, 0x17, 0xED, 0x20, 0x26, 0x0B, 0x62, 0x0A, 0x26, 0x47, 0x3C, 0x2C, 0x0B, 0x5C, 0x04, +0x3B, 0x5B, 0x70, 0xCF, 0x27, 0x01, 0x54, 0x2C, 0xFE, 0x93, 0x27, 0x01, 0x54, 0x2C, 0x0A, 0x05, +0x05, 0x02, 0xBC, 0xFD, 0x78, 0x23, 0x12, 0x23, 0x31, 0x1E, 0x1A, 0x27, 0x49, 0x39, 0x22, 0xBA, +0x44, 0xBF, 0x43, 0x20, 0x44, 0xBF, 0x43, 0x00, 0x00, 0x02, 0x00, 0x62, 0x00, 0x00, 0x02, 0x96, +0x03, 0x21, 0x00, 0x15, 0x00, 0x19, 0x00, 0x00, 0x73, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, +0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x37, 0x11, +0x33, 0x11, 0x62, 0x49, 0x80, 0x51, 0x51, 0x80, 0x49, 0x6C, 0x30, 0x4F, 0x2F, 0x32, 0x51, 0x30, +0x82, 0x61, 0x01, 0xB0, 0x4F, 0x7D, 0x47, 0x47, 0x7D, 0x4F, 0xFE, 0x50, 0x01, 0xA7, 0x33, 0x51, +0x30, 0x30, 0x51, 0x33, 0xFE, 0x59, 0xFE, 0x02, 0x23, 0xFD, 0xDD, 0x00, 0x00, 0x02, 0x00, 0x0A, +0x00, 0x00, 0x03, 0x11, 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x23, 0x00, 0x00, 0x53, 0x35, 0x33, 0x17, +0x21, 0x37, 0x33, 0x15, 0x23, 0x27, 0x21, 0x07, 0x03, 0x11, 0x33, 0x01, 0x07, 0x2E, 0x04, 0x35, +0x35, 0x33, 0x11, 0x23, 0x01, 0x37, 0x1E, 0x04, 0x15, 0x11, 0x0A, 0x5E, 0x22, 0x02, 0x00, 0x2A, +0x5D, 0x62, 0x29, 0xFD, 0xFE, 0x1E, 0x04, 0x61, 0x01, 0xAC, 0x10, 0x04, 0x06, 0x05, 0x03, 0x02, +0x6C, 0x63, 0xFE, 0x5B, 0x0B, 0x05, 0x07, 0x05, 0x02, 0x01, 0x01, 0x3A, 0x5D, 0x07, 0x07, 0x5D, +0x07, 0x07, 0xFE, 0xC6, 0x02, 0xBC, 0xFD, 0xC3, 0x09, 0x19, 0x3B, 0x43, 0x4B, 0x52, 0x2C, 0xE6, +0xFD, 0x44, 0x02, 0x28, 0x0E, 0x3D, 0x55, 0x3B, 0x25, 0x18, 0x09, 0xFE, 0xDD, 0x00, 0x00, 0x03, +0x00, 0x62, 0x00, 0x00, 0x02, 0xD9, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x10, 0x00, 0x1B, 0x00, 0x00, +0x53, 0x35, 0x21, 0x15, 0x01, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, +0x11, 0x11, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x62, 0x02, 0x77, 0xFD, +0xD9, 0x01, 0x1D, 0x39, 0x5D, 0x38, 0x38, 0x5D, 0x39, 0xB1, 0xAF, 0x1B, 0x2C, 0x1B, 0x1B, 0x2C, +0x1B, 0xAF, 0x01, 0xB3, 0x5D, 0x5D, 0xFE, 0x4D, 0x02, 0xBC, 0x39, 0x62, 0x3C, 0x3C, 0x62, 0x3B, +0xFE, 0xF4, 0x01, 0x74, 0x1F, 0x33, 0x1F, 0x1F, 0x32, 0x1E, 0x00, 0x04, 0x00, 0x62, 0x00, 0x00, +0x02, 0xDD, 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x24, 0x00, 0x2F, 0x00, 0x00, 0x53, 0x35, +0x33, 0x17, 0x21, 0x37, 0x33, 0x15, 0x23, 0x27, 0x21, 0x07, 0x27, 0x35, 0x33, 0x17, 0x21, 0x37, +0x33, 0x15, 0x23, 0x27, 0x21, 0x07, 0x03, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, +0x23, 0x23, 0x11, 0x11, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x62, 0x74, +0x17, 0x01, 0x44, 0x23, 0x89, 0x8E, 0x20, 0xFE, 0xBC, 0x18, 0x71, 0x77, 0x16, 0x01, 0x3C, 0x25, +0x8D, 0x88, 0x24, 0xFE, 0xBD, 0x1A, 0x1A, 0x01, 0x1D, 0x39, 0x5D, 0x38, 0x38, 0x5D, 0x39, 0xB1, +0xAF, 0x1B, 0x2C, 0x1B, 0x1B, 0x2C, 0x1B, 0xAF, 0x01, 0x89, 0x4A, 0x0A, 0x0A, 0x4A, 0x0E, 0x0E, +0x73, 0x48, 0x0E, 0x0E, 0x48, 0x08, 0x08, 0xFE, 0x04, 0x02, 0xBC, 0x39, 0x62, 0x3C, 0x3C, 0x62, +0x3B, 0xFE, 0xF4, 0x01, 0x74, 0x1F, 0x33, 0x1F, 0x1F, 0x32, 0x1E, 0x00, 0x00, 0x04, 0x00, 0x62, +0x00, 0x00, 0x02, 0xAA, 0x02, 0xBC, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x15, 0x00, 0x22, 0x00, 0x00, +0x73, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x37, 0x11, 0x27, 0x35, +0x21, 0x15, 0x25, 0x35, 0x33, 0x15, 0x37, 0x27, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, +0x23, 0x23, 0x37, 0xBF, 0x01, 0x1D, 0x39, 0x5D, 0x38, 0x38, 0x5D, 0x39, 0xB9, 0x08, 0xC9, 0x01, +0x0C, 0xFE, 0xF5, 0x67, 0x61, 0x09, 0xB8, 0x1B, 0x2C, 0x1B, 0x1B, 0x2C, 0x1B, 0xB8, 0x09, 0x02, +0xBC, 0x39, 0x62, 0x3C, 0x3C, 0x62, 0x3B, 0x0E, 0xFE, 0xE6, 0x75, 0x5A, 0x5A, 0x9A, 0x5D, 0x5D, +0x57, 0x0E, 0x1F, 0x34, 0x1E, 0x1F, 0x32, 0x1E, 0x0F, 0x00, 0x00, 0x03, 0x00, 0x44, 0xFF, 0xFF, +0x01, 0xFE, 0x02, 0xBC, 0x00, 0x1A, 0x00, 0x1E, 0x00, 0x22, 0x00, 0x00, 0x53, 0x27, 0x35, 0x33, +0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35, 0x21, 0x15, 0x23, 0x27, 0x32, 0x1E, 0x02, +0x15, 0x14, 0x0E, 0x02, 0x23, 0x13, 0x03, 0x37, 0x13, 0x03, 0x35, 0x21, 0x15, 0xA0, 0x29, 0x6C, +0x2C, 0x39, 0x21, 0x3B, 0x25, 0x83, 0x01, 0xB6, 0xBE, 0x63, 0x2D, 0x50, 0x3D, 0x23, 0x23, 0x3C, +0x51, 0x2D, 0x82, 0xE1, 0x6F, 0xF5, 0xEC, 0x01, 0x0C, 0x01, 0x07, 0x37, 0x31, 0x40, 0x2F, 0x23, +0x35, 0x1E, 0x68, 0x68, 0x40, 0x1C, 0x31, 0x43, 0x27, 0x2B, 0x4D, 0x3C, 0x22, 0xFE, 0xF9, 0x01, +0x3C, 0x19, 0xFE, 0xAA, 0x01, 0xB2, 0x5A, 0x5A, 0x00, 0x03, 0x00, 0x1E, 0xFF, 0xEB, 0x02, 0x4E, +0x02, 0xC6, 0x00, 0x27, 0x00, 0x42, 0x00, 0x46, 0x00, 0x00, 0x77, 0x27, 0x3E, 0x02, 0x35, 0x34, +0x2E, 0x02, 0x27, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x2E, 0x02, +0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x17, 0x22, +0x26, 0x27, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, +0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0x35, 0x21, 0x15, 0xC5, 0x4B, 0x0F, 0x18, +0x0E, 0x03, 0x06, 0x0D, 0x0A, 0x0C, 0x0C, 0x05, 0x38, 0x65, 0x45, 0x43, 0x63, 0x17, 0x4A, 0x0F, +0x24, 0x29, 0x17, 0x25, 0x39, 0x20, 0x15, 0x0A, 0x0A, 0x14, 0x11, 0x22, 0xC9, 0x17, 0x43, 0x16, +0x0D, 0x24, 0x24, 0x0E, 0x20, 0x4B, 0x25, 0x28, 0x27, 0x60, 0x31, 0x1D, 0x30, 0x2B, 0x15, 0x30, +0x16, 0x1C, 0x38, 0x1D, 0x34, 0x1F, 0x57, 0xFE, 0x54, 0x01, 0x98, 0x35, 0x15, 0x08, 0x26, 0x34, +0x1D, 0x0E, 0x1C, 0x23, 0x2C, 0x1E, 0x25, 0x30, 0x22, 0x10, 0x43, 0x65, 0x37, 0x2D, 0x28, 0x38, +0x10, 0x15, 0x0B, 0x22, 0x3B, 0x26, 0x1F, 0x49, 0x1D, 0x1E, 0x45, 0x1E, 0x1E, 0x39, 0x37, 0x67, +0x12, 0x07, 0x04, 0x0A, 0x08, 0x11, 0x0F, 0x47, 0x18, 0x19, 0x0A, 0x0F, 0x07, 0x0F, 0x11, 0x12, +0x41, 0x1C, 0x1E, 0x01, 0x58, 0x55, 0x55, 0x00, 0x00, 0x02, 0x00, 0x18, 0x00, 0x00, 0x03, 0xCC, +0x02, 0xBC, 0x00, 0x0B, 0x00, 0x2E, 0x00, 0x00, 0x53, 0x35, 0x33, 0x17, 0x21, 0x37, 0x33, 0x15, +0x23, 0x27, 0x21, 0x07, 0x13, 0x03, 0x33, 0x13, 0x1E, 0x03, 0x17, 0x27, 0x3E, 0x02, 0x37, 0x13, +0x33, 0x13, 0x1E, 0x02, 0x17, 0x07, 0x3E, 0x04, 0x37, 0x13, 0x33, 0x03, 0x23, 0x03, 0x17, 0x03, +0x2E, 0x77, 0x21, 0x02, 0x5B, 0x24, 0x71, 0x88, 0x31, 0xFD, 0xE6, 0x30, 0x44, 0xDF, 0x73, 0x87, +0x06, 0x0A, 0x08, 0x07, 0x03, 0x1D, 0x0F, 0x11, 0x0A, 0x04, 0x7E, 0x61, 0x7A, 0x0A, 0x0F, 0x0C, +0x07, 0x1A, 0x05, 0x05, 0x04, 0x04, 0x09, 0x08, 0x85, 0x74, 0xDF, 0x4B, 0xB9, 0x09, 0xB2, 0x01, +0x42, 0x5D, 0x0E, 0x0E, 0x5D, 0x0E, 0x0E, 0xFE, 0xBE, 0x02, 0xBC, 0xFE, 0x4A, 0x10, 0x2B, 0x2C, +0x26, 0x0C, 0x01, 0x35, 0x3A, 0x1F, 0x0B, 0x01, 0x3C, 0xFE, 0xC4, 0x18, 0x2F, 0x2F, 0x1A, 0x07, +0x1B, 0x1F, 0x14, 0x13, 0x1E, 0x1A, 0x01, 0xB3, 0xFD, 0x44, 0x01, 0xB6, 0x04, 0xFE, 0x4E, 0x00, +0x00, 0x03, 0x00, 0x0A, 0x00, 0x00, 0x02, 0x8A, 0x02, 0xBC, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, +0x00, 0x00, 0x61, 0x11, 0x17, 0x01, 0x33, 0x13, 0x27, 0x13, 0x33, 0x01, 0x37, 0x11, 0x27, 0x35, +0x05, 0x15, 0x25, 0x35, 0x05, 0x15, 0x01, 0x1E, 0x07, 0xFE, 0xE5, 0x82, 0xD8, 0x19, 0xC3, 0x7C, +0xFE, 0xF1, 0x0F, 0xF8, 0x01, 0x9C, 0xFE, 0x64, 0x01, 0x9C, 0x01, 0x5D, 0x31, 0x01, 0x90, 0xFE, +0xCA, 0x03, 0x01, 0x33, 0xFE, 0x65, 0x44, 0xFE, 0x9B, 0x5A, 0x56, 0x02, 0x56, 0x8E, 0x56, 0x02, +0x56, 0x00, 0x00, 0x01, 0x00, 0x32, 0x00, 0xE5, 0x00, 0xC2, 0x01, 0x75, 0x00, 0x0F, 0x00, 0x00, +0x77, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, +0x7B, 0x14, 0x21, 0x14, 0x14, 0x21, 0x14, 0x13, 0x21, 0x13, 0x13, 0x21, 0xE5, 0x13, 0x21, 0x14, +0x13, 0x21, 0x14, 0x14, 0x21, 0x13, 0x14, 0x21, 0x13, 0x00, 0x00, 0x01, 0x00, 0x17, 0xFF, 0x95, +0x02, 0x11, 0x02, 0xF4, 0x00, 0x03, 0x00, 0x00, 0x57, 0x01, 0x33, 0x01, 0x17, 0x01, 0xA8, 0x52, +0xFE, 0x58, 0x6B, 0x03, 0x5F, 0xFC, 0xA1, 0x00, 0x00, 0x02, 0x00, 0x2D, 0x00, 0x2A, 0x02, 0x22, +0x02, 0x0D, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x77, 0x35, 0x21, 0x15, 0x05, 0x11, 0x33, 0x11, +0x2D, 0x01, 0xF5, 0xFE, 0xD0, 0x69, 0xEB, 0x5A, 0x5A, 0xC1, 0x01, 0xE3, 0xFE, 0x1D, 0x00, 0x01, +0x00, 0x32, 0x00, 0xF7, 0x02, 0x12, 0x01, 0x50, 0x00, 0x03, 0x00, 0x00, 0x77, 0x35, 0x21, 0x15, +0x32, 0x01, 0xE0, 0xF7, 0x59, 0x59, 0x00, 0x02, 0x00, 0x23, 0x00, 0x47, 0x01, 0xC1, 0x01, 0xE6, +0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x65, 0x01, 0x37, 0x01, 0x05, 0x27, 0x01, 0x17, 0x01, 0x81, +0xFE, 0xA2, 0x40, 0x01, 0x5E, 0xFE, 0xA1, 0x3B, 0x01, 0x5C, 0x3C, 0x4E, 0x01, 0x5C, 0x3C, 0xFE, +0xA3, 0x42, 0x41, 0x01, 0x5E, 0x40, 0x00, 0x03, 0x00, 0x32, 0x00, 0x0F, 0x02, 0x23, 0x01, 0xF6, +0x00, 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x00, 0x77, 0x35, 0x21, 0x15, 0x07, 0x22, 0x26, 0x26, +0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x03, 0x22, 0x26, 0x26, +0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x32, 0x01, 0xF1, 0xFE, +0x12, 0x1E, 0x12, 0x12, 0x1E, 0x12, 0x12, 0x1E, 0x11, 0x11, 0x1E, 0x12, 0x12, 0x1E, 0x12, 0x12, +0x1E, 0x12, 0x12, 0x1E, 0x11, 0x12, 0x1E, 0xD7, 0x5A, 0x5A, 0xC8, 0x12, 0x1D, 0x12, 0x12, 0x1E, +0x11, 0x11, 0x1E, 0x12, 0x12, 0x1D, 0x12, 0x01, 0x65, 0x12, 0x1D, 0x11, 0x12, 0x1E, 0x12, 0x12, +0x1E, 0x12, 0x11, 0x1D, 0x12, 0x00, 0x00, 0x02, 0x00, 0x32, 0x00, 0x8E, 0x02, 0x04, 0x01, 0xA5, +0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x05, 0x35, 0x21, 0x15, 0x32, 0x01, +0xD2, 0xFE, 0x2E, 0x01, 0xD2, 0x01, 0x4B, 0x5A, 0x5A, 0xBD, 0x59, 0x59, 0x00, 0x03, 0x00, 0x32, +0x00, 0x1C, 0x02, 0x04, 0x02, 0x19, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x77, 0x01, +0x37, 0x01, 0x27, 0x35, 0x21, 0x15, 0x25, 0x35, 0x21, 0x15, 0x63, 0x01, 0x0D, 0x56, 0xFE, 0xEF, +0x83, 0x01, 0xD2, 0xFE, 0x2E, 0x01, 0xD2, 0x1C, 0x01, 0xFC, 0x01, 0xFE, 0x03, 0x72, 0x59, 0x59, +0xBD, 0x5A, 0x5A, 0x00, 0x00, 0x01, 0x00, 0x41, 0x00, 0x04, 0x01, 0xDA, 0x01, 0xF3, 0x00, 0x07, +0x00, 0x00, 0x77, 0x27, 0x25, 0x15, 0x25, 0x37, 0x05, 0x15, 0x71, 0x30, 0x01, 0x67, 0xFE, 0x99, +0x30, 0x01, 0x69, 0x04, 0x4B, 0xCE, 0x43, 0xCE, 0x4B, 0xCF, 0x51, 0x00, 0x00, 0x01, 0x00, 0x32, +0x00, 0x04, 0x01, 0xCB, 0x01, 0xF3, 0x00, 0x07, 0x00, 0x00, 0x65, 0x25, 0x35, 0x25, 0x17, 0x05, +0x35, 0x05, 0x01, 0x9B, 0xFE, 0x97, 0x01, 0x69, 0x30, 0xFE, 0x99, 0x01, 0x67, 0x04, 0xCF, 0x51, +0xCF, 0x4B, 0xCE, 0x43, 0xCE, 0x00, 0x00, 0x02, 0x00, 0x42, 0x00, 0x00, 0x02, 0x33, 0x02, 0x06, +0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x77, 0x27, 0x25, 0x07, 0x25, 0x37, 0x05, 0x15, 0x01, 0x35, +0x21, 0x15, 0x82, 0x16, 0x01, 0x84, 0x05, 0xFE, 0x7A, 0x1D, 0x01, 0xB0, 0xFE, 0x10, 0x01, 0xF1, +0x8A, 0x51, 0x8F, 0x3F, 0x91, 0x4A, 0x9D, 0x41, 0xFE, 0xD8, 0x5A, 0x5A, 0x00, 0x02, 0x00, 0x40, +0x00, 0x00, 0x02, 0x31, 0x02, 0x06, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x65, 0x25, 0x35, 0x25, +0x17, 0x05, 0x27, 0x05, 0x05, 0x35, 0x21, 0x15, 0x01, 0xF1, 0xFE, 0x50, 0x01, 0xB0, 0x1D, 0xFE, +0x7A, 0x05, 0x01, 0x84, 0xFE, 0x39, 0x01, 0xF1, 0x8A, 0x9E, 0x41, 0x9D, 0x4A, 0x91, 0x3F, 0x8F, +0xDB, 0x5A, 0x5A, 0x00, 0x00, 0x03, 0x00, 0x32, 0xFF, 0xFF, 0x02, 0x14, 0x02, 0x16, 0x00, 0x03, +0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x25, 0x11, +0x33, 0x11, 0x32, 0x01, 0xE2, 0xFE, 0x1E, 0x01, 0xE2, 0xFE, 0xDC, 0x68, 0x01, 0x1D, 0x5A, 0x5A, +0xFE, 0xE2, 0x5C, 0x5C, 0x90, 0x01, 0x87, 0xFE, 0x79, 0x00, 0x00, 0x02, 0x00, 0x32, 0x00, 0x65, +0x01, 0xFD, 0x01, 0xB1, 0x00, 0x1F, 0x00, 0x3F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x27, 0x2E, +0x02, 0x23, 0x22, 0x06, 0x17, 0x07, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x1E, 0x02, +0x33, 0x32, 0x36, 0x35, 0x37, 0x14, 0x06, 0x06, 0x07, 0x22, 0x26, 0x26, 0x27, 0x2E, 0x02, 0x23, +0x22, 0x06, 0x17, 0x07, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x1E, 0x02, 0x33, 0x32, +0x36, 0x35, 0x37, 0x14, 0x06, 0x06, 0x01, 0x8B, 0x12, 0x32, 0x30, 0x11, 0x0C, 0x25, 0x26, 0x0E, +0x11, 0x15, 0x01, 0x4A, 0x1D, 0x36, 0x27, 0x12, 0x30, 0x2F, 0x10, 0x0C, 0x25, 0x25, 0x0D, 0x12, +0x11, 0x4A, 0x1A, 0x33, 0x25, 0x12, 0x32, 0x30, 0x11, 0x0C, 0x25, 0x26, 0x0E, 0x11, 0x15, 0x01, +0x4A, 0x1D, 0x36, 0x27, 0x12, 0x30, 0x2F, 0x10, 0x0C, 0x25, 0x25, 0x0D, 0x12, 0x11, 0x4A, 0x1A, +0x33, 0x01, 0x1C, 0x0F, 0x13, 0x07, 0x05, 0x10, 0x0C, 0x18, 0x14, 0x05, 0x27, 0x37, 0x1E, 0x0F, +0x13, 0x07, 0x05, 0x10, 0x0C, 0x16, 0x20, 0x02, 0x29, 0x3B, 0x1F, 0xB7, 0x0F, 0x13, 0x07, 0x05, +0x10, 0x0C, 0x18, 0x14, 0x05, 0x27, 0x37, 0x1E, 0x0F, 0x13, 0x07, 0x05, 0x10, 0x0C, 0x16, 0x20, +0x02, 0x29, 0x3B, 0x1F, 0x00, 0x01, 0x00, 0x28, 0x00, 0xE1, 0x01, 0xD6, 0x01, 0x71, 0x00, 0x1F, +0x00, 0x00, 0x65, 0x22, 0x26, 0x26, 0x27, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x15, 0x23, 0x34, 0x36, +0x33, 0x32, 0x1E, 0x02, 0x17, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x27, 0x17, 0x14, 0x06, 0x06, 0x01, +0x64, 0x0F, 0x2C, 0x2B, 0x0F, 0x0E, 0x23, 0x1F, 0x08, 0x12, 0x13, 0x4A, 0x3F, 0x3B, 0x0C, 0x1F, +0x1F, 0x1E, 0x0B, 0x0E, 0x21, 0x1D, 0x08, 0x11, 0x14, 0x02, 0x4A, 0x1A, 0x33, 0xE1, 0x0C, 0x10, +0x05, 0x06, 0x0C, 0x09, 0x1E, 0x1C, 0x44, 0x4A, 0x07, 0x0B, 0x0B, 0x05, 0x05, 0x0C, 0x09, 0x1B, +0x15, 0x03, 0x2A, 0x39, 0x1E, 0x00, 0x00, 0x01, 0x00, 0x32, 0x00, 0x75, 0x02, 0x6C, 0x01, 0x94, +0x00, 0x06, 0x00, 0x00, 0x65, 0x35, 0x17, 0x21, 0x35, 0x21, 0x11, 0x02, 0x03, 0x13, 0xFE, 0x1C, +0x02, 0x3A, 0x75, 0xCA, 0x0C, 0x61, 0xFE, 0xE1, 0x00, 0x01, 0x00, 0x1D, 0x01, 0x70, 0x02, 0x27, +0x02, 0xD7, 0x00, 0x07, 0x00, 0x00, 0x53, 0x13, 0x33, 0x13, 0x23, 0x03, 0x37, 0x03, 0x1D, 0xD3, +0x64, 0xD3, 0x73, 0x9B, 0x14, 0x9F, 0x01, 0x70, 0x01, 0x67, 0xFE, 0x99, 0x01, 0x09, 0x03, 0xFE, +0xF4, 0x00, 0x00, 0x02, 0x00, 0x2D, 0x00, 0x2F, 0x03, 0x36, 0x01, 0xB5, 0x00, 0x1E, 0x00, 0x3E, +0x00, 0x00, 0x65, 0x22, 0x26, 0x27, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, +0x16, 0x33, 0x32, 0x36, 0x37, 0x37, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, +0x21, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x17, 0x16, 0x16, +0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x07, 0x0E, 0x02, 0x02, +0x8E, 0x2D, 0x46, 0x2B, 0xAC, 0x16, 0x36, 0x1B, 0x1B, 0x2A, 0x18, 0x18, 0x2A, 0x1C, 0x1B, 0x30, +0x17, 0xA8, 0x1F, 0x33, 0x33, 0x1F, 0x32, 0x4D, 0x2B, 0x2A, 0x4C, 0xFE, 0x15, 0x32, 0x4C, 0x2A, +0x2B, 0x4D, 0x32, 0x1F, 0x32, 0x33, 0x20, 0xA8, 0x18, 0x30, 0x1A, 0x1C, 0x2A, 0x18, 0x18, 0x2B, +0x1B, 0x1A, 0x36, 0x17, 0xAB, 0x1D, 0x31, 0x32, 0x2F, 0x22, 0x2C, 0xB5, 0x17, 0x1A, 0x1C, 0x32, +0x23, 0x23, 0x32, 0x1C, 0x18, 0x18, 0xB0, 0x21, 0x24, 0x0F, 0x30, 0x58, 0x3B, 0x3C, 0x57, 0x30, +0x30, 0x57, 0x3C, 0x3B, 0x58, 0x30, 0x0E, 0x25, 0x21, 0xB0, 0x19, 0x17, 0x1C, 0x32, 0x23, 0x23, +0x32, 0x1C, 0x1A, 0x17, 0xB5, 0x1E, 0x22, 0x0E, 0x00, 0x03, 0x00, 0x22, 0xFF, 0xF3, 0x02, 0x50, +0x02, 0x18, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x00, 0x57, 0x27, 0x01, 0x17, 0x01, 0x22, +0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, +0x36, 0x36, 0x27, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x17, 0x06, 0x16, 0x16, 0x62, 0x40, +0x01, 0xF1, 0x3D, 0xFE, 0xE4, 0x4D, 0x79, 0x46, 0x46, 0x79, 0x4D, 0x4C, 0x79, 0x46, 0x46, 0x79, +0x4C, 0x2F, 0x4A, 0x2A, 0x01, 0x01, 0x2A, 0x4A, 0x2F, 0x2F, 0x4B, 0x2A, 0x01, 0x01, 0x2A, 0x4B, +0x0D, 0x42, 0x01, 0xE2, 0x42, 0xFE, 0x21, 0x47, 0x7B, 0x4F, 0x4F, 0x7B, 0x47, 0x47, 0x7B, 0x4F, +0x4F, 0x7B, 0x47, 0x5E, 0x2F, 0x51, 0x33, 0x34, 0x51, 0x2E, 0x2F, 0x51, 0x33, 0x33, 0x51, 0x2F, +0x00, 0x01, 0x00, 0x00, 0xFF, 0x81, 0x02, 0x31, 0x02, 0xE9, 0x00, 0x20, 0x00, 0x00, 0x57, 0x22, +0x26, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x13, 0x3E, 0x02, 0x33, 0x32, +0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x03, 0x0E, 0x02, 0x6F, 0x0F, 0x25, +0x27, 0x14, 0x2F, 0x0C, 0x25, 0x11, 0x13, 0x1E, 0x14, 0x05, 0x51, 0x0B, 0x2F, 0x47, 0x2F, 0x26, +0x3A, 0x15, 0x1D, 0x15, 0x2F, 0x13, 0x13, 0x1E, 0x15, 0x05, 0x50, 0x0B, 0x2F, 0x48, 0x7F, 0x0B, +0x14, 0x0F, 0x51, 0x0A, 0x0B, 0x15, 0x28, 0x1C, 0x01, 0xDF, 0x42, 0x58, 0x2C, 0x11, 0x12, 0x5F, +0x0E, 0x0F, 0x15, 0x2A, 0x1F, 0xFE, 0x21, 0x42, 0x58, 0x2C, 0x00, 0x01, 0x00, 0x19, 0x00, 0x00, +0x02, 0x8A, 0x02, 0xC6, 0x00, 0x36, 0x00, 0x00, 0x73, 0x35, 0x33, 0x07, 0x2E, 0x02, 0x35, 0x34, +0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x07, 0x27, 0x33, 0x15, 0x23, 0x35, +0x3E, 0x02, 0x37, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x16, +0x16, 0x17, 0x1E, 0x03, 0x17, 0x15, 0x27, 0xAB, 0x19, 0x31, 0x48, 0x27, 0x2F, 0x55, 0x72, 0x43, +0x43, 0x72, 0x54, 0x2F, 0x27, 0x47, 0x31, 0x13, 0xA4, 0xFA, 0x1A, 0x26, 0x18, 0x05, 0x18, 0x21, +0x11, 0x20, 0x3B, 0x4E, 0x2E, 0x2E, 0x4F, 0x3A, 0x20, 0x1C, 0x32, 0x21, 0x0B, 0x11, 0x0D, 0x09, +0x03, 0x61, 0x20, 0x32, 0x72, 0x76, 0x39, 0x42, 0x70, 0x52, 0x2E, 0x2E, 0x53, 0x70, 0x42, 0x38, +0x76, 0x72, 0x31, 0x1F, 0x61, 0x38, 0x20, 0x30, 0x1F, 0x07, 0x22, 0x44, 0x4F, 0x30, 0x2D, 0x4D, +0x38, 0x20, 0x1F, 0x39, 0x4D, 0x2D, 0x3D, 0x5F, 0x51, 0x29, 0x0E, 0x15, 0x11, 0x0D, 0x04, 0x38, +0x00, 0x02, 0x00, 0x0E, 0x00, 0x00, 0x02, 0xBD, 0x02, 0xCD, 0x00, 0x02, 0x00, 0x08, 0x00, 0x00, +0x73, 0x01, 0x01, 0x25, 0x27, 0x21, 0x07, 0x03, 0x33, 0x0E, 0x01, 0x55, 0x01, 0x5A, 0xFD, 0xCE, +0x11, 0x01, 0xDC, 0x19, 0xE2, 0x10, 0x02, 0xCD, 0xFD, 0x33, 0x40, 0x13, 0x16, 0x01, 0xD5, 0x00, +0x00, 0x03, 0x00, 0x1C, 0xFF, 0x38, 0x02, 0xA8, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, +0x00, 0x00, 0x45, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x01, 0xDC, +0x69, 0xFE, 0x3A, 0x68, 0xCB, 0x02, 0x8C, 0xC8, 0x03, 0x58, 0xFC, 0xA8, 0x03, 0x49, 0xFC, 0xB7, +0x03, 0x23, 0x61, 0x61, 0x00, 0x01, 0x00, 0x3D, 0x00, 0x00, 0x01, 0xE0, 0x02, 0xA4, 0x00, 0x0F, +0x00, 0x00, 0x73, 0x27, 0x13, 0x17, 0x03, 0x37, 0x21, 0x15, 0x21, 0x37, 0x13, 0x15, 0x03, 0x27, +0x21, 0x15, 0x69, 0x2C, 0xE3, 0x03, 0xE6, 0x2C, 0x01, 0x77, 0xFE, 0xA9, 0x0A, 0xD8, 0xD9, 0x03, +0x01, 0x51, 0x64, 0x01, 0x0B, 0x3B, 0x01, 0x0C, 0x64, 0x52, 0x0D, 0xFE, 0xFB, 0x0F, 0xFE, 0xFB, +0x0B, 0x51, 0x00, 0x01, 0x00, 0x0F, 0xFF, 0x7E, 0x02, 0x98, 0x02, 0xBC, 0x00, 0x0A, 0x00, 0x00, +0x57, 0x03, 0x33, 0x13, 0x27, 0x01, 0x33, 0x15, 0x23, 0x37, 0x01, 0xBF, 0xB0, 0x6D, 0x87, 0x37, +0x01, 0x0D, 0xBF, 0xAC, 0x3E, 0xFE, 0xEF, 0x82, 0x01, 0xB7, 0xFE, 0x73, 0x15, 0x02, 0xFF, 0x61, +0x11, 0xFD, 0x12, 0x00, 0x00, 0x01, 0x00, 0x50, 0xFF, 0x63, 0x02, 0x04, 0x02, 0x0D, 0x00, 0x1C, +0x00, 0x00, 0x57, 0x11, 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x11, 0x33, +0x11, 0x23, 0x35, 0x17, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x27, 0x37, 0x15, 0x50, 0x61, 0x18, +0x30, 0x23, 0x1D, 0x31, 0x24, 0x15, 0x61, 0x61, 0x07, 0x0C, 0x30, 0x3F, 0x22, 0x15, 0x29, 0x1F, +0x06, 0x07, 0x9D, 0x02, 0xAA, 0xFE, 0xD1, 0x2F, 0x3F, 0x20, 0x16, 0x27, 0x33, 0x1E, 0x01, 0x2F, +0xFD, 0xF3, 0x72, 0x0E, 0x24, 0x31, 0x19, 0x0F, 0x1B, 0x11, 0x0D, 0xDB, 0x00, 0x02, 0x00, 0x28, +0xFF, 0xF9, 0x02, 0x26, 0x02, 0xDF, 0x00, 0x20, 0x00, 0x30, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, +0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x04, 0x27, 0x37, 0x16, 0x16, +0x17, 0x16, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, +0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x26, 0x35, 0x5C, 0x46, 0x27, 0x27, 0x45, 0x56, +0x30, 0x2D, 0x49, 0x40, 0x1F, 0x24, 0x02, 0x1D, 0x30, 0x3F, 0x4B, 0x28, 0x1F, 0x3E, 0x78, 0x2F, +0x2A, 0x2E, 0x25, 0x45, 0x5D, 0x36, 0x2D, 0x4A, 0x2B, 0x2B, 0x4A, 0x2D, 0x2D, 0x49, 0x2B, 0x2B, +0x49, 0x07, 0x2A, 0x4A, 0x63, 0x39, 0x37, 0x62, 0x4B, 0x2B, 0x22, 0x4D, 0x3F, 0x11, 0x27, 0x4D, +0x48, 0x3D, 0x30, 0x0E, 0x4F, 0x0D, 0x5D, 0x47, 0x40, 0x91, 0x45, 0x3C, 0x68, 0x4F, 0x2C, 0x59, +0x31, 0x53, 0x33, 0x33, 0x52, 0x30, 0x30, 0x52, 0x33, 0x33, 0x53, 0x31, 0x00, 0x05, 0x00, 0x28, +0xFF, 0xF7, 0x03, 0x15, 0x02, 0xC5, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x33, 0x00, 0x43, +0x00, 0x00, 0x73, 0x01, 0x33, 0x01, 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, +0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, +0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, +0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, +0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x81, 0x01, 0xCF, 0x67, 0xFE, 0x2C, 0x22, 0x2D, 0x45, 0x27, +0x27, 0x46, 0x2D, 0x2D, 0x45, 0x27, 0x28, 0x46, 0x2B, 0x15, 0x1F, 0x11, 0x11, 0x1F, 0x16, 0x15, +0x20, 0x11, 0x11, 0x20, 0x01, 0xD0, 0x2D, 0x45, 0x28, 0x27, 0x46, 0x2D, 0x2D, 0x45, 0x27, 0x28, +0x45, 0x2C, 0x15, 0x20, 0x11, 0x11, 0x20, 0x15, 0x16, 0x20, 0x11, 0x11, 0x20, 0x02, 0xBC, 0xFD, +0x44, 0x01, 0x49, 0x31, 0x55, 0x37, 0x37, 0x57, 0x31, 0x31, 0x57, 0x37, 0x35, 0x56, 0x32, 0x4B, +0x1C, 0x33, 0x23, 0x23, 0x34, 0x1C, 0x1D, 0x33, 0x23, 0x23, 0x33, 0x1C, 0xFE, 0x63, 0x32, 0x55, +0x36, 0x37, 0x57, 0x31, 0x31, 0x57, 0x37, 0x35, 0x56, 0x32, 0x4A, 0x1D, 0x33, 0x23, 0x23, 0x33, +0x1D, 0x1C, 0x34, 0x23, 0x23, 0x33, 0x1D, 0x00, 0x00, 0x07, 0x00, 0x28, 0xFF, 0xF7, 0x04, 0x74, +0x02, 0xC5, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x33, 0x00, 0x43, 0x00, 0x53, 0x00, 0x63, +0x00, 0x00, 0x73, 0x01, 0x33, 0x01, 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, +0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, +0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, +0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, +0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x05, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, +0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, +0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x8A, 0x01, 0xCF, 0x67, 0xFE, 0x2C, 0x2B, 0x2D, 0x45, 0x27, +0x27, 0x46, 0x2D, 0x2D, 0x45, 0x27, 0x28, 0x46, 0x2B, 0x15, 0x1F, 0x11, 0x11, 0x1F, 0x16, 0x15, +0x20, 0x11, 0x11, 0x20, 0x01, 0xD0, 0x2D, 0x45, 0x28, 0x27, 0x46, 0x2D, 0x2D, 0x45, 0x27, 0x28, +0x45, 0x2C, 0x15, 0x20, 0x11, 0x11, 0x20, 0x15, 0x16, 0x20, 0x11, 0x11, 0x20, 0x01, 0x75, 0x2D, +0x45, 0x28, 0x27, 0x46, 0x2D, 0x2D, 0x45, 0x27, 0x28, 0x45, 0x2C, 0x16, 0x1F, 0x11, 0x11, 0x1F, +0x16, 0x16, 0x20, 0x11, 0x11, 0x20, 0x02, 0xBC, 0xFD, 0x44, 0x01, 0x49, 0x31, 0x55, 0x37, 0x37, +0x57, 0x31, 0x31, 0x57, 0x37, 0x35, 0x56, 0x32, 0x4B, 0x1C, 0x33, 0x23, 0x23, 0x34, 0x1C, 0x1D, +0x33, 0x23, 0x23, 0x33, 0x1C, 0xFE, 0x63, 0x32, 0x55, 0x36, 0x37, 0x57, 0x31, 0x31, 0x57, 0x37, +0x35, 0x56, 0x32, 0x4A, 0x1D, 0x33, 0x23, 0x23, 0x33, 0x1D, 0x1C, 0x34, 0x23, 0x23, 0x33, 0x1D, +0x4A, 0x32, 0x55, 0x36, 0x37, 0x57, 0x31, 0x31, 0x56, 0x38, 0x35, 0x56, 0x32, 0x4A, 0x1C, 0x34, +0x23, 0x23, 0x34, 0x1C, 0x1C, 0x34, 0x23, 0x23, 0x33, 0x1D, 0x00, 0x02, 0x00, 0x23, 0xFF, 0xD5, +0x02, 0x31, 0x02, 0xB2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x45, 0x09, 0x02, 0x05, 0x37, 0x27, +0x07, 0x01, 0x2A, 0xFE, 0xF9, 0x01, 0x07, 0x01, 0x07, 0xFE, 0xF9, 0xA1, 0xA1, 0xA1, 0x2B, 0x01, +0x72, 0x01, 0x6B, 0xFE, 0x98, 0xEB, 0xE8, 0xE0, 0xE0, 0x00, 0x00, 0x02, 0x00, 0x58, 0x02, 0x4D, +0x01, 0x9C, 0x03, 0xA9, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x00, 0x53, 0x22, 0x26, 0x27, 0x37, 0x16, +0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x27, 0x27, 0x37, 0x17, 0xFA, 0x40, 0x54, 0x0E, +0x4A, 0x0D, 0x2D, 0x1E, 0x1E, 0x2D, 0x0D, 0x4A, 0x0E, 0x54, 0x39, 0x34, 0x52, 0x57, 0x02, 0x4D, +0x48, 0x3E, 0x0C, 0x1E, 0x23, 0x23, 0x1E, 0x0C, 0x3E, 0x48, 0xA6, 0x24, 0x92, 0x3E, 0x00, 0x02, +0x00, 0x58, 0x02, 0x4D, 0x01, 0x9C, 0x03, 0xA9, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x00, 0x53, 0x22, +0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x27, 0x27, 0x37, 0x17, +0xFA, 0x40, 0x54, 0x0E, 0x4A, 0x0D, 0x2D, 0x1E, 0x1E, 0x2D, 0x0D, 0x4A, 0x0E, 0x54, 0x3D, 0x79, +0x56, 0x53, 0x02, 0x4D, 0x4D, 0x43, 0x0C, 0x22, 0x29, 0x29, 0x22, 0x0C, 0x43, 0x4D, 0xA4, 0x79, +0x3F, 0x92, 0x00, 0x02, 0x00, 0x58, 0x02, 0x4D, 0x01, 0x9C, 0x03, 0xB8, 0x00, 0x0D, 0x00, 0x2D, +0x00, 0x00, 0x53, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, +0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, +0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, +0xFA, 0x40, 0x54, 0x0E, 0x4A, 0x0D, 0x2D, 0x1E, 0x1E, 0x2D, 0x0D, 0x4A, 0x0E, 0x54, 0x57, 0x07, +0x08, 0x0B, 0x10, 0x11, 0x0D, 0x11, 0x0D, 0x10, 0x26, 0x11, 0x10, 0x14, 0x31, 0x14, 0x35, 0x35, +0x17, 0x0E, 0x12, 0x11, 0x02, 0x01, 0x02, 0x4D, 0x4D, 0x43, 0x0C, 0x22, 0x29, 0x29, 0x22, 0x0C, +0x43, 0x4D, 0xA7, 0x0A, 0x13, 0x09, 0x09, 0x16, 0x0B, 0x0B, 0x0C, 0x07, 0x09, 0x08, 0x0A, 0x08, +0x3F, 0x0D, 0x0B, 0x2D, 0x20, 0x19, 0x1D, 0x07, 0x09, 0x0D, 0x0A, 0x04, 0x06, 0x03, 0x00, 0x02, +0x00, 0x58, 0x02, 0x4D, 0x01, 0x9C, 0x03, 0xA8, 0x00, 0x0D, 0x00, 0x28, 0x00, 0x00, 0x53, 0x22, +0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x37, 0x22, 0x26, 0x27, +0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, +0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0xFA, 0x40, 0x54, 0x0E, 0x4A, 0x0D, 0x2D, 0x1E, 0x1E, 0x2D, +0x0D, 0x4A, 0x0E, 0x54, 0x0C, 0x1D, 0x26, 0x12, 0x0C, 0x16, 0x0D, 0x0D, 0x14, 0x04, 0x44, 0x02, +0x38, 0x25, 0x17, 0x24, 0x12, 0x0D, 0x17, 0x0A, 0x0E, 0x13, 0x04, 0x44, 0x01, 0x15, 0x25, 0x02, +0x4D, 0x4D, 0x43, 0x0C, 0x22, 0x29, 0x29, 0x22, 0x0C, 0x43, 0x4D, 0xE4, 0x13, 0x07, 0x05, 0x0A, +0x14, 0x11, 0x0A, 0x2A, 0x3F, 0x13, 0x08, 0x06, 0x09, 0x13, 0x13, 0x0A, 0x1C, 0x30, 0x1D, 0x00, +0x00, 0x02, 0x00, 0x1D, 0x02, 0x5F, 0x01, 0xD7, 0x03, 0x9F, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, +0x53, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27, 0x33, 0x37, 0x27, 0x37, 0x17, 0x43, 0x26, 0x73, 0x56, +0x73, 0x26, 0x87, 0x1E, 0x98, 0x34, 0x52, 0x57, 0x02, 0x5F, 0x21, 0x71, 0x71, 0x21, 0x49, 0x41, +0x24, 0x92, 0x3E, 0x00, 0x00, 0x02, 0x00, 0x47, 0x02, 0x5F, 0x01, 0xAE, 0x03, 0x9F, 0x00, 0x07, +0x00, 0x0B, 0x00, 0x00, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27, 0x33, 0x37, 0x27, 0x37, 0x17, +0x6D, 0x26, 0x73, 0x56, 0x73, 0x26, 0x87, 0x1E, 0x8A, 0x79, 0x56, 0x53, 0x02, 0x5F, 0x21, 0x71, +0x71, 0x21, 0x49, 0x3F, 0x79, 0x3F, 0x92, 0x00, 0x00, 0x02, 0x00, 0x27, 0x02, 0x5F, 0x01, 0xCD, +0x03, 0xA0, 0x00, 0x07, 0x00, 0x27, 0x00, 0x00, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27, 0x33, +0x37, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, +0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, +0x4D, 0x26, 0x73, 0x56, 0x73, 0x26, 0x87, 0x1E, 0x81, 0x07, 0x08, 0x0B, 0x10, 0x11, 0x0D, 0x11, +0x0D, 0x10, 0x26, 0x11, 0x10, 0x15, 0x30, 0x14, 0x35, 0x35, 0x17, 0x0E, 0x12, 0x11, 0x02, 0x01, +0x02, 0x5F, 0x21, 0x71, 0x71, 0x21, 0x49, 0x34, 0x0A, 0x13, 0x09, 0x09, 0x16, 0x0B, 0x0B, 0x0C, +0x07, 0x09, 0x08, 0x07, 0x0B, 0x3F, 0x0C, 0x0C, 0x2D, 0x20, 0x19, 0x1D, 0x07, 0x09, 0x0D, 0x0A, +0x04, 0x06, 0x03, 0x00, 0x00, 0x02, 0x00, 0x59, 0x02, 0x5F, 0x01, 0x9C, 0x03, 0x9E, 0x00, 0x07, +0x00, 0x22, 0x00, 0x00, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27, 0x33, 0x37, 0x22, 0x26, 0x27, +0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, +0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x82, 0x26, 0x73, 0x56, 0x73, 0x26, 0x87, 0x1E, 0x3D, 0x1D, +0x26, 0x12, 0x0C, 0x16, 0x0D, 0x0D, 0x14, 0x04, 0x44, 0x02, 0x38, 0x25, 0x17, 0x24, 0x12, 0x0D, +0x17, 0x0A, 0x0E, 0x13, 0x04, 0x44, 0x01, 0x15, 0x25, 0x02, 0x5F, 0x21, 0x71, 0x71, 0x21, 0x49, +0x7F, 0x13, 0x07, 0x05, 0x0A, 0x14, 0x11, 0x0A, 0x2A, 0x3F, 0x13, 0x08, 0x06, 0x09, 0x13, 0x13, +0x0A, 0x1C, 0x30, 0x1D, 0x00, 0x02, 0x00, 0x51, 0x02, 0x82, 0x01, 0xA3, 0x03, 0x04, 0x00, 0x0B, +0x00, 0x17, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, +0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x01, 0x5E, 0x21, 0x24, +0x25, 0x20, 0x21, 0x24, 0x25, 0xE8, 0x21, 0x24, 0x25, 0x20, 0x21, 0x24, 0x25, 0x02, 0x82, 0x22, +0x1F, 0x1D, 0x24, 0x22, 0x1F, 0x1D, 0x24, 0x22, 0x1F, 0x1D, 0x24, 0x22, 0x1F, 0x1D, 0x24, 0x00, +0x00, 0x03, 0x00, 0x51, 0x02, 0x7B, 0x01, 0xA3, 0x03, 0xC3, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x1B, +0x00, 0x00, 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x33, 0x22, +0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x27, 0x27, 0x37, 0x17, 0x96, 0x21, +0x24, 0x25, 0x20, 0x21, 0x24, 0x25, 0xA8, 0x21, 0x24, 0x25, 0x20, 0x21, 0x24, 0x25, 0x7C, 0x34, +0x52, 0x57, 0x02, 0x7B, 0x22, 0x1F, 0x1D, 0x24, 0x22, 0x1F, 0x1D, 0x24, 0x22, 0x1F, 0x1D, 0x24, +0x22, 0x1F, 0x1D, 0x24, 0x92, 0x24, 0x92, 0x3E, 0xFF, 0xFF, 0x00, 0x51, 0x02, 0x82, 0x01, 0xA3, +0x03, 0x86, 0x06, 0x26, 0x02, 0xF2, 0x00, 0x00, 0x00, 0x07, 0x03, 0x05, 0x00, 0x00, 0x00, 0xB9, +0x00, 0x01, 0x00, 0xB5, 0x02, 0x81, 0x01, 0x3F, 0x03, 0x03, 0x00, 0x0B, 0x00, 0x00, 0x53, 0x22, +0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xFA, 0x21, 0x24, 0x25, 0x20, 0x21, +0x24, 0x25, 0x02, 0x81, 0x22, 0x1F, 0x1D, 0x24, 0x22, 0x1F, 0x1D, 0x24, 0xFF, 0xFF, 0x00, 0x6C, +0x02, 0x81, 0x01, 0x88, 0x03, 0x86, 0x06, 0x26, 0x02, 0xF5, 0x00, 0x00, 0x00, 0x07, 0x03, 0x05, +0x00, 0x00, 0x00, 0xB9, 0x00, 0x01, 0x00, 0x92, 0x02, 0x5E, 0x01, 0x62, 0x03, 0x0E, 0x00, 0x03, +0x00, 0x00, 0x41, 0x27, 0x37, 0x17, 0x01, 0x40, 0xAE, 0x41, 0x8F, 0x02, 0x5E, 0x5E, 0x52, 0x7D, +0x00, 0x01, 0x00, 0x92, 0x02, 0x5E, 0x01, 0x62, 0x03, 0x0E, 0x00, 0x03, 0x00, 0x00, 0x53, 0x27, +0x37, 0x17, 0xB4, 0x22, 0x8F, 0x41, 0x02, 0x5E, 0x33, 0x7D, 0x52, 0x00, 0x00, 0x02, 0x00, 0x50, +0x02, 0x73, 0x01, 0xA4, 0x03, 0x24, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x27, 0x37, 0x17, +0x05, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x01, 0x2F, 0x34, 0x5C, +0x4D, 0xFE, 0xF1, 0x21, 0x24, 0x25, 0x20, 0x21, 0x24, 0x25, 0x02, 0x73, 0x24, 0x8D, 0x39, 0x70, +0x22, 0x1F, 0x1D, 0x24, 0x22, 0x1F, 0x1D, 0x24, 0x00, 0x02, 0x00, 0x2F, 0x02, 0x5E, 0x01, 0xC6, +0x03, 0x0E, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x27, 0x37, 0x17, 0x05, 0x27, 0x37, 0x17, +0x01, 0x18, 0x22, 0x8F, 0x41, 0xFE, 0x8B, 0x22, 0x8F, 0x41, 0x02, 0x5E, 0x33, 0x7D, 0x52, 0x5E, +0x33, 0x7D, 0x52, 0x00, 0x00, 0x01, 0x00, 0xB0, 0x01, 0xE9, 0x01, 0x44, 0x02, 0xAF, 0x00, 0x15, +0x00, 0x00, 0x53, 0x27, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x33, +0x32, 0x16, 0x15, 0x14, 0x0E, 0x02, 0xC8, 0x18, 0x0E, 0x19, 0x0F, 0x07, 0x0C, 0x12, 0x0C, 0x24, +0x1D, 0x21, 0x2D, 0x12, 0x20, 0x2E, 0x01, 0xE9, 0x2A, 0x04, 0x11, 0x15, 0x0A, 0x06, 0x08, 0x03, +0x05, 0x12, 0x0F, 0x16, 0x1B, 0x2A, 0x23, 0x13, 0x24, 0x1F, 0x1A, 0x00, 0x00, 0x01, 0x00, 0x5C, +0x02, 0x5F, 0x01, 0x98, 0x02, 0xF1, 0x00, 0x07, 0x00, 0x00, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, +0x27, 0x33, 0x82, 0x26, 0x73, 0x56, 0x73, 0x26, 0x87, 0x1E, 0x02, 0x5F, 0x21, 0x71, 0x71, 0x21, +0x49, 0x00, 0x00, 0x01, 0x00, 0x66, 0x02, 0x5F, 0x01, 0x8E, 0x02, 0xF1, 0x00, 0x07, 0x00, 0x00, +0x53, 0x27, 0x37, 0x17, 0x23, 0x37, 0x17, 0x07, 0xCF, 0x69, 0x26, 0x7D, 0x1E, 0x7D, 0x26, 0x69, +0x02, 0x5F, 0x71, 0x21, 0x49, 0x49, 0x21, 0x71, 0x00, 0x02, 0x00, 0x66, 0x02, 0x5F, 0x01, 0x8E, +0x03, 0x84, 0x00, 0x07, 0x00, 0x13, 0x00, 0x00, 0x53, 0x27, 0x37, 0x17, 0x23, 0x37, 0x17, 0x07, +0x27, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xCF, 0x69, 0x26, 0x7D, +0x1E, 0x7D, 0x26, 0x69, 0x2B, 0x21, 0x24, 0x25, 0x20, 0x21, 0x24, 0x25, 0x02, 0x5F, 0x71, 0x21, +0x49, 0x49, 0x21, 0x71, 0xA3, 0x22, 0x1F, 0x1D, 0x24, 0x22, 0x1F, 0x1D, 0x24, 0x00, 0x00, 0x01, +0x00, 0x58, 0x02, 0x4D, 0x01, 0x9C, 0x02, 0xF3, 0x00, 0x0D, 0x00, 0x00, 0x53, 0x22, 0x26, 0x27, +0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0xFA, 0x40, 0x54, 0x0E, 0x4A, 0x0D, +0x2D, 0x1E, 0x1E, 0x2D, 0x0D, 0x4A, 0x0E, 0x54, 0x02, 0x4D, 0x53, 0x47, 0x0C, 0x27, 0x2E, 0x2E, +0x27, 0x0C, 0x47, 0x53, 0x00, 0x02, 0x00, 0x8D, 0x02, 0x5C, 0x01, 0x68, 0x03, 0x2F, 0x00, 0x0F, +0x00, 0x1B, 0x00, 0x00, 0x53, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, +0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, +0xFA, 0x1C, 0x32, 0x1F, 0x1E, 0x32, 0x1D, 0x1E, 0x32, 0x1E, 0x1E, 0x32, 0x1E, 0x15, 0x1D, 0x1D, +0x15, 0x15, 0x1C, 0x1D, 0x02, 0x5C, 0x1D, 0x30, 0x1C, 0x1D, 0x30, 0x1D, 0x1D, 0x30, 0x1D, 0x1C, +0x30, 0x1D, 0x3B, 0x1B, 0x13, 0x15, 0x1A, 0x1B, 0x14, 0x13, 0x1B, 0x00, 0x00, 0x01, 0x00, 0x59, +0x02, 0x67, 0x01, 0x9C, 0x02, 0xEA, 0x00, 0x1A, 0x00, 0x00, 0x41, 0x22, 0x26, 0x27, 0x26, 0x26, +0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, +0x37, 0x17, 0x0E, 0x02, 0x01, 0x2E, 0x14, 0x1B, 0x0F, 0x13, 0x13, 0x08, 0x0D, 0x14, 0x04, 0x44, +0x02, 0x3B, 0x31, 0x14, 0x1B, 0x0F, 0x14, 0x12, 0x08, 0x0E, 0x13, 0x04, 0x44, 0x01, 0x1C, 0x30, +0x02, 0x67, 0x10, 0x0C, 0x11, 0x0D, 0x1D, 0x1D, 0x0A, 0x31, 0x48, 0x10, 0x0C, 0x10, 0x0E, 0x1E, +0x1C, 0x0A, 0x20, 0x38, 0x21, 0x00, 0x00, 0x03, 0x00, 0x51, 0x02, 0x67, 0x01, 0xA3, 0x03, 0x9F, +0x00, 0x0B, 0x00, 0x17, 0x00, 0x32, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, +0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, +0x17, 0x22, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, +0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x01, 0x5E, 0x21, 0x24, 0x25, 0x20, +0x21, 0x24, 0x25, 0xE8, 0x21, 0x24, 0x25, 0x20, 0x21, 0x24, 0x25, 0x77, 0x14, 0x1B, 0x0F, 0x13, +0x13, 0x08, 0x0D, 0x14, 0x04, 0x44, 0x02, 0x3B, 0x31, 0x14, 0x1B, 0x0F, 0x14, 0x12, 0x08, 0x0E, +0x13, 0x04, 0x44, 0x01, 0x1C, 0x30, 0x03, 0x1D, 0x22, 0x1F, 0x1D, 0x24, 0x22, 0x1F, 0x1D, 0x24, +0x22, 0x1F, 0x1D, 0x24, 0x22, 0x1F, 0x1D, 0x24, 0xB6, 0x10, 0x0C, 0x11, 0x0D, 0x1D, 0x1D, 0x0A, +0x31, 0x48, 0x10, 0x0C, 0x10, 0x0E, 0x1E, 0x1C, 0x0A, 0x20, 0x38, 0x21, 0x00, 0x02, 0x00, 0x59, +0x02, 0x67, 0x01, 0x9C, 0x03, 0xB0, 0x00, 0x1A, 0x00, 0x1E, 0x00, 0x00, 0x41, 0x22, 0x26, 0x27, +0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, +0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x27, 0x27, 0x37, 0x17, 0x01, 0x2E, 0x14, 0x1B, 0x0F, 0x13, +0x13, 0x08, 0x0D, 0x14, 0x04, 0x44, 0x02, 0x3B, 0x31, 0x14, 0x1B, 0x0F, 0x14, 0x12, 0x08, 0x0E, +0x13, 0x04, 0x44, 0x01, 0x1C, 0x30, 0x49, 0x34, 0x5C, 0x4D, 0x02, 0x67, 0x10, 0x0C, 0x11, 0x0D, +0x1D, 0x1D, 0x0A, 0x31, 0x48, 0x10, 0x0C, 0x10, 0x0E, 0x1E, 0x1C, 0x0A, 0x20, 0x38, 0x21, 0x98, +0x24, 0x8D, 0x39, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x02, 0x67, 0x01, 0x9B, 0x03, 0x86, 0x04, 0x26, +0x03, 0x01, 0xFF, 0x00, 0x02, 0x07, 0x03, 0x05, 0x00, 0x00, 0x00, 0xB9, 0x00, 0x01, 0x00, 0x6C, +0x02, 0x82, 0x01, 0x88, 0x02, 0xCD, 0x00, 0x03, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x6C, 0x01, +0x1C, 0x02, 0x82, 0x4B, 0x4B, 0x00, 0xFF, 0xFF, 0x00, 0x51, 0x02, 0x82, 0x01, 0xA3, 0x03, 0x8B, +0x06, 0x26, 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x02, 0xF2, 0x00, 0x00, 0x00, 0x87, 0x00, 0x02, +0x00, 0x6C, 0x02, 0x78, 0x01, 0x88, 0x03, 0x9C, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x27, +0x37, 0x17, 0x07, 0x35, 0x21, 0x15, 0x01, 0x09, 0x75, 0x4D, 0x5C, 0xD1, 0x01, 0x1C, 0x02, 0xEB, +0x78, 0x39, 0x8D, 0x97, 0x4B, 0x4B, 0x00, 0x02, 0x00, 0x6C, 0x02, 0x78, 0x01, 0x88, 0x03, 0x9C, +0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x27, 0x27, 0x37, 0x17, 0x6C, 0x01, +0x1C, 0x8E, 0x34, 0x5C, 0x4D, 0x02, 0x78, 0x4B, 0x4B, 0x73, 0x24, 0x8D, 0x39, 0x00, 0x00, 0x01, +0x00, 0x99, 0x02, 0x51, 0x01, 0x5C, 0x03, 0x15, 0x00, 0x1F, 0x00, 0x00, 0x53, 0x26, 0x26, 0x35, +0x34, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, +0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0xE4, 0x07, 0x08, 0x0B, +0x10, 0x11, 0x0D, 0x11, 0x0D, 0x10, 0x26, 0x11, 0x10, 0x15, 0x30, 0x14, 0x35, 0x35, 0x17, 0x0E, +0x12, 0x11, 0x02, 0x01, 0x02, 0x51, 0x0A, 0x13, 0x09, 0x09, 0x16, 0x0B, 0x0B, 0x0C, 0x07, 0x09, +0x08, 0x0A, 0x08, 0x3F, 0x0C, 0x0C, 0x2D, 0x20, 0x19, 0x1D, 0x07, 0x09, 0x0D, 0x0A, 0x04, 0x06, +0x03, 0x00, 0x00, 0x02, 0x00, 0x2F, 0x02, 0x5E, 0x01, 0xC6, 0x03, 0x0E, 0x00, 0x03, 0x00, 0x07, +0x00, 0x00, 0x41, 0x27, 0x37, 0x17, 0x07, 0x27, 0x37, 0x17, 0x01, 0xA4, 0xAE, 0x41, 0x8F, 0xE9, +0xAE, 0x41, 0x8F, 0x02, 0x5E, 0x5E, 0x52, 0x7D, 0x33, 0x5E, 0x52, 0x7D, 0x00, 0x01, 0x00, 0x58, +0x02, 0x57, 0x01, 0x9C, 0x02, 0xFD, 0x00, 0x0D, 0x00, 0x00, 0x53, 0x27, 0x36, 0x36, 0x33, 0x32, +0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0xA2, 0x4A, 0x0E, 0x54, 0x40, 0x40, 0x54, 0x0E, +0x4A, 0x0D, 0x2D, 0x1E, 0x1E, 0x2D, 0x02, 0x57, 0x0C, 0x47, 0x53, 0x53, 0x47, 0x0C, 0x27, 0x2E, +0x2E, 0x00, 0x00, 0x01, 0x00, 0xB0, 0x02, 0x5E, 0x01, 0x44, 0x03, 0x24, 0x00, 0x15, 0x00, 0x00, +0x53, 0x22, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x37, 0x17, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x17, 0x16, +0x16, 0x15, 0x14, 0x06, 0xFE, 0x1B, 0x33, 0x1C, 0x29, 0x2A, 0x0D, 0x18, 0x0D, 0x19, 0x10, 0x0D, +0x08, 0x0A, 0x12, 0x26, 0x02, 0x5E, 0x25, 0x28, 0x1A, 0x29, 0x1E, 0x14, 0x04, 0x2A, 0x02, 0x11, +0x16, 0x0B, 0x0A, 0x06, 0x02, 0x03, 0x0D, 0x15, 0x18, 0x19, 0x00, 0x01, 0x00, 0xA0, 0x01, 0xB5, +0x01, 0x54, 0x02, 0x68, 0x00, 0x08, 0x00, 0x00, 0x53, 0x35, 0x32, 0x36, 0x35, 0x33, 0x14, 0x06, +0x06, 0xA0, 0x32, 0x30, 0x52, 0x23, 0x4F, 0x01, 0xB5, 0x41, 0x39, 0x39, 0x33, 0x51, 0x2F, 0x00, +0x00, 0x01, 0x00, 0xB5, 0xFF, 0x32, 0x01, 0x3F, 0xFF, 0xB4, 0x00, 0x0B, 0x00, 0x00, 0x57, 0x22, +0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xFA, 0x21, 0x24, 0x25, 0x20, 0x21, +0x24, 0x25, 0xCE, 0x22, 0x1F, 0x1D, 0x24, 0x22, 0x1F, 0x1D, 0x24, 0x00, 0x00, 0x02, 0x00, 0x51, +0xFF, 0x32, 0x01, 0xA3, 0xFF, 0xB4, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x00, 0x45, 0x22, 0x26, 0x35, +0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, +0x16, 0x15, 0x14, 0x06, 0x01, 0x5E, 0x21, 0x24, 0x25, 0x20, 0x21, 0x24, 0x25, 0xE8, 0x21, 0x24, +0x25, 0x20, 0x21, 0x24, 0x25, 0xCE, 0x22, 0x1F, 0x1D, 0x24, 0x22, 0x1F, 0x1D, 0x24, 0x22, 0x1F, +0x1D, 0x24, 0x22, 0x1F, 0x1D, 0x24, 0x00, 0x01, 0x00, 0xB0, 0xFF, 0x0E, 0x01, 0x44, 0xFF, 0xD4, +0x00, 0x15, 0x00, 0x00, 0x57, 0x27, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, +0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x02, 0xC8, 0x18, 0x0E, 0x19, 0x0F, 0x07, 0x0C, 0x12, +0x0C, 0x24, 0x1D, 0x21, 0x2D, 0x12, 0x20, 0x2E, 0xF2, 0x2A, 0x04, 0x11, 0x15, 0x0A, 0x06, 0x08, +0x03, 0x05, 0x12, 0x0F, 0x16, 0x1B, 0x2A, 0x23, 0x13, 0x24, 0x1F, 0x1A, 0x00, 0x01, 0x00, 0x98, +0xFF, 0x0B, 0x01, 0x5D, 0x00, 0x18, 0x00, 0x14, 0x00, 0x00, 0x57, 0x27, 0x32, 0x36, 0x36, 0x35, +0x34, 0x26, 0x26, 0x23, 0x27, 0x37, 0x33, 0x07, 0x16, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x9F, 0x07, +0x18, 0x34, 0x24, 0x22, 0x2A, 0x0E, 0x0D, 0x48, 0x3B, 0x2B, 0x32, 0x32, 0x23, 0x38, 0x43, 0xF4, +0x35, 0x10, 0x19, 0x0C, 0x0E, 0x10, 0x08, 0x0A, 0x72, 0x46, 0x0A, 0x30, 0x23, 0x1A, 0x28, 0x1B, +0x0D, 0x00, 0x00, 0x01, 0x00, 0x8D, 0xFF, 0x38, 0x01, 0x67, 0x00, 0x29, 0x00, 0x18, 0x00, 0x00, +0x57, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x37, 0x17, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x33, +0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0xFA, 0x1D, 0x32, 0x1E, 0x16, 0x2A, 0x3E, 0x28, 0x21, 0x1D, +0x32, 0x1D, 0x13, 0x0F, 0x0B, 0x12, 0x08, 0x38, 0x07, 0x1E, 0x2B, 0xC8, 0x1C, 0x2F, 0x1C, 0x19, +0x29, 0x22, 0x1B, 0x0B, 0x29, 0x06, 0x1C, 0x23, 0x12, 0x10, 0x14, 0x0D, 0x0C, 0x28, 0x10, 0x1D, +0x11, 0x00, 0x00, 0x01, 0x00, 0x58, 0xFF, 0x16, 0x01, 0x9C, 0xFF, 0xBC, 0x00, 0x0D, 0x00, 0x00, +0x57, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0xFA, 0x3D, +0x57, 0x0E, 0x4A, 0x0D, 0x30, 0x1B, 0x1B, 0x30, 0x0D, 0x4A, 0x0E, 0x57, 0xEA, 0x53, 0x47, 0x0C, +0x27, 0x2E, 0x2E, 0x27, 0x0C, 0x47, 0x53, 0x00, 0x00, 0x01, 0x00, 0x6E, 0xFF, 0x4E, 0x01, 0x87, +0xFF, 0x98, 0x00, 0x03, 0x00, 0x00, 0x57, 0x35, 0x21, 0x15, 0x6E, 0x01, 0x19, 0xB2, 0x4A, 0x4A, +0x00, 0x01, 0x00, 0x74, 0x00, 0xFB, 0x01, 0x80, 0x01, 0x55, 0x00, 0x03, 0x00, 0x00, 0x77, 0x35, +0x21, 0x15, 0x74, 0x01, 0x0C, 0xFB, 0x5A, 0x5A, 0xFF, 0xFF, 0x00, 0x51, 0x02, 0x82, 0x01, 0xA3, +0x03, 0x04, 0x04, 0x06, 0x02, 0xF2, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0xB5, 0x02, 0x81, 0x01, 0x3F, +0x03, 0x03, 0x04, 0x06, 0x02, 0xF5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x92, 0x02, 0x5E, 0x01, 0x62, +0x03, 0x0E, 0x04, 0x06, 0x02, 0xF7, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x92, 0x02, 0x5E, 0x01, 0x62, +0x03, 0x0E, 0x04, 0x06, 0x02, 0xF8, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2F, 0x02, 0x5E, 0x01, 0xC6, +0x03, 0x0E, 0x04, 0x06, 0x02, 0xFA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x5C, 0x02, 0x5F, 0x01, 0x98, +0x02, 0xF1, 0x04, 0x06, 0x02, 0xFC, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x66, 0x02, 0x5F, 0x01, 0x8E, +0x02, 0xF1, 0x04, 0x06, 0x02, 0xFD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x02, 0x4D, 0x01, 0x9C, +0x02, 0xF3, 0x04, 0x06, 0x02, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8D, 0x02, 0x5C, 0x01, 0x68, +0x03, 0x2F, 0x04, 0x06, 0x03, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x59, 0x02, 0x67, 0x01, 0x9C, +0x02, 0xEA, 0x04, 0x06, 0x03, 0x01, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x6C, 0x02, 0x82, 0x01, 0x88, +0x02, 0xCD, 0x04, 0x06, 0x03, 0x05, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x98, 0xFF, 0x0B, 0x01, 0x5D, +0x00, 0x18, 0x04, 0x06, 0x03, 0x11, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8D, 0xFF, 0x38, 0x01, 0x67, +0x00, 0x29, 0x04, 0x06, 0x03, 0x12, 0x00, 0x00, 0x00, 0x02, 0x00, 0x4E, 0x02, 0xF7, 0x01, 0xA6, +0x03, 0x79, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, +0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, +0x01, 0x61, 0x23, 0x22, 0x22, 0x23, 0x23, 0x22, 0x22, 0xF1, 0x23, 0x22, 0x22, 0x23, 0x23, 0x22, +0x22, 0x02, 0xF7, 0x24, 0x1D, 0x19, 0x28, 0x24, 0x1D, 0x19, 0x28, 0x24, 0x1D, 0x19, 0x28, 0x24, +0x1D, 0x19, 0x28, 0x00, 0x00, 0x03, 0x00, 0x4E, 0x02, 0xF7, 0x01, 0xA6, 0x04, 0x38, 0x00, 0x03, +0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x53, 0x27, 0x37, 0x17, 0x07, 0x22, 0x26, 0x35, 0x34, 0x36, +0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x33, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, +0x14, 0x06, 0xB6, 0x1C, 0xB7, 0x2F, 0xED, 0x23, 0x22, 0x22, 0x23, 0x23, 0x22, 0x22, 0xAB, 0x23, +0x22, 0x22, 0x23, 0x23, 0x22, 0x22, 0x03, 0x93, 0x34, 0x71, 0x5A, 0xE7, 0x24, 0x1D, 0x19, 0x28, +0x24, 0x1D, 0x19, 0x28, 0x24, 0x1D, 0x19, 0x28, 0x24, 0x1D, 0x19, 0x28, 0xFF, 0xFF, 0x00, 0x4E, +0x02, 0xF7, 0x01, 0xA6, 0x03, 0xF4, 0x06, 0x26, 0x03, 0x23, 0x00, 0x00, 0x00, 0x07, 0x03, 0x3C, +0xFF, 0xFF, 0x00, 0x96, 0x00, 0x01, 0x00, 0xB5, 0x02, 0xF7, 0x01, 0x3F, 0x03, 0x79, 0x00, 0x0B, +0x00, 0x00, 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xFA, 0x23, +0x22, 0x22, 0x23, 0x23, 0x22, 0x22, 0x02, 0xF7, 0x24, 0x1D, 0x19, 0x28, 0x24, 0x1D, 0x19, 0x28, +0xFF, 0xFF, 0x00, 0x55, 0x02, 0xF7, 0x01, 0xA0, 0x03, 0xF4, 0x04, 0x26, 0x03, 0x26, 0x01, 0x00, +0x02, 0x07, 0x03, 0x3C, 0x00, 0x00, 0x00, 0x96, 0x00, 0x01, 0x00, 0x86, 0x02, 0xF3, 0x01, 0x6E, +0x03, 0x98, 0x00, 0x03, 0x00, 0x00, 0x41, 0x27, 0x37, 0x17, 0x01, 0x50, 0xCA, 0x31, 0xB7, 0x02, +0xF3, 0x4B, 0x5A, 0x71, 0x00, 0x01, 0x00, 0x87, 0x02, 0xF3, 0x01, 0x6D, 0x03, 0x98, 0x00, 0x03, +0x00, 0x00, 0x53, 0x27, 0x37, 0x17, 0xA3, 0x1C, 0xB7, 0x2F, 0x02, 0xF3, 0x34, 0x71, 0x5A, 0x00, +0x00, 0x02, 0x00, 0x50, 0x02, 0xEF, 0x01, 0xA4, 0x03, 0xA0, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, +0x41, 0x27, 0x37, 0x17, 0x05, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, +0x01, 0x2F, 0x34, 0x5C, 0x4D, 0xFE, 0xF1, 0x21, 0x24, 0x25, 0x20, 0x21, 0x24, 0x25, 0x02, 0xEF, +0x24, 0x8D, 0x39, 0x70, 0x22, 0x1F, 0x1D, 0x24, 0x22, 0x1F, 0x1D, 0x24, 0x00, 0x02, 0x00, 0x31, +0x02, 0xEE, 0x01, 0xC3, 0x03, 0xA7, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, 0x27, 0x37, 0x17, +0x17, 0x27, 0x37, 0x17, 0x57, 0x26, 0x83, 0x48, 0x22, 0x26, 0x83, 0x48, 0x02, 0xEE, 0x30, 0x89, +0x4C, 0x6D, 0x30, 0x89, 0x4C, 0x00, 0x00, 0x01, 0x00, 0x5A, 0x02, 0xF3, 0x01, 0x9B, 0x03, 0x7B, +0x00, 0x07, 0x00, 0x00, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27, 0x33, 0x7F, 0x25, 0x7C, 0x49, +0x7C, 0x25, 0x8A, 0x1D, 0x02, 0xF3, 0x23, 0x65, 0x65, 0x23, 0x41, 0x00, 0x00, 0x02, 0x00, 0x41, +0x02, 0xF3, 0x01, 0xB3, 0x04, 0x19, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x53, 0x27, 0x37, 0x33, +0x17, 0x07, 0x27, 0x33, 0x37, 0x27, 0x37, 0x17, 0x62, 0x21, 0x78, 0x49, 0x78, 0x21, 0x8A, 0x1D, +0x97, 0x79, 0x56, 0x53, 0x02, 0xF3, 0x24, 0x62, 0x62, 0x24, 0x3F, 0x2F, 0x79, 0x3F, 0x92, 0x00, +0x00, 0x02, 0x00, 0x20, 0x02, 0xF3, 0x01, 0xD4, 0x04, 0x16, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, +0x53, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27, 0x33, 0x37, 0x27, 0x37, 0x17, 0x41, 0x21, 0x78, 0x49, +0x78, 0x21, 0x8A, 0x1D, 0x94, 0x34, 0x52, 0x57, 0x02, 0xF3, 0x24, 0x62, 0x62, 0x24, 0x3F, 0x2E, +0x24, 0x92, 0x3E, 0x00, 0x00, 0x02, 0x00, 0x59, 0x02, 0xF3, 0x01, 0x9C, 0x04, 0x1B, 0x00, 0x07, +0x00, 0x22, 0x00, 0x00, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27, 0x33, 0x37, 0x22, 0x26, 0x27, +0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, +0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x7F, 0x21, 0x78, 0x49, 0x78, 0x21, 0x8A, 0x1D, 0x3F, 0x18, +0x29, 0x11, 0x12, 0x18, 0x0A, 0x0D, 0x14, 0x04, 0x44, 0x02, 0x38, 0x28, 0x15, 0x23, 0x12, 0x0D, +0x1B, 0x0A, 0x0E, 0x0F, 0x04, 0x44, 0x01, 0x14, 0x24, 0x02, 0xF3, 0x24, 0x62, 0x62, 0x24, 0x3F, +0x77, 0x0E, 0x07, 0x08, 0x0A, 0x14, 0x11, 0x0A, 0x29, 0x3D, 0x0E, 0x08, 0x06, 0x0B, 0x13, 0x13, +0x0A, 0x1C, 0x2F, 0x1C, 0x00, 0x02, 0x00, 0x2D, 0x02, 0xF3, 0x01, 0xC8, 0x04, 0x19, 0x00, 0x07, +0x00, 0x27, 0x00, 0x00, 0x53, 0x27, 0x37, 0x33, 0x17, 0x07, 0x27, 0x33, 0x37, 0x26, 0x26, 0x35, +0x34, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, +0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x4E, 0x21, 0x78, 0x49, +0x78, 0x21, 0x8A, 0x1D, 0x78, 0x06, 0x09, 0x09, 0x12, 0x0F, 0x0F, 0x11, 0x0D, 0x10, 0x26, 0x11, +0x10, 0x15, 0x30, 0x14, 0x35, 0x35, 0x19, 0x0C, 0x13, 0x10, 0x02, 0x01, 0x02, 0xF3, 0x24, 0x62, +0x62, 0x24, 0x3F, 0x2D, 0x08, 0x12, 0x09, 0x09, 0x12, 0x0C, 0x0A, 0x0C, 0x04, 0x09, 0x08, 0x0A, +0x08, 0x3F, 0x0C, 0x0C, 0x2D, 0x20, 0x15, 0x19, 0x08, 0x0B, 0x0E, 0x06, 0x03, 0x05, 0x03, 0x00, +0x00, 0x01, 0x00, 0x57, 0x02, 0xF5, 0x01, 0x9D, 0x03, 0x7D, 0x00, 0x07, 0x00, 0x00, 0x53, 0x27, +0x37, 0x17, 0x23, 0x37, 0x17, 0x07, 0xCF, 0x78, 0x26, 0x8C, 0x1E, 0x8C, 0x26, 0x78, 0x02, 0xF5, +0x67, 0x21, 0x3F, 0x3F, 0x21, 0x67, 0x00, 0x01, 0x00, 0x58, 0x02, 0xEF, 0x01, 0x9C, 0x03, 0x81, +0x00, 0x0F, 0x00, 0x00, 0x53, 0x22, 0x26, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, +0x17, 0x0E, 0x02, 0xFA, 0x29, 0x43, 0x2D, 0x09, 0x4A, 0x0B, 0x2E, 0x1F, 0x1F, 0x2E, 0x0B, 0x4A, +0x08, 0x2E, 0x42, 0x02, 0xEF, 0x25, 0x3D, 0x24, 0x0C, 0x19, 0x28, 0x28, 0x19, 0x0C, 0x24, 0x3D, +0x25, 0x00, 0x00, 0x02, 0x00, 0x58, 0x02, 0xEF, 0x01, 0x9C, 0x04, 0x2D, 0x00, 0x0D, 0x00, 0x11, +0x00, 0x00, 0x53, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, +0x27, 0x27, 0x37, 0x17, 0xFA, 0x3E, 0x57, 0x0D, 0x46, 0x0F, 0x2D, 0x20, 0x1F, 0x2F, 0x0E, 0x46, +0x0D, 0x57, 0x3F, 0x79, 0x56, 0x53, 0x02, 0xEF, 0x48, 0x3E, 0x0C, 0x24, 0x21, 0x21, 0x24, 0x0C, +0x3E, 0x48, 0x86, 0x79, 0x3F, 0x92, 0x00, 0x02, 0x00, 0x58, 0x02, 0xEF, 0x01, 0x9C, 0x04, 0x2D, +0x00, 0x0D, 0x00, 0x11, 0x00, 0x00, 0x53, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, +0x37, 0x17, 0x06, 0x06, 0x27, 0x27, 0x37, 0x17, 0xFA, 0x3E, 0x57, 0x0D, 0x46, 0x0E, 0x2F, 0x1F, +0x1F, 0x2F, 0x0E, 0x46, 0x0D, 0x57, 0x38, 0x30, 0x53, 0x56, 0x02, 0xEF, 0x48, 0x3E, 0x0C, 0x24, +0x21, 0x21, 0x24, 0x0C, 0x3E, 0x48, 0x86, 0x26, 0x92, 0x3F, 0x00, 0x02, 0x00, 0x58, 0x02, 0xEF, +0x01, 0x9C, 0x04, 0x1B, 0x00, 0x0D, 0x00, 0x28, 0x00, 0x00, 0x53, 0x22, 0x26, 0x27, 0x37, 0x16, +0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x37, 0x22, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, +0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, +0x0E, 0x02, 0xFA, 0x3E, 0x57, 0x0D, 0x46, 0x0E, 0x2F, 0x1F, 0x1F, 0x2F, 0x0E, 0x46, 0x0D, 0x57, +0x10, 0x18, 0x29, 0x11, 0x12, 0x18, 0x0A, 0x0D, 0x14, 0x04, 0x44, 0x02, 0x38, 0x28, 0x15, 0x23, +0x12, 0x0D, 0x1B, 0x0A, 0x0E, 0x0F, 0x04, 0x44, 0x01, 0x14, 0x24, 0x02, 0xEF, 0x42, 0x3A, 0x0C, +0x1F, 0x1C, 0x1C, 0x1F, 0x0C, 0x3A, 0x42, 0xBA, 0x0E, 0x07, 0x08, 0x0A, 0x14, 0x11, 0x0A, 0x29, +0x3D, 0x0E, 0x08, 0x06, 0x0B, 0x13, 0x13, 0x0A, 0x1C, 0x2F, 0x1C, 0x00, 0x00, 0x02, 0x00, 0x58, +0x02, 0xEF, 0x01, 0x9C, 0x04, 0x2F, 0x00, 0x0D, 0x00, 0x2D, 0x00, 0x00, 0x53, 0x22, 0x26, 0x27, +0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, +0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, +0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0xFA, 0x3E, 0x57, 0x0D, 0x46, 0x0E, +0x2F, 0x1F, 0x1F, 0x2F, 0x0E, 0x46, 0x0D, 0x57, 0x52, 0x06, 0x09, 0x09, 0x12, 0x0F, 0x0F, 0x11, +0x0D, 0x10, 0x26, 0x11, 0x10, 0x15, 0x30, 0x14, 0x35, 0x35, 0x19, 0x0C, 0x13, 0x10, 0x02, 0x01, +0x02, 0xEF, 0x48, 0x3E, 0x0C, 0x24, 0x21, 0x21, 0x24, 0x0C, 0x3E, 0x48, 0x86, 0x08, 0x12, 0x09, +0x09, 0x12, 0x0C, 0x0A, 0x0C, 0x04, 0x09, 0x08, 0x0A, 0x08, 0x3F, 0x0C, 0x0C, 0x2D, 0x20, 0x15, +0x19, 0x08, 0x0B, 0x0E, 0x06, 0x03, 0x05, 0x03, 0x00, 0x02, 0x00, 0x8D, 0x02, 0xA7, 0x01, 0x68, +0x03, 0x7A, 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x53, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, +0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, +0x06, 0x15, 0x14, 0x16, 0xFA, 0x1C, 0x32, 0x1F, 0x1F, 0x32, 0x1C, 0x1D, 0x32, 0x1F, 0x1F, 0x32, +0x1D, 0x15, 0x1D, 0x1E, 0x14, 0x14, 0x1D, 0x1D, 0x02, 0xA7, 0x1D, 0x30, 0x1C, 0x1E, 0x30, 0x1C, +0x1C, 0x30, 0x1E, 0x1C, 0x30, 0x1D, 0x3B, 0x1B, 0x13, 0x17, 0x18, 0x1A, 0x15, 0x13, 0x1B, 0x00, +0x00, 0x01, 0x00, 0x4C, 0x03, 0x00, 0x01, 0xA9, 0x03, 0x71, 0x00, 0x1A, 0x00, 0x00, 0x41, 0x22, +0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x23, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, +0x16, 0x33, 0x32, 0x36, 0x27, 0x33, 0x14, 0x06, 0x06, 0x01, 0x45, 0x17, 0x2F, 0x15, 0x11, 0x18, +0x0A, 0x0D, 0x11, 0x4D, 0x46, 0x2C, 0x15, 0x28, 0x13, 0x0E, 0x1B, 0x09, 0x0E, 0x10, 0x01, 0x4C, +0x18, 0x2D, 0x03, 0x00, 0x0F, 0x08, 0x07, 0x08, 0x13, 0x13, 0x36, 0x3B, 0x0E, 0x08, 0x06, 0x08, +0x14, 0x10, 0x1D, 0x34, 0x20, 0x00, 0xFF, 0xFF, 0x00, 0x4B, 0x03, 0x00, 0x01, 0xA8, 0x04, 0x0F, +0x04, 0x26, 0x03, 0x38, 0xFF, 0x00, 0x02, 0x07, 0x03, 0x23, 0x00, 0x00, 0x00, 0x96, 0xFF, 0xFF, +0x00, 0x4B, 0x03, 0x00, 0x01, 0xA8, 0x04, 0x2E, 0x04, 0x26, 0x03, 0x38, 0xFF, 0x00, 0x00, 0x07, +0x03, 0x29, 0x00, 0x13, 0x00, 0x96, 0xFF, 0xFF, 0x00, 0x4B, 0x03, 0x00, 0x01, 0xA8, 0x03, 0xF4, +0x04, 0x26, 0x03, 0x38, 0xFF, 0x00, 0x00, 0x07, 0x03, 0x3C, 0xFF, 0xFF, 0x00, 0x96, 0x00, 0x01, +0x00, 0x55, 0x03, 0x13, 0x01, 0xA0, 0x03, 0x5E, 0x00, 0x03, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, +0x55, 0x01, 0x4B, 0x03, 0x13, 0x4B, 0x4B, 0x00, 0xFF, 0xFF, 0x00, 0x4E, 0x03, 0x13, 0x01, 0xA6, +0x04, 0x0F, 0x04, 0x26, 0x03, 0x3C, 0xFF, 0x00, 0x02, 0x07, 0x03, 0x23, 0x00, 0x00, 0x00, 0x96, +0xFF, 0xFF, 0x00, 0x54, 0x03, 0x13, 0x01, 0x9F, 0x04, 0x2E, 0x04, 0x26, 0x03, 0x3C, 0xFF, 0x00, +0x00, 0x07, 0x03, 0x28, 0xFF, 0xF6, 0x00, 0x96, 0xFF, 0xFF, 0x00, 0x54, 0x03, 0x13, 0x01, 0x9F, +0x04, 0x2E, 0x04, 0x26, 0x03, 0x3C, 0xFF, 0x00, 0x00, 0x07, 0x03, 0x29, 0x00, 0x13, 0x00, 0x96, +0x00, 0x01, 0x00, 0x99, 0x02, 0xF6, 0x01, 0x5C, 0x03, 0xBA, 0x00, 0x1F, 0x00, 0x00, 0x53, 0x26, +0x26, 0x35, 0x34, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, +0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0xE4, 0x07, +0x08, 0x0B, 0x10, 0x11, 0x0D, 0x11, 0x0D, 0x10, 0x26, 0x11, 0x10, 0x15, 0x30, 0x14, 0x35, 0x35, +0x17, 0x0E, 0x12, 0x11, 0x02, 0x01, 0x02, 0xF6, 0x0A, 0x13, 0x09, 0x09, 0x16, 0x0B, 0x0B, 0x0C, +0x07, 0x09, 0x08, 0x0A, 0x08, 0x3F, 0x0C, 0x0C, 0x2D, 0x20, 0x19, 0x1D, 0x07, 0x09, 0x0D, 0x0A, +0x04, 0x06, 0x03, 0x00, 0x00, 0x02, 0x00, 0x31, 0x02, 0xEE, 0x01, 0xC3, 0x03, 0xA7, 0x00, 0x03, +0x00, 0x07, 0x00, 0x00, 0x41, 0x27, 0x37, 0x17, 0x07, 0x27, 0x37, 0x17, 0x01, 0x9D, 0xA5, 0x48, +0x83, 0xED, 0xA5, 0x48, 0x83, 0x02, 0xEE, 0x6D, 0x4C, 0x89, 0x30, 0x6D, 0x4C, 0x89, 0x00, 0x01, +0x00, 0x58, 0x02, 0xEF, 0x01, 0x9C, 0x03, 0x81, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x27, 0x3E, 0x02, +0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0xA2, 0x4A, 0x09, 0x2D, 0x43, +0x29, 0x2A, 0x42, 0x2E, 0x08, 0x4A, 0x0B, 0x2E, 0x1F, 0x1F, 0x2E, 0x02, 0xEF, 0x0C, 0x24, 0x3D, +0x25, 0x25, 0x3D, 0x24, 0x0C, 0x19, 0x28, 0x28, 0x00, 0x01, 0x00, 0xA0, 0x01, 0xA4, 0x01, 0x55, +0x02, 0x68, 0x00, 0x08, 0x00, 0x00, 0x53, 0x35, 0x32, 0x36, 0x35, 0x33, 0x14, 0x06, 0x06, 0xA0, +0x2D, 0x2C, 0x5C, 0x2B, 0x50, 0x01, 0xA4, 0x52, 0x39, 0x39, 0x3C, 0x58, 0x30, 0x00, 0x00, 0x01, +0x00, 0xB0, 0xFF, 0x0D, 0x01, 0x44, 0xFF, 0xD3, 0x00, 0x15, 0x00, 0x00, 0x57, 0x27, 0x3E, 0x02, +0x35, 0x34, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x02, +0xC8, 0x18, 0x0E, 0x19, 0x0F, 0x07, 0x0C, 0x12, 0x0C, 0x24, 0x1D, 0x21, 0x2D, 0x12, 0x20, 0x2E, +0xF3, 0x2A, 0x04, 0x11, 0x15, 0x0A, 0x06, 0x08, 0x03, 0x05, 0x12, 0x0F, 0x16, 0x1B, 0x2A, 0x23, +0x13, 0x24, 0x1F, 0x1A, 0x00, 0x01, 0x00, 0x97, 0xFF, 0x0B, 0x01, 0x5C, 0x00, 0x18, 0x00, 0x14, +0x00, 0x00, 0x57, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x27, 0x37, 0x33, 0x07, +0x16, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x9E, 0x07, 0x18, 0x34, 0x24, 0x22, 0x2A, 0x0E, 0x0D, 0x48, +0x3B, 0x2A, 0x31, 0x32, 0x22, 0x38, 0x43, 0xF4, 0x35, 0x10, 0x19, 0x0C, 0x0E, 0x10, 0x08, 0x0A, +0x72, 0x46, 0x0A, 0x30, 0x23, 0x1A, 0x28, 0x1B, 0x0D, 0x00, 0x00, 0x01, 0x00, 0x8D, 0xFF, 0x38, +0x01, 0x67, 0x00, 0x33, 0x00, 0x17, 0x00, 0x00, 0x57, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, +0x37, 0x17, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0xFA, 0x1D, +0x32, 0x1E, 0x15, 0x29, 0x39, 0x24, 0x2C, 0x1D, 0x32, 0x1D, 0x13, 0x0F, 0x0B, 0x12, 0x08, 0x38, +0x0A, 0x3F, 0xC8, 0x1C, 0x2F, 0x1C, 0x19, 0x2D, 0x26, 0x1E, 0x0A, 0x33, 0x06, 0x1C, 0x23, 0x12, +0x10, 0x14, 0x0D, 0x0C, 0x28, 0x19, 0x25, 0x00, 0xFF, 0xFF, 0x00, 0x25, 0x01, 0xBA, 0x00, 0xB2, +0x02, 0xBC, 0x06, 0x06, 0x02, 0xA0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0x01, 0xE0, 0x00, 0xDD, +0x02, 0xF4, 0x06, 0x06, 0x02, 0x99, 0x00, 0x00, 0x00, 0x01, 0x00, 0x20, 0x02, 0x12, 0x00, 0x8E, +0x02, 0xE5, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x17, +0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x8E, 0x1B, 0x33, 0x20, 0x1E, 0x31, 0x1D, 0x02, 0x15, 0x1B, +0x1B, 0x15, 0x02, 0x12, 0x1D, 0x2F, 0x1D, 0x1D, 0x2F, 0x1D, 0x01, 0x3E, 0x17, 0x15, 0x13, 0x19, +0x00, 0x01, 0x00, 0x3E, 0x02, 0x12, 0x00, 0xAB, 0x02, 0xE5, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x35, +0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x37, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x3E, 0x14, 0x1B, +0x1A, 0x15, 0x01, 0x1D, 0x31, 0x1E, 0x1F, 0x31, 0x02, 0x12, 0x3D, 0x19, 0x13, 0x14, 0x18, 0x3E, +0x01, 0x1D, 0x2F, 0x1D, 0x1C, 0x30, 0x1D, 0x00, 0x00, 0x01, 0x00, 0x43, 0xFF, 0x6D, 0x00, 0xA4, +0x00, 0xC5, 0x00, 0x03, 0x00, 0x00, 0x57, 0x11, 0x33, 0x11, 0x43, 0x61, 0x93, 0x01, 0x58, 0xFE, +0xA8, 0x00, 0x00, 0x01, 0x00, 0x43, 0x01, 0x70, 0x00, 0xA4, 0x02, 0xC8, 0x00, 0x03, 0x00, 0x00, +0x53, 0x11, 0x33, 0x11, 0x43, 0x61, 0x01, 0x70, 0x01, 0x58, 0xFE, 0xA8 +}; + +unsigned char icomoon[] = { + 0x00, 0x01, 0x00, 0x00, 0x00, 0x0B, 0x00, 0x80, 0x00, 0x03, 0x00, 0x30, 0x4F, 0x53, 0x2F, 0x32, +0x0F, 0x11, 0x0D, 0x7F, 0x00, 0x00, 0x00, 0xBC, 0x00, 0x00, 0x00, 0x60, 0x63, 0x6D, 0x61, 0x70, +0x00, 0x72, 0x01, 0xF5, 0x00, 0x00, 0x01, 0x1C, 0x00, 0x00, 0x00, 0x64, 0x67, 0x61, 0x73, 0x70, +0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x08, 0x67, 0x6C, 0x79, 0x66, +0x3E, 0x35, 0x0A, 0xA6, 0x00, 0x00, 0x01, 0x88, 0x00, 0x00, 0x0B, 0x14, 0x68, 0x65, 0x61, 0x64, +0x26, 0x5E, 0x3C, 0x56, 0x00, 0x00, 0x0C, 0x9C, 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, 0x65, 0x61, +0x07, 0xC2, 0x03, 0xE5, 0x00, 0x00, 0x0C, 0xD4, 0x00, 0x00, 0x00, 0x24, 0x68, 0x6D, 0x74, 0x78, +0x3E, 0x12, 0x00, 0x00, 0x00, 0x00, 0x0C, 0xF8, 0x00, 0x00, 0x00, 0x48, 0x6C, 0x6F, 0x63, 0x61, +0x16, 0xFE, 0x14, 0x7A, 0x00, 0x00, 0x0D, 0x40, 0x00, 0x00, 0x00, 0x26, 0x6D, 0x61, 0x78, 0x70, +0x00, 0x1B, 0x00, 0x99, 0x00, 0x00, 0x0D, 0x68, 0x00, 0x00, 0x00, 0x20, 0x6E, 0x61, 0x6D, 0x65, +0x99, 0x4A, 0x09, 0xFB, 0x00, 0x00, 0x0D, 0x88, 0x00, 0x00, 0x01, 0x86, 0x70, 0x6F, 0x73, 0x74, +0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x10, 0x00, 0x00, 0x00, 0x20, 0x00, 0x03, 0x03, 0xDF, +0x01, 0x90, 0x00, 0x05, 0x00, 0x00, 0x02, 0x99, 0x02, 0xCC, 0x00, 0x00, 0x00, 0x8F, 0x02, 0x99, +0x02, 0xCC, 0x00, 0x00, 0x01, 0xEB, 0x00, 0x33, 0x01, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x76, +0x03, 0xC0, 0xFF, 0xC0, 0x00, 0x40, 0x03, 0xC0, 0x00, 0x40, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, +0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1C, +0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x04, 0x00, 0x48, 0x00, 0x00, 0x00, 0x0E, +0x00, 0x08, 0x00, 0x02, 0x00, 0x06, 0x00, 0x01, 0x00, 0x20, 0x00, 0x6C, 0x00, 0x6F, 0x00, 0x76, +0xFF, 0xFD, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x61, 0x00, 0x6F, 0x00, 0x76, +0xFF, 0xFD, 0xFF, 0xFF, 0x00, 0x01, 0xFF, 0xE3, 0xFF, 0xA3, 0xFF, 0xA1, 0xFF, 0x9B, 0x00, 0x03, +0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x01, 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x01, 0x00, 0x00, 0xFF, 0xC0, 0x00, 0x00, +0x03, 0xC0, 0x00, 0x02, 0x00, 0x00, 0x37, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, +0xFF, 0xC0, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x02, 0x00, 0x00, 0x37, 0x39, 0x01, 0x00, 0x00, 0x00, +0x00, 0x01, 0x00, 0x00, 0xFF, 0xC0, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x02, 0x00, 0x00, 0x37, 0x39, +0x01, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xFF, 0xC0, 0x03, 0xC0, 0x03, 0xC0, 0x00, 0x2B, +0x00, 0x38, 0x00, 0x45, 0x00, 0x59, 0x00, 0x00, 0x25, 0x14, 0x16, 0x33, 0x21, 0x32, 0x36, 0x3D, +0x01, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x35, 0x34, 0x27, 0x2E, 0x01, 0x27, +0x26, 0x23, 0x22, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x1D, 0x01, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, +0x1E, 0x01, 0x1D, 0x01, 0x03, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, +0x35, 0x21, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x07, 0x37, +0x36, 0x32, 0x1F, 0x01, 0x16, 0x14, 0x07, 0x06, 0x22, 0x2F, 0x01, 0x07, 0x06, 0x22, 0x27, 0x26, +0x34, 0x37, 0x01, 0x00, 0x32, 0x23, 0x01, 0x40, 0x24, 0x32, 0x12, 0x0E, 0x4D, 0x68, 0x17, 0x14, +0x20, 0x21, 0x71, 0x4C, 0x4C, 0x56, 0x56, 0x4C, 0x4B, 0x71, 0x21, 0x21, 0x14, 0x16, 0x68, 0x4C, +0x0E, 0x13, 0x2B, 0x3F, 0x2C, 0x2C, 0x3F, 0x3F, 0x2C, 0x2C, 0x3F, 0x01, 0x6B, 0x3F, 0x2C, 0x2C, +0x3E, 0x3E, 0x2C, 0x2C, 0x3F, 0xB4, 0x4B, 0x0D, 0x23, 0x0C, 0x4C, 0x0C, 0x0C, 0x0D, 0x22, 0x0C, +0x2F, 0x2E, 0x0C, 0x23, 0x0C, 0x0C, 0x0C, 0x15, 0x23, 0x32, 0x32, 0x23, 0x19, 0x0F, 0x17, 0x04, +0x0C, 0x77, 0x50, 0x24, 0x41, 0x1B, 0x92, 0x50, 0x46, 0x47, 0x69, 0x1F, 0x1E, 0x1E, 0x1F, 0x69, +0x47, 0x46, 0x50, 0x92, 0x1B, 0x41, 0x24, 0x50, 0x77, 0x0C, 0x04, 0x17, 0x0F, 0x19, 0x01, 0xAB, +0x2C, 0x3F, 0x3F, 0x2C, 0x2C, 0x3F, 0x3F, 0x2C, 0x2C, 0x3F, 0x3F, 0x2C, 0x2C, 0x3F, 0x3F, 0x2C, +0xE4, 0x4B, 0x0D, 0x0D, 0x4B, 0x0C, 0x22, 0x0D, 0x0C, 0x0C, 0x2F, 0x2F, 0x0C, 0x0C, 0x0D, 0x22, +0x0C, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0xFF, 0xC0, 0x04, 0x00, 0x03, 0xC0, 0x00, 0x1B, +0x00, 0x37, 0x00, 0x43, 0x00, 0x00, 0x01, 0x22, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x31, 0x30, 0x17, +0x1E, 0x01, 0x17, 0x16, 0x33, 0x32, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x31, 0x30, 0x27, 0x2E, 0x01, +0x27, 0x26, 0x03, 0x22, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x35, 0x34, 0x37, 0x3E, 0x01, 0x37, 0x36, +0x33, 0x32, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x15, 0x14, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x03, 0x34, +0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x02, 0x00, 0x6A, 0x5D, 0x5E, 0x8B, +0x28, 0x28, 0x28, 0x28, 0x8B, 0x5E, 0x5D, 0x6A, 0x6A, 0x5D, 0x5E, 0x8B, 0x28, 0x28, 0x28, 0x28, +0x8B, 0x5E, 0x5D, 0x6A, 0x35, 0x2F, 0x2E, 0x46, 0x14, 0x14, 0x14, 0x14, 0x46, 0x2E, 0x2F, 0x35, +0x35, 0x2F, 0x2E, 0x46, 0x14, 0x14, 0x14, 0x14, 0x46, 0x2E, 0x2F, 0xB5, 0x4B, 0x35, 0x35, 0x4B, +0x4B, 0x35, 0x35, 0x4B, 0x03, 0x40, 0x3B, 0x3B, 0x8F, 0x3B, 0x3B, 0x3D, 0x3D, 0x91, 0x3D, 0x3D, +0x3D, 0x3D, 0x91, 0x3D, 0x3D, 0x3B, 0x3B, 0x8F, 0x3B, 0x3B, 0xFD, 0x80, 0x14, 0x14, 0x46, 0x2E, +0x2F, 0x35, 0x35, 0x2F, 0x2E, 0x46, 0x14, 0x14, 0x14, 0x14, 0x46, 0x2E, 0x2F, 0x35, 0x35, 0x2F, +0x2E, 0x46, 0x14, 0x14, 0x01, 0x00, 0x35, 0x4B, 0x4B, 0x35, 0x35, 0x4B, 0x4B, 0x00, 0x00, 0x00, +0x00, 0x08, 0x00, 0x00, 0xFF, 0xC0, 0x04, 0x00, 0x03, 0xC0, 0x00, 0x05, 0x00, 0x0B, 0x00, 0x10, +0x00, 0x15, 0x00, 0x25, 0x00, 0x36, 0x00, 0x46, 0x00, 0x56, 0x00, 0x00, 0x01, 0x33, 0x2E, 0x01, +0x27, 0x15, 0x1D, 0x01, 0x3E, 0x01, 0x37, 0x23, 0x27, 0x35, 0x0E, 0x01, 0x07, 0x17, 0x23, 0x1E, +0x01, 0x17, 0x13, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x33, 0x26, 0x27, 0x2E, 0x01, 0x27, +0x26, 0x27, 0x01, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x35, 0x06, 0x07, 0x0E, 0x01, 0x07, +0x06, 0x07, 0x33, 0x01, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x23, 0x16, 0x17, 0x1E, 0x01, +0x17, 0x16, 0x17, 0x01, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x15, 0x36, 0x37, 0x3E, 0x01, +0x37, 0x36, 0x37, 0x02, 0x41, 0xB9, 0x12, 0x63, 0x44, 0x44, 0x63, 0x12, 0xB9, 0x82, 0x44, 0x64, +0x11, 0xB9, 0xB9, 0x11, 0x64, 0x44, 0x82, 0x3D, 0x35, 0x35, 0x54, 0x1C, 0x1C, 0x0A, 0x82, 0x0B, +0x26, 0x27, 0x76, 0x4D, 0x4D, 0x57, 0xFE, 0x41, 0x0A, 0x1C, 0x1C, 0x54, 0x35, 0x35, 0x3D, 0x58, +0x4C, 0x4D, 0x76, 0x27, 0x26, 0x0B, 0x82, 0x01, 0x3D, 0x3D, 0x35, 0x35, 0x54, 0x1C, 0x1C, 0x0A, +0x82, 0x0B, 0x26, 0x27, 0x76, 0x4D, 0x4C, 0x58, 0x01, 0xBF, 0x0A, 0x1C, 0x1C, 0x54, 0x35, 0x35, +0x3D, 0x57, 0x4D, 0x4D, 0x76, 0x27, 0x26, 0x0B, 0x02, 0x01, 0x44, 0x63, 0x12, 0xB9, 0x82, 0xB9, +0x12, 0x63, 0x44, 0x82, 0xB9, 0x12, 0x63, 0x44, 0x82, 0x44, 0x63, 0x12, 0x02, 0x78, 0x0A, 0x1C, +0x1C, 0x54, 0x35, 0x35, 0x3D, 0x58, 0x4C, 0x4D, 0x76, 0x27, 0x26, 0x0B, 0xFE, 0x41, 0x3D, 0x35, +0x35, 0x54, 0x1C, 0x1C, 0x0A, 0x82, 0x0B, 0x26, 0x27, 0x76, 0x4D, 0x4C, 0x58, 0xFE, 0x41, 0x0A, +0x1C, 0x1C, 0x54, 0x35, 0x35, 0x3D, 0x58, 0x4C, 0x4D, 0x76, 0x27, 0x26, 0x0B, 0x01, 0xBF, 0x3D, +0x35, 0x35, 0x54, 0x1C, 0x1C, 0x0A, 0x82, 0x0B, 0x26, 0x27, 0x76, 0x4D, 0x4C, 0x58, 0x00, 0x00, +0x00, 0x01, 0x00, 0x00, 0xFF, 0xC0, 0x04, 0x00, 0x03, 0xC0, 0x00, 0x23, 0x00, 0x00, 0x37, 0x14, +0x16, 0x33, 0x21, 0x32, 0x36, 0x35, 0x11, 0x34, 0x26, 0x23, 0x21, 0x35, 0x34, 0x26, 0x2B, 0x01, +0x22, 0x06, 0x15, 0x11, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, +0x15, 0x11, 0x00, 0x32, 0x23, 0x03, 0x56, 0x23, 0x32, 0x32, 0x23, 0xFE, 0x55, 0x1B, 0x14, 0xE2, +0x14, 0x1B, 0x19, 0x12, 0x11, 0x19, 0x20, 0x16, 0x16, 0x1F, 0x6B, 0x24, 0x32, 0x32, 0x24, 0x02, +0x40, 0x23, 0x32, 0x26, 0x14, 0x1B, 0x1B, 0x14, 0xFD, 0x85, 0x12, 0x19, 0x19, 0x12, 0x02, 0x20, +0x16, 0x1F, 0x1F, 0x16, 0xFD, 0xA0, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0xFF, 0xC0, 0x03, 0xEB, +0x03, 0xC0, 0x00, 0x0C, 0x00, 0x18, 0x00, 0x79, 0x00, 0x96, 0x00, 0x00, 0x01, 0x34, 0x36, 0x33, +0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x37, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, +0x32, 0x36, 0x35, 0x34, 0x26, 0x05, 0x1E, 0x01, 0x17, 0x07, 0x06, 0x14, 0x1F, 0x01, 0x16, 0x32, +0x3F, 0x01, 0x1E, 0x01, 0x1F, 0x01, 0x14, 0x16, 0x3B, 0x01, 0x32, 0x36, 0x35, 0x37, 0x3E, 0x01, +0x37, 0x17, 0x16, 0x32, 0x3F, 0x01, 0x36, 0x34, 0x2F, 0x01, 0x3E, 0x01, 0x3F, 0x01, 0x32, 0x36, +0x3D, 0x01, 0x34, 0x26, 0x23, 0x27, 0x2E, 0x01, 0x27, 0x37, 0x36, 0x34, 0x2F, 0x01, 0x26, 0x22, +0x0F, 0x01, 0x2E, 0x01, 0x2F, 0x01, 0x34, 0x26, 0x2B, 0x01, 0x22, 0x06, 0x15, 0x07, 0x0E, 0x01, +0x07, 0x27, 0x26, 0x22, 0x0F, 0x01, 0x06, 0x14, 0x1F, 0x01, 0x0E, 0x01, 0x0F, 0x01, 0x22, 0x06, +0x1D, 0x01, 0x14, 0x16, 0x33, 0x17, 0x01, 0x32, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x15, 0x14, 0x07, +0x0E, 0x01, 0x07, 0x06, 0x23, 0x22, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x35, 0x34, 0x37, 0x3E, 0x01, +0x37, 0x36, 0x33, 0x01, 0xC0, 0x1F, 0x16, 0x16, 0x20, 0x20, 0x16, 0x16, 0x1F, 0x35, 0x39, 0x51, +0x51, 0x39, 0x3A, 0x51, 0x51, 0xFE, 0x5F, 0x06, 0x11, 0x0B, 0x40, 0x0E, 0x0E, 0x46, 0x0D, 0x27, +0x0E, 0x46, 0x13, 0x29, 0x15, 0x06, 0x1C, 0x13, 0x62, 0x14, 0x1B, 0x06, 0x16, 0x29, 0x13, 0x46, +0x0E, 0x26, 0x0E, 0x45, 0x0E, 0x0E, 0x40, 0x0B, 0x11, 0x07, 0x5F, 0x13, 0x1C, 0x1C, 0x13, 0x5F, +0x06, 0x12, 0x0B, 0x40, 0x0E, 0x0E, 0x45, 0x0E, 0x26, 0x0E, 0x46, 0x13, 0x29, 0x16, 0x06, 0x1B, +0x14, 0x62, 0x13, 0x1C, 0x06, 0x15, 0x29, 0x13, 0x46, 0x0E, 0x27, 0x0D, 0x46, 0x0E, 0x0E, 0x40, +0x0B, 0x11, 0x06, 0x5F, 0x14, 0x1B, 0x1B, 0x14, 0x5F, 0x01, 0x67, 0x2F, 0x29, 0x28, 0x3D, 0x12, +0x11, 0x11, 0x12, 0x3D, 0x28, 0x29, 0x2F, 0x2E, 0x29, 0x29, 0x3C, 0x12, 0x12, 0x12, 0x12, 0x3C, +0x29, 0x29, 0x2E, 0x01, 0xB5, 0x16, 0x20, 0x20, 0x16, 0x16, 0x1F, 0x1F, 0x16, 0x8B, 0x51, 0x3A, +0x39, 0x51, 0x51, 0x39, 0x3A, 0x51, 0xF1, 0x15, 0x29, 0x13, 0x46, 0x0E, 0x27, 0x0D, 0x46, 0x0E, +0x0E, 0x40, 0x0B, 0x11, 0x06, 0x5F, 0x14, 0x1B, 0x1B, 0x14, 0x5F, 0x06, 0x11, 0x0B, 0x40, 0x0E, +0x0E, 0x46, 0x0D, 0x27, 0x0E, 0x46, 0x13, 0x29, 0x15, 0x06, 0x1C, 0x13, 0x62, 0x14, 0x1B, 0x06, +0x16, 0x29, 0x13, 0x46, 0x0E, 0x26, 0x0E, 0x45, 0x0E, 0x0E, 0x40, 0x0B, 0x12, 0x06, 0x5F, 0x13, +0x1C, 0x1C, 0x13, 0x5F, 0x06, 0x12, 0x0B, 0x40, 0x0E, 0x0E, 0x45, 0x0E, 0x26, 0x0E, 0x46, 0x13, +0x29, 0x16, 0x06, 0x1B, 0x14, 0x62, 0x13, 0x1C, 0x06, 0x01, 0x46, 0x11, 0x12, 0x3D, 0x28, 0x29, +0x2F, 0x2E, 0x29, 0x29, 0x3C, 0x12, 0x12, 0x12, 0x12, 0x3C, 0x29, 0x29, 0x2E, 0x2F, 0x29, 0x28, +0x3D, 0x12, 0x11, 0x00, 0x00, 0x02, 0x00, 0x00, 0xFF, 0xC0, 0x04, 0x00, 0x03, 0xC0, 0x00, 0x20, +0x00, 0x27, 0x00, 0x00, 0x09, 0x01, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x33, 0x21, 0x32, 0x36, 0x35, +0x34, 0x26, 0x27, 0x01, 0x11, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0x22, 0x06, 0x15, +0x14, 0x16, 0x3B, 0x01, 0x11, 0x13, 0x33, 0x11, 0x17, 0x21, 0x37, 0x11, 0x01, 0x6B, 0xFE, 0xA6, +0x08, 0x09, 0x32, 0x23, 0x03, 0x56, 0x23, 0x32, 0x09, 0x08, 0xFE, 0xA6, 0x0B, 0x16, 0x1F, 0x1F, +0x16, 0xFE, 0xC0, 0x16, 0x1F, 0x1F, 0x16, 0x0B, 0x6A, 0x56, 0x95, 0xFE, 0x80, 0x95, 0x02, 0x23, +0xFE, 0x25, 0x0B, 0x19, 0x0F, 0x23, 0x32, 0x32, 0x23, 0x0F, 0x19, 0x0B, 0x01, 0xDB, 0x01, 0x32, +0x20, 0x16, 0x16, 0x1F, 0x1F, 0x16, 0x16, 0x20, 0xFE, 0xCE, 0x01, 0x32, 0xFE, 0xC0, 0xD5, 0xD5, +0x01, 0x40, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xFF, 0xC0, 0x03, 0x33, 0x03, 0xC0, 0x00, 0x20, +0x00, 0x00, 0x01, 0x14, 0x06, 0x2B, 0x01, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x3D, 0x01, 0x23, +0x22, 0x26, 0x35, 0x34, 0x36, 0x3B, 0x01, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x1D, 0x01, 0x33, +0x32, 0x16, 0x15, 0x03, 0x33, 0x09, 0x16, 0xE1, 0x1E, 0x15, 0x15, 0x1E, 0xE1, 0x16, 0x09, 0x09, +0x16, 0xE1, 0x1E, 0x15, 0x15, 0x1E, 0xE1, 0x16, 0x09, 0x01, 0xCD, 0x15, 0x1E, 0xE2, 0x15, 0x09, +0x09, 0x15, 0xE2, 0x1E, 0x15, 0x15, 0x1E, 0xE1, 0x15, 0x0A, 0x0A, 0x15, 0xE1, 0x1E, 0x15, 0x00, +0x00, 0x02, 0x00, 0x00, 0xFF, 0xB7, 0x03, 0xCA, 0x03, 0xC0, 0x00, 0x27, 0x00, 0x2D, 0x00, 0x00, +0x01, 0x16, 0x14, 0x0F, 0x01, 0x17, 0x16, 0x14, 0x0F, 0x01, 0x06, 0x22, 0x2F, 0x01, 0x01, 0x0E, +0x01, 0x2B, 0x01, 0x07, 0x27, 0x37, 0x35, 0x34, 0x36, 0x37, 0x01, 0x27, 0x26, 0x34, 0x3F, 0x01, +0x36, 0x32, 0x1F, 0x01, 0x37, 0x36, 0x32, 0x17, 0x09, 0x01, 0x27, 0x01, 0x15, 0x33, 0x03, 0xCA, +0x36, 0x36, 0x80, 0x3B, 0x06, 0x06, 0x78, 0x05, 0x10, 0x05, 0x3C, 0xFE, 0xA7, 0x0A, 0x1B, 0x0E, +0x74, 0x92, 0x25, 0x49, 0x0B, 0x0A, 0x01, 0x59, 0x3C, 0x06, 0x06, 0x78, 0x05, 0x10, 0x05, 0x3C, +0x7F, 0x35, 0x98, 0x35, 0xFD, 0x5B, 0x01, 0x49, 0x6E, 0xFE, 0xB7, 0x6E, 0x03, 0x81, 0x35, 0x98, +0x35, 0x80, 0x3B, 0x06, 0x0F, 0x05, 0x78, 0x06, 0x06, 0x3C, 0xFE, 0xA7, 0x0A, 0x0B, 0x49, 0x24, +0x93, 0x74, 0x0E, 0x1B, 0x0A, 0x01, 0x59, 0x3C, 0x05, 0x0F, 0x06, 0x78, 0x06, 0x06, 0x3B, 0x80, +0x36, 0x36, 0xFC, 0xED, 0x01, 0x49, 0x6E, 0xFE, 0xB6, 0x6D, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, +0xFF, 0xC0, 0x02, 0xE1, 0x03, 0xC0, 0x00, 0x12, 0x00, 0x00, 0x01, 0x36, 0x32, 0x17, 0x1E, 0x01, +0x0F, 0x01, 0x06, 0x22, 0x2F, 0x01, 0x26, 0x34, 0x37, 0x36, 0x32, 0x1F, 0x01, 0x02, 0xAF, 0x0A, +0x1E, 0x0A, 0x0A, 0x01, 0x0B, 0xC8, 0x0A, 0x1E, 0x0A, 0xC8, 0x0B, 0x0B, 0x0A, 0x1E, 0x0A, 0xAF, +0x02, 0x3A, 0x0B, 0x0B, 0x0A, 0x1D, 0x0A, 0xC4, 0x0B, 0x0B, 0xC4, 0x0A, 0x1D, 0x0A, 0x0B, 0x0B, +0xA0, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0xFF, 0xC0, 0x03, 0xE6, 0x03, 0xC0, 0x00, 0x1C, +0x00, 0x2D, 0x00, 0x00, 0x01, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, +0x07, 0x06, 0x17, 0x16, 0x17, 0x16, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x27, 0x26, +0x27, 0x13, 0x03, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x37, 0x26, 0x27, 0x2E, 0x01, 0x27, +0x26, 0x27, 0x02, 0x6D, 0x31, 0x3C, 0x3D, 0x71, 0x2D, 0x2D, 0x11, 0x0E, 0x22, 0x22, 0x47, 0x1A, +0x1B, 0x01, 0x01, 0x3E, 0x3E, 0xA9, 0x57, 0x57, 0x34, 0x30, 0x26, 0x26, 0x1F, 0x0D, 0x0D, 0x36, +0x71, 0xAC, 0x15, 0x20, 0x20, 0x40, 0x1A, 0x1B, 0x09, 0xE1, 0x0A, 0x1E, 0x1E, 0x4E, 0x29, 0x2A, +0x21, 0x01, 0xF0, 0x25, 0x09, 0x08, 0x50, 0x41, 0x42, 0x4F, 0x3D, 0x20, 0x21, 0x20, 0x05, 0x06, +0x08, 0x09, 0x08, 0x08, 0x05, 0x11, 0x11, 0x2B, 0x28, 0x33, 0x33, 0x6B, 0x33, 0x33, 0x27, 0x01, +0x90, 0xFE, 0xF8, 0x04, 0x10, 0x11, 0x2E, 0x1B, 0x1A, 0x18, 0xDA, 0x1D, 0x22, 0x23, 0x3D, 0x15, +0x16, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xFF, 0xC0, 0x03, 0x33, 0x03, 0xC0, 0x00, 0x0E, +0x00, 0x00, 0x01, 0x14, 0x06, 0x23, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x21, 0x32, 0x16, +0x15, 0x03, 0x33, 0x09, 0x16, 0xFD, 0xD8, 0x16, 0x09, 0x09, 0x16, 0x02, 0x28, 0x16, 0x09, 0x01, +0xCD, 0x15, 0x1E, 0x1E, 0x15, 0x15, 0x1E, 0x1E, 0x15, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, +0xFF, 0xC0, 0x03, 0xEE, 0x03, 0xC0, 0x00, 0x42, 0x00, 0x5E, 0x00, 0x00, 0x01, 0x26, 0x27, 0x26, +0x36, 0x37, 0x36, 0x37, 0x27, 0x0E, 0x01, 0x23, 0x22, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x35, 0x23, +0x14, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x27, 0x07, 0x1E, 0x01, 0x17, 0x16, 0x17, +0x16, 0x06, 0x07, 0x06, 0x07, 0x17, 0x3E, 0x01, 0x33, 0x32, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x15, +0x33, 0x34, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x17, 0x37, 0x2E, 0x01, 0x27, 0x05, +0x22, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x35, 0x34, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x33, 0x32, 0x17, +0x1E, 0x01, 0x17, 0x16, 0x15, 0x14, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x03, 0xA6, 0x14, 0x05, 0x04, +0x13, 0x18, 0x17, 0x23, 0x65, 0x15, 0x32, 0x1B, 0x28, 0x23, 0x24, 0x35, 0x0F, 0x0F, 0xC9, 0x0D, +0x0D, 0x15, 0x1F, 0x1F, 0x48, 0x27, 0x26, 0x23, 0x65, 0x16, 0x25, 0x0D, 0x14, 0x04, 0x05, 0x14, +0x17, 0x17, 0x23, 0x65, 0x15, 0x32, 0x1A, 0x28, 0x24, 0x23, 0x35, 0x0F, 0x10, 0xC9, 0x0D, 0x0D, +0x14, 0x1F, 0x1F, 0x49, 0x26, 0x26, 0x24, 0x64, 0x15, 0x25, 0x0D, 0xFE, 0x5A, 0x2B, 0x26, 0x25, +0x39, 0x10, 0x10, 0x10, 0x10, 0x39, 0x25, 0x26, 0x2B, 0x2B, 0x26, 0x25, 0x39, 0x10, 0x10, 0x10, +0x10, 0x39, 0x25, 0x26, 0x01, 0x5E, 0x23, 0x26, 0x26, 0x49, 0x1F, 0x1F, 0x14, 0xAF, 0x0D, 0x0E, +0x0F, 0x10, 0x35, 0x24, 0x23, 0x29, 0x19, 0x32, 0x17, 0x23, 0x17, 0x17, 0x13, 0x04, 0x05, 0x14, +0xAE, 0x0D, 0x24, 0x17, 0x23, 0x26, 0x26, 0x48, 0x20, 0x1F, 0x14, 0xAE, 0x0C, 0x0E, 0x0F, 0x10, +0x35, 0x23, 0x24, 0x28, 0x19, 0x31, 0x17, 0x23, 0x17, 0x17, 0x13, 0x04, 0x05, 0x14, 0xAF, 0x0C, +0x24, 0x17, 0x6D, 0x10, 0x10, 0x39, 0x25, 0x26, 0x2B, 0x2B, 0x26, 0x25, 0x39, 0x10, 0x10, 0x10, +0x10, 0x39, 0x25, 0x26, 0x2B, 0x2B, 0x26, 0x25, 0x39, 0x10, 0x10, 0x00, 0x00, 0x02, 0x00, 0x00, +0xFF, 0xC0, 0x03, 0xEB, 0x03, 0xC0, 0x00, 0x7C, 0x00, 0x8D, 0x00, 0x00, 0x37, 0x14, 0x16, 0x3B, +0x01, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, +0x3D, 0x01, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x3D, 0x01, 0x33, 0x32, 0x36, 0x3D, 0x01, +0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, +0x01, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x35, 0x34, 0x26, 0x2B, 0x01, 0x35, +0x34, 0x26, 0x23, 0x22, 0x06, 0x1D, 0x01, 0x23, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x1D, 0x01, +0x23, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x1D, 0x01, 0x23, 0x22, 0x06, 0x1D, 0x01, 0x23, 0x22, +0x06, 0x15, 0x14, 0x16, 0x3B, 0x01, 0x15, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x3B, 0x01, 0x15, +0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x3B, 0x01, 0x15, 0x01, 0x15, 0x14, 0x06, 0x2B, 0x01, 0x22, +0x26, 0x3D, 0x01, 0x34, 0x36, 0x3B, 0x01, 0x32, 0x16, 0x15, 0x80, 0x32, 0x23, 0x16, 0x1F, 0x16, +0x16, 0x1F, 0x6B, 0x1F, 0x16, 0x16, 0x20, 0x6A, 0x20, 0x16, 0x16, 0x1F, 0x15, 0x24, 0x32, 0x4A, +0x16, 0x20, 0x20, 0x16, 0x4A, 0x4A, 0x16, 0x20, 0x20, 0x16, 0x4A, 0x4A, 0x16, 0x20, 0x20, 0x16, +0x4A, 0x32, 0x24, 0x15, 0x1F, 0x16, 0x16, 0x20, 0x6A, 0x20, 0x16, 0x16, 0x1F, 0x6B, 0x1F, 0x16, +0x16, 0x1F, 0x16, 0x23, 0x32, 0x4B, 0x16, 0x1F, 0x1F, 0x16, 0x4B, 0x4B, 0x16, 0x1F, 0x1F, 0x16, +0x4B, 0x4B, 0x16, 0x1F, 0x1F, 0x16, 0x4B, 0x02, 0x15, 0x1B, 0x14, 0xE2, 0x13, 0x1C, 0x1C, 0x13, +0xE2, 0x14, 0x1B, 0x95, 0x23, 0x32, 0x4B, 0x16, 0x1F, 0x1F, 0x16, 0x4B, 0x4B, 0x16, 0x1F, 0x1F, +0x16, 0x4B, 0x4B, 0x16, 0x1F, 0x1F, 0x16, 0x4B, 0x32, 0x23, 0x16, 0x1F, 0x16, 0x16, 0x1F, 0x6B, +0x1F, 0x16, 0x16, 0x20, 0x6A, 0x20, 0x16, 0x16, 0x1F, 0x15, 0x24, 0x32, 0x4A, 0x16, 0x20, 0x20, +0x16, 0x4A, 0x4A, 0x16, 0x20, 0x20, 0x16, 0x4A, 0x4A, 0x16, 0x20, 0x20, 0x16, 0x4A, 0x32, 0x24, +0x15, 0x1F, 0x16, 0x16, 0x20, 0x6A, 0x20, 0x16, 0x16, 0x1F, 0x6B, 0x1F, 0x16, 0x16, 0x1F, 0x16, +0x01, 0x91, 0xE2, 0x13, 0x1C, 0x1C, 0x13, 0xE2, 0x14, 0x1B, 0x1B, 0x14, 0x00, 0x01, 0x00, 0x00, +0xFF, 0xC0, 0x03, 0xF1, 0x03, 0xC0, 0x00, 0x42, 0x00, 0x00, 0x09, 0x01, 0x0E, 0x01, 0x15, 0x14, +0x16, 0x33, 0x32, 0x36, 0x37, 0x30, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x13, +0x17, 0x16, 0x32, 0x37, 0x36, 0x34, 0x27, 0x01, 0x26, 0x22, 0x07, 0x06, 0x14, 0x1F, 0x01, 0x05, +0x0E, 0x01, 0x07, 0x01, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x01, 0x2E, 0x01, +0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x01, 0xED, 0xFE, +0x96, 0x05, 0x07, 0x19, 0x12, 0x04, 0x09, 0x04, 0x5E, 0x5E, 0xE4, 0x5F, 0x60, 0x02, 0x0B, 0x0F, +0x04, 0x61, 0x14, 0x0F, 0x2B, 0x10, 0x0F, 0x0F, 0xFE, 0xD3, 0x0F, 0x2C, 0x0F, 0x0F, 0x0F, 0x13, +0xFE, 0xA0, 0x0B, 0x12, 0x05, 0xFE, 0xF8, 0x01, 0x02, 0x19, 0x12, 0x09, 0x10, 0x05, 0x01, 0x69, +0x03, 0x04, 0x3E, 0x2C, 0x2C, 0x3F, 0x3F, 0x2C, 0x0A, 0x15, 0x09, 0x01, 0x72, 0xFE, 0x97, 0x06, +0x10, 0x08, 0x12, 0x19, 0x02, 0x02, 0x28, 0x29, 0x63, 0x29, 0x2A, 0x01, 0x05, 0x12, 0x0B, 0x01, +0x5F, 0x13, 0x0F, 0x0F, 0x0F, 0x2C, 0x0F, 0x01, 0x2D, 0x0F, 0x0F, 0x10, 0x2B, 0x0F, 0x14, 0x62, +0x03, 0x10, 0x0B, 0xFD, 0x9F, 0x03, 0x09, 0x04, 0x12, 0x19, 0x07, 0x06, 0x01, 0x69, 0x09, 0x15, +0x0A, 0x2C, 0x3F, 0x3F, 0x2C, 0x2C, 0x3E, 0x04, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, +0x00, 0x01, 0x00, 0x00, 0x69, 0x94, 0xD5, 0xCF, 0x5F, 0x0F, 0x3C, 0xF5, 0x00, 0x0B, 0x04, 0x00, +0x00, 0x00, 0x00, 0x00, 0xE1, 0x9F, 0x7B, 0xF1, 0x00, 0x00, 0x00, 0x00, 0xE1, 0x9F, 0x7B, 0xF1, +0x00, 0x00, 0xFF, 0xB7, 0x04, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x03, 0xC0, 0xFF, 0xC0, 0x00, 0x00, 0x04, 0x12, +0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, +0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, +0x04, 0x00, 0x00, 0x00, 0x04, 0x12, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, +0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x14, 0x00, 0x1E, 0x00, 0x9E, 0x01, 0x04, 0x01, 0x94, +0x01, 0xC8, 0x02, 0x9E, 0x02, 0xDE, 0x03, 0x0C, 0x03, 0x5A, 0x03, 0x7E, 0x03, 0xCE, 0x03, 0xEA, +0x04, 0x7A, 0x05, 0x22, 0x05, 0x8A, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x12, 0x00, 0x97, +0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0xAE, 0x00, 0x01, +0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, +0x00, 0x02, 0x00, 0x07, 0x00, 0x60, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x07, +0x00, 0x36, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00, 0x75, 0x00, 0x01, +0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0B, 0x00, 0x15, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, +0x00, 0x06, 0x00, 0x07, 0x00, 0x4B, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x1A, +0x00, 0x8A, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x01, 0x00, 0x0E, 0x00, 0x07, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x00, 0x02, 0x00, 0x0E, 0x00, 0x67, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x00, 0x03, 0x00, 0x0E, 0x00, 0x3D, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x04, 0x00, 0x0E, +0x00, 0x7C, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x05, 0x00, 0x16, 0x00, 0x20, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x00, 0x06, 0x00, 0x0E, 0x00, 0x52, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x00, 0x0A, 0x00, 0x34, 0x00, 0xA4, 0x69, 0x63, 0x6F, 0x6D, 0x6F, 0x6F, 0x6E, 0x00, 0x69, 0x00, +0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6E, 0x56, 0x65, 0x72, 0x73, 0x69, +0x6F, 0x6E, 0x20, 0x31, 0x2E, 0x30, 0x00, 0x56, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, +0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, 0x69, 0x63, 0x6F, 0x6D, +0x6F, 0x6F, 0x6E, 0x00, 0x69, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x6F, 0x00, +0x6E, 0x69, 0x63, 0x6F, 0x6D, 0x6F, 0x6F, 0x6E, 0x00, 0x69, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, +0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6E, 0x52, 0x65, 0x67, 0x75, 0x6C, 0x61, 0x72, 0x00, 0x52, 0x00, +0x65, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, 0x69, 0x63, 0x6F, 0x6D, 0x6F, +0x6F, 0x6E, 0x00, 0x69, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6E, +0x46, 0x6F, 0x6E, 0x74, 0x20, 0x67, 0x65, 0x6E, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x62, +0x79, 0x20, 0x49, 0x63, 0x6F, 0x4D, 0x6F, 0x6F, 0x6E, 0x2E, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x6E, +0x00, 0x74, 0x00, 0x20, 0x00, 0x67, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x72, 0x00, 0x61, +0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x62, 0x00, 0x79, 0x00, 0x20, 0x00, 0x49, +0x00, 0x63, 0x00, 0x6F, 0x00, 0x4D, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x00, +0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 + +}; + +unsigned char icomoon_widget[] = +{ + 0x00, 0x01, 0x00, 0x00, 0x00, 0x0B, 0x00, 0x80, 0x00, 0x03, 0x00, 0x30, 0x4F, 0x53, 0x2F, 0x32, +0x0F, 0x11, 0x0D, 0x3E, 0x00, 0x00, 0x00, 0xBC, 0x00, 0x00, 0x00, 0x60, 0x63, 0x6D, 0x61, 0x70, +0x01, 0x2C, 0x01, 0xAA, 0x00, 0x00, 0x01, 0x1C, 0x00, 0x00, 0x00, 0x6C, 0x67, 0x61, 0x73, 0x70, +0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x01, 0x88, 0x00, 0x00, 0x00, 0x08, 0x67, 0x6C, 0x79, 0x66, +0x4C, 0xD0, 0x3E, 0xFF, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x64, 0x68, 0x65, 0x61, 0x64, +0x26, 0x06, 0x89, 0xDF, 0x00, 0x00, 0x02, 0xF4, 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, 0x65, 0x61, +0x07, 0x36, 0x03, 0xC9, 0x00, 0x00, 0x03, 0x2C, 0x00, 0x00, 0x00, 0x24, 0x68, 0x6D, 0x74, 0x78, +0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x50, 0x00, 0x00, 0x00, 0x20, 0x6C, 0x6F, 0x63, 0x61, +0x01, 0x42, 0x00, 0xF6, 0x00, 0x00, 0x03, 0x70, 0x00, 0x00, 0x00, 0x12, 0x6D, 0x61, 0x78, 0x70, +0x00, 0x0B, 0x00, 0x23, 0x00, 0x00, 0x03, 0x84, 0x00, 0x00, 0x00, 0x20, 0x6E, 0x61, 0x6D, 0x65, +0x99, 0x4A, 0x09, 0xFB, 0x00, 0x00, 0x03, 0xA4, 0x00, 0x00, 0x01, 0x86, 0x70, 0x6F, 0x73, 0x74, +0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x05, 0x2C, 0x00, 0x00, 0x00, 0x20, 0x00, 0x03, 0x03, 0x9A, +0x01, 0x90, 0x00, 0x05, 0x00, 0x00, 0x02, 0x99, 0x02, 0xCC, 0x00, 0x00, 0x00, 0x8F, 0x02, 0x99, +0x02, 0xCC, 0x00, 0x00, 0x01, 0xEB, 0x00, 0x33, 0x01, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x7A, +0x03, 0xC0, 0xFF, 0xC0, 0x00, 0x40, 0x03, 0xC0, 0x00, 0x40, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, +0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1C, +0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x04, 0x00, 0x50, 0x00, 0x00, 0x00, 0x10, +0x00, 0x10, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x20, 0x00, 0x67, 0x00, 0x6B, 0x00, 0x75, +0x00, 0x7A, 0xFF, 0xFD, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x67, 0x00, 0x6B, +0x00, 0x75, 0x00, 0x7A, 0xFF, 0xFD, 0xFF, 0xFF, 0x00, 0x01, 0xFF, 0xE3, 0xFF, 0x9D, 0xFF, 0x9A, +0xFF, 0x91, 0xFF, 0x8D, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x0F, +0x00, 0x01, 0x00, 0x00, 0xFF, 0xC0, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x02, 0x00, 0x00, 0x37, 0x39, +0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xFF, 0xC0, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x02, +0x00, 0x00, 0x37, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xFF, 0xC0, 0x00, 0x00, +0x03, 0xC0, 0x00, 0x02, 0x00, 0x00, 0x37, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, +0xFF, 0xC0, 0x03, 0x33, 0x03, 0xC0, 0x00, 0x20, 0x00, 0x00, 0x01, 0x14, 0x06, 0x2B, 0x01, 0x15, +0x14, 0x06, 0x23, 0x22, 0x26, 0x3D, 0x01, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x3B, 0x01, 0x35, +0x34, 0x36, 0x33, 0x32, 0x16, 0x1D, 0x01, 0x33, 0x32, 0x16, 0x15, 0x03, 0x33, 0x09, 0x16, 0xE1, +0x1E, 0x15, 0x15, 0x1E, 0xE1, 0x16, 0x09, 0x09, 0x16, 0xE1, 0x1E, 0x15, 0x15, 0x1E, 0xE1, 0x16, +0x09, 0x01, 0xCD, 0x15, 0x1E, 0xE2, 0x15, 0x09, 0x09, 0x15, 0xE2, 0x1E, 0x15, 0x15, 0x1E, 0xE1, +0x15, 0x0A, 0x0A, 0x15, 0xE1, 0x1E, 0x15, 0x00, 0x00, 0x01, 0x00, 0x00, 0xFF, 0xC0, 0x03, 0x33, +0x03, 0xC0, 0x00, 0x0E, 0x00, 0x00, 0x01, 0x14, 0x06, 0x23, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, +0x33, 0x21, 0x32, 0x16, 0x15, 0x03, 0x33, 0x09, 0x16, 0xFD, 0xD8, 0x16, 0x09, 0x09, 0x16, 0x02, +0x28, 0x16, 0x09, 0x01, 0xCD, 0x15, 0x1E, 0x1E, 0x15, 0x15, 0x1E, 0x1E, 0x15, 0x00, 0x00, 0x00, +0x00, 0x02, 0x00, 0x00, 0xFF, 0xC0, 0x03, 0x74, 0x03, 0xC0, 0x00, 0x03, 0x00, 0x16, 0x00, 0x00, +0x25, 0x01, 0x27, 0x01, 0x01, 0x16, 0x0F, 0x01, 0x17, 0x07, 0x27, 0x01, 0x23, 0x35, 0x01, 0x27, +0x37, 0x17, 0x37, 0x36, 0x33, 0x32, 0x17, 0x01, 0x28, 0x01, 0x58, 0x52, 0xFE, 0xA8, 0x02, 0x9E, +0x1E, 0x1E, 0x86, 0x52, 0x3C, 0x3C, 0xFE, 0x82, 0xCA, 0x01, 0x7C, 0x3C, 0x3C, 0x52, 0x86, 0x0C, +0x12, 0x12, 0x0C, 0x81, 0x01, 0x58, 0x52, 0xFE, 0xA8, 0x01, 0xE8, 0x1E, 0x1E, 0x86, 0x52, 0x3C, +0x3C, 0xFE, 0x84, 0xCA, 0x01, 0x7E, 0x3C, 0x3C, 0x52, 0x86, 0x0C, 0x0C, 0x00, 0x02, 0x00, 0x00, +0xFF, 0xC0, 0x02, 0xC4, 0x03, 0xC0, 0x00, 0x05, 0x00, 0x0B, 0x00, 0x00, 0x25, 0x37, 0x17, 0x07, +0x27, 0x37, 0x13, 0x07, 0x27, 0x37, 0x17, 0x07, 0x02, 0x00, 0x88, 0x3C, 0xC4, 0xC4, 0x3C, 0x88, +0x88, 0x3C, 0xC4, 0xC4, 0x3C, 0xA3, 0x88, 0x3C, 0xC4, 0xC4, 0x3C, 0x01, 0x88, 0x88, 0x3C, 0xC4, +0xC4, 0x3C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xC8, 0x6E, 0x49, 0x97, +0x5F, 0x0F, 0x3C, 0xF5, 0x00, 0x0B, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE1, 0xB9, 0xA2, 0xB1, +0x00, 0x00, 0x00, 0x00, 0xE1, 0xB9, 0xA2, 0xB1, 0x00, 0x00, 0xFF, 0xC0, 0x03, 0x74, 0x03, 0xC0, +0x00, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, +0x03, 0xC0, 0xFF, 0xC0, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x74, 0x00, 0x01, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, +0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, +0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x14, 0x00, 0x1E, 0x00, 0x4C, 0x00, 0x68, 0x00, 0x96, +0x00, 0xB2, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x08, 0x00, 0x21, 0x00, 0x02, 0x00, 0x00, +0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0xAE, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, +0x00, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x07, +0x00, 0x60, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x07, 0x00, 0x36, 0x00, 0x01, +0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x07, 0x00, 0x75, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, +0x00, 0x05, 0x00, 0x0B, 0x00, 0x15, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x07, +0x00, 0x4B, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x1A, 0x00, 0x8A, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x00, 0x01, 0x00, 0x0E, 0x00, 0x07, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x00, 0x02, 0x00, 0x0E, 0x00, 0x67, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x03, 0x00, 0x0E, +0x00, 0x3D, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x04, 0x00, 0x0E, 0x00, 0x7C, 0x00, 0x03, +0x00, 0x01, 0x04, 0x09, 0x00, 0x05, 0x00, 0x16, 0x00, 0x20, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, +0x00, 0x06, 0x00, 0x0E, 0x00, 0x52, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x0A, 0x00, 0x34, +0x00, 0xA4, 0x69, 0x63, 0x6F, 0x6D, 0x6F, 0x6F, 0x6E, 0x00, 0x69, 0x00, 0x63, 0x00, 0x6F, 0x00, +0x6D, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6E, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6F, 0x6E, 0x20, 0x31, +0x2E, 0x30, 0x00, 0x56, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, +0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, 0x69, 0x63, 0x6F, 0x6D, 0x6F, 0x6F, 0x6E, 0x00, +0x69, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6E, 0x69, 0x63, 0x6F, +0x6D, 0x6F, 0x6F, 0x6E, 0x00, 0x69, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x6F, +0x00, 0x6E, 0x52, 0x65, 0x67, 0x75, 0x6C, 0x61, 0x72, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, 0x00, +0x75, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, 0x69, 0x63, 0x6F, 0x6D, 0x6F, 0x6F, 0x6E, 0x00, 0x69, +0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6E, 0x46, 0x6F, 0x6E, 0x74, +0x20, 0x67, 0x65, 0x6E, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x49, 0x63, +0x6F, 0x4D, 0x6F, 0x6F, 0x6E, 0x2E, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, +0x00, 0x67, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x72, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, +0x00, 0x64, 0x00, 0x20, 0x00, 0x62, 0x00, 0x79, 0x00, 0x20, 0x00, 0x49, 0x00, 0x63, 0x00, 0x6F, +0x00, 0x4D, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/ak47.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/ak47.svg new file mode 100644 index 0000000..840fe3e --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/ak47.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/aug.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/aug.svg new file mode 100644 index 0000000..4fe4f08 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/aug.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/awp.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/awp.svg new file mode 100644 index 0000000..8bbdeac --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/awp.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/bayonet.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/bayonet.svg new file mode 100644 index 0000000..4d746e7 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/bayonet.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/bizon.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/bizon.svg new file mode 100644 index 0000000..f8141a8 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/bizon.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/bomb.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/bomb.svg new file mode 100644 index 0000000..a1015f5 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/bomb.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/c4.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/c4.svg new file mode 100644 index 0000000..18c9c93 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/c4.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/cz75a.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/cz75a.svg new file mode 100644 index 0000000..2c1727a --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/cz75a.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/deagle.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/deagle.svg new file mode 100644 index 0000000..cbfbfd1 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/deagle.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/decoy.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/decoy.svg new file mode 100644 index 0000000..e2c0c6b --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/decoy.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/elite.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/elite.svg new file mode 100644 index 0000000..0424256 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/elite.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/famas.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/famas.svg new file mode 100644 index 0000000..831fcbb --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/famas.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/fiveseven.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/fiveseven.svg new file mode 100644 index 0000000..45c0c20 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/fiveseven.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/flashbang.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/flashbang.svg new file mode 100644 index 0000000..5cb9d65 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/flashbang.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/flashed_kill.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/flashed_kill.svg new file mode 100644 index 0000000..bb047a1 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/flashed_kill.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/g3sg1.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/g3sg1.svg new file mode 100644 index 0000000..537bc62 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/g3sg1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/galilar.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/galilar.svg new file mode 100644 index 0000000..6fbd495 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/galilar.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/glock.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/glock.svg new file mode 100644 index 0000000..ad9b29a --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/glock.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/headshot.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/headshot.svg new file mode 100644 index 0000000..d02d446 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/headshot.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/hegrenade.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/hegrenade.svg new file mode 100644 index 0000000..f4bc3ae --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/hegrenade.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/hkp2000.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/hkp2000.svg new file mode 100644 index 0000000..260660b --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/hkp2000.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/icon_defuse_default.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/icon_defuse_default.svg new file mode 100644 index 0000000..559464a --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/icon_defuse_default.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/iconscs2.c b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/iconscs2.c new file mode 100644 index 0000000..502f33e --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/iconscs2.c @@ -0,0 +1,4924 @@ +/* C:\Users\gusta\Desktop\trabalho\cs2\base\cstrike\icons\iconscs2.ttf (23/11/2023 12:01:36) + Endereço inicial(h): 00000000, Endereço final(h): 0000E693, Comprimento(h): 0000E694 */ + +unsigned char rawData[59028] = { + 0x00, 0x01, 0x00, 0x00, 0x00, 0x0D, 0x00, 0x80, 0x00, 0x03, 0x00, 0x50, + 0x46, 0x46, 0x54, 0x4D, 0xA2, 0xC1, 0x38, 0x41, 0x00, 0x00, 0xE6, 0x78, + 0x00, 0x00, 0x00, 0x1C, 0x47, 0x44, 0x45, 0x46, 0x00, 0x67, 0x00, 0x68, + 0x00, 0x00, 0xE6, 0x50, 0x00, 0x00, 0x00, 0x26, 0x4F, 0x53, 0x2F, 0x32, + 0x6A, 0xF3, 0x6C, 0x7A, 0x00, 0x00, 0x01, 0x58, 0x00, 0x00, 0x00, 0x60, + 0x63, 0x6D, 0x61, 0x70, 0x0D, 0xBE, 0x0E, 0xFA, 0x00, 0x00, 0x02, 0xC4, + 0x00, 0x00, 0x01, 0x74, 0x67, 0x61, 0x73, 0x70, 0xFF, 0xFF, 0x00, 0x03, + 0x00, 0x00, 0xE6, 0x48, 0x00, 0x00, 0x00, 0x08, 0x67, 0x6C, 0x79, 0x66, + 0x2E, 0x74, 0x93, 0xE6, 0x00, 0x00, 0x04, 0xC0, 0x00, 0x00, 0xDD, 0xDC, + 0x68, 0x65, 0x61, 0x64, 0x2F, 0x36, 0xB1, 0x8B, 0x00, 0x00, 0x00, 0xDC, + 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, 0x65, 0x61, 0x10, 0xEF, 0x0D, 0x9E, + 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0x24, 0x68, 0x6D, 0x74, 0x78, + 0xDC, 0x82, 0x13, 0x7D, 0x00, 0x00, 0x01, 0xB8, 0x00, 0x00, 0x01, 0x0C, + 0x6C, 0x6F, 0x63, 0x61, 0xAC, 0x2B, 0xDF, 0xCC, 0x00, 0x00, 0x04, 0x38, + 0x00, 0x00, 0x00, 0x88, 0x6D, 0x61, 0x78, 0x70, 0x00, 0x95, 0x02, 0xC0, + 0x00, 0x00, 0x01, 0x38, 0x00, 0x00, 0x00, 0x20, 0x6E, 0x61, 0x6D, 0x65, + 0x7D, 0xB6, 0xF9, 0x4C, 0x00, 0x00, 0xE2, 0x9C, 0x00, 0x00, 0x02, 0xFA, + 0x70, 0x6F, 0x73, 0x74, 0x54, 0xF9, 0xBC, 0x86, 0x00, 0x00, 0xE5, 0x98, + 0x00, 0x00, 0x00, 0xB0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0xE3, 0xD6, 0xC6, 0xFA, 0x5F, 0x0F, 0x3C, 0xF5, 0x00, 0x0B, 0x04, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xE1, 0x65, 0x7D, 0x83, 0x00, 0x00, 0x00, 0x00, + 0xE1, 0x84, 0xEF, 0x8C, 0x00, 0x00, 0xFF, 0xBF, 0x0D, 0x2D, 0x03, 0xC0, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x03, 0xC0, 0xFF, 0xC0, 0x00, 0x00, 0x0D, 0x9A, + 0x00, 0x00, 0x00, 0x00, 0x0D, 0x2D, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x43, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x43, 0x02, 0xBD, 0x00, 0x10, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x07, 0x4F, + 0x01, 0xF4, 0x00, 0x05, 0x00, 0x00, 0x02, 0x8A, 0x02, 0xBB, 0x00, 0x00, + 0x00, 0x8C, 0x02, 0x8A, 0x02, 0xBB, 0x00, 0x00, 0x01, 0xDF, 0x00, 0x31, + 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x58, 0x58, 0x58, 0x58, 0x00, 0x40, + 0x00, 0x20, 0xFF, 0xFD, 0x03, 0xC0, 0xFF, 0xC0, 0x00, 0x00, 0x03, 0xCB, + 0x00, 0x41, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0xC0, + 0x03, 0x5C, 0x00, 0x00, 0x00, 0x20, 0x00, 0x01, 0x01, 0xC9, 0x00, 0x14, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x55, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x08, 0xCD, 0x00, 0x53, 0x09, 0x4D, 0x00, 0x5D, 0x08, 0xCD, 0x00, 0x53, + 0x08, 0x66, 0x00, 0x53, 0x08, 0x4D, 0x00, 0x52, 0x09, 0x4D, 0x00, 0x52, + 0x08, 0xCD, 0x00, 0x51, 0x08, 0xCD, 0x00, 0x53, 0x08, 0xCD, 0x00, 0x50, + 0x08, 0xCD, 0x00, 0x54, 0x06, 0x80, 0x00, 0x5D, 0x0A, 0x00, 0x00, 0x4F, + 0x05, 0x4D, 0x00, 0x57, 0x05, 0xE6, 0x00, 0x4B, 0x05, 0x00, 0x00, 0x55, + 0x05, 0x00, 0x00, 0x59, 0x09, 0x66, 0x00, 0x53, 0x06, 0x66, 0x00, 0x65, + 0x05, 0x9A, 0x00, 0x5A, 0x07, 0x4D, 0x00, 0x5B, 0x05, 0x4D, 0x00, 0x5D, + 0x09, 0xB3, 0x00, 0x5B, 0x0A, 0x9A, 0x00, 0x5D, 0x06, 0x1A, 0x00, 0x60, + 0x08, 0x4D, 0x00, 0x4F, 0x08, 0x4D, 0x00, 0x62, 0x0C, 0x1A, 0x00, 0x60, + 0x09, 0x1A, 0x00, 0x5B, 0x0A, 0xB3, 0x00, 0x63, 0x0D, 0x9A, 0x00, 0x5B, + 0x09, 0x66, 0x00, 0x53, 0x0A, 0x80, 0x00, 0x54, 0x0B, 0x1A, 0x00, 0x56, + 0x0B, 0x4D, 0x00, 0x4D, 0x0B, 0x4D, 0x00, 0x4A, 0x0D, 0x9A, 0x00, 0x62, + 0x08, 0xCD, 0x00, 0x52, 0x08, 0xCD, 0x00, 0x52, 0x0C, 0x80, 0x00, 0x56, + 0x0A, 0xE6, 0x00, 0x62, 0x0A, 0x66, 0x00, 0x5E, 0x07, 0xE6, 0x00, 0x63, + 0x0B, 0x4D, 0x00, 0x60, 0x09, 0x66, 0x00, 0x55, 0x0A, 0x9A, 0x00, 0x53, + 0x05, 0x33, 0x00, 0x56, 0x02, 0x00, 0x00, 0x54, 0x02, 0xE6, 0x00, 0x58, + 0x02, 0x1A, 0x00, 0x54, 0x02, 0xCD, 0x00, 0x57, 0x03, 0x9A, 0x00, 0x61, + 0x02, 0x1A, 0x00, 0x51, 0x04, 0x00, 0x00, 0x5E, 0x03, 0x00, 0x00, 0x62, + 0x03, 0x00, 0x00, 0x66, 0x03, 0xE6, 0x00, 0x59, 0x04, 0x00, 0x00, 0x00, + 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, + 0x04, 0x29, 0x00, 0x16, 0x06, 0x84, 0x00, 0x10, 0x04, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1C, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6E, 0x00, 0x03, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x1C, 0x00, 0x04, 0x00, 0x52, 0x00, 0x00, 0x00, 0x10, + 0x00, 0x10, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x39, + 0x00, 0x5B, 0x00, 0x5D, 0x00, 0x78, 0xFF, 0xFD, 0xFF, 0xFF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x00, 0x30, 0x00, 0x41, 0x00, 0x5D, 0x00, 0x61, + 0xFF, 0xFD, 0xFF, 0xFF, 0x00, 0x00, 0xFF, 0xE3, 0xFF, 0xD4, 0xFF, 0xCD, + 0xFF, 0xCC, 0xFF, 0xC9, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x42, 0x00, 0x00, 0x01, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x05, 0x06, 0x07, + 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x0E, 0x0F, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, + 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F, 0x20, 0x21, 0x22, 0x23, 0x24, + 0x25, 0x26, 0x27, 0x28, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2A, 0x2B, 0x2C, + 0x2D, 0x2E, 0x2F, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, + 0x39, 0x3A, 0x3B, 0x3C, 0x3D, 0x3E, 0x3F, 0x40, 0x41, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x16, 0x00, 0x16, 0x00, 0x16, 0x00, 0x1E, 0x01, 0xAC, + 0x03, 0x26, 0x05, 0x06, 0x06, 0xD0, 0x08, 0x92, 0x0B, 0x0C, 0x0D, 0xD8, + 0x10, 0x68, 0x13, 0x44, 0x16, 0x60, 0x17, 0xE2, 0x1A, 0x48, 0x1B, 0x74, + 0x1C, 0x84, 0x1D, 0xDE, 0x1F, 0xCA, 0x20, 0xA8, 0x23, 0x4C, 0x25, 0x5C, + 0x27, 0x66, 0x28, 0xFA, 0x2C, 0x74, 0x2F, 0x04, 0x31, 0x00, 0x32, 0xEC, + 0x35, 0x0A, 0x37, 0x72, 0x38, 0xFC, 0x3B, 0x62, 0x3C, 0xF6, 0x3E, 0xDC, + 0x42, 0x54, 0x43, 0x50, 0x46, 0x4E, 0x4A, 0x0A, 0x4B, 0x10, 0x4C, 0x4C, + 0x4E, 0x48, 0x50, 0xEA, 0x53, 0x2E, 0x54, 0x6A, 0x56, 0x2A, 0x58, 0x64, + 0x5B, 0x6C, 0x5E, 0x1A, 0x5F, 0x32, 0x5F, 0x94, 0x60, 0xCA, 0x61, 0xFC, + 0x62, 0xD2, 0x63, 0x80, 0x64, 0xB4, 0x66, 0x4A, 0x67, 0x70, 0x68, 0x38, + 0x6A, 0x2A, 0x6A, 0x8E, 0x6B, 0x48, 0x6B, 0x82, 0x6C, 0x5E, 0x6D, 0x66, + 0x6E, 0xEE, 0x6E, 0xEE, 0x00, 0x02, 0x00, 0x14, 0x00, 0x00, 0x01, 0xB5, + 0x02, 0xA3, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x13, 0x21, 0x11, 0x21, + 0x37, 0x21, 0x11, 0x21, 0x14, 0x01, 0xA1, 0xFE, 0x5F, 0x30, 0x01, 0x40, + 0xFE, 0xC0, 0x02, 0xA3, 0xFD, 0x5D, 0x30, 0x02, 0x43, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x31, 0x00, 0x00, 0x01, 0x00, 0x53, 0x00, 0xDB, 0x08, 0x53, + 0x02, 0xA5, 0x01, 0x18, 0x00, 0x00, 0x01, 0x36, 0x37, 0x3E, 0x01, 0x33, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x23, 0x22, + 0x07, 0x22, 0x27, 0x23, 0x26, 0x23, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x07, 0x06, 0x27, 0x2B, 0x01, + 0x22, 0x27, 0x26, 0x27, 0x26, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x26, + 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x0F, 0x01, + 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x22, 0x26, 0x22, 0x26, 0x23, 0x26, + 0x27, 0x26, 0x07, 0x22, 0x06, 0x23, 0x06, 0x07, 0x06, 0x07, 0x06, 0x23, + 0x26, 0x27, 0x26, 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x22, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, + 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x07, 0x06, 0x0F, 0x01, 0x06, 0x07, 0x06, 0x27, 0x26, 0x37, 0x35, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x1F, 0x01, 0x16, 0x3B, 0x01, 0x16, 0x33, 0x1E, 0x01, 0x33, 0x32, 0x16, + 0x33, 0x32, 0x36, 0x3B, 0x02, 0x32, 0x37, 0x32, 0x1F, 0x01, 0x1E, 0x01, + 0x33, 0x32, 0x16, 0x33, 0x16, 0x17, 0x16, 0x33, 0x32, 0x16, 0x3B, 0x02, + 0x16, 0x17, 0x1E, 0x01, 0x15, 0x16, 0x37, 0x3D, 0x01, 0x34, 0x26, 0x35, + 0x3B, 0x02, 0x32, 0x15, 0x14, 0x2B, 0x03, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x37, 0x36, 0x33, 0x32, 0x37, 0x33, 0x37, 0x32, 0x36, 0x37, 0x32, 0x37, + 0x36, 0x1F, 0x01, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, 0x07, 0xF4, 0x10, 0x20, 0x08, 0x20, + 0x07, 0x02, 0x03, 0x05, 0x02, 0x06, 0x05, 0x08, 0x03, 0x13, 0x0A, 0x12, + 0x0F, 0x0D, 0x30, 0x04, 0x1F, 0x26, 0x32, 0x3A, 0x37, 0x38, 0x16, 0x18, + 0x1E, 0x0F, 0x0F, 0x07, 0x17, 0x07, 0x0E, 0x07, 0x0E, 0x09, 0x27, 0x0A, + 0x0A, 0x26, 0x0A, 0x22, 0x0C, 0x20, 0x0F, 0x18, 0x19, 0x23, 0x11, 0x07, + 0x08, 0x02, 0x01, 0x01, 0x02, 0x02, 0x05, 0x04, 0x06, 0x04, 0x11, 0x05, + 0x04, 0x12, 0x05, 0x06, 0x1B, 0x14, 0x0E, 0x06, 0x05, 0x02, 0x05, 0x0E, + 0x15, 0x16, 0x2E, 0x11, 0x11, 0x0F, 0x0B, 0x01, 0x06, 0x03, 0x04, 0x05, + 0x02, 0x09, 0x0D, 0x0D, 0x13, 0x06, 0x03, 0x0D, 0x08, 0x0E, 0x03, 0x10, + 0x22, 0x1B, 0x17, 0x04, 0x10, 0x04, 0x09, 0x10, 0x04, 0x14, 0x0C, 0x0C, + 0x0B, 0x0C, 0x08, 0x0E, 0x10, 0x11, 0x13, 0x07, 0x08, 0x05, 0x05, 0x07, + 0x03, 0x02, 0x03, 0x06, 0x02, 0x0A, 0x03, 0x09, 0x05, 0x0F, 0x07, 0x0B, + 0x10, 0x16, 0x10, 0x0E, 0x12, 0x0F, 0x1A, 0x0B, 0x1D, 0x02, 0x0C, 0x02, + 0x0C, 0x06, 0x04, 0x07, 0x0C, 0x04, 0x04, 0x04, 0x04, 0x08, 0x01, 0x02, + 0x08, 0x09, 0x0C, 0x1B, 0x31, 0x33, 0x35, 0x2F, 0x2E, 0x39, 0x29, 0x07, + 0x1E, 0x07, 0x16, 0x17, 0x2D, 0x14, 0x2D, 0x14, 0x0A, 0x06, 0x09, 0x07, + 0x09, 0x06, 0x02, 0x0F, 0x05, 0x09, 0x09, 0x23, 0x09, 0x08, 0x24, 0x08, + 0x03, 0x04, 0x02, 0x0B, 0x0B, 0x09, 0x05, 0x09, 0x05, 0x2A, 0x07, 0x1B, + 0x06, 0x0A, 0x26, 0x0A, 0x26, 0x13, 0x06, 0x0D, 0x03, 0x0C, 0x03, 0x03, + 0x03, 0x07, 0x03, 0x01, 0x04, 0x01, 0x01, 0x02, 0x22, 0x21, 0x0C, 0x03, + 0x01, 0x06, 0x08, 0x09, 0x01, 0x07, 0x05, 0x07, 0x04, 0x05, 0x03, 0x05, + 0x17, 0x0B, 0x21, 0x30, 0x07, 0x20, 0x07, 0x08, 0x0B, 0x0A, 0x09, 0x1E, + 0x03, 0x14, 0x06, 0x1D, 0x2C, 0x23, 0x27, 0x40, 0x21, 0x40, 0x21, 0x27, + 0x1F, 0x2E, 0x18, 0x02, 0x27, 0x01, 0x04, 0x01, 0x03, 0x06, 0x02, 0x05, + 0x03, 0x05, 0x06, 0x08, 0x04, 0x13, 0x09, 0x0F, 0x08, 0x08, 0x1B, 0x02, + 0x12, 0x0D, 0x10, 0x06, 0x08, 0x04, 0x03, 0x01, 0x01, 0x01, 0x01, 0x02, + 0x01, 0x08, 0x01, 0x02, 0x06, 0x01, 0x07, 0x03, 0x08, 0x03, 0x06, 0x01, + 0x02, 0x01, 0x04, 0x02, 0x02, 0x04, 0x05, 0x03, 0x02, 0x01, 0x08, 0x01, + 0x02, 0x07, 0x01, 0x02, 0x0B, 0x08, 0x01, 0x01, 0x0E, 0x05, 0x0C, 0x01, + 0x23, 0x29, 0x28, 0x04, 0x01, 0x05, 0x04, 0x11, 0x01, 0x09, 0x04, 0x08, + 0x0A, 0x03, 0x02, 0x01, 0x04, 0x04, 0x01, 0x04, 0x02, 0x01, 0x04, 0x03, + 0x04, 0x04, 0x01, 0x04, 0x01, 0x04, 0x04, 0x02, 0x04, 0x03, 0x06, 0x05, + 0x0C, 0x0E, 0x0A, 0x09, 0x10, 0x0F, 0x0B, 0x05, 0x05, 0x07, 0x01, 0x01, + 0x01, 0x02, 0x07, 0x0F, 0x09, 0x0D, 0x01, 0x01, 0x0A, 0x09, 0x10, 0x0F, + 0x1E, 0x0E, 0x21, 0x04, 0x0D, 0x03, 0x0E, 0x05, 0x03, 0x07, 0x09, 0x04, + 0x02, 0x01, 0x07, 0x11, 0x10, 0x21, 0x20, 0x1A, 0x1C, 0x1A, 0x3B, 0x2B, + 0x2D, 0x1E, 0x1B, 0x0D, 0x10, 0x07, 0x01, 0x06, 0x02, 0x05, 0x01, 0x04, + 0x03, 0x04, 0x03, 0x02, 0x01, 0x01, 0x01, 0x03, 0x02, 0x01, 0x01, 0x01, + 0x02, 0x04, 0x01, 0x01, 0x03, 0x01, 0x02, 0x04, 0x04, 0x01, 0x01, 0x02, + 0x01, 0x06, 0x02, 0x07, 0x02, 0x01, 0x03, 0x04, 0x05, 0x01, 0x02, 0x01, + 0x08, 0x05, 0x02, 0x0C, 0x08, 0x03, 0x01, 0x01, 0x01, 0x01, 0x03, 0x02, + 0x01, 0x03, 0x03, 0x03, 0x09, 0x01, 0x07, 0x02, 0x0A, 0x0C, 0x0A, 0x03, + 0x06, 0x03, 0x06, 0x03, 0x03, 0x01, 0x02, 0x01, 0x00, 0x02, 0x00, 0x5D, + 0x00, 0xD7, 0x08, 0xDE, 0x02, 0xAA, 0x01, 0x27, 0x01, 0x3E, 0x00, 0x00, + 0x01, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x2B, + 0x02, 0x22, 0x27, 0x23, 0x22, 0x27, 0x22, 0x27, 0x2B, 0x04, 0x22, 0x06, + 0x2B, 0x03, 0x22, 0x3D, 0x04, 0x34, 0x23, 0x06, 0x2B, 0x01, 0x22, 0x1D, + 0x04, 0x14, 0x17, 0x16, 0x2B, 0x04, 0x22, 0x07, 0x06, 0x07, 0x06, 0x27, + 0x26, 0x27, 0x26, 0x35, 0x2B, 0x04, 0x22, 0x07, 0x06, 0x27, 0x26, 0x27, + 0x26, 0x2B, 0x06, 0x07, 0x06, 0x33, 0x0E, 0x01, 0x07, 0x06, 0x23, 0x06, + 0x27, 0x26, 0x2B, 0x03, 0x22, 0x27, 0x22, 0x07, 0x06, 0x15, 0x06, 0x07, + 0x06, 0x23, 0x27, 0x22, 0x26, 0x23, 0x26, 0x27, 0x26, 0x2B, 0x04, 0x22, + 0x07, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x06, 0x27, 0x26, 0x23, 0x06, 0x23, + 0x06, 0x27, 0x26, 0x27, 0x26, 0x07, 0x06, 0x2B, 0x01, 0x22, 0x27, 0x22, + 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, 0x07, 0x1D, 0x03, 0x14, 0x17, 0x16, + 0x1F, 0x01, 0x1E, 0x01, 0x17, 0x16, 0x3B, 0x07, 0x16, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x33, 0x16, 0x33, 0x32, 0x37, 0x36, 0x37, 0x36, 0x33, + 0x32, 0x17, 0x16, 0x14, 0x3B, 0x02, 0x32, 0x3F, 0x01, 0x3E, 0x01, 0x37, + 0x36, 0x17, 0x16, 0x3B, 0x02, 0x32, 0x37, 0x36, 0x1F, 0x01, 0x16, 0x17, + 0x16, 0x3B, 0x04, 0x32, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, + 0x37, 0x3B, 0x02, 0x32, 0x17, 0x16, 0x37, 0x36, 0x33, 0x32, 0x17, 0x16, + 0x33, 0x16, 0x3B, 0x04, 0x32, 0x1D, 0x05, 0x14, 0x33, 0x16, 0x3B, 0x02, + 0x3D, 0x03, 0x34, 0x37, 0x3B, 0x04, 0x36, 0x3B, 0x03, 0x32, 0x37, 0x33, + 0x32, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x25, + 0x16, 0x17, 0x16, 0x07, 0x14, 0x07, 0x06, 0x2B, 0x02, 0x22, 0x27, 0x26, + 0x35, 0x34, 0x37, 0x36, 0x3B, 0x02, 0x32, 0x36, 0x08, 0xDE, 0x50, 0x1D, + 0x25, 0x48, 0x25, 0x48, 0x14, 0x48, 0x11, 0x05, 0x09, 0x0D, 0x2C, 0x1D, + 0x0F, 0x90, 0x60, 0x30, 0x5E, 0x2F, 0x8D, 0x29, 0x29, 0x09, 0x08, 0x05, + 0x0E, 0x06, 0x21, 0x20, 0x0F, 0x03, 0x07, 0x05, 0x04, 0x09, 0x08, 0x01, + 0x01, 0x07, 0x23, 0x22, 0x0C, 0x0D, 0x05, 0x02, 0x01, 0x07, 0x05, 0x05, + 0x05, 0x03, 0x02, 0x03, 0x10, 0x10, 0x10, 0x10, 0x06, 0x05, 0x05, 0x07, + 0x05, 0x04, 0x04, 0x03, 0x0F, 0x0F, 0x11, 0x11, 0x03, 0x04, 0x02, 0x02, + 0x01, 0x01, 0x04, 0x01, 0x06, 0x01, 0x08, 0x03, 0x05, 0x07, 0x12, 0x11, + 0x0D, 0x09, 0x04, 0x01, 0x02, 0x01, 0x02, 0x04, 0x06, 0x01, 0x06, 0x01, + 0x04, 0x01, 0x02, 0x01, 0x02, 0x01, 0x0D, 0x0D, 0x11, 0x12, 0x08, 0x01, + 0x02, 0x06, 0x02, 0x08, 0x01, 0x06, 0x04, 0x05, 0x06, 0x05, 0x09, 0x0F, + 0x0B, 0x08, 0x12, 0x08, 0x09, 0x07, 0x0B, 0x40, 0x2B, 0x15, 0x0A, 0x08, + 0x09, 0x01, 0x03, 0x01, 0x02, 0x02, 0x04, 0x04, 0x02, 0x01, 0x01, 0x02, + 0x01, 0x03, 0x02, 0x06, 0x07, 0x21, 0x20, 0x25, 0x24, 0x11, 0x07, 0x08, + 0x08, 0x05, 0x05, 0x08, 0x05, 0x0A, 0x05, 0x09, 0x08, 0x02, 0x03, 0x06, + 0x03, 0x05, 0x04, 0x04, 0x02, 0x03, 0x21, 0x20, 0x07, 0x02, 0x01, 0x01, + 0x03, 0x02, 0x0B, 0x04, 0x04, 0x07, 0x20, 0x21, 0x06, 0x04, 0x05, 0x08, + 0x02, 0x02, 0x01, 0x03, 0x01, 0x05, 0x05, 0x1F, 0x1F, 0x01, 0x03, 0x01, + 0x02, 0x07, 0x06, 0x05, 0x05, 0x04, 0x06, 0x0A, 0x13, 0x12, 0x06, 0x05, + 0x08, 0x02, 0x04, 0x09, 0x07, 0x07, 0x06, 0x02, 0x01, 0x07, 0x24, 0x23, + 0x0A, 0x09, 0x01, 0x01, 0x01, 0x06, 0x0D, 0x0B, 0x01, 0x04, 0x0A, 0x0B, + 0x29, 0x29, 0x2E, 0x5C, 0x88, 0x80, 0x7F, 0x55, 0x2B, 0x7F, 0x22, 0x22, + 0x20, 0x23, 0x2F, 0x33, 0x31, 0x2D, 0x1E, 0x1B, 0x19, 0xFE, 0xDB, 0x07, + 0x03, 0x03, 0x02, 0x01, 0x02, 0x05, 0x18, 0x18, 0x05, 0x05, 0x05, 0x04, + 0x04, 0x05, 0x0E, 0x0E, 0x06, 0x08, 0x01, 0xC4, 0x0D, 0x04, 0x05, 0x0C, + 0x05, 0x0C, 0x03, 0x0B, 0x02, 0x01, 0x01, 0x01, 0x01, 0x0A, 0x0C, 0x44, + 0x44, 0x09, 0x09, 0x03, 0x01, 0x02, 0x08, 0x09, 0x45, 0x46, 0x08, 0x05, + 0x07, 0x05, 0x04, 0x02, 0x01, 0x03, 0x02, 0x04, 0x02, 0x01, 0x05, 0x06, + 0x01, 0x01, 0x05, 0x04, 0x02, 0x02, 0x01, 0x02, 0x01, 0x02, 0x02, 0x07, + 0x05, 0x01, 0x02, 0x01, 0x02, 0x01, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, + 0x02, 0x01, 0x02, 0x03, 0x01, 0x03, 0x02, 0x06, 0x05, 0x01, 0x02, 0x05, + 0x02, 0x06, 0x03, 0x01, 0x01, 0x01, 0x08, 0x09, 0x08, 0x0F, 0x0C, 0x0D, + 0x0E, 0x18, 0x18, 0x0D, 0x0D, 0x06, 0x05, 0x07, 0x05, 0x01, 0x02, 0x04, + 0x02, 0x08, 0x01, 0x03, 0x04, 0x03, 0x02, 0x02, 0x01, 0x01, 0x01, 0x02, + 0x01, 0x01, 0x04, 0x02, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x06, 0x06, + 0x07, 0x06, 0x05, 0x03, 0x02, 0x01, 0x01, 0x04, 0x03, 0x02, 0x02, 0x03, + 0x01, 0x01, 0x05, 0x04, 0x01, 0x01, 0x02, 0x04, 0x07, 0x03, 0x03, 0x01, + 0x05, 0x07, 0x24, 0x24, 0x0E, 0x0E, 0x05, 0x01, 0x0C, 0x0B, 0x22, 0x22, + 0x05, 0x01, 0x01, 0x01, 0x03, 0x01, 0x05, 0x04, 0x0D, 0x0C, 0x16, 0x0E, + 0x15, 0x13, 0x20, 0x04, 0x06, 0x05, 0x09, 0x05, 0x05, 0x09, 0x09, 0x08, + 0x05, 0x04, 0x09, 0x09, 0x02, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x53, + 0x01, 0x00, 0x08, 0x53, 0x02, 0x7F, 0x01, 0x45, 0x01, 0x53, 0x00, 0x00, + 0x01, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x27, 0x22, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x27, 0x26, 0x07, 0x0E, 0x01, 0x0F, 0x01, 0x06, 0x27, 0x23, 0x16, 0x15, + 0x06, 0x15, 0x26, 0x23, 0x22, 0x35, 0x26, 0x23, 0x1D, 0x01, 0x26, 0x23, + 0x22, 0x34, 0x22, 0x35, 0x15, 0x14, 0x0F, 0x01, 0x26, 0x27, 0x22, 0x07, + 0x22, 0x27, 0x26, 0x07, 0x06, 0x27, 0x22, 0x27, 0x14, 0x06, 0x15, 0x26, + 0x07, 0x06, 0x27, 0x26, 0x23, 0x22, 0x07, 0x27, 0x26, 0x35, 0x26, 0x23, + 0x22, 0x35, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x23, + 0x06, 0x2B, 0x02, 0x06, 0x23, 0x22, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x06, + 0x07, 0x06, 0x0F, 0x01, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x14, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x17, 0x14, 0x16, 0x17, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x3F, 0x01, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x32, 0x37, 0x32, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x32, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x37, 0x32, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x1F, 0x01, 0x1E, 0x01, + 0x17, 0x1E, 0x02, 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x3F, 0x02, 0x1E, + 0x01, 0x17, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3B, 0x02, 0x32, 0x37, + 0x36, 0x37, 0x36, 0x17, 0x16, 0x17, 0x32, 0x16, 0x33, 0x16, 0x37, 0x36, + 0x37, 0x36, 0x17, 0x32, 0x17, 0x16, 0x35, 0x32, 0x36, 0x37, 0x36, 0x37, + 0x32, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x3E, 0x01, 0x3F, 0x01, 0x36, + 0x17, 0x16, 0x17, 0x32, 0x17, 0x16, 0x33, 0x32, 0x37, 0x36, 0x37, 0x36, + 0x33, 0x16, 0x17, 0x32, 0x17, 0x1E, 0x01, 0x33, 0x16, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x17, 0x16, 0x33, 0x32, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x33, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, 0x0E, 0x01, 0x07, 0x06, 0x05, 0x35, + 0x34, 0x3B, 0x04, 0x06, 0x17, 0x14, 0x17, 0x23, 0x22, 0x07, 0xEA, 0x17, + 0x47, 0x30, 0x30, 0x0A, 0x29, 0x0B, 0x0A, 0x28, 0x0B, 0x33, 0x2B, 0x3D, + 0x21, 0x41, 0x20, 0x36, 0x2C, 0x30, 0x31, 0x40, 0x20, 0x06, 0x05, 0x08, + 0x03, 0x04, 0x04, 0x02, 0x02, 0x04, 0x02, 0x06, 0x01, 0x01, 0x01, 0x01, + 0x02, 0x01, 0x04, 0x01, 0x01, 0x02, 0x04, 0x01, 0x01, 0x05, 0x02, 0x02, + 0x03, 0x02, 0x01, 0x03, 0x01, 0x03, 0x01, 0x01, 0x05, 0x02, 0x04, 0x03, + 0x03, 0x01, 0x04, 0x02, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, 0x02, 0x05, + 0x02, 0x06, 0x05, 0x0A, 0x0D, 0x09, 0x10, 0x07, 0x0F, 0x07, 0x10, 0x3D, + 0x3E, 0x1D, 0x39, 0x2A, 0x2C, 0x0B, 0x28, 0x0A, 0x0B, 0x29, 0x0A, 0x18, + 0x18, 0x30, 0x1B, 0x11, 0x08, 0x1D, 0x07, 0x14, 0x26, 0x1C, 0x19, 0x1C, + 0x10, 0x19, 0x0D, 0x02, 0x09, 0x03, 0x08, 0x01, 0x0E, 0x05, 0x0E, 0x02, + 0x03, 0x02, 0x01, 0x01, 0x02, 0x05, 0x01, 0x08, 0x01, 0x0B, 0x0A, 0x0C, + 0x08, 0x05, 0x0A, 0x05, 0x0A, 0x0A, 0x07, 0x0F, 0x14, 0x1D, 0x1B, 0x1C, + 0x13, 0x0D, 0x05, 0x16, 0x05, 0x1E, 0x26, 0x26, 0x1C, 0x07, 0x0C, 0x09, + 0x0B, 0x06, 0x05, 0x08, 0x03, 0x0F, 0x18, 0x13, 0x18, 0x0A, 0x12, 0x06, + 0x14, 0x05, 0x0C, 0x08, 0x09, 0x06, 0x04, 0x03, 0x06, 0x0B, 0x0D, 0x0C, + 0x0D, 0x15, 0x12, 0x11, 0x0F, 0x0E, 0x02, 0x08, 0x01, 0x02, 0x05, 0x04, + 0x01, 0x04, 0x0D, 0x08, 0x08, 0x05, 0x07, 0x10, 0x10, 0x01, 0x02, 0x01, + 0x01, 0x01, 0x01, 0x02, 0x02, 0x07, 0x20, 0x1E, 0x05, 0x05, 0x05, 0x05, + 0x06, 0x09, 0x0B, 0x03, 0x02, 0x06, 0x01, 0x04, 0x04, 0x0A, 0x07, 0x08, + 0x09, 0x03, 0x08, 0x08, 0x01, 0x08, 0x02, 0x04, 0x08, 0x06, 0x05, 0x03, + 0x07, 0x02, 0x03, 0x03, 0x04, 0x05, 0x01, 0x08, 0x08, 0x06, 0x04, 0x0A, + 0x02, 0x02, 0x02, 0x02, 0x04, 0x04, 0x03, 0x04, 0x0A, 0x06, 0x0A, 0x07, + 0x03, 0x02, 0x01, 0x02, 0x01, 0x03, 0x06, 0x02, 0x0A, 0x0A, 0x0A, 0x0B, + 0x08, 0x04, 0x01, 0x0C, 0x05, 0x11, 0x04, 0x05, 0x10, 0x05, 0x30, 0x3C, + 0x38, 0x31, 0x3A, 0x37, 0x38, 0x31, 0x1F, 0x24, 0x0A, 0x2C, 0x0A, 0x10, + 0x08, 0x10, 0x07, 0x09, 0x22, 0x09, 0x11, 0xFB, 0x42, 0x01, 0x0A, 0x09, + 0x16, 0x16, 0x01, 0x01, 0x01, 0x20, 0x16, 0x02, 0x62, 0x07, 0x12, 0x0C, + 0x06, 0x02, 0x05, 0x01, 0x01, 0x05, 0x02, 0x07, 0x01, 0x04, 0x01, 0x02, + 0x01, 0x04, 0x04, 0x08, 0x0A, 0x07, 0x02, 0x02, 0x03, 0x01, 0x02, 0x04, + 0x02, 0x01, 0x02, 0x01, 0x01, 0x02, 0x01, 0x03, 0x01, 0x01, 0x01, 0x04, + 0x05, 0x01, 0x02, 0x01, 0x03, 0x01, 0x01, 0x02, 0x01, 0x02, 0x06, 0x03, + 0x01, 0x01, 0x04, 0x01, 0x03, 0x02, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, + 0x03, 0x05, 0x02, 0x01, 0x01, 0x01, 0x01, 0x08, 0x02, 0x03, 0x03, 0x06, + 0x03, 0x02, 0x02, 0x01, 0x01, 0x01, 0x03, 0x01, 0x03, 0x02, 0x01, 0x01, + 0x05, 0x09, 0x06, 0x05, 0x02, 0x09, 0x03, 0x07, 0x0E, 0x0C, 0x13, 0x17, + 0x11, 0x1B, 0x14, 0x04, 0x0E, 0x03, 0x0B, 0x0D, 0x0B, 0x08, 0x03, 0x07, + 0x01, 0x01, 0x08, 0x02, 0x08, 0x02, 0x06, 0x01, 0x01, 0x02, 0x01, 0x04, + 0x01, 0x02, 0x03, 0x01, 0x04, 0x01, 0x04, 0x03, 0x06, 0x0C, 0x10, 0x13, + 0x10, 0x07, 0x04, 0x01, 0x01, 0x01, 0x05, 0x07, 0x09, 0x02, 0x04, 0x05, + 0x02, 0x02, 0x05, 0x06, 0x02, 0x0B, 0x08, 0x06, 0x02, 0x02, 0x01, 0x07, + 0x02, 0x06, 0x06, 0x01, 0x04, 0x03, 0x04, 0x07, 0x05, 0x05, 0x01, 0x03, + 0x05, 0x06, 0x0F, 0x0E, 0x03, 0x0B, 0x02, 0x03, 0x06, 0x06, 0x01, 0x06, + 0x01, 0x01, 0x02, 0x02, 0x07, 0x10, 0x10, 0x02, 0x08, 0x02, 0x02, 0x09, + 0x02, 0x03, 0x03, 0x01, 0x05, 0x06, 0x01, 0x04, 0x02, 0x04, 0x01, 0x04, + 0x02, 0x01, 0x07, 0x01, 0x02, 0x03, 0x04, 0x05, 0x02, 0x05, 0x02, 0x03, + 0x02, 0x01, 0x01, 0x03, 0x02, 0x01, 0x03, 0x02, 0x04, 0x01, 0x04, 0x03, + 0x01, 0x01, 0x02, 0x02, 0x03, 0x04, 0x03, 0x02, 0x05, 0x02, 0x01, 0x01, + 0x01, 0x02, 0x02, 0x06, 0x01, 0x08, 0x03, 0x03, 0x09, 0x05, 0x02, 0x01, + 0x02, 0x01, 0x01, 0x03, 0x07, 0x0D, 0x0D, 0x12, 0x14, 0x1C, 0x1C, 0x23, + 0x14, 0x1C, 0x09, 0x22, 0x08, 0x0C, 0x07, 0x0C, 0x06, 0x02, 0x09, 0x03, + 0x05, 0x8C, 0x09, 0x07, 0x04, 0x03, 0x05, 0x03, 0x00, 0x02, 0x00, 0x53, + 0x01, 0x08, 0x07, 0xED, 0x02, 0x78, 0x01, 0x2C, 0x01, 0x3C, 0x00, 0x00, + 0x01, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x02, 0x23, 0x22, 0x07, 0x06, 0x17, + 0x16, 0x1F, 0x01, 0x1E, 0x01, 0x17, 0x32, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, 0x07, 0x06, 0x22, 0x06, + 0x22, 0x06, 0x27, 0x2E, 0x01, 0x23, 0x2E, 0x03, 0x2F, 0x01, 0x26, 0x27, + 0x26, 0x27, 0x26, 0x27, 0x22, 0x26, 0x22, 0x26, 0x23, 0x22, 0x07, 0x06, + 0x27, 0x2E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x06, 0x27, 0x26, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x27, 0x2E, 0x02, 0x27, 0x26, 0x06, 0x27, 0x26, 0x22, + 0x07, 0x06, 0x27, 0x2E, 0x01, 0x23, 0x26, 0x07, 0x06, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x07, 0x06, 0x27, 0x22, 0x2E, 0x01, 0x27, 0x26, 0x07, 0x06, + 0x07, 0x06, 0x27, 0x26, 0x0F, 0x01, 0x06, 0x27, 0x26, 0x23, 0x22, 0x06, + 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x23, 0x06, 0x2B, 0x02, 0x22, 0x07, + 0x22, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x23, 0x06, 0x07, 0x06, 0x23, 0x22, 0x27, 0x16, + 0x06, 0x27, 0x26, 0x07, 0x06, 0x07, 0x0E, 0x02, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x07, 0x0E, 0x01, 0x15, 0x06, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x37, 0x32, 0x36, 0x37, 0x32, 0x36, 0x37, 0x36, 0x3F, 0x01, 0x36, 0x37, + 0x36, 0x37, 0x3E, 0x01, 0x32, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x37, 0x32, 0x37, 0x33, 0x32, 0x37, 0x36, 0x17, + 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x32, 0x16, 0x32, 0x17, 0x16, 0x17, + 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x14, 0x16, 0x17, 0x14, + 0x17, 0x16, 0x33, 0x16, 0x3F, 0x01, 0x36, 0x37, 0x36, 0x17, 0x16, 0x17, + 0x16, 0x15, 0x14, 0x37, 0x3B, 0x03, 0x32, 0x37, 0x32, 0x36, 0x33, 0x32, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x26, 0x27, 0x2E, 0x01, 0x05, 0x16, 0x17, 0x16, 0x07, 0x06, 0x07, + 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, 0x07, 0xBA, 0x49, + 0x34, 0x56, 0x2B, 0x04, 0x07, 0x08, 0x01, 0x08, 0x0B, 0x06, 0x08, 0x03, + 0x04, 0x04, 0x02, 0x08, 0x02, 0x01, 0x08, 0x02, 0x10, 0x08, 0x0B, 0x0B, + 0x04, 0x06, 0x03, 0x01, 0x01, 0x01, 0x02, 0x09, 0x02, 0x0A, 0x06, 0x08, + 0x06, 0x06, 0x02, 0x07, 0x01, 0x05, 0x10, 0x0A, 0x11, 0x04, 0x51, 0x25, + 0x2D, 0x27, 0x11, 0x13, 0x26, 0x03, 0x0F, 0x08, 0x10, 0x04, 0x05, 0x04, + 0x05, 0x04, 0x06, 0x04, 0x09, 0x03, 0x07, 0x01, 0x02, 0x08, 0x09, 0x03, + 0x02, 0x08, 0x02, 0x06, 0x04, 0x01, 0x03, 0x03, 0x01, 0x02, 0x0C, 0x05, + 0x07, 0x06, 0x08, 0x07, 0x04, 0x02, 0x08, 0x01, 0x03, 0x05, 0x04, 0x05, + 0x03, 0x07, 0x01, 0x04, 0x08, 0x08, 0x02, 0x01, 0x02, 0x05, 0x02, 0x05, + 0x06, 0x06, 0x05, 0x02, 0x05, 0x06, 0x02, 0x0A, 0x03, 0x07, 0x08, 0x02, + 0x01, 0x08, 0x03, 0x08, 0x02, 0x02, 0x07, 0x01, 0x04, 0x03, 0x03, 0x0E, + 0x0E, 0x41, 0x20, 0x10, 0x41, 0x11, 0x27, 0x4E, 0x3B, 0x3B, 0x28, 0x50, + 0x3E, 0x39, 0x13, 0x06, 0x13, 0x07, 0x03, 0x09, 0x09, 0x03, 0x07, 0x04, + 0x03, 0x0B, 0x01, 0x07, 0x08, 0x0D, 0x0B, 0x0D, 0x07, 0x02, 0x05, 0x05, + 0x01, 0x04, 0x13, 0x04, 0x0E, 0x0C, 0x06, 0x06, 0x01, 0x08, 0x08, 0x11, + 0x0B, 0x08, 0x09, 0x0C, 0x02, 0x08, 0x03, 0x02, 0x08, 0x02, 0x17, 0x17, + 0x2D, 0x08, 0x0E, 0x09, 0x0C, 0x04, 0x10, 0x06, 0x10, 0x03, 0x0F, 0x20, + 0x07, 0x1F, 0x08, 0x13, 0x4B, 0x12, 0x48, 0x28, 0x0E, 0x07, 0x14, 0x08, + 0x06, 0x08, 0x04, 0x12, 0x07, 0x0C, 0x11, 0x04, 0x08, 0x01, 0x09, 0x03, + 0x0E, 0x04, 0x0B, 0x0B, 0x15, 0x13, 0x16, 0x14, 0x03, 0x0A, 0x04, 0x09, + 0x03, 0x0D, 0x0B, 0x08, 0x0E, 0x15, 0x0A, 0x0C, 0x04, 0x01, 0x02, 0x01, + 0x01, 0x05, 0x03, 0x02, 0x04, 0x01, 0x04, 0x02, 0x07, 0x05, 0x03, 0x07, + 0x01, 0x02, 0x0F, 0x12, 0x25, 0x25, 0x23, 0x18, 0x0C, 0x13, 0x4E, 0x14, + 0x34, 0x41, 0x38, 0x1D, 0x2A, 0x2A, 0x2D, 0x25, 0x2C, 0x22, 0x34, 0x26, + 0x1D, 0x33, 0x09, 0x10, 0x05, 0x10, 0xF8, 0xD8, 0x06, 0x04, 0x02, 0x04, + 0x03, 0x0A, 0x0B, 0x08, 0x0D, 0x05, 0x06, 0x03, 0x05, 0x16, 0x15, 0x01, + 0xFF, 0x1E, 0x10, 0x1A, 0x0B, 0x01, 0x01, 0x02, 0x08, 0x05, 0x03, 0x02, + 0x02, 0x01, 0x01, 0x02, 0x01, 0x03, 0x01, 0x08, 0x03, 0x05, 0x0A, 0x03, + 0x04, 0x02, 0x08, 0x07, 0x0A, 0x0B, 0x01, 0x01, 0x02, 0x02, 0x02, 0x01, + 0x03, 0x02, 0x06, 0x02, 0x05, 0x02, 0x1B, 0x0C, 0x0C, 0x0A, 0x03, 0x03, + 0x08, 0x04, 0x04, 0x04, 0x05, 0x01, 0x01, 0x0E, 0x05, 0x01, 0x03, 0x01, + 0x06, 0x05, 0x01, 0x01, 0x03, 0x01, 0x01, 0x04, 0x01, 0x04, 0x02, 0x01, + 0x03, 0x0C, 0x05, 0x07, 0x04, 0x03, 0x04, 0x02, 0x05, 0x02, 0x05, 0x05, + 0x02, 0x01, 0x05, 0x01, 0x01, 0x04, 0x04, 0x02, 0x03, 0x04, 0x01, 0x05, + 0x05, 0x04, 0x02, 0x02, 0x08, 0x08, 0x02, 0x08, 0x02, 0x04, 0x05, 0x03, + 0x02, 0x05, 0x06, 0x05, 0x03, 0x01, 0x01, 0x01, 0x02, 0x01, 0x03, 0x02, + 0x01, 0x08, 0x05, 0x0C, 0x0B, 0x0D, 0x04, 0x01, 0x04, 0x01, 0x01, 0x02, + 0x03, 0x06, 0x03, 0x07, 0x07, 0x01, 0x01, 0x02, 0x03, 0x10, 0x05, 0x0A, + 0x09, 0x02, 0x09, 0x20, 0x09, 0x1A, 0x1A, 0x0B, 0x18, 0x0D, 0x10, 0x11, + 0x0F, 0x08, 0x05, 0x01, 0x03, 0x03, 0x03, 0x01, 0x03, 0x01, 0x08, 0x0C, + 0x15, 0x03, 0x06, 0x03, 0x03, 0x01, 0x03, 0x02, 0x01, 0x03, 0x04, 0x01, + 0x04, 0x01, 0x02, 0x06, 0x01, 0x06, 0x02, 0x01, 0x01, 0x01, 0x04, 0x0C, + 0x05, 0x08, 0x04, 0x01, 0x06, 0x01, 0x06, 0x03, 0x0B, 0x02, 0x08, 0x04, + 0x0A, 0x01, 0x02, 0x03, 0x01, 0x02, 0x01, 0x02, 0x05, 0x05, 0x08, 0x0D, + 0x12, 0x16, 0x14, 0x03, 0x09, 0x04, 0x09, 0x02, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x04, 0x03, 0x02, 0x02, 0x05, 0x08, 0x03, 0x06, 0x08, 0x03, 0x01, + 0x01, 0x02, 0x05, 0x06, 0x05, 0x08, 0x0A, 0x0B, 0x0E, 0x10, 0x12, 0x1B, + 0x20, 0x17, 0x2E, 0x04, 0x08, 0x02, 0x07, 0x95, 0x09, 0x09, 0x0A, 0x0A, + 0x06, 0x07, 0x08, 0x03, 0x05, 0x05, 0x06, 0x0D, 0x15, 0x08, 0x08, 0x00, + 0x00, 0x02, 0x00, 0x52, 0x00, 0x54, 0x07, 0xD3, 0x03, 0x2C, 0x01, 0x0F, + 0x01, 0x2E, 0x00, 0x00, 0x01, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x2E, 0x01, + 0x23, 0x2E, 0x01, 0x23, 0x22, 0x27, 0x22, 0x27, 0x22, 0x27, 0x26, 0x27, + 0x26, 0x07, 0x06, 0x07, 0x22, 0x07, 0x0E, 0x03, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x22, 0x27, 0x26, 0x07, 0x22, 0x07, + 0x06, 0x23, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x02, 0x23, 0x26, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x0F, + 0x01, 0x06, 0x15, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x26, 0x23, + 0x22, 0x06, 0x17, 0x06, 0x07, 0x06, 0x07, 0x06, 0x26, 0x23, 0x22, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x06, 0x17, 0x16, + 0x06, 0x27, 0x22, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, 0x17, + 0x06, 0x07, 0x06, 0x07, 0x14, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, 0x14, 0x06, 0x07, 0x06, 0x15, + 0x06, 0x1F, 0x01, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x3D, 0x01, 0x16, 0x37, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x17, + 0x16, 0x33, 0x32, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x33, 0x16, 0x17, + 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, + 0x36, 0x27, 0x26, 0x37, 0x32, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x26, 0x27, 0x26, 0x05, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x32, 0x37, 0x32, 0x17, 0x16, 0x17, + 0x1E, 0x01, 0x07, 0x06, 0x07, 0x9D, 0x17, 0x19, 0x1F, 0x1B, 0x2F, 0x30, + 0x36, 0x3A, 0x27, 0x34, 0x2F, 0x33, 0x0A, 0x2C, 0x0A, 0x1D, 0x25, 0x08, + 0x1E, 0x08, 0x08, 0x20, 0x07, 0x09, 0x05, 0x09, 0x05, 0x01, 0x03, 0x03, + 0x03, 0x07, 0x18, 0x1A, 0x09, 0x04, 0x08, 0x02, 0x03, 0x02, 0x03, 0x01, + 0x08, 0x10, 0x0C, 0x10, 0x24, 0x2D, 0x30, 0x24, 0x02, 0x0A, 0x03, 0x07, + 0x08, 0x02, 0x04, 0x06, 0x02, 0x04, 0x04, 0x03, 0x06, 0x02, 0x04, 0x03, + 0x01, 0x04, 0x07, 0x03, 0x10, 0x03, 0x10, 0x07, 0x3D, 0x49, 0x43, 0x3D, + 0x02, 0x1B, 0x02, 0x1B, 0x03, 0x01, 0x02, 0x02, 0x05, 0x01, 0x08, 0x03, + 0x06, 0x03, 0x02, 0x04, 0x01, 0x03, 0x07, 0x05, 0x0D, 0x07, 0x03, 0x01, + 0x01, 0x04, 0x07, 0x08, 0x12, 0x01, 0x02, 0x02, 0x02, 0x07, 0x06, 0x08, + 0x06, 0x05, 0x05, 0x03, 0x02, 0x03, 0x02, 0x01, 0x0A, 0x05, 0x0A, 0x05, + 0x04, 0x01, 0x01, 0x08, 0x09, 0x12, 0x06, 0x06, 0x03, 0x04, 0x02, 0x02, + 0x03, 0x01, 0x07, 0x08, 0x05, 0x09, 0x01, 0x03, 0x01, 0x04, 0x01, 0x02, + 0x07, 0x01, 0x02, 0x07, 0x01, 0x05, 0x06, 0x06, 0x0B, 0x08, 0x03, 0x08, + 0x02, 0x1C, 0x24, 0x05, 0x05, 0x03, 0x06, 0x0F, 0x02, 0x0F, 0x02, 0x1C, + 0x24, 0x22, 0x22, 0x36, 0x25, 0x24, 0x05, 0x01, 0x07, 0x04, 0x02, 0x03, + 0x03, 0x08, 0x03, 0x0A, 0x07, 0x17, 0x1C, 0x12, 0x26, 0x08, 0x03, 0x01, + 0x04, 0x02, 0x09, 0x0A, 0x09, 0x0D, 0x1C, 0x25, 0x22, 0x25, 0x0B, 0x04, + 0x03, 0x06, 0x07, 0x0F, 0x0F, 0x0D, 0x1E, 0x26, 0x26, 0x1C, 0x0F, 0x0E, + 0x0C, 0x0A, 0x03, 0x07, 0x05, 0x0A, 0x07, 0x18, 0x16, 0x05, 0x08, 0x05, + 0x04, 0x0B, 0x01, 0x0C, 0x02, 0x08, 0x02, 0x0A, 0x24, 0x0A, 0x1C, 0x1B, + 0x31, 0x34, 0x33, 0x33, 0x40, 0x44, 0x46, 0x37, 0x24, 0x22, 0x1C, 0x25, + 0x1F, 0x1C, 0x1D, 0x13, 0x05, 0x0F, 0x13, 0xF9, 0xD5, 0x12, 0x10, 0x15, + 0x14, 0x17, 0x0E, 0x10, 0x14, 0x16, 0x0A, 0x0E, 0x06, 0x08, 0x02, 0x01, + 0x08, 0x08, 0x19, 0x1B, 0x18, 0x14, 0x0B, 0x0D, 0x11, 0x1C, 0x16, 0x15, + 0x10, 0x07, 0x08, 0x01, 0x62, 0x2A, 0x27, 0x2C, 0x1E, 0x37, 0x25, 0x2A, + 0x1F, 0x16, 0x17, 0x13, 0x0B, 0x03, 0x08, 0x03, 0x07, 0x03, 0x01, 0x02, + 0x01, 0x03, 0x01, 0x01, 0x09, 0x05, 0x06, 0x0A, 0x05, 0x07, 0x01, 0x08, + 0x02, 0x03, 0x03, 0x02, 0x01, 0x08, 0x09, 0x07, 0x05, 0x0E, 0x05, 0x05, + 0x04, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0x01, 0x03, 0x02, 0x02, 0x01, + 0x02, 0x02, 0x01, 0x01, 0x01, 0x04, 0x01, 0x04, 0x01, 0x0F, 0x19, 0x17, + 0x22, 0x01, 0x0F, 0x01, 0x0F, 0x02, 0x01, 0x04, 0x02, 0x01, 0x02, 0x01, + 0x04, 0x02, 0x03, 0x05, 0x02, 0x05, 0x01, 0x05, 0x01, 0x01, 0x03, 0x01, + 0x0F, 0x05, 0x04, 0x02, 0x06, 0x0A, 0x05, 0x06, 0x05, 0x01, 0x02, 0x08, + 0x03, 0x03, 0x06, 0x04, 0x0A, 0x06, 0x01, 0x01, 0x03, 0x01, 0x05, 0x06, + 0x08, 0x09, 0x01, 0x08, 0x07, 0x0A, 0x0C, 0x07, 0x08, 0x03, 0x02, 0x07, + 0x04, 0x02, 0x03, 0x07, 0x02, 0x0B, 0x03, 0x09, 0x07, 0x07, 0x18, 0x04, + 0x06, 0x18, 0x06, 0x14, 0x0B, 0x0E, 0x10, 0x01, 0x0A, 0x04, 0x0A, 0x06, + 0x0E, 0x03, 0x06, 0x02, 0x03, 0x03, 0x04, 0x09, 0x01, 0x09, 0x01, 0x12, + 0x09, 0x09, 0x09, 0x0E, 0x2B, 0x2A, 0x37, 0x05, 0x09, 0x0D, 0x04, 0x08, + 0x06, 0x06, 0x04, 0x10, 0x04, 0x0E, 0x06, 0x16, 0x02, 0x01, 0x02, 0x02, + 0x07, 0x01, 0x08, 0x02, 0x0E, 0x0B, 0x0C, 0x0A, 0x17, 0x08, 0x06, 0x0B, + 0x04, 0x0B, 0x0F, 0x11, 0x0F, 0x09, 0x15, 0x02, 0x14, 0x0B, 0x11, 0x0F, + 0x12, 0x05, 0x13, 0x13, 0x01, 0x01, 0x0A, 0x09, 0x05, 0x08, 0x05, 0x04, + 0x05, 0x05, 0x01, 0x02, 0x01, 0x02, 0x0B, 0x03, 0x08, 0x04, 0x09, 0x03, + 0x01, 0x04, 0x06, 0x15, 0x18, 0x1C, 0x13, 0x16, 0x12, 0x20, 0x1C, 0x1F, + 0x22, 0x1F, 0x2B, 0x24, 0x2E, 0xA1, 0x13, 0x07, 0x09, 0x01, 0x02, 0x03, + 0x01, 0x0D, 0x0E, 0x10, 0x13, 0x13, 0x17, 0x17, 0x17, 0x16, 0x18, 0x16, + 0x18, 0x01, 0x01, 0x05, 0x0A, 0x19, 0x17, 0x40, 0x1D, 0x20, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x52, 0x00, 0x94, 0x08, 0xD3, 0x02, 0xEE, 0x01, 0xD5, + 0x01, 0xEB, 0x00, 0x00, 0x01, 0x36, 0x37, 0x36, 0x37, 0x2E, 0x01, 0x27, + 0x26, 0x27, 0x26, 0x27, 0x26, 0x2F, 0x01, 0x26, 0x27, 0x26, 0x2B, 0x01, + 0x16, 0x17, 0x14, 0x23, 0x26, 0x27, 0x26, 0x27, 0x26, 0x23, 0x06, 0x23, + 0x22, 0x27, 0x23, 0x16, 0x17, 0x16, 0x23, 0x22, 0x27, 0x26, 0x2F, 0x02, + 0x22, 0x27, 0x23, 0x16, 0x17, 0x16, 0x07, 0x06, 0x27, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x23, 0x06, 0x2B, 0x01, 0x16, 0x17, 0x16, 0x27, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x27, 0x2B, 0x02, 0x16, 0x17, 0x16, 0x07, 0x22, + 0x27, 0x2E, 0x02, 0x27, 0x26, 0x27, 0x26, 0x2B, 0x02, 0x16, 0x17, 0x16, + 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x22, 0x27, 0x22, 0x26, + 0x23, 0x26, 0x23, 0x16, 0x17, 0x16, 0x17, 0x16, 0x06, 0x27, 0x26, 0x27, + 0x2E, 0x02, 0x23, 0x06, 0x23, 0x22, 0x27, 0x23, 0x16, 0x17, 0x16, 0x07, + 0x14, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x02, + 0x23, 0x06, 0x2B, 0x04, 0x22, 0x27, 0x22, 0x3D, 0x01, 0x34, 0x27, 0x35, + 0x26, 0x35, 0x34, 0x26, 0x1D, 0x06, 0x14, 0x27, 0x26, 0x15, 0x06, 0x14, + 0x07, 0x34, 0x26, 0x27, 0x26, 0x2B, 0x01, 0x22, 0x07, 0x23, 0x06, 0x23, + 0x06, 0x15, 0x07, 0x14, 0x27, 0x23, 0x22, 0x35, 0x2E, 0x01, 0x23, 0x06, + 0x23, 0x22, 0x27, 0x23, 0x26, 0x2B, 0x01, 0x22, 0x15, 0x07, 0x06, 0x15, + 0x06, 0x0F, 0x01, 0x22, 0x27, 0x22, 0x27, 0x34, 0x27, 0x26, 0x2B, 0x01, + 0x06, 0x2B, 0x02, 0x0F, 0x01, 0x06, 0x2B, 0x01, 0x22, 0x27, 0x26, 0x2B, + 0x03, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x07, 0x06, 0x2B, 0x01, 0x06, + 0x2B, 0x01, 0x06, 0x23, 0x22, 0x07, 0x06, 0x23, 0x22, 0x27, 0x22, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x23, 0x26, 0x23, 0x22, 0x27, 0x22, 0x27, 0x26, + 0x07, 0x22, 0x06, 0x07, 0x06, 0x2B, 0x01, 0x22, 0x07, 0x06, 0x1D, 0x01, + 0x14, 0x07, 0x06, 0x17, 0x16, 0x17, 0x16, 0x1D, 0x01, 0x14, 0x17, 0x16, + 0x37, 0x36, 0x33, 0x36, 0x3B, 0x01, 0x17, 0x16, 0x17, 0x16, 0x3B, 0x01, + 0x16, 0x3B, 0x01, 0x32, 0x36, 0x33, 0x32, 0x36, 0x33, 0x32, 0x36, 0x37, + 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, 0x33, 0x32, 0x16, 0x3B, 0x01, 0x16, + 0x3B, 0x01, 0x16, 0x33, 0x32, 0x17, 0x16, 0x36, 0x37, 0x36, 0x17, 0x16, + 0x33, 0x16, 0x33, 0x32, 0x37, 0x33, 0x32, 0x35, 0x26, 0x37, 0x36, 0x17, + 0x16, 0x3B, 0x02, 0x32, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, + 0x17, 0x16, 0x33, 0x3E, 0x01, 0x3B, 0x01, 0x32, 0x37, 0x33, 0x32, 0x27, + 0x26, 0x36, 0x17, 0x33, 0x1F, 0x02, 0x33, 0x16, 0x3B, 0x01, 0x16, 0x3B, + 0x01, 0x16, 0x33, 0x32, 0x3F, 0x01, 0x15, 0x14, 0x33, 0x16, 0x1D, 0x01, + 0x16, 0x1D, 0x01, 0x14, 0x17, 0x1D, 0x02, 0x14, 0x17, 0x32, 0x17, 0x16, + 0x3B, 0x01, 0x3E, 0x01, 0x33, 0x36, 0x3D, 0x02, 0x34, 0x37, 0x3D, 0x03, + 0x34, 0x3B, 0x02, 0x32, 0x37, 0x33, 0x32, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x33, 0x32, 0x37, 0x33, 0x32, 0x37, 0x32, 0x37, 0x33, 0x32, 0x37, + 0x33, 0x32, 0x37, 0x36, 0x37, 0x36, 0x25, 0x3B, 0x01, 0x32, 0x16, 0x17, + 0x16, 0x07, 0x06, 0x07, 0x06, 0x27, 0x2B, 0x02, 0x22, 0x27, 0x26, 0x27, + 0x26, 0x37, 0x36, 0x08, 0x9A, 0x09, 0x14, 0x0F, 0x0D, 0x0D, 0x36, 0x0E, + 0x19, 0x39, 0x5F, 0x20, 0x23, 0x5D, 0x42, 0x2C, 0x16, 0x11, 0x14, 0x26, + 0x05, 0x02, 0x0C, 0x07, 0x03, 0x03, 0x03, 0x03, 0x04, 0x03, 0x09, 0x0A, + 0x05, 0x10, 0x08, 0x03, 0x01, 0x0D, 0x08, 0x04, 0x04, 0x03, 0x06, 0x0B, + 0x0B, 0x05, 0x10, 0x06, 0x04, 0x05, 0x0C, 0x07, 0x07, 0x07, 0x03, 0x01, + 0x02, 0x01, 0x01, 0x09, 0x05, 0x0B, 0x12, 0x07, 0x01, 0x01, 0x0D, 0x09, + 0x03, 0x04, 0x03, 0x03, 0x04, 0x0D, 0x11, 0x10, 0x06, 0x03, 0x03, 0x10, + 0x09, 0x03, 0x01, 0x03, 0x02, 0x01, 0x04, 0x02, 0x01, 0x0A, 0x11, 0x11, + 0x06, 0x01, 0x01, 0x07, 0x08, 0x07, 0x03, 0x02, 0x04, 0x04, 0x04, 0x06, + 0x06, 0x03, 0x0A, 0x03, 0x06, 0x0B, 0x03, 0x04, 0x02, 0x01, 0x02, 0x0E, + 0x07, 0x08, 0x04, 0x01, 0x05, 0x04, 0x0F, 0x0B, 0x08, 0x0C, 0x07, 0x13, + 0x03, 0x06, 0x04, 0x01, 0x12, 0x02, 0x01, 0x04, 0x01, 0x04, 0x03, 0x01, + 0x05, 0x02, 0x07, 0x02, 0x04, 0x03, 0x03, 0x10, 0x10, 0x22, 0x23, 0x0A, + 0x01, 0x02, 0x01, 0x01, 0x24, 0x03, 0x04, 0x01, 0x01, 0x01, 0x01, 0x02, + 0x03, 0x0E, 0x0A, 0x05, 0x20, 0x0B, 0x16, 0x06, 0x04, 0x04, 0x06, 0x02, + 0x01, 0x04, 0x06, 0x05, 0x04, 0x0C, 0x06, 0x14, 0x04, 0x08, 0x0C, 0x02, + 0x01, 0x01, 0x01, 0x02, 0x06, 0x05, 0x01, 0x02, 0x01, 0x01, 0x02, 0x01, + 0x0C, 0x05, 0x08, 0x1D, 0x1E, 0x02, 0x02, 0x01, 0x02, 0x06, 0x03, 0x02, + 0x02, 0x05, 0x20, 0x21, 0x08, 0x06, 0x08, 0x01, 0x03, 0x05, 0x03, 0x05, + 0x04, 0x05, 0x13, 0x07, 0x0C, 0x0D, 0x05, 0x09, 0x03, 0x02, 0x02, 0x05, + 0x08, 0x02, 0x01, 0x06, 0x02, 0x05, 0x05, 0x08, 0x03, 0x0B, 0x14, 0x15, + 0x0B, 0x10, 0x1E, 0x1A, 0x14, 0x04, 0x12, 0x04, 0x09, 0x11, 0x0A, 0x07, + 0x01, 0x02, 0x04, 0x04, 0x02, 0x02, 0x02, 0x02, 0x03, 0x04, 0x07, 0x05, + 0x09, 0x02, 0x04, 0x06, 0x04, 0x01, 0x02, 0x06, 0x05, 0x0B, 0x08, 0x10, + 0x17, 0x0A, 0x26, 0x09, 0x0A, 0x24, 0x0A, 0x01, 0x07, 0x02, 0x01, 0x06, + 0x01, 0x09, 0x02, 0x04, 0x07, 0x03, 0x04, 0x03, 0x0F, 0x05, 0x09, 0x12, + 0x05, 0x0C, 0x05, 0x05, 0x07, 0x06, 0x03, 0x02, 0x06, 0x05, 0x02, 0x01, + 0x08, 0x16, 0x0B, 0x20, 0x07, 0x01, 0x05, 0x07, 0x02, 0x02, 0x03, 0x18, + 0x19, 0x0D, 0x09, 0x0D, 0x04, 0x01, 0x06, 0x05, 0x03, 0x02, 0x01, 0x02, + 0x05, 0x05, 0x13, 0x05, 0x1D, 0x07, 0x03, 0x08, 0x06, 0x02, 0x01, 0x03, + 0x03, 0x05, 0x02, 0x02, 0x02, 0x08, 0x03, 0x05, 0x20, 0x0A, 0x14, 0x0B, + 0x03, 0x08, 0x02, 0x02, 0x03, 0x03, 0x05, 0x01, 0x01, 0x08, 0x02, 0x03, + 0x04, 0x01, 0x01, 0x02, 0x04, 0x02, 0x08, 0x01, 0x01, 0x09, 0x08, 0x2A, + 0x15, 0x3F, 0x09, 0x0B, 0x0C, 0x05, 0x03, 0x02, 0x01, 0x05, 0x3C, 0x1E, + 0x59, 0x5A, 0x2D, 0x5A, 0x2D, 0x87, 0x59, 0x2D, 0x20, 0x15, 0x0B, 0x50, + 0x48, 0x4B, 0xFE, 0xA4, 0x1A, 0x1B, 0x06, 0x08, 0x02, 0x03, 0x04, 0x04, + 0x09, 0x06, 0x04, 0x0B, 0x0F, 0x0F, 0x06, 0x06, 0x07, 0x01, 0x05, 0x06, + 0x05, 0x01, 0x82, 0x06, 0x0C, 0x08, 0x09, 0x03, 0x0D, 0x04, 0x06, 0x0B, + 0x12, 0x05, 0x06, 0x11, 0x0C, 0x08, 0x03, 0x04, 0x05, 0x0C, 0x0B, 0x01, + 0x07, 0x07, 0x05, 0x06, 0x01, 0x01, 0x05, 0x0C, 0x0D, 0x07, 0x05, 0x08, + 0x0A, 0x02, 0x01, 0x08, 0x09, 0x0B, 0x04, 0x03, 0x05, 0x04, 0x07, 0x02, + 0x08, 0x02, 0x06, 0x01, 0x07, 0x0C, 0x0D, 0x01, 0x02, 0x06, 0x05, 0x08, + 0x06, 0x04, 0x08, 0x0B, 0x0C, 0x01, 0x08, 0x02, 0x05, 0x06, 0x01, 0x08, + 0x01, 0x01, 0x0A, 0x0B, 0x07, 0x05, 0x01, 0x01, 0x08, 0x05, 0x08, 0x07, + 0x02, 0x01, 0x02, 0x01, 0x03, 0x06, 0x08, 0x03, 0x09, 0x06, 0x04, 0x05, + 0x09, 0x02, 0x0C, 0x06, 0x01, 0x01, 0x03, 0x08, 0x07, 0x07, 0x05, 0x0C, + 0x06, 0x03, 0x09, 0x02, 0x05, 0x08, 0x05, 0x04, 0x02, 0x06, 0x02, 0x01, + 0x01, 0x09, 0x1D, 0x13, 0x09, 0x3F, 0x15, 0x2A, 0x08, 0x04, 0x0A, 0x27, + 0x27, 0x32, 0x33, 0x0C, 0x0C, 0x03, 0x01, 0x01, 0x02, 0x03, 0x0E, 0x04, + 0x01, 0x06, 0x01, 0x02, 0x01, 0x01, 0x01, 0x02, 0x08, 0x01, 0x01, 0x05, + 0x03, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x02, 0x02, + 0x01, 0x04, 0x03, 0x01, 0x02, 0x01, 0x03, 0x04, 0x04, 0x06, 0x05, 0x06, + 0x09, 0x06, 0x05, 0x04, 0x02, 0x02, 0x01, 0x01, 0x01, 0x05, 0x06, 0x01, + 0x03, 0x01, 0x02, 0x03, 0x02, 0x01, 0x01, 0x02, 0x02, 0x03, 0x01, 0x01, + 0x01, 0x04, 0x08, 0x03, 0x0C, 0x1C, 0x15, 0x14, 0x1E, 0x10, 0x09, 0x10, + 0x09, 0x0B, 0x05, 0x05, 0x05, 0x01, 0x01, 0x01, 0x02, 0x02, 0x02, 0x02, + 0x01, 0x02, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x05, 0x01, 0x02, 0x0C, + 0x01, 0x01, 0x01, 0x01, 0x02, 0x09, 0x08, 0x0A, 0x06, 0x01, 0x01, 0x04, + 0x04, 0x02, 0x04, 0x07, 0x08, 0x01, 0x01, 0x07, 0x02, 0x04, 0x03, 0x05, + 0x06, 0x01, 0x02, 0x01, 0x01, 0x01, 0x06, 0x03, 0x03, 0x01, 0x03, 0x04, + 0x03, 0x01, 0x01, 0x01, 0x03, 0x06, 0x0B, 0x09, 0x02, 0x01, 0x06, 0x0A, + 0x14, 0x1F, 0x17, 0x0B, 0x22, 0x07, 0x08, 0x02, 0x02, 0x01, 0x01, 0x01, + 0x01, 0x02, 0x02, 0x08, 0x06, 0x17, 0x0B, 0x22, 0x1E, 0x1E, 0x04, 0x02, + 0x01, 0x03, 0x06, 0x03, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x06, 0x19, 0x19, 0x6E, 0x08, 0x07, 0x0B, 0x09, 0x0A, 0x06, 0x02, 0x01, + 0x06, 0x05, 0x04, 0x0C, 0x09, 0x08, 0x00, 0x00, 0x00, 0x02, 0x00, 0x51, + 0x00, 0xE8, 0x08, 0x53, 0x02, 0x97, 0x01, 0xE3, 0x01, 0xF1, 0x00, 0x00, + 0x01, 0x16, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x27, 0x16, 0x17, 0x16, 0x15, 0x06, 0x07, 0x06, 0x2F, 0x01, 0x26, 0x2F, + 0x01, 0x26, 0x27, 0x16, 0x17, 0x16, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x31, 0x26, 0x27, 0x16, 0x17, 0x16, 0x07, 0x06, + 0x27, 0x2E, 0x02, 0x27, 0x26, 0x27, 0x26, 0x27, 0x16, 0x17, 0x16, 0x07, + 0x06, 0x15, 0x06, 0x15, 0x06, 0x07, 0x23, 0x22, 0x07, 0x22, 0x27, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x27, 0x14, 0x16, 0x17, 0x16, 0x06, 0x07, 0x06, + 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x16, 0x17, 0x16, + 0x07, 0x06, 0x23, 0x22, 0x27, 0x26, 0x2F, 0x02, 0x26, 0x27, 0x26, 0x27, + 0x23, 0x16, 0x15, 0x14, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, + 0x27, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x01, + 0x23, 0x22, 0x26, 0x23, 0x26, 0x23, 0x22, 0x27, 0x26, 0x27, 0x26, 0x27, + 0x26, 0x07, 0x06, 0x23, 0x22, 0x27, 0x26, 0x27, 0x26, 0x07, 0x06, 0x07, + 0x06, 0x27, 0x26, 0x07, 0x22, 0x06, 0x23, 0x06, 0x23, 0x06, 0x07, 0x06, + 0x26, 0x07, 0x06, 0x23, 0x36, 0x27, 0x26, 0x37, 0x26, 0x07, 0x06, 0x15, + 0x14, 0x06, 0x2F, 0x01, 0x26, 0x1D, 0x01, 0x06, 0x27, 0x26, 0x37, 0x36, + 0x26, 0x07, 0x22, 0x16, 0x07, 0x26, 0x35, 0x36, 0x27, 0x26, 0x06, 0x17, + 0x16, 0x07, 0x06, 0x27, 0x22, 0x07, 0x14, 0x23, 0x06, 0x35, 0x26, 0x27, + 0x22, 0x15, 0x14, 0x06, 0x27, 0x26, 0x37, 0x23, 0x06, 0x17, 0x16, 0x06, + 0x23, 0x06, 0x35, 0x26, 0x07, 0x22, 0x17, 0x14, 0x07, 0x23, 0x22, 0x07, + 0x23, 0x06, 0x23, 0x06, 0x2B, 0x01, 0x26, 0x27, 0x26, 0x27, 0x26, 0x07, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x23, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x07, 0x06, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x32, 0x36, 0x33, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x33, + 0x32, 0x16, 0x33, 0x16, 0x17, 0x32, 0x1E, 0x01, 0x17, 0x16, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, + 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x17, + 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x14, 0x17, 0x1D, + 0x02, 0x14, 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x15, + 0x16, 0x17, 0x16, 0x33, 0x1E, 0x01, 0x33, 0x16, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x3B, 0x01, 0x16, 0x3B, + 0x01, 0x16, 0x3B, 0x01, 0x32, 0x17, 0x16, 0x17, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x1F, 0x01, 0x16, 0x37, 0x36, 0x33, 0x32, 0x37, 0x33, 0x32, + 0x37, 0x32, 0x37, 0x36, 0x3F, 0x01, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x37, 0x32, 0x36, 0x33, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x01, 0x37, 0x06, 0x26, 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x07, + 0x06, 0x0F, 0x01, 0x07, 0x76, 0x0B, 0x04, 0x06, 0x0E, 0x04, 0x04, 0x04, + 0x02, 0x05, 0x02, 0x04, 0x07, 0x03, 0x04, 0x02, 0x02, 0x08, 0x07, 0x07, + 0x08, 0x03, 0x04, 0x06, 0x04, 0x08, 0x03, 0x02, 0x02, 0x08, 0x05, 0x07, + 0x09, 0x02, 0x05, 0x03, 0x04, 0x01, 0x06, 0x02, 0x08, 0x03, 0x04, 0x02, + 0x08, 0x04, 0x07, 0x06, 0x0A, 0x06, 0x02, 0x03, 0x02, 0x03, 0x08, 0x03, + 0x03, 0x03, 0x02, 0x01, 0x01, 0x02, 0x03, 0x09, 0x06, 0x03, 0x06, 0x04, + 0x04, 0x02, 0x02, 0x04, 0x02, 0x08, 0x03, 0x01, 0x03, 0x06, 0x06, 0x05, + 0x06, 0x07, 0x01, 0x04, 0x03, 0x03, 0x04, 0x02, 0x0A, 0x02, 0x02, 0x02, + 0x02, 0x03, 0x09, 0x0A, 0x05, 0x06, 0x01, 0x06, 0x03, 0x01, 0x02, 0x01, + 0x02, 0x07, 0x02, 0x02, 0x06, 0x04, 0x08, 0x04, 0x05, 0x04, 0x04, 0x03, + 0x04, 0x07, 0x02, 0x09, 0x02, 0x09, 0x0C, 0x08, 0x0C, 0x0D, 0x1A, 0x11, + 0x1A, 0x30, 0x3C, 0x39, 0x34, 0x17, 0x0F, 0x17, 0x0F, 0x02, 0x09, 0x03, + 0x02, 0x09, 0x03, 0x01, 0x05, 0x04, 0x02, 0x08, 0x03, 0x05, 0x08, 0x06, + 0x03, 0x04, 0x07, 0x09, 0x08, 0x0C, 0x06, 0x0C, 0x06, 0x0C, 0x05, 0x04, + 0x03, 0x05, 0x04, 0x01, 0x04, 0x01, 0x07, 0x01, 0x02, 0x06, 0x06, 0x02, + 0x04, 0x03, 0x03, 0x02, 0x02, 0x01, 0x01, 0x04, 0x01, 0x02, 0x04, 0x01, + 0x04, 0x03, 0x01, 0x05, 0x02, 0x01, 0x01, 0x02, 0x03, 0x02, 0x02, 0x03, + 0x04, 0x01, 0x02, 0x04, 0x02, 0x01, 0x01, 0x02, 0x04, 0x05, 0x03, 0x01, + 0x04, 0x04, 0x01, 0x03, 0x03, 0x04, 0x03, 0x03, 0x01, 0x05, 0x03, 0x02, + 0x01, 0x03, 0x02, 0x04, 0x02, 0x03, 0x03, 0x02, 0x03, 0x07, 0x05, 0x02, + 0x0C, 0x04, 0x08, 0x09, 0x10, 0x19, 0x20, 0x12, 0x0F, 0x23, 0x3D, 0x36, + 0x3B, 0x34, 0x0B, 0x2A, 0x0A, 0x24, 0x1C, 0x0D, 0x09, 0x04, 0x0E, 0x04, + 0x11, 0x06, 0x0A, 0x07, 0x08, 0x05, 0x08, 0x07, 0x03, 0x0C, 0x01, 0x0A, + 0x04, 0x06, 0x04, 0x03, 0x09, 0x08, 0x05, 0x06, 0x05, 0x16, 0x0B, 0x06, + 0x14, 0x06, 0x07, 0x0A, 0x09, 0x09, 0x0C, 0x07, 0x02, 0x09, 0x02, 0x08, + 0x0E, 0x09, 0x11, 0x0E, 0x09, 0x10, 0x07, 0x03, 0x09, 0x02, 0x08, 0x04, + 0x0A, 0x04, 0x08, 0x04, 0x0A, 0x05, 0x07, 0x0A, 0x08, 0x05, 0x08, 0x04, + 0x05, 0x12, 0x04, 0x0C, 0x0E, 0x01, 0x08, 0x04, 0x08, 0x08, 0x06, 0x09, + 0x01, 0x10, 0x07, 0x0B, 0x0D, 0x18, 0x1E, 0x1F, 0x0B, 0x01, 0x0A, 0x03, + 0x07, 0x07, 0x0D, 0x07, 0x07, 0x05, 0x06, 0x10, 0x0D, 0x19, 0x18, 0x15, + 0x18, 0x10, 0x0B, 0x06, 0x0B, 0x03, 0x01, 0x02, 0x01, 0x01, 0x02, 0x04, + 0x08, 0x0A, 0x06, 0x02, 0x07, 0x02, 0x07, 0x02, 0x05, 0x06, 0x03, 0x04, + 0x11, 0x04, 0x0D, 0x0C, 0x0C, 0x06, 0x06, 0x03, 0x08, 0x05, 0x08, 0x03, + 0x03, 0x12, 0x0B, 0x10, 0x3E, 0x15, 0x29, 0x7E, 0x2A, 0x53, 0x09, 0x05, + 0x03, 0x10, 0x07, 0x0C, 0x06, 0x08, 0x06, 0x06, 0x01, 0x02, 0x02, 0x05, + 0x07, 0x05, 0x06, 0x08, 0x05, 0x0C, 0x0D, 0x07, 0x0D, 0x06, 0x17, 0x29, + 0x3F, 0x2A, 0x2C, 0x35, 0x1F, 0x04, 0x14, 0x04, 0x04, 0x12, 0x05, 0x03, + 0x0A, 0x02, 0x06, 0x06, 0x07, 0x1C, 0x07, 0x0D, 0x1C, 0x0B, 0x18, 0x05, + 0x17, 0x06, 0x13, 0x48, 0x13, 0x13, 0x4A, 0x12, 0xFC, 0x46, 0x02, 0x0F, + 0x1A, 0x11, 0x06, 0x0A, 0x09, 0x03, 0x03, 0x02, 0x03, 0x02, 0x02, 0x02, + 0x58, 0x07, 0x0D, 0x0E, 0x08, 0x01, 0x06, 0x04, 0x06, 0x08, 0x02, 0x03, + 0x02, 0x03, 0x06, 0x06, 0x05, 0x08, 0x02, 0x03, 0x05, 0x08, 0x03, 0x06, + 0x0C, 0x04, 0x01, 0x04, 0x0B, 0x0B, 0x04, 0x03, 0x01, 0x02, 0x02, 0x04, + 0x05, 0x06, 0x03, 0x0A, 0x02, 0x02, 0x04, 0x0A, 0x09, 0x05, 0x04, 0x03, + 0x01, 0x08, 0x0A, 0x05, 0x07, 0x02, 0x01, 0x02, 0x03, 0x07, 0x06, 0x05, + 0x02, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x07, 0x06, 0x05, 0x04, 0x06, + 0x03, 0x02, 0x01, 0x08, 0x02, 0x08, 0x06, 0x04, 0x03, 0x04, 0x05, 0x04, + 0x06, 0x04, 0x05, 0x06, 0x03, 0x02, 0x03, 0x09, 0x08, 0x05, 0x07, 0x03, + 0x04, 0x04, 0x09, 0x06, 0x01, 0x04, 0x03, 0x02, 0x06, 0x03, 0x04, 0x06, + 0x06, 0x02, 0x03, 0x06, 0x04, 0x09, 0x0A, 0x04, 0x06, 0x01, 0x01, 0x01, + 0x07, 0x06, 0x05, 0x07, 0x0A, 0x07, 0x03, 0x07, 0x05, 0x05, 0x0A, 0x04, + 0x03, 0x04, 0x03, 0x01, 0x02, 0x02, 0x01, 0x02, 0x06, 0x03, 0x04, 0x03, + 0x02, 0x01, 0x01, 0x05, 0x06, 0x01, 0x02, 0x04, 0x06, 0x03, 0x02, 0x01, + 0x01, 0x04, 0x04, 0x05, 0x01, 0x02, 0x03, 0x08, 0x05, 0x06, 0x02, 0x02, + 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0x01, 0x04, 0x03, 0x04, 0x02, 0x03, + 0x06, 0x04, 0x02, 0x01, 0x03, 0x01, 0x01, 0x01, 0x06, 0x02, 0x01, 0x01, + 0x01, 0x02, 0x01, 0x01, 0x02, 0x03, 0x02, 0x02, 0x05, 0x05, 0x01, 0x01, + 0x02, 0x03, 0x01, 0x02, 0x03, 0x04, 0x02, 0x01, 0x03, 0x01, 0x02, 0x01, + 0x01, 0x01, 0x03, 0x02, 0x01, 0x02, 0x01, 0x02, 0x01, 0x01, 0x01, 0x02, + 0x02, 0x01, 0x04, 0x08, 0x0D, 0x0D, 0x17, 0x05, 0x10, 0x05, 0x0F, 0x08, + 0x04, 0x01, 0x01, 0x02, 0x02, 0x03, 0x05, 0x0B, 0x0B, 0x09, 0x0B, 0x07, + 0x04, 0x0E, 0x01, 0x0E, 0x07, 0x0D, 0x08, 0x08, 0x0C, 0x0A, 0x05, 0x07, + 0x09, 0x24, 0x11, 0x08, 0x23, 0x09, 0x0A, 0x03, 0x01, 0x05, 0x05, 0x0B, + 0x03, 0x0F, 0x03, 0x0A, 0x10, 0x0C, 0x0A, 0x06, 0x01, 0x02, 0x03, 0x04, + 0x02, 0x02, 0x06, 0x04, 0x08, 0x03, 0x08, 0x03, 0x04, 0x02, 0x02, 0x02, + 0x02, 0x02, 0x01, 0x05, 0x03, 0x02, 0x03, 0x02, 0x05, 0x06, 0x01, 0x0A, + 0x06, 0x0A, 0x04, 0x09, 0x0C, 0x0E, 0x15, 0x02, 0x11, 0x04, 0x0C, 0x0A, + 0x11, 0x10, 0x10, 0x08, 0x12, 0x17, 0x11, 0x08, 0x08, 0x08, 0x09, 0x0A, + 0x07, 0x09, 0x0F, 0x04, 0x03, 0x03, 0x01, 0x02, 0x04, 0x05, 0x05, 0x0C, + 0x05, 0x06, 0x08, 0x0E, 0x0E, 0x07, 0x02, 0x09, 0x02, 0x07, 0x09, 0x05, + 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x02, 0x04, 0x05, 0x0B, 0x24, 0x12, + 0x24, 0x12, 0x0E, 0x02, 0x01, 0x01, 0x01, 0x01, 0x02, 0x03, 0x05, 0x06, + 0x06, 0x06, 0x08, 0x01, 0x06, 0x07, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x04, 0x06, 0x04, 0x0B, 0x0D, 0x09, 0x01, 0x06, 0x02, 0x01, 0x05, + 0x02, 0x04, 0x01, 0x06, 0x07, 0x1E, 0x07, 0x0E, 0x1C, 0x0D, 0x18, 0x06, + 0x18, 0x06, 0x02, 0x09, 0x03, 0x02, 0x0A, 0x02, 0xFE, 0xAD, 0x02, 0x0E, + 0x20, 0x0B, 0x04, 0x02, 0x03, 0x08, 0x05, 0x05, 0x05, 0x05, 0x02, 0x00, + 0x00, 0x01, 0x00, 0x53, 0x01, 0x09, 0x08, 0x53, 0x02, 0x77, 0x01, 0xE8, + 0x00, 0x00, 0x01, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x27, 0x31, 0x2E, 0x02, 0x22, 0x27, 0x22, 0x27, 0x22, 0x2F, 0x01, 0x26, + 0x23, 0x31, 0x27, 0x26, 0x07, 0x06, 0x23, 0x22, 0x07, 0x06, 0x27, 0x2B, + 0x01, 0x26, 0x27, 0x26, 0x07, 0x23, 0x22, 0x06, 0x23, 0x17, 0x31, 0x23, + 0x26, 0x31, 0x34, 0x22, 0x35, 0x27, 0x06, 0x23, 0x06, 0x22, 0x06, 0x2B, + 0x02, 0x26, 0x23, 0x06, 0x23, 0x22, 0x27, 0x23, 0x31, 0x23, 0x26, 0x27, + 0x26, 0x27, 0x16, 0x15, 0x14, 0x17, 0x23, 0x15, 0x06, 0x15, 0x26, 0x27, + 0x26, 0x27, 0x06, 0x27, 0x26, 0x27, 0x22, 0x27, 0x23, 0x14, 0x17, 0x15, + 0x22, 0x27, 0x22, 0x15, 0x2B, 0x01, 0x26, 0x35, 0x27, 0x14, 0x22, 0x06, + 0x22, 0x07, 0x23, 0x06, 0x2F, 0x02, 0x22, 0x27, 0x22, 0x27, 0x06, 0x15, + 0x06, 0x15, 0x31, 0x23, 0x22, 0x35, 0x34, 0x26, 0x35, 0x26, 0x35, 0x06, + 0x27, 0x22, 0x07, 0x27, 0x22, 0x27, 0x16, 0x1D, 0x01, 0x39, 0x01, 0x22, + 0x26, 0x23, 0x26, 0x35, 0x34, 0x23, 0x27, 0x22, 0x0F, 0x03, 0x23, 0x15, + 0x06, 0x23, 0x22, 0x0F, 0x01, 0x26, 0x27, 0x26, 0x27, 0x1E, 0x01, 0x17, + 0x26, 0x27, 0x26, 0x23, 0x22, 0x15, 0x06, 0x15, 0x2B, 0x01, 0x22, 0x26, + 0x2F, 0x01, 0x26, 0x23, 0x22, 0x35, 0x23, 0x26, 0x2B, 0x01, 0x1D, 0x01, + 0x31, 0x15, 0x06, 0x23, 0x06, 0x27, 0x26, 0x2F, 0x02, 0x15, 0x16, 0x14, + 0x0F, 0x01, 0x06, 0x2B, 0x01, 0x26, 0x27, 0x26, 0x27, 0x16, 0x17, 0x16, + 0x17, 0x23, 0x22, 0x15, 0x27, 0x23, 0x26, 0x22, 0x07, 0x23, 0x22, 0x27, + 0x26, 0x27, 0x22, 0x26, 0x23, 0x14, 0x17, 0x14, 0x17, 0x06, 0x22, 0x07, + 0x06, 0x07, 0x22, 0x27, 0x22, 0x07, 0x34, 0x22, 0x27, 0x22, 0x27, 0x06, + 0x23, 0x22, 0x27, 0x06, 0x22, 0x07, 0x23, 0x26, 0x31, 0x27, 0x26, 0x22, + 0x35, 0x27, 0x15, 0x22, 0x27, 0x2B, 0x02, 0x36, 0x37, 0x36, 0x35, 0x26, + 0x22, 0x26, 0x22, 0x27, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x14, 0x17, 0x14, 0x17, 0x22, 0x26, 0x23, 0x26, 0x07, 0x06, + 0x07, 0x06, 0x27, 0x26, 0x23, 0x06, 0x27, 0x06, 0x27, 0x26, 0x07, 0x26, + 0x27, 0x26, 0x27, 0x06, 0x27, 0x22, 0x07, 0x26, 0x07, 0x06, 0x07, 0x22, + 0x07, 0x06, 0x07, 0x06, 0x26, 0x07, 0x26, 0x07, 0x06, 0x27, 0x22, 0x07, + 0x06, 0x07, 0x06, 0x15, 0x14, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x22, + 0x27, 0x23, 0x16, 0x15, 0x14, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x07, + 0x06, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x3F, 0x01, 0x3E, 0x01, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x3F, 0x01, 0x32, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x17, 0x16, 0x37, 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, + 0x07, 0x32, 0x37, 0x32, 0x37, 0x35, 0x26, 0x35, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x27, 0x26, 0x37, 0x36, 0x37, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x37, 0x36, 0x33, 0x32, 0x3F, 0x01, 0x3E, 0x01, 0x37, 0x36, 0x32, + 0x37, 0x33, 0x32, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x16, 0x37, 0x32, + 0x37, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x22, 0x27, 0x22, 0x07, 0xED, 0x08, 0x1F, 0x07, 0x19, 0x14, 0x07, + 0x20, 0x07, 0x10, 0x1E, 0x01, 0x04, 0x02, 0x04, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x04, 0x02, 0x04, 0x01, 0x05, 0x09, 0x0A, 0x04, 0x0D, 0x0C, 0x0D, + 0x0D, 0x02, 0x03, 0x01, 0x03, 0x02, 0x04, 0x1A, 0x04, 0x11, 0x05, 0x01, + 0x01, 0x01, 0x02, 0x02, 0x01, 0x01, 0x02, 0x02, 0x04, 0x01, 0x01, 0x02, + 0x04, 0x05, 0x04, 0x07, 0x03, 0x01, 0x06, 0x02, 0x06, 0x03, 0x08, 0x03, + 0x01, 0x01, 0x01, 0x01, 0x04, 0x01, 0x02, 0x04, 0x05, 0x0B, 0x0F, 0x04, + 0x03, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, + 0x02, 0x02, 0x01, 0x08, 0x04, 0x04, 0x06, 0x06, 0x03, 0x02, 0x05, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x05, 0x06, 0x08, 0x04, 0x0C, 0x01, + 0x0C, 0x01, 0x03, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, + 0x02, 0x02, 0x02, 0x03, 0x01, 0x01, 0x02, 0x07, 0x08, 0x08, 0x08, 0x02, + 0x02, 0x02, 0x02, 0x06, 0x03, 0x05, 0x01, 0x01, 0x08, 0x07, 0x01, 0x05, + 0x01, 0x06, 0x01, 0x01, 0x02, 0x04, 0x01, 0x02, 0x04, 0x01, 0x02, 0x02, + 0x01, 0x04, 0x01, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, 0x03, 0x0C, + 0x06, 0x07, 0x0C, 0x02, 0x01, 0x01, 0x03, 0x01, 0x01, 0x06, 0x06, 0x03, + 0x0A, 0x03, 0x06, 0x05, 0x03, 0x04, 0x03, 0x01, 0x06, 0x02, 0x01, 0x01, + 0x03, 0x0B, 0x02, 0x07, 0x08, 0x09, 0x05, 0x09, 0x05, 0x02, 0x01, 0x02, + 0x01, 0x06, 0x02, 0x03, 0x04, 0x01, 0x02, 0x01, 0x03, 0x06, 0x01, 0x01, + 0x02, 0x02, 0x03, 0x01, 0x05, 0x14, 0x14, 0x04, 0x02, 0x01, 0x02, 0x08, + 0x04, 0x08, 0x02, 0x01, 0x08, 0x02, 0x06, 0x07, 0x08, 0x06, 0x02, 0x0A, + 0x02, 0x01, 0x01, 0x01, 0x08, 0x01, 0x07, 0x05, 0x12, 0x14, 0x16, 0x11, + 0x17, 0x15, 0x13, 0x19, 0x0F, 0x12, 0x13, 0x0F, 0x39, 0x3B, 0x28, 0x4C, + 0x26, 0x1E, 0x1F, 0x26, 0x11, 0x17, 0x19, 0x0F, 0x0C, 0x06, 0x07, 0x0C, + 0x09, 0x0E, 0x08, 0x15, 0x14, 0x17, 0x12, 0x02, 0x10, 0x0A, 0x03, 0x03, + 0x01, 0x02, 0x06, 0x01, 0x03, 0x04, 0x04, 0x02, 0x07, 0x01, 0x02, 0x06, + 0x08, 0x07, 0x03, 0x05, 0x01, 0x02, 0x0D, 0x06, 0x09, 0x07, 0x12, 0x0B, + 0x12, 0x01, 0x04, 0x01, 0x01, 0x06, 0x0D, 0x0F, 0x0E, 0x0C, 0x24, 0x0C, + 0x18, 0x1B, 0x1C, 0x1B, 0x1B, 0x12, 0x26, 0x1E, 0x1A, 0x1C, 0x3C, 0x30, + 0x26, 0x0E, 0x1C, 0x12, 0x17, 0x10, 0x09, 0x10, 0x09, 0x0E, 0x0F, 0x07, + 0x15, 0x06, 0x0A, 0x05, 0x08, 0x13, 0x06, 0x01, 0x12, 0x04, 0x01, 0x03, + 0x04, 0x01, 0x06, 0x01, 0x01, 0x02, 0x0C, 0x06, 0x09, 0x09, 0x01, 0x06, + 0x08, 0x0A, 0x07, 0x04, 0x08, 0x08, 0x02, 0x02, 0x02, 0x02, 0x02, 0x11, + 0x11, 0x0F, 0x12, 0x0F, 0x0F, 0x09, 0x13, 0x07, 0x01, 0x03, 0x13, 0x48, + 0x13, 0x0B, 0x28, 0x0B, 0x3F, 0x48, 0x3F, 0x41, 0x45, 0x20, 0x3E, 0x20, + 0x13, 0x13, 0x10, 0x16, 0x0F, 0x11, 0x14, 0x0B, 0x26, 0x1D, 0x20, 0x1C, + 0x07, 0x09, 0x08, 0x05, 0x22, 0x11, 0x1C, 0x01, 0xEF, 0x01, 0x04, 0x01, + 0x03, 0x07, 0x03, 0x0A, 0x02, 0x05, 0x0E, 0x01, 0x02, 0x02, 0x01, 0x01, + 0x01, 0x04, 0x01, 0x01, 0x01, 0x02, 0x02, 0x03, 0x04, 0x01, 0x02, 0x03, + 0x02, 0x01, 0x02, 0x03, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x02, 0x03, + 0x01, 0x01, 0x04, 0x01, 0x02, 0x01, 0x01, 0x03, 0x04, 0x01, 0x02, 0x01, + 0x01, 0x04, 0x02, 0x01, 0x04, 0x0C, 0x05, 0x06, 0x02, 0x01, 0x03, 0x01, + 0x04, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x02, 0x01, 0x01, 0x01, 0x03, + 0x03, 0x01, 0x01, 0x02, 0x04, 0x03, 0x04, 0x02, 0x01, 0x02, 0x01, 0x02, + 0x01, 0x05, 0x01, 0x01, 0x06, 0x05, 0x01, 0x04, 0x06, 0x02, 0x01, 0x02, + 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x06, + 0x05, 0x01, 0x01, 0x0A, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x03, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x02, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x02, 0x01, 0x02, 0x03, 0x03, + 0x04, 0x02, 0x04, 0x03, 0x03, 0x01, 0x03, 0x01, 0x01, 0x01, 0x04, 0x01, + 0x04, 0x03, 0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x05, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x10, 0x13, 0x0B, 0x17, 0x01, 0x02, 0x01, 0x02, 0x0D, 0x04, 0x0B, + 0x08, 0x06, 0x04, 0x01, 0x08, 0x01, 0x05, 0x02, 0x05, 0x03, 0x04, 0x02, + 0x03, 0x07, 0x02, 0x02, 0x03, 0x03, 0x01, 0x03, 0x03, 0x02, 0x02, 0x03, + 0x01, 0x05, 0x02, 0x02, 0x03, 0x01, 0x05, 0x01, 0x05, 0x06, 0x01, 0x01, + 0x01, 0x02, 0x03, 0x0C, 0x02, 0x02, 0x02, 0x02, 0x06, 0x05, 0x03, 0x0A, + 0x0C, 0x0C, 0x10, 0x08, 0x01, 0x05, 0x02, 0x03, 0x08, 0x01, 0x05, 0x09, + 0x04, 0x0A, 0x04, 0x02, 0x03, 0x08, 0x1A, 0x13, 0x1A, 0x12, 0x07, 0x02, + 0x01, 0x08, 0x05, 0x09, 0x04, 0x0D, 0x03, 0x07, 0x0C, 0x0A, 0x06, 0x04, + 0x0C, 0x03, 0x02, 0x05, 0x01, 0x03, 0x06, 0x01, 0x06, 0x06, 0x01, 0x02, + 0x02, 0x02, 0x03, 0x03, 0x0A, 0x07, 0x0A, 0x06, 0x02, 0x04, 0x01, 0x01, + 0x03, 0x02, 0x05, 0x01, 0x06, 0x04, 0x08, 0x0F, 0x05, 0x01, 0x0F, 0x04, + 0x06, 0x07, 0x08, 0x04, 0x0F, 0x0E, 0x0B, 0x14, 0x01, 0x03, 0x07, 0x03, + 0x03, 0x0B, 0x0C, 0x0E, 0x06, 0x06, 0x06, 0x05, 0x09, 0x0E, 0x0E, 0x12, + 0x09, 0x04, 0x08, 0x08, 0x05, 0x01, 0x01, 0x01, 0x06, 0x09, 0x02, 0x04, + 0x02, 0x01, 0x01, 0x07, 0x07, 0x0E, 0x05, 0x02, 0x01, 0x01, 0x01, 0x05, + 0x01, 0x06, 0x06, 0x02, 0x0C, 0x0E, 0x11, 0x16, 0x09, 0x07, 0x07, 0x0B, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x50, 0x01, 0x0D, 0x08, 0x54, + 0x02, 0x71, 0x01, 0x5E, 0x01, 0x6D, 0x01, 0x7C, 0x01, 0x8C, 0x01, 0x9A, + 0x01, 0xAA, 0x01, 0xB4, 0x01, 0xBE, 0x01, 0xCD, 0x01, 0xF2, 0x00, 0x00, + 0x01, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x23, + 0x26, 0x27, 0x26, 0x23, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x0E, 0x01, + 0x23, 0x06, 0x07, 0x06, 0x27, 0x2E, 0x01, 0x2F, 0x01, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x22, 0x06, + 0x23, 0x06, 0x23, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x27, 0x22, 0x26, 0x23, 0x22, 0x27, 0x26, 0x27, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x23, 0x22, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x3F, 0x01, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x32, + 0x1E, 0x01, 0x33, 0x32, 0x16, 0x33, 0x16, 0x33, 0x32, 0x17, 0x16, 0x15, + 0x16, 0x17, 0x16, 0x17, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x22, + 0x26, 0x23, 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x0F, 0x01, 0x06, 0x07, 0x06, 0x17, 0x1E, 0x03, 0x17, 0x16, + 0x17, 0x16, 0x37, 0x32, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x3E, 0x01, + 0x3F, 0x01, 0x3E, 0x01, 0x33, 0x3E, 0x01, 0x33, 0x36, 0x17, 0x16, 0x17, + 0x16, 0x17, 0x16, 0x17, 0x16, 0x3B, 0x01, 0x32, 0x37, 0x32, 0x17, 0x16, + 0x17, 0x14, 0x17, 0x16, 0x17, 0x16, 0x15, 0x0E, 0x01, 0x15, 0x0E, 0x02, + 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x27, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x34, 0x36, 0x35, 0x36, 0x35, + 0x36, 0x35, 0x34, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x07, + 0x36, 0x37, 0x36, 0x3B, 0x01, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x37, 0x36, 0x35, 0x34, 0x36, 0x35, 0x34, 0x17, 0x33, 0x16, 0x32, 0x17, + 0x1E, 0x01, 0x17, 0x32, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x37, 0x32, 0x36, 0x33, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x3F, 0x01, 0x0E, 0x01, 0x23, 0x07, + 0x05, 0x37, 0x06, 0x26, 0x37, 0x36, 0x16, 0x17, 0x16, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x15, 0x37, 0x06, 0x27, 0x26, 0x37, 0x36, 0x17, 0x16, 0x17, + 0x16, 0x07, 0x0E, 0x01, 0x0F, 0x01, 0x25, 0x06, 0x27, 0x26, 0x37, 0x36, + 0x17, 0x16, 0x17, 0x16, 0x07, 0x14, 0x06, 0x0F, 0x01, 0x31, 0x17, 0x37, + 0x06, 0x27, 0x26, 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, 0x07, + 0x05, 0x06, 0x27, 0x26, 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, + 0x07, 0x06, 0x15, 0x31, 0x37, 0x06, 0x27, 0x26, 0x37, 0x36, 0x17, 0x16, + 0x07, 0x06, 0x25, 0x06, 0x27, 0x26, 0x37, 0x36, 0x17, 0x16, 0x07, 0x06, + 0x17, 0x0E, 0x01, 0x23, 0x06, 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, 0x17, + 0x16, 0x07, 0x37, 0x25, 0x22, 0x2E, 0x02, 0x23, 0x32, 0x16, 0x17, 0x16, + 0x32, 0x17, 0x16, 0x32, 0x17, 0x32, 0x16, 0x17, 0x33, 0x32, 0x17, 0x32, + 0x17, 0x32, 0x1E, 0x01, 0x17, 0x27, 0x26, 0x22, 0x27, 0x2E, 0x01, 0x23, + 0x22, 0x26, 0x23, 0x08, 0x19, 0x21, 0x45, 0x30, 0x36, 0x1C, 0x18, 0x17, + 0x1B, 0x02, 0x08, 0x01, 0x08, 0x03, 0x05, 0x02, 0x0A, 0x08, 0x1E, 0x07, + 0x1D, 0x11, 0x0C, 0x2C, 0x0B, 0x2F, 0x15, 0x0F, 0x1A, 0x06, 0x1C, 0x06, + 0x33, 0x1A, 0x19, 0x10, 0x12, 0x10, 0x08, 0x03, 0x06, 0x05, 0x0B, 0x03, + 0x08, 0x0B, 0x02, 0x0A, 0x03, 0x0A, 0x06, 0x0A, 0x05, 0x06, 0x03, 0x07, + 0x0F, 0x10, 0x0E, 0x09, 0x22, 0x06, 0x18, 0x1B, 0x07, 0x1A, 0x06, 0x14, + 0x13, 0x0C, 0x16, 0x11, 0x12, 0x11, 0x20, 0x20, 0x11, 0x22, 0x44, 0x23, + 0x44, 0x3A, 0x2C, 0x3C, 0x28, 0x0D, 0x31, 0x0C, 0x29, 0x1F, 0x0F, 0x0A, + 0x04, 0x12, 0x04, 0x09, 0x14, 0x11, 0x0A, 0x02, 0x05, 0x01, 0x02, 0x05, + 0x01, 0x06, 0x06, 0x06, 0x03, 0x05, 0x0B, 0x05, 0x0B, 0x0C, 0x06, 0x07, + 0x0C, 0x15, 0x0E, 0x07, 0x22, 0x11, 0x11, 0x22, 0x2E, 0x18, 0x22, 0x26, + 0x24, 0x13, 0x12, 0x24, 0x09, 0x28, 0x09, 0x0A, 0x24, 0x0A, 0x29, 0x36, + 0x2A, 0x34, 0x09, 0x22, 0x10, 0x22, 0x08, 0x03, 0x0F, 0x04, 0x0E, 0x07, + 0x01, 0x02, 0x01, 0x04, 0x02, 0x02, 0x04, 0x18, 0x14, 0x16, 0x16, 0x09, + 0x26, 0x09, 0x0A, 0x25, 0x09, 0x30, 0x30, 0x2C, 0x34, 0x4B, 0x4B, 0x4C, + 0x45, 0x0D, 0x30, 0x0D, 0x27, 0x20, 0x18, 0x0C, 0x09, 0x05, 0x10, 0x03, + 0x07, 0x04, 0x04, 0x01, 0x0A, 0x0D, 0x0A, 0x12, 0x04, 0x01, 0x01, 0x03, + 0x03, 0x08, 0x03, 0x08, 0x1B, 0x25, 0x2C, 0x15, 0x2F, 0x33, 0x11, 0x42, + 0x11, 0x14, 0x1C, 0x20, 0x1E, 0x1C, 0x2A, 0x0B, 0x2C, 0x0A, 0x0B, 0x2B, + 0x0B, 0x16, 0x1A, 0x0E, 0x21, 0x1C, 0x0F, 0x0D, 0x1F, 0x03, 0x08, 0x0A, + 0x07, 0x05, 0x07, 0x03, 0x04, 0x03, 0x04, 0x06, 0x02, 0x02, 0x01, 0x03, + 0x01, 0x02, 0x04, 0x01, 0x02, 0x03, 0x05, 0x05, 0x03, 0x08, 0x08, 0x02, + 0x11, 0x04, 0x05, 0x09, 0x0E, 0x12, 0x12, 0x0A, 0x04, 0x01, 0x04, 0x01, + 0x01, 0x01, 0x09, 0x01, 0x04, 0x06, 0x07, 0x05, 0x04, 0x03, 0x04, 0x05, + 0x06, 0x03, 0x09, 0x04, 0x04, 0x04, 0x02, 0x01, 0x04, 0x01, 0x19, 0x16, + 0x02, 0x04, 0x0B, 0x01, 0x07, 0x02, 0x05, 0x17, 0x06, 0x05, 0x18, 0x06, + 0x44, 0x23, 0x25, 0x42, 0x08, 0x1F, 0x07, 0x16, 0x19, 0x10, 0x20, 0x18, + 0x18, 0x08, 0x23, 0x09, 0x1C, 0x16, 0x2E, 0x15, 0x1F, 0x1A, 0x05, 0x12, + 0x05, 0x1B, 0x05, 0x14, 0x04, 0x1E, 0xF8, 0x93, 0x01, 0x0E, 0x18, 0x13, + 0x08, 0x0E, 0x02, 0x01, 0x02, 0x01, 0x02, 0x01, 0x01, 0x49, 0x0E, 0x0C, + 0x0D, 0x11, 0x07, 0x09, 0x08, 0x03, 0x01, 0x02, 0x01, 0x02, 0x01, 0x01, + 0x02, 0x04, 0x0E, 0x0D, 0x0E, 0x11, 0x08, 0x09, 0x08, 0x03, 0x02, 0x02, + 0x03, 0x01, 0x02, 0x48, 0x01, 0x0D, 0x0D, 0x0E, 0x11, 0x07, 0x09, 0x08, + 0x03, 0x03, 0x02, 0x03, 0x02, 0xFD, 0xF6, 0x0D, 0x0D, 0x0E, 0x11, 0x06, + 0x09, 0x06, 0x05, 0x04, 0x02, 0x01, 0x04, 0x01, 0x3B, 0x0C, 0x0E, 0x0D, + 0x0D, 0x0C, 0x0E, 0x0D, 0x0D, 0x03, 0x02, 0x13, 0x0E, 0x0C, 0x0D, 0x11, + 0x0C, 0x0B, 0x0A, 0x0B, 0x03, 0x43, 0x01, 0x06, 0x01, 0x06, 0x02, 0x07, + 0x05, 0x05, 0x03, 0x09, 0x12, 0x11, 0x0E, 0x01, 0x01, 0xD1, 0x01, 0x04, + 0x04, 0x04, 0x01, 0x10, 0x43, 0x11, 0x10, 0x42, 0x11, 0x0B, 0x2C, 0x0B, + 0x0B, 0x2B, 0x0B, 0x14, 0x0C, 0x07, 0x08, 0x02, 0x01, 0x03, 0x03, 0x02, + 0x5D, 0x10, 0x3E, 0x0F, 0x10, 0x3E, 0x10, 0x0F, 0x3F, 0x10, 0x02, 0x15, + 0x03, 0x04, 0x04, 0x0E, 0x08, 0x0B, 0x0B, 0x0F, 0x02, 0x05, 0x04, 0x03, + 0x03, 0x02, 0x02, 0x04, 0x02, 0x06, 0x01, 0x01, 0x03, 0x04, 0x01, 0x01, + 0x02, 0x01, 0x02, 0x01, 0x06, 0x01, 0x05, 0x04, 0x02, 0x04, 0x02, 0x01, + 0x02, 0x05, 0x0B, 0x02, 0x06, 0x02, 0x04, 0x02, 0x01, 0x05, 0x06, 0x05, + 0x0A, 0x0A, 0x08, 0x04, 0x03, 0x0B, 0x02, 0x09, 0x02, 0x02, 0x06, 0x03, + 0x0A, 0x08, 0x01, 0x01, 0x04, 0x02, 0x02, 0x02, 0x06, 0x07, 0x09, 0x0D, + 0x0D, 0x04, 0x10, 0x04, 0x0D, 0x0F, 0x06, 0x07, 0x03, 0x09, 0x02, 0x06, + 0x0C, 0x09, 0x0D, 0x02, 0x06, 0x02, 0x01, 0x07, 0x02, 0x06, 0x06, 0x08, + 0x03, 0x06, 0x0B, 0x06, 0x0B, 0x0A, 0x04, 0x07, 0x08, 0x0F, 0x08, 0x05, + 0x12, 0x08, 0x07, 0x10, 0x14, 0x09, 0x0E, 0x07, 0x08, 0x05, 0x04, 0x06, + 0x02, 0x04, 0x02, 0x01, 0x05, 0x02, 0x05, 0x02, 0x01, 0x03, 0x01, 0x02, + 0x02, 0x02, 0x02, 0x08, 0x05, 0x05, 0x08, 0x03, 0x07, 0x04, 0x01, 0x0D, + 0x0B, 0x03, 0x01, 0x04, 0x01, 0x04, 0x04, 0x01, 0x01, 0x07, 0x09, 0x0F, + 0x11, 0x1D, 0x05, 0x16, 0x05, 0x11, 0x16, 0x0F, 0x07, 0x0B, 0x05, 0x11, + 0x04, 0x08, 0x06, 0x04, 0x01, 0x0B, 0x0A, 0x0A, 0x03, 0x07, 0x05, 0x03, + 0x04, 0x06, 0x02, 0x06, 0x11, 0x0F, 0x10, 0x09, 0x13, 0x0E, 0x05, 0x12, + 0x04, 0x05, 0x02, 0x02, 0x02, 0x02, 0x03, 0x01, 0x03, 0x01, 0x01, 0x02, + 0x05, 0x03, 0x04, 0x04, 0x01, 0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x07, + 0x02, 0x07, 0x0C, 0x05, 0x0C, 0x06, 0x05, 0x11, 0x02, 0x03, 0x08, 0x0A, + 0x03, 0x04, 0x03, 0x05, 0x03, 0x03, 0x06, 0x05, 0x02, 0x11, 0x17, 0x19, + 0x14, 0x0C, 0x09, 0x0A, 0x07, 0x04, 0x03, 0x01, 0x04, 0x01, 0x01, 0x02, + 0x03, 0x01, 0x05, 0x01, 0x06, 0x01, 0x02, 0x02, 0x02, 0x05, 0x04, 0x07, + 0x04, 0x02, 0x02, 0x01, 0x03, 0x02, 0x03, 0x03, 0x02, 0x01, 0x02, 0x01, + 0x03, 0x01, 0x04, 0x01, 0x03, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x03, + 0x01, 0x08, 0x04, 0x06, 0x07, 0x01, 0x04, 0x01, 0x04, 0x02, 0x01, 0x04, + 0x05, 0x02, 0x02, 0x02, 0x08, 0x12, 0x0B, 0x0F, 0x1D, 0x06, 0x16, 0x05, + 0x21, 0x01, 0x03, 0x06, 0x6E, 0x02, 0x0F, 0x24, 0x07, 0x05, 0x0A, 0x07, + 0x03, 0x05, 0x01, 0x06, 0x01, 0x01, 0x01, 0x1B, 0x0E, 0x10, 0x10, 0x0B, + 0x04, 0x03, 0x05, 0x07, 0x03, 0x06, 0x02, 0x06, 0x01, 0x01, 0x7D, 0x0E, + 0x10, 0x0F, 0x0B, 0x05, 0x02, 0x03, 0x08, 0x05, 0x05, 0x01, 0x07, 0x02, + 0x02, 0x04, 0x01, 0x0D, 0x0F, 0x0F, 0x0B, 0x04, 0x01, 0x03, 0x08, 0x04, + 0x06, 0x05, 0x05, 0xCD, 0x0D, 0x0F, 0x0F, 0x0B, 0x04, 0x02, 0x01, 0x07, + 0x05, 0x06, 0x03, 0x08, 0x01, 0x01, 0x1B, 0x0E, 0x0E, 0x0D, 0x0C, 0x0C, + 0x0C, 0x0D, 0x0C, 0x03, 0x56, 0x0E, 0x10, 0x10, 0x09, 0x06, 0x0B, 0x0A, + 0x0C, 0x03, 0x04, 0x01, 0x03, 0x02, 0x01, 0x02, 0x07, 0x08, 0x07, 0x13, + 0x0C, 0x0D, 0x0D, 0x01, 0x3E, 0x03, 0x02, 0x03, 0x02, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x03, 0x01, 0x03, 0x01, 0x01, + 0x01, 0x02, 0x02, 0x00, 0x00, 0x08, 0x00, 0x54, 0x00, 0x86, 0x08, 0x54, + 0x02, 0xF5, 0x00, 0xA1, 0x00, 0xC5, 0x00, 0xE9, 0x01, 0x16, 0x01, 0x9F, + 0x01, 0xC4, 0x01, 0xE9, 0x02, 0x16, 0x00, 0x00, 0x01, 0x26, 0x27, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x22, + 0x27, 0x22, 0x27, 0x2B, 0x01, 0x26, 0x27, 0x26, 0x23, 0x26, 0x23, 0x22, + 0x27, 0x2E, 0x03, 0x27, 0x26, 0x07, 0x06, 0x0F, 0x01, 0x14, 0x06, 0x15, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, + 0x26, 0x3D, 0x01, 0x26, 0x37, 0x36, 0x37, 0x36, 0x37, 0x34, 0x26, 0x27, + 0x26, 0x27, 0x26, 0x27, 0x26, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x15, 0x14, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x27, 0x26, 0x37, 0x34, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x17, + 0x16, 0x1F, 0x01, 0x16, 0x17, 0x16, 0x17, 0x14, 0x17, 0x16, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x26, 0x27, 0x2E, 0x01, 0x2F, 0x01, 0x16, 0x17, + 0x25, 0x36, 0x37, 0x36, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x07, + 0x06, 0x15, 0x06, 0x07, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, 0x37, 0x31, 0x35, 0x31, 0x15, + 0x13, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x1E, 0x01, 0x14, 0x16, 0x15, 0x16, 0x07, 0x06, 0x0F, 0x01, 0x3F, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x23, 0x22, 0x27, 0x26, 0x2F, 0x01, + 0x26, 0x37, 0x34, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x37, 0x36, 0x37, 0x06, 0x25, 0x26, 0x27, + 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, + 0x22, 0x27, 0x26, 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x26, 0x27, 0x26, 0x35, 0x34, 0x37, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x37, 0x36, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, + 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x0F, 0x01, 0x06, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x1E, 0x01, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x14, 0x17, 0x14, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x3F, 0x01, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x25, 0x36, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x02, 0x17, 0x16, + 0x07, 0x0E, 0x02, 0x07, 0x06, 0x07, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x36, 0x37, 0x31, 0x35, 0x31, + 0x15, 0x13, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x14, 0x1E, 0x01, 0x14, 0x17, 0x16, 0x07, 0x06, 0x0F, + 0x01, 0x3F, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x23, 0x22, 0x27, 0x26, + 0x2F, 0x01, 0x26, 0x37, 0x34, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, + 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x37, 0x36, 0x37, 0x06, 0x03, + 0xE8, 0x23, 0x29, 0x28, 0x2B, 0x26, 0x2F, 0x20, 0x36, 0x17, 0x27, 0x0B, + 0x2A, 0x0A, 0x03, 0x0D, 0x04, 0x0E, 0x07, 0x06, 0x06, 0x03, 0x02, 0x01, + 0x04, 0x08, 0x05, 0x07, 0x03, 0x01, 0x06, 0x02, 0x08, 0x01, 0x05, 0x03, + 0x05, 0x01, 0x03, 0x04, 0x06, 0x03, 0x06, 0x0E, 0x14, 0x18, 0x19, 0x1C, + 0x0F, 0x0F, 0x0E, 0x05, 0x03, 0x02, 0x0A, 0x07, 0x0C, 0x03, 0x02, 0x0A, + 0x0E, 0x0C, 0x0C, 0x03, 0x11, 0x0E, 0x0A, 0x07, 0x07, 0x02, 0x08, 0x02, + 0x18, 0x0B, 0x11, 0x09, 0x0B, 0x02, 0x02, 0x02, 0x01, 0x0C, 0x0A, 0x06, + 0x02, 0x0B, 0x03, 0x04, 0x0E, 0x04, 0x0A, 0x12, 0x12, 0x15, 0x1C, 0x03, + 0x05, 0x08, 0x04, 0x02, 0x01, 0x04, 0x07, 0x01, 0x02, 0x04, 0x02, 0x05, + 0x01, 0x03, 0x01, 0x07, 0x08, 0x12, 0x11, 0x12, 0x12, 0x10, 0x11, 0x0C, + 0x17, 0x0D, 0x02, 0x02, 0x01, 0x07, 0x0A, 0x10, 0x04, 0x0C, 0x12, 0x14, + 0x0C, 0x1E, 0x20, 0x28, 0x15, 0x34, 0x1B, 0x2B, 0x23, 0x44, 0x40, 0x42, + 0x3A, 0x18, 0x02, 0x05, 0x14, 0x03, 0x11, 0x01, 0x02, 0xFC, 0xC8, 0x02, + 0x09, 0x07, 0x0C, 0x0B, 0x08, 0x03, 0x0B, 0x02, 0x0B, 0x08, 0x0A, 0x01, + 0x05, 0x04, 0x0A, 0x02, 0x0A, 0x03, 0x07, 0x07, 0x02, 0x09, 0x03, 0x08, + 0x04, 0x05, 0x09, 0x04, 0x09, 0x39, 0x09, 0x09, 0x07, 0x0B, 0x08, 0x04, + 0x08, 0x04, 0x01, 0x05, 0x05, 0x07, 0x09, 0x07, 0x03, 0x0B, 0x02, 0x09, + 0x16, 0x05, 0x04, 0x01, 0x02, 0x01, 0x01, 0x02, 0x02, 0x01, 0x06, 0x07, + 0x05, 0x05, 0x01, 0x06, 0x18, 0x01, 0x13, 0x05, 0x0D, 0x0E, 0x10, 0x08, + 0x07, 0x02, 0x03, 0x01, 0x01, 0x02, 0x01, 0x02, 0x02, 0x06, 0x06, 0x14, + 0x07, 0x05, 0x10, 0x05, 0x19, 0x01, 0x06, 0x15, 0x05, 0x0E, 0x0F, 0x04, + 0x01, 0x01, 0x05, 0x0B, 0x0A, 0x08, 0x0F, 0x0D, 0x02, 0x02, 0x07, 0x07, + 0x58, 0x24, 0x3A, 0x32, 0x35, 0x13, 0x24, 0x1D, 0x1B, 0x2C, 0x16, 0x21, + 0x21, 0x16, 0x2E, 0x23, 0x1D, 0x09, 0x07, 0x09, 0x08, 0x07, 0x01, 0x01, + 0x04, 0x07, 0x11, 0x10, 0x1E, 0x15, 0x3C, 0x0D, 0x0B, 0x07, 0x02, 0x06, + 0x01, 0x05, 0x02, 0x03, 0x06, 0x05, 0x04, 0x0B, 0x02, 0x0A, 0x07, 0x07, + 0x11, 0x11, 0x0F, 0x08, 0x04, 0x07, 0x03, 0x07, 0x0C, 0x07, 0x0C, 0x11, + 0x09, 0x0B, 0x04, 0x03, 0x02, 0x02, 0x02, 0x03, 0x03, 0x12, 0x05, 0x0C, + 0x08, 0x09, 0x01, 0x12, 0x07, 0x10, 0x1A, 0x13, 0x0F, 0x11, 0x07, 0x08, + 0x10, 0x06, 0x06, 0x02, 0x02, 0x04, 0x08, 0x26, 0x25, 0x1E, 0x0C, 0x0F, + 0x0C, 0x0A, 0x05, 0x01, 0x02, 0x06, 0x05, 0x09, 0x07, 0x01, 0x04, 0x01, + 0x03, 0x0A, 0x12, 0x1D, 0x36, 0x1D, 0x0C, 0x35, 0x0E, 0x0D, 0x34, 0x0D, + 0x21, 0x2E, 0x2C, 0x21, 0x26, 0x25, 0x30, 0x17, 0x08, 0x03, 0x02, 0x07, + 0x01, 0xFC, 0x98, 0x03, 0x09, 0x07, 0x16, 0x08, 0x02, 0x06, 0x07, 0x02, + 0x0A, 0x08, 0x02, 0x04, 0x03, 0x01, 0x01, 0x04, 0x04, 0x0B, 0x03, 0x08, + 0x03, 0x05, 0x0A, 0x02, 0x09, 0x03, 0x08, 0x08, 0x09, 0x07, 0x05, 0x39, + 0x09, 0x09, 0x08, 0x09, 0x07, 0x06, 0x08, 0x03, 0x01, 0x05, 0x01, 0x05, + 0x08, 0x05, 0x0A, 0x03, 0x0A, 0x03, 0x0A, 0x16, 0x04, 0x04, 0x01, 0x02, + 0x01, 0x02, 0x02, 0x01, 0x01, 0x06, 0x08, 0x04, 0x05, 0x01, 0x06, 0x18, + 0x01, 0x13, 0x05, 0x0D, 0x0E, 0x10, 0x08, 0x07, 0x02, 0x03, 0x01, 0x01, + 0x02, 0x02, 0x02, 0x08, 0x04, 0x0B, 0x0A, 0x07, 0x05, 0x11, 0x04, 0x19, + 0x01, 0x06, 0x15, 0x05, 0x0E, 0x0F, 0x05, 0x02, 0x01, 0x05, 0x0A, 0x0B, + 0x0F, 0x08, 0x0D, 0x02, 0x02, 0x07, 0x01, 0xE1, 0x17, 0x11, 0x10, 0x0B, + 0x0A, 0x06, 0x04, 0x06, 0x03, 0x04, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x02, 0x01, 0x02, 0x05, 0x03, 0x0B, 0x04, 0x09, 0x03, 0x08, 0x02, + 0x02, 0x08, 0x12, 0x03, 0x0C, 0x03, 0x1A, 0x0C, 0x11, 0x10, 0x14, 0x0A, + 0x0A, 0x07, 0x04, 0x0C, 0x0B, 0x11, 0x0A, 0x0A, 0x13, 0x18, 0x13, 0x0D, + 0x1A, 0x06, 0x0A, 0x06, 0x14, 0x12, 0x0E, 0x09, 0x02, 0x0D, 0x09, 0x09, + 0x07, 0x0C, 0x04, 0x0E, 0x04, 0x2A, 0x16, 0x23, 0x21, 0x2E, 0x2B, 0x20, + 0x3A, 0x22, 0x12, 0x18, 0x19, 0x16, 0x0A, 0x06, 0x15, 0x05, 0x07, 0x1C, + 0x07, 0x15, 0x12, 0x10, 0x15, 0x1E, 0x04, 0x05, 0x0C, 0x09, 0x0B, 0x09, + 0x07, 0x0C, 0x02, 0x04, 0x0E, 0x03, 0x0B, 0x0A, 0x11, 0x10, 0x13, 0x0D, + 0x12, 0x08, 0x08, 0x02, 0x01, 0x06, 0x09, 0x0A, 0x17, 0x0F, 0x0E, 0x10, + 0x10, 0x14, 0x0A, 0x12, 0x30, 0x03, 0x08, 0x01, 0x02, 0x01, 0x01, 0x05, + 0x04, 0x03, 0x06, 0x03, 0x05, 0x08, 0x0F, 0x1B, 0x1C, 0x21, 0x13, 0x01, + 0x03, 0x0C, 0x02, 0x0C, 0x01, 0x01, 0xB1, 0x05, 0x12, 0x0F, 0x02, 0x02, + 0x06, 0x02, 0x09, 0x03, 0x08, 0x1D, 0x27, 0x02, 0x0A, 0x03, 0x04, 0x04, + 0x02, 0x04, 0x02, 0x04, 0x03, 0x02, 0x04, 0x02, 0x03, 0x07, 0x08, 0x0F, + 0x06, 0x0F, 0x01, 0x01, 0xFE, 0x2F, 0x09, 0x02, 0x01, 0x0C, 0x0A, 0x09, + 0x0C, 0x07, 0x05, 0x07, 0x08, 0x05, 0x05, 0x06, 0x02, 0x07, 0x01, 0x06, + 0x06, 0x0C, 0x09, 0x08, 0x0C, 0x05, 0x03, 0x09, 0x04, 0x0A, 0x03, 0x07, + 0x05, 0x04, 0x05, 0x05, 0x02, 0xBB, 0x15, 0x01, 0x11, 0x04, 0x0B, 0x14, + 0x13, 0x18, 0x2D, 0x0F, 0x10, 0x0B, 0x14, 0x0B, 0x0D, 0x0F, 0x06, 0x08, + 0x02, 0x05, 0x04, 0x0E, 0x04, 0x16, 0x01, 0x05, 0x12, 0x04, 0x0D, 0x12, + 0x06, 0x03, 0x03, 0x05, 0x0D, 0x0B, 0x07, 0x0F, 0x0D, 0x02, 0x02, 0x07, + 0x40, 0x16, 0x1E, 0x18, 0x0B, 0x04, 0x08, 0x06, 0x03, 0x04, 0x03, 0x04, + 0x02, 0x01, 0x02, 0x0C, 0x03, 0x18, 0x18, 0x14, 0x0D, 0x0F, 0x0B, 0x12, + 0x1E, 0x15, 0x14, 0x0D, 0x0A, 0x10, 0x15, 0x13, 0x19, 0x1B, 0x12, 0x06, + 0x0C, 0x03, 0x0C, 0x03, 0x07, 0x0B, 0x0B, 0x06, 0x13, 0x03, 0x0E, 0x06, + 0x09, 0x0F, 0x0E, 0x03, 0x02, 0x09, 0x0C, 0x03, 0x0B, 0x18, 0x0C, 0x18, + 0x21, 0x1B, 0x1E, 0x21, 0x2D, 0x17, 0x17, 0x36, 0x1B, 0x2A, 0x24, 0x0B, + 0x16, 0x11, 0x11, 0x01, 0x22, 0x0C, 0x1F, 0x0C, 0x0A, 0x12, 0x12, 0x12, + 0x12, 0x1C, 0x11, 0x0F, 0x15, 0x14, 0x10, 0x27, 0x0A, 0x0A, 0x14, 0x08, + 0x0F, 0x0C, 0x11, 0x09, 0x0A, 0x07, 0x0C, 0x06, 0x17, 0x18, 0x11, 0x0C, + 0x01, 0x07, 0x07, 0x0A, 0x01, 0x03, 0x05, 0x02, 0x05, 0x01, 0x07, 0x02, + 0x02, 0x07, 0x01, 0x04, 0x0C, 0x0C, 0x0D, 0x0F, 0x12, 0x18, 0x0D, 0x06, + 0x03, 0x01, 0x06, 0x01, 0xCF, 0x05, 0x12, 0x0F, 0x04, 0x06, 0x02, 0x05, + 0x05, 0x02, 0x08, 0x1D, 0x08, 0x13, 0x0B, 0x03, 0x09, 0x04, 0x05, 0x05, + 0x02, 0x04, 0x02, 0x03, 0x04, 0x02, 0x04, 0x02, 0x03, 0x0E, 0x10, 0x0D, + 0x08, 0x01, 0x01, 0xFE, 0x2F, 0x09, 0x02, 0x02, 0x0D, 0x08, 0x0B, 0x0C, + 0x07, 0x02, 0x08, 0x02, 0x08, 0x05, 0x03, 0x08, 0x02, 0x07, 0x01, 0x06, + 0x06, 0x0C, 0x09, 0x08, 0x0C, 0x05, 0x02, 0x09, 0x06, 0x0A, 0x02, 0x07, + 0x05, 0x04, 0x05, 0x05, 0x02, 0xBB, 0x15, 0x01, 0x11, 0x04, 0x0B, 0x14, + 0x13, 0x18, 0x2D, 0x0F, 0x10, 0x0B, 0x14, 0x0B, 0x1A, 0x08, 0x08, 0x01, + 0x01, 0x05, 0x04, 0x0E, 0x04, 0x16, 0x01, 0x05, 0x12, 0x04, 0x0D, 0x12, + 0x06, 0x03, 0x03, 0x05, 0x0D, 0x0B, 0x0F, 0x07, 0x0D, 0x02, 0x02, 0x07, + 0x00, 0x02, 0x00, 0x5D, 0x00, 0x26, 0x06, 0x15, 0x03, 0x5B, 0x00, 0xF9, + 0x01, 0x18, 0x00, 0x00, 0x01, 0x34, 0x26, 0x35, 0x26, 0x35, 0x34, 0x36, + 0x37, 0x34, 0x23, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x07, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x23, 0x06, 0x23, 0x22, 0x27, 0x26, 0x07, + 0x0E, 0x01, 0x07, 0x23, 0x06, 0x27, 0x26, 0x37, 0x36, 0x2B, 0x02, 0x26, + 0x22, 0x27, 0x2B, 0x01, 0x22, 0x27, 0x22, 0x07, 0x06, 0x23, 0x22, 0x27, + 0x26, 0x23, 0x22, 0x26, 0x23, 0x26, 0x23, 0x26, 0x22, 0x27, 0x23, 0x22, + 0x27, 0x26, 0x2B, 0x01, 0x06, 0x23, 0x22, 0x06, 0x07, 0x22, 0x07, 0x06, + 0x27, 0x2E, 0x02, 0x27, 0x26, 0x23, 0x22, 0x27, 0x26, 0x07, 0x06, 0x17, + 0x16, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x2B, 0x02, 0x22, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x23, 0x0E, 0x01, 0x23, 0x06, 0x07, 0x06, 0x17, 0x15, + 0x14, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, 0x3B, + 0x01, 0x16, 0x3B, 0x01, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x07, 0x06, + 0x15, 0x14, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x17, 0x14, 0x17, 0x16, 0x17, 0x16, 0x33, 0x16, 0x33, + 0x16, 0x33, 0x16, 0x37, 0x36, 0x37, 0x36, 0x33, 0x26, 0x27, 0x26, 0x3F, + 0x01, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x17, 0x16, 0x33, 0x36, 0x37, 0x32, 0x37, 0x32, 0x3E, 0x02, 0x33, 0x3E, + 0x01, 0x33, 0x36, 0x35, 0x34, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x3B, 0x06, 0x32, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x01, 0x06, 0x2B, 0x01, 0x22, 0x07, 0x06, + 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x35, 0x26, 0x3D, 0x02, 0x34, 0x37, + 0x36, 0x3B, 0x02, 0x32, 0x17, 0x16, 0x15, 0x14, 0x17, 0x16, 0x06, 0x14, + 0x02, 0x02, 0x01, 0x01, 0x0D, 0x0B, 0x03, 0x0B, 0x01, 0x01, 0x05, 0x04, + 0x0C, 0x0B, 0x09, 0x03, 0x0D, 0x04, 0x08, 0x05, 0x04, 0x0C, 0x03, 0x14, + 0x11, 0x06, 0x02, 0x04, 0x01, 0x08, 0x07, 0x02, 0x04, 0x03, 0x01, 0x07, + 0x0D, 0x0E, 0x13, 0x48, 0x13, 0x6E, 0x22, 0x18, 0x0B, 0x05, 0x01, 0x01, + 0x04, 0x07, 0x06, 0x08, 0x04, 0x0F, 0x3E, 0x10, 0x1F, 0x3F, 0x07, 0x1E, + 0x07, 0x2C, 0x0C, 0x05, 0x04, 0x0B, 0x63, 0x21, 0x43, 0x0E, 0x18, 0x10, + 0x0C, 0x07, 0x0C, 0x06, 0x01, 0x04, 0x06, 0x03, 0x0A, 0x05, 0x01, 0x16, + 0x12, 0x04, 0x05, 0x04, 0x04, 0x05, 0x05, 0x1A, 0x10, 0x09, 0x06, 0x07, + 0x14, 0x08, 0x04, 0x04, 0x01, 0x04, 0x01, 0x05, 0x01, 0x02, 0x08, 0x02, + 0x09, 0x02, 0x02, 0x02, 0x06, 0x04, 0x06, 0x02, 0x08, 0x06, 0x01, 0x03, + 0x02, 0x04, 0x01, 0x05, 0x0A, 0x0D, 0x0F, 0x0B, 0x18, 0x12, 0x0B, 0x0B, + 0x04, 0x05, 0x0E, 0x14, 0x06, 0x0C, 0x25, 0x18, 0x0B, 0x1B, 0x1A, 0x06, + 0x03, 0x01, 0x02, 0x08, 0x02, 0x08, 0x03, 0x02, 0x09, 0x0B, 0x12, 0x0F, + 0x0B, 0x0A, 0x05, 0x05, 0x01, 0x05, 0x05, 0x0E, 0x05, 0x09, 0x05, 0x09, + 0x3E, 0x1C, 0x26, 0x34, 0x23, 0x26, 0x26, 0x24, 0x06, 0x07, 0x09, 0x03, + 0x06, 0x02, 0x04, 0x04, 0x08, 0x08, 0x03, 0x06, 0x04, 0x05, 0x18, 0x0C, + 0x17, 0x15, 0x0F, 0x1C, 0x0D, 0x15, 0x13, 0x03, 0x10, 0x06, 0x0E, 0x03, + 0x04, 0x0D, 0x02, 0x05, 0x03, 0x01, 0x09, 0x08, 0x08, 0x0B, 0x0D, 0x08, + 0x12, 0x0E, 0x10, 0x43, 0x42, 0x67, 0x67, 0x67, 0x67, 0x0C, 0x05, 0x06, + 0x05, 0x03, 0x09, 0x02, 0x09, 0x02, 0x04, 0x08, 0x07, 0xFD, 0x02, 0x07, + 0x12, 0x22, 0x07, 0x18, 0x15, 0x0B, 0x0D, 0x02, 0x04, 0x05, 0x02, 0x01, + 0x14, 0x0D, 0x18, 0x22, 0x21, 0x1C, 0x01, 0x01, 0x01, 0x01, 0x02, 0xEE, + 0x03, 0x0E, 0x03, 0x0E, 0x07, 0x03, 0x0C, 0x03, 0x06, 0x03, 0x01, 0x01, + 0x05, 0x09, 0x08, 0x07, 0x03, 0x03, 0x06, 0x02, 0x08, 0x02, 0x05, 0x01, + 0x02, 0x02, 0x04, 0x01, 0x0C, 0x01, 0x01, 0x01, 0x04, 0x06, 0x06, 0x01, + 0x01, 0x01, 0x06, 0x07, 0x03, 0x02, 0x02, 0x01, 0x01, 0x01, 0x08, 0x07, + 0x01, 0x0A, 0x01, 0x01, 0x02, 0x06, 0x01, 0x04, 0x08, 0x03, 0x0C, 0x02, + 0x02, 0x04, 0x05, 0x0C, 0x0D, 0x05, 0x03, 0x10, 0x0B, 0x10, 0x0C, 0x02, + 0x01, 0x02, 0x01, 0x03, 0x01, 0x01, 0x02, 0x02, 0x01, 0x08, 0x0B, 0x08, + 0x09, 0x07, 0x0A, 0x03, 0x0B, 0x0A, 0x07, 0x08, 0x0A, 0x0F, 0x05, 0x11, + 0x03, 0x05, 0x04, 0x03, 0x0A, 0x08, 0x0F, 0x10, 0x04, 0x05, 0x01, 0x02, + 0x02, 0x05, 0x1A, 0x1A, 0x0F, 0x0B, 0x10, 0x0A, 0x06, 0x0E, 0x07, 0x10, + 0x08, 0x05, 0x15, 0x19, 0x32, 0x2A, 0x22, 0x1C, 0x1F, 0x23, 0x19, 0x0A, + 0x12, 0x13, 0x01, 0x01, 0x01, 0x02, 0x01, 0x03, 0x01, 0x08, 0x06, 0x0E, + 0x0E, 0x12, 0x0B, 0x1E, 0x09, 0x14, 0x1D, 0x21, 0x28, 0x15, 0x21, 0x11, + 0x17, 0x11, 0x0A, 0x08, 0x09, 0x02, 0x01, 0x03, 0x02, 0x02, 0x02, 0x01, + 0x03, 0x02, 0x0C, 0x16, 0x16, 0x13, 0x17, 0x15, 0x0E, 0x14, 0x09, 0x06, + 0x0E, 0x0B, 0x01, 0x01, 0x0B, 0x06, 0x1A, 0x07, 0x1D, 0x09, 0x11, 0x13, + 0x13, 0xFE, 0xDD, 0x12, 0x02, 0x02, 0x04, 0x05, 0x02, 0x01, 0x0C, 0x08, + 0x03, 0x03, 0x08, 0x26, 0x24, 0x1A, 0x02, 0x01, 0x18, 0x11, 0x1B, 0x14, + 0x0A, 0x10, 0x00, 0x00, 0x00, 0x04, 0x00, 0x4F, 0x00, 0x26, 0x09, 0x93, + 0x03, 0x5A, 0x00, 0xC0, 0x01, 0x5E, 0x01, 0x86, 0x01, 0xA9, 0x00, 0x00, + 0x01, 0x23, 0x36, 0x3F, 0x01, 0x36, 0x37, 0x36, 0x17, 0x1E, 0x01, 0x32, + 0x16, 0x33, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x17, 0x23, 0x07, 0x06, 0x07, 0x06, + 0x27, 0x23, 0x06, 0x27, 0x23, 0x22, 0x27, 0x26, 0x23, 0x22, 0x27, 0x22, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, 0x17, 0x07, 0x15, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x0F, 0x01, + 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x0F, 0x01, 0x06, 0x07, 0x06, 0x15, + 0x14, 0x17, 0x16, 0x17, 0x14, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x23, + 0x22, 0x07, 0x06, 0x2F, 0x01, 0x26, 0x35, 0x26, 0x35, 0x26, 0x27, 0x26, + 0x27, 0x34, 0x27, 0x26, 0x27, 0x36, 0x27, 0x26, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x2E, 0x01, 0x27, 0x26, 0x35, + 0x3E, 0x01, 0x35, 0x36, 0x37, 0x36, 0x17, 0x16, 0x17, 0x36, 0x37, 0x36, + 0x37, 0x35, 0x36, 0x17, 0x32, 0x16, 0x17, 0x32, 0x16, 0x15, 0x17, 0x32, + 0x37, 0x36, 0x33, 0x16, 0x33, 0x32, 0x17, 0x32, 0x37, 0x32, 0x1F, 0x01, + 0x21, 0x17, 0x26, 0x34, 0x27, 0x26, 0x35, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x17, 0x16, 0x17, 0x36, 0x37, 0x36, 0x33, 0x35, 0x36, 0x17, 0x32, 0x16, + 0x17, 0x16, 0x17, 0x1E, 0x01, 0x15, 0x32, 0x37, 0x36, 0x1F, 0x01, 0x21, + 0x35, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x17, 0x23, 0x07, 0x06, 0x27, 0x26, + 0x23, 0x22, 0x27, 0x22, 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x14, 0x07, 0x06, 0x15, 0x14, 0x17, 0x16, 0x0F, 0x01, 0x15, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x14, 0x17, 0x16, 0x07, 0x06, 0x27, 0x26, 0x2B, 0x02, + 0x27, 0x22, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x35, 0x37, 0x36, + 0x35, 0x26, 0x27, 0x26, 0x27, 0x35, 0x27, 0x34, 0x27, 0x26, 0x37, 0x34, + 0x37, 0x36, 0x37, 0x33, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x27, 0x2E, 0x01, 0x27, 0x26, 0x35, 0x26, 0x37, 0x3E, 0x01, 0x33, 0x36, + 0x37, 0x36, 0x05, 0x23, 0x22, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x17, 0x1E, 0x01, 0x15, 0x16, 0x1F, 0x01, 0x16, 0x17, + 0x16, 0x17, 0x16, 0x33, 0x16, 0x33, 0x36, 0x37, 0x36, 0x37, 0x36, 0x35, + 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x05, 0x22, 0x27, 0x26, 0x07, 0x23, + 0x06, 0x07, 0x06, 0x07, 0x14, 0x06, 0x07, 0x06, 0x17, 0x33, 0x1F, 0x01, + 0x16, 0x17, 0x33, 0x16, 0x32, 0x17, 0x36, 0x37, 0x36, 0x3F, 0x01, 0x27, + 0x26, 0x27, 0x26, 0x27, 0x23, 0x04, 0x89, 0x01, 0x03, 0x05, 0x09, 0x05, + 0x07, 0x0A, 0x06, 0x03, 0x09, 0x04, 0x08, 0x02, 0x05, 0x05, 0x04, 0x02, + 0x01, 0x05, 0x01, 0x04, 0x01, 0x03, 0x04, 0x03, 0x02, 0x01, 0x04, 0x03, + 0x01, 0x51, 0x03, 0x01, 0x03, 0x0D, 0x0C, 0x19, 0x0F, 0x0E, 0x1E, 0x23, + 0x11, 0x12, 0x23, 0x13, 0x09, 0x0F, 0x0E, 0x16, 0x11, 0x0C, 0x14, 0x17, + 0x02, 0x01, 0x02, 0x0A, 0x26, 0x15, 0x23, 0x1A, 0x13, 0x10, 0x11, 0x13, + 0x0B, 0x25, 0x1A, 0x15, 0x17, 0x09, 0x05, 0x06, 0x03, 0x02, 0x0B, 0x03, + 0x12, 0x03, 0x04, 0x03, 0x03, 0x01, 0x04, 0x03, 0x05, 0x07, 0x17, 0x20, + 0x2A, 0x10, 0x29, 0x15, 0x20, 0x1B, 0x0C, 0x01, 0x01, 0x0F, 0x15, 0x10, + 0x12, 0x01, 0x02, 0x01, 0x01, 0x02, 0x03, 0x02, 0x01, 0x06, 0x03, 0x02, + 0x0B, 0x14, 0x02, 0x15, 0x05, 0x02, 0x0C, 0x02, 0x03, 0x0E, 0x0E, 0x07, + 0x07, 0x10, 0x0B, 0x1C, 0x22, 0x0F, 0x09, 0x01, 0x03, 0x01, 0x06, 0x0B, + 0x05, 0x0D, 0x14, 0x0D, 0x0D, 0x07, 0x01, 0x02, 0x01, 0x03, 0x01, 0x03, + 0x01, 0x05, 0x0A, 0x12, 0x08, 0x12, 0x09, 0x14, 0x0C, 0x12, 0x0C, 0x0C, + 0x03, 0x10, 0x04, 0x05, 0x02, 0x04, 0x14, 0x2A, 0x28, 0x15, 0x0C, 0x19, + 0x18, 0x0D, 0x13, 0x0B, 0x10, 0x0E, 0x08, 0x02, 0x11, 0xD6, 0x01, 0x01, + 0x02, 0x01, 0x04, 0x02, 0x05, 0x0F, 0x0C, 0x0D, 0x0C, 0x0D, 0x11, 0x10, + 0x0F, 0x0C, 0x0C, 0x04, 0x10, 0x04, 0x08, 0x01, 0x01, 0x01, 0x54, 0x2B, + 0x2A, 0x56, 0x09, 0x02, 0x0E, 0x03, 0x06, 0x03, 0x04, 0x02, 0x17, 0x16, + 0x17, 0x06, 0x04, 0x05, 0x05, 0x0C, 0x01, 0x02, 0x01, 0x02, 0x01, 0x55, + 0x04, 0x16, 0x1B, 0x26, 0x0D, 0x24, 0x12, 0x24, 0x13, 0x1C, 0x21, 0x1B, + 0x1B, 0x10, 0x08, 0x0D, 0x01, 0x01, 0x01, 0x04, 0x04, 0x05, 0x0A, 0x22, + 0x1F, 0x23, 0x22, 0x2B, 0x2E, 0x33, 0x22, 0x11, 0x06, 0x07, 0x06, 0x09, + 0x05, 0x07, 0x0B, 0x09, 0x08, 0x16, 0x15, 0x18, 0x11, 0x1F, 0x3C, 0x3B, + 0x02, 0x02, 0x07, 0x01, 0x08, 0x03, 0x08, 0x05, 0x04, 0x03, 0x01, 0x1B, + 0x09, 0x11, 0x13, 0x02, 0x02, 0x03, 0x01, 0x05, 0x06, 0x03, 0x02, 0x07, + 0x12, 0x08, 0x15, 0x0F, 0x13, 0x13, 0x06, 0x0D, 0x0B, 0x38, 0x15, 0x09, + 0x02, 0x08, 0x08, 0x12, 0x08, 0x16, 0x13, 0x0F, 0xFD, 0x2C, 0x22, 0x18, + 0x0B, 0x13, 0x0E, 0x0D, 0x12, 0x03, 0x08, 0x06, 0x01, 0x06, 0x03, 0x01, + 0x03, 0x08, 0x04, 0x0C, 0x14, 0x0A, 0x0B, 0x14, 0x09, 0x14, 0x09, 0x14, + 0x32, 0x17, 0x18, 0x05, 0x02, 0x01, 0x08, 0x04, 0x09, 0x0A, 0x0C, 0x04, + 0x3F, 0x07, 0x16, 0x0F, 0x0D, 0x04, 0x09, 0x10, 0x0E, 0x04, 0x02, 0x01, + 0x02, 0x07, 0x03, 0x14, 0x1E, 0x0B, 0x14, 0x1E, 0x05, 0x14, 0x05, 0x2E, + 0x1A, 0x18, 0x03, 0x04, 0x09, 0x05, 0x09, 0x08, 0x0E, 0x32, 0x03, 0x2E, + 0x06, 0x05, 0x09, 0x07, 0x01, 0x02, 0x01, 0x01, 0x02, 0x04, 0x07, 0x01, + 0x01, 0x09, 0x0D, 0x0C, 0x04, 0x11, 0x05, 0x08, 0x0F, 0x0A, 0x10, 0x11, + 0x24, 0x1E, 0x17, 0x06, 0x02, 0x03, 0x05, 0x01, 0x02, 0x02, 0x01, 0x01, + 0x01, 0x03, 0x04, 0x0D, 0x0A, 0x12, 0x14, 0x1A, 0x12, 0x22, 0x0A, 0x02, + 0x0E, 0x07, 0x0C, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x07, 0x05, 0x05, + 0x0D, 0x0B, 0x0E, 0x12, 0x0B, 0x0A, 0x25, 0x09, 0x39, 0x0A, 0x12, 0x0D, + 0x10, 0x14, 0x13, 0x0F, 0x19, 0x11, 0x0C, 0x0E, 0x07, 0x0E, 0x03, 0x02, + 0x01, 0x02, 0x0C, 0x0F, 0x07, 0x0F, 0x07, 0x0D, 0x01, 0x04, 0x01, 0x0B, + 0x03, 0x02, 0x04, 0x01, 0x0B, 0x15, 0x0D, 0x11, 0x0C, 0x18, 0x0C, 0x18, + 0x15, 0x2C, 0x04, 0x30, 0x0D, 0x07, 0x1A, 0x06, 0x07, 0x1F, 0x1B, 0x14, + 0x16, 0x1C, 0x13, 0x05, 0x04, 0x03, 0x0A, 0x0A, 0x0F, 0x06, 0x06, 0x03, + 0x01, 0x03, 0x13, 0x16, 0x15, 0x1B, 0x04, 0x12, 0x05, 0x0E, 0x0D, 0x02, + 0x07, 0x01, 0x03, 0x02, 0x01, 0x02, 0x02, 0x04, 0x04, 0x08, 0x05, 0x02, + 0x1B, 0x01, 0x01, 0x03, 0x01, 0x02, 0x03, 0x18, 0x02, 0x02, 0x01, 0x01, + 0x01, 0x03, 0x0D, 0x2B, 0x02, 0x0B, 0x03, 0x0A, 0x05, 0x05, 0x06, 0x02, + 0x02, 0x02, 0x02, 0x04, 0x01, 0x03, 0x08, 0x08, 0x19, 0x01, 0x01, 0x03, + 0x01, 0x06, 0x07, 0x03, 0x0B, 0x03, 0x01, 0x01, 0x02, 0x0A, 0x01, 0x05, + 0x04, 0x03, 0x03, 0x05, 0x14, 0x0E, 0x0E, 0x16, 0x12, 0x14, 0x1A, 0x0A, + 0x0A, 0x28, 0x0A, 0x28, 0x14, 0x09, 0x07, 0x01, 0x02, 0x01, 0x01, 0x01, + 0x05, 0x04, 0x18, 0x0E, 0x08, 0x0D, 0x10, 0x08, 0x04, 0x05, 0x09, 0x07, + 0x0B, 0x0C, 0x05, 0x0B, 0x04, 0x0D, 0x08, 0x0B, 0x01, 0x02, 0x0D, 0x0D, + 0x19, 0x14, 0x1A, 0x20, 0x14, 0x1F, 0x17, 0x1A, 0x1B, 0x23, 0x29, 0x2A, + 0x1F, 0x0A, 0x01, 0x01, 0x02, 0x02, 0x01, 0x02, 0x01, 0x04, 0x0B, 0x09, + 0x11, 0x09, 0x03, 0x05, 0x04, 0x01, 0x01, 0x0A, 0x06, 0x05, 0x09, 0x12, + 0x0E, 0x0C, 0x11, 0x16, 0x18, 0x0D, 0x1D, 0x25, 0x0F, 0x2F, 0x22, 0x25, + 0x24, 0x25, 0x25, 0x15, 0x08, 0x02, 0x08, 0x0D, 0x0D, 0x08, 0x06, 0x08, + 0x13, 0x1E, 0x1A, 0x97, 0x01, 0x01, 0x02, 0x03, 0x08, 0x02, 0x08, 0x08, + 0x04, 0x0C, 0x0C, 0x05, 0x10, 0x04, 0x08, 0x03, 0x0C, 0x06, 0x04, 0x06, + 0x02, 0x01, 0x01, 0x08, 0x0B, 0x0A, 0x11, 0x12, 0x08, 0x0B, 0x0E, 0x08, + 0x09, 0x08, 0x07, 0x06, 0x02, 0x01, 0x05, 0x05, 0x08, 0x07, 0x0E, 0x05, + 0x10, 0x05, 0x0E, 0x0B, 0x14, 0x0C, 0x06, 0x02, 0x01, 0x01, 0x06, 0x0C, + 0x0C, 0x12, 0x13, 0x20, 0x09, 0x08, 0x07, 0x06, 0x00, 0x02, 0x00, 0x57, + 0x00, 0x24, 0x04, 0xD4, 0x03, 0x5A, 0x00, 0xBB, 0x00, 0xDA, 0x00, 0x00, + 0x01, 0x26, 0x27, 0x26, 0x27, 0x26, 0x23, 0x06, 0x23, 0x22, 0x07, 0x06, + 0x2B, 0x05, 0x06, 0x2F, 0x01, 0x26, 0x2B, 0x09, 0x06, 0x27, 0x26, 0x27, + 0x26, 0x27, 0x26, 0x06, 0x17, 0x16, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, + 0x17, 0x16, 0x1D, 0x01, 0x14, 0x07, 0x06, 0x07, 0x0E, 0x03, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x15, 0x14, + 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x32, + 0x37, 0x36, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x3F, 0x01, 0x36, 0x37, + 0x34, 0x36, 0x3F, 0x01, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x35, 0x34, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x32, 0x37, + 0x36, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x34, + 0x37, 0x36, 0x35, 0x34, 0x27, 0x2E, 0x01, 0x35, 0x26, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x16, 0x3B, 0x02, 0x32, 0x37, 0x36, 0x37, 0x36, 0x17, + 0x16, 0x17, 0x36, 0x35, 0x34, 0x37, 0x34, 0x37, 0x36, 0x35, 0x3E, 0x01, + 0x35, 0x34, 0x37, 0x35, 0x26, 0x01, 0x1D, 0x01, 0x14, 0x27, 0x26, 0x2B, + 0x02, 0x22, 0x07, 0x06, 0x27, 0x26, 0x37, 0x36, 0x3D, 0x02, 0x34, 0x3B, + 0x03, 0x32, 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, 0x04, 0xCE, 0x01, 0x07, + 0x06, 0x0C, 0x03, 0x07, 0x03, 0x07, 0x04, 0x06, 0x06, 0x07, 0x29, 0x2A, + 0x66, 0x65, 0x08, 0x05, 0x02, 0x05, 0x02, 0x04, 0x17, 0x18, 0x69, 0x6A, + 0x69, 0x6A, 0x24, 0x26, 0x0F, 0x06, 0x09, 0x18, 0x18, 0x1F, 0x14, 0x06, + 0x04, 0x02, 0x03, 0x06, 0x04, 0x0C, 0x04, 0x09, 0x07, 0x0B, 0x05, 0x02, + 0x07, 0x01, 0x03, 0x06, 0x04, 0x02, 0x02, 0x24, 0x15, 0x2B, 0x12, 0x04, + 0x01, 0x06, 0x01, 0x05, 0x04, 0x05, 0x01, 0x07, 0x04, 0x09, 0x02, 0x0E, + 0x06, 0x07, 0x09, 0x06, 0x02, 0x03, 0x07, 0x06, 0x0D, 0x0E, 0x17, 0x16, + 0x14, 0x34, 0x1A, 0x19, 0x34, 0x10, 0x18, 0x16, 0x07, 0x01, 0x03, 0x03, + 0x04, 0x02, 0x03, 0x02, 0x04, 0x01, 0x03, 0x01, 0x09, 0x03, 0x06, 0x01, + 0x08, 0x01, 0x02, 0x04, 0x05, 0x01, 0x02, 0x11, 0x0C, 0x0A, 0x0A, 0x10, + 0x08, 0x1E, 0x07, 0x26, 0x26, 0x27, 0x23, 0x14, 0x13, 0x11, 0x08, 0x02, + 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0x09, 0x10, 0x10, 0x11, + 0x11, 0x12, 0x14, 0x12, 0x65, 0x64, 0x10, 0x04, 0x02, 0x05, 0x02, 0x1D, + 0x1C, 0x09, 0x03, 0x01, 0x05, 0x05, 0x01, 0x01, 0x01, 0x01, 0xFE, 0x1B, + 0x16, 0x0F, 0x13, 0x38, 0x38, 0x04, 0x1E, 0x17, 0x0A, 0x08, 0x01, 0x01, + 0x13, 0x1F, 0x58, 0x57, 0x05, 0x03, 0x04, 0x01, 0x05, 0x01, 0x01, 0x03, + 0x30, 0x07, 0x11, 0x10, 0x01, 0x01, 0x01, 0x11, 0x12, 0x02, 0x03, 0x05, + 0x01, 0x01, 0x05, 0x0F, 0x03, 0x04, 0x01, 0x01, 0x05, 0x04, 0x0A, 0x05, + 0x02, 0x09, 0x03, 0x07, 0x0D, 0x14, 0x1B, 0x0A, 0x24, 0x03, 0x0C, 0x16, + 0x10, 0x12, 0x2B, 0x10, 0x09, 0x15, 0x09, 0x0B, 0x1B, 0x0A, 0x08, 0x02, + 0x0F, 0x03, 0x10, 0x08, 0x10, 0x03, 0x14, 0x0F, 0x1E, 0x07, 0x30, 0x18, + 0x1E, 0x2C, 0x1C, 0x13, 0x19, 0x18, 0x11, 0x0B, 0x0D, 0x0C, 0x0F, 0x03, + 0x01, 0x02, 0x02, 0x02, 0x01, 0x02, 0x08, 0x07, 0x18, 0x04, 0x04, 0x02, + 0x04, 0x02, 0x06, 0x08, 0x0C, 0x06, 0x02, 0x0C, 0x03, 0x24, 0x0B, 0x18, + 0x04, 0x1E, 0x05, 0x09, 0x07, 0x07, 0x08, 0x1A, 0x16, 0x1B, 0x0E, 0x09, + 0x03, 0x01, 0x01, 0x01, 0x01, 0x02, 0x05, 0x05, 0x06, 0x03, 0x0B, 0x0A, + 0x16, 0x07, 0x10, 0x04, 0x10, 0x04, 0x05, 0x0C, 0x0B, 0x05, 0x04, 0x0C, + 0x04, 0x0A, 0x04, 0x0B, 0x09, 0x0A, 0x03, 0x02, 0x02, 0x10, 0x05, 0x16, + 0x07, 0x02, 0x01, 0x04, 0x06, 0x06, 0x08, 0x04, 0x06, 0x03, 0x02, 0x06, + 0x04, 0x0F, 0x04, 0x10, 0x07, 0x33, 0x17, 0xFE, 0xE6, 0x14, 0x15, 0x13, + 0x01, 0x01, 0x02, 0x03, 0x07, 0x05, 0x0F, 0x0A, 0x0C, 0x17, 0x16, 0x14, + 0x01, 0x02, 0x04, 0x09, 0x0C, 0x09, 0x00, 0x00, 0x00, 0x02, 0x00, 0x4B, + 0x00, 0x26, 0x05, 0x73, 0x03, 0x5A, 0x00, 0xB4, 0x00, 0xC9, 0x00, 0x00, + 0x01, 0x14, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x06, 0x0F, 0x01, + 0x06, 0x23, 0x06, 0x23, 0x0E, 0x01, 0x23, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x15, 0x14, 0x07, 0x06, 0x23, 0x06, + 0x07, 0x06, 0x27, 0x23, 0x06, 0x27, 0x22, 0x26, 0x22, 0x26, 0x27, 0x26, + 0x27, 0x26, 0x07, 0x06, 0x0F, 0x01, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x2B, + 0x04, 0x34, 0x36, 0x3F, 0x01, 0x22, 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, + 0x37, 0x1D, 0x01, 0x36, 0x37, 0x36, 0x37, 0x36, 0x3F, 0x01, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x27, 0x26, 0x27, 0x3D, 0x03, 0x34, 0x27, 0x26, 0x36, 0x37, 0x32, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x17, 0x32, 0x17, + 0x16, 0x17, 0x16, 0x37, 0x3B, 0x0C, 0x32, 0x37, 0x34, 0x37, 0x36, 0x37, + 0x32, 0x36, 0x33, 0x36, 0x33, 0x16, 0x17, 0x16, 0x17, 0x14, 0x3B, 0x02, + 0x32, 0x15, 0x06, 0x17, 0x16, 0x17, 0x14, 0x16, 0x05, 0x2B, 0x01, 0x22, + 0x07, 0x06, 0x14, 0x07, 0x06, 0x3B, 0x02, 0x32, 0x37, 0x36, 0x35, 0x34, + 0x3E, 0x01, 0x35, 0x36, 0x05, 0x73, 0x05, 0x05, 0x21, 0x07, 0x1B, 0x06, + 0x07, 0x1A, 0x07, 0x4E, 0x36, 0x19, 0x0F, 0x1C, 0x07, 0x1D, 0x07, 0x0C, + 0x1B, 0x1B, 0x02, 0x03, 0x01, 0x02, 0x03, 0x02, 0x02, 0x03, 0x09, 0x09, + 0x02, 0x37, 0x19, 0x29, 0x28, 0x27, 0x12, 0x16, 0x03, 0x10, 0x06, 0x10, + 0x03, 0x0A, 0x06, 0x07, 0x0B, 0x12, 0x0B, 0x16, 0x17, 0x0B, 0x05, 0x13, + 0x04, 0x0A, 0x05, 0x03, 0x0C, 0x01, 0x06, 0x0C, 0x0C, 0x01, 0x02, 0x07, + 0x07, 0x0E, 0x0C, 0x0D, 0x7B, 0x7C, 0x02, 0x01, 0x03, 0x17, 0x11, 0x13, + 0x0E, 0x0E, 0x07, 0x06, 0x06, 0x14, 0x1B, 0x13, 0x18, 0x07, 0x10, 0x18, + 0x0D, 0x06, 0x0A, 0x05, 0x10, 0x01, 0x02, 0x28, 0x04, 0x0E, 0x03, 0x04, + 0x0E, 0x03, 0x0A, 0x03, 0x02, 0x02, 0x03, 0x04, 0x08, 0x0E, 0x04, 0x0E, + 0x03, 0x0F, 0x04, 0x05, 0x06, 0x05, 0x06, 0x04, 0x0E, 0x0D, 0x04, 0x04, + 0x01, 0x02, 0x06, 0x09, 0x55, 0x54, 0x54, 0x54, 0x74, 0x74, 0x73, 0x74, + 0x4C, 0x4B, 0x12, 0x10, 0x03, 0x01, 0x01, 0x01, 0x06, 0x02, 0x07, 0x01, + 0x08, 0x01, 0x01, 0x06, 0x04, 0x03, 0x08, 0x0F, 0x0F, 0x07, 0x02, 0x02, + 0x02, 0x01, 0x03, 0xFE, 0x04, 0x4F, 0x4F, 0x11, 0x06, 0x07, 0x01, 0x02, + 0x12, 0x50, 0x50, 0x0E, 0x07, 0x07, 0x01, 0x01, 0x01, 0x02, 0xC0, 0x14, + 0x2A, 0x26, 0x03, 0x01, 0x02, 0x02, 0x01, 0x03, 0x02, 0x01, 0x01, 0x01, + 0x01, 0x02, 0x02, 0x11, 0x16, 0x11, 0x1B, 0x0D, 0x0D, 0x04, 0x09, 0x08, + 0x04, 0x0A, 0x0B, 0x06, 0x01, 0x02, 0x02, 0x01, 0x03, 0x04, 0x02, 0x01, + 0x01, 0x05, 0x03, 0x02, 0x05, 0x12, 0x21, 0x26, 0x1B, 0x0B, 0x2E, 0x0B, + 0x1C, 0x0D, 0x08, 0x1E, 0x03, 0x11, 0x1E, 0x1D, 0x12, 0x0E, 0x09, 0x0A, + 0x02, 0x0C, 0x02, 0x0F, 0x04, 0x03, 0x14, 0x17, 0x1B, 0x1B, 0x18, 0x01, + 0x02, 0x19, 0x29, 0x1F, 0x25, 0x0B, 0x16, 0x21, 0x15, 0x10, 0x1A, 0x0C, + 0x25, 0x2E, 0x2E, 0x16, 0x02, 0x06, 0x02, 0x01, 0x08, 0x01, 0x06, 0x0D, + 0x08, 0x0E, 0x29, 0x28, 0x11, 0x10, 0x07, 0x06, 0x04, 0x10, 0x01, 0x01, + 0x01, 0x02, 0x01, 0x02, 0x0A, 0x09, 0x02, 0x01, 0x01, 0x04, 0x05, 0x0D, + 0x03, 0x01, 0x01, 0x01, 0x01, 0x04, 0x02, 0x02, 0x03, 0x01, 0x03, 0x01, + 0x03, 0x02, 0x0A, 0x0B, 0x06, 0x24, 0x11, 0x08, 0x24, 0x86, 0x08, 0x07, + 0x26, 0x15, 0x20, 0x07, 0x06, 0x10, 0x03, 0x0A, 0x15, 0x09, 0x22, 0x00, + 0x00, 0x02, 0x00, 0x55, 0x00, 0x26, 0x04, 0x97, 0x03, 0x5A, 0x00, 0xB7, + 0x00, 0xFA, 0x00, 0x00, 0x01, 0x34, 0x26, 0x35, 0x2E, 0x01, 0x3D, 0x01, + 0x26, 0x27, 0x26, 0x2B, 0x03, 0x06, 0x2B, 0x03, 0x22, 0x17, 0x14, 0x2B, + 0x06, 0x22, 0x37, 0x36, 0x2B, 0x06, 0x22, 0x27, 0x2E, 0x01, 0x2B, 0x01, + 0x22, 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x15, 0x06, 0x17, + 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, 0x07, 0x0E, 0x01, + 0x0F, 0x01, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x17, 0x16, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x37, 0x36, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, + 0x34, 0x27, 0x26, 0x34, 0x27, 0x34, 0x26, 0x27, 0x26, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x33, 0x16, 0x3B, 0x01, 0x1E, 0x01, 0x32, + 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x27, 0x26, 0x34, + 0x27, 0x34, 0x26, 0x2F, 0x01, 0x26, 0x35, 0x34, 0x37, 0x36, 0x37, 0x36, + 0x17, 0x16, 0x37, 0x32, 0x37, 0x33, 0x36, 0x33, 0x32, 0x37, 0x32, 0x37, + 0x36, 0x35, 0x3E, 0x01, 0x35, 0x34, 0x05, 0x06, 0x15, 0x14, 0x07, 0x06, + 0x27, 0x22, 0x27, 0x22, 0x26, 0x27, 0x22, 0x07, 0x06, 0x27, 0x26, 0x35, + 0x34, 0x37, 0x34, 0x37, 0x36, 0x37, 0x36, 0x17, 0x32, 0x17, 0x16, 0x15, + 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x27, 0x2E, 0x02, + 0x23, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x26, 0x37, + 0x36, 0x33, 0x16, 0x3B, 0x01, 0x36, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x04, 0x96, 0x02, 0x01, 0x01, 0x02, 0x09, 0x0C, 0x0B, 0x18, 0x32, 0x32, + 0x23, 0x45, 0x68, 0x08, 0x07, 0x01, 0x01, 0x01, 0x04, 0x06, 0x34, 0x35, + 0x13, 0x13, 0x05, 0x03, 0x01, 0x03, 0x1D, 0x1D, 0x78, 0x78, 0x1D, 0x1E, + 0x02, 0x01, 0x01, 0x04, 0x07, 0x0B, 0x01, 0x08, 0x07, 0x03, 0x04, 0x02, + 0x01, 0x05, 0x0A, 0x0B, 0x0C, 0x0B, 0x09, 0x09, 0x08, 0x07, 0x17, 0x02, + 0x0E, 0x03, 0x03, 0x01, 0x12, 0x11, 0x16, 0x16, 0x12, 0x15, 0x04, 0x04, + 0x04, 0x04, 0x03, 0x02, 0x07, 0x01, 0x15, 0x03, 0x0F, 0x04, 0x10, 0x0A, + 0x0C, 0x08, 0x0B, 0x06, 0x08, 0x03, 0x01, 0x0C, 0x04, 0x14, 0x09, 0x24, + 0x09, 0x20, 0x15, 0x25, 0x3C, 0x0E, 0x42, 0x11, 0x09, 0x19, 0x1B, 0x18, + 0x01, 0x0C, 0x04, 0x0C, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x05, + 0x0E, 0x08, 0x07, 0x10, 0x04, 0x0D, 0x0D, 0x06, 0x05, 0x0B, 0x0F, 0x0A, + 0x27, 0x14, 0x27, 0x0A, 0x27, 0x28, 0x2C, 0x21, 0x07, 0x10, 0x0F, 0x02, + 0x01, 0x01, 0x03, 0x01, 0x03, 0x02, 0x0B, 0x0B, 0x11, 0x0E, 0x11, 0x16, + 0x0A, 0x2A, 0x15, 0x3E, 0x0D, 0x1B, 0x1A, 0x0D, 0x14, 0x03, 0x02, 0x01, + 0x01, 0xFE, 0x9C, 0x01, 0x0B, 0x09, 0x0A, 0x0F, 0x05, 0x07, 0x1D, 0x07, + 0x0D, 0x1E, 0x16, 0x33, 0x31, 0x01, 0x0C, 0x0D, 0x0E, 0x0F, 0x10, 0x03, + 0x02, 0x02, 0x01, 0x11, 0x0E, 0x0D, 0x0E, 0x07, 0x0A, 0x0D, 0x0E, 0x0C, + 0x04, 0x07, 0x04, 0x01, 0x07, 0x04, 0x05, 0x05, 0x03, 0x0D, 0x02, 0x0A, + 0x02, 0x02, 0x05, 0x06, 0x0D, 0x10, 0x21, 0x30, 0x02, 0x0C, 0x0D, 0x01, + 0x09, 0x01, 0x02, 0x02, 0xDE, 0x05, 0x14, 0x05, 0x05, 0x15, 0x05, 0x15, + 0x0B, 0x07, 0x06, 0x01, 0x06, 0x06, 0x06, 0x06, 0x07, 0x05, 0x04, 0x02, + 0x01, 0x01, 0x01, 0x07, 0x07, 0x02, 0x05, 0x04, 0x03, 0x05, 0x05, 0x0A, + 0x09, 0x0B, 0x20, 0x04, 0x16, 0x11, 0x17, 0x21, 0x20, 0x11, 0x10, 0x04, + 0x06, 0x0C, 0x0F, 0x0B, 0x0E, 0x16, 0x12, 0x08, 0x05, 0x11, 0x03, 0x33, + 0x09, 0x22, 0x08, 0x21, 0x1F, 0x26, 0x1B, 0x22, 0x19, 0x1F, 0x1D, 0x10, + 0x01, 0x01, 0x04, 0x01, 0x07, 0x02, 0x07, 0x04, 0x08, 0x0B, 0x03, 0x0D, + 0x04, 0x01, 0x04, 0x05, 0x0E, 0x01, 0x06, 0x03, 0x05, 0x07, 0x11, 0x09, + 0x04, 0x10, 0x04, 0x06, 0x16, 0x06, 0x0D, 0x13, 0x2C, 0x15, 0x15, 0x2A, + 0x0A, 0x2A, 0x2B, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, 0x03, 0x07, + 0x01, 0x02, 0x01, 0x0D, 0x04, 0x0C, 0x04, 0x03, 0x0C, 0x04, 0x1E, 0x14, + 0x0B, 0x13, 0x09, 0x08, 0x04, 0x05, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, + 0x16, 0x1E, 0x05, 0x07, 0x1D, 0x07, 0x1C, 0xE3, 0x07, 0x0E, 0x0C, 0x06, + 0x03, 0x01, 0x01, 0x01, 0x01, 0x02, 0x03, 0x02, 0x01, 0x26, 0x17, 0x0B, + 0x11, 0x0E, 0x0F, 0x01, 0x01, 0x01, 0x14, 0x17, 0x01, 0x0C, 0x0E, 0x0C, + 0x07, 0x08, 0x03, 0x05, 0x04, 0x05, 0x04, 0x01, 0x02, 0x02, 0x02, 0x04, + 0x03, 0x06, 0x04, 0x11, 0x02, 0x0C, 0x0E, 0x13, 0x02, 0x02, 0x01, 0x06, + 0x09, 0x0C, 0x01, 0x10, 0x0E, 0x11, 0x00, 0x00, 0x00, 0x03, 0x00, 0x59, + 0x00, 0x26, 0x04, 0x8E, 0x03, 0x59, 0x01, 0x00, 0x01, 0x09, 0x01, 0x64, + 0x00, 0x00, 0x01, 0x34, 0x37, 0x36, 0x27, 0x26, 0x07, 0x06, 0x26, 0x37, + 0x36, 0x27, 0x23, 0x06, 0x27, 0x23, 0x22, 0x27, 0x23, 0x14, 0x17, 0x16, + 0x07, 0x06, 0x27, 0x26, 0x2B, 0x02, 0x22, 0x07, 0x06, 0x26, 0x3D, 0x01, + 0x34, 0x23, 0x06, 0x23, 0x06, 0x35, 0x36, 0x2B, 0x03, 0x22, 0x27, 0x23, + 0x1D, 0x01, 0x26, 0x2B, 0x01, 0x14, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, 0x07, 0x06, 0x07, 0x06, 0x15, 0x14, + 0x07, 0x06, 0x15, 0x14, 0x17, 0x16, 0x33, 0x32, 0x17, 0x16, 0x15, 0x14, + 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, + 0x17, 0x16, 0x07, 0x06, 0x14, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x17, 0x14, 0x07, 0x06, 0x0F, 0x01, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x15, 0x06, 0x0F, 0x01, 0x06, + 0x07, 0x06, 0x15, 0x06, 0x07, 0x06, 0x1D, 0x04, 0x14, 0x37, 0x36, 0x17, + 0x16, 0x07, 0x06, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x33, 0x32, 0x37, 0x36, + 0x33, 0x32, 0x17, 0x16, 0x35, 0x34, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x35, 0x26, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x3B, 0x03, 0x32, 0x17, 0x33, 0x16, 0x35, + 0x34, 0x37, 0x36, 0x27, 0x26, 0x37, 0x36, 0x35, 0x34, 0x26, 0x35, 0x34, + 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x3B, 0x04, 0x32, 0x1E, 0x01, 0x33, + 0x16, 0x37, 0x36, 0x27, 0x26, 0x3D, 0x01, 0x26, 0x01, 0x36, 0x17, 0x32, + 0x15, 0x17, 0x22, 0x27, 0x22, 0x01, 0x0E, 0x01, 0x27, 0x2E, 0x01, 0x23, + 0x14, 0x07, 0x06, 0x2B, 0x02, 0x22, 0x27, 0x22, 0x07, 0x06, 0x37, 0x34, + 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, 0x35, 0x34, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x17, 0x16, 0x07, 0x0E, 0x02, 0x15, 0x06, 0x17, 0x16, + 0x17, 0x1E, 0x01, 0x17, 0x16, 0x33, 0x16, 0x37, 0x32, 0x37, 0x36, 0x27, + 0x26, 0x07, 0x06, 0x35, 0x2F, 0x01, 0x26, 0x27, 0x26, 0x27, 0x26, 0x37, + 0x35, 0x34, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x37, 0x36, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x16, 0x1D, 0x01, 0x14, 0x17, 0x15, 0x14, 0x04, 0x8B, + 0x02, 0x01, 0x04, 0x04, 0x05, 0x02, 0x02, 0x01, 0x03, 0x12, 0x1A, 0x1D, + 0x0F, 0x2C, 0x4F, 0x27, 0x76, 0x02, 0x01, 0x03, 0x03, 0x0B, 0x08, 0x08, + 0x2F, 0x2F, 0x0D, 0x05, 0x04, 0x05, 0x06, 0x02, 0x07, 0x06, 0x01, 0x04, + 0x0F, 0x62, 0x62, 0x41, 0x21, 0x62, 0x05, 0x0B, 0x11, 0x0A, 0x0A, 0x05, + 0x03, 0x09, 0x05, 0x08, 0x03, 0x04, 0x03, 0x01, 0x01, 0x02, 0x02, 0x07, + 0x05, 0x01, 0x02, 0x01, 0x02, 0x02, 0x02, 0x04, 0x03, 0x02, 0x08, 0x09, + 0x06, 0x0A, 0x10, 0x14, 0x12, 0x0B, 0x06, 0x03, 0x04, 0x01, 0x01, 0x04, + 0x05, 0x05, 0x07, 0x02, 0x01, 0x04, 0x02, 0x05, 0x01, 0x05, 0x02, 0x03, + 0x03, 0x03, 0x04, 0x02, 0x04, 0x05, 0x06, 0x02, 0x09, 0x03, 0x04, 0x01, + 0x01, 0x03, 0x02, 0x02, 0x03, 0x06, 0x03, 0x03, 0x02, 0x01, 0x03, 0x1D, + 0x1C, 0x0E, 0x05, 0x01, 0x01, 0x08, 0x04, 0x0A, 0x08, 0x05, 0x09, 0x15, + 0x0B, 0x14, 0x08, 0x24, 0x08, 0x19, 0x1A, 0x07, 0x0A, 0x07, 0x0A, 0x06, + 0x0E, 0x07, 0x0D, 0x03, 0x0C, 0x09, 0x0B, 0x0C, 0x03, 0x09, 0x05, 0x05, + 0x08, 0x04, 0x02, 0x01, 0x02, 0x02, 0x04, 0x04, 0x02, 0x06, 0x04, 0x06, + 0x03, 0x01, 0x06, 0x02, 0x06, 0x01, 0x01, 0x05, 0x03, 0x01, 0x03, 0x02, + 0x01, 0x01, 0x04, 0x04, 0x06, 0x72, 0x71, 0x31, 0x20, 0x10, 0x0C, 0x09, + 0x02, 0x02, 0x08, 0x04, 0x02, 0x01, 0x02, 0x06, 0x04, 0x0C, 0x06, 0x12, + 0x16, 0x04, 0x1C, 0x1C, 0x38, 0x37, 0x03, 0x0A, 0x14, 0x09, 0x21, 0x02, + 0x03, 0x01, 0x02, 0x01, 0xFC, 0x96, 0x03, 0x03, 0x01, 0x02, 0x04, 0x01, + 0x03, 0x02, 0x1A, 0x01, 0x03, 0x03, 0x02, 0x09, 0x02, 0x04, 0x03, 0x0F, + 0x24, 0x24, 0x2C, 0x15, 0x16, 0x2A, 0x11, 0x02, 0x01, 0x01, 0x05, 0x05, + 0x01, 0x02, 0x08, 0x06, 0x12, 0x04, 0x04, 0x0A, 0x09, 0x08, 0x0A, 0x03, + 0x01, 0x01, 0x02, 0x02, 0x0A, 0x06, 0x0A, 0x08, 0x12, 0x0C, 0x08, 0x0C, + 0x0A, 0x0A, 0x07, 0x01, 0x02, 0x04, 0x01, 0x08, 0x08, 0x06, 0x06, 0x09, + 0x09, 0x06, 0x0A, 0x0A, 0x01, 0x04, 0x04, 0x05, 0x18, 0x15, 0x19, 0x13, + 0x0A, 0x10, 0x09, 0x0C, 0x02, 0x0A, 0x07, 0x01, 0x03, 0x25, 0x01, 0x0C, + 0x09, 0x03, 0x04, 0x01, 0x01, 0x04, 0x05, 0x0F, 0x01, 0x02, 0x01, 0x01, + 0x02, 0x10, 0x0C, 0x07, 0x05, 0x02, 0x01, 0x01, 0x01, 0x06, 0x06, 0x0A, + 0x05, 0x01, 0x02, 0x06, 0x0A, 0x01, 0x0B, 0x0B, 0x01, 0x0D, 0x07, 0x09, + 0x0B, 0x08, 0x0C, 0x07, 0x0E, 0x06, 0x0E, 0x0D, 0x09, 0x0A, 0x02, 0x04, + 0x04, 0x05, 0x0B, 0x0F, 0x04, 0x0A, 0x05, 0x0B, 0x05, 0x06, 0x03, 0x02, + 0x01, 0x02, 0x02, 0x05, 0x01, 0x01, 0x04, 0x08, 0x0F, 0x0F, 0x0F, 0x08, + 0x06, 0x06, 0x0A, 0x07, 0x06, 0x07, 0x08, 0x0C, 0x0E, 0x03, 0x01, 0x07, + 0x03, 0x09, 0x02, 0x02, 0x0D, 0x05, 0x05, 0x05, 0x04, 0x0A, 0x06, 0x0A, + 0x10, 0x0A, 0x04, 0x12, 0x05, 0x06, 0x06, 0x03, 0x0A, 0x01, 0x05, 0x0A, + 0x0F, 0x11, 0x12, 0x14, 0x10, 0x06, 0x01, 0x01, 0x05, 0x09, 0x09, 0x16, + 0x17, 0x19, 0x08, 0x07, 0x07, 0x04, 0x06, 0x07, 0x03, 0x01, 0x02, 0x02, + 0x02, 0x06, 0x05, 0x03, 0x02, 0x01, 0x04, 0x01, 0x03, 0x06, 0x02, 0x04, + 0x03, 0x02, 0x01, 0x02, 0x01, 0x0A, 0x03, 0x05, 0x03, 0x04, 0x0A, 0x1C, + 0x1A, 0x0F, 0x07, 0x0D, 0x0C, 0x09, 0x0A, 0x07, 0x08, 0x07, 0x14, 0x09, + 0x12, 0x0A, 0x05, 0x11, 0x04, 0x10, 0x09, 0x0A, 0x0C, 0x0C, 0x0A, 0x08, + 0x0C, 0x0E, 0x06, 0x05, 0x04, 0x02, 0x01, 0x01, 0x05, 0x04, 0x0E, 0x09, + 0x05, 0x01, 0x19, 0x10, 0x0D, 0x0C, 0x0C, 0x0C, 0x10, 0x08, 0x07, 0x0C, + 0x06, 0x02, 0x02, 0x01, 0x01, 0x03, 0x0C, 0x1C, 0x18, 0x24, 0x10, 0x35, + 0x11, 0xFD, 0x3C, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x8E, 0x04, 0x04, + 0x01, 0x01, 0x01, 0x0E, 0x01, 0x01, 0x01, 0x02, 0x01, 0x0A, 0x0D, 0x08, + 0x0B, 0x0A, 0x09, 0x0C, 0x0B, 0x09, 0x09, 0x0B, 0x0A, 0x0C, 0x07, 0x06, + 0x04, 0x04, 0x02, 0x03, 0x17, 0x06, 0x0E, 0x09, 0x02, 0x0F, 0x08, 0x06, + 0x0E, 0x0B, 0x0C, 0x06, 0x04, 0x01, 0x01, 0x09, 0x0A, 0x01, 0x01, 0x01, + 0x02, 0x04, 0x03, 0x02, 0x04, 0x08, 0x04, 0x0A, 0x0D, 0x10, 0x1E, 0x06, + 0x07, 0x06, 0x02, 0x05, 0x03, 0x03, 0x01, 0x01, 0x02, 0x01, 0x0C, 0x02, + 0x06, 0x04, 0x03, 0x23, 0x18, 0x0B, 0x10, 0x06, 0x00, 0x02, 0x00, 0x53, + 0x00, 0x26, 0x08, 0xFB, 0x03, 0x5A, 0x00, 0x6B, 0x00, 0x98, 0x00, 0x00, + 0x01, 0x23, 0x2F, 0x01, 0x21, 0x07, 0x27, 0x21, 0x27, 0x07, 0x23, 0x15, + 0x23, 0x15, 0x23, 0x35, 0x27, 0x07, 0x35, 0x27, 0x23, 0x15, 0x21, 0x15, + 0x23, 0x35, 0x21, 0x2F, 0x02, 0x15, 0x0F, 0x01, 0x27, 0x07, 0x27, 0x22, + 0x07, 0x06, 0x07, 0x14, 0x17, 0x16, 0x1F, 0x02, 0x0F, 0x01, 0x1F, 0x01, + 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x0F, 0x02, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x0F, 0x01, 0x05, 0x27, 0x37, 0x13, 0x17, 0x3F, + 0x01, 0x1F, 0x02, 0x3F, 0x03, 0x36, 0x37, 0x36, 0x3F, 0x01, 0x21, 0x3F, + 0x01, 0x35, 0x27, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x17, 0x37, 0x21, + 0x37, 0x17, 0x21, 0x3F, 0x02, 0x05, 0x0F, 0x02, 0x2F, 0x04, 0x26, 0x35, + 0x26, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x3F, 0x01, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, 0x1F, 0x01, 0x37, 0x2F, 0x01, + 0x34, 0x37, 0x36, 0x3F, 0x03, 0x1F, 0x02, 0x08, 0xF9, 0x01, 0x08, 0x07, + 0xFE, 0x46, 0x0A, 0x0A, 0xFE, 0xA9, 0x0D, 0x0A, 0x96, 0x2B, 0x1C, 0x0B, + 0x0A, 0x08, 0x48, 0xFE, 0xD2, 0xAF, 0xFE, 0xC7, 0x09, 0x5C, 0x17, 0x1E, + 0x13, 0x2B, 0x07, 0x10, 0x08, 0x04, 0x06, 0x01, 0x02, 0x01, 0x06, 0x0A, + 0x35, 0x03, 0x01, 0x0B, 0x26, 0x0E, 0x0A, 0x06, 0x07, 0x06, 0x02, 0x01, + 0x02, 0x0A, 0x14, 0x0C, 0x11, 0x0A, 0x0D, 0x06, 0x0A, 0x05, 0x06, 0x03, + 0x01, 0x35, 0x10, 0x03, 0x49, 0x0A, 0x1A, 0x16, 0x16, 0x25, 0x15, 0x96, + 0x17, 0x0E, 0x3A, 0x01, 0x04, 0x02, 0x04, 0x06, 0x01, 0x46, 0x03, 0x07, + 0x07, 0x1E, 0x31, 0x91, 0x0D, 0x09, 0x01, 0x57, 0x09, 0x06, 0x01, 0xBF, + 0x05, 0x09, 0x04, 0xFA, 0x53, 0x15, 0x1D, 0x3F, 0x47, 0x1F, 0x2A, 0x25, + 0x19, 0x04, 0x01, 0x02, 0x02, 0x06, 0x03, 0x0A, 0x05, 0x0A, 0x0A, 0x0C, + 0x17, 0x10, 0x0A, 0x04, 0x05, 0x02, 0x01, 0x03, 0x01, 0x07, 0x0B, 0x0A, + 0x06, 0x02, 0x03, 0x03, 0x05, 0x11, 0x23, 0xA4, 0x0A, 0x10, 0x02, 0x03, + 0x2D, 0x1E, 0x09, 0x04, 0x01, 0x06, 0x06, 0x2A, 0x14, 0x17, 0x0D, 0x01, + 0x1A, 0x0A, 0x27, 0x05, 0x06, 0x07, 0x02, 0x0D, 0x19, 0x39, 0x5E, 0x1C, + 0x26, 0x02, 0x03, 0x06, 0x06, 0x04, 0x06, 0x04, 0x04, 0x03, 0x06, 0x15, + 0x21, 0x0C, 0x0D, 0x05, 0x04, 0x03, 0x07, 0x05, 0x06, 0x05, 0x0B, 0x1A, + 0x29, 0x1A, 0x2E, 0x1C, 0x30, 0x1A, 0x36, 0x1C, 0x38, 0x47, 0x03, 0x17, + 0x23, 0x01, 0x36, 0x03, 0x03, 0x05, 0x03, 0x0C, 0x08, 0x05, 0x05, 0x10, + 0x8C, 0x03, 0x06, 0x03, 0x04, 0x03, 0x31, 0x06, 0x18, 0x06, 0x32, 0x15, + 0x1A, 0x05, 0x06, 0x03, 0x04, 0x0D, 0x1E, 0x38, 0xDF, 0x3C, 0x41, 0x04, + 0x03, 0x02, 0x02, 0x10, 0x1D, 0x08, 0x0B, 0x07, 0x0E, 0x07, 0x0C, 0x06, + 0x0C, 0x07, 0x04, 0x05, 0x04, 0x06, 0x13, 0x0E, 0x0B, 0x0C, 0x10, 0x07, + 0x0C, 0x09, 0x0F, 0x18, 0x07, 0x0E, 0x1D, 0x0A, 0x09, 0x08, 0x09, 0x17, + 0x24, 0x01, 0x01, 0x09, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x65, + 0x00, 0x26, 0x05, 0xF6, 0x03, 0x5F, 0x01, 0xC3, 0x02, 0x07, 0x00, 0x00, + 0x01, 0x36, 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x1F, 0x01, + 0x16, 0x1D, 0x01, 0x06, 0x3B, 0x06, 0x31, 0x37, 0x22, 0x37, 0x36, 0x35, + 0x26, 0x35, 0x3F, 0x02, 0x3E, 0x01, 0x37, 0x36, 0x33, 0x32, 0x37, 0x32, + 0x1F, 0x01, 0x16, 0x15, 0x14, 0x16, 0x1D, 0x01, 0x06, 0x17, 0x16, 0x17, + 0x16, 0x35, 0x14, 0x16, 0x37, 0x32, 0x17, 0x16, 0x07, 0x06, 0x17, 0x32, + 0x17, 0x16, 0x1D, 0x02, 0x26, 0x17, 0x16, 0x17, 0x16, 0x23, 0x32, 0x37, + 0x36, 0x17, 0x31, 0x17, 0x16, 0x35, 0x1D, 0x01, 0x16, 0x15, 0x06, 0x1D, + 0x02, 0x14, 0x06, 0x27, 0x23, 0x22, 0x27, 0x26, 0x0F, 0x01, 0x06, 0x07, + 0x14, 0x31, 0x14, 0x07, 0x06, 0x23, 0x06, 0x07, 0x06, 0x07, 0x06, 0x0F, + 0x01, 0x14, 0x06, 0x27, 0x22, 0x26, 0x27, 0x26, 0x23, 0x06, 0x27, 0x22, + 0x27, 0x2B, 0x01, 0x06, 0x2B, 0x01, 0x06, 0x1D, 0x04, 0x14, 0x2B, 0x01, + 0x22, 0x07, 0x06, 0x0F, 0x01, 0x06, 0x1D, 0x06, 0x14, 0x33, 0x32, 0x17, + 0x16, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x17, 0x16, 0x1D, 0x02, 0x14, 0x17, 0x16, 0x07, 0x06, 0x27, 0x2B, 0x05, + 0x22, 0x27, 0x26, 0x37, 0x36, 0x3D, 0x02, 0x06, 0x07, 0x06, 0x23, 0x22, + 0x2E, 0x01, 0x23, 0x26, 0x35, 0x34, 0x27, 0x26, 0x3D, 0x02, 0x2B, 0x03, + 0x22, 0x17, 0x16, 0x15, 0x26, 0x23, 0x22, 0x27, 0x22, 0x07, 0x06, 0x23, + 0x07, 0x06, 0x15, 0x14, 0x07, 0x06, 0x07, 0x06, 0x0F, 0x01, 0x06, 0x15, + 0x06, 0x0F, 0x02, 0x06, 0x07, 0x14, 0x06, 0x07, 0x06, 0x07, 0x06, 0x31, + 0x0E, 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x14, 0x32, 0x17, 0x16, + 0x15, 0x17, 0x15, 0x14, 0x07, 0x06, 0x27, 0x26, 0x23, 0x22, 0x27, 0x22, + 0x26, 0x27, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x27, 0x26, 0x23, 0x22, 0x27, + 0x22, 0x26, 0x2B, 0x01, 0x22, 0x35, 0x14, 0x27, 0x26, 0x27, 0x26, 0x3D, + 0x01, 0x34, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x34, 0x37, + 0x34, 0x3F, 0x02, 0x36, 0x35, 0x36, 0x35, 0x26, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x3F, 0x01, 0x3E, 0x01, + 0x37, 0x36, 0x35, 0x34, 0x37, 0x36, 0x35, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x35, 0x34, 0x07, 0x06, 0x22, 0x27, 0x22, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x23, 0x27, 0x26, 0x2F, 0x01, 0x26, 0x27, 0x26, + 0x35, 0x34, 0x26, 0x3D, 0x02, 0x34, 0x36, 0x3D, 0x01, 0x34, 0x37, 0x36, + 0x3F, 0x05, 0x35, 0x37, 0x32, 0x37, 0x36, 0x33, 0x32, 0x3F, 0x01, 0x3E, + 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x27, 0x16, 0x37, 0x32, 0x17, + 0x26, 0x37, 0x36, 0x33, 0x16, 0x33, 0x16, 0x15, 0x1F, 0x01, 0x16, 0x37, + 0x3B, 0x05, 0x16, 0x3B, 0x01, 0x35, 0x26, 0x03, 0x26, 0x27, 0x26, 0x27, + 0x26, 0x23, 0x06, 0x2B, 0x02, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x34, + 0x27, 0x2E, 0x01, 0x27, 0x3D, 0x01, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x15, 0x14, 0x07, 0x06, 0x15, 0x14, 0x17, 0x16, 0x3B, 0x01, 0x16, + 0x33, 0x26, 0x3F, 0x01, 0x32, 0x37, 0x36, 0x3F, 0x01, 0x34, 0x37, 0x34, + 0x2E, 0x01, 0x02, 0xFD, 0x16, 0x09, 0x0E, 0x11, 0x04, 0x08, 0x08, 0x03, + 0x02, 0x02, 0x01, 0x01, 0x02, 0x02, 0x5A, 0x5A, 0x5B, 0x5A, 0x4B, 0x4C, + 0x04, 0x02, 0x02, 0x01, 0x01, 0x03, 0x02, 0x01, 0x02, 0x04, 0x02, 0x06, + 0x03, 0x0C, 0x06, 0x08, 0x08, 0x05, 0x03, 0x08, 0x01, 0x02, 0x01, 0x03, + 0x04, 0x03, 0x03, 0x05, 0x02, 0x02, 0x02, 0x02, 0x04, 0x01, 0x02, 0x01, + 0x01, 0x04, 0x01, 0x01, 0x07, 0x05, 0x06, 0x0E, 0x0A, 0x08, 0x03, 0x04, + 0x01, 0x01, 0x02, 0x02, 0x0C, 0x03, 0x10, 0x0C, 0x05, 0x01, 0x01, 0x01, + 0x03, 0x05, 0x01, 0x02, 0x01, 0x02, 0x01, 0x03, 0x02, 0x03, 0x03, 0x04, + 0x02, 0x08, 0x02, 0x19, 0x33, 0x26, 0x26, 0x3F, 0x1F, 0x5E, 0x05, 0x02, + 0x03, 0x0E, 0x03, 0x17, 0x20, 0x0C, 0x07, 0x07, 0x0A, 0x0A, 0x07, 0x06, + 0x07, 0x01, 0x05, 0x02, 0x01, 0x02, 0x01, 0x04, 0x09, 0x07, 0x03, 0x03, + 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x09, 0x0C, 0x36, 0x37, + 0x17, 0x16, 0x0B, 0x03, 0x03, 0x03, 0x02, 0x01, 0x06, 0x01, 0x03, 0x09, + 0x01, 0x06, 0x0B, 0x05, 0x13, 0x01, 0x02, 0x1D, 0x1E, 0x26, 0x26, 0x0A, + 0x02, 0x01, 0x0D, 0x1B, 0x1C, 0x0D, 0x05, 0x03, 0x04, 0x02, 0x04, 0x04, + 0x02, 0x04, 0x01, 0x05, 0x01, 0x06, 0x02, 0x01, 0x02, 0x04, 0x04, 0x04, + 0x02, 0x03, 0x01, 0x02, 0x01, 0x04, 0x01, 0x02, 0x02, 0x01, 0x01, 0x01, + 0x02, 0x03, 0x04, 0x02, 0x09, 0x07, 0x08, 0x0A, 0x02, 0x0C, 0x06, 0x03, + 0x0B, 0x02, 0x07, 0x1A, 0x0E, 0x1B, 0x07, 0x0F, 0x11, 0x16, 0x0D, 0x04, + 0x06, 0x02, 0x08, 0x02, 0x12, 0x0B, 0x08, 0x09, 0x01, 0x02, 0x04, 0x04, + 0x02, 0x01, 0x04, 0x04, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x02, + 0x01, 0x03, 0x0A, 0x0A, 0x0A, 0x05, 0x08, 0x0A, 0x0B, 0x07, 0x01, 0x04, + 0x01, 0x04, 0x01, 0x01, 0x02, 0x01, 0x04, 0x08, 0x08, 0x02, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x04, 0x03, 0x01, 0x02, 0x02, 0x04, 0x02, 0x01, 0x02, + 0x01, 0x04, 0x03, 0x04, 0x02, 0x02, 0x0C, 0x09, 0x16, 0x05, 0x02, 0x0A, + 0x02, 0x06, 0x03, 0x07, 0x01, 0x06, 0x02, 0x02, 0x02, 0x02, 0x04, 0x04, + 0x02, 0x02, 0x04, 0x05, 0x01, 0x03, 0x02, 0x02, 0x02, 0x02, 0x02, 0x02, + 0x04, 0x04, 0x01, 0x02, 0x03, 0x03, 0x02, 0x08, 0x02, 0x08, 0x04, 0x04, + 0x11, 0x0D, 0x02, 0x02, 0x03, 0x03, 0x01, 0x02, 0x07, 0x04, 0x0B, 0x03, + 0x0B, 0x08, 0x02, 0x02, 0x03, 0x0B, 0x10, 0x2A, 0x2A, 0x5E, 0x5E, 0x5D, + 0x1F, 0x3F, 0x01, 0x01, 0x43, 0x04, 0x02, 0x03, 0x08, 0x08, 0x08, 0x07, + 0x0B, 0x18, 0x18, 0x01, 0x0B, 0x06, 0x0B, 0x02, 0x0A, 0x09, 0x01, 0x01, + 0x10, 0x08, 0x0D, 0x0B, 0x09, 0x0C, 0x02, 0x07, 0x07, 0x04, 0x01, 0x05, + 0x01, 0x0C, 0x02, 0x01, 0x08, 0x03, 0x03, 0x04, 0x04, 0x05, 0x19, 0x11, + 0x27, 0x3C, 0x13, 0x10, 0x01, 0x02, 0x04, 0x01, 0x04, 0x01, 0x01, 0x02, + 0x01, 0x02, 0x04, 0x03, 0x44, 0x0C, 0x06, 0x09, 0x0B, 0x04, 0x03, 0x06, + 0x03, 0x02, 0x02, 0x02, 0x02, 0x08, 0x0B, 0x09, 0x01, 0x03, 0x01, 0x03, + 0x01, 0x02, 0x03, 0x02, 0x02, 0x01, 0x05, 0x02, 0x07, 0x01, 0x05, 0x05, + 0x04, 0x02, 0x02, 0x02, 0x05, 0x04, 0x02, 0x02, 0x01, 0x02, 0x04, 0x01, + 0x04, 0x04, 0x01, 0x05, 0x03, 0x08, 0x09, 0x01, 0x05, 0x04, 0x04, 0x04, + 0x04, 0x03, 0x02, 0x01, 0x01, 0x05, 0x02, 0x01, 0x03, 0x02, 0x04, 0x02, + 0x04, 0x05, 0x05, 0x0A, 0x05, 0x0A, 0x07, 0x07, 0x04, 0x04, 0x01, 0x02, + 0x02, 0x05, 0x08, 0x03, 0x03, 0x02, 0x03, 0x06, 0x06, 0x02, 0x03, 0x06, + 0x01, 0x03, 0x03, 0x04, 0x05, 0x03, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, + 0x01, 0x01, 0x01, 0x0A, 0x0F, 0x0F, 0x0F, 0x0F, 0x09, 0x0F, 0x0E, 0x0A, + 0x0A, 0x06, 0x08, 0x13, 0x13, 0x0C, 0x0D, 0x05, 0x06, 0x01, 0x03, 0x08, + 0x0C, 0x0B, 0x08, 0x09, 0x0A, 0x05, 0x03, 0x04, 0x05, 0x08, 0x12, 0x0C, + 0x0B, 0x13, 0x5E, 0x5E, 0x06, 0x05, 0x09, 0x02, 0x01, 0x01, 0x05, 0x06, + 0x11, 0x0A, 0x0D, 0x73, 0x72, 0x04, 0x05, 0x07, 0x01, 0x01, 0x01, 0x05, + 0x0C, 0x09, 0x12, 0x06, 0x0D, 0x0C, 0x09, 0x07, 0x0B, 0x01, 0x01, 0x10, + 0x10, 0x06, 0x05, 0x03, 0x05, 0x04, 0x03, 0x05, 0x07, 0x08, 0x0F, 0x06, + 0x02, 0x02, 0x06, 0x08, 0x08, 0x07, 0x07, 0x02, 0x0A, 0x03, 0x04, 0x03, + 0x06, 0x01, 0x07, 0x02, 0x01, 0x08, 0x01, 0x03, 0x04, 0x02, 0x06, 0x07, + 0x02, 0x08, 0x16, 0x0D, 0x04, 0x02, 0x03, 0x03, 0x01, 0x01, 0x01, 0x01, + 0x02, 0x01, 0x03, 0x02, 0x02, 0x02, 0x09, 0x02, 0x05, 0x04, 0x03, 0x06, + 0x03, 0x09, 0x14, 0x0C, 0x12, 0x0B, 0x03, 0x0B, 0x0A, 0x05, 0x01, 0x02, + 0x01, 0x02, 0x01, 0x04, 0x01, 0x01, 0x01, 0x06, 0x03, 0x04, 0x03, 0x0A, + 0x12, 0x16, 0x0A, 0x12, 0x0E, 0x0D, 0x0E, 0x03, 0x04, 0x02, 0x04, 0x01, + 0x02, 0x04, 0x02, 0x05, 0x02, 0x08, 0x08, 0x06, 0x0A, 0x07, 0x02, 0x03, + 0x04, 0x01, 0x05, 0x04, 0x03, 0x07, 0x06, 0x03, 0x04, 0x04, 0x02, 0x06, + 0x01, 0x06, 0x03, 0x04, 0x05, 0x06, 0x06, 0x09, 0x02, 0x01, 0x01, 0x01, + 0x01, 0x02, 0x05, 0x07, 0x06, 0x02, 0x02, 0x03, 0x01, 0x06, 0x04, 0x04, + 0x0A, 0x0E, 0x0B, 0x1E, 0x1E, 0x0E, 0x0E, 0x0A, 0x09, 0x05, 0x01, 0x02, + 0x01, 0x03, 0x01, 0x01, 0x01, 0x01, 0x02, 0x04, 0x03, 0x03, 0x04, 0x03, + 0x02, 0x04, 0x02, 0x04, 0x03, 0x02, 0x09, 0x07, 0x09, 0x02, 0x02, 0x01, + 0x0B, 0x05, 0x04, 0x01, 0x02, 0x04, 0x0A, 0x09, 0x05, 0x02, 0x01, 0x10, + 0x07, 0xFE, 0xA8, 0x07, 0x0B, 0x09, 0x05, 0x02, 0x01, 0x0B, 0x0B, 0x07, + 0x0B, 0x02, 0x05, 0x04, 0x04, 0x08, 0x0A, 0x03, 0x04, 0x05, 0x04, 0x0C, + 0x03, 0x06, 0x04, 0x08, 0x08, 0x02, 0x08, 0x01, 0x03, 0x02, 0x01, 0x0E, + 0x0D, 0x08, 0x03, 0x08, 0x08, 0x05, 0x06, 0x05, 0x07, 0x04, 0x02, 0x01, + 0x01, 0x01, 0x04, 0x04, 0x06, 0x07, 0x01, 0x02, 0x03, 0x05, 0x02, 0x03, + 0x06, 0x08, 0x00, 0x00, 0x00, 0x03, 0x00, 0x5A, 0x00, 0x26, 0x05, 0x2D, + 0x03, 0x5A, 0x01, 0x15, 0x01, 0x2D, 0x01, 0x6C, 0x00, 0x00, 0x01, 0x16, + 0x3B, 0x01, 0x37, 0x33, 0x16, 0x3B, 0x03, 0x34, 0x36, 0x37, 0x36, 0x37, + 0x16, 0x33, 0x32, 0x16, 0x33, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x17, 0x33, 0x32, 0x16, 0x33, 0x16, 0x15, 0x14, 0x07, 0x23, 0x22, + 0x27, 0x06, 0x17, 0x16, 0x07, 0x06, 0x07, 0x06, 0x23, 0x06, 0x27, 0x22, + 0x07, 0x36, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x23, 0x06, 0x23, 0x16, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x1F, 0x01, + 0x16, 0x17, 0x16, 0x17, 0x0E, 0x01, 0x07, 0x15, 0x14, 0x06, 0x07, 0x06, + 0x07, 0x22, 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, 0x22, 0x07, 0x06, 0x27, + 0x23, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x17, 0x16, 0x15, 0x14, 0x17, 0x14, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x07, 0x06, 0x17, 0x14, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x22, 0x07, 0x06, 0x27, 0x06, 0x23, 0x06, 0x23, + 0x22, 0x27, 0x22, 0x26, 0x23, 0x3D, 0x01, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x27, 0x26, 0x27, 0x26, 0x07, + 0x06, 0x27, 0x26, 0x36, 0x27, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x34, 0x37, + 0x36, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x37, 0x26, 0x37, 0x36, 0x37, + 0x32, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x36, 0x17, 0x16, 0x17, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x33, 0x16, 0x33, 0x36, 0x37, 0x3E, 0x01, 0x35, 0x36, + 0x33, 0x16, 0x33, 0x16, 0x17, 0x14, 0x16, 0x17, 0x33, 0x32, 0x05, 0x22, + 0x07, 0x22, 0x06, 0x07, 0x14, 0x0F, 0x01, 0x06, 0x07, 0x16, 0x17, 0x16, + 0x17, 0x36, 0x37, 0x36, 0x27, 0x36, 0x27, 0x22, 0x2E, 0x01, 0x05, 0x26, + 0x07, 0x06, 0x07, 0x15, 0x06, 0x15, 0x06, 0x07, 0x06, 0x07, 0x06, 0x17, + 0x16, 0x17, 0x32, 0x16, 0x17, 0x16, 0x15, 0x22, 0x27, 0x26, 0x27, 0x26, + 0x37, 0x36, 0x27, 0x36, 0x27, 0x26, 0x27, 0x34, 0x37, 0x35, 0x22, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x27, 0x26, 0x27, 0x26, 0x27, + 0x26, 0x02, 0x4B, 0x1B, 0x1B, 0x36, 0x1B, 0x1A, 0x1B, 0x37, 0x52, 0x52, + 0x52, 0x02, 0x01, 0x02, 0x03, 0x06, 0x0D, 0x03, 0x0C, 0x03, 0x01, 0x06, + 0x01, 0x02, 0x07, 0x04, 0x02, 0x02, 0x03, 0x55, 0x0E, 0x38, 0x0E, 0x07, + 0x07, 0x56, 0x39, 0x1D, 0x04, 0x02, 0x02, 0x05, 0x01, 0x07, 0x08, 0x04, + 0x27, 0x27, 0x1B, 0x34, 0x0B, 0x0C, 0x0B, 0x0B, 0x02, 0x04, 0x01, 0x01, + 0x08, 0x05, 0x07, 0x07, 0x16, 0x07, 0x0F, 0x18, 0x0B, 0x16, 0x0B, 0x05, + 0x17, 0x06, 0x21, 0x04, 0x0A, 0x08, 0x04, 0x04, 0x04, 0x04, 0x01, 0x01, + 0x05, 0x07, 0x02, 0x09, 0x02, 0x05, 0x03, 0x05, 0x05, 0x08, 0x07, 0x07, + 0x07, 0x20, 0x10, 0x10, 0x06, 0x03, 0x04, 0x01, 0x0A, 0x14, 0x0A, 0x14, + 0x05, 0x14, 0x05, 0x0B, 0x14, 0x12, 0x09, 0x04, 0x14, 0x04, 0x07, 0x05, + 0x05, 0x03, 0x01, 0x01, 0x02, 0x01, 0x01, 0x0B, 0x0D, 0x15, 0x05, 0x17, + 0x16, 0x16, 0x18, 0x16, 0x0F, 0x17, 0x0E, 0x0A, 0x16, 0x10, 0x10, 0x0F, + 0x09, 0x0A, 0x04, 0x09, 0x08, 0x0B, 0x07, 0x02, 0x09, 0x03, 0x08, 0x04, + 0x02, 0x01, 0x01, 0x03, 0x0C, 0x02, 0x08, 0x03, 0x08, 0x05, 0x05, 0x0C, + 0x01, 0x02, 0x01, 0x03, 0x03, 0x1F, 0x3E, 0x1F, 0x3F, 0x06, 0x04, 0x01, + 0x06, 0x02, 0x10, 0x12, 0x12, 0x06, 0x03, 0x03, 0x03, 0x07, 0x04, 0x0E, + 0x03, 0x04, 0x0E, 0x03, 0x03, 0x08, 0x02, 0x08, 0x02, 0x07, 0x12, 0x0D, + 0x09, 0x06, 0x05, 0x04, 0x14, 0x12, 0x15, 0x17, 0x12, 0x08, 0x02, 0x01, + 0x13, 0x2C, 0x0E, 0x05, 0x02, 0x01, 0x02, 0x04, 0x03, 0x0A, 0x08, 0x03, + 0x06, 0x01, 0x02, 0x05, 0x03, 0x05, 0x02, 0x04, 0x02, 0x01, 0x05, 0x02, + 0x05, 0x08, 0x08, 0x04, 0x01, 0x0A, 0x08, 0x03, 0x08, 0x10, 0x08, 0x0F, + 0x04, 0x01, 0x01, 0x03, 0x04, 0x08, 0x04, 0x08, 0x02, 0x04, 0x03, 0x01, + 0x84, 0x58, 0xFE, 0x9E, 0x03, 0x01, 0x01, 0x03, 0x01, 0x01, 0x01, 0x02, + 0x01, 0x01, 0x06, 0x03, 0x06, 0x04, 0x03, 0x03, 0x01, 0x02, 0x05, 0x01, + 0x03, 0x03, 0x01, 0xE3, 0x13, 0x0C, 0x0F, 0x10, 0x01, 0x06, 0x04, 0x08, + 0x01, 0x03, 0x04, 0x04, 0x0B, 0x01, 0x09, 0x03, 0x07, 0x11, 0x0A, 0x0B, + 0x0A, 0x0B, 0x05, 0x05, 0x02, 0x01, 0x03, 0x03, 0x02, 0x01, 0x0E, 0x0A, + 0x0E, 0x06, 0x0A, 0x06, 0x08, 0x02, 0x02, 0x0E, 0x0F, 0x13, 0x1E, 0x23, + 0x21, 0x1E, 0x0F, 0x0D, 0x0A, 0x05, 0x01, 0x01, 0x02, 0x07, 0x08, 0x0B, + 0x0D, 0x03, 0x41, 0x03, 0x03, 0x01, 0x01, 0x07, 0x02, 0x06, 0x03, 0x01, + 0x02, 0x02, 0x08, 0x02, 0x06, 0x05, 0x03, 0x05, 0x07, 0x02, 0x02, 0x0E, + 0x12, 0x13, 0x0F, 0x01, 0x0E, 0x14, 0x11, 0x10, 0x07, 0x02, 0x02, 0x01, + 0x01, 0x02, 0x01, 0x08, 0x08, 0x04, 0x01, 0x04, 0x03, 0x04, 0x06, 0x02, + 0x04, 0x03, 0x01, 0x48, 0x24, 0x48, 0x23, 0x12, 0x48, 0x12, 0x6C, 0x0F, + 0x1C, 0x16, 0x15, 0x04, 0x02, 0x04, 0x0C, 0x02, 0x07, 0x02, 0x04, 0x02, + 0x01, 0x01, 0x02, 0x04, 0x06, 0x01, 0x03, 0x04, 0x01, 0x01, 0x01, 0x06, + 0x08, 0x09, 0x07, 0x1F, 0x40, 0x1F, 0x40, 0x0F, 0x40, 0x0F, 0x1F, 0x40, + 0x3C, 0x1F, 0x0F, 0x3C, 0x0F, 0x06, 0x08, 0x09, 0x08, 0x09, 0x09, 0x0C, + 0x07, 0x13, 0x0A, 0x14, 0x0A, 0x0A, 0x04, 0x09, 0x02, 0x07, 0x05, 0x04, + 0x02, 0x02, 0x04, 0x05, 0x05, 0x03, 0x06, 0x03, 0x08, 0x05, 0x0D, 0x0E, + 0x0F, 0x23, 0x15, 0x1F, 0x19, 0x05, 0x1E, 0x08, 0x18, 0x14, 0x14, 0x0A, + 0x14, 0x0A, 0x02, 0x05, 0x01, 0x05, 0x08, 0x0A, 0x04, 0x05, 0x08, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x04, 0x0E, 0x0C, 0x01, 0x08, 0x06, + 0x11, 0x1A, 0x19, 0x1B, 0x16, 0x0B, 0x2B, 0x0A, 0x0A, 0x2B, 0x0B, 0x09, + 0x12, 0x05, 0x10, 0x05, 0x0E, 0x1A, 0x13, 0x16, 0x13, 0x18, 0x16, 0x0C, + 0x0B, 0x02, 0x03, 0x01, 0x05, 0x12, 0x07, 0x06, 0x06, 0x10, 0x05, 0x09, + 0x0B, 0x05, 0x0D, 0x09, 0x07, 0x0A, 0x08, 0x04, 0x06, 0x09, 0x08, 0x06, + 0x06, 0x05, 0x03, 0x01, 0x01, 0x02, 0x01, 0x02, 0x04, 0x01, 0x01, 0x0D, + 0x08, 0x04, 0x01, 0x01, 0x08, 0x04, 0x02, 0x08, 0x01, 0x01, 0x01, 0x03, + 0x08, 0x02, 0x08, 0x02, 0x25, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x04, + 0x01, 0x04, 0x04, 0x03, 0x02, 0x04, 0x02, 0x03, 0x04, 0x06, 0x02, 0x02, + 0x02, 0xA7, 0x02, 0x07, 0x08, 0x01, 0x05, 0x02, 0x04, 0x0A, 0x05, 0x08, + 0x09, 0x10, 0x0F, 0x10, 0x0B, 0x08, 0x02, 0x06, 0x09, 0x0C, 0x0A, 0x0D, + 0x0F, 0x12, 0x12, 0x11, 0x04, 0x03, 0x02, 0x03, 0x03, 0x02, 0x05, 0x06, + 0x0A, 0x05, 0x0A, 0x0D, 0x0E, 0x0E, 0x15, 0x10, 0x10, 0x06, 0x07, 0x03, + 0x03, 0x0F, 0x07, 0x10, 0x0D, 0x12, 0x0E, 0x0D, 0x0F, 0x0A, 0x0B, 0x07, + 0x07, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x5B, 0x00, 0x27, 0x06, 0xE3, + 0x03, 0x5A, 0x01, 0x0A, 0x01, 0x1A, 0x01, 0x2A, 0x01, 0x3F, 0x01, 0x7B, + 0x00, 0x00, 0x01, 0x14, 0x17, 0x16, 0x17, 0x16, 0x15, 0x06, 0x17, 0x16, + 0x07, 0x0E, 0x02, 0x07, 0x06, 0x17, 0x16, 0x0F, 0x01, 0x06, 0x2B, 0x08, + 0x22, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x15, 0x14, 0x07, 0x06, + 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x15, 0x14, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x2B, 0x01, 0x22, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x07, 0x06, 0x17, 0x1E, 0x03, 0x15, 0x16, 0x07, 0x06, 0x27, 0x26, 0x27, + 0x26, 0x07, 0x0E, 0x01, 0x23, 0x06, 0x07, 0x22, 0x17, 0x16, 0x07, 0x06, + 0x0F, 0x01, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, 0x17, + 0x15, 0x14, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x23, 0x06, + 0x23, 0x26, 0x27, 0x22, 0x26, 0x27, 0x22, 0x26, 0x27, 0x22, 0x27, 0x26, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x34, 0x37, 0x36, 0x33, 0x32, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x36, 0x3F, + 0x01, 0x36, 0x37, 0x36, 0x3F, 0x01, 0x32, 0x36, 0x33, 0x36, 0x17, 0x16, + 0x37, 0x36, 0x27, 0x26, 0x27, 0x26, 0x07, 0x06, 0x27, 0x3E, 0x01, 0x37, + 0x36, 0x17, 0x16, 0x17, 0x16, 0x33, 0x32, 0x35, 0x26, 0x3F, 0x02, 0x36, + 0x3B, 0x01, 0x26, 0x27, 0x26, 0x27, 0x26, 0x37, 0x34, 0x36, 0x17, 0x16, + 0x33, 0x32, 0x06, 0x3B, 0x01, 0x16, 0x15, 0x14, 0x16, 0x37, 0x33, 0x32, + 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x3B, 0x02, 0x32, 0x17, 0x16, 0x3B, + 0x02, 0x32, 0x17, 0x16, 0x3B, 0x08, 0x32, 0x37, 0x3E, 0x01, 0x3F, 0x01, + 0x36, 0x3B, 0x01, 0x32, 0x17, 0x14, 0x16, 0x17, 0x16, 0x05, 0x36, 0x26, + 0x07, 0x06, 0x2B, 0x02, 0x22, 0x27, 0x26, 0x07, 0x06, 0x17, 0x3B, 0x01, + 0x25, 0x36, 0x26, 0x07, 0x22, 0x0E, 0x01, 0x2B, 0x02, 0x06, 0x16, 0x37, + 0x36, 0x3B, 0x01, 0x17, 0x3B, 0x03, 0x32, 0x37, 0x32, 0x27, 0x26, 0x07, + 0x06, 0x2B, 0x02, 0x22, 0x2E, 0x01, 0x23, 0x26, 0x06, 0x01, 0x07, 0x06, + 0x07, 0x0E, 0x01, 0x23, 0x06, 0x07, 0x06, 0x16, 0x1F, 0x01, 0x16, 0x07, + 0x06, 0x27, 0x22, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x26, 0x27, 0x34, 0x27, + 0x26, 0x23, 0x06, 0x07, 0x06, 0x07, 0x1E, 0x01, 0x1F, 0x01, 0x16, 0x17, + 0x16, 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x34, 0x37, 0x36, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x06, 0xC2, 0x0E, + 0x0F, 0x01, 0x01, 0x01, 0x01, 0x02, 0x03, 0x01, 0x03, 0x03, 0x01, 0x02, + 0x02, 0x02, 0x01, 0x02, 0x03, 0x06, 0x14, 0x13, 0x79, 0x78, 0x78, 0x78, + 0x5D, 0x5D, 0x10, 0x02, 0x02, 0x10, 0x04, 0x06, 0x01, 0x01, 0x04, 0x08, + 0x1A, 0x19, 0x12, 0x0D, 0x23, 0x24, 0x04, 0x04, 0x17, 0x12, 0x1C, 0x18, + 0x1A, 0x2A, 0x17, 0x20, 0x0F, 0x0D, 0x08, 0x01, 0x06, 0x06, 0x06, 0x04, + 0x05, 0x01, 0x02, 0x01, 0x01, 0x03, 0x05, 0x05, 0x0C, 0x07, 0x0B, 0x09, + 0x0C, 0x04, 0x10, 0x03, 0x08, 0x10, 0x08, 0x03, 0x02, 0x01, 0x02, 0x01, + 0x03, 0x01, 0x09, 0x0D, 0x01, 0x0A, 0x01, 0x04, 0x02, 0x01, 0x02, 0x06, + 0x06, 0x09, 0x0C, 0x03, 0x02, 0x06, 0x01, 0x1D, 0x13, 0x1B, 0x11, 0x20, + 0x09, 0x20, 0x09, 0x07, 0x1B, 0x07, 0x15, 0x0D, 0x10, 0x02, 0x02, 0x02, + 0x07, 0x1A, 0x18, 0x1E, 0x04, 0x0C, 0x04, 0x03, 0x0D, 0x04, 0x07, 0x12, + 0x0E, 0x07, 0x03, 0x02, 0x05, 0x05, 0x04, 0x06, 0x05, 0x06, 0x04, 0x03, + 0x06, 0x0B, 0x0F, 0x05, 0x11, 0x04, 0x0E, 0x04, 0x0D, 0x06, 0x0A, 0x06, + 0x0C, 0x0C, 0x02, 0x08, 0x02, 0x04, 0x08, 0x07, 0x04, 0x16, 0x0D, 0x0E, + 0x10, 0x08, 0x0F, 0x0E, 0x07, 0x03, 0x0F, 0x04, 0x09, 0x0D, 0x09, 0x10, + 0x0C, 0x0E, 0x0B, 0x01, 0x07, 0x08, 0x08, 0x0D, 0x0C, 0x1C, 0x07, 0x0D, + 0x0D, 0x05, 0x02, 0x02, 0x04, 0x09, 0x06, 0x06, 0x05, 0x02, 0x03, 0x0A, + 0x01, 0x02, 0x02, 0x09, 0x03, 0x16, 0x12, 0x06, 0x03, 0x03, 0x01, 0x05, + 0x0B, 0x0B, 0x19, 0x0D, 0x18, 0x0C, 0x71, 0x70, 0x0B, 0x06, 0x04, 0x0A, + 0x23, 0x22, 0x67, 0x66, 0x67, 0x66, 0x3A, 0x3A, 0x0E, 0x0D, 0x05, 0x11, + 0x03, 0x0F, 0x0A, 0x05, 0x09, 0x03, 0x01, 0x01, 0x01, 0x01, 0xFD, 0xE6, + 0x02, 0x07, 0x0B, 0x1E, 0x01, 0x18, 0x17, 0x07, 0x07, 0x0A, 0x03, 0x04, + 0x14, 0x1F, 0x25, 0x01, 0x23, 0x02, 0x09, 0x0D, 0x06, 0x11, 0x09, 0x02, + 0x24, 0x23, 0x01, 0x0B, 0x0C, 0x0F, 0x10, 0x24, 0xA1, 0x23, 0x24, 0x15, + 0x14, 0x05, 0x06, 0x09, 0x07, 0x02, 0x07, 0x06, 0x05, 0x19, 0x19, 0x02, + 0x09, 0x0F, 0x07, 0x0D, 0x0B, 0xFC, 0xC5, 0x0F, 0x05, 0x0C, 0x04, 0x0D, + 0x02, 0x07, 0x03, 0x04, 0x0A, 0x07, 0x07, 0x04, 0x04, 0x06, 0x02, 0x01, + 0x03, 0x03, 0x02, 0x10, 0x08, 0x09, 0x04, 0x0F, 0x0F, 0x03, 0x08, 0x0E, + 0x07, 0x10, 0x02, 0x07, 0x01, 0x09, 0x06, 0x0A, 0x0C, 0x0B, 0x15, 0x26, + 0x24, 0x1B, 0x16, 0x0D, 0x0C, 0x0B, 0x05, 0x02, 0x01, 0x01, 0x02, 0x02, + 0x13, 0x0F, 0x0C, 0x12, 0x03, 0x33, 0x14, 0x10, 0x10, 0x15, 0x07, 0x0C, + 0x09, 0x0A, 0x0E, 0x09, 0x03, 0x08, 0x0A, 0x03, 0x06, 0x0B, 0x0F, 0x05, + 0x12, 0x0F, 0x02, 0x01, 0x24, 0x0E, 0x16, 0x0D, 0x05, 0x13, 0x11, 0x07, + 0x0C, 0x03, 0x03, 0x05, 0x04, 0x08, 0x09, 0x0E, 0x20, 0x19, 0x1D, 0x14, + 0x0F, 0x05, 0x04, 0x1A, 0x11, 0x0F, 0x17, 0x01, 0x15, 0x12, 0x0A, 0x05, + 0x11, 0x04, 0x08, 0x06, 0x04, 0x01, 0x0D, 0x02, 0x01, 0x05, 0x03, 0x03, + 0x03, 0x02, 0x01, 0x03, 0x02, 0x02, 0x0E, 0x11, 0x04, 0x10, 0x07, 0x18, + 0x06, 0x0C, 0x0F, 0x02, 0x10, 0x02, 0x06, 0x10, 0x09, 0x10, 0x19, 0x0C, + 0x03, 0x05, 0x07, 0x0A, 0x07, 0x04, 0x11, 0x15, 0x01, 0x01, 0x02, 0x02, + 0x01, 0x01, 0x01, 0x13, 0x17, 0x1A, 0x22, 0x12, 0x3F, 0x3E, 0x3C, 0x39, + 0x06, 0x18, 0x06, 0x06, 0x18, 0x06, 0x0E, 0x1E, 0x18, 0x14, 0x06, 0x10, + 0x08, 0x0C, 0x08, 0x04, 0x03, 0x07, 0x04, 0x06, 0x07, 0x01, 0x01, 0x03, + 0x03, 0x04, 0x0D, 0x05, 0x0A, 0x06, 0x03, 0x03, 0x02, 0x02, 0x02, 0x02, + 0x03, 0x0A, 0x12, 0x11, 0x01, 0x01, 0x05, 0x06, 0x0A, 0x01, 0x06, 0x02, + 0x04, 0x02, 0x01, 0x04, 0x03, 0x02, 0x01, 0x07, 0x08, 0x08, 0x0A, 0x04, + 0x06, 0x06, 0x06, 0x03, 0x14, 0x13, 0x04, 0x01, 0x01, 0x08, 0x01, 0x09, + 0x03, 0x03, 0x01, 0x02, 0x02, 0x04, 0x01, 0x05, 0x06, 0x01, 0x02, 0x03, + 0x03, 0x07, 0x02, 0x07, 0x01, 0x06, 0x02, 0x06, 0x02, 0x06, 0x02, 0x04, + 0x26, 0x07, 0x07, 0x01, 0x02, 0x01, 0x01, 0x02, 0x0A, 0x01, 0x01, 0x07, + 0x06, 0x01, 0x01, 0x01, 0x07, 0x05, 0x01, 0x01, 0x01, 0x01, 0x07, 0x02, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x05, 0xFE, 0x9B, 0x09, 0x03, 0x04, 0x01, + 0x03, 0x01, 0x0E, 0x0F, 0x1C, 0x0C, 0x07, 0x04, 0x03, 0x05, 0x02, 0x03, + 0x03, 0x01, 0x0F, 0x12, 0x14, 0x12, 0x01, 0x05, 0x04, 0x02, 0x04, 0x02, + 0x04, 0x04, 0x10, 0x04, 0x18, 0x0F, 0x0A, 0x0C, 0x07, 0x0F, 0x02, 0x01, + 0x06, 0x05, 0x0A, 0x08, 0x14, 0x09, 0x11, 0x12, 0x09, 0x13, 0x04, 0x02, + 0x08, 0x06, 0x07, 0x08, 0x00, 0x03, 0x00, 0x5D, 0x00, 0x26, 0x04, 0xE3, + 0x03, 0x5A, 0x01, 0x0D, 0x01, 0x20, 0x01, 0x33, 0x00, 0x00, 0x01, 0x15, + 0x14, 0x07, 0x06, 0x27, 0x26, 0x23, 0x22, 0x15, 0x06, 0x15, 0x14, 0x17, + 0x16, 0x2B, 0x02, 0x22, 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, 0x1F, 0x01, + 0x14, 0x16, 0x15, 0x22, 0x27, 0x23, 0x26, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x27, 0x23, 0x06, 0x27, 0x26, 0x27, 0x1D, 0x03, + 0x14, 0x27, 0x26, 0x07, 0x06, 0x17, 0x16, 0x1D, 0x04, 0x14, 0x17, 0x14, + 0x2B, 0x04, 0x22, 0x37, 0x3D, 0x02, 0x34, 0x27, 0x26, 0x2B, 0x02, 0x22, + 0x27, 0x26, 0x27, 0x26, 0x37, 0x3E, 0x02, 0x35, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x34, 0x37, 0x36, 0x27, 0x26, 0x27, 0x26, 0x27, + 0x26, 0x07, 0x0E, 0x01, 0x23, 0x06, 0x0F, 0x01, 0x06, 0x27, 0x26, 0x27, + 0x26, 0x07, 0x06, 0x2B, 0x04, 0x1D, 0x03, 0x14, 0x07, 0x06, 0x23, 0x22, + 0x27, 0x26, 0x27, 0x26, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x34, 0x37, 0x36, 0x34, + 0x37, 0x36, 0x37, 0x36, 0x35, 0x16, 0x17, 0x16, 0x17, 0x32, 0x16, 0x33, + 0x16, 0x33, 0x16, 0x1F, 0x01, 0x16, 0x06, 0x07, 0x06, 0x2B, 0x01, 0x22, + 0x27, 0x26, 0x22, 0x27, 0x26, 0x22, 0x27, 0x26, 0x22, 0x27, 0x23, 0x22, + 0x27, 0x31, 0x27, 0x06, 0x16, 0x37, 0x32, 0x17, 0x16, 0x32, 0x17, 0x16, + 0x32, 0x17, 0x16, 0x33, 0x16, 0x3B, 0x06, 0x32, 0x37, 0x35, 0x36, 0x35, + 0x34, 0x37, 0x36, 0x37, 0x32, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x3B, 0x04, 0x31, 0x37, 0x26, 0x37, 0x36, 0x35, 0x26, 0x37, 0x36, + 0x37, 0x36, 0x17, 0x16, 0x17, 0x15, 0x14, 0x07, 0x06, 0x3B, 0x02, 0x32, + 0x17, 0x16, 0x05, 0x16, 0x3B, 0x01, 0x32, 0x37, 0x36, 0x27, 0x26, 0x07, + 0x06, 0x23, 0x22, 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x01, 0x23, 0x06, + 0x1D, 0x02, 0x14, 0x16, 0x17, 0x16, 0x17, 0x36, 0x37, 0x36, 0x37, 0x22, + 0x26, 0x27, 0x26, 0x04, 0xE3, 0x0C, 0x06, 0x14, 0x1A, 0x04, 0x10, 0x01, + 0x02, 0x01, 0x0C, 0x45, 0x46, 0x0E, 0x03, 0x01, 0x02, 0x02, 0x07, 0x08, + 0x02, 0x03, 0x02, 0x17, 0x0B, 0x22, 0x01, 0x08, 0x07, 0x0F, 0x02, 0x0C, + 0x05, 0x09, 0x0E, 0x0A, 0x09, 0x13, 0x1B, 0x17, 0x17, 0x18, 0x07, 0x07, + 0x05, 0x02, 0x01, 0x01, 0x01, 0x03, 0x14, 0x15, 0x31, 0x32, 0x04, 0x02, + 0x07, 0x05, 0x13, 0x1A, 0x19, 0x0A, 0x04, 0x03, 0x08, 0x02, 0x03, 0x01, + 0x02, 0x01, 0x02, 0x04, 0x05, 0x02, 0x05, 0x0C, 0x04, 0x0D, 0x04, 0x02, + 0x07, 0x05, 0x08, 0x07, 0x0A, 0x0C, 0x1C, 0x0B, 0x1D, 0x03, 0x0A, 0x03, + 0x0A, 0x09, 0x06, 0x09, 0x02, 0x05, 0x0A, 0x0E, 0x01, 0x1E, 0x1E, 0x0E, + 0x0C, 0x0D, 0x0C, 0x06, 0x0E, 0x05, 0x0C, 0x07, 0x0A, 0x09, 0x0A, 0x09, + 0x06, 0x07, 0x07, 0x03, 0x08, 0x06, 0x06, 0x01, 0x02, 0x02, 0x01, 0x02, + 0x01, 0x01, 0x01, 0x01, 0x02, 0x0E, 0x0E, 0x4F, 0x50, 0x4C, 0x52, 0x02, + 0x0B, 0x03, 0x0A, 0x05, 0x01, 0x02, 0x04, 0x01, 0x02, 0x06, 0x10, 0x14, + 0x26, 0x0D, 0x18, 0x06, 0x18, 0x06, 0x05, 0x13, 0x04, 0x05, 0x12, 0x04, + 0x0D, 0x0A, 0x02, 0x01, 0x01, 0x03, 0x04, 0x0B, 0x06, 0x04, 0x0E, 0x04, + 0x03, 0x0E, 0x03, 0x1C, 0x0D, 0x0D, 0x1C, 0x48, 0x48, 0x54, 0x53, 0x33, + 0x32, 0x04, 0x01, 0x02, 0x0C, 0x16, 0x0C, 0x13, 0x0F, 0x07, 0x04, 0x05, + 0x01, 0x03, 0x04, 0x01, 0x09, 0x30, 0x2F, 0x07, 0x07, 0x04, 0x01, 0x01, + 0x02, 0x02, 0x07, 0x21, 0x06, 0x1C, 0x0B, 0x10, 0x02, 0x01, 0x02, 0x13, + 0x17, 0x17, 0x0D, 0x03, 0x02, 0xFE, 0x10, 0x18, 0x16, 0x2F, 0x12, 0x13, + 0x12, 0x06, 0x06, 0x1D, 0x14, 0x20, 0x0F, 0x09, 0x0D, 0x0C, 0x0F, 0x01, + 0x03, 0xFD, 0xD5, 0x0D, 0x04, 0x01, 0x01, 0x02, 0x01, 0x08, 0x05, 0x03, + 0x0B, 0x01, 0x05, 0x01, 0x03, 0x02, 0xC8, 0x1C, 0x0B, 0x0C, 0x07, 0x02, + 0x02, 0x09, 0x06, 0x10, 0x06, 0x12, 0x0D, 0x07, 0x07, 0x0B, 0x08, 0x02, + 0x02, 0x08, 0x0C, 0x03, 0x09, 0x02, 0x01, 0x01, 0x0C, 0x0D, 0x1C, 0x02, + 0x0E, 0x05, 0x09, 0x03, 0x03, 0x01, 0x02, 0x05, 0x03, 0x0F, 0x5B, 0x5B, + 0x11, 0x11, 0x09, 0x03, 0x02, 0x05, 0x04, 0x06, 0x05, 0x06, 0x1A, 0x1B, + 0x34, 0x35, 0x04, 0x03, 0x05, 0x1D, 0x21, 0x36, 0x37, 0x12, 0x01, 0x01, + 0x07, 0x05, 0x0A, 0x04, 0x08, 0x02, 0x06, 0x03, 0x01, 0x09, 0x14, 0x16, + 0x07, 0x19, 0x32, 0x13, 0x37, 0x04, 0x0E, 0x05, 0x0B, 0x08, 0x12, 0x0E, + 0x09, 0x0C, 0x03, 0x01, 0x03, 0x02, 0x03, 0x0A, 0x09, 0x09, 0x0B, 0x01, + 0x03, 0x01, 0x02, 0x17, 0x16, 0x16, 0x16, 0x02, 0x03, 0x04, 0x01, 0x02, + 0x02, 0x03, 0x01, 0x01, 0x04, 0x01, 0x09, 0x07, 0x06, 0x10, 0x0E, 0x14, + 0x0A, 0x1A, 0x36, 0x1B, 0x34, 0x07, 0x1E, 0x08, 0x07, 0x1D, 0x08, 0x0E, + 0x0A, 0x0B, 0x0D, 0x04, 0x08, 0x07, 0x0B, 0x02, 0x02, 0x01, 0x03, 0x04, + 0x07, 0x06, 0x04, 0x0A, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, + 0x01, 0x06, 0x06, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x09, + 0x0E, 0x0E, 0x02, 0x05, 0x01, 0x02, 0x01, 0x04, 0x02, 0x07, 0x08, 0x05, + 0x06, 0x04, 0x01, 0x01, 0x01, 0x04, 0x06, 0x06, 0x06, 0x02, 0x0E, 0x03, + 0x0D, 0x09, 0x0D, 0x0F, 0x23, 0x11, 0x0E, 0x15, 0x01, 0x01, 0xF4, 0x08, + 0x08, 0x08, 0x1A, 0x1E, 0x02, 0x01, 0x01, 0x01, 0x05, 0x08, 0x13, 0x15, + 0x01, 0x29, 0x01, 0x0B, 0x0E, 0x10, 0x05, 0x15, 0x05, 0x14, 0x0B, 0x22, + 0x11, 0x0C, 0x26, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x5B, + 0x00, 0x24, 0x09, 0x3E, 0x03, 0x5A, 0x02, 0x22, 0x02, 0x3A, 0x02, 0x50, + 0x02, 0x63, 0x02, 0x8E, 0x00, 0x00, 0x01, 0x16, 0x17, 0x16, 0x1D, 0x02, + 0x14, 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x33, 0x16, 0x37, 0x36, 0x17, + 0x16, 0x17, 0x16, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x06, 0x15, 0x14, 0x07, 0x06, + 0x07, 0x06, 0x27, 0x22, 0x2E, 0x01, 0x23, 0x26, 0x27, 0x26, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, 0x15, 0x16, 0x07, 0x06, 0x15, 0x14, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x0F, 0x01, + 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x3F, 0x01, 0x36, + 0x37, 0x34, 0x37, 0x36, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x23, 0x06, + 0x23, 0x26, 0x23, 0x06, 0x07, 0x06, 0x27, 0x26, 0x23, 0x36, 0x34, 0x37, + 0x36, 0x35, 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x23, 0x1E, 0x03, + 0x17, 0x14, 0x16, 0x17, 0x16, 0x07, 0x06, 0x07, 0x22, 0x06, 0x07, 0x23, + 0x06, 0x17, 0x14, 0x16, 0x15, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x06, 0x23, 0x22, 0x06, 0x07, 0x0E, + 0x01, 0x23, 0x0E, 0x01, 0x23, 0x06, 0x07, 0x06, 0x2F, 0x01, 0x34, 0x26, + 0x35, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x2E, + 0x01, 0x35, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x26, 0x2B, 0x01, 0x22, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x27, 0x26, + 0x27, 0x22, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x0F, 0x01, 0x06, + 0x17, 0x16, 0x17, 0x16, 0x33, 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, + 0x07, 0x06, 0x0F, 0x01, 0x06, 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, 0x07, + 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x2E, + 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x27, + 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x35, 0x34, 0x37, 0x36, + 0x26, 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, 0x33, 0x36, 0x32, 0x37, 0x36, + 0x33, 0x16, 0x3B, 0x02, 0x32, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x3F, 0x01, 0x36, 0x17, 0x16, 0x32, 0x16, 0x32, 0x17, + 0x32, 0x37, 0x36, 0x17, 0x32, 0x1F, 0x01, 0x16, 0x17, 0x16, 0x37, 0x33, + 0x32, 0x16, 0x1D, 0x02, 0x14, 0x37, 0x36, 0x35, 0x34, 0x27, 0x26, 0x37, + 0x36, 0x17, 0x32, 0x1E, 0x01, 0x3B, 0x02, 0x32, 0x27, 0x26, 0x36, 0x17, + 0x16, 0x1D, 0x01, 0x06, 0x3B, 0x01, 0x16, 0x3D, 0x01, 0x26, 0x3B, 0x02, + 0x32, 0x15, 0x06, 0x15, 0x14, 0x37, 0x33, 0x32, 0x27, 0x26, 0x37, 0x36, + 0x33, 0x16, 0x32, 0x37, 0x32, 0x1D, 0x01, 0x14, 0x33, 0x32, 0x17, 0x16, + 0x37, 0x36, 0x26, 0x3B, 0x02, 0x32, 0x15, 0x06, 0x15, 0x14, 0x16, 0x3D, + 0x01, 0x34, 0x3B, 0x02, 0x32, 0x07, 0x06, 0x17, 0x16, 0x37, 0x36, 0x33, + 0x32, 0x3D, 0x01, 0x34, 0x33, 0x16, 0x33, 0x32, 0x37, 0x32, 0x17, 0x16, + 0x07, 0x06, 0x33, 0x32, 0x17, 0x16, 0x37, 0x36, 0x27, 0x26, 0x33, 0x32, + 0x37, 0x36, 0x15, 0x14, 0x17, 0x14, 0x33, 0x32, 0x3D, 0x01, 0x34, 0x37, + 0x36, 0x16, 0x07, 0x06, 0x3B, 0x02, 0x32, 0x07, 0x06, 0x15, 0x14, 0x3B, + 0x08, 0x16, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x34, 0x37, 0x34, 0x37, 0x36, 0x37, 0x36, 0x33, 0x32, 0x37, 0x3E, 0x01, + 0x33, 0x32, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x05, 0x2B, 0x05, 0x32, + 0x07, 0x06, 0x3B, 0x0A, 0x32, 0x35, 0x26, 0x01, 0x14, 0x37, 0x36, 0x3B, + 0x02, 0x32, 0x37, 0x36, 0x37, 0x36, 0x27, 0x26, 0x27, 0x26, 0x23, 0x06, + 0x23, 0x22, 0x27, 0x22, 0x25, 0x36, 0x27, 0x26, 0x23, 0x22, 0x27, 0x26, + 0x07, 0x0E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x33, 0x32, 0x17, 0x16, 0x25, + 0x22, 0x26, 0x23, 0x22, 0x27, 0x16, 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, + 0x17, 0x16, 0x1F, 0x01, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x27, 0x34, 0x26, 0x35, 0x26, 0x27, 0x26, 0x27, 0x2E, + 0x01, 0x2F, 0x01, 0x26, 0x27, 0x26, 0x08, 0xAF, 0x0B, 0x08, 0x07, 0x05, + 0x02, 0x03, 0x02, 0x12, 0x0C, 0x0B, 0x05, 0x17, 0x13, 0x03, 0x03, 0x06, + 0x05, 0x0B, 0x08, 0x0D, 0x12, 0x08, 0x0B, 0x0D, 0x0B, 0x0E, 0x01, 0x03, + 0x02, 0x09, 0x08, 0x03, 0x02, 0x02, 0x01, 0x02, 0x06, 0x05, 0x0C, 0x03, + 0x09, 0x05, 0x02, 0x06, 0x0C, 0x0D, 0x05, 0x07, 0x07, 0x06, 0x0A, 0x12, + 0x03, 0x02, 0x02, 0x01, 0x01, 0x02, 0x01, 0x02, 0x01, 0x01, 0x02, 0x01, + 0x04, 0x01, 0x01, 0x02, 0x02, 0x01, 0x0B, 0x15, 0x17, 0x19, 0x03, 0x04, + 0x01, 0x02, 0x01, 0x06, 0x01, 0x04, 0x06, 0x05, 0x04, 0x0E, 0x0B, 0x0B, + 0x12, 0x04, 0x09, 0x05, 0x0A, 0x05, 0x0B, 0x05, 0x0C, 0x0F, 0x15, 0x0D, + 0x18, 0x01, 0x01, 0x01, 0x17, 0x02, 0x09, 0x12, 0x10, 0x0C, 0x0A, 0x13, + 0x01, 0x06, 0x02, 0x04, 0x01, 0x03, 0x02, 0x03, 0x02, 0x02, 0x05, 0x02, + 0x04, 0x02, 0x01, 0x05, 0x02, 0x02, 0x06, 0x18, 0x05, 0x04, 0x0D, 0x04, + 0x0D, 0x02, 0x06, 0x02, 0x0A, 0x03, 0x02, 0x0B, 0x03, 0x02, 0x0C, 0x02, + 0x06, 0x17, 0x05, 0x06, 0x18, 0x05, 0x05, 0x0A, 0x0A, 0x01, 0x03, 0x04, + 0x01, 0x07, 0x02, 0x07, 0x04, 0x02, 0x0B, 0x03, 0x07, 0x09, 0x01, 0x03, + 0x01, 0x02, 0x01, 0x02, 0x02, 0x02, 0x0B, 0x26, 0x13, 0x12, 0x0F, 0x08, + 0x07, 0x10, 0x0D, 0x19, 0x07, 0x1A, 0x07, 0x19, 0x1A, 0x1D, 0x15, 0x02, + 0x08, 0x02, 0x05, 0x08, 0x05, 0x0A, 0x08, 0x06, 0x0C, 0x09, 0x03, 0x01, + 0x05, 0x03, 0x04, 0x04, 0x02, 0x05, 0x02, 0x01, 0x04, 0x05, 0x01, 0x08, + 0x03, 0x0C, 0x0A, 0x07, 0x09, 0x03, 0x02, 0x03, 0x02, 0x06, 0x07, 0x0B, + 0x0D, 0x05, 0x0B, 0x16, 0x06, 0x14, 0x06, 0x04, 0x1E, 0x0F, 0x0E, 0x01, + 0x04, 0x0A, 0x0C, 0x05, 0x0D, 0x1C, 0x0D, 0x1C, 0x08, 0x09, 0x0B, 0x0A, + 0x10, 0x17, 0x19, 0x12, 0x2A, 0x1F, 0x22, 0x27, 0x16, 0x17, 0x1E, 0x0E, + 0x12, 0x42, 0x0D, 0x15, 0x4D, 0x0D, 0x38, 0x0D, 0x2D, 0x25, 0x2D, 0x25, + 0x0D, 0x38, 0x0D, 0x0F, 0x2F, 0x2D, 0x02, 0x01, 0x08, 0x02, 0x02, 0x02, + 0x01, 0x15, 0x15, 0x15, 0x0D, 0x36, 0x0D, 0x35, 0x6B, 0x35, 0x6A, 0x4E, + 0x4E, 0x0D, 0x10, 0x17, 0x05, 0x0D, 0x16, 0x10, 0x0F, 0x12, 0x0F, 0x16, + 0x0D, 0x03, 0x0A, 0x03, 0x0F, 0x09, 0x08, 0x07, 0x07, 0x0C, 0x0B, 0x0C, + 0x0F, 0x12, 0x08, 0x09, 0x02, 0x08, 0x04, 0x08, 0x02, 0x01, 0x06, 0x03, + 0x03, 0x02, 0x06, 0x02, 0x03, 0x02, 0x04, 0x05, 0x08, 0x0B, 0x08, 0x03, + 0x02, 0x01, 0x01, 0x02, 0x03, 0x10, 0x04, 0x09, 0x06, 0x01, 0x0A, 0x0A, + 0x03, 0x01, 0x02, 0x04, 0x0F, 0x0F, 0x02, 0x06, 0x0A, 0x08, 0x02, 0x06, + 0x0C, 0x0C, 0x04, 0x01, 0x09, 0x0B, 0x02, 0x01, 0x02, 0x02, 0x01, 0x08, + 0x05, 0x08, 0x04, 0x05, 0x07, 0x05, 0x05, 0x07, 0x02, 0x01, 0x02, 0x02, + 0x0C, 0x0B, 0x07, 0x01, 0x1A, 0x06, 0x0C, 0x0D, 0x02, 0x01, 0x02, 0x01, + 0x03, 0x07, 0x05, 0x04, 0x07, 0x04, 0x03, 0x07, 0x04, 0x05, 0x08, 0x01, + 0x02, 0x02, 0x01, 0x02, 0x05, 0x05, 0x07, 0x02, 0x01, 0x01, 0x03, 0x05, + 0x0B, 0x09, 0x0D, 0x01, 0x08, 0x09, 0x0F, 0x0F, 0x04, 0x02, 0x01, 0x01, + 0x0E, 0x0C, 0x0A, 0x02, 0x02, 0x04, 0x06, 0x21, 0x21, 0x6E, 0x6F, 0x39, + 0x39, 0x09, 0x04, 0x05, 0x0B, 0x0A, 0x03, 0x0B, 0x03, 0x05, 0x04, 0x05, + 0x02, 0x01, 0x01, 0x03, 0x07, 0x07, 0x0E, 0x03, 0x08, 0x02, 0x08, 0x01, + 0x02, 0x07, 0x05, 0x04, 0x0A, 0x04, 0x06, 0xFD, 0xAF, 0x56, 0x55, 0x56, + 0x56, 0x3F, 0x40, 0x01, 0x01, 0x01, 0x02, 0x09, 0x08, 0x25, 0x24, 0x7E, + 0x7E, 0x30, 0x30, 0x0D, 0x0C, 0x07, 0x01, 0xFE, 0x7C, 0x2B, 0x1C, 0x1D, + 0x16, 0x15, 0x0D, 0x07, 0x07, 0x04, 0x07, 0x0D, 0x0E, 0x0B, 0x07, 0x0E, + 0x08, 0x0E, 0x23, 0x1A, 0x27, 0xFD, 0xA3, 0x07, 0x03, 0x05, 0x15, 0x12, + 0x0A, 0x0E, 0x0F, 0x0C, 0x0C, 0x08, 0x07, 0x07, 0x07, 0x08, 0x15, 0x0E, + 0x14, 0xFE, 0x65, 0x03, 0x09, 0x02, 0x09, 0x05, 0x02, 0x02, 0x02, 0x02, + 0x02, 0x02, 0x01, 0x05, 0x0E, 0x0C, 0x1B, 0x11, 0x13, 0x11, 0x12, 0x0B, + 0x18, 0x0B, 0x18, 0x15, 0x09, 0x0C, 0x04, 0x04, 0x01, 0x04, 0x04, 0x02, + 0x02, 0x1E, 0x14, 0x24, 0x2A, 0x0E, 0x26, 0x03, 0x1B, 0x11, 0x1D, 0x1B, + 0x16, 0x0E, 0x0E, 0x03, 0x08, 0x04, 0x08, 0x02, 0x01, 0x01, 0x01, 0x02, + 0x01, 0x0A, 0x08, 0x12, 0x0F, 0x0B, 0x0A, 0x01, 0x02, 0x01, 0x01, 0x04, + 0x03, 0x04, 0x08, 0x09, 0x05, 0x08, 0x08, 0x01, 0x01, 0x07, 0x07, 0x0A, + 0x05, 0x09, 0x02, 0x03, 0x01, 0x01, 0x01, 0x01, 0x05, 0x04, 0x03, 0x04, + 0x03, 0x04, 0x03, 0x07, 0x15, 0x1E, 0x06, 0x34, 0x19, 0x1A, 0x34, 0x0C, + 0x18, 0x06, 0x18, 0x06, 0x03, 0x08, 0x03, 0x0A, 0x05, 0x04, 0x05, 0x05, + 0x03, 0x02, 0x03, 0x04, 0x03, 0x1A, 0x1A, 0x06, 0x12, 0x0D, 0x51, 0x1B, + 0x36, 0x06, 0x1C, 0x1C, 0x01, 0x06, 0x0F, 0x0E, 0x03, 0x01, 0x01, 0x01, + 0x01, 0x02, 0x03, 0x02, 0x01, 0x02, 0x0A, 0x03, 0x05, 0x0A, 0x0D, 0x01, + 0x05, 0x08, 0x05, 0x01, 0x01, 0x05, 0x17, 0x0C, 0x17, 0x05, 0x01, 0x0D, + 0x06, 0x0F, 0x05, 0x01, 0x02, 0x01, 0x01, 0x03, 0x05, 0x02, 0x06, 0x02, + 0x1B, 0x68, 0x1A, 0x13, 0x37, 0x13, 0x37, 0x0B, 0x01, 0x01, 0x02, 0x02, + 0x01, 0x01, 0x02, 0x01, 0x03, 0x02, 0x01, 0x03, 0x06, 0x0F, 0x02, 0x09, + 0x03, 0x07, 0x1F, 0x08, 0x1B, 0x13, 0x0B, 0x2E, 0x0C, 0x1C, 0x28, 0x04, + 0x0C, 0x03, 0x03, 0x0C, 0x03, 0x07, 0x0C, 0x08, 0x06, 0x04, 0x14, 0x13, + 0x03, 0x03, 0x02, 0x01, 0x02, 0x01, 0x01, 0x01, 0x02, 0x08, 0x03, 0x01, + 0x01, 0x04, 0x03, 0x08, 0x05, 0x09, 0x12, 0x0D, 0x08, 0x03, 0x0A, 0x09, + 0x04, 0x03, 0x05, 0x01, 0x01, 0x02, 0x02, 0x04, 0x0C, 0x06, 0x12, 0x0F, + 0x11, 0x12, 0x11, 0x09, 0x0A, 0x0B, 0x07, 0x05, 0x01, 0x02, 0x02, 0x05, + 0x0C, 0x03, 0x0C, 0x03, 0x02, 0x12, 0x08, 0x0D, 0x05, 0x0F, 0x12, 0x14, + 0x0A, 0x19, 0x30, 0x18, 0x30, 0x0E, 0x18, 0x19, 0x07, 0x0D, 0x07, 0x08, + 0x04, 0x07, 0x04, 0x04, 0x05, 0x03, 0x09, 0x0C, 0x05, 0x06, 0x18, 0x04, + 0x07, 0x1C, 0x04, 0x13, 0x05, 0x11, 0x0C, 0x11, 0x0C, 0x05, 0x14, 0x05, + 0x05, 0x02, 0x02, 0x1C, 0x17, 0x36, 0x27, 0x4A, 0x28, 0x34, 0x19, 0x1B, + 0x04, 0x03, 0x01, 0x01, 0x01, 0x01, 0x06, 0x07, 0x01, 0x03, 0x08, 0x06, + 0x0C, 0x0C, 0x05, 0x06, 0x03, 0x01, 0x03, 0x03, 0x04, 0x09, 0x0A, 0x05, + 0x0C, 0x0F, 0x10, 0x02, 0x03, 0x02, 0x02, 0x01, 0x02, 0x01, 0x02, 0x01, + 0x01, 0x02, 0x01, 0x02, 0x01, 0x02, 0x01, 0x08, 0x0A, 0x16, 0x16, 0x02, + 0x03, 0x02, 0x03, 0x05, 0x07, 0x09, 0x02, 0x03, 0x01, 0x01, 0x01, 0x07, + 0x06, 0x04, 0x01, 0x01, 0x02, 0x08, 0x05, 0x02, 0x03, 0x09, 0x05, 0x05, + 0x03, 0x06, 0x02, 0x01, 0x07, 0x06, 0x02, 0x01, 0x01, 0x01, 0x03, 0x0A, + 0x03, 0x01, 0x01, 0x02, 0x01, 0x0E, 0x03, 0x03, 0x08, 0x01, 0x02, 0x07, + 0x08, 0x02, 0x07, 0x07, 0x01, 0x03, 0x02, 0x01, 0x02, 0x07, 0x07, 0x01, + 0x01, 0x01, 0x02, 0x06, 0x07, 0x01, 0x01, 0x02, 0x01, 0x08, 0x06, 0x01, + 0x01, 0x08, 0x07, 0x01, 0x01, 0x02, 0x0B, 0x02, 0x01, 0x01, 0x04, 0x06, + 0x07, 0x0B, 0x0E, 0x04, 0x01, 0x01, 0x01, 0x05, 0x0B, 0x03, 0x0E, 0x03, + 0x05, 0x03, 0x04, 0x05, 0x08, 0x05, 0x08, 0x03, 0x0D, 0x0A, 0x09, 0x02, + 0x01, 0x03, 0x06, 0x04, 0x04, 0x0C, 0x0B, 0x12, 0x2F, 0x06, 0x07, 0x03, + 0x02, 0xFE, 0x9A, 0x1C, 0x01, 0x01, 0x07, 0x09, 0x09, 0x0F, 0x09, 0x09, + 0x02, 0x01, 0x01, 0x01, 0x65, 0x10, 0x0F, 0x0E, 0x01, 0x01, 0x03, 0x03, + 0x1A, 0x0A, 0x09, 0x01, 0x03, 0x01, 0x02, 0x51, 0x02, 0x01, 0x32, 0x19, + 0x18, 0x34, 0x06, 0x0C, 0x0B, 0x05, 0x09, 0x01, 0x06, 0x03, 0x07, 0x07, + 0x05, 0x04, 0x0A, 0x05, 0x0A, 0x0C, 0x08, 0x09, 0x18, 0x03, 0x0C, 0x03, + 0x07, 0x09, 0x0C, 0x08, 0x05, 0x04, 0x06, 0x09, 0x0B, 0x03, 0x06, 0x00, + 0x00, 0x03, 0x00, 0x5D, 0x00, 0x40, 0x0A, 0x2C, 0x03, 0x45, 0x01, 0x76, + 0x01, 0xA5, 0x01, 0xDC, 0x00, 0x00, 0x01, 0x32, 0x14, 0x17, 0x2F, 0x01, + 0x17, 0x26, 0x07, 0x06, 0x2B, 0x02, 0x22, 0x27, 0x22, 0x37, 0x34, 0x36, + 0x35, 0x34, 0x27, 0x26, 0x37, 0x34, 0x36, 0x37, 0x36, 0x27, 0x26, 0x27, + 0x26, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x16, 0x07, 0x06, 0x23, 0x06, 0x2B, + 0x04, 0x22, 0x07, 0x06, 0x27, 0x2E, 0x02, 0x27, 0x26, 0x07, 0x06, 0x07, + 0x23, 0x06, 0x27, 0x26, 0x35, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, + 0x22, 0x06, 0x23, 0x06, 0x07, 0x06, 0x15, 0x06, 0x07, 0x06, 0x27, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x23, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x23, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x2B, 0x06, 0x22, 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x23, 0x22, 0x07, 0x06, 0x07, + 0x06, 0x2B, 0x01, 0x06, 0x23, 0x22, 0x27, 0x22, 0x27, 0x23, 0x22, 0x07, + 0x06, 0x07, 0x06, 0x27, 0x36, 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x27, 0x26, 0x23, 0x22, 0x26, 0x2B, 0x01, 0x22, 0x27, 0x26, 0x07, + 0x06, 0x1D, 0x01, 0x14, 0x07, 0x06, 0x17, 0x16, 0x17, 0x16, 0x1D, 0x04, + 0x14, 0x1E, 0x01, 0x15, 0x16, 0x07, 0x06, 0x17, 0x16, 0x15, 0x14, 0x17, + 0x16, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, 0x17, 0x16, 0x33, 0x32, 0x37, + 0x36, 0x37, 0x36, 0x35, 0x26, 0x27, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x3B, 0x01, 0x32, 0x17, 0x16, 0x33, + 0x16, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x17, 0x16, 0x07, 0x06, 0x17, 0x16, + 0x17, 0x16, 0x37, 0x36, 0x37, 0x34, 0x37, 0x36, 0x35, 0x34, 0x37, 0x36, + 0x27, 0x26, 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x15, 0x06, 0x16, 0x37, + 0x14, 0x33, 0x32, 0x37, 0x36, 0x37, 0x36, 0x35, 0x26, 0x37, 0x3B, 0x07, + 0x16, 0x37, 0x36, 0x32, 0x37, 0x36, 0x17, 0x16, 0x15, 0x06, 0x16, 0x33, + 0x36, 0x17, 0x16, 0x37, 0x36, 0x3D, 0x01, 0x26, 0x37, 0x35, 0x34, 0x37, + 0x36, 0x2F, 0x01, 0x26, 0x27, 0x26, 0x27, 0x34, 0x37, 0x36, 0x27, 0x36, + 0x17, 0x16, 0x33, 0x32, 0x17, 0x16, 0x37, 0x36, 0x27, 0x26, 0x35, 0x34, + 0x37, 0x36, 0x05, 0x0E, 0x02, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x36, 0x37, 0x36, 0x37, 0x36, 0x27, 0x26, 0x37, 0x06, 0x26, 0x27, + 0x26, 0x37, 0x34, 0x36, 0x35, 0x36, 0x35, 0x34, 0x2E, 0x01, 0x35, 0x26, + 0x3B, 0x06, 0x06, 0x07, 0x06, 0x07, 0x33, 0x05, 0x06, 0x27, 0x26, 0x27, + 0x2B, 0x01, 0x22, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, 0x27, + 0x26, 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x17, 0x16, 0x37, 0x36, 0x27, 0x2E, 0x01, 0x37, 0x36, 0x33, 0x16, + 0x33, 0x32, 0x3E, 0x01, 0x33, 0x36, 0x17, 0x16, 0x07, 0x06, 0x15, 0x14, + 0x17, 0x16, 0x0A, 0x25, 0x01, 0x01, 0x02, 0x02, 0x02, 0x09, 0x16, 0x1E, + 0x03, 0x1A, 0x1C, 0x0E, 0x05, 0x0A, 0x02, 0x02, 0x04, 0x02, 0x02, 0x02, + 0x01, 0x01, 0x01, 0x04, 0x03, 0x06, 0x1D, 0x0A, 0x1B, 0x04, 0x0A, 0x06, + 0x01, 0x04, 0x14, 0x0D, 0x1C, 0x3B, 0x3A, 0x74, 0x74, 0x0D, 0x0B, 0x11, + 0x04, 0x06, 0x02, 0x05, 0x02, 0x05, 0x0C, 0x0B, 0x09, 0x11, 0x09, 0x06, + 0x0A, 0x01, 0x13, 0x02, 0x08, 0x02, 0x0A, 0x05, 0x01, 0x04, 0x01, 0x03, + 0x04, 0x03, 0x01, 0x04, 0x0B, 0x12, 0x12, 0x06, 0x01, 0x09, 0x08, 0x06, + 0x07, 0x07, 0x0C, 0x05, 0x0C, 0x06, 0x07, 0x09, 0x06, 0x04, 0x06, 0x03, + 0x01, 0x08, 0x09, 0x02, 0x03, 0x05, 0x04, 0x05, 0x1A, 0x19, 0x32, 0x32, + 0x65, 0x66, 0x0F, 0x22, 0x1E, 0x13, 0x14, 0x0D, 0x0A, 0x13, 0x06, 0x0E, + 0x0A, 0x10, 0x13, 0x0B, 0x10, 0x0D, 0x08, 0x07, 0x0B, 0x06, 0x10, 0x07, + 0x10, 0x08, 0x36, 0x12, 0x24, 0x2D, 0x17, 0x2D, 0x17, 0x1A, 0x12, 0x09, + 0x0A, 0x06, 0x0A, 0x04, 0x09, 0x03, 0x05, 0x07, 0x0A, 0x04, 0x07, 0x08, + 0x14, 0x1B, 0x24, 0x0D, 0x13, 0x48, 0x13, 0x6E, 0x0E, 0x1A, 0x15, 0x0A, + 0x04, 0x01, 0x01, 0x05, 0x05, 0x05, 0x02, 0x01, 0x01, 0x01, 0x05, 0x0E, + 0x03, 0x02, 0x05, 0x04, 0x17, 0x0E, 0x84, 0x08, 0x05, 0x58, 0x2B, 0x9C, + 0x13, 0x96, 0x26, 0x68, 0x0D, 0x21, 0x20, 0x22, 0x1C, 0x1A, 0x05, 0x04, + 0x0A, 0x0B, 0x07, 0x07, 0x10, 0x13, 0x07, 0x09, 0x16, 0x15, 0x22, 0x20, + 0x23, 0x08, 0x12, 0x0C, 0x08, 0x06, 0x01, 0x0D, 0x09, 0x03, 0x03, 0x04, + 0x06, 0x07, 0x08, 0x03, 0x03, 0x08, 0x02, 0x08, 0x02, 0x02, 0x06, 0x05, + 0x07, 0x0A, 0x06, 0x05, 0x06, 0x08, 0x17, 0x1C, 0x04, 0x25, 0x0C, 0x18, + 0x16, 0x0B, 0x0F, 0x0E, 0x01, 0x0B, 0x04, 0x08, 0x09, 0x07, 0x04, 0x04, + 0x01, 0x03, 0x10, 0x0E, 0x08, 0x03, 0x02, 0x03, 0x04, 0x03, 0x06, 0x04, + 0x05, 0x0A, 0x07, 0x09, 0x08, 0x01, 0x01, 0x01, 0x09, 0x08, 0x0F, 0x11, + 0x04, 0x07, 0x01, 0x02, 0x01, 0x04, 0x10, 0x62, 0x61, 0x64, 0x63, 0x64, + 0x63, 0x27, 0x14, 0x14, 0x05, 0x12, 0x04, 0x0A, 0x12, 0x0F, 0x01, 0x09, + 0x08, 0x09, 0x15, 0x10, 0x0E, 0x0C, 0x02, 0x01, 0x03, 0x02, 0x03, 0x02, + 0x01, 0x01, 0x02, 0x06, 0x03, 0x03, 0x0F, 0x15, 0x11, 0x0D, 0x19, 0x01, + 0x1C, 0x16, 0x04, 0x08, 0x02, 0x02, 0x03, 0x01, 0xF8, 0xED, 0x05, 0x1A, + 0x36, 0x18, 0x1B, 0x86, 0x27, 0x44, 0x84, 0x68, 0x06, 0x01, 0x05, 0x03, + 0x01, 0x02, 0x03, 0x03, 0x02, 0x07, 0x07, 0x01, 0x02, 0x01, 0x02, 0x01, + 0x01, 0x01, 0x03, 0x0F, 0x41, 0x41, 0x7D, 0x7D, 0x7D, 0x7C, 0x03, 0x04, + 0x02, 0x06, 0x02, 0x02, 0x96, 0x09, 0x20, 0x21, 0x0F, 0x1F, 0x20, 0x11, + 0x09, 0x0D, 0x05, 0x01, 0x02, 0x01, 0x03, 0x04, 0x01, 0x01, 0x08, 0x09, + 0x04, 0x05, 0x01, 0x03, 0x04, 0x05, 0x08, 0x0A, 0x07, 0x0A, 0x09, 0x09, + 0x08, 0x08, 0x0B, 0x09, 0x22, 0x1A, 0x0A, 0x14, 0x0A, 0x14, 0x02, 0x07, + 0x0E, 0x06, 0x16, 0x04, 0x03, 0x01, 0x02, 0x02, 0x02, 0x02, 0x82, 0x02, + 0x01, 0x03, 0x02, 0x02, 0x08, 0x01, 0x02, 0x01, 0x0E, 0x07, 0x1A, 0x06, + 0x16, 0x10, 0x0B, 0x0A, 0x04, 0x0C, 0x04, 0x0A, 0x0B, 0x0C, 0x07, 0x11, + 0x05, 0x02, 0x04, 0x01, 0x01, 0x30, 0x06, 0x1C, 0x01, 0x01, 0x02, 0x07, + 0x09, 0x02, 0x06, 0x02, 0x05, 0x02, 0x01, 0x02, 0x02, 0x08, 0x09, 0x0F, + 0x0D, 0x0D, 0x01, 0x06, 0x01, 0x06, 0x02, 0x02, 0x01, 0x02, 0x01, 0x04, + 0x03, 0x01, 0x04, 0x05, 0x04, 0x0D, 0x05, 0x07, 0x04, 0x06, 0x06, 0x02, + 0x02, 0x02, 0x0A, 0x0D, 0x07, 0x04, 0x03, 0x05, 0x04, 0x03, 0x02, 0x03, + 0x02, 0x08, 0x07, 0x02, 0x02, 0x04, 0x05, 0x10, 0x0C, 0x13, 0x06, 0x10, + 0x0B, 0x02, 0x02, 0x0C, 0x10, 0x06, 0x05, 0x01, 0x02, 0x01, 0x02, 0x01, + 0x01, 0x01, 0x01, 0x03, 0x02, 0x04, 0x02, 0x04, 0x07, 0x06, 0x04, 0x06, + 0x03, 0x06, 0x03, 0x09, 0x02, 0x02, 0x02, 0x02, 0x01, 0x16, 0x09, 0x0D, + 0x18, 0x0C, 0x0B, 0x10, 0x05, 0x04, 0x05, 0x04, 0x09, 0x13, 0x14, 0x18, + 0x19, 0x01, 0x06, 0x09, 0x04, 0x0F, 0x04, 0x08, 0x1F, 0x2A, 0x05, 0x0F, + 0x14, 0x12, 0x0B, 0x07, 0x26, 0x04, 0x01, 0x1D, 0x0E, 0x31, 0x06, 0x2F, + 0x0C, 0x20, 0x03, 0x08, 0x01, 0x01, 0x13, 0x11, 0x1D, 0x1D, 0x18, 0x1B, + 0x1B, 0x1B, 0x17, 0x1E, 0x21, 0x23, 0x1C, 0x1D, 0x06, 0x07, 0x02, 0x01, + 0x0B, 0x08, 0x13, 0x12, 0x04, 0x0B, 0x0F, 0x12, 0x0B, 0x11, 0x0F, 0x16, + 0x0B, 0x0C, 0x18, 0x06, 0x16, 0x06, 0x07, 0x0E, 0x0B, 0x06, 0x06, 0x0A, + 0x09, 0x06, 0x08, 0x01, 0x02, 0x02, 0x02, 0x01, 0x09, 0x01, 0x07, 0x02, + 0x05, 0x02, 0x02, 0x0A, 0x0C, 0x06, 0x0A, 0x03, 0x03, 0x08, 0x04, 0x08, + 0x06, 0x06, 0x07, 0x08, 0x07, 0x07, 0x0B, 0x10, 0x11, 0x08, 0x04, 0x10, + 0x14, 0x02, 0x05, 0x1B, 0x0D, 0x08, 0x05, 0x0B, 0x01, 0x02, 0x02, 0x04, + 0x05, 0x0C, 0x01, 0x02, 0x02, 0x01, 0x01, 0x01, 0x02, 0x02, 0x0B, 0x06, + 0x06, 0x01, 0x02, 0x03, 0x05, 0x04, 0x0F, 0x19, 0x1A, 0x0D, 0x26, 0x07, + 0x0B, 0x0A, 0x06, 0x04, 0x04, 0x03, 0x06, 0x02, 0x0A, 0x0D, 0x0E, 0x02, + 0x05, 0x01, 0x01, 0x02, 0x03, 0x07, 0x09, 0x0E, 0x12, 0x06, 0x09, 0x11, + 0x10, 0x94, 0x01, 0x08, 0x12, 0x07, 0x09, 0x2B, 0x0C, 0x16, 0x2B, 0x23, + 0x03, 0x02, 0x02, 0x01, 0x04, 0x03, 0x03, 0x01, 0x05, 0x01, 0x09, 0x08, + 0x14, 0x05, 0x06, 0x1A, 0x07, 0x0D, 0x1A, 0x02, 0x0A, 0x13, 0x08, 0x20, + 0x01, 0x04, 0x03, 0x02, 0x7A, 0x13, 0x02, 0x02, 0x01, 0x01, 0x02, 0x0E, + 0x05, 0x0E, 0x0A, 0x09, 0x0A, 0x0D, 0x0C, 0x08, 0x08, 0x03, 0x05, 0x08, + 0x10, 0x09, 0x0D, 0x08, 0x0A, 0x04, 0x07, 0x01, 0x02, 0x07, 0x06, 0x08, + 0x07, 0x36, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, 0x07, 0x0C, 0x12, + 0x02, 0x04, 0x12, 0x10, 0x00, 0x04, 0x00, 0x60, 0x00, 0x26, 0x05, 0x9E, + 0x03, 0x5A, 0x01, 0x3E, 0x01, 0x46, 0x01, 0x58, 0x01, 0x74, 0x00, 0x00, + 0x01, 0x34, 0x07, 0x06, 0x23, 0x22, 0x07, 0x06, 0x2F, 0x02, 0x36, 0x26, + 0x35, 0x34, 0x37, 0x34, 0x23, 0x36, 0x27, 0x26, 0x27, 0x26, 0x07, 0x06, + 0x27, 0x26, 0x27, 0x26, 0x23, 0x26, 0x07, 0x06, 0x2B, 0x06, 0x22, 0x07, + 0x06, 0x07, 0x2E, 0x01, 0x07, 0x06, 0x23, 0x22, 0x27, 0x22, 0x26, 0x27, + 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x23, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x14, 0x17, 0x2B, 0x01, 0x22, 0x27, 0x26, 0x23, 0x26, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x17, 0x1D, 0x02, 0x14, 0x17, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x3E, 0x01, 0x3F, 0x01, 0x36, 0x37, 0x36, 0x35, 0x34, + 0x37, 0x36, 0x37, 0x06, 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x3B, 0x02, + 0x32, 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x33, + 0x32, 0x37, 0x32, 0x37, 0x32, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x17, + 0x16, 0x15, 0x06, 0x17, 0x16, 0x07, 0x06, 0x15, 0x14, 0x07, 0x06, 0x07, + 0x06, 0x15, 0x06, 0x15, 0x14, 0x17, 0x16, 0x15, 0x14, 0x17, 0x16, 0x17, + 0x16, 0x17, 0x16, 0x15, 0x14, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, + 0x15, 0x14, 0x17, 0x16, 0x15, 0x14, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x33, 0x32, 0x17, 0x16, 0x33, 0x32, 0x3F, 0x01, 0x36, 0x17, 0x16, 0x36, + 0x27, 0x26, 0x37, 0x36, 0x2F, 0x01, 0x22, 0x27, 0x26, 0x35, 0x34, 0x27, + 0x34, 0x26, 0x35, 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x27, 0x34, 0x26, 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, 0x27, 0x26, 0x35, + 0x34, 0x37, 0x36, 0x3D, 0x01, 0x34, 0x33, 0x32, 0x37, 0x32, 0x36, 0x33, + 0x36, 0x37, 0x36, 0x35, 0x34, 0x36, 0x35, 0x34, 0x37, 0x36, 0x27, 0x36, + 0x3B, 0x04, 0x16, 0x1D, 0x03, 0x07, 0x06, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x37, 0x36, 0x27, 0x26, 0x3D, 0x02, 0x34, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x36, 0x35, 0x27, 0x34, + 0x26, 0x35, 0x27, 0x36, 0x37, 0x32, 0x36, 0x33, 0x37, 0x3B, 0x01, 0x32, + 0x17, 0x16, 0x37, 0x36, 0x26, 0x05, 0x3D, 0x03, 0x16, 0x15, 0x14, 0x05, + 0x26, 0x35, 0x26, 0x37, 0x14, 0x1E, 0x01, 0x15, 0x1E, 0x01, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x22, 0x26, 0x37, 0x06, 0x07, 0x06, 0x07, 0x06, 0x23, + 0x06, 0x23, 0x22, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x35, 0x36, 0x1F, + 0x01, 0x32, 0x37, 0x36, 0x16, 0x07, 0x16, 0x07, 0x06, 0x05, 0x98, 0x0C, + 0x09, 0x0B, 0x0D, 0x27, 0x28, 0x08, 0x06, 0x06, 0x03, 0x08, 0x01, 0x0C, + 0x05, 0x06, 0x08, 0x08, 0x0C, 0x11, 0x10, 0x0B, 0x0C, 0x05, 0x06, 0x0F, + 0x0C, 0x0D, 0x09, 0x12, 0x90, 0x91, 0x90, 0x91, 0x62, 0x62, 0x13, 0x0B, + 0x0D, 0x06, 0x02, 0x04, 0x01, 0x01, 0x06, 0x07, 0x01, 0x01, 0x06, 0x02, + 0x0C, 0x06, 0x05, 0x09, 0x01, 0x02, 0x02, 0x01, 0x02, 0x01, 0x02, 0x02, + 0x03, 0x05, 0x1B, 0x1A, 0x09, 0x01, 0x01, 0x08, 0x05, 0x18, 0x03, 0x03, + 0x03, 0x03, 0x01, 0x02, 0x02, 0x02, 0x02, 0x1F, 0x19, 0x16, 0x09, 0x02, + 0x05, 0x02, 0x09, 0x03, 0x08, 0x07, 0x04, 0x04, 0x06, 0x01, 0x05, 0x05, + 0x04, 0x07, 0x0A, 0x06, 0x0B, 0x25, 0x24, 0x02, 0x18, 0x14, 0x06, 0x04, + 0x01, 0x02, 0x03, 0x05, 0x07, 0x0A, 0x03, 0x15, 0x0B, 0x15, 0x0B, 0x08, + 0x03, 0x05, 0x04, 0x03, 0x02, 0x01, 0x04, 0x02, 0x01, 0x02, 0x07, 0x06, + 0x07, 0x07, 0x06, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x07, 0x0C, + 0x02, 0x02, 0x05, 0x02, 0x05, 0x01, 0x02, 0x02, 0x02, 0x04, 0x03, 0x05, + 0x04, 0x07, 0x06, 0x0A, 0x06, 0x12, 0x08, 0x0B, 0x09, 0x0A, 0x08, 0x0C, + 0x12, 0x09, 0x1A, 0x0D, 0x09, 0x03, 0x03, 0x02, 0x02, 0x04, 0x03, 0x02, + 0x02, 0x01, 0x01, 0x02, 0x02, 0x01, 0x01, 0x04, 0x01, 0x01, 0x02, 0x01, + 0x04, 0x01, 0x03, 0x01, 0x09, 0x02, 0x08, 0x07, 0x07, 0x06, 0x06, 0x01, + 0x01, 0x09, 0x1F, 0x10, 0x07, 0x1F, 0x08, 0x1A, 0x18, 0x18, 0x14, 0x02, + 0x02, 0x04, 0x02, 0x05, 0x08, 0x48, 0x48, 0x17, 0x06, 0x03, 0x03, 0x03, + 0x03, 0x26, 0x03, 0x28, 0x1E, 0x06, 0x04, 0x02, 0x02, 0x05, 0x02, 0x0A, + 0x0E, 0x06, 0x09, 0x09, 0x01, 0x0A, 0x08, 0x04, 0x09, 0x0A, 0x01, 0x01, + 0x02, 0x01, 0x0B, 0x03, 0x05, 0x01, 0x02, 0x21, 0x20, 0x0E, 0x09, 0x0D, + 0x05, 0x06, 0x06, 0xFA, 0xD9, 0x03, 0x02, 0x64, 0x01, 0x01, 0x01, 0x02, + 0x02, 0x01, 0x02, 0x01, 0x04, 0x02, 0x04, 0x04, 0x0F, 0x02, 0x78, 0x02, + 0x02, 0x01, 0x04, 0x05, 0x09, 0x06, 0x0D, 0x0C, 0x01, 0x01, 0x06, 0x04, + 0x0A, 0x0B, 0x02, 0x18, 0x22, 0x01, 0x16, 0x08, 0x05, 0x02, 0x02, 0x03, + 0x04, 0x02, 0xC3, 0x0B, 0x01, 0x01, 0x03, 0x03, 0x0B, 0x03, 0x03, 0x09, + 0x0E, 0x09, 0x08, 0x05, 0x06, 0x0C, 0x0D, 0x0E, 0x04, 0x07, 0x02, 0x03, + 0x08, 0x0A, 0x08, 0x08, 0x01, 0x01, 0x01, 0x08, 0x0B, 0x0E, 0x02, 0x01, + 0x01, 0x03, 0x01, 0x03, 0x01, 0x06, 0x03, 0x03, 0x09, 0x01, 0x03, 0x05, + 0x04, 0x01, 0x02, 0x04, 0x06, 0x0C, 0x07, 0x04, 0x03, 0x02, 0x0A, 0x06, + 0x05, 0x06, 0x04, 0x07, 0x06, 0x06, 0x0C, 0x76, 0x77, 0x14, 0x12, 0x0F, + 0x16, 0x14, 0x03, 0x0F, 0x04, 0x15, 0x08, 0x0E, 0x0D, 0x09, 0x0A, 0x14, + 0x15, 0x04, 0x04, 0x0A, 0x0A, 0x02, 0x04, 0x01, 0x01, 0x02, 0x02, 0x04, + 0x02, 0x04, 0x05, 0x02, 0x02, 0x03, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x06, 0x04, 0x03, 0x04, 0x04, 0x04, 0x02, 0x03, 0x17, 0x16, 0x07, + 0x0D, 0x0D, 0x0B, 0x10, 0x0A, 0x13, 0x0A, 0x15, 0x13, 0x0A, 0x0B, 0x13, + 0x09, 0x07, 0x0C, 0x01, 0x03, 0x02, 0x04, 0x0C, 0x1C, 0x20, 0x0A, 0x27, + 0x09, 0x0A, 0x05, 0x0A, 0x05, 0x09, 0x05, 0x08, 0x06, 0x0B, 0x14, 0x10, + 0x0C, 0x0D, 0x01, 0x01, 0x03, 0x03, 0x02, 0x03, 0x02, 0x02, 0x01, 0x06, + 0x07, 0x05, 0x0A, 0x09, 0x06, 0x03, 0x03, 0x01, 0x02, 0x03, 0x01, 0x01, + 0x04, 0x01, 0x02, 0x03, 0x02, 0x07, 0x07, 0x03, 0x09, 0x02, 0x14, 0x09, + 0x04, 0x14, 0x05, 0x31, 0x08, 0x23, 0x16, 0x1B, 0x1F, 0x1D, 0x1E, 0x15, + 0x0A, 0x09, 0x14, 0x11, 0x0A, 0x01, 0x02, 0x02, 0x04, 0x03, 0x20, 0x09, + 0x0C, 0x06, 0x05, 0x0A, 0x09, 0x06, 0x01, 0x01, 0x10, 0x1D, 0x1E, 0x3B, + 0x3C, 0x20, 0x23, 0x24, 0x0C, 0x01, 0x0E, 0x0B, 0x12, 0x0A, 0x14, 0x16, + 0x07, 0x77, 0x76, 0x0B, 0x05, 0x02, 0x06, 0x0A, 0x05, 0x08, 0x12, 0x02, + 0x0C, 0x0A, 0x02, 0x08, 0x10, 0x08, 0x02, 0x01, 0x04, 0x02, 0x07, 0x04, + 0x03, 0x01, 0x01, 0x01, 0x01, 0x09, 0x09, 0x2A, 0x21, 0x13, 0x12, 0x07, + 0x07, 0x0B, 0x0E, 0x10, 0x67, 0x03, 0x06, 0x04, 0x04, 0x01, 0x03, 0x02, + 0x01, 0x01, 0x06, 0x01, 0x04, 0x03, 0x06, 0x01, 0x02, 0x1B, 0x04, 0x06, + 0x04, 0x06, 0x08, 0x01, 0x04, 0x05, 0x05, 0x03, 0x11, 0x11, 0x02, 0x08, + 0x01, 0x02, 0x02, 0x01, 0x06, 0x07, 0x06, 0x04, 0x05, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x4F, 0x00, 0x3E, 0x07, 0xD6, 0x03, 0x43, 0x01, 0x3E, + 0x01, 0x51, 0x01, 0x69, 0x01, 0x6C, 0x00, 0x00, 0x01, 0x34, 0x36, 0x37, + 0x36, 0x27, 0x36, 0x17, 0x16, 0x3B, 0x06, 0x32, 0x37, 0x36, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x32, 0x17, 0x1E, 0x01, 0x33, 0x16, + 0x17, 0x16, 0x1D, 0x01, 0x06, 0x15, 0x16, 0x07, 0x06, 0x27, 0x2B, 0x01, + 0x1E, 0x01, 0x1F, 0x01, 0x16, 0x15, 0x06, 0x17, 0x14, 0x07, 0x06, 0x2B, + 0x01, 0x22, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x26, 0x06, 0x15, 0x14, + 0x06, 0x15, 0x14, 0x17, 0x16, 0x15, 0x14, 0x17, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x23, 0x22, 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x3D, 0x01, 0x34, 0x27, 0x26, 0x27, + 0x26, 0x27, 0x26, 0x35, 0x2E, 0x01, 0x35, 0x26, 0x35, 0x34, 0x27, 0x26, + 0x35, 0x34, 0x27, 0x26, 0x34, 0x27, 0x34, 0x26, 0x27, 0x26, 0x35, 0x34, + 0x26, 0x27, 0x26, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x27, 0x22, 0x27, 0x06, 0x07, 0x06, 0x1D, 0x02, 0x14, 0x07, + 0x06, 0x23, 0x22, 0x16, 0x07, 0x06, 0x27, 0x26, 0x2B, 0x02, 0x34, 0x37, + 0x34, 0x27, 0x34, 0x37, 0x34, 0x27, 0x26, 0x23, 0x06, 0x23, 0x06, 0x27, + 0x22, 0x27, 0x26, 0x37, 0x35, 0x34, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x35, 0x36, 0x34, 0x37, 0x34, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x37, 0x36, 0x27, 0x26, 0x27, 0x2E, 0x02, 0x27, 0x26, 0x2B, + 0x01, 0x06, 0x23, 0x06, 0x27, 0x26, 0x07, 0x06, 0x27, 0x26, 0x3D, 0x04, + 0x34, 0x06, 0x27, 0x26, 0x23, 0x06, 0x27, 0x22, 0x27, 0x26, 0x31, 0x26, + 0x23, 0x06, 0x2B, 0x04, 0x22, 0x17, 0x16, 0x15, 0x14, 0x07, 0x06, 0x0F, + 0x01, 0x06, 0x07, 0x06, 0x07, 0x06, 0x15, 0x06, 0x23, 0x22, 0x07, 0x3D, + 0x05, 0x34, 0x17, 0x16, 0x33, 0x16, 0x33, 0x16, 0x3B, 0x03, 0x32, 0x37, + 0x33, 0x32, 0x37, 0x32, 0x37, 0x3D, 0x02, 0x34, 0x27, 0x26, 0x37, 0x36, + 0x17, 0x16, 0x35, 0x34, 0x37, 0x36, 0x01, 0x26, 0x27, 0x26, 0x27, 0x0E, + 0x02, 0x07, 0x06, 0x17, 0x16, 0x17, 0x16, 0x17, 0x26, 0x27, 0x22, 0x26, + 0x37, 0x26, 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x14, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x01, 0x34, 0x35, 0x03, 0x94, 0x02, 0x01, 0x02, 0x02, 0x18, 0x0B, 0x0A, + 0x15, 0x5B, 0x5A, 0x8B, 0x8B, 0x8B, 0x8B, 0x0A, 0x23, 0x22, 0x07, 0x09, + 0x05, 0x04, 0x08, 0x09, 0x19, 0x1C, 0x18, 0x1E, 0x08, 0x1B, 0x06, 0x0C, + 0x01, 0x01, 0x01, 0x02, 0x02, 0x02, 0x10, 0x30, 0x30, 0x04, 0x10, 0x02, + 0x15, 0x02, 0x02, 0x02, 0x01, 0x01, 0x12, 0x14, 0x05, 0x08, 0x02, 0x0B, + 0x03, 0x05, 0x0C, 0x03, 0x32, 0x02, 0x04, 0x03, 0x07, 0x08, 0x04, 0x01, + 0x07, 0x02, 0x04, 0x03, 0x01, 0x0B, 0x04, 0x0B, 0x19, 0x10, 0x0E, 0x19, + 0x08, 0x06, 0x0D, 0x03, 0x0E, 0x03, 0x0F, 0x04, 0x0C, 0x06, 0x0D, 0x06, + 0x05, 0x04, 0x04, 0x03, 0x05, 0x03, 0x01, 0x03, 0x03, 0x02, 0x02, 0x01, + 0x02, 0x01, 0x02, 0x02, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x0E, 0x15, 0x1C, 0x0D, 0x0D, 0x17, 0x08, 0x10, 0x09, 0x0D, 0x0B, 0x0D, + 0x0E, 0x22, 0x1E, 0x1E, 0x19, 0x20, 0x06, 0x07, 0x01, 0x02, 0x05, 0x03, + 0x02, 0x01, 0x04, 0x20, 0x2A, 0x03, 0x38, 0x38, 0x01, 0x01, 0x01, 0x01, + 0x02, 0x08, 0x05, 0x07, 0x0D, 0x0B, 0x0B, 0x04, 0x04, 0x01, 0x02, 0x02, + 0x08, 0x02, 0x03, 0x05, 0x01, 0x01, 0x01, 0x06, 0x04, 0x05, 0x03, 0x02, + 0x09, 0x03, 0x06, 0x02, 0x01, 0x02, 0x01, 0x05, 0x01, 0x02, 0x05, 0x02, + 0x07, 0x06, 0x66, 0x22, 0x44, 0x13, 0x23, 0x1F, 0x13, 0x0A, 0x09, 0x0A, + 0x16, 0x06, 0x01, 0x03, 0x03, 0x02, 0x02, 0x01, 0x01, 0x02, 0x05, 0x03, + 0x05, 0x7B, 0x7B, 0x77, 0x77, 0x10, 0x02, 0x02, 0x03, 0x04, 0x02, 0x06, + 0x04, 0x01, 0x02, 0x02, 0x05, 0x04, 0x0A, 0x05, 0x14, 0x07, 0x05, 0x02, + 0x23, 0x20, 0x17, 0x2E, 0x90, 0x90, 0x54, 0x38, 0x1C, 0x1B, 0x11, 0x09, + 0x06, 0x02, 0x03, 0x03, 0x06, 0x09, 0x4C, 0x4B, 0x03, 0x02, 0x01, 0xDB, + 0x0E, 0x07, 0x09, 0x01, 0x01, 0x06, 0x08, 0x04, 0x0F, 0x06, 0x0E, 0x12, + 0x13, 0x13, 0x04, 0x01, 0x01, 0x04, 0x79, 0x12, 0x15, 0x18, 0x17, 0x0D, + 0x0C, 0x05, 0x02, 0x04, 0x05, 0x06, 0x03, 0x06, 0x03, 0x09, 0x0D, 0x06, + 0x0D, 0x03, 0x10, 0x0A, 0x07, 0xFE, 0x2A, 0x03, 0x35, 0x01, 0x02, 0x01, + 0x02, 0x05, 0x03, 0x12, 0x13, 0x03, 0x03, 0x0D, 0x11, 0x14, 0x15, 0x12, + 0x12, 0x04, 0x05, 0x02, 0x01, 0x03, 0x02, 0x02, 0x03, 0x0C, 0x2A, 0x12, + 0x18, 0x0B, 0x03, 0x05, 0x02, 0x0A, 0x21, 0x06, 0x30, 0x04, 0x04, 0x05, + 0x03, 0x12, 0x03, 0x04, 0x0E, 0x05, 0x14, 0x05, 0x0A, 0x14, 0x06, 0x02, + 0x0C, 0x17, 0x16, 0x17, 0x13, 0x0F, 0x11, 0x11, 0x12, 0x0F, 0x12, 0x0F, + 0x04, 0x15, 0x06, 0x0D, 0x13, 0x04, 0x2F, 0x13, 0x32, 0x0D, 0x09, 0x01, + 0x04, 0x01, 0x01, 0x01, 0x01, 0x03, 0x01, 0x04, 0x02, 0x05, 0x06, 0x05, + 0x0D, 0x0C, 0x06, 0x09, 0x08, 0x02, 0x05, 0x08, 0x06, 0x03, 0x02, 0x05, + 0x0A, 0x07, 0x0E, 0x03, 0x06, 0x14, 0x06, 0x16, 0x0B, 0x04, 0x0C, 0x0A, + 0x06, 0x0B, 0x05, 0x02, 0x0B, 0x03, 0x06, 0x17, 0x06, 0x0B, 0x17, 0x14, + 0x24, 0x04, 0x06, 0x18, 0x17, 0x0B, 0x04, 0x10, 0x04, 0x07, 0x05, 0x07, + 0x01, 0x04, 0x01, 0x18, 0x3C, 0x41, 0x3E, 0x4A, 0x11, 0x12, 0x05, 0x03, + 0x05, 0x0E, 0x03, 0x0A, 0x02, 0x02, 0x02, 0x04, 0x07, 0x01, 0x02, 0x02, + 0x04, 0x01, 0x02, 0x01, 0x02, 0x02, 0x0F, 0x0F, 0x13, 0x22, 0x15, 0x2E, + 0x23, 0x1C, 0x06, 0x03, 0x07, 0x01, 0x01, 0x06, 0x01, 0x05, 0x03, 0x0C, + 0x05, 0x08, 0x08, 0x06, 0x17, 0x05, 0x0E, 0x14, 0x07, 0x0A, 0x07, 0x09, + 0x01, 0x05, 0x09, 0x03, 0x0D, 0x01, 0x01, 0x03, 0x03, 0x0A, 0x05, 0x09, + 0x09, 0x08, 0x21, 0x20, 0x07, 0x08, 0x08, 0x06, 0x06, 0x01, 0x02, 0x05, + 0x04, 0x03, 0x01, 0x01, 0x0E, 0x12, 0x06, 0x15, 0x17, 0x17, 0x16, 0x3F, + 0x2A, 0x15, 0x08, 0x06, 0x0C, 0x01, 0x10, 0x02, 0x6C, 0x6C, 0x3E, 0x3E, + 0x0C, 0x0C, 0x05, 0x03, 0x04, 0x05, 0x01, 0x01, 0x01, 0x02, 0x08, 0x11, + 0x11, 0x0D, 0x16, 0x16, 0x0B, 0x14, 0x07, 0x08, 0x08, 0x0A, 0x02, 0x01, + 0xFE, 0x82, 0x0D, 0x11, 0x13, 0x0F, 0x01, 0x06, 0x08, 0x04, 0x10, 0x05, + 0x0E, 0x09, 0x0A, 0x01, 0x04, 0x02, 0x03, 0x36, 0x12, 0x0B, 0x0B, 0x04, + 0x02, 0x03, 0x01, 0x15, 0x10, 0x0C, 0x12, 0x0A, 0x05, 0x06, 0x04, 0x01, + 0x02, 0x03, 0x05, 0x02, 0x0A, 0x0D, 0x08, 0xFE, 0xA4, 0x01, 0x01, 0x00, + 0x00, 0x05, 0x00, 0x62, 0x00, 0x40, 0x07, 0xDF, 0x03, 0x48, 0x00, 0x23, + 0x00, 0x44, 0x00, 0x62, 0x00, 0x7F, 0x01, 0x9C, 0x00, 0x00, 0x01, 0x06, + 0x17, 0x14, 0x17, 0x15, 0x14, 0x3B, 0x02, 0x32, 0x37, 0x32, 0x1D, 0x01, + 0x06, 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x27, 0x26, 0x27, + 0x26, 0x27, 0x26, 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x05, 0x34, 0x27, + 0x26, 0x2B, 0x04, 0x22, 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x16, 0x17, 0x14, 0x16, 0x17, 0x16, 0x37, 0x36, + 0x37, 0x3E, 0x01, 0x01, 0x36, 0x27, 0x22, 0x2E, 0x01, 0x22, 0x2B, 0x04, + 0x22, 0x27, 0x26, 0x27, 0x15, 0x14, 0x3B, 0x08, 0x32, 0x37, 0x34, 0x37, + 0x23, 0x22, 0x1D, 0x01, 0x06, 0x16, 0x17, 0x32, 0x17, 0x16, 0x07, 0x0E, + 0x01, 0x15, 0x14, 0x16, 0x17, 0x14, 0x16, 0x17, 0x16, 0x32, 0x3D, 0x02, + 0x34, 0x37, 0x36, 0x05, 0x16, 0x17, 0x16, 0x07, 0x06, 0x27, 0x26, 0x2B, + 0x04, 0x22, 0x27, 0x26, 0x22, 0x0F, 0x01, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x07, 0x0E, 0x01, 0x15, 0x0E, 0x01, 0x15, 0x0E, 0x01, 0x07, 0x15, 0x14, + 0x07, 0x06, 0x07, 0x06, 0x23, 0x22, 0x07, 0x06, 0x27, 0x26, 0x35, 0x26, + 0x27, 0x26, 0x07, 0x06, 0x23, 0x22, 0x07, 0x06, 0x15, 0x14, 0x06, 0x15, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x22, 0x07, 0x06, + 0x22, 0x07, 0x22, 0x07, 0x06, 0x27, 0x26, 0x23, 0x26, 0x37, 0x36, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x27, + 0x26, 0x07, 0x06, 0x27, 0x22, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x2F, 0x01, 0x22, 0x26, 0x23, + 0x2E, 0x01, 0x37, 0x3D, 0x01, 0x34, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, + 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x23, 0x22, 0x2E, 0x01, 0x23, + 0x26, 0x07, 0x06, 0x07, 0x06, 0x2B, 0x06, 0x22, 0x37, 0x3D, 0x01, 0x34, + 0x27, 0x34, 0x27, 0x34, 0x26, 0x27, 0x26, 0x37, 0x36, 0x3B, 0x06, 0x32, + 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x3B, 0x04, 0x32, 0x27, 0x26, 0x37, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x35, + 0x34, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x17, 0x15, 0x14, 0x17, 0x14, + 0x0F, 0x01, 0x06, 0x23, 0x06, 0x15, 0x14, 0x07, 0x06, 0x3B, 0x06, 0x32, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x35, 0x34, 0x23, 0x06, 0x27, 0x26, + 0x37, 0x35, 0x34, 0x37, 0x36, 0x37, 0x32, 0x37, 0x36, 0x17, 0x16, 0x1D, + 0x01, 0x14, 0x17, 0x14, 0x17, 0x16, 0x17, 0x16, 0x3B, 0x01, 0x16, 0x1F, + 0x01, 0x16, 0x1F, 0x01, 0x16, 0x1D, 0x02, 0x14, 0x07, 0x06, 0x3B, 0x03, + 0x05, 0x5E, 0x08, 0x01, 0x01, 0x01, 0x0F, 0x0E, 0x04, 0x05, 0x07, 0x01, + 0x03, 0x13, 0x0D, 0x0E, 0x16, 0x1B, 0x08, 0x09, 0x0D, 0x08, 0x0F, 0x0F, + 0x0B, 0x07, 0x04, 0x04, 0x0E, 0x0B, 0x16, 0x11, 0xFE, 0xE7, 0x06, 0x08, + 0x10, 0x2B, 0x2C, 0x15, 0x16, 0x05, 0x03, 0x04, 0x06, 0x04, 0x09, 0x0A, + 0x01, 0x08, 0x05, 0x07, 0x05, 0x06, 0x04, 0x01, 0x0C, 0x10, 0x18, 0x14, + 0x14, 0x19, 0x1B, 0x54, 0x02, 0x26, 0x06, 0x0B, 0x02, 0x06, 0x04, 0x03, + 0x01, 0x18, 0x1A, 0x34, 0x36, 0x27, 0x27, 0x37, 0x18, 0x01, 0x0D, 0x0D, + 0x3C, 0x3C, 0x41, 0x42, 0x15, 0x15, 0x08, 0x02, 0x2C, 0x0E, 0x04, 0x01, + 0x03, 0x03, 0x05, 0x05, 0x04, 0x01, 0x03, 0x08, 0x01, 0x01, 0x01, 0x01, + 0x02, 0x0C, 0x03, 0x01, 0x01, 0x21, 0x0D, 0x03, 0x03, 0x16, 0x0F, 0x0D, + 0x0B, 0x13, 0x2A, 0x2B, 0x0A, 0x0A, 0x03, 0x01, 0x02, 0x02, 0x05, 0x05, + 0x05, 0x0A, 0x08, 0x03, 0x03, 0x02, 0x01, 0x03, 0x01, 0x03, 0x01, 0x02, + 0x01, 0x03, 0x03, 0x06, 0x05, 0x0B, 0x0A, 0x1E, 0x18, 0x04, 0x03, 0x02, + 0x04, 0x02, 0x1E, 0x25, 0x01, 0x05, 0x08, 0x07, 0x02, 0x03, 0x03, 0x0F, + 0x11, 0x1B, 0x19, 0x20, 0x23, 0x1D, 0x11, 0x09, 0x04, 0x12, 0x05, 0x09, + 0x05, 0x07, 0x08, 0x10, 0x02, 0x08, 0x01, 0x02, 0x02, 0x01, 0x02, 0x01, + 0x01, 0x04, 0x01, 0x04, 0x02, 0x03, 0x01, 0x01, 0x01, 0x08, 0x18, 0x20, + 0x09, 0x0A, 0x06, 0x06, 0x05, 0x03, 0x0A, 0x0A, 0x06, 0x2D, 0x3B, 0x3A, + 0x3C, 0x26, 0x25, 0x32, 0x19, 0x18, 0x04, 0x10, 0x04, 0x06, 0x05, 0x01, + 0x07, 0x03, 0x0E, 0x03, 0x09, 0x0B, 0x20, 0x10, 0x11, 0x20, 0x04, 0x04, + 0x06, 0x03, 0x01, 0x04, 0x09, 0x05, 0x10, 0x02, 0x01, 0x0C, 0x09, 0x0C, + 0x1D, 0x1E, 0x5E, 0x5E, 0x5E, 0x5E, 0x21, 0x02, 0x01, 0x01, 0x02, 0x01, + 0x01, 0x07, 0x07, 0x0C, 0x1F, 0x1E, 0x69, 0x68, 0x68, 0x68, 0x1F, 0x11, + 0x1C, 0x13, 0x26, 0x13, 0x24, 0x15, 0x5A, 0x5A, 0x5A, 0x5A, 0x06, 0x02, + 0x02, 0x03, 0x02, 0x0C, 0x02, 0x03, 0x09, 0x02, 0x06, 0x03, 0x04, 0x0C, + 0x0C, 0x03, 0x05, 0x0F, 0x10, 0x09, 0x03, 0x02, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x03, 0x01, 0x02, 0x05, 0x1E, 0x1F, 0x6A, 0x6A, 0x1A, 0x1A, 0x06, + 0x08, 0x04, 0x0A, 0x0B, 0x07, 0x07, 0x02, 0x04, 0x01, 0x01, 0x01, 0x05, + 0x04, 0x0A, 0x02, 0x10, 0x0C, 0x01, 0x01, 0x01, 0x03, 0x03, 0x04, 0x05, + 0x0A, 0x0D, 0x05, 0x05, 0x12, 0x10, 0x01, 0x1B, 0x0D, 0x01, 0x01, 0x05, + 0x19, 0x18, 0x35, 0x01, 0x60, 0x0D, 0x11, 0x17, 0x0A, 0x08, 0x07, 0x01, + 0x02, 0x0C, 0x08, 0x02, 0x06, 0x0A, 0x0B, 0x08, 0x0B, 0x15, 0x16, 0x19, + 0x0F, 0x0A, 0x09, 0x0E, 0x0A, 0x04, 0x03, 0x02, 0x01, 0x04, 0x03, 0x31, + 0x0E, 0x15, 0x15, 0x01, 0x01, 0x02, 0x01, 0x09, 0x0C, 0x01, 0x08, 0x04, + 0x06, 0x06, 0x07, 0x1A, 0x07, 0x12, 0x22, 0x0A, 0x12, 0x06, 0x04, 0x0B, + 0x0B, 0x2C, 0x01, 0x41, 0x09, 0x03, 0x01, 0x01, 0x03, 0x04, 0x01, 0x12, + 0x10, 0x02, 0x03, 0x1A, 0x0B, 0x08, 0x01, 0x02, 0x01, 0x03, 0x04, 0x07, + 0x08, 0x0A, 0x08, 0x04, 0x0F, 0x04, 0x04, 0x0F, 0x04, 0x05, 0x03, 0x16, + 0x14, 0x0B, 0x1A, 0x19, 0x72, 0x0A, 0x24, 0x25, 0x04, 0x03, 0x01, 0x01, + 0x04, 0x03, 0x03, 0x05, 0x05, 0x0C, 0x0C, 0x09, 0x07, 0x0C, 0x04, 0x0E, + 0x01, 0x06, 0x19, 0x07, 0x06, 0x1A, 0x06, 0x12, 0x0C, 0x07, 0x08, 0x02, + 0x01, 0x02, 0x02, 0x16, 0x12, 0x13, 0x12, 0x12, 0x0C, 0x02, 0x02, 0x0B, + 0x0B, 0x06, 0x04, 0x10, 0x04, 0x18, 0x24, 0x1F, 0x21, 0x16, 0x13, 0x0B, + 0x0C, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0x05, 0x02, 0x0B, 0x0C, + 0x04, 0x03, 0x0A, 0x02, 0x04, 0x12, 0x04, 0x10, 0x09, 0x0B, 0x03, 0x07, + 0x06, 0x11, 0x01, 0x02, 0x01, 0x02, 0x04, 0x09, 0x04, 0x08, 0x09, 0x03, + 0x23, 0x22, 0x22, 0x01, 0x01, 0x01, 0x02, 0x02, 0x03, 0x02, 0x01, 0x03, + 0x04, 0x12, 0x0B, 0x03, 0x01, 0x01, 0x06, 0x01, 0x04, 0x03, 0x0C, 0x07, + 0x06, 0x0C, 0x01, 0x03, 0x02, 0x01, 0x01, 0x01, 0x02, 0x03, 0x10, 0x0B, + 0x2D, 0x40, 0x4C, 0x31, 0x19, 0x38, 0x1C, 0x0E, 0x37, 0x0D, 0x12, 0x03, + 0x03, 0x01, 0x02, 0x04, 0x06, 0x01, 0x02, 0x17, 0x18, 0x05, 0x07, 0x19, + 0x06, 0x06, 0x1A, 0x06, 0x0E, 0x05, 0x07, 0x05, 0x04, 0x0F, 0x0D, 0x0B, + 0x10, 0x09, 0x0A, 0x14, 0x05, 0x0D, 0x13, 0x05, 0x03, 0x06, 0x03, 0x02, + 0x02, 0x02, 0x04, 0x07, 0x07, 0x0B, 0x07, 0x03, 0x07, 0x06, 0x03, 0x03, + 0x0D, 0x08, 0x04, 0x05, 0x03, 0x06, 0x0A, 0x07, 0x08, 0x07, 0x02, 0x02, + 0x01, 0x09, 0x07, 0x0D, 0x14, 0x0C, 0x05, 0x08, 0x0A, 0x0C, 0x03, 0x03, + 0x02, 0x05, 0x12, 0x13, 0x01, 0x1B, 0x0D, 0x15, 0x30, 0x31, 0x07, 0x06, + 0x09, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x60, 0x00, 0x25, 0x0B, 0x9E, + 0x03, 0x5A, 0x01, 0xA0, 0x01, 0xB4, 0x01, 0xC1, 0x00, 0x00, 0x01, 0x32, + 0x07, 0x14, 0x0E, 0x01, 0x15, 0x14, 0x06, 0x27, 0x2B, 0x03, 0x22, 0x07, + 0x22, 0x06, 0x23, 0x06, 0x2B, 0x01, 0x06, 0x2B, 0x02, 0x06, 0x2B, 0x01, + 0x06, 0x15, 0x16, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x2F, 0x01, 0x26, 0x07, 0x0E, 0x01, + 0x07, 0x22, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x23, 0x0F, 0x01, 0x14, + 0x06, 0x15, 0x14, 0x06, 0x15, 0x14, 0x2B, 0x02, 0x22, 0x06, 0x07, 0x23, + 0x22, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x06, 0x23, 0x06, 0x07, 0x06, 0x27, + 0x26, 0x35, 0x26, 0x35, 0x06, 0x07, 0x06, 0x07, 0x06, 0x23, 0x06, 0x23, + 0x07, 0x14, 0x06, 0x15, 0x06, 0x07, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x17, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, + 0x26, 0x2F, 0x01, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x26, 0x27, + 0x26, 0x27, 0x06, 0x07, 0x0E, 0x03, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x14, 0x06, 0x07, 0x06, 0x15, + 0x14, 0x07, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x26, 0x27, 0x23, 0x22, 0x06, 0x07, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x22, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, + 0x26, 0x35, 0x34, 0x27, 0x34, 0x26, 0x27, 0x34, 0x2E, 0x02, 0x27, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x36, 0x3B, 0x09, 0x16, 0x37, 0x32, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x17, 0x32, 0x17, 0x16, 0x17, 0x16, 0x37, 0x32, + 0x3E, 0x01, 0x33, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x14, 0x37, + 0x36, 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x37, 0x3B, 0x04, 0x26, 0x34, + 0x27, 0x26, 0x27, 0x3B, 0x01, 0x32, 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, + 0x37, 0x3B, 0x08, 0x26, 0x3D, 0x01, 0x34, 0x27, 0x26, 0x37, 0x34, 0x3E, + 0x01, 0x37, 0x36, 0x33, 0x3E, 0x01, 0x33, 0x36, 0x37, 0x32, 0x16, 0x07, + 0x06, 0x1D, 0x04, 0x07, 0x06, 0x15, 0x14, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x17, 0x16, 0x37, 0x32, 0x36, 0x33, 0x36, 0x33, 0x32, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x05, 0x22, 0x07, 0x06, 0x17, 0x16, 0x33, 0x16, 0x33, + 0x32, 0x1E, 0x01, 0x33, 0x16, 0x37, 0x36, 0x27, 0x26, 0x2B, 0x01, 0x25, + 0x17, 0x16, 0x17, 0x36, 0x37, 0x36, 0x37, 0x2B, 0x01, 0x14, 0x16, 0x17, + 0x0B, 0x8F, 0x0F, 0x01, 0x01, 0x01, 0x02, 0x02, 0x0A, 0x1B, 0x1C, 0x48, + 0x31, 0x19, 0x0E, 0x38, 0x0E, 0x1D, 0x38, 0x23, 0x0C, 0x17, 0x19, 0x18, + 0x04, 0x07, 0x0C, 0x08, 0x01, 0x03, 0x06, 0x14, 0x15, 0x10, 0x0A, 0x0B, + 0x03, 0x0D, 0x03, 0x04, 0x0A, 0x05, 0x0A, 0x0E, 0x06, 0x15, 0x22, 0x2F, + 0x0E, 0x36, 0x0D, 0x0A, 0x02, 0x02, 0x01, 0x02, 0x02, 0x04, 0x04, 0x09, + 0x02, 0x02, 0x02, 0x0D, 0x0F, 0x59, 0x0F, 0x3B, 0x0F, 0x53, 0x26, 0x2D, + 0x03, 0x0E, 0x03, 0x04, 0x0E, 0x03, 0x0F, 0x06, 0x0F, 0x07, 0x0D, 0x01, + 0x13, 0x24, 0x13, 0x24, 0x04, 0x09, 0x05, 0x09, 0x01, 0x01, 0x02, 0x01, + 0x04, 0x03, 0x01, 0x03, 0x01, 0x02, 0x04, 0x02, 0x06, 0x01, 0x0D, 0x11, + 0x14, 0x0F, 0x03, 0x0E, 0x03, 0x09, 0x0E, 0x1E, 0x32, 0x0E, 0x34, 0x0C, + 0x02, 0x09, 0x06, 0x07, 0x06, 0x03, 0x04, 0x03, 0x0F, 0x08, 0x04, 0x02, + 0x08, 0x02, 0x05, 0x08, 0x17, 0x10, 0x0E, 0x15, 0x03, 0x0D, 0x02, 0x05, + 0x03, 0x04, 0x02, 0x06, 0x02, 0x05, 0x04, 0x0A, 0x10, 0x0F, 0x0D, 0x16, + 0x13, 0x13, 0x14, 0x08, 0x03, 0x05, 0x05, 0x05, 0x04, 0x06, 0x05, 0x07, + 0x03, 0x01, 0x05, 0x01, 0x01, 0x05, 0x02, 0x02, 0x05, 0x01, 0x02, 0x06, + 0x01, 0x05, 0x01, 0x03, 0x01, 0x02, 0x01, 0x01, 0x0A, 0x12, 0x12, 0x10, + 0x0D, 0x1A, 0x0D, 0x1A, 0x08, 0x04, 0x02, 0x05, 0x01, 0x06, 0x16, 0x04, + 0x0A, 0x12, 0x05, 0x07, 0x07, 0x0C, 0x02, 0x08, 0x02, 0x08, 0x04, 0x02, + 0x0E, 0x13, 0x0D, 0x33, 0x0D, 0x34, 0x19, 0x0F, 0x39, 0x0E, 0x0F, 0x3A, + 0x0E, 0x41, 0x3A, 0x3C, 0x2F, 0x21, 0x13, 0x1E, 0x14, 0x07, 0x04, 0x06, + 0x07, 0x11, 0x04, 0x06, 0x03, 0x05, 0x01, 0x02, 0x01, 0x03, 0x02, 0x02, + 0x01, 0x01, 0x04, 0x01, 0x07, 0x02, 0x14, 0x16, 0x37, 0x36, 0x6B, 0x6A, + 0x6B, 0x6A, 0x17, 0x17, 0x09, 0x04, 0x04, 0x0B, 0x0A, 0x0C, 0x18, 0x10, + 0x13, 0x14, 0x01, 0x0F, 0x03, 0x06, 0x0A, 0x0B, 0x03, 0x02, 0x02, 0x04, + 0x02, 0x03, 0x1F, 0x0A, 0x06, 0x04, 0x0A, 0x0B, 0x06, 0x02, 0x06, 0x09, + 0x03, 0x0C, 0x05, 0x04, 0x0C, 0x01, 0x01, 0x03, 0x24, 0x27, 0x03, 0x11, + 0x12, 0x12, 0x11, 0x0D, 0x0D, 0x1A, 0x6D, 0x6C, 0x13, 0x13, 0x01, 0x01, + 0x01, 0x04, 0x15, 0x16, 0x0D, 0x01, 0x01, 0x01, 0x07, 0x0B, 0x06, 0x06, + 0x0C, 0x4E, 0x4E, 0x70, 0x70, 0x70, 0x70, 0x3A, 0x3A, 0x01, 0x03, 0x03, + 0x03, 0x03, 0x04, 0x01, 0x04, 0x07, 0x04, 0x0F, 0x04, 0x07, 0x10, 0x05, + 0x04, 0x01, 0x01, 0x05, 0x05, 0x0F, 0x0F, 0x04, 0x0E, 0x13, 0x0C, 0x18, + 0x4F, 0x4E, 0x1A, 0x68, 0x1A, 0x0F, 0x20, 0x18, 0x16, 0x04, 0x22, 0x0D, + 0x23, 0xF8, 0xC3, 0x17, 0x03, 0x04, 0x0B, 0x0A, 0x09, 0x07, 0x0F, 0x03, + 0x0C, 0x16, 0x0A, 0x24, 0x05, 0x06, 0x02, 0x02, 0x1D, 0x29, 0xFC, 0x33, + 0x09, 0x03, 0x06, 0x41, 0x38, 0x54, 0x2B, 0x88, 0x88, 0x02, 0x01, 0x02, + 0xD5, 0x24, 0x0A, 0x17, 0x0C, 0x03, 0x04, 0x03, 0x01, 0x01, 0x02, 0x01, + 0x01, 0x01, 0x01, 0x02, 0x03, 0x08, 0x0E, 0x0E, 0x0D, 0x07, 0x05, 0x0A, + 0x03, 0x0B, 0x03, 0x03, 0x02, 0x01, 0x03, 0x04, 0x02, 0x03, 0x04, 0x02, + 0x01, 0x02, 0x01, 0x05, 0x07, 0x09, 0x05, 0x01, 0x02, 0x02, 0x0B, 0x03, + 0x0C, 0x03, 0x04, 0x0D, 0x03, 0x01, 0x01, 0x01, 0x05, 0x01, 0x02, 0x02, + 0x03, 0x02, 0x04, 0x01, 0x03, 0x21, 0x16, 0x16, 0x04, 0x06, 0x03, 0x08, + 0x01, 0x01, 0x01, 0x02, 0x05, 0x03, 0x0C, 0x01, 0x0C, 0x13, 0x03, 0x18, + 0x05, 0x14, 0x13, 0x06, 0x1A, 0x06, 0x31, 0x33, 0x3C, 0x26, 0x09, 0x22, + 0x08, 0x1A, 0x18, 0x0A, 0x18, 0x07, 0x1C, 0x06, 0x01, 0x05, 0x04, 0x02, + 0x08, 0x05, 0x07, 0x07, 0x21, 0x12, 0x0E, 0x07, 0x1A, 0x07, 0x0D, 0x1A, + 0x45, 0x43, 0x39, 0x4F, 0x02, 0x05, 0x01, 0x02, 0x02, 0x02, 0x01, 0x04, + 0x02, 0x05, 0x01, 0x06, 0x01, 0x01, 0x02, 0x01, 0x04, 0x04, 0x0B, 0x04, + 0x03, 0x04, 0x05, 0x05, 0x01, 0x01, 0x04, 0x03, 0x0C, 0x03, 0x0D, 0x03, + 0x04, 0x0F, 0x03, 0x04, 0x0E, 0x04, 0x05, 0x15, 0x06, 0x10, 0x11, 0x07, + 0x1C, 0x07, 0x1E, 0x0E, 0x09, 0x04, 0x07, 0x02, 0x06, 0x08, 0x08, 0x06, + 0x0E, 0x07, 0x0C, 0x04, 0x09, 0x03, 0x0A, 0x02, 0x0E, 0x35, 0x0A, 0x1A, + 0x34, 0x0D, 0x14, 0x12, 0x0E, 0x02, 0x09, 0x03, 0x08, 0x05, 0x03, 0x02, + 0x01, 0x01, 0x02, 0x01, 0x01, 0x02, 0x01, 0x03, 0x01, 0x01, 0x25, 0x26, + 0x27, 0x19, 0x11, 0x19, 0x14, 0x07, 0x07, 0x09, 0x04, 0x08, 0x0D, 0x0E, + 0x0B, 0x14, 0x11, 0x18, 0x0B, 0x06, 0x1C, 0x06, 0x07, 0x1A, 0x0C, 0x1C, + 0x06, 0x0D, 0x1A, 0x06, 0x3D, 0x13, 0x13, 0x01, 0x01, 0x1C, 0x03, 0x06, + 0x02, 0x02, 0x07, 0x01, 0x05, 0x02, 0x03, 0x09, 0x0A, 0x09, 0x07, 0x0F, + 0x1E, 0x0E, 0x15, 0x01, 0x06, 0x05, 0x0A, 0x09, 0x01, 0x01, 0x01, 0x02, + 0x02, 0x03, 0x14, 0x08, 0x04, 0x0C, 0x06, 0x03, 0x03, 0x01, 0x02, 0x05, + 0x04, 0x02, 0x01, 0x01, 0x03, 0x0B, 0x02, 0x03, 0x0B, 0x04, 0x01, 0x01, + 0x06, 0x05, 0x02, 0x01, 0x03, 0x07, 0x09, 0x05, 0x08, 0x08, 0x04, 0x01, + 0x05, 0x09, 0x03, 0x0D, 0x01, 0x01, 0x01, 0x02, 0x03, 0x04, 0x05, 0x0A, + 0x1A, 0x1A, 0x07, 0x07, 0x02, 0x02, 0x03, 0x04, 0x09, 0x0B, 0x01, 0x0B, + 0x03, 0x03, 0x02, 0x04, 0x01, 0x02, 0x01, 0x03, 0x01, 0x07, 0x03, 0x07, + 0xB1, 0x18, 0x17, 0x0F, 0x08, 0x01, 0x01, 0x01, 0x02, 0x0E, 0x12, 0x17, + 0x14, 0x02, 0x48, 0x25, 0x24, 0x39, 0x29, 0x3E, 0x1F, 0x04, 0x0F, 0x03, + 0x00, 0x02, 0x00, 0x5B, 0x00, 0x40, 0x08, 0xA7, 0x03, 0x42, 0x00, 0xFE, + 0x01, 0x18, 0x00, 0x00, 0x01, 0x17, 0x16, 0x07, 0x06, 0x17, 0x22, 0x07, + 0x06, 0x23, 0x06, 0x27, 0x26, 0x2B, 0x02, 0x22, 0x07, 0x06, 0x07, 0x27, + 0x23, 0x06, 0x07, 0x06, 0x07, 0x06, 0x23, 0x06, 0x2B, 0x04, 0x22, 0x27, + 0x22, 0x07, 0x14, 0x17, 0x14, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, + 0x26, 0x27, 0x07, 0x06, 0x1D, 0x01, 0x06, 0x07, 0x06, 0x07, 0x14, 0x16, + 0x15, 0x14, 0x1F, 0x01, 0x23, 0x06, 0x07, 0x06, 0x15, 0x17, 0x22, 0x27, + 0x26, 0x27, 0x26, 0x2F, 0x01, 0x22, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, + 0x26, 0x27, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x34, 0x27, + 0x26, 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x23, 0x14, 0x16, 0x15, 0x16, 0x17, 0x16, 0x07, 0x0E, 0x01, 0x23, + 0x34, 0x26, 0x27, 0x26, 0x27, 0x26, 0x2F, 0x01, 0x0E, 0x01, 0x07, 0x14, + 0x0E, 0x01, 0x15, 0x06, 0x23, 0x06, 0x07, 0x06, 0x07, 0x26, 0x2F, 0x02, + 0x06, 0x07, 0x06, 0x07, 0x22, 0x2F, 0x01, 0x22, 0x2F, 0x01, 0x26, 0x27, + 0x26, 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, + 0x37, 0x35, 0x33, 0x15, 0x16, 0x1F, 0x01, 0x36, 0x37, 0x36, 0x37, 0x32, + 0x17, 0x32, 0x16, 0x17, 0x16, 0x33, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x36, + 0x37, 0x34, 0x37, 0x36, 0x35, 0x3E, 0x01, 0x17, 0x32, 0x16, 0x32, 0x16, + 0x17, 0x32, 0x16, 0x1F, 0x01, 0x16, 0x1F, 0x01, 0x32, 0x16, 0x33, 0x16, + 0x17, 0x1E, 0x01, 0x33, 0x16, 0x33, 0x36, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x07, 0x06, 0x07, 0x06, 0x07, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x14, 0x17, 0x15, 0x3B, 0x01, 0x32, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, + 0x1F, 0x01, 0x25, 0x21, 0x22, 0x07, 0x06, 0x1D, 0x01, 0x14, 0x17, 0x16, + 0x3B, 0x04, 0x32, 0x17, 0x16, 0x37, 0x36, 0x35, 0x26, 0x27, 0x26, 0x27, + 0x26, 0x08, 0x9F, 0x06, 0x02, 0x04, 0x05, 0x01, 0x10, 0x20, 0x18, 0x18, + 0x10, 0x17, 0x11, 0x16, 0x43, 0x44, 0x17, 0x15, 0x14, 0x18, 0x0A, 0x05, + 0x05, 0x05, 0x07, 0x0C, 0x12, 0x13, 0x0B, 0x1B, 0x51, 0x52, 0x52, 0x52, + 0x1A, 0x0D, 0x13, 0x14, 0x01, 0x0D, 0x13, 0x1A, 0x28, 0x08, 0x0C, 0x18, + 0x12, 0x12, 0x14, 0x0D, 0x0A, 0x05, 0x08, 0x03, 0x02, 0x01, 0x06, 0x06, + 0x0D, 0x05, 0x05, 0x04, 0x0F, 0x14, 0x1E, 0x06, 0x0A, 0x05, 0x0F, 0x01, + 0x05, 0x01, 0x03, 0x04, 0x09, 0x03, 0x06, 0x05, 0x02, 0x06, 0x04, 0x11, + 0x0B, 0x13, 0x13, 0x01, 0x04, 0x06, 0x08, 0x18, 0x14, 0x16, 0x15, 0x16, + 0x15, 0x13, 0x0E, 0x0D, 0x07, 0x09, 0x1B, 0x04, 0x01, 0x04, 0x03, 0x01, + 0x25, 0x5C, 0x2E, 0x03, 0x01, 0x04, 0x01, 0x02, 0x01, 0x03, 0x14, 0x50, + 0x14, 0x01, 0x01, 0x02, 0x09, 0x12, 0x09, 0x0F, 0x0C, 0x03, 0x04, 0x08, + 0x02, 0x31, 0x36, 0x3A, 0x33, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x0D, + 0x0C, 0x0C, 0x04, 0x01, 0x02, 0x01, 0x13, 0x0C, 0x06, 0x0C, 0x05, 0x05, + 0x0C, 0x05, 0xD0, 0x09, 0x0A, 0x15, 0x13, 0x11, 0x0B, 0x16, 0x1B, 0x36, + 0x0E, 0x34, 0x0E, 0x36, 0x1B, 0x21, 0x2F, 0x02, 0x05, 0x01, 0x02, 0x04, + 0x07, 0x04, 0x13, 0x48, 0x1A, 0x0C, 0x2C, 0x18, 0x2C, 0x0C, 0x0F, 0x3D, + 0x0F, 0x5A, 0x3C, 0x1F, 0x5A, 0x0E, 0x39, 0x0F, 0x38, 0x1D, 0x0E, 0x39, + 0x0E, 0x38, 0x1D, 0x03, 0x05, 0x03, 0x05, 0x15, 0x01, 0x01, 0x02, 0x02, + 0x03, 0x05, 0x01, 0x0D, 0x11, 0x05, 0x13, 0x04, 0x01, 0x01, 0x2C, 0x2B, + 0x1A, 0x0E, 0x15, 0x13, 0x27, 0x28, 0x1B, 0x35, 0x08, 0xFD, 0xEE, 0xFD, + 0x3F, 0x13, 0x09, 0x09, 0x0A, 0x09, 0x12, 0xA2, 0xA2, 0xA2, 0xA3, 0x18, + 0x13, 0x1C, 0x0B, 0x0E, 0x02, 0x0C, 0x06, 0x04, 0x07, 0x02, 0x4A, 0x14, + 0x0C, 0x08, 0x0C, 0x08, 0x02, 0x03, 0x01, 0x05, 0x04, 0x08, 0x08, 0x02, + 0x07, 0x1A, 0x0C, 0x13, 0x10, 0x07, 0x01, 0x01, 0x06, 0x1E, 0x10, 0x19, + 0x11, 0x0C, 0x04, 0x04, 0x01, 0x01, 0x04, 0x01, 0x07, 0x0D, 0x0A, 0x11, + 0x1F, 0x05, 0x0A, 0x0E, 0x06, 0x01, 0x06, 0x02, 0x06, 0x03, 0x09, 0x11, + 0x0D, 0x11, 0x13, 0x06, 0x05, 0x07, 0x01, 0x02, 0x02, 0x06, 0x01, 0x01, + 0x01, 0x02, 0x05, 0x06, 0x08, 0x03, 0x15, 0x39, 0x29, 0x22, 0x17, 0x12, + 0x11, 0x19, 0x06, 0x04, 0x06, 0x04, 0x05, 0x02, 0x02, 0x08, 0x07, 0x10, + 0x11, 0x13, 0x16, 0x12, 0x16, 0x10, 0x40, 0x10, 0x13, 0x28, 0x21, 0x1A, + 0x1B, 0x16, 0x0E, 0x38, 0x0F, 0x38, 0x1C, 0x38, 0x1D, 0x54, 0x03, 0x10, + 0x05, 0x02, 0x06, 0x08, 0x04, 0x0E, 0x04, 0x03, 0x05, 0x01, 0x03, 0x06, + 0x08, 0x0A, 0x19, 0x08, 0x08, 0x03, 0x02, 0x02, 0x01, 0x01, 0x26, 0x33, + 0x34, 0x28, 0x1F, 0x2C, 0x2B, 0x1C, 0x10, 0x07, 0x0E, 0x08, 0x09, 0x0E, + 0x09, 0x06, 0x06, 0x0E, 0x0B, 0x18, 0x09, 0x0C, 0x07, 0x12, 0x02, 0x03, + 0x01, 0x02, 0x01, 0x05, 0x04, 0x10, 0x03, 0x07, 0x10, 0x02, 0x14, 0x0B, + 0x0B, 0x11, 0x0A, 0x02, 0x02, 0x02, 0x01, 0x01, 0x01, 0x03, 0x02, 0x01, + 0x03, 0x02, 0x02, 0x01, 0x01, 0x01, 0x02, 0x01, 0x03, 0x02, 0x08, 0x18, + 0x20, 0x18, 0x27, 0x19, 0x0D, 0x14, 0x13, 0x01, 0x03, 0x01, 0x04, 0x01, + 0x01, 0x02, 0x01, 0x05, 0x01, 0x01, 0x04, 0x0B, 0x01, 0x01, 0x02, 0x04, + 0x94, 0x0A, 0x0B, 0x12, 0x23, 0x12, 0x09, 0x0A, 0x01, 0x01, 0x0D, 0x0B, + 0x22, 0x22, 0x0A, 0x06, 0x02, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x63, + 0x00, 0x22, 0x0A, 0x42, 0x03, 0x60, 0x00, 0x1E, 0x00, 0x33, 0x01, 0xD3, + 0x00, 0x00, 0x01, 0x34, 0x27, 0x23, 0x22, 0x17, 0x16, 0x17, 0x06, 0x27, + 0x26, 0x27, 0x26, 0x27, 0x26, 0x34, 0x27, 0x06, 0x07, 0x06, 0x17, 0x16, + 0x17, 0x16, 0x3B, 0x01, 0x16, 0x37, 0x36, 0x37, 0x36, 0x01, 0x16, 0x17, + 0x16, 0x3B, 0x02, 0x32, 0x26, 0x37, 0x34, 0x37, 0x34, 0x37, 0x22, 0x27, + 0x26, 0x07, 0x06, 0x07, 0x06, 0x17, 0x26, 0x27, 0x26, 0x2B, 0x02, 0x22, + 0x07, 0x06, 0x07, 0x06, 0x26, 0x27, 0x26, 0x07, 0x06, 0x23, 0x22, 0x27, + 0x22, 0x15, 0x14, 0x07, 0x06, 0x07, 0x06, 0x27, 0x2B, 0x06, 0x22, 0x27, + 0x26, 0x27, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x35, 0x1D, 0x03, 0x14, + 0x17, 0x16, 0x07, 0x06, 0x15, 0x14, 0x17, 0x14, 0x16, 0x15, 0x14, 0x17, + 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x07, 0x23, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x22, 0x07, 0x06, 0x27, + 0x26, 0x27, 0x34, 0x2E, 0x01, 0x35, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x27, 0x26, 0x27, 0x34, 0x37, 0x36, 0x27, 0x26, 0x27, 0x22, 0x26, + 0x27, 0x26, 0x37, 0x35, 0x0E, 0x01, 0x07, 0x06, 0x2B, 0x04, 0x22, 0x27, + 0x26, 0x07, 0x06, 0x07, 0x06, 0x26, 0x27, 0x26, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, 0x07, 0x06, + 0x23, 0x22, 0x0E, 0x01, 0x23, 0x06, 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x27, 0x26, + 0x27, 0x26, 0x07, 0x06, 0x27, 0x26, 0x37, 0x36, 0x37, 0x22, 0x2F, 0x01, + 0x26, 0x27, 0x26, 0x31, 0x2B, 0x05, 0x22, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x23, 0x22, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x2B, 0x02, 0x22, 0x37, 0x36, 0x23, 0x22, 0x27, 0x26, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x27, 0x26, 0x27, 0x0E, 0x03, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, 0x22, 0x27, 0x26, 0x27, 0x26, + 0x3D, 0x04, 0x34, 0x27, 0x26, 0x37, 0x36, 0x37, 0x36, 0x3B, 0x07, 0x32, + 0x17, 0x16, 0x3B, 0x05, 0x32, 0x27, 0x26, 0x37, 0x36, 0x37, 0x33, 0x32, + 0x27, 0x26, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3B, 0x01, 0x32, 0x17, 0x16, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x26, 0x27, 0x26, 0x37, 0x36, 0x17, + 0x1E, 0x01, 0x1D, 0x02, 0x14, 0x33, 0x14, 0x33, 0x32, 0x3D, 0x01, 0x34, + 0x17, 0x16, 0x3B, 0x01, 0x32, 0x1D, 0x02, 0x3B, 0x03, 0x32, 0x17, 0x16, + 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x16, 0x3B, 0x01, 0x16, 0x37, 0x3E, + 0x01, 0x3B, 0x06, 0x32, 0x37, 0x36, 0x17, 0x36, 0x37, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x3B, 0x01, 0x32, 0x1D, 0x04, + 0x14, 0x37, 0x33, 0x32, 0x37, 0x36, 0x3B, 0x02, 0x32, 0x17, 0x16, 0x15, + 0x14, 0x07, 0x06, 0x2B, 0x01, 0x05, 0x4D, 0x20, 0x38, 0x0D, 0x07, 0x08, + 0x01, 0x07, 0x09, 0x0A, 0x03, 0x06, 0x02, 0x01, 0x01, 0x11, 0x08, 0x08, + 0x0C, 0x09, 0x10, 0x14, 0x0C, 0x1D, 0x0E, 0x0E, 0x14, 0x04, 0x03, 0x03, + 0xBB, 0x02, 0x01, 0x02, 0x04, 0x1A, 0x1A, 0x07, 0x02, 0x01, 0x01, 0x01, + 0x02, 0x16, 0x12, 0x06, 0x07, 0x04, 0x06, 0x87, 0x02, 0x03, 0x04, 0x01, + 0x0B, 0x0C, 0x0E, 0x04, 0x02, 0x0A, 0x07, 0x14, 0x04, 0x06, 0x0F, 0x12, + 0x04, 0x08, 0x0A, 0x10, 0x05, 0x06, 0x10, 0x0A, 0x05, 0x10, 0x6B, 0x6B, + 0x6B, 0x6B, 0x3B, 0x3B, 0x0F, 0x0E, 0x0C, 0x08, 0x06, 0x03, 0x02, 0x02, + 0x04, 0x05, 0x06, 0x05, 0x05, 0x0A, 0x01, 0x02, 0x03, 0x05, 0x0F, 0x01, + 0x18, 0x01, 0x04, 0x03, 0x05, 0x03, 0x02, 0x07, 0x0C, 0x07, 0x0C, 0x09, + 0x25, 0x0A, 0x09, 0x25, 0x0A, 0x02, 0x19, 0x13, 0x08, 0x02, 0x01, 0x01, + 0x01, 0x01, 0x04, 0x01, 0x01, 0x05, 0x02, 0x0D, 0x07, 0x08, 0x02, 0x02, + 0x02, 0x03, 0x02, 0x04, 0x02, 0x06, 0x01, 0x02, 0x01, 0x02, 0x06, 0x01, + 0x05, 0x07, 0x19, 0x18, 0x1C, 0x1D, 0x0A, 0x06, 0x08, 0x08, 0x0A, 0x03, + 0x02, 0x06, 0x05, 0x07, 0x0B, 0x04, 0x0A, 0x01, 0x03, 0x07, 0x01, 0x05, + 0x06, 0x01, 0x04, 0x01, 0x05, 0x0A, 0x06, 0x0A, 0x04, 0x0D, 0x08, 0x0C, + 0x06, 0x07, 0x01, 0x03, 0x06, 0x08, 0x03, 0x05, 0x0C, 0x03, 0x0C, 0x14, + 0x08, 0x21, 0x1F, 0x1D, 0x15, 0x14, 0x0E, 0x1F, 0x24, 0x2C, 0x17, 0x02, + 0x06, 0x01, 0x01, 0x06, 0x02, 0x08, 0x04, 0x04, 0x0E, 0x0B, 0x10, 0x0F, + 0x0B, 0x08, 0x01, 0x02, 0x01, 0x03, 0x06, 0x09, 0x03, 0x01, 0x01, 0x10, + 0x0F, 0x3B, 0x3A, 0x13, 0x13, 0x08, 0x01, 0x01, 0x05, 0x0D, 0x14, 0x15, + 0x0A, 0x02, 0x05, 0x01, 0x05, 0x09, 0x0F, 0x06, 0x03, 0x0A, 0x05, 0x02, + 0x03, 0x0B, 0x1B, 0x1C, 0x0A, 0x04, 0x05, 0x08, 0x01, 0x14, 0x0F, 0x05, + 0x23, 0x06, 0x23, 0x05, 0x14, 0x05, 0x0E, 0x04, 0x05, 0x02, 0x0D, 0x34, + 0x1A, 0x34, 0x0D, 0x0A, 0x11, 0x0F, 0x05, 0x05, 0x15, 0x17, 0x0D, 0x0B, + 0x02, 0x02, 0x01, 0x02, 0x05, 0x07, 0x12, 0x11, 0x10, 0x54, 0x54, 0x6A, + 0x69, 0x69, 0x69, 0x11, 0x08, 0x02, 0x02, 0x03, 0x0A, 0x1A, 0x19, 0x36, + 0x34, 0x0A, 0x01, 0x03, 0x06, 0x07, 0x0E, 0x16, 0x07, 0x03, 0x04, 0x05, + 0x07, 0x0B, 0x0E, 0x06, 0x14, 0x14, 0x0A, 0x09, 0x0D, 0x05, 0x04, 0x0A, + 0x08, 0x02, 0x03, 0x1C, 0x05, 0x07, 0x11, 0x10, 0x16, 0x10, 0x06, 0x01, + 0x05, 0x09, 0x10, 0x0A, 0x0B, 0x08, 0x02, 0x53, 0x53, 0x5C, 0x5C, 0x09, + 0x05, 0x06, 0x03, 0x04, 0x04, 0x03, 0x06, 0x06, 0x0A, 0x07, 0x09, 0x05, + 0x01, 0x02, 0x04, 0x05, 0x07, 0x07, 0x9F, 0xA0, 0x52, 0x53, 0x0A, 0x20, + 0x17, 0x0D, 0x17, 0x02, 0x10, 0x09, 0x02, 0x07, 0x01, 0x04, 0x08, 0x0D, + 0x09, 0x07, 0x0E, 0x0D, 0x03, 0x0E, 0x12, 0x07, 0x04, 0x05, 0x06, 0x32, + 0x33, 0x1F, 0x11, 0x1A, 0x0E, 0x11, 0x13, 0x40, 0x01, 0xA0, 0x23, 0x02, + 0x1C, 0x20, 0x03, 0x04, 0x0C, 0x0B, 0x05, 0x06, 0x0D, 0x04, 0x0D, 0x03, + 0x0B, 0x10, 0x0F, 0x15, 0x12, 0x01, 0x02, 0x02, 0x02, 0x03, 0x0F, 0x09, + 0x01, 0x51, 0x05, 0x0D, 0x0E, 0x18, 0x06, 0x0F, 0x07, 0x0F, 0x07, 0x02, + 0x02, 0x04, 0x05, 0x0E, 0x10, 0x88, 0x02, 0x02, 0x03, 0x04, 0x02, 0x0E, + 0x09, 0x12, 0x01, 0x04, 0x02, 0x02, 0x01, 0x02, 0x12, 0x08, 0x08, 0x07, + 0x02, 0x01, 0x02, 0x02, 0x12, 0x09, 0x05, 0x05, 0x01, 0x02, 0x02, 0x01, + 0x10, 0x12, 0x34, 0x34, 0x07, 0x04, 0x05, 0x05, 0x0A, 0x0A, 0x0F, 0x09, + 0x07, 0x1C, 0x07, 0x16, 0x14, 0x23, 0x2C, 0x03, 0x4B, 0x04, 0x01, 0x01, + 0x07, 0x01, 0x02, 0x04, 0x02, 0x04, 0x03, 0x0C, 0x03, 0x03, 0x0C, 0x03, + 0x0A, 0x07, 0x0A, 0x05, 0x0B, 0x03, 0x07, 0x05, 0x01, 0x04, 0x11, 0x05, + 0x04, 0x12, 0x04, 0x2E, 0x2D, 0x2C, 0x30, 0x01, 0x12, 0x0C, 0x03, 0x01, + 0x02, 0x01, 0x01, 0x02, 0x05, 0x07, 0x02, 0x07, 0x01, 0x06, 0x01, 0x01, + 0x02, 0x04, 0x06, 0x04, 0x04, 0x08, 0x0D, 0x0C, 0x05, 0x0C, 0x02, 0x04, + 0x0B, 0x02, 0x07, 0x0D, 0x03, 0x06, 0x04, 0x03, 0x04, 0x02, 0x05, 0x05, + 0x11, 0x13, 0x1A, 0x0C, 0x0E, 0x04, 0x07, 0x0C, 0x0E, 0x04, 0x05, 0x01, + 0x01, 0x01, 0x04, 0x03, 0x0B, 0x0B, 0x18, 0x37, 0x3D, 0x4C, 0x27, 0x03, + 0x0B, 0x02, 0x03, 0x0A, 0x03, 0x0F, 0x14, 0x16, 0x09, 0x07, 0x05, 0x06, + 0x0E, 0x0C, 0x1A, 0x1B, 0x0A, 0x02, 0x03, 0x01, 0x04, 0x03, 0x0A, 0x09, + 0x08, 0x13, 0x0C, 0x0D, 0x14, 0x03, 0x0C, 0x03, 0x09, 0x02, 0x02, 0x0F, + 0x0A, 0x03, 0x03, 0x0A, 0x09, 0x02, 0x01, 0x03, 0x1B, 0x04, 0x1B, 0x03, + 0x10, 0x03, 0x09, 0x04, 0x03, 0x0E, 0x09, 0x21, 0x10, 0x21, 0x09, 0x08, + 0x07, 0x08, 0x0F, 0x17, 0x02, 0x0C, 0x0A, 0x0D, 0x10, 0x0C, 0x2F, 0x2E, + 0x72, 0x71, 0x11, 0x0B, 0x0F, 0x0B, 0x11, 0x05, 0x03, 0x0C, 0x08, 0x03, + 0x02, 0x03, 0x03, 0x02, 0x0D, 0x0C, 0x05, 0x07, 0x01, 0x02, 0x01, 0x01, + 0x02, 0x05, 0x07, 0x0A, 0x0A, 0x08, 0x0D, 0x0C, 0x0B, 0x16, 0x10, 0x10, + 0x09, 0x07, 0x1A, 0x10, 0x1A, 0x1A, 0x05, 0x01, 0x03, 0x0C, 0x07, 0x01, + 0x01, 0x04, 0x0C, 0x0A, 0x05, 0x08, 0x05, 0x05, 0x04, 0x03, 0x04, 0x02, + 0x02, 0x02, 0x05, 0x06, 0x04, 0x02, 0x01, 0x11, 0x1F, 0x03, 0x16, 0x0B, + 0x02, 0x09, 0x02, 0x07, 0x02, 0x04, 0x01, 0x01, 0x09, 0x19, 0x1A, 0x31, + 0x31, 0x04, 0x02, 0x06, 0x05, 0x01, 0x02, 0x1F, 0x1B, 0x05, 0x05, 0x00, + 0x00, 0x07, 0x00, 0x5B, 0x00, 0x26, 0x0D, 0x2D, 0x03, 0x5A, 0x00, 0xC0, + 0x00, 0xCA, 0x00, 0xCE, 0x00, 0xE1, 0x00, 0xEB, 0x00, 0xF1, 0x01, 0x1D, + 0x00, 0x00, 0x01, 0x25, 0x27, 0x3F, 0x01, 0x27, 0x35, 0x0F, 0x01, 0x27, + 0x17, 0x15, 0x07, 0x27, 0x15, 0x23, 0x35, 0x33, 0x35, 0x27, 0x0F, 0x03, + 0x2F, 0x01, 0x37, 0x27, 0x23, 0x0F, 0x02, 0x23, 0x07, 0x05, 0x2F, 0x01, + 0x07, 0x27, 0x07, 0x17, 0x0F, 0x02, 0x27, 0x22, 0x07, 0x06, 0x0F, 0x02, + 0x15, 0x1F, 0x01, 0x07, 0x15, 0x1E, 0x01, 0x1F, 0x03, 0x07, 0x23, 0x35, + 0x2F, 0x03, 0x07, 0x27, 0x23, 0x07, 0x23, 0x22, 0x07, 0x06, 0x0F, 0x02, + 0x17, 0x07, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x0F, 0x04, 0x1F, 0x01, 0x07, + 0x27, 0x13, 0x3F, 0x01, 0x2F, 0x03, 0x15, 0x07, 0x2F, 0x02, 0x23, 0x0F, + 0x01, 0x15, 0x07, 0x17, 0x23, 0x15, 0x23, 0x35, 0x07, 0x35, 0x0F, 0x03, + 0x2F, 0x01, 0x13, 0x33, 0x1F, 0x01, 0x05, 0x1F, 0x01, 0x05, 0x27, 0x33, + 0x35, 0x37, 0x17, 0x37, 0x35, 0x33, 0x17, 0x3F, 0x03, 0x33, 0x05, 0x1F, + 0x03, 0x07, 0x3F, 0x01, 0x17, 0x35, 0x37, 0x35, 0x3F, 0x01, 0x05, 0x17, + 0x15, 0x1F, 0x03, 0x33, 0x3F, 0x02, 0x36, 0x33, 0x36, 0x17, 0x16, 0x17, + 0x16, 0x1F, 0x01, 0x07, 0x17, 0x33, 0x17, 0x37, 0x35, 0x33, 0x35, 0x21, + 0x17, 0x15, 0x25, 0x2F, 0x03, 0x07, 0x17, 0x33, 0x37, 0x35, 0x07, 0x33, + 0x37, 0x23, 0x25, 0x27, 0x21, 0x0F, 0x03, 0x17, 0x25, 0x3F, 0x01, 0x36, + 0x37, 0x36, 0x35, 0x34, 0x27, 0x26, 0x27, 0x05, 0x27, 0x23, 0x0F, 0x01, + 0x1F, 0x01, 0x33, 0x3F, 0x01, 0x27, 0x15, 0x33, 0x2F, 0x02, 0x05, 0x27, + 0x23, 0x07, 0x0E, 0x03, 0x07, 0x06, 0x07, 0x14, 0x17, 0x16, 0x1F, 0x01, + 0x07, 0x27, 0x26, 0x27, 0x26, 0x35, 0x26, 0x37, 0x36, 0x3F, 0x01, 0x07, + 0x06, 0x07, 0x06, 0x17, 0x14, 0x17, 0x16, 0x1F, 0x01, 0x33, 0x35, 0x37, + 0x36, 0x35, 0x26, 0x27, 0x0D, 0x29, 0xFD, 0xA7, 0x01, 0x0C, 0x01, 0xC1, + 0x50, 0x10, 0x8B, 0x1C, 0x07, 0x1E, 0x17, 0x06, 0x56, 0x02, 0x03, 0x03, + 0x06, 0x07, 0x05, 0x01, 0x02, 0x11, 0x02, 0x05, 0x05, 0x09, 0x08, 0xFE, + 0x1B, 0x09, 0x0C, 0x18, 0x03, 0x18, 0x02, 0x02, 0x04, 0x0C, 0x03, 0x04, + 0x01, 0x02, 0x01, 0x06, 0x02, 0x08, 0x01, 0x11, 0x02, 0x04, 0x06, 0x1D, + 0x11, 0x05, 0xC6, 0x06, 0x15, 0x1E, 0x0A, 0x03, 0x0E, 0x13, 0x7B, 0x29, + 0x06, 0x06, 0x02, 0x03, 0x04, 0x08, 0x1D, 0x0F, 0x04, 0x01, 0x06, 0x01, + 0x02, 0x06, 0x02, 0x0A, 0x02, 0x39, 0x01, 0x07, 0x05, 0x05, 0xB9, 0xA6, + 0x04, 0x03, 0x09, 0x0F, 0x10, 0x2A, 0x0B, 0x02, 0x21, 0x01, 0x84, 0x20, + 0x7D, 0x6D, 0x02, 0x4C, 0x25, 0x7C, 0x9C, 0x01, 0x01, 0x07, 0x05, 0x02, + 0x03, 0x8B, 0x05, 0x04, 0x01, 0x67, 0x04, 0x02, 0x01, 0x22, 0x01, 0x22, + 0x0C, 0x01, 0x23, 0x22, 0x02, 0x58, 0x04, 0x0B, 0x0D, 0x08, 0x01, 0xB5, + 0x0D, 0x16, 0x0D, 0x06, 0x03, 0x09, 0x02, 0x1B, 0x09, 0x03, 0x06, 0x01, + 0xE6, 0x05, 0x0E, 0x02, 0x04, 0x03, 0x11, 0x01, 0x50, 0x08, 0x07, 0x01, + 0x04, 0x04, 0x0B, 0x06, 0x07, 0x05, 0x04, 0x02, 0x02, 0x8B, 0x12, 0x4F, + 0xC1, 0x02, 0x4C, 0x05, 0xFB, 0xE5, 0x07, 0x05, 0x01, 0x1F, 0x2F, 0x07, + 0x59, 0x07, 0x5F, 0x54, 0x04, 0x58, 0xFD, 0x6E, 0x04, 0xFE, 0x88, 0x0F, + 0x0C, 0x05, 0x15, 0x08, 0x01, 0xA3, 0x05, 0x0B, 0x06, 0x05, 0x04, 0x03, + 0x06, 0x05, 0xFA, 0xA1, 0x05, 0x61, 0x05, 0x04, 0x05, 0x04, 0x63, 0x03, + 0x04, 0x73, 0x7D, 0x02, 0x04, 0x05, 0x04, 0x44, 0x0A, 0x32, 0x0C, 0x01, + 0x03, 0x01, 0x02, 0x01, 0x02, 0x02, 0x02, 0x01, 0x06, 0x0C, 0x05, 0x11, + 0x08, 0x05, 0x05, 0x01, 0x02, 0x02, 0x02, 0x05, 0x16, 0x0C, 0x05, 0x06, + 0x02, 0x05, 0x06, 0x06, 0x10, 0x76, 0x0A, 0x03, 0x02, 0x03, 0x02, 0x2D, + 0x01, 0x18, 0x01, 0x09, 0x03, 0x05, 0x01, 0x05, 0x01, 0x05, 0x18, 0x08, + 0x02, 0x0B, 0x28, 0x05, 0x02, 0x07, 0x14, 0x04, 0x03, 0x04, 0x03, 0x12, + 0x08, 0x1D, 0x05, 0x04, 0x11, 0x04, 0x05, 0x03, 0x09, 0x21, 0x02, 0x15, + 0x02, 0x07, 0x04, 0x01, 0x01, 0x02, 0x02, 0x08, 0x05, 0x70, 0x02, 0x09, + 0x07, 0x29, 0x1E, 0x1E, 0x1C, 0x66, 0x36, 0x07, 0x37, 0x06, 0x45, 0x75, + 0x4F, 0x22, 0x03, 0x03, 0x04, 0x01, 0x01, 0x02, 0x08, 0x37, 0x11, 0x03, + 0x02, 0x01, 0x01, 0x02, 0x01, 0x08, 0x04, 0x6F, 0x0A, 0x0B, 0x03, 0x0C, + 0x2B, 0x01, 0x21, 0x0C, 0x17, 0x18, 0x10, 0x08, 0x01, 0x05, 0x02, 0x48, + 0x02, 0x0C, 0x18, 0x03, 0x0B, 0x02, 0x44, 0x1C, 0x1B, 0x4E, 0x3F, 0x47, + 0x1A, 0x04, 0x05, 0x05, 0x04, 0x01, 0x5D, 0x05, 0x12, 0x04, 0x03, 0x07, + 0x01, 0x0C, 0x09, 0x01, 0x09, 0x02, 0x0F, 0x02, 0x8C, 0x05, 0x08, 0x06, + 0x30, 0x02, 0x0D, 0x17, 0x0C, 0x55, 0x01, 0x26, 0x05, 0x09, 0x02, 0x02, + 0x04, 0x03, 0x08, 0x0A, 0x0E, 0x01, 0x01, 0x05, 0x20, 0x33, 0x71, 0x07, + 0x05, 0x01, 0x01, 0x02, 0x03, 0x05, 0x04, 0x0A, 0x04, 0x94, 0x06, 0x01, + 0x05, 0x24, 0x06, 0x7C, 0xAB, 0x07, 0x11, 0x0D, 0x03, 0x4A, 0x05, 0x08, + 0x1F, 0x4D, 0x0D, 0x74, 0x02, 0x06, 0x0C, 0x07, 0x33, 0x08, 0x03, 0x01, + 0x05, 0x05, 0x0A, 0x07, 0x0D, 0x09, 0x08, 0x0A, 0x04, 0xED, 0x01, 0x01, + 0x08, 0x07, 0x03, 0x04, 0x07, 0xA1, 0x0E, 0x09, 0x05, 0x02, 0xFC, 0x04, + 0x0C, 0x02, 0x05, 0x03, 0x04, 0x02, 0x04, 0x0C, 0x04, 0x0A, 0x05, 0x0A, + 0x0A, 0x04, 0x0D, 0x06, 0x0B, 0x08, 0x09, 0x04, 0x09, 0x0A, 0x05, 0x0C, + 0x08, 0x08, 0x0B, 0x0B, 0x10, 0x08, 0x08, 0x0A, 0x06, 0x0B, 0x0F, 0x10, + 0x09, 0x0B, 0x0E, 0x07, 0x00, 0x02, 0x00, 0x53, 0xFF, 0xF2, 0x08, 0xFC, + 0x03, 0x8D, 0x00, 0x23, 0x01, 0x58, 0x00, 0x00, 0x01, 0x07, 0x06, 0x07, + 0x06, 0x15, 0x17, 0x0F, 0x01, 0x27, 0x07, 0x23, 0x0F, 0x02, 0x06, 0x15, + 0x06, 0x17, 0x16, 0x17, 0x16, 0x17, 0x33, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x27, 0x26, 0x27, 0x25, 0x17, 0x37, 0x33, 0x1F, + 0x01, 0x0F, 0x01, 0x23, 0x2F, 0x01, 0x0F, 0x01, 0x23, 0x27, 0x23, 0x27, + 0x23, 0x06, 0x07, 0x06, 0x2B, 0x01, 0x2F, 0x01, 0x05, 0x07, 0x23, 0x27, + 0x23, 0x07, 0x23, 0x07, 0x14, 0x07, 0x06, 0x07, 0x1F, 0x01, 0x16, 0x17, + 0x16, 0x07, 0x06, 0x07, 0x06, 0x1F, 0x01, 0x15, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x07, 0x06, 0x0F, 0x01, 0x2F, 0x01, 0x34, 0x37, 0x36, 0x3F, 0x01, + 0x36, 0x37, 0x36, 0x2F, 0x02, 0x26, 0x37, 0x36, 0x3F, 0x01, 0x27, 0x07, + 0x06, 0x07, 0x06, 0x0F, 0x01, 0x06, 0x07, 0x06, 0x0F, 0x03, 0x22, 0x27, + 0x26, 0x2F, 0x01, 0x36, 0x37, 0x36, 0x3F, 0x01, 0x36, 0x37, 0x36, 0x3F, + 0x01, 0x36, 0x37, 0x36, 0x35, 0x34, 0x27, 0x26, 0x27, 0x0F, 0x01, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x0F, 0x01, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, 0x0F, 0x02, 0x06, 0x27, 0x26, + 0x37, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x2F, 0x02, 0x07, + 0x06, 0x27, 0x26, 0x27, 0x26, 0x2F, 0x01, 0x26, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x0F, 0x01, 0x1F, 0x01, 0x14, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x2B, 0x01, 0x22, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x2F, 0x01, 0x2E, 0x01, 0x27, 0x26, 0x35, 0x26, 0x37, 0x36, 0x3F, 0x02, + 0x36, 0x37, 0x36, 0x33, 0x25, 0x35, 0x3F, 0x02, 0x17, 0x35, 0x23, 0x16, + 0x07, 0x06, 0x23, 0x2F, 0x01, 0x23, 0x07, 0x23, 0x26, 0x27, 0x26, 0x34, + 0x37, 0x36, 0x37, 0x33, 0x17, 0x3F, 0x01, 0x36, 0x37, 0x36, 0x33, 0x32, + 0x17, 0x16, 0x15, 0x37, 0x35, 0x37, 0x17, 0x15, 0x3F, 0x01, 0x33, 0x17, + 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x07, 0x15, 0x23, 0x35, 0x23, 0x17, + 0x33, 0x16, 0x17, 0x16, 0x1F, 0x01, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, + 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, + 0x33, 0x15, 0x33, 0x17, 0x15, 0x17, 0x21, 0x3F, 0x01, 0x33, 0x17, 0x33, + 0x37, 0x17, 0x37, 0x34, 0x3F, 0x01, 0x36, 0x3B, 0x01, 0x04, 0x8B, 0x07, + 0x04, 0x02, 0x02, 0x03, 0x05, 0x16, 0x0E, 0x06, 0x1B, 0x08, 0x06, 0x37, + 0x05, 0x02, 0x05, 0x02, 0x06, 0x05, 0x05, 0x4B, 0x13, 0x12, 0x0E, 0x0D, + 0x0A, 0x19, 0x1A, 0x30, 0x04, 0x05, 0x07, 0x07, 0x03, 0xB5, 0x0E, 0x0F, + 0x37, 0x05, 0x05, 0x05, 0x07, 0x31, 0x0A, 0x0A, 0x0E, 0x06, 0x1F, 0x05, + 0x31, 0x04, 0x18, 0x01, 0x02, 0x04, 0x03, 0x2D, 0x09, 0x03, 0xFE, 0xBE, + 0x11, 0x08, 0x06, 0x07, 0x05, 0x43, 0x09, 0x03, 0x05, 0x06, 0x08, 0x12, + 0x07, 0x06, 0x05, 0x02, 0x02, 0x02, 0x01, 0x02, 0x01, 0x02, 0x06, 0x05, + 0x0D, 0x02, 0x04, 0x03, 0x0B, 0x2A, 0x31, 0x1C, 0x01, 0x02, 0x03, 0x0F, + 0x05, 0x01, 0x01, 0x01, 0x08, 0x09, 0x02, 0x05, 0x07, 0x07, 0x14, 0x53, + 0x61, 0x0D, 0x18, 0x18, 0x18, 0x47, 0x0C, 0x0B, 0x0C, 0x0B, 0x40, 0x6E, + 0x4E, 0x04, 0x04, 0x05, 0x01, 0x02, 0x02, 0x02, 0x03, 0x05, 0x15, 0x06, + 0x08, 0x07, 0x02, 0x17, 0x08, 0x04, 0x04, 0x07, 0x08, 0x0D, 0x3E, 0x44, + 0x0F, 0x0A, 0x0A, 0x02, 0x05, 0x07, 0x05, 0x0E, 0x03, 0x03, 0x09, 0x07, + 0x10, 0x16, 0x14, 0x13, 0x14, 0x08, 0x01, 0x02, 0x08, 0x52, 0x52, 0x08, + 0x01, 0x03, 0x01, 0x19, 0x12, 0x08, 0x0B, 0x0C, 0x06, 0x0B, 0x07, 0x05, + 0x05, 0x21, 0x32, 0x02, 0x02, 0x02, 0x05, 0x02, 0x02, 0x02, 0x03, 0x01, + 0x0B, 0x17, 0x1B, 0x13, 0x1E, 0x12, 0x11, 0x03, 0x08, 0x0C, 0x0D, 0x02, + 0x03, 0x04, 0x04, 0x05, 0x08, 0x06, 0x82, 0x06, 0x06, 0x04, 0x08, 0x08, + 0x04, 0x04, 0x06, 0x23, 0x04, 0x0D, 0x02, 0x07, 0x01, 0x01, 0x01, 0x02, + 0x0E, 0x24, 0x15, 0x03, 0x09, 0x08, 0x02, 0xBB, 0x12, 0x1B, 0x1F, 0x2A, + 0x11, 0x02, 0x05, 0x05, 0x08, 0x0E, 0x02, 0x27, 0x05, 0x0E, 0x06, 0x01, + 0x03, 0x03, 0x02, 0x04, 0x0A, 0x07, 0x26, 0x02, 0x02, 0x04, 0x02, 0x08, + 0x06, 0x05, 0x03, 0x0B, 0x15, 0x17, 0x58, 0x6A, 0x22, 0x10, 0x0F, 0x0D, + 0x16, 0x16, 0x0C, 0x37, 0x09, 0x0E, 0x07, 0x05, 0x03, 0x02, 0x05, 0x24, + 0x11, 0x26, 0x10, 0x26, 0x10, 0x27, 0x0F, 0x27, 0x10, 0x1E, 0x4E, 0x14, + 0x01, 0x59, 0x06, 0x09, 0x29, 0x0A, 0x14, 0x0A, 0x2B, 0x01, 0x02, 0x02, + 0x01, 0x04, 0x1C, 0x01, 0xF9, 0x05, 0x04, 0x06, 0x08, 0x04, 0x17, 0x06, + 0x01, 0x01, 0x0E, 0x02, 0x07, 0x64, 0x0C, 0x07, 0x09, 0x08, 0x04, 0x06, + 0x05, 0x01, 0x01, 0x07, 0x04, 0x09, 0x0A, 0x27, 0x27, 0x4F, 0x05, 0x0B, + 0x0F, 0x0C, 0xB2, 0x01, 0x07, 0x0A, 0x1A, 0x19, 0x0A, 0x03, 0x01, 0x02, + 0x02, 0x03, 0x04, 0x03, 0x02, 0x02, 0x03, 0x02, 0x08, 0x12, 0x06, 0x06, + 0x44, 0x05, 0x05, 0x05, 0x01, 0x08, 0x02, 0x01, 0x04, 0x04, 0x05, 0x0A, + 0x16, 0x0A, 0x0D, 0x33, 0x3A, 0x14, 0x0F, 0x12, 0x14, 0x04, 0x04, 0x03, + 0x05, 0x07, 0x09, 0x07, 0x21, 0x0F, 0x1D, 0x0D, 0x37, 0x0E, 0x09, 0x0A, + 0x06, 0x1C, 0x13, 0x05, 0x05, 0x07, 0x04, 0x0A, 0x04, 0x04, 0x08, 0x1A, + 0x19, 0x24, 0x6B, 0x10, 0x0D, 0x0C, 0x05, 0x0B, 0x06, 0x01, 0x02, 0x02, + 0x03, 0x17, 0x1D, 0x0C, 0x10, 0x0C, 0x27, 0x0C, 0x0C, 0x0A, 0x01, 0x14, + 0x0B, 0x0C, 0x0B, 0x0F, 0x10, 0x0A, 0x09, 0x03, 0x02, 0x05, 0x01, 0x02, + 0x03, 0x05, 0x07, 0x04, 0x04, 0x06, 0x28, 0x1D, 0x29, 0x27, 0x34, 0x4E, + 0x34, 0x34, 0x18, 0x0B, 0x06, 0x09, 0x04, 0x1D, 0x1C, 0x02, 0x0A, 0x0C, + 0x14, 0x36, 0x32, 0x1B, 0x1F, 0x33, 0x1A, 0x3A, 0x28, 0x28, 0x3D, 0x02, + 0x28, 0x02, 0x02, 0x01, 0x05, 0x02, 0x02, 0x03, 0x02, 0x01, 0x04, 0x0C, + 0x11, 0x0D, 0x14, 0x12, 0x11, 0x0B, 0x1B, 0x0D, 0x13, 0x06, 0x06, 0x06, + 0x04, 0x05, 0x01, 0x02, 0x03, 0x01, 0x06, 0x08, 0x08, 0x05, 0x0E, 0x90, + 0x16, 0x40, 0x0B, 0x22, 0x10, 0x0D, 0x0A, 0x07, 0x0A, 0x15, 0x1D, 0x0C, + 0x01, 0x04, 0x0F, 0x08, 0x0D, 0x12, 0x05, 0x01, 0x39, 0x06, 0x03, 0x03, + 0x05, 0x07, 0x06, 0x0A, 0x0A, 0x0C, 0x22, 0x09, 0x0A, 0x01, 0x05, 0x02, + 0x07, 0x05, 0x01, 0x01, 0x03, 0x05, 0x05, 0x01, 0x13, 0x03, 0x02, 0x0E, + 0x0D, 0x0C, 0x0C, 0x06, 0x04, 0x6D, 0x01, 0x05, 0x07, 0x0D, 0x02, 0x01, + 0x01, 0x04, 0x15, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, + 0x04, 0x27, 0x1A, 0x0B, 0x04, 0x05, 0x09, 0x06, 0x02, 0x04, 0x01, 0x01, + 0x01, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x54, 0x00, 0x0D, 0x0A, 0x0F, + 0x03, 0x75, 0x02, 0x6D, 0x02, 0x88, 0x02, 0x99, 0x00, 0x00, 0x01, 0x36, + 0x26, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x07, 0x06, 0x17, 0x1E, 0x01, + 0x33, 0x16, 0x36, 0x27, 0x34, 0x16, 0x17, 0x16, 0x37, 0x32, 0x35, 0x26, + 0x37, 0x33, 0x32, 0x37, 0x36, 0x15, 0x16, 0x07, 0x06, 0x17, 0x16, 0x37, + 0x36, 0x3B, 0x02, 0x32, 0x17, 0x16, 0x37, 0x34, 0x27, 0x26, 0x37, 0x36, + 0x17, 0x16, 0x33, 0x16, 0x3B, 0x01, 0x32, 0x3F, 0x01, 0x34, 0x33, 0x16, + 0x15, 0x16, 0x15, 0x14, 0x37, 0x36, 0x16, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x14, 0x07, 0x06, 0x33, 0x32, 0x37, 0x36, 0x15, 0x14, 0x37, + 0x36, 0x3B, 0x01, 0x16, 0x37, 0x36, 0x32, 0x37, 0x32, 0x17, 0x16, 0x07, + 0x16, 0x17, 0x3B, 0x05, 0x32, 0x36, 0x17, 0x32, 0x17, 0x16, 0x35, 0x34, + 0x36, 0x17, 0x16, 0x3D, 0x02, 0x34, 0x2E, 0x01, 0x35, 0x26, 0x37, 0x36, + 0x33, 0x32, 0x15, 0x16, 0x17, 0x32, 0x37, 0x36, 0x17, 0x16, 0x06, 0x15, + 0x14, 0x33, 0x32, 0x17, 0x16, 0x17, 0x14, 0x07, 0x14, 0x07, 0x06, 0x17, + 0x16, 0x37, 0x36, 0x17, 0x16, 0x15, 0x06, 0x15, 0x16, 0x37, 0x36, 0x1F, + 0x01, 0x16, 0x2B, 0x02, 0x0E, 0x01, 0x15, 0x32, 0x37, 0x36, 0x17, 0x16, + 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x15, 0x14, 0x33, 0x16, 0x3B, 0x02, + 0x32, 0x37, 0x36, 0x35, 0x36, 0x35, 0x34, 0x33, 0x16, 0x3B, 0x05, 0x32, + 0x17, 0x16, 0x07, 0x06, 0x1D, 0x01, 0x1E, 0x01, 0x15, 0x16, 0x23, 0x06, + 0x27, 0x23, 0x22, 0x27, 0x22, 0x07, 0x06, 0x26, 0x37, 0x36, 0x2B, 0x04, + 0x22, 0x27, 0x26, 0x07, 0x06, 0x15, 0x14, 0x07, 0x0E, 0x02, 0x23, 0x22, + 0x07, 0x06, 0x17, 0x16, 0x07, 0x22, 0x26, 0x23, 0x26, 0x27, 0x26, 0x35, + 0x34, 0x37, 0x36, 0x27, 0x34, 0x27, 0x22, 0x07, 0x22, 0x35, 0x34, 0x27, + 0x26, 0x07, 0x06, 0x23, 0x26, 0x07, 0x06, 0x07, 0x06, 0x16, 0x06, 0x07, + 0x0E, 0x01, 0x17, 0x14, 0x23, 0x22, 0x27, 0x23, 0x22, 0x27, 0x2B, 0x04, + 0x22, 0x27, 0x26, 0x07, 0x06, 0x27, 0x2E, 0x01, 0x35, 0x26, 0x2B, 0x02, + 0x22, 0x27, 0x2E, 0x01, 0x23, 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x17, 0x15, 0x06, 0x17, 0x1E, 0x01, 0x37, 0x36, 0x17, 0x16, 0x07, 0x06, + 0x23, 0x22, 0x07, 0x06, 0x15, 0x17, 0x1E, 0x01, 0x15, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x1E, 0x01, 0x15, 0x16, 0x07, 0x06, 0x07, 0x06, 0x0F, 0x01, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x23, 0x22, 0x27, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x2F, 0x01, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x35, 0x26, 0x27, 0x26, 0x22, 0x07, 0x2B, 0x02, 0x22, 0x07, 0x06, + 0x07, 0x06, 0x15, 0x14, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x27, 0x2E, 0x02, 0x27, 0x26, 0x27, 0x26, 0x27, + 0x26, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x27, 0x26, 0x27, 0x26, 0x23, + 0x22, 0x27, 0x23, 0x26, 0x23, 0x22, 0x3D, 0x02, 0x34, 0x27, 0x26, 0x07, + 0x06, 0x17, 0x15, 0x14, 0x16, 0x17, 0x14, 0x07, 0x23, 0x22, 0x27, 0x22, + 0x27, 0x22, 0x07, 0x06, 0x15, 0x06, 0x14, 0x2B, 0x01, 0x22, 0x0F, 0x01, + 0x14, 0x07, 0x14, 0x07, 0x06, 0x07, 0x23, 0x06, 0x23, 0x22, 0x35, 0x26, + 0x35, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x27, 0x26, 0x37, 0x36, 0x35, 0x22, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x23, 0x06, 0x27, 0x26, 0x37, 0x36, 0x27, + 0x2E, 0x01, 0x35, 0x26, 0x35, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, + 0x01, 0x35, 0x26, 0x37, 0x34, 0x36, 0x37, 0x34, 0x27, 0x26, 0x37, 0x36, + 0x17, 0x16, 0x17, 0x32, 0x07, 0x06, 0x17, 0x16, 0x37, 0x36, 0x3B, 0x04, + 0x32, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x3B, 0x01, 0x16, 0x33, 0x16, 0x3B, 0x02, 0x32, 0x35, 0x34, 0x27, + 0x34, 0x37, 0x35, 0x2E, 0x01, 0x07, 0x06, 0x17, 0x06, 0x07, 0x22, 0x27, + 0x26, 0x37, 0x34, 0x23, 0x06, 0x23, 0x06, 0x07, 0x16, 0x07, 0x06, 0x35, + 0x34, 0x37, 0x34, 0x27, 0x26, 0x13, 0x26, 0x07, 0x06, 0x23, 0x22, 0x17, + 0x16, 0x17, 0x14, 0x37, 0x36, 0x3B, 0x02, 0x31, 0x37, 0x23, 0x26, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x27, 0x26, 0x07, 0x26, 0x07, 0x14, 0x0E, + 0x01, 0x15, 0x14, 0x16, 0x33, 0x34, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x03, 0x36, 0x0A, 0x04, 0x04, 0x01, 0x0C, 0x0B, 0x04, 0x09, 0x07, 0x08, + 0x0F, 0x02, 0x0A, 0x03, 0x04, 0x05, 0x01, 0x10, 0x02, 0x05, 0x03, 0x03, + 0x01, 0x05, 0x0E, 0x07, 0x07, 0x0B, 0x02, 0x02, 0x01, 0x03, 0x08, 0x0F, + 0x09, 0x0F, 0x20, 0x1F, 0x05, 0x05, 0x06, 0x02, 0x01, 0x02, 0x02, 0x04, + 0x0A, 0x0C, 0x01, 0x07, 0x0E, 0x14, 0x0E, 0x02, 0x02, 0x09, 0x08, 0x01, + 0x09, 0x03, 0x03, 0x01, 0x01, 0x02, 0x03, 0x06, 0x07, 0x05, 0x10, 0x0E, + 0x0A, 0x08, 0x0B, 0x10, 0x0E, 0x09, 0x0E, 0x31, 0x10, 0x20, 0x02, 0x0A, + 0x03, 0x0A, 0x05, 0x0B, 0x04, 0x01, 0x09, 0x78, 0x77, 0x62, 0x63, 0x62, + 0x62, 0x1C, 0x1C, 0x1A, 0x04, 0x09, 0x09, 0x03, 0x02, 0x04, 0x01, 0x01, + 0x01, 0x04, 0x01, 0x0F, 0x0E, 0x01, 0x02, 0x01, 0x01, 0x04, 0x02, 0x02, + 0x02, 0x03, 0x02, 0x03, 0x03, 0x02, 0x01, 0x02, 0x02, 0x04, 0x02, 0x06, + 0x05, 0x05, 0x05, 0x01, 0x01, 0x1B, 0x1A, 0x05, 0x02, 0x01, 0x03, 0x0B, + 0x0C, 0x01, 0x02, 0x06, 0x07, 0x0A, 0x02, 0x02, 0x02, 0x01, 0x06, 0x02, + 0x1A, 0x17, 0x22, 0x17, 0x36, 0x50, 0x2D, 0x03, 0x02, 0x01, 0x01, 0x08, + 0x05, 0x05, 0x10, 0x10, 0x1D, 0x1E, 0x08, 0x05, 0x03, 0x02, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x02, 0x0F, 0x07, 0x16, 0x25, 0x13, 0x13, 0x26, 0x07, + 0x05, 0x01, 0x01, 0x06, 0x22, 0x23, 0x3C, 0x3B, 0x07, 0x03, 0x06, 0x05, + 0x03, 0x01, 0x01, 0x02, 0x03, 0x01, 0x04, 0x05, 0x04, 0x05, 0x04, 0x09, + 0x08, 0x0A, 0x08, 0x0B, 0x01, 0x01, 0x02, 0x02, 0x01, 0x02, 0x03, 0x02, + 0x05, 0x02, 0x09, 0x01, 0x01, 0x05, 0x07, 0x05, 0x06, 0x01, 0x02, 0x02, + 0x06, 0x07, 0x04, 0x03, 0x01, 0x0B, 0x11, 0x09, 0x1A, 0x51, 0x29, 0x7B, + 0x3A, 0x3A, 0x1D, 0x1D, 0x01, 0x1E, 0x16, 0x05, 0x03, 0x07, 0x09, 0x04, + 0x01, 0x02, 0x0E, 0x0E, 0x25, 0x12, 0x09, 0x25, 0x09, 0x18, 0x14, 0x15, + 0x13, 0x08, 0x05, 0x04, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x02, 0x03, + 0x05, 0x03, 0x05, 0x04, 0x09, 0x01, 0x02, 0x03, 0x01, 0x03, 0x02, 0x02, + 0x04, 0x01, 0x02, 0x02, 0x02, 0x02, 0x04, 0x0A, 0x05, 0x0A, 0x04, 0x03, + 0x03, 0x05, 0x02, 0x05, 0x03, 0x04, 0x03, 0x0C, 0x05, 0x07, 0x07, 0x05, + 0x18, 0x05, 0x14, 0x05, 0x06, 0x1F, 0x09, 0x18, 0x18, 0x0E, 0x03, 0x04, + 0x05, 0x09, 0x06, 0x04, 0x06, 0x09, 0x06, 0x03, 0x01, 0x06, 0x01, 0x06, + 0x08, 0x01, 0x11, 0x14, 0x50, 0x14, 0x12, 0x12, 0x0E, 0x06, 0x05, 0x01, + 0x08, 0x06, 0x06, 0x07, 0x01, 0x06, 0x04, 0x08, 0x04, 0x0D, 0x04, 0x06, + 0x03, 0x03, 0x1C, 0x08, 0x11, 0x0A, 0x02, 0x0F, 0x20, 0x15, 0x19, 0x21, + 0x2E, 0x2B, 0x0F, 0x0B, 0x0B, 0x09, 0x06, 0x06, 0x18, 0x16, 0x12, 0x01, + 0x01, 0x01, 0x02, 0x01, 0x03, 0x03, 0x03, 0x08, 0x0A, 0x01, 0x01, 0x01, + 0x16, 0x16, 0x10, 0x08, 0x07, 0x03, 0x08, 0x03, 0x02, 0x01, 0x17, 0x1C, + 0x03, 0x01, 0x02, 0x01, 0x01, 0x01, 0x09, 0x0B, 0x04, 0x07, 0x09, 0x01, + 0x0B, 0x0C, 0x0E, 0x0A, 0x09, 0x09, 0x0A, 0x08, 0x04, 0x0B, 0x0B, 0x07, + 0x06, 0x01, 0x01, 0x0F, 0x10, 0x10, 0x08, 0x18, 0x0B, 0x12, 0x09, 0x01, + 0x04, 0x01, 0x0B, 0x11, 0x0A, 0x08, 0x06, 0x01, 0x02, 0x02, 0x01, 0x03, + 0x03, 0x02, 0x06, 0x06, 0x03, 0x02, 0x02, 0x01, 0x03, 0x01, 0x01, 0x03, + 0x01, 0x01, 0x01, 0x05, 0x08, 0x0A, 0x0C, 0x05, 0x07, 0x01, 0x01, 0x01, + 0x02, 0x0D, 0x09, 0x09, 0x3F, 0x3E, 0x7C, 0x7D, 0x23, 0x13, 0x1C, 0x19, + 0x14, 0x0D, 0x0C, 0x11, 0x06, 0x02, 0x01, 0x02, 0x02, 0x07, 0x0C, 0x0F, + 0x1E, 0x0F, 0x1E, 0x28, 0x27, 0x0B, 0x01, 0x01, 0x02, 0x06, 0x02, 0x03, + 0x03, 0x05, 0x05, 0x04, 0x04, 0x05, 0x02, 0x10, 0x0B, 0x08, 0x0B, 0x01, + 0x05, 0x0B, 0x12, 0x01, 0x01, 0x01, 0xC3, 0x0A, 0x15, 0x14, 0x0E, 0x19, + 0x02, 0x02, 0x01, 0x0F, 0x0A, 0x0B, 0x0E, 0x0D, 0x0A, 0x01, 0x04, 0x04, + 0x05, 0x10, 0x0C, 0x02, 0x01, 0x07, 0x06, 0x90, 0x08, 0x02, 0x01, 0x01, + 0x16, 0x10, 0x05, 0x06, 0x02, 0x02, 0x04, 0x06, 0x03, 0x48, 0x08, 0x10, + 0x09, 0x06, 0x03, 0x03, 0x04, 0x08, 0x13, 0x15, 0x02, 0x01, 0x01, 0x01, + 0x04, 0x05, 0x05, 0x04, 0x03, 0x06, 0x01, 0x09, 0x09, 0x02, 0x01, 0x02, + 0x04, 0x02, 0x08, 0x07, 0x02, 0x03, 0x02, 0x01, 0x01, 0x01, 0x03, 0x03, + 0x03, 0x03, 0x02, 0x04, 0x01, 0x02, 0x01, 0x02, 0x0E, 0x03, 0x02, 0x03, + 0x04, 0x08, 0x06, 0x01, 0x01, 0x05, 0x07, 0x0D, 0x03, 0x0A, 0x0B, 0x0B, + 0x0A, 0x01, 0x21, 0x1D, 0x01, 0x01, 0x03, 0x0D, 0x02, 0x01, 0x01, 0x02, + 0x01, 0x01, 0x01, 0x02, 0x05, 0x05, 0x01, 0x02, 0x02, 0x04, 0x05, 0x05, + 0x03, 0x03, 0x01, 0x01, 0x04, 0x1A, 0x1A, 0x02, 0x0A, 0x13, 0x0A, 0x22, + 0x03, 0x01, 0x05, 0x06, 0x01, 0x01, 0x01, 0x04, 0x07, 0x06, 0x07, 0x06, + 0x03, 0x04, 0x0A, 0x0A, 0x05, 0x06, 0x12, 0x0F, 0x09, 0x05, 0x02, 0x01, + 0x03, 0x02, 0x07, 0x05, 0x07, 0x13, 0x0A, 0x09, 0x0E, 0x09, 0x09, 0x01, + 0x06, 0x03, 0x01, 0x01, 0x04, 0x05, 0x05, 0x04, 0x02, 0x01, 0x02, 0x02, + 0x04, 0x01, 0x01, 0x02, 0x01, 0x01, 0x02, 0x01, 0x03, 0x01, 0x01, 0x02, + 0x14, 0x0E, 0x0B, 0x02, 0x02, 0x07, 0x04, 0x0D, 0x02, 0x01, 0x01, 0x02, + 0x01, 0x03, 0x04, 0x06, 0x01, 0x02, 0x02, 0x01, 0x04, 0x05, 0x01, 0x03, + 0x03, 0x01, 0x05, 0x06, 0x1B, 0x1A, 0x02, 0x02, 0x01, 0x05, 0x03, 0x0C, + 0x06, 0x0C, 0x0A, 0x07, 0x03, 0x02, 0x01, 0x03, 0x01, 0x04, 0x04, 0x12, + 0x1C, 0x01, 0x03, 0x04, 0x08, 0x0D, 0x04, 0x04, 0x02, 0x01, 0x02, 0x02, + 0x03, 0x01, 0x01, 0x02, 0x01, 0x06, 0x04, 0x01, 0x02, 0x04, 0x04, 0x04, + 0x01, 0x01, 0x01, 0x02, 0x05, 0x05, 0x0D, 0x05, 0x07, 0x08, 0x0A, 0x09, + 0x07, 0x03, 0x02, 0x01, 0x01, 0x02, 0x01, 0x02, 0x07, 0x08, 0x03, 0x06, + 0x07, 0x2A, 0x07, 0x1C, 0x07, 0x0A, 0x03, 0x08, 0x05, 0x05, 0x0A, 0x0C, + 0x04, 0x0E, 0x1C, 0x0F, 0x1C, 0x0C, 0x07, 0x09, 0x0B, 0x02, 0x08, 0x01, + 0x07, 0x08, 0x08, 0x01, 0x01, 0x02, 0x02, 0x02, 0x08, 0x02, 0x06, 0x02, + 0x02, 0x0B, 0x03, 0x09, 0x1D, 0x1B, 0x0B, 0x14, 0x17, 0x10, 0x1E, 0x21, + 0x11, 0x11, 0x08, 0x1E, 0x07, 0x1E, 0x1E, 0x06, 0x03, 0x02, 0x01, 0x01, + 0x08, 0x02, 0x0E, 0x0A, 0x07, 0x05, 0x08, 0x0A, 0x04, 0x0C, 0x05, 0x0C, + 0x05, 0x15, 0x11, 0x12, 0x15, 0x10, 0x0D, 0x04, 0x07, 0x05, 0x01, 0x07, + 0x0C, 0x06, 0x0E, 0x11, 0x37, 0x35, 0x0F, 0x0D, 0x12, 0x12, 0x12, 0x11, + 0x08, 0x07, 0x01, 0x05, 0x04, 0x12, 0x12, 0x09, 0x02, 0x01, 0x03, 0x04, + 0x06, 0x11, 0x05, 0x13, 0x04, 0x0B, 0x01, 0x01, 0x01, 0x01, 0x02, 0x0A, + 0x08, 0x0E, 0x06, 0x08, 0x02, 0x03, 0x04, 0x01, 0x02, 0x02, 0x01, 0x04, + 0x02, 0x09, 0x0B, 0x04, 0x06, 0x0A, 0x09, 0x06, 0x06, 0x0B, 0x05, 0x01, + 0x01, 0x03, 0x03, 0x13, 0x0C, 0x0C, 0x10, 0x11, 0x0A, 0x18, 0x0D, 0x13, + 0x19, 0x02, 0x0C, 0x05, 0x01, 0x01, 0x03, 0x03, 0x09, 0x09, 0x05, 0x03, + 0x0A, 0x02, 0x06, 0x09, 0x1A, 0x2C, 0x22, 0x25, 0x10, 0x1C, 0x08, 0x1C, + 0x08, 0x19, 0x19, 0x08, 0x20, 0x08, 0x08, 0x07, 0x0A, 0x02, 0x03, 0x01, + 0x02, 0x01, 0x06, 0x07, 0x04, 0x09, 0x01, 0x01, 0x01, 0x01, 0x04, 0x05, + 0x11, 0x12, 0x08, 0x03, 0x02, 0x01, 0x08, 0x06, 0x01, 0x01, 0x03, 0x05, + 0x07, 0x05, 0x03, 0x07, 0x04, 0x02, 0x03, 0x07, 0x03, 0x02, 0x01, 0x03, + 0x01, 0x08, 0x03, 0x01, 0x02, 0x02, 0x04, 0x05, 0x07, 0x10, 0x13, 0x07, + 0x1D, 0x0F, 0x16, 0xFE, 0x85, 0x0A, 0x04, 0x04, 0x17, 0x1A, 0x0F, 0x09, + 0x01, 0x01, 0x01, 0x01, 0x05, 0x05, 0x09, 0x06, 0x0C, 0x09, 0x09, 0x06, + 0x0B, 0x0F, 0x10, 0x04, 0x09, 0x04, 0x01, 0x11, 0x10, 0x03, 0x08, 0x07, + 0x04, 0x08, 0x07, 0x0A, 0x00, 0x02, 0x00, 0x56, 0x00, 0x40, 0x0A, 0xA0, + 0x03, 0x40, 0x00, 0x8C, 0x00, 0xAA, 0x00, 0x00, 0x01, 0x2F, 0x01, 0x35, + 0x23, 0x15, 0x07, 0x06, 0x07, 0x06, 0x0F, 0x02, 0x23, 0x2F, 0x02, 0x23, + 0x2F, 0x02, 0x25, 0x07, 0x0E, 0x01, 0x0F, 0x01, 0x21, 0x27, 0x0F, 0x03, + 0x2F, 0x01, 0x0F, 0x02, 0x27, 0x07, 0x06, 0x07, 0x06, 0x07, 0x13, 0x25, + 0x3F, 0x04, 0x36, 0x17, 0x16, 0x1F, 0x01, 0x0F, 0x03, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x16, 0x3F, 0x02, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x3F, 0x02, 0x16, 0x17, 0x16, 0x17, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x17, 0x3F, 0x01, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x3F, 0x02, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x35, 0x33, 0x17, 0x16, 0x17, 0x16, 0x33, 0x17, + 0x3F, 0x02, 0x21, 0x37, 0x33, 0x17, 0x37, 0x21, 0x17, 0x37, 0x33, 0x17, + 0x3F, 0x01, 0x05, 0x07, 0x06, 0x07, 0x06, 0x2B, 0x01, 0x22, 0x26, 0x27, + 0x26, 0x27, 0x26, 0x35, 0x34, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x33, + 0x37, 0x32, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x0A, 0x9B, 0x08, 0x2B, + 0x2E, 0x03, 0x03, 0x01, 0x02, 0x04, 0x22, 0x0D, 0xB0, 0x16, 0x1B, 0x1E, + 0xC8, 0x15, 0x16, 0x1B, 0xFE, 0x20, 0x1B, 0x03, 0x08, 0x01, 0x07, 0xFD, + 0x91, 0x09, 0x66, 0x3F, 0x30, 0x1C, 0x2F, 0x20, 0xA2, 0x6E, 0x31, 0x3A, + 0x31, 0x08, 0x0E, 0x0C, 0x07, 0x16, 0x01, 0x0A, 0xC8, 0x4D, 0x43, 0x32, + 0x17, 0x05, 0x0A, 0x05, 0x09, 0x13, 0x14, 0x22, 0x20, 0x11, 0x03, 0x07, + 0x06, 0x0B, 0x0A, 0x0D, 0x0C, 0x0C, 0x2D, 0x14, 0x07, 0x04, 0x06, 0x0C, + 0x07, 0x0E, 0x0A, 0x0D, 0x29, 0x15, 0x0D, 0x11, 0x0D, 0x12, 0x35, 0x0C, + 0x10, 0x0B, 0x0F, 0x21, 0x09, 0x0C, 0x15, 0x16, 0x15, 0x1E, 0x1D, 0x1A, + 0x1B, 0x1A, 0x23, 0x1C, 0x22, 0x1F, 0x33, 0x25, 0x14, 0x2D, 0x24, 0x21, + 0x1C, 0x18, 0x11, 0x13, 0x0A, 0x0D, 0x06, 0x07, 0x9A, 0x0F, 0x02, 0x02, + 0x02, 0x03, 0x16, 0x15, 0x1D, 0x28, 0x01, 0x53, 0x03, 0xD8, 0x12, 0x0F, + 0x01, 0x2E, 0x24, 0x13, 0x0D, 0x0D, 0x13, 0x05, 0xF9, 0xF1, 0x0B, 0x04, + 0x07, 0x07, 0x08, 0x3D, 0x09, 0x10, 0x06, 0x06, 0x03, 0x03, 0x03, 0x02, + 0x07, 0x07, 0x07, 0x0A, 0x07, 0x3D, 0x08, 0x07, 0x06, 0x05, 0x06, 0x03, + 0x02, 0x02, 0xB0, 0x12, 0x05, 0x79, 0x08, 0x11, 0x03, 0x04, 0x04, 0x0A, + 0x4B, 0x05, 0x0E, 0x1C, 0x25, 0x07, 0x06, 0x09, 0x05, 0x02, 0x01, 0x04, + 0x01, 0x06, 0x09, 0x57, 0x13, 0x0D, 0x06, 0x0A, 0x0A, 0x0A, 0x09, 0x01, + 0x01, 0x0C, 0x03, 0x06, 0x05, 0x07, 0xFE, 0xC3, 0x58, 0x4A, 0x1A, 0x19, + 0x11, 0x08, 0x01, 0x02, 0x02, 0x07, 0x0E, 0x1B, 0x3D, 0x3E, 0x24, 0x15, + 0x0C, 0x0D, 0x08, 0x06, 0x03, 0x03, 0x01, 0x0A, 0x09, 0x19, 0x09, 0x0D, + 0x13, 0x0C, 0x16, 0x0F, 0x0E, 0x2C, 0x11, 0x0B, 0x08, 0x06, 0x02, 0x03, + 0x03, 0x05, 0x04, 0x08, 0x05, 0x07, 0x02, 0x3D, 0x2B, 0x2F, 0x2A, 0x2B, + 0x21, 0x22, 0x1C, 0x23, 0x18, 0x1F, 0x14, 0x52, 0x3A, 0x1A, 0x1E, 0x23, + 0x1D, 0x24, 0x1F, 0x1E, 0x1E, 0x1A, 0x1C, 0x20, 0x1B, 0x1E, 0x0A, 0x02, + 0x01, 0x02, 0x04, 0x05, 0x0F, 0x16, 0x13, 0x0E, 0x13, 0x0E, 0x21, 0x03, + 0x07, 0x0B, 0x88, 0x19, 0x06, 0x03, 0x03, 0x06, 0x06, 0x04, 0x08, 0x06, + 0x07, 0x09, 0x08, 0x06, 0x08, 0x05, 0x03, 0x02, 0x01, 0x03, 0x03, 0x05, + 0x06, 0x08, 0x0A, 0x00, 0x00, 0x02, 0x00, 0x4D, 0x00, 0x55, 0x0A, 0xE3, + 0x03, 0x29, 0x02, 0x22, 0x02, 0x37, 0x00, 0x00, 0x01, 0x06, 0x27, 0x26, + 0x27, 0x22, 0x27, 0x26, 0x2B, 0x04, 0x22, 0x0F, 0x01, 0x0E, 0x01, 0x07, + 0x06, 0x07, 0x06, 0x27, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x27, 0x26, + 0x14, 0x17, 0x16, 0x07, 0x06, 0x27, 0x26, 0x2B, 0x02, 0x22, 0x27, 0x26, + 0x15, 0x14, 0x23, 0x22, 0x07, 0x22, 0x27, 0x22, 0x27, 0x23, 0x22, 0x27, + 0x26, 0x35, 0x26, 0x27, 0x36, 0x27, 0x06, 0x2B, 0x04, 0x22, 0x07, 0x22, + 0x06, 0x07, 0x06, 0x23, 0x22, 0x06, 0x23, 0x06, 0x07, 0x06, 0x27, 0x22, + 0x27, 0x26, 0x27, 0x26, 0x37, 0x34, 0x2B, 0x04, 0x16, 0x17, 0x1E, 0x01, + 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x34, 0x27, 0x26, 0x34, 0x2F, 0x01, 0x22, 0x07, 0x06, 0x07, 0x06, 0x27, + 0x34, 0x36, 0x37, 0x36, 0x37, 0x2B, 0x01, 0x06, 0x15, 0x14, 0x07, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, + 0x23, 0x06, 0x27, 0x22, 0x26, 0x22, 0x27, 0x2E, 0x03, 0x2F, 0x01, 0x26, + 0x23, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x27, 0x26, 0x2F, 0x01, 0x26, 0x2F, 0x01, 0x22, 0x26, 0x23, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x27, 0x26, 0x2B, + 0x04, 0x22, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x23, 0x2E, 0x01, 0x35, 0x34, 0x37, + 0x36, 0x37, 0x36, 0x27, 0x26, 0x37, 0x36, 0x35, 0x2E, 0x01, 0x3D, 0x01, + 0x26, 0x34, 0x26, 0x35, 0x34, 0x26, 0x35, 0x34, 0x27, 0x26, 0x27, 0x26, + 0x35, 0x26, 0x35, 0x34, 0x37, 0x3E, 0x01, 0x33, 0x36, 0x3B, 0x01, 0x32, + 0x37, 0x33, 0x36, 0x37, 0x36, 0x37, 0x36, 0x33, 0x16, 0x37, 0x32, 0x37, + 0x32, 0x36, 0x33, 0x32, 0x37, 0x33, 0x32, 0x37, 0x33, 0x32, 0x37, 0x36, + 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x33, 0x36, 0x33, 0x16, 0x37, 0x33, 0x32, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x07, 0x16, 0x37, 0x35, + 0x34, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x35, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x27, 0x26, 0x2B, 0x01, 0x22, 0x27, 0x22, 0x27, 0x26, 0x07, + 0x06, 0x2F, 0x01, 0x26, 0x27, 0x26, 0x27, 0x35, 0x34, 0x37, 0x34, 0x37, + 0x36, 0x37, 0x36, 0x17, 0x16, 0x33, 0x32, 0x17, 0x32, 0x16, 0x17, 0x16, + 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x37, 0x32, 0x36, 0x33, 0x36, 0x33, + 0x36, 0x32, 0x37, 0x3B, 0x01, 0x32, 0x37, 0x33, 0x32, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x17, 0x16, 0x17, 0x32, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x33, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x3B, + 0x01, 0x32, 0x17, 0x16, 0x17, 0x16, 0x15, 0x14, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x27, 0x26, 0x23, 0x22, 0x27, 0x22, 0x27, 0x26, 0x27, 0x26, + 0x07, 0x06, 0x27, 0x26, 0x07, 0x06, 0x0F, 0x02, 0x22, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x07, 0x3B, 0x03, 0x32, 0x37, 0x36, 0x37, 0x33, 0x32, 0x37, + 0x36, 0x37, 0x32, 0x36, 0x37, 0x36, 0x3B, 0x02, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x3B, 0x04, 0x26, 0x27, 0x26, 0x3F, 0x01, 0x36, 0x37, 0x36, 0x17, + 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x1D, 0x02, 0x14, 0x17, 0x16, + 0x14, 0x07, 0x32, 0x3F, 0x01, 0x3B, 0x01, 0x32, 0x17, 0x16, 0x33, 0x16, + 0x3B, 0x05, 0x32, 0x37, 0x32, 0x17, 0x16, 0x15, 0x14, 0x17, 0x16, 0x06, + 0x05, 0x06, 0x16, 0x33, 0x32, 0x37, 0x32, 0x37, 0x36, 0x37, 0x36, 0x26, + 0x07, 0x0E, 0x01, 0x23, 0x06, 0x23, 0x22, 0x07, 0x06, 0x0A, 0xD5, 0x2A, + 0x1E, 0x30, 0x19, 0x04, 0x05, 0x06, 0x03, 0x14, 0x14, 0x30, 0x31, 0x09, + 0x01, 0x01, 0x02, 0x04, 0x02, 0x08, 0x06, 0x09, 0x07, 0x14, 0x08, 0x03, + 0x0A, 0x02, 0x05, 0x07, 0x09, 0x01, 0x01, 0x0C, 0x0C, 0x12, 0x0F, 0x10, + 0x19, 0x19, 0x0A, 0x08, 0x0D, 0x01, 0x03, 0x05, 0x07, 0x03, 0x07, 0x03, + 0x08, 0x06, 0x03, 0x06, 0x01, 0x02, 0x03, 0x0B, 0x09, 0x09, 0x2A, 0x2B, + 0x66, 0x67, 0x13, 0x24, 0x09, 0x24, 0x0A, 0x05, 0x0B, 0x02, 0x0B, 0x03, + 0x10, 0x06, 0x0C, 0x0A, 0x04, 0x04, 0x03, 0x04, 0x02, 0x01, 0x01, 0x10, + 0x0F, 0x39, 0x3A, 0x04, 0x03, 0x01, 0x04, 0x01, 0x04, 0x05, 0x08, 0x0C, + 0x1C, 0x2D, 0x25, 0x26, 0x04, 0x15, 0x06, 0x17, 0x01, 0x02, 0x02, 0x01, + 0x02, 0x01, 0x04, 0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0A, 0x08, + 0x02, 0x04, 0x03, 0x04, 0x08, 0x03, 0x01, 0x01, 0x04, 0x0A, 0x0A, 0x03, + 0x01, 0x02, 0x05, 0x02, 0x04, 0x02, 0x04, 0x06, 0x08, 0x09, 0x10, 0x07, + 0x04, 0x10, 0x03, 0x09, 0x03, 0x08, 0x0A, 0x1C, 0x05, 0x03, 0x08, 0x06, + 0x0A, 0x03, 0x06, 0x04, 0x03, 0x04, 0x03, 0x03, 0x01, 0x0F, 0x0F, 0x0A, + 0x16, 0x04, 0x05, 0x05, 0x07, 0x07, 0x11, 0x14, 0x03, 0x21, 0x0B, 0x16, + 0x04, 0x01, 0x04, 0x01, 0x0B, 0x07, 0x0A, 0x05, 0x0B, 0x12, 0x11, 0x0D, + 0x0B, 0x04, 0x05, 0x19, 0x2D, 0x2D, 0x25, 0x25, 0x0F, 0x0F, 0x05, 0x18, + 0x0A, 0x2A, 0x0B, 0x0D, 0x31, 0x48, 0x48, 0x18, 0x60, 0x18, 0x1E, 0x23, + 0x1F, 0x24, 0x1C, 0x0C, 0x03, 0x04, 0x01, 0x01, 0x01, 0x01, 0x02, 0x07, + 0x01, 0x01, 0x01, 0x02, 0x02, 0x02, 0x03, 0x01, 0x02, 0x01, 0x09, 0x03, + 0x0C, 0x02, 0x14, 0x11, 0x24, 0x0C, 0x05, 0x11, 0x05, 0x05, 0x03, 0x04, + 0x0D, 0x17, 0x18, 0x0F, 0x2F, 0x17, 0x0B, 0x30, 0x0B, 0x1A, 0x0D, 0x26, + 0x0D, 0x07, 0x13, 0x08, 0x09, 0x0D, 0x02, 0x09, 0x0A, 0x07, 0x14, 0x0D, + 0x13, 0x0A, 0x14, 0x04, 0x1A, 0x08, 0x13, 0x17, 0x0B, 0x18, 0x11, 0x11, + 0x12, 0x08, 0x06, 0x07, 0x05, 0x06, 0x09, 0x10, 0x0E, 0x09, 0x14, 0x08, + 0x0A, 0x0A, 0x0C, 0x09, 0x01, 0x05, 0x05, 0x03, 0x09, 0x01, 0x05, 0x18, + 0x0C, 0x07, 0x18, 0x07, 0x11, 0x0D, 0x0B, 0x15, 0x27, 0x1B, 0x0D, 0x17, + 0x0B, 0x0C, 0x16, 0x11, 0x16, 0x27, 0x06, 0x01, 0x01, 0x02, 0x01, 0x04, + 0x02, 0x02, 0x01, 0x1B, 0x22, 0x01, 0x2F, 0x17, 0x0C, 0x2F, 0x0B, 0x30, + 0x1A, 0x1F, 0x2A, 0x10, 0x12, 0x0F, 0x13, 0x06, 0x1B, 0x07, 0x0D, 0x1A, + 0x06, 0x16, 0x06, 0x20, 0x12, 0x05, 0x0C, 0x08, 0x05, 0x01, 0x07, 0x02, + 0x02, 0x09, 0x0E, 0x10, 0x0F, 0x0F, 0x05, 0x02, 0x04, 0x03, 0x07, 0x08, + 0x04, 0x10, 0x11, 0x11, 0x10, 0x27, 0x27, 0x35, 0x17, 0x06, 0x19, 0x06, + 0x24, 0x16, 0x10, 0x18, 0x08, 0x09, 0x04, 0x03, 0x06, 0x06, 0x06, 0x04, + 0x1F, 0x15, 0x11, 0x1B, 0x0D, 0x0D, 0x1A, 0x1C, 0x0E, 0x18, 0x13, 0x09, + 0x0B, 0x0E, 0x07, 0x03, 0x03, 0x04, 0x05, 0x01, 0x06, 0x04, 0x1C, 0x08, + 0x15, 0x08, 0x99, 0x99, 0x99, 0x99, 0x18, 0x14, 0x0F, 0x1D, 0x0E, 0x04, + 0x0A, 0x08, 0x06, 0x01, 0x07, 0x03, 0x05, 0x09, 0x0E, 0x0F, 0x03, 0x08, + 0x08, 0x05, 0x04, 0x0D, 0x27, 0x26, 0x40, 0x40, 0x01, 0x07, 0x06, 0x08, + 0x0D, 0x06, 0x08, 0x03, 0x0D, 0x09, 0x02, 0x04, 0x06, 0x04, 0x02, 0x01, + 0x05, 0x04, 0x03, 0x05, 0x04, 0x06, 0x08, 0x07, 0x05, 0x01, 0x02, 0x03, + 0x08, 0x05, 0x0D, 0x46, 0x44, 0x44, 0x44, 0x08, 0x05, 0x07, 0x03, 0x03, + 0x01, 0x02, 0x04, 0xF9, 0x3B, 0x10, 0x3E, 0x09, 0x1A, 0x0E, 0x15, 0x07, + 0x04, 0x03, 0x02, 0x06, 0x07, 0x04, 0x0E, 0x01, 0x09, 0x0C, 0x15, 0x13, + 0x0D, 0x01, 0xDD, 0x05, 0x01, 0x02, 0x02, 0x03, 0x02, 0x01, 0x01, 0x01, + 0x02, 0x01, 0x05, 0x01, 0x03, 0x04, 0x0A, 0x0E, 0x05, 0x13, 0x04, 0x08, + 0x07, 0x06, 0x1C, 0x06, 0x09, 0x05, 0x04, 0x05, 0x04, 0x01, 0x01, 0x07, + 0x09, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x01, 0x07, 0x04, 0x01, 0x01, + 0x02, 0x03, 0x01, 0x01, 0x02, 0x03, 0x01, 0x04, 0x02, 0x04, 0x02, 0x04, + 0x02, 0x04, 0x04, 0x35, 0x17, 0x0C, 0x33, 0x0D, 0x20, 0x27, 0x3B, 0x03, + 0x07, 0x09, 0x07, 0x05, 0x01, 0x05, 0x01, 0x05, 0x0F, 0x0C, 0x18, 0x06, + 0x18, 0x06, 0x27, 0x11, 0x27, 0x11, 0x05, 0x13, 0x04, 0x05, 0x12, 0x04, + 0x02, 0x02, 0x08, 0x05, 0x07, 0x02, 0x01, 0x08, 0x01, 0x03, 0x06, 0x01, + 0x01, 0x03, 0x02, 0x05, 0x11, 0x04, 0x0E, 0x03, 0x0B, 0x0A, 0x0E, 0x01, + 0x04, 0x01, 0x01, 0x03, 0x02, 0x01, 0x02, 0x04, 0x02, 0x06, 0x02, 0x06, + 0x01, 0x04, 0x03, 0x01, 0x06, 0x08, 0x01, 0x1E, 0x23, 0x16, 0x2A, 0x07, + 0x05, 0x06, 0x03, 0x03, 0x0B, 0x0D, 0x02, 0x18, 0x07, 0x10, 0x04, 0x02, + 0x0E, 0x11, 0x16, 0x09, 0x14, 0x10, 0x10, 0x12, 0x12, 0x1A, 0x1B, 0x06, + 0x02, 0x08, 0x03, 0x0F, 0x04, 0x04, 0x13, 0x1C, 0x1A, 0x09, 0x22, 0x09, + 0x0A, 0x08, 0x07, 0x01, 0x1E, 0x17, 0x0B, 0x0B, 0x0E, 0x08, 0x07, 0x09, + 0x07, 0x0A, 0x11, 0x13, 0x06, 0x18, 0x06, 0x0E, 0x03, 0x08, 0x06, 0x08, + 0x01, 0x08, 0x01, 0x02, 0x02, 0x03, 0x02, 0x0C, 0x06, 0x05, 0x0C, 0x0B, + 0x01, 0x01, 0x03, 0x05, 0x01, 0x01, 0x0E, 0x0E, 0x04, 0x0B, 0x01, 0x01, + 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x03, 0x0A, 0x11, 0x10, 0x07, 0x04, + 0x09, 0x05, 0x0C, 0x02, 0x11, 0x05, 0x0D, 0x01, 0x02, 0x02, 0x07, 0x09, + 0x06, 0x06, 0x05, 0x08, 0x04, 0x03, 0x06, 0x02, 0x0B, 0x0C, 0x04, 0x01, + 0x03, 0x0B, 0x05, 0x05, 0x03, 0x05, 0x11, 0x04, 0x0D, 0x0A, 0x04, 0x01, + 0x01, 0x04, 0x01, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x03, 0x02, + 0x03, 0x02, 0x19, 0x19, 0x08, 0x13, 0x0C, 0x07, 0x08, 0x07, 0x06, 0x08, + 0x0C, 0x02, 0x02, 0x01, 0x02, 0x01, 0x02, 0x01, 0x01, 0x05, 0x01, 0x05, + 0x04, 0x02, 0x02, 0x01, 0x01, 0x01, 0x02, 0x01, 0x04, 0x06, 0x05, 0x03, + 0x07, 0x03, 0x04, 0x02, 0x08, 0x02, 0x05, 0x01, 0x02, 0x01, 0x03, 0x02, + 0x02, 0x02, 0x04, 0x04, 0x03, 0x01, 0x01, 0x01, 0x02, 0x0C, 0x0E, 0x16, + 0x19, 0x0C, 0x0A, 0x09, 0x0A, 0x08, 0x06, 0x01, 0x01, 0x01, 0x02, 0x04, + 0x03, 0x03, 0x04, 0x02, 0x03, 0x03, 0x04, 0x01, 0x07, 0x0A, 0x06, 0x02, + 0x02, 0x10, 0x04, 0x0A, 0x17, 0x04, 0x03, 0x02, 0x02, 0x01, 0x04, 0x05, + 0x02, 0x04, 0x01, 0x08, 0x0C, 0x02, 0x02, 0x07, 0x16, 0x13, 0x08, 0x0D, + 0x07, 0x02, 0x01, 0x02, 0x01, 0x05, 0x0B, 0x16, 0x16, 0x0C, 0x04, 0x09, + 0x0E, 0x06, 0x01, 0x03, 0x03, 0x0A, 0x05, 0x03, 0x02, 0x01, 0x02, 0x02, + 0x01, 0x05, 0x04, 0x09, 0x0C, 0x03, 0x09, 0x16, 0x8E, 0x10, 0x12, 0x01, + 0x16, 0x0E, 0x07, 0x05, 0x04, 0x01, 0x01, 0x03, 0x03, 0x03, 0x02, 0x00, + 0x00, 0x08, 0x00, 0x4A, 0x00, 0x5A, 0x0A, 0xD5, 0x03, 0x26, 0x00, 0x05, + 0x00, 0x0B, 0x02, 0x67, 0x02, 0x80, 0x02, 0x98, 0x02, 0xAF, 0x02, 0xB7, + 0x02, 0xBC, 0x00, 0x00, 0x01, 0x22, 0x27, 0x39, 0x01, 0x16, 0x37, 0x23, + 0x06, 0x23, 0x32, 0x37, 0x25, 0x06, 0x27, 0x26, 0x23, 0x22, 0x27, 0x26, + 0x07, 0x26, 0x27, 0x26, 0x07, 0x22, 0x07, 0x06, 0x07, 0x36, 0x26, 0x07, + 0x06, 0x23, 0x22, 0x07, 0x06, 0x27, 0x06, 0x27, 0x26, 0x2B, 0x01, 0x22, + 0x27, 0x06, 0x17, 0x16, 0x07, 0x35, 0x33, 0x22, 0x06, 0x22, 0x06, 0x23, + 0x06, 0x35, 0x34, 0x07, 0x06, 0x33, 0x22, 0x27, 0x26, 0x27, 0x17, 0x22, + 0x27, 0x2B, 0x01, 0x22, 0x07, 0x06, 0x07, 0x26, 0x23, 0x07, 0x33, 0x26, + 0x27, 0x26, 0x23, 0x32, 0x2B, 0x01, 0x33, 0x22, 0x07, 0x06, 0x17, 0x2E, + 0x01, 0x37, 0x26, 0x27, 0x22, 0x07, 0x06, 0x35, 0x34, 0x07, 0x06, 0x07, + 0x34, 0x23, 0x22, 0x15, 0x22, 0x17, 0x26, 0x27, 0x26, 0x27, 0x07, 0x22, + 0x07, 0x06, 0x35, 0x2B, 0x01, 0x34, 0x07, 0x06, 0x35, 0x34, 0x07, 0x0E, + 0x01, 0x23, 0x06, 0x07, 0x06, 0x07, 0x06, 0x17, 0x14, 0x17, 0x16, 0x17, + 0x16, 0x15, 0x16, 0x07, 0x06, 0x23, 0x22, 0x17, 0x16, 0x1D, 0x02, 0x14, + 0x07, 0x06, 0x17, 0x2B, 0x01, 0x22, 0x27, 0x26, 0x35, 0x34, 0x3E, 0x01, + 0x35, 0x36, 0x23, 0x22, 0x07, 0x06, 0x07, 0x2B, 0x01, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x1D, 0x01, 0x06, 0x17, 0x16, 0x07, 0x06, 0x23, 0x22, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x16, 0x06, 0x27, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x27, 0x26, 0x07, 0x06, 0x23, 0x26, + 0x27, 0x26, 0x23, 0x22, 0x07, 0x06, 0x07, 0x06, 0x0F, 0x01, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x27, 0x26, 0x2B, 0x02, 0x22, 0x07, 0x06, 0x27, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, 0x23, 0x26, 0x23, 0x22, 0x27, 0x26, + 0x07, 0x06, 0x17, 0x16, 0x15, 0x14, 0x06, 0x27, 0x16, 0x07, 0x06, 0x27, + 0x33, 0x15, 0x06, 0x37, 0x36, 0x3D, 0x02, 0x34, 0x2F, 0x01, 0x34, 0x27, + 0x26, 0x35, 0x34, 0x26, 0x33, 0x32, 0x37, 0x32, 0x07, 0x16, 0x37, 0x36, + 0x17, 0x16, 0x07, 0x06, 0x1D, 0x02, 0x16, 0x17, 0x16, 0x35, 0x34, 0x17, + 0x16, 0x37, 0x36, 0x27, 0x26, 0x23, 0x22, 0x07, 0x06, 0x27, 0x26, 0x36, + 0x37, 0x36, 0x33, 0x16, 0x3B, 0x02, 0x32, 0x37, 0x36, 0x17, 0x16, 0x37, + 0x36, 0x16, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x06, 0x37, 0x36, 0x33, 0x32, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x33, 0x32, 0x17, 0x16, 0x37, 0x36, 0x35, + 0x26, 0x37, 0x36, 0x17, 0x16, 0x33, 0x32, 0x37, 0x36, 0x27, 0x26, 0x23, + 0x22, 0x07, 0x06, 0x27, 0x26, 0x37, 0x36, 0x33, 0x32, 0x37, 0x36, 0x33, + 0x36, 0x17, 0x16, 0x17, 0x16, 0x07, 0x16, 0x17, 0x32, 0x37, 0x36, 0x17, + 0x16, 0x07, 0x06, 0x17, 0x16, 0x37, 0x36, 0x33, 0x37, 0x36, 0x27, 0x26, + 0x07, 0x06, 0x23, 0x26, 0x07, 0x06, 0x27, 0x26, 0x37, 0x36, 0x35, 0x34, + 0x27, 0x26, 0x37, 0x36, 0x17, 0x16, 0x33, 0x32, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x36, 0x35, 0x34, 0x17, 0x16, 0x33, 0x32, 0x06, 0x33, 0x32, + 0x16, 0x37, 0x36, 0x27, 0x26, 0x17, 0x32, 0x17, 0x26, 0x36, 0x17, 0x26, + 0x37, 0x36, 0x33, 0x32, 0x15, 0x06, 0x17, 0x1E, 0x01, 0x37, 0x36, 0x27, + 0x36, 0x37, 0x3B, 0x01, 0x32, 0x16, 0x07, 0x06, 0x33, 0x32, 0x37, 0x36, + 0x3F, 0x01, 0x36, 0x37, 0x36, 0x3B, 0x01, 0x32, 0x37, 0x33, 0x32, 0x15, + 0x06, 0x17, 0x16, 0x07, 0x06, 0x1D, 0x02, 0x14, 0x06, 0x27, 0x26, 0x23, + 0x22, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, + 0x27, 0x26, 0x2B, 0x02, 0x07, 0x06, 0x17, 0x14, 0x3B, 0x04, 0x36, 0x35, + 0x26, 0x37, 0x36, 0x27, 0x26, 0x37, 0x36, 0x17, 0x16, 0x33, 0x32, 0x17, + 0x16, 0x17, 0x26, 0x36, 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, 0x3B, 0x04, + 0x32, 0x17, 0x16, 0x07, 0x16, 0x15, 0x06, 0x15, 0x14, 0x17, 0x16, 0x3B, + 0x02, 0x32, 0x36, 0x27, 0x26, 0x3E, 0x01, 0x32, 0x17, 0x16, 0x37, 0x16, + 0x17, 0x16, 0x17, 0x3D, 0x01, 0x16, 0x37, 0x36, 0x3B, 0x02, 0x32, 0x37, + 0x36, 0x17, 0x14, 0x17, 0x16, 0x05, 0x34, 0x27, 0x26, 0x23, 0x22, 0x27, + 0x22, 0x07, 0x14, 0x07, 0x06, 0x17, 0x16, 0x07, 0x06, 0x33, 0x16, 0x3B, + 0x01, 0x32, 0x37, 0x26, 0x37, 0x36, 0x05, 0x34, 0x26, 0x07, 0x06, 0x07, + 0x06, 0x17, 0x06, 0x26, 0x36, 0x26, 0x07, 0x06, 0x15, 0x06, 0x17, 0x16, + 0x37, 0x32, 0x37, 0x36, 0x37, 0x36, 0x13, 0x26, 0x06, 0x15, 0x22, 0x27, + 0x23, 0x26, 0x27, 0x26, 0x07, 0x06, 0x17, 0x16, 0x07, 0x33, 0x16, 0x33, + 0x34, 0x3E, 0x01, 0x35, 0x36, 0x05, 0x22, 0x27, 0x26, 0x07, 0x3B, 0x01, + 0x35, 0x05, 0x23, 0x07, 0x32, 0x37, 0x06, 0xA4, 0x01, 0x01, 0x01, 0x11, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, 0x20, 0x07, 0x1D, 0x26, 0x09, 0x14, + 0x4C, 0x4D, 0x01, 0x06, 0x07, 0x05, 0x0B, 0x0A, 0x03, 0x04, 0x0C, 0x02, + 0x13, 0x17, 0x29, 0x13, 0x24, 0x29, 0x28, 0x24, 0x07, 0x47, 0x3F, 0x1B, + 0x6C, 0x48, 0x24, 0x01, 0x02, 0x02, 0x08, 0x01, 0x01, 0x03, 0x03, 0x05, + 0x02, 0x09, 0x0B, 0x0C, 0x04, 0x09, 0x02, 0x02, 0x0A, 0x01, 0x02, 0x04, + 0x02, 0x08, 0x09, 0x02, 0x03, 0x06, 0x05, 0x03, 0x0A, 0x01, 0x06, 0x03, + 0x02, 0x09, 0x02, 0x0B, 0x07, 0x02, 0x01, 0x09, 0x0A, 0x08, 0x05, 0x06, + 0x01, 0x06, 0x05, 0x01, 0x06, 0x06, 0x08, 0x08, 0x06, 0x0D, 0x08, 0x01, + 0x04, 0x09, 0x03, 0x01, 0x0D, 0x08, 0x05, 0x03, 0x11, 0x25, 0x24, 0x18, + 0x19, 0x0A, 0x04, 0x09, 0x02, 0x09, 0x0E, 0x0C, 0x04, 0x02, 0x01, 0x01, + 0x03, 0x02, 0x04, 0x02, 0x02, 0x01, 0x0B, 0x07, 0x02, 0x01, 0x02, 0x03, + 0x07, 0x5B, 0x5C, 0x09, 0x01, 0x02, 0x01, 0x01, 0x01, 0x0B, 0x07, 0x04, + 0x03, 0x07, 0x3B, 0x3B, 0x0E, 0x08, 0x09, 0x03, 0x01, 0x01, 0x03, 0x01, + 0x01, 0x02, 0x07, 0x08, 0x03, 0x06, 0x01, 0x02, 0x04, 0x08, 0x05, 0x07, + 0x05, 0x0A, 0x0E, 0x19, 0x30, 0x10, 0x15, 0x07, 0x0B, 0x05, 0x02, 0x06, + 0x04, 0x06, 0x06, 0x19, 0x06, 0x11, 0x13, 0x03, 0x0D, 0x04, 0x0B, 0x0E, + 0x0E, 0x1E, 0x28, 0x0D, 0x17, 0x0F, 0x12, 0x15, 0x22, 0x0E, 0x15, 0x13, + 0x08, 0x03, 0x0C, 0x0F, 0x04, 0x05, 0x06, 0x08, 0x1D, 0x1E, 0x1F, 0x38, + 0x39, 0x19, 0x21, 0x24, 0x15, 0x04, 0x02, 0x03, 0x04, 0x06, 0x05, 0x03, + 0x04, 0x02, 0x06, 0x05, 0x16, 0x12, 0x05, 0x03, 0x02, 0x01, 0x0E, 0x19, + 0x02, 0x04, 0x05, 0x0C, 0x02, 0x20, 0x08, 0x08, 0x01, 0x03, 0x01, 0x02, + 0x08, 0x09, 0x0F, 0x0C, 0x11, 0x08, 0x16, 0x06, 0x09, 0x05, 0x03, 0x01, + 0x02, 0x0B, 0x16, 0x21, 0x31, 0x31, 0x04, 0x01, 0x05, 0x04, 0x10, 0x1D, + 0x0D, 0x13, 0x06, 0x05, 0x04, 0x08, 0x08, 0x0B, 0x07, 0x0E, 0x42, 0x43, + 0x1A, 0x36, 0x29, 0x26, 0x13, 0x24, 0x11, 0x0D, 0x04, 0x01, 0x0A, 0x0C, + 0x03, 0x0A, 0x0A, 0x09, 0x0E, 0x06, 0x09, 0x0A, 0x07, 0x13, 0x32, 0x31, + 0x06, 0x36, 0x35, 0x15, 0x06, 0x08, 0x08, 0x02, 0x11, 0x18, 0x1B, 0x15, + 0x1B, 0x0F, 0x17, 0x0A, 0x04, 0x02, 0x05, 0x05, 0x0B, 0x07, 0x0A, 0x0E, + 0x05, 0x03, 0x08, 0x03, 0x05, 0x07, 0x09, 0x0F, 0x02, 0x06, 0x04, 0x05, + 0x06, 0x0F, 0x12, 0x16, 0x07, 0x08, 0x07, 0x08, 0x03, 0x07, 0x02, 0x08, + 0x06, 0x10, 0x0B, 0x10, 0x07, 0x04, 0x02, 0x01, 0x01, 0x10, 0x1E, 0x1F, + 0x12, 0x02, 0x03, 0x03, 0x0B, 0x0B, 0x0D, 0x0C, 0x27, 0x35, 0x31, 0x2A, + 0x08, 0x01, 0x01, 0x01, 0x02, 0x03, 0x05, 0x23, 0x1F, 0x0B, 0x2E, 0x17, + 0x18, 0x28, 0x0A, 0x04, 0x04, 0x03, 0x1C, 0x1B, 0x0C, 0x0F, 0x0E, 0x11, + 0x0E, 0x10, 0x0E, 0x05, 0x02, 0x02, 0x08, 0x03, 0x04, 0x03, 0x02, 0x09, + 0x03, 0x06, 0x04, 0x0F, 0x16, 0x02, 0x05, 0x06, 0x24, 0x16, 0x04, 0x05, + 0x02, 0x06, 0x1B, 0x1B, 0x09, 0x06, 0x02, 0x04, 0x16, 0x18, 0x10, 0x12, + 0x14, 0x33, 0x15, 0x1F, 0x14, 0x12, 0x2D, 0x23, 0x12, 0x35, 0x0F, 0x01, + 0x02, 0x04, 0x02, 0x02, 0x05, 0x04, 0x06, 0x12, 0x19, 0x3A, 0x2A, 0x29, + 0x0D, 0x0E, 0x17, 0x05, 0x04, 0x14, 0x05, 0x0A, 0x12, 0x11, 0x0E, 0x20, + 0x1A, 0x05, 0x03, 0x01, 0x0F, 0x77, 0x76, 0x4A, 0x49, 0x0D, 0x03, 0x04, + 0x02, 0x01, 0x01, 0x04, 0x05, 0x19, 0x1E, 0x04, 0x0A, 0x07, 0x08, 0x06, + 0x01, 0x08, 0x08, 0x11, 0x04, 0x0A, 0x02, 0x03, 0x1B, 0x49, 0x49, 0x30, + 0x2F, 0x09, 0x0A, 0x08, 0x11, 0x09, 0x01, 0x05, 0x04, 0x1C, 0x68, 0x67, + 0x07, 0x05, 0x02, 0x01, 0x01, 0x05, 0x06, 0x0C, 0x0B, 0x01, 0x03, 0x04, + 0x04, 0x03, 0x18, 0x28, 0x1B, 0x31, 0x12, 0x1A, 0x0E, 0x21, 0x20, 0x03, + 0x01, 0x01, 0xF6, 0x0F, 0x02, 0x04, 0x10, 0x0F, 0x09, 0x0D, 0x07, 0x01, + 0x01, 0x02, 0x03, 0x01, 0x01, 0x06, 0x04, 0x08, 0x1B, 0x0C, 0x08, 0x02, + 0x01, 0x01, 0x03, 0x7D, 0x2C, 0x19, 0x10, 0x02, 0x01, 0x05, 0x10, 0x0B, + 0x08, 0x08, 0x0D, 0x06, 0x01, 0x12, 0x0F, 0x26, 0x26, 0x0C, 0x06, 0x02, + 0x01, 0xAB, 0x0B, 0x3A, 0x0D, 0x07, 0x16, 0x02, 0x20, 0x21, 0x09, 0x05, + 0x02, 0x02, 0x02, 0x5F, 0x1F, 0x40, 0x01, 0x01, 0x01, 0x02, 0x44, 0x0F, + 0x09, 0x0D, 0x05, 0x15, 0x15, 0xFE, 0xE9, 0x02, 0x01, 0x01, 0x01, 0x01, + 0xA9, 0x01, 0x01, 0x01, 0x01, 0x01, 0x2E, 0x0D, 0x03, 0x02, 0x03, 0x02, + 0x0F, 0x04, 0x02, 0x02, 0x02, 0x03, 0x02, 0x02, 0x0B, 0x0A, 0x02, 0x04, + 0x03, 0x03, 0x08, 0x10, 0x05, 0x04, 0x01, 0x08, 0x10, 0x0C, 0x05, 0x02, + 0x01, 0x01, 0x01, 0x06, 0x0D, 0x08, 0x09, 0x03, 0x04, 0x01, 0x01, 0x01, + 0x02, 0x03, 0x01, 0x01, 0x01, 0x01, 0x03, 0x02, 0x03, 0x04, 0x02, 0x01, + 0x03, 0x02, 0x02, 0x01, 0x06, 0x08, 0x0B, 0x06, 0x03, 0x04, 0x02, 0x01, + 0x01, 0x01, 0x01, 0x03, 0x01, 0x02, 0x02, 0x01, 0x03, 0x03, 0x09, 0x0B, + 0x0C, 0x0E, 0x04, 0x04, 0x01, 0x06, 0x03, 0x04, 0x05, 0x0B, 0x07, 0x0B, + 0x0F, 0x04, 0x08, 0x03, 0x05, 0x03, 0x0B, 0x07, 0x07, 0x0B, 0x08, 0x09, + 0x22, 0x24, 0x12, 0x30, 0x27, 0x19, 0x16, 0x1C, 0x03, 0x04, 0x14, 0x25, + 0x11, 0x3F, 0x04, 0x02, 0x03, 0x02, 0x05, 0x08, 0x0A, 0x02, 0x06, 0x06, + 0x01, 0x05, 0x06, 0x04, 0x02, 0x03, 0x06, 0x04, 0x05, 0x08, 0x0E, 0x08, + 0x0B, 0x0C, 0x12, 0x0C, 0x06, 0x0A, 0x05, 0x07, 0x02, 0x02, 0x12, 0x08, + 0x06, 0x03, 0x08, 0x0A, 0x27, 0x0A, 0x1B, 0x1E, 0x05, 0x14, 0x05, 0x0E, + 0x12, 0x14, 0x01, 0x02, 0x02, 0x05, 0x05, 0x01, 0x02, 0x0B, 0x06, 0x04, + 0x0C, 0x11, 0x06, 0x09, 0x14, 0x1D, 0x04, 0x03, 0x04, 0x04, 0x08, 0x01, + 0x07, 0x07, 0x02, 0x04, 0x02, 0x01, 0x01, 0x02, 0x02, 0x08, 0x04, 0x12, + 0x0B, 0x0D, 0x19, 0x02, 0x01, 0x0B, 0x05, 0x06, 0x03, 0x02, 0x0B, 0x23, + 0x25, 0x08, 0x37, 0x36, 0x20, 0x0F, 0x2D, 0x0B, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x0B, 0x02, 0x01, 0x02, 0x0F, 0x09, 0x0B, 0x10, 0x04, 0x13, + 0x12, 0x01, 0x03, 0x04, 0x0F, 0x1E, 0x10, 0x11, 0x1C, 0x0F, 0x01, 0x01, + 0x01, 0x01, 0x11, 0x11, 0x58, 0x07, 0x05, 0x01, 0x02, 0x02, 0x02, 0x01, + 0x03, 0x01, 0x0D, 0x0D, 0x08, 0x0A, 0x0C, 0x05, 0x0B, 0x0F, 0x0D, 0x0C, + 0x05, 0x07, 0x09, 0x01, 0x07, 0x09, 0x07, 0x30, 0x05, 0x03, 0x08, 0x0A, + 0x02, 0x13, 0x24, 0x27, 0x01, 0x01, 0x0A, 0x03, 0x08, 0x08, 0x03, 0x05, + 0x02, 0x01, 0x06, 0x04, 0x01, 0x01, 0x01, 0x01, 0x02, 0x07, 0x07, 0x06, + 0x03, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, 0x05, 0x03, 0x01, 0x01, 0x01, + 0x04, 0x02, 0x08, 0x09, 0x01, 0x08, 0x04, 0x03, 0x21, 0x21, 0x05, 0x0F, + 0x0B, 0x0B, 0x01, 0x03, 0x03, 0x06, 0x01, 0x19, 0x11, 0x11, 0x07, 0x09, + 0x0C, 0x03, 0x05, 0x03, 0x04, 0x01, 0x01, 0x06, 0x02, 0x03, 0x02, 0x06, + 0x08, 0x0D, 0x01, 0x03, 0x14, 0x02, 0x02, 0x02, 0x08, 0x06, 0x02, 0x01, + 0x08, 0x0E, 0x01, 0x10, 0x04, 0x03, 0x04, 0x05, 0x11, 0x11, 0x12, 0x0A, + 0x02, 0x06, 0x04, 0x01, 0x04, 0x05, 0x09, 0x03, 0x03, 0x06, 0x0C, 0x04, + 0x07, 0x04, 0x01, 0x03, 0x02, 0x0E, 0x0E, 0x17, 0x1C, 0x0B, 0x12, 0x12, + 0x08, 0x09, 0x01, 0x01, 0x02, 0x03, 0x08, 0x03, 0x06, 0x07, 0x01, 0x01, + 0x05, 0x02, 0x03, 0x04, 0x03, 0x12, 0x11, 0x13, 0x15, 0x01, 0x03, 0x03, + 0x0C, 0x09, 0x03, 0x04, 0x05, 0x07, 0x02, 0x02, 0x03, 0x03, 0x06, 0x0A, + 0x07, 0x04, 0x08, 0x05, 0x0C, 0x0A, 0x09, 0x07, 0x07, 0x04, 0x07, 0x0C, + 0x07, 0x15, 0x1A, 0x03, 0x04, 0x03, 0x03, 0x02, 0x02, 0x01, 0x09, 0x09, + 0x12, 0x02, 0x02, 0x01, 0x05, 0x06, 0x05, 0x0D, 0x01, 0x01, 0x03, 0x02, + 0x0C, 0x09, 0x07, 0x08, 0x51, 0x0F, 0x02, 0x02, 0x01, 0x05, 0x14, 0x0A, + 0x0B, 0x14, 0x0F, 0x02, 0x03, 0x01, 0x06, 0x12, 0x0C, 0x0B, 0x33, 0x20, + 0x0C, 0x13, 0x0C, 0x0F, 0x0C, 0x15, 0x01, 0x13, 0x28, 0x10, 0x04, 0x0D, + 0x19, 0x19, 0x09, 0x08, 0x02, 0x09, 0x05, 0x09, 0x05, 0x01, 0x72, 0x0B, + 0x16, 0x04, 0x01, 0x08, 0x07, 0x08, 0x09, 0x05, 0x0F, 0x10, 0x08, 0x01, + 0x01, 0x06, 0x0B, 0x05, 0x11, 0x40, 0x01, 0x01, 0x08, 0x03, 0xB8, 0x01, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x62, 0x00, 0x8D, 0x0D, 0x2B, + 0x02, 0xF3, 0x00, 0xAF, 0x00, 0xC1, 0x00, 0x00, 0x01, 0x2F, 0x01, 0x35, + 0x21, 0x35, 0x37, 0x17, 0x35, 0x17, 0x33, 0x2F, 0x02, 0x0F, 0x02, 0x23, + 0x35, 0x32, 0x3F, 0x02, 0x27, 0x23, 0x07, 0x15, 0x17, 0x15, 0x0F, 0x01, + 0x23, 0x27, 0x0F, 0x02, 0x23, 0x07, 0x06, 0x07, 0x06, 0x1D, 0x01, 0x17, + 0x15, 0x1F, 0x01, 0x3F, 0x02, 0x33, 0x15, 0x23, 0x0F, 0x04, 0x23, 0x15, + 0x0F, 0x01, 0x21, 0x27, 0x26, 0x27, 0x26, 0x23, 0x21, 0x0F, 0x03, 0x23, + 0x07, 0x06, 0x07, 0x06, 0x1D, 0x01, 0x07, 0x15, 0x1F, 0x01, 0x33, 0x3F, + 0x03, 0x33, 0x17, 0x37, 0x32, 0x36, 0x35, 0x37, 0x33, 0x1F, 0x05, 0x3F, + 0x04, 0x33, 0x37, 0x16, 0x17, 0x16, 0x17, 0x3F, 0x02, 0x36, 0x37, 0x36, + 0x33, 0x15, 0x25, 0x35, 0x36, 0x37, 0x3E, 0x01, 0x3F, 0x03, 0x17, 0x06, + 0x07, 0x06, 0x23, 0x26, 0x27, 0x26, 0x2B, 0x01, 0x22, 0x07, 0x06, 0x15, + 0x06, 0x17, 0x14, 0x1F, 0x02, 0x33, 0x37, 0x2F, 0x01, 0x37, 0x21, 0x37, + 0x35, 0x3F, 0x01, 0x34, 0x27, 0x26, 0x2F, 0x01, 0x35, 0x23, 0x35, 0x21, + 0x37, 0x36, 0x37, 0x36, 0x35, 0x05, 0x23, 0x22, 0x27, 0x26, 0x35, 0x34, + 0x37, 0x36, 0x3B, 0x01, 0x32, 0x17, 0x16, 0x15, 0x14, 0x07, 0x06, 0x0D, + 0x27, 0x04, 0x06, 0xF8, 0x92, 0x37, 0x21, 0xE0, 0x07, 0x02, 0x05, 0x26, + 0x46, 0x4B, 0x37, 0xA7, 0x03, 0x02, 0x03, 0x03, 0x0B, 0x02, 0x5F, 0x02, + 0x20, 0x32, 0x64, 0x2E, 0x41, 0x37, 0x18, 0x06, 0x02, 0x01, 0x02, 0x01, + 0x04, 0x02, 0x38, 0x41, 0x37, 0x1D, 0x24, 0x61, 0x04, 0x03, 0x0B, 0x25, + 0x2D, 0x02, 0x06, 0x09, 0xFE, 0xC8, 0x1F, 0x06, 0x03, 0x06, 0x03, 0xFE, + 0xED, 0x09, 0x06, 0x03, 0x02, 0x1E, 0x67, 0x0C, 0x05, 0x06, 0x06, 0x03, + 0x03, 0x08, 0x1C, 0x25, 0x23, 0x17, 0x4C, 0x28, 0x0D, 0x03, 0x04, 0x0C, + 0x97, 0x16, 0x22, 0x21, 0x2B, 0x4F, 0x51, 0x36, 0x10, 0x0E, 0x08, 0x01, + 0x09, 0x05, 0x13, 0x11, 0x0E, 0x12, 0x35, 0x22, 0x13, 0x02, 0x07, 0x04, + 0x0C, 0x01, 0x08, 0x03, 0x05, 0x03, 0x0D, 0x03, 0x37, 0x35, 0x1D, 0xDF, + 0x0B, 0x08, 0x0A, 0x09, 0x03, 0x09, 0x0C, 0x0B, 0x04, 0x07, 0x03, 0x04, + 0x05, 0x02, 0x06, 0x0F, 0x05, 0x2F, 0x05, 0x08, 0x05, 0x05, 0x01, 0xD9, + 0x06, 0x02, 0x02, 0x02, 0x02, 0x06, 0x0D, 0x5A, 0x04, 0xC8, 0x04, 0x01, + 0x0A, 0x03, 0xF6, 0xEF, 0x40, 0x0C, 0x08, 0x07, 0x07, 0x08, 0x0C, 0x40, + 0x0E, 0x07, 0x06, 0x06, 0x08, 0x02, 0x26, 0x0C, 0x0C, 0x05, 0x1A, 0x01, + 0x05, 0x04, 0x0E, 0x84, 0x03, 0x05, 0x06, 0x08, 0x08, 0x06, 0x01, 0x03, + 0x04, 0x20, 0x06, 0x12, 0x06, 0x13, 0x03, 0x01, 0x04, 0x04, 0x03, 0x03, + 0x02, 0x01, 0x04, 0x02, 0x06, 0x1F, 0x31, 0x04, 0x06, 0x03, 0x06, 0x07, + 0x04, 0x1D, 0x02, 0x03, 0x03, 0x07, 0x08, 0x06, 0x1D, 0x1D, 0x1F, 0x06, + 0x02, 0x02, 0x07, 0x03, 0x02, 0x03, 0x07, 0x05, 0x04, 0x05, 0x05, 0x4C, + 0x67, 0x84, 0x14, 0x03, 0x05, 0x08, 0x06, 0x04, 0x08, 0x08, 0x04, 0x05, + 0x4A, 0x10, 0x20, 0x22, 0x0F, 0x0D, 0x0A, 0x06, 0x17, 0x2B, 0x2F, 0x23, + 0x03, 0x0C, 0x06, 0x06, 0x02, 0x05, 0x12, 0x0F, 0x04, 0x01, 0x01, 0x53, + 0x1C, 0x50, 0x03, 0x02, 0x01, 0x03, 0x01, 0x0F, 0x0F, 0x08, 0x03, 0x05, + 0x01, 0x03, 0x05, 0x01, 0x02, 0x03, 0x04, 0x07, 0x08, 0x0B, 0x0A, 0x0E, + 0x23, 0x06, 0x11, 0x09, 0x03, 0x0C, 0x0D, 0x04, 0x03, 0x09, 0x07, 0x0A, + 0x05, 0x06, 0x0D, 0x4E, 0x15, 0x06, 0x02, 0x10, 0x08, 0x06, 0xD9, 0x08, + 0x07, 0x0E, 0x0C, 0x06, 0x06, 0x06, 0x06, 0x0C, 0x0D, 0x08, 0x08, 0x00, + 0x00, 0x01, 0x00, 0x52, 0x00, 0xDA, 0x08, 0x53, 0x02, 0xA9, 0x00, 0xDB, + 0x00, 0x00, 0x01, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x06, 0x07, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x2B, 0x05, + 0x06, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, + 0x16, 0x07, 0x06, 0x07, 0x06, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x37, 0x34, + 0x27, 0x2E, 0x01, 0x0F, 0x02, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x0E, 0x01, + 0x23, 0x06, 0x07, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x22, 0x26, + 0x23, 0x26, 0x27, 0x26, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x27, 0x26, 0x27, + 0x34, 0x26, 0x27, 0x26, 0x35, 0x26, 0x35, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x37, 0x36, 0x37, 0x36, 0x35, 0x26, 0x37, 0x34, 0x37, 0x34, 0x37, 0x34, + 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x3E, 0x01, 0x33, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x17, 0x16, + 0x1F, 0x01, 0x16, 0x17, 0x1E, 0x03, 0x17, 0x16, 0x33, 0x1E, 0x01, 0x33, + 0x16, 0x37, 0x34, 0x36, 0x37, 0x36, 0x27, 0x26, 0x35, 0x34, 0x37, 0x36, + 0x17, 0x16, 0x17, 0x14, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, + 0x17, 0x1E, 0x01, 0x17, 0x16, 0x15, 0x06, 0x15, 0x14, 0x37, 0x36, 0x3B, + 0x04, 0x32, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x1F, + 0x01, 0x16, 0x3F, 0x01, 0x36, 0x37, 0x3E, 0x01, 0x08, 0x14, 0x14, 0x0C, + 0x06, 0x14, 0x05, 0x26, 0x14, 0x1F, 0x24, 0x1A, 0x3E, 0x20, 0x1A, 0x0D, + 0x1A, 0x0E, 0x46, 0x28, 0x34, 0x3C, 0x94, 0x96, 0x1C, 0x1C, 0x0C, 0x09, + 0x04, 0x03, 0x01, 0x01, 0x04, 0x04, 0x09, 0x08, 0x0D, 0x20, 0x23, 0x26, + 0x15, 0x08, 0x0F, 0x0E, 0x0B, 0x05, 0x0E, 0x07, 0x06, 0x01, 0x02, 0x02, + 0x02, 0x08, 0x0A, 0x05, 0x1B, 0x22, 0x01, 0x02, 0x01, 0x07, 0x06, 0x18, + 0x27, 0x07, 0x19, 0x06, 0x0E, 0x20, 0x08, 0x1E, 0x08, 0x4C, 0x25, 0x35, + 0x3D, 0x15, 0x53, 0x14, 0x39, 0x44, 0x06, 0x18, 0x06, 0x0D, 0x18, 0x16, + 0x0A, 0x0D, 0x08, 0x04, 0x12, 0x0A, 0x06, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x05, 0x05, 0x07, 0x02, 0x04, 0x04, 0x03, 0x0C, 0x05, 0x02, 0x02, 0x01, + 0x01, 0x02, 0x02, 0x04, 0x0B, 0x09, 0x0B, 0x03, 0x0A, 0x18, 0x14, 0x06, + 0x1A, 0x07, 0x06, 0x19, 0x07, 0x3C, 0x40, 0x14, 0x53, 0x15, 0x3D, 0x35, + 0x4C, 0x26, 0x2D, 0x1C, 0x10, 0x07, 0x1B, 0x0C, 0x19, 0x07, 0x04, 0x07, + 0x02, 0x07, 0x02, 0x08, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, 0x16, 0x15, + 0x1C, 0x0E, 0x02, 0x0B, 0x08, 0x07, 0x08, 0x02, 0x03, 0x05, 0x05, 0x07, + 0x02, 0x06, 0x02, 0x01, 0x01, 0x0B, 0x07, 0x0A, 0x26, 0x26, 0x44, 0x43, + 0x32, 0x41, 0x13, 0x4C, 0x13, 0x4E, 0x26, 0x4F, 0x25, 0x15, 0x2C, 0x42, + 0x14, 0x19, 0x2D, 0x13, 0x26, 0x09, 0x26, 0x02, 0x05, 0x02, 0x02, 0x01, + 0x03, 0x30, 0x17, 0x24, 0x1B, 0x13, 0x1C, 0x0A, 0x08, 0x03, 0x06, 0x01, + 0x06, 0x04, 0x07, 0x01, 0x02, 0x03, 0x09, 0x03, 0x09, 0x01, 0x0B, 0x0D, + 0x0B, 0x07, 0x12, 0x0A, 0x0B, 0x18, 0x09, 0x1B, 0x18, 0x11, 0x07, 0x02, + 0x04, 0x04, 0x05, 0x06, 0x05, 0x08, 0x02, 0x02, 0x01, 0x04, 0x28, 0x1C, + 0x14, 0x0B, 0x0B, 0x14, 0x08, 0x08, 0x01, 0x03, 0x06, 0x01, 0x04, 0x01, + 0x02, 0x02, 0x01, 0x02, 0x04, 0x03, 0x04, 0x03, 0x01, 0x04, 0x01, 0x01, + 0x07, 0x04, 0x01, 0x02, 0x02, 0x0C, 0x0F, 0x0E, 0x07, 0x0E, 0x0A, 0x05, + 0x0B, 0x03, 0x0B, 0x03, 0x0B, 0x15, 0x0B, 0x15, 0x0A, 0x05, 0x04, 0x0A, + 0x0F, 0x10, 0x0F, 0x0B, 0x05, 0x0B, 0x0A, 0x08, 0x0B, 0x05, 0x0B, 0x05, + 0x05, 0x0A, 0x08, 0x06, 0x0C, 0x09, 0x0C, 0x06, 0x0F, 0x16, 0x02, 0x01, + 0x02, 0x01, 0x01, 0x02, 0x06, 0x03, 0x01, 0x04, 0x01, 0x03, 0x04, 0x06, + 0x02, 0x03, 0x02, 0x02, 0x01, 0x04, 0x02, 0x04, 0x01, 0x01, 0x01, 0x01, + 0x02, 0x09, 0x02, 0x09, 0x02, 0x12, 0x0C, 0x0B, 0x14, 0x1C, 0x16, 0x16, + 0x04, 0x01, 0x0D, 0x0C, 0x06, 0x05, 0x01, 0x02, 0x0B, 0x0C, 0x12, 0x10, + 0x0B, 0x03, 0x04, 0x03, 0x02, 0x07, 0x04, 0x05, 0x08, 0x02, 0x01, 0x05, + 0x01, 0x08, 0x01, 0x06, 0x01, 0x04, 0x01, 0x01, 0x02, 0x03, 0x01, 0x03, + 0x03, 0x01, 0x04, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x52, + 0x00, 0xD4, 0x08, 0x54, 0x02, 0xAB, 0x01, 0x6F, 0x00, 0x00, 0x01, 0x26, + 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x2B, 0x02, 0x06, 0x23, 0x06, + 0x27, 0x2B, 0x01, 0x0E, 0x01, 0x27, 0x22, 0x27, 0x26, 0x06, 0x22, 0x27, + 0x26, 0x07, 0x0E, 0x01, 0x27, 0x22, 0x27, 0x31, 0x23, 0x14, 0x07, 0x06, + 0x23, 0x22, 0x26, 0x27, 0x26, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x07, + 0x06, 0x27, 0x26, 0x27, 0x06, 0x07, 0x06, 0x2F, 0x01, 0x26, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x0F, 0x01, + 0x06, 0x23, 0x22, 0x27, 0x34, 0x27, 0x26, 0x35, 0x23, 0x31, 0x06, 0x07, + 0x06, 0x27, 0x26, 0x27, 0x2B, 0x02, 0x22, 0x07, 0x06, 0x27, 0x22, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x31, 0x26, 0x35, 0x36, 0x35, 0x34, 0x37, 0x36, + 0x37, 0x3E, 0x01, 0x37, 0x36, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, 0x2E, 0x01, 0x23, 0x26, + 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, + 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x06, 0x15, 0x14, 0x07, 0x22, 0x15, 0x06, 0x17, 0x31, 0x17, 0x33, 0x14, + 0x17, 0x15, 0x14, 0x16, 0x17, 0x16, 0x14, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x17, 0x32, + 0x16, 0x17, 0x16, 0x33, 0x16, 0x33, 0x32, 0x37, 0x32, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x33, 0x32, 0x17, 0x32, 0x16, 0x33, 0x1E, 0x01, 0x33, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x07, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x34, + 0x36, 0x3D, 0x01, 0x34, 0x37, 0x32, 0x37, 0x36, 0x37, 0x36, 0x17, 0x1E, + 0x01, 0x3B, 0x02, 0x32, 0x35, 0x26, 0x37, 0x36, 0x17, 0x16, 0x17, 0x31, + 0x33, 0x36, 0x33, 0x32, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x36, 0x37, 0x36, 0x17, 0x1E, 0x02, + 0x15, 0x3E, 0x01, 0x32, 0x17, 0x16, 0x31, 0x16, 0x37, 0x36, 0x33, 0x32, + 0x17, 0x16, 0x17, 0x16, 0x33, 0x32, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x17, + 0x33, 0x31, 0x36, 0x32, 0x17, 0x16, 0x37, 0x36, 0x33, 0x32, 0x17, 0x16, + 0x17, 0x16, 0x33, 0x32, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x17, 0x3B, 0x01, + 0x36, 0x37, 0x36, 0x17, 0x16, 0x14, 0x3B, 0x05, 0x32, 0x37, 0x3E, 0x01, + 0x33, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x26, 0x27, 0x26, 0x07, 0xE5, + 0x26, 0x1B, 0x1F, 0x24, 0x11, 0x44, 0x11, 0x3A, 0x2D, 0x7B, 0x7C, 0x05, + 0x04, 0x06, 0x03, 0x01, 0x01, 0x01, 0x04, 0x03, 0x07, 0x03, 0x08, 0x0A, + 0x12, 0x05, 0x06, 0x08, 0x01, 0x04, 0x03, 0x07, 0x03, 0x02, 0x01, 0x01, + 0x07, 0x05, 0x02, 0x02, 0x07, 0x06, 0x06, 0x0B, 0x07, 0x07, 0x08, 0x03, + 0x04, 0x05, 0x06, 0x03, 0x04, 0x03, 0x04, 0x05, 0x03, 0x02, 0x07, 0x02, + 0x03, 0x04, 0x06, 0x08, 0x04, 0x06, 0x02, 0x02, 0x03, 0x05, 0x01, 0x04, + 0x03, 0x01, 0x06, 0x01, 0x01, 0x01, 0x02, 0x02, 0x04, 0x05, 0x05, 0x03, + 0x01, 0x0A, 0x1A, 0x1B, 0x09, 0x07, 0x07, 0x0B, 0x01, 0x07, 0x02, 0x03, + 0x08, 0x06, 0x01, 0x01, 0x04, 0x06, 0x03, 0x01, 0x05, 0x02, 0x02, 0x01, + 0x01, 0x04, 0x0E, 0x07, 0x09, 0x0D, 0x06, 0x0C, 0x0E, 0x1D, 0x10, 0x13, + 0x15, 0x11, 0x17, 0x58, 0x16, 0x2D, 0x58, 0x3C, 0x2A, 0x33, 0x32, 0x28, + 0x12, 0x13, 0x26, 0x0B, 0x0A, 0x06, 0x0E, 0x12, 0x13, 0x17, 0x0C, 0x0C, + 0x08, 0x09, 0x05, 0x02, 0x02, 0x02, 0x01, 0x03, 0x0B, 0x02, 0x0A, 0x02, + 0x03, 0x01, 0x02, 0x01, 0x01, 0x01, 0x06, 0x0F, 0x0D, 0x1F, 0x17, 0x14, + 0x06, 0x17, 0x06, 0x09, 0x0A, 0x07, 0x0E, 0x0B, 0x17, 0x06, 0x17, 0x05, + 0x3C, 0x4A, 0x2D, 0x59, 0x1C, 0x0E, 0x1C, 0x0E, 0x14, 0x0A, 0x09, 0x14, + 0x16, 0x0A, 0x16, 0x0B, 0x03, 0x0C, 0x03, 0x03, 0x0B, 0x03, 0x0A, 0x05, + 0x02, 0x08, 0x02, 0x16, 0x02, 0x02, 0x11, 0x07, 0x10, 0x12, 0x05, 0x02, + 0x04, 0x01, 0x01, 0x02, 0x03, 0x0C, 0x03, 0x03, 0x0E, 0x02, 0x02, 0x05, + 0x05, 0x09, 0x07, 0x08, 0x08, 0x04, 0x0C, 0x04, 0x1C, 0x1B, 0x09, 0x02, + 0x05, 0x06, 0x04, 0x01, 0x04, 0x01, 0x03, 0x07, 0x06, 0x03, 0x04, 0x04, + 0x02, 0x02, 0x03, 0x05, 0x06, 0x05, 0x04, 0x06, 0x01, 0x03, 0x06, 0x04, + 0x01, 0x06, 0x05, 0x01, 0x03, 0x02, 0x02, 0x02, 0x0A, 0x03, 0x02, 0x06, + 0x06, 0x06, 0x09, 0x07, 0x04, 0x05, 0x01, 0x03, 0x04, 0x03, 0x01, 0x01, + 0x05, 0x04, 0x05, 0x02, 0x02, 0x02, 0x0E, 0x02, 0x07, 0x06, 0x06, 0x09, + 0x06, 0x04, 0x03, 0x04, 0x02, 0x04, 0x03, 0x02, 0x02, 0x04, 0x04, 0x05, + 0x02, 0x01, 0x01, 0x01, 0x05, 0x05, 0x05, 0x01, 0x04, 0x0E, 0x0D, 0x38, + 0x38, 0x6A, 0x35, 0x34, 0x0B, 0x28, 0x0B, 0x29, 0x14, 0x31, 0x43, 0x3A, + 0x2D, 0x19, 0x1C, 0x1E, 0x01, 0xF4, 0x0B, 0x06, 0x07, 0x03, 0x01, 0x07, + 0x02, 0x05, 0x0F, 0x01, 0x10, 0x08, 0x08, 0x01, 0x0F, 0x05, 0x16, 0x0B, + 0x0B, 0x05, 0x08, 0x08, 0x01, 0x0F, 0x06, 0x04, 0x07, 0x0E, 0x03, 0x04, + 0x0B, 0x0D, 0x03, 0x02, 0x0B, 0x0D, 0x0E, 0x10, 0x06, 0x05, 0x0A, 0x03, + 0x0A, 0x0B, 0x0E, 0x09, 0x05, 0x04, 0x05, 0x05, 0x06, 0x01, 0x01, 0x04, + 0x06, 0x03, 0x04, 0x01, 0x02, 0x04, 0x08, 0x07, 0x07, 0x02, 0x03, 0x04, + 0x01, 0x08, 0x07, 0x09, 0x0E, 0x09, 0x01, 0x06, 0x06, 0x03, 0x03, 0x01, + 0x01, 0x02, 0x04, 0x01, 0x06, 0x07, 0x0E, 0x0B, 0x09, 0x10, 0x09, 0x03, + 0x11, 0x05, 0x07, 0x0B, 0x0C, 0x01, 0x04, 0x01, 0x01, 0x04, 0x1F, 0x20, + 0x21, 0x10, 0x09, 0x06, 0x06, 0x01, 0x01, 0x03, 0x01, 0x04, 0x02, 0x04, + 0x04, 0x02, 0x02, 0x02, 0x03, 0x04, 0x01, 0x08, 0x05, 0x06, 0x06, 0x01, + 0x02, 0x09, 0x08, 0x0A, 0x09, 0x0F, 0x08, 0x0A, 0x08, 0x03, 0x09, 0x08, + 0x03, 0x11, 0x12, 0x02, 0x01, 0x05, 0x03, 0x0A, 0x03, 0x0A, 0x03, 0x02, + 0x0B, 0x03, 0x1B, 0x15, 0x14, 0x05, 0x03, 0x11, 0x05, 0x15, 0x05, 0x07, + 0x01, 0x01, 0x04, 0x03, 0x02, 0x02, 0x01, 0x04, 0x01, 0x01, 0x01, 0x02, + 0x03, 0x02, 0x02, 0x02, 0x01, 0x02, 0x01, 0x01, 0x02, 0x03, 0x02, 0x06, + 0x02, 0x13, 0x1D, 0x1D, 0x18, 0x02, 0x04, 0x05, 0x02, 0x01, 0x04, 0x04, + 0x05, 0x06, 0x08, 0x23, 0x09, 0x0B, 0x27, 0x01, 0x02, 0x01, 0x05, 0x07, + 0x02, 0x01, 0x02, 0x04, 0x05, 0x02, 0x01, 0x04, 0x02, 0x02, 0x09, 0x0A, + 0x09, 0x04, 0x0A, 0x0F, 0x0F, 0x04, 0x05, 0x04, 0x03, 0x05, 0x03, 0x02, + 0x01, 0x01, 0x06, 0x02, 0x08, 0x05, 0x0C, 0x02, 0x0E, 0x09, 0x03, 0x06, + 0x04, 0x01, 0x03, 0x0E, 0x07, 0x0A, 0x04, 0x0A, 0x0B, 0x03, 0x05, 0x05, + 0x05, 0x06, 0x07, 0x05, 0x02, 0x04, 0x0B, 0x0F, 0x0F, 0x04, 0x0A, 0x0B, + 0x04, 0x03, 0x06, 0x05, 0x06, 0x07, 0x05, 0x02, 0x04, 0x0B, 0x06, 0x09, + 0x09, 0x0F, 0x03, 0x06, 0x03, 0x01, 0x03, 0x02, 0x03, 0x07, 0x12, 0x10, + 0x27, 0x14, 0x0C, 0x0D, 0x00, 0x04, 0x00, 0x56, 0x00, 0x3F, 0x0C, 0x0F, + 0x03, 0x42, 0x01, 0xCF, 0x01, 0xE5, 0x01, 0xF0, 0x02, 0x01, 0x00, 0x00, + 0x01, 0x34, 0x27, 0x2B, 0x0C, 0x22, 0x27, 0x26, 0x3D, 0x04, 0x34, 0x37, + 0x36, 0x26, 0x27, 0x26, 0x07, 0x06, 0x23, 0x22, 0x27, 0x26, 0x07, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x2B, 0x02, 0x36, 0x27, 0x26, + 0x35, 0x34, 0x37, 0x36, 0x27, 0x26, 0x07, 0x06, 0x23, 0x22, 0x1D, 0x04, + 0x14, 0x2B, 0x04, 0x22, 0x37, 0x35, 0x34, 0x37, 0x36, 0x27, 0x26, 0x07, + 0x06, 0x23, 0x22, 0x17, 0x16, 0x07, 0x06, 0x27, 0x26, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x14, 0x07, 0x06, 0x17, 0x16, 0x37, 0x36, 0x17, 0x16, 0x33, + 0x16, 0x3B, 0x02, 0x32, 0x15, 0x14, 0x0E, 0x01, 0x2B, 0x01, 0x22, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x0F, 0x01, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x23, 0x22, 0x07, 0x06, 0x27, 0x26, 0x37, + 0x36, 0x37, 0x36, 0x3D, 0x01, 0x34, 0x36, 0x35, 0x26, 0x27, 0x26, 0x2B, + 0x04, 0x22, 0x27, 0x26, 0x06, 0x07, 0x14, 0x06, 0x07, 0x06, 0x14, 0x07, + 0x06, 0x17, 0x16, 0x17, 0x16, 0x17, 0x26, 0x27, 0x26, 0x07, 0x0E, 0x01, + 0x2B, 0x05, 0x22, 0x07, 0x06, 0x17, 0x16, 0x1D, 0x06, 0x14, 0x17, 0x16, + 0x37, 0x36, 0x33, 0x32, 0x37, 0x06, 0x16, 0x17, 0x16, 0x35, 0x34, 0x27, + 0x26, 0x27, 0x3D, 0x01, 0x34, 0x37, 0x36, 0x33, 0x32, 0x17, 0x16, 0x37, + 0x36, 0x3F, 0x01, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x33, 0x32, 0x17, 0x16, 0x37, 0x36, 0x35, 0x34, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x33, 0x32, 0x37, 0x32, 0x17, 0x16, 0x37, 0x33, 0x32, + 0x16, 0x07, 0x06, 0x07, 0x06, 0x15, 0x14, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x1D, 0x01, 0x14, 0x07, 0x06, + 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x35, 0x16, 0x33, 0x16, 0x3B, 0x02, 0x32, 0x37, + 0x33, 0x32, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x3B, 0x03, 0x16, 0x3B, 0x02, 0x32, 0x15, + 0x06, 0x17, 0x14, 0x16, 0x37, 0x14, 0x07, 0x06, 0x17, 0x22, 0x07, 0x06, + 0x15, 0x06, 0x16, 0x33, 0x06, 0x1D, 0x01, 0x14, 0x06, 0x07, 0x06, 0x1D, + 0x01, 0x14, 0x17, 0x14, 0x17, 0x16, 0x36, 0x37, 0x06, 0x17, 0x16, 0x17, + 0x22, 0x07, 0x06, 0x17, 0x16, 0x3F, 0x01, 0x32, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x27, 0x36, 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x27, 0x26, 0x27, 0x34, 0x3E, 0x01, 0x35, 0x36, 0x35, 0x34, 0x27, + 0x2E, 0x01, 0x35, 0x26, 0x35, 0x26, 0x3D, 0x02, 0x34, 0x37, 0x36, 0x27, + 0x26, 0x37, 0x36, 0x35, 0x34, 0x37, 0x36, 0x35, 0x34, 0x27, 0x26, 0x37, + 0x16, 0x3B, 0x02, 0x16, 0x3B, 0x02, 0x16, 0x3B, 0x01, 0x36, 0x17, 0x16, + 0x36, 0x3D, 0x01, 0x05, 0x06, 0x07, 0x06, 0x22, 0x07, 0x06, 0x07, 0x22, + 0x27, 0x22, 0x27, 0x26, 0x3F, 0x01, 0x36, 0x17, 0x16, 0x33, 0x32, 0x37, + 0x32, 0x25, 0x26, 0x37, 0x36, 0x37, 0x15, 0x14, 0x17, 0x06, 0x27, 0x26, + 0x17, 0x36, 0x27, 0x26, 0x3D, 0x02, 0x26, 0x17, 0x32, 0x1E, 0x01, 0x32, + 0x33, 0x06, 0x07, 0x06, 0x0C, 0x0F, 0x04, 0x11, 0x5A, 0x5A, 0x78, 0x79, + 0x79, 0x79, 0x86, 0x86, 0x86, 0x86, 0x1E, 0x1E, 0x09, 0x02, 0x01, 0x04, + 0x02, 0x07, 0x08, 0x12, 0x18, 0x19, 0x13, 0x0C, 0x1A, 0x1B, 0x08, 0x07, + 0x0B, 0x05, 0x0F, 0x02, 0x0A, 0x14, 0x12, 0x0C, 0x70, 0x71, 0x04, 0x01, + 0x01, 0x02, 0x02, 0x02, 0x05, 0x20, 0x1F, 0x0A, 0x0D, 0x04, 0x19, 0x19, + 0x42, 0x41, 0x08, 0x01, 0x01, 0x01, 0x03, 0x07, 0x1B, 0x1C, 0x0D, 0x11, + 0x08, 0x06, 0x05, 0x06, 0x20, 0x22, 0x0B, 0x08, 0x07, 0x05, 0x02, 0x01, + 0x02, 0x04, 0x06, 0x16, 0x1C, 0x0A, 0x0D, 0x1F, 0x10, 0x1F, 0x1B, 0x1C, + 0x02, 0x01, 0x02, 0x08, 0x0A, 0x06, 0x17, 0x06, 0x13, 0x10, 0x0D, 0x0C, + 0x09, 0x12, 0x10, 0x0E, 0x21, 0x0A, 0x14, 0x11, 0x0E, 0x13, 0x07, 0x0E, + 0x0F, 0x0E, 0x1C, 0x1F, 0x07, 0x03, 0x05, 0x05, 0x01, 0x01, 0x04, 0x01, + 0x0A, 0x08, 0x0D, 0x3C, 0x3D, 0x4A, 0x4A, 0x07, 0x1A, 0x15, 0x16, 0x01, + 0x02, 0x01, 0x01, 0x01, 0x02, 0x02, 0x03, 0x05, 0x03, 0x02, 0x12, 0x0B, + 0x15, 0x08, 0x03, 0x08, 0x03, 0x0C, 0x0D, 0x26, 0x27, 0x0E, 0x09, 0x03, + 0x04, 0x01, 0x01, 0x08, 0x08, 0x10, 0x11, 0x23, 0x22, 0x11, 0x02, 0x17, + 0x1B, 0x35, 0x04, 0x03, 0x02, 0x03, 0x02, 0x0D, 0x08, 0x03, 0x02, 0x08, + 0x50, 0x29, 0x78, 0x02, 0x0B, 0x03, 0x02, 0x09, 0x03, 0x07, 0x02, 0x01, + 0x0A, 0x06, 0x14, 0x15, 0x01, 0x04, 0x0E, 0x0C, 0x06, 0x06, 0x03, 0x06, + 0x02, 0x09, 0x08, 0x01, 0x02, 0x0B, 0x0E, 0x07, 0x16, 0x04, 0x0C, 0x02, + 0x02, 0x05, 0x06, 0x06, 0x06, 0x03, 0x06, 0x04, 0x04, 0x04, 0x03, 0x06, + 0x07, 0x01, 0x03, 0x07, 0x08, 0x04, 0x09, 0x1D, 0x24, 0x0C, 0x08, 0x11, + 0x0A, 0x10, 0x09, 0x08, 0x0B, 0x01, 0x04, 0x03, 0x05, 0x01, 0x01, 0x02, + 0x01, 0x07, 0x05, 0x04, 0x06, 0x01, 0x04, 0x05, 0x05, 0x01, 0x04, 0x02, + 0x04, 0x6C, 0x6B, 0x48, 0x24, 0x6A, 0x05, 0x09, 0x05, 0x06, 0x02, 0x0A, + 0x03, 0x09, 0x03, 0x04, 0x0A, 0x06, 0x0A, 0x07, 0x05, 0x05, 0x0A, 0x7C, + 0x7C, 0x7C, 0x29, 0x52, 0x64, 0x62, 0x0A, 0x01, 0x01, 0x0A, 0x0B, 0x01, + 0x02, 0x04, 0x12, 0x03, 0x03, 0x02, 0x0E, 0x12, 0x01, 0x14, 0x04, 0x06, + 0x01, 0x0D, 0x10, 0x28, 0x10, 0x07, 0x11, 0x12, 0x01, 0x0E, 0x03, 0x03, + 0x05, 0x04, 0x16, 0x1E, 0x0A, 0x03, 0x04, 0x04, 0x04, 0x06, 0x04, 0x07, + 0x06, 0x06, 0x08, 0x03, 0x06, 0x02, 0x02, 0x05, 0x01, 0x07, 0x06, 0x09, + 0x0D, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x04, 0x01, 0x02, 0x02, 0x02, + 0x01, 0x03, 0x03, 0x02, 0x01, 0x01, 0x02, 0x02, 0x24, 0x48, 0x6C, 0x6B, + 0x24, 0x48, 0x7C, 0x7C, 0x07, 0x0F, 0x16, 0x16, 0x06, 0x03, 0x03, 0xF5, + 0xAF, 0x01, 0x0E, 0x0D, 0x0C, 0x03, 0x05, 0x04, 0x07, 0x09, 0x0E, 0x03, + 0x02, 0x02, 0x02, 0x07, 0x16, 0x1C, 0x03, 0x0C, 0x05, 0x08, 0x02, 0x04, + 0x02, 0x07, 0x08, 0x03, 0x0B, 0x0A, 0x08, 0x09, 0x44, 0x02, 0x05, 0x05, + 0x03, 0x1F, 0x06, 0x0F, 0x08, 0x09, 0x02, 0x04, 0x11, 0x12, 0x02, 0x68, + 0x07, 0x01, 0x02, 0x01, 0x0C, 0x27, 0x26, 0x14, 0x12, 0x0B, 0x05, 0x03, + 0x06, 0x02, 0x06, 0x03, 0x03, 0x03, 0x02, 0x0A, 0x08, 0x04, 0x02, 0x07, + 0x01, 0x06, 0x05, 0x05, 0x0F, 0x0F, 0x09, 0x13, 0x03, 0x0C, 0x08, 0x05, + 0x0A, 0x02, 0x03, 0x13, 0x1F, 0x0E, 0x10, 0x07, 0x04, 0x09, 0x0F, 0x09, + 0x07, 0x09, 0x05, 0x0A, 0x01, 0x03, 0x17, 0x18, 0x08, 0x0C, 0x05, 0x05, + 0x04, 0x03, 0x05, 0x05, 0x0C, 0x13, 0x0F, 0x18, 0x0A, 0x10, 0x03, 0x02, + 0x01, 0x01, 0x01, 0x02, 0x01, 0x03, 0x02, 0x01, 0x01, 0x02, 0x07, 0x05, + 0x0A, 0x07, 0x0C, 0x0B, 0x06, 0x0F, 0x05, 0x08, 0x08, 0x04, 0x06, 0x01, + 0x03, 0x04, 0x04, 0x08, 0x04, 0x05, 0x05, 0x04, 0x02, 0x06, 0x0A, 0x05, + 0x1C, 0x03, 0x0D, 0x05, 0x04, 0x02, 0x02, 0x0A, 0x09, 0x04, 0x0C, 0x04, + 0x01, 0x06, 0x02, 0x06, 0x05, 0x05, 0x03, 0x03, 0x06, 0x02, 0x02, 0x02, + 0x01, 0x01, 0x04, 0x04, 0x07, 0x10, 0x0B, 0x0E, 0x16, 0x17, 0x4F, 0x4F, + 0x27, 0x28, 0x12, 0x05, 0x06, 0x01, 0x01, 0x01, 0x0A, 0x09, 0x01, 0x02, + 0x17, 0x0B, 0x05, 0x03, 0x0B, 0x0C, 0x0B, 0x0C, 0x02, 0x02, 0x01, 0x01, + 0x03, 0x22, 0x11, 0x33, 0x01, 0x04, 0x01, 0x01, 0x04, 0x01, 0x03, 0x05, + 0x04, 0x02, 0x02, 0x04, 0x0A, 0x0C, 0x0C, 0x06, 0x08, 0x12, 0x06, 0x03, + 0x02, 0x01, 0x01, 0x03, 0x02, 0x01, 0x22, 0x08, 0x07, 0x05, 0x06, 0x07, + 0x03, 0x0A, 0x0A, 0x02, 0x02, 0x0A, 0x08, 0x07, 0x06, 0x06, 0x07, 0x05, + 0x08, 0x09, 0x12, 0x0B, 0x0A, 0x0C, 0x0A, 0x14, 0x08, 0x0B, 0x05, 0x04, + 0x05, 0x03, 0x02, 0x03, 0x03, 0x05, 0x03, 0x0C, 0x11, 0x11, 0x0C, 0x0A, + 0x0B, 0x05, 0x10, 0x0B, 0x07, 0x0F, 0x02, 0x07, 0x07, 0x08, 0x06, 0x01, + 0x01, 0x01, 0x10, 0x0B, 0x09, 0x04, 0x0D, 0x03, 0x0C, 0x08, 0x09, 0x0C, + 0x07, 0x0C, 0x07, 0x08, 0x06, 0x01, 0x06, 0x07, 0x08, 0x07, 0x18, 0x04, + 0x18, 0x0D, 0x17, 0x0C, 0x05, 0x06, 0x0F, 0x12, 0x0A, 0x03, 0x06, 0x09, + 0x03, 0x02, 0x03, 0x05, 0x09, 0x12, 0x0E, 0x04, 0x07, 0x01, 0x01, 0x02, + 0x02, 0x09, 0x1F, 0x22, 0x09, 0x1D, 0x1C, 0x0B, 0x08, 0x01, 0x02, 0x01, + 0x02, 0x05, 0x04, 0x0E, 0x0C, 0x04, 0x0A, 0x08, 0x08, 0x05, 0x0A, 0x06, + 0x03, 0x0C, 0x02, 0x10, 0x15, 0x1B, 0x01, 0x01, 0x04, 0x06, 0x02, 0x05, + 0x08, 0x05, 0x03, 0x01, 0x04, 0x01, 0x07, 0x07, 0x05, 0x0C, 0x14, 0x15, + 0x02, 0x0E, 0x09, 0x05, 0x03, 0x0B, 0x09, 0x07, 0x0E, 0x18, 0x0C, 0x1B, + 0x17, 0x0B, 0x11, 0x11, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x04, 0x04, + 0x1D, 0xE6, 0x06, 0x08, 0x07, 0x03, 0x05, 0x01, 0x01, 0x04, 0x03, 0x0E, + 0x0F, 0x06, 0x01, 0x02, 0x01, 0x24, 0x09, 0x05, 0x06, 0x03, 0x16, 0x0C, + 0x06, 0x04, 0x06, 0x05, 0x07, 0x07, 0x02, 0x02, 0x05, 0x09, 0x09, 0x0E, + 0x01, 0x01, 0x01, 0x15, 0x0B, 0x0C, 0x00, 0x00, 0x00, 0x05, 0x00, 0x62, + 0x00, 0xA4, 0x0A, 0x6A, 0x02, 0xDB, 0x01, 0x58, 0x01, 0x71, 0x01, 0xA1, + 0x01, 0xA7, 0x01, 0xAD, 0x00, 0x00, 0x01, 0x32, 0x3F, 0x01, 0x3E, 0x01, + 0x35, 0x31, 0x35, 0x34, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x23, 0x22, 0x07, 0x0E, 0x01, 0x15, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x23, 0x06, 0x27, 0x26, 0x07, 0x06, 0x2B, + 0x08, 0x22, 0x27, 0x26, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x07, 0x06, + 0x27, 0x26, 0x37, 0x36, 0x27, 0x23, 0x22, 0x15, 0x16, 0x07, 0x06, 0x2B, + 0x07, 0x06, 0x15, 0x14, 0x17, 0x15, 0x26, 0x37, 0x36, 0x27, 0x26, 0x23, + 0x22, 0x07, 0x22, 0x27, 0x22, 0x27, 0x26, 0x27, 0x26, 0x23, 0x22, 0x27, + 0x26, 0x23, 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x22, 0x07, + 0x06, 0x27, 0x26, 0x27, 0x26, 0x37, 0x0E, 0x01, 0x07, 0x0E, 0x03, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x22, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x0F, 0x01, 0x22, 0x0E, 0x01, + 0x23, 0x06, 0x15, 0x14, 0x16, 0x15, 0x14, 0x17, 0x14, 0x17, 0x15, 0x14, + 0x07, 0x06, 0x17, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x3E, 0x01, 0x35, 0x36, 0x3F, 0x01, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x06, 0x15, 0x06, 0x15, 0x33, 0x32, 0x16, + 0x17, 0x32, 0x1E, 0x01, 0x33, 0x16, 0x17, 0x16, 0x07, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x15, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x37, 0x36, 0x27, 0x26, + 0x27, 0x26, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x32, 0x37, 0x33, 0x32, 0x37, 0x36, 0x37, 0x36, + 0x33, 0x32, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x17, 0x16, 0x32, + 0x17, 0x32, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x17, 0x1E, 0x01, 0x33, 0x16, 0x37, 0x36, 0x17, 0x16, + 0x33, 0x32, 0x37, 0x3B, 0x01, 0x32, 0x37, 0x33, 0x36, 0x33, 0x16, 0x33, + 0x32, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x37, 0x36, 0x37, 0x36, + 0x3B, 0x08, 0x32, 0x37, 0x36, 0x37, 0x36, 0x27, 0x26, 0x27, 0x26, 0x07, + 0x06, 0x27, 0x26, 0x17, 0x16, 0x05, 0x06, 0x27, 0x22, 0x26, 0x27, 0x26, + 0x23, 0x22, 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, 0x33, 0x32, 0x16, 0x17, + 0x33, 0x32, 0x17, 0x16, 0x07, 0x06, 0x25, 0x22, 0x27, 0x26, 0x07, 0x06, + 0x23, 0x06, 0x27, 0x22, 0x27, 0x23, 0x06, 0x27, 0x26, 0x37, 0x36, 0x17, + 0x16, 0x3B, 0x0A, 0x32, 0x37, 0x32, 0x17, 0x16, 0x31, 0x14, 0x33, 0x14, + 0x17, 0x16, 0x37, 0x36, 0x33, 0x16, 0x17, 0x16, 0x17, 0x25, 0x35, 0x33, + 0x16, 0x33, 0x06, 0x27, 0x2B, 0x01, 0x36, 0x33, 0x14, 0x0A, 0x35, 0x06, + 0x0E, 0x12, 0x0D, 0x02, 0x01, 0x01, 0x09, 0x09, 0x06, 0x05, 0x07, 0x0C, + 0x0F, 0x0E, 0x11, 0x08, 0x04, 0x08, 0x06, 0x09, 0x01, 0x01, 0x03, 0x01, + 0x05, 0x05, 0x06, 0x06, 0x06, 0x07, 0x08, 0x36, 0x36, 0x4A, 0x22, 0x70, + 0x6F, 0x5A, 0x5A, 0x5A, 0x5A, 0x59, 0x5A, 0x38, 0x1C, 0x25, 0x2F, 0x10, + 0x03, 0x03, 0x03, 0x02, 0x12, 0x12, 0x09, 0x03, 0x03, 0x03, 0x06, 0x0A, + 0x07, 0x02, 0x02, 0x02, 0x07, 0x13, 0x13, 0x58, 0x58, 0x2D, 0x2D, 0x08, + 0x02, 0x01, 0x0A, 0x02, 0x01, 0x06, 0x06, 0x0B, 0x0E, 0x05, 0x0F, 0x08, + 0x0D, 0x0A, 0x02, 0x01, 0x02, 0x01, 0x03, 0x02, 0x02, 0x04, 0x09, 0x08, + 0x09, 0x04, 0x0C, 0x01, 0x09, 0x07, 0x01, 0x02, 0x01, 0x0B, 0x05, 0x06, + 0x06, 0x01, 0x0F, 0x3B, 0x0E, 0x0F, 0x3C, 0x1C, 0x3A, 0x0F, 0x0E, 0x3C, + 0x0E, 0x07, 0x1E, 0x07, 0x08, 0x1E, 0x08, 0x02, 0x0A, 0x02, 0x08, 0x05, + 0x08, 0x04, 0x05, 0x08, 0x15, 0x15, 0x2A, 0x03, 0x08, 0x0C, 0x05, 0x14, + 0x02, 0x01, 0x01, 0x01, 0x01, 0x08, 0x11, 0x0F, 0x05, 0x14, 0x05, 0x04, + 0x17, 0x07, 0x14, 0x0A, 0x06, 0x04, 0x02, 0x05, 0x03, 0x06, 0x09, 0x0A, + 0x0A, 0x0B, 0x0F, 0x1C, 0x38, 0x27, 0x2C, 0x02, 0x01, 0x15, 0x03, 0x0E, + 0x03, 0x02, 0x06, 0x09, 0x03, 0x0D, 0x03, 0x08, 0x04, 0x05, 0x05, 0x03, + 0x0F, 0x04, 0x10, 0x07, 0x08, 0x0C, 0x0C, 0x02, 0x0E, 0x0C, 0x0E, 0x18, + 0x08, 0x16, 0x0B, 0x07, 0x1C, 0x06, 0x11, 0x18, 0x13, 0x0B, 0x0A, 0x06, + 0x08, 0x06, 0x01, 0x0D, 0x03, 0x0C, 0x03, 0x0C, 0x06, 0x01, 0x0B, 0x06, + 0x0E, 0x0B, 0x17, 0x16, 0x0A, 0x16, 0x0F, 0x07, 0x0D, 0x04, 0x0A, 0x06, + 0x0E, 0x0B, 0x10, 0x03, 0x07, 0x0C, 0x07, 0x22, 0x0D, 0x05, 0x14, 0x05, + 0x03, 0x10, 0x04, 0x10, 0x07, 0x08, 0x09, 0x08, 0x08, 0x10, 0x0B, 0x0A, + 0x10, 0x11, 0x19, 0x08, 0x1C, 0x07, 0x11, 0x13, 0x14, 0x0F, 0x14, 0x15, + 0x1D, 0x0D, 0x2A, 0x2A, 0x3C, 0x1E, 0x59, 0x1E, 0x3B, 0x1D, 0x3C, 0x0E, + 0x1E, 0x0F, 0x1E, 0x03, 0x0D, 0x03, 0x0A, 0x09, 0x0C, 0x05, 0x0A, 0x08, + 0x59, 0x59, 0x59, 0x59, 0x5A, 0x59, 0x2F, 0x2F, 0x0C, 0x09, 0x09, 0x01, + 0x02, 0x05, 0x06, 0x0E, 0x0B, 0x10, 0x11, 0x06, 0x03, 0x0E, 0x0D, 0xF9, + 0x33, 0x0A, 0x16, 0x06, 0x18, 0x05, 0x07, 0x0D, 0x0B, 0x08, 0x05, 0x02, + 0x02, 0x02, 0x05, 0x1A, 0x08, 0x1E, 0x06, 0x14, 0x0B, 0x06, 0x07, 0x01, + 0x01, 0x06, 0x76, 0x69, 0x33, 0x4C, 0x50, 0x1A, 0x34, 0x28, 0x27, 0x15, + 0x0B, 0x20, 0x0A, 0x06, 0x08, 0x0B, 0x05, 0x09, 0x07, 0x09, 0x11, 0x11, + 0x28, 0x27, 0x4F, 0x4F, 0x4D, 0x4D, 0x14, 0x14, 0x05, 0x03, 0x04, 0x02, + 0x01, 0x01, 0x01, 0x06, 0x06, 0x04, 0x07, 0x05, 0x01, 0x03, 0x02, 0xF9, + 0x6A, 0x02, 0x01, 0x01, 0x03, 0x43, 0x01, 0x02, 0x01, 0x01, 0x02, 0x4D, + 0x02, 0x03, 0x04, 0x02, 0x0B, 0x1D, 0x0A, 0x03, 0x04, 0x02, 0x03, 0x03, + 0x03, 0x08, 0x0E, 0x0A, 0x09, 0x0A, 0x04, 0x03, 0x03, 0x07, 0x03, 0x0A, + 0x01, 0x09, 0x0B, 0x0C, 0x06, 0x07, 0x01, 0x01, 0x05, 0x02, 0x02, 0x01, + 0x01, 0x03, 0x01, 0x07, 0x09, 0x0B, 0x0F, 0x06, 0x07, 0x06, 0x03, 0x08, + 0x07, 0x01, 0x05, 0x09, 0x02, 0x03, 0x02, 0x05, 0x07, 0x03, 0x0B, 0x04, + 0x09, 0x07, 0x0A, 0x08, 0x01, 0x01, 0x07, 0x02, 0x05, 0x05, 0x02, 0x01, + 0x02, 0x02, 0x02, 0x07, 0x14, 0x02, 0x0F, 0x01, 0x0C, 0x0D, 0x05, 0x02, + 0x09, 0x08, 0x06, 0x02, 0x04, 0x02, 0x02, 0x05, 0x02, 0x06, 0x01, 0x02, + 0x04, 0x02, 0x01, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x06, + 0x06, 0x02, 0x02, 0x02, 0x04, 0x02, 0x06, 0x01, 0x01, 0x02, 0x0B, 0x0E, + 0x3A, 0x0F, 0x3A, 0x1D, 0x1F, 0x0F, 0x2F, 0x13, 0x12, 0x1B, 0x04, 0x06, + 0x07, 0x02, 0x09, 0x03, 0x01, 0x0A, 0x03, 0x08, 0x0B, 0x07, 0x0A, 0x04, + 0x0D, 0x01, 0x07, 0x0C, 0x12, 0x0F, 0x07, 0x08, 0x04, 0x06, 0x0E, 0x0A, + 0x08, 0x06, 0x02, 0x03, 0x07, 0x02, 0x01, 0x01, 0x01, 0x01, 0x06, 0x10, + 0x0D, 0x11, 0x0B, 0x07, 0x1C, 0x07, 0x1C, 0x0D, 0x0F, 0x10, 0x11, 0x10, + 0x0F, 0x06, 0x06, 0x04, 0x07, 0x01, 0x04, 0x03, 0x02, 0x05, 0x01, 0x04, + 0x05, 0x04, 0x0D, 0x08, 0x0B, 0x14, 0x0E, 0x02, 0x1D, 0x06, 0x19, 0x07, + 0x18, 0x0D, 0x02, 0x1D, 0x12, 0x05, 0x03, 0x02, 0x01, 0x01, 0x02, 0x02, + 0x02, 0x0B, 0x10, 0x04, 0x07, 0x0E, 0x0A, 0x06, 0x01, 0x01, 0x01, 0x03, + 0x01, 0x04, 0x02, 0x02, 0x04, 0x05, 0x02, 0x02, 0x09, 0x0A, 0x03, 0x03, + 0x02, 0x01, 0x03, 0x01, 0x01, 0x02, 0x06, 0x06, 0x01, 0x01, 0x01, 0x01, + 0x02, 0x01, 0x04, 0x01, 0x01, 0x03, 0x04, 0x02, 0x02, 0x0B, 0x0C, 0x0A, + 0x0E, 0x10, 0x0F, 0x05, 0x04, 0x04, 0x05, 0x0D, 0x09, 0x02, 0x01, 0x90, + 0x0C, 0x01, 0x01, 0x01, 0x01, 0x08, 0x04, 0x09, 0x08, 0x08, 0x18, 0x01, + 0x01, 0x08, 0x0B, 0x0A, 0x09, 0x74, 0x01, 0x02, 0x02, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x04, 0x03, 0x0B, 0x05, 0x01, 0x01, 0x01, 0x02, 0x01, 0x02, + 0x01, 0x01, 0x02, 0x01, 0x01, 0x02, 0x01, 0x03, 0x03, 0x85, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x00, 0x02, 0x00, 0x5E, 0x00, 0xBB, 0x09, 0xE8, + 0x02, 0xC6, 0x00, 0xC7, 0x00, 0xE7, 0x00, 0x00, 0x01, 0x3D, 0x01, 0x23, + 0x22, 0x27, 0x2B, 0x07, 0x22, 0x26, 0x07, 0x26, 0x06, 0x23, 0x22, 0x27, + 0x26, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x0F, 0x02, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x35, 0x26, 0x23, + 0x22, 0x27, 0x22, 0x1D, 0x02, 0x14, 0x17, 0x16, 0x15, 0x14, 0x07, 0x06, + 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x1D, 0x01, 0x33, 0x32, 0x35, 0x36, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x33, 0x16, 0x3B, 0x02, 0x32, 0x37, 0x36, 0x17, 0x16, 0x07, 0x06, 0x3B, + 0x01, 0x32, 0x17, 0x26, 0x37, 0x34, 0x33, 0x36, 0x35, 0x26, 0x3F, 0x01, + 0x36, 0x15, 0x14, 0x37, 0x36, 0x33, 0x32, 0x37, 0x36, 0x17, 0x16, 0x17, + 0x16, 0x17, 0x16, 0x07, 0x06, 0x33, 0x16, 0x3B, 0x01, 0x36, 0x17, 0x16, + 0x3B, 0x04, 0x32, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x33, + 0x32, 0x17, 0x3D, 0x03, 0x26, 0x23, 0x06, 0x23, 0x22, 0x26, 0x3F, 0x01, + 0x33, 0x16, 0x05, 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, + 0x27, 0x26, 0x37, 0x14, 0x17, 0x14, 0x33, 0x26, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x17, 0x16, 0x33, 0x32, 0x17, 0x16, 0x17, 0x16, 0x06, 0x09, 0xE8, + 0xC6, 0x87, 0x43, 0xCA, 0xC7, 0x73, 0x72, 0x73, 0x73, 0x41, 0x42, 0x09, + 0x22, 0x06, 0x08, 0x84, 0x14, 0x46, 0x3C, 0x40, 0x40, 0x15, 0x14, 0x14, + 0x11, 0x0A, 0x14, 0x1A, 0x04, 0x1B, 0x1B, 0x09, 0x0E, 0x0D, 0x0D, 0x0B, + 0x0C, 0x0C, 0x0A, 0x11, 0x0F, 0x0C, 0x16, 0x08, 0x1E, 0x05, 0x1A, 0x13, + 0x1B, 0x13, 0x14, 0x12, 0x07, 0x01, 0x09, 0x0A, 0x0B, 0x11, 0x01, 0x01, + 0x03, 0x04, 0x16, 0x16, 0x11, 0x17, 0x16, 0x20, 0x0B, 0x0A, 0x08, 0x05, + 0x08, 0x05, 0x0A, 0x21, 0x2D, 0x2B, 0x37, 0x01, 0x01, 0x27, 0x0F, 0x03, + 0x16, 0x06, 0x12, 0x02, 0x0D, 0x0B, 0x2E, 0x68, 0x2B, 0x1E, 0x21, 0x1F, + 0x28, 0x05, 0x16, 0x03, 0x0B, 0x14, 0x07, 0x0E, 0x0D, 0x0C, 0x0C, 0x0A, + 0x08, 0x0F, 0x3A, 0x3A, 0x0A, 0x1E, 0x18, 0x0F, 0x02, 0x02, 0x02, 0x06, + 0x16, 0x0E, 0x07, 0x01, 0x01, 0x05, 0x0E, 0x05, 0x06, 0x25, 0x22, 0x31, + 0x30, 0x0F, 0x2C, 0x3F, 0x37, 0x33, 0x05, 0x0F, 0x09, 0x0A, 0x05, 0x01, + 0x02, 0x04, 0x07, 0x10, 0x16, 0x01, 0x51, 0x50, 0x0F, 0x52, 0x52, 0x51, + 0x52, 0x2C, 0x19, 0x26, 0x14, 0x07, 0x04, 0x05, 0x05, 0x0D, 0x0E, 0x14, + 0x0E, 0x0E, 0x16, 0x0B, 0x0E, 0x04, 0x03, 0x01, 0x06, 0x1E, 0x0A, 0xF9, + 0x2B, 0x0C, 0x11, 0x10, 0x11, 0x15, 0x18, 0x19, 0x11, 0x11, 0x06, 0x06, + 0x17, 0x01, 0x16, 0x02, 0x03, 0x06, 0x0A, 0x04, 0x0B, 0x0F, 0x09, 0x12, + 0x1B, 0x0B, 0x11, 0x08, 0x04, 0x02, 0x02, 0x46, 0x31, 0x2D, 0x01, 0x06, + 0x03, 0x1E, 0x0C, 0x04, 0x04, 0x09, 0x0A, 0x04, 0x06, 0x09, 0x05, 0x08, + 0x0C, 0x02, 0x0F, 0x0F, 0x04, 0x0C, 0x0C, 0x01, 0x03, 0x09, 0x0B, 0x04, + 0x09, 0x05, 0x05, 0x08, 0x03, 0x09, 0x02, 0x09, 0x01, 0x04, 0x09, 0x08, + 0x0A, 0x03, 0x04, 0x03, 0x01, 0x03, 0x0D, 0x0D, 0x20, 0x10, 0x11, 0x21, + 0x22, 0x27, 0x27, 0x18, 0x1A, 0x11, 0x18, 0x09, 0x0C, 0x08, 0x07, 0x16, + 0x0D, 0x0B, 0x09, 0x0E, 0x31, 0x27, 0x27, 0x19, 0x04, 0x04, 0x01, 0x0E, + 0x17, 0x05, 0x21, 0x09, 0x16, 0x03, 0x0D, 0x06, 0x17, 0x12, 0x1D, 0x16, + 0x10, 0x0F, 0x0B, 0x02, 0x05, 0x01, 0x02, 0x02, 0x02, 0x0B, 0x0A, 0x07, + 0x05, 0x01, 0x02, 0x02, 0x04, 0x02, 0x04, 0x05, 0x01, 0x04, 0x05, 0x03, + 0x01, 0x03, 0x03, 0x02, 0x05, 0x04, 0x06, 0x1B, 0x03, 0x03, 0x05, 0x04, + 0x09, 0x01, 0x06, 0x06, 0x03, 0x02, 0x03, 0x05, 0x01, 0x0D, 0x03, 0x03, + 0x01, 0x02, 0x0F, 0x03, 0x0A, 0x0A, 0x04, 0x0C, 0x01, 0x1F, 0x1E, 0x12, + 0x11, 0x01, 0x01, 0x02, 0x02, 0x0C, 0x01, 0xDC, 0x0F, 0x08, 0x07, 0x06, + 0x08, 0x05, 0x05, 0x0A, 0x0B, 0x17, 0x16, 0x11, 0x1B, 0x10, 0x19, 0x01, + 0x10, 0x12, 0x21, 0x08, 0x05, 0x02, 0x01, 0x01, 0x02, 0x14, 0x0A, 0x12, + 0x00, 0x03, 0x00, 0x63, 0x00, 0x72, 0x07, 0x72, 0x03, 0x0D, 0x01, 0x2B, + 0x01, 0x3D, 0x01, 0x54, 0x00, 0x00, 0x01, 0x34, 0x37, 0x3E, 0x02, 0x35, + 0x36, 0x37, 0x36, 0x37, 0x26, 0x27, 0x22, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, + 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x07, 0x36, 0x27, + 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x34, 0x37, 0x3E, 0x01, 0x35, + 0x34, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x34, 0x37, 0x36, 0x35, 0x34, + 0x37, 0x36, 0x37, 0x36, 0x33, 0x35, 0x3B, 0x02, 0x16, 0x37, 0x32, 0x37, + 0x36, 0x33, 0x32, 0x17, 0x16, 0x3B, 0x0C, 0x32, 0x17, 0x16, 0x17, 0x16, + 0x3B, 0x01, 0x15, 0x06, 0x17, 0x23, 0x15, 0x33, 0x16, 0x32, 0x17, 0x36, + 0x33, 0x32, 0x17, 0x35, 0x16, 0x15, 0x06, 0x15, 0x3B, 0x03, 0x32, 0x37, + 0x36, 0x17, 0x16, 0x17, 0x16, 0x15, 0x14, 0x17, 0x14, 0x07, 0x14, 0x07, + 0x06, 0x2B, 0x04, 0x1D, 0x01, 0x23, 0x06, 0x27, 0x26, 0x2B, 0x03, 0x06, + 0x07, 0x16, 0x07, 0x06, 0x23, 0x15, 0x23, 0x1D, 0x01, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x2B, 0x01, 0x22, 0x27, 0x26, 0x27, + 0x22, 0x07, 0x06, 0x23, 0x22, 0x07, 0x06, 0x07, 0x06, 0x23, 0x14, 0x23, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x27, 0x26, 0x35, 0x34, 0x27, 0x26, 0x3D, 0x01, 0x34, 0x26, + 0x27, 0x2B, 0x02, 0x06, 0x23, 0x22, 0x07, 0x06, 0x23, 0x14, 0x07, 0x06, + 0x07, 0x06, 0x0F, 0x01, 0x0E, 0x01, 0x07, 0x0E, 0x03, 0x07, 0x34, 0x06, + 0x23, 0x06, 0x27, 0x26, 0x2B, 0x02, 0x22, 0x27, 0x26, 0x37, 0x23, 0x14, + 0x07, 0x06, 0x15, 0x14, 0x07, 0x0E, 0x01, 0x14, 0x0E, 0x01, 0x0F, 0x01, + 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x15, 0x06, 0x23, 0x06, 0x17, 0x16, + 0x07, 0x06, 0x2B, 0x03, 0x22, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x35, + 0x34, 0x37, 0x36, 0x37, 0x01, 0x35, 0x07, 0x15, 0x14, 0x17, 0x16, 0x17, + 0x16, 0x32, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x35, 0x07, 0x35, + 0x07, 0x06, 0x15, 0x06, 0x07, 0x23, 0x15, 0x06, 0x15, 0x23, 0x15, 0x06, + 0x15, 0x06, 0x07, 0x06, 0x15, 0x33, 0x34, 0x27, 0x26, 0x01, 0xA3, 0x0D, + 0x04, 0x07, 0x04, 0x06, 0x06, 0x08, 0x05, 0x07, 0x0D, 0x04, 0x10, 0x03, + 0x10, 0x06, 0x07, 0x10, 0x08, 0x1C, 0x07, 0x1E, 0x0D, 0x0E, 0x15, 0x16, + 0x0E, 0x02, 0x0E, 0x0C, 0x05, 0x08, 0x08, 0x07, 0x0A, 0x08, 0x06, 0x08, + 0x09, 0x01, 0x07, 0x08, 0x04, 0x03, 0x04, 0x03, 0x02, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x06, 0x02, 0x06, 0x04, 0x03, 0x02, 0x01, 0x02, 0x04, + 0x05, 0x07, 0x98, 0x97, 0x36, 0x1B, 0x1B, 0x05, 0x0A, 0x05, 0x09, 0x04, + 0x02, 0x02, 0x02, 0x0B, 0x0A, 0xAE, 0xAE, 0xAD, 0xAE, 0x63, 0x63, 0x17, + 0x17, 0x05, 0x04, 0x02, 0x04, 0x03, 0x02, 0x01, 0x04, 0x08, 0x01, 0x01, + 0x04, 0x04, 0x01, 0x02, 0x01, 0x03, 0x07, 0x05, 0x06, 0x09, 0x01, 0x47, + 0x46, 0x2F, 0x2E, 0x01, 0x14, 0x0F, 0x05, 0x06, 0x01, 0x01, 0x01, 0x01, + 0x02, 0x01, 0x09, 0x28, 0x2A, 0x17, 0x17, 0x01, 0x04, 0x18, 0x10, 0x11, + 0x1E, 0x1D, 0x0B, 0x08, 0x02, 0x07, 0x09, 0x0A, 0x03, 0x25, 0x0A, 0x04, + 0x06, 0x06, 0x04, 0x09, 0x09, 0x04, 0x06, 0x19, 0x26, 0x0B, 0x0F, 0x11, + 0x06, 0x2C, 0x16, 0x2C, 0x15, 0x04, 0x05, 0x06, 0x02, 0x02, 0x01, 0x01, + 0x01, 0x02, 0x03, 0x05, 0x01, 0x04, 0x08, 0x04, 0x06, 0x0C, 0x02, 0x06, + 0x11, 0x0A, 0x1B, 0x1A, 0x02, 0x02, 0x01, 0x01, 0x30, 0x31, 0x1A, 0x09, + 0x12, 0x07, 0x03, 0x04, 0x07, 0x05, 0x06, 0x01, 0x06, 0x01, 0x09, 0x02, + 0x06, 0x01, 0x01, 0x06, 0x04, 0x08, 0x01, 0x08, 0x01, 0x10, 0x1A, 0x22, + 0x0D, 0x1F, 0x1F, 0x03, 0x08, 0x07, 0x04, 0x05, 0x03, 0x03, 0x02, 0x01, + 0x03, 0x05, 0x08, 0x05, 0x27, 0x07, 0x19, 0x06, 0x12, 0x01, 0x04, 0x01, + 0x04, 0x04, 0x01, 0x02, 0x03, 0x04, 0x07, 0x0D, 0x48, 0x49, 0x14, 0x0E, + 0x17, 0x0A, 0x05, 0x03, 0x06, 0x13, 0x14, 0x04, 0x02, 0x07, 0x61, 0x03, + 0x08, 0x07, 0x0A, 0x1A, 0x09, 0x0E, 0x04, 0x01, 0x07, 0x05, 0x05, 0x85, + 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x04, 0x01, 0x02, 0x18, + 0x04, 0x06, 0x01, 0x73, 0x02, 0x19, 0x07, 0x0E, 0x06, 0x01, 0x0D, 0x09, + 0x0E, 0x07, 0x06, 0x01, 0x01, 0x01, 0x02, 0x02, 0x01, 0x02, 0x02, 0x05, + 0x01, 0x06, 0x05, 0x05, 0x05, 0x05, 0x09, 0x02, 0x08, 0x04, 0x03, 0x04, + 0x08, 0x07, 0x05, 0x06, 0x06, 0x08, 0x02, 0x07, 0x06, 0x04, 0x06, 0x03, + 0x08, 0x04, 0x08, 0x03, 0x12, 0x03, 0x02, 0x09, 0x02, 0x08, 0x04, 0x08, + 0x05, 0x02, 0x08, 0x07, 0x0E, 0x04, 0x06, 0x07, 0x09, 0x03, 0x07, 0x07, + 0x08, 0x01, 0x02, 0x02, 0x02, 0x01, 0x01, 0x02, 0x02, 0x02, 0x03, 0x04, + 0x15, 0x0A, 0x0B, 0x02, 0x01, 0x01, 0x03, 0x02, 0x01, 0x01, 0x09, 0x07, + 0x09, 0x02, 0x01, 0x05, 0x07, 0x04, 0x03, 0x0B, 0x09, 0x04, 0x09, 0x04, + 0x03, 0x0A, 0x07, 0x06, 0x06, 0x09, 0x01, 0x01, 0x03, 0x01, 0x08, 0x02, + 0x02, 0x03, 0x0A, 0x0B, 0x01, 0x0C, 0x0A, 0x0C, 0x07, 0x07, 0x08, 0x06, + 0x0D, 0x05, 0x05, 0x09, 0x01, 0x02, 0x03, 0x04, 0x01, 0x02, 0x01, 0x02, + 0x02, 0x01, 0x01, 0x02, 0x03, 0x08, 0x04, 0x0A, 0x16, 0x04, 0x0D, 0x05, + 0x04, 0x05, 0x05, 0x12, 0x04, 0x08, 0x06, 0x05, 0x0C, 0x02, 0x07, 0x02, + 0x01, 0x01, 0x01, 0x07, 0x02, 0x04, 0x04, 0x09, 0x01, 0x09, 0x01, 0x07, + 0x02, 0x01, 0x07, 0x04, 0x04, 0x04, 0x01, 0x08, 0x09, 0x02, 0x02, 0x02, + 0x01, 0x07, 0x04, 0x04, 0x04, 0x05, 0x02, 0x06, 0x02, 0x06, 0x02, 0x09, + 0x12, 0x0A, 0x4E, 0x0E, 0x34, 0x0C, 0x24, 0x01, 0x08, 0x04, 0x04, 0x01, + 0x04, 0x05, 0x04, 0x04, 0x01, 0x02, 0x09, 0x05, 0x04, 0x04, 0x06, 0x09, + 0x2A, 0x2B, 0x0B, 0x00, 0xFF, 0x01, 0x01, 0x0D, 0x08, 0x06, 0x0D, 0x01, + 0x02, 0x01, 0x02, 0x09, 0x02, 0x0D, 0x09, 0x02, 0x03, 0x10, 0x02, 0x01, + 0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x04, + 0x06, 0x02, 0x07, 0x05, 0x05, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x60, + 0x00, 0xA5, 0x0A, 0xDA, 0x02, 0xDA, 0x01, 0x7E, 0x01, 0x94, 0x00, 0x00, + 0x01, 0x26, 0x37, 0x36, 0x27, 0x26, 0x07, 0x06, 0x23, 0x22, 0x35, 0x34, + 0x27, 0x26, 0x07, 0x22, 0x06, 0x07, 0x06, 0x07, 0x06, 0x15, 0x22, 0x26, + 0x27, 0x26, 0x23, 0x14, 0x17, 0x14, 0x17, 0x2B, 0x05, 0x22, 0x27, 0x2B, + 0x02, 0x26, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x23, 0x26, 0x07, 0x06, + 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x2B, 0x01, 0x22, 0x27, 0x2B, 0x01, + 0x06, 0x35, 0x22, 0x27, 0x22, 0x17, 0x26, 0x27, 0x22, 0x07, 0x22, 0x07, + 0x06, 0x37, 0x36, 0x2B, 0x01, 0x26, 0x37, 0x36, 0x26, 0x07, 0x22, 0x27, + 0x22, 0x06, 0x17, 0x26, 0x2B, 0x01, 0x14, 0x07, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x22, 0x06, 0x07, 0x06, 0x07, 0x06, 0x23, + 0x06, 0x27, 0x26, 0x27, 0x26, 0x07, 0x0E, 0x01, 0x23, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x22, 0x06, 0x07, 0x06, 0x23, 0x22, 0x07, + 0x06, 0x27, 0x23, 0x22, 0x0F, 0x01, 0x06, 0x07, 0x06, 0x2B, 0x01, 0x22, + 0x26, 0x23, 0x06, 0x27, 0x26, 0x23, 0x22, 0x07, 0x06, 0x07, 0x06, 0x17, + 0x16, 0x17, 0x14, 0x16, 0x15, 0x14, 0x17, 0x16, 0x17, 0x14, 0x17, 0x16, + 0x17, 0x14, 0x16, 0x15, 0x16, 0x17, 0x14, 0x17, 0x16, 0x17, 0x16, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x3E, 0x02, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x32, 0x36, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, + 0x3F, 0x01, 0x3E, 0x01, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x14, 0x17, 0x16, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x3F, 0x01, 0x36, 0x27, 0x26, 0x37, 0x3E, 0x01, 0x3F, 0x01, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x3F, 0x01, 0x3E, 0x01, 0x33, 0x36, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x3F, + 0x01, 0x3E, 0x01, 0x27, 0x16, 0x3B, 0x01, 0x32, 0x37, 0x3E, 0x01, 0x3B, + 0x01, 0x32, 0x37, 0x32, 0x37, 0x32, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x16, 0x37, 0x32, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x17, 0x16, 0x33, 0x16, 0x3F, 0x01, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x27, 0x34, 0x37, 0x34, 0x26, 0x37, + 0x36, 0x37, 0x36, 0x33, 0x16, 0x33, 0x37, 0x36, 0x33, 0x16, 0x3B, 0x01, + 0x26, 0x35, 0x27, 0x26, 0x35, 0x32, 0x37, 0x32, 0x3D, 0x01, 0x26, 0x27, + 0x17, 0x15, 0x26, 0x27, 0x17, 0x05, 0x26, 0x17, 0x16, 0x3B, 0x01, 0x32, + 0x17, 0x16, 0x17, 0x14, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, + 0x37, 0x34, 0x27, 0x0A, 0xD4, 0x05, 0x06, 0x05, 0x10, 0x0C, 0x09, 0x07, + 0x0E, 0x07, 0x03, 0x06, 0x0E, 0x04, 0x10, 0x04, 0x0F, 0x04, 0x06, 0x03, + 0x0D, 0x04, 0x07, 0x0D, 0x01, 0x01, 0xAA, 0xAA, 0xAA, 0xAA, 0x53, 0x53, + 0x1C, 0x0D, 0x2A, 0x16, 0x17, 0x07, 0x07, 0x0A, 0x05, 0x06, 0x02, 0x04, + 0x05, 0x05, 0x08, 0x09, 0x04, 0x0B, 0x10, 0x0B, 0x14, 0x0D, 0x1B, 0x27, + 0x0F, 0x07, 0x16, 0x08, 0x06, 0x02, 0x05, 0x08, 0x06, 0x0F, 0x20, 0x20, + 0x0F, 0x14, 0x1A, 0x29, 0x02, 0x01, 0x07, 0x0B, 0x07, 0x01, 0x01, 0x05, + 0x05, 0x0D, 0x0B, 0x08, 0x07, 0x02, 0x02, 0x03, 0x05, 0x0D, 0x12, 0x07, + 0x06, 0x15, 0x05, 0x11, 0x10, 0x08, 0x10, 0x08, 0x07, 0x0C, 0x03, 0x0C, + 0x03, 0x1C, 0x0E, 0x12, 0x17, 0x0B, 0x08, 0x03, 0x0C, 0x04, 0x0C, 0x05, + 0x08, 0x0B, 0x03, 0x0D, 0x0A, 0x02, 0x05, 0x0E, 0x06, 0x0E, 0x02, 0x38, + 0x21, 0x1D, 0x3C, 0x1C, 0x0C, 0x0D, 0x1B, 0x07, 0x1E, 0x07, 0x1E, 0x0F, + 0x19, 0x0C, 0x18, 0x0C, 0x0B, 0x05, 0x06, 0x03, 0x01, 0x02, 0x08, 0x04, + 0x0C, 0x0C, 0x0C, 0x0D, 0x06, 0x07, 0x08, 0x05, 0x13, 0x11, 0x0F, 0x0B, + 0x04, 0x03, 0x02, 0x01, 0x02, 0x01, 0x02, 0x02, 0x02, 0x01, 0x02, 0x04, + 0x02, 0x01, 0x08, 0x09, 0x14, 0x13, 0x10, 0x05, 0x0A, 0x0A, 0x01, 0x01, + 0x0D, 0x09, 0x0A, 0x14, 0x10, 0x13, 0x10, 0x03, 0x06, 0x07, 0x03, 0x0C, + 0x06, 0x0A, 0x0A, 0x06, 0x0E, 0x0A, 0x28, 0x09, 0x01, 0x08, 0x02, 0x04, + 0x08, 0x07, 0x07, 0x05, 0x08, 0x07, 0x09, 0x05, 0x0A, 0x15, 0x03, 0x0D, + 0x04, 0x08, 0x24, 0x17, 0x16, 0x10, 0x0D, 0x0D, 0x06, 0x02, 0x02, 0x08, + 0x0C, 0x0A, 0x0E, 0x06, 0x05, 0x18, 0x04, 0x0A, 0x07, 0x0F, 0x0D, 0x02, + 0x02, 0x05, 0x01, 0x0C, 0x01, 0x04, 0x01, 0x05, 0x0A, 0x10, 0x12, 0x0A, + 0x21, 0x05, 0x18, 0x05, 0x13, 0x08, 0x07, 0x0B, 0x14, 0x28, 0x29, 0x1A, + 0x0E, 0x0D, 0x0D, 0x0D, 0x07, 0x08, 0x07, 0x0A, 0x05, 0x04, 0x01, 0x0C, + 0x12, 0x1F, 0x20, 0x11, 0x08, 0x21, 0x08, 0x2C, 0x1D, 0x0F, 0x0A, 0x05, + 0x07, 0x06, 0x05, 0x0B, 0x09, 0x09, 0x10, 0x10, 0x0B, 0x16, 0x1E, 0x11, + 0x17, 0x18, 0x39, 0x23, 0x41, 0x1B, 0x0F, 0x3E, 0x0F, 0x34, 0x29, 0x23, + 0x48, 0x2C, 0x3F, 0x18, 0x07, 0x10, 0x0F, 0x0B, 0x0D, 0x0B, 0x0A, 0x10, + 0x10, 0x02, 0x01, 0x08, 0x04, 0x05, 0x06, 0x0A, 0x05, 0x05, 0x09, 0x1B, + 0x09, 0x12, 0x25, 0x4C, 0x70, 0x01, 0x01, 0x01, 0x05, 0x03, 0x05, 0x02, + 0x02, 0x01, 0x02, 0x01, 0x01, 0xF9, 0x61, 0x03, 0x18, 0x0F, 0x11, 0x0D, + 0x07, 0x02, 0x01, 0x02, 0x02, 0x04, 0x18, 0x1A, 0x08, 0x08, 0x06, 0x06, + 0x06, 0x01, 0x02, 0x8E, 0x0B, 0x0A, 0x0A, 0x04, 0x03, 0x01, 0x01, 0x09, + 0x07, 0x05, 0x0B, 0x02, 0x01, 0x01, 0x02, 0x04, 0x04, 0x10, 0x02, 0x01, + 0x01, 0x02, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x02, 0x03, + 0x03, 0x02, 0x02, 0x02, 0x03, 0x09, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, + 0x02, 0x01, 0x02, 0x03, 0x02, 0x01, 0x01, 0x01, 0x04, 0x07, 0x01, 0x06, + 0x03, 0x03, 0x01, 0x01, 0x06, 0x06, 0x01, 0x0F, 0x07, 0x0A, 0x04, 0x02, + 0x0A, 0x03, 0x08, 0x04, 0x03, 0x0A, 0x03, 0x03, 0x04, 0x02, 0x05, 0x01, + 0x0C, 0x05, 0x07, 0x0A, 0x05, 0x01, 0x03, 0x01, 0x04, 0x02, 0x04, 0x01, + 0x02, 0x01, 0x07, 0x08, 0x03, 0x01, 0x03, 0x06, 0x02, 0x02, 0x02, 0x02, + 0x02, 0x03, 0x02, 0x02, 0x01, 0x02, 0x01, 0x02, 0x01, 0x02, 0x03, 0x01, + 0x03, 0x02, 0x02, 0x01, 0x03, 0x02, 0x05, 0x04, 0x15, 0x09, 0x08, 0x0C, + 0x07, 0x03, 0x0C, 0x03, 0x0D, 0x07, 0x0E, 0x20, 0x10, 0x1E, 0x0F, 0x1C, + 0x07, 0x1D, 0x08, 0x11, 0x16, 0x15, 0x12, 0x10, 0x03, 0x03, 0x03, 0x02, + 0x01, 0x02, 0x05, 0x09, 0x03, 0x01, 0x04, 0x06, 0x09, 0x09, 0x09, 0x01, + 0x03, 0x03, 0x01, 0x04, 0x03, 0x04, 0x06, 0x03, 0x06, 0x04, 0x14, 0x06, + 0x05, 0x02, 0x03, 0x04, 0x04, 0x03, 0x03, 0x02, 0x01, 0x06, 0x03, 0x04, + 0x09, 0x02, 0x06, 0x01, 0x03, 0x11, 0x0A, 0x08, 0x06, 0x0C, 0x0D, 0x0D, + 0x04, 0x06, 0x04, 0x02, 0x02, 0x06, 0x08, 0x03, 0x03, 0x04, 0x02, 0x02, + 0x04, 0x09, 0x08, 0x13, 0x10, 0x0E, 0x05, 0x0C, 0x04, 0x08, 0x02, 0x05, + 0x09, 0x07, 0x06, 0x03, 0x06, 0x01, 0x02, 0x01, 0x0E, 0x0F, 0x0F, 0x1B, + 0x01, 0x03, 0x10, 0x09, 0x0C, 0x0B, 0x09, 0x03, 0x0C, 0x03, 0x05, 0x02, + 0x03, 0x01, 0x04, 0x01, 0x01, 0x01, 0x01, 0x01, 0x06, 0x06, 0x0B, 0x09, + 0x05, 0x0A, 0x01, 0x02, 0x02, 0x02, 0x01, 0x03, 0x07, 0x06, 0x08, 0x03, + 0x02, 0x06, 0x01, 0x03, 0x01, 0x01, 0x01, 0x05, 0x03, 0x01, 0x02, 0x04, + 0x01, 0x02, 0x04, 0x0C, 0x01, 0x03, 0x15, 0x0D, 0x08, 0x0D, 0x0E, 0x07, + 0x07, 0x02, 0x02, 0x01, 0x03, 0x01, 0x01, 0x01, 0x03, 0x02, 0x01, 0x01, + 0x01, 0x05, 0x11, 0x0C, 0x04, 0x01, 0x01, 0x04, 0x02, 0x01, 0xA4, 0x0C, + 0x02, 0x01, 0x05, 0x04, 0x0A, 0x08, 0x06, 0x0B, 0x02, 0x02, 0x04, 0x03, + 0x0F, 0x0E, 0x03, 0x02, 0x02, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x55, + 0x00, 0x0C, 0x09, 0x05, 0x03, 0x7A, 0x02, 0x20, 0x02, 0x42, 0x00, 0x00, + 0x01, 0x16, 0x17, 0x16, 0x07, 0x16, 0x0E, 0x01, 0x2B, 0x01, 0x06, 0x22, + 0x07, 0x23, 0x22, 0x07, 0x22, 0x07, 0x06, 0x15, 0x14, 0x17, 0x1E, 0x01, + 0x07, 0x06, 0x15, 0x14, 0x17, 0x16, 0x06, 0x27, 0x14, 0x17, 0x16, 0x07, + 0x16, 0x07, 0x06, 0x1D, 0x02, 0x14, 0x17, 0x14, 0x23, 0x22, 0x17, 0x16, + 0x15, 0x14, 0x17, 0x16, 0x07, 0x22, 0x07, 0x06, 0x35, 0x34, 0x37, 0x36, + 0x3D, 0x03, 0x26, 0x35, 0x34, 0x27, 0x26, 0x3D, 0x03, 0x26, 0x37, 0x36, + 0x37, 0x36, 0x35, 0x34, 0x37, 0x36, 0x26, 0x07, 0x26, 0x35, 0x34, 0x37, + 0x22, 0x27, 0x26, 0x35, 0x34, 0x27, 0x26, 0x15, 0x14, 0x0F, 0x01, 0x06, + 0x27, 0x26, 0x15, 0x14, 0x06, 0x07, 0x06, 0x27, 0x26, 0x07, 0x22, 0x06, + 0x07, 0x06, 0x27, 0x26, 0x37, 0x35, 0x34, 0x23, 0x06, 0x2B, 0x02, 0x22, + 0x27, 0x22, 0x1D, 0x01, 0x06, 0x17, 0x1E, 0x01, 0x37, 0x32, 0x17, 0x16, + 0x15, 0x06, 0x17, 0x16, 0x37, 0x32, 0x1D, 0x08, 0x14, 0x06, 0x15, 0x14, + 0x27, 0x26, 0x2B, 0x02, 0x22, 0x07, 0x06, 0x27, 0x26, 0x07, 0x06, 0x26, + 0x3D, 0x04, 0x34, 0x37, 0x36, 0x27, 0x26, 0x36, 0x37, 0x06, 0x23, 0x22, + 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, 0x23, 0x22, 0x06, 0x07, 0x06, 0x0F, + 0x01, 0x06, 0x07, 0x14, 0x06, 0x07, 0x06, 0x0F, 0x01, 0x0E, 0x01, 0x15, + 0x06, 0x07, 0x06, 0x17, 0x16, 0x07, 0x06, 0x17, 0x16, 0x06, 0x23, 0x22, + 0x07, 0x06, 0x23, 0x06, 0x27, 0x26, 0x35, 0x34, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x35, 0x34, 0x36, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, + 0x26, 0x27, 0x26, 0x35, 0x26, 0x27, 0x26, 0x23, 0x06, 0x27, 0x26, 0x27, + 0x26, 0x35, 0x34, 0x23, 0x06, 0x23, 0x22, 0x07, 0x06, 0x27, 0x26, 0x37, + 0x26, 0x27, 0x22, 0x07, 0x06, 0x27, 0x26, 0x07, 0x06, 0x23, 0x06, 0x15, + 0x16, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x23, 0x22, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x22, 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, + 0x27, 0x26, 0x35, 0x34, 0x26, 0x27, 0x26, 0x35, 0x26, 0x27, 0x26, 0x37, + 0x36, 0x17, 0x36, 0x17, 0x16, 0x3B, 0x02, 0x32, 0x37, 0x36, 0x3B, 0x02, + 0x22, 0x37, 0x36, 0x3F, 0x01, 0x36, 0x35, 0x34, 0x37, 0x36, 0x33, 0x32, + 0x37, 0x36, 0x27, 0x26, 0x35, 0x34, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x33, 0x32, 0x16, 0x17, 0x16, 0x32, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x37, 0x36, 0x33, 0x32, 0x37, 0x36, 0x16, 0x17, 0x36, 0x16, 0x15, 0x32, + 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x17, 0x36, 0x37, 0x36, 0x17, 0x36, + 0x17, 0x16, 0x17, 0x32, 0x17, 0x16, 0x33, 0x16, 0x37, 0x36, 0x33, 0x32, + 0x37, 0x3B, 0x02, 0x32, 0x17, 0x16, 0x32, 0x37, 0x36, 0x16, 0x17, 0x36, + 0x17, 0x16, 0x33, 0x36, 0x3B, 0x01, 0x32, 0x37, 0x36, 0x37, 0x32, 0x36, + 0x33, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x32, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x26, 0x23, + 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, 0x37, 0x36, 0x16, + 0x33, 0x32, 0x17, 0x16, 0x17, 0x36, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x33, 0x32, 0x37, 0x36, 0x17, 0x16, 0x15, 0x06, 0x1D, 0x04, 0x14, + 0x07, 0x06, 0x23, 0x22, 0x07, 0x06, 0x07, 0x06, 0x17, 0x14, 0x3B, 0x02, + 0x32, 0x17, 0x16, 0x37, 0x36, 0x27, 0x26, 0x37, 0x36, 0x35, 0x26, 0x37, + 0x35, 0x26, 0x37, 0x34, 0x3F, 0x01, 0x36, 0x37, 0x36, 0x17, 0x16, 0x17, + 0x16, 0x15, 0x16, 0x33, 0x32, 0x17, 0x16, 0x17, 0x16, 0x15, 0x14, 0x37, + 0x36, 0x3B, 0x03, 0x05, 0x36, 0x32, 0x36, 0x32, 0x37, 0x2B, 0x01, 0x16, + 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x08, 0xD9, 0x0B, 0x11, 0x10, 0x14, 0x02, 0x07, 0x14, 0x0F, 0x40, + 0x30, 0xC0, 0x30, 0x73, 0x4D, 0x27, 0x02, 0x02, 0x01, 0x08, 0x07, 0x06, + 0x01, 0x02, 0x01, 0x01, 0x0A, 0x0A, 0x01, 0x01, 0x03, 0x10, 0x02, 0x03, + 0x01, 0x01, 0x13, 0x02, 0x01, 0x05, 0x01, 0x08, 0x0A, 0x0A, 0x0F, 0x04, + 0x03, 0x01, 0x09, 0x0A, 0x01, 0x02, 0x02, 0x04, 0x03, 0x01, 0x01, 0x07, + 0x07, 0x04, 0x04, 0x01, 0x07, 0x05, 0x04, 0x05, 0x02, 0x06, 0x02, 0x04, + 0x05, 0x02, 0x02, 0x09, 0x0E, 0x0D, 0x0E, 0x04, 0x0F, 0x03, 0x0A, 0x06, + 0x02, 0x02, 0x0B, 0x08, 0x06, 0x4C, 0x4C, 0x16, 0x21, 0x31, 0x02, 0x02, + 0x01, 0x02, 0x02, 0x04, 0x01, 0x04, 0x01, 0x09, 0x03, 0x04, 0x04, 0x02, + 0x0F, 0x0B, 0x11, 0x50, 0x51, 0x11, 0x0B, 0x10, 0x09, 0x04, 0x04, 0x02, + 0x03, 0x02, 0x01, 0x05, 0x02, 0x0C, 0x08, 0x0D, 0x18, 0x13, 0x06, 0x01, + 0x07, 0x06, 0x0A, 0x04, 0x08, 0x02, 0x0A, 0x02, 0x05, 0x09, 0x05, 0x06, + 0x01, 0x03, 0x01, 0x04, 0x01, 0x06, 0x01, 0x01, 0x01, 0x06, 0x04, 0x03, + 0x02, 0x06, 0x03, 0x02, 0x01, 0x03, 0x04, 0x02, 0x06, 0x06, 0x04, 0x1B, + 0x20, 0x26, 0x08, 0x07, 0x05, 0x08, 0x03, 0x06, 0x04, 0x07, 0x06, 0x08, + 0x0C, 0x07, 0x09, 0x06, 0x08, 0x04, 0x01, 0x02, 0x02, 0x04, 0x01, 0x01, + 0x07, 0x06, 0x01, 0x03, 0x17, 0x0F, 0x0B, 0x11, 0x24, 0x24, 0x0E, 0x0A, + 0x04, 0x03, 0x0B, 0x12, 0x0A, 0x0F, 0x0D, 0x04, 0x03, 0x04, 0x05, 0x05, + 0x02, 0x07, 0x26, 0x34, 0x2D, 0x32, 0x02, 0x03, 0x04, 0x02, 0x03, 0x01, + 0x01, 0x04, 0x01, 0x06, 0x03, 0x09, 0x02, 0x0B, 0x0D, 0x0B, 0x0C, 0x09, + 0x08, 0x07, 0x08, 0x07, 0x06, 0x02, 0x01, 0x03, 0x02, 0x01, 0x1D, 0x05, + 0x12, 0x0B, 0x0F, 0x50, 0x4F, 0x39, 0x2B, 0x30, 0x34, 0x1C, 0x1B, 0x01, + 0x04, 0x01, 0x02, 0x01, 0x03, 0x07, 0x05, 0x07, 0x05, 0x06, 0x07, 0x05, + 0x05, 0x05, 0x03, 0x0A, 0x06, 0x06, 0x06, 0x07, 0x0B, 0x0A, 0x05, 0x02, + 0x12, 0x04, 0x04, 0x02, 0x02, 0x06, 0x0B, 0x13, 0x16, 0x09, 0x0B, 0x06, + 0x04, 0x05, 0x01, 0x0B, 0x06, 0x22, 0x13, 0x1D, 0x14, 0x08, 0x0B, 0x0C, + 0x05, 0x0A, 0x06, 0x09, 0x07, 0x06, 0x1C, 0x1A, 0x0B, 0x03, 0x03, 0x01, + 0x02, 0x05, 0x04, 0x03, 0x05, 0x0B, 0x06, 0x10, 0x1A, 0x18, 0x05, 0x04, + 0x04, 0x06, 0x08, 0x04, 0x03, 0x01, 0x0A, 0x04, 0x08, 0x06, 0x06, 0x0B, + 0x11, 0x02, 0x01, 0x01, 0x02, 0x02, 0x0C, 0x02, 0x08, 0x05, 0x03, 0x08, + 0x03, 0x02, 0x08, 0x03, 0x06, 0x0A, 0x0B, 0x1A, 0x10, 0x05, 0x14, 0x05, + 0x02, 0x12, 0x06, 0x13, 0x01, 0x02, 0x10, 0x10, 0x08, 0x05, 0x0A, 0x0A, + 0x04, 0x05, 0x05, 0x06, 0x03, 0x0A, 0x10, 0x05, 0x03, 0x08, 0x06, 0x03, + 0x09, 0x30, 0x35, 0x08, 0x14, 0x0A, 0x12, 0x06, 0x01, 0x01, 0x04, 0x06, + 0x04, 0x02, 0x01, 0x0B, 0x10, 0x08, 0x0E, 0x04, 0x0A, 0x06, 0x06, 0x02, + 0x06, 0x4A, 0x4A, 0x0A, 0x09, 0x0C, 0x04, 0x04, 0x02, 0x02, 0x07, 0x0B, + 0x01, 0x01, 0x01, 0x04, 0x06, 0x06, 0x06, 0x0F, 0x0F, 0x08, 0x03, 0x03, + 0x01, 0x01, 0x02, 0x03, 0x03, 0x04, 0x02, 0x01, 0x21, 0x2A, 0x0C, 0x87, + 0x86, 0x86, 0xF9, 0x26, 0x01, 0x02, 0x02, 0x02, 0x01, 0x6A, 0x6B, 0x02, + 0x01, 0x02, 0x03, 0x03, 0x06, 0x06, 0x02, 0x01, 0x07, 0x02, 0x01, 0x06, + 0x01, 0x0B, 0x14, 0x0F, 0x0C, 0x05, 0x0E, 0x0B, 0x08, 0x06, 0x16, 0x06, + 0x0D, 0x02, 0xB4, 0x03, 0x1A, 0x1B, 0x01, 0x06, 0x07, 0x03, 0x01, 0x01, + 0x01, 0x0E, 0x0A, 0x09, 0x0A, 0x02, 0x01, 0x12, 0x0F, 0x16, 0x05, 0x12, + 0x0D, 0x0A, 0x07, 0x04, 0x16, 0x0C, 0x10, 0x11, 0x01, 0x36, 0x35, 0x12, + 0x40, 0x40, 0x10, 0x12, 0x1B, 0x15, 0x0F, 0x17, 0x01, 0x05, 0x04, 0x01, + 0x01, 0x01, 0x08, 0x04, 0x01, 0x01, 0x06, 0x08, 0x08, 0x11, 0x05, 0x09, + 0x03, 0x08, 0x06, 0x0A, 0x82, 0x81, 0x0F, 0x05, 0x08, 0x06, 0x04, 0x04, + 0x0A, 0x12, 0x0F, 0x0B, 0x07, 0x04, 0x05, 0x19, 0x18, 0x01, 0x05, 0x03, + 0x05, 0x03, 0x07, 0x07, 0x07, 0x06, 0x02, 0x06, 0x03, 0x01, 0x02, 0x06, + 0x03, 0x04, 0x02, 0x07, 0x02, 0x02, 0x02, 0x01, 0x01, 0x01, 0x0C, 0x02, + 0x05, 0x08, 0x02, 0x01, 0x01, 0x02, 0x07, 0x05, 0x03, 0x04, 0x03, 0x01, + 0x06, 0x08, 0x09, 0x08, 0x0B, 0x04, 0x01, 0x07, 0x08, 0x08, 0x21, 0x20, + 0x42, 0x42, 0x20, 0x20, 0x0C, 0x0C, 0x0B, 0x11, 0x02, 0x01, 0x01, 0x02, + 0x09, 0x04, 0x01, 0x01, 0x03, 0x04, 0x08, 0x09, 0x10, 0x0F, 0x2B, 0x58, + 0x37, 0x4B, 0x15, 0x0E, 0x0F, 0x01, 0x19, 0x09, 0x07, 0x06, 0x0A, 0x04, + 0x01, 0x01, 0x01, 0x01, 0x07, 0x0A, 0x04, 0x02, 0x0B, 0x03, 0x09, 0x07, + 0x0F, 0x03, 0x0C, 0x03, 0x0A, 0x06, 0x04, 0x0B, 0x0B, 0x04, 0x03, 0x05, + 0x02, 0x03, 0x02, 0x03, 0x02, 0x04, 0x03, 0x1D, 0x0E, 0x12, 0x11, 0x0D, + 0x17, 0x08, 0x10, 0x0E, 0x0A, 0x0C, 0x0A, 0x09, 0x05, 0x06, 0x03, 0x05, + 0x07, 0x06, 0x0A, 0x02, 0x05, 0x04, 0x03, 0x04, 0x01, 0x03, 0x02, 0x02, + 0x03, 0x05, 0x02, 0x01, 0x03, 0x04, 0x0C, 0x0A, 0x09, 0x06, 0x02, 0x01, + 0x01, 0x04, 0x01, 0x03, 0x04, 0x01, 0x01, 0x03, 0x05, 0x21, 0x28, 0x22, + 0x20, 0x02, 0x02, 0x03, 0x05, 0x06, 0x04, 0x05, 0x02, 0x05, 0x01, 0x06, + 0x03, 0x01, 0x09, 0x07, 0x15, 0x14, 0x0D, 0x10, 0x22, 0x0E, 0x0E, 0x11, + 0x14, 0x0C, 0x10, 0x25, 0x22, 0x09, 0x07, 0x02, 0x01, 0x04, 0x03, 0x07, + 0x01, 0x02, 0x02, 0x06, 0x02, 0x01, 0x04, 0x03, 0x02, 0x05, 0x09, 0x08, + 0x06, 0x0D, 0x02, 0x01, 0x06, 0x04, 0x08, 0x08, 0x02, 0x08, 0x05, 0x04, + 0x01, 0x04, 0x05, 0x01, 0x04, 0x02, 0x02, 0x01, 0x01, 0x06, 0x06, 0x05, + 0x22, 0x06, 0x01, 0x02, 0x08, 0x03, 0x0A, 0x0B, 0x0F, 0x06, 0x01, 0x01, + 0x04, 0x0A, 0x01, 0x01, 0x02, 0x03, 0x04, 0x02, 0x02, 0x01, 0x01, 0x03, + 0x03, 0x05, 0x02, 0x03, 0x07, 0x02, 0x01, 0x02, 0x01, 0x03, 0x02, 0x02, + 0x04, 0x02, 0x02, 0x01, 0x04, 0x01, 0x03, 0x01, 0x02, 0x05, 0x05, 0x08, + 0x07, 0x02, 0x06, 0x02, 0x01, 0x04, 0x02, 0x05, 0x09, 0x08, 0x01, 0x06, + 0x06, 0x05, 0x04, 0x09, 0x0B, 0x06, 0x08, 0x05, 0x0D, 0x16, 0x02, 0x04, + 0x01, 0x0F, 0x11, 0x12, 0x02, 0x06, 0x02, 0x06, 0x0B, 0x02, 0x02, 0x04, + 0x02, 0x05, 0x04, 0x06, 0x10, 0x11, 0x10, 0x11, 0x0E, 0x02, 0x02, 0x01, + 0x02, 0x03, 0x02, 0x05, 0x05, 0x01, 0x01, 0x04, 0x01, 0x07, 0x05, 0x03, + 0x03, 0x07, 0x07, 0x0A, 0x06, 0x01, 0x07, 0x01, 0x06, 0x06, 0x05, 0x04, + 0x05, 0x05, 0x01, 0x03, 0x01, 0x08, 0x08, 0x06, 0x07, 0x07, 0x04, 0x0D, + 0x1E, 0x02, 0x02, 0x49, 0x01, 0x02, 0x01, 0x09, 0x0C, 0x0E, 0x06, 0x08, + 0x01, 0x02, 0x08, 0x04, 0x11, 0x05, 0x05, 0x12, 0x04, 0x09, 0x0B, 0x07, + 0x09, 0x05, 0x08, 0x05, 0x06, 0x04, 0x10, 0x04, 0x09, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x53, 0x00, 0x58, 0x0A, 0x33, 0x03, 0x26, 0x01, 0xE8, + 0x01, 0xF6, 0x00, 0x00, 0x01, 0x32, 0x37, 0x32, 0x17, 0x16, 0x33, 0x16, + 0x32, 0x14, 0x17, 0x16, 0x37, 0x33, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x33, 0x16, 0x1F, 0x01, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x15, + 0x16, 0x15, 0x07, 0x06, 0x07, 0x06, 0x07, 0x3B, 0x03, 0x32, 0x37, 0x36, + 0x17, 0x16, 0x17, 0x14, 0x17, 0x16, 0x17, 0x32, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x1F, 0x01, 0x16, 0x32, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x34, 0x37, 0x34, 0x36, 0x35, 0x34, 0x33, 0x16, 0x33, 0x32, + 0x15, 0x06, 0x1D, 0x02, 0x14, 0x07, 0x06, 0x17, 0x16, 0x3B, 0x01, 0x16, + 0x3B, 0x01, 0x32, 0x36, 0x33, 0x32, 0x37, 0x32, 0x17, 0x16, 0x37, 0x36, + 0x33, 0x16, 0x33, 0x32, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x15, 0x16, 0x07, + 0x06, 0x07, 0x06, 0x23, 0x2E, 0x01, 0x2B, 0x03, 0x22, 0x07, 0x06, 0x17, + 0x14, 0x33, 0x32, 0x37, 0x36, 0x17, 0x16, 0x15, 0x06, 0x15, 0x14, 0x27, + 0x22, 0x27, 0x26, 0x27, 0x23, 0x22, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x22, 0x27, 0x22, 0x0F, 0x01, 0x06, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, + 0x27, 0x26, 0x27, 0x16, 0x14, 0x17, 0x16, 0x07, 0x14, 0x07, 0x06, 0x27, + 0x26, 0x27, 0x26, 0x2B, 0x01, 0x22, 0x27, 0x2B, 0x02, 0x06, 0x23, 0x16, + 0x17, 0x16, 0x15, 0x14, 0x17, 0x14, 0x27, 0x26, 0x07, 0x06, 0x2B, 0x02, + 0x22, 0x27, 0x26, 0x35, 0x26, 0x35, 0x26, 0x35, 0x34, 0x37, 0x34, 0x27, + 0x26, 0x07, 0x06, 0x17, 0x14, 0x17, 0x16, 0x07, 0x06, 0x17, 0x16, 0x17, + 0x15, 0x06, 0x07, 0x06, 0x07, 0x06, 0x23, 0x22, 0x27, 0x26, 0x27, 0x06, + 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x17, + 0x14, 0x16, 0x07, 0x06, 0x07, 0x06, 0x23, 0x06, 0x27, 0x26, 0x27, 0x26, + 0x27, 0x26, 0x27, 0x2E, 0x02, 0x27, 0x26, 0x07, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x34, 0x37, 0x36, 0x35, 0x34, 0x26, 0x35, + 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x23, 0x22, + 0x27, 0x22, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, + 0x17, 0x14, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, 0x07, 0x06, + 0x23, 0x22, 0x06, 0x23, 0x0E, 0x01, 0x23, 0x22, 0x06, 0x23, 0x22, 0x06, + 0x22, 0x06, 0x07, 0x22, 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x3D, 0x04, + 0x34, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x3B, 0x01, 0x32, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x37, 0x36, 0x33, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x33, 0x32, 0x37, 0x36, + 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x3B, 0x04, 0x32, 0x27, 0x26, 0x31, 0x3B, 0x05, 0x16, 0x07, 0x06, 0x17, + 0x33, 0x32, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x32, 0x3F, + 0x01, 0x36, 0x37, 0x34, 0x3E, 0x01, 0x37, 0x36, 0x27, 0x2E, 0x01, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x2F, 0x01, 0x2E, 0x01, 0x23, 0x26, 0x27, 0x26, + 0x27, 0x26, 0x2F, 0x01, 0x23, 0x22, 0x07, 0x06, 0x27, 0x2E, 0x01, 0x37, + 0x36, 0x37, 0x36, 0x27, 0x16, 0x17, 0x16, 0x01, 0x23, 0x22, 0x07, 0x23, + 0x06, 0x17, 0x16, 0x17, 0x16, 0x33, 0x32, 0x37, 0x36, 0x05, 0xF3, 0x0D, + 0x07, 0x09, 0x08, 0x04, 0x02, 0x01, 0x08, 0x02, 0x05, 0x04, 0x08, 0x0D, + 0x05, 0x02, 0x0B, 0x03, 0x08, 0x09, 0x0D, 0x04, 0x06, 0x05, 0x05, 0x0C, + 0x02, 0x05, 0x03, 0x02, 0x01, 0x03, 0x01, 0x0A, 0x07, 0x0E, 0x40, 0x3F, + 0x2C, 0x2B, 0x02, 0x12, 0x0E, 0x05, 0x05, 0x02, 0x08, 0x05, 0x0C, 0x02, + 0x0C, 0x03, 0x09, 0x14, 0x09, 0x14, 0x0F, 0x03, 0x09, 0x02, 0x0E, 0x03, + 0x04, 0x01, 0x01, 0x0A, 0x07, 0x02, 0x01, 0x02, 0x0C, 0x08, 0x09, 0x03, + 0x01, 0x01, 0x02, 0x02, 0x01, 0x0D, 0x0E, 0x04, 0x08, 0x0C, 0x16, 0x58, + 0x16, 0x58, 0x2D, 0x26, 0x13, 0x1D, 0x1D, 0x05, 0x0A, 0x05, 0x09, 0x08, + 0x02, 0x02, 0x01, 0x01, 0x03, 0x01, 0x06, 0x03, 0x0A, 0x06, 0x09, 0x50, + 0x50, 0x50, 0x54, 0x53, 0x11, 0x06, 0x0A, 0x06, 0x01, 0x07, 0x03, 0x10, + 0x0A, 0x07, 0x11, 0x01, 0x0A, 0x0A, 0x04, 0x03, 0x0A, 0x0F, 0x15, 0x2E, + 0x18, 0x2C, 0x0F, 0x38, 0x0F, 0x06, 0x07, 0x0A, 0x02, 0x09, 0x04, 0x09, + 0x0B, 0x0B, 0x0C, 0x08, 0x07, 0x06, 0x06, 0x09, 0x01, 0x01, 0x01, 0x01, + 0x02, 0x01, 0x11, 0x06, 0x03, 0x06, 0x03, 0x0D, 0x09, 0x05, 0x17, 0x17, + 0x5D, 0x1F, 0x3D, 0x0C, 0x01, 0x01, 0x01, 0x09, 0x1F, 0x23, 0x2E, 0x14, + 0x25, 0x25, 0x09, 0x0E, 0x0B, 0x01, 0x01, 0x01, 0x03, 0x07, 0x08, 0x09, + 0x02, 0x03, 0x02, 0x07, 0x06, 0x02, 0x01, 0x02, 0x02, 0x02, 0x05, 0x12, + 0x13, 0x0A, 0x17, 0x15, 0x15, 0x15, 0x08, 0x05, 0x02, 0x0B, 0x01, 0x05, + 0x02, 0x04, 0x03, 0x02, 0x02, 0x03, 0x01, 0x08, 0x02, 0x01, 0x08, 0x09, + 0x0A, 0x0B, 0x12, 0x0A, 0x12, 0x0C, 0x05, 0x0C, 0x05, 0x02, 0x08, 0x07, + 0x03, 0x0B, 0x09, 0x13, 0x0D, 0x09, 0x14, 0x09, 0x01, 0x01, 0x08, 0x01, + 0x07, 0x04, 0x02, 0x01, 0x0C, 0x06, 0x05, 0x04, 0x08, 0x15, 0x53, 0x14, + 0x38, 0x45, 0x29, 0x15, 0x1F, 0x1E, 0x06, 0x1C, 0x06, 0x07, 0x1A, 0x06, + 0x14, 0x1B, 0x1A, 0x01, 0x03, 0x02, 0x04, 0x03, 0x06, 0x06, 0x01, 0x01, + 0x04, 0x03, 0x05, 0x10, 0x12, 0x10, 0x0F, 0x3C, 0x0E, 0x0F, 0x3C, 0x0F, + 0x06, 0x18, 0x0C, 0x19, 0x06, 0x0B, 0x07, 0x0A, 0x09, 0x10, 0x02, 0x03, + 0x02, 0x02, 0x0B, 0x07, 0x08, 0x0E, 0x01, 0x0B, 0x08, 0x04, 0x0C, 0x32, + 0x0D, 0x32, 0x19, 0x12, 0x0A, 0x0D, 0x0C, 0x0F, 0x0B, 0x0B, 0x12, 0x0A, + 0x08, 0x06, 0x0B, 0x3B, 0x42, 0x3B, 0x3C, 0x14, 0x1D, 0x1A, 0x18, 0x1A, + 0x18, 0x21, 0x10, 0x06, 0x16, 0x05, 0x0B, 0x15, 0x01, 0x09, 0x07, 0x07, + 0x0D, 0x14, 0x15, 0x0E, 0x14, 0x0A, 0x09, 0x14, 0x0A, 0x01, 0x01, 0x04, + 0x24, 0x23, 0x26, 0x25, 0x06, 0x01, 0x01, 0x11, 0x10, 0x14, 0x14, 0x04, + 0x04, 0x02, 0x02, 0x03, 0x05, 0x1F, 0x14, 0x0A, 0x1F, 0x1E, 0x13, 0x28, + 0x14, 0x0B, 0x05, 0x14, 0x05, 0x21, 0x12, 0x0B, 0x03, 0x05, 0x02, 0x08, + 0x03, 0x02, 0x0A, 0x03, 0x02, 0x0A, 0x03, 0x0A, 0x19, 0x24, 0x02, 0x0B, + 0x03, 0x0C, 0x04, 0x06, 0x02, 0x04, 0x02, 0x06, 0x09, 0x0B, 0x07, 0x0B, + 0x07, 0x06, 0x06, 0x03, 0x01, 0x08, 0x07, 0x01, 0x0D, 0x0C, 0x0C, 0xFE, + 0xD0, 0x13, 0x0D, 0x07, 0x19, 0x0C, 0x04, 0x04, 0x11, 0x16, 0x08, 0x14, + 0x03, 0x02, 0x03, 0x11, 0x01, 0x08, 0x02, 0x01, 0x02, 0x02, 0x01, 0x01, + 0x02, 0x03, 0x02, 0x06, 0x01, 0x04, 0x03, 0x01, 0x01, 0x02, 0x02, 0x05, + 0x02, 0x05, 0x0C, 0x12, 0x01, 0x06, 0x0C, 0x12, 0x03, 0x18, 0x12, 0x02, + 0x02, 0x02, 0x04, 0x03, 0x06, 0x05, 0x02, 0x01, 0x02, 0x03, 0x01, 0x02, + 0x04, 0x03, 0x04, 0x03, 0x01, 0x01, 0x02, 0x07, 0x0A, 0x09, 0x0E, 0x0D, + 0x0A, 0x10, 0x0B, 0x05, 0x02, 0x0A, 0x03, 0x04, 0x01, 0x1C, 0x13, 0x0D, + 0x12, 0x13, 0x05, 0x04, 0x08, 0x01, 0x04, 0x01, 0x02, 0x01, 0x01, 0x02, + 0x05, 0x01, 0x01, 0x08, 0x0C, 0x05, 0x03, 0x0A, 0x01, 0x07, 0x06, 0x03, + 0x02, 0x01, 0x04, 0x02, 0x02, 0x02, 0x05, 0x07, 0x02, 0x01, 0x03, 0x08, + 0x12, 0x0D, 0x14, 0x03, 0x01, 0x02, 0x01, 0x04, 0x02, 0x02, 0x02, 0x01, + 0x04, 0x01, 0x01, 0x02, 0x0F, 0x07, 0x05, 0x06, 0x05, 0x05, 0x07, 0x07, + 0x03, 0x02, 0x04, 0x03, 0x0D, 0x04, 0x0A, 0x0B, 0x09, 0x0E, 0x0A, 0x03, + 0x02, 0x02, 0x02, 0x01, 0x01, 0x2D, 0x23, 0x1A, 0x36, 0x1A, 0x27, 0x3C, + 0x02, 0x04, 0x01, 0x02, 0x02, 0x02, 0x0E, 0x30, 0x60, 0x2F, 0x5F, 0x09, + 0x09, 0x0D, 0x02, 0x04, 0x04, 0x05, 0x08, 0x05, 0x09, 0x09, 0x03, 0x01, + 0x09, 0x09, 0x06, 0x10, 0x0B, 0x04, 0x09, 0x08, 0x08, 0x03, 0x01, 0x0B, + 0x18, 0x0B, 0x05, 0x1E, 0x02, 0x0D, 0x04, 0x09, 0x0B, 0x06, 0x03, 0x06, + 0x04, 0x06, 0x08, 0x06, 0x08, 0x0B, 0x0A, 0x01, 0x05, 0x03, 0x06, 0x04, + 0x03, 0x04, 0x02, 0x01, 0x04, 0x03, 0x02, 0x05, 0x02, 0x1C, 0x17, 0x12, + 0x22, 0x0F, 0x02, 0x03, 0x0A, 0x03, 0x01, 0x0B, 0x05, 0x06, 0x03, 0x0E, + 0x04, 0x0A, 0x05, 0x04, 0x03, 0x02, 0x03, 0x02, 0x06, 0x01, 0x04, 0x01, + 0x03, 0x01, 0x02, 0x01, 0x01, 0x02, 0x01, 0x01, 0x0A, 0x09, 0x1B, 0x0A, + 0x07, 0x0A, 0x07, 0x04, 0x08, 0x08, 0x06, 0x04, 0x01, 0x01, 0x02, 0x01, + 0x03, 0x04, 0x02, 0x01, 0x01, 0x01, 0x01, 0x03, 0x07, 0x13, 0x12, 0x10, + 0x24, 0x24, 0x54, 0x54, 0x0C, 0x06, 0x04, 0x08, 0x02, 0x01, 0x02, 0x01, + 0x01, 0x07, 0x02, 0x08, 0x03, 0x02, 0x01, 0x01, 0x09, 0x0C, 0x0C, 0x0F, + 0x04, 0x02, 0x01, 0x01, 0x01, 0x12, 0x10, 0x1A, 0x09, 0x0A, 0x0A, 0x04, + 0x05, 0x01, 0x02, 0x03, 0x01, 0x02, 0x01, 0x01, 0x19, 0x18, 0x05, 0x0D, + 0x02, 0x03, 0x04, 0x04, 0x03, 0x03, 0x06, 0x04, 0x12, 0x13, 0x06, 0x06, + 0x02, 0x05, 0x04, 0x02, 0x01, 0x01, 0x01, 0x01, 0x02, 0x02, 0x01, 0x01, + 0x01, 0x03, 0x02, 0x0B, 0x01, 0x04, 0x07, 0x03, 0x0D, 0x01, 0x02, 0x07, + 0x01, 0x01, 0x05, 0x02, 0x04, 0x07, 0x06, 0x01, 0x03, 0x02, 0x02, 0x02, + 0x01, 0x02, 0x02, 0x06, 0x01, 0x02, 0x03, 0x08, 0x12, 0x09, 0x06, 0x0B, + 0x0A, 0x06, 0x01, 0x05, 0x07, 0xFE, 0x66, 0x01, 0x02, 0x13, 0x12, 0x02, + 0x02, 0x0F, 0x12, 0x00, 0x00, 0x02, 0x00, 0x56, 0x00, 0x22, 0x04, 0xCB, + 0x03, 0x5B, 0x00, 0x0F, 0x00, 0xBE, 0x00, 0x00, 0x01, 0x23, 0x22, 0x06, + 0x1D, 0x01, 0x14, 0x17, 0x16, 0x3B, 0x01, 0x16, 0x37, 0x36, 0x37, 0x36, + 0x25, 0x17, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x0E, + 0x01, 0x07, 0x06, 0x23, 0x22, 0x27, 0x26, 0x15, 0x14, 0x17, 0x16, 0x06, + 0x27, 0x26, 0x07, 0x06, 0x2B, 0x01, 0x22, 0x07, 0x26, 0x27, 0x26, 0x35, + 0x06, 0x07, 0x06, 0x2B, 0x01, 0x22, 0x07, 0x06, 0x07, 0x06, 0x0F, 0x01, + 0x06, 0x07, 0x06, 0x17, 0x14, 0x27, 0x26, 0x07, 0x06, 0x22, 0x07, 0x06, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x27, 0x26, 0x27, 0x26, 0x37, 0x3E, 0x03, 0x37, 0x36, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x26, 0x27, 0x26, 0x37, 0x36, 0x35, 0x34, 0x27, + 0x26, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x16, 0x33, 0x16, 0x1F, 0x01, 0x36, 0x17, 0x16, 0x33, + 0x32, 0x37, 0x32, 0x17, 0x26, 0x35, 0x26, 0x37, 0x34, 0x37, 0x36, 0x37, + 0x17, 0x36, 0x37, 0x36, 0x37, 0x36, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, + 0x16, 0x17, 0x32, 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x17, 0x16, 0x37, 0x32, 0x17, 0x16, 0x17, 0x16, 0x15, 0x16, 0x17, + 0x16, 0x17, 0x36, 0x17, 0x16, 0x02, 0x59, 0x54, 0x08, 0x08, 0x04, 0x05, + 0x07, 0x2D, 0x17, 0x11, 0x08, 0x07, 0x07, 0x02, 0x53, 0x08, 0x03, 0x07, + 0x09, 0x05, 0x04, 0x1B, 0x05, 0x21, 0x08, 0x04, 0x16, 0x06, 0x11, 0x11, + 0x23, 0x2E, 0x45, 0x01, 0x01, 0x09, 0x0A, 0x21, 0x1A, 0x14, 0x27, 0x3A, + 0x1D, 0x1D, 0x06, 0x01, 0x03, 0x07, 0x0A, 0x08, 0x0A, 0x75, 0x11, 0x06, + 0x06, 0x06, 0x10, 0x06, 0x0F, 0x0D, 0x05, 0x05, 0x07, 0x0F, 0x10, 0x08, + 0x02, 0x0A, 0x03, 0x08, 0x08, 0x07, 0x1F, 0x08, 0x07, 0x20, 0x07, 0x0C, + 0x18, 0x06, 0x18, 0x06, 0x17, 0x18, 0x1A, 0x07, 0x09, 0x0A, 0x03, 0x0A, + 0x06, 0x09, 0x02, 0x08, 0x05, 0x0C, 0x0F, 0x11, 0x09, 0x02, 0x2E, 0x0D, + 0x0B, 0x02, 0x02, 0x01, 0x01, 0x06, 0x06, 0x11, 0x07, 0x17, 0x01, 0x0C, + 0x18, 0x18, 0x07, 0x0D, 0x11, 0x0C, 0x14, 0x1D, 0x25, 0x20, 0x23, 0x06, + 0x24, 0x22, 0x17, 0x30, 0x2C, 0x16, 0x1F, 0x22, 0x01, 0x01, 0x01, 0x05, + 0x05, 0x0A, 0x14, 0x02, 0x09, 0x06, 0x04, 0x1A, 0x0C, 0x09, 0x1B, 0x02, + 0x0D, 0x04, 0x06, 0x0C, 0x09, 0x07, 0x09, 0x08, 0x17, 0x14, 0x0F, 0x1C, + 0x0E, 0x08, 0x07, 0x0C, 0x0A, 0x0B, 0x0E, 0x05, 0x04, 0x02, 0x01, 0x17, + 0x0F, 0x12, 0x11, 0x0F, 0x06, 0x08, 0x02, 0x3E, 0x08, 0x08, 0x30, 0x08, + 0x04, 0x05, 0x02, 0x10, 0x08, 0x1D, 0x1E, 0xB8, 0x04, 0x30, 0x27, 0x36, + 0x22, 0x15, 0x08, 0x01, 0x0A, 0x02, 0x01, 0x07, 0x02, 0x07, 0x01, 0x01, + 0x0E, 0x16, 0x15, 0x10, 0x10, 0x01, 0x05, 0x01, 0x01, 0x06, 0x06, 0x04, + 0x05, 0x06, 0x0D, 0x09, 0x07, 0x14, 0x13, 0x0E, 0x21, 0x18, 0x3C, 0x34, + 0x30, 0x34, 0x32, 0x11, 0x05, 0x03, 0x01, 0x01, 0x01, 0x02, 0x02, 0x02, + 0x07, 0x01, 0x01, 0x07, 0x02, 0x02, 0x06, 0x02, 0x07, 0x01, 0x05, 0x07, + 0x08, 0x18, 0x1D, 0x22, 0x0B, 0x29, 0x14, 0x25, 0x09, 0x24, 0x13, 0x31, + 0x32, 0x39, 0x29, 0x1B, 0x1E, 0x12, 0x0F, 0x1A, 0x22, 0x09, 0x1C, 0x10, + 0x16, 0x15, 0x12, 0x0E, 0x05, 0x12, 0x01, 0x02, 0x01, 0x02, 0x09, 0x06, + 0x03, 0x02, 0x02, 0x04, 0x01, 0x05, 0x0E, 0x09, 0x01, 0x01, 0x01, 0x08, + 0x02, 0x04, 0x01, 0x05, 0x04, 0x03, 0x04, 0x01, 0x04, 0x02, 0x10, 0x0D, + 0x01, 0x02, 0x03, 0x02, 0x09, 0x01, 0x04, 0x02, 0x03, 0x02, 0x04, 0x03, + 0x01, 0x02, 0x05, 0x04, 0x06, 0x03, 0x04, 0x04, 0x08, 0x03, 0x01, 0x01, + 0x01, 0x04, 0x02, 0x04, 0x07, 0x05, 0x07, 0x08, 0x03, 0x01, 0x02, 0x00, + 0x00, 0x01, 0x00, 0x54, 0x00, 0x5A, 0x01, 0x80, 0x03, 0x26, 0x00, 0x49, + 0x00, 0x00, 0x13, 0x35, 0x26, 0x27, 0x26, 0x35, 0x34, 0x37, 0x36, 0x3F, + 0x01, 0x33, 0x17, 0x11, 0x07, 0x27, 0x26, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x3F, 0x01, 0x11, 0x27, 0x15, 0x07, 0x15, 0x23, 0x15, 0x33, 0x15, + 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, 0x15, 0x17, 0x15, 0x14, 0x07, + 0x06, 0x2B, 0x01, 0x22, 0x27, 0x26, 0x3D, 0x01, 0x37, 0x35, 0x33, 0x35, + 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x27, 0x35, + 0x34, 0x36, 0x3B, 0x01, 0x95, 0x0C, 0x08, 0x07, 0x03, 0x02, 0x05, 0x17, + 0x7C, 0x69, 0x35, 0x11, 0x03, 0x02, 0x01, 0x05, 0x06, 0x05, 0x0A, 0x06, + 0x10, 0x2E, 0x1B, 0x0B, 0x0B, 0x0B, 0x0B, 0x0B, 0x0B, 0x1B, 0x03, 0x04, + 0x08, 0xC9, 0x08, 0x04, 0x04, 0x1A, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, + 0x1A, 0x08, 0x08, 0x0F, 0x02, 0xC9, 0x2D, 0x01, 0x08, 0x06, 0x0B, 0x08, + 0x04, 0x05, 0x02, 0x03, 0xA8, 0xFE, 0x9D, 0x1A, 0x03, 0x04, 0x06, 0x04, + 0x05, 0x06, 0x03, 0x06, 0x03, 0x08, 0x01, 0x3D, 0x1A, 0x35, 0x19, 0x35, + 0x36, 0x38, 0x36, 0x39, 0x36, 0x34, 0x2E, 0x27, 0x08, 0x03, 0x04, 0x04, + 0x03, 0x08, 0x27, 0x2E, 0x34, 0x36, 0x39, 0x36, 0x38, 0x36, 0x35, 0x19, + 0x49, 0x07, 0x08, 0x00, 0x00, 0x01, 0x00, 0x58, 0x00, 0x58, 0x02, 0x73, + 0x03, 0x26, 0x00, 0xD5, 0x00, 0x00, 0x01, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x07, 0x06, 0x16, 0x15, 0x14, 0x16, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x27, 0x22, 0x27, 0x26, 0x37, 0x36, 0x37, 0x36, 0x27, 0x26, 0x35, 0x34, + 0x37, 0x34, 0x27, 0x34, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x35, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x03, 0x27, 0x26, 0x27, + 0x26, 0x27, 0x26, 0x07, 0x06, 0x27, 0x22, 0x27, 0x26, 0x07, 0x06, 0x17, + 0x16, 0x15, 0x14, 0x07, 0x06, 0x17, 0x16, 0x33, 0x16, 0x33, 0x1E, 0x01, + 0x33, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x2F, 0x01, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x2F, + 0x01, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x37, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x17, + 0x16, 0x37, 0x36, 0x35, 0x34, 0x23, 0x22, 0x37, 0x36, 0x35, 0x23, 0x06, + 0x27, 0x2E, 0x01, 0x35, 0x37, 0x3E, 0x01, 0x37, 0x34, 0x37, 0x36, 0x35, + 0x36, 0x37, 0x36, 0x33, 0x32, 0x37, 0x36, 0x3B, 0x03, 0x16, 0x35, 0x36, + 0x35, 0x26, 0x35, 0x34, 0x3B, 0x01, 0x16, 0x17, 0x16, 0x15, 0x14, 0x07, + 0x06, 0x17, 0x16, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, + 0x01, 0xFD, 0x03, 0x0B, 0x07, 0x0A, 0x0E, 0x06, 0x03, 0x0C, 0x01, 0x02, + 0x0A, 0x03, 0x09, 0x07, 0x07, 0x06, 0x03, 0x01, 0x03, 0x06, 0x02, 0x02, + 0x01, 0x03, 0x04, 0x06, 0x04, 0x07, 0x07, 0x02, 0x02, 0x07, 0x05, 0x02, + 0x03, 0x01, 0x02, 0x01, 0x01, 0x03, 0x04, 0x0B, 0x01, 0x04, 0x03, 0x05, + 0x04, 0x02, 0x04, 0x0B, 0x08, 0x0D, 0x04, 0x01, 0x05, 0x04, 0x07, 0x01, + 0x03, 0x02, 0x02, 0x03, 0x0B, 0x0A, 0x0D, 0x09, 0x0C, 0x09, 0x0E, 0x06, + 0x04, 0x01, 0x01, 0x01, 0x01, 0x08, 0x08, 0x05, 0x05, 0x08, 0x04, 0x0E, + 0x04, 0x0F, 0x05, 0x10, 0x11, 0x09, 0x11, 0x10, 0x06, 0x05, 0x07, 0x07, + 0x05, 0x03, 0x03, 0x05, 0x0F, 0x0E, 0x1A, 0x1C, 0x2D, 0x19, 0x3E, 0x13, + 0x17, 0x18, 0x13, 0x24, 0x0C, 0x18, 0x0C, 0x09, 0x08, 0x0B, 0x06, 0x05, + 0x0A, 0x02, 0x09, 0x02, 0x07, 0x04, 0x14, 0x0B, 0x0A, 0x01, 0x02, 0x08, + 0x09, 0x14, 0x0B, 0x09, 0x09, 0x10, 0x16, 0x0B, 0x12, 0x0E, 0x09, 0x10, + 0x10, 0x01, 0x02, 0x0A, 0x08, 0x02, 0x01, 0x15, 0x0A, 0x0B, 0x04, 0x04, + 0x03, 0x01, 0x04, 0x01, 0x01, 0x01, 0x03, 0x06, 0x08, 0x05, 0x09, 0x05, + 0x04, 0x09, 0x33, 0x33, 0x15, 0x12, 0x01, 0x01, 0x08, 0x0B, 0x07, 0x05, + 0x03, 0x02, 0x02, 0x03, 0x02, 0x03, 0x02, 0x03, 0x07, 0x02, 0x05, 0x0B, + 0x08, 0x0F, 0x02, 0x96, 0x10, 0x10, 0x0A, 0x14, 0x1A, 0x0E, 0x08, 0x1E, + 0x03, 0x05, 0x16, 0x05, 0x13, 0x0B, 0x0C, 0x11, 0x11, 0x0E, 0x2F, 0x5C, + 0x2F, 0x1D, 0x1E, 0x1D, 0x07, 0x04, 0x06, 0x01, 0x01, 0x01, 0x05, 0x08, + 0x03, 0x03, 0x05, 0x09, 0x08, 0x0A, 0x05, 0x22, 0x11, 0x21, 0x11, 0x2C, + 0x2B, 0x2A, 0x2A, 0x02, 0x0E, 0x07, 0x05, 0x04, 0x07, 0x06, 0x03, 0x09, + 0x11, 0x17, 0x06, 0x02, 0x08, 0x04, 0x08, 0x02, 0x03, 0x07, 0x06, 0x02, + 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, 0x06, 0x03, 0x0A, 0x07, 0x09, 0x0B, + 0x07, 0x0A, 0x05, 0x02, 0x01, 0x01, 0x02, 0x04, 0x01, 0x04, 0x09, 0x05, + 0x11, 0x0F, 0x13, 0x14, 0x13, 0x18, 0x15, 0x16, 0x1A, 0x27, 0x21, 0x20, + 0x21, 0x24, 0x0C, 0x07, 0x10, 0x04, 0x02, 0x02, 0x06, 0x0C, 0x03, 0x08, + 0x05, 0x07, 0x07, 0x06, 0x04, 0x06, 0x0A, 0x02, 0x07, 0x02, 0x05, 0x07, + 0x24, 0x28, 0x27, 0x2A, 0x23, 0x1D, 0x1E, 0x1B, 0x0F, 0x07, 0x09, 0x06, + 0x08, 0x03, 0x05, 0x05, 0x03, 0x02, 0x03, 0x0D, 0x0A, 0x12, 0x14, 0x42, + 0x2B, 0x20, 0x01, 0x04, 0x01, 0x08, 0x04, 0x06, 0x01, 0x08, 0x01, 0x01, + 0x01, 0x01, 0x02, 0x07, 0x03, 0x02, 0x05, 0x04, 0x01, 0x02, 0x03, 0x08, + 0x03, 0x07, 0x05, 0x02, 0x04, 0x05, 0x08, 0x03, 0x02, 0x03, 0x03, 0x03, + 0x02, 0x01, 0x03, 0x07, 0x10, 0x08, 0x11, 0x28, 0x11, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x54, 0x00, 0x58, 0x01, 0xA3, 0x03, 0x26, 0x00, 0x93, + 0x00, 0xBD, 0x00, 0xE5, 0x00, 0x00, 0x01, 0x3D, 0x01, 0x34, 0x37, 0x34, + 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x3D, 0x01, 0x34, 0x2F, 0x02, 0x26, + 0x27, 0x26, 0x35, 0x26, 0x27, 0x26, 0x34, 0x27, 0x26, 0x27, 0x2E, 0x01, + 0x35, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x34, 0x23, 0x06, 0x27, 0x26, + 0x37, 0x36, 0x26, 0x2B, 0x01, 0x06, 0x07, 0x06, 0x07, 0x36, 0x07, 0x22, + 0x0E, 0x01, 0x2B, 0x02, 0x22, 0x27, 0x26, 0x07, 0x06, 0x07, 0x06, 0x3B, + 0x01, 0x32, 0x1D, 0x02, 0x14, 0x07, 0x06, 0x15, 0x14, 0x07, 0x06, 0x07, + 0x06, 0x07, 0x06, 0x17, 0x1D, 0x07, 0x14, 0x16, 0x17, 0x16, 0x37, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x3F, 0x01, 0x36, 0x3D, 0x06, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, + 0x1D, 0x04, 0x14, 0x07, 0x06, 0x14, 0x17, 0x14, 0x33, 0x32, 0x37, 0x32, + 0x37, 0x36, 0x37, 0x3D, 0x01, 0x07, 0x1D, 0x01, 0x14, 0x07, 0x06, 0x07, + 0x22, 0x06, 0x23, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x06, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x27, 0x22, 0x26, 0x37, 0x3D, 0x02, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x15, 0x11, 0x1D, + 0x01, 0x14, 0x07, 0x06, 0x07, 0x0E, 0x03, 0x07, 0x06, 0x07, 0x06, 0x27, + 0x2E, 0x01, 0x27, 0x26, 0x27, 0x26, 0x3D, 0x03, 0x16, 0x17, 0x1E, 0x02, + 0x37, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x36, 0x37, 0x15, 0x01, 0xA2, 0x01, + 0x03, 0x01, 0x04, 0x04, 0x03, 0x03, 0x03, 0x05, 0x04, 0x01, 0x04, 0x07, + 0x02, 0x07, 0x03, 0x04, 0x03, 0x03, 0x01, 0x03, 0x01, 0x06, 0x01, 0x02, + 0x05, 0x01, 0x02, 0x03, 0x02, 0x02, 0x02, 0x01, 0x02, 0x04, 0x06, 0x05, + 0x05, 0x04, 0x06, 0x02, 0x1A, 0x07, 0x10, 0x08, 0x02, 0x19, 0x19, 0x07, + 0x04, 0x05, 0x06, 0x09, 0x05, 0x06, 0x03, 0x0E, 0x0C, 0x03, 0x03, 0x0B, + 0x0D, 0x04, 0x09, 0x19, 0x19, 0x0A, 0x22, 0x06, 0x28, 0x29, 0x2B, 0x27, + 0x0C, 0x12, 0x0D, 0x0D, 0x05, 0x01, 0x06, 0x03, 0x03, 0x04, 0x01, 0x06, + 0x04, 0x02, 0x01, 0x06, 0x02, 0x03, 0x05, 0x02, 0x03, 0x03, 0x03, 0x01, + 0x07, 0x04, 0x01, 0x02, 0x01, 0x06, 0x02, 0x45, 0x02, 0x01, 0x0E, 0x06, + 0x16, 0x06, 0x0C, 0x18, 0x03, 0x0A, 0x03, 0x0C, 0x05, 0x09, 0x27, 0x0A, + 0x28, 0x14, 0x03, 0x03, 0x01, 0x0B, 0x28, 0x0B, 0x0A, 0x29, 0x0B, 0x0F, + 0x0E, 0x15, 0x07, 0x0B, 0x28, 0x0B, 0x02, 0x03, 0x0C, 0x06, 0x16, 0x0C, + 0x18, 0x06, 0x0A, 0x06, 0x0C, 0x05, 0x0A, 0x26, 0x0A, 0x28, 0x14, 0x05, + 0x17, 0x27, 0x0A, 0x29, 0x16, 0x12, 0x0A, 0x12, 0x06, 0x14, 0x05, 0x14, + 0x0B, 0x01, 0xA4, 0x38, 0x36, 0x13, 0x0A, 0x0F, 0x0C, 0x09, 0x05, 0x04, + 0x08, 0x04, 0x04, 0x0A, 0x02, 0x04, 0x05, 0x0C, 0x04, 0x06, 0x07, 0x0D, + 0x0D, 0x07, 0x03, 0x10, 0x04, 0x03, 0x07, 0x02, 0x06, 0x01, 0x03, 0x0E, + 0x04, 0x03, 0x0E, 0x03, 0x05, 0x02, 0x05, 0x02, 0x04, 0x04, 0x02, 0x02, + 0x08, 0x06, 0x0A, 0x0A, 0x02, 0x01, 0x01, 0x01, 0x01, 0x02, 0x03, 0x14, + 0x15, 0x01, 0x14, 0x14, 0x07, 0x05, 0x06, 0x09, 0x03, 0x02, 0x02, 0x01, + 0x02, 0x01, 0x03, 0x15, 0x2D, 0x2D, 0x5E, 0x5E, 0x5E, 0x5E, 0x16, 0x17, + 0x06, 0x10, 0x01, 0x11, 0x02, 0x02, 0x08, 0x01, 0x07, 0x04, 0x09, 0x03, + 0x01, 0x02, 0x16, 0x15, 0x59, 0x58, 0x92, 0x91, 0x05, 0x05, 0x06, 0x04, + 0x01, 0x09, 0x08, 0x03, 0x02, 0x06, 0x02, 0x07, 0x0B, 0x11, 0x12, 0x0C, + 0x6E, 0x6E, 0x36, 0x37, 0x05, 0x01, 0x03, 0x0E, 0x01, 0x01, 0x01, 0x01, + 0x04, 0x0A, 0x12, 0x6E, 0x2D, 0x0A, 0x0C, 0x0C, 0x02, 0x01, 0x02, 0x04, + 0x01, 0x04, 0x01, 0x01, 0x02, 0x01, 0x01, 0x06, 0x01, 0x04, 0x03, 0x02, + 0x02, 0x09, 0x0E, 0x0C, 0x01, 0x04, 0x01, 0x01, 0x04, 0x01, 0x02, 0x03, + 0x04, 0x01, 0x01, 0x04, 0x01, 0x01, 0x01, 0x2F, 0x0A, 0x0C, 0x0B, 0x02, + 0x03, 0x01, 0x01, 0x02, 0x02, 0x02, 0x01, 0x02, 0x01, 0x02, 0x01, 0x02, + 0x05, 0x01, 0x04, 0x03, 0x02, 0x02, 0x09, 0x0E, 0x0D, 0x03, 0x04, 0x01, + 0x04, 0x02, 0x03, 0x02, 0x02, 0x01, 0x03, 0x02, 0x01, 0x02, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x57, 0x00, 0x3E, 0x02, 0x61, 0x03, 0x40, 0x00, 0x5F, + 0x00, 0x8B, 0x00, 0x00, 0x01, 0x06, 0x17, 0x16, 0x17, 0x16, 0x07, 0x06, + 0x0F, 0x01, 0x06, 0x07, 0x06, 0x07, 0x3F, 0x02, 0x2F, 0x01, 0x2E, 0x01, + 0x27, 0x26, 0x23, 0x27, 0x0F, 0x01, 0x33, 0x07, 0x27, 0x26, 0x35, 0x26, + 0x3F, 0x01, 0x36, 0x35, 0x34, 0x27, 0x17, 0x16, 0x17, 0x16, 0x1F, 0x02, + 0x37, 0x36, 0x27, 0x34, 0x26, 0x2F, 0x01, 0x26, 0x27, 0x26, 0x37, 0x34, + 0x37, 0x36, 0x37, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x1F, 0x02, 0x16, 0x17, 0x16, 0x36, 0x27, 0x26, 0x27, 0x26, + 0x37, 0x36, 0x37, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x1F, 0x01, + 0x0F, 0x01, 0x37, 0x2F, 0x01, 0x26, 0x27, 0x26, 0x2F, 0x01, 0x07, 0x33, + 0x15, 0x0F, 0x02, 0x06, 0x07, 0x06, 0x07, 0x03, 0x06, 0x17, 0x16, 0x17, + 0x16, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x3F, 0x01, 0x13, 0x36, + 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x3F, 0x01, 0x02, 0x4E, 0x01, 0x01, + 0x02, 0x03, 0x03, 0x01, 0x02, 0x04, 0x22, 0x04, 0x0A, 0x0C, 0x07, 0x09, + 0x05, 0x24, 0x07, 0x19, 0x03, 0x08, 0x03, 0x0C, 0x01, 0x16, 0x22, 0x0A, + 0x04, 0x17, 0x0D, 0x05, 0x01, 0x03, 0x0C, 0x04, 0x04, 0x0C, 0x07, 0x04, + 0x05, 0x03, 0x04, 0x01, 0x0F, 0x01, 0x03, 0x08, 0x03, 0x17, 0x02, 0x02, + 0x02, 0x01, 0x03, 0x01, 0x06, 0x02, 0x04, 0x04, 0x09, 0x03, 0x0D, 0x0E, + 0x0F, 0x08, 0x04, 0x04, 0x02, 0x08, 0x0C, 0x03, 0x03, 0x03, 0x04, 0x02, + 0x01, 0x07, 0x07, 0x01, 0x02, 0x08, 0x03, 0x05, 0x08, 0x09, 0x0B, 0x08, + 0x07, 0x02, 0x01, 0x08, 0x44, 0x1F, 0x05, 0x16, 0x05, 0x08, 0x08, 0x04, + 0x0F, 0x1F, 0x01, 0x53, 0x13, 0x1F, 0x14, 0x13, 0x10, 0x08, 0xB6, 0x02, + 0x03, 0x04, 0x06, 0x0A, 0x0B, 0x0A, 0x11, 0x0D, 0x20, 0x0F, 0x0E, 0x0E, + 0x0A, 0xB6, 0x09, 0x05, 0x06, 0x02, 0x03, 0x03, 0x01, 0x03, 0x44, 0x02, + 0x86, 0x04, 0x04, 0x08, 0x02, 0x05, 0x07, 0x09, 0x07, 0x28, 0x05, 0x06, + 0x06, 0x01, 0x10, 0x01, 0x32, 0x12, 0x18, 0x01, 0x06, 0x02, 0x05, 0x02, + 0x2F, 0x0E, 0x1C, 0x1B, 0x0F, 0x0B, 0x0A, 0x0A, 0x17, 0x07, 0x0A, 0x0B, + 0x0C, 0x05, 0x03, 0x06, 0x07, 0x07, 0x1C, 0x0B, 0x22, 0x04, 0x0A, 0x01, + 0x0E, 0x04, 0x1D, 0x03, 0x0D, 0x0F, 0x0D, 0x13, 0x0A, 0x0A, 0x06, 0x0B, + 0x09, 0x0A, 0x09, 0x03, 0x05, 0x06, 0x05, 0x02, 0x04, 0x04, 0x07, 0x16, + 0x10, 0x05, 0x01, 0x01, 0x04, 0x06, 0x04, 0x0C, 0x0A, 0x0C, 0x0B, 0x0D, + 0x08, 0x05, 0x0A, 0x09, 0x09, 0x0C, 0x0A, 0x0C, 0x15, 0x19, 0x60, 0x2B, + 0x0E, 0x13, 0x03, 0x06, 0x04, 0x01, 0x01, 0x2B, 0x06, 0x65, 0x0C, 0x0F, + 0x09, 0x0D, 0x0A, 0x0D, 0xFF, 0x00, 0x07, 0x08, 0x0B, 0x0A, 0x0F, 0x0B, + 0x0A, 0x0C, 0x0A, 0x10, 0x04, 0x04, 0x02, 0x03, 0x01, 0x00, 0x0E, 0x11, + 0x16, 0x15, 0x1C, 0x0D, 0x0C, 0x05, 0x6F, 0x00, 0x00, 0x04, 0x00, 0x61, + 0x00, 0x5A, 0x03, 0x1D, 0x03, 0x8C, 0x00, 0x11, 0x00, 0x23, 0x00, 0x35, + 0x00, 0x7E, 0x00, 0x00, 0x13, 0x17, 0x07, 0x27, 0x15, 0x23, 0x35, 0x07, + 0x27, 0x37, 0x27, 0x37, 0x17, 0x35, 0x33, 0x15, 0x37, 0x17, 0x13, 0x37, + 0x27, 0x07, 0x35, 0x23, 0x15, 0x27, 0x07, 0x17, 0x07, 0x17, 0x37, 0x15, + 0x33, 0x35, 0x17, 0x37, 0x05, 0x37, 0x27, 0x07, 0x35, 0x23, 0x15, 0x27, + 0x07, 0x17, 0x07, 0x17, 0x37, 0x15, 0x33, 0x35, 0x17, 0x37, 0x05, 0x07, + 0x23, 0x22, 0x06, 0x1D, 0x01, 0x17, 0x15, 0x33, 0x15, 0x23, 0x15, 0x33, + 0x15, 0x23, 0x15, 0x33, 0x15, 0x23, 0x15, 0x07, 0x15, 0x14, 0x16, 0x3B, + 0x01, 0x32, 0x37, 0x36, 0x3D, 0x01, 0x27, 0x35, 0x23, 0x35, 0x33, 0x35, + 0x23, 0x35, 0x33, 0x35, 0x23, 0x35, 0x33, 0x35, 0x37, 0x35, 0x17, 0x11, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x1F, 0x01, 0x37, 0x11, + 0x27, 0x23, 0x07, 0x06, 0x07, 0x06, 0x15, 0x14, 0x17, 0x16, 0x17, 0xDA, + 0x2E, 0x13, 0x2D, 0x25, 0x30, 0x12, 0x2F, 0x2F, 0x14, 0x2E, 0x25, 0x2D, + 0x12, 0x21, 0x37, 0x16, 0x35, 0x2D, 0x38, 0x16, 0x38, 0x38, 0x16, 0x38, + 0x2D, 0x35, 0x16, 0x01, 0x90, 0x2D, 0x12, 0x2D, 0x25, 0x2E, 0x13, 0x2D, + 0x2D, 0x12, 0x2F, 0x25, 0x2D, 0x13, 0xFE, 0x7B, 0x21, 0x10, 0x08, 0x08, + 0x1A, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x1A, 0x08, 0x08, 0xC9, 0x08, + 0x04, 0x03, 0x1B, 0x0B, 0x0B, 0x0B, 0x0B, 0x0B, 0x0B, 0x1B, 0x2E, 0x10, + 0x06, 0x0A, 0x05, 0x06, 0x04, 0x02, 0x02, 0x03, 0x11, 0x35, 0x69, 0x7C, + 0x17, 0x05, 0x02, 0x03, 0x07, 0x08, 0x0C, 0x02, 0x00, 0x1A, 0x20, 0x1A, + 0x34, 0x35, 0x1B, 0x20, 0x1A, 0x1B, 0x21, 0x1B, 0x36, 0x35, 0x1A, 0x21, + 0x01, 0x0C, 0x20, 0x26, 0x1F, 0x3E, 0x40, 0x21, 0x26, 0x20, 0x20, 0x26, + 0x20, 0x40, 0x3E, 0x1E, 0x26, 0x0B, 0x1B, 0x21, 0x1A, 0x35, 0x36, 0x1B, + 0x21, 0x1B, 0x1A, 0x20, 0x1B, 0x35, 0x34, 0x1A, 0x20, 0x19, 0x1E, 0x08, + 0x07, 0x49, 0x19, 0x35, 0x36, 0x38, 0x36, 0x39, 0x36, 0x34, 0x2E, 0x27, + 0x07, 0x08, 0x04, 0x05, 0x06, 0x27, 0x2E, 0x34, 0x36, 0x39, 0x36, 0x38, + 0x36, 0x35, 0x19, 0x35, 0x1A, 0xFE, 0xC3, 0x08, 0x03, 0x06, 0x03, 0x06, + 0x05, 0x04, 0x06, 0x04, 0x03, 0x1A, 0x01, 0x63, 0xA8, 0x03, 0x02, 0x05, + 0x04, 0x08, 0x0C, 0x06, 0x07, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x51, + 0x00, 0x59, 0x01, 0xA1, 0x03, 0x26, 0x00, 0x98, 0x00, 0xBB, 0x00, 0xE4, + 0x00, 0x00, 0x01, 0x16, 0x17, 0x16, 0x17, 0x14, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x15, 0x14, 0x17, 0x16, 0x17, 0x14, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x14, 0x17, 0x16, 0x15, 0x14, 0x17, 0x14, 0x17, 0x1E, 0x01, 0x17, 0x16, + 0x15, 0x06, 0x1D, 0x05, 0x06, 0x07, 0x06, 0x23, 0x06, 0x23, 0x22, 0x35, + 0x26, 0x34, 0x37, 0x36, 0x3D, 0x04, 0x34, 0x37, 0x36, 0x27, 0x26, 0x27, + 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x1D, 0x05, + 0x06, 0x31, 0x22, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, + 0x26, 0x27, 0x26, 0x3D, 0x08, 0x26, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, + 0x35, 0x34, 0x37, 0x36, 0x3D, 0x02, 0x34, 0x2B, 0x01, 0x22, 0x37, 0x36, + 0x37, 0x36, 0x17, 0x16, 0x3B, 0x02, 0x32, 0x3E, 0x01, 0x33, 0x36, 0x07, + 0x36, 0x37, 0x36, 0x37, 0x33, 0x32, 0x17, 0x16, 0x07, 0x06, 0x17, 0x16, + 0x37, 0x36, 0x16, 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x26, 0x37, 0x36, 0x37, 0x06, 0x16, 0x17, 0x1E, 0x02, 0x17, 0x16, 0x07, + 0x16, 0x37, 0x36, 0x37, 0x36, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x37, + 0x07, 0x13, 0x3D, 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x1D, 0x02, 0x14, 0x33, 0x16, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x37, 0x36, 0x32, 0x37, 0x36, 0x37, 0x32, 0x36, 0x37, + 0x36, 0x37, 0x36, 0x3D, 0x01, 0x01, 0x4D, 0x01, 0x07, 0x03, 0x04, 0x04, + 0x01, 0x01, 0x05, 0x03, 0x04, 0x06, 0x02, 0x08, 0x04, 0x01, 0x02, 0x02, + 0x04, 0x03, 0x01, 0x02, 0x03, 0x08, 0x02, 0x03, 0x01, 0x02, 0x06, 0x01, + 0x02, 0x01, 0x05, 0x06, 0x01, 0x03, 0x03, 0x02, 0x02, 0x04, 0x02, 0x04, + 0x06, 0x01, 0x04, 0x01, 0x06, 0x01, 0x04, 0x03, 0x03, 0x06, 0x01, 0x02, + 0x03, 0x0F, 0x0C, 0x12, 0x0C, 0x27, 0x2A, 0x28, 0x2A, 0x05, 0x11, 0x11, + 0x0B, 0x19, 0x18, 0x0B, 0x04, 0x0C, 0x0B, 0x04, 0x03, 0x0C, 0x0F, 0x03, + 0x06, 0x05, 0x09, 0x06, 0x06, 0x04, 0x06, 0x1A, 0x19, 0x01, 0x08, 0x0F, + 0x08, 0x1B, 0x02, 0x03, 0x06, 0x05, 0x06, 0x05, 0x04, 0x01, 0x02, 0x01, + 0x02, 0x01, 0x02, 0x03, 0x01, 0x02, 0x8A, 0x21, 0x0E, 0x0F, 0x01, 0x02, + 0x10, 0x11, 0x2F, 0x22, 0x02, 0x01, 0x1E, 0x06, 0x0E, 0x0C, 0x02, 0x06, + 0x0C, 0x05, 0x12, 0x0E, 0x16, 0x10, 0x10, 0x03, 0x04, 0x06, 0x06, 0x0E, + 0x21, 0x11, 0x1B, 0x21, 0x1E, 0x79, 0x1E, 0x0B, 0x14, 0x09, 0x14, 0x0E, + 0x0F, 0x0A, 0x2A, 0x0A, 0x0B, 0x28, 0x0B, 0x06, 0x13, 0x28, 0x0A, 0x28, + 0x09, 0x05, 0x0C, 0x03, 0x0A, 0x03, 0x15, 0x0E, 0x05, 0x18, 0x06, 0x0D, + 0x01, 0x02, 0x03, 0x12, 0x04, 0x10, 0x07, 0x0E, 0x01, 0x06, 0x02, 0x07, + 0x03, 0x04, 0x08, 0x08, 0x03, 0x06, 0x0E, 0x0C, 0x08, 0x06, 0x04, 0x09, + 0x03, 0x01, 0x04, 0x04, 0x02, 0x07, 0x03, 0x02, 0x06, 0x08, 0x08, 0x0A, + 0x0C, 0x0F, 0x0A, 0x13, 0x36, 0x38, 0x6C, 0x6E, 0x12, 0x0A, 0x04, 0x01, + 0x01, 0x01, 0x01, 0x0E, 0x03, 0x01, 0x05, 0x37, 0x36, 0x6E, 0x6E, 0x06, + 0x18, 0x13, 0x09, 0x03, 0x06, 0x06, 0x02, 0x05, 0x06, 0x09, 0x01, 0x04, + 0x06, 0x04, 0x06, 0x91, 0x92, 0x58, 0x59, 0x15, 0x16, 0x03, 0x03, 0x09, + 0x04, 0x07, 0x01, 0x08, 0x02, 0x01, 0x10, 0x01, 0x08, 0x06, 0x08, 0x17, + 0x16, 0x5E, 0x5E, 0x5E, 0x5E, 0x2D, 0x2D, 0x15, 0x03, 0x01, 0x02, 0x01, + 0x02, 0x02, 0x03, 0x0A, 0x05, 0x05, 0x07, 0x14, 0x14, 0x01, 0x15, 0x14, + 0x03, 0x02, 0x01, 0x01, 0x01, 0x01, 0x02, 0x0A, 0x06, 0x0A, 0x09, 0x01, + 0x01, 0x02, 0x03, 0x05, 0x01, 0x05, 0x02, 0x01, 0x03, 0xD7, 0x1D, 0x29, + 0x2D, 0x27, 0x28, 0x26, 0x26, 0x03, 0x14, 0x2C, 0x2A, 0x16, 0x11, 0x20, + 0x0D, 0x02, 0x07, 0x0E, 0x06, 0x18, 0x09, 0x08, 0x1C, 0x19, 0x10, 0x18, + 0x19, 0x17, 0x14, 0x32, 0x1D, 0x2D, 0x28, 0x18, 0xFE, 0xB5, 0x02, 0x01, + 0x03, 0x01, 0x02, 0x01, 0x04, 0x03, 0x02, 0x01, 0x04, 0x01, 0x01, 0x04, + 0x01, 0x0C, 0x0E, 0x09, 0x04, 0x03, 0x04, 0x02, 0x05, 0x01, 0x01, 0x02, + 0x01, 0x01, 0x04, 0x01, 0x03, 0x01, 0x02, 0x01, 0x02, 0x0C, 0x0C, 0x00, + 0x00, 0x10, 0x00, 0x5E, 0x00, 0xC0, 0x03, 0x8F, 0x02, 0xC0, 0x00, 0x12, + 0x00, 0x36, 0x00, 0x48, 0x00, 0x5A, 0x00, 0x6A, 0x00, 0x79, 0x00, 0x85, + 0x00, 0x95, 0x00, 0xA3, 0x00, 0xAF, 0x00, 0xC1, 0x00, 0xC9, 0x00, 0xD8, + 0x00, 0xE7, 0x00, 0xF2, 0x01, 0x1B, 0x00, 0x00, 0x01, 0x34, 0x27, 0x26, + 0x23, 0x21, 0x22, 0x07, 0x06, 0x0F, 0x01, 0x15, 0x1F, 0x01, 0x21, 0x32, + 0x37, 0x36, 0x35, 0x37, 0x16, 0x17, 0x16, 0x15, 0x11, 0x14, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x23, 0x21, 0x22, 0x27, 0x26, 0x27, 0x26, 0x27, + 0x26, 0x35, 0x11, 0x34, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x33, 0x21, + 0x32, 0x17, 0x16, 0x07, 0x37, 0x27, 0x37, 0x17, 0x35, 0x33, 0x07, 0x37, + 0x17, 0x07, 0x17, 0x07, 0x27, 0x17, 0x23, 0x35, 0x07, 0x27, 0x17, 0x07, + 0x17, 0x07, 0x27, 0x17, 0x23, 0x35, 0x07, 0x27, 0x37, 0x27, 0x37, 0x17, + 0x35, 0x33, 0x07, 0x13, 0x35, 0x2F, 0x01, 0x23, 0x22, 0x06, 0x0F, 0x01, + 0x06, 0x1D, 0x01, 0x1F, 0x01, 0x33, 0x3F, 0x01, 0x07, 0x06, 0x07, 0x06, + 0x1D, 0x01, 0x1F, 0x01, 0x33, 0x3F, 0x01, 0x35, 0x2F, 0x04, 0x23, 0x0F, + 0x01, 0x15, 0x1F, 0x01, 0x33, 0x3F, 0x02, 0x27, 0x23, 0x07, 0x06, 0x0F, + 0x01, 0x06, 0x1D, 0x01, 0x1F, 0x01, 0x33, 0x3F, 0x01, 0x35, 0x17, 0x27, + 0x23, 0x0F, 0x01, 0x06, 0x1D, 0x01, 0x1F, 0x01, 0x33, 0x3F, 0x01, 0x3D, + 0x01, 0x2F, 0x01, 0x23, 0x0F, 0x01, 0x15, 0x1F, 0x01, 0x33, 0x3F, 0x01, + 0x27, 0x17, 0x07, 0x17, 0x07, 0x27, 0x17, 0x23, 0x35, 0x07, 0x27, 0x37, + 0x27, 0x37, 0x17, 0x35, 0x33, 0x0F, 0x01, 0x3F, 0x02, 0x33, 0x0F, 0x01, + 0x15, 0x17, 0x27, 0x23, 0x22, 0x07, 0x06, 0x0F, 0x01, 0x15, 0x1F, 0x01, + 0x33, 0x3F, 0x01, 0x35, 0x2F, 0x01, 0x23, 0x0F, 0x01, 0x15, 0x17, 0x16, + 0x17, 0x16, 0x3B, 0x01, 0x3F, 0x01, 0x35, 0x05, 0x15, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x35, 0x23, 0x35, 0x23, 0x07, 0x1F, 0x01, 0x37, 0x2F, 0x01, + 0x22, 0x06, 0x07, 0x06, 0x07, 0x06, 0x15, 0x14, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x33, 0x3F, 0x01, 0x27, 0x07, 0x23, 0x22, 0x27, 0x26, 0x27, + 0x26, 0x27, 0x26, 0x35, 0x34, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x03, + 0x4A, 0x03, 0x05, 0x07, 0xFE, 0xCE, 0x04, 0x01, 0x04, 0x01, 0x06, 0x06, + 0x0A, 0x01, 0x32, 0x08, 0x04, 0x03, 0x3A, 0x06, 0x02, 0x03, 0x03, 0x02, + 0x06, 0x04, 0x0A, 0x08, 0x0C, 0xFD, 0x2A, 0x0A, 0x07, 0x0A, 0x05, 0x07, + 0x03, 0x04, 0x04, 0x03, 0x07, 0x05, 0x0A, 0x08, 0x09, 0x02, 0xD6, 0x0C, + 0x07, 0x0A, 0xD7, 0x0B, 0x0B, 0x04, 0x0D, 0x0A, 0x02, 0x0D, 0x04, 0x0E, + 0x0E, 0x04, 0x0D, 0x02, 0x0A, 0x0D, 0x1C, 0x05, 0x0D, 0x0D, 0x05, 0x0E, + 0x03, 0x0B, 0x0B, 0x06, 0x0D, 0x0D, 0x06, 0x0B, 0x0B, 0x03, 0x14, 0x03, + 0x0A, 0x27, 0x04, 0x02, 0x02, 0x03, 0x01, 0x04, 0x08, 0x27, 0x0A, 0x26, + 0x08, 0x02, 0x02, 0x01, 0x05, 0x08, 0x29, 0x08, 0x03, 0x03, 0x08, 0x4C, + 0x03, 0x0A, 0x27, 0x08, 0x04, 0x04, 0x08, 0x27, 0x0A, 0x03, 0x54, 0x08, + 0x29, 0x08, 0x01, 0x02, 0x01, 0x01, 0x05, 0x08, 0x29, 0x08, 0x03, 0x54, + 0x0A, 0x26, 0x0A, 0x03, 0x01, 0x04, 0x0A, 0x26, 0x0A, 0x04, 0x04, 0x0A, + 0x26, 0x0A, 0x04, 0x04, 0x0A, 0x26, 0x0A, 0x04, 0xF1, 0x03, 0x0D, 0x0D, + 0x03, 0x0F, 0x03, 0x0A, 0x0D, 0x04, 0x0B, 0x0B, 0x04, 0x0D, 0x0A, 0x03, + 0xF8, 0x19, 0x0C, 0x08, 0x03, 0x02, 0x01, 0xC1, 0x0A, 0x26, 0x03, 0x01, + 0x03, 0x02, 0x06, 0x06, 0x09, 0x26, 0x0A, 0x04, 0x04, 0x0A, 0x26, 0x09, + 0x06, 0x06, 0x01, 0x04, 0x02, 0x02, 0x26, 0x0A, 0x04, 0xFE, 0xE0, 0x5B, + 0x2E, 0x1B, 0x1B, 0x3B, 0x7F, 0x10, 0x0B, 0x08, 0x11, 0x13, 0x17, 0x22, + 0x0C, 0x0A, 0x05, 0x06, 0x06, 0x05, 0x0A, 0x0C, 0x0E, 0x11, 0x11, 0x19, + 0x13, 0x05, 0x0E, 0x0F, 0x08, 0x07, 0x07, 0x07, 0x06, 0x04, 0x04, 0x03, + 0x03, 0x06, 0x03, 0x0A, 0x08, 0x02, 0x7A, 0x08, 0x04, 0x03, 0x01, 0x02, + 0x01, 0x0B, 0xC4, 0x0B, 0x03, 0x04, 0x03, 0x07, 0xFC, 0x0A, 0x05, 0x09, + 0x0A, 0xFE, 0x5E, 0x08, 0x08, 0x05, 0x0A, 0x05, 0x06, 0x04, 0x04, 0x06, + 0x05, 0x07, 0x08, 0x07, 0x09, 0x01, 0xA2, 0x0B, 0x08, 0x08, 0x07, 0x05, + 0x06, 0x03, 0x03, 0x06, 0xA9, 0x07, 0x07, 0x07, 0x07, 0x0D, 0x0D, 0x07, + 0x07, 0x07, 0x07, 0x08, 0x07, 0x0E, 0x0E, 0x07, 0x1D, 0x07, 0x07, 0x07, + 0x08, 0x07, 0x0E, 0x0E, 0x07, 0x08, 0x07, 0x07, 0x07, 0x07, 0x0D, 0x0D, + 0xFE, 0xE2, 0x27, 0x08, 0x06, 0x02, 0x04, 0x03, 0x01, 0x04, 0x27, 0x0A, + 0x03, 0x03, 0x3F, 0x06, 0x01, 0x02, 0x02, 0x03, 0x27, 0x0A, 0x03, 0x03, + 0x0A, 0x27, 0x08, 0x06, 0x4E, 0x0A, 0x03, 0x03, 0x0A, 0x27, 0x08, 0x06, + 0x06, 0x08, 0x31, 0x03, 0x03, 0x01, 0x02, 0x02, 0x02, 0x03, 0x27, 0x08, + 0x06, 0x06, 0x08, 0x27, 0x54, 0x06, 0x06, 0x03, 0x01, 0x04, 0x27, 0x0A, + 0x03, 0x03, 0x0A, 0x27, 0x5C, 0x0A, 0x03, 0x03, 0x0A, 0x27, 0x08, 0x06, + 0x06, 0x08, 0xC9, 0x07, 0x07, 0x07, 0x08, 0x07, 0x0E, 0x0E, 0x07, 0x08, + 0x07, 0x07, 0x07, 0x07, 0x0D, 0x0D, 0xD3, 0x2E, 0x14, 0x15, 0x15, 0x14, + 0x2E, 0x1C, 0x06, 0x01, 0x02, 0x03, 0x08, 0x27, 0x0A, 0x03, 0x03, 0x0A, + 0x27, 0x66, 0x03, 0x03, 0x0A, 0x27, 0x08, 0x02, 0x02, 0x02, 0x06, 0x08, + 0x27, 0x3C, 0x20, 0x31, 0x31, 0x24, 0x7B, 0x55, 0x02, 0x02, 0x23, 0x04, + 0x01, 0x0C, 0x0C, 0x0A, 0x0F, 0x0E, 0x12, 0x13, 0x0F, 0x10, 0x0A, 0x0C, + 0x04, 0x05, 0x03, 0x04, 0x26, 0x06, 0x03, 0x03, 0x05, 0x04, 0x09, 0x07, + 0x0C, 0x09, 0x08, 0x07, 0x06, 0x05, 0x06, 0x03, 0x00, 0x03, 0x00, 0x62, + 0x00, 0x3E, 0x02, 0x89, 0x03, 0x40, 0x00, 0x4E, 0x00, 0x8D, 0x00, 0xBF, + 0x00, 0x00, 0x01, 0x06, 0x17, 0x1E, 0x01, 0x15, 0x16, 0x15, 0x14, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x06, 0x0F, 0x01, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x27, + 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, + 0x26, 0x37, 0x36, 0x37, 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, 0x37, + 0x36, 0x3F, 0x01, 0x36, 0x37, 0x36, 0x37, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x37, 0x32, 0x3F, 0x01, 0x36, 0x33, 0x36, 0x07, 0x16, 0x07, + 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x0E, 0x01, + 0x07, 0x06, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x27, 0x26, 0x37, 0x36, 0x34, 0x37, 0x34, 0x37, 0x34, 0x37, 0x34, 0x37, + 0x36, 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x3F, 0x01, 0x3E, 0x01, 0x35, + 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x37, 0x36, + 0x27, 0x26, 0x27, 0x26, 0x27, 0x06, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x27, 0x06, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x32, 0x3F, 0x01, 0x3E, 0x01, 0x37, + 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x37, 0x36, 0x27, 0x0F, 0x01, + 0x06, 0x27, 0x02, 0x83, 0x01, 0x03, 0x01, 0x02, 0x01, 0x01, 0x01, 0x06, + 0x04, 0x0A, 0x0F, 0x1B, 0x1A, 0x27, 0x0A, 0x09, 0x07, 0x0E, 0x0E, 0x08, + 0x18, 0x08, 0x0C, 0x04, 0x0E, 0x03, 0x08, 0x03, 0x04, 0x08, 0x0E, 0x10, + 0x0F, 0x0C, 0x2A, 0x29, 0x26, 0x19, 0x1A, 0x11, 0x10, 0x06, 0x04, 0x02, + 0x01, 0x09, 0x16, 0x1E, 0x19, 0x20, 0x1A, 0x17, 0x14, 0x17, 0x0E, 0x06, + 0x12, 0x09, 0x03, 0x01, 0x04, 0x17, 0x16, 0x18, 0x22, 0x17, 0x11, 0x19, + 0x11, 0x10, 0x0C, 0x1B, 0x12, 0x01, 0x07, 0x53, 0x05, 0x03, 0x05, 0x0B, + 0x0D, 0x17, 0x18, 0x24, 0x09, 0x0A, 0x04, 0x12, 0x01, 0x0A, 0x03, 0x08, + 0x06, 0x0F, 0x0F, 0x0F, 0x0E, 0x31, 0x1A, 0x1B, 0x09, 0x04, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x09, 0x06, 0x06, 0x1A, 0x1E, + 0x1D, 0x14, 0x13, 0x0C, 0x0C, 0x08, 0x06, 0x0D, 0x0B, 0x0D, 0x16, 0x12, + 0x14, 0x15, 0x0E, 0x09, 0x0B, 0x07, 0x33, 0x26, 0x29, 0x1C, 0x12, 0x0B, + 0x10, 0x11, 0x2A, 0x2B, 0x2E, 0x2E, 0x09, 0x05, 0x04, 0x13, 0x13, 0x25, + 0x24, 0x33, 0x19, 0x01, 0x09, 0x12, 0x0D, 0x01, 0x03, 0x08, 0x03, 0x02, + 0x03, 0x03, 0x05, 0x14, 0x05, 0x12, 0x09, 0x35, 0x27, 0x25, 0x13, 0x14, + 0x06, 0x05, 0x06, 0x15, 0x15, 0x0A, 0x0A, 0x02, 0xCC, 0x0F, 0x12, 0x05, + 0x18, 0x05, 0x0E, 0x1B, 0x1C, 0x0E, 0x19, 0x32, 0x21, 0x2A, 0x3C, 0x38, + 0x37, 0x32, 0x0B, 0x0E, 0x09, 0x10, 0x0E, 0x07, 0x15, 0x08, 0x07, 0x02, + 0x0A, 0x02, 0x06, 0x02, 0x04, 0x03, 0x06, 0x0E, 0x0D, 0x0B, 0x25, 0x34, + 0x30, 0x36, 0x34, 0x3C, 0x38, 0x40, 0x29, 0x3B, 0x2A, 0x3A, 0x0E, 0x0C, + 0x0A, 0x03, 0x04, 0x0E, 0x0C, 0x12, 0x0C, 0x07, 0x15, 0x0B, 0x0B, 0x07, + 0x10, 0x23, 0x1B, 0x1E, 0x13, 0x0C, 0x04, 0x05, 0x01, 0x04, 0x09, 0x08, + 0x02, 0x6C, 0x36, 0x30, 0x36, 0x2F, 0x31, 0x2C, 0x2D, 0x27, 0x0A, 0x09, + 0x04, 0x0D, 0x01, 0x07, 0x02, 0x06, 0x04, 0x09, 0x0E, 0x0C, 0x0E, 0x32, + 0x3C, 0x3C, 0x44, 0x22, 0x11, 0x1A, 0x19, 0x03, 0x08, 0x03, 0x08, 0x05, + 0x03, 0x03, 0x05, 0x01, 0x01, 0x06, 0x04, 0x03, 0x0A, 0x08, 0x08, 0x11, + 0x13, 0x0C, 0x0E, 0x04, 0x0A, 0x0B, 0x0D, 0x0D, 0x07, 0x0E, 0x03, 0x03, + 0x01, 0x02, 0x05, 0x06, 0x38, 0x03, 0x1C, 0x1D, 0x26, 0x16, 0x0A, 0x0F, + 0x0C, 0x1D, 0x09, 0x09, 0x16, 0x41, 0x46, 0x42, 0x43, 0x45, 0x42, 0x43, + 0x33, 0x16, 0x01, 0x08, 0x0E, 0x0A, 0x01, 0x01, 0x08, 0x01, 0x03, 0x03, + 0x03, 0x10, 0x03, 0x0E, 0x08, 0x31, 0x41, 0x41, 0x44, 0x49, 0x47, 0x4D, + 0x45, 0x06, 0x06, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x66, + 0x00, 0x40, 0x02, 0x90, 0x03, 0x40, 0x00, 0x2E, 0x00, 0x4F, 0x00, 0x6F, + 0x00, 0x8D, 0x00, 0x00, 0x01, 0x16, 0x07, 0x06, 0x0F, 0x07, 0x27, 0x26, + 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x2F, 0x01, 0x35, 0x3F, 0x01, 0x17, + 0x16, 0x17, 0x16, 0x3F, 0x05, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x37, + 0x36, 0x3F, 0x02, 0x17, 0x07, 0x26, 0x27, 0x26, 0x27, 0x0F, 0x03, 0x06, + 0x07, 0x06, 0x27, 0x0F, 0x01, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x17, 0x3F, 0x06, 0x35, 0x27, 0x07, 0x17, 0x0F, 0x05, 0x2F, 0x04, + 0x35, 0x37, 0x33, 0x16, 0x17, 0x16, 0x3F, 0x04, 0x33, 0x16, 0x17, 0x16, + 0x1F, 0x01, 0x3F, 0x01, 0x0F, 0x07, 0x33, 0x37, 0x33, 0x37, 0x1F, 0x06, + 0x33, 0x1F, 0x01, 0x35, 0x34, 0x26, 0x27, 0x26, 0x27, 0x26, 0x23, 0x02, + 0x87, 0x09, 0x04, 0x04, 0x13, 0x26, 0x36, 0x36, 0x2F, 0x24, 0x0D, 0x07, + 0x09, 0x3A, 0x2E, 0x2C, 0x24, 0x18, 0x13, 0x14, 0x0A, 0x0C, 0x05, 0x07, + 0x12, 0x17, 0x1F, 0x1D, 0x1A, 0x32, 0x26, 0x18, 0x0B, 0x0C, 0x0D, 0x1F, + 0x26, 0x26, 0x29, 0x10, 0x19, 0x12, 0x1A, 0x0B, 0x09, 0x05, 0x70, 0x2D, + 0x28, 0x26, 0x24, 0x05, 0x07, 0x1F, 0x2A, 0x26, 0x26, 0x27, 0x28, 0x02, + 0x02, 0x0B, 0x0B, 0x11, 0x10, 0x19, 0x1D, 0x2B, 0x2A, 0x36, 0x16, 0x22, + 0x26, 0x26, 0x36, 0x24, 0x14, 0x02, 0x44, 0x03, 0x12, 0x1B, 0x22, 0x24, + 0x1F, 0x1D, 0x4C, 0x34, 0x1F, 0x10, 0x06, 0x04, 0x02, 0x14, 0x16, 0x15, + 0x16, 0x24, 0x1B, 0x10, 0x04, 0x03, 0x0B, 0x0E, 0x11, 0x09, 0x31, 0x2B, + 0x1D, 0xCA, 0x35, 0x14, 0x12, 0x0E, 0x04, 0x07, 0x02, 0x09, 0x0B, 0x1B, + 0x12, 0x0F, 0x15, 0x14, 0x0F, 0x05, 0x07, 0x0B, 0x4C, 0x14, 0x14, 0x1A, + 0x1C, 0x0B, 0x0C, 0x0B, 0x0F, 0x02, 0xC5, 0x55, 0x47, 0x48, 0x46, 0x69, + 0x5E, 0x41, 0x2D, 0x16, 0x0C, 0x04, 0x05, 0x28, 0x31, 0x2F, 0x3D, 0x2A, + 0x38, 0x35, 0x39, 0x5C, 0x49, 0x34, 0x28, 0x0B, 0x0F, 0x05, 0x05, 0x07, + 0x19, 0x1F, 0x1D, 0x0E, 0x1F, 0x1B, 0x31, 0x1A, 0x1B, 0x03, 0x01, 0x05, + 0x04, 0x0C, 0x0B, 0x05, 0x12, 0x2D, 0x02, 0x17, 0x17, 0x30, 0x06, 0x07, + 0x22, 0x1D, 0x17, 0x01, 0x03, 0x12, 0x21, 0x2D, 0x7D, 0x3C, 0x2E, 0x31, + 0x2F, 0x36, 0x2E, 0x2F, 0x22, 0x0F, 0x1B, 0x26, 0x34, 0x59, 0x63, 0xBA, + 0x2A, 0x26, 0x43, 0x74, 0x5C, 0x4A, 0x38, 0x2B, 0x1D, 0x16, 0x41, 0x45, + 0x46, 0x41, 0x3E, 0x55, 0x10, 0x0D, 0x03, 0x04, 0x07, 0x11, 0x19, 0x14, + 0x09, 0x12, 0x0E, 0x11, 0x05, 0x14, 0x03, 0x0D, 0x38, 0x10, 0x14, 0x1D, + 0x26, 0x07, 0x06, 0x03, 0x03, 0x02, 0x02, 0x09, 0x0C, 0x06, 0x02, 0x05, + 0x02, 0x05, 0x04, 0x0B, 0x33, 0x42, 0x11, 0x0A, 0x04, 0x04, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x59, 0x00, 0x58, 0x03, 0x7D, 0x03, 0x26, 0x01, 0x0E, + 0x01, 0x23, 0x01, 0x3B, 0x01, 0x51, 0x00, 0x00, 0x01, 0x06, 0x07, 0x06, + 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x23, 0x22, + 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x27, 0x22, 0x27, 0x2E, 0x01, 0x23, + 0x26, 0x27, 0x26, 0x27, 0x26, 0x07, 0x14, 0x06, 0x07, 0x06, 0x07, 0x06, + 0x07, 0x06, 0x07, 0x06, 0x17, 0x16, 0x1F, 0x01, 0x16, 0x17, 0x16, 0x15, + 0x14, 0x17, 0x16, 0x17, 0x16, 0x33, 0x32, 0x07, 0x06, 0x07, 0x06, 0x27, + 0x26, 0x27, 0x2E, 0x01, 0x27, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, + 0x16, 0x17, 0x15, 0x14, 0x07, 0x06, 0x07, 0x06, 0x07, 0x06, 0x15, 0x06, + 0x0F, 0x01, 0x06, 0x23, 0x06, 0x27, 0x26, 0x27, 0x26, 0x2F, 0x01, 0x26, + 0x27, 0x26, 0x2F, 0x01, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, + 0x27, 0x2E, 0x01, 0x27, 0x36, 0x37, 0x36, 0x37, 0x36, 0x32, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x33, 0x32, 0x3F, 0x01, 0x3E, 0x02, 0x37, 0x36, 0x37, 0x36, 0x27, + 0x26, 0x07, 0x06, 0x27, 0x26, 0x27, 0x2E, 0x03, 0x27, 0x26, 0x27, 0x26, + 0x27, 0x26, 0x37, 0x36, 0x33, 0x32, 0x1F, 0x01, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x16, 0x17, 0x16, 0x17, 0x1E, 0x03, 0x17, 0x16, 0x17, 0x16, + 0x15, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x37, 0x36, 0x3F, 0x01, + 0x32, 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x17, 0x16, 0x15, 0x06, 0x25, 0x2E, + 0x01, 0x27, 0x26, 0x27, 0x26, 0x07, 0x22, 0x17, 0x16, 0x17, 0x32, 0x16, + 0x32, 0x16, 0x33, 0x32, 0x16, 0x17, 0x16, 0x27, 0x26, 0x07, 0x06, 0x17, + 0x16, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x36, 0x27, 0x2E, 0x01, + 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x22, 0x37, 0x27, 0x22, 0x2E, 0x01, + 0x22, 0x26, 0x23, 0x22, 0x14, 0x33, 0x16, 0x3B, 0x01, 0x16, 0x32, 0x17, + 0x16, 0x33, 0x32, 0x35, 0x26, 0x03, 0x70, 0x06, 0x06, 0x08, 0x06, 0x09, + 0x0B, 0x0E, 0x05, 0x1B, 0x26, 0x25, 0x21, 0x17, 0x11, 0x1B, 0x0E, 0x24, + 0x11, 0x24, 0x12, 0x0F, 0x0D, 0x0E, 0x0D, 0x01, 0x07, 0x02, 0x08, 0x03, + 0x04, 0x02, 0x03, 0x02, 0x03, 0x01, 0x01, 0x04, 0x02, 0x03, 0x01, 0x01, + 0x02, 0x05, 0x01, 0x04, 0x06, 0x04, 0x08, 0x09, 0x0D, 0x0C, 0x04, 0x01, + 0x04, 0x02, 0x03, 0x01, 0x02, 0x03, 0x02, 0x03, 0x06, 0x01, 0x06, 0x01, + 0x04, 0x03, 0x04, 0x01, 0x01, 0x04, 0x01, 0x06, 0x0B, 0x10, 0x10, 0x19, + 0x0A, 0x0E, 0x05, 0x11, 0x04, 0x05, 0x0B, 0x09, 0x02, 0x02, 0x01, 0x03, + 0x02, 0x02, 0x01, 0x03, 0x04, 0x06, 0x06, 0x02, 0x06, 0x05, 0x08, 0x03, + 0x0A, 0x12, 0x1B, 0x30, 0x20, 0x22, 0x06, 0x06, 0x02, 0x04, 0x02, 0x02, + 0x02, 0x04, 0x03, 0x02, 0x05, 0x01, 0x01, 0x06, 0x01, 0x0A, 0x07, 0x0B, + 0x0A, 0x05, 0x15, 0x05, 0x11, 0x04, 0x09, 0x07, 0x02, 0x09, 0x03, 0x09, + 0x25, 0x0A, 0x09, 0x26, 0x0A, 0x02, 0x06, 0x01, 0x01, 0x01, 0x01, 0x02, + 0x02, 0x06, 0x02, 0x0F, 0x1A, 0x0F, 0x07, 0x1A, 0x04, 0x07, 0x1A, 0x04, + 0x0C, 0x06, 0x04, 0x02, 0x02, 0x08, 0x07, 0x05, 0x02, 0x02, 0x02, 0x04, + 0x01, 0x04, 0x01, 0x06, 0x05, 0x06, 0x05, 0x04, 0x05, 0x06, 0x02, 0x07, + 0x1C, 0x0E, 0x1C, 0x07, 0x04, 0x01, 0x02, 0x04, 0x07, 0x08, 0x04, 0x07, + 0x01, 0x04, 0x04, 0x02, 0x0A, 0x02, 0x03, 0x09, 0x02, 0x0B, 0x16, 0x0F, + 0x13, 0x01, 0x04, 0x05, 0x02, 0x09, 0x01, 0x05, 0x05, 0x12, 0x05, 0x0C, + 0x01, 0x06, 0x01, 0x02, 0x05, 0x01, 0x03, 0x09, 0x0A, 0x03, 0x04, 0x14, + 0x04, 0x09, 0x12, 0x0F, 0x0E, 0x14, 0x09, 0x36, 0x24, 0x12, 0x15, 0x17, + 0x16, 0x15, 0x0D, 0x0A, 0x0D, 0x0A, 0x02, 0x17, 0x05, 0x10, 0x05, 0x15, + 0x15, 0x12, 0x17, 0x07, 0x01, 0xFE, 0x72, 0x05, 0x06, 0x0A, 0x05, 0x07, + 0x07, 0x05, 0x05, 0x01, 0x01, 0x05, 0x01, 0x06, 0x02, 0x06, 0x02, 0x01, + 0x09, 0x03, 0x08, 0x33, 0x04, 0x02, 0x01, 0x03, 0x04, 0x0A, 0x03, 0x0A, + 0x02, 0x02, 0x08, 0x04, 0x02, 0x02, 0x02, 0x0A, 0x02, 0x07, 0x07, 0x02, + 0x03, 0x01, 0x04, 0x43, 0x06, 0x04, 0x06, 0x08, 0x06, 0x0A, 0x03, 0x04, + 0x04, 0x01, 0x05, 0x06, 0x03, 0x0A, 0x02, 0x05, 0x0A, 0x03, 0x02, 0x01, + 0xE3, 0x04, 0x01, 0x03, 0x01, 0x01, 0x08, 0x0A, 0x03, 0x11, 0x11, 0x10, + 0x07, 0x05, 0x01, 0x02, 0x03, 0x06, 0x01, 0x01, 0x01, 0x06, 0x01, 0x03, + 0x02, 0x01, 0x02, 0x01, 0x02, 0x04, 0x01, 0x04, 0x01, 0x03, 0x04, 0x02, + 0x01, 0x01, 0x01, 0x02, 0x05, 0x03, 0x06, 0x09, 0x06, 0x08, 0x0A, 0x06, + 0x05, 0x09, 0x08, 0x04, 0x01, 0x04, 0x01, 0x04, 0x03, 0x02, 0x01, 0x04, + 0x01, 0x04, 0x01, 0x10, 0x08, 0x13, 0x07, 0x0B, 0x1B, 0x0C, 0x1A, 0x25, + 0x1E, 0x1F, 0x1C, 0x0E, 0x0A, 0x04, 0x0E, 0x03, 0x04, 0x06, 0x07, 0x09, + 0x0C, 0x06, 0x06, 0x02, 0x03, 0x01, 0x04, 0x03, 0x03, 0x03, 0x01, 0x03, + 0x02, 0x02, 0x05, 0x04, 0x01, 0x06, 0x0E, 0x15, 0x29, 0x37, 0x36, 0x40, + 0x39, 0x09, 0x25, 0x0A, 0x07, 0x02, 0x03, 0x04, 0x03, 0x08, 0x03, 0x02, + 0x0A, 0x02, 0x0E, 0x09, 0x0D, 0x04, 0x02, 0x09, 0x01, 0x08, 0x01, 0x03, + 0x07, 0x02, 0x08, 0x02, 0x08, 0x1F, 0x07, 0x08, 0x1F, 0x07, 0x01, 0x06, + 0x02, 0x02, 0x04, 0x04, 0x02, 0x02, 0x01, 0x07, 0x08, 0x07, 0x03, 0x0A, + 0x01, 0x03, 0x0A, 0x01, 0x04, 0x04, 0x03, 0x0F, 0x08, 0x05, 0x05, 0x04, + 0x02, 0x06, 0x01, 0x04, 0x03, 0x07, 0x03, 0x03, 0x02, 0x02, 0x02, 0x02, + 0x03, 0x09, 0x25, 0x14, 0x25, 0x09, 0x04, 0x03, 0x03, 0x04, 0x08, 0x02, + 0x01, 0x02, 0x04, 0x01, 0x06, 0x02, 0x01, 0x08, 0x01, 0x07, 0x10, 0x0B, + 0x0C, 0x01, 0x03, 0x03, 0x02, 0x06, 0x02, 0x01, 0x01, 0x01, 0x18, 0x09, + 0x10, 0x02, 0x06, 0x02, 0x02, 0x06, 0x01, 0x03, 0x02, 0x02, 0x01, 0x01, + 0x05, 0x02, 0x03, 0x04, 0x02, 0x03, 0x02, 0x01, 0x03, 0x01, 0x02, 0x02, + 0x01, 0x05, 0x04, 0x01, 0x03, 0x06, 0x01, 0x0D, 0x03, 0x09, 0x02, 0x0A, + 0x10, 0x0F, 0x0F, 0x07, 0x10, 0x10, 0x04, 0x09, 0x02, 0x04, 0x02, 0x04, + 0x03, 0x02, 0x06, 0x05, 0x02, 0x02, 0x02, 0x03, 0x01, 0x05, 0x0A, 0x01, + 0x03, 0x04, 0x03, 0x04, 0x05, 0x02, 0x04, 0x01, 0x02, 0x02, 0x01, 0x04, + 0x05, 0x01, 0x06, 0x01, 0x03, 0x04, 0x01, 0x03, 0x01, 0x1B, 0x03, 0x02, + 0x02, 0x02, 0x0E, 0x01, 0x01, 0x01, 0x01, 0x04, 0x04, 0x00, 0x00, 0x00, + 0x00, 0x06, 0x00, 0x00, 0xFF, 0xC0, 0x04, 0x00, 0x03, 0xC0, 0x00, 0x17, + 0x00, 0x1F, 0x00, 0x27, 0x00, 0x30, 0x00, 0x38, 0x00, 0x41, 0x00, 0x00, + 0x01, 0x33, 0x15, 0x23, 0x0E, 0x01, 0x07, 0x15, 0x23, 0x35, 0x2E, 0x01, + 0x27, 0x23, 0x35, 0x33, 0x3E, 0x01, 0x37, 0x35, 0x33, 0x15, 0x1E, 0x01, + 0x07, 0x33, 0x2E, 0x01, 0x27, 0x15, 0x1E, 0x01, 0x06, 0x16, 0x32, 0x36, + 0x34, 0x26, 0x22, 0x06, 0x3D, 0x01, 0x06, 0x07, 0x06, 0x07, 0x33, 0x3E, + 0x01, 0x07, 0x23, 0x1E, 0x01, 0x17, 0x35, 0x2E, 0x01, 0x17, 0x15, 0x36, + 0x37, 0x36, 0x37, 0x23, 0x0E, 0x01, 0x03, 0x9B, 0x65, 0x65, 0x15, 0xC0, + 0x86, 0x80, 0x86, 0xC0, 0x15, 0x65, 0x65, 0x15, 0xC0, 0x86, 0x80, 0x86, + 0xC0, 0xD1, 0x64, 0x14, 0x72, 0x53, 0x28, 0x40, 0xE8, 0x26, 0x34, 0x26, + 0x26, 0x34, 0x26, 0x52, 0x39, 0x3A, 0x14, 0x64, 0x0D, 0x40, 0x4D, 0x64, + 0x13, 0x76, 0x50, 0x28, 0x40, 0xE8, 0x52, 0x3A, 0x39, 0x14, 0x64, 0x0D, + 0x40, 0x02, 0x00, 0x80, 0x86, 0xC0, 0x15, 0x65, 0x65, 0x15, 0xC0, 0x86, + 0x80, 0x86, 0xC0, 0x15, 0x65, 0x65, 0x15, 0xC0, 0x86, 0x53, 0x72, 0x14, + 0x64, 0x0D, 0x40, 0x82, 0x26, 0x26, 0x34, 0x26, 0x26, 0x9B, 0x64, 0x14, + 0x39, 0x3A, 0x52, 0x28, 0x40, 0xE8, 0x50, 0x76, 0x13, 0x64, 0x0D, 0x40, + 0x4D, 0x64, 0x14, 0x3A, 0x39, 0x52, 0x28, 0x40, 0x00, 0x0A, 0x00, 0x00, + 0xFF, 0xC0, 0x04, 0x00, 0x03, 0xC0, 0x00, 0x07, 0x00, 0x0D, 0x00, 0x19, + 0x00, 0x25, 0x00, 0x31, 0x00, 0x3D, 0x00, 0x4E, 0x00, 0x5F, 0x00, 0x70, + 0x00, 0x81, 0x00, 0x00, 0x00, 0x36, 0x32, 0x16, 0x14, 0x06, 0x22, 0x26, + 0x01, 0x11, 0x32, 0x36, 0x34, 0x26, 0x02, 0x36, 0x32, 0x16, 0x1D, 0x01, + 0x14, 0x06, 0x22, 0x26, 0x3D, 0x01, 0x12, 0x06, 0x22, 0x26, 0x3D, 0x01, + 0x34, 0x36, 0x32, 0x16, 0x1D, 0x01, 0x01, 0x33, 0x32, 0x16, 0x14, 0x06, + 0x2B, 0x01, 0x22, 0x26, 0x34, 0x36, 0x20, 0x16, 0x14, 0x06, 0x2B, 0x01, + 0x22, 0x26, 0x34, 0x36, 0x3B, 0x01, 0x01, 0x17, 0x16, 0x15, 0x14, 0x06, + 0x23, 0x22, 0x2F, 0x01, 0x26, 0x35, 0x34, 0x37, 0x36, 0x33, 0x32, 0x01, + 0x27, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x1F, 0x01, 0x16, 0x15, 0x14, + 0x07, 0x06, 0x23, 0x22, 0x25, 0x07, 0x06, 0x23, 0x22, 0x27, 0x26, 0x35, + 0x34, 0x3F, 0x01, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x01, 0x37, 0x36, + 0x33, 0x32, 0x17, 0x16, 0x15, 0x14, 0x0F, 0x01, 0x06, 0x23, 0x22, 0x26, + 0x35, 0x34, 0x01, 0x00, 0x96, 0xD4, 0x96, 0x96, 0xD4, 0x96, 0x01, 0x00, + 0x42, 0x5E, 0x5E, 0x82, 0x26, 0x34, 0x26, 0x26, 0x34, 0x26, 0x80, 0x26, + 0x34, 0x26, 0x26, 0x34, 0x26, 0x01, 0x40, 0x40, 0x1A, 0x26, 0x26, 0x1A, + 0x40, 0x1A, 0x26, 0x26, 0xFD, 0x34, 0x26, 0x26, 0x1A, 0x40, 0x1A, 0x26, + 0x26, 0x1A, 0x40, 0x02, 0xBD, 0x2D, 0x13, 0x26, 0x1A, 0x1B, 0x12, 0x2E, + 0x12, 0x13, 0x12, 0x1B, 0x1A, 0xFD, 0x99, 0x2D, 0x13, 0x26, 0x1B, 0x1A, + 0x12, 0x2E, 0x12, 0x12, 0x13, 0x1A, 0x1B, 0x02, 0x94, 0x2D, 0x13, 0x1A, + 0x1B, 0x12, 0x13, 0x12, 0x2E, 0x12, 0x1B, 0x1A, 0x26, 0xFD, 0x19, 0x2D, + 0x13, 0x1B, 0x19, 0x14, 0x12, 0x12, 0x2E, 0x12, 0x1A, 0x1B, 0x26, 0x02, + 0x2A, 0x96, 0x96, 0xD4, 0x96, 0x96, 0x01, 0x0A, 0xFE, 0xC0, 0x5E, 0x84, + 0x5E, 0xFD, 0xFA, 0x26, 0x26, 0x1A, 0x40, 0x1A, 0x26, 0x26, 0x1A, 0x40, + 0x02, 0xE6, 0x26, 0x26, 0x1A, 0x40, 0x1A, 0x26, 0x26, 0x1A, 0x40, 0xFE, + 0xC0, 0x26, 0x34, 0x26, 0x26, 0x34, 0x26, 0x26, 0x34, 0x26, 0x26, 0x34, + 0x26, 0xFE, 0xDE, 0x2E, 0x12, 0x1A, 0x1B, 0x26, 0x13, 0x2D, 0x13, 0x1B, + 0x1A, 0x13, 0x12, 0x01, 0xB2, 0x2E, 0x12, 0x1B, 0x1A, 0x26, 0x13, 0x2D, + 0x13, 0x1A, 0x1B, 0x12, 0x13, 0x40, 0x2E, 0x12, 0x13, 0x12, 0x1B, 0x1A, + 0x13, 0x2D, 0x13, 0x26, 0x1A, 0x1B, 0xFD, 0xCE, 0x2E, 0x12, 0x12, 0x14, + 0x19, 0x1B, 0x13, 0x2D, 0x13, 0x26, 0x1B, 0x1A, 0x00, 0x01, 0x00, 0x00, + 0xFF, 0xBF, 0x04, 0x02, 0x03, 0xC0, 0x00, 0x22, 0x00, 0x00, 0x09, 0x01, + 0x1E, 0x01, 0x0F, 0x01, 0x06, 0x27, 0x26, 0x27, 0x01, 0x06, 0x23, 0x22, + 0x27, 0x26, 0x35, 0x34, 0x37, 0x17, 0x16, 0x32, 0x3F, 0x01, 0x36, 0x34, + 0x2F, 0x01, 0x36, 0x33, 0x32, 0x17, 0x16, 0x15, 0x14, 0x02, 0x1E, 0x01, + 0xCD, 0x13, 0x04, 0x14, 0x65, 0x13, 0x19, 0x1B, 0x10, 0xFE, 0x75, 0x3E, + 0x49, 0x77, 0x54, 0x55, 0x0C, 0xA7, 0x12, 0x36, 0x12, 0x66, 0x12, 0x12, + 0xA7, 0x28, 0x2C, 0x76, 0x56, 0x54, 0x02, 0x19, 0xFE, 0x75, 0x10, 0x34, + 0x13, 0x65, 0x13, 0x01, 0x02, 0x13, 0x01, 0xCD, 0x22, 0x55, 0x54, 0x77, + 0x2C, 0x28, 0xA7, 0x12, 0x12, 0x66, 0x12, 0x36, 0x12, 0xA7, 0x0C, 0x54, + 0x56, 0x76, 0x49, 0x00, 0x00, 0x04, 0x00, 0x00, 0xFF, 0xC0, 0x04, 0x00, + 0x03, 0xC0, 0x00, 0x27, 0x00, 0x2F, 0x00, 0x81, 0x00, 0x8F, 0x00, 0x00, + 0x01, 0x07, 0x16, 0x1F, 0x01, 0x15, 0x07, 0x06, 0x07, 0x17, 0x07, 0x27, + 0x06, 0x0F, 0x01, 0x23, 0x27, 0x26, 0x27, 0x07, 0x27, 0x37, 0x26, 0x2F, + 0x01, 0x35, 0x37, 0x36, 0x37, 0x27, 0x37, 0x17, 0x36, 0x3F, 0x01, 0x33, + 0x17, 0x16, 0x17, 0x37, 0x06, 0x16, 0x32, 0x36, 0x34, 0x26, 0x22, 0x06, + 0x01, 0x15, 0x07, 0x06, 0x07, 0x17, 0x07, 0x27, 0x06, 0x07, 0x17, 0x07, + 0x27, 0x06, 0x07, 0x17, 0x07, 0x27, 0x06, 0x0F, 0x01, 0x23, 0x27, 0x26, + 0x27, 0x07, 0x27, 0x37, 0x26, 0x27, 0x07, 0x27, 0x37, 0x26, 0x27, 0x07, + 0x27, 0x37, 0x26, 0x2F, 0x01, 0x35, 0x37, 0x36, 0x37, 0x27, 0x37, 0x17, + 0x36, 0x37, 0x27, 0x37, 0x17, 0x36, 0x37, 0x27, 0x37, 0x17, 0x36, 0x3F, + 0x01, 0x33, 0x17, 0x16, 0x17, 0x37, 0x17, 0x07, 0x1E, 0x01, 0x17, 0x37, + 0x17, 0x07, 0x1E, 0x01, 0x17, 0x37, 0x17, 0x07, 0x16, 0x17, 0x04, 0x16, + 0x33, 0x32, 0x37, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x07, 0x06, 0x15, + 0x01, 0x95, 0x29, 0x0A, 0x04, 0x46, 0x46, 0x04, 0x0A, 0x29, 0x2D, 0x3A, + 0x13, 0x0F, 0x0C, 0x40, 0x0C, 0x0F, 0x13, 0x3A, 0x2D, 0x29, 0x0A, 0x04, + 0x46, 0x46, 0x04, 0x0A, 0x29, 0x2D, 0x3A, 0x13, 0x0F, 0x0C, 0x40, 0x0C, + 0x0F, 0x13, 0x3A, 0xC8, 0x26, 0x34, 0x26, 0x26, 0x34, 0x26, 0x03, 0x60, + 0x43, 0x01, 0x04, 0x39, 0x18, 0x43, 0x01, 0x0D, 0x27, 0x2D, 0x38, 0x0B, + 0x09, 0x0E, 0x3B, 0x25, 0x10, 0x08, 0x0C, 0x40, 0x0C, 0x0B, 0x0D, 0x25, + 0x3B, 0x0E, 0x09, 0x0B, 0x38, 0x2E, 0x27, 0x08, 0x05, 0x43, 0x19, 0x3A, + 0x04, 0x01, 0x43, 0x43, 0x01, 0x04, 0x3A, 0x19, 0x43, 0x05, 0x08, 0x27, + 0x2E, 0x38, 0x06, 0x0E, 0x0E, 0x3B, 0x25, 0x10, 0x08, 0x0C, 0x40, 0x0C, + 0x0B, 0x0D, 0x25, 0x3B, 0x0E, 0x02, 0x0E, 0x04, 0x38, 0x2D, 0x27, 0x03, + 0x09, 0x02, 0x43, 0x18, 0x39, 0x04, 0x01, 0xFE, 0x58, 0x52, 0x39, 0x3A, + 0x29, 0x28, 0x50, 0x3B, 0x3A, 0x28, 0x29, 0x01, 0x28, 0x3A, 0x13, 0x0F, + 0x0C, 0x40, 0x0C, 0x0F, 0x13, 0x3A, 0x2D, 0x29, 0x0A, 0x04, 0x46, 0x46, + 0x04, 0x0A, 0x29, 0x2D, 0x3A, 0x13, 0x0F, 0x0C, 0x40, 0x0C, 0x0F, 0x13, + 0x3A, 0x2D, 0x29, 0x0A, 0x04, 0x46, 0x46, 0x04, 0x0A, 0x29, 0xCF, 0x26, + 0x26, 0x34, 0x26, 0x26, 0x01, 0xC6, 0x40, 0x0C, 0x0B, 0x0D, 0x25, 0x3B, + 0x0E, 0x02, 0x12, 0x38, 0x2E, 0x27, 0x08, 0x05, 0x43, 0x19, 0x3A, 0x04, + 0x01, 0x43, 0x43, 0x01, 0x04, 0x3A, 0x19, 0x43, 0x05, 0x08, 0x27, 0x2E, + 0x38, 0x0B, 0x09, 0x0E, 0x3B, 0x25, 0x10, 0x08, 0x0C, 0x40, 0x0C, 0x0B, + 0x0D, 0x25, 0x3B, 0x0E, 0x09, 0x0B, 0x38, 0x2E, 0x27, 0x05, 0x08, 0x43, + 0x19, 0x3A, 0x04, 0x01, 0x43, 0x43, 0x01, 0x04, 0x3A, 0x19, 0x43, 0x01, + 0x09, 0x03, 0x27, 0x2E, 0x38, 0x03, 0x0D, 0x04, 0x0E, 0x3B, 0x25, 0x10, + 0x08, 0x65, 0x52, 0x29, 0x28, 0x3A, 0x3B, 0x50, 0x28, 0x29, 0x3A, 0x00, + 0x00, 0x02, 0x00, 0x16, 0x00, 0x02, 0x04, 0x15, 0x03, 0xBC, 0x00, 0xAD, + 0x00, 0xB5, 0x00, 0x00, 0x01, 0x36, 0x33, 0x32, 0x17, 0x26, 0x27, 0x26, + 0x2F, 0x01, 0x3E, 0x03, 0x34, 0x27, 0x2E, 0x01, 0x06, 0x07, 0x06, 0x26, + 0x07, 0x0E, 0x03, 0x17, 0x16, 0x17, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x0E, + 0x01, 0x23, 0x22, 0x27, 0x2E, 0x02, 0x27, 0x2E, 0x03, 0x07, 0x0E, 0x01, + 0x16, 0x17, 0x1E, 0x01, 0x0E, 0x03, 0x16, 0x17, 0x1E, 0x01, 0x06, 0x16, + 0x17, 0x1E, 0x03, 0x1F, 0x01, 0x1E, 0x01, 0x17, 0x33, 0x16, 0x1F, 0x01, + 0x16, 0x36, 0x37, 0x3E, 0x01, 0x2E, 0x02, 0x27, 0x37, 0x1E, 0x03, 0x06, + 0x07, 0x0E, 0x01, 0x07, 0x32, 0x1E, 0x01, 0x17, 0x16, 0x17, 0x16, 0x17, + 0x16, 0x06, 0x07, 0x06, 0x07, 0x06, 0x17, 0x14, 0x17, 0x16, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x17, 0x16, 0x17, 0x16, 0x1F, 0x01, 0x16, 0x33, 0x17, + 0x32, 0x37, 0x36, 0x35, 0x26, 0x27, 0x26, 0x37, 0x36, 0x33, 0x32, 0x17, + 0x16, 0x3F, 0x01, 0x36, 0x34, 0x27, 0x2E, 0x02, 0x27, 0x2E, 0x01, 0x37, + 0x35, 0x33, 0x3E, 0x02, 0x37, 0x3E, 0x01, 0x3F, 0x01, 0x36, 0x37, 0x36, + 0x27, 0x26, 0x2F, 0x01, 0x37, 0x36, 0x27, 0x22, 0x35, 0x34, 0x33, 0x32, + 0x15, 0x14, 0x03, 0xD7, 0x1C, 0x13, 0x05, 0x0A, 0x03, 0x1B, 0x16, 0x04, + 0x01, 0x02, 0x05, 0x0D, 0x07, 0x07, 0x0B, 0x10, 0x07, 0x02, 0x02, 0x29, + 0x03, 0x02, 0x15, 0x15, 0x0B, 0x05, 0x03, 0x0A, 0x2A, 0x35, 0x19, 0x0D, + 0x12, 0x20, 0x3A, 0x31, 0x27, 0x2B, 0x0C, 0x2F, 0x41, 0x0B, 0x0B, 0x33, + 0x4B, 0x57, 0x2F, 0x3D, 0x1C, 0x37, 0x46, 0x1A, 0x0F, 0x0F, 0x1C, 0x20, + 0x15, 0x03, 0x13, 0x1E, 0x12, 0x05, 0x1F, 0x2A, 0x27, 0x2A, 0x08, 0x14, + 0x12, 0x04, 0x01, 0x09, 0x02, 0x01, 0x08, 0x2E, 0x3E, 0x26, 0x63, 0x1A, + 0x0E, 0x0C, 0x07, 0x06, 0x16, 0x04, 0x0C, 0x03, 0x17, 0x07, 0x06, 0x0D, + 0x0F, 0x18, 0x5D, 0x28, 0x01, 0x0E, 0x15, 0x09, 0x1E, 0x08, 0x07, 0x0B, + 0x08, 0x0E, 0x0E, 0x1E, 0x11, 0x07, 0x02, 0x08, 0x0D, 0x0A, 0x09, 0x38, + 0x08, 0x0F, 0x0D, 0x06, 0x04, 0x14, 0x0E, 0x06, 0x07, 0x0D, 0x0C, 0x01, + 0x04, 0x02, 0x02, 0x04, 0x02, 0x03, 0x01, 0x05, 0x30, 0x24, 0x0E, 0x0A, + 0x02, 0x06, 0x06, 0x11, 0x34, 0x3A, 0x09, 0x24, 0x29, 0x03, 0x06, 0x14, + 0x24, 0x15, 0x0F, 0x13, 0x1F, 0x06, 0x06, 0xA4, 0x19, 0x05, 0x20, 0x10, + 0x05, 0x02, 0x06, 0x04, 0x22, 0x0E, 0x0E, 0x0D, 0x03, 0x01, 0x12, 0x02, + 0x0E, 0x17, 0x12, 0x0B, 0x01, 0x02, 0x06, 0x13, 0x13, 0x19, 0x0A, 0x12, + 0x05, 0x0C, 0x0B, 0x08, 0x1A, 0x10, 0x09, 0x09, 0x01, 0x0B, 0x0C, 0x08, + 0x08, 0x07, 0x24, 0x25, 0x16, 0x2D, 0x4C, 0x2D, 0x13, 0x06, 0x1D, 0x3B, + 0x1B, 0x1A, 0x3A, 0x33, 0x0E, 0x12, 0x1A, 0x2E, 0x26, 0x13, 0x07, 0x0C, + 0x0B, 0x0B, 0x0F, 0x12, 0x1A, 0x10, 0x1A, 0x29, 0x18, 0x2E, 0x1F, 0x1D, + 0x36, 0x22, 0x24, 0x0C, 0x02, 0x01, 0x04, 0x02, 0x03, 0x0F, 0x10, 0x04, + 0x41, 0x25, 0x14, 0x26, 0x2F, 0x19, 0x3E, 0x0B, 0x03, 0x0A, 0x3E, 0x1C, + 0x31, 0x2A, 0x16, 0x23, 0x40, 0x04, 0x09, 0x0C, 0x05, 0x10, 0x1F, 0x1A, + 0x16, 0x0C, 0x1C, 0x03, 0x07, 0x0E, 0x05, 0x08, 0x07, 0x06, 0x05, 0x07, + 0x07, 0x0E, 0x03, 0x05, 0x08, 0x04, 0x02, 0x09, 0x13, 0x09, 0x0D, 0x01, + 0x02, 0x02, 0x03, 0x09, 0x09, 0x04, 0x03, 0x03, 0x11, 0x05, 0x07, 0x02, + 0x04, 0x0E, 0x03, 0x0B, 0x0C, 0x09, 0x02, 0x09, 0x47, 0x20, 0x01, 0x01, + 0x18, 0x19, 0x17, 0x1C, 0x20, 0x01, 0x02, 0x10, 0xFA, 0x33, 0x3B, 0x20, + 0x0F, 0x05, 0x02, 0x01, 0x2B, 0x0E, 0x0D, 0x0D, 0x0E, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x10, 0x00, 0x1D, 0x06, 0x6F, 0x03, 0x8A, 0x01, 0x16, + 0x01, 0x26, 0x00, 0x00, 0x01, 0x1E, 0x01, 0x15, 0x14, 0x07, 0x06, 0x2B, + 0x01, 0x14, 0x06, 0x07, 0x06, 0x27, 0x26, 0x07, 0x22, 0x07, 0x14, 0x07, + 0x06, 0x2B, 0x01, 0x2E, 0x01, 0x2B, 0x01, 0x27, 0x0E, 0x01, 0x0F, 0x01, + 0x05, 0x27, 0x35, 0x34, 0x27, 0x06, 0x07, 0x06, 0x15, 0x06, 0x17, 0x16, + 0x17, 0x15, 0x14, 0x07, 0x15, 0x14, 0x1E, 0x04, 0x31, 0x17, 0x07, 0x27, + 0x2E, 0x05, 0x27, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x03, 0x07, 0x22, 0x0E, + 0x01, 0x27, 0x26, 0x27, 0x26, 0x23, 0x22, 0x15, 0x14, 0x0E, 0x01, 0x07, + 0x06, 0x15, 0x32, 0x17, 0x16, 0x1D, 0x01, 0x14, 0x07, 0x06, 0x27, 0x06, + 0x27, 0x26, 0x27, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x2F, 0x01, 0x37, + 0x36, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x34, 0x35, 0x34, 0x27, 0x26, 0x23, + 0x26, 0x27, 0x26, 0x27, 0x23, 0x0E, 0x01, 0x2B, 0x01, 0x22, 0x27, 0x26, + 0x34, 0x27, 0x35, 0x34, 0x27, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x26, 0x2F, 0x01, 0x37, 0x36, 0x37, 0x3E, 0x01, + 0x35, 0x34, 0x3D, 0x01, 0x34, 0x3E, 0x01, 0x16, 0x17, 0x3E, 0x03, 0x37, + 0x34, 0x3E, 0x02, 0x33, 0x17, 0x3A, 0x01, 0x37, 0x34, 0x37, 0x3E, 0x01, + 0x33, 0x30, 0x37, 0x36, 0x37, 0x17, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x30, + 0x17, 0x16, 0x33, 0x17, 0x14, 0x3A, 0x01, 0x37, 0x32, 0x37, 0x3B, 0x01, + 0x34, 0x3F, 0x01, 0x33, 0x17, 0x33, 0x34, 0x3B, 0x01, 0x37, 0x16, 0x17, + 0x16, 0x1F, 0x01, 0x33, 0x32, 0x34, 0x3A, 0x01, 0x37, 0x36, 0x17, 0x16, + 0x17, 0x16, 0x17, 0x33, 0x17, 0x33, 0x32, 0x35, 0x34, 0x3D, 0x03, 0x34, + 0x37, 0x36, 0x33, 0x32, 0x17, 0x16, 0x15, 0x14, 0x17, 0x16, 0x17, 0x14, + 0x06, 0x15, 0x14, 0x17, 0x14, 0x16, 0x15, 0x33, 0x37, 0x33, 0x16, 0x17, + 0x1E, 0x01, 0x3B, 0x01, 0x15, 0x01, 0x14, 0x16, 0x3B, 0x01, 0x32, 0x36, + 0x3D, 0x01, 0x34, 0x26, 0x2B, 0x01, 0x22, 0x06, 0x15, 0x06, 0x66, 0x02, + 0x06, 0x03, 0x04, 0x01, 0x05, 0x04, 0x09, 0x17, 0x08, 0x14, 0x27, 0x03, + 0x01, 0x02, 0x01, 0x02, 0x04, 0x07, 0x1D, 0x03, 0x04, 0x02, 0x03, 0x01, + 0x03, 0x01, 0xFD, 0xFA, 0x11, 0x06, 0x03, 0x05, 0x09, 0x02, 0x06, 0x03, + 0x04, 0x08, 0x18, 0x24, 0x2A, 0x25, 0x19, 0x04, 0x60, 0x03, 0x14, 0x29, + 0x25, 0x21, 0x1A, 0x11, 0x03, 0x03, 0x04, 0x28, 0x1F, 0x08, 0x14, 0x13, + 0x0D, 0x01, 0x02, 0x14, 0x1E, 0x13, 0x0A, 0x18, 0x1A, 0x0F, 0x14, 0x07, + 0x11, 0x0D, 0x24, 0x01, 0x03, 0x02, 0x0F, 0x03, 0x04, 0x03, 0x08, 0x12, + 0x08, 0x0F, 0x1C, 0x0D, 0x19, 0x0A, 0x13, 0x02, 0x03, 0x03, 0x26, 0x0F, + 0x13, 0x30, 0x09, 0x01, 0x0E, 0x11, 0x05, 0x1B, 0x04, 0x0A, 0x06, 0x56, + 0x06, 0x20, 0x08, 0x03, 0x0A, 0x04, 0x03, 0x03, 0x03, 0x0A, 0x14, 0x0A, + 0x0F, 0x04, 0x06, 0x06, 0x0A, 0x02, 0x03, 0x07, 0x12, 0x11, 0x03, 0x03, + 0x0A, 0x04, 0x05, 0x04, 0x17, 0x0E, 0x3D, 0x1E, 0x03, 0x0B, 0x0D, 0x0C, + 0x01, 0x04, 0x15, 0x28, 0x25, 0x0A, 0x03, 0x07, 0x08, 0x11, 0x0A, 0x17, + 0x07, 0x03, 0x01, 0x02, 0x46, 0x03, 0x04, 0x03, 0x06, 0x02, 0x02, 0x02, + 0x01, 0x02, 0x06, 0x07, 0x03, 0x04, 0x04, 0x8A, 0x04, 0x02, 0x03, 0x0B, + 0x06, 0x20, 0x01, 0x02, 0x0B, 0x02, 0x01, 0x01, 0x05, 0x0E, 0xED, 0x02, + 0x33, 0x65, 0x59, 0x11, 0x10, 0x10, 0x03, 0x07, 0x04, 0xBE, 0x03, 0x09, + 0x01, 0x09, 0x07, 0x07, 0x09, 0x0A, 0x11, 0x06, 0x03, 0x01, 0x04, 0x01, + 0x02, 0x01, 0x07, 0x12, 0x01, 0x03, 0x03, 0x01, 0x02, 0x45, 0xFB, 0x9C, + 0x11, 0x0B, 0x69, 0x0C, 0x11, 0x11, 0x0C, 0x69, 0x0B, 0x11, 0x02, 0xCB, + 0x0A, 0x09, 0x07, 0x07, 0x06, 0x07, 0x03, 0x03, 0x01, 0x02, 0x02, 0x02, + 0x01, 0x06, 0x03, 0x02, 0x06, 0x03, 0x01, 0x02, 0x02, 0x06, 0x02, 0x05, + 0x3C, 0x04, 0x02, 0x14, 0x08, 0x03, 0x02, 0x05, 0x01, 0x03, 0x13, 0x10, + 0x0F, 0x03, 0x05, 0x0D, 0x02, 0x21, 0x5A, 0x60, 0x5D, 0x4A, 0x2F, 0x06, + 0x38, 0x06, 0x15, 0x4D, 0x5D, 0x62, 0x55, 0x3F, 0x0A, 0x0D, 0x0B, 0x22, + 0x28, 0x15, 0x09, 0x01, 0x06, 0x03, 0x01, 0x02, 0x0A, 0x0A, 0x01, 0x03, + 0x10, 0x23, 0x1E, 0x4B, 0x01, 0x06, 0x03, 0x04, 0x03, 0x0A, 0x07, 0x02, + 0x02, 0x02, 0x03, 0x06, 0x07, 0x0C, 0x10, 0x07, 0x11, 0x07, 0x0C, 0x04, + 0x04, 0x05, 0x39, 0x1B, 0x23, 0x42, 0x11, 0x03, 0x0C, 0x04, 0x18, 0x0D, + 0x12, 0x03, 0x02, 0x05, 0x04, 0x11, 0x06, 0x0E, 0x08, 0x12, 0x14, 0x06, + 0x04, 0x09, 0x0A, 0x31, 0x1D, 0x2B, 0x11, 0x1E, 0x14, 0x21, 0x0A, 0x02, + 0x03, 0x0A, 0x17, 0x03, 0x06, 0x14, 0x20, 0x28, 0x63, 0x31, 0x4F, 0x02, + 0x02, 0x05, 0x0D, 0x0B, 0x0E, 0x09, 0x06, 0x14, 0x14, 0x10, 0x01, 0x02, + 0x03, 0x03, 0x01, 0x06, 0x03, 0x19, 0x11, 0x0A, 0x04, 0x09, 0x03, 0x04, + 0x1E, 0x09, 0x07, 0x07, 0x0A, 0x03, 0x02, 0x01, 0x01, 0x05, 0x02, 0x01, + 0x04, 0x02, 0x03, 0x06, 0x03, 0x09, 0x02, 0x03, 0x04, 0x03, 0x0D, 0x0C, + 0x01, 0x11, 0x04, 0x03, 0x03, 0x06, 0x04, 0x03, 0x12, 0x0C, 0x0D, 0x17, + 0x12, 0x08, 0x03, 0x02, 0x01, 0x01, 0x05, 0x1C, 0x1D, 0x23, 0x11, 0x10, + 0x0D, 0x15, 0x05, 0x02, 0x03, 0x03, 0x06, 0x03, 0x06, 0x02, 0x01, 0x01, + 0x03, 0x03, 0xFE, 0xED, 0x0A, 0x11, 0x11, 0x0A, 0x14, 0x0D, 0x12, 0x12, + 0x0D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x01, 0x9E, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0D, 0x00, 0x22, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x07, 0x00, 0x40, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x0D, 0x00, 0x64, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0D, 0x00, 0x8E, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0D, 0x00, 0xB8, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x0B, 0x00, 0xDE, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x01, 0x00, 0xEE, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x01, 0x00, 0xF4, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x01, 0x00, 0xFA, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0B, 0x00, 0x01, 0x01, 0x06, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x01, 0x01, 0x0C, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x00, 0x01, 0x01, 0x12, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x01, 0x01, 0x18, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x0D, 0x01, 0x36, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x07, 0x01, 0x54, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x01, 0x00, 0x1A, 0x00, 0x06, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x02, 0x00, 0x0E, 0x00, 0x30, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x03, 0x00, 0x1A, 0x00, 0x48, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x04, 0x00, 0x1A, 0x00, 0x72, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x05, 0x00, 0x1A, 0x00, 0x9C, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x06, 0x00, 0x16, 0x00, 0xC6, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x07, 0x00, 0x02, 0x00, 0xEA, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x08, 0x00, 0x02, 0x00, 0xF0, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x09, 0x00, 0x02, 0x00, 0xF6, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x0A, 0x00, 0x02, 0x00, 0xFC, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x0B, 0x00, 0x02, 0x01, 0x02, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x0C, 0x00, 0x02, 0x01, 0x08, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x0D, 0x00, 0x02, 0x01, 0x0E, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x0E, 0x00, 0x02, 0x01, 0x14, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x10, 0x00, 0x1A, 0x01, 0x1A, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x09, 0x00, 0x11, 0x00, 0x0E, 0x01, 0x44, 0x00, 0x20, + 0x00, 0x00, 0x20, 0x00, 0x00, 0x43, 0x00, 0x53, 0x00, 0x32, 0x00, 0x20, + 0x00, 0x47, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x63, + 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x00, 0x43, 0x53, 0x32, 0x20, + 0x47, 0x75, 0x6E, 0x20, 0x49, 0x63, 0x6F, 0x6E, 0x73, 0x00, 0x00, 0x52, + 0x00, 0x65, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, + 0x00, 0x00, 0x52, 0x65, 0x67, 0x75, 0x6C, 0x61, 0x72, 0x00, 0x00, 0x43, + 0x00, 0x53, 0x00, 0x32, 0x00, 0x20, 0x00, 0x47, 0x00, 0x75, 0x00, 0x6E, + 0x00, 0x20, 0x00, 0x49, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x73, + 0x00, 0x00, 0x43, 0x53, 0x32, 0x20, 0x47, 0x75, 0x6E, 0x20, 0x49, 0x63, + 0x6F, 0x6E, 0x73, 0x00, 0x00, 0x43, 0x00, 0x53, 0x00, 0x32, 0x00, 0x20, + 0x00, 0x47, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x63, + 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x00, 0x43, 0x53, 0x32, 0x20, + 0x47, 0x75, 0x6E, 0x20, 0x49, 0x63, 0x6F, 0x6E, 0x73, 0x00, 0x00, 0x56, + 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, + 0x00, 0x20, 0x00, 0x30, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x30, 0x00, 0x31, + 0x00, 0x00, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6F, 0x6E, 0x20, 0x30, 0x2E, + 0x30, 0x30, 0x31, 0x00, 0x00, 0x43, 0x00, 0x53, 0x00, 0x32, 0x00, 0x47, + 0x00, 0x75, 0x00, 0x6E, 0x00, 0x49, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6E, + 0x00, 0x73, 0x00, 0x00, 0x43, 0x53, 0x32, 0x47, 0x75, 0x6E, 0x49, 0x63, + 0x6F, 0x6E, 0x73, 0x00, 0x00, 0x20, 0x00, 0x00, 0x20, 0x00, 0x00, 0x20, + 0x00, 0x00, 0x20, 0x00, 0x00, 0x20, 0x00, 0x00, 0x20, 0x00, 0x00, 0x20, + 0x00, 0x00, 0x20, 0x00, 0x00, 0x20, 0x00, 0x00, 0x20, 0x00, 0x00, 0x20, + 0x00, 0x00, 0x20, 0x00, 0x00, 0x20, 0x00, 0x00, 0x20, 0x00, 0x00, 0x20, + 0x00, 0x00, 0x20, 0x00, 0x00, 0x43, 0x00, 0x53, 0x00, 0x32, 0x00, 0x20, + 0x00, 0x47, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x49, 0x00, 0x63, + 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x00, 0x43, 0x53, 0x32, 0x20, + 0x47, 0x75, 0x6E, 0x20, 0x49, 0x63, 0x6F, 0x6E, 0x73, 0x00, 0x00, 0x52, + 0x00, 0x65, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, + 0x00, 0x00, 0x52, 0x65, 0x67, 0x75, 0x6C, 0x61, 0x72, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x43, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, + 0x00, 0x16, 0x00, 0x17, 0x00, 0x18, 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, + 0x00, 0x1C, 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, + 0x00, 0x29, 0x00, 0x2A, 0x00, 0x2B, 0x00, 0x2C, 0x00, 0x2D, 0x00, 0x2E, + 0x00, 0x2F, 0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x33, 0x00, 0x34, + 0x00, 0x35, 0x00, 0x36, 0x00, 0x37, 0x00, 0x38, 0x00, 0x39, 0x00, 0x3A, + 0x00, 0x3B, 0x00, 0x3C, 0x00, 0x3D, 0x00, 0x3E, 0x00, 0x40, 0x00, 0x44, + 0x00, 0x45, 0x00, 0x46, 0x00, 0x47, 0x00, 0x48, 0x00, 0x49, 0x00, 0x4A, + 0x00, 0x4B, 0x00, 0x4C, 0x00, 0x4D, 0x00, 0x4E, 0x00, 0x4F, 0x00, 0x50, + 0x00, 0x51, 0x00, 0x52, 0x00, 0x53, 0x00, 0x54, 0x00, 0x55, 0x00, 0x56, + 0x00, 0x57, 0x00, 0x58, 0x00, 0x59, 0x00, 0x5A, 0x00, 0x5B, 0x01, 0x02, + 0x07, 0x75, 0x6E, 0x69, 0x46, 0x46, 0x46, 0x44, 0x00, 0x00, 0x00, 0x01, + 0xFF, 0xFF, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, + 0x00, 0x16, 0x00, 0x1E, 0x00, 0x02, 0x00, 0x01, 0x00, 0x41, 0x00, 0x41, + 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0xDF, 0xD6, 0xCB, 0x31, 0x00, 0x00, 0x00, 0x00, + 0xE1, 0x65, 0x7D, 0x83, 0x00, 0x00, 0x00, 0x00, 0xE1, 0x84, 0xEF, 0x8C +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/iconscs2.ttf b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/iconscs2.ttf new file mode 100644 index 0000000..e1a55e3 Binary files /dev/null and b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/iconscs2.ttf differ diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/incgrenade0.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/incgrenade0.svg new file mode 100644 index 0000000..43e5d80 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/incgrenade0.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife.svg new file mode 100644 index 0000000..3129f36 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_bayonet.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_bayonet.svg new file mode 100644 index 0000000..4d746e7 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_bayonet.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_butterfly.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_butterfly.svg new file mode 100644 index 0000000..3657a53 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_butterfly.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_canis.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_canis.svg new file mode 100644 index 0000000..a347233 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_canis.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_cord.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_cord.svg new file mode 100644 index 0000000..7656eb7 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_cord.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_css.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_css.svg new file mode 100644 index 0000000..c0ab575 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_css.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_falchion.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_falchion.svg new file mode 100644 index 0000000..77d2222 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_falchion.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_flip.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_flip.svg new file mode 100644 index 0000000..7805419 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_flip.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_gut.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_gut.svg new file mode 100644 index 0000000..59ea74d --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_gut.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_gypsy_jackknife.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_gypsy_jackknife.svg new file mode 100644 index 0000000..e6ae44a --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_gypsy_jackknife.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_karambit.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_karambit.svg new file mode 100644 index 0000000..2d9b37a --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_karambit.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_m9_bayonet.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_m9_bayonet.svg new file mode 100644 index 0000000..524e56b --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_m9_bayonet.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_outdoor.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_outdoor.svg new file mode 100644 index 0000000..e5ff3f2 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_outdoor.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_push.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_push.svg new file mode 100644 index 0000000..d1f6c9b --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_push.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_skeleton.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_skeleton.svg new file mode 100644 index 0000000..31e2076 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_skeleton.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_stiletto.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_stiletto.svg new file mode 100644 index 0000000..4ca01f7 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_stiletto.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_survival_bowie.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_survival_bowie.svg new file mode 100644 index 0000000..8abc713 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_survival_bowie.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_t.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_t.svg new file mode 100644 index 0000000..f284ac6 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_t.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_tactical.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_tactical.svg new file mode 100644 index 0000000..3474ad1 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_tactical.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_ursus.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_ursus.svg new file mode 100644 index 0000000..8810f74 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_ursus.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_widowmaker.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_widowmaker.svg new file mode 100644 index 0000000..63b58ce --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/knife_widowmaker.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/m249.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/m249.svg new file mode 100644 index 0000000..3a896ce --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/m249.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/m4a1.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/m4a1.svg new file mode 100644 index 0000000..2e65f85 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/m4a1.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/m4a1_silencer.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/m4a1_silencer.svg new file mode 100644 index 0000000..99c7c47 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/m4a1_silencer.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/m4a1_silencer_off.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/m4a1_silencer_off.svg new file mode 100644 index 0000000..99c7c47 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/m4a1_silencer_off.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/mac10.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/mac10.svg new file mode 100644 index 0000000..4dc0010 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/mac10.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/mag7.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/mag7.svg new file mode 100644 index 0000000..bb14624 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/mag7.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/molotov.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/molotov.svg new file mode 100644 index 0000000..4992b74 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/molotov.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/mp5sd.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/mp5sd.svg new file mode 100644 index 0000000..ee84c97 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/mp5sd.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/mp7.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/mp7.svg new file mode 100644 index 0000000..61007ae --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/mp7.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/mp9.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/mp9.svg new file mode 100644 index 0000000..8867588 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/mp9.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/negev.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/negev.svg new file mode 100644 index 0000000..2ed063f --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/negev.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/noscope.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/noscope.svg new file mode 100644 index 0000000..1f7c3fd --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/noscope.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/nova.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/nova.svg new file mode 100644 index 0000000..33e2027 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/nova.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/obs_icons.ttf b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/obs_icons.ttf new file mode 100644 index 0000000..d717c97 Binary files /dev/null and b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/obs_icons.ttf differ diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/out.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/out.svg new file mode 100644 index 0000000..1b751ad --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/out.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/p250.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/p250.svg new file mode 100644 index 0000000..a1b800e --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/p250.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/p90.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/p90.svg new file mode 100644 index 0000000..df4f762 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/p90.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/revolver.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/revolver.svg new file mode 100644 index 0000000..da0001c --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/revolver.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/sawedoff.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/sawedoff.svg new file mode 100644 index 0000000..b231ad8 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/sawedoff.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/scar20.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/scar20.svg new file mode 100644 index 0000000..729318c --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/scar20.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/sg556.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/sg556.svg new file mode 100644 index 0000000..1661e5a --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/sg556.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/smoke_kill.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/smoke_kill.svg new file mode 100644 index 0000000..2cd9b90 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/smoke_kill.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/smokegrenade.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/smokegrenade.svg new file mode 100644 index 0000000..9d3cf58 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/smokegrenade.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/ssg08.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/ssg08.svg new file mode 100644 index 0000000..aae9fcb --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/ssg08.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/taser.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/taser.svg new file mode 100644 index 0000000..895fcf3 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/taser.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/tec9.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/tec9.svg new file mode 100644 index 0000000..00a5fe4 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/tec9.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/ump451.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/ump451.svg new file mode 100644 index 0000000..0ea443a --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/ump451.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/usp_silencer.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/usp_silencer.svg new file mode 100644 index 0000000..2e8c8cf --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/usp_silencer.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/usp_silencer_off.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/usp_silencer_off.svg new file mode 100644 index 0000000..2e8c8cf --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/usp_silencer_off.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/xm1014.svg b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/xm1014.svg new file mode 100644 index 0000000..1d8aaa5 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/icons/xm1014.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/multidrop.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/multidrop.h new file mode 100644 index 0000000..8086066 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/multidrop.h @@ -0,0 +1,42 @@ +#pragma once +#include + +#include "../../Utils/InputSys.hpp" + +/* Prototypes */ +struct MultiItem_t { + std::string name; + bool* value; +}; + +/* Context structs */ +struct DropdownInfo_t { + size_t HashedID; + + std::map uScroll; + + std::vector Elements; + int* Option; + + int MaxItems; + + bool out_anim; + bool DraggingScroll; + + float Size = 0.f; + Vector2D Pos = { 0, 0 }; +}; + +struct MultiDropdownInfo_t { + size_t HashedID; + + std::map uScroll; + + std::vector Elements; + + int MaxItems; + bool DraggingScroll; + + float Size = 0.f; + Vector2D Pos = { 0, 0 }; +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/const.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/const.h new file mode 100644 index 0000000..3d765e0 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/const.h @@ -0,0 +1,166 @@ +#pragma once + +// @source: master/game/shared/cstrike15/gametypes.h +#pragma region valve_gametypes + +enum EGameType : int +{ + GAMETYPE_UNKNOWN = -1, + GAMETYPE_CLASSIC, + GAMETYPE_GUNGAME, + GAMETYPE_TRAINING, + GAMETYPE_CUSTOM, + GAMETYPE_COOPERATIVE, + GAMETYPE_SKIRMISH, + GAMETYPE_FREEFORALL +}; + +enum EGameMode : int +{ + GAMEMODE_UNKNOWN = -1, + + // GAMETYPE_CLASSIC + GAMEMODE_CLASSIC_CASUAL = 0, + GAMEMODE_CLASSIC_COMPETITIVE, + GAMEMODE_CLASSIC_SCRIM_COMPETITIVE2V2, + GAMEMODE_CLASSIC_SCRIM_COMPETITIVE5V5, + + // GAMETYPE_GUNGAME + GAMEMODE_GUNGAME_PROGRESSIVE = 0, + GAMEMODE_GUNGAME_BOMB, + GAMEMODE_GUNGAME_DEATHMATCH, + + // GAMETYPE_TRAINING + GAMEMODE_TRAINING_DEFAULT = 0, + + // GAMETYPE_CUSTOM + GAMEMODE_CUSTOM_DEFAULT = 0, + + // GAMETYPE_COOPERATIVE + GAMEMODE_COOPERATIVE_DEFAULT = 0, + GAMEMODE_COOPERATIVE_MISSION, + + // GAMETYPE_SKIRMISH + GAMEMODE_SKIRMISH_DEFAULT = 0, + + // GAMETYPE_FREEFORALL + GAMEMODE_FREEFORALL_SURVIVAL = 0 +}; + +#pragma endregion + +enum ELifeState : int +{ + LIFE_ALIVE = 0, + LIFE_DYING, + LIFE_DEAD, + LIFE_RESPAWNABLE, + LIFE_DISCARDBODY +}; + +enum EFlags : int +{ + FL_ONGROUND = (1 << 0), // entity is at rest / on the ground + FL_DUCKING = (1 << 1), // player is fully crouched/uncrouched + FL_ANIMDUCKING = (1 << 2), // player is in the process of crouching or uncrouching but could be in transition + FL_WATERJUMP = (1 << 3), // player is jumping out of water + FL_ONTRAIN = (1 << 4), // player is controlling a train, so movement commands should be ignored on client during prediction + FL_INRAIN = (1 << 5), // entity is standing in rain + FL_FROZEN = (1 << 6), // player is frozen for 3rd-person camera + FL_ATCONTROLS = (1 << 7), // player can't move, but keeps key inputs for controlling another entity + FL_CLIENT = (1 << 8), // entity is a client (player) + FL_FAKECLIENT = (1 << 9), // entity is a fake client, simulated server side; don't send network messages to them + FL_INWATER = (1 << 10), // entity is in water + FL_FLY = (1 << 11), + FL_SWIM = (1 << 12), + FL_CONVEYOR = (1 << 13), + FL_NPC = (1 << 14), + FL_GODMODE = (1 << 15), + FL_NOTARGET = (1 << 16), + FL_AIMTARGET = (1 << 17), + FL_PARTIALGROUND = (1 << 18), // entity is standing on a place where not all corners are valid + FL_STATICPROP = (1 << 19), // entity is a static property + FL_GRAPHED = (1 << 20), + FL_GRENADE = (1 << 21), + FL_STEPMOVEMENT = (1 << 22), + FL_DONTTOUCH = (1 << 23), + FL_BASEVELOCITY = (1 << 24), // entity have applied base velocity this frame + FL_WORLDBRUSH = (1 << 25), // entity is not moveable/removeable brush (part of the world, but represented as an entity for transparency or something) + FL_OBJECT = (1 << 26), + FL_KILLME = (1 << 27), // entity is marked for death and will be freed by the game + FL_ONFIRE = (1 << 28), + FL_DISSOLVING = (1 << 29), + FL_TRANSRAGDOLL = (1 << 30), // entity is turning into client-side ragdoll + FL_UNBLOCKABLE_BY_PLAYER = (1 << 31) +}; + +enum EEFlags : int +{ + EFL_KILLME = (1 << 0), + EFL_DORMANT = (1 << 1), + EFL_NOCLIP_ACTIVE = (1 << 2), + EFL_SETTING_UP_BONES = (1 << 3), + EFL_KEEP_ON_RECREATE_ENTITIES = (1 << 4), + EFL_DIRTY_SHADOWUPDATE = (1 << 5), + EFL_NOTIFY = (1 << 6), + EFL_FORCE_CHECK_TRANSMIT = (1 << 7), + EFL_BOT_FROZEN = (1 << 8), + EFL_SERVER_ONLY = (1 << 9), + EFL_NO_AUTO_EDICT_ATTACH = (1 << 10), + EFL_DIRTY_ABSTRANSFORM = (1 << 11), + EFL_DIRTY_ABSVELOCITY = (1 << 12), + EFL_DIRTY_ABSANGVELOCITY = (1 << 13), + EFL_DIRTY_SURROUNDING_COLLISION_BOUNDS = (1 << 14), + EFL_DIRTY_SPATIAL_PARTITION = (1 << 15), + EFL_HAS_PLAYER_CHILD = (1 << 16), + EFL_IN_SKYBOX = (1 << 17), + EFL_USE_PARTITION_WHEN_NOT_SOLID = (1 << 18), + EFL_TOUCHING_FLUID = (1 << 19), + EFL_IS_BEING_LIFTED_BY_BARNACLE = (1 << 20), + EFL_NO_ROTORWASH_PUSH = (1 << 21), + EFL_NO_THINK_FUNCTION = (1 << 22), + EFL_NO_GAME_PHYSICS_SIMULATION = (1 << 23), + EFL_CHECK_UNTOUCH = (1 << 24), + EFL_DONTBLOCKLOS = (1 << 25), + EFL_DONTWALKON = (1 << 26), + EFL_NO_DISSOLVE = (1 << 27), + EFL_NO_MEGAPHYSCANNON_RAGDOLL = (1 << 28), + EFL_NO_WATER_VELOCITY_CHANGE = (1 << 29), + EFL_NO_PHYSCANNON_INTERACTION = (1 << 30), + EFL_NO_DAMAGE_FORCES = (1 << 31) +}; + +enum EMoveType : int +{ + MOVETYPE_NONE = 0, + MOVETYPE_ISOMETRIC, + MOVETYPE_WALK, + MOVETYPE_STEP, + MOVETYPE_FLY, // no gravity, but still collides with stuff + MOVETYPE_FLYGRAVITY, // flies through the air and is affected by gravity + MOVETYPE_VPHYSICS, + MOVETYPE_PUSH, // no clip to world, push and crush + MOVETYPE_NOCLIP, // no gravity, no collisions, still do velocity/absvelocity + MOVETYPE_LADDER, + MOVETYPE_OBSERVER, // observer movement, depends on player's observer mode + MOVETYPE_CUSTOM, + MOVETYPE_LAST = MOVETYPE_CUSTOM, + MOVETYPE_MAX_BITS = 4 +}; + +// identifies how submerged in water a player is +enum : int +{ + WL_NOTINWATER = 0, + WL_FEET, + WL_WAIST, + WL_EYES +}; + +enum ETeamID : int +{ + TEAM_UNK, + TEAM_SPECTATOR, + TEAM_TT, + TEAM_CT +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/K3V.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/K3V.cpp new file mode 100644 index 0000000..1793517 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/K3V.cpp @@ -0,0 +1,72 @@ +#pragma once +#include "K3V.h" +#include "../../utilities/memory.h" +// sig 1:48 8B C4 55 48 8D A8 08 FD +/* +KeyValues3* KeyValues3::set_type(kv_basic_type a1, kv_basic_type a2) +{ + using fnTypeData = KeyValues3*(__fastcall*)(uint8_t, uint8_t); + static auto setType = *reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 8B C4 55 48 8D A8 08 FD"))); + +#ifdef CS_PARANOID + CS_ASSERT(setType != nullptr); +#endif + + return setType(a1, a2); +} + +//48 89 5C 24 08 48 89 74 24 10 57 48 81 EC E0 00 00 00 48 +KeyValues3* KeyValues3::create_object(const char* name, bool unk1) +{ + + // Assuming that MEM::FindPattern returns the function address correctly + using CreateObjectFn = KeyValues3*(__fastcall*)(const char*, bool); + static CreateObjectFn createObjectFn = *reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 89 5C 24 08 48 89 74 24 10 57 48 81 EC E0 00 00 00 48"))); + CS_ASSERT(createObjectFn != nullptr); + + return createObjectFn(name, unk1); +} +*/ +/* +//client.dll 48 89 5C 24 ?? 48 89 6C 24 ?? 56 57 41 54 41 56 41 57 48 83 EC 30 0F B6 01 45 0F B6 F9 8B 2A 4D 8B E0 4C 8B 72 08 48 8B F9 +void KeyValues3::set_data(const char* name, const char* value, kv_field_type_t field) +{ + using fnSetData = void(__fastcall*)(void*, const char*, const char*, kv_field_type_t); + static auto setData = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 89 5C 24 ?? 48 89 6C 24 ?? 56 57 41 54 41 56 41 57 48 83 EC 30 0F B6 01 45 0F B6 F9 8B 2A 4D 8B E0 4C 8B 72 08 48 8B F9"))); + +#ifdef CS_PARANOID + CS_ASSERT(setData != nullptr); +#endif + + setData(this, name, value, field); +} + +void KeyValues3::set_data(const char* name, uint32_t color) +{ + using fnSetData = void(__fastcall*)(void*, const char*, uint32_t); + static auto setData = reinterpret_cast(MEM::FindPattern(PARTICLES_DLL, CS_XOR("E8 ?? ?? ?? ?? 49 C1 E5 21"))); + +#ifdef CS_PARANOID + CS_ASSERT(setData != nullptr); +#endif + + setData(this, name, color); +} + +void KeyValues3::set_data(const char* name, int value) +{ + using fnSetData = void(__fastcall*)(void*, const char*, int); + static auto setData = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR(""))); + +#ifdef CS_PARANOID + CS_ASSERT(setData != nullptr); +#endif + + setData(this, name, value); +} + +bool KeyValues3::load_from_buffer() +{ + return false; +} +*/ diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/K3V.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/K3V.h new file mode 100644 index 0000000..a93fbd2 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/K3V.h @@ -0,0 +1,21 @@ +#pragma once +#include +#include +#include +#include "../cstrike/common.h" +#include +class CKeyValues3 +{ +public: + uint64_t uKey; + void* pValue; + + std::byte pad[0x8]; +}; + +struct KV3IVD_t +{ + const char* szName; + uint64_t unk0; + uint64_t unk1; +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/buf/strtools.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/buf/strtools.cpp new file mode 100644 index 0000000..3d546f0 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/buf/strtools.cpp @@ -0,0 +1,1035 @@ +#include "strtools.h" +#include +#include +#include +#include +#include +//----------------------------------------------------------------------------- +// Finds a string in another string with a case insensitive test +//----------------------------------------------------------------------------- +char const* V_stristr(char const* pStr, char const* pSearch) +{ + + if (!pStr || !pSearch) + return 0; + + char const* pLetter = pStr; + + // Check the entire string + while (*pLetter != 0) + { + // Skip over non-matches + if (FastASCIIToLower((unsigned char)*pLetter) == FastASCIIToLower((unsigned char)*pSearch)) + { + // Check for match + char const* pMatch = pLetter + 1; + char const* pTest = pSearch + 1; + while (*pTest != 0) + { + // We've run off the end; don't bother. + if (*pMatch == 0) + return 0; + + if (FastASCIIToLower((unsigned char)*pMatch) != FastASCIIToLower((unsigned char)*pTest)) + break; + + ++pMatch; + ++pTest; + } + + // Found a match! + if (*pTest == 0) + return pLetter; + } + + ++pLetter; + } + + return 0; +} + +char* V_stristr(char* pStr, char const* pSearch) +{ + + return (char*)V_stristr((char const*)pStr, pSearch); +} + +//----------------------------------------------------------------------------- +// Finds a string in another string with a case insensitive test w/ length validation +//----------------------------------------------------------------------------- +const char* V_strnistr(const char* pStr, const char* pSearch, size_t n) +{ + + if (!pStr || !pSearch) + return 0; + + const char* pLetter = pStr; + + // Check the entire string + while (*pLetter != 0) + { + if (n <= 0) + return 0; + + // Skip over non-matches + if (FastASCIIToLower(*pLetter) == FastASCIIToLower(*pSearch)) + { + size_t n1 = n - 1; + + // Check for match + const char* pMatch = pLetter + 1; + const char* pTest = pSearch + 1; + while (*pTest != 0) + { + if (n1 <= 0) + return 0; + + // We've run off the end; don't bother. + if (*pMatch == 0) + return 0; + + if (FastASCIIToLower(*pMatch) != FastASCIIToLower(*pTest)) + break; + + ++pMatch; + ++pTest; + --n1; + } + + // Found a match! + if (*pTest == 0) + return pLetter; + } + + ++pLetter; + --n; + } + + return 0; +} + +const char* V_strnchr(const char* pStr, char c, size_t n) +{ + const char* pLetter = pStr; + const char* pLast = pStr + n; + + // Check the entire string + while ((pLetter < pLast) && (*pLetter != 0)) + { + if (*pLetter == c) + return pLetter; + ++pLetter; + } + return NULL; +} + +bool V_isspace(int c) +{ + // The standard white-space characters are the following: space, tab, carriage-return, newline, vertical tab, and form-feed. In the C locale, V_isspace() returns true only for the standard white-space characters. + //return c == ' ' || c == 9 /*horizontal tab*/ || c == '\r' || c == '\n' || c == 11 /*vertical tab*/ || c == '\f'; + // codes of whitespace symbols: 9 HT, 10 \n, 11 VT, 12 form feed, 13 \r, 32 space + + // easy to understand version, validated: + // return ((1 << (c-1)) & 0x80001F00) != 0 && ((c-1)&0xE0) == 0; + + // 5% faster on Core i7, 35% faster on Xbox360, no branches, validated: +#ifdef _X360 + return ((1 << (c - 1)) & 0x80001F00 & ~(-int((c - 1) & 0xE0))) != 0; +#else +// this is 11% faster on Core i7 than the previous, VC2005 compiler generates a seemingly unbalanced search tree that's faster + switch (c) + { + case ' ': + case 9: + case '\r': + case '\n': + case 11: + case '\f': + return true; + default: + return false; + } +#endif +} + +size_t V_StrTrim(char* pStr) +{ + char* pSource = pStr; + char* pDest = pStr; + + // skip white space at the beginning + while (*pSource != 0 && V_isspace(*pSource)) + { + pSource++; + } + + // copy everything else + char* pLastWhiteBlock = NULL; + char* pStart = pDest; + while (*pSource != 0) + { + *pDest = *pSource++; + if (V_isspace(*pDest)) + { + if (pLastWhiteBlock == NULL) + pLastWhiteBlock = pDest; + } + else + { + pLastWhiteBlock = NULL; + } + pDest++; + } + *pDest = 0; + + // did we end in a whitespace block? + if (pLastWhiteBlock != NULL) + { + // yep; shorten the string + pDest = pLastWhiteBlock; + *pLastWhiteBlock = 0; + } + + return pDest - pStart; +} + +//----------------------------------------------------------------------------- +// Purpose: Converts a UTF-8 string into a unicode string +//----------------------------------------------------------------------------- +int V_UTF8ToUnicode(const char* pUTF8, wchar_t* pwchDest, int cubDestSizeInBytes) +{ + pwchDest[0] = 0; + if (!pUTF8) + return 0; +#ifdef _WIN32 + int cchResult = MultiByteToWideChar(CP_UTF8, 0, pUTF8, -1, pwchDest, cubDestSizeInBytes / sizeof(wchar_t)); +#elif POSIX + int cchResult = mbstowcs(pwchDest, pUTF8, cubDestSizeInBytes / sizeof(wchar_t)); +#endif + pwchDest[(cubDestSizeInBytes / sizeof(wchar_t)) - 1] = 0; + return cchResult; +} + +//----------------------------------------------------------------------------- +// Purpose: Converts a unicode string into a UTF-8 (standard) string +//----------------------------------------------------------------------------- +int V_UnicodeToUTF8(const wchar_t* pUnicode, char* pUTF8, int cubDestSizeInBytes) +{ + if (cubDestSizeInBytes > 0) + pUTF8[0] = 0; + +#ifdef _WIN32 + int cchResult = WideCharToMultiByte(CP_UTF8, 0, pUnicode, -1, pUTF8, cubDestSizeInBytes, NULL, NULL); +#elif POSIX + int cchResult = 0; + if (pUnicode && pUTF8) + cchResult = wcstombs(pUTF8, pUnicode, cubDestSizeInBytes); +#endif + + if (cubDestSizeInBytes > 0) + pUTF8[cubDestSizeInBytes - 1] = 0; + + return cchResult; +} + +//----------------------------------------------------------------------------- +// Purpose: Returns the UTF-8 character length +//----------------------------------------------------------------------------- +int V_UTF8CharLength(const unsigned char input) +{ + if ((input & 0xFE) == 0xFC) + return 6; + if ((input & 0xFC) == 0xF8) + return 5; + if ((input & 0xF8) == 0xF0) + return 4; + else if ((input & 0xF0) == 0xE0) + return 3; + else if ((input & 0xE0) == 0xC0) + return 2; + return 1; +} + +//----------------------------------------------------------------------------- +// Purpose: Checks if a given string only contains UTF-8 characters +//----------------------------------------------------------------------------- +bool V_IsValidUTF8(const char* pszString) +{ + char c; + const char* it; + + while (true) + { + while (true) + { + c = *pszString; + it = pszString++; + if (c < 0) + { + break; + } + if (!c) + { + return true; + } + } + + char s = *pszString; + if ((*pszString & 0xC0) != 0x80) + { + break; + } + + pszString = it + 2; + if (c >= 0xE0u) + { + int n = (*pszString & 0x3F) | (((s & 0x3F) | ((c & 0xF) << 6)) << 6); + if ((*pszString & 0xC0) != 0x80) + { + return false; + } + + pszString = it + 3; + if (c >= 0xF0u) + { + if ((*pszString & 0xC0) != 0x80 || ((n << 6) | (*pszString & 0x3Fu)) > 0x10FFFF) + { + return false; + } + + pszString = it + 4; + } + else if ((n - 0xD800) <= 0x7FF) + { + return false; + } + } + else if (c < 0xC2u) + { + return false; + } + } + return false; +} + +bool V_StringMatchesPattern(const char* pszSource, const char* pszPattern, int nFlags /*= 0 */) +{ + bool bExact = true; + while (1) + { + if ((*pszPattern) == 0) + { + return ((*pszSource) == 0); + } + + if ((*pszPattern) == '*') + { + pszPattern++; + + if ((*pszPattern) == 0) + { + return true; + } + + bExact = false; + continue; + } + + ptrdiff_t nLength = 0; + + while ((*pszPattern) != '*' && (*pszPattern) != 0) + { + nLength++; + pszPattern++; + } + + while (1) + { + const char* pszStartPattern = pszPattern - nLength; + const char* pszSearch = pszSource; + + for (ptrdiff_t i = 0; i < nLength; i++, pszSearch++, pszStartPattern++) + { + if ((*pszSearch) == 0) + { + return false; + } + + if ((*pszSearch) != (*pszStartPattern)) + { + break; + } + } + + if (pszSearch - pszSource == nLength) + { + break; + } + + if (bExact == true) + { + return false; + } + + if ((nFlags & PATTERN_DIRECTORY) != 0) + { + if ((*pszPattern) != '/' && (*pszSource) == '/') + { + return false; + } + } + + pszSource++; + } + + pszSource += nLength; + } +} + +//----------------------------------------------------------------------------- +// Purpose: Compares file paths, ignores case and path separators +// Input : *a - +// *b - +// Output : true if equal, false otherwise +//----------------------------------------------------------------------------- +bool V_ComparePath(const char* a, const char* b) +{ + if (strlen(a) != strlen(b)) + { + return false; + } + + // Case and separator invariant + for (; *a; a++, b++) + { + if (*a == *b) + { + continue; + } + if (FastASCIIToLower(*a) == FastASCIIToLower(*b)) + { + continue; + } + if ((*a == '/' || *a == '\\') && + (*b == '/' || *b == '\\')) + { + continue; + } + return false; + } + return true; +} + +//----------------------------------------------------------------------------- +// Purpose: Changes all '/' or '\' characters into separator +// Input : *pName - +// cSeparator - +//----------------------------------------------------------------------------- +void V_FixSlashes(char* pName, char cSeperator /* = CORRECT_PATH_SEPARATOR */) +{ + while (*pName) + { + if (*pName == INCORRECT_PATH_SEPARATOR || *pName == CORRECT_PATH_SEPARATOR) + { + *pName = cSeperator; + } + pName++; + } +} + +void V_AppendSlash(char* pStr, size_t strSize, char separator) +{ + size_t len = V_strlen(pStr); + if (len > 0 && !PATHSEPARATOR(pStr[len - 1])) + { + + pStr[len] = separator; + pStr[len + 1] = 0; + } +} + +//----------------------------------------------------------------------------- +// Purpose: +// Input : *ppath - +//----------------------------------------------------------------------------- +void V_StripTrailingSlash(char* ppath) +{ + + size_t len = V_strlen(ppath); + if (len > 0) + { + if (PATHSEPARATOR(ppath[len - 1])) + { + ppath[len - 1] = 0; + } + } +} + +bool V_RemoveDotSlashes(char* pFilename, char separator) +{ + // Remove '//' or '\\' + char* pIn = pFilename; + char* pOut = pFilename; + + // (But skip a leading separator, for leading \\'s in network paths) + if (*pIn && PATHSEPARATOR(*pIn)) + { + *pOut = *pIn; + ++pIn; + ++pOut; + } + + bool bPrevPathSep = false; + while (*pIn) + { + bool bIsPathSep = PATHSEPARATOR(*pIn); + if (!bIsPathSep || !bPrevPathSep) + { + *pOut++ = *pIn; + } + bPrevPathSep = bIsPathSep; + ++pIn; + } + *pOut = 0; + + // Get rid of "./"'s + pIn = pFilename; + pOut = pFilename; + while (*pIn) + { + // The logic on the second line is preventing it from screwing up "../" + if (pIn[0] == '.' && PATHSEPARATOR(pIn[1]) && + (pIn == pFilename || pIn[-1] != '.')) + { + pIn += 2; + } + else + { + *pOut = *pIn; + ++pIn; + ++pOut; + } + } + *pOut = 0; + + // Get rid of a trailing "/." (needless). + size_t len = V_strlen(pFilename); + if (len > 2 && pFilename[len - 1] == '.' && PATHSEPARATOR(pFilename[len - 2])) + { + pFilename[len - 2] = 0; + } + + // Each time we encounter a "..", back up until we've read the previous directory name, + // then get rid of it. + pIn = pFilename; + while (*pIn) + { + if (pIn[0] == '.' && + pIn[1] == '.' && + (pIn == pFilename || PATHSEPARATOR(pIn[-1])) && // Preceding character must be a slash. + (pIn[2] == 0 || PATHSEPARATOR(pIn[2]))) // Following character must be a slash or the end of the string. + { + char* pEndOfDots = pIn + 2; + char* pStart = pIn - 2; + + // Ok, now scan back for the path separator that starts the preceding directory. + while (1) + { + if (pStart < pFilename) + return false; + + if (PATHSEPARATOR(*pStart)) + break; + + --pStart; + } + + // Now slide the string down to get rid of the previous directory and the ".." + memmove(pStart, pEndOfDots, strlen(pEndOfDots) + 1); + + // Start over. + pIn = pFilename; + } + else + { + ++pIn; + } + } + + V_FixSlashes(pFilename, separator); + return true; +} + +//----------------------------------------------------------------------------- +// Purpose: normalizes the file path +// Input : *pfilePath - +// separator - +// Output : true on success, false otherwise +//----------------------------------------------------------------------------- +bool V_NormalizePath(char* pfilePath, char separator) +{ + char v2; // al + char v3; // r9 + char* v5; // rbx + char* i; // r8 + char v7; // dl + char* v8; // r8 + char v9; // al + char* j; // rcx + char v11; // dl + __int64 v12; // rax + __int64 v13; // rax + char v14; // cl + char v15; // al + char* v16; // rcx + char v17; // al + char v18; // al + BYTE* v19; // rdx + char* k; // rcx + __int64 v21; // r8 + char l; // al + + v2 = *pfilePath; + v3 = 0; + v5 = pfilePath; + for (i = pfilePath; v2; v3 = v7) + { + if (v2 == '\\') + { + v2 = '\\'; + } + else if (v2 != '/') + { + v7 = 0; + LABEL_7: + *pfilePath++ = v2; + goto LABEL_8; + } + v7 = 1; + if (!v3) + goto LABEL_7; + LABEL_8: + v2 = *++i; + } + *pfilePath = 0; + v8 = v5; + v9 = *v5; + for (j = v5; *j; v9 = *j) + { + if (v9 == '.' && ((v11 = j[1], v11 == '\\') || v11 == '/') && (j == v5 || (v9 = '.', *(j - 1) != '.'))) + { + v12 = 2i64; + } + else + { + *v8++ = v9; + v12 = 1i64; + } + j += v12; + } + *v8 = 0; + v13 = -1i64; + do + ++v13; + while (v5[v13]); + if (v13 > 2 && v5[v13 - 1] == '.') + { + v14 = v5[v13 - 2]; + if (v14 == '\\' || v14 == '/') + v5[v13 - 2] = 0; + } + v15 = *v5; + v16 = v5; + if (*v5) + { + do + { + if (v15 == '.' && v16[1] == '.' && + (v16 == v5 || (v17 = *(v16 - 1), v17 == '\\') || v17 == '/') && + ((v18 = v16[2], v19 = (uint8_t*)v16 + 2, !v18) || v18 == '\\' || v18 == '/')) + { + for (k = v16 - 2; ; --k) + { + if (k < v5) + return false; + if (*k == '\\' || *k == '/') + break; + } + v21 = -1i64; + do + ++v21; + while (v19[v21]); + memmove(k, v19, v21 + 1); + v16 = v5; + } + else + { + ++v16; + } + v15 = *v16; + } while (*v16); + for (l = *v5; l; ++v5) + { + if (l == '/' || l == '\\') + *v5 = separator; + l = v5[1]; + } + } + return true; +} + +//----------------------------------------------------------------------------- +// small helper function shared by lots of modules +//----------------------------------------------------------------------------- +bool V_IsAbsolutePath(const char* pStr) +{ + if (!(pStr[0] && pStr[1])) + return false; + +#if defined( PLATFORM_WINDOWS ) + bool bIsAbsolute = (pStr[0] && pStr[1] == ':') || + ((pStr[0] == '/' || pStr[0] == '\\') && (pStr[1] == '/' || pStr[1] == '\\')); +#else + bool bIsAbsolute = (pStr[0] && pStr[1] == ':') || pStr[0] == '/' || pStr[0] == '\\'; +#endif + + + return bIsAbsolute; +} + +//----------------------------------------------------------------------------- +// Purpose: Sanity-check to verify that a path is a relative path inside the game dir +// Taken From: engine/cmd.cpp +//----------------------------------------------------------------------------- +bool V_IsValidPath(const char* pStr) +{ + if (!pStr) + { + return false; + } + + if (Q_strlen(pStr) <= 0 || + V_IsAbsolutePath(pStr) || // to protect absolute paths + Q_strstr(pStr, "..")) // to protect relative paths + { + return false; + } + + return true; +} + +#if defined(_MSC_VER) && _MSC_VER >= 1900 +bool +#else +void +#endif +V_MakeAbsolutePath(char* pOut, size_t outLen, const char* pPath, const char* pStartingDir) +{ + if (V_IsAbsolutePath(pPath)) + { + // pPath is not relative.. just copy it. + V_strncpy(pOut, pPath, outLen); + pOut[outLen - 1] = '\0'; + } + else + { + // Make sure the starting directory is absolute.. + if (pStartingDir && V_IsAbsolutePath(pStartingDir)) + { + V_strncpy(pOut, pStartingDir, outLen); + pOut[outLen - 1] = '\0'; + } + else + { +#ifdef _PS3 + { + V_strncpy(pOut, g_pPS3PathInfo->GameImagePath(), outLen); + } +#else + { +#pragma warning(push) // Disabled type conversion warning, as some implementations of '_getcwd' take a size_t. +#pragma warning(disable : 4267) + +#pragma warning(pop) + } +#endif + + if (pStartingDir) + { + V_AppendSlash(pOut, outLen); + V_strncat(pOut, pStartingDir, outLen/*, COPY_ALL_CHARACTERS*/); + } + } + + // Concatenate the paths. + V_AppendSlash(pOut, outLen); + V_strncat(pOut, pPath, outLen/*, COPY_ALL_CHARACTERS*/); + } + + + V_FixSlashes(pOut); + + bool bRet = true; + if (!V_RemoveDotSlashes(pOut)) + { + V_strncpy(pOut, pPath, outLen); + V_FixSlashes(pOut); + bRet = false; + } + +#if defined(_MSC_VER) && _MSC_VER >= 1900 + return bRet; +#endif +} + +//----------------------------------------------------------------------------- +// Purpose: Strip off the last directory from dirName +// Input : *dirName - +// maxLen - +// *newLen - +// Output : Returns the new length of the string +//----------------------------------------------------------------------------- +size_t V_StripLastDir(char* dirName, size_t maxLen) +{ + + if (dirName[0] == '\0') + return 0; + + size_t len = V_strlen(dirName); + + if (!V_stricmp(dirName, "./") || + !V_stricmp(dirName, ".\\")) + return len; + + // skip trailing slash + if (PATHSEPARATOR(dirName[len - 1])) + { + len--; + } + + bool bHitColon = false; + while (len > 0) + { + if (PATHSEPARATOR(dirName[len - 1])) + { + dirName[len] = '\0'; + return len; + } + else if (dirName[len - 1] == ':') + { + bHitColon = true; + } + + len--; + } + + // If we hit a drive letter, then we're done. + // Ex: If they passed in c:\, then V_StripLastDir should + // turn the string into "" and return 0. + if (bHitColon) + { + dirName[0] = '\0'; + return 0; + } + + // Allow it to return an empty string and 0. This can happen if something like "tf2/" is passed in. + // The correct behavior is to strip off the last directory ("tf2") and return the new length. + if (len == 0) + { + int ret = V_snprintf(dirName, maxLen, ".%c", CORRECT_PATH_SEPARATOR); + + // snprintf failed, turn the string into "" and return 0. + if (ret < 0) + { + + dirName[0] = '\0'; + return 0; + } + + return ret; + } + + return len; +} + +//----------------------------------------------------------------------------- +// Purpose: Returns a pointer to the beginning of the unqualified file name +// (no path information) +// Input: in - file name (may be unqualified, relative or absolute path) +// Output: pointer to unqualified file name +//----------------------------------------------------------------------------- +const char* V_UnqualifiedFileName(const char* in) +{ + if (!in || !in[0]) + return in; + + // back up until the character after the first path separator we find, + // or the beginning of the string + const char* out = in + strlen(in) - 1; + while ((out > in) && (!PATHSEPARATOR(*(out - 1)))) + out--; + return out; +} + +//----------------------------------------------------------------------------- +// Purpose: Composes a path and filename together, inserting a path separator +// if need be +// Input: path - path to use +// filename - filename to use +// dest - buffer to compose result in +// destSize - size of destination buffer +//----------------------------------------------------------------------------- +void V_ComposeFileName(const char* path, const char* filename, char* dest, size_t destSize) +{ + V_strncpy(dest, path, destSize); + V_FixSlashes(dest); + V_AppendSlash(dest, destSize); + V_strncat(dest, filename, destSize/*, COPY_ALL_CHARACTERS*/); + V_FixSlashes(dest); +} + +//----------------------------------------------------------------------------- +// Purpose: +// Input : *in - +// *out - +// outSize - +//----------------------------------------------------------------------------- +void V_StripExtension(const char* in, char* out, size_t outSize) +{ + // Find the last dot. If it's followed by a dot or a slash, then it's part of a + // directory specifier like ../../somedir/./blah. + + if (!in || !in[0] || !outSize) + return; + + // scan backward for '.' + size_t end = V_strlen(in) - 1; + while (end > 0 && in[end] != '.' && !PATHSEPARATOR(in[end])) + { + --end; + } + + if (end > 0 && !PATHSEPARATOR(in[end]) && end < outSize) + { + size_t nChars = std::min(end, outSize - 1); + if (out != in) + { + memcpy(out, in, nChars); + } + out[nChars] = 0; + } + else + { + // nothing found + if (out != in) + { + V_strncpy(out, in, outSize); + } + } +} + +//----------------------------------------------------------------------------- +// Purpose: +// Input : *path - +// *dest - +// destSize - +// Output : void V_ExtractFileExtension +//----------------------------------------------------------------------------- +void V_ExtractFileExtension(const char* path, char* dest, size_t destSize) +{ + *dest = 0; + const char* extension = V_GetFileExtension(path); + if (NULL != extension) + V_strncpy(dest, extension, destSize); +} + +//----------------------------------------------------------------------------- +// Purpose: Returns a pointer to the file extension within a file name string +// Input: in - file name +// Output: pointer to beginning of extension (after the "."), or NULL +// if there is no extension +//----------------------------------------------------------------------------- +const char* V_GetFileExtension(const char* path) +{ + size_t len = V_strlen(path); + if (len <= 1) + return NULL; + + const char* src = path + len - 1; + + // + // back up until a . or the start + // + while (src != path && *(src - 1) != '.') + src--; + + // check to see if the '.' is part of a pathname + if (src == path || PATHSEPARATOR(*src)) + { + return NULL; // no extension + } + + return src; +} + + +//----------------------------------------------------------------------------- +// Purpose: Extracts the base name of a file (no path, no extension, assumes '/' or '\' as path separator) +// Input : *in - +// *out - +// maxlen - +//----------------------------------------------------------------------------- +void V_FileBase(const char* in, char* out, size_t maxlen) +{ + + + if (!in || !in[0]) + { + *out = 0; + return; + } + + size_t len, start, end; + + len = V_strlen(in); + + // scan backward for '.' + end = len - 1; + while (end && in[end] != '.' && !PATHSEPARATOR(in[end])) + { + end--; + } + + if (in[end] != '.') // no '.', copy to end + { + end = len - 1; + } + else + { + end--; // Found ',', copy to left of '.' + } + + // Scan backward for '/' + start = len - 1; + while (start >= 0 && !PATHSEPARATOR(in[start])) + { + start--; + } + + if (start < 0 || !PATHSEPARATOR(in[start])) + { + start = 0; + } + else + { + start++; + } + + // Length of new sting + len = end - start + 1; + + size_t maxcopy = std::min(len + 1, maxlen); + + // Copy partial string + V_strncpy(out, &in[start], maxcopy); +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/buf/strtools.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/buf/strtools.h new file mode 100644 index 0000000..f651d94 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/buf/strtools.h @@ -0,0 +1,140 @@ +#pragma once +#include +#include +#define CORRECT_PATH_SEPARATOR '\\' +#define CORRECT_PATH_SEPARATOR_S "\\" +#define INCORRECT_PATH_SEPARATOR '/' +#define INCORRECT_PATH_SEPARATOR_S "/" +#define CHARACTERS_WHICH_SEPARATE_DIRECTORY_COMPONENTS_IN_PATHNAMES ":/\\" +#define PATHSEPARATOR(c) ((c) == '\\' || (c) == '/') +# + +#define COPY_ALL_CHARACTERS -1 + +/// Faster conversion of an ascii char to upper case. This function does not obey locale or any language +/// setting. It should not be used to convert characters for printing, but it is a better choice +/// for internal strings such as used for hash table keys, etc. It's meant to be inlined and used +/// in places like the various dictionary classes. Not obeying locale also protects you from things +/// like your hash values being different depending on the locale setting. +#define FastASCIIToUpper( c ) ( ( ( (c) >= 'a' ) && ( (c) <= 'z' ) ) ? ( (c) - 32 ) : (c) ) +/// similar to FastASCIIToLower +#define FastASCIIToLower( c ) ( ( ( (c) >= 'A' ) && ( (c) <= 'Z' ) ) ? ( (c) + 32 ) : (c) ) + +#define V_vsnprintf vsnprintf +#define V_snprintf snprintf +#define V_strlower _strlwr +#define V_strlen strlen +#define V_strncat strncat +#define V_stricmp _stricmp +#define V_strnicmp _strnicmp +#define V_strcmp strcmp +#define V_strncmp strncmp +#define V_strstr strstr +#define V_strncpy strncpy +#define V_strdup _strdup +#define V_strcat strcat + +#define Q_vsnprintf V_vsnprintf +#define Q_snprintf V_snprintf +#define Q_strlower V_strlower +#define Q_strlen V_strlen +#define Q_strncat V_strncat +#define Q_strnistr V_strnistr +#define Q_stricmp V_stricmp +#define Q_strnicmp V_strnicmp +#define Q_strncasecmp V_strnicmp +#define Q_strcasecmp V_stricmp +#define Q_strcmp V_strcmp +#define Q_strncmp V_strncmp +#define Q_strstr V_strstr +#define Q_strncpy V_strncpy +#define Q_strdup V_strdup +#define Q_strcat V_strcat + +template int V_vsprintf_safe(char(&pDest)[maxLenInCharacters], const char* pFormat, va_list params) { return V_vsnprintf(pDest, maxLenInCharacters, pFormat, params); } + + +char const* V_stristr(char const* pStr, char const* pSearch); +const char* V_strnistr(const char* pStr, const char* pSearch, size_t n); +const char* V_strnchr(const char* pStr, char c, size_t n); +bool V_isspace(int c); + +// Strip white space at the beginning and end of a string +size_t V_StrTrim(char* pStr); + +int V_UTF8ToUnicode(const char* pUTF8, wchar_t* pwchDest, int cubDestSizeInBytes); +int V_UnicodeToUTF8(const wchar_t* pUnicode, char* pUTF8, int cubDestSizeInBytes); + +int V_UTF8CharLength(const unsigned char input); +bool V_IsValidUTF8(const char* pszString); + +typedef enum +{ + PATTERN_NONE = 0x00000000, + PATTERN_DIRECTORY = 0x00000001 +} TStringPattern; + +// String matching using wildcards (*) for partial matches. +bool V_StringMatchesPattern(const char* szString, const char* szPattern, int flags = 0); + +bool V_ComparePath(const char* a, const char* b); + +void V_FixSlashes(char* pname, char separator = CORRECT_PATH_SEPARATOR); + +// Adds a path separator to the end of the string if there isn't one already and the string is not empty. +// Triggers a fatal error if it would run out of space. +void V_AppendSlash(char* pStr, size_t strSize, char separator = CORRECT_PATH_SEPARATOR); + +// Remove the final characters of ppath if it's '\' or '/'. +void V_StripTrailingSlash(char* ppath); + +// This removes "./" and "../" from the pathname. pFilename should be a full pathname. +// Returns false if it tries to ".." past the root directory in the drive (in which case +// it is an invalid path). +bool V_RemoveDotSlashes(char* pFilename, char separator = CORRECT_PATH_SEPARATOR); + +// Returns true if the path could be normalized. +bool V_NormalizePath(char* pfilePath, char separator); + +// Returns true if the path is an absolute path. +bool V_IsAbsolutePath(const char* pPath); + +// Returns true if the path is valid. +bool V_IsValidPath(const char* pStr); + +// If pPath is a relative path, this function makes it into an absolute path +// using the current working directory as the base, or pStartingDir if it's non-NULL. +// Returns false if it runs out of room in the string, or if pPath tries to ".." past the root directory. +#if defined(_MSC_VER) && _MSC_VER >= 1900 +bool +#else +void +#endif +V_MakeAbsolutePath(char* pOut, size_t outLen, const char* pPath, const char* pStartingDir = NULL); +inline void V_MakeAbsolutePath(char* pOut, size_t outLen, const char* pPath, const char* pStartingDir, bool bLowercaseName) +{ + V_MakeAbsolutePath(pOut, outLen, pPath, pStartingDir); + if (bLowercaseName) + { + V_strlower(pOut); + } +} + +// Remove the final directory from the path +size_t V_StripLastDir(char* dirName, size_t maxLen); +// Returns a pointer to the unqualified file name (no path) of a file name +const char* V_UnqualifiedFileName(const char* in); +// Given a path and a filename, composes "path\filename", inserting the (OS correct) separator if necessary +void V_ComposeFileName(const char* path, const char* filename, char* dest, size_t destSize); + +// Remove any extension from in and return resulting string in out +void V_StripExtension(const char* in, char* out, size_t outLen); + +// Copy out the file extension into dest +void V_ExtractFileExtension(const char* path, char* dest, size_t destSize); + +// Returns a pointer to the file extension or NULL if one doesn't exist +const char* V_GetFileExtension(const char* path); + +// Extracts the base name of a file (no path, no extension, assumes '/' or '\' as path separator) +void V_FileBase(const char* in, char* out, size_t maxlen); diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/buf/utlbuffer.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/buf/utlbuffer.cpp new file mode 100644 index 0000000..3e69db1 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/buf/utlbuffer.cpp @@ -0,0 +1,1985 @@ +//===== Copyright � 1996-2005, Valve Corporation, All rights reserved. ======// +// +// $Header: $ +// $NoKeywords: $ +// +// Serialization buffer +//===========================================================================// + +#pragma warning (disable : 4514) + +#include "utlbuffer.h" +#include "../../../utilities/log.h" +#include "strtools.h" + + + +//----------------------------------------------------------------------------- +// Character conversions for C strings +//----------------------------------------------------------------------------- +class CUtlCStringConversion : public CUtlCharConversion +{ +public: + CUtlCStringConversion(char nEscapeChar, const char* pDelimiter, size_t nCount, ConversionArray_t* pArray); + + // Finds a conversion for the passed-in string, returns length + virtual char FindConversion(const char* pString, size_t* pLength); + +private: + char m_pConversion[256]; +}; + + +//----------------------------------------------------------------------------- +// Character conversions for no-escape sequence strings +//----------------------------------------------------------------------------- +class CUtlNoEscConversion : public CUtlCharConversion +{ +public: + CUtlNoEscConversion(char nEscapeChar, const char* pDelimiter, size_t nCount, ConversionArray_t* pArray) : + CUtlCharConversion(nEscapeChar, pDelimiter, nCount, pArray) {} + + // Finds a conversion for the passed-in string, returns length + virtual char FindConversion(const char* pString, size_t* pLength) { *pLength = 0; return 0; } +}; + + +//----------------------------------------------------------------------------- +// List of character conversions +//----------------------------------------------------------------------------- +//BEGIN_CUSTOM_CHAR_CONVERSION(CUtlCStringConversion, s_StringCharConversion, "\"", '\\') +//{ +// '\n', "n" +//}, +// { '\t', "t" }, +// { '\v', "v" }, +// { '\b', "b" }, +// { '\r', "r" }, +// { '\f', "f" }, +// { '\a', "a" }, +// { '\\', "\\" }, +// { '\?', "\?" }, +// { '\'', "\'" }, +// { '\"', "\"" }, +//END_CUSTOM_CHAR_CONVERSION(CUtlCStringConversion, s_StringCharConversion, "\"", '\\') +// +//CUtlCharConversion* GetCStringCharConversion() +//{ +// return &s_StringCharConversion; +//} +// +//BEGIN_CUSTOM_CHAR_CONVERSION(CUtlNoEscConversion, s_NoEscConversion, "\"", 0x7F) +//{ +// 0x7F, "" +//}, +//END_CUSTOM_CHAR_CONVERSION(CUtlNoEscConversion, s_NoEscConversion, "\"", 0x7F) +// +//CUtlCharConversion* GetNoEscCharConversion() +//{ +// return &s_NoEscConversion; +//} + + +//----------------------------------------------------------------------------- +// Constructor +//----------------------------------------------------------------------------- +CUtlCStringConversion::CUtlCStringConversion(char nEscapeChar, const char* pDelimiter, size_t nCount, ConversionArray_t* pArray) : + CUtlCharConversion(nEscapeChar, pDelimiter, nCount, pArray) +{ + memset(m_pConversion, 0x0, sizeof(m_pConversion)); + for (size_t i = 0; i < nCount; ++i) + { + m_pConversion[(unsigned char)(pArray[i].m_pReplacementString[0])] = pArray[i].m_nActualChar; + } +} + +// Finds a conversion for the passed-in string, returns length +char CUtlCStringConversion::FindConversion(const char* pString, size_t* pLength) +{ + char c = m_pConversion[(unsigned char)(pString[0])]; + *pLength = (c != '\0') ? 1 : 0; + return c; +} + + + +//----------------------------------------------------------------------------- +// Constructor +//----------------------------------------------------------------------------- +CUtlCharConversion::CUtlCharConversion(char nEscapeChar, const char* pDelimiter, size_t nCount, ConversionArray_t* pArray) +{ + m_nEscapeChar = nEscapeChar; + m_pDelimiter = pDelimiter; + m_nCount = nCount; + m_nDelimiterLength = strlen(pDelimiter); + m_nMaxConversionLength = 0; + + memset(m_pReplacements, 0, sizeof(m_pReplacements)); + + for (size_t i = 0; i < nCount; ++i) + { + m_pList[i] = pArray[i].m_nActualChar; + ConversionInfo_t& info = m_pReplacements[(unsigned char)(m_pList[i])]; + info.m_pReplacementString = pArray[i].m_pReplacementString; + info.m_nLength = strlen(info.m_pReplacementString); + if (info.m_nLength > m_nMaxConversionLength) + { + m_nMaxConversionLength = info.m_nLength; + } + } +} + + +//----------------------------------------------------------------------------- +// Escape character + delimiter +//----------------------------------------------------------------------------- +char CUtlCharConversion::GetEscapeChar() const +{ + return m_nEscapeChar; +} + +const char* CUtlCharConversion::GetDelimiter() const +{ + return m_pDelimiter; +} + +size_t CUtlCharConversion::GetDelimiterLength() const +{ + return m_nDelimiterLength; +} + + +//----------------------------------------------------------------------------- +// Constructor +//----------------------------------------------------------------------------- +const char* CUtlCharConversion::GetConversionString(char c) const +{ + return m_pReplacements[(unsigned char)c].m_pReplacementString; +} + +size_t CUtlCharConversion::GetConversionLength(char c) const +{ + return m_pReplacements[(unsigned char)c].m_nLength; +} + +size_t CUtlCharConversion::MaxConversionLength() const +{ + return m_nMaxConversionLength; +} + + +//----------------------------------------------------------------------------- +// Finds a conversion for the passed-in string, returns length +//----------------------------------------------------------------------------- +char CUtlCharConversion::FindConversion(const char* pString, size_t* pLength) +{ + for (size_t i = 0; i < m_nCount; ++i) + { + if (!strcmp(pString, m_pReplacements[(unsigned char)(m_pList[i])].m_pReplacementString)) + { + *pLength = m_pReplacements[(unsigned char)(m_pList[i])].m_nLength; + return m_pList[i]; + } + } + + *pLength = 0; + return '\0'; +} + +CUtlBuffer::CUtlBuffer(size_t growSize, size_t initSize, int nFlags) : + m_Error(0), m_Memory(growSize, initSize) +{ + m_Memory.Init(growSize, initSize); + + m_Get = 0; + m_Put = 0; + m_nTab = 0; + m_nOffset = 0; + m_Flags = static_cast(nFlags); + if ((initSize != 0)) + { + m_nMaxPut = -1; + AddNullTermination(m_Put); + } + else + { + m_nMaxPut = 0; + } + SetOverflowFuncs(&CUtlBuffer::GetOverflow, &CUtlBuffer::PutOverflow); +} + +CUtlBuffer::CUtlBuffer(const void* pBuffer, size_t nSize, int nFlags) : + m_Memory(reinterpret_cast(pBuffer), static_cast(nSize)), m_Error(0) +{ + + m_Get = 0; + m_Put = 0; + m_nTab = 0; + m_nOffset = 0; + m_Flags = static_cast(nFlags); + + if (IsReadOnly()) + { + L_PRINT(LOG_INFO) << "CUTLBuffer > readonly"; + m_nMaxPut = m_Put = nSize; + } + else + { + L_PRINT(LOG_INFO) << "CUTLBuffer > m_MaxPut = -1"; + m_nMaxPut = -1; + AddNullTermination(m_Put); + } + + SetOverflowFuncs(&CUtlBuffer::GetOverflow, &CUtlBuffer::PutOverflow); +} + +CUtlBuffer::CUtlBuffer(const CUtlBuffer& copyFrom) : + m_Get(copyFrom.m_Get), + m_Put(copyFrom.m_Put), + m_Error(copyFrom.m_Error), + m_Flags(copyFrom.m_Flags), + m_Reserved(copyFrom.m_Reserved), +#if defined( _GAMECONSOLE ) + pad(copyFrom.pad), +#endif + m_nTab(copyFrom.m_nTab), + m_nMaxPut(copyFrom.m_nMaxPut), + m_nOffset(copyFrom.m_nOffset), + m_GetOverflowFunc(copyFrom.m_GetOverflowFunc), + m_PutOverflowFunc(copyFrom.m_PutOverflowFunc), + m_Byteswap(copyFrom.m_Byteswap), + m_Memory(copyFrom.m_Memory) +{ + + +} + +CUtlBuffer& CUtlBuffer::operator=(const CUtlBuffer& copyFrom) +{ + if (this != ©From) + { + m_Get = copyFrom.m_Get; + m_Put = copyFrom.m_Put; + m_Error = copyFrom.m_Error; + m_Flags = copyFrom.m_Flags; + m_Reserved = copyFrom.m_Reserved; +#if defined( _GAMECONSOLE ) + pad = copyFrom.pad; +#endif + m_nTab = copyFrom.m_nTab; + m_nMaxPut = copyFrom.m_nMaxPut; + m_nOffset = copyFrom.m_nOffset; + m_GetOverflowFunc = copyFrom.m_GetOverflowFunc; + m_PutOverflowFunc = copyFrom.m_PutOverflowFunc; + m_Byteswap = copyFrom.m_Byteswap; + m_Memory = copyFrom.m_Memory; // Use the assignment operator of CUtlMemory + } + return *this; +} + +CUtlBuffer::CUtlBuffer(CUtlBuffer&& moveFrom) // = default + : m_Memory(CRT::Move(moveFrom.m_Memory)) + , m_Get(CRT::Move(moveFrom.m_Get)) + , m_Put(CRT::Move(moveFrom.m_Put)) + , m_Error(CRT::Move(moveFrom.m_Error)) + , m_Flags(CRT::Move(moveFrom.m_Flags)) + , m_Reserved(CRT::Move(moveFrom.m_Reserved)) +#if defined( _GAMECONSOLE ) + , pad(CRT::Move(moveFrom.pad)) +#endif + , m_nTab(CRT::Move(moveFrom.m_nTab)) + , m_nMaxPut(CRT::Move(moveFrom.m_nMaxPut)) + , m_nOffset(CRT::Move(moveFrom.m_nOffset)) + , m_GetOverflowFunc(CRT::Move(moveFrom.m_GetOverflowFunc)) + , m_PutOverflowFunc(CRT::Move(moveFrom.m_PutOverflowFunc)) + , m_Byteswap(CRT::Move(moveFrom.m_Byteswap)) +{} + +CUtlBuffer& CUtlBuffer::operator=(CUtlBuffer&& moveFrom) // = default +{ + m_Memory = CRT::Move(moveFrom.m_Memory); + m_Get = CRT::Move(moveFrom.m_Get); + m_Put = CRT::Move(moveFrom.m_Put); + m_Error = CRT::Move(moveFrom.m_Error); + m_Flags = CRT::Move(moveFrom.m_Flags); + m_Reserved = CRT::Move(moveFrom.m_Reserved); +#if defined( _GAMECONSOLE ) + pad = Move(moveFrom.pad); +#endif + m_nTab = CRT::Move(moveFrom.m_nTab); + m_nMaxPut = CRT::Move(moveFrom.m_nMaxPut); + m_nOffset = CRT::Move(moveFrom.m_nOffset); + m_GetOverflowFunc = CRT::Move(moveFrom.m_GetOverflowFunc); + m_PutOverflowFunc = CRT::Move(moveFrom.m_PutOverflowFunc); + m_Byteswap = CRT::Move(moveFrom.m_Byteswap); + + return *this; +} + +//----------------------------------------------------------------------------- +// Modifies the buffer to be binary or text; Blows away the buffer and the CONTAINS_CRLF value. +//----------------------------------------------------------------------------- +void CUtlBuffer::SetBufferType(bool bIsText, bool bContainsCRLF) +{ + + if (bIsText) + { + m_Flags |= TEXT_BUFFER; + } + else + { + m_Flags &= ~TEXT_BUFFER; + } + if (bContainsCRLF) + { + m_Flags |= CONTAINS_CRLF; + } + else + { + m_Flags &= ~CONTAINS_CRLF; + } +} + + +//----------------------------------------------------------------------------- +// Attaches the buffer to external memory.... +//----------------------------------------------------------------------------- +void CUtlBuffer::SetExternalBuffer(void* pMemory, size_t nSize, size_t nInitialPut, int nFlags) +{ + m_Memory.SetExternalBuffer((unsigned char*)pMemory, nSize); + + // Reset all indices; we just changed memory + m_Get = 0; + m_Put = nInitialPut; + m_nTab = 0; + m_Error = 0; + m_nOffset = 0; + m_Flags = (unsigned char)nFlags; + m_nMaxPut = -1; + AddNullTermination(m_Put); +} + +//----------------------------------------------------------------------------- +// Assumes an external buffer but manages its deletion +//----------------------------------------------------------------------------- +void CUtlBuffer::AssumeMemory(void* pMemory, size_t nSize, size_t nInitialPut, int nFlags) +{ + // Simply take the pointer but don't mark us as external + m_Memory.AssumeMemory((unsigned char*)pMemory, nSize); + + m_Get = 0; + m_Put = nInitialPut; + m_nTab = 0; + m_Error = 0; + m_nOffset = 0; + m_Flags = (unsigned char)nFlags; + m_nMaxPut = -1; + AddNullTermination(m_Put); +} + + +//----------------------------------------------------------------------------- +// Allows the caller to control memory +//----------------------------------------------------------------------------- +void* CUtlBuffer::DetachMemory() +{ + // Reset all indices; we just changed memory + m_Get = 0; + m_Put = 0; + m_nTab = 0; + m_Error = 0; + m_nOffset = 0; + return m_Memory.DetachMemory(); +} + + +//----------------------------------------------------------------------------- +// Makes sure we've got at least this much memory +//----------------------------------------------------------------------------- +void CUtlBuffer::EnsureCapacity(size_t num) +{ + //MEM_ALLOC_CREDIT(); + // Add one extra for the null termination + num += 1; + if (m_Memory.IsExternallyAllocated()) + { + if (IsGrowable() && (m_Memory.AllocationNum() < num)) + { + m_Memory.ConvertToGrowableMemory(0); + } + else + { + num -= 1; + } + } + + m_Memory.EnsureCapacity(num); +} + + +//----------------------------------------------------------------------------- +// Base get method from which all others derive +//----------------------------------------------------------------------------- +bool CUtlBuffer::Get(void* pMem, size_t size) +{ + if (size > 0 && CheckGet(size)) + { + memcpy(pMem, &m_Memory[m_Get - m_nOffset], size); + m_Get += size; + return true; + } + return false; +} + + +//----------------------------------------------------------------------------- +// This will get at least 1 byte and up to nSize bytes. +// It will return the number of bytes actually read. +//----------------------------------------------------------------------------- +size_t CUtlBuffer::GetUpTo(void* pMem, size_t nSize) +{ + if (CheckArbitraryPeekGet(0, nSize)) + { + memcpy(pMem, &m_Memory[m_Get - m_nOffset], nSize); + m_Get += nSize; + return nSize; + } + return 0; +} + + +//----------------------------------------------------------------------------- +// Eats whitespace +//----------------------------------------------------------------------------- +void CUtlBuffer::EatWhiteSpace() +{ + if (IsText() && IsValid()) + { + while (CheckGet(sizeof(char))) + { + if (!isspace(*(const unsigned char*)PeekGet())) + break; + m_Get += sizeof(char); + } + } +} + + +//----------------------------------------------------------------------------- +// Eats C++ style comments +//----------------------------------------------------------------------------- +bool CUtlBuffer::EatCPPComment() +{ + if (IsText() && IsValid()) + { + // If we don't have a a c++ style comment next, we're done + const char* pPeek = (const char*)PeekGet(2 * sizeof(char), 0); + if (!pPeek || (pPeek[0] != '/') || (pPeek[1] != '/')) + return false; + + // Deal with c++ style comments + m_Get += 2; + + // read complete line + for (char c = GetChar(); IsValid(); c = GetChar()) + { + if (c == '\n') + break; + } + return true; + } + return false; +} + + +//----------------------------------------------------------------------------- +// Peeks how much whitespace to eat +//----------------------------------------------------------------------------- +size_t CUtlBuffer::PeekWhiteSpace(size_t nOffset) +{ + if (!IsText() || !IsValid()) + return 0; + + while (CheckPeekGet(nOffset, sizeof(char))) + { + if (!isspace(*(unsigned char*)PeekGet(nOffset))) + break; + nOffset += sizeof(char); + } + + return nOffset; +} + + +//----------------------------------------------------------------------------- +// Peek size of sting to come, check memory bound +//----------------------------------------------------------------------------- +size_t CUtlBuffer::PeekStringLength() +{ + if (!IsValid()) + return 0; + + // Eat preceding whitespace + size_t nOffset = 0; + if (IsText()) + { + nOffset = PeekWhiteSpace(nOffset); + } + + size_t nStartingOffset = nOffset; + + do + { + size_t nPeekAmount = 128; + + // NOTE: Add 1 for the terminating zero! + if (!CheckArbitraryPeekGet(nOffset, nPeekAmount)) + { + if (nOffset == nStartingOffset) + return 0; + return nOffset - nStartingOffset + 1; + } + + const char* pTest = (const char*)PeekGet(nOffset); + + if (!IsText()) + { + for (size_t i = 0; i < nPeekAmount; ++i) + { + // The +1 here is so we eat the terminating 0 + if (pTest[i] == 0) + return (i + nOffset - nStartingOffset + 1); + } + } + else + { + for (size_t i = 0; i < nPeekAmount; ++i) + { + // The +1 here is so we eat the terminating 0 + if (isspace((unsigned char)pTest[i]) || (pTest[i] == 0)) + return (i + nOffset - nStartingOffset + 1); + } + } + + nOffset += nPeekAmount; + + } while (true); +} + + +//----------------------------------------------------------------------------- +// Peek size of line to come, check memory bound +//----------------------------------------------------------------------------- +size_t CUtlBuffer::PeekLineLength() +{ + if (!IsValid()) + return 0; + + size_t nOffset = 0; + size_t nStartingOffset = nOffset; + + do + { + size_t nPeekAmount = 128; + + // NOTE: Add 1 for the terminating zero! + if (!CheckArbitraryPeekGet(nOffset, nPeekAmount)) + { + if (nOffset == nStartingOffset) + return 0; + return nOffset - nStartingOffset + 1; + } + + const char* pTest = (const char*)PeekGet(nOffset); + + for (size_t i = 0; i < nPeekAmount; ++i) + { + // The +2 here is so we eat the terminating '\n' and 0 + if (pTest[i] == '\n' || pTest[i] == '\r') + return (i + nOffset - nStartingOffset + 2); + // The +1 here is so we eat the terminating 0 + if (pTest[i] == 0) + return (i + nOffset - nStartingOffset + 1); + } + + nOffset += nPeekAmount; + + } while (true); +} + + +//----------------------------------------------------------------------------- +// Does the next bytes of the buffer match a pattern? +//----------------------------------------------------------------------------- +bool CUtlBuffer::PeekStringMatch(size_t nOffset, const char* pString, size_t nLen) +{ + if (!CheckPeekGet(nOffset, nLen)) + return false; + return !strncmp((const char*)PeekGet(nOffset), pString, nLen); +} + + +//----------------------------------------------------------------------------- +// This version of PeekStringLength converts \" to \\ and " to \, etc. +// It also reads a " at the beginning and end of the string +//----------------------------------------------------------------------------- +size_t CUtlBuffer::PeekDelimitedStringLength(CUtlCharConversion* pConv, bool bActualSize) +{ + if (!IsText() || !pConv) + return PeekStringLength(); + + // Eat preceding whitespace + size_t nOffset = 0; + if (IsText()) + { + nOffset = PeekWhiteSpace(nOffset); + } + + if (!PeekStringMatch(nOffset, pConv->GetDelimiter(), pConv->GetDelimiterLength())) + return 0; + + // Try to read ending ", but don't accept \" + size_t nActualStart = nOffset; + nOffset += pConv->GetDelimiterLength(); + size_t nLen = 1; // Starts at 1 for the '\0' termination + + do + { + if (PeekStringMatch(nOffset, pConv->GetDelimiter(), pConv->GetDelimiterLength())) + break; + + if (!CheckPeekGet(nOffset, 1)) + break; + + char c = *(const char*)PeekGet(nOffset); + ++nLen; + ++nOffset; + if (c == pConv->GetEscapeChar()) + { + size_t nLength = pConv->MaxConversionLength(); + if (!CheckArbitraryPeekGet(nOffset, nLength)) + break; + + pConv->FindConversion((const char*)PeekGet(nOffset), &nLength); + nOffset += nLength; + } + } while (true); + + return bActualSize ? nLen : nOffset - nActualStart + pConv->GetDelimiterLength() + 1; +} + + +//----------------------------------------------------------------------------- +// Reads a null-terminated string +//----------------------------------------------------------------------------- +void CUtlBuffer::GetString(char* pString, size_t nMaxChars) +{ + if (!IsValid()) + { + *pString = 0; + return; + } + + if (nMaxChars <= 0) + { + return; + } + + // Remember, this *includes* the null character + // It will be 0, however, if the buffer is empty. + size_t nLen = PeekStringLength(); + + if (IsText()) + { + EatWhiteSpace(); + } + + if (nLen <= 0) + { + *pString = 0; + m_Error |= GET_OVERFLOW; + return; + } + + const size_t nCharsToRead = std::min(nLen, nMaxChars) - 1; + + Get(pString, nCharsToRead); + pString[nCharsToRead] = 0; + + if (nLen > (nCharsToRead + 1)) + { + SeekGet(SEEK_CURRENT, nLen - (nCharsToRead + 1)); + } + + // Read the terminating NULL in binary formats + if (!IsText()) + { + //VerifyEquals(GetChar(), 0); + } +} + + +//----------------------------------------------------------------------------- +// Reads up to and including the first \n +//----------------------------------------------------------------------------- +void CUtlBuffer::GetLine(char* pLine, size_t nMaxChars) +{ + //Assert( IsText() && !ContainsCRLF() ); + + if (!IsValid()) + { + *pLine = 0; + return; + } + + if (nMaxChars == 0) + { + nMaxChars = LLONG_MAX; + } + + // Remember, this *includes* the null character + // It will be 0, however, if the buffer is empty. + size_t nLen = PeekLineLength(); + if (nLen == 0) + { + *pLine = 0; + m_Error |= GET_OVERFLOW; + return; + } + + // Strip off the terminating NULL + if (nLen <= nMaxChars) + { + Get(pLine, nLen - 1); + pLine[nLen - 1] = 0; + } + else + { + Get(pLine, nMaxChars - 1); + pLine[nMaxChars - 1] = 0; + SeekGet(SEEK_CURRENT, nLen - 1 - nMaxChars); + } +} + + +//----------------------------------------------------------------------------- +// This version of GetString converts \ to \\ and " to \", etc. +// It also places " at the beginning and end of the string +//----------------------------------------------------------------------------- +char CUtlBuffer::GetDelimitedCharInternal(CUtlCharConversion* pConv) +{ + char c = GetChar(); + if (c == pConv->GetEscapeChar()) + { + size_t nLength = pConv->MaxConversionLength(); + if (!CheckArbitraryPeekGet(0, nLength)) + return '\0'; + + c = pConv->FindConversion((const char*)PeekGet(), &nLength); + SeekGet(SEEK_CURRENT, nLength); + } + + return c; +} + +char CUtlBuffer::GetDelimitedChar(CUtlCharConversion* pConv) +{ + if (!IsText() || !pConv) + return GetChar(); + return GetDelimitedCharInternal(pConv); +} + +void CUtlBuffer::GetDelimitedString(CUtlCharConversion* pConv, char* pString, size_t nMaxChars) +{ + if (!IsText() || !pConv) + { + GetString(pString, nMaxChars); + return; + } + + if (!IsValid()) + { + *pString = 0; + return; + } + + if (nMaxChars == 0) + { + nMaxChars = LLONG_MAX; + } + + EatWhiteSpace(); + if (!PeekStringMatch(0, pConv->GetDelimiter(), pConv->GetDelimiterLength())) + return; + + // Pull off the starting delimiter + SeekGet(SEEK_CURRENT, pConv->GetDelimiterLength()); + + size_t nRead = 0; + while (IsValid()) + { + if (PeekStringMatch(0, pConv->GetDelimiter(), pConv->GetDelimiterLength())) + { + SeekGet(SEEK_CURRENT, pConv->GetDelimiterLength()); + break; + } + + char c = GetDelimitedCharInternal(pConv); + + if (nRead < nMaxChars) + { + pString[nRead] = c; + ++nRead; + } + } + + if (nRead >= nMaxChars) + { + nRead = nMaxChars - 1; + } + pString[nRead] = '\0'; +} + + +//----------------------------------------------------------------------------- +// Checks if a get is ok +//----------------------------------------------------------------------------- +bool CUtlBuffer::CheckGet(size_t nSize) +{ + if (m_Error & GET_OVERFLOW) + return false; + + if (TellMaxPut() < m_Get + nSize) + { + m_Error |= GET_OVERFLOW; + return false; + } + + if ((m_Get < m_nOffset) || (m_Memory.AllocationNum() < m_Get - m_nOffset + nSize)) + { + if (!OnGetOverflow(nSize)) + { + m_Error |= GET_OVERFLOW; + return false; + } + } + + return true; +} + + +//----------------------------------------------------------------------------- +// Checks if a peek get is ok +//----------------------------------------------------------------------------- +bool CUtlBuffer::CheckPeekGet(size_t nOffset, size_t nSize) +{ + if (m_Error & GET_OVERFLOW) + return false; + + // Checking for peek can't set the overflow flag + bool bOk = CheckGet(nOffset + nSize); + m_Error &= ~GET_OVERFLOW; + return bOk; +} + + +//----------------------------------------------------------------------------- +// Call this to peek arbitrarily long into memory. It doesn't fail unless +// it can't read *anything* new +//----------------------------------------------------------------------------- +bool CUtlBuffer::CheckArbitraryPeekGet(size_t nOffset, size_t& nIncrement) +{ + if (TellGet() + nOffset >= TellMaxPut()) + { + nIncrement = 0; + return false; + } + + if (TellGet() + nOffset + nIncrement > TellMaxPut()) + { + nIncrement = TellMaxPut() - TellGet() - nOffset; + } + + // NOTE: CheckPeekGet could modify TellMaxPut for streaming files + // We have to call TellMaxPut again here + CheckPeekGet(nOffset, nIncrement); + size_t nMaxGet = TellMaxPut() - TellGet(); + if (nMaxGet < nIncrement) + { + nIncrement = nMaxGet; + } + return (nIncrement != 0); +} + + +//----------------------------------------------------------------------------- +// Peek part of the butt +//----------------------------------------------------------------------------- +const void* CUtlBuffer::PeekGet(size_t nMaxSize, size_t nOffset) +{ + if (!CheckPeekGet(nOffset, nMaxSize)) + return NULL; + return &m_Memory[m_Get + nOffset - m_nOffset]; +} + + +//----------------------------------------------------------------------------- +// Change where I'm reading +//----------------------------------------------------------------------------- +void CUtlBuffer::SeekGet(SeekType_t type, size_t offset) +{ + switch (type) + { + case SEEK_HEAD: + m_Get = offset; + break; + + case SEEK_CURRENT: + m_Get += offset; + break; + + case SEEK_TAIL: + m_Get = m_nMaxPut - offset; + break; + } + + if (m_Get > m_nMaxPut) + { + m_Error |= GET_OVERFLOW; + } + else + { + m_Error &= ~GET_OVERFLOW; + if (m_Get < m_nOffset || m_Get >= m_nOffset + Size()) + { + OnGetOverflow(-1); + } + } +} + + +//----------------------------------------------------------------------------- +// Parse... +//----------------------------------------------------------------------------- + +#pragma warning ( disable : 4706 ) + +size_t CUtlBuffer::VaScanf(const char* pFmt, va_list list) +{ + if (m_Error || !IsText()) + return 0; + + size_t numScanned = 0; + char c; + while ((c = *pFmt++)) + { + // Stop if we hit the end of the buffer + if (m_Get >= TellMaxPut()) + { + m_Error |= GET_OVERFLOW; + break; + } + + switch (c) + { + case ' ': + // eat all whitespace + EatWhiteSpace(); + break; + + case '%': + { + // Conversion character... try to convert baby! + char type = *pFmt++; + if (type == 0) + return numScanned; + + switch (type) + { + case 'c': + { + char* ch = va_arg(list, char*); + if (CheckPeekGet(0, sizeof(char))) + { + *ch = *(const char*)PeekGet(); + ++m_Get; + } + else + { + *ch = 0; + return numScanned; + } + } + break; + + case 'h': + { + if (*pFmt == 'd' || *pFmt == 'i') + { + if (!GetTypeText(*va_arg(list, int16_t*))) + return numScanned; // only support short ints, don't bother with hex + } + else if (*pFmt == 'u') + { + if (!GetTypeText(*va_arg(list, uint16_t*))) + return numScanned; + } + else + return numScanned; + ++pFmt; + } + break; + + case 'I': + { + if (*pFmt++ != '6' || *pFmt++ != '4') + return numScanned; // only support "I64d" and "I64u" + + if (*pFmt == 'd') + { + if (!GetTypeText(*va_arg(list, int64_t*))) + return numScanned; + } + else if (*pFmt == 'u') + { + if (!GetTypeText(*va_arg(list, uint64_t*))) + return numScanned; + } + else + { + return numScanned; + } + + ++pFmt; + } + break; + + case 'i': + case 'd': + { + int32_t* pArg = va_arg(list, int32_t*); + if (!GetTypeText(*pArg)) + return numScanned; + } + break; + + case 'x': + { + uint32_t* pArg = va_arg(list, uint32_t*); + if (!GetTypeText(*pArg, 16)) + return numScanned; + } + break; + + case 'u': + { + uint32_t* pArg = va_arg(list, uint32_t*); + if (!GetTypeText(*pArg)) + return numScanned; + } + break; + + case 'l': + { + // we currently support %lf and %lld + if (*pFmt == 'f') + { + if (!GetTypeText(*va_arg(list, double*))) + return numScanned; + } + else if (*pFmt == 'l' && *++pFmt == 'd') + { + if (!GetTypeText(*va_arg(list, int64_t*))) + return numScanned; + } + else + return numScanned; + } + break; + + case 'f': + { + float* pArg = va_arg(list, float*); + if (!GetTypeText(*pArg)) + return numScanned; + } + break; + + case 's': + { + char* s = va_arg(list, char*); + GetString(s, 64); // [SECURITY EXPLOIT: Scanf %s should be deprecated as malicious data can overrun stack buffers! Here we'd assume that at least 64 bytes are available on the stack, and even if not this shouldn't give attracker much room for code execution] + } + break; + + default: + { + // unimplemented scanf type + return numScanned; + } + break; + } + + ++numScanned; + } + break; + + default: + { + // Here we have to match the format string character + // against what's in the buffer or we're done. + if (!CheckPeekGet(0, sizeof(char))) + return numScanned; + + if (c != *(const char*)PeekGet()) + return numScanned; + + ++m_Get; + } + } + } + return numScanned; +} + +#pragma warning ( default : 4706 ) + +size_t CUtlBuffer::Scanf(const char* pFmt, ...) +{ + va_list args; + + va_start(args, pFmt); + size_t count = VaScanf(pFmt, args); + va_end(args); + + return count; +} + + +//----------------------------------------------------------------------------- +// Advance the get index until after the particular string is found +// Do not eat whitespace before starting. Return false if it failed +//----------------------------------------------------------------------------- +bool CUtlBuffer::GetToken(const char* pToken) +{ + + // Look for the token + size_t nLen = strlen(pToken); + + // First time through on streaming, check what we already have loaded + // if we have enough loaded to do the check + size_t nMaxSize = Size() - (TellGet() - m_nOffset); + if (nMaxSize <= nLen) + { + nMaxSize = Size(); + } + size_t nSizeRemaining = TellMaxPut() - TellGet(); + + size_t nGet = TellGet(); + while (nSizeRemaining >= nLen) + { + bool bOverFlow = (nSizeRemaining > nMaxSize); + size_t nSizeToCheck = bOverFlow ? nMaxSize : nSizeRemaining; + if (!CheckPeekGet(0, nSizeToCheck)) + break; + + const char* pBufStart = (const char*)PeekGet(); + const char* pFoundEnd = V_strnistr(pBufStart, pToken, nSizeToCheck); + + // Time to be careful: if we are in a state of overflow + // (namely, there's more of the buffer beyond the current window) + // we could be looking for 'foo' for example, and find 'foobar' + // if 'foo' happens to be the last 3 characters of the current window + size_t nOffset = (size_t)pFoundEnd - (size_t)pBufStart; + bool bPotentialMismatch = (bOverFlow && ((size_t)nOffset == Size() - nLen)); + if (!pFoundEnd || bPotentialMismatch) + { + nSizeRemaining -= nSizeToCheck; + if (!pFoundEnd && (nSizeRemaining < nLen)) + break; + + // Second time through, stream as much in as possible + // But keep the last portion of the current buffer + // since we couldn't check it against stuff outside the window + nSizeRemaining += nLen; + nMaxSize = Size(); + SeekGet(CUtlBuffer::SEEK_CURRENT, nSizeToCheck - nLen); + continue; + } + + // Seek past the end of the found string + SeekGet(CUtlBuffer::SEEK_CURRENT, (size_t)(nOffset + nLen)); + return true; + } + + // Didn't find a match, leave the get index where it was to start with + SeekGet(CUtlBuffer::SEEK_HEAD, nGet); + return false; +} + + +//----------------------------------------------------------------------------- +// (For text buffers only) +// Parse a token from the buffer: +// Grab all text that lies between a starting delimiter + ending delimiter +// (skipping whitespace that leads + trails both delimiters). +// Note the delimiter checks are case-insensitive. +// If successful, the get index is advanced and the function returns true, +// otherwise the index is not advanced and the function returns false. +//----------------------------------------------------------------------------- +bool CUtlBuffer::ParseToken(const char* pStartingDelim, const char* pEndingDelim, char* pString, size_t nMaxLen) +{ + size_t nCharsToCopy = 0; + size_t nCurrentGet = 0; + + size_t nEndingDelimLen; + + // Starting delimiter is optional + char emptyBuf = '\0'; + if (!pStartingDelim) + { + pStartingDelim = &emptyBuf; + } + + // Ending delimiter is not + nEndingDelimLen = strlen(pEndingDelim); + + size_t nStartGet = TellGet(); + size_t nTokenStart = -1; + char nCurrChar; + EatWhiteSpace(); + while (*pStartingDelim) + { + nCurrChar = *pStartingDelim++; + if (!isspace((unsigned char)nCurrChar)) + { + if (tolower(GetChar()) != tolower(nCurrChar)) + goto parseFailed; + } + else + { + EatWhiteSpace(); + } + } + + EatWhiteSpace(); + nTokenStart = TellGet(); + if (!GetToken(pEndingDelim)) + goto parseFailed; + + nCurrentGet = TellGet(); + nCharsToCopy = ((nCurrentGet - nEndingDelimLen) - nTokenStart); + if (nCharsToCopy >= nMaxLen) + { + nCharsToCopy = nMaxLen - 1; + } + + if (nCharsToCopy > 0) + { + SeekGet(CUtlBuffer::SEEK_HEAD, nTokenStart); + Get(pString, nCharsToCopy); + if (!IsValid()) + goto parseFailed; + + // Eat trailing whitespace + for (; nCharsToCopy > 0; --nCharsToCopy) + { + if (!isspace((unsigned char)pString[nCharsToCopy - 1])) + break; + } + } + pString[nCharsToCopy] = '\0'; + + // Advance the Get index + SeekGet(CUtlBuffer::SEEK_HEAD, nCurrentGet); + return true; + +parseFailed: + // Revert the get index + SeekGet(SEEK_HEAD, nStartGet); + pString[0] = '\0'; + return false; +} + + +//----------------------------------------------------------------------------- +// Parses the next token, given a set of character breaks to stop at +//----------------------------------------------------------------------------- +size_t CUtlBuffer::ParseToken(characterset_t* pBreaks, char* pTokenBuf, size_t nMaxLen, bool bParseComments) +{ + pTokenBuf[0] = 0; + + // skip whitespace + comments + while (true) + { + if (!IsValid()) + return -1; + EatWhiteSpace(); + if (bParseComments) + { + if (!EatCPPComment()) + break; + } + else + { + break; + } + } + + char c = GetChar(); + + // End of buffer + if (c == 0) + return -1; + + // handle quoted strings specially + if (c == '\"') + { + size_t nLen = 0; + while (IsValid()) + { + c = GetChar(); + if (c == '\"' || !c) + { + pTokenBuf[nLen] = 0; + return nLen; + } + pTokenBuf[nLen] = c; + if (++nLen == nMaxLen) + { + pTokenBuf[nLen - 1] = 0; + return nMaxLen; + } + } + + // In this case, we hit the end of the buffer before hitting the end quote + pTokenBuf[nLen] = 0; + return nLen; + } + + + // parse a regular word + size_t nLen = 0; + while (true) + { + pTokenBuf[nLen] = c; + if (++nLen == nMaxLen) + { + pTokenBuf[nLen - 1] = 0; + return nMaxLen; + } + c = GetChar(); + if (!IsValid()) + break; + + + } + + pTokenBuf[nLen] = 0; + return nLen; +} + + + +//----------------------------------------------------------------------------- +// Serialization +//----------------------------------------------------------------------------- +void CUtlBuffer::Put(const void* pMem, size_t size) +{ + if (size && CheckPut(size)) + { + memcpy(&m_Memory[m_Put - m_nOffset], pMem, size); + m_Put += size; + + AddNullTermination(m_Put); + } +} + +//----------------------------------------------------------------------------- +// Writes a null-terminated string +//----------------------------------------------------------------------------- +void CUtlBuffer::PutString(const char* pString) +{ + L_PRINT(LOG_INFO) << "start"; + if (!(m_Flags & TEXT_BUFFER)) + { + L_PRINT(LOG_INFO) << "no text 2"; + + if (pString != nullptr) + { + L_PRINT(LOG_INFO) << "no text 3"; + + // Not text? append a null at the end. + size_t nLen = strlen(pString) + 1; + L_PRINT(LOG_INFO) << "no text 4"; + + Put(pString, nLen * sizeof(char)); + L_PRINT(LOG_INFO) << "no text 5"; + + return; + } + else + { + L_PRINT(LOG_INFO) << "no text Jumped to Puttypebin"; + + PutTypeBin(0); + } + } + else if (pString != nullptr) + { + L_PRINT(LOG_INFO) << "1"; + + size_t nTabCount = (m_Flags & AUTO_TABS_DISABLED) ? 0 : m_nTab; + + if (nTabCount > 0) + { + L_PRINT(LOG_INFO) << "2"; + + if (WasLastCharacterCR()) + { + L_PRINT(LOG_INFO) << "3"; + + PutTabs(); + L_PRINT(LOG_INFO) << "4"; + + } + L_PRINT(LOG_INFO) << "5"; + + const char* pEndl = strchr(pString, '\n'); + L_PRINT(LOG_INFO) << "6"; + + while (pEndl) + { + L_PRINT(LOG_INFO) << "7"; + + size_t nSize = (size_t)pEndl - (size_t)pString + sizeof(char); + L_PRINT(LOG_INFO) << "8"; + + Put(pString, nSize); + L_PRINT(LOG_INFO) << "9"; + + pString = pEndl + 1; + if (*pString) + { + L_PRINT(LOG_INFO) << "10"; + + PutTabs(); + L_PRINT(LOG_INFO) << "11"; + + pEndl = strchr(pString, '\n'); + L_PRINT(LOG_INFO) << "12"; + + } + else + { + pEndl = NULL; + } + } + } + size_t nLen = strlen(pString); + if (nLen) + { + L_PRINT(LOG_INFO) << "Mem 1"; + Put(pString, nLen * sizeof(char)); + L_PRINT(LOG_INFO) << "FINISHED"; + } + } +} + + +//----------------------------------------------------------------------------- +// This version of PutString converts \ to \\ and " to \", etc. +// It also places " at the beginning and end of the string +//----------------------------------------------------------------------------- +inline void CUtlBuffer::PutDelimitedCharInternal(CUtlCharConversion* pConv, char c) +{ + size_t l = pConv->GetConversionLength(c); + if (l == 0) + { + PutChar(c); + } + else + { + PutChar(pConv->GetEscapeChar()); + Put(pConv->GetConversionString(c), l); + } +} + +void CUtlBuffer::PutDelimitedChar(CUtlCharConversion* pConv, char c) +{ + if (!IsText() || !pConv) + { + PutChar(c); + return; + } + + PutDelimitedCharInternal(pConv, c); +} + +void CUtlBuffer::PutDelimitedString(CUtlCharConversion* pConv, const char* pString) +{ + if (!IsText() || !pConv) + { + PutString(pString); + return; + } + + if (WasLastCharacterCR()) + { + PutTabs(); + } + Put(pConv->GetDelimiter(), pConv->GetDelimiterLength()); + + size_t nLen = pString ? strlen(pString) : 0; + for (size_t i = 0; i < nLen; ++i) + { + PutDelimitedCharInternal(pConv, pString[i]); + } + + if (WasLastCharacterCR()) + { + PutTabs(); + } + Put(pConv->GetDelimiter(), pConv->GetDelimiterLength()); +} + + +void CUtlBuffer::VaPrintf(const char* pFmt, va_list list) +{ + char temp[8192]; + //size_t nLen = V_vsnprintf(temp, sizeof(temp), pFmt, list); + //ErrorIfNot(nLen < sizeof(temp), ("CUtlBuffer::VaPrintf: String overflowed buffer [%d]\n", sizeof(temp))); + PutString(temp); +} + +void CUtlBuffer::Printf(const char* pFmt, ...) +{ + va_list args; + + va_start(args, pFmt); + VaPrintf(pFmt, args); + va_end(args); +} + + +//----------------------------------------------------------------------------- +// Calls the overflow functions +//----------------------------------------------------------------------------- +void CUtlBuffer::SetOverflowFuncs(UtlBufferOverflowFunc_t getFunc, UtlBufferOverflowFunc_t putFunc) +{ + m_GetOverflowFunc = getFunc; + m_PutOverflowFunc = putFunc; +} + + +//----------------------------------------------------------------------------- +// Calls the overflow functions +//----------------------------------------------------------------------------- +bool CUtlBuffer::OnPutOverflow(size_t nSize) +{ + return (this->*m_PutOverflowFunc)(nSize); +} + +bool CUtlBuffer::OnGetOverflow(size_t nSize) +{ + return (this->*m_GetOverflowFunc)(nSize); +} + + +//----------------------------------------------------------------------------- +// Checks if a put is ok +//----------------------------------------------------------------------------- +bool CUtlBuffer::PutOverflow(size_t nSize) +{ + //MEM_ALLOC_CREDIT(); + + if (m_Memory.IsExternallyAllocated()) + { + if (!IsGrowable()) + return false; + + m_Memory.ConvertToGrowableMemory(0); + } + + while (Size() < m_Put - m_nOffset + nSize) + { + m_Memory.Grow(); + } + + return true; +} + +bool CUtlBuffer::GetOverflow(size_t nSize) +{ + return false; +} + +//----------------------------------------------------------------------------- +bool CUtlBuffer::CheckPut(size_t nSize) +{ + if ((m_Error & PUT_OVERFLOW) || IsReadOnly()) + return false; + + if ((m_Put < m_nOffset) || (m_Memory.AllocationNum() < m_Put - m_nOffset + nSize)) + { + if (!OnPutOverflow(nSize)) + { + m_Error |= PUT_OVERFLOW; + return false; + } + } + return true; +} +void CUtlBuffer::SeekPut(SeekType_t type, size_t offset) +{ + size_t nNextPut = m_Put; + switch (type) + { + case SEEK_HEAD: + nNextPut = offset; + break; + + case SEEK_CURRENT: + nNextPut += offset; + break; + + case SEEK_TAIL: + nNextPut = m_nMaxPut - offset; + break; + } + + // Force a write of the data + // FIXME: We could make this more optimal potentially by writing out + // the entire buffer if you seek outside the current range + + // NOTE: This call will write and will also seek the file to nNextPut. + OnPutOverflow(-nNextPut - 1); + m_Put = nNextPut; + + AddNullTermination(m_Put); +} + + +void CUtlBuffer::ActivateByteSwapping(bool bActivate) +{ + m_Byteswap.ActivateByteSwapping(bActivate); +} + +void CUtlBuffer::SetBigEndian(bool bigEndian) +{ + m_Byteswap.SetTargetBigEndian(bigEndian); +} + +bool CUtlBuffer::IsBigEndian(void) +{ + return m_Byteswap.IsTargetBigEndian(); +} + + +//----------------------------------------------------------------------------- +// null terminate the buffer +// NOTE: Pass in nPut here even though it is just a copy of m_Put. This is almost always called immediately +// after modifying m_Put and this lets it stay in a register and avoid LHS on PPC. +//----------------------------------------------------------------------------- +void CUtlBuffer::AddNullTermination(size_t nPut) +{ + if (nPut > m_nMaxPut) + { + if (!IsReadOnly() && ((m_Error & PUT_OVERFLOW) == 0)) + { + // Add null termination value + if (CheckPut(1)) + { + m_Memory[nPut - m_nOffset] = 0; + } + else + { + // Restore the overflow state, it was valid before... + m_Error &= ~PUT_OVERFLOW; + } + } + m_nMaxPut = nPut; + } +} + +//----------------------------------------------------------------------------- +// Converts a buffer from a CRLF buffer to a CR buffer (and back) +// Returns false if no conversion was necessary (and outBuf is left untouched) +// If the conversion occurs, outBuf will be cleared. +//----------------------------------------------------------------------------- +bool CUtlBuffer::ConvertCRLF(CUtlBuffer& outBuf) +{ + if (!IsText() || !outBuf.IsText()) + return false; + + if (ContainsCRLF() == outBuf.ContainsCRLF()) + return false; + + size_t nInCount = TellMaxPut(); + + outBuf.Purge(); + outBuf.EnsureCapacity(nInCount); + + bool bFromCRLF = ContainsCRLF(); + + // Start reading from the beginning + size_t nGet = TellGet(); + size_t nPut = TellPut(); + size_t nGetDelta = 0; + size_t nPutDelta = 0; + + const char* pBase = (const char*)Base(); + intptr_t nCurrGet = 0; + while (nCurrGet < nInCount) + { + const char* pCurr = &pBase[nCurrGet]; + if (bFromCRLF) + { + const char* pNext = V_strnistr(pCurr, "\r\n", (size_t)nInCount - (size_t)nCurrGet); + if (!pNext) + { + outBuf.Put(pCurr, nInCount - nCurrGet); + break; + } + + intptr_t nBytes = (intptr_t)pNext - (intptr_t)pCurr; + outBuf.Put(pCurr, nBytes); + outBuf.PutChar('\n'); + nCurrGet += nBytes + 2; + if (nGet >= nCurrGet - 1) + { + --nGetDelta; + } + if (nPut >= nCurrGet - 1) + { + --nPutDelta; + } + } + else + { + const char* pNext = V_strnchr(pCurr, '\n', (size_t)nInCount - (size_t)nCurrGet); + if (!pNext) + { + outBuf.Put(pCurr, (size_t)nInCount - (size_t)nCurrGet); + break; + } + + intptr_t nBytes = (intptr_t)pNext - (intptr_t)pCurr; + outBuf.Put(pCurr, (size_t)nBytes); + outBuf.PutChar('\r'); + outBuf.PutChar('\n'); + nCurrGet += nBytes + 1; + if (nGet >= nCurrGet) + { + ++nGetDelta; + } + if (nPut >= nCurrGet) + { + ++nPutDelta; + } + } + } + + + outBuf.SeekGet(SEEK_HEAD, nGet + nGetDelta); + outBuf.SeekPut(SEEK_HEAD, nPut + nPutDelta); + + return true; +} + +//----------------------------------------------------------------------------- +// Fast swap +//----------------------------------------------------------------------------- +void CUtlBuffer::Swap(CUtlBuffer& buf) +{ + V_swap(m_Get, buf.m_Get); + V_swap(m_Put, buf.m_Put); + V_swap(m_nMaxPut, buf.m_nMaxPut); + V_swap(m_Error, buf.m_Error); + m_Memory.Swap(buf.m_Memory); +} + + +//----------------------------------------------------------------------------- +// Fast swap w/ a CUtlMemory. +//----------------------------------------------------------------------------- +void CUtlBuffer::Swap(CUtlMemory& mem) +{ + m_Get = 0; + m_Put = mem.AllocationCount(); + m_nMaxPut = mem.AllocationCount(); + m_Error = 0; + m_Memory.Swap(mem); +} + + +//--------------------------------------------------------------------------- +// Implementation of CUtlInplaceBuffer +//--------------------------------------------------------------------------- + + +bool CUtlInplaceBuffer::InplaceGetLinePtr(char** ppszInBufferPtr, size_t* pnLineLength) +{ + + size_t nLineLen = PeekLineLength(); + if (nLineLen <= 1) + { + SeekGet(SEEK_TAIL, 0); + return false; + } + + --nLineLen; // because it accounts for putting a terminating null-character + + char* pszLine = (char*) const_cast(PeekGet()); + SeekGet(SEEK_CURRENT, nLineLen); + + // Set the out args + if (ppszInBufferPtr) + *ppszInBufferPtr = pszLine; + + if (pnLineLength) + *pnLineLength = nLineLen; + + return true; +} + +char* CUtlInplaceBuffer::InplaceGetLinePtr(void) +{ + char* pszLine = NULL; + size_t nLineLen = 0; + + if (InplaceGetLinePtr(&pszLine, &nLineLen)) + { + + switch (pszLine[nLineLen - 1]) + { + case '\n': + case '\r': + pszLine[nLineLen - 1] = 0; + if (--nLineLen) + { + switch (pszLine[nLineLen - 1]) + { + case '\n': + case '\r': + pszLine[nLineLen - 1] = 0; + break; + } + } + break; + + default: + break; + } + } + + return pszLine; +} +/* +inline KeyValues3*(CS_STDCALL* fnSetType)(std::int64_t, std::int64_t) = nullptr; + +KeyValues3::KeyValues3() +{ +} + +KeyValues3::~KeyValues3() +{ +} +inline bool(__fastcall* LoadKV3)(KeyValues3*, void*, const char*, const KV3ID_t*, const char*) = nullptr; + +bool __fastcall KeyValues3::loadkv3(KeyValues3* kv3,const char* buf, KV3ID_t kvid) +{ + const void* hTier0 = MEM::GetModuleBaseHandle(TIER0_DLL); + + LoadKV3 = reinterpret_cast(MEM::GetExportAddress(hTier0, CS_XOR("?LoadKV3@@YA_NPEAVKeyValues3@@PEAVCUtlString@@PEBDAEBUKV3ID_t@@2@Z"))); + CS_ASSERT(LoadKV3 != nullptr); + CS_ASSERT(kv3 != nullptr); + CS_ASSERT(kv3->pValue != nullptr); + + return LoadKV3(kv3, nullptr, buf, &kvid, nullptr); +} +KeyValues3* KeyValues3::set_type(kv_basic_type a1, kv_basic_type a2) +{ + fnSetType = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 8B C4 55 48 8D A8 08 FD"))); + CS_ASSERT(fnSetType != nullptr); + return fnSetType(a1, a2); +} +inline bool(__fastcall* fnLoadfromBuffer)(KeyValues3*, const char*, CUtlBuffer*, void*, const char*, bool(_stdcall*)(const char*, void*), void*, void*, const char*, bool) = nullptr; +inline bool(__fastcall* fnLoadfromBufferchar)(KeyValues3*, const char*, const char*, void*, const char*, bool(_stdcall*)(const char*, void*), void*, void*, const char*, bool) = nullptr; + +bool KeyValues3::load_from_buffer_char(const char* buf) +{ + const void* hTier0 = MEM::GetModuleBaseHandle(TIER0_DLL); + + fnLoadfromBufferchar = reinterpret_cast(MEM::GetExportAddress(hTier0, CS_XOR("?LoadFromBuffer@KeyValues@@QEAA_NPEBD0PEAVIFileSystem@@0P6A_N0PEA"))); + CS_ASSERT(fnLoadfromBufferchar != nullptr); + + return fnLoadfromBufferchar(this, 0, buf, 0, 0, 0, 0, 0, 0, 0); +} +bool KeyValues3::load_from_buffer(CUtlBuffer* buf) +{ + const void* hTier0 = MEM::GetModuleBaseHandle(TIER0_DLL); + + fnLoadfromBuffer = reinterpret_cast(MEM::GetExportAddress(hTier0, CS_XOR("?LoadFromBuffer@KeyValues@@QEAA_NPEBDAEAVCUtlBuffer@@PEAVIFileSystem@@0P6A_N0PEAX@ZPEAVIKeyValuesErrorSpew@@30@Z"))); + CS_ASSERT(fnLoadfromBuffer != nullptr); + + return fnLoadfromBuffer(this, 0, buf, 0, 0, 0, 0, 0, 0, 0); +} + +bool KeyValues3::load_kv3(CUtlBuffer* buf, const char* material, KV3ID_t kvid) +{ + const void* hTier0 = MEM::GetModuleBaseHandle(TIER0_DLL); + + LoadKv3 = reinterpret_cast(MEM::GetExportAddress(hTier0, CS_XOR("?LoadKV3@@YA_NPEAVKeyValues3@@PEAVCUtlString@@PEAVCUtlBuffer@@AEBUKV3ID_t@@PEBD@Z"))); + CS_ASSERT(LoadKv3 != nullptr); + + return LoadKv3(this, material, buf, &kvid, nullptr); +}*/ +inline static constexpr int k_unk_key_hash = 0x31415926; +inline static constexpr std::uint64_t k_kv_id_unk_hash1 = 0x41B818518343427E; +inline static constexpr std::uint64_t k_kv_id_unk_hash2 = 0xB5F447C23C0CDF8C; +inline bool(_fastcall* LoadKv3)(c_key_values*, void*, c_ult_buffer*, kv3_id_t*, void*, void*, void*, void*, const char*) = nullptr; +inline void(__fastcall* utlbuf)(c_ult_buffer*, int, int, int) = nullptr; +inline void(__fastcall* putstring)(c_ult_buffer*, const char*) = nullptr; +inline c_key_values*(__fastcall* settype)(c_key_values*, std::uint8_t, std::uint8_t) = nullptr; + +c_ult_buffer::c_ult_buffer(int a1, int size, int a3) { + + + utlbuf = reinterpret_cast(MEM::FindPattern(TIER0_DLL, CS_XOR("48 89 5C 24 ?? 48 89 6C 24 ?? 48 89 74 24 ?? 48 89 7C 24 ?? 41 56 48 83 EC 20 33 DB 44 89 41 08"))); + CS_ASSERT(utlbuf != nullptr); + utlbuf(this, a1, size, a3); +} + +void c_ult_buffer::put_string(std::string_view string) { + putstring = reinterpret_cast(MEM::ResolveRelativeAddress(MEM::FindPattern(TIER0_DLL, CS_XOR("E8 ?? ?? ?? ?? EB 57")), 1, 0)); + CS_ASSERT(putstring != nullptr); + putstring(this, string.data()); +} + +c_key_values* create_material_resource() { + c_key_values* kv = new c_key_values[2 * sizeof(std::uintptr_t)]; + + settype = reinterpret_cast(MEM::ResolveRelativeAddress(MEM::FindPattern(CLIENT_DLL, CS_XOR("E8 ?? ?? ?? ?? 66 85 DB")), 0x1, 0x0)); + CS_ASSERT(settype != nullptr); + return settype(kv, 1, 6); +} +c_key_values* c_key_values::set_type() +{ + settype = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 89 5C 24 08 57 48 83 EC 30 48 0F"))); + CS_ASSERT(settype != nullptr); + return settype(this, 1, 6); +} +bool c_key_values::load_kv3(c_ult_buffer* buffer) { + + LoadKv3 = reinterpret_cast(MEM::ResolveRelativeAddress(MEM::FindPattern(TIER0_DLL, CS_XOR("E8 ?? ?? ?? ?? EB 36 8B 43 10")), 0x1, 0x0)); + CS_ASSERT(LoadKv3 != nullptr); + + kv3_id_t type{ (const char*)"generic", k_kv_id_unk_hash1, k_kv_id_unk_hash2 }; + return LoadKv3(this, nullptr, buffer, &type, nullptr, nullptr, nullptr, nullptr, ""); +} + +void c_key_values::load_from_buffer(std::string_view string) { + c_ult_buffer buffer(0, (int)string.size() + 10, 1); + buffer.put_string(string.data()); + load_kv3(&buffer); +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/buf/utlbuffer.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/buf/utlbuffer.h new file mode 100644 index 0000000..aa060d8 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/buf/utlbuffer.h @@ -0,0 +1,1474 @@ + + +#ifndef UTLBUFFER_H +#define UTLBUFFER_H + +#ifdef _WIN32 +#pragma once +#endif + +//#include "unitlib/unitlib.h" // just here for tests - remove before checking in!!! + +#include "../utlmemory.h" +#include "../byteswap.h" +#include "../K3V.h" +// used: interface declarations +#include "../../interfaces/imemalloc.h" +// used: memorymove +#include "../cstrike/utilities/crt.h" +//----------------------------------------------------------------------------- +// Forward declarations +//----------------------------------------------------------------------------- +struct characterset_t; + + +//----------------------------------------------------------------------------- +// Description of character conversions for string output +// Here's an example of how to use the macros to define a character conversion +// BEGIN_CHAR_CONVERSION( CStringConversion, '\\' ) +// { '\n', "n" }, +// { '\t', "t" } +// END_CHAR_CONVERSION( CStringConversion, '\\' ) +//----------------------------------------------------------------------------- +class CUtlCharConversion +{ +public: + struct ConversionArray_t + { + char m_nActualChar; + char* m_pReplacementString; + }; + + CUtlCharConversion(char nEscapeChar, const char* pDelimiter, size_t nCount, ConversionArray_t* pArray); + char GetEscapeChar() const; + const char* GetDelimiter() const; + size_t GetDelimiterLength() const; + + const char* GetConversionString(char c) const; + size_t GetConversionLength(char c) const; + size_t MaxConversionLength() const; + + // Finds a conversion for the passed-in string, returns length + virtual char FindConversion(const char* pString, size_t* pLength); + +public: + struct ConversionInfo_t + { + size_t m_nLength; + char* m_pReplacementString; + }; + + char m_nEscapeChar; + const char* m_pDelimiter; + size_t m_nDelimiterLength; + size_t m_nCount; + size_t m_nMaxConversionLength; + char m_pList[256]; + ConversionInfo_t m_pReplacements[256]; +}; + +#define BEGIN_CHAR_CONVERSION( _name, _delimiter, _escapeChar ) \ + static CUtlCharConversion::ConversionArray_t s_pConversionArray ## _name[] = { + +#define END_CHAR_CONVERSION( _name, _delimiter, _escapeChar ) \ + }; \ + CUtlCharConversion _name( _escapeChar, _delimiter, sizeof( s_pConversionArray ## _name ) / sizeof( CUtlCharConversion::ConversionArray_t ), s_pConversionArray ## _name ); + +#define BEGIN_CUSTOM_CHAR_CONVERSION( _className, _name, _delimiter, _escapeChar ) \ + static CUtlCharConversion::ConversionArray_t s_pConversionArray ## _name[] = { + +#define END_CUSTOM_CHAR_CONVERSION( _className, _name, _delimiter, _escapeChar ) \ + }; \ + _className _name( _escapeChar, _delimiter, sizeof( s_pConversionArray ## _name ) / sizeof( CUtlCharConversion::ConversionArray_t ), s_pConversionArray ## _name ); + +//----------------------------------------------------------------------------- +// Character conversions for C strings +//----------------------------------------------------------------------------- +CUtlCharConversion* GetCStringCharConversion(); + +//----------------------------------------------------------------------------- +// Character conversions for quoted strings, with no escape sequences +//----------------------------------------------------------------------------- +CUtlCharConversion* GetNoEscCharConversion(); + + +//----------------------------------------------------------------------------- +// Macro to set overflow functions easily +//----------------------------------------------------------------------------- +#define SetUtlBufferOverflowFuncs( _get, _put ) \ + SetOverflowFuncs( static_cast ( _get ), static_cast ( _put ) ) +#pragma once +#include + +enum kv_basic_type : uint8_t +{ + kv_basic_invalid, + kv_basic_null, + kv_basic_bool, + kv_basic_int, + kv_basic_uint, + kv_basic_double, + kv_basic_string, + kv_basic_binary_blob, + kv_basic_array, + kv_basic_table +}; + +enum kv_field_type_t : uint8_t +{ + kv_field_invalid, + kv_field_resource, + kv_field_resource_name, + kv_field_panorama, + kv_field_soundevent, + kv_field_subclass, + kv_field_unspecified, + kv_field_null, + kv_field_binary_blob, + kv_field_array, + kv_field_table, + kv_field_bool8, + kv_field_char8, + kv_field_uchar32, + kv_field_int8, + kv_field_uint8, + kv_field_int16, + kv_field_uint16, + kv_field_int32, + kv_field_uint32, + kv_field_int64, + kv_field_uint64, + kv_field_float32, + kv_field_float64, + kv_field_string, + kv_field_pointer, + kv_field_color32, + kv_field_vector, + kv_field_vector2d, + kv_field_vector4d, + kv_field_rotation_vector, + kv_field_quaternion, + kv_field_qangle, + kv_field_matrix3x4, + kv_field_transform, + kv_field_string_token, + kv_field_ehandle +}; + + +typedef unsigned short ushort; + +template < class A > +static const char* GetFmtStr(int nRadix = 10, bool bPrint = true) { return ""; } + +template <> static const char* GetFmtStr< short >(int nRadix, bool bPrint) { return "%hd"; } +template <> static const char* GetFmtStr< ushort >(int nRadix, bool bPrint) { return "%hu"; } +template <> static const char* GetFmtStr< int >(int nRadix, bool bPrint) { return "%d"; } +template <> static const char* GetFmtStr< UINT >(int nRadix, bool bPrint) { return nRadix == 16 ? "%x" : "%u"; } +template <> static const char* GetFmtStr< int64_t >(int nRadix, bool bPrint) { return "%lld"; } +template <> static const char* GetFmtStr< float >(int nRadix, bool bPrint) { return "%f"; } +template <> static const char* GetFmtStr< double >(int nRadix, bool bPrint) {return bPrint ? "%.15lf" : "%lf"; } // force Printf to print DBL_DIG=15 digits of precision for doubles - defaults to FLT_DIG=6 +//----------------------------------------------------------------------------- +// Command parsing.. +//----------------------------------------------------------------------------- +class CUtlBuffer +{ + + +public: + enum SeekType_t + { + SEEK_HEAD = 0, + SEEK_CURRENT, + SEEK_TAIL + }; + + // flags + enum BufferFlags_t + { + TEXT_BUFFER = 0x1, // Describes how get + put work (as strings, or binary) + EXTERNAL_GROWABLE = 0x2, // This is used w/ external buffers and causes the utlbuf to switch to reallocatable memory if an overflow happens when Putting. + CONTAINS_CRLF = 0x4, // For text buffers only, does this contain \n or \n\r? + READ_ONLY = 0x8, // For external buffers; prevents null termination from happening. + AUTO_TABS_DISABLED = 0x10, // Used to disable/enable push/pop tabs + }; + + // Overflow functions when a get or put overflows + typedef bool (CUtlBuffer::* UtlBufferOverflowFunc_t)(size_t nSize); + + // Constructors for growable + external buffers for serialization/unserialization + CUtlBuffer(size_t growSize = 0, size_t initSize = 0, int nFlags = 0); + CUtlBuffer(const void* pBuffer, size_t size, int nFlags = 0); + // This one isn't actually defined so that we catch constructors that are trying to pass a bool in as the third param. + CUtlBuffer(const void* pBuffer, size_t size, bool crap) = delete; + + // UtlBuffer objects should not be copyable; we do a slow copy if you use this but it asserts. + // (REI: I'd like to delete these but we have some python bindings that currently rely on being able to copy these objects) + CUtlBuffer(const CUtlBuffer&); // = delete; + CUtlBuffer& operator= (const CUtlBuffer&); // = delete; + + // UtlBuffer is non-copyable (same as CUtlMemory), but it is moveable. We would like to declare these with '= default' + // but unfortunately VS2013 isn't fully C++11 compliant, so we have to manually declare these in the boilerplate way. + CUtlBuffer(CUtlBuffer&& moveFrom); // = default; + CUtlBuffer& operator= (CUtlBuffer&& moveFrom); // = default; + + unsigned char GetFlags() const; + + // NOTE: This will assert if you attempt to recast it in a way that + // is not compatible. The only valid conversion is binary-> text w/CRLF + void SetBufferType(bool bIsText, bool bContainsCRLF); + + // Makes sure we've got at least this much memory + void EnsureCapacity(size_t num); + + // Access for direct read into buffer + void* AccessForDirectRead(size_t nBytes); + + // Attaches the buffer to external memory.... + void SetExternalBuffer(void* pMemory, size_t nSize, size_t nInitialPut, int nFlags = 0); + bool IsExternallyAllocated() const; + void AssumeMemory(void* pMemory, size_t nSize, size_t nInitialPut, int nFlags = 0); + void* Detach(); + void* DetachMemory(); + + // copies data from another buffer + void CopyBuffer(const CUtlBuffer& buffer); + void CopyBuffer(const void* pubData, size_t cubData); + + void Swap(CUtlBuffer& buf); + void Swap(CUtlMemory& mem); + + + + + // Controls endian-ness of binary utlbufs - default matches the current platform + void ActivateByteSwapping(bool bActivate); + void SetBigEndian(bool bigEndian); + bool IsBigEndian(void); + + // Resets the buffer; but doesn't free memory + void Clear(); + + // Clears out the buffer; frees memory + void Purge(); + + // Dump the buffer to stdout + void Spew(); + + // Read stuff out. + // Binary mode: it'll just read the bits directly in, and characters will be + // read for strings until a null character is reached. + // Text mode: it'll parse the file, turning text #s into real numbers. + // GetString will read a string until a space is reached + char GetChar(); + unsigned char GetUnsignedChar(); + short GetShort(); + unsigned short GetUnsignedShort(); + int GetInt(); + int64_t GetInt64(); + unsigned int GetIntHex(); + unsigned int GetUnsignedInt(); + uint64_t GetUnsignedInt64(); + float GetFloat(); + double GetDouble(); + void* GetPtr(); + void GetString(char* pString, size_t nMaxChars); + bool Get(void* pMem, size_t size); + void GetLine(char* pLine, size_t nMaxChars); + + // Used for getting objects that have a byteswap datadesc defined + template void GetObjects(T* dest, size_t count = 1); + + // This will get at least 1 byte and up to nSize bytes. + // It will return the number of bytes actually read. + size_t GetUpTo(void* pMem, size_t nSize); + + // This version of GetString converts \" to \\ and " to \, etc. + // It also reads a " at the beginning and end of the string + void GetDelimitedString(CUtlCharConversion* pConv, char* pString, size_t nMaxChars = 0); + char GetDelimitedChar(CUtlCharConversion* pConv); + + // This will return the # of characters of the string about to be read out + // NOTE: The count will *include* the terminating 0!! + // In binary mode, it's the number of characters until the next 0 + // In text mode, it's the number of characters until the next space. + size_t PeekStringLength(); + + // This version of PeekStringLength converts \" to \\ and " to \, etc. + // It also reads a " at the beginning and end of the string + // NOTE: The count will *include* the terminating 0!! + // In binary mode, it's the number of characters until the next 0 + // In text mode, it's the number of characters between "s (checking for \") + // Specifying false for bActualSize will return the pre-translated number of characters + // including the delimiters and the escape characters. So, \n counts as 2 characters when bActualSize == false + // and only 1 character when bActualSize == true + size_t PeekDelimitedStringLength(CUtlCharConversion* pConv, bool bActualSize = true); + + // Just like scanf, but doesn't work in binary mode + size_t Scanf( const char* pFmt, ...); + size_t VaScanf(const char* pFmt, va_list list); + + // Eats white space, advances Get index + void EatWhiteSpace(); + + // Eats C++ style comments + bool EatCPPComment(); + + // (For text buffers only) + // Parse a token from the buffer: + // Grab all text that lies between a starting delimiter + ending delimiter + // (skipping whitespace that leads + trails both delimiters). + // If successful, the get index is advanced and the function returns true, + // otherwise the index is not advanced and the function returns false. + bool ParseToken(const char* pStartingDelim, const char* pEndingDelim, char* pString, size_t nMaxLen); + + // Advance the get index until after the particular string is found + // Do not eat whitespace before starting. Return false if it failed + // String test is case-insensitive. + bool GetToken(const char* pToken); + + // Parses the next token, given a set of character breaks to stop at + // Returns the length of the token parsed in bytes (-1 if none parsed) + size_t ParseToken(characterset_t* pBreaks, char* pTokenBuf, size_t nMaxLen, bool bParseComments = true); + + // Write stuff in + // Binary mode: it'll just write the bits directly in, and strings will be + // written with a null terminating character + // Text mode: it'll convert the numbers to text versions + // PutString will not write a terminating character + void PutChar(char c); + void PutUnsignedChar(unsigned char uc); + void PutShort(short s); + void PutUnsignedShort(unsigned short us); + void PutInt(int i); + void PutInt64(int64_t i); + void PutUnsignedInt(unsigned int u); + void PutUnsignedInt64(uint64_t u); + void PutFloat(float f); + void PutDouble(double d); + void PutPtr(void*); // Writes the pointer, not the pointed to + void PutString(const char* pString); + void Put(const void* pMem, size_t size); + + // Used for putting objects that have a byteswap datadesc defined + template void PutObjects(T* src, size_t count = 1); + + // This version of PutString converts \ to \\ and " to \", etc. + // It also places " at the beginning and end of the string + void PutDelimitedString(CUtlCharConversion* pConv, const char* pString); + void PutDelimitedChar(CUtlCharConversion* pConv, char c); + + // Just like printf, writes a terminating zero in binary mode + void Printf(const char* pFmt, ...) ; + void VaPrintf(const char* pFmt, va_list list); + + // What am I writing (put)/reading (get)? + void* PeekPut(size_t offset = 0); + const void* PeekGet(size_t offset = 0) const; + const void* PeekGet(size_t nMaxSize, size_t nOffset); + + // Where am I writing (put)/reading (get)? + size_t TellPut() const; + size_t TellGet() const; + + // What's the most I've ever written? + size_t TellMaxPut() const; + + // How many bytes remain to be read? + // NOTE: This is not accurate for streaming text files; it overshoots + size_t GetBytesRemaining() const; + + // Change where I'm writing (put)/reading (get) + void SeekPut(SeekType_t type, size_t offset); + void SeekGet(SeekType_t type, size_t offset); + + // Buffer base + const void* Base() const; + void* Base(); + + // memory allocation size, does *not* reflect size written or read, + // use TellPut or TellGet for that + size_t Size() const; + + // Am I a text buffer? + bool IsText() const; + + // Can I grow if I'm externally allocated? + bool IsGrowable() const; + + // Am I valid? (overflow or underflow error), Once invalid it stays invalid + bool IsValid() const; + + // Do I contain carriage return/linefeeds? + bool ContainsCRLF() const; + + // Am I read-only + bool IsReadOnly() const; + + // Converts a buffer from a CRLF buffer to a CR buffer (and back) + // Returns false if no conversion was necessary (and outBuf is left untouched) + // If the conversion occurs, outBuf will be cleared. + bool ConvertCRLF(CUtlBuffer& outBuf); + + // Push/pop pretty-printing tabs + void PushTab(); + void PopTab(); + + // Temporarily disables pretty print + void EnableTabs(bool bEnable); + +#if !defined( _GAMECONSOLE ) + // Swap my internal memory with another buffer, + // and copy all of its other members + void SwapCopy(CUtlBuffer& other); +#endif + +public: + // error flags + enum + { + PUT_OVERFLOW = 0x1, + GET_OVERFLOW = 0x2, + MAX_ERROR_FLAG = GET_OVERFLOW, + }; + + void SetOverflowFuncs(UtlBufferOverflowFunc_t getFunc, UtlBufferOverflowFunc_t putFunc); + + bool OnPutOverflow(size_t nSize); + bool OnGetOverflow(size_t nSize); + +public: + // Checks if a get/put is ok + bool CheckPut(size_t size); + bool CheckGet(size_t size); + + // NOTE: Pass in nPut here even though it is just a copy of m_Put. This is almost always called immediately + // after modifying m_Put and this lets it stay in a register + void AddNullTermination(size_t nPut); + + // Methods to help with pretty-printing + bool WasLastCharacterCR(); + void PutTabs(); + + // Help with delimited stuff + char GetDelimitedCharInternal(CUtlCharConversion* pConv); + void PutDelimitedCharInternal(CUtlCharConversion* pConv, char c); + + // Default overflow funcs + bool PutOverflow(size_t nSize); + bool GetOverflow(size_t nSize); + + // Does the next bytes of the buffer match a pattern? + bool PeekStringMatch(size_t nOffset, const char* pString, size_t nLen); + + // Peek size of line to come, check memory bound + size_t PeekLineLength(); + + // How much whitespace should I skip? + size_t PeekWhiteSpace(size_t nOffset); + + // Checks if a peek get is ok + bool CheckPeekGet(size_t nOffset, size_t nSize); + + // Call this to peek arbitrarily long into memory. It doesn't fail unless + // it can't read *anything* new + bool CheckArbitraryPeekGet(size_t nOffset, size_t& nIncrement); + + template void GetType(T& dest); + template void GetTypeBin(T& dest); + template bool GetTypeText(T& value, int nRadix = 10); + template void GetObject(T* src); + + template void PutType(T src); + template void PutTypeBin(T src); + template void PutObject(T* src); + + // be sure to also update the copy constructor + // and SwapCopy() when adding members. + CUtlMemory m_Memory; + size_t m_Get; + size_t m_Put; + + unsigned char m_Error; + unsigned char m_Flags; + unsigned char m_Reserved; + + int m_nTab; + size_t m_nMaxPut; + size_t m_nOffset; + + UtlBufferOverflowFunc_t m_GetOverflowFunc; + UtlBufferOverflowFunc_t m_PutOverflowFunc; + + CByteSwap m_Byteswap; + + void* m_pUnk; // Possibly padding? + const char* m_pName; + size_t m_Count; // Unknown count. +}; + +// Stream style output operators for CUtlBuffer +inline CUtlBuffer& operator<<(CUtlBuffer& b, char v) +{ + b.PutChar(v); + return b; +} + +inline CUtlBuffer& operator<<(CUtlBuffer& b, unsigned char v) +{ + b.PutUnsignedChar(v); + return b; +} + +inline CUtlBuffer& operator<<(CUtlBuffer& b, short v) +{ + b.PutShort(v); + return b; +} + +inline CUtlBuffer& operator<<(CUtlBuffer& b, unsigned short v) +{ + b.PutUnsignedShort(v); + return b; +} + +inline CUtlBuffer& operator<<(CUtlBuffer& b, int v) +{ + b.PutInt(v); + return b; +} + +inline CUtlBuffer& operator<<(CUtlBuffer& b, unsigned int v) +{ + b.PutUnsignedInt(v); + return b; +} + +inline CUtlBuffer& operator<<(CUtlBuffer& b, float v) +{ + b.PutFloat(v); + return b; +} + +inline CUtlBuffer& operator<<(CUtlBuffer& b, double v) +{ + b.PutDouble(v); + return b; +} + +inline CUtlBuffer& operator<<(CUtlBuffer& b, const char* pv) +{ + b.PutString(pv); + return b; +} + +inline CUtlBuffer& operator<<(CUtlBuffer& b, const Vector_t& v) +{ + b << v.x << " " << v.y << " " << v.z; + return b; +} + +inline CUtlBuffer& operator<<(CUtlBuffer& b, const Vector2D_t& v) +{ + b << v.x << " " << v.y; + return b; +} + + +class CUtlInplaceBuffer : public CUtlBuffer +{ +public: + CUtlInplaceBuffer(size_t growSize = 0, size_t initSize = 0, int nFlags = 0); + + // + // Routines returning buffer-inplace-pointers + // +public: + // + // Upon success, determines the line length, fills out the pointer to the + // beginning of the line and the line length, advances the "get" pointer + // offset by the line length and returns "true". + // + // If end of file is reached or upon error returns "false". + // + // Note: the returned length of the line is at least one character because the + // trailing newline characters are also included as part of the line. + // + // Note: the pointer returned points into the local memory of this buffer, in + // case the buffer gets relocated or destroyed the pointer becomes invalid. + // + // e.g.: ------------- + // + // char *pszLine; + // int nLineLen; + // while ( pUtlInplaceBuffer->InplaceGetLinePtr( &pszLine, &nLineLen ) ) + // { + // ... + // } + // + // ------------- + // + // @param ppszInBufferPtr on return points into this buffer at start of line + // @param pnLineLength on return holds num bytes accessible via (*ppszInBufferPtr) + // + // @returns true if line was successfully read + // false when EOF is reached or error occurs + // + bool InplaceGetLinePtr( /* out */ char** ppszInBufferPtr, /* out */ size_t* pnLineLength); + + // + // Determines the line length, advances the "get" pointer offset by the line length, + // replaces the newline character with null-terminator and returns the initial pointer + // to now null-terminated line. + // + // If end of file is reached or upon error returns NULL. + // + // Note: the pointer returned points into the local memory of this buffer, in + // case the buffer gets relocated or destroyed the pointer becomes invalid. + // + // e.g.: ------------- + // + // while ( char *pszLine = pUtlInplaceBuffer->InplaceGetLinePtr() ) + // { + // ... + // } + // + // ------------- + // + // @returns ptr-to-zero-terminated-line if line was successfully read and buffer modified + // NULL when EOF is reached or error occurs + // + char* InplaceGetLinePtr(void); +}; + + +//----------------------------------------------------------------------------- +// Where am I reading? +//----------------------------------------------------------------------------- +inline size_t CUtlBuffer::TellGet() const +{ + return m_Get; +} + + +//----------------------------------------------------------------------------- +// How many bytes remain to be read? +//----------------------------------------------------------------------------- +inline size_t CUtlBuffer::GetBytesRemaining() const +{ + return m_nMaxPut - TellGet(); +} + + +//----------------------------------------------------------------------------- +// What am I reading? +//----------------------------------------------------------------------------- +inline const void* CUtlBuffer::PeekGet(size_t offset) const +{ + return &m_Memory[m_Get + offset - m_nOffset]; +} + + +//----------------------------------------------------------------------------- +// Unserialization +//----------------------------------------------------------------------------- + +template +inline void CUtlBuffer::GetObject(T* dest) +{ + if (CheckGet(sizeof(T))) + { + if (!m_Byteswap.IsSwappingBytes() || (sizeof(T) == 1)) + { + *dest = *(T*)PeekGet(); + } + else + { + m_Byteswap.SwapFieldsToTargetEndian(dest, (T*)PeekGet()); + } + m_Get += sizeof(T); + } + else + { + Q_memset(&dest, 0, sizeof(T)); + } +} + + +template +inline void CUtlBuffer::GetObjects(T* dest, size_t count) +{ + for (size_t i = 0; i < count; ++i, ++dest) + { + GetObject(dest); + } +} + + +template +inline void CUtlBuffer::GetTypeBin(T& dest) +{ + if (CheckGet(sizeof(T))) + { + if (!m_Byteswap.IsSwappingBytes() || (sizeof(T) == 1)) + { + dest = *(T*)PeekGet(); + } + else + { + m_Byteswap.SwapBufferToTargetEndian(&dest, (T*)PeekGet()); + } + m_Get += sizeof(T); + } + else + { + dest = 0; + } +} + +template <> +inline void CUtlBuffer::GetTypeBin< float >(float& dest) +{ + if (CheckGet(sizeof(float))) + { + uintptr_t pData = (uintptr_t)PeekGet(); + + { + // aligned read + dest = *(float*)pData; + } + if (m_Byteswap.IsSwappingBytes()) + { + m_Byteswap.SwapBufferToTargetEndian< float >(&dest, &dest); + } + m_Get += sizeof(float); + } + else + { + dest = 0; + } +} + +template <> +inline void CUtlBuffer::GetTypeBin< double >(double& dest) +{ + if (CheckGet(sizeof(double))) + { + uintptr_t pData = (uintptr_t)PeekGet(); + + { + // aligned read + dest = *(double*)pData; + } + if (m_Byteswap.IsSwappingBytes()) + { + m_Byteswap.SwapBufferToTargetEndian< double >(&dest, &dest); + } + m_Get += sizeof(double); + } + else + { + dest = 0; + } +} + +template < class T > +inline T StringToNumber(char* pString, char** ppEnd, int nRadix) +{ + *ppEnd = pString; + return 0; +} + +template <> +inline int8_t StringToNumber(char* pString, char** ppEnd, int nRadix) +{ + return (int8_t)strtol(pString, ppEnd, nRadix); +} + +template <> +inline uint8_t StringToNumber(char* pString, char** ppEnd, int nRadix) +{ + return (uint8_t)strtoul(pString, ppEnd, nRadix); +} + +template <> +inline int16_t StringToNumber(char* pString, char** ppEnd, int nRadix) +{ + return (int16_t)strtol(pString, ppEnd, nRadix); +} + +template <> +inline uint16_t StringToNumber(char* pString, char** ppEnd, int nRadix) +{ + return (uint16_t)strtoul(pString, ppEnd, nRadix); +} + +template <> +inline int32_t StringToNumber(char* pString, char** ppEnd, int nRadix) +{ + return (int32_t)strtol(pString, ppEnd, nRadix); +} + +template <> +inline uint32_t StringToNumber(char* pString, char** ppEnd, int nRadix) +{ + return (uint32_t)strtoul(pString, ppEnd, nRadix); +} + +template <> +inline int64_t StringToNumber(char* pString, char** ppEnd, int nRadix) +{ + + return (int64_t)_strtoi64(pString, ppEnd, nRadix); +} + +template <> +inline float StringToNumber(char* pString, char** ppEnd, int nRadix) +{ + return (float)strtod(pString, ppEnd); +} + +template <> +inline double StringToNumber(char* pString, char** ppEnd, int nRadix) +{ + return (double)strtod(pString, ppEnd); +} + +template +inline bool CUtlBuffer::GetTypeText(T& value, int nRadix /*= 10*/) +{ + // NOTE: This is not bullet-proof; it assumes numbers are < 128 characters + size_t nLength = 128; + if (!CheckArbitraryPeekGet(0, nLength)) + { + value = 0; + return false; + } + + char* pStart = (char*)PeekGet(); + char* pEnd = pStart; + value = StringToNumber< T >(pStart, &pEnd, nRadix); + + size_t nBytesRead = (size_t)(pEnd - pStart); + if (nBytesRead == 0) + return false; + + m_Get += nBytesRead; + return true; +} + +template +inline void CUtlBuffer::GetType(T& dest) +{ + if (!IsText()) + { + GetTypeBin(dest); + } + else + { + GetTypeText(dest); + } +} + +inline char CUtlBuffer::GetChar() +{ + // LEGACY WARNING: this behaves differently than GetUnsignedChar() + char c; + GetTypeBin(c); // always reads as binary + return c; +} + +inline unsigned char CUtlBuffer::GetUnsignedChar() +{ + // LEGACY WARNING: this behaves differently than GetChar() + unsigned char c; + if (!IsText()) + { + GetTypeBin(c); + } + else + { + c = (unsigned char)GetUnsignedShort(); + } + return c; +} + +inline short CUtlBuffer::GetShort() +{ + short s; + GetType(s); + return s; +} + +inline unsigned short CUtlBuffer::GetUnsignedShort() +{ + unsigned short s; + GetType(s); + return s; +} + +inline int CUtlBuffer::GetInt() +{ + int i; + GetType(i); + return i; +} + +inline int64_t CUtlBuffer::GetInt64() +{ + int64_t i; + GetType(i); + return i; +} + +inline unsigned int CUtlBuffer::GetIntHex() +{ + UINT i; + if (!IsText()) + { + GetTypeBin(i); + } + else + { + GetTypeText(i, 16); + } + return i; +} + +inline unsigned int CUtlBuffer::GetUnsignedInt() +{ + unsigned int i; + GetType(i); + return i; +} + +inline uint64_t CUtlBuffer::GetUnsignedInt64() +{ + uint64_t i; + GetType(i); + return i; +} + + +inline float CUtlBuffer::GetFloat() +{ + float f; + GetType(f); + return f; +} + +inline double CUtlBuffer::GetDouble() +{ + double d; + GetType(d); + return d; +} + +inline void* CUtlBuffer::GetPtr() +{ + void* p; + // LEGACY WARNING: in text mode, PutPtr writes 32 bit pointers in hex, while GetPtr reads 32 or 64 bit pointers in decimal +#if !defined(X64BITS) && !defined(PLATFORM_64BITS) + p = (void*)GetUnsignedInt64(); +#else + p = (void*)GetInt64(); +#endif + return p; +} + +//----------------------------------------------------------------------------- +// Where am I writing? +//----------------------------------------------------------------------------- +inline unsigned char CUtlBuffer::GetFlags() const +{ + return m_Flags; +} + + +//----------------------------------------------------------------------------- +// +//----------------------------------------------------------------------------- +inline bool CUtlBuffer::IsExternallyAllocated() const +{ + return m_Memory.IsExternallyAllocated(); +} + + +//----------------------------------------------------------------------------- +// Where am I writing? +//----------------------------------------------------------------------------- +inline size_t CUtlBuffer::TellPut() const +{ + return m_Put; +} + + +//----------------------------------------------------------------------------- +// What's the most I've ever written? +//----------------------------------------------------------------------------- +inline size_t CUtlBuffer::TellMaxPut() const +{ + return m_nMaxPut; +} + + +//----------------------------------------------------------------------------- +// What am I reading? +//----------------------------------------------------------------------------- +inline void* CUtlBuffer::PeekPut(size_t offset) +{ + return &m_Memory[m_Put + offset - m_nOffset]; +} + + +//----------------------------------------------------------------------------- +// Various put methods +//----------------------------------------------------------------------------- + +template +inline void CUtlBuffer::PutObject(T* src) +{ + if (CheckPut(sizeof(T))) + { + if (!m_Byteswap.IsSwappingBytes() || (sizeof(T) == 1)) + { + *(T*)PeekPut() = *src; + } + else + { + m_Byteswap.SwapFieldsToTargetEndian((T*)PeekPut(), src); + } + m_Put += sizeof(T); + AddNullTermination(m_Put); + } +} + + +template +inline void CUtlBuffer::PutObjects(T* src, size_t count) +{ + for (size_t i = 0; i < count; ++i, ++src) + { + PutObject(src); + } +} + + +template +inline void CUtlBuffer::PutTypeBin(T src) +{ + if (CheckPut(sizeof(T))) + { + if (!m_Byteswap.IsSwappingBytes() || (sizeof(T) == 1)) + { + *(T*)PeekPut() = src; + } + else + { + m_Byteswap.SwapBufferToTargetEndian((T*)PeekPut(), &src); + } + m_Put += sizeof(T); + AddNullTermination(m_Put); + } +} + +#if defined( _GAMECONSOLE ) +template <> +inline void CUtlBuffer::PutTypeBin< float >(float src) +{ + if (CheckPut(sizeof(src))) + { + if (m_Byteswap.IsSwappingBytes()) + { + m_Byteswap.SwapBufferToTargetEndian(&src, &src); + } + + // + // Write the data + // + unsigned pData = (unsigned)PeekPut(); + if (pData & 0x03) + { + // handle unaligned write + byte* dst = (byte*)pData; + byte* srcPtr = (byte*)&src; + dst[0] = srcPtr[0]; + dst[1] = srcPtr[1]; + dst[2] = srcPtr[2]; + dst[3] = srcPtr[3]; + } + else + { + *(float*)pData = src; + } + + m_Put += sizeof(float); + AddNullTermination(m_Put); + } +} + +template <> +inline void CUtlBuffer::PutTypeBin< double >(double src) +{ + if (CheckPut(sizeof(src))) + { + if (m_Byteswap.IsSwappingBytes()) + { + m_Byteswap.SwapBufferToTargetEndian(&src, &src); + } + + // + // Write the data + // + unsigned pData = (unsigned)PeekPut(); + if (pData & 0x07) + { + // handle unaligned write + byte* dst = (byte*)pData; + byte* srcPtr = (byte*)&src; + dst[0] = srcPtr[0]; + dst[1] = srcPtr[1]; + dst[2] = srcPtr[2]; + dst[3] = srcPtr[3]; + dst[4] = srcPtr[4]; + dst[5] = srcPtr[5]; + dst[6] = srcPtr[6]; + dst[7] = srcPtr[7]; + } + else + { + *(double*)pData = src; + } + + m_Put += sizeof(double); + AddNullTermination(m_Put); + } +} +#endif + +template +inline void CUtlBuffer::PutType(T src) +{ + if (!IsText()) + { + PutTypeBin(src); + } + else + { + Printf(GetFmtStr< T >(), src); + } +} + +//----------------------------------------------------------------------------- +// Methods to help with pretty-printing +//----------------------------------------------------------------------------- +inline bool CUtlBuffer::WasLastCharacterCR() +{ + if (!IsText() || (TellPut() == 0)) + return false; + return (*(const char*)PeekPut(-1) == '\n'); +} + +inline void CUtlBuffer::PutTabs() +{ + int nTabCount = (m_Flags & AUTO_TABS_DISABLED) ? 0 : m_nTab; + for (int i = nTabCount; --i >= 0; ) + { + PutTypeBin('\t'); + } +} + + +//----------------------------------------------------------------------------- +// Push/pop pretty-printing tabs +//----------------------------------------------------------------------------- +inline void CUtlBuffer::PushTab() +{ + ++m_nTab; +} + +inline void CUtlBuffer::PopTab() +{ + if (--m_nTab < 0) + { + m_nTab = 0; + } +} + + +//----------------------------------------------------------------------------- +// Temporarily disables pretty print +//----------------------------------------------------------------------------- +inline void CUtlBuffer::EnableTabs(bool bEnable) +{ + if (bEnable) + { + m_Flags &= ~AUTO_TABS_DISABLED; + } + else + { + m_Flags |= AUTO_TABS_DISABLED; + } +} + +inline void CUtlBuffer::PutChar(char c) +{ + if (WasLastCharacterCR()) + { + PutTabs(); + } + + PutTypeBin(c); +} + +inline void CUtlBuffer::PutUnsignedChar(unsigned char c) +{ + if (!IsText()) + { + PutTypeBin(c); + } + else + { + PutUnsignedShort(c); + } +} + +inline void CUtlBuffer::PutShort(short s) +{ + PutType(s); +} + +inline void CUtlBuffer::PutUnsignedShort(unsigned short s) +{ + PutType(s); +} + +inline void CUtlBuffer::PutInt(int i) +{ + PutType(i); +} + +inline void CUtlBuffer::PutInt64(int64_t i) +{ + PutType(i); +} + +inline void CUtlBuffer::PutUnsignedInt(unsigned int u) +{ + PutType(u); +} + +inline void CUtlBuffer::PutUnsignedInt64(uint64_t i) +{ + PutType(i); +} + + +inline void CUtlBuffer::PutFloat(float f) +{ + PutType(f); +} + +inline void CUtlBuffer::PutDouble(double d) +{ + PutType(d); +} + +inline void CUtlBuffer::PutPtr(void* p) +{ + // LEGACY WARNING: in text mode, PutPtr writes 32 bit pointers in hex, while GetPtr reads 32 or 64 bit pointers in decimal + if (!IsText()) + { + PutTypeBin(p); + } + else + { + Printf("0x%p", p); + } +} + +//----------------------------------------------------------------------------- +// Am I a text buffer? +//----------------------------------------------------------------------------- +inline bool CUtlBuffer::IsText() const +{ + return (m_Flags & TEXT_BUFFER); + +} + + +//----------------------------------------------------------------------------- +// Can I grow if I'm externally allocated? +//----------------------------------------------------------------------------- +inline bool CUtlBuffer::IsGrowable() const +{ + return (m_Flags & EXTERNAL_GROWABLE) != 0; +} + + +//----------------------------------------------------------------------------- +// Am I valid? (overflow or underflow error), Once invalid it stays invalid +//----------------------------------------------------------------------------- +inline bool CUtlBuffer::IsValid() const +{ + return m_Error == 0; +} + + +//----------------------------------------------------------------------------- +// Do I contain carriage return/linefeeds? +//----------------------------------------------------------------------------- +inline bool CUtlBuffer::ContainsCRLF() const +{ + return IsText() && ((m_Flags & CONTAINS_CRLF) != 0); +} + + +//----------------------------------------------------------------------------- +// Am I read-only +//----------------------------------------------------------------------------- +inline bool CUtlBuffer::IsReadOnly() const +{ + return (m_Flags & READ_ONLY) != 0; +} + + +//----------------------------------------------------------------------------- +// Buffer base and size +//----------------------------------------------------------------------------- +inline const void* CUtlBuffer::Base() const +{ + return m_Memory.Base(); +} + +inline void* CUtlBuffer::Base() +{ + return m_Memory.Base(); +} + +inline size_t CUtlBuffer::Size() const +{ + return m_Memory.AllocationNum(); +} + + +//----------------------------------------------------------------------------- +// Clears out the buffer; frees memory +//----------------------------------------------------------------------------- +inline void CUtlBuffer::Clear() +{ + m_Get = 0; + m_Put = 0; + m_Error = 0; + m_nOffset = 0; + m_nMaxPut = -1; + AddNullTermination(m_Put); +} + +inline void CUtlBuffer::Purge() +{ + m_Get = 0; + m_Put = 0; + m_nOffset = 0; + m_nMaxPut = 0; + m_Error = 0; + m_Memory.Purge(); +} + +//----------------------------------------------------------------------------- +// +//----------------------------------------------------------------------------- +inline void* CUtlBuffer::AccessForDirectRead(size_t nBytes) +{ + EnsureCapacity(nBytes); + m_nMaxPut = nBytes; + return Base(); +} + +inline void* CUtlBuffer::Detach() +{ + Clear(); +} + +//----------------------------------------------------------------------------- + +inline void CUtlBuffer::Spew() +{ + SeekGet(CUtlBuffer::SEEK_HEAD, 0); + + char pTmpLine[1024]; + while (IsValid() && GetBytesRemaining()) + { + memset(pTmpLine, 0, sizeof(pTmpLine)); + Get(pTmpLine, std::min((size_t)GetBytesRemaining(), sizeof(pTmpLine) - 1)); + } +} + +#if !defined(_GAMECONSOLE) +inline void CUtlBuffer::SwapCopy(CUtlBuffer& other) +{ + m_Get = other.m_Get; + m_Put = other.m_Put; + m_Error = other.m_Error; + m_Flags = other.m_Flags; + m_Reserved = other.m_Reserved; + m_nTab = other.m_nTab; + m_nMaxPut = other.m_nMaxPut; + m_nOffset = other.m_nOffset; + m_GetOverflowFunc = other.m_GetOverflowFunc; + m_PutOverflowFunc = other.m_PutOverflowFunc; + m_Byteswap = other.m_Byteswap; + m_Memory.Swap(other.m_Memory); + +} +#endif + +inline void CUtlBuffer::CopyBuffer(const CUtlBuffer& buffer) +{ + CopyBuffer(buffer.Base(), buffer.TellPut()); +} + +inline void CUtlBuffer::CopyBuffer(const void* pubData, size_t cubData) +{ + Clear(); + if (cubData) + { + Put(pubData, cubData); + } +} + +#endif // UTLBUFFER_H + + +#define CS2_PAD( number, size ) \ +private: \ + [[maybe_unused]] std::array< std::byte, size > m_unknown_##number{ }; \ +public: + +class c_ult_buffer { +private: + + char _pad[0x80]; +public: + c_ult_buffer(int a1, int size, int a3); + + void put_string(std::string_view); +}; + +struct kv3_id_t { + const char* type; + uint64_t hash1; + uint64_t hash2; +}; + +class c_key_values { +private: + char _pad[0x130]; + +public: + c_key_values* set_type(); + bool load_kv3(c_ult_buffer* buffer); + void load_from_buffer(std::string_view keyvalues); +}; + +c_key_values* create_material_resource(); \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/buf/wchartypes.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/buf/wchartypes.h new file mode 100644 index 0000000..5e09f13 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/buf/wchartypes.h @@ -0,0 +1,114 @@ +//========= Copyright (c) 1996-2005, Valve Corporation, All rights reserved. ============// +// +// Purpose: All of our code is completely Unicode. Instead of char, you should +// use wchar, uint8, or char8, as explained below. +// +// $NoKeywords: $ +//=============================================================================// + + +#ifndef WCHARTYPES_H +#define WCHARTYPES_H +#ifdef _WIN32 +#pragma once +#endif + +#ifdef _INC_TCHAR +#error ("Must include tier0 type headers before tchar.h") +#endif + +// Temporarily turn off Valve defines + + +#if !defined(_WCHAR_T_DEFINED) && !defined( __WCHAR_TYPE__ ) && !defined(GNUC) +typedef unsigned short wchar_t; +#define _WCHAR_T_DEFINED +#endif + +// char8 +// char8 is equivalent to char, and should be used when you really need a char +// (for example, when calling an external function that's declared to take +// chars). +typedef char char8; + +// uint8 +// uint8 is equivalent to byte (but is preferred over byte for clarity). Use this +// whenever you mean a byte (for example, one byte of a network packet). +typedef unsigned char uint8; +typedef unsigned char BYTE; +typedef unsigned char byte; + +// wchar +// wchar is a single character of text (currently 16 bits, as all of our text is +// Unicode). Use this whenever you mean a piece of text (for example, in a string). +typedef wchar_t wchar; +//typedef char wchar; + +// __WFILE__ +// This is a Unicode version of __FILE__ +#define WIDEN2(x) L ## x +#define WIDEN(x) WIDEN2(x) +#define __WFILE__ WIDEN(__FILE__) + +#ifdef STEAM +#ifndef _UNICODE +#define FORCED_UNICODE +#endif +#define _UNICODE +#endif + +#if defined( POSIX ) +#define _tcsstr strstr +#define _tcsicmp stricmp +#define _tcscmp strcmp +#define _tcscpy strcpy +#define _tcsncpy strncpy +#define _tcsrchr strrchr +#define _tcslen strlen +#define _tfopen fopen +#define _stprintf sprintf +#define _ftprintf fprintf +#define _vsntprintf _vsnprintf +#define _tprintf printf +#define _sntprintf _snprintf +#define _T(s) s +#else +#include +#endif + +#if defined(_UNICODE) +typedef wchar tchar; +#define tstring wstring +#define __TFILE__ __WFILE__ +#define TCHAR_IS_WCHAR +#else +typedef char tchar; +#define tstring string +#define __TFILE__ __FILE__ +#define TCHAR_IS_CHAR +#endif + +#ifdef FORCED_UNICODE +#undef _UNICODE +#endif + +#if defined( _MSC_VER ) || defined( WIN32 ) +typedef wchar_t uchar16; +typedef unsigned int uchar32; +#else +typedef unsigned short uchar16; +typedef wchar_t uchar32; +#endif + +#ifdef GNUC +typedef unsigned short ucs2; // wchar_t is 4 bytes on sane os's, specially define a ucs2 type so we can read out localization files and the list saved as 2 byte wchar (or ucs16 Matt tells me) +#elif defined(_MSC_VER) +typedef wchar_t ucs2; // under windows wchar_t is ucs2 +#endif + + + + +#endif // WCHARTYPES + + diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/byteswap.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/byteswap.h new file mode 100644 index 0000000..f46fbed --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/byteswap.h @@ -0,0 +1,264 @@ +//========= Copyright � 1996-2006, Valve LLC, All rights reserved. ============ +// +// Purpose: Low level byte swapping routines. +// +// $NoKeywords: $ +//============================================================================= +#ifndef BYTESWAP_H +#define BYTESWAP_H +#if defined(_WIN32) +#pragma once +#endif + +#include "datamap.h" // needed for typedescription_t. note datamap.h is tier1 as well. + +class CByteSwap +{ +public: + CByteSwap() + { + // Default behavior sets the target endian to match the machine native endian (no swap). + SetTargetBigEndian(IsMachineBigEndian()); + } + + //----------------------------------------------------------------------------- + // Write a single field. + //----------------------------------------------------------------------------- + void SwapFieldToTargetEndian(void* pOutputBuffer, void* pData, typedescription_t* pField); + + //----------------------------------------------------------------------------- + // Write a block of fields. Works a bit like the saverestore code. + //----------------------------------------------------------------------------- + void SwapFieldsToTargetEndian(void* pOutputBuffer, void* pBaseData, datamap_t* pDataMap); + + // Swaps fields for the templated type to the output buffer. + template inline void SwapFieldsToTargetEndian(T* pOutputBuffer, void* pBaseData, unsigned int objectCount = 1) + { + for (unsigned int i = 0; i < objectCount; ++i, ++pOutputBuffer) + { + SwapFieldsToTargetEndian((void*)pOutputBuffer, pBaseData, &T::m_DataMap); + pBaseData = pBaseData + sizeof(T); + } + } + + // Swaps fields for the templated type in place. + template inline void SwapFieldsToTargetEndian(T* pOutputBuffer, unsigned int objectCount = 1) + { + SwapFieldsToTargetEndian(pOutputBuffer, (void*)pOutputBuffer, objectCount); + } + + //----------------------------------------------------------------------------- + // True if the current machine is detected as big endian. + // (Endianness is effectively detected at compile time when optimizations are + // enabled) + //----------------------------------------------------------------------------- + static bool IsMachineBigEndian() + { + short nIsBigEndian = 1; + + // if we are big endian, the first byte will be a 0, if little endian, it will be a one. + return (bool)(0 == *(char*)&nIsBigEndian); + } + + //----------------------------------------------------------------------------- + // Sets the target byte ordering we are swapping to or from. + // + // Braindead Endian Reference: + // x86 is LITTLE Endian + // PowerPC is BIG Endian + //----------------------------------------------------------------------------- + inline void SetTargetBigEndian(bool bigEndian) + { + m_bBigEndian = bigEndian; + m_bSwapBytes = IsMachineBigEndian() != bigEndian; + } + + // Changes target endian + inline void FlipTargetEndian(void) + { + m_bSwapBytes = !m_bSwapBytes; + m_bBigEndian = !m_bBigEndian; + } + + // Forces byte swapping state, regardless of endianess + inline void ActivateByteSwapping(bool bActivate) + { + SetTargetBigEndian(IsMachineBigEndian() != bActivate); + } + + //----------------------------------------------------------------------------- + // Returns true if the target machine is the same as this one in endianness. + // + // Used to determine when a byteswap needs to take place. + //----------------------------------------------------------------------------- + inline bool IsSwappingBytes(void) // Are bytes being swapped? + { + return m_bSwapBytes; + } + + inline bool IsTargetBigEndian(void) // What is the current target endian? + { + return m_bBigEndian; + } + + //----------------------------------------------------------------------------- + // IsByteSwapped() + // + // When supplied with a chunk of input data and a constant or magic number + // (in native format) determines the endienness of the current machine in + // relation to the given input data. + // + // Returns: + // 1 if input is the same as nativeConstant. + // 0 if input is byteswapped relative to nativeConstant. + // -1 if input is not the same as nativeConstant and not byteswapped either. + // + // ( This is useful for detecting byteswapping in magic numbers in structure + // headers for example. ) + //----------------------------------------------------------------------------- + template inline int SourceIsNativeEndian(T input, T nativeConstant) + { + // If it's the same, it isn't byteswapped: + if (input == nativeConstant) + return 1; + + int output; + LowLevelByteSwap(&output, &input); + if (output == nativeConstant) + return 0; + + return -1; + } + + //----------------------------------------------------------------------------- + // Swaps an input buffer full of type T into the given output buffer. + // + // Swaps [count] items from the inputBuffer to the outputBuffer. + // If inputBuffer is omitted or NULL, then it is assumed to be the same as + // outputBuffer - effectively swapping the contents of the buffer in place. + //----------------------------------------------------------------------------- + template inline void SwapBuffer(T* outputBuffer, T* inputBuffer = NULL, int count = 1) + { + + + // Fail gracefully in release: + if (count <= 0 || !outputBuffer) + return; + + // Optimization for the case when we are swapping in place. + if (inputBuffer == NULL) + { + inputBuffer = outputBuffer; + } + + // Swap everything in the buffer: + for (int i = 0; i < count; i++) + { + LowLevelByteSwap(&outputBuffer[i], &inputBuffer[i]); + } + } + + //----------------------------------------------------------------------------- + // Swaps an input buffer full of type T into the given output buffer. + // + // Swaps [count] items from the inputBuffer to the outputBuffer. + // If inputBuffer is omitted or NULL, then it is assumed to be the same as + // outputBuffer - effectively swapping the contents of the buffer in place. + //----------------------------------------------------------------------------- + template inline void SwapBufferToTargetEndian(T* outputBuffer, T* inputBuffer = NULL, int count = 1) + { + + + // Fail gracefully in release: + if (count <= 0 || !outputBuffer) + return; + + // Optimization for the case when we are swapping in place. + if (inputBuffer == NULL) + { + inputBuffer = outputBuffer; + } + + // Are we already the correct endienness? ( or are we swapping 1 byte items? ) + if (!m_bSwapBytes || (sizeof(T) == 1)) + { + // If we were just going to swap in place then return. + if (!inputBuffer) + return; + + // Otherwise copy the inputBuffer to the outputBuffer: + if (outputBuffer != inputBuffer) + memcpy(outputBuffer, inputBuffer, count * sizeof(T)); + return; + + } + + // Swap everything in the buffer: + for (int i = 0; i < count; i++) + { + LowLevelByteSwap(&outputBuffer[i], &inputBuffer[i]); + } + } + +private: + //----------------------------------------------------------------------------- + // The lowest level byte swapping workhorse of doom. output always contains the + // swapped version of input. ( Doesn't compare machine to target endianness ) + //----------------------------------------------------------------------------- + template static void LowLevelByteSwap(T* output, T* input) + { + T temp = *output; +#if defined( _X360 ) + // Intrinsics need the source type to be fixed-point + DWORD* word = (DWORD*)input; + switch (sizeof(T)) + { + case 8: + { + __storewordbytereverse(*(word + 1), 0, &temp); + __storewordbytereverse(*(word + 0), 4, &temp); + } + break; + + case 4: + __storewordbytereverse(*word, 0, &temp); + break; + + case 2: + __storeshortbytereverse(*input, 0, &temp); + break; + + case 1: + Q_memcpy(&temp, input, 1); + break; + + default: + CS_ASSERT("Invalid size in CByteswap::LowLevelByteSwap" && 0); + } +#else + for (unsigned int i = 0; i < sizeof(T); i++) + { + ((unsigned char*)&temp)[i] = ((unsigned char*)input)[sizeof(T) - (i + 1)]; + } +#endif + memcpy(output, &temp, sizeof(T)); + } + +#if defined( _X360 ) + // specialized for void * to get 360 XDK compile working despite changelist 281331 + //----------------------------------------------------------------------------- + // The lowest level byte swapping workhorse of doom. output always contains the + // swapped version of input. ( Doesn't compare machine to target endianness ) + //----------------------------------------------------------------------------- + template<> static void LowLevelByteSwap(void** output, void** input) + { + CS_ASSERTMsgOnce(sizeof(void*) == sizeof(unsigned int), "void *'s on this platform are not four bytes!"); + __storewordbytereverse(*reinterpret_cast(input), 0, output); + } +#endif + + unsigned int m_bSwapBytes : 1; + unsigned int m_bBigEndian : 1; +}; + +#endif /* !BYTESWAP_H */ \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/cinterlockedint.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/cinterlockedint.hpp new file mode 100644 index 0000000..e054a01 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/cinterlockedint.hpp @@ -0,0 +1,108 @@ +#ifndef CS2_CHEAT_CINTERLOCKEDINT_HPP +#define CS2_CHEAT_CINTERLOCKEDINT_HPP + +#include +#include + +#include + +template< std::integral tElement > +requires( sizeof( tElement ) == sizeof( std::int32_t ) || sizeof( tElement ) == sizeof( std::int64_t ) ) +class CInterlockedIntT +{ +public: + constexpr CInterlockedIntT( ) noexcept + : m_iValue( 0 ) + { + } + + constexpr CInterlockedIntT( tElement iValue ) noexcept + : m_iValue( iValue ) + { + } + + constexpr tElement operator( )( ) const noexcept + { + return m_iValue; + } + + constexpr operator tElement( ) const noexcept + { + return m_iValue; + } + + constexpr bool operator!( ) const noexcept + { + return !m_iValue; + } + + tElement operator++( ) noexcept + { + if constexpr ( sizeof( tElement ) == sizeof( std::int32_t ) ) + return static_cast< tElement >( _InterlockedIncrement( reinterpret_cast< volatile long* >( &m_iValue ) ) ); + else + return static_cast< tElement >( _InterlockedIncrement64( reinterpret_cast< volatile long long* >( &m_iValue ) ) ); + } + + tElement operator--( ) noexcept + { + if constexpr ( sizeof( tElement ) == sizeof( std::int32_t ) ) + return static_cast< tElement >( _InterlockedDecrement( reinterpret_cast< volatile long* >( &m_iValue ) ) ); + else + return static_cast< tElement >( _InterlockedDecrement64( reinterpret_cast< volatile long long* >( &m_iValue ) ) ); + } + + tElement operator++( int ) noexcept + { + return operator++( ) - 1; + } + + tElement operator--( int ) noexcept + { + return operator--( ) + 1; + } + + [[nodiscard]] tElement operator+( tElement iOtherValue ) const noexcept + { + return m_iValue + iOtherValue; + } + + [[nodiscard]] tElement operator-( tElement iOtherValue ) const noexcept + { + return m_iValue - iOtherValue; + } + + void operator+=( tElement iAdd ) noexcept + { + if constexpr ( sizeof( tElement ) == sizeof( std::int32_t ) ) + return static_cast< tElement >( _InterlockedExchangeAdd( reinterpret_cast< volatile long* >( &m_iValue ), iAdd ) ); + else + return static_cast< tElement >( _InterlockedExchangeAdd64( reinterpret_cast< volatile long* >( &m_iValue ), iAdd ) ); + } + + void operator-=( tElement iSub ) noexcept + { + if constexpr ( sizeof( tElement ) == sizeof( std::int32_t ) ) + return static_cast< tElement >( _InterlockedExchangeSub( reinterpret_cast< volatile long* >( &m_iValue ), iSub ) ); + else + return static_cast< tElement >( _InterlockedExchangeSub64( reinterpret_cast< volatile long* >( &m_iValue ), iSub ) ); + } + + tElement operator=( tElement iNewValue ) noexcept + { + if constexpr ( sizeof( tElement ) == sizeof( std::int32_t ) ) + _InterlockedExchange( reinterpret_cast< volatile long* >( &m_iValue ), iNewValue ); + else + _InterlockedExchange64( reinterpret_cast< volatile long long* >( &m_iValue ), iNewValue ); + + return m_iValue; + } + +public: + volatile tElement m_iValue; +}; + +using CInterlockedInt = CInterlockedIntT< std::int32_t >; +using CInterlockedUInt = CInterlockedIntT< std::uint32_t >; + +#endif // CS2_CHEAT_CINTERLOCKEDINT_HPP diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/color.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/color.h new file mode 100644 index 0000000..e1f690b --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/color.h @@ -0,0 +1,242 @@ +#pragma once +// used: [crt] fmodf +#include +// used: bit_cast +#include + +#include "../../common.h" +// used: swap +#include "../../utilities/crt.h" +// used: [ext] imu32 +#include "../../../dependencies/imgui/imgui.h" + +enum +{ + COLOR_R = 0, + COLOR_G = 1, + COLOR_B = 2, + COLOR_A = 3 +}; + +struct ColorRGBExp32 +{ + std::uint8_t r, g, b; + std::int8_t iExponent; +}; + +static_assert(sizeof(ColorRGBExp32) == 0x4); + +struct Color_t +{ + Color_t() = default; + + // 8-bit color constructor (in: [0 .. 255]) + constexpr Color_t(const std::uint8_t r, const std::uint8_t g, const std::uint8_t b, const std::uint8_t a = 255) : + r(r), g(g), b(b), a(a) { } + + // 8-bit color constructor (in: [0 .. 255]) + constexpr Color_t(const int r, const int g, const int b, const int a = 255) : + r(static_cast(r)), g(static_cast(g)), b(static_cast(b)), a(static_cast(a)) { } + + // 8-bit array color constructor (in: [0.0 .. 1.0]) + explicit constexpr Color_t(const std::uint8_t arrColor[4]) : + r(arrColor[COLOR_R]), g(arrColor[COLOR_G]), b(arrColor[COLOR_B]), a(arrColor[COLOR_A]) { } + + // 32-bit packed color constructor (in: 0x00000000 - 0xFFFFFFFF) + explicit constexpr Color_t(const ImU32 uPackedColor) : + r(static_cast((uPackedColor >> IM_COL32_R_SHIFT) & 0xFF)), g(static_cast((uPackedColor >> IM_COL32_G_SHIFT) & 0xFF)), b(static_cast((uPackedColor >> IM_COL32_B_SHIFT) & 0xFF)), a(static_cast((uPackedColor >> IM_COL32_A_SHIFT) & 0xFF)) { } + + // 32-bit color constructor (in: [0.0 .. 1.0]) + constexpr Color_t(const float r, const float g, const float b, const float a = 1.0f) : + r(static_cast(r * 255.f)), g(static_cast(g * 255.f)), b(static_cast(b * 255.f)), a(static_cast(a * 255.f)) { } + + /// @returns: 32-bit packed integer representation of color + [[nodiscard]] constexpr ImU32 GetU32(const float flAlphaMultiplier = 1.0f) const + { + return IM_COL32(r, g, b, a * flAlphaMultiplier); + } + + /// @return: converted color to imgui vector + [[nodiscard]] ImVec4 GetVec4(const float flAlphaMultiplier = 1.0f) const + { + return ImVec4(this->Base(), this->Base(), this->Base(), this->Base() * flAlphaMultiplier); + } + + std::uint8_t& operator[](const std::uint8_t nIndex) + { + CS_ASSERT(nIndex <= COLOR_A); // given index is out of range + return reinterpret_cast(this)[nIndex]; + } + + const std::uint8_t& operator[](const std::uint8_t nIndex) const + { + CS_ASSERT(nIndex <= COLOR_A); // given index is out of range + return reinterpret_cast(this)[nIndex]; + } + + bool operator==(const Color_t& colSecond) const + { + return (std::bit_cast(*this) == std::bit_cast(colSecond)); + } + + bool operator!=(const Color_t& colSecond) const + { + return (std::bit_cast(*this) != std::bit_cast(colSecond)); + } + + /// @returns: copy of color with certain R/G/B/A component changed to given value + template + Color_t Set(const std::uint8_t nValue) const + { + + Color_t colCopy = *this; + colCopy[N] = nValue; + return colCopy; + } + // Method to set the alpha to the product of current alpha and an additional alpha multiplier + uint8_t SetAlphaM(const float alphaMultiplier) const + { + // Make a copy of the current color + Color_t colCopy = *this; + + // Multiply the alpha value by the alpha multiplier + colCopy.a = static_cast(alphaMultiplier); + // Return the modified color + return colCopy.a; + } + + /// @returns: copy of color with certain R/G/B/A component multiplied by given value + template + [[nodiscard]] Color_t Multiplier(const float flValue) const + { + static_assert(N >= COLOR_R && N <= COLOR_A, "color component index is out of range"); + + Color_t colCopy = *this; + colCopy[N] = static_cast(static_cast(colCopy[N]) * flValue); + return colCopy; + } + + /// @returns: copy of color with certain R/G/B/A component divided by given value + template + [[nodiscard]] Color_t Divider(const int iValue) const + { + static_assert(N >= COLOR_R && N <= COLOR_A, "color component index is out of range"); + + Color_t colCopy = *this; + colCopy[N] /= iValue; + return colCopy; + } + + /// @returns: certain R/G/B/A float value (in: [0 .. 255], out: [0.0 .. 1.0]) + template + [[nodiscard]] float Base() const + { + static_assert(N >= COLOR_R && N <= COLOR_A, "color component index is out of range"); + return reinterpret_cast(this)[N] / 255.f; + } + + /// @param[out] arrBase output array of R/G/B color components converted to float (in: [0 .. 255], out: [0.0 .. 1.0]) + constexpr void Base(float (&arrBase)[3]) const + { + arrBase[COLOR_R] = static_cast(r) / 255.f; + arrBase[COLOR_G] = static_cast(g) / 255.f; + arrBase[COLOR_B] = static_cast(b) / 255.f; + } + + /// @returns: color created from float[3] array (in: [0.0 .. 1.0], out: [0 .. 255]) + static Color_t FromBase3(const float arrBase[3]) + { + return { arrBase[0], arrBase[1], arrBase[2] }; + } + + /// @param[out] arrBase output array of R/G/B/A color components converted to float (in: [0 .. 255], out: [0.0 .. 1.0]) + constexpr void BaseAlpha(float (&arrBase)[4]) const + { + arrBase[COLOR_R] = static_cast(r) / 255.f; + arrBase[COLOR_G] = static_cast(g) / 255.f; + arrBase[COLOR_B] = static_cast(b) / 255.f; + arrBase[COLOR_A] = static_cast(a) / 255.f; + } + + /// @returns : color created from float[3] array (in: [0.0 .. 1.0], out: [0 .. 255]) + static Color_t FromBase4(const float arrBase[4]) + { + return { arrBase[COLOR_R], arrBase[COLOR_G], arrBase[COLOR_B], arrBase[COLOR_A] }; + } + + /// @param[out] arrHSB output array of HSB/HSV color converted from RGB color + void ToHSB(float (&arrHSB)[3]) const + { + float arrBase[3] = {}; + Base(arrBase); + + float flKernel = 0.0f; + if (arrBase[COLOR_G] < arrBase[COLOR_B]) + { + CRT::Swap(arrBase[COLOR_G], arrBase[COLOR_B]); + flKernel = -1.0f; + } + if (arrBase[COLOR_R] < arrBase[COLOR_G]) + { + CRT::Swap(arrBase[COLOR_R], arrBase[COLOR_G]); + flKernel = -2.0f / 6.0f - flKernel; + } + + const float flChroma = arrBase[COLOR_R] - MATH::Min(arrBase[COLOR_G], arrBase[COLOR_B]); + arrHSB[COLOR_R] = std::fabsf(flKernel + (arrBase[COLOR_G] - arrBase[COLOR_B]) / (6.0f * flChroma + std::numeric_limits::epsilon())); + arrHSB[COLOR_G] = flChroma / (arrBase[COLOR_R] + std::numeric_limits::epsilon()); + arrHSB[COLOR_G] = arrBase[COLOR_R]; + } + + /// @returns: RGB color converted from HSB/HSV color + static Color_t FromHSB(const float flHue, const float flSaturation, const float flBrightness, const float flAlpha = 1.0f) + { + constexpr float flHueRange = (60.0f / 360.0f); + const float flHuePrime = std::fmodf(flHue, 1.0f) / flHueRange; + const int iRoundHuePrime = static_cast(flHuePrime); + const float flDelta = flHuePrime - static_cast(iRoundHuePrime); + + const float p = flBrightness * (1.0f - flSaturation); + const float q = flBrightness * (1.0f - flSaturation * flDelta); + const float t = flBrightness * (1.0f - flSaturation * (1.0f - flDelta)); + + float flRed, flGreen, flBlue; + switch (iRoundHuePrime) + { + case 0: + flRed = flBrightness; + flGreen = t; + flBlue = p; + break; + case 1: + flRed = q; + flGreen = flBrightness; + flBlue = p; + break; + case 2: + flRed = p; + flGreen = flBrightness; + flBlue = t; + break; + case 3: + flRed = p; + flGreen = q; + flBlue = flBrightness; + break; + case 4: + flRed = t; + flGreen = p; + flBlue = flBrightness; + break; + default: + flRed = flBrightness; + flGreen = p; + flBlue = q; + break; + } + + return { flRed, flGreen, flBlue, flAlpha }; + } + + std::uint8_t r = 0U, g = 0U, b = 0U, a = 0U; +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/cstronghandle.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/cstronghandle.hpp new file mode 100644 index 0000000..3ac7db2 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/cstronghandle.hpp @@ -0,0 +1,21 @@ +struct ResourceBinding_t { + void* data; +}; + +template +class CStrongHandle { +public: + explicit operator T* () const { + return is_valid() ? reinterpret_cast(binding_->data) : nullptr; + } + + T* operator->() const { + return is_valid() ? reinterpret_cast(binding_->data) : nullptr; + } + + + [[nodiscard]] bool is_valid() const { return binding_->data != nullptr; } + +private: + const ResourceBinding_t* binding_; +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/datamap.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/datamap.h new file mode 100644 index 0000000..7a111e1 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/datamap.h @@ -0,0 +1,91 @@ +#pragma once +#include +#pragma once + +typedef enum _fieldtypes +{ + FIELD_VOID = 0, // No type or value + FIELD_FLOAT, // Any floating point value + FIELD_STRING, // A string ID (return from ALLOC_STRING) + FIELD_VECTOR, // Any vector, QAngle, or AngularImpulse + FIELD_QUATERNION, // A quaternion + FIELD_INTEGER, // Any integer or enum + FIELD_BOOLEAN, // boolean, implemented as an int, I may use this as a hint for compression + FIELD_SHORT, // 2 byte integer + FIELD_CHARACTER, // a byte + FIELD_COLOR32, // 8-bit per channel r,g,b,a (32bit color) + FIELD_EMBEDDED, // an embedded object with a datadesc, recursively traverse and embedded class/structure based on an additional typedescription + FIELD_CUSTOM, // special type that contains function pointers to it's read/write/parse functions + + FIELD_CLASSPTR, // CBaseEntity* + FIELD_EHANDLE, // Entity handle + FIELD_EDICT, // edict_t + + FIELD_POSITION_VECTOR, // A world coordinate (these are fixed up across level transitions automagically) + FIELD_TIME, // a floating point time (these are fixed up automatically too!) + FIELD_TICK, // an integer tick count( fixed up similarly to time) + FIELD_MODELNAME, // Engine string that is a model name (needs precache) + FIELD_SOUNDNAME, // Engine string that is a sound name (needs precache) + + FIELD_INPUT, // a list of inputed data fields (all derived from CMultiInputVar) + FIELD_FUNCTION, // A class function pointer (Think, Use, etc) + + FIELD_VMATRIX, // a vmatrix (output coords are NOT worldspace) + + // NOTE: Use float arrays for local transformations that don't need to be fixed up. + FIELD_VMATRIX_WORLDSPACE,// A VMatrix that maps some local space to world space (translation is fixed up on level transitions) + FIELD_MATRIX3X4_WORLDSPACE, // matrix3x4_t that maps some local space to world space (translation is fixed up on level transitions) + + FIELD_INTERVAL, // a start and range floating point interval ( e.g., 3.2->3.6 == 3.2 and 0.4 ) + FIELD_MODELINDEX, // a model index + FIELD_MATERIALINDEX, // a material index (using the material precache string table) + + FIELD_VECTOR2D, // 2 floats + FIELD_INTEGER64, // 64bit integer + + FIELD_VECTOR4D, // 4 floats + + FIELD_TYPECOUNT, // MUST BE LAST +} fieldtype_t; + +struct datamap_t; +struct typedescription_t; + +// [ PIXIE ] TODO: Verify this again, been a long time since I reversed this. +struct datamap_t +{ + typedescription_t* dataDesc; + int unk1; + int unk2; + const char* dataClassName; + uint64_t packed_size; + int64_t dataNumFields; + datamap_t* baseMap; + // Verify size. +}; + +// [ PIXIE ] TODO: Verify this again, been a long time since I reversed this. +struct typedescription_t +{ + fieldtype_t fieldType; + const char* fieldName; + int fieldOffset; + unsigned short fieldSize; + short flags; + uint64_t unk2[5]; + datamap_t* td; + // Not full size yet. +}; + +namespace DataMapHandler +{ + int FindOffsetForField(datamap_t* map, const std::string& fieldName); + typedescription_t* FindFieldInDataMap(datamap_t* map, const std::string& fieldName); +} + +#define DATAMAP_VAR(type, name, datamap, varname) \ + type& name() { \ + static int _##name = NetVarManager::FindOffsetForField(datamap, varname); \ + return *(type*)((std::uintptr_t)this + _##name); \ + } + diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/matrix.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/matrix.cpp new file mode 100644 index 0000000..1c040ff --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/matrix.cpp @@ -0,0 +1,25 @@ +#include "matrix.h" + +#include "qangle.h" + +// used: m_rad2deg +#include "../../utilities/math.h" + +[[nodiscard]] QAngle_t Matrix3x4_t::ToAngles() const +{ + // extract the basis vectors from the matrix. since we only need the z component of the up vector, we don't get x and y + const Vector_t vecForward = this->GetForward(); + const Vector_t vecLeft = this->GetLeft(); + const float flUpZ = this->arrData[2][2]; + + const float flLength2D = vecForward.Length2D(); + const float flPitch = M_RAD2DEG(std::atan2f(-vecForward.z, flLength2D)); + + // check is enough here to get angles + if (flLength2D > 0.001f) + return { flPitch, M_RAD2DEG(std::atan2f(vecForward.y, vecForward.x)), M_RAD2DEG(std::atan2f(vecLeft.z, flUpZ)) }; + + // forward is mostly Z, gimbal lock + // assume no roll in this case as one degree of freedom has been lost (i.e. yaw equals roll) + return { flPitch, M_RAD2DEG(std::atan2f(-vecLeft.x, vecLeft.y)), 0.0f }; +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/matrix.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/matrix.h new file mode 100644 index 0000000..3039b7b --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/matrix.h @@ -0,0 +1,376 @@ +#pragma once +// used: sse2 intrinsics +#include +// used: bit_cast +#include + +#include "../../common.h" + +#include "vector.h" + +// forward declarations +struct QAngle_t; + +#pragma pack(push, 4) +using Matrix3x3_t = float[3][3]; + +struct Matrix3x4_t +{ + Matrix3x4_t() = default; + + constexpr Matrix3x4_t( + const float m00, const float m01, const float m02, const float m03, + const float m10, const float m11, const float m12, const float m13, + const float m20, const float m21, const float m22, const float m23) + { + arrData[0][0] = m00; + arrData[0][1] = m01; + arrData[0][2] = m02; + arrData[0][3] = m03; + arrData[1][0] = m10; + arrData[1][1] = m11; + arrData[1][2] = m12; + arrData[1][3] = m13; + arrData[2][0] = m20; + arrData[2][1] = m21; + arrData[2][2] = m22; + arrData[2][3] = m23; + } + + constexpr Matrix3x4_t(const Vector_t& vecForward, const Vector_t& vecLeft, const Vector_t& vecUp, const Vector_t& vecOrigin) + { + SetForward(vecForward); + SetLeft(vecLeft); + SetUp(vecUp); + SetOrigin(vecOrigin); + } + + [[nodiscard]] float* operator[](const int nIndex) + { + return arrData[nIndex]; + } + + [[nodiscard]] const float* operator[](const int nIndex) const + { + return arrData[nIndex]; + } + + constexpr void SetForward(const Vector_t& vecForward) + { + arrData[0][0] = vecForward.x; + arrData[1][0] = vecForward.y; + arrData[2][0] = vecForward.z; + } + + constexpr void SetLeft(const Vector_t& vecLeft) + { + arrData[0][1] = vecLeft.x; + arrData[1][1] = vecLeft.y; + arrData[2][1] = vecLeft.z; + } + + constexpr void SetUp(const Vector_t& vecUp) + { + arrData[0][2] = vecUp.x; + arrData[1][2] = vecUp.y; + arrData[2][2] = vecUp.z; + } + + constexpr void SetOrigin(const Vector_t& vecOrigin) + { + arrData[0][3] = vecOrigin.x; + arrData[1][3] = vecOrigin.y; + arrData[2][3] = vecOrigin.z; + } + + [[nodiscard]] constexpr Vector_t GetForward() const + { + return { arrData[0][0], arrData[1][0], arrData[2][0] }; + } + + [[nodiscard]] constexpr Vector_t GetLeft() const + { + return { arrData[0][1], arrData[1][1], arrData[2][1] }; + } + + [[nodiscard]] constexpr Vector_t GetUp() const + { + return { arrData[0][2], arrData[1][2], arrData[2][2] }; + } + + [[nodiscard]] constexpr Vector_t GetOrigin() const + { + return { arrData[0][3], arrData[1][3], arrData[2][3] }; + } + + constexpr void Invalidate() + { + for (auto& arrSubData : arrData) + { + for (auto& flData : arrSubData) + flData = std::numeric_limits::infinity(); + } + } + + /// concatenate transformations of two matrices into one + /// @returns: matrix with concatenated transformations + [[nodiscard]] constexpr Matrix3x4_t ConcatTransforms(const Matrix3x4_t& matOther) const + { + return { + arrData[0][0] * matOther.arrData[0][0] + arrData[0][1] * matOther.arrData[1][0] + arrData[0][2] * matOther.arrData[2][0], + arrData[0][0] * matOther.arrData[0][1] + arrData[0][1] * matOther.arrData[1][1] + arrData[0][2] * matOther.arrData[2][1], + arrData[0][0] * matOther.arrData[0][2] + arrData[0][1] * matOther.arrData[1][2] + arrData[0][2] * matOther.arrData[2][2], + arrData[0][0] * matOther.arrData[0][3] + arrData[0][1] * matOther.arrData[1][3] + arrData[0][2] * matOther.arrData[2][3] + arrData[0][3], + + arrData[1][0] * matOther.arrData[0][0] + arrData[1][1] * matOther.arrData[1][0] + arrData[1][2] * matOther.arrData[2][0], + arrData[1][0] * matOther.arrData[0][1] + arrData[1][1] * matOther.arrData[1][1] + arrData[1][2] * matOther.arrData[2][1], + arrData[1][0] * matOther.arrData[0][2] + arrData[1][1] * matOther.arrData[1][2] + arrData[1][2] * matOther.arrData[2][2], + arrData[1][0] * matOther.arrData[0][3] + arrData[1][1] * matOther.arrData[1][3] + arrData[1][2] * matOther.arrData[2][3] + arrData[1][3], + + arrData[2][0] * matOther.arrData[0][0] + arrData[2][1] * matOther.arrData[1][0] + arrData[2][2] * matOther.arrData[2][0], + arrData[2][0] * matOther.arrData[0][1] + arrData[2][1] * matOther.arrData[1][1] + arrData[2][2] * matOther.arrData[2][1], + arrData[2][0] * matOther.arrData[0][2] + arrData[2][1] * matOther.arrData[1][2] + arrData[2][2] * matOther.arrData[2][2], + arrData[2][0] * matOther.arrData[0][3] + arrData[2][1] * matOther.arrData[1][3] + arrData[2][2] * matOther.arrData[2][3] + arrData[2][3] + }; + } + + /// @returns: angles converted from this matrix + [[nodiscard]] QAngle_t ToAngles() const; + + float arrData[3][4] = {}; +}; + +#pragma pack(pop) + +class alignas(16) Matrix3x4a_t : public Matrix3x4_t +{ +public: + Matrix3x4a_t() = default; + + constexpr Matrix3x4a_t( + const float m00, const float m01, const float m02, const float m03, + const float m10, const float m11, const float m12, const float m13, + const float m20, const float m21, const float m22, const float m23) + { + arrData[0][0] = m00; + arrData[0][1] = m01; + arrData[0][2] = m02; + arrData[0][3] = m03; + arrData[1][0] = m10; + arrData[1][1] = m11; + arrData[1][2] = m12; + arrData[1][3] = m13; + arrData[2][0] = m20; + arrData[2][1] = m21; + arrData[2][2] = m22; + arrData[2][3] = m23; + } + + constexpr Matrix3x4a_t(const Matrix3x4_t& matSource) + { + *this = matSource; + } + + constexpr Matrix3x4a_t& operator=(const Matrix3x4_t& matSource) + { + arrData[0][0] = matSource.arrData[0][0]; + arrData[0][1] = matSource.arrData[0][1]; + arrData[0][2] = matSource.arrData[0][2]; + arrData[0][3] = matSource.arrData[0][3]; + arrData[1][0] = matSource.arrData[1][0]; + arrData[1][1] = matSource.arrData[1][1]; + arrData[1][2] = matSource.arrData[1][2]; + arrData[1][3] = matSource.arrData[1][3]; + arrData[2][0] = matSource.arrData[2][0]; + arrData[2][1] = matSource.arrData[2][1]; + arrData[2][2] = matSource.arrData[2][2]; + arrData[2][3] = matSource.arrData[2][3]; + return *this; + } + + /// concatenate transformations of two aligned matrices into one + /// @returns: aligned matrix with concatenated transformations + [[nodiscard]] Matrix3x4a_t ConcatTransforms(const Matrix3x4a_t& matOther) const + { + Matrix3x4a_t matOutput; + CS_ASSERT((reinterpret_cast(this) & 15U) == 0 && (reinterpret_cast(&matOther) & 15U) == 0 && (reinterpret_cast(&matOutput) & 15U) == 0); // matrices aren't aligned + + __m128 thisRow0 = _mm_load_ps(this->arrData[0]); + __m128 thisRow1 = _mm_load_ps(this->arrData[1]); + __m128 thisRow2 = _mm_load_ps(this->arrData[2]); + + __m128 otherRow0 = _mm_load_ps(matOther.arrData[0]); + __m128 otherRow1 = _mm_load_ps(matOther.arrData[1]); + __m128 otherRow2 = _mm_load_ps(matOther.arrData[2]); + + __m128 outRow0 = _mm_add_ps(_mm_mul_ps(_mm_shuffle_ps(thisRow0, thisRow0, _MM_SHUFFLE(0, 0, 0, 0)), otherRow0), _mm_add_ps(_mm_mul_ps(_mm_shuffle_ps(thisRow0, thisRow0, _MM_SHUFFLE(1, 1, 1, 1)), otherRow1), _mm_mul_ps(_mm_shuffle_ps(thisRow0, thisRow0, _MM_SHUFFLE(2, 2, 2, 2)), otherRow2))); + __m128 outRow1 = _mm_add_ps(_mm_mul_ps(_mm_shuffle_ps(thisRow1, thisRow1, _MM_SHUFFLE(0, 0, 0, 0)), otherRow0), _mm_add_ps(_mm_mul_ps(_mm_shuffle_ps(thisRow1, thisRow1, _MM_SHUFFLE(1, 1, 1, 1)), otherRow1), _mm_mul_ps(_mm_shuffle_ps(thisRow1, thisRow1, _MM_SHUFFLE(2, 2, 2, 2)), otherRow2))); + __m128 outRow2 = _mm_add_ps(_mm_mul_ps(_mm_shuffle_ps(thisRow2, thisRow2, _MM_SHUFFLE(0, 0, 0, 0)), otherRow0), _mm_add_ps(_mm_mul_ps(_mm_shuffle_ps(thisRow2, thisRow2, _MM_SHUFFLE(1, 1, 1, 1)), otherRow1), _mm_mul_ps(_mm_shuffle_ps(thisRow2, thisRow2, _MM_SHUFFLE(2, 2, 2, 2)), otherRow2))); + + // add in translation vector + constexpr std::uint32_t arrComponentMask[4] = { 0x0, 0x0, 0x0, 0xFFFFFFFF }; + outRow0 = _mm_add_ps(outRow0, _mm_and_ps(thisRow0, std::bit_cast<__m128>(arrComponentMask))); + outRow1 = _mm_add_ps(outRow1, _mm_and_ps(thisRow1, std::bit_cast<__m128>(arrComponentMask))); + outRow2 = _mm_add_ps(outRow2, _mm_and_ps(thisRow2, std::bit_cast<__m128>(arrComponentMask))); + + _mm_store_ps(matOutput.arrData[0], outRow0); + _mm_store_ps(matOutput.arrData[1], outRow1); + _mm_store_ps(matOutput.arrData[2], outRow2); + return matOutput; + } +}; + +static_assert(alignof(Matrix3x4a_t) == 16); + +#pragma pack(push, 4) + +struct ViewMatrix_t +{ + ViewMatrix_t() = default; + + constexpr ViewMatrix_t( + const float m00, const float m01, const float m02, const float m03, + const float m10, const float m11, const float m12, const float m13, + const float m20, const float m21, const float m22, const float m23, + const float m30, const float m31, const float m32, const float m33) + { + arrData[0][0] = m00; + arrData[0][1] = m01; + arrData[0][2] = m02; + arrData[0][3] = m03; + arrData[1][0] = m10; + arrData[1][1] = m11; + arrData[1][2] = m12; + arrData[1][3] = m13; + arrData[2][0] = m20; + arrData[2][1] = m21; + arrData[2][2] = m22; + arrData[2][3] = m23; + arrData[3][0] = m30; + arrData[3][1] = m31; + arrData[3][2] = m32; + arrData[3][3] = m33; + } + + constexpr ViewMatrix_t(const Matrix3x4_t& matFrom, const Vector4D_t& vecAdditionalRow = {}) + { + arrData[0][0] = matFrom.arrData[0][0]; + arrData[0][1] = matFrom.arrData[0][1]; + arrData[0][2] = matFrom.arrData[0][2]; + arrData[0][3] = matFrom.arrData[0][3]; + arrData[1][0] = matFrom.arrData[1][0]; + arrData[1][1] = matFrom.arrData[1][1]; + arrData[1][2] = matFrom.arrData[1][2]; + arrData[1][3] = matFrom.arrData[1][3]; + arrData[2][0] = matFrom.arrData[2][0]; + arrData[2][1] = matFrom.arrData[2][1]; + arrData[2][2] = matFrom.arrData[2][2]; + arrData[2][3] = matFrom.arrData[2][3]; + arrData[3][0] = vecAdditionalRow.x; + arrData[3][1] = vecAdditionalRow.y; + arrData[3][2] = vecAdditionalRow.z; + arrData[3][3] = vecAdditionalRow.w; + } + + [[nodiscard]] float* operator[](const int nIndex) + { + return arrData[nIndex]; + } + + [[nodiscard]] const float* operator[](const int nIndex) const + { + return arrData[nIndex]; + } + + [[nodiscard]] const bool operator==(const ViewMatrix_t& viewOther) const + { + return ( + arrData[0][0] == viewOther.arrData[0][0] && arrData[0][1] == viewOther.arrData[0][1] && arrData[0][2] == viewOther.arrData[0][2] && arrData[0][3] == viewOther.arrData[0][3] && + arrData[1][0] == viewOther.arrData[1][0] && arrData[1][1] == viewOther.arrData[1][1] && arrData[1][2] == viewOther.arrData[1][2] && arrData[1][3] == viewOther.arrData[1][3] && + arrData[2][0] == viewOther.arrData[2][0] && arrData[2][1] == viewOther.arrData[2][1] && arrData[2][2] == viewOther.arrData[2][2] && arrData[2][3] == viewOther.arrData[2][3] && + arrData[3][0] == viewOther.arrData[3][0] && arrData[3][1] == viewOther.arrData[3][1] && arrData[3][2] == viewOther.arrData[3][2] && arrData[3][3] == viewOther.arrData[3][3] + ); + } + + [[nodiscard]] const Matrix3x4_t& As3x4() const + { + return *reinterpret_cast(this); + } + + [[nodiscard]] Matrix3x4_t& As3x4() + { + return *reinterpret_cast(this); + } + + constexpr ViewMatrix_t& operator+=(const ViewMatrix_t& matAdd) + { + for (std::uint8_t c = 0U; c < 4U; c++) + { + for (std::uint8_t r = 0U; r < 4U; r++) + arrData[c][r] += matAdd[c][r]; + } + + return *this; + } + + constexpr ViewMatrix_t& operator-=(const ViewMatrix_t& matSubtract) + { + for (std::uint8_t c = 0U; c < 4U; c++) + { + for (std::uint8_t r = 0U; r < 4U; r++) + arrData[c][r] -= matSubtract[c][r]; + } + + return *this; + } + + [[nodiscard]] constexpr Vector4D_t GetRow(const int nIndex) const + { + return { arrData[nIndex][0], arrData[nIndex][1], arrData[nIndex][2], arrData[nIndex][3] }; + } + + [[nodiscard]] constexpr Vector4D_t GetColumn(const int nIndex) const + { + return { arrData[0][nIndex], arrData[1][nIndex], arrData[2][nIndex], arrData[3][nIndex] }; + } + + constexpr void Identity() + { + for (std::uint8_t c = 0U; c < 4U; c++) + { + for (std::uint8_t r = 0U; r < 4U; r++) + arrData[c][r] = (c == r) ? 1.0f : 0.0f; + } + } + + /// concatenate transformations of two matrices into one + /// @returns: matrix with concatenated transformations + [[nodiscard]] constexpr ViewMatrix_t ConcatTransforms(const ViewMatrix_t& matOther) const + { + return { + arrData[0][0] * matOther.arrData[0][0] + arrData[0][1] * matOther.arrData[1][0] + arrData[0][2] * matOther.arrData[2][0] + arrData[0][3] * matOther.arrData[3][0], + arrData[0][0] * matOther.arrData[0][1] + arrData[0][1] * matOther.arrData[1][1] + arrData[0][2] * matOther.arrData[2][1] + arrData[0][3] * matOther.arrData[3][1], + arrData[0][0] * matOther.arrData[0][2] + arrData[0][1] * matOther.arrData[1][2] + arrData[0][2] * matOther.arrData[2][2] + arrData[0][3] * matOther.arrData[3][2], + arrData[0][0] * matOther.arrData[0][3] + arrData[0][1] * matOther.arrData[1][3] + arrData[0][2] * matOther.arrData[2][3] + arrData[0][3] * matOther.arrData[3][3], + + arrData[1][0] * matOther.arrData[0][0] + arrData[1][1] * matOther.arrData[1][0] + arrData[1][2] * matOther.arrData[2][0] + arrData[1][3] * matOther.arrData[3][0], + arrData[1][0] * matOther.arrData[0][1] + arrData[1][1] * matOther.arrData[1][1] + arrData[1][2] * matOther.arrData[2][1] + arrData[1][3] * matOther.arrData[3][1], + arrData[1][0] * matOther.arrData[0][2] + arrData[1][1] * matOther.arrData[1][2] + arrData[1][2] * matOther.arrData[2][2] + arrData[1][3] * matOther.arrData[3][2], + arrData[1][0] * matOther.arrData[0][3] + arrData[1][1] * matOther.arrData[1][3] + arrData[1][2] * matOther.arrData[2][3] + arrData[1][3] * matOther.arrData[3][3], + + arrData[2][0] * matOther.arrData[0][0] + arrData[2][1] * matOther.arrData[1][0] + arrData[2][2] * matOther.arrData[2][0] + arrData[2][3] * matOther.arrData[3][0], + arrData[2][0] * matOther.arrData[0][1] + arrData[2][1] * matOther.arrData[1][1] + arrData[2][2] * matOther.arrData[2][1] + arrData[2][3] * matOther.arrData[3][1], + arrData[2][0] * matOther.arrData[0][2] + arrData[2][1] * matOther.arrData[1][2] + arrData[2][2] * matOther.arrData[2][2] + arrData[2][3] * matOther.arrData[3][2], + arrData[2][0] * matOther.arrData[0][3] + arrData[2][1] * matOther.arrData[1][3] + arrData[2][2] * matOther.arrData[2][3] + arrData[2][3] * matOther.arrData[3][3], + + arrData[3][0] * matOther.arrData[0][0] + arrData[3][1] * matOther.arrData[1][0] + arrData[3][2] * matOther.arrData[2][0] + arrData[3][3] * matOther.arrData[3][0], + arrData[3][0] * matOther.arrData[0][1] + arrData[3][1] * matOther.arrData[1][1] + arrData[3][2] * matOther.arrData[2][1] + arrData[3][3] * matOther.arrData[3][1], + arrData[3][0] * matOther.arrData[0][2] + arrData[3][1] * matOther.arrData[1][2] + arrData[3][2] * matOther.arrData[2][2] + arrData[3][3] * matOther.arrData[3][2], + arrData[3][0] * matOther.arrData[0][3] + arrData[3][1] * matOther.arrData[1][3] + arrData[3][2] * matOther.arrData[2][3] + arrData[3][3] * matOther.arrData[3][3] + }; + } + + float arrData[4][4] = {}; +}; + +#pragma pack(pop) \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/qangle.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/qangle.cpp new file mode 100644 index 0000000..68b2634 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/qangle.cpp @@ -0,0 +1,52 @@ +#include "qangle.h" + +// used: [d3d] xmscalarsincos +#include + +#include "matrix.h" + +// used: m_deg2rad +#include "../../utilities/math.h" + +void QAngle_t::ToDirections(Vector_t* pvecForward, Vector_t* pvecRight, Vector_t* pvecUp) const +{ + float flPitchSin, flPitchCos, flYawSin, flYawCos, flRollSin, flRollCos; + DirectX::XMScalarSinCos(&flPitchSin, &flPitchCos, M_DEG2RAD(this->x)); + DirectX::XMScalarSinCos(&flYawSin, &flYawCos, M_DEG2RAD(this->y)); + DirectX::XMScalarSinCos(&flRollSin, &flRollCos, M_DEG2RAD(this->z)); + + if (pvecForward != nullptr) + { + pvecForward->x = flPitchCos * flYawCos; + pvecForward->y = flPitchCos * flYawSin; + pvecForward->z = -flPitchSin; + } + + if (pvecRight != nullptr) + { + pvecRight->x = (-flRollSin * flPitchSin * flYawCos) + (-flRollCos * -flYawSin); + pvecRight->y = (-flRollSin * flPitchSin * flYawSin) + (-flRollCos * flYawCos); + pvecRight->z = (-flRollSin * flPitchCos); + } + + if (pvecUp != nullptr) + { + pvecUp->x = (flRollCos * flPitchSin * flYawCos) + (-flRollSin * -flYawSin); + pvecUp->y = (flRollCos * flPitchSin * flYawSin) + (-flRollSin * flYawCos); + pvecUp->z = (flRollCos * flPitchCos); + } +} + +Matrix3x4_t QAngle_t::ToMatrix(const Vector_t& vecOrigin) const +{ + float flPitchSin, flPitchCos, flYawSin, flYawCos, flRollSin, flRollCos; + DirectX::XMScalarSinCos(&flPitchSin, &flPitchCos, M_DEG2RAD(this->x)); + DirectX::XMScalarSinCos(&flYawSin, &flYawCos, M_DEG2RAD(this->y)); + DirectX::XMScalarSinCos(&flRollSin, &flRollCos, M_DEG2RAD(this->z)); + + return { + (flPitchCos * flYawCos), (flRollSin * flPitchSin * flYawCos + flRollCos * -flYawSin), (flRollCos * flPitchSin * flYawCos + -flRollSin * -flYawSin), vecOrigin.x, + (flPitchCos * flYawSin), (flRollSin * flPitchSin * flYawSin + flRollCos * flYawCos), (flRollCos * flPitchSin * flYawSin + -flRollSin * flYawCos), vecOrigin.y, + (-flPitchSin), (flRollSin * flPitchCos), (flRollCos * flPitchCos), vecOrigin.z + }; +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/qangle.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/qangle.h new file mode 100644 index 0000000..bbfd22e --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/qangle.h @@ -0,0 +1,307 @@ +#pragma once +// used: [crt] isfinite, fmodf, remainderf +#include + +#include "vector.h" + +// used: clamp +#include "../../utilities/crt.h" + +// forward declarations +struct Matrix3x4_t; + +struct QAngle_t +{ + constexpr QAngle_t(float x = 0.f, float y = 0.f, float z = 0.f) : + x(x), y(y), z(z) { } + + constexpr QAngle_t(const float* arrAngles) : + x(arrAngles[0]), y(arrAngles[1]), z(arrAngles[2]) { } + +#pragma region qangle_array_operators + + [[nodiscard]] float& operator[](const int nIndex) + { + return reinterpret_cast(this)[nIndex]; + } + + [[nodiscard]] const float& operator[](const int nIndex) const + { + return reinterpret_cast(this)[nIndex]; + } + +#pragma endregion + +#pragma region qangle_relational_operators + + bool operator==(const QAngle_t& angBase) const + { + return this->IsEqual(angBase); + } + + bool operator!=(const QAngle_t& angBase) const + { + return !this->IsEqual(angBase); + } + +#pragma endregion + +#pragma region qangle_assignment_operators + + constexpr QAngle_t& operator=(const QAngle_t& angBase) + { + this->x = angBase.x; + this->y = angBase.y; + this->z = angBase.z; + return *this; + } + +#pragma endregion + +#pragma region qangle_arithmetic_assignment_operators + + constexpr QAngle_t& operator+=(const QAngle_t& angBase) + { + this->x += angBase.x; + this->y += angBase.y; + this->z += angBase.z; + return *this; + } + + constexpr QAngle_t& operator-=(const QAngle_t& angBase) + { + this->x -= angBase.x; + this->y -= angBase.y; + this->z -= angBase.z; + return *this; + } + + constexpr QAngle_t& operator*=(const QAngle_t& angBase) + { + this->x *= angBase.x; + this->y *= angBase.y; + this->z *= angBase.z; + return *this; + } + + constexpr QAngle_t& operator/=(const QAngle_t& angBase) + { + this->x /= angBase.x; + this->y /= angBase.y; + this->z /= angBase.z; + return *this; + } + + constexpr QAngle_t& operator+=(const float flAdd) + { + this->x += flAdd; + this->y += flAdd; + this->z += flAdd; + return *this; + } + + constexpr QAngle_t& operator-=(const float flSubtract) + { + this->x -= flSubtract; + this->y -= flSubtract; + this->z -= flSubtract; + return *this; + } + + constexpr QAngle_t& operator*=(const float flMultiply) + { + this->x *= flMultiply; + this->y *= flMultiply; + this->z *= flMultiply; + return *this; + } + + constexpr QAngle_t& operator/=(const float flDivide) + { + this->x /= flDivide; + this->y /= flDivide; + this->z /= flDivide; + return *this; + } + +#pragma endregion + +#pragma region qangle_arithmetic_unary_operators + + constexpr QAngle_t& operator-() + { + this->x = -this->x; + this->y = -this->y; + this->z = -this->z; + return *this; + } + + constexpr QAngle_t operator-() const + { + return { -this->x, -this->y, -this->z }; + } + +#pragma endregion + +#pragma region qangle_arithmetic_ternary_operators + + constexpr QAngle_t operator+(const QAngle_t& angAdd) const + { + return { this->x + angAdd.x, this->y + angAdd.y, this->z + angAdd.z }; + } + + constexpr QAngle_t operator-(const QAngle_t& angSubtract) const + { + return { this->x - angSubtract.x, this->y - angSubtract.y, this->z - angSubtract.z }; + } + + constexpr QAngle_t operator*(const QAngle_t& angMultiply) const + { + return { this->x * angMultiply.x, this->y * angMultiply.y, this->z * angMultiply.z }; + } + + constexpr QAngle_t operator/(const QAngle_t& angDivide) const + { + return { this->x / angDivide.x, this->y / angDivide.y, this->z / angDivide.z }; + } + + constexpr QAngle_t operator+(const float flAdd) const + { + return { this->x + flAdd, this->y + flAdd, this->z + flAdd }; + } + + constexpr QAngle_t operator-(const float flSubtract) const + { + return { this->x - flSubtract, this->y - flSubtract, this->z - flSubtract }; + } + + constexpr QAngle_t operator*(const float flMultiply) const + { + return { this->x * flMultiply, this->y * flMultiply, this->z * flMultiply }; + } + + constexpr QAngle_t operator/(const float flDivide) const + { + return { this->x / flDivide, this->y / flDivide, this->z / flDivide }; + } + +#pragma endregion + + // @returns : true if each component of angle is finite, false otherwise + [[nodiscard]] bool IsValid() const + { + return (std::isfinite(this->x) && std::isfinite(this->y) && std::isfinite(this->z)); + } + + /// @returns: true if each component of angle equals to another, false otherwise + [[nodiscard]] bool IsEqual(const QAngle_t& angEqual, const float flErrorMargin = std::numeric_limits::epsilon()) const + { + return (std::fabsf(this->x - angEqual.x) < flErrorMargin && std::fabsf(this->y - angEqual.y) < flErrorMargin && std::fabsf(this->z - angEqual.z) < flErrorMargin); + } + + /// @returns: true if each component of angle equals zero, false otherwise + [[nodiscard]] bool IsZero() const + { + // @test: to make this implementation right, we should use fpclassify here, but game aren't doing same, probably it's better to keep this same, just ensure that it will be compiled same + return (this->x == 0.0f && this->y == 0.0f && this->z == 0.0f); + } + + /// @returns: length of hypotenuse + [[nodiscard]] float Length2D() const + { + return std::sqrtf(x * x + y * y); + } + + /// clamp each angle component by minimal/maximal allowed value for source sdk games + /// @returns: clamped angle + constexpr QAngle_t& Clamp() + { + this->x = std::clamp(this->x, -89.f, 89.f); + this->y = std::clamp(std::remainder(this->y, 360.0f), -180.f, 180.f); + this->z = 0.f; + return *this; + } + + [[nodiscard]] constexpr float DotProduct(const QAngle_t& vecDot) const + { + return (this->x * vecDot.x + this->y * vecDot.y + this->z * vecDot.z); + } + QAngle_t& ToVec3(Vector_t vec) + { + this->x = vec.x; + this->y = vec.y; + this->z = 0.f; + this->Clamp(); + return *this; + } + constexpr QAngle_t& ToVec(Vector_t vec) + { + this->x = vec.x; + this->y = vec.y; + this->z = 0.f; + this->Clamp(); + return *this; + } + QAngle_t& Reset() + { + this->x = 0.f; + this->y = 0.f; + this->z = 0.f; + return *this; + } + [[nodiscard]] constexpr float LengthSqr() const + { + return DotProduct(*this); + } + [[nodiscard]] float Length() const + { + return std::sqrtf(this->LengthSqr()); + } + /// map polar angles to the range of [-180, 180] degrees + /// @returns: normalized angle + QAngle_t& Normalize() + { + this->x = std::remainderf(this->x, 360.f); + this->y = std::remainderf(this->y, 360.f); + this->z = std::remainderf(this->z, 360.f); + return *this; + } + void normalize() { + while (this->y > 180.f) this->y -= 360.f; + while (this->y < -180.f) this->y += 360.f; + + this->x = std::min(std::max(this->x, -89.f), 89.f); + this->z = 0.f; + } + float NormalizeInPlace() + { + const float flLength = this->Length(); + const float flRadius = 1.0f / (flLength + std::numeric_limits::epsilon()); + + this->x *= flRadius; + this->y *= flRadius; + this->z *= flRadius; + + return flLength; + } + QAngle_t Normalizes() const + { + QAngle_t vecOut = *this; + vecOut.NormalizeInPlace(); + return vecOut; + } + + + /// convert angle to direction vectors + /// @param[out] pvecForward [optional] output for converted forward vector + /// @param[out] pvecRight [optional] output for converted right vector + /// @param[out] pvecUp [optional] output for converted up vector + void ToDirections(Vector_t* pvecForward, Vector_t* pvecRight = nullptr, Vector_t* pvecUp = nullptr) const; + + /// @param[in] vecOrigin [optional] origin for converted matrix + /// @returns: matrix converted from angle + [[nodiscard]] Matrix3x4_t ToMatrix(const Vector_t& vecOrigin = {}) const; + +public: + float x = 0.0f, y = 0.0f, z = 0.0f; +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/quaternion.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/quaternion.h new file mode 100644 index 0000000..9524360 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/quaternion.h @@ -0,0 +1,74 @@ +#pragma once + +struct Quaternion_t +{ + constexpr Quaternion_t(const float x = 0.0f, const float y = 0.0f, const float z = 0.0f, const float w = 0.0f) : + x(x), y(y), z(z), w(w) { } + + [[nodiscard]] bool IsValid() const + { + return (std::isfinite(x) && std::isfinite(y) && std::isfinite(z) && std::isfinite(w)); + } + + /// @param[in] vecOrigin [optional] translation for converted matrix + /// @returns: matrix converted from quaternion + [[nodiscard]] Matrix3x4_t ToMatrix(const Vector_t& vecOrigin = {}) const + { + CS_ASSERT(this->IsValid()); + + Matrix3x4_t matOut; + +#ifdef _DEBUG // precalculate common multiplications + const float x2 = this->x + this->x, y2 = this->y + this->y, z2 = this->z + this->z; + const float xx = this->x * x2, xy = this->x * y2, xz = this->x * z2; + const float yy = this->y * y2, yz = this->y * z2; + const float zz = this->z * z2; + const float wx = this->w * x2, wy = this->w * y2, wz = this->w * z2; + + matOut[0][0] = 1.0f - (yy + zz); + matOut[1][0] = xy + wz; + matOut[2][0] = xz - wy; + + matOut[0][1] = xy - wz; + matOut[1][1] = 1.0f - (xx + zz); + matOut[2][1] = yz + wx; + + matOut[0][2] = xz + wy; + matOut[1][2] = yz - wx; + matOut[2][2] = 1.0f - (xx + yy); +#else // let the compiler optimize calculations itself + matOut[0][0] = 1.0f - 2.0f * this->y * this->y - 2.0f * this->z * this->z; + matOut[1][0] = 2.0f * this->x * this->y + 2.0f * this->w * this->z; + matOut[2][0] = 2.0f * this->x * this->z - 2.0f * this->w * this->y; + + matOut[0][1] = 2.0f * this->x * this->y - 2.0f * this->w * this->z; + matOut[1][1] = 1.0f - 2.0f * this->x * this->x - 2.0f * this->z * this->z; + matOut[2][1] = 2.0f * this->y * this->z + 2.0f * this->w * this->x; + + matOut[0][2] = 2.0f * this->x * this->z + 2.0f * this->w * this->y; + matOut[1][2] = 2.0f * this->y * this->z - 2.0f * this->w * this->x; + matOut[2][2] = 1.0f - 2.0f * this->x * this->x - 2.0f * this->y * this->y; +#endif + + matOut[0][3] = vecOrigin.x; + matOut[1][3] = vecOrigin.y; + matOut[2][3] = vecOrigin.z; + return matOut; + } + + float x, y, z, w; +}; + +struct alignas(16) QuaternionAligned_t : Quaternion_t +{ + QuaternionAligned_t& operator=(const Quaternion_t& quatOther) + { + this->x = quatOther.x; + this->y = quatOther.y; + this->z = quatOther.z; + this->w = quatOther.w; + return *this; + } +}; + +static_assert(alignof(QuaternionAligned_t) == 16); \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/repfieldcontainer.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/repfieldcontainer.h new file mode 100644 index 0000000..7b9637e --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/repfieldcontainer.h @@ -0,0 +1 @@ +#pragma once \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/resourcebinding_t.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/resourcebinding_t.hpp new file mode 100644 index 0000000..3b642ee --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/resourcebinding_t.hpp @@ -0,0 +1,52 @@ + + +#include +#include + +#include "utlstring.h" +#include "cinterlockedint.hpp" + +enum EResourceBindingFlags +{ + RESOURCE_BINDING_CACHED = 0x1, + RESOURCE_BINDING_ERROR = 0x2, + RESOURCE_BINDING_PERMANENT = 0x4, + RESOURCE_BINDING_ANONYMOUS = 0x8, +}; + +struct ResourceBindingBase_t +{ + void* pData = nullptr; + CUtlString* pResourceName = nullptr; + std::uint32_t uFlags = 0; + std::uint8_t uResourceType = -1; + CInterlockedIntT< std::uint32_t > uRefCount = 0; +}; + +template< typename tResource > +struct ResourceBinding_t + : public ResourceBindingBase_t +{ + template< class tValue > + friend class CStrongHandle; + + template< class tValue > + friend int ResourceAddRef( const ResourceBinding_t< tValue >* pResource ) noexcept; + + template< class tValue > + friend int ResourceRelease( const ResourceBinding_t< tValue >* pResource ) noexcept; +}; + +template< class tValue > +int ResourceAddRef( const ResourceBinding_t< tValue >* pResource ) noexcept +{ + return ++pResource->uRefCount; +} + +template< class tValue > +int ResourceRelease( const ResourceBinding_t< tValue >* pResource ) noexcept +{ + return --pResource->uRefCount; +} + +using ResourceHandle_t = ResourceBindingBase_t*; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/resourceutils.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/resourceutils.h new file mode 100644 index 0000000..d2ad2c9 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/resourceutils.h @@ -0,0 +1,24 @@ +#pragma once + +// used: callvfunc +#include "../../utilities/memory.h" + +struct ResourceBinding_t; + +class IResourceSystem +{ +public: + void* QueryInterface(const char* szInterfaceName) + { + return MEM::CallVFunc(this, szInterfaceName); + } +}; + +class CResourceHandleUtils +{ +public: + void DeleteResource(const ResourceBinding_t* pBinding) + { + MEM::CallVFunc(this, pBinding); + } +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/stronghandle.hpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/stronghandle.hpp new file mode 100644 index 0000000..443856d --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/stronghandle.hpp @@ -0,0 +1,30 @@ +#pragma once + +struct Resource_t +{ + void* pData; +}; + +template +class stronghandle +{ +public: + operator T* () const + { + if (pBinding == nullptr) + return nullptr; + + return static_cast(pBinding->pData); + } + + T* operator->() const + { + if (pBinding == nullptr) + return nullptr; + + return static_cast(pBinding->pData); + } + + const Resource_t* pBinding; +}; + diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/transform.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/transform.h new file mode 100644 index 0000000..54b387f --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/transform.h @@ -0,0 +1,15 @@ +#pragma once + +// used: matResult +#include "matrix.h" +// used: quaternion +#include "quaternion.h" + +class CTransform +{ +public: + VectorAligned_t vecPosition; + QuaternionAligned_t quatOrientation; +}; + +static_assert(alignof(CTransform) == 16); diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/usercmd.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/usercmd.h new file mode 100644 index 0000000..d3cc89a --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/usercmd.h @@ -0,0 +1,245 @@ +#pragma once + +template +struct RepeatedPtrField_t +{ + struct Rep_t + { + int m_nAllocatedSize; // 0x0 + T* m_tElements[(std::numeric_limits::max() - 2 * sizeof(int)) / sizeof(void*)]; // 0x8 + }; + + uint64_t unk_field_; + int m_nCurrentSize; // 0x18 + int m_nTotalSize; // 0x1C + Rep_t* m_pRep; // 0x20 + + template + inline T* add(T* element) + { + static const auto sub_C92EF0 = MEM::FindPattern(CLIENT_DLL, CS_XOR("48 89 5C 24 ? 57 48 83 EC ? 48 8B D9 48 8B FA 48 8B 49 ? 48 85 C9 74 ? 8B 01")); + return reinterpret_cast(sub_C92EF0)(this, element); + } + + inline uint64_t unk_field() { + return unk_field_; + } + + inline int& size() { + return m_nCurrentSize; + } + + inline int& max_size() { + return m_pRep->m_nAllocatedSize; + } + + inline T*& operator[](int i) { + return m_pRep->m_tElements[i]; + } + + inline operator bool() { + return m_pRep != nullptr; + } +}; + +// @source: master/game/shared/in_buttons.h +enum ECommandButtons : int +{ + IN_ATTACK = (1 << 0), + IN_JUMP = (1 << 1), + IN_DUCK = (1 << 2), + IN_FORWARD = (1 << 3), + IN_BACK = (1 << 4), + IN_USE = (1 << 5), + IN_CANCEL = (1 << 6), + IN_LEFT = (1 << 7), + IN_RIGHT = (1 << 8), + IN_MOVELEFT = (1 << 9), + IN_MOVERIGHT = (1 << 10), + IN_SECOND_ATTACK = (1 << 11), + IN_RUN = (1 << 12), + IN_RELOAD = (1 << 13), + IN_LEFT_ALT = (1 << 14), + IN_RIGHT_ALT = (1 << 15), + IN_SCORE = (1 << 16), + IN_SPEED = (1 << 17), + IN_WALK = (1 << 18), + IN_ZOOM = (1 << 19), + IN_FIRST_WEAPON = (1 << 20), + IN_SECOND_WEAPON = (1 << 21), + IN_BULLRUSH = (1 << 22), + IN_FIRST_GRENADE = (1 << 23), + IN_SECOND_GRENADE = (1 << 24), + IN_MIDDLE_ATTACK = (1 << 25), + IN_USE_OR_RELOAD = (1 << 26) +}; + +class CBasePB +{ +public: + void* pVTable; // 0x0 + std::uint32_t m_nHasBits; // 0x8 + std::uint64_t m_nCachedBits; // 0xC +}; +static_assert(sizeof(CBasePB) == 0x18); + +class CMsgQAngle : public CBasePB +{ +public: + QAngle_t m_angValue; // 0x18 +}; + +class CMsgVector : public CBasePB +{ +public: + Vector4D_t m_vecValue; // 0x18 +}; + +class CCSGOInterpolationInfoPB : public CBasePB +{ +public: + float m_flFraction; // 0x18 + int m_nSrcTick; // 0x1C + int m_nDstTick; // 0x20 +}; + +class CCSGOInputHistoryEntryPB : public CBasePB +{ +public: + CMsgQAngle* m_pViewCmd; // 0x18 + CMsgVector* m_pShootOriginCmd; // 0x20 + CMsgVector* m_pTargetHeadOriginCmd; // 0x28 + CMsgVector* m_pTargetAbsOriginCmd; // 0x30 + CMsgQAngle* m_pTargetViewCmd; // 0x38 + CCSGOInterpolationInfoPB* m_cl_interp; // 0x40 + CCSGOInterpolationInfoPB* m_sv_interp0; // 0x48 + CCSGOInterpolationInfoPB* m_sv_interp1; // 0x50 + CCSGOInterpolationInfoPB* m_player_interp; // 0x58 + int m_nRenderTickCount; // 0x60 + float m_flRenderTickFraction; // 0x64 + int m_nPlayerTickCount; // 0x68 + float m_flPlayerTickFraction; // 0x6C + int m_nFrameNumber; // 0x70 + int m_nTargetEntIndex; // 0x74 +}; + +struct CInButtonStatePB : CBasePB +{ + uint64_t m_nValue; // 0x18 + uint64_t m_nValueChanged; // 0x20 + uint64_t m_nValueScroll; // 0x28 +}; +static_assert(sizeof(CInButtonStatePB) == 0x30); + +struct CSubtickMoveStep : CBasePB +{ + uint64_t nButton; // 0x18 + bool bPressed; // 0x20 + float flWhen; // 0x24 + float flAnalogForwardDelta; // 0x28 + float flAnalogLeftDelta; // 0x2C +}; + + +class CBaseUserCmdPB : public CBasePB +{ +public: + RepeatedPtrField_t m_subtickMovesField; // 0x18 + const char* m_szMoveCrc; // 0x20 + CInButtonStatePB* m_pInButtonState; // 0x28 + CMsgQAngle* m_pViewangles; // 0x30 + int32_t m_nCommandNumber; // 0x38 + int32_t m_nTickCount; // 0x3C + float m_flForwardMove; // 0x40 + float m_flSideMove; // 0x44 + float m_flUpMove; // 0x48 + int32_t m_nImpulse; // 0x4C + int32_t m_nWeaponSelect; // 0x50 + int32_t m_nRandomSeed; // 0x54 + int32_t m_nMousedX; // 0x58 + int32_t m_nMousedY; // 0x5C + uint32_t m_nConsumedServerAngleChanges; // 0x60 + int m_nCmdFlags; // 0x64 + uint32_t m_nPawnEntityHandle; // 0x68 + char pad_007D[3]; //0x007D + + CSubtickMoveStep* AddSubTickMove(); +}; + +class CCSGOUserCmdPB +{ +public: + std::uint32_t m_nHasBits; // 0x0 + std::uint64_t m_nCachedSize; // 0x8 + RepeatedPtrField_t m_inputHistoryField; // 0x10 + CBaseUserCmdPB* m_pBaseCmd; // 0x18 + int32_t m_nAttack3StartHhistoryIndex; // 0x20 + int32_t m_nAttack1StartHhistoryIndex; // 0x24 + int32_t m_nAttack2StartHhistoryIndex; // 0x28 +}; + + +struct CInButtonState +{ + void* pVTable; // 0x0 + uint64_t m_nValue; // 0x8 + uint64_t m_nValueChanged; // 0x10 + uint64_t m_nValueScroll; // 0x18 +}; +static_assert(sizeof(CInButtonStatePB) == 0x30); + +class CUserCmd +{ +public: + void* pVTable; // 0x0 + CCSGOUserCmdPB m_csgoUserCmd; // 0x20 + CInButtonState m_nButtons; // 0x30 + MEM_PAD(0x20); // 0x48 + CSubtickMoveStep* GetSubTickMoveStep(int nIndex) + { + if (nIndex >= m_csgoUserCmd.m_pBaseCmd->m_subtickMovesField.m_pRep->m_nAllocatedSize) + return nullptr; + + return m_csgoUserCmd.m_pBaseCmd->m_subtickMovesField.m_pRep->m_tElements[nIndex]; + } + CCSGOInputHistoryEntryPB* GetInputHistoryEntry(int nIndex) + { + if (nIndex >= m_csgoUserCmd.m_inputHistoryField.m_pRep->m_nAllocatedSize) + return nullptr; + + return m_csgoUserCmd.m_inputHistoryField.m_pRep->m_tElements[nIndex]; + } + void SetPlayerTickCount() { + for (int i = 0; i < this->m_csgoUserCmd.m_inputHistoryField.m_pRep->m_nAllocatedSize; i++) + { + CCSGOInputHistoryEntryPB* pInputEntry = this->GetInputHistoryEntry(i); + if (pInputEntry == nullptr) + continue; + + if (pInputEntry->m_pViewCmd == nullptr) + continue; + + pInputEntry->m_nPlayerTickCount = 0; + } + } + void SetSubTickAngle(const QAngle_t& angView) + { + for (int i = 0; i < this->m_csgoUserCmd.m_inputHistoryField.m_pRep->m_nAllocatedSize; i++) + { + CCSGOInputHistoryEntryPB* pInputEntry = this->GetInputHistoryEntry(i); + if (pInputEntry == nullptr) + continue; + + if (pInputEntry->m_pViewCmd == nullptr) + continue; + + pInputEntry->m_pViewCmd->m_angValue = angView; + } + } + void AdjustAttackStartIndex(int nTick) { + this->m_csgoUserCmd.m_nAttack1StartHhistoryIndex = nTick; + this->m_csgoUserCmd.m_nAttack2StartHhistoryIndex = nTick; + this->m_csgoUserCmd.m_nAttack3StartHhistoryIndex = nTick; + } +}; +static_assert(sizeof(CUserCmd) == 0x88); \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlfixedmemory.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlfixedmemory.h new file mode 100644 index 0000000..3f83f5b --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlfixedmemory.h @@ -0,0 +1,234 @@ +#pragma once +#include "../../common.h" + +// @test: using interfaces in the header | not critical but could blow up someday with thousands of errors or affect to compilation time etc +// used: interface handles +#include "../../core/interfaces.h" +// used: interface declarations +#include "../interfaces/imemalloc.h" + +// @source: master/public/tier1/utlfixedmemory.h + +template +class CUtlFixedMemory +{ +protected: + struct BlockHeader_t + { + BlockHeader_t* pNext; + std::intptr_t nBlockSize; + }; + +public: + class Iterator_t + { + public: + Iterator_t(BlockHeader_t* pBlockHeader, const std::intptr_t nIndex) : + pBlockHeader(pBlockHeader), nIndex(nIndex) { } + + bool operator==(const Iterator_t it) const + { + return pBlockHeader == it.pBlockHeader && nIndex == it.nIndex; + } + + bool operator!=(const Iterator_t it) const + { + return pBlockHeader != it.pBlockHeader || nIndex != it.nIndex; + } + + BlockHeader_t* pBlockHeader; + std::intptr_t nIndex; + }; + + CUtlFixedMemory(const int nGrowSize = 0, const int nInitAllocationCount = 0) : + pBlocks(nullptr), nAllocationCount(0), nGrowSize(nGrowSize) + { + Purge(); + Grow(nInitAllocationCount); + } + + ~CUtlFixedMemory() + { + Purge(); + } + + CS_CLASS_NO_ASSIGNMENT(CUtlFixedMemory) + + [[nodiscard]] T* Base() + { + return nullptr; + } + + [[nodiscard]] const T* Base() const + { + return nullptr; + } + + T& operator[](std::intptr_t nIndex) + { + CS_ASSERT(IsValidIndex(nIndex)); + return *reinterpret_cast(nIndex); + } + + const T& operator[](std::intptr_t nIndex) const + { + CS_ASSERT(IsValidIndex(nIndex)); + return *reinterpret_cast(nIndex); + } + + [[nodiscard]] T& Element(const std::intptr_t nIndex) + { + CS_ASSERT(IsValidIndex(nIndex)); + return *reinterpret_cast(nIndex); + } + + [[nodiscard]] const T& Element(const std::intptr_t nIndex) const + { + CS_ASSERT(IsValidIndex(nIndex)); + return *reinterpret_cast(nIndex); + } + + [[nodiscard]] Iterator_t First() const + { + return (pBlocks != nullptr ? Iterator_t(pBlocks, InvalidIndex()) : InvalidIterator()); + } + + [[nodiscard]] Iterator_t Next(const Iterator_t& it) const + { + if (!IsValidIterator(it)) + return InvalidIterator(); + + BlockHeader_t* pHeader = it.pBlockHeader; + + if (it.nIndex + 1 < pHeader->nBlockSize) + return Iterator_t(pHeader, it.nIndex + 1); + + return (pHeader->pNext != nullptr ? Iterator_t(pHeader->pNext, InvalidIndex()) : InvalidIterator()); + } + + [[nodiscard]] std::intptr_t GetIndex(const Iterator_t& it) const + { + if (!IsValidIterator(it)) + return InvalidIndex(); + + return reinterpret_cast(HeaderToBlock(it.pBlockHeader) + it.nIndex); + } + + [[nodiscard]] bool IsIndexAfter(std::intptr_t nIndex, const Iterator_t& it) const + { + if (!IsValidIterator(it)) + return false; + + if (IsInBlock(nIndex, it.pBlockHeader)) + return nIndex > GetIndex(it); + + for (BlockHeader_t* pBlockHeader = it.pBlockHeader->pNext; pBlockHeader != nullptr; pBlockHeader = pBlockHeader->pNext) + { + if (IsInBlock(nIndex, pBlockHeader)) + return true; + } + + return false; + } + + [[nodiscard]] bool IsValidIterator(const Iterator_t& it) const + { + return it.pBlockHeader != nullptr && it.nIndex >= 0 && it.nIndex < it.pBlockHeader->nBlockSize; + } + + [[nodiscard]] Iterator_t InvalidIterator() const + { + return Iterator_t(nullptr, InvalidIndex()); + } + + [[nodiscard]] bool IsValidIndex(const std::intptr_t nIndex) const + { + return nIndex != InvalidIndex(); + } + + [[nodiscard]] static std::intptr_t InvalidIndex() + { + return 0; + } + + [[nodiscard]] int Count() const + { + return nAllocationCount; + } + + void EnsureCapacity(const int nCapacity) + { + Grow(nCapacity - Count()); + } + + void Grow(const int nCount = 1) + { + if (nCount <= 0) + return; + + int nBlockSize = (nGrowSize == 0 ? (nAllocationCount > 0 ? nAllocationCount : (31 + sizeof(T)) / sizeof(T)) : nGrowSize); + + if (nBlockSize < nCount) + nBlockSize *= (nCount + nBlockSize - 1) / nBlockSize; + + nAllocationCount += nBlockSize; + + BlockHeader_t* pNewBlockHeader = static_cast(I::MemAlloc->Alloc(sizeof(BlockHeader_t) + nBlockSize * sizeof(T))); + CS_ASSERT(pNewBlockHeader != nullptr); // container overflow + + pNewBlockHeader->pNext = nullptr; + pNewBlockHeader->nBlockSize = nBlockSize; + + if (pBlocks == nullptr) + pBlocks = pNewBlockHeader; + else + { + BlockHeader_t* pBlockHeader = pBlocks; + + while (pBlockHeader->pNext != nullptr) + pBlockHeader = pBlockHeader->pNext; + + pBlockHeader->pNext = pNewBlockHeader; + } + } + + void Purge() + { + if (pBlocks == nullptr) + return; + + for (BlockHeader_t* pBlockHeader = pBlocks; pBlockHeader != nullptr;) + { + BlockHeader_t* pFree = pBlockHeader; + pBlockHeader = pBlockHeader->pNext; + I::MemAlloc->Free(pFree); + } + + pBlocks = nullptr; + nAllocationCount = 0; + } + +protected: + [[nodiscard]] bool IsInBlock(std::intptr_t nIndex, BlockHeader_t* pBlockHeader) const + { + T* pCurrent = reinterpret_cast(nIndex); + const T* pStart = HeaderToBlock(pBlockHeader); + const T* pEnd = pStart + pBlockHeader->nBlockSize; + + return (pCurrent >= pStart && pCurrent < pEnd); + } + + [[nodiscard]] const T* HeaderToBlock(const BlockHeader_t* pHeader) const + { + return reinterpret_cast(pHeader + 1); + } + + [[nodiscard]] const BlockHeader_t* BlockToHeader(const T* pBlock) const + { + return reinterpret_cast(pBlock) - 1; + } + + BlockHeader_t* pBlocks; + int nAllocationCount; + int nGrowSize; +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utllinkedlist.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utllinkedlist.h new file mode 100644 index 0000000..b054ddc --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utllinkedlist.h @@ -0,0 +1,347 @@ +#pragma once +#include "utlmemory.h" +#include "utlfixedmemory.h" + +// @source: master/public/tier1/utllinkedlist.h + +template +struct UtlLinkedListElement_t +{ + UtlLinkedListElement_t(const UtlLinkedListElement_t&) = delete; + + T element; + I iPrevious; + I iNext; +}; + +template , I>> +class CUtlLinkedList +{ +public: + using ElemType_t = T; + using IndexType_t = S; + using IndexLocalType_t = I; + using MemoryAllocator_t = M; + + template + class ConstIterator_t + { + public: + typedef typename List_t::ElemType_t ElemType_t; + typedef typename List_t::IndexType_t IndexType_t; + + ConstIterator_t() : + pList(nullptr), nIndex(List_t::InvalidIndex()) { } + + ConstIterator_t(const List_t& list, IndexType_t nIndex) : + pList(&list), nIndex(nIndex) { } + + ConstIterator_t& operator++() + { + nIndex = pList->Next(nIndex); + return *this; + } + + ConstIterator_t operator++(int) + { + ConstIterator_t pCopy = *this; + ++(*this); + return pCopy; + } + + ConstIterator_t& operator--() + { + CS_ASSERT(nIndex != pList->Head()); + nIndex = (nIndex == pList->InvalidIndex() ? pList->Tail() : pList->Previous(nIndex)); + return *this; + } + + ConstIterator_t operator--(int) + { + ConstIterator_t pCopy = *this; + --(*this); + return pCopy; + } + + bool operator==(const ConstIterator_t& other) const + { + CS_ASSERT(pList == other.pList); + return nIndex == other.nIndex; + } + + bool operator!=(const ConstIterator_t& other) const + { + CS_ASSERT(pList == other.pList); + return nIndex != other.nIndex; + } + + const ElemType_t& operator*() const + { + return pList->Element(nIndex); + } + + const ElemType_t* operator->() const + { + return (&**this); + } + + protected: + const List_t* pList; + IndexType_t nIndex; + }; + + template + class Iterator_t : public ConstIterator_t + { + public: + using ElemType_t = typename List_t::ElemType_t; + using IndexType_t = typename List_t::IndexType_t; + using Base_t = ConstIterator_t; + + Iterator_t() { } + + Iterator_t(const List_t& list, IndexType_t nIndex) : + ConstIterator_t(list, nIndex) { } + + Iterator_t& operator++() + { + Base_t::nIndex = Base_t::pList->Next(Base_t::nIndex); + return *this; + } + + Iterator_t operator++(int) + { + Iterator_t pCopy = *this; + ++(*this); + return pCopy; + } + + Iterator_t& operator--() + { + Base_t::nIndex = (Base_t::nIndex == Base_t::pList->InvalidIndex() ? Base_t::pList->Tail() : Base_t::pList->Previous(Base_t::nIndex)); + return *this; + } + + Iterator_t operator--(int) + { + Iterator_t pCopy = *this; + --(*this); + return pCopy; + } + + ElemType_t& operator*() const + { + List_t* pMutableList = const_cast(Base_t::pList); + return pMutableList->Element(Base_t::nIndex); + } + + ElemType_t* operator->() const + { + return (&**this); + } + }; + + CUtlLinkedList(int nGrowSize = 0, int nSize = 0) : + memory(nGrowSize, nSize), iHead(InvalidIndex()), iTail(InvalidIndex()), iFirstFree(InvalidIndex()), nElementCount(0), nAllocated(0), itLastAlloc(memory.InvalidIterator()), pElements(memory.Base()) { } + + ~CUtlLinkedList() + { + RemoveAll(); + } + + CUtlLinkedList(const CUtlLinkedList&) = delete; + CUtlLinkedList& operator=(const CUtlLinkedList&) = delete; + + T& operator[](const I nIndex) + { + CS_ASSERT(IsValidIndex(nIndex)); + return memory[nIndex].element; + } + + const T& operator[](const I nIndex) const + { + CS_ASSERT(IsValidIndex(nIndex)); + return memory[nIndex].element; + } + + [[nodiscard]] T& Element(const I nIndex) + { + CS_ASSERT(IsValidIndex(nIndex)); + return memory[nIndex].element; + } + + [[nodiscard]] const T& Element(const I nIndex) const + { + CS_ASSERT(IsValidIndex(nIndex)); + return memory[nIndex].element; + } + + [[nodiscard]] I Head() const + { + return iHead; + } + + [[nodiscard]] I Tail() const + { + return iTail; + } + + [[nodiscard]] I Previous(const I nIndex) const + { + CS_ASSERT(IsValidIndex(nIndex)); + return InternalElement(nIndex).iPrevious; + } + + [[nodiscard]] I Next(const I nIndex) const + { + CS_ASSERT(IsValidIndex(nIndex)); + return InternalElement(nIndex).iNext; + } + + [[nodiscard]] static S InvalidIndex() + { + return static_cast(M::InvalidIndex()); + } + + [[nodiscard]] bool IsValidIndex(const I nIndex) const + { + if (!memory.IsValidIndex(nIndex)) + return false; + + if (memory.IsIndexAfter(nIndex, itLastAlloc)) + return false; // don't read values that have been allocated, but not constructed + + return (memory[nIndex].iPrevious != nIndex) || (memory[nIndex].iNext == nIndex); + } + + [[nodiscard]] static bool IsIndexInRange(I nIndex) + { + static_assert(sizeof(I) >= sizeof(S)); + static_assert(sizeof(S) > 2 || static_cast(-1) > 0); + static_assert(M::InvalidIndex() == -1 || M::InvalidIndex() == static_cast(M::InvalidIndex())); + + return (static_cast(nIndex) == nIndex && static_cast(nIndex) != InvalidIndex()); + } + + [[nodiscard]] I Find(const T& source) const + { + for (I i = iHead; i != InvalidIndex(); i = Next(i)) + { + if (Element(i) == source) + return i; + } + + return InvalidIndex(); + } + + void RemoveAll() + { + if (itLastAlloc == memory.InvalidIterator()) + { + CS_ASSERT(iHead == InvalidIndex() && iTail == InvalidIndex() && iFirstFree == InvalidIndex() && nElementCount == 0); + return; + } + + if constexpr (ML) + { + for (typename M::Iterator_t it = memory.First(); it != memory.InvalidIterator(); it = memory.Next(it)) + { + I i = memory.GetIndex(it); + + // skip elements already in the free list + if (IsValidIndex(i)) + { + ListElement_t& internalElement = InternalElement(i); + (&internalElement.element)->~T(); + internalElement.iPrevious = i; + internalElement.iNext = iFirstFree; + iFirstFree = i; + } + + // don't destruct elements that haven't ever been constructed + if (it == itLastAlloc) + break; + } + } + else + { + I i = iHead, iNext; + while (i != InvalidIndex()) + { + ListElement_t& internalElement = InternalElement(i); + (&internalElement.element)->~T(); + + internalElement.iPrevious = i; + iNext = Next(i); + internalElement.iNext = iNext == InvalidIndex() ? iFirstFree : iNext; + i = iNext; + } + + if (iHead != InvalidIndex()) + iFirstFree = iHead; + } + + // clear everything else out + iHead = InvalidIndex(); + iTail = InvalidIndex(); + nElementCount = 0; + } + + [[nodiscard]] auto begin() const + { + return ConstIterator_t>(*this, Head()); + } + + [[nodiscard]] auto begin() + { + return Iterator_t>(*this, Head()); + } + + [[nodiscard]] auto end() const + { + return ConstIterator_t>(*this, InvalidIndex()); + } + + [[nodiscard]] auto end() + { + return Iterator_t>(*this, InvalidIndex()); + } + +protected: + using ListElement_t = UtlLinkedListElement_t; + + [[nodiscard]] ListElement_t& InternalElement(const I nIndex) + { + return memory[nIndex]; + } + + [[nodiscard]] const ListElement_t& InternalElement(const I nIndex) const + { + return memory[nIndex]; + } + + M memory; + I iHead; + I iTail; + I iFirstFree; + I nElementCount; + I nAllocated; + typename M::Iterator_t itLastAlloc; + ListElement_t* pElements; +}; + +template +class CUtlFixedLinkedList : public CUtlLinkedList>> +{ +public: + CUtlFixedLinkedList(int nGrowSize = 0, int nInitAllocationCount = 0) : + CUtlLinkedList>>(nGrowSize, nInitAllocationCount) { } + + [[nodiscard]] bool IsValidIndex(std::intptr_t nIndex) const + { + if (!this->memory.IsIndexValid(nIndex)) + return false; + + return (this->memory[nIndex].iPrevious != nIndex) || (this->memory[nIndex].iNext == nIndex); + } +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlmap.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlmap.h new file mode 100644 index 0000000..3432a64 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlmap.h @@ -0,0 +1,41 @@ +#pragma once +#include "utlrbtree.h" +#include + +// @source: master/public/tier1/utlmap.h +template +class CUtlMap { +public: + struct Node_t { + int m_left; + int m_right; + int m_parent; + int m_tag; + K m_key; + V m_value; + }; + + auto begin() const { return m_data; } + auto end() const { return m_data + m_size; } + + std::optional FindByKey(K key) const { + int current = m_root; + while (current != -1) { + const Node_t& element = m_data[current]; + if (element.m_key < key) + current = element.m_right; + else if (element.m_key > key) + current = element.m_left; + else + return element.m_value; + } + return {}; + } + + char pad0[0x8]; // no idea + Node_t* m_data; + char pad1[0x8]; // no idea + int m_root; + int m_size; + char pad2[0x8]; // no idea +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlmemory.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlmemory.h new file mode 100644 index 0000000..38f1f36 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlmemory.h @@ -0,0 +1,663 @@ +#pragma once +// used: memorycopy +#include "../../utilities/crt.h" +// @test: using interfaces in the header | not critical but could blow up someday with thousands of errors or affect to compilation time etc +// used: interface handles +#include "../../core/interfaces.h" +// used: interface declarations +#include "../interfaces/imemalloc.h" +#pragma warning (disable:4100) +#pragma warning (disable:4514) +// @source: master/public/tier1/utlmemory.h +// Swap two of anything. +template +inline void V_swap(T& x, T& y) +{ + T temp = x; + x = y; + y = temp; +} + +template +class CUtlMemory +{ + enum + { + EXTERNAL_BUFFER_MARKER = -1, + EXTERNAL_CONST_BUFFER_MARKER = -2, + }; + +public: + class Iterator_t + { + public: + Iterator_t(const N nIndex) : + nIndex(nIndex) { } + + bool operator==(const Iterator_t it) const + { + return nIndex == it.nIndex; + } + + bool operator!=(const Iterator_t it) const + { + return nIndex != it.nIndex; + } + + N nIndex; + }; + + // constructor, destructor + + + CUtlMemory() : + pMemory(nullptr), nAllocationCount(0), nGrowSize(0) { } + + CUtlMemory& operator=(const CUtlMemory& rhs) + { + if (this != &rhs) + { + // ... copy other members ... + pMemory = rhs.pMemory; // Use the assignment operator of CUtlMemory + } + return *this; + } + CUtlMemory(const int nInitialGrowSize, const int nAllocationCount) : + pMemory(nullptr), nAllocationCount(nAllocationCount), nGrowSize(nInitialGrowSize) + { + + if (nAllocationCount > 0) + pMemory = static_cast(I::MemAlloc->Alloc(nAllocationCount * sizeof(T))); + } + + CUtlMemory(T* pMemory, const int nElements) : + pMemory(pMemory), nAllocationCount(nElements), nGrowSize(EXTERNAL_BUFFER_MARKER) { } + + CUtlMemory(T* pMemory, const void* pElements, size_t size) : + pMemory(pMemory), nAllocationCount(static_cast(pElements / sizeof(T))), nGrowSize(size) // You may need to set nGrowSize appropriately + { + // Assuming nElements points to the start of the memory block to be copied + if (pElements != nullptr) + { + CRT::MemoryCopy(pMemory, pElements, size); + } + } + + ~CUtlMemory() + { + Purge(); + } + template + inline CUtlMemory(CUtlMemory&& moveFrom) + { + moveFrom.pMemory = nullptr; + moveFrom.nAllocationCount = 0; + moveFrom.nGrowSize = 0; + } + + template + inline CUtlMemory& operator=(CUtlMemory&& moveFrom) + { + // copy member variables to locals before purge to handle self-assignment + T* pMemoryTemp = moveFrom.pMemory; + const int nAllocationCountTemp = moveFrom.nAllocationCount; + const int nGrowSizeTemp = moveFrom.nGrowSize; + + moveFrom.pMemory = nullptr; + moveFrom.nAllocationCount = 0; + moveFrom.nGrowSize = 0; + + // if this is a self-assignment, Purge() is a no-op here + Purge(); + + pMemory = pMemoryTemp; + nAllocationCount = nAllocationCountTemp; + nGrowSize = nGrowSizeTemp; + return *this; + } + /* + CUtlMemory(CUtlMemory&& moveFrom) + { + moveFrom.pMemory = nullptr; + moveFrom.nAllocationCount = 0; + moveFrom.nGrowSize = 0; + } + CUtlMemory(const CUtlMemory&) = delete; + + + + CUtlMemory& operator=(CUtlMemory&& moveFrom) + { + // copy member variables to locals before purge to handle self-assignment + T* pMemoryTemp = moveFrom.pMemory; + const int nAllocationCountTemp = moveFrom.nAllocationCount; + const int nGrowSizeTemp = moveFrom.nGrowSize; + + moveFrom.pMemory = nullptr; + moveFrom.nAllocationCount = 0; + moveFrom.nGrowSize = 0; + + // if this is a self-assignment, Purge() is a no-op here + Purge(); + + pMemory = pMemoryTemp; + nAllocationCount = nAllocationCountTemp; + nGrowSize = nGrowSizeTemp; + return *this; + }*/ + + [[nodiscard]] T& operator[](const N nIndex) + { + return pMemory[nIndex]; + } + + [[nodiscard]] const T& operator[](const N nIndex) const + { + return pMemory[nIndex]; + } + + [[nodiscard]] T& Element(const N nIndex) + { + return pMemory[nIndex]; + } + + [[nodiscard]] const T& Element(const N nIndex) const + { + return pMemory[nIndex]; + } + + [[nodiscard]] T* Base() + { + return pMemory; + } + + [[nodiscard]] const T* Base() const + { + return pMemory; + } + + [[nodiscard]] int AllocationCount() const + { + return nAllocationCount; + } + int AllocationNum() const + { + return nAllocationCount; + } + + + + [[nodiscard]] bool IsExternallyAllocated() const + { + return nGrowSize <= EXTERNAL_BUFFER_MARKER; + } + + [[nodiscard]] static N InvalidIndex() + { + return static_cast(-1); + } + + [[nodiscard]] bool IsValidIndex(N nIndex) const + { + return (nIndex >= 0) && (nIndex < nAllocationCount); + } + + [[nodiscard]] Iterator_t First() const + { + return Iterator_t(IsValidIndex(0) ? 0 : InvalidIndex()); + } + + [[nodiscard]] Iterator_t Next(const Iterator_t& it) const + { + return Iterator_t(IsValidIndex(it.nIndex + 1) ? it.nIndex + 1 : InvalidIndex()); + } + + + [[nodiscard]] N GetIndex(const Iterator_t& it) const + { + return it.nIndex; + } + + [[nodiscard]] bool IsIndexAfter(N nIndex, const Iterator_t& it) const + { + return nIndex > it.nIndex; + } + + [[nodiscard]] bool IsValidIterator(const Iterator_t& it) const + { + return IsValidIndex(it.index); + } + + [[nodiscard]] Iterator_t InvalidIterator() const + { + return Iterator_t(InvalidIndex()); + } + + void Grow(const int nCount = 1) + { + if (IsExternallyAllocated()) + return; + + int nAllocationRequested = nAllocationCount + nCount; + int nNewAllocationCount = 0; + + if (nGrowSize) + nAllocationCount = ((1 + ((nAllocationRequested - 1) / nGrowSize)) * nGrowSize); + else + { + if (nAllocationCount == 0) + nAllocationCount = (31 + sizeof(T)) / sizeof(T); + + while (nAllocationCount < nAllocationRequested) + nAllocationCount <<= 1; + } + + if (static_cast(static_cast(nNewAllocationCount)) < nAllocationRequested) + { + if (static_cast(static_cast(nNewAllocationCount)) == 0 && static_cast(static_cast(nNewAllocationCount - 1)) >= nAllocationRequested) + --nNewAllocationCount; + else + { + if (static_cast(static_cast(nAllocationRequested)) != nAllocationRequested) + return; + + while (static_cast(static_cast(nNewAllocationCount)) < nAllocationRequested) + nNewAllocationCount = (nNewAllocationCount + nAllocationRequested) / 2; + } + } + + nAllocationCount = nNewAllocationCount; + + // @test: we can always call realloc, since it must allocate instead when passed null ptr + if (pMemory != nullptr) + pMemory = static_cast(I::MemAlloc->ReAlloc(pMemory, nAllocationCount * sizeof(T))); + else + pMemory = static_cast(I::MemAlloc->Alloc(nAllocationCount * sizeof(T))); + } + + void EnsureCapacity(const int nCapacity) + { + if (nAllocationCount >= nCapacity) + return; + + if (IsExternallyAllocated()) + { + // can't grow a buffer whose memory was externally allocated + CS_ASSERT(false); + return; + } + + nAllocationCount = nCapacity; + + // @test: we can always call realloc, since it must allocate instead when passed null ptr + if (pMemory != nullptr) + pMemory = static_cast(I::MemAlloc->ReAlloc(pMemory, nAllocationCount * sizeof(T))); + else + pMemory = static_cast(I::MemAlloc->Alloc(nAllocationCount * sizeof(T))); + } + + void ConvertToGrowableMemory(int nInitialGrowSize) + { + if (!IsExternallyAllocated()) + return; + + nGrowSize = nInitialGrowSize; + + if (nAllocationCount > 0) + { + const int nByteCount = nAllocationCount * sizeof(T); + T* pGrowableMemory = static_cast(I::MemAlloc->Alloc(nByteCount)); + CRT::MemoryCopy(pGrowableMemory, pMemory, nByteCount); + pMemory = pGrowableMemory; + } + else + pMemory = nullptr; + } + + void Purge() + { + if (IsExternallyAllocated()) + return; + + if (pMemory != nullptr) + { + I::MemAlloc->Free(static_cast(pMemory)); + pMemory = nullptr; + } + + nAllocationCount = 0; + } + void Init(size_t nGrowSize, size_t nInitSize); + + void SetExternalBuffer(T* pMemory, size_t numElements); + + void AssumeMemory(T* pMemory, size_t numElements); + + void* DetachMemory(); + + T* Detach(); + + CUtlMemory(const T* pMemory, size_t numElements); + + void Swap(CUtlMemory< T, N >& mem); + + void Purge(const int nElements) + { + CS_ASSERT(nElements >= 0); + + if (nElements > nAllocationCount) + { + // ensure this isn't a grow request in disguise + CS_ASSERT(nElements <= nAllocationCount); + return; + } + + if (nElements == 0) + { + Purge(); + return; + } + + if (IsExternallyAllocated() || nElements == nAllocationCount) + return; + + if (pMemory == nullptr) + { + // allocation count is non zero, but memory is null + CS_ASSERT(false); + return; + } + + nAllocationCount = nElements; + pMemory = static_cast(I::MemAlloc->ReAlloc(pMemory, nAllocationCount * sizeof(T))); + } + +public: + T* pMemory; // 0x00 + int nAllocationCount; // 0x04 + int nGrowSize; + // 0x08 +}; + +//----------------------------------------------------------------------------- +// Attaches the buffer to external memory.... +//----------------------------------------------------------------------------- +template< class T, class N > +void CUtlMemory::SetExternalBuffer(T* pMemory, size_t numElements) +{ + // Blow away any existing allocated memory + Purge(); + + pMemory = pMemory; + nAllocationCount = numElements; + + // Indicate that we don't own the memory + nGrowSize = EXTERNAL_BUFFER_MARKER; +} + +template< class T, class N > +void CUtlMemory::AssumeMemory(T* pMemory, size_t numElements) +{ + // Blow away any existing allocated memory + Purge(); + + // Simply take the pointer but don't mark us as external + pMemory = pMemory; + nAllocationCount = numElements; +} + +template< class T, class N > +void* CUtlMemory::DetachMemory() +{ + if (IsExternallyAllocated()) + return NULL; + + void* pMemory = pMemory; + pMemory = 0; + nAllocationCount = 0; + return pMemory; +} + +template< class T, class N > +inline T* CUtlMemory::Detach() +{ + return (T*)DetachMemory(); +} + + +template +inline CUtlMemory::CUtlMemory(const T* pMemory, size_t numElements) : nAllocationCount(static_cast(numElements)) +{ + // Special marker indicating externally supplied modifiable memory + this->pMemory = (T*)pMemory; + nGrowSize = -2; +} + + + + + + + + + + + +template< class T, class I > +void CUtlMemory::Init(size_t nGrowSize /*= 0*/, size_t nInitSize /*= 0*/) +{ + Purge(); + nGrowSize = nGrowSize; + nAllocationCount = nInitSize; + ConvertToGrowableMemory(nGrowSize); + if (nAllocationCount) + { + pMemory = (T*)malloc(nAllocationCount * sizeof(T)); + } +} + +template< class T, class N > +void CUtlMemory::Swap(CUtlMemory& mem) +{ + V_swap(nGrowSize, mem.nGrowSize); + V_swap(pMemory, mem.pMemory); + V_swap(nAllocationCount, mem.nAllocationCount); +} + +template +class CUtlMemoryAligned : public CUtlMemory +{ +public: + // @note: not implemented + CS_CLASS_NO_INITIALIZER(CUtlMemoryAligned); +}; + +template +class CUtlMemoryFixedGrowable : public CUtlMemory +{ + typedef CUtlMemory BaseClass; + +public: + CUtlMemoryFixedGrowable(int nInitialGrowSize = 0, int nInitialSize = SIZE) : + BaseClass(arrFixedMemory, SIZE) + { + CS_ASSERT(nInitialSize == 0 || nInitialSize == SIZE); + nMallocGrowSize = nInitialGrowSize; + } + + void Grow(int nCount = 1) + { + if (this->IsExternallyAllocated()) + this->ConvertToGrowableMemory(nMallocGrowSize); + + BaseClass::Grow(nCount); + } + + void EnsureCapacity(int nCapacity) + { + if (CUtlMemory::nAllocationCount >= nCapacity) + return; + + if (this->IsExternallyAllocated()) + // can't grow a buffer whose memory was externally allocated + this->ConvertToGrowableMemory(nMallocGrowSize); + + BaseClass::EnsureCapacity(nCapacity); + } + +private: + int nMallocGrowSize; + T arrFixedMemory[SIZE]; +}; + +template +class CUtlMemoryFixed +{ +public: + CUtlMemoryFixed(const int nGrowSize = 0, const int nInitialCapacity = 0) + { + CS_ASSERT(nInitialCapacity == 0 || nInitialCapacity == SIZE); + } + + CUtlMemoryFixed(const T* pMemory, const int nElements) + { + CS_ASSERT(false); + } + + [[nodiscard]] static constexpr bool IsValidIndex(const int nIndex) + { + return (nIndex >= 0) && (nIndex < SIZE); + } + + // specify the invalid ('null') index that we'll only return on failure + static constexpr int INVALID_INDEX = -1; + + [[nodiscard]] static constexpr int InvalidIndex() + { + return INVALID_INDEX; + } + + [[nodiscard]] T* Base() + { + if (nAlignment == 0) + return reinterpret_cast(&pMemory[0]); + + return reinterpret_cast((reinterpret_cast(&pMemory[0]) + nAlignment - 1) & ~(nAlignment - 1)); + } + + [[nodiscard]] const T* Base() const + { + if (nAlignment == 0) + return reinterpret_cast(&pMemory[0]); + + return reinterpret_cast((reinterpret_cast(&pMemory[0]) + nAlignment - 1) & ~(nAlignment - 1)); + } + + [[nodiscard]] T& operator[](int nIndex) + { + CS_ASSERT(IsValidIndex(nIndex)); + return Base()[nIndex]; + } + + [[nodiscard]] const T& operator[](int nIndex) const + { + CS_ASSERT(IsValidIndex(nIndex)); + return Base()[nIndex]; + } + + [[nodiscard]] T& Element(int nIndex) + { + CS_ASSERT(IsValidIndex(nIndex)); + return Base()[nIndex]; + } + + [[nodiscard]] const T& Element(int nIndex) const + { + CS_ASSERT(IsValidIndex(nIndex)); + return Base()[nIndex]; + } + + [[nodiscard]] int AllocationCount() const + { + return SIZE; + } + + [[nodiscard]] int Count() const + { + return SIZE; + } + + void Grow(int nCount = 1) + { + CS_ASSERT(false); + } + + void EnsureCapacity(const int nCapacity) + { + CS_ASSERT(nCapacity <= SIZE); + } + + void Purge() { } + + void Purge(const int nElements) + { + CS_ASSERT(false); + } + + [[nodiscard]] bool IsExternallyAllocated() const + { + return false; + } + + class Iterator_t + { + public: + Iterator_t(const int nIndex) : + nIndex(nIndex) { } + + bool operator==(const Iterator_t it) const + { + return nIndex == it.nIndex; + } + + bool operator!=(const Iterator_t it) const + { + return nIndex != it.nIndex; + } + + int nIndex; + }; + + [[nodiscard]] Iterator_t First() const + { + return Iterator_t(IsValidIndex(0) ? 0 : InvalidIndex()); + } + + [[nodiscard]] Iterator_t Next(const Iterator_t& it) const + { + return Iterator_t(IsValidIndex(it.nIndex + 1) ? it.nIndex + 1 : InvalidIndex()); + } + + [[nodiscard]] int GetIndex(const Iterator_t& it) const + { + return it.nIndex; + } + + [[nodiscard]] bool IsIndexAfter(int i, const Iterator_t& it) const + { + return i > it.nIndex; + } + + [[nodiscard]] bool IsValidIterator(const Iterator_t& it) const + { + return IsValidIndex(it.nIndex); + } + + [[nodiscard]] Iterator_t InvalidIterator() const + { + return Iterator_t(InvalidIndex()); + } + +private: + char pMemory[SIZE * sizeof(T) + nAlignment]; +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlrbtree.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlrbtree.h new file mode 100644 index 0000000..d0a2bc5 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlrbtree.h @@ -0,0 +1,244 @@ +#pragma once +#include "utlmemory.h" + +// @source: master/public/tier1/utlrbtree.h + +template +class CDefLess +{ +public: + CDefLess() { } + + CDefLess(int) { } + + CS_INLINE bool operator()(const T& left, const T& right) const + { + return (left < right); + } + + CS_INLINE bool operator!() const + { + return false; + } +}; + +template +struct UtlRBTreeLinks_t +{ + I iLeft; + I iRight; + I iParent; + I iTag; +}; + +template +struct UtlRBTreeNode_t : public UtlRBTreeLinks_t +{ + T data; +}; + +template , I>> +class CUtlRBTree +{ +public: + using KeyType_t = T; + using ElementType_t = T; + using IndexType_t = I; + using LessCallbackFn_t = L; + + enum NodeColor_t + { + RED = 0, + BLACK + }; + + explicit CUtlRBTree(int nGrowSize = 0, int nInitialSize = 0, const LessCallbackFn_t& fnLessCallback = nullptr) : + fnLessCallback(fnLessCallback), memory(nGrowSize, nInitialSize), iRoot(InvalidIndex()), nElements(0), iFirstFree(InvalidIndex()), itLastAlloc(memory.InvalidIterator()), pElements(memory.Base()) { } + + explicit CUtlRBTree(const LessCallbackFn_t& fnLessCallback) : + fnLessCallback(fnLessCallback), memory(0, 0), iRoot(InvalidIndex()), nElements(0), iFirstFree(InvalidIndex()), itLastAlloc(memory.InvalidIterator()), pElements(memory.Base()) { } + + ~CUtlRBTree() + { + Purge(); + } + + [[nodiscard]] T& operator[](I nIndex) + { + CS_ASSERT(IsValidIndex(nIndex)); + return memory[nIndex].data; + } + + [[nodiscard]] const T& operator[](I nIndex) const + { + CS_ASSERT(IsValidIndex(nIndex)); + return memory[nIndex].data; + } + + [[nodiscard]] T& Element(I nIndex) + { + CS_ASSERT(IsValidIndex(nIndex)); + return memory[nIndex].data; + } + + [[nodiscard]] const T& Element(I nIndex) const + { + CS_ASSERT(IsValidIndex(nIndex)); + return memory[nIndex].data; + } + + [[nodiscard]] const UtlRBTreeLinks_t& Links(I nIndex) const + { + constexpr UtlRBTreeLinks_t linksSentinel = { + M::INVALID_INDEX, M::INVALID_INDEX, M::INVALID_INDEX, BLACK + }; + + return (nIndex != InvalidIndex()) ? memory[nIndex] : linksSentinel; + } + + [[nodiscard]] UtlRBTreeLinks_t& Links(I nIndex) + { + CS_ASSERT(nIndex != InvalidIndex()); + return memory[nIndex]; + } + + [[nodiscard]] I Parent(I nIndex) const + { + return (nIndex != InvalidIndex() ? memory[nIndex].iParent : InvalidIndex()); + } + + [[nodiscard]] I LeftChild(I nIndex) const + { + return (nIndex != InvalidIndex() ? memory[nIndex].iLeft : InvalidIndex()); + } + + [[nodiscard]] I RightChild(I nIndex) const + { + return (nIndex != InvalidIndex() ? memory[nIndex].iRight : InvalidIndex()); + } + + void SetParent(I nIndex, I iParent) + { + Links(nIndex).iParent = iParent; + } + + void SetLeftChild(I nIndex, I iChild) + { + Links(nIndex).iLeft = iChild; + } + + void SetRightChild(I nIndex, I iChild) + { + Links(nIndex).iRight = iChild; + } + + [[nodiscard]] bool IsRoot(I nIndex) const + { + return nIndex == iRoot; + } + + [[nodiscard]] bool IsLeaf(I nIndex) const + { + return (LeftChild(nIndex) == InvalidIndex()) && (RightChild(nIndex) == InvalidIndex()); + } + + [[nodiscard]] unsigned int Count() const + { + return nElements; + } + + [[nodiscard]] I MaxElement() const + { + return static_cast(memory.NumAllocated()); + } + + [[nodiscard]] bool IsValidIndex(I nIndex) const + { + if (!memory.IsValidIndex(nIndex)) + return false; + + // don't read values that have been allocated, but not constructed + if (memory.IsIndexAfter(nIndex, itLastAlloc)) + return false; + + return LeftChild(nIndex) != nIndex; + } + + [[nodiscard]] static I InvalidIndex() + { + return static_cast(M::InvalidIndex()); + } + + void EnsureCapacity(const int nCapacity) + { + memory.EnsureCapacity(nCapacity); + } + + [[nodiscard]] I Find(const T& search) const + { + CS_ASSERT(!!fnLessCallback); + + I iCurrent = iRoot; + while (iCurrent != InvalidIndex()) + { + if (fnLessCallback(search, Element(iCurrent))) + iCurrent = LeftChild(iCurrent); + else if (fnLessCallback(Element(iCurrent), search)) + iCurrent = RightChild(iCurrent); + else + break; + } + + return iCurrent; + } + + void RemoveAll() + { + if (itLastAlloc == memory.InvalidIterator()) + { + CS_ASSERT(iRoot == InvalidIndex()); + CS_ASSERT(iFirstFree == InvalidIndex()); + CS_ASSERT(nElements == 0); + return; + } + + for (typename M::Iterator_t it = memory.First(); it != memory.InvalidIterator(); it = memory.Next(it)) + { + // skip elements in the free list + if (I nIndex = memory.GetIndex(it); IsValidIndex(nIndex)) + { + (&Element(nIndex))->~T(); + SetRightChild(nIndex, iFirstFree); + SetLeftChild(nIndex, nIndex); + iFirstFree = nIndex; + } + + // don't destruct elements that haven't ever been constucted + if (it == itLastAlloc) + break; + } + + // clear everything else out + iRoot = InvalidIndex(); + nElements = 0; + //CS_ASSERT(IsValid()); + } + + void Purge() + { + RemoveAll(); + iFirstFree = InvalidIndex(); + + memory.Purge(); + itLastAlloc = memory.InvalidIterator(); + } + +public: + LessCallbackFn_t fnLessCallback; // 0x00 + M memory; // 0x04 + I iRoot; // 0x10 + I nElements; + I iFirstFree; + typename M::Iterator_t itLastAlloc; + UtlRBTreeNode_t* pElements; +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlstring.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlstring.h new file mode 100644 index 0000000..71f1f7c --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlstring.h @@ -0,0 +1,63 @@ +#pragma once +#include "utlmemory.h" + +class CUtlBinaryBlock +{ +public: + CUtlBinaryBlock(const int nInitialGrowSize = 0, const int nInitialSize = 0) : + memory(nInitialGrowSize, nInitialSize), nLength(0) { } + + CUtlMemory memory; + int nLength; +}; + +class CUtlString +{ +public: + CUtlString() { } + + [[nodiscard]] const char* Get() const + { + if (storage.nLength == 0) + return ""; + + return reinterpret_cast(storage.memory.Base()); + } + + [[nodiscard]] int Length() const + { + return storage.nLength; + } + +private: + CUtlBinaryBlock storage; +}; + +template +class CUtlConstStringBase +{ +public: + CUtlConstStringBase() : + pString(nullptr) { } + + [[nodiscard]] const T* Get() const + { + return (pString != nullptr ? pString : static_cast("")); + } + + [[nodiscard]] operator const T*() const + { + return (pString != nullptr ? pString : static_cast("")); + } + + [[nodiscard]] bool Empty() const + { + return (pString == nullptr); + } + +protected: + const T* pString; +}; + +using CUtlConstString = CUtlConstStringBase; +using CUtlConstWideString = CUtlConstStringBase; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlstringtoken.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlstringtoken.h new file mode 100644 index 0000000..45834ce --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlstringtoken.h @@ -0,0 +1,47 @@ +#pragma once +#include "utlmemory.h" + +// used: memorymove +#include "../../utilities/fnv1a.h" + +#define STRINGTOKEN_MURMURHASH_SEED 0x31415926 + +#pragma pack(push, 8) +class CUtlStringToken +{ +public: + explicit CUtlStringToken(const char* szKeyName) + { + uHashCode = FNV1A::Hash(szKeyName, STRINGTOKEN_MURMURHASH_SEED); + szDebugName = szKeyName; + } + + constexpr CUtlStringToken(const FNV1A_t uHashCode, const char* szKeyName) : + uHashCode(uHashCode), szDebugName(szKeyName) { } + + CS_INLINE bool operator==(const CUtlStringToken& other) const + { + return (other.uHashCode == uHashCode); + } + + CS_INLINE bool operator!=(const CUtlStringToken& other) const + { + return (other.uHashCode != uHashCode); + } + + CS_INLINE bool operator<(const CUtlStringToken& other) const + { + return (uHashCode < other.uHashCode); + } + +public: + FNV1A_t uHashCode = 0U; // 0x00 + const char* szDebugName = nullptr; // 0x08 // @Todo: for some reason retards keep this even for non-debug builds, it can be changed later +}; +#pragma pack(pop) + +// helper to create a string token at compile-time +CS_INLINE consteval CUtlStringToken MakeStringToken(const char* szKeyName) +{ + return { FNV1A::HashConst(szKeyName, STRINGTOKEN_MURMURHASH_SEED), szKeyName }; +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlthash.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlthash.h new file mode 100644 index 0000000..771dca7 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlthash.h @@ -0,0 +1,206 @@ +#pragma once + +#include +#include +#include + +class CUtlMemoryPool +{ +public: + int Count() const + { + return nBlocksAllocated; + } + + int PeakCount() const + { + return nPeakAlloc; + } + + int BlockSize() const + { + return nBlockSize; + } + +protected: + class CBlob + { + public: + CBlob* pPrev; + CBlob* pNext; + int nNumBytes; + char Data[1]; + char Padding[3]; + }; + + int nBlockSize; + int nBlocksPerBlob; + int nGrowMode; + int nBlocksAllocated; + int nPeakAlloc; + + unsigned short nAlignment; + unsigned short nNumBlobs; + + void* pHeadOfFreeList; + void* pAllocOwner; + CBlob BlobHead; +}; + +using UtlTSHashHandle_t = std::uintptr_t; + +inline unsigned HashIntConventional(const int n) +{ + unsigned hash = 0xAAAAAAAA + (n & 0xFF); + hash = (hash << 5) + hash + ((n >> 8) & 0xFF); + hash = (hash << 5) + hash + ((n >> 16) & 0xFF); + hash = (hash << 5) + hash + ((n >> 24) & 0xFF); + + return hash; +} + +template +class CUtlTSHashGenericHash +{ +public: + static int Hash(const tKey& Key, int nBucketMask) + { + int nHash = HashIntConventional(std::uintptr_t(Key)); + if (nBucketCount <= UINT16_MAX) + { + nHash ^= (nHash >> 16); + } + + if (nBucketCount <= UINT8_MAX) + { + nHash ^= (nHash >> 8); + } + + return (nHash & nBucketMask); + } + + static bool Compare(const tKey& lhs, const tKey& rhs) + { + return lhs == rhs; + } +}; + +template , int nAlignment = 0> +class CUtlTSHash +{ + static constexpr int nBucketMask = nBucketCount - 1; + +public: + static constexpr UtlTSHashHandle_t InvalidHandle() + { + return static_cast(0); + } + + UtlTSHashHandle_t Find(tKey uiKey) + { + int iBucket = tHashFuncs::Hash(uiKey, nBucketCount); + const HashBucket_t& hashBucket = aBuckets[iBucket]; + const UtlTSHashHandle_t hHash = Find(uiKey, hashBucket.pFirst, nullptr); + return hHash ? hHash : Find(uiKey, hashBucket.pFirstUncommited, hashBucket.pFirst); + } + + int Count() const + { + return EntryMemory.Count(); + } + + int GetElements(int nFirstElement, int nCount, UtlTSHashHandle_t* pHandles) const + { + int nIndex = 0; + for (int nBucketIndex = 0; nBucketIndex < nBucketCount; nBucketIndex++) + { + const HashBucket_t& hashBucket = aBuckets[nBucketIndex]; + + HashFixedData_t* pElement = hashBucket.pFirstUncommited; + + for (; pElement; pElement = pElement->GetNext()) + { + if (--nFirstElement >= 0) + continue; + + pHandles[nIndex++] = reinterpret_cast(pElement); + + if (nIndex >= nCount) + return nIndex; + } + } + + return nIndex; + } + + tElement Element(UtlTSHashHandle_t hHash) + { + return ((HashFixedData_t*)(hHash))->GetData(); + } + + const tElement& Element(UtlTSHashHandle_t hHash) const + { + return reinterpret_cast(hHash)->Data; + } + + tElement& operator[](UtlTSHashHandle_t hHash) + { + return reinterpret_cast(hHash)->Data; + } + + const tElement& operator[](UtlTSHashHandle_t hHash) const + { + return reinterpret_cast(hHash)->Data; + } + + tKey GetID(UtlTSHashHandle_t hHash) const + { + return reinterpret_cast(hHash)->uiKey; + } + +private: + template + struct HashFixedDataInternal_t + { + tKey uiKey; + HashFixedDataInternal_t* pNext; + tData Data; + + tData GetData() + { + return *reinterpret_cast(reinterpret_cast(this) + (0x10)); + } + + HashFixedDataInternal_t* GetNext() + { + return *reinterpret_cast**>(reinterpret_cast(this) + (0x20)); + } + }; + + using HashFixedData_t = HashFixedDataInternal_t; + + struct HashBucket_t + { + private: + [[maybe_unused]] std::byte pad0[0x18]; + + public: + HashFixedData_t* pFirst; + HashFixedData_t* pFirstUncommited; + }; + + UtlTSHashHandle_t Find(tKey uiKey, HashFixedData_t* pFirstElement, HashFixedData_t* pLastElement) + { + for (HashFixedData_t* pElement = pFirstElement; pElement != pLastElement; pElement = pElement->pNext) + { + if (tHashFuncs::Compare(pElement->uiKey, uiKey)) + return reinterpret_cast(pElement); + } + + return InvalidHandle(); + } + + CUtlMemoryPool EntryMemory; + HashBucket_t aBuckets[nBucketCount]; + bool bNeedsCommit; +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlvector.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlvector.h new file mode 100644 index 0000000..15f2bcd --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/utlvector.h @@ -0,0 +1,362 @@ +#pragma once +#include "utlmemory.h" + +// used: memorymove +#include "../../utilities/crt.h" + +// @source: master/public/tier1/utlvector.h + +/* + * a growable array class which doubles in size by default. + * it will always keep all elements consecutive in memory, and may move the + * elements around in memory (via a realloc) when elements are inserted or removed. + * clients should therefore refer to the elements of the vector by index and not pointers + * + * @note: if variable that uses it intend to call any method that needs to allocate/deallocate should have overloaded constructor/destructor and/or new/delete operators respectively + */ + +template +class CUtlVectorCS2 { +public: + auto begin() const { return m_Data; } + auto end() const { return m_Data + m_Size; } + + auto At(int i) const { return m_Data[i]; } + auto AtPtr(int i) const { return m_Data + i; } + + int m_Size; + char pad0[0x4]; + T* m_Data; + char pad1[0x8]; +}; + +template > +class CUtlVector +{ + using CAllocator = A; + +public: + explicit CUtlVector(const int nGrowSize = 0, const int nInitialCapacity = 0) : + memory(nGrowSize, nInitialCapacity), nSize(0), pElements(memory.Base()) { } + + CUtlVector(T* pMemory, const int nInitialCapacity, const int nInitialCount = 0) : + memory(pMemory, nInitialCapacity), nSize(nInitialCount), pElements(memory.Base()) { } + + CUtlVector(const CUtlVector&) = delete; + + ~CUtlVector() + { + Purge(); + } + + CUtlVector& operator=(const CUtlVector& vecOther) + { + CS_ASSERT(&vecOther != this); // self-assignment isn't allowed + + const int nSourceCount = vecOther.Count(); + SetCount(nSourceCount); + + for (int i = 0; i < nSourceCount; i++) + (*this)[i] = vecOther[i]; + + return *this; + } + + [[nodiscard]] T& operator[](const int nIndex) + { + CS_ASSERT(IsValidIndex(nIndex)); // given index is out of range + return memory[nIndex]; + } + + [[nodiscard]] const T& operator[](const int nIndex) const + { + CS_ASSERT(IsValidIndex(nIndex)); // given index is out of range + return memory[nIndex]; + } + + [[nodiscard]] T& Element(const int nIndex) + { + CS_ASSERT(IsValidIndex(nIndex)); // given index is out of range + return memory[nIndex]; + } + + [[nodiscard]] const T& Element(const int nIndex) const + { + CS_ASSERT(IsValidIndex(nIndex)); // given index is out of range + return memory[nIndex]; + } + + [[nodiscard]] T* Base() + { + return memory.Base(); + } + + [[nodiscard]] const T* Base() const + { + return memory.Base(); + } + + [[nodiscard]] int Count() const + { + return nSize; + } + + [[nodiscard]] int& Size() + { + return nSize; + } + + [[nodiscard]] bool IsValidIndex(const int nIndex) const + { + return (nIndex >= 0) && (nIndex < nSize); + } + + void CopyFromArray(const T* pArraySource, int nArraySize) + { + // can't insert something that's in the list. reallocation may hose us + CS_ASSERT(memory.Base() == nullptr || pArraySource == nullptr || begin() >= (pArraySource + nArraySize) || pArraySource >= end()); + + // resize to accommodate array + SetCount(nArraySize); + + for (int i = 0; i < nArraySize; i++) + (*this)[i] = pArraySource[i]; + } + + void GrowVector(const int nCount = 1) + { + if (nSize + nCount > memory.AllocationCount()) + memory.Grow(nSize + nCount - memory.AllocationCount()); + + nSize += nCount; + pElements = memory.Base(); + } + + void EnsureCapacity(int nCapacity) + { + memory.EnsureCapacity(nCapacity); + pElements = memory.Base(); + } + + void Purge() + { + RemoveAll(); + memory.Purge(); + pElements = memory.Base(); + } + + void ShiftElementsRight(const int nElement, const int nShift = 1) + { + CS_ASSERT(IsValidIndex(nElement) || nSize == 0 || nShift == 0); + + if (const int nToMove = nSize - nElement - nShift; nToMove > 0 && nShift > 0) + CRT::MemoryMove(&Element(nElement + nShift), &Element(nElement), nToMove * sizeof(T)); + } + + void ShiftElementsLeft(const int nElement, const int nShift = 1) + { + CS_ASSERT(IsValidIndex(nElement) || nSize == 0 || nShift == 0); + + if (const int nToMove = nSize - nElement - nShift; nToMove > 0 && nShift > 0) + CRT::MemoryMove(&Element(nElement), &Element(nElement + nShift), nToMove * sizeof(T)); + } + + int AddToHead() + { + return InsertBefore(0); + } + + int AddToHead(const T& source) + { + // can't insert something that's in the list. reallocation may hose us + CS_ASSERT(memory.Base() == nullptr || &source < begin() || &source >= end()); + return InsertBefore(0, source); + } + + int AddMultipleToHead(const int nCount) + { + return InsertMultipleBefore(0, nCount); + } + + int AddToTail() + { + return InsertBefore(nSize); + } + + int AddToTail(const T& source) + { + // can't insert something that's in the list. reallocation may hose us + CS_ASSERT(memory.Base() == nullptr || &source < begin() || &source >= end()); + return InsertBefore(nSize, source); + } + + int AddMultipleToTail(const int nCount) + { + return InsertMultipleBefore(nSize, nCount); + } + + void SetCount(const int nCount) + { + RemoveAll(); + AddMultipleToTail(nCount); + } + + int InsertBefore(const int nElement) + { + // can insert at the end + CS_ASSERT(nElement == nSize || IsValidIndex(nElement)); + + GrowVector(); + ShiftElementsRight(nElement); + new (&Element(nElement)) T; // @todo: all functions of game classes that using this should be wrapped with constraints 'requires (std::is_pointer_v || have_constructor_overload || have_new_overload)' + return nElement; + } + + int InsertMultipleBefore(const int nElement, const int nCount) + { + if (nCount == 0) + return nElement; + + // can insert at the end + CS_ASSERT(nElement == nSize || IsValidIndex(nElement)); + + GrowVector(nCount); + ShiftElementsRight(nElement, nCount); + + // invoke default constructors + for (int i = 0; i < nElement; ++i) + new (&Element(nElement + i)) T; + + return nElement; + } + + int InsertBefore(const int nElement, const T& source) + { + // can't insert something that's in the list. reallocation may hose us + CS_ASSERT(memory.Base() == nullptr || &source < begin() || &source >= end()); + + // can insert at the end + CS_ASSERT(nElement == nSize || IsValidIndex(nElement)); + + // reallocate if can't insert something that's in the list + GrowVector(); + ShiftElementsRight(nElement); + new (&Element(nElement)) T(source); + return nElement; + } + + int InsertMultipleBefore(const int nElement, const int nCount, const T* pSource) + { + if (nCount == 0) + return nElement; + + // can insert at the end + CS_ASSERT(nElement == nSize || IsValidIndex(nElement)); + + GrowVector(nCount); + ShiftElementsRight(nElement, nCount); + + // invoke default constructors + if (pSource == nullptr) + { + for (int i = 0; i < nCount; ++i) + new (&Element(nElement + i)) T; + } + else + { + for (int i = 0; i < nCount; i++) + new (&Element(nElement)) T(pSource[i]); + } + + return nElement; + } + + [[nodiscard]] int Find(const T& source) const + { + for (int i = 0; i < nSize; ++i) + { + if (Element(i) == source) + return i; + } + + return -1; + } + + bool FindAndRemove(const T& source) + { + if (const int nElement = Find(source); nElement != -1) + { + Remove(nElement); + return true; + } + + return false; + } + + void Remove(const int nElement) + { + (&Element(nElement))->~T(); + ShiftElementsLeft(nElement); + --nSize; + } + + void RemoveAll() + { + for (int i = nSize; --i >= 0;) + (&Element(i))->~T(); + + nSize = 0; + } + + [[nodiscard]] auto begin() noexcept + { + return memory.Base(); + } + + [[nodiscard]] auto end() noexcept + { + return memory.Base() + nSize; + } + + [[nodiscard]] auto begin() const noexcept + { + return memory.Base(); + } + + [[nodiscard]] auto end() const noexcept + { + return memory.Base() + nSize; + } + +protected: + int nSize; + CAllocator memory; + T* pElements; +}; + +template +class CUtlVectorAligned : public CUtlVector> +{ +}; + +//a array class with a fixed allocation scheme +template +class CUtlVectorFixed : public CUtlVector> +{ + using CBaseClass = CUtlVector>; + +public: + explicit CUtlVectorFixed(int nGrowSize = 0, int nInitialCapacity = 0) : + CBaseClass(nGrowSize, nInitialCapacity) { } + + CUtlVectorFixed(T* pMemory, int nElements) : + CBaseClass(pMemory, nElements) { } +}; + +template +class C_NetworkUtlVectorBase +{ +public: + std::uint32_t nSize; + T* pElements; +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/vector.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/vector.cpp new file mode 100644 index 0000000..cdc4b07 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/vector.cpp @@ -0,0 +1,111 @@ +#include "vector.h" + +#include "matrix.h" +#include "qangle.h" + +// used: m_rad2deg +#include "../../utilities/math.h" + +[[nodiscard]] Vector_t Vector_t::Transform(const Matrix3x4_t& matTransform) const +{ + return { + this->DotProduct(matTransform[0]) + matTransform[0][3], + this->DotProduct(matTransform[1]) + matTransform[1][3], + this->DotProduct(matTransform[2]) + matTransform[2][3] + }; +} +[[nodiscard]] QAngle_t Vector_t::ToEulerAngles(Vector_t* pseudoup /*= nullptr*/) { + auto pitch = 0.0f; + auto yaw = 0.0f; + auto roll = 0.0f; + + auto length = this->ToVector2D().Length(); + + if (pseudoup) { + auto left = pseudoup->CrossProduct(*this); + + left.Normalizes(); + + pitch = ToDegrees(std::atan2(-this->z, length)); + + if (pitch < 0.0f) + pitch += 360.0f; + + if (length > 0.001f) { + yaw = ToDegrees(std::atan2(this->y, this->x)); + + if (yaw < 0.0f) + yaw += 360.0f; + + auto up_z = (this->x * left.y) - (this->y * left.x); + + roll = ToDegrees(std::atan2(left.z, up_z)); + + if (roll < 0.0f) + roll += 360.0f; + } + else { + yaw = ToDegrees(std::atan2(-left.x, left.y)); + + if (yaw < 0.0f) + yaw += 360.0f; + } + } + else { + if (this->x == 0.0f && this->y == 0.0f) { + if (this->z > 0.0f) + pitch = 270.0f; + else + pitch = 90.0f; + } + else { + pitch = ToDegrees(std::atan2(-this->z, length)); + + if (pitch < 0.0f) + pitch += 360.0f; + + yaw = ToDegrees(std::atan2(this->y, this->x)); + + if (yaw < 0.0f) + yaw += 360.0f; + } + } + + return { pitch, yaw, roll }; +} + +[[nodiscard]] QAngle_t Vector_t::ToAngles() const +{ + float flPitch, flYaw; + if (this->x == 0.0f && this->y == 0.0f) + { + flPitch = (this->z > 0.0f) ? 270.f : 90.f; + flYaw = 0.0f; + } + else + { + flPitch = M_RAD2DEG(std::atan2f(-this->z, this->Length2D())); + + if (flPitch < 0.f) + flPitch += 360.f; + + flYaw = M_RAD2DEG(std::atan2f(this->y, this->x)); + + if (flYaw < 0.f) + flYaw += 360.f; + } + + return { flPitch, flYaw, 0.0f }; +} + +[[nodiscard]] Matrix3x4_t Vector_t::ToMatrix() const +{ + Vector_t vecRight = {}, vecUp = {}; + this->ToDirections(&vecRight, &vecUp); + + Matrix3x4a_t matOutput = {}; + matOutput.SetForward(*this); + matOutput.SetLeft(-vecRight); + matOutput.SetUp(vecUp); + return matOutput; +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/vector.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/vector.h new file mode 100644 index 0000000..a360d79 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/vector.h @@ -0,0 +1,480 @@ +#pragma once +// used: [stl] numeric_limits +#include +// used: [crt] isfinite, fmodf, sqrtf +#include +#include + +// forward declarations +struct QAngle_t; +struct Matrix3x4_t; + +// @source: master/public/mathlib/vector.h + +struct Vector2D_t +{ + constexpr Vector2D_t(const float x = 0.0f, const float y = 0.0f) : + x(x), y(y) { } + + [[nodiscard]] bool IsZero() const + { + // @note: to make this implementation right, we should use fpclassify here, but game aren't doing same, probably it's better to keep this same, just ensure that it will be compiled same + return (this->x == 0.0f && this->y == 0.0f); + } + + [[nodiscard]] float Dot(const Vector2D_t& v) const { + return (this->x * v.x + + this->y * v.y); + } + + float LengthSquared() const { + return (this->Dot(*this)); + } + + float Length() const { + return (std::sqrt(this->LengthSquared())); + } + + float Length2DSquared() const { + return (x * x + y * y); + } + + float x = 0.0f, y = 0.0f; +}; + +struct Vector_t +{ + constexpr Vector_t(const float x = 0.0f, const float y = 0.0f, const float z = 0.0f) : + x(x), y(y), z(z) { } + + constexpr Vector_t(const float* arrVector) : + x(arrVector[0]), y(arrVector[1]), z(arrVector[2]) { } + + constexpr Vector_t(const Vector2D_t& vecBase2D) : + x(vecBase2D.x), y(vecBase2D.y) { } + +#pragma region vector_array_operators + + [[nodiscard]] float& operator[](const int nIndex) + { + return reinterpret_cast(this)[nIndex]; + } + + [[nodiscard]] const float& operator[](const int nIndex) const + { + return reinterpret_cast(this)[nIndex]; + } + +#pragma endregion + +#pragma region vector_relational_operators + + bool operator==(const Vector_t& vecBase) const + { + return this->IsEqual(vecBase); + } + + bool operator!=(const Vector_t& vecBase) const + { + return !this->IsEqual(vecBase); + } + +#pragma endregion + +#pragma region vector_assignment_operators + + constexpr Vector_t& operator=(const Vector_t& vecBase) + { + this->x = vecBase.x; + this->y = vecBase.y; + this->z = vecBase.z; + return *this; + } + + constexpr Vector_t& operator=(const Vector2D_t& vecBase2D) + { + this->x = vecBase2D.x; + this->y = vecBase2D.y; + this->z = 0.0f; + return *this; + } + +#pragma endregion + +#pragma region vector_arithmetic_assignment_operators + + constexpr Vector_t& operator+=(const Vector_t& vecBase) + { + this->x += vecBase.x; + this->y += vecBase.y; + this->z += vecBase.z; + return *this; + } + + constexpr Vector_t& operator-=(const Vector_t& vecBase) + { + this->x -= vecBase.x; + this->y -= vecBase.y; + this->z -= vecBase.z; + return *this; + } + + constexpr Vector_t& operator*=(const Vector_t& vecBase) + { + this->x *= vecBase.x; + this->y *= vecBase.y; + this->z *= vecBase.z; + return *this; + } + + constexpr Vector_t& operator/=(const Vector_t& vecBase) + { + this->x /= vecBase.x; + this->y /= vecBase.y; + this->z /= vecBase.z; + return *this; + } + + constexpr Vector_t& operator+=(const float flAdd) + { + this->x += flAdd; + this->y += flAdd; + this->z += flAdd; + return *this; + } + + constexpr Vector_t& operator-=(const float flSubtract) + { + this->x -= flSubtract; + this->y -= flSubtract; + this->z -= flSubtract; + return *this; + } + + constexpr Vector_t& operator*=(const float flMultiply) + { + this->x *= flMultiply; + this->y *= flMultiply; + this->z *= flMultiply; + return *this; + } + + constexpr Vector_t& operator/=(const float flDivide) + { + this->x /= flDivide; + this->y /= flDivide; + this->z /= flDivide; + return *this; + } + +#pragma endregion + +#pragma region vector_arithmetic_unary_operators + + constexpr Vector_t& operator-() + { + this->x = -this->x; + this->y = -this->y; + this->z = -this->z; + return *this; + } + + constexpr Vector_t operator-() const + { + return { -this->x, -this->y, -this->z }; + } + +#pragma endregion + +#pragma region vector_arithmetic_ternary_operators + + Vector_t operator+(const Vector_t& vecAdd) const + { + return { this->x + vecAdd.x, this->y + vecAdd.y, this->z + vecAdd.z }; + } + + Vector_t operator-(const Vector_t& vecSubtract) const + { + return { this->x - vecSubtract.x, this->y - vecSubtract.y, this->z - vecSubtract.z }; + } + + Vector_t operator*(const Vector_t& vecMultiply) const + { + return { this->x * vecMultiply.x, this->y * vecMultiply.y, this->z * vecMultiply.z }; + } + + Vector_t operator/(const Vector_t& vecDivide) const + { + return { this->x / vecDivide.x, this->y / vecDivide.y, this->z / vecDivide.z }; + } + + Vector_t operator+(const float flAdd) const + { + return { this->x + flAdd, this->y + flAdd, this->z + flAdd }; + } + + Vector_t operator-(const float flSubtract) const + { + return { this->x - flSubtract, this->y - flSubtract, this->z - flSubtract }; + } + + Vector_t operator*(const float flMultiply) const + { + return { this->x * flMultiply, this->y * flMultiply, this->z * flMultiply }; + } + + Vector_t operator/(const float flDivide) const + { + return { this->x / flDivide, this->y / flDivide, this->z / flDivide }; + } + +#pragma endregion + + /// @returns: true if each component of the vector is finite, false otherwise + [[nodiscard]] bool IsValid() const + { + return std::isfinite(this->x) && std::isfinite(this->y) && std::isfinite(this->z); + } + + constexpr void Invalidate() + { + this->x = this->y = this->z = std::numeric_limits::infinity(); + } + + /// @returns: true if each component of the vector equals to another, false otherwise + [[nodiscard]] bool IsEqual(const Vector_t& vecEqual, const float flErrorMargin = std::numeric_limits::epsilon()) const + { + return (std::fabsf(this->x - vecEqual.x) < flErrorMargin && std::fabsf(this->y - vecEqual.y) < flErrorMargin && std::fabsf(this->z - vecEqual.z) < flErrorMargin); + } + + /// @returns: true if each component of the vector equals to zero, false otherwise + [[nodiscard]] bool IsZero() const + { + // @note: to make this implementation right, we should use fpclassify here, but game aren't doing same, probably it's better to keep this same, just ensure that it will be compiled same + return (this->x == 0.0f && this->y == 0.0f && this->z == 0.0f); + } + + [[nodiscard]] float Length() const + { + return std::sqrtf(this->LengthSqr()); + } + + [[nodiscard]] constexpr float LengthSqr() const + { + return DotProduct(*this); + } + + [[nodiscard]] float Length2D() const + { + return std::sqrtf(this->Length2DSqr()); + } + + [[nodiscard]] constexpr float Length2DSqr() const + { + return (this->x * this->x + this->y * this->y); + } + + [[nodiscard]] float DistTo(const Vector_t& vecEnd) const + { + return (*this - vecEnd).Length(); + } + // New methods to add + [[nodiscard]] constexpr Vector_t Min(const Vector_t& other) const + { + return { std::min(this->x, other.x), std::min(this->y, other.y), std::min(this->z, other.z) }; + } + + [[nodiscard]] constexpr Vector_t Max(const Vector_t& other) const + { + return { std::max(this->x, other.x), std::max(this->y, other.y), std::max(this->z, other.z) }; + } + + [[nodiscard]] constexpr float DistToSqr(const Vector_t& vecEnd) const + { + return (*this - vecEnd).LengthSqr(); + } + + /// normalize magnitude of each component of the vector + /// @returns: length of the vector + float NormalizeInPlace() + { + const float flLength = this->Length(); + const float flRadius = 1.0f / (flLength + std::numeric_limits::epsilon()); + + this->x *= flRadius; + this->y *= flRadius; + this->z *= flRadius; + + return flLength; + } + + /// normalize magnitude of each component of the vector + /// @returns: copy of the vector with normalized components + [[nodiscard]] Vector_t Normalized() const + { + Vector_t vecOut = *this; + vecOut.NormalizeInPlace(); + return vecOut; + } + void clamp() { + this->x = std::clamp(std::remainder(this->x, 180.0f), -89.0f, 89.0f); + this->y = std::clamp(std::remainder(this->y, 360.0f), -180.0f, 180.0f); + this->z = 0.f; + } + void Normalize() { + this->x = std::remainderf(this->x, 180.f); + this->y = std::remainderf(this->y, 360.f); + } + + __forceinline float length_sqr() const { + return ((x * x) + (y * y) + (z * z)); + } + + __forceinline float length_2d_sqr() const { + return ((x * x) + (y * y)); + } + + __forceinline float length() const { + return std::sqrt(length_sqr()); + } + + + __forceinline float normalize() { + float len = this->length(); + + (*this) /= (length() + std::numeric_limits< float >::epsilon()); + + return len; + } + + __forceinline Vector_t normalized() const { + auto vec = *this; + + vec.normalize(); + + return vec; + } + Vector_t Normalizes() const + { + Vector_t vecOut = *this; + vecOut.NormalizeInPlace(); + return vecOut; + } + [[nodiscarrd]] inline float Dot(const Vector_t& vOther) const + { + const Vector_t& a = *this; + + return (a.x * vOther.x + a.y * vOther.y + a.z * vOther.z); + } + + [[nodiscarrd]] inline float Dot(const float* fOther) const + { + const Vector_t& a = *this; + + return (a.x * fOther[0] + a.y * fOther[1] + a.z * fOther[2]); + } + [[nodiscard]] constexpr float DotProduct(const Vector_t& vecDot) const + { + return (this->x * vecDot.x + this->y * vecDot.y + this->z * vecDot.z); + } + + [[nodiscard]] constexpr Vector_t CrossProduct(const Vector_t& vecCross) const + { + return { this->y * vecCross.z - this->z * vecCross.y, this->z * vecCross.x - this->x * vecCross.z, this->x * vecCross.y - this->y * vecCross.x }; + } + + /// @returns: transformed vector by given transformation matrix + [[nodiscard]] Vector_t Transform(const Matrix3x4_t& matTransform) const; + + [[nodiscard]] Vector2D_t ToVector2D() const + { + return { this->x, this->y }; + } + + /// convert forward direction vector to other direction vectors + /// @param[out] pvecRight [optional] output for converted right vector + /// @param[out] pvecUp [optional] output for converted up vector + void ToDirections(Vector_t* pvecRight, Vector_t* pvecUp) const + { + if (std::fabsf(this->x) < 1e-6f && std::fabsf(this->y) < 1e-6f) + { + // pitch 90 degrees up/down from identity + if (pvecRight != nullptr) + { + pvecRight->x = 0.0f; + pvecRight->y = -1.0f; + pvecRight->z = 0.0f; + } + + if (pvecUp != nullptr) + { + pvecUp->x = -this->z; + pvecUp->y = 0.0f; + pvecUp->z = 0.0f; + } + } + else + { + if (pvecRight != nullptr) + { + pvecRight->x = this->y; + pvecRight->y = -this->x; + pvecRight->z = 0.0f; + pvecRight->NormalizeInPlace(); + } + + if (pvecUp != nullptr) + { + pvecUp->x = (-this->x) * this->z; + pvecUp->y = -(this->y * this->z); + pvecUp->z = this->y * this->y - (-this->x) * this->x; + pvecUp->NormalizeInPlace(); + } + } + } + + /// @returns: 2D angles converted from direction vector + [[nodiscard]] QAngle_t ToAngles() const; + [[nodiscard]] QAngle_t ToEulerAngles(Vector_t* pseudoup /*= nullptr*/); + + /// @returns: matrix converted from forward direction vector + [[nodiscard]] Matrix3x4_t ToMatrix() const; + + float x = 0.0f, y = 0.0f, z = 0.0f; +}; + +struct Vector4D_t +{ + constexpr Vector4D_t(const float x = 0.0f, const float y = 0.0f, const float z = 0.0f, const float w = 0.0f) : + x(x), y(y), z(z), w(w) { } + + float x = 0.0f, y = 0.0f, z = 0.0f, w = 0.0f; +}; + +struct alignas(16) VectorAligned_t : Vector_t +{ + VectorAligned_t() = default; + + explicit VectorAligned_t(const Vector_t& vecBase) + { + this->x = vecBase.x; + this->y = vecBase.y; + this->z = vecBase.z; + this->w = 0.0f; + } + + constexpr VectorAligned_t& operator=(const Vector_t& vecBase) + { + this->x = vecBase.x; + this->y = vecBase.y; + this->z = vecBase.z; + this->w = 0.0f; + return *this; + } + + float w = 0.0f; +}; + +static_assert(alignof(VectorAligned_t) == 16); + + diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/viewsetup.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/viewsetup.h new file mode 100644 index 0000000..15b985a --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/datatypes/viewsetup.h @@ -0,0 +1,27 @@ +#pragma once + +// used: mem_pad +#include "../../utilities/memory.h" + +// used: vector_t +#include "vector.h" +// used: qangle_t +#include "qangle.h" + +class CViewSetup +{ +public: + MEM_PAD(0x490); + float flOrthoLeft; // 0x0494 + float flOrthoTop; // 0x0498 + float flOrthoRight; // 0x049C + float flOrthoBottom; // 0x04A0 + MEM_PAD(0x38); + float flFov; // 0x04D8 + float flFovViewmodel; // 0x04DC + Vector_t vecOrigin; // 0x04E0 + MEM_PAD(0xC); // 0x04EC + QAngle_t angView; // 0x04F8 + MEM_PAD(0x14); // 0x0504 + float flAspectRatio; // 0x0518 +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/entity.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/entity.cpp new file mode 100644 index 0000000..84d779b --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/entity.cpp @@ -0,0 +1,899 @@ +#include "entity.h" +// others +#include "../core/hooks.h" +#include "../utilities/draw.h" + +// used: convars +#include "../core/convars.h" +#include "interfaces/cgameentitysystem.h" +#include "interfaces/ienginecvar.h" +#include "interfaces/iengineclient.h" + +// used: game's definitions, enums +#include "const.h" +#include "../core/csig/sigscan.hpp" +#include "../core/pointer/pointer.hpp" +#include +#include "../features.h" +#include "../cstrike/features/visuals/overlay.h" +#include "../cstrike/features/legit/legit.h" +#include "interfaces/iglobalvars.h" +#include "../cstrike/features/skins/ccsplayerinventory.hpp" +#include "../features/rage/rage.h" + +Vector_t C_CSPlayerPawn::GetEyePosition() { + Vector_t EyePosition; + MEM::CallVFunc(this, &EyePosition); + return EyePosition; +} + +static CachedEntity_t::Type GetEntityType(C_BaseEntity* pEntity); + +static CachedEntity_t::Type GetEntityType(C_BaseEntity* pEntity) { + if (!pEntity) + return CachedEntity_t::UNKNOWN; + + SchemaClassInfoData_t* pClassInfo = nullptr; + pEntity->GetSchemaClassInfo(&pClassInfo); + + if (pClassInfo == nullptr) + return CachedEntity_t::UNKNOWN; + + const FNV1A_t uHashedName = FNV1A::Hash(pClassInfo->szName); + + if (uHashedName == FNV1A::HashConst(CS_XOR("CCSPlayerController"))) { + return CachedEntity_t::PLAYER_CONTROLLER; + } + + return CachedEntity_t::UNKNOWN; +} + +// Definition of the global vector and mutex +std::vector g_cachedEntities; +std::mutex g_cachedEntitiesMutex; +std::unordered_multimap g_Callbacks; + +namespace EntCache { + + void CacheCurrentEntities() { + // This function runs ONCE on injection and caches all the entities if + // you happen to inject connected on a server. + + if (!I::Engine->IsInGame() || !I::Engine->IsConnected()) return; + + if (!I::GameResourceService->pGameEntitySystem) return; + + + int highestIndex = I::GameResourceService->pGameEntitySystem->GetHighestEntityIndex(); + for (int i = 1; i <= highestIndex; ++i) { + C_BaseEntity* pEntity = I::GameResourceService->pGameEntitySystem->Get(i); + if (!pEntity) continue; + + OnAddEntity(pEntity, pEntity->GetRefEHandle()); + } + } + + void OnAddEntity(CEntityInstance* inst, CBaseHandle handle) { + if (!I::GameResourceService->pGameEntitySystem) return; + + C_BaseEntity* pEntity = (C_BaseEntity*)inst; + if (!pEntity) return; + + // Cache only networked entities. + // https://developer.valvesoftware.com/wiki/Entity_limit#Source_2_limits + if (handle.GetEntryIndex() >= 16384) return; + // call callbacks + for (auto& [callback_type, callbacks] : g_Callbacks) { + if (!callbacks.add || callback_type != GetEntityType(pEntity)) + continue; + callbacks.add(handle.GetEntryIndex(), handle); + } + std::lock_guard lock(g_cachedEntitiesMutex); + + auto it = std::find_if(g_cachedEntities.begin(), g_cachedEntities.end(), + [handle](const CachedEntity_t& i) { + return i.m_handle.GetEntryIndex() == handle.GetEntryIndex(); + }); + + if (it == g_cachedEntities.end()) { + CachedEntity_t cachedEntity{}; + cachedEntity.m_handle = handle; + cachedEntity.m_type = GetEntityType(pEntity); + cachedEntity.index = handle.GetEntryIndex(); + cachedEntity.reset = false; + + if (cachedEntity.m_type != CachedEntity_t::UNKNOWN) { + g_cachedEntities.emplace_back(cachedEntity); + } + } + else { + it->m_handle = handle; + it->m_type = GetEntityType(pEntity); + } + + + + } + + + void OnRemoveEntity(CEntityInstance* inst, CBaseHandle handle) { + if (!I::GameResourceService->pGameEntitySystem) return; + + C_BaseEntity* pEntity = (C_BaseEntity*)inst; + if (!pEntity) return; + + // call callbacks + for (auto& [callback_type, callbacks] : g_Callbacks) { + if (!callbacks.remove) + continue; + + if (callback_type != GetEntityType(pEntity)) + continue; + + callbacks.remove(handle.GetEntryIndex(), handle); + } + + std::lock_guard lock(g_cachedEntitiesMutex); + + auto it = std::find_if(g_cachedEntities.begin(), g_cachedEntities.end(), + [handle](const CachedEntity_t& i) { + return i.m_handle == handle; + }); + + if (it == g_cachedEntities.end()) return; + + it->m_draw = false; + it->m_type = CachedEntity_t::UNKNOWN; + + } + void RegisterCallback(CachedEntity_t::Type type, entity_callback add, entity_callback remove) noexcept { + if (!add && !remove) + return; + + std::unique_lock lock(g_cachedEntitiesMutex); + g_Callbacks.insert(std::make_pair(type, entity_callbacks{ add, remove })); + + if (!add) + return; + + // add existing entities + for (auto& cached_entity : g_cachedEntities) { + if (cached_entity.m_type == type) + add(cached_entity.m_handle.GetEntryIndex(), cached_entity.m_handle); + } + } + + +} // namespace EntCache +// global empty vector for when we can't get the origin +static Vector_t vecEmpty = Vector_t(0, 0, 0); + +bool CCSPlayerController::IsThrowingGrenade(C_CSWeaponBase* pBaseWeapon) +{ + if (!pBaseWeapon) + return false; + + if (!SDK::LocalController->IsPawnAlive() || !SDK::LocalController) + return false; + + const float flServerTime = TICKS_TO_TIME(this->m_nTickBase()); + const short nDefinitionIndex = pBaseWeapon->m_AttributeManager().m_Item().m_iItemDefinitionIndex(); + CCSWeaponBaseVData* pWeaponBaseVData = pBaseWeapon->datawep(); + if (!pWeaponBaseVData) + return false; + + if (pWeaponBaseVData->m_WeaponType() == WEAPONTYPE_GRENADE) + { + C_BaseCSGrenade* pGrenade = reinterpret_cast(pBaseWeapon); + if (pGrenade != nullptr) + { + return !pGrenade->IsPinPulled() && pGrenade->GetThrowTime() > 0.f && pGrenade->GetThrowTime() < flServerTime; + } + } + + return false; +} + +CCSPlayerController* CCSPlayerController::GetLocalPlayerController() +{ + + const int nIndex = I::Engine->GetLocalPlayer(); + return I::GameResourceService->pGameEntitySystem->Get(nIndex); +} + +const Vector_t& CCSPlayerController::GetPawnOrigin() +{ + + CBaseHandle hPawn = this->GetPawnHandle(); + if (!hPawn.IsValid()) + return vecEmpty; + + C_CSPlayerPawn* pPawn = I::GameResourceService->pGameEntitySystem->Get(hPawn); + if (pPawn == nullptr) + return vecEmpty; + + return pPawn->GetSceneOrigin(); +} + +C_BaseEntity* C_BaseEntity::GetLocalPlayer() +{ + + const int nIndex = I::Engine->GetLocalPlayer(); + return I::GameResourceService->pGameEntitySystem->Get(nIndex); +} + +const Vector_t& C_BaseEntity::GetSceneOrigin() +{ + if (this->GetGameSceneNode()) + return GetGameSceneNode()->GetAbsOrigin(); + + return vecEmpty; +} +bool C_CSPlayerPawn::CalculateBoundingBox(ImVec4& out, bool compute_surrounding_box) { + + if (!this || this->GetHealth() <= 0) + return false; + + CCollisionProperty* pCollision = this->GetCollision(); + if (pCollision == nullptr) { + return false; + } + + Vector_t min{}, max{}; + + CTransform nodeToWorldTransform = this->GetGameSceneNode()->GetNodeToWorld(); + const Matrix3x4_t matTransform = nodeToWorldTransform.quatOrientation.ToMatrix(nodeToWorldTransform.vecPosition); + if (compute_surrounding_box) { + if (!ComputeHitboxSurroundingBox(min, max)) { + return false; + } + } + else { + min = pCollision->GetMins(); + max = pCollision->GetMaxs(); + } + + out.x = out.y = std::numeric_limits::max(); + out.z = out.w = -std::numeric_limits::max(); + + for (int i = 0; i < 8; ++i) + { + const Vector_t vecPoint{ + i & 1 ? max.x : min.x, + i & 2 ? max.y : min.y, + i & 4 ? max.z : min.z + }; + ImVec2 vecScreen; + if (!D::WorldToScreen(vecPoint.Transform(matTransform), vecScreen)) + return false; + + out.x = MATH::Min(out.x, vecScreen.x); + out.y = MATH::Min(out.y, vecScreen.y); + out.z = MATH::Max(out.z, vecScreen.x); + out.w = MATH::Max(out.w, vecScreen.y); + } + + return true; +} + +bool C_CSPlayerPawn::hasArmour(const int hitgroup) { + if (!this->GetItemServices()) + return false; + + switch (hitgroup) { + case HITGROUP_HEAD: + return this->GetItemServices()->m_bHasHelmet(); + case HITGROUP_GENERIC: + case HITGROUP_CHEST: + case HITGROUP_STOMACH: + case HITGROUP_LEFTARM: + case HITGROUP_RIGHTARM: + return true; + default: + return false; + } +} +bool C_CSPlayerPawn::IsOtherEnemy(C_CSPlayerPawn* pOther) +{ + // check are other player is invalid or we're comparing against ourselves + if (pOther == nullptr || this == pOther) + return false; + + if (CONVAR::game_type->value.i32 == GAMETYPE_FREEFORALL && CONVAR::game_mode->value.i32 == GAMEMODE_FREEFORALL_SURVIVAL) + // check is not teammate + return (this->GetSurvivalTeam() != pOther->GetSurvivalTeam()); + + // @todo: check is deathmatch + if (CONVAR::mp_teammates_are_enemies->value.i1) + return true; + + return this->GetAssociatedTeam() != pOther->GetAssociatedTeam(); +} +/* +bool CEconItemDefinition::IsWeapon() { + // Every gun supports at least 4 stickers. + return GetStickersSupportedCount() >= 4; +} + +bool CEconItemDefinition::IsKnife(bool excludeDefault) { + static constexpr auto CSGO_Type_Knife = + HASHCNSX::hash_32_fnv1a_const("#CSGO_Type_Knife"); + + if (HASHCNSX::hash_32_fnv1a_const(m_pszItemTypeName) != CSGO_Type_Knife) + return false; + + return excludeDefault ? m_nDefIndex >= 500 : true; +} + +bool CEconItemDefinition::IsGlove(bool excludeDefault) { + static constexpr auto Type_Hands = HASHCNSX::hash_32_fnv1a_const("#Type_Hands"); + + if (HASHCNSX::hash_32_fnv1a_const(m_pszItemTypeName) != Type_Hands) return false; + const bool defaultGlove = m_nDefIndex == 5028 || m_nDefIndex == 5029; + + return excludeDefault ? !defaultGlove : true; +} +*/ +int C_CSPlayerPawn::GetAssociatedTeam() +{ + const int nTeam = this->GetTeam(); + + // @todo: check is coaching, currently cs2 doesnt have sv_coaching_enabled, so just let it be for now... + //if (CONVAR::sv_coaching_enabled->GetBool() && nTeam == TEAM_SPECTATOR) + // return this->GetCoachingTeam(); + + return nTeam; +} +#include "interfaces/itrace.h" +//48 89 5C 24 08 48 89 6C 24 10 48 89 74 24 18 57 48 83 EC 30 48 8B 59 08 41 8B F8 8B 69 10 8B 72 10 0F 29 74 24 20 0F 28 F3 48 8D 8B C0 00 00 00 81 39 00 02 00 00 7F 6D E8 ?? ?? ?? ?? 48 63 C8 48 C1 E1 06 48 03 8B D0 00 00 00 33 C0 48 C7 01 01" +/*bool C_CSPlayerPawn::SetupBones(matrix3x4* out, int maxBones, int boneMask, float currentTime) noexcept +{ + if (localPlayer && this == localPlayer.get() && localPlayer->isAlive()) + { + uint32_t* effects = this->getEffects(); + uint32_t* shouldskipframe = (uint32_t*)((uintptr_t)this + 0xA68); + uint32_t backup_effects = *effects; + uint32_t backup_shouldskipframe = *shouldskipframe; + *shouldskipframe = 0; + *effects |= 8; + auto result = VirtualMethod::call(this + 4, out, maxBones, boneMask, currentTime); + *effects = backup_effects; + *shouldskipframe = backup_shouldskipframe; + return result; + } + else + { + *reinterpret_cast(this + 0xA28) = 0; + *reinterpret_cast(this + 0xA30) = memory->globalVars->framecount; + int* render = reinterpret_cast(this + 0x274); + uint32_t* shouldskipframe = (uint32_t*)((uintptr_t)this + 0xA68); + uint32_t* effects = this->getEffects(); + int backup = *render; + uint32_t backup_effects = *effects; + *shouldskipframe = 0; + *render = 0; + boneMask |= 0x200; + *effects |= 8; + auto result = VirtualMethod::call(this + 4, out, maxBones, boneMask, currentTime); + *render = backup; + *effects = backup_effects; + return result; + } + return VirtualMethod::call(this + 4, out, maxBones, boneMask, currentTime); +}*/ + +static Vector_t get_target_angle(C_CSPlayerPawn* localplayer, Vector_t position) +{ + Vector_t eye_position = localplayer->GetEyePosition(); + Vector_t angle = position; + + angle.x = position.x - eye_position.x; + angle.y = position.y - eye_position.y; + angle.z = position.z - eye_position.z; + + angle.Normalizes(); + MATH::vec_angles(angle, &angle); + + angle.clamp(); + return angle; +} +template +T fine(T in, U low, U high) +{ + if (in <= low) + return low; + + if (in >= high) + return high; + + return in; +} +// basic extrap made in 3 mins gonna improve a lot later on its rly Important & needed +Vector_t extrapolate(C_CSPlayerPawn* ent, Vector_t pos) { + if (!ent) + return pos; + + auto simtime = ent->m_flSimulationTime(); + auto old_simtime = simtime + 4; + float simtime_delta = simtime - old_simtime; + int choked_ticks = fine(TIME_TO_TICKS(simtime_delta), 1, 15); + + Vector_t lastOrig; + + if (lastOrig.Length() != pos.Length()) + lastOrig = pos; + + float delta_distance = (pos - lastOrig).Length(); + Vector_t velocity_per_tick = ent->m_vecVelocity() * I::GlobalVars->flIntervalPerTick; + Vector_t new_origin = pos + (velocity_per_tick * choked_ticks); + return new_origin; +} +void C_CSPlayerPawn::CalculateHitboxData(uint32_t idx, Vector_t& pos, Vector4D_t& rot, float& scale, bool predict) { + if (!this || this->GetHealth() <= 0) + return; + + auto game_scene_node = this->GetGameSceneNode(); + if (!game_scene_node) + return; + + auto skeleton = game_scene_node->GetSkeletonInstance(); + if (!skeleton) + return; + + auto model_state = &skeleton->GetModel(); + if (!model_state) + return; + + CStrongHandle model = model_state->m_hModel(); + if (!model.is_valid()) + return; + + auto model_skelet = &model->m_modelSkeleton(); + if (!model_skelet) + return; + + skeleton->calc_world_space_bones(0, bone_flags::FLAG_HITBOX); + + auto data = model_state->GetHitboxData(); + if (!data) + return; + + if (!(model->GetHitboxFlags(idx) & bone_flags::FLAG_HITBOX)) + return; + + auto parent_index = model->GetHitboxParent(idx); + if (parent_index == -1) + return; + + rot = data[idx].rot; + scale = data[idx].scale; + + + if (predict) { + // Extrapolate position based on velocity and acceleration + pos = data[idx].pos + this->m_vecVelocity() * I::GlobalVars->flIntervalPerTick; + } + else { + pos = data[idx].pos; + } + +} +uint32_t C_CSPlayerPawn::GetHitGroup(int idx) { + switch (idx) { + case HEAD: + case NECK: + return HITGROUP_HEAD; + case CHEST: + case LEFT_CHEST: + case RIGHT_CHEST: + case PELVIS: + return HITGROUP_CHEST; + case STOMACH: + return HITGROUP_STOMACH; + case L_LEG: + case R_LEG: + case L_FEET: + case R_FEET: + return HITGROUP_LEFTLEG; + default: + return false; + } +} +C_CSWeaponBase* C_CSPlayerPawn::ActiveWeapon() { + CPlayer_WeaponServices* WeaponServices = this->GetWeaponServices(); + if (!WeaponServices) + return nullptr; + + auto ActiveWeapon = I::GameResourceService->pGameEntitySystem->Get(WeaponServices->m_hActiveWeapon()); + if (!ActiveWeapon) + return nullptr; + + return ActiveWeapon; +} + +C_CSWeaponBase* CCSPlayerController::GetPlayerWeapon(C_CSPlayerPawn* pPlayer) +{ + if (!pPlayer || !pPlayer->GetWeaponServices()) + return nullptr; + + CBaseHandle hActiveWeapon = pPlayer->GetWeaponServices()->m_hActiveWeapon(); + + if (!hActiveWeapon.IsValid()) + return nullptr; + + C_CSWeaponBase* pWeapon = I::GameResourceService->pGameEntitySystem->Get(hActiveWeapon); + + return pWeapon; +} + +bool C_CSPlayerPawn::CanNextAttack(float svtime) { + return false; +} +bool C_CSPlayerPawn::CanShoot(float svtime) { + CPlayer_WeaponServices* WeaponServices = this->GetWeaponServices(); + if (!WeaponServices) + return false; + + auto ActiveWeapon = I::GameResourceService->pGameEntitySystem->Get(WeaponServices->m_hActiveWeapon()); + if (!ActiveWeapon) + return false; + + auto data = ActiveWeapon->datawep(); + if (!data) + return false; + + if (ActiveWeapon->clip1() <= 0) + return false; + + if (data->m_WeaponType() == WEAPONTYPE_KNIFE || data->m_WeaponType() == WEAPONTYPE_FISTS) + return true; + /* + auto next_attack = (WeaponServices->m_flNextAttack()); + auto next_2 = WeaponServices->m_flNextAttack() * I::GlobalVars->flIntervalPerTick; + auto next_3 = static_cast(WeaponServices->m_flNextAttack() * I::GlobalVars->flIntervalPerTick); + */ + + auto primary_tick = ActiveWeapon->m_nNextPrimaryAttackTick(); + + if (primary_tick > svtime) { + return false; + } + + return true; +} +bool C_CSPlayerPawn::Visible(C_CSPlayerPawn* local, int type, bool v) +{ + if (!this || this->GetHealth() <= 0) + return false; + + if (type == 0) { + trace_filter_t filter = {}; + I::Trace->Init(filter, local, 0x1C3003, 4, 7); + + game_trace_t trace = {}; + ray_t ray = {}; + + Vector_t start_eye = local->GetEyePosition(); + Vector_t end_eye = this->GetEyePosition(); + + I::Trace->TraceShape(ray, &start_eye, &end_eye, filter, trace); + + return trace.HitEntity && trace.HitEntity->GetRefEHandle().GetEntryIndex() == this->GetRefEHandle().GetEntryIndex() || trace.Fraction > 0.97f; + } + else if (type == TRACE_TYPE::AIMBOT) { + if (v) { + trace_filter_t filter = {}; + I::Trace->Init(filter, local, 0x1C3003, 4, 7); + + game_trace_t trace = {}; + ray_t ray = {}; + + Vector_t start_eye = local->GetEyePosition(); + Vector_t end_eye = this->GetEyePosition(); + + I::Trace->TraceShape(ray, &start_eye, &end_eye, filter, trace); + + return trace.HitEntity && trace.HitEntity->GetRefEHandle().GetEntryIndex() == this->GetRefEHandle().GetEntryIndex() || trace.Fraction > 0.97f; + } + else + return true; + } + + return false; +} +float C_CSPlayerPawn::GetProperSpread() { + /* acc penalty */ + auto weapon = this->ActiveWeapon(); + if (!weapon) + return 0.f; + + auto vdata = weapon->datawep(); + if (!vdata) + return 0.f; + float flSpread = 0.f; + if (weapon->m_weaponMode() == CSWeaponMode::Primary_Mode) + { + return vdata->m_flSpread().flValue[0]; + } + else if (weapon->m_weaponMode() == CSWeaponMode::Secondary_Mode) + { + return vdata->m_flSpread().flValue[1]; + } + return flSpread; +}; +float C_CSPlayerPawn::GetProperAccuracy() { + /* acc penalty */ + auto weapon = this->ActiveWeapon(); + if (!weapon) + return 0.f; + + auto vdata = weapon->datawep(); + if (!vdata) + return 0.f; + + float flInnacuracy = weapon->m_fAccuracyPenalty(); + + if (this->m_vecVelocity().Length2D() != 0.0f) /* we are not standing */ + { + float flInnacuracyMove = 0.0f; + + if (weapon->m_weaponMode() == CSWeaponMode::Primary_Mode) + flInnacuracyMove = vdata->m_flInaccuracyMove().flValue[0]; + else if (weapon->m_weaponMode() == CSWeaponMode::Secondary_Mode) + flInnacuracyMove = vdata->m_flInaccuracyMove().flValue[1]; + + if (this->m_bIsWalking()) + flInnacuracyMove /= 3.f; + + else if (this->GetFlags() & FL_DUCKING) + flInnacuracyMove /= 6.f; + + flInnacuracy += flInnacuracyMove; + } + + if (!(this->GetFlags() & FL_ONGROUND)) + { + if (weapon->m_weaponMode() == CSWeaponMode::Primary_Mode) + flInnacuracy += vdata->m_flInaccuracyJump().flValue[0]; + else if (weapon->m_weaponMode() == CSWeaponMode::Secondary_Mode) + flInnacuracy += vdata->m_flInaccuracyJump().flValue[1]; + } + + return flInnacuracy; +}; +bool C_CSPlayerPawn::InsideCrosshair(C_CSPlayerPawn* target, QAngle_t ang, float range) +{ + if (!this || this->GetHealth() <= 0) + return false; + + + trace_filter_t filter = {}; + I::Trace->Init(filter, target, 0x1C3003, 4, 7); + + game_trace_t trace = {}; + ray_t ray = {}; + Vector_t vecForward = { }; + ang.ToDirections(&vecForward); + vecForward *= range; + Vector_t vecStart = target->GetEyePosition(); + Vector_t vecEnd = vecStart + vecForward; + I::Trace->TraceShape(ray, &vecStart, &vecEnd, filter, trace); + + return trace.HitEntity && trace.HitEntity->GetRefEHandle().GetEntryIndex() == this->GetRefEHandle().GetEntryIndex(); +} + +bool C_CSPlayerPawn::TracePoint(C_CSPlayerPawn* target, Vector_t end) +{ + if (!this || this->GetHealth() <= 0) + return false; + + trace_filter_t filter = {}; + I::Trace->Init(filter, this, 0x1C3003, 4, 7); + + game_trace_t trace = {}; + ray_t ray = {}; + + Vector_t vecStart = this->GetEyePosition(); + I::Trace->TraceShape(ray, &vecStart, &end, filter, trace); + + if (trace.HitEntity && trace.HitEntity->GetRefEHandle().GetEntryIndex() == target->GetRefEHandle().GetEntryIndex()) + { + return true; + } + + return false; +} + + +// cHoca + +bool C_BaseEntity::ComputeHitboxSurroundingBox(Vector_t& min, Vector_t& max) { + using fnComputeHitboxSurroundingBox = bool(CS_FASTCALL*)(void*, Vector_t&, Vector_t&); + static auto ComputeHitboxSurroundingBox = reinterpret_cast(MEM::GetAbsoluteAddress(MEM::FindPattern(CLIENT_DLL, CS_XOR("E9 ? ? ? ? F6 43 5B FD")), 1, 0)); + if (!ComputeHitboxSurroundingBox) { + L_PRINT(LOG_ERROR) << CS_XOR("[C_BaseEntity::ComputeHitboxSurroundingBox] C_HOOK::ComputeHitboxSurroundingBox > null"); + return false; + } + return ComputeHitboxSurroundingBox(this, min, max); + +} +//?GetNumberOfBoundContexts@SchedulerBase@details@Concurrency@@IEBAKXZ_0 ; Concurrency::details::SchedulerBase::GetNumberOfBoundContexts(void) +// Em baixo no SUBROUTINE de baixo + +#include "../core/spoofcall/invoker.h" +void CSkeletonInstance::get_bone_data(bone_data& data, int index) +{ + // cHoca + + using fnBoneData = void(CS_FASTCALL*)(void*, bone_data&, int index); + static auto BoneData = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("E8 ? ? ? ? EB 19 48 8B CF"))); + + return BoneData(this, data, index); +} +// #STR: "C:\\buildworker\\csgo_rel_win64\\build\\src\\game\\shared\, "Bone merge bones from parent were invalid: parent model '%, "CalcWorldSpaceBones" +void CS_FASTCALL CSkeletonInstance::calc_world_space_bones(uint32_t parent, uint32_t mask) +{ // cHoca + + using fnNewCalcWSsBones = void(CS_FASTCALL)(void*, uint32_t); + static auto bone_new = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("40 55 56 57 41 54 41 55 41 56 41 57 48 81 EC D0"))); + return bone_new(this, mask); +} + +uint32_t CModel::GetHitboxesNum() { + + using fnHitboxNum = uint32_t(CS_FASTCALL*)(void*); + static auto HitboxNum = reinterpret_cast(MEM::GetAbsoluteAddress(MEM::FindPattern(CLIENT_DLL, CS_XOR("E8 ? ? ? ? 8B D8 48 C7 44 24 50 00 00 00 00")), 1, 0)); + CS_ASSERT(HitboxNum != nullptr); + + return HitboxNum(this); + +} + +CGCClientSharedObjectCache* CGCClient::FindSOCache(SOID_t ID, + bool bCreateIfMissing) { + + using fnFindSOCache = CGCClientSharedObjectCache * (CS_FASTCALL*)(void*, SOID_t, bool); + static auto FindSOCache = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 89 5C 24 10 48 89 6C 24 18 48 89 7C 24 20 41 54 41 56 41 57 48 83 EC 40 48"))); + CS_ASSERT(FindSOCache != nullptr); + + return FindSOCache(this, ID, bCreateIfMissing); + +} + + + +void CGameSceneNode::SetMeshGroupMask(uint64_t meshGroupMask) { + if (!H::SetMeshGroupMask) { + L_PRINT(LOG_ERROR) << "error getting meshgroupmask"; + } + + return H::SetMeshGroupMask(this, meshGroupMask); +} + +void C_BaseModelEntity::SetModel(const char* name) { + auto orig = H::hkSetModel.GetOriginal(); + return orig(this, name); +} + + +void CEconItem::SetDynamicAttributeValue(int index, void* value) { + CEconItemSchema* pItemSchema = + I::Client->GetEconItemSystem()->GetEconItemSchema(); + if (!pItemSchema) return; + + void* pAttributeDefinitionInterface = + pItemSchema->GetAttributeDefinitionInterface(index); + if (!pAttributeDefinitionInterface) return; + + if (!H::fnSetDynamicAttributeValueUint) return; + H::fnSetDynamicAttributeValueUint(this, pAttributeDefinitionInterface, + value); +} + +void CEconItem::SetDynamicAttributeValueString(int index, const char* value) { + // CS2FIXME: Function got inlined and cannot be sigscanned. +} + +CEconItem* CEconItem::CreateInstance() { + // ida: // #STR: "Update(CEconItem)", "CEconItem", "Create(CEconItem)", "BuildCacheSubscribed(CEconItem)", "Update(CEconEquipSlot)", "CEconEquipSlot", "Create(CEconEquipSlot)", "BuildCacheSubscribed(CEconEquipSlot)", "Update(CEconPersonaDataPublic)", "CEconPersonaDataPublic" + // ida: sub_E0F420( + // 1, + // (unsigned int)CEconItem::CreateInstance, + // 0, + // (unsigned int)"CEconItem", + // (__int64)"BuildCacheSubscribed(CEconItem)", + // (__int64)"Create(CEconItem)", + // (__int64)"Update(CEconItem)"); + + using fnCreateSharedObjectSubclassEconItem = CEconItem * (__cdecl*)(); + static fnCreateSharedObjectSubclassEconItem oCreateSharedObjectSubclassEconItem = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 83 EC 28 B9 48 00 00 00 E8 ? ? ? ? 48 85"))); + +#ifdef CS_PARANOID + CS_ASSERT(oCreateSharedObjectSubclassEconItem != nullptr); +#endif + + return oCreateSharedObjectSubclassEconItem(); +} +uint32_t CModel::GetHitboxFlags(uint32_t index) +{ + + using fnHitboxFlags = uint32_t(CS_FASTCALL*)(void*, uint32_t); + static auto HitboxFlags = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("85 D2 78 16 3B 91"))); + CS_ASSERT(HitboxFlags != nullptr); + + return HitboxFlags(this, index); +} + +const char* CModel::GetHitboxName(uint32_t index) +{ + using fnHitboxName = const char* (CS_FASTCALL*)(void*, uint32_t); + static auto HitboxName = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("85 D2 78 25 3B 91"))); + CS_ASSERT(HitboxName != nullptr); + + return HitboxName(this, index); +} + +uint32_t CModel::GetHitboxParent(uint32_t index) +{ + + using fnHitboxParent = uint32_t(CS_FASTCALL*)(void*, uint32_t); + static auto HitboxParent = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("85 D2 78 17 3B 91 78"))); + CS_ASSERT(HitboxParent != nullptr); + return HitboxParent(this, index); +} + +CGCClientSharedObjectTypeCache* CGCClientSharedObjectCache::CreateBaseTypeCache( + int nClassID) { + using fnCGCClientSharedObjectTypeCache = CGCClientSharedObjectTypeCache * (CS_FASTCALL*)(void*, int); + static fnCGCClientSharedObjectTypeCache createbasetypecache = reinterpret_cast(MEM::GetAbsoluteAddress(MEM::FindPattern(CLIENT_DLL, CS_XOR("E8 ? ? ? ? 33 C9 8B D1")), 1, 0)); + CS_ASSERT(createbasetypecache != nullptr); + return createbasetypecache(this, nClassID); +} + + +void C_CSWeaponBase::AddStattrakEntity() +{ + using fnAddStattrakEntity = void(CS_FASTCALL*)(void*); + static auto hkAddStattrakEntity = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("40 55 41 55 48 8D 6C 24 B8"))); + CS_ASSERT(hkAddStattrakEntity != nullptr); + return hkAddStattrakEntity(this); +} + +void C_CSWeaponBase::AddNametagEntity() +{ + using fnAddNametagEntity = void(CS_FASTCALL*)(void*); + static auto hkAddNametagEntity = reinterpret_cast(MEM::GetAbsoluteAddress(MEM::FindPattern(CLIENT_DLL, CS_XOR("E8 ? ? ? ? 48 8B CF E8 ? ? ? ? 48 8B C8 E8 ? ? ? ?")), 1, 0)); + CS_ASSERT(hkAddNametagEntity != nullptr); + return hkAddNametagEntity(this); +} + +CEconItem* C_EconItemView::GetSOCData(CCSPlayerInventory* sdfsdf) { + CCSPlayerInventory* pInventory = CCSPlayerInventory::GetInstance(); + if (!pInventory) return nullptr; + + return pInventory->GetSOCDataForItem(m_iItemID()); +} + + +bool CEconItemDefinition::IsWeapon() { + // Every gun supports at least 4 stickers. + return GetStickersSupportedCount() >= 4; +} + +bool CEconItemDefinition::IsKnife(bool excludeDefault, const char* name) { + auto CSGO_Type_Knife = FNV1A::Hash("#CSGO_Type_Knife"); + + if (FNV1A::Hash(this->m_pszItemBaseName) != CSGO_Type_Knife) + return false; + + return excludeDefault ? m_nDefIndex >= 500 : true; +} + +bool CEconItemDefinition::IsGlove(bool excludeDefault, const char* name) { + auto Type_Hands = FNV1A::Hash("#Type_Hands"); + + bool valid = FNV1A::Hash(this->m_pszItemBaseName) == Type_Hands; + bool defaultGlove = valid && m_nDefIndex == 5028 || m_nDefIndex == 5029; + + return excludeDefault ? !defaultGlove : valid; +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/entity.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/entity.h new file mode 100644 index 0000000..025d3aa --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/entity.h @@ -0,0 +1,1365 @@ +#pragma once + +// @test: using interfaces in the header | not critical but could blow up someday with thousands of errors or affect to compilation time etc +// used: cgameentitysystem, ischemasystem +#include "../core/interfaces.h" +#include "interfaces/igameresourceservice.h" +#include "interfaces/ischemasystem.h" + +// used: schema field +#include "../core/schema.h" +#include "../core/spoofcall/lazy_importer.hpp" +// used: l_print +#include "../utilities/log.h" +// used: vector_t +#include "datatypes/vector.h" +// used: qangle_t +#include "datatypes/qangle.h" +// used: ctransform +#include "datatypes/transform.h" +#include "datatypes/utlstring.h" +#include "datatypes/utlvector.h" +#include "datatypes/cstronghandle.hpp" +// used: cbasehandle +#include "entity_handle.h" +// used: game's definitions +#include "const.h" +#include "../core/pointer/pointer.hpp" +#include "../core/csig/sigscan.hpp" +#include "../utilities/draw.h" +#include "../core/schemav2.hpp" + +#include + +using GameTime_t = std::int32_t; +using GameTick_t = std::int32_t; + +enum TRACE_TYPE : int { + DEFAULT = 0, + AIMBOT = 1 +}; +class CFiringModeFloat +{ +public: + float flValue[2]; +}; +enum HitGroup_t : std::uint32_t { + HITGROUP_INVALID = -1, + HITGROUP_GENERIC = 0, + HITGROUP_HEAD = 1, + HITGROUP_CHEST = 2, + HITGROUP_STOMACH = 3, + HITGROUP_LEFTARM = 4, + HITGROUP_RIGHTARM = 5, + HITGROUP_LEFTLEG = 6, + HITGROUP_RIGHTLEG = 7, + HITGROUP_NECK = 8, + HITGROUP_UNUSED = 9, + HITGROUP_GEAR = 10, + HITGROUP_SPECIAL = 11, + HITGROUP_COUNT = 12, +}; + +enum HITBOXES : uint32_t { + HEAD = 6, + NECK = 5, + CHEST = 4, + RIGHT_CHEST = 8, + LEFT_CHEST = 13, + STOMACH = 3, + PELVIS = 2, + CENTER = 1, + L_LEG = 23, + L_FEET = 24, + R_LEG = 26, + R_FEET = 27 +}; + +enum CSWeaponType : std::uint32_t { + WEAPONTYPE_KNIFE = 0, + WEAPONTYPE_PISTOL = 1, + WEAPONTYPE_SUBMACHINEGUN = 2, + WEAPONTYPE_RIFLE = 3, + WEAPONTYPE_SHOTGUN = 4, + WEAPONTYPE_SNIPER_RIFLE = 5, + WEAPONTYPE_MACHINEGUN = 6, + WEAPONTYPE_C4 = 7, + WEAPONTYPE_TASER = 8, + WEAPONTYPE_GRENADE = 9, + WEAPONTYPE_EQUIPMENT = 10, + WEAPONTYPE_STACKABLEITEM = 11, + WEAPONTYPE_FISTS = 12, + WEAPONTYPE_BREACHCHARGE = 13, + WEAPONTYPE_BUMPMINE = 14, + WEAPONTYPE_TABLET = 15, + WEAPONTYPE_MELEE = 16, + WEAPONTYPE_SHIELD = 17, + WEAPONTYPE_ZONE_REPULSOR = 18, + WEAPONTYPE_UNKNOWN = 19, +}; +// MGetKV3ClassDefaults + +class CEntityInstance; + +class CEntityIdentity +{ +public: + CS_CLASS_NO_INITIALIZER(CEntityIdentity); + + // @note: handle index is not entity index + SCHEMA_ADD_OFFSET(std::uint32_t, GetIndex, 0x10); + SCHEMA_ADD_FIELD(const char*, GetDesignerName, "CEntityIdentity->m_designerName"); + SCHEMA_ADD_FIELD(std::uint32_t, GetFlags, "CEntityIdentity->m_flags"); + + [[nodiscard]] bool IsValid() + { + return GetIndex() != INVALID_EHANDLE_INDEX; + } + + [[nodiscard]] int GetEntryIndex() + { + if (!IsValid()) + return ENT_ENTRY_MASK; + + return GetIndex() & ENT_ENTRY_MASK; + } + + [[nodiscard]] int GetSerialNumber() + { + return GetIndex() >> NUM_SERIAL_NUM_SHIFT_BITS; + } + + CEntityInstance* pInstance; // 0x00 +}; + +class CEntityInstance +{ +public: + CS_CLASS_NO_INITIALIZER(CEntityInstance); + + void GetSchemaClassInfo(SchemaClassInfoData_t** pReturn) + { + return MEM::CallVFunc(this, pReturn); + } + // cHoca + [[nodiscard]] std::uint32_t GetEntityHandle() + { + using function_t = std::uint32_t(__fastcall*)(void*); + static function_t fn = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 85 C9 74 32 48 8B 41 10 48 85 C0 74 29 44"))); + CS_ASSERT(fn != nullptr); + return fn(this); + } + + [[nodiscard]] CBaseHandle GetRefEHandle() + { + CEntityIdentity* pIdentity = GetIdentity(); + if (pIdentity == nullptr) + return CBaseHandle(); + + return CBaseHandle(pIdentity->GetEntryIndex(), pIdentity->GetSerialNumber() - (pIdentity->GetFlags() & 1)); + } + + SCHEMA_ADD_FIELD(CEntityIdentity*, GetIdentity, "CEntityInstance->m_pEntity"); +}; + + +enum EEconItemQuality { + IQ_UNDEFINED = -1, + IQ_NORMAL, + IQ_GENUINE, + IQ_VINTAGE, + IQ_UNUSUAL, + IQ_UNIQUE, + IQ_COMMUNITY, + IQ_DEVELOPER, + IQ_SELFMADE, + IQ_CUSTOMIZED, + IQ_STRANGE, + IQ_COMPLETED, + IQ_HAUNTED, + IQ_TOURNAMENT, + IQ_FAVORED +}; + +enum EEconItemRarity { + IR_DEFAULT, + IR_COMMON, + IR_UNCOMMON, + IR_RARE, + IR_MYTHICAL, + IR_LEGENDARY, + IR_ANCIENT, + IR_IMMORTAL +}; + +// https://gitlab.com/KittenPopo/csgo-2018-source/-/blob/main/game/shared/econ/econ_item_constants.h#L39 +enum EEconTypeID { + k_EEconTypeItem = 1, + k_EEconTypePersonaDataPublic = 2, + k_EEconTypeGameAccountClient = 7, + k_EEconTypeGameAccount = 8, + k_EEconTypeEquipInstance = 31, + k_EEconTypeDefaultEquippedDefinitionInstance = 42, + k_EEconTypeDefaultEquippedDefinitionInstanceClient = 43, + k_EEconTypeCoupon = 45, + k_EEconTypeQuest = 46, +}; + +// MGetKV3ClassDefaults +class SkeletonBoneBounds_t +{ +public: + Vector_t m_vecCenter; // 0x0 + Vector_t m_vecSize; // 0xc +}; + +// Registered binary: animationsystem.dll (project 'modellib') +// Alignment: 8 +// Size: 0x60 +// +// MGetKV3ClassDefaults +class RenderSkeletonBone_t +{ +public: + CS_CLASS_NO_INITIALIZER(RenderSkeletonBone_t); + + SCHEMA_ADD_OFFSET(const char*, m_boneName, 0x0); + SCHEMA_ADD_OFFSET(const char*, m_parentName, 0x8); + SCHEMA_ADD_OFFSET(SkeletonBoneBounds_t, m_bbox, 0x40); + SCHEMA_ADD_OFFSET(float, m_flSphereRadius, 0x58); + +}; + +// Registered binary: animationsystem.dll (project 'modellib') +// Alignment: 8 +// Size: 0x50 +// +// MGetKV3ClassDefaults +class CRenderSkeleton +{ +public: + CS_CLASS_NO_INITIALIZER(CRenderSkeleton); + + SCHEMA_ADD_OFFSET(CUtlVector, m_bones, 0x0); + SCHEMA_ADD_OFFSET(CUtlVector, m_boneParents, 0xB8); + SCHEMA_ADD_OFFSET(int32_t, m_nBoneWeightCount, 0x48); + +}; + + + + +class c_attachments +{ +public: + char pad_0x0000[0x10]; // 0x0000 + const char* m_key; // 0x0010 + char pad_0x0018[0x8]; // 0x0018 + const char* m_name; // 0x0020 + const char* m_influenceNames[3]; // 0x0028 + char pad_0x0030[0x10]; // 0x0030 + Vector4D_t m_vInfluenceRotations[3]; // 0x0040 + Vector_t m_vInfluenceOffsets[3]; // 0x0070 + float m_influenceWeights[3]; // 0x0094 + char pad_0x00A0[0x10]; // 0x00A0 +}; + +class c_drawcalls +{ +public: + __int32 m_nPrimitiveType; // 0x0000 + __int32 m_nBaseVertex; // 0x0004 + __int32 m_nVertexCount; // 0x0008 + __int32 m_nStartIndex; // 0x000C + __int32 m_nIndexCount; // 0x0010 + float m_flUvDensity; // 0x0014 + float m_vTintColor[3]; // 0x0018 + float m_flAlpha; // 0x0024 + char pad_0x0028[0xC0]; // 0x0028 + +}; // Size=0x00E8 + +class c_bones +{ +public: + const char* m_boneName; // 0x0000 + const char* m_parentName; // 0x0008 + float m_invBindPose[12]; // 0x0010 + Vector_t m_vecCenter; // 0x0040 + Vector_t m_vecSize; // 0x004C + float m_flSphereradius; // 0x0058 + char pad_0x005C[0x4]; // 0x005C + +}; // Size=0x0060 + + +class CRenderMesh +{ + +public: + + char pad_0x0000[40]; // 0x0000 + Vector_t m_vMinBounds; // 0x0028 + Vector_t m_vMaxBounds; // 0x0034 + char pad_0x0044[8]; // 0x0044 + c_drawcalls* m_drawCalls; // 0x0048 + char pad_0x0050[104]; // 0x0050 + __int32 m_skeletoncount; // 0x00B8 + char pad_0x00BC[4]; // 0x00BC + c_bones* m_skeleton; // 0x00C0 + char pad_0x00C8[112]; // 0x00C8 + + +}; +class CRenderM { +public: +CRenderMesh* mesh; +}; +struct VPhysicsCollisionAttribute_t +{ + +public: + CS_CLASS_NO_INITIALIZER(VPhysicsCollisionAttribute_t); + + SCHEMA_ADD_FIELD(uint8_t, m_nCollisionGroup, "VPhysicsCollisionAttribute_t->m_nCollisionGroup"); + SCHEMA_ADD_FIELD(uint8_t, m_nHierarchyId, "VPhysicsCollisionAttribute_t->m_nHierarchyId"); + SCHEMA_ADD_FIELD(uint8_t, m_nOwnerId, "VPhysicsCollisionAttribute_t->m_nOwnerId"); + SCHEMA_ADD_FIELD(uint8_t, m_nEntityId, "VPhysicsCollisionAttribute_t->m_nEntityId"); + SCHEMA_ADD_FIELD(uint8_t, m_nCollisionFunctionMask, "VPhysicsCollisionAttribute_t->m_nCollisionFunctionMask"); + +}; +class CCollisionProperty +{ +public: + CS_CLASS_NO_INITIALIZER(CCollisionProperty); + SCHEMA_ADD_FIELD(Vector_t, GetMins, "CCollisionProperty->m_vecMins"); + SCHEMA_ADD_FIELD(Vector_t, GetMaxs, "CCollisionProperty->m_vecMaxs"); + SCHEMA_ADD_FIELD(uint8_t, m_solidFlags, "CCollisionProperty->m_usSolidFlags"); + SCHEMA_ADD_FIELD(VPhysicsCollisionAttribute_t, m_collisionAttribute, "CCollisionProperty->m_collisionAttribute"); +}; + +class CAnimBone +{ +public: + CS_CLASS_NO_INITIALIZER(CAnimBone); + SCHEMA_EXTENDED(Vector_t, m_pos, "animationsystem.dll", "CAnimBone", "m_pos", 0); + + +}; +class CPhysModel; + +class CModelSkeleton +{ +public: + CModelSkeleton() = delete; + CModelSkeleton(CModelSkeleton&&) = delete; + CModelSkeleton(const CModelSkeleton&) = delete; + +public: + SCHEMA_ADD_OFFSET(CUtlVector, vecBoneNames, 0x4); + SCHEMA_ADD_OFFSET(CUtlVector, vecBoneParent, 0x18); + SCHEMA_ADD_OFFSET(CUtlVector, m_boneSphere, 0x30); + SCHEMA_ADD_OFFSET(CUtlVector, m_nFlag, 0x48); + SCHEMA_ADD_OFFSET(CUtlVector, m_bonePosParent, 0x60); + SCHEMA_ADD_OFFSET(CUtlVector, m_boneRotParent, 0x78); + SCHEMA_ADD_OFFSET(CUtlVector, m_boneScaleParent, 0x90); + +}; + + +// Alignment: 10 +// Size: 0x58 +struct PermModelInfo_t +{ +public: + int m_nFlags; // 0x0 + Vector_t m_vHullMin; // 0x4 + Vector_t m_vHullMax; // 0x10 + Vector_t m_vViewMin; // 0x1c + Vector_t m_vViewMax; // 0x28 + float m_flMass; // 0x34 + Vector_t m_vEyePosition; // 0x38 + float m_flMaxEyeDeflection; // 0x44 + const char* m_sSurfaceProperty; // 0x48 + const char* m_keyValueText; // 0x50 +}; +struct PermModelExtPart_t +{ +public: + CTransform m_Transform; // 0x0 + const char* m_Name; // 0x20 + int32_t m_nParent; // 0x28 +}; +// Alignment: 0 +// Size: 0x1 +class InfoForResourceTypeCRenderMesh +{ +private: + [[maybe_unused]] uint8_t __pad0000[0x1]; // 0x0 +public: + // No members available +}; +// Alignment: 0 +// Size: 0x1 +class InfoForResourceTypeCModel +{ +private: + [[maybe_unused]] uint8_t __pad0000[0x1]; // 0x0 +public: + // No members available +}; +// Alignment: 0 +// Size: 0x1 +class InfoForResourceTypeCAnimationGroup +{ +private: + [[maybe_unused]] uint8_t __pad0000[0x1]; // 0x0 +public: + // No members available +}; +// Alignment: 0 +// Size: 0x1 +class InfoForResourceTypeCSequenceGroupData +{ +private: + [[maybe_unused]] uint8_t __pad0000[0x1]; // 0x0 +public: + // No members available +}; + +// Alignment: 0 +// Size: 0x1 +class InfoForResourceTypeCPhysAggregateData +{ +private: + [[maybe_unused]] uint8_t __pad0000[0x1]; // 0x0 +public: + // No members available +}; +// Alignment: 0 +// Size: 0x1 +class InfoForResourceTypeIMaterial2 +{ +private: + [[maybe_unused]] uint8_t __pad0000[0x1]; // 0x0 +public: + // No members available +}; +// Alignment: 2 +// Size: 0x20 +struct MaterialGroup_t +{ +public: + + CUtlString m_name; // 0x0 + CUtlVector> m_materials; // 0x8 +}; +// Alignment: 4 +// Size: 0x4 +enum class ModelBoneFlexComponent_t : uint32_t +{ + MODEL_BONE_FLEX_INVALID = 0xffffffffffffffff, + MODEL_BONE_FLEX_TX = 0x0, + MODEL_BONE_FLEX_TY = 0x1, + MODEL_BONE_FLEX_TZ = 0x2, +}; +// Alignment: 5 +// Size: 0x20 +struct ModelBoneFlexDriverControl_t +{ +public: + ModelBoneFlexComponent_t m_nBoneComponent; // 0x0 + CUtlString m_flexController; // 0x8 + uint32_t m_flexControllerToken; // 0x10 + float m_flMin; // 0x14 + float m_flMax; // 0x18 +}; + +// Alignment: 3 +// Size: 0x28 + +struct ModelBoneFlexDriver_t +{ +public: + const char* m_boneName; // 0x0 + uint32_t m_boneNameToken; // 0x8 +private: + [[maybe_unused]] uint8_t __pad000c[0x4]; // 0xc +public: + CUtlVector m_controls; // 0x10 +}; +// Alignment: 2 +// Size: 0x48 +class CModelConfigElement +{ +private: + [[maybe_unused]] uint8_t __pad0000[0x8]; // 0x0 +public: + CUtlString m_ElementName; // 0x8 + CUtlVector m_NestedElements; // 0x10 +}; +// Alignment: 3 +// Size: 0x28 +class CModelConfig +{ +public: + CUtlString m_ConfigName; // 0x0 + CUtlVector m_Elements; // 0x8 + bool m_bTopLevel; // 0x20 +}; +// Alignment: 3 +// Size: 0x20 +class CModelConfigList +{ +public: + bool m_bHideMaterialGroupInTools; // 0x0 + bool m_bHideRenderColorInTools; // 0x1 +private: + [[maybe_unused]] uint8_t __pad0002[0x6]; // 0x2 +public: + CUtlVector m_Configs; // 0x8 +}; +// Alignment: 2 +// Size: 0x10 +struct PermModelDataAnimatedMaterialAttribute_t +{ +public: + CUtlString m_AttributeName; // 0x0 + int32_t m_nNumChannels; // 0x8 +}; +#define CONCAT_IMPL(x, y) x##y +#define MACRO_CONCAT(x, y) CONCAT_IMPL(x, y) +#define PAD(SIZE) BYTE MACRO_CONCAT(_pad, __COUNTER__)[SIZE]; +enum bone_flags : uint32_t { + FLAG_NO_BONE_FLAGS = 0x0, + FLAG_BONEFLEXDRIVER = 0x4, + FLAG_CLOTH = 0x8, + FLAG_PHYSICS = 0x10, + FLAG_ATTACHMENT = 0x20, + FLAG_ANIMATION = 0x40, + FLAG_MESH = 0x80, + FLAG_HITBOX = 0x100, + FLAG_BONE_USED_BY_VERTEX_LOD0 = 0x400, + FLAG_BONE_USED_BY_VERTEX_LOD1 = 0x800, + FLAG_BONE_USED_BY_VERTEX_LOD2 = 0x1000, + FLAG_BONE_USED_BY_VERTEX_LOD3 = 0x2000, + FLAG_BONE_USED_BY_VERTEX_LOD4 = 0x4000, + FLAG_BONE_USED_BY_VERTEX_LOD5 = 0x8000, + FLAG_BONE_USED_BY_VERTEX_LOD6 = 0x10000, + FLAG_BONE_USED_BY_VERTEX_LOD7 = 0x20000, + FLAG_BONE_MERGE_READ = 0x40000, + FLAG_BONE_MERGE_WRITE = 0x80000, + FLAG_ALL_BONE_FLAGS = 0xfffff, + BLEND_PREALIGNED = 0x100000, + FLAG_RIGIDLENGTH = 0x200000, + FLAG_PROCEDURAL = 0x400000, +}; + +struct alignas(16) bone_data { + Vector_t pos; + float scale; + Vector4D_t rot; +}; + +#include "../sdk/datatypes/stronghandle.hpp" +class CModel { +public: + CModel() = delete; + CModel(CModel&&) = delete; + CModel(const CModel&) = delete; +public: + + SCHEMA_ADD_OFFSET(const char*, szName, 0x8); + SCHEMA_ADD_OFFSET(CModelSkeleton, m_modelSkeleton, 0x188); + SCHEMA_ADD_OFFSET(CRenderM*, m_meshes, 0x78); + //uint32_t GetHitboxesNum(); + uint32_t GetHitboxFlags(uint32_t index); + const char* GetHitboxName(uint32_t index); + uint32_t GetHitboxParent(uint32_t index); + + uint32_t GetHitboxesNum(); + +}; + +class CModelState +{ +public: + CModelState() = delete; + CModelState(CModelState&&) = delete; + CModelState(const CModelState&) = delete; + + SCHEMA_ADD_FIELD(CStrongHandle< CModel >, m_hModel, "CModelState->m_hModel"); + SCHEMA_ADD_OFFSET(CTransform*, BoneTransform, 0x80); + + bone_data* GetHitboxData() noexcept { + bone_data* boneDataPtr = *reinterpret_cast(this + 0x80); + + if (boneDataPtr == nullptr) + boneDataPtr = *reinterpret_cast(reinterpret_cast(this) + 0x80); + + CS_ASSERT(boneDataPtr != nullptr); + + return boneDataPtr; + } + + + Vector_t GetHitboxPos(uint32_t index) { + auto hitbox = this->GetHitboxData(); + if (!hitbox) + return nullptr; + + if (!(this->m_hModel()->GetHitboxFlags(index) & bone_flags::FLAG_HITBOX)) + return nullptr; + + auto parent_index = this->m_hModel()->GetHitboxParent(index); + if (parent_index == -1) + return nullptr; + + return hitbox[index].pos; + } + + Vector4D_t GetHitboxRotation(uint32_t index) { + auto hitbox = this->GetHitboxData(); + if (!hitbox) + return 0; + + if (!(this->m_hModel()->GetHitboxFlags(index) & bone_flags::FLAG_HITBOX)) + return 0; + + auto parent_index = this->m_hModel()->GetHitboxParent(index); + if (parent_index == -1) + return 0; + + return hitbox[index].rot; + } + + const char* GetHitboxName(uint32_t index) { + auto hitbox = this->GetHitboxData(); + if (!hitbox) + return nullptr; + + if (!(this->m_hModel()->GetHitboxFlags(index) & bone_flags::FLAG_HITBOX)) + return nullptr; + + auto parent_index = this->m_hModel()->GetHitboxParent(index); + if (parent_index == -1) + return nullptr; + + return this->m_hModel()->GetHitboxName(index); + } +}; + + + +class CSkeletonInstance +{ +public: + CSkeletonInstance() = delete; + CSkeletonInstance(CSkeletonInstance&&) = delete; + CSkeletonInstance(const CSkeletonInstance&) = delete; + + SCHEMA_ADD_FIELD(CModelState, GetModel, "CSkeletonInstance->m_modelState"); + SCHEMA_ADD_FIELD(bool, m_bIsAnimationEnabled, "CSkeletonInstance->m_bIsAnimationEnabled"); + SCHEMA_ADD_FIELD(bool, m_bUseParentRenderBounds, "CSkeletonInstance->m_bUseParentRenderBounds"); + SCHEMA_ADD_FIELD(bool, m_bDisableSolidCollisionsForHierarchy, "CSkeletonInstance->m_bDisableSolidCollisionsForHierarchy"); + SCHEMA_ADD_FIELD(bool, m_bDirtyMotionType, "CSkeletonInstance->m_bDirtyMotionType"); + SCHEMA_ADD_FIELD(bool, m_bIsGeneratingLatchedParentSpaceState, "CSkeletonInstance->m_bIsGeneratingLatchedParentSpaceState"); + SCHEMA_ADD_FIELD(uint8_t, m_nHitboxSet, "CSkeletonInstance->m_nHitboxSet"); + void get_bone_data(bone_data& data, int index); + void CS_FASTCALL calc_world_space_bones(uint32_t parent, uint32_t mask); + void CS_FASTCALL spoofed_calc_world_space_bones(uint32_t mask); +}; + +class CGameSceneNode +{ +public: + CS_CLASS_NO_INITIALIZER(CGameSceneNode); + + void SetMeshGroupMask(uint64_t meshGroupMask); + + SCHEMA_ADD_FIELD(CTransform, GetNodeToWorld, "CGameSceneNode->m_nodeToWorld"); + SCHEMA_ADD_FIELD(CEntityInstance*, GetOwner, "CGameSceneNode->m_pOwner"); + SCHEMA_ADD_FIELD(Vector_t, m_vecOrigin, "CGameSceneNode->m_vecOrigin"); + SCHEMA_ADD_FIELD(Vector_t, GetAbsOrigin, "CGameSceneNode->m_vecAbsOrigin"); + SCHEMA_ADD_FIELD(Vector_t, GetRenderOrigin, "CGameSceneNode->m_vRenderOrigin"); + + SCHEMA_ADD_FIELD(QAngle_t, GetAngleRotation, "CGameSceneNode->m_angRotation"); + SCHEMA_ADD_FIELD(QAngle_t, GetAbsAngleRotation, "CGameSceneNode->m_angAbsRotation"); + SCHEMA_ADD_FIELD(CTransform, GetTransform, "CGameSceneNode->m_nodeToWorld"); + + SCHEMA_ADD_FIELD(bool, IsDormant, "CGameSceneNode->m_bDormant"); + + CSkeletonInstance* GetSkeletonInstance() + { + return MEM::CallVFunc(this); + } +}; + + + +class EntSubClassVDataBase { +public: + template requires std::derived_from + inline T* as() { + return (T*)this; + } +}; + +class BasePlayerWeaponVData : public EntSubClassVDataBase { +public: + SCHEMA_ADD_OFFSET(int32_t, m_iMaxClip1, 0x1FC); + +}; +enum CSWeaponCategory : std::uint32_t { + WEAPONCATEGORY_OTHER = 0, + WEAPONCATEGORY_MELEE = 1, + WEAPONCATEGORY_SECONDARY = 2, + WEAPONCATEGORY_SMG = 3, + WEAPONCATEGORY_RIFLE = 4, + WEAPONCATEGORY_HEAVY = 5, + WEAPONCATEGORY_COUNT = 6, +}; + +class CCSWeaponBaseVData : public BasePlayerWeaponVData { +public: + SCHEMA_ADD_OFFSET(const char*, m_szName, 0xC20); + SCHEMA_ADD_OFFSET(uint32_t, m_WeaponType, 0x248); + SCHEMA_ADD_OFFSET(CSWeaponCategory, m_WeaponCategory, 0x24C); + SCHEMA_ADD_OFFSET(CFiringModeFloat, m_flSpread, 0xC54); + SCHEMA_ADD_OFFSET(float, m_flHeadshotMultiplier, 0xD44); + SCHEMA_ADD_OFFSET(float, m_flArmorRatio, 0xD48); + SCHEMA_ADD_OFFSET(float, m_flPenetration, 0xD4C); + SCHEMA_ADD_OFFSET(float, m_flRange, 0xD50); + SCHEMA_ADD_OFFSET(float, m_flRangeModifier, 0xD54); + SCHEMA_ADD_OFFSET(bool, m_bIsFullAuto, 0xC3C); + + SCHEMA_ADD_OFFSET(int32_t, m_nDamage, 0xD40); + SCHEMA_ADD_OFFSET(CFiringModeFloat, m_flInaccuracyCrouch, 0xC5C); + SCHEMA_ADD_OFFSET(CFiringModeFloat, m_flInaccuracyStand, 0xC64); + SCHEMA_ADD_OFFSET(CFiringModeFloat, m_flInaccuracyJump, 0xC6C); + SCHEMA_ADD_OFFSET(CFiringModeFloat, m_flInaccuracyMove, 0xC8C); + SCHEMA_ADD_OFFSET(CFiringModeFloat, m_flCycleTime, 0xC44); + SCHEMA_ADD_OFFSET(CFiringModeFloat, m_flMaxSpeed, 0xC4C); + + +}; + +class C_BaseEntity : public CEntityInstance +{ +public: + CS_CLASS_NO_INITIALIZER(C_BaseEntity); + + SCHEMA_ADD_FIELD(CGameSceneNode*, GetGameSceneNode, "C_BaseEntity->m_pGameSceneNode"); + SCHEMA_ADD_FIELD(CCollisionProperty*, GetCollision, "C_BaseEntity->m_pCollision"); + SCHEMA_ADD_FIELD(std::uint8_t, GetTeam, "C_BaseEntity->m_iTeamNum"); + SCHEMA_ADD_FIELD(CBaseHandle, GetOwnerHandle, "C_BaseEntity->m_hOwnerEntity"); + SCHEMA_ADD_FIELD(Vector_t, GetBaseVelocity, "C_BaseEntity->m_vecBaseVelocity"); + SCHEMA_ADD_FIELD(Vector_t, GetAbsVelocity, "C_BaseEntity->m_vecAbsVelocity"); + SCHEMA_ADD_FIELD(float, m_flSimulationTime, "C_BaseEntity->m_flSimulationTime"); + + SCHEMA_ADD_FIELD(Vector_t, m_vecVelocity, "C_BaseEntity->m_vecVelocity"); + SCHEMA_ADD_FIELD(bool, IsTakingDamage, "C_BaseEntity->m_bTakesDamage"); + SCHEMA_ADD_FIELD(std::uint32_t, GetFlags, "C_BaseEntity->m_fFlags"); + SCHEMA_ADD_FIELD(std::int32_t, GetEflags, "C_BaseEntity->m_iEFlags"); + SCHEMA_ADD_FIELD(std::int32_t, GetMoveType, "C_BaseEntity->m_MoveType"); + SCHEMA_ADD_FIELD(std::uint8_t, GetLifeState, "C_BaseEntity->m_lifeState"); + SCHEMA_ADD_FIELD(std::int32_t, GetHealth, "C_BaseEntity->m_iHealth"); + SCHEMA_ADD_FIELD(std::int32_t, GetMaxHealth, "C_BaseEntity->m_iMaxHealth"); + SCHEMA_ADD_FIELD(float, GetWaterLevel, "C_BaseEntity->m_flWaterLevel"); + SCHEMA_ADD_FIELD_OFFSET(EntSubClassVDataBase*, m_pVDataBase, "C_BaseEntity->m_nSubclassID", 0x8); + SCHEMA_ADD_FIELD(Vector_t, m_vecViewOffset, "C_BaseModelEntity->m_vecViewOffset"); + + void HitboxToWorldTransforms(uint32_t mask); + bool ComputeHitboxSurroundingBox(Vector_t& min, Vector_t& max); + static C_BaseEntity* GetLocalPlayer(); + // get entity origin on scene + [[nodiscard]] const Vector_t& GetSceneOrigin(); + + // @note: we shouldn't use this, just use GetSchemaClassInfo(...) and compare the class name instead + [[nodiscard]] bool IsBasePlayerController() + { + return MEM::CallVFunc(this); + } + + // same with this + [[nodiscard]] bool IsWeapon() + { + return MEM::CallVFunc(this); + } + + // same with this + [[nodiscard]] bool IsViewModel() + { + return MEM::CallVFunc(this); + } + + [[nodiscard]] bool IsValidMoveType() noexcept { + if (!this) + return false; + + const auto move_type = this->GetMoveType(); + return move_type != MOVETYPE_NOCLIP + && move_type != MOVETYPE_LADDER; + } +}; + + +class CGlowProperty; +class C_BaseModelEntity : public C_BaseEntity +{ +public: + CS_CLASS_NO_INITIALIZER(C_BaseModelEntity); + + SCHEMA_ADD_FIELD(CCollisionProperty, GetCollisionInstance, "C_BaseModelEntity->m_Collision"); + SCHEMA_ADD_FIELD(CGlowProperty, GetGlowProperty, "C_BaseModelEntity->m_Glow"); + SCHEMA_ADD_FIELD(Vector_t, GetViewOffset, "C_BaseModelEntity->m_vecViewOffset"); + SCHEMA_ADD_FIELD(GameTime_t, GetCreationTime, "C_BaseModelEntity->m_flCreateTime"); + SCHEMA_ADD_FIELD(GameTick_t, GetCreationTick, "C_BaseModelEntity->m_nCreationTick"); + SCHEMA_ADD_FIELD(CBaseHandle, GetMoveParent, "C_BaseModelEntity->m_hOldMoveParent"); + SCHEMA_ADD_FIELD(std::float_t, GetAnimTime, "C_BaseModelEntity->m_flAnimTime"); + SCHEMA_ADD_FIELD(std::float_t, GetSimulationTime, "C_BaseModelEntity->m_flSimulationTime"); + void SetModel(const char* name); + + +}; +enum ESOCacheEvent { + /// Dummy sentinel value + eSOCacheEvent_None = 0, + + /// We received a our first update from the GC and are subscribed + eSOCacheEvent_Subscribed = 1, + + /// We lost connection to GC or GC notified us that we are no longer + /// subscribed. Objects stay in the cache, but we no longer receive updates + eSOCacheEvent_Unsubscribed = 2, + + /// We received a full update from the GC on a cache for which we were + /// already subscribed. This can happen if connectivity is lost, and then + /// restored before we realized it was lost. + eSOCacheEvent_Resubscribed = 3, + + /// We received an incremental update from the GC about specific object(s) + /// being added, updated, or removed from the cache + eSOCacheEvent_Incremental = 4, + + /// A lister was added to the cache + /// @see CGCClientSharedObjectCache::AddListener + eSOCacheEvent_ListenerAdded = 5, + + /// A lister was removed from the cache + /// @see CGCClientSharedObjectCache::RemoveListener + eSOCacheEvent_ListenerRemoved = 6, +}; + +class CPlayer_CameraServices; + +class CPlayer_WeaponServices : public C_BaseModelEntity +{ +public: + CS_CLASS_NO_INITIALIZER(CPlayer_WeaponServices); + + SCHEMA_ADD_OFFSET(GameTime_t, m_flNextAttack, 0xB8); + + SCHEMA_ADD_FIELD(CBaseHandle, m_hActiveWeapon, "CPlayer_WeaponServices->m_hActiveWeapon"); + SCHEMA_ADD_FIELD(uint16_t[32], m_iAmmo, "CPlayer_WeaponServices->m_iAmmo"); + +}; + +class CCSPlayer_ViewModelServices { +public: + + SCHEMA_ADD_FIELD(CBaseHandle, m_hViewModel, "CCSPlayer_ViewModelServices->m_hViewModel"); + +}; +class CSharedObject; + +class CAnimGraphNetworkedVariables; + +class CAnimationGraphInstance { +public: + char pad_0x0000[0x2E0]; //0x0000 + CAnimGraphNetworkedVariables* pAnimGraphNetworkedVariables; //0x02E0 +}; + +class C_BaseViewModel : public C_BaseModelEntity { +public: + SCHEMA_ADD_FIELD(CBaseHandle, m_hWeapon, "C_BaseViewModel->m_hWeapon"); + +}; + +class C_CSGOViewModel : public C_BaseViewModel { +public: + char pad_0x0000[0xD08]; //0x0000 + CAnimationGraphInstance* pAnimationGraphInstance; //0x0D08 +}; +class CGCClientSharedObjectTypeCache { +public: + auto AddObject(CSharedObject* pObject) { + return MEM::CallVFunc(this, pObject); + } + + auto RemoveObject(CSharedObject* soIndex) { + return MEM::CallVFunc(this, soIndex); + + } + + template + auto& GetVecObjects() { + return *reinterpret_cast*>((uintptr_t)(this) + 0x8); + } +}; + +class CCSInputMessage +{ +public: + int32_t m_frame_tick_count; //0x0000 + float m_frame_tick_fraction; //0x0004 + int32_t m_player_tick_count; //0x0008 + float m_player_tick_fraction; //0x000C + Vector_t m_view_angles; //0x0010 + Vector_t m_shoot_position; //0x001C + int32_t m_target_index; //0x0028 + Vector_t m_target_head_position; //0x002C + Vector_t m_target_abs_origin; //0x0038 + Vector_t m_target_angle; //0x0044 + int32_t m_sv_show_hit_registration; //0x0050 + int32_t m_entry_index_max; //0x0054 + int32_t m_index_idk; //0x0058 +}; //Size: 0x005C + + +class CGCClientSharedObjectCache { +public: + CGCClientSharedObjectTypeCache* CreateBaseTypeCache(int nClassID); +}; +struct SOID_t { + uint64_t m_id; + uint32_t m_type; + uint32_t m_padding; +}; + +class CGCClient { +public: + CGCClientSharedObjectCache* FindSOCache(SOID_t ID, + bool bCreateIfMissing = true); +}; + +class CEconItem { + void SetDynamicAttributeValue(int index, void* value); + void SetDynamicAttributeValueString(int index, const char* value); + +public: + static CEconItem* CreateInstance(); + + void Destruct() { + return MEM::CallVFunc(this); + } + + void SetPaintKit(float kit) { SetDynamicAttributeValue(6, &kit); } + void SetPaintSeed(float seed) { SetDynamicAttributeValue(7, &seed); } + void SetPaintWear(float wear) { SetDynamicAttributeValue(8, &wear); } + void SetStatTrak(int count) { SetDynamicAttributeValue(80, &count); } + void SetStatTrakType(int type) { SetDynamicAttributeValue(81, &type); } + void SetCustomName(const char* pName) { + SetDynamicAttributeValueString(111, pName); + } + + char pad0[0x10]; // 2 vtables + uint64_t m_ulID; + uint64_t m_ulOriginalID; + void* m_pCustomDataOptimizedObject; + uint32_t m_unAccountID; + uint32_t m_unInventory; + uint16_t m_unDefIndex; + uint16_t m_unOrigin : 5; + uint16_t m_nQuality : 4; + uint16_t m_unLevel : 2; + uint16_t m_nRarity : 4; + uint16_t m_dirtybitInUse : 1; + int16_t m_iItemSet; + int m_bSOUpdateFrame; + uint8_t m_unFlags; +}; + +class CEconItemDefinition { +public: + bool IsWeapon(); + bool IsKnife(bool excludeDefault, const char* name); + bool IsGlove(bool excludeDefault, const char* name); + + auto GetModelName() { + return *reinterpret_cast((uintptr_t)(this) + 0xD8); + } + + auto GetStickersSupportedCount() { + return *reinterpret_cast((uintptr_t)(this) + 0x100); // 0x118 + } + + auto GetSimpleWeaponName() { + return *reinterpret_cast((uintptr_t)(this) + 0x1F0); + } + + auto GetLoadoutSlot() { + return *reinterpret_cast((uintptr_t)(this) + 0x2E8); + } + + char pad0[0x8]; // vtable + void* m_pKVItem; + uint16_t m_nDefIndex; + CUtlVector m_nAssociatedItemsDefIndexes; + bool m_bEnabled; + const char* m_szPrefab; + uint8_t m_unMinItemLevel; + uint8_t m_unMaxItemLevel; + uint8_t m_nItemRarity; + uint8_t m_nItemQuality; + uint8_t m_nForcedItemQuality; + uint8_t m_nDefaultDropItemQuality; + uint8_t m_nDefaultDropQuantity; + CUtlVector m_vecStaticAttributes; + uint8_t m_nPopularitySeed; + void* m_pPortraitsKV; + const char* m_pszItemBaseName; + bool m_bProperName; + const char* m_pszItemTypeName; + uint32_t m_unItemTypeID; + const char* m_pszItemDesc; +}; + +class CGCClientSystem { +public: + CGCClientSystem* GetInstance(); + CGCClient* GetCGCClient() { + return reinterpret_cast((uintptr_t)(this) + 0xB8); + } +}; +class CCSPlayerInventory; +class C_EconItemView { +public: + CS_CLASS_NO_INITIALIZER(C_EconItemView); + CEconItem* GetSOCData(CCSPlayerInventory* inventory); + auto GetCustomPaintKitIndex() { return MEM::CallVFunc(this); } + auto GetStaticData() { return MEM::CallVFunc(this); } + SCHEMA_ADD_FIELD(uint32_t, m_iAccountID, "C_EconItemView->m_iAccountID"); + SCHEMA_ADD_FIELD(uint32_t, m_iItemIDHigh, "C_EconItemView->m_iItemIDHigh"); + SCHEMA_ADD_FIELD(bool, m_bDisallowSOC, "C_EconItemView->m_bDisallowSOC"); + SCHEMA_ADD_FIELD(uint32_t, m_iItemIDLow, "C_EconItemView->m_iItemIDLow"); + SCHEMA_ADD_FIELD(bool, m_bInitialized, "C_EconItemView->m_bInitialized"); + SCHEMA_ADD_OFFSET(bool, m_bIsStoreItem, 0x1EA); + SCHEMA_ADD_OFFSET(bool, m_bIsTradeItem, 0x1EA); + + + SCHEMA_ADD_FIELD(uint64_t, m_iItemID, "C_EconItemView->m_iItemID"); + SCHEMA_ADD_FIELD(uint64_t, m_iItemDefinitionIndex, "C_EconItemView->m_iItemDefinitionIndex"); + SCHEMA_ADD_FIELD(const char*, m_szCustomName, "C_EconItemView->m_szCustomName"); + +}; + +class CAttributeManager { +public: + CS_CLASS_NO_INITIALIZER(CAttributeManager); + + + SCHEMA_ADD_OFFSET(C_EconItemView, m_Item, 0x50); +}; + +class C_EconEntity : public C_BaseModelEntity { +public: + CS_CLASS_NO_INITIALIZER(C_EconEntity); + /* offset */ + SCHEMA_ADD_FIELD(CAttributeManager, m_AttributeManager, "C_EconEntity->m_AttributeManager"); + SCHEMA_ADD_FIELD(uint32_t, m_OriginalOwnerXuidLow, "C_EconEntity->m_OriginalOwnerXuidLow"); + SCHEMA_ADD_FIELD(uint32_t, m_OriginalOwnerXuidHigh, "C_EconEntity->m_OriginalOwnerXuidHigh"); + SCHEMA_ADD_OFFSET(bool, m_bShouldGlow, 0x15B8); + + uint64_t GetOriginalOwnerXuid() { + return ((uint64_t)(m_OriginalOwnerXuidHigh()) << 32) | + m_OriginalOwnerXuidLow(); + } + +}; + + +class CBasePlayerWeapon : public C_EconEntity { +public: + CS_CLASS_NO_INITIALIZER(CBasePlayerWeapon); + + SCHEMA_ADD_FIELD(GameTick_t, m_nNextPrimaryAttackTick, "C_BasePlayerWeapon->m_nNextPrimaryAttackTick"); + SCHEMA_ADD_FIELD(float, m_flNextPrimaryAttackTickRatio, "C_BasePlayerWeapon->m_flNextPrimaryAttackTickRatio"); + SCHEMA_ADD_FIELD(GameTick_t, m_nNextSecondaryAttackTick, "C_BasePlayerWeapon->m_nNextSecondaryAttackTick"); + SCHEMA_ADD_FIELD(float, m_flNextSecondaryAttackTickRatio, "C_BasePlayerWeapon->m_flNextSecondaryAttackTickRatio"); + SCHEMA_ADD_OFFSET(float, m_flRecoilIndex, 0x1734); + + SCHEMA_ADD_FIELD(int32_t, clip1, "C_BasePlayerWeapon->m_iClip1"); + BasePlayerWeaponVData* GetVData() noexcept { + return m_pVDataBase()->as(); + } +}; + +enum CSWeaponMode : int /* it works atleast */ +{ + Primary_Mode = 0, + Secondary_Mode = 1, + WeaponMode_MAX = 2, +}; +//xored +// Created with ReClass.NET by KN4CK3R + +class unknknownpointer +{ +public: + char pad_0000[328]; //0x0000 +}; //Size: 0x0148 + +class N000001D5 +{ +public: + char pad_0000[72]; //0x0000 +}; //Size: 0x0048 + +class N0000008F +{ +public: + char pad_0000[72]; //0x0000 +}; //Size: 0x0048 + +class N000001E0 +{ +public: + char pad_0000[1352]; //0x0000 +}; //Size: 0x0548 + +class N0000028B +{ +public: + char pad_0000[1096]; //0x0000 +}; //Size: 0x0448 + +class IPrediction +{ +public: + void* N00000001; //0x0000 + char pad_0008[32]; //0x0008 + void* N00000006; //0x0028 + char pad_0030[152]; //0x0030 + float LocalPlayerUnkPos; //0x00C8 + float timesinceinair; //0x00CC + char pad_00D0[24]; //0x00D0 + float N0000001E; //0x00E8 + char pad_00EC[220]; //0x00EC + void* buttonstates; //0x01C8 + void* N0000003B; //0x01D0 + void* N0000003C; //0x01D8 + char pad_01E0[240]; //0x01E0 + Vector_t parentidxorigin; //0x02D0 + char pad_02DC[96]; //0x02DC + uint64_t parentindex; //0x033C + char pad_0344[96]; //0x0344 + float m_flRadius; //0x03A4 + char pad_03A8[4252]; //0x03A8 +}; //Size: 0x1444 + + +class CNetInputMessage; + +class C_CSWeaponBase : public CBasePlayerWeapon { +public: + void AddStattrakEntity(); + void AddNametagEntity(); + SCHEMA_ADD_OFFSET(CCSWeaponBaseVData*, datawep, 0x368); + SCHEMA_ADD_OFFSET(int32_t, m_zoomLevel, 0x1A70); + SCHEMA_ADD_OFFSET(bool, m_bInReload, 0x1744); + SCHEMA_ADD_FIELD(float, m_fAccuracyPenalty, "C_CSWeaponBase->m_fAccuracyPenalty"); + SCHEMA_ADD_FIELD(CSWeaponMode, m_weaponMode, CS_XOR("C_CSWeaponBase->m_weaponMode")); + SCHEMA_ADD_FIELD(int, m_iOriginalTeamNumber, CS_XOR("C_CSWeaponBase->m_iOriginalTeamNumber")); + + SCHEMA_ADD_FIELD(bool, m_bUIWeapon, CS_XOR("C_CSWeaponBase->m_bUIWeapon")); + //SCHEMA_ADD_FIELD(void, m_hStattrakAttachment, CS_XOR("C_CSWeaponBase->m_iNumEmptyAttacks")); + //SCHEMA_ADD_FIELD(void, m_hNametagAttachment, CS_XOR("C_CSWeaponBase->m_iNumEmptyAttacks")); + __forceinline float get_spread() { + using original_fn = float(__fastcall*)(void*); + return (*(original_fn**)this)[349](this); + } + + __forceinline float get_inaccuracy() { + using original_fn = float(__fastcall*)(void*); + return (*(original_fn**)this)[399](this); + + } + + // for reference. +// sv_accelerate_use_weapon_speed inside "CGameMovement::Accelerate" +// 48 8B C4 F3 0F 11 50 ? 41 55 41 56 41 57 48 81 EC ? ? ? ? F2 41 0F 10 21 4D 8B E9 F2 0F 10 5A ? 0F 28 C4 44 0F 29 40 ? 0F 28 CB F3 44 0F 10 42 ? 4C 8B FA F3 45 0F 59 41 ? +// mov rcx, rbx +// call qword ptr [ rax + 0AF8h ] <- index +// mov rax, [ rbx ] + __forceinline float get_max_speed() { + using original_fn = float(__fastcall*)(void*); + return (*(original_fn**)this)[340](this); + } + +}; + +class C_BaseCSGrenade : public C_CSWeaponBase +{ +public: + SCHEMA_ADD_FIELD(bool, IsHeldByPlayer, "C_BaseCSGrenade->m_bIsHeldByPlayer"); + SCHEMA_ADD_FIELD(bool, IsPinPulled, "C_BaseCSGrenade->m_bPinPulled"); + SCHEMA_ADD_FIELD(GameTime_t, GetThrowTime, "C_BaseCSGrenade->m_fThrowTime"); + SCHEMA_ADD_FIELD(float, GetThrowStrength, "C_BaseCSGrenade->m_flThrowStrength"); +}; + +class C_CSPlayerPawnBase : public C_BaseEntity +{ +public: + CS_CLASS_NO_INITIALIZER(C_CSPlayerPawnBase); + + SCHEMA_ADD_FIELD(CCSPlayer_ViewModelServices*, GetViewModelServices, CS_XOR("C_CSPlayerPawnBase->m_pViewModelServices")); + SCHEMA_ADD_FIELD(bool, IsScoped, CS_XOR("C_CSPlayerPawnBase->m_bIsScoped")); + SCHEMA_ADD_FIELD(bool, IsDefusing, CS_XOR("C_CSPlayerPawnBase->m_bIsDefusing")); + SCHEMA_ADD_FIELD(bool, IsGrabbingHostage, CS_XOR("C_CSPlayerPawnBase->m_bIsGrabbingHostage")); + SCHEMA_ADD_FIELD(float, GetLowerBodyYawTarget, CS_XOR("C_CSPlayerPawnBase->m_flLowerBodyYawTarget")); + SCHEMA_ADD_FIELD(int, GetShotsFired, CS_XOR("C_CSPlayerPawnBase->m_iShotsFired")); + SCHEMA_ADD_FIELD(float, GetFlashMaxAlpha, CS_XOR("C_CSPlayerPawnBase->m_flFlashMaxAlpha")); + SCHEMA_ADD_FIELD(float, GetFlashDuration, CS_XOR("C_CSPlayerPawnBase->m_flFlashDuration")); + SCHEMA_ADD_FIELD(Vector_t, GetLastSmokeOverlayColor, CS_XOR("C_CSPlayerPawnBase->m_vLastSmokeOverlayColor")); + SCHEMA_ADD_FIELD(int, GetSurvivalTeam, CS_XOR("C_CSPlayerPawnBase->m_nSurvivalTeam")); // danger zone + SCHEMA_ADD_FIELD(std::int32_t, GetArmorValue, CS_XOR("C_CSPlayerPawnBase->m_ArmorValue")); + SCHEMA_ADD_OFFSET(bool, m_bInLanding, 0x17C0); + SCHEMA_ADD_FIELD(float, m_flLandingTime, CS_XOR("C_CSPlayerPawnBase->m_flLandingTime")); + + +}; + +class CPlayer_MovementServices +{ +public: + CS_CLASS_NO_INITIALIZER(CPlayer_MovementServices); + + SCHEMA_ADD_FIELD(float, m_flMaxspeed, CS_XOR("CPlayer_MovementServices->m_flMaxspeed")); + SCHEMA_ADD_FIELD(float, m_flForwardMove, CS_XOR("CPlayer_MovementServices->m_flForwardMove")); + SCHEMA_ADD_FIELD(float, m_flLeftMove, CS_XOR("CPlayer_MovementServices->m_flLeftMove")); + SCHEMA_ADD_OFFSET(float, m_flSurfaceFriction, 0x1FC); +}; + +class CPlayer_ItemServices { +public: + SCHEMA_ADD_FIELD(bool, m_bHasDefuser, CS_XOR("CCSPlayer_ItemServices->m_bHasDefuser")); + SCHEMA_ADD_FIELD(bool, m_bHasHelmet, CS_XOR("CCSPlayer_ItemServices->m_bHasHelmet")); + SCHEMA_ADD_FIELD(bool, m_bHasHeavyArmor, CS_XOR("CCSPlayer_ItemServices->m_bHasHeavyArmor")); +}; + +class C_CSPlayerPawn : public C_CSPlayerPawnBase +{ +public: + CS_CLASS_NO_INITIALIZER(C_CSPlayerPawn); + + + SCHEMA_ADD_OFFSET(bool, m_bNeedToReApplyGloves, 0x1918); + SCHEMA_ADD_OFFSET(C_EconItemView, m_EconGloves, 0x1920); + SCHEMA_ADD_FIELD(uint8_t, m_nEconGlovesChanged, CS_XOR("C_CSPlayerPawnBase->m_nEconGlovesChanged")); + SCHEMA_ADD_FIELD(bool, m_bGunGameImmunity, CS_XOR("C_CSPlayerPawnBase->m_bGunGameImmunity")); + SCHEMA_ADD_FIELD(bool, m_bIsWalking, CS_XOR("C_CSPlayerPawnBase->m_bIsWalking")); + SCHEMA_ADD_FIELD(CBaseHandle, GetController, CS_XOR("C_BasePlayerPawn->m_hController")); + SCHEMA_ADD_FIELD(CPlayer_WeaponServices*, GetWeaponServices, CS_XOR("C_BasePlayerPawn->m_pWeaponServices")); + SCHEMA_ADD_FIELD(CPlayer_ItemServices*, GetItemServices, CS_XOR("C_BasePlayerPawn->m_pItemServices")); + SCHEMA_ADD_FIELD(CPlayer_CameraServices*, GetCameraServices, CS_XOR("C_BasePlayerPawn->m_pCameraServices")); + SCHEMA_ADD_FIELD(CPlayer_MovementServices*, m_pMovementServices, CS_XOR("C_BasePlayerPawn->m_pMovementServices")); + + SCHEMA_ADD_OFFSET(CUtlVectorCS2< QAngle_t >, m_aimPunchCache, 0x17A0); + SCHEMA_ADD_OFFSET(QAngle_t, m_aimPunchAngle, 0x177C); + + [[nodiscard]] Vector_t GetBonePosition(int out); + [[nodiscard]] bool hasArmour(const int hitgroup); + [[nodiscard]] bool CalculateBoundingBox(ImVec4& bbox, bool compute_surrounding_box); + [[nodiscard]] bool IsOtherEnemy(C_CSPlayerPawn* pOther); + [[nodiscard]] int GetAssociatedTeam(); + [[nodiscard]] void CalculateHitboxData(uint32_t idx, Vector_t& pos, Vector4D_t& rot, float& scale, bool predict = false); + float GetProperAccuracy(); + float GetProperSpread(); + uint32_t GetHitGroup(int idx); + bool InsideCrosshair(C_CSPlayerPawn* local, QAngle_t ang, float range); + [[nodiscard]] bool TracePoint(C_CSPlayerPawn* target, Vector_t point); + [[nodiscard]] bool Visible(C_CSPlayerPawn* start_ent, int type = 0, bool v = false); + [[nodiscard]] Vector_t GetEyePosition(); + + + std::uint32_t GetEntHandle() { + std::uint32_t Result = -1; + if (this && this->GetCollision() && !(this->GetCollision()->m_solidFlags() & 4)) { + Result = this->GetOwnerHandle().GetEntryIndex(); + } + return Result; + } + [[nodiscard]] bool CanShoot(float time); + [[nodiscard]] bool CanNextAttack(float time); + + [[nodiscard]] C_CSWeaponBase* ActiveWeapon(); +}; + +struct CachedEntity_t { + enum Type { UNKNOWN = 0, PLAYER_CONTROLLER, BASE_WEAPON, CHICKEN }; + + CBaseHandle m_handle; + Type m_type; + int index; + bool reset; + // std::unordered_map> record{ }; + ImVec4 m_bbox; + bool m_draw; // If the player is not visible, it will be false. + Vector_t hitboxpos[30]; +}; + +// typedef for entity callback +using entity_callback = void(*)(int index, const CBaseHandle handle) noexcept; +struct entity_callbacks { + entity_callback add; + entity_callback remove; +}; + +extern std::vector g_cachedEntities; +extern std::mutex g_cachedEntitiesMutex; +extern std::unordered_multimap g_Callbacks; + +namespace EntCache { + void CacheCurrentEntities(); + void OnAddEntity(CEntityInstance* pEntity, CBaseHandle handle); + void OnRemoveEntity(CEntityInstance* pEntity, CBaseHandle handle); + void RegisterCallback(CachedEntity_t::Type type, entity_callback add, entity_callback remove) noexcept; +} // namespace EntCache + +class CBasePlayerController : public C_BaseModelEntity { +public: + CS_CLASS_NO_INITIALIZER(CBasePlayerController); + + SCHEMA_ADD_FIELD(std::uint64_t, GetSteamId, CS_XOR("CBasePlayerController->m_steamID")); + SCHEMA_ADD_FIELD(CBaseHandle, GetPawnHandle, CS_XOR("CBasePlayerController->m_hPawn")); + SCHEMA_ADD_FIELD(bool, IsLocalPlayerController, CS_XOR("CBasePlayerController->m_bIsLocalPlayerController")); +}; + + +class CCSPlayerController : public CBasePlayerController { +public: + CS_CLASS_NO_INITIALIZER(CCSPlayerController); + + [[nodiscard]] static CCSPlayerController* GetLocalPlayerController(); + + bool IsThrowingGrenade(C_CSWeaponBase* pBaseWeapon); + + // @note: always get origin from pawn not controller + [[nodiscard]] const Vector_t& GetPawnOrigin(); + + [[nodiscard]] C_CSWeaponBase* GetPlayerWeapon(C_CSPlayerPawn* pPlayer); + + SCHEMA_ADD_FIELD(std::uint32_t, GetPing, CS_XOR("CCSPlayerController->m_iPing")); + SCHEMA_ADD_FIELD(const char*, GetPlayerName, CS_XOR("CCSPlayerController->m_sSanitizedPlayerName")); + SCHEMA_ADD_FIELD(std::int32_t, GetPawnHealth, CS_XOR("CCSPlayerController->m_iPawnHealth")); + SCHEMA_ADD_FIELD(std::int32_t, GetPawnArmor, CS_XOR("CCSPlayerController->m_iPawnArmor")); + SCHEMA_ADD_FIELD(bool, m_bPawnHasDefuser, CS_XOR("CCSPlayerController->m_bPawnHasDefuser")); + SCHEMA_ADD_FIELD(bool, m_bPawnHasHelmet, CS_XOR("CCSPlayerController->m_bPawnHasHelmet")); + SCHEMA_ADD_FIELD(bool, IsPawnAlive, CS_XOR("CCSPlayerController->m_bPawnIsAlive")); + SCHEMA_ADD_FIELD(CBaseHandle, GetPlayerPawnHandle, CS_XOR("CCSPlayerController->m_hPlayerPawn")); + SCHEMA_ADD_FIELD(CBaseHandle, m_hPawn, CS_XOR("CBasePlayerController->m_hPawn")); + SCHEMA_ADD_FIELD(uint32_t, m_nTickBase, CS_XOR("CBasePlayerController->m_nTickBase")); + SCHEMA_ADD_FIELD(CBaseHandle, m_hPredictedPawn, CS_XOR("CBasePlayerController->m_hPredictedPawn")); +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/entity_handle.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/entity_handle.cpp new file mode 100644 index 0000000..e69de29 diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/entity_handle.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/entity_handle.h new file mode 100644 index 0000000..b16e06a --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/entity_handle.h @@ -0,0 +1,59 @@ +#pragma once + +#include "../common.h" + +#define INVALID_EHANDLE_INDEX 0xFFFFFFFF +#define ENT_ENTRY_MASK 0x7FFF +#define NUM_SERIAL_NUM_SHIFT_BITS 15 +// @source: https://developer.valvesoftware.com/wiki/Entity_limit#Source_2_limits +#define ENT_MAX_NETWORKED_ENTRY 16384 + + +class CBaseHandle +{ +public: + CBaseHandle() noexcept : + nIndex(INVALID_EHANDLE_INDEX) { } + + CBaseHandle(const int nEntry, const int nSerial) noexcept + { + CS_ASSERT(nEntry >= 0 && (nEntry & ENT_ENTRY_MASK) == nEntry); + CS_ASSERT(nSerial >= 0 && nSerial < (1 << NUM_SERIAL_NUM_SHIFT_BITS)); + + nIndex = nEntry | (nSerial << NUM_SERIAL_NUM_SHIFT_BITS); + } + + bool operator!=(const CBaseHandle& other) const noexcept + { + return nIndex != other.nIndex; + } + + bool operator==(const CBaseHandle& other) const noexcept + { + return nIndex == other.nIndex; + } + + bool operator<(const CBaseHandle& other) const noexcept + { + return nIndex < other.nIndex; + } + + [[nodiscard]] bool IsValid() const noexcept + { + return nIndex != INVALID_EHANDLE_INDEX; + } + + [[nodiscard]] int GetEntryIndex() const noexcept + { + return static_cast(nIndex & ENT_ENTRY_MASK); + } + + [[nodiscard]] int GetSerialNumber() const noexcept + { + return static_cast(nIndex >> NUM_SERIAL_NUM_SHIFT_BITS); + } + +private: + std::uint32_t nIndex; + +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/ccsgoinput.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/ccsgoinput.cpp new file mode 100644 index 0000000..e8e3d02 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/ccsgoinput.cpp @@ -0,0 +1,17 @@ +#include "ccsgoinput.h" +#include "../datatypes/usercmd.h" +#include "../../utilities/memory.h" + +CSubtickMoveStep* CBaseUserCmdPB::AddSubTickMove() +{ + if (m_subtickMovesField && m_subtickMovesField.size() < m_subtickMovesField.max_size()) + return m_subtickMovesField[m_subtickMovesField.size()++]; + + static auto sub_258D30 = MEM::FindPattern(CLIENT_DLL, CS_XOR("E8 ? ? ? ? 48 8B D0 48 8D 4B ? E8 ? ? ? ? 48 8B D0") + 0x1); + + CSubtickMoveStep* subtick = reinterpret_cast(sub_258D30)(m_subtickMovesField.unk_field()); + + m_subtickMovesField.add(subtick); + + return subtick; +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/ccsgoinput.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/ccsgoinput.h new file mode 100644 index 0000000..3e9dec5 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/ccsgoinput.h @@ -0,0 +1,78 @@ +#pragma once + +// used: mem_pad +#include "../../utilities/memory.h" + +// used: cusercmd +#include "../datatypes/usercmd.h" + +#define MULTIPLAYER_BACKUP 150 + +class CCSGOInput +{ +public: + MEM_PAD(0x250); // Offset 0x0000, Padding + CUserCmd arrCommands[MULTIPLAYER_BACKUP]; // Offset 0x0250, Array of CUserCmd + MEM_PAD(0x1); // Offset 0x0A50, Padding + bool bInThirdPerson; // Offset 0x0A51, Boolean flag + MEM_PAD(0x22); // Offset 0x0A52, Padding + std::int32_t nSequenceNumber; // Offset 0x0A74, Integer + std::int32_t nOldSequenceNumber; // Offset 0x0A78, Integer + MEM_PAD(0x4); // Offset 0x0A7C, Padding + double dbUnknown; // Offset 0x0A80, Double + std::uint64_t nButtonState1; // Offset 0x0A88, Unsigned 64-bit integer + std::uint64_t nButtonState2; // Offset 0x0A90, Unsigned 64-bit integer + std::uint64_t nButtonState3; // Offset 0x0A98, Unsigned 64-bit integer + std::uint64_t nButtonState4; // Offset 0x0AA0, Unsigned 64-bit integer + MEM_PAD(0xC); // Offset 0x0AA8, Padding + std::int32_t nMouseDeltaX; // Offset 0x0AB4, Integer + std::int32_t nMouseDeltaY; // Offset 0x0AB8, Integer + MEM_PAD(0xC); // Offset 0x0ABC, Padding + std::int64_t nOldPressedButton; // Offset 0x0AC8, Integer + bool bIsButtonPressed; // Offset 0x0AD0, Boolean flag + MEM_PAD(0x10F); // Offset 0x0AD1, Padding + QAngle_t angViewAngles; // Offset 0x0BE0, QAngle_t struct + MEM_PAD(0x8C); // Offset 0x0C6C, Padding + bool bUnknownBool; // Offset 0x0CF8, Boolean flag + + + void InputCamera() { + + using orig = void(CS_FASTCALL*)(void*); + static auto oInputcam = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("85 D2 0F 85 8A"))); + CS_ASSERT(oInputcam != nullptr); + + auto backup = *(Vector_t*)((uintptr_t)this + 0x539); + // store old camera angles + + // call original + oInputcam(this); + + + + } + CUserCmd* GetUserCmd() + { + return &arrCommands[nSequenceNumber % MULTIPLAYER_BACKUP]; + } + QAngle_t GetViewAngle() // 4C 8B C1 85 D2 74 08 + { + using fnGetViewAngle = std::int64_t(CS_FASTCALL*)(void*, std::int32_t); + static auto oGetViewAngle = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("4C 8B C1 85 D2 74 08"))); +#ifdef CS_PARANOID + CS_ASSERT(oGetViewAngle != nullptr); +#endif + QAngle_t* fn = reinterpret_cast(oGetViewAngle(this, 0)); + return *fn; + } + void SetViewAngle(QAngle_t& angView) + { + // @ida: this got called before GetMatricesForView + using fnSetViewAngle = std::int64_t(CS_FASTCALL*)(void*, std::int32_t, QAngle_t&); + static auto oSetViewAngle = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("85 D2 75 3F 48"))); // \xF2\x41\x0F\x10?\x4C\x63\xCA +#ifdef CS_PARANOID + CS_ASSERT(oSetViewAngle != nullptr); +#endif + oSetViewAngle(this, 0, std::ref(angView)); + } +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/cgameentitysystem.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/cgameentitysystem.h new file mode 100644 index 0000000..d015d93 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/cgameentitysystem.h @@ -0,0 +1,80 @@ +#pragma once + +// used: schema field +#include "../../utilities/memory.h" + +#include "../entity_handle.h" + +#define MAX_ENTITIES_IN_LIST 512 +#define MAX_ENTITY_LISTS 64 // 0x3F +#define MAX_TOTAL_ENTITIES MAX_ENTITIES_IN_LIST* MAX_ENTITY_LISTS + +class C_BaseEntity; + +class CGameEntitySystem +{ +public: + /// GetClientEntity + template + T* Get(int nIndex) + { + return reinterpret_cast(this->GetEntityByIndex(nIndex)); + } + + /// GetClientEntityFromHandle + template + T* Get(const CBaseHandle hHandle) + { + if (!hHandle.IsValid()) + return nullptr; + + return reinterpret_cast(this->GetEntityByIndex(hHandle.GetEntryIndex())); + } + + int GetHighestEntityIndex() + { + return *reinterpret_cast(reinterpret_cast(this) + 0x1510); + } + +private: + void* GetEntityByIndex(int nIndex) + { + //@ida: #STR: "(missing),", "(missing)", "Ent %3d: %s class %s name %s\n" | or find "cl_showents" cvar -> look for callback + // do { pEntity = GetBaseEntityByIndex(g_pGameEntitySystem, nCurrentIndex); ... } + using fnGetBaseEntity = void*(CS_THISCALL*)(void*, int); + static auto GetBaseEntity = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("81 FA ? ? ? ? 77 ? 8B C2 C1 F8 ? 83 F8 ? 77 ? 48 98 48 8B 4C C1 ? 48 85 C9 74 ? 8B C2 25 ? ? ? ? 48 6B C0 ? 48 03 C8 74 ? 8B 41 ? 25 ? ? ? ? 3B C2 75 ? 48 8B 01"))); + return GetBaseEntity(this, nIndex); + } +}; + +enum CSWeaponID { + GLOCK = 1, + USP_S = 2, + P2000 = 3, + DUAL_BERETTAS = 4, + P250 = 5, + TEC9 = 6, + FIVE_SEVEN = 7, + DESERT_EAGLE = 8, + + MAC10 = 17, + MP9 = 18, + MP7 = 19, + UMP45 = 24, + P90 = 26, + + GALIL_AR = 13, + FAMAS = 14, + AK47 = 10, + M4A4 = 16, + M4A1_S = 20, + AUG = 23, + SG553 = 27, + + AWP = 9, + G3SG1 = 11, + SCAR20 = 38, + + M249 = 28, + NEGEV = 35 +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/events.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/events.cpp new file mode 100644 index 0000000..ba28ebc --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/events.cpp @@ -0,0 +1,40 @@ +#include "events.h" + +std::int64_t IGameEvent::get_int(const std::string_view event_name) noexcept { + // client.dll; 48 89 5C 24 08 48 89 74 24 10 48 89 7C 24 18 41 56 48 83 EC 30 48 8B 01 41 8B F0 4C 8B F1 41 B0 01 48 8D 4C 24 20 48 8B DA 48 8B 78 + using function_t = std::int64_t(__fastcall*)(void*, const char*); + static function_t fn = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, "48 89 5C 24 08 48 89 74 24 10 48 89 7C 24 18 41 56 48 83 EC 30 48 8B 01 41 8B F0 4C 8B F1 41 B0 01 48 8D 4C 24 20 48 8B DA 48 8B 78")); + CS_ASSERT(fn != nullptr); + return fn(this, event_name.data()); +} + +void* IGameEvent::get_player_pawn_from_id(const std::string_view event_name) noexcept { + // client.dll; 48 89 5C 24 08 48 89 74 24 10 57 48 83 EC 30 48 8B 01 48 8B F1 41 B0 01 48 8D 4C 24 20 48 8B FA 48 8B 98 + using function_t = void*(__fastcall*)(void*, const char*, std::int64_t); + static function_t fn = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, "48 89 5C 24 08 48 89 74 24 10 57 48 83 EC 30 48 8B 01 48 8B F1 41 B0 01 48 8D 4C 24 20 48 8B FA 48 8B 98")); + CS_ASSERT(fn != nullptr); + return fn(this, event_name.data(), 0); +} + +void* IGameEvent::get_pointer_from_id(const std::string_view event_name) noexcept { + // used: "userid", "attackerid" + std::int64_t id{ }; + { + // client.dll; 48 89 5C 24 08 48 89 6C 24 10 48 89 74 24 18 57 48 83 EC 30 48 8B 01 49 + using function_t = std::int64_t(__fastcall*)(void*, std::int64_t*, const char*); + static function_t fn = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, "48 89 5C 24 08 48 89 74 24 10 57 48 83 EC 30 48 8B 01 48 8B F1 41 B0 01 48 8D 4C 24 20 48 8B FA 48 8B 98")); + CS_ASSERT(fn != nullptr); + fn(this, &id, event_name.data()); + } + + if (id == -1) + return { }; + + // xref: "player_disconnect" + // client.dll; E8 ?? ?? ?? ?? 48 8B 0D ?? ?? ?? ?? 48 8B D8 48 85 C9 + using function_t2 = void*(__fastcall*)(std::int64_t); + static function_t2 fn = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, "E8 ?? ?? ?? ?? 48 8B 0D ?? ?? ?? ?? 48 8B D8 48 85 C9")); + CS_ASSERT(fn != nullptr); + + return fn(id); +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/events.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/events.h new file mode 100644 index 0000000..2f39faa --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/events.h @@ -0,0 +1,216 @@ +#pragma once +// used: cutllinkedlist +#include "../datatypes/utllinkedlist.h" +// used: fnv1a hashing +#include "../../utilities/fnv1a.h" + +// used: sdk datatypes +#include "../datatypes/color.h" +#include "../datatypes/vector.h" +#include "../datatypes/qangle.h" + +// used: call virtual function +#include "../../utilities/memory.h" + +// used: color_t +#include "../datatypes/color.h" + +// used: cbasehandle +#include "../entity.h" +#include "../datatypes/utlstringtoken.h" +using namespace MEM; + +class IGameEvent +{ +public: + virtual ~IGameEvent() { } + + [[nodiscard]] const char* GetName() const + { + // @ida: client.dll -> U8["48 8B CE FF 50 ? 48 8D 0D" + 0x5] @XREF: "show_freeze_panel" + return CallVFunc(this); + } + + [[nodiscard]] bool GetBool(const CUtlStringToken& keyToken, bool bDefault = false) const + { + return CallVFunc(this, &keyToken, bDefault); + } + + [[nodiscard]] int GetInt(const CUtlStringToken& keyToken, int iDefault = 0) const + { + // @ida CGameEvent::GetInt(const char*, int): client.dll -> ABS["E8 ? ? ? ? 0F B6 4D 77" + 0x1] + // @ida: client.dll -> U8["E8 ? ? ? ? 45 33 C0 48 89 74 24 ? 48 8D 54 24 ? 49 8B CF FF D3 85 C0 8B 44 24 48" - 0x1] / sizeof(std::uintptr_t) @XREF: "headshot" + return CallVFunc(this, &keyToken, iDefault); + } + + [[nodiscard]] std::uint64_t GetUint64(const CUtlStringToken& keyToken, std::uint64_t ullDefault = 0ULL) const + { + return CallVFunc(this, &keyToken, ullDefault); + } + + [[nodiscard]] float GetFloat(const CUtlStringToken& keyToken, const float flDefault = 0.0f) const + { + // @ida CGameEvent::GetFloat(const char*, float): client.dll -> ABS["E8 ? ? ? ? 0F 28 D8 89 5C 24 20" + 0x1] + // @ida: client.dll -> U8["4C 8B 60 ? 4D 8B C6" + 0x3] / sizeof(std::uintptr_t) @XREF: "theta" + return CallVFunc(this, &keyToken, flDefault); + } + + [[nodiscard]] const char* GetString(const CUtlStringToken& keyToken, const char* szDefault = "") const + { + // @ida: client.dll -> U8["48 8B 78 ? 48 8D 4D 80" + 0x3] / sizeof(std::uintptr_t) @XREF: "weapon" + return CallVFunc(this, &keyToken, szDefault); + } + + [[nodiscard]] const wchar_t* GetWString(const CUtlStringToken& keyToken, const wchar_t* wszDefault = L"") const + { + return CallVFunc(this, &keyToken, wszDefault); + } + + [[nodiscard]] const void* GetPtr(const CUtlStringToken& keyToken) const + { + return CallVFunc(this, &keyToken); + } + + int GetPlayerIndex(const CUtlStringToken& keyToken) + { + // @ida: client.dll -> U8["4C 8B 70 ? 4C 89 7C 24" + 0x3] / sizeof(std::uintptr_t) @XREF: "attacker", "assister", "userid" + int nOutIndex; + CallVFunc(this, &nOutIndex, &keyToken); + return nOutIndex; + } + + + // xref: client.dll & 4C 8B A8 80 00 00 00 ("killer") + inline CBasePlayerController* get_player_controller(const std::string_view token_name) noexcept { + CUtlStringToken token(token_name.data()); + return CallVFunc(this, &token); + + } + C_CSPlayerPawn* GetPlayerPawn(const CUtlStringToken& keyToken) + { + // @XREF: "_pawn" + // @ida CGameEvent::GetPlayerPawn(const char*): server.dll -> ABS["E8 ? ? ? ? 48 85 C0 74 0B 48 8B C8 E8 ? ? ? ? 4C 8B F0 41 8B 46 08" + 0x1] @XREF: "userid" + return CallVFunc(this, &keyToken); + } + + void SetBool(const CUtlStringToken& keyToken, const bool bValue) + { + // @ida CGameEvent::SetBool(const char*, bool): server.dll -> ABS["E8 ? ? ? ? 48 8B 0D ? ? ? ? 45 33 C0 48 8B D3 48 8B 01 FF 50 38 48 8B 46 10" + 0x1] @XREF: "canbuy" + CallVFunc(this, &keyToken, bValue); + } + + void SetInt(const CUtlStringToken& keyToken, const int nValue) + { + // @ida: server.dll -> ["48 8D 4D A7 4C 8B B0 ? ? ? ? FF" + 0x7] / sizeof(std::uintptr_t) + CallVFunc(this, &keyToken, nValue); + } + + void SetUint64(const CUtlStringToken& keyToken, const std::uint64_t ullValue) + { + CallVFunc(this, &keyToken, ullValue); + } + + void SetFloat(const CUtlStringToken& keyToken, const float flValue) + { + // @ida: server.dll -> ["48 8B B0 ? ? ? ? 33 D2 44 89 6C 24" + 0x3] / sizeof(std::uintptr_t) @XREF: "inferno_expire" + CallVFunc(this, &keyToken, flValue); + } + + void SetString(const CUtlStringToken& keyToken, const char* szValue) + { + // @ida: server.dll -> ["48 8D 4D A7 48 8B B8 ? ? ? ? 33" + 0x7] / sizeof(std::uintptr_t) @XREF: "weapon" + CallVFunc(this, &keyToken, szValue); + } + + void SetWString(const CUtlStringToken& keyToken, const wchar_t* wszValue) + { + CallVFunc(this, &keyToken, wszValue); + } + + void SetPtr(const CUtlStringToken& keyToken, const void* pValue) + { + CallVFunc(this, &keyToken, pValue); + } + + void SetPlayerIndex(const CUtlStringToken& keyToken, const int nIndex) + { + // @ida: server.dll -> ["48 8B B8 ? ? ? ? E8 ? ? ? ? 48 8D 05 ? ? ? ? 44 8B C3 48 8D 55 97 48 89 45 9F 48 8B CE FF D7 48 8D 15" + 0x3] / sizeof(std::uintptr_t) @XREF: "attacker_pawn" + CallVFunc(this, &keyToken, nIndex); + } + + void SetPlayerController(const CUtlStringToken& keyToken, CBasePlayerController* pPlayerController) + { + CallVFunc(this, &keyToken, pPlayerController); + } + + void SetPlayerPawn(const CUtlStringToken& keyToken, C_CSPlayerPawn* pPlayerPawn) + { + // @XREF: "_pawn" + CallVFunc(this, &keyToken, pPlayerPawn); + } + +public: + std::byte pad0[0x60]; // 0x08 + + void FireEvent(IGameEvent* event); + + bool initialize(); + bool release(); + void* get_player_pawn_from_id(std::string_view event_name) noexcept; + + /* output (name | int): + team: 2 + dmg_health: 21 + entityid: 316 + defindex: 49 + radius: 1100 + */ + std::int64_t get_int(std::string_view event_name) noexcept; + + void* get_pointer_from_id(const std::string_view event_name) noexcept; +}; +static_assert(sizeof(IGameEvent) == 0x68); + + + + // todo: you can use this instead of hooking like you did it in csgo (input ur listeners), but that's a task for the reader. + // client.dll; 48 89 05 ?? ?? ?? ?? E8 ?? ?? ?? ?? 48 8D 8B E0 00 00 00 + struct event_manager_t { + void init_event( /*C_CSPlayerPawnBase*/ void* player_pawn_base, + const std::string_view event_name, void* unk = nullptr) noexcept { + // (*(*g_pGameEventManager + 24i64))(g_pGameEventManager, a1 + 4680, "round_end", 0i64); + return MEM::CallVFunc< void, 6U>(this, player_pawn_base, event_name.data(), unk); + } + }; + + class IGameEventManager2 + { + public: + enum + { + SERVERSIDE = 0, // this is a server side listener, event logger etc + CLIENTSIDE, // this is a client side listenet, HUD element etc + CLIENTSTUB, // this is a serverside stub for a remote client listener (used by engine only) + SERVERSIDE_OLD, // legacy support for old server event listeners + CLIENTSIDE_OLD // legacy support for old client event listeners + }; + + virtual ~IGameEventManager2() { } + + /// load game event descriptions from a file e.g. "resource\gameevents.res" + /// @Returns: count of loaded game events + int LoadEventsFromFile(const char* szFileName) + { + return CallVFunc(this, szFileName); + } + + // remove all and anything + void Reset() + { + CallVFunc(this); + } + + + }; + + \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/idebugoverlay.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/idebugoverlay.h new file mode 100644 index 0000000..27a0eb0 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/idebugoverlay.h @@ -0,0 +1,15 @@ +#pragma once + +// used: find pattern, call virtual function +#include "../../utilities/memory.h" + +// used: vertor_t +#include "../datatypes/vector.h" +// used: color_t +#include "../datatypes/color.h" + +class IDebugOverlayGameSystem +{ +public: + // @todo: reverse this +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/iengineclient.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/iengineclient.cpp new file mode 100644 index 0000000..e69de29 diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/iengineclient.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/iengineclient.h new file mode 100644 index 0000000..7e22eb1 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/iengineclient.h @@ -0,0 +1,165 @@ +#pragma once + +// used: callvfunc +#include "../../utilities/memory.h" + +class CEconItemDefinition; + +inline constexpr uint64_t Helper_GetAlternateIconKeyForWeaponPaintWearItem( + uint16_t nDefIdx, uint32_t nPaintId, uint32_t nWear) { + return (nDefIdx << 16) + (nPaintId << 2) + nWear; +} + +struct AlternateIconData_t { + const char* sSimpleName; + const char* sLargeSimpleName; + +private: + char pad0[0x8]; // no idea + char pad1[0x8]; // no idea + +}; +class CPaintKit { +public: + char pad_0x0000[0xE0]; //0x0000 + + int64_t PaintKitId() { + return *reinterpret_cast((uintptr_t)(this)); + } + + const char* PaintKitName() { + return *reinterpret_cast((uintptr_t)(this) + 0x8); + } + + const char* PaintKitDescriptionString() { + return *reinterpret_cast((uintptr_t)(this) + 0x10); + } + + const char* PaintKitDescriptionTag() { + return *reinterpret_cast((uintptr_t)(this) + 0x18); + } + + int32_t PaintKitRarity() { + return *reinterpret_cast((uintptr_t)(this) + 0x44); + } + + bool UsesOldModel() { + return *reinterpret_cast((uintptr_t)(this) + 0xB2); + } +}; +#include "../cstrike/sdk/datatypes/utlmap.h" +class CEconItemSchema { +public: + auto GetAttributeDefinitionInterface(int iAttribIndex) { + return MEM::CallVFunc (this, iAttribIndex); + } + + auto& GetSortedItemDefinitionMap() { + return *reinterpret_cast*>( + (uintptr_t)(this) + 0x128); + } + + auto& GetAlternateIconsMap() { + return *reinterpret_cast*>( + (uintptr_t)(this) + 0x278); + } + + auto& GetPaintKits() { + return *reinterpret_cast*>((uintptr_t)(this) + + 0x2F0); + } +}; + +class CEconItemSystem { +public: + auto GetEconItemSchema() { + return *reinterpret_cast((uintptr_t)(this) + 0x8); + } +}; + +enum EClientFrameStage : int +{ + FRAME_UNDEFINED = -1, + FRAME_START, + // a network packet is being received + FRAME_NET_UPDATE_START, + // data has been received and we are going to start calling postdataupdate + FRAME_NET_UPDATE_POSTDATAUPDATE_START, + // data has been received and called postdataupdate on all data recipients + FRAME_NET_UPDATE_POSTDATAUPDATE_END, + // received all packets, we can now do interpolation, prediction, etc + FRAME_NET_UPDATE_END, + // start rendering the scene + FRAME_RENDER_START = 9, + // finished rendering the scene + FRAME_RENDER_END, + FRAME_NET_FULL_FRAME_UPDATE_ON_REMOVE +}; + +enum flow : int { + FLOW_OUTGOING = 0, + FLOW_INCOMING = 1, +}; + +class INetChannelInfo { +public: + float get_latency(flow flow) + { + return MEM::CallVFunc(this, flow); + } +}; + +class ISource2Client { +public: + auto GetEconItemSystem() { + return MEM::CallVFunc(this); + } +}; + +class IEngineClient +{ +public: + int GetMaxClients() + { + return MEM::CallVFunc(this); + } + + bool IsInGame() + { + return MEM::CallVFunc(this); + } + + bool IsConnected() + { + return MEM::CallVFunc(this); + } + //gusta + INetChannelInfo* GetNetChannelInfo(int split_screen_slot) { + return MEM::CallVFunc(this, split_screen_slot); + } + // return CBaseHandle index + int GetLocalPlayer() + { + int nIndex = -1; + + MEM::CallVFunc(this, std::ref(nIndex), 0); + + return nIndex + 1; + } + + [[nodiscard]] const char* GetLevelName() + { + return MEM::CallVFunc(this); + } + + [[nodiscard]] const char* GetLevelNameShort() + { + return MEM::CallVFunc(this); + } + + [[nodiscard]] const char* GetProductVersionString() + { + return MEM::CallVFunc(this); + } + +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/ienginecvar.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/ienginecvar.h new file mode 100644 index 0000000..2d508e5 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/ienginecvar.h @@ -0,0 +1,150 @@ +#pragma once + +// used: cutllinkedlist +#include "../datatypes/utllinkedlist.h" +// used: fnv1a hashing +#include "../../utilities/fnv1a.h" + +// used: sdk datatypes +#include "../datatypes/color.h" +#include "../datatypes/vector.h" +#include "../datatypes/qangle.h" + +#pragma region convar_enumerations +// command to convars and concommands +enum EConVarFlag : int +{ + // convar systems + FCVAR_NONE = 0, + FCVAR_UNREGISTERED = (1 << 0), // if this is set, don't add to linked list, etc + FCVAR_DEVELOPMENTONLY = (1 << 1), // hidden in released products. flag is removed automatically if allow_development_cvars is defined + FCVAR_GAMEDLL = (1 << 2), // defined by the game dll + FCVAR_CLIENTDLL = (1 << 3), // defined by the client dll + FCVAR_HIDDEN = (1 << 4), // hidden. doesn't appear in find or autocomplete. like developmentonly, but can't be compiled out + + // convar only + FCVAR_PROTECTED = (1 << 5), // it's a server cvar, but we don't send the data since it's a password, etc. sends 1 if it's not bland/zero, 0 otherwise as value + FCVAR_SPONLY = (1 << 6), // this cvar cannot be changed by clients connected to a multiplayer server + FCVAR_ARCHIVE = (1 << 7), // set to cause it to be saved to vars.rc + FCVAR_NOTIFY = (1 << 8), // notifies players when changed + FCVAR_USERINFO = (1 << 9), // changes the client's info string + FCVAR_CHEAT = (1 << 14), // only useable in singleplayer/debug/multiplayer & sv_cheats + FCVAR_PRINTABLEONLY = (1 << 10), // this cvar's string cannot contain unprintable characters (e.g., used for player name etc) + FCVAR_UNLOGGED = (1 << 11), // if this is a fcvar_server, don't log changes to the log file / console if we are creating a log + FCVAR_NEVER_AS_STRING = (1 << 12), // never try to print that cvar + + // it's a convar that's shared between the client and the server. + // at signon, the values of all such convars are sent from the server to the client (skipped for local client, ofc) + // if a change is requested it must come from the console (i.e., no remote client changes) + // if a value is changed while a server is active, it's replicated to all connected clients + FCVAR_REPLICATED = (1 << 13), // server setting enforced on clients, replicated + // @todo: (1 << 14) used by the game, probably used as modification detection + FCVAR_DEMO = (1 << 16), // record this cvar when starting a demo file + FCVAR_DONTRECORD = (1 << 17), // don't record these command in demofiles + FCVAR_RELOAD_MATERIALS = (1 << 20), // if this cvar changes, it forces a material reload + FCVAR_RELOAD_TEXTURES = (1 << 21), // if this cvar changes, if forces a texture reload + FCVAR_NOT_CONNECTED = (1 << 22), // cvar cannot be changed by a client that is connected to a server + FCVAR_MATERIAL_SYSTEM_THREAD = (1 << 23), // indicates this cvar is read from the material system thread + FCVAR_ARCHIVE_XBOX = (1 << 24), // cvar written to config.cfg on the xbox + FCVAR_ACCESSIBLE_FROM_THREADS = (1 << 25), // used as a debugging tool necessary to check material system thread convars + FCVAR_SERVER_CAN_EXECUTE = (1 << 28), // the server is allowed to execute this command on clients via clientcommand/net_stringcmd/cbaseclientstate::processstringcmd + FCVAR_SERVER_CANNOT_QUERY = (1 << 29), // if this is set, then the server is not allowed to query this cvar's value (via iserverpluginhelpers::startquerycvarvalue) + FCVAR_CLIENTCMD_CAN_EXECUTE = (1 << 30), // ivengineclient::clientcmd is allowed to execute this command + FCVAR_MATERIAL_THREAD_MASK = (FCVAR_RELOAD_MATERIALS | FCVAR_RELOAD_TEXTURES | FCVAR_MATERIAL_SYSTEM_THREAD) +}; + +enum EConVarType : short +{ + EConVarType_Invalid = -1, + EConVarType_Bool, + EConVarType_Int16, + EConVarType_UInt16, + EConVarType_Int32, + EConVarType_UInt32, + EConVarType_Int64, + EConVarType_UInt64, + EConVarType_Float32, + EConVarType_Float64, + EConVarType_String, + EConVarType_Color, + EConVarType_Vector2, + EConVarType_Vector3, + EConVarType_Vector4, + EConVarType_Qangle, + EConVarType_MAX +}; + +#pragma endregion + +union CVValue_t +{ + bool i1; + short i16; + uint16_t u16; + int i32; + uint32_t u32; + int64_t i64; + uint64_t u64; + float fl; + double db; + const char* sz; + Color_t clr; + Vector2D_t vec2; + Vector_t vec3; + Vector4D_t vec4; + QAngle_t ang; +}; + +class CConVar +{ +public: + const char* szName; // 0x0000 + CConVar* m_pNext; // 0x0008 + MEM_PAD(0x10); // 0x0010 + const char* szDescription; // 0x0020 + uint32_t nType; // 0x28 + uint32_t nRegistered; // 0x2C + uint32_t nFlags; // 0x30 + MEM_PAD(0x8); // 0x34 + // @note: read-only, mofify with caution + CVValue_t value; // 0x40 +}; + +class IEngineCVar +{ +public: + MEM_PAD(0x40); + CUtlLinkedList listConvars; + + CConVar* Find(FNV1A_t uHashedName) + { + for (int i = I::Cvar->listConvars.Head(); i != I::Cvar->listConvars.InvalidIndex(); i = I::Cvar->listConvars.Next(i)) + { + CConVar* pConVar = I::Cvar->listConvars.Element(i); + if (pConVar == nullptr) + continue; + + if (FNV1A::Hash(pConVar->szName) == uHashedName) + return pConVar; + } + + CS_ASSERT(false); // invalid convar name + return nullptr; + } + + void UnlockHiddenCVars() + { + for (int i = I::Cvar->listConvars.Head(); i != I::Cvar->listConvars.InvalidIndex(); i = I::Cvar->listConvars.Next(i)) + { + CConVar* pConVar = I::Cvar->listConvars.Element(i); + if (pConVar == nullptr) + continue; + + if (pConVar->nFlags & FCVAR_HIDDEN) + pConVar->nFlags &= ~FCVAR_HIDDEN; + + if (pConVar->nFlags & FCVAR_DEVELOPMENTONLY) + pConVar->nFlags &= ~FCVAR_DEVELOPMENTONLY; + } + } +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/igameresourceservice.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/igameresourceservice.h new file mode 100644 index 0000000..a309464 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/igameresourceservice.h @@ -0,0 +1,13 @@ +#pragma once + +// used: mem_pad +#include "../../utilities/memory.h" + +class CGameEntitySystem; + +class IGameResourceService +{ +public: + MEM_PAD(0x58); + CGameEntitySystem* pGameEntitySystem; +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/iglobalvars.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/iglobalvars.h new file mode 100644 index 0000000..05dfb84 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/iglobalvars.h @@ -0,0 +1,31 @@ +#pragma once + +// used: mem_pad +#include "../../utilities/memory.h" + +class IGlobalVars +{ +public: + float flRealTime; //0x0000 + __int32 nFrameCount; //0x0004 + float flFrameTime; //0x0008 + float flFrameTime2; //0x000C + __int32 mMaxclients; //0x0010 + float flIntervalPerTick; //0x0014 + __int32 N0000007F; //0x0018 + __int32 N0000008B; //0x001C + void* unkfunc; //0x0020 + float N00000081; //0x0028 + float flCurtime; //0x002C + float flCurtime2; //0x0030 + MEM_PAD(0xC); //0x0034 + __int32 nTickCount; //0x0040 + float flIntervalPerTick2; //0x0044 + void* pCurrentNetChannel; //0x0048 + MEM_PAD(0x130); //0x0050 + char* szCurrentMap; //0x0180 + char* szCurrentMapName; //0x0188 + +}; //Size=0x0190 + +static_assert(sizeof(IGlobalVars) == 0x190); \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/iinputsystem.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/iinputsystem.h new file mode 100644 index 0000000..716fd20 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/iinputsystem.h @@ -0,0 +1,20 @@ +#pragma once + +// used: getexportaddress +#include "../../utilities/memory.h" + +class IInputSystem +{ +public: + bool IsRelativeMouseMode() + { + // @ida: 'IInputSystem::SetRelativeMouseMode'. + return *reinterpret_cast(reinterpret_cast(this) + 0x4F); + } + + void* GetSDLWindow() + { + // @ida: IInputSystem::DebugSpew -> #STR: "Current coordinate bias %s: %g,%g scale %g,%g\n" + return *reinterpret_cast(reinterpret_cast(this) + 0x2678); + } +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/imaterialsystem.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/imaterialsystem.h new file mode 100644 index 0000000..1a8d717 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/imaterialsystem.h @@ -0,0 +1,118 @@ +#pragma once + +// used: call virtual function +#include "../../utilities/memory.h" + +// used: color_t +#include "../datatypes/color.h" + +// used: cbasehandle +#include "../entity_handle.h" + +// material2 +class material2_t { +public: + virtual const char* get_name() = 0; + virtual const char* get_shader_name() = 0; +}; + +// material key var +struct material_key_var_t { + std::uint64_t m_key; + const char* m_name; + + material_key_var_t(std::uint64_t m_key, const char* m_name) : + m_key(m_key), m_name(m_name) { } + + material_key_var_t(const char* m_name, bool m_should_find_key = false) : + m_name(m_name) { + m_key = m_should_find_key ? find_key(m_name) : 0x0; + } + + // find key + std::uint64_t find_key(const char* m_name) { + // helper ida: CBodyGameSystem::NotifyResourcePreReload + using function_find_key = std::uint64_t(__fastcall*) + (const char*, unsigned int, int); + static auto find_key_var = reinterpret_cast( + MEM::FindPattern(L"particles.dll", CS_XOR("48 89 5C 24 ? 57 48 81 EC ? ? ? ? 33 C0 8B DA"))); + +#ifdef CS_PARANOID + CS_ASSERT(find_key_var != nullptr); +#endif + + return find_key_var(m_name, 0x12, 0x31415926); + } +}; + +// object info. +class object_info_t { + MEM_PAD(0xB0); + int m_id; +}; + +class scene_animable_object_t { + MEM_PAD(0xB0); + CBaseHandle m_owner; +}; + +class material_data_t { +public: + void set_shader_type(const char* m_shader_name) { + // E8 ? ? ? ? 48 8D B7 ? ? ? ? + // spritecard.vfx + using function_set_material_shader_type = void(__fastcall*)(void*, material_key_var_t, const char*, int); + static auto set_material_shader = reinterpret_cast(MEM::FindPattern(L"particles.dll", + CS_XOR("48 89 5C 24 ? 48 89 6C 24 ? 56 57 41 54 41 56 41 57 48 83 EC ? 0F B6 01 45 0F B6 F9 8B 2A 4D 8B E0 4C 8B 72 ? 48 8B F9 C0 E8 ? 24 ? 3C ? 74 ? 41 B0 ? B2 ? E8 ? ? ? ? 0F B6 07 33 DB C0 E8 ? 24 ? 3C ? 75 ? 48 8B 77 ? EB ? 48 8B F3 4C 8D 44 24 ? C7 44 24 ? ? ? ? ? 48 8D 54 24 ? 89 6C 24 ? 48 8B CE 4C 89 74 24 ? E8 ? ? ? ? 8B D0 83 F8 ? 75 ? 45 33 C9 89 6C 24 ? 4C 8D 44 24 ? 4C 89 74 24 ? 48 8B D7 48 8B CE E8 ? ? ? ? 8B D0 0F B6 0F C0 E9 ? 80 E1 ? 80 F9 ? 75 ? 48 8B 4F ? EB ? 48 8B CB 8B 41 ? 85 C0 74 ? 48 8D 59 ? 83 F8 ? 76 ? 48 8B 1B 48 63 C2 4D 85 E4"))); + +#ifdef CS_PARANOID + CS_ASSERT(set_material_shader != nullptr); +#endif + + material_key_var_t shader_vcar(0x162C1777, CS_XOR("shader")); + set_material_shader(this, shader_vcar, m_shader_name, 0x18); // ida: 0x19 + } + + void set_material_function(const char* function_name, int m_value) { + using function_set_material = void(__fastcall*)(void*, material_key_var_t, int, int); + static auto set_material = reinterpret_cast(MEM::FindPattern(L"particles.dll", + CS_XOR("48 89 5C 24 ? 48 89 6C 24 ? 56 57 41 54 41 56 41 57 48 83 EC ? 0F B6 01 45 0F B6 F9 8B 2A 48 8B F9"))); + +#ifdef CS_PARANOID + CS_ASSERT(set_material != nullptr); +#endif + + material_key_var_t func_var(function_name, true); + set_material(this, func_var, m_value, 0x18); + } + + MEM_PAD(0x18); + scene_animable_object_t* m_scene_animable; + material2_t* m_material; + MEM_PAD(0x20); + Color_t m_color; + MEM_PAD(0x4); + object_info_t* m_object_info; +}; + +class material_system_t { +public: + material2_t*** find_or_create_from_resource(material2_t*** m_out_material, const char* m_material_name) { + return MEM::CallVFunc(this, m_out_material, m_material_name); + } + + material2_t*** create_material(material2_t*** m_out_material, const char* m_material_name, material_data_t* m_data) { + return MEM::CallVFunc(this, m_out_material, m_material_name, m_data, 0, 0, 0, 0, 0, 1); + } + + void set_create_data_by_material(const void* m_data, material2_t*** const m_in_material) { + return MEM::CallVFunc< void, 37 >(this, m_in_material, m_data); + } + + static void set_color(void* m_data, Color_t m_color) { + *(byte*)((uintptr_t)m_data + 0x40) = m_color.r; + *(byte*)((uintptr_t)m_data + 0x41) = m_color.g; + *(byte*)((uintptr_t)m_data + 0x42) = m_color.b; + *(byte*)((uintptr_t)m_data + 0x43) = m_color.a; + } +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/imemalloc.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/imemalloc.h new file mode 100644 index 0000000..fda04f6 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/imemalloc.h @@ -0,0 +1,31 @@ +#pragma once +// used: mem::CallVFunc +#include "../../utilities/memory.h" +#pragma warning(push) +#pragma warning(disable : 4191) + +class IMemAlloc +{ +public: + void* Alloc(std::size_t nSize) + { + return MEM::CallVFunc(this, nSize); + } + + void* ReAlloc(const void* pMemory, std::size_t nSize) + { + return MEM::CallVFunc(this, pMemory, nSize); + } + + void Free(const void* pMemory) + { + return MEM::CallVFunc(this, pMemory); + } + + std::size_t GetSize(const void* pMemory) + { + return MEM::CallVFunc(this, pMemory); + } +}; + +#pragma warning(pop) \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/inetworkclientservice.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/inetworkclientservice.h new file mode 100644 index 0000000..1f4dc61 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/inetworkclientservice.h @@ -0,0 +1,41 @@ +#pragma once +#include "../../utilities/memory.h" + +class CNetworkGameClient +{ +public: + bool IsConnected() + { + return MEM::CallVFunc(this); + } + + // force game to clear cache and reset delta tick + void FullUpdate() + { + // @ida: #STR: "Requesting full game update (%s)...\n" + MEM::CallVFunc(this, CS_XOR("initial update")); + } + void Update() + { + int* deltaTickPtr = reinterpret_cast(reinterpret_cast(this) + 0x258); + + *deltaTickPtr = -1; + } + int GetDeltaTick() + { + // @ida: offset in FullUpdate(); + // (nDeltaTick = -1) == FullUpdate() called + return *reinterpret_cast(reinterpret_cast(this) + 0x258); + } +}; + +class INetworkClientService +{ +public: + int deltatick() { + return *reinterpret_cast(reinterpret_cast(this) + 0x258); + } + CNetworkGameClient* GetNetworkClient() { + return MEM::CallVFunc(this); + } +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/ischemasystem.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/ischemasystem.h new file mode 100644 index 0000000..963359b --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/ischemasystem.h @@ -0,0 +1,208 @@ +#pragma once + +// used: utlthash +#include "../datatypes/utlthash.h" +// used: utlvector +#include "../datatypes/utlvector.h" +// used: callvfunc +#include "../../utilities/memory.h" + +#define SCHEMASYSTEM_TYPE_SCOPES_OFFSET 0x190 +#define SCHEMASYSTEMTYPESCOPE_OFF1 0x4B0 +#define SCHEMASYSTEMTYPESCOPE_OFF2 0x2808 + +using SchemaString_t = const char*; +struct SchemaMetadataEntryData_t; + +class CSchemaSystemTypeScope; +class CSchemaType; + +struct CSchemaClassBinding +{ + CSchemaClassBinding* pParent; + const char* szBinaryName; // ex: C_World + const char* szModuleName; // ex: libclient.so + const char* szClassName; // ex: client + void* pClassInfoOldSynthesized; + void* pClassInfo; + void* pThisModuleBindingPointer; + CSchemaType* pSchemaType; +}; + +class CSchemaType +{ +public: + bool GetSizes(int* pOutSize, uint8_t* unkPtr) + { + return MEM::CallVFunc(this, pOutSize, unkPtr); + } + +public: + bool GetSize(int* out_size) + { + uint8_t smh = 0; + return GetSizes(out_size, &smh); + } + +public: + void* pVtable; // 0x0000 + const char* szName; // 0x0008 + + CSchemaSystemTypeScope* pSystemTypeScope; // 0x0010 + uint8_t nTypeCategory; // ETypeCategory 0x0018 + uint8_t nAatomicCategory; // EAtomicCategory 0x0019 +}; + +struct SchemaClassFieldData_t +{ + SchemaString_t szName; // 0x0000 + CSchemaType* pSchemaType; // 0x0008 + std::uint32_t nSingleInheritanceOffset; // 0x0010 + std::int32_t nMetadataSize; // 0x0014 + SchemaMetadataEntryData_t* pMetaData; // 0x0018 +}; + +struct SchemaClassInfoData_t; + +struct SchemaBaseClassInfoData_t +{ + int32_t nOffset; + SchemaClassInfoData_t* pClass; +}; + +struct SchemaClassInfoData_t +{ +private: + void* pVtable; // 0x0000 +public: + const char* szName; // 0x0008 + char* szDescription; // 0x0010 + + int m_nSize; // 0x0018 + std::int16_t nFieldSize; // 0x001C + std::int16_t nStaticSize; // 0x001E + std::int16_t nMetadataSize; // 0x0020 + + std::uint8_t nAlignOf; // 0x0022 + std::uint8_t nBaseClassesCount; // 0x0023 + char pad2[0x4]; // 0x0024 + SchemaClassFieldData_t* pFields; // 0x0028 + char pad3[0x8]; // 0x0030 + SchemaBaseClassInfoData_t* pBaseClasses; // 0x0038 + char pad4[0x28]; // 0x0040 + + //public: + //SchemaClassFieldData_t* pFields; // 0x0028 + + bool InheritsFrom(SchemaClassInfoData_t* pClassInfo) + { + if (pClassInfo == this && pClassInfo != nullptr) + return true; + else if (pBaseClasses == nullptr || pClassInfo == nullptr) + return false; + + for (int i = 0; i < nBaseClassesCount; i++) + { + auto& baseClass = pBaseClasses[i]; + if (baseClass.pClass->InheritsFrom(pClassInfo)) + return true; + } + + return false; + } +}; + +struct SchemaEnumeratorInfoData_t +{ + SchemaString_t szName; + + union + { + unsigned char value_char; + unsigned short value_short; + unsigned int value_int; + unsigned long long value; + }; + + MEM_PAD(0x10); // 0x0010 +}; + +class CSchemaEnumInfo +{ +public: + SchemaEnumeratorInfoData_t enumInfoData; +}; + +class CSchemaEnumBinding +{ +public: + virtual const char* GetBindingName() = 0; + virtual CSchemaClassBinding* AsClassBinding() = 0; + virtual CSchemaEnumBinding* AsEnumBinding() = 0; + virtual const char* GetBinaryName() = 0; + virtual const char* GetProjectName() = 0; + +public: + char* szBindingName_; // 0x0008 + char* szDllName_; // 0x0010 + std::int8_t nAlign_; // 0x0018 + MEM_PAD(0x3); // 0x0019 + std::int16_t nSize_; // 0x001C + std::int16_t nFlags_; // 0x001E + SchemaEnumeratorInfoData_t* pEnumInfo_; + MEM_PAD(0x8); // 0x0028 + CSchemaSystemTypeScope* pTypeScope_; // 0x0030 + MEM_PAD(0x8); // 0x0038 + std::int32_t unk1_; // 0x0040 +}; + +class CSchemaSystemTypeScope +{ +public: + void FindDeclaredClass(SchemaClassInfoData_t** pReturnClass, const char* szClassName) + { + return MEM::CallVFunc(this, pReturnClass, szClassName); + } + + CSchemaType* FindSchemaTypeByName(const char* szName, std::uintptr_t* pSchema) + { + return MEM::CallVFunc(this, szName, pSchema); + } + + CSchemaType* FindTypeDeclaredClass(const char* szName) + { + return MEM::CallVFunc(this, szName); + } + + CSchemaType* FindTypeDeclaredEnum(const char* szName) + { + return MEM::CallVFunc(this, szName); + } + + CSchemaClassBinding* FindRawClassBinding(const char* szName) + { + return MEM::CallVFunc(this, szName); + } + + void* pVtable; // 0x0000 + char szName[256U]; // 0x0008 + MEM_PAD(SCHEMASYSTEMTYPESCOPE_OFF1); // 0x0108 + CUtlTSHash hashClasses; // 0x0588 + MEM_PAD(SCHEMASYSTEMTYPESCOPE_OFF2); // 0x05C8 + CUtlTSHash hashEnumes; // 0x2DD0 +}; + +class ISchemaSystem +{ +public: + CSchemaSystemTypeScope* FindTypeScopeForModule(const char* m_module_name) + { + return MEM::CallVFunc(this, m_module_name, nullptr); + } + +private: + MEM_PAD(SCHEMASYSTEM_TYPE_SCOPES_OFFSET); // 0x0000 +public: + // table of type scopes + CUtlVector vecTypeScopes; // SCHEMASYSTEM_TYPE_SCOPES_OFFSET +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/iswapchaindx11.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/iswapchaindx11.h new file mode 100644 index 0000000..ee95d36 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/iswapchaindx11.h @@ -0,0 +1,13 @@ +#pragma once + +// used: call virtual function +#include "../../utilities/memory.h" + +// forward declarations +struct IDXGISwapChain; + +class ISwapChainDx11 +{ + MEM_PAD(0x170); + IDXGISwapChain* pDXGISwapChain; +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/itrace.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/itrace.cpp new file mode 100644 index 0000000..550d872 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/itrace.cpp @@ -0,0 +1,4 @@ +#include "itrace.h" +#include "../cstrike/sdk/interfaces/iengineclient.h" +#include "../cstrike/sdk/interfaces/cgameentitysystem.h" +#include "../cstrike/sdk/interfaces/igameresourceservice.h" diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/itrace.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/itrace.h new file mode 100644 index 0000000..8ba1ae9 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/itrace.h @@ -0,0 +1,294 @@ +#pragma once +// used: call virtual function +#include "../../utilities/memory.h" + +// used: color_t +#include "../datatypes/color.h" + +// used: cbasehandle +#include "../entity_handle.h" +#include "..\cstrike\core\sdk.h" +#include "..\cstrike\sdk\entity.h" +#define CLIP_TRACE_TO_PLAYERS "48 8B C4 55 56 48 8D A8 58 FF FF FF 48 81 EC 98 01 00 00 48" +#define TRACE_SHAPE "48 89 54 24 ? 48 89 4C 24 ? 55 53 56 57 41 55 41 56 48 8D AC 24" +#define COMBINE(x, y) x##y +#define COMBINE2(x, y) COMBINE(x, y) +#include +#include + +#define PAD_CLASS_DEBUG(sz) int COMBINE2(pad_, __COUNTER__)[sz]; +#define CS2_PAD( number, size ) \ +private: \ + [[maybe_unused]] std::array< std::byte, size > m_unknown_##number{ }; \ +public: +enum Contents_t { + CONTENTS_EMPTY = 0, + CONTENTS_SOLID = 0x1, + CONTENTS_WINDOW = 0x2, + CONTENTS_AUX = 0x4, + CONTENTS_GRATE = 0x8, + CONTENTS_SLIME = 0x10, + CONTENTS_WATER = 0x20, + CONTENTS_BLOCKLOS = 0x40, + CONTENTS_OPAQUE = 0x80, + CONTENTS_TESTFOGVOLUME = 0x100, + CONTENTS_UNUSED = 0x200, + CONTENTS_BLOCKLIGHT = 0x400, + CONTENTS_TEAM1 = 0x800, + CONTENTS_TEAM2 = 0x1000, + CONTENTS_IGNORE_NODRAW_OPAQUE = 0x2000, + CONTENTS_MOVEABLE = 0x4000, + CONTENTS_AREAPORTAL = 0x8000, + CONTENTS_PLAYERCLIP = 0x10000, + CONTENTS_MONSTERCLIP = 0x20000, + CONTENTS_CURRENT_0 = 0x40000, + CONTENTS_CURRENT_90 = 0x80000, + CONTENTS_CURRENT_180 = 0x100000, + CONTENTS_CURRENT_270 = 0x200000, + CONTENTS_CURRENT_UP = 0x400000, + CONTENTS_CURRENT_DOWN = 0x800000, + CONTENTS_ORIGIN = 0x1000000, + CONTENTS_MONSTER = 0x2000000, + CONTENTS_DEBRIS = 0x4000000, + CONTENTS_DETAIL = 0x8000000, + CONTENTS_TRANSLUCENT = 0x10000000, + CONTENTS_LADDER = 0x20000000, + CONTENTS_HITBOX = 0x40000000, +}; + +enum Masks_t { + MASK_ALL = 0xFFFFFFFF, + MASK_SOLID = CONTENTS_SOLID | CONTENTS_MOVEABLE | CONTENTS_WINDOW | CONTENTS_MONSTER | CONTENTS_GRATE, + MASK_PLAYERSOLID = CONTENTS_SOLID | CONTENTS_MOVEABLE | CONTENTS_PLAYERCLIP | CONTENTS_WINDOW | CONTENTS_MONSTER | CONTENTS_GRATE, + MASK_NPCSOLID = CONTENTS_SOLID | CONTENTS_MOVEABLE | CONTENTS_MONSTERCLIP | CONTENTS_WINDOW | CONTENTS_MONSTER | CONTENTS_GRATE, + MASK_NPCFLUID = CONTENTS_SOLID | CONTENTS_MOVEABLE | CONTENTS_MONSTERCLIP | CONTENTS_WINDOW | CONTENTS_MONSTER | CONTENTS_GRATE, + MASK_WATER = CONTENTS_WATER | CONTENTS_MOVEABLE | CONTENTS_SLIME, + MASK_OPAQUE = CONTENTS_SOLID | CONTENTS_MOVEABLE | CONTENTS_OPAQUE, + MASK_OPAQUE_AND_NPCS = MASK_OPAQUE | CONTENTS_MONSTER, + MASK_BLOCKLOS = CONTENTS_SOLID | CONTENTS_MOVEABLE | CONTENTS_BLOCKLOS, + MASK_BLOCKLOS_AND_NPCS = MASK_BLOCKLOS | CONTENTS_MONSTER, + MASK_VISIBLE = MASK_OPAQUE | CONTENTS_IGNORE_NODRAW_OPAQUE, + MASK_VISIBLE_AND_NPCS = MASK_OPAQUE_AND_NPCS | CONTENTS_IGNORE_NODRAW_OPAQUE, + MASK_SHOT = CONTENTS_SOLID | CONTENTS_MOVEABLE | CONTENTS_MONSTER | CONTENTS_WINDOW | CONTENTS_DEBRIS | CONTENTS_GRATE | CONTENTS_HITBOX, + MASK_SHOT_BRUSHONLY = CONTENTS_SOLID | CONTENTS_MOVEABLE | CONTENTS_WINDOW | CONTENTS_DEBRIS, + MASK_SHOT_HULL = CONTENTS_SOLID | CONTENTS_MOVEABLE | CONTENTS_MONSTER | CONTENTS_WINDOW | CONTENTS_DEBRIS | CONTENTS_GRATE, + MASK_SHOT_PORTAL = CONTENTS_SOLID | CONTENTS_MOVEABLE | CONTENTS_WINDOW | CONTENTS_MONSTER, + MASK_SOLID_BRUSHONLY = CONTENTS_SOLID | CONTENTS_MOVEABLE | CONTENTS_WINDOW | CONTENTS_GRATE, + MASK_PLAYERSOLID_BRUSHONLY = CONTENTS_SOLID | CONTENTS_MOVEABLE | CONTENTS_WINDOW | CONTENTS_PLAYERCLIP | CONTENTS_GRATE, + MASK_NPCSOLID_BRUSHONLY = CONTENTS_SOLID | CONTENTS_MOVEABLE | CONTENTS_WINDOW | CONTENTS_MONSTERCLIP | CONTENTS_GRATE, + MASK_NPCWORLDSTATIC = CONTENTS_SOLID | CONTENTS_WINDOW | CONTENTS_MONSTERCLIP | CONTENTS_GRATE, + MASK_NPCWORLDSTATIC_FLUID = CONTENTS_SOLID | CONTENTS_WINDOW | CONTENTS_MONSTERCLIP, + MASK_SPLITAREPORTAL = CONTENTS_WATER | CONTENTS_SLIME, + MASK_CURRENT = CONTENTS_CURRENT_0 | CONTENTS_CURRENT_90 | CONTENTS_CURRENT_180 | CONTENTS_CURRENT_270 | CONTENTS_CURRENT_UP | CONTENTS_CURRENT_DOWN, + MASK_DEADSOLID = CONTENTS_SOLID | CONTENTS_PLAYERCLIP | CONTENTS_WINDOW | CONTENTS_GRATE, +}; + +enum { + SURF_LIGHT = 0x0001, + SURF_SKY2D = 0x0002, + SURF_SKY = 0x0004, + SURF_WARP = 0x0008, + SURF_TRANS = 0x0010, + SURF_NOPORTAL = 0x0020, + SURF_TRIGGER = 0x0040, + SURF_NODRAW = 0x0080, + SURF_HINT = 0x0100, + SURF_SKIP = 0x0200, + SURF_NOLIGHT = 0x0400, + SURF_BUMPLIGHT = 0x0800, + SURF_NOSHADOWS = 0x1000, + SURF_NODECALS = 0x2000, + SURF_NOPAINT = SURF_NODECALS, + SURF_NOCHOP = 0x4000, + SURF_HITBOX = 0x8000 +}; +struct ray_t +{ + Vector_t Start = Vector_t(0, 0, 0); + Vector_t End = Vector_t(0, 0, 0); + Vector_t Mins = Vector_t(0, 0, 0); + Vector_t Maxs = Vector_t(0, 0, 0); + char __pad0000[0x4]; + std::uint8_t UnkownType = 0x0; +}; +static_assert(sizeof(ray_t) == 0x38); + +class trace_filter_t +{ +public: + char __pad0000[0x8]; + std::uint64_t trace_mask ; + std::uint64_t null_it[2] ; + std::uint32_t SkipHandles[4]; + std::uint16_t Collisions[2] ; + std::uint16_t N0000011C; + std::uint8_t layer; + std::uint8_t N00000104 ; + std::uint8_t null_it3 ; + + // manua initialization +/*virtual ~trace_filter_t() {} + virtual bool function() { return true; } + trace_filter_t(C_CSPlayerPawn* skip, uint64_t mask, uint8_t layer, uint16_t idk) + { + //initfilter_19A770((__int64)filter, a2, 536577i64, 4, 7); + using function_t = trace_filter_t * (__fastcall*)(trace_filter_t&, void*, uint64_t, uint8_t, uint16_t); + static function_t fn = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 89 5C 24 08 48 89 74 24 10 57 48 83 EC 20 0F B6 41 37 33"))); + // way better sig + if (fn == nullptr) { + L_PRINT(LOG_WARNING) << CS_XOR("trace_filter_t Invalid signature!"); + } + + CS_ASSERT(fn != nullptr); + + fn(*this, skip, mask, layer, idk); + }*/ +}; + +struct C_TraceHitboxData { + CS2_PAD(0, 0x38) + int m_hitgroup{ }; +}; + +class game_trace_t { +public: + void* Surface; + C_BaseEntity* HitEntity; + C_TraceHitboxData* HitboxData; + CS2_PAD(0, 0x38) + std::uint32_t Contents; + CS2_PAD(1, 0x24) + Vector_t m_start_pos, m_end_pos, m_normal, m_pos; + MEM_PAD(0x4); + float Fraction; + MEM_PAD(0x6); + bool m_all_solid; + CS2_PAD(4, 0x4D) +}; + + +struct UpdateValueT { + float previousLenght{ }; + float currentLenght{ }; + CS2_PAD(0, 0x8) + std::int16_t handleIdx{ }; + CS2_PAD(1, 0x6) +}; +struct trace_arr_element_t { + CS2_PAD(0, 0x30) +}; + +struct trace_data_t { + std::int32_t m_uk1{ }; + float m_uk2{ 52.0f }; + void* m_arr_pointer{ }; + std::int32_t m_uk3{ 128 }; + std::int32_t m_uk4{ static_cast(0x80000000) }; + std::array< trace_arr_element_t, 0x80 > m_arr = { }; + CS2_PAD(0, 0x8) + std::int64_t m_num_update{ }; + void* m_pointer_update_value{ }; + CS2_PAD(1, 0xC8) + Vector_t m_start{ }, m_end{ }; + CS2_PAD(2, 0x50) +}; +class i_trace +{ +public: // cHoca + void InitializeTraceInfo(game_trace_t* const hit ) + { + using function_t = void(__fastcall*)(game_trace_t*); + static function_t fn = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, "48 89 5C 24 08 57 48 83 EC 20 48 8B D9 33 FF 48 8B 0D")); + CS_ASSERT(fn != nullptr); + fn(hit); + + } + void InitializeTrace(game_trace_t& trace) + { + using function_t = void(__fastcall*)(game_trace_t&); + static function_t fn = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, "48 89 5C 24 08 57 48 83 EC 20 48 8B D9 33 FF 48 8B 0D")); + CS_ASSERT(fn != nullptr); + fn(trace); + + } + // cHoca + + void Init(trace_filter_t& filter, C_CSPlayerPawn* skip, uint64_t mask, uint8_t layer, uint16_t idk) + { + //initfilter_19A770((__int64)filter, a2, 536577i64, 4, 7); + using function_t = trace_filter_t*(__fastcall*)(trace_filter_t&, void*, uint64_t, uint8_t, uint16_t); + static function_t fn = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 89 5C 24 08 48 89 74 24 10 57 48 83 EC 20 0F B6 41 37 33"))); + // way better sig + if (fn == nullptr) { + L_PRINT(LOG_WARNING) << CS_XOR("trace_filter_t Invalid signature!"); + } + + CS_ASSERT(fn != nullptr); + + fn(filter, skip, mask, layer, idk); + } + // __int64 __fastcall sub_695330(__int64 a1, __int64 a2, __int64 a3, __int64 a4, float a5, int a6, float a7) + // #STR: "particles/impact_fx/impact_wallbang_heavy.vpcf", "particles/impact_fx/impact_wallbang_light.vpcf", "particles/impact_fx/impact_wallbang_light_silent.vpcf", "gunshotsplash" + // local variable allocation has failed, the output may be wrong! + //abaixo da funcao + void ClipTraceToPlayers(Vector_t& start, Vector_t& end, trace_filter_t* filter, game_trace_t* trace, float min, int length, float max) + { // cHoca + + using function_t = void(__fastcall*)(Vector_t&, Vector_t&, trace_filter_t*, game_trace_t*, float, int, float); + static function_t fn = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CLIP_TRACE_TO_PLAYERS)); + // way better sig + if (fn == nullptr) { + L_PRINT(LOG_WARNING) << CS_XOR("ClipTraceToPlayers creating new signature!"); + fn = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, "48 8B C4 55 56 48 8D A8 58")); + } + + CS_ASSERT(fn != nullptr); + + fn(start, end, filter, trace, min, max, length); + } + // cHoca + // client.dll; 48 89 5C 24 08 48 89 6C 24 10 48 89 74 24 18 48 89 7C 24 20 41 56 48 83 EC 40 F2 + // client.dll; 48 89 5C 24 08 48 89 6C 24 10 48 89 74 24 18 57 48 83 EC 60 48 8B E9 0F + + static void get_trace_info(trace_data_t* trace, game_trace_t* hit, + const float unknown_float, void* unknown) { + + using function_t = void(__fastcall*)(trace_data_t*, game_trace_t*, float, void*); + static function_t fn = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 89 5C 24 08 48 89 6C 24 10 48 89 74 24 18 57 48 83 EC 60 48 8B E9 0F"))); + + return fn(trace, hit, unknown_float, unknown); + } + // william: there is no need to rebuild this function. + // client.dll; 48 8B C4 44 89 48 20 55 57 41 55 + static bool handle_bullet_penetration(trace_data_t* const trace, void* stats, + UpdateValueT* const mod_value, + const bool draw_showimpacts = false) { + + using function_t = bool(__fastcall*)(trace_data_t*, void*, UpdateValueT*, void*, void*, void*, void*, void*, bool); + static function_t fn = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 8B C4 44 89 48 20 55 57 41 55"))); + + return fn(trace, stats, mod_value, nullptr, nullptr, nullptr, nullptr, nullptr, draw_showimpacts); + } + + static void CreateTrace(trace_data_t* const trace, const Vector_t start, + const Vector_t end, const trace_filter_t& filler, + const int penetration_count) { + + + using function_t = void(__fastcall*)(trace_data_t*, Vector_t, Vector_t, + trace_filter_t, int); + static function_t fn = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, CS_XOR("48 89 5C 24 08 48 89 6C 24 10 48 89 74 24 18 57 41 56 41 57 48 83 EC 40 F2"))); + CS_ASSERT(fn != nullptr); + return fn(trace, start, end, filler, penetration_count); + } + + // #STR: "Physics/TraceShape (Client)" then xref + void TraceShape(ray_t& ray, Vector_t* start, Vector_t* end, trace_filter_t filter, game_trace_t& trace) + { + using function_t = bool(__fastcall*)(void*, ray_t&, Vector_t*, Vector_t*, trace_filter_t, game_trace_t&); + static function_t fn = reinterpret_cast(MEM::FindPattern(CLIENT_DLL, "48 89 5C 24 10 48 89 74 24 18 48 89 7C 24 20 48 89 4C 24 08 55 41 54 41 55 41 56 41 57 48 8D")); + CS_ASSERT(fn != nullptr); + fn(this, ray, start, end, filter, trace); + + } +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/iviewrender.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/iviewrender.h new file mode 100644 index 0000000..27e060a --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/sdk/interfaces/iviewrender.h @@ -0,0 +1,26 @@ +#pragma once + +#include "../datatypes/qangle.h" +#include "../datatypes/matrix.h" +#include "../../core/memaddon.hpp" +class IViewRender +{ +public: + Vector_t vecOrigin; // 0x0000 + QAngle_t vecAngles; // 0x000C + float flFov; // 0x0018 + char pad_0x001C[0x14]; // 0x001C + ViewMatrix_t matUNK1; // 0x0030 + char pad_0x0070[0x30]; // 0x0070 + ViewMatrix_t matUNK2; // 0x00A0 + char pad_0x00E0[0xC8]; // 0x00E0 + ViewMatrix_t matUNK3; // 0x01A8 + char pad_0x01E8[0x28]; // 0x01E8 +}; +#ifndef CS2_CHEAT_CRENDERGAMESYSTEM_HPP +#define CS2_CHEAT_CRENDERGAMESYSTEM_HPP + + + + +#endif // CS2_CHEAT_CRENDERGAMESYSTEM_HPP \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/texture.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/texture.h new file mode 100644 index 0000000..709e447 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/texture.h @@ -0,0 +1,2772 @@ +unsigned char esp_preview1[] = +{ + 0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A, 0x00, 0x00, 0x00, 0x0D, 0x49, 0x48, 0x44, 0x52, +0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x01, 0x2F, 0x08, 0x06, 0x00, 0x00, 0x00, 0x90, 0x51, 0x35, +0x9A, 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, 0x00, 0x00, 0x0B, 0x13, 0x00, 0x00, 0x0B, +0x13, 0x01, 0x00, 0x9A, 0x9C, 0x18, 0x00, 0x00, 0x00, 0x01, 0x73, 0x52, 0x47, 0x42, 0x00, 0xAE, +0xCE, 0x1C, 0xE9, 0x00, 0x00, 0x00, 0x04, 0x67, 0x41, 0x4D, 0x41, 0x00, 0x00, 0xB1, 0x8F, 0x0B, +0xFC, 0x61, 0x05, 0x00, 0x00, 0xAC, 0xA1, 0x49, 0x44, 0x41, 0x54, 0x78, 0x01, 0xED, 0x7D, 0x07, +0x80, 0x65, 0x75, 0x75, 0xF7, 0xB9, 0xF5, 0xDD, 0xFB, 0x7A, 0x99, 0xBA, 0x53, 0x76, 0x66, 0x7B, +0xDF, 0xA5, 0x2D, 0x1D, 0x96, 0x26, 0x08, 0x8A, 0x80, 0x8A, 0x2D, 0x1A, 0x15, 0xD4, 0x44, 0x3F, +0xA3, 0x89, 0xE9, 0x89, 0xC9, 0x1A, 0xFD, 0x52, 0xD5, 0x58, 0x12, 0xA3, 0xB1, 0x57, 0x04, 0x14, +0x01, 0x29, 0x2A, 0xE0, 0x2E, 0x7D, 0x61, 0x7B, 0x6F, 0xB3, 0xD3, 0xFB, 0xEB, 0xF5, 0xBE, 0xDB, +0xBF, 0x73, 0xFE, 0xF7, 0xBD, 0xD9, 0x01, 0x11, 0x76, 0x86, 0x65, 0xD8, 0xE5, 0xE3, 0xE0, 0x73, +0x66, 0xE7, 0xF5, 0x7B, 0xFE, 0xA7, 0xFD, 0x4E, 0x03, 0x78, 0x9D, 0x5E, 0xA7, 0xD7, 0xE9, 0x75, +0x7A, 0x9D, 0x5E, 0xA7, 0xD7, 0xE9, 0x75, 0x7A, 0x9D, 0x4E, 0x98, 0x38, 0x38, 0x4D, 0xE8, 0xE0, +0xC1, 0x83, 0x5D, 0xF8, 0x63, 0x83, 0xEB, 0xBA, 0xEB, 0x5C, 0x97, 0x6B, 0x70, 0x5D, 0x58, 0x60, +0x59, 0x76, 0xC5, 0x34, 0x8D, 0x46, 0xDB, 0xE1, 0x24, 0x41, 0xE0, 0x6D, 0x97, 0x93, 0x4D, 0x51, +0xE4, 0x6D, 0xDB, 0xB2, 0x7B, 0x64, 0x51, 0xD8, 0x53, 0x28, 0x98, 0x0F, 0x5C, 0x7C, 0xF1, 0xAA, +0xDD, 0xF0, 0xFF, 0x21, 0x9D, 0xD2, 0x8C, 0xDD, 0xB9, 0x73, 0x67, 0xD4, 0xEF, 0xF7, 0x7F, 0x02, +0x7F, 0x45, 0x66, 0xBA, 0x03, 0xC5, 0xB2, 0x71, 0xF4, 0xA9, 0x5F, 0x3C, 0x14, 0xCF, 0xEB, 0xA3, +0xAB, 0x47, 0x27, 0xA0, 0x6D, 0xD3, 0xCE, 0xC3, 0x76, 0xB9, 0x54, 0x58, 0x1B, 0x88, 0x76, 0xAA, +0xFE, 0xC6, 0xE5, 0xB9, 0xF3, 0xCE, 0x3A, 0x57, 0x9D, 0xD7, 0xB6, 0xD0, 0x59, 0xD2, 0x0D, 0xA5, +0x4B, 0xCF, 0xF0, 0x5B, 0x95, 0xAA, 0xE6, 0x9A, 0xA6, 0x99, 0xB1, 0x2C, 0xEB, 0x4E, 0x9E, 0x87, +0xDB, 0x96, 0x2F, 0x5F, 0xDE, 0x0F, 0xFF, 0x9F, 0x90, 0x08, 0xA7, 0x20, 0xD5, 0xA4, 0x73, 0x23, +0xC7, 0x71, 0x5D, 0x8E, 0xE3, 0x6C, 0x44, 0x86, 0x7C, 0xE6, 0x33, 0x7F, 0xFE, 0xE5, 0x1B, 0xE3, +0x42, 0xEF, 0x0D, 0x85, 0x6A, 0xF1, 0x92, 0xB0, 0xA2, 0xCE, 0x9B, 0x74, 0xB3, 0x72, 0x36, 0x35, +0x54, 0xE5, 0xC0, 0x52, 0xB2, 0x13, 0x1A, 0x14, 0x2B, 0xE5, 0xC6, 0x3E, 0xD5, 0x74, 0x38, 0x6D, +0x12, 0x78, 0x77, 0x75, 0x70, 0xD5, 0x92, 0x38, 0xB7, 0xA4, 0x33, 0xA2, 0x1B, 0xBA, 0x6D, 0x25, +0x33, 0xF9, 0xF5, 0x9A, 0x56, 0x3A, 0xFF, 0xF0, 0xE1, 0xC3, 0x69, 0x7C, 0xBD, 0xCF, 0xFC, 0xFF, +0xC0, 0xE0, 0x53, 0x4A, 0x62, 0x49, 0x42, 0x03, 0x81, 0xC0, 0x3F, 0xE2, 0xC5, 0x3F, 0x03, 0x25, +0xF4, 0xFD, 0xC4, 0x80, 0x4F, 0xFC, 0xE5, 0x0F, 0x97, 0xB6, 0xF0, 0xE9, 0x0F, 0x35, 0x6B, 0xCF, +0x7C, 0x4A, 0xE7, 0x39, 0x18, 0x2C, 0x15, 0x60, 0x6C, 0x70, 0x08, 0x86, 0xD3, 0x3A, 0xEC, 0x9F, +0x08, 0x40, 0x28, 0x18, 0x85, 0x88, 0x2A, 0x43, 0x41, 0xCB, 0x43, 0x20, 0x34, 0xDF, 0x6D, 0xF0, +0x1B, 0x5C, 0xDE, 0x89, 0x43, 0xFB, 0xBA, 0x77, 0xC0, 0x99, 0xEB, 0xBA, 0x9C, 0xEB, 0xD6, 0x27, +0xDC, 0xAE, 0x06, 0xD1, 0x79, 0x7C, 0x9F, 0x69, 0x67, 0x27, 0x77, 0x5E, 0x77, 0xEE, 0x59, 0xED, +0xEF, 0xC3, 0xD7, 0xCE, 0x6A, 0x9A, 0xF6, 0x99, 0x33, 0xCE, 0x38, 0x23, 0x07, 0xAF, 0x51, 0x3A, +0x65, 0x18, 0x8B, 0x52, 0xBA, 0x41, 0x10, 0x84, 0x7F, 0xB4, 0x6D, 0x9B, 0x24, 0x6A, 0xF3, 0x37, +0xBE, 0xF1, 0x50, 0xC4, 0x4E, 0x1E, 0x7A, 0x83, 0x54, 0x3A, 0xF4, 0x79, 0x43, 0x2B, 0x74, 0x1E, +0x2D, 0xBA, 0x50, 0x2C, 0x0A, 0x00, 0x6A, 0x04, 0x22, 0xCD, 0x11, 0x88, 0x45, 0x82, 0x50, 0x29, +0x29, 0x50, 0xAD, 0xE8, 0xEE, 0x9E, 0x9E, 0x71, 0x38, 0xFF, 0xCC, 0x45, 0xDC, 0xC8, 0xF0, 0x41, +0xD0, 0x2A, 0x02, 0x44, 0xC3, 0x21, 0x70, 0x1D, 0x07, 0x8A, 0x5C, 0x8B, 0x1B, 0x6C, 0x6C, 0x83, +0x52, 0xC9, 0x04, 0xDB, 0x72, 0x38, 0x51, 0x51, 0xEE, 0xE1, 0x4A, 0x63, 0x5F, 0xF8, 0xF8, 0x47, +0x2E, 0x6C, 0x8F, 0x84, 0x7C, 0x1F, 0x41, 0x15, 0xFD, 0xC9, 0x55, 0xAB, 0x56, 0xED, 0x82, 0xD7, +0x20, 0x9D, 0x12, 0xAA, 0xF8, 0xD0, 0xA1, 0x43, 0x9F, 0x44, 0xB5, 0xBB, 0xAE, 0x5C, 0x2E, 0xDF, +0x58, 0x97, 0xA2, 0xA1, 0xBE, 0x9E, 0xB3, 0xA2, 0x62, 0xF9, 0x53, 0x99, 0x9C, 0xD3, 0x99, 0xD6, +0x82, 0xD0, 0xD8, 0xB1, 0x1A, 0x1A, 0x45, 0x70, 0x6D, 0xA8, 0x70, 0xE5, 0x6A, 0x09, 0x9E, 0xDA, +0xF2, 0x24, 0x5C, 0x7D, 0xE5, 0x9B, 0xE1, 0xC0, 0x81, 0x0C, 0x97, 0x4C, 0x4E, 0xB8, 0x5D, 0xCB, +0x2E, 0x81, 0xA7, 0x1F, 0xFB, 0x0D, 0x1C, 0xE8, 0x39, 0x0C, 0x0B, 0xE7, 0x77, 0x00, 0x8F, 0x46, +0xD5, 0x71, 0x38, 0x2E, 0x14, 0x50, 0x00, 0x84, 0x30, 0xF8, 0xE4, 0x80, 0x6B, 0x07, 0x5A, 0x2F, +0x53, 0x65, 0x33, 0xFC, 0xA5, 0x2F, 0x7D, 0xFF, 0xDE, 0xC6, 0xE6, 0xA6, 0xBF, 0xFD, 0xD8, 0x47, +0x6E, 0xFC, 0x24, 0xAA, 0xE7, 0xBE, 0xA5, 0x4B, 0x97, 0x7E, 0x06, 0x5E, 0x63, 0xF4, 0xAA, 0x33, +0x16, 0x2F, 0xEC, 0x3F, 0xE2, 0x0F, 0x0E, 0x2F, 0xEE, 0xFB, 0xE9, 0xDF, 0xFF, 0xF2, 0xB5, 0xFB, +0x62, 0xE6, 0xD0, 0xE0, 0x1A, 0xC7, 0x2C, 0x7F, 0x2C, 0x63, 0x49, 0xEB, 0x8B, 0x72, 0x33, 0xB8, +0x66, 0x0E, 0x7A, 0x8E, 0x6C, 0x86, 0x5C, 0x32, 0xCB, 0x15, 0x0A, 0x05, 0x28, 0x69, 0x55, 0xC8, +0x66, 0x52, 0xB0, 0xB8, 0x63, 0x39, 0x80, 0x6D, 0xC0, 0xBC, 0x68, 0x85, 0x0B, 0x84, 0x42, 0x90, +0xCC, 0xE6, 0xA0, 0x52, 0xCE, 0x41, 0xDF, 0x10, 0x0F, 0x2E, 0x48, 0xA0, 0x1B, 0x26, 0xA0, 0xDA, +0x05, 0x15, 0x55, 0x35, 0x0F, 0x02, 0x27, 0xF0, 0x5C, 0x58, 0x92, 0x9D, 0xCB, 0x7C, 0x3E, 0xF5, +0x32, 0x47, 0x08, 0x7F, 0xFE, 0x2B, 0x5F, 0xFC, 0xEB, 0xF7, 0xE3, 0xFB, 0x6F, 0xA4, 0xCF, 0xF0, +0x5A, 0x63, 0xEE, 0xAB, 0xCA, 0xD8, 0x69, 0x4C, 0xDD, 0x48, 0xFF, 0xFE, 0xF0, 0xA7, 0x7E, 0xD2, +0x60, 0x8F, 0x3C, 0x7E, 0x87, 0x63, 0xF1, 0x97, 0xF5, 0x0C, 0x1C, 0x83, 0x74, 0x3A, 0x09, 0xC7, +0x86, 0x52, 0x8C, 0x41, 0x3E, 0x51, 0x44, 0x29, 0xE4, 0x40, 0x92, 0x04, 0xF0, 0x49, 0x2E, 0x64, +0x8A, 0x55, 0x08, 0x34, 0x06, 0xC1, 0x1D, 0xEA, 0x83, 0x8E, 0x40, 0x1E, 0xCC, 0xD4, 0x76, 0x38, +0xFF, 0x92, 0xF5, 0xD0, 0xFB, 0xFD, 0xFD, 0xC8, 0x44, 0x03, 0x4C, 0x97, 0x07, 0x8C, 0x7C, 0x80, +0x13, 0x24, 0x40, 0xF5, 0x0E, 0xF4, 0x9F, 0x69, 0x03, 0x94, 0xAB, 0x2E, 0x18, 0x86, 0x06, 0x4A, +0x80, 0xCF, 0xD2, 0x7B, 0xD2, 0x7B, 0xBF, 0x16, 0x99, 0xCB, 0xC3, 0xAB, 0x44, 0xCF, 0x67, 0x2A, +0xD1, 0xB2, 0x36, 0xB1, 0x7C, 0xA4, 0x67, 0xF8, 0xE0, 0x5D, 0xBF, 0xBC, 0x27, 0xFF, 0xF8, 0x33, +0xFB, 0x51, 0xF2, 0x52, 0xC8, 0x1C, 0x0E, 0x54, 0x59, 0x62, 0xF7, 0xA3, 0x53, 0x05, 0x95, 0x8A, +0x06, 0x93, 0xC9, 0x3C, 0xDC, 0x74, 0xD3, 0xFB, 0x21, 0x1A, 0x8A, 0x80, 0xEC, 0xB3, 0xA1, 0x7D, +0xF1, 0x62, 0xD8, 0xFC, 0xD0, 0xA3, 0xB0, 0xA4, 0xB5, 0x1D, 0xDE, 0x76, 0xE3, 0x7B, 0x41, 0xE0, +0x65, 0x70, 0xF4, 0x1C, 0xE8, 0xA8, 0xB2, 0xD1, 0x3E, 0x03, 0x4A, 0x3F, 0xB8, 0x96, 0x06, 0xA6, +0x5E, 0x45, 0xA6, 0x5A, 0xF8, 0x4A, 0x2E, 0x34, 0x26, 0xE2, 0xDD, 0xF5, 0xF7, 0xAD, 0x7D, 0x06, +0xAE, 0xF6, 0x99, 0x5E, 0x13, 0xF4, 0xAA, 0x30, 0xF6, 0xC0, 0x81, 0x03, 0x37, 0xA0, 0x8A, 0x8C, +0x4D, 0x67, 0x2A, 0xD1, 0x9F, 0xFD, 0xD9, 0xCD, 0xDA, 0xC2, 0x8E, 0xF5, 0x0F, 0xB7, 0x35, 0x35, +0x0F, 0x71, 0x82, 0x08, 0x82, 0x28, 0x21, 0x33, 0x5D, 0x76, 0xB3, 0x2C, 0x13, 0xD0, 0x93, 0x05, +0xD1, 0x27, 0x43, 0xD7, 0xE2, 0x95, 0xF0, 0xB6, 0x1B, 0xAE, 0x81, 0xDC, 0x44, 0x3F, 0x34, 0xB7, +0x37, 0x41, 0xB4, 0x21, 0x86, 0x9E, 0xB1, 0x1F, 0x1D, 0xB0, 0x27, 0xA1, 0xA9, 0x49, 0x85, 0x0D, +0x57, 0xBD, 0x09, 0x96, 0xAC, 0x42, 0x9B, 0x9C, 0x48, 0xA0, 0x94, 0x0B, 0x60, 0x1A, 0x3A, 0xDE, +0xAA, 0x60, 0x5A, 0xA4, 0x9A, 0x4D, 0xE0, 0xF0, 0xB0, 0x98, 0xA6, 0xB3, 0xFE, 0x8C, 0x8B, 0x3F, +0xB2, 0xA2, 0xFE, 0xDE, 0xF4, 0x59, 0xD0, 0xCE, 0xC7, 0xC8, 0x89, 0x83, 0xD7, 0x00, 0xCD, 0xB9, +0x57, 0x4C, 0x31, 0x2A, 0x7A, 0xBF, 0xDF, 0x9D, 0xEE, 0x28, 0xD5, 0xE9, 0x2F, 0xFF, 0xF2, 0xDB, +0xA1, 0xA6, 0xB0, 0xF0, 0xA7, 0x07, 0x0E, 0x6F, 0xFB, 0xD0, 0x83, 0x0F, 0x3D, 0xD8, 0x1E, 0x0C, +0x04, 0x40, 0xAB, 0x96, 0xA1, 0x5A, 0xD5, 0x21, 0x1C, 0x6D, 0x84, 0x8B, 0x2F, 0x7E, 0x23, 0xBC, +0xF1, 0x0D, 0xE7, 0x3B, 0xB9, 0xFC, 0x24, 0x77, 0xD7, 0x8F, 0x7E, 0xC0, 0xAD, 0x59, 0x3B, 0x1F, +0xFA, 0x51, 0xAA, 0x7B, 0x07, 0x46, 0xA1, 0x25, 0x1E, 0x80, 0x78, 0xD4, 0x0F, 0x13, 0x13, 0x05, +0xE0, 0x83, 0x09, 0x38, 0x77, 0xC3, 0x06, 0x90, 0x1D, 0x05, 0xB2, 0xC5, 0x12, 0x4C, 0x8E, 0x4D, +0xBA, 0xA3, 0xC3, 0xC3, 0xDC, 0x8E, 0x7D, 0xFB, 0x40, 0x2B, 0xA7, 0x20, 0x10, 0xE9, 0x86, 0x28, +0xBE, 0x9E, 0xE4, 0x66, 0xF7, 0x77, 0x74, 0x9C, 0xF9, 0x89, 0x87, 0x1E, 0xFA, 0xEF, 0x47, 0xE8, +0xFD, 0xFB, 0xFA, 0xFA, 0xA2, 0x86, 0x61, 0x6C, 0xAA, 0x54, 0x2A, 0x97, 0x9D, 0xEE, 0xA1, 0xD0, +0xAB, 0xC1, 0xD8, 0xEF, 0xE1, 0x8F, 0x8D, 0x2F, 0x04, 0x12, 0x7C, 0xFE, 0xAF, 0x3E, 0x7F, 0x91, +0x1B, 0x68, 0xBA, 0xA3, 0x6A, 0x99, 0x2D, 0xFF, 0xF3, 0x3F, 0x7F, 0xC7, 0x65, 0x30, 0x4C, 0x59, +0xD0, 0xB9, 0x14, 0xAE, 0x7F, 0xEB, 0x5B, 0xE0, 0xAF, 0xFF, 0xE4, 0xA3, 0xE6, 0xFD, 0x0F, 0x3D, +0x2C, 0x7D, 0xFE, 0x3F, 0xFE, 0x09, 0x06, 0x8E, 0x1E, 0x85, 0x1B, 0xAE, 0x5A, 0x0F, 0x93, 0x78, +0xE9, 0x1F, 0xDB, 0xB5, 0x8F, 0x85, 0x36, 0xBA, 0x69, 0xC1, 0xFC, 0x79, 0x0D, 0x30, 0xBF, 0x35, +0x04, 0x3A, 0x3A, 0x57, 0x4F, 0xEE, 0xEA, 0x41, 0x7B, 0x2C, 0x43, 0x73, 0x73, 0x33, 0x5C, 0x74, +0xCE, 0x85, 0x6E, 0x47, 0x6B, 0x1B, 0xB7, 0xE6, 0xE2, 0x8B, 0xA1, 0x9A, 0xAF, 0xC0, 0x7F, 0x7C, +0xF5, 0x5B, 0x50, 0xCC, 0x8F, 0x82, 0x66, 0xF9, 0x21, 0x9E, 0xE8, 0xDC, 0xBD, 0x62, 0xC1, 0xD2, +0x77, 0xDC, 0x7B, 0xEF, 0xE7, 0x0E, 0xD7, 0x3E, 0xDF, 0x06, 0xF4, 0xA8, 0xFF, 0x10, 0x25, 0xF8, +0x03, 0x70, 0x1A, 0xD3, 0x9C, 0x32, 0xB6, 0x26, 0xAD, 0xFF, 0xB8, 0x64, 0xC9, 0x92, 0xDF, 0xB9, +0x68, 0x9F, 0xBD, 0xF5, 0xB3, 0x1B, 0xC0, 0x9C, 0xF8, 0x5C, 0x35, 0xA8, 0x5C, 0xC0, 0xC7, 0x96, +0x73, 0xC5, 0xDC, 0x30, 0xB4, 0xB7, 0xB5, 0xB9, 0x1D, 0x6D, 0x11, 0xE8, 0xEF, 0xED, 0x83, 0x7B, +0xEE, 0xBF, 0x97, 0x3B, 0x78, 0x68, 0x1F, 0x74, 0x34, 0x37, 0x40, 0x43, 0x53, 0x03, 0xE8, 0x96, +0x0B, 0x7D, 0x28, 0xA9, 0x0B, 0xE7, 0x37, 0x42, 0xF7, 0xFC, 0x16, 0x38, 0x78, 0xA0, 0x0F, 0x06, +0xC7, 0x33, 0x68, 0x3D, 0x39, 0x68, 0x8A, 0x07, 0x21, 0x22, 0x05, 0x61, 0x52, 0x2B, 0x43, 0x36, +0x8F, 0x5E, 0x74, 0xA9, 0xC8, 0xEC, 0xF3, 0x92, 0x85, 0x8B, 0xA1, 0xB1, 0xB1, 0x1B, 0x06, 0x93, +0x15, 0xA8, 0x16, 0x47, 0xA0, 0x50, 0x2E, 0x42, 0x63, 0xEB, 0xCA, 0xC7, 0xD6, 0xAD, 0x58, 0xFB, +0x9E, 0xBB, 0xEE, 0xFA, 0xF7, 0xE1, 0xFA, 0x67, 0x39, 0x72, 0xE4, 0xC8, 0x97, 0xD0, 0xE1, 0xBA, +0x9B, 0xE2, 0x69, 0x38, 0x4D, 0x69, 0x4E, 0xBD, 0x62, 0xB4, 0x61, 0xDF, 0xC5, 0x0B, 0xF6, 0x82, +0x92, 0x90, 0xCE, 0x14, 0xCF, 0xE7, 0x5C, 0xFB, 0xC2, 0x92, 0x9D, 0x03, 0x01, 0x46, 0xE1, 0xAC, +0xE5, 0xDD, 0x6E, 0x3A, 0x3D, 0x02, 0x9F, 0xFF, 0xF2, 0xB7, 0xB8, 0xA3, 0x28, 0xA1, 0xE8, 0x3A, +0x61, 0x78, 0xD3, 0x0A, 0xA2, 0xE0, 0x87, 0x91, 0xF1, 0x3C, 0xA4, 0x72, 0x05, 0x98, 0xDF, 0x12, +0x84, 0x95, 0xCB, 0x16, 0x42, 0x22, 0x16, 0x01, 0xB3, 0x94, 0x45, 0x28, 0xD1, 0x80, 0x6C, 0xC9, +0x80, 0xF1, 0x74, 0x09, 0x4A, 0x41, 0x07, 0x82, 0xFE, 0x20, 0x34, 0x27, 0x44, 0x74, 0xC0, 0x44, +0x54, 0xE9, 0x15, 0x38, 0xD2, 0xDB, 0x03, 0xBD, 0x23, 0x69, 0x68, 0x9D, 0xB7, 0x18, 0x24, 0x74, +0xC8, 0x84, 0xAA, 0x88, 0x92, 0x0E, 0x63, 0x99, 0x8C, 0x3F, 0x35, 0xFD, 0xB3, 0x48, 0x92, 0xB4, +0x11, 0x7D, 0x80, 0xEF, 0xE2, 0xAF, 0x9B, 0xE1, 0x34, 0xA5, 0x39, 0x63, 0x2C, 0x49, 0x2B, 0xAA, +0xB8, 0x7E, 0x94, 0xD6, 0xFE, 0x17, 0xBA, 0xFF, 0x88, 0x51, 0xF2, 0xF9, 0x15, 0xD5, 0x35, 0x0A, +0xC8, 0xC2, 0xEC, 0x41, 0xEE, 0xA1, 0x87, 0x37, 0x73, 0xE9, 0xC9, 0x5E, 0x70, 0x8D, 0x0C, 0x04, +0x43, 0x51, 0x64, 0x46, 0x13, 0xAA, 0xD8, 0x0A, 0x0C, 0x8E, 0x8D, 0x42, 0x50, 0x11, 0xE0, 0xEC, +0xA5, 0x51, 0x64, 0x68, 0x08, 0x14, 0xC1, 0x05, 0xB0, 0x2A, 0x28, 0xA5, 0x01, 0x30, 0xAA, 0x11, +0x08, 0x87, 0x0C, 0x88, 0x14, 0x75, 0x18, 0x4B, 0x95, 0x60, 0xAC, 0x50, 0x82, 0x50, 0x20, 0x04, +0x91, 0x48, 0x18, 0xE5, 0xD8, 0x06, 0x87, 0xF7, 0x61, 0xA8, 0x84, 0xF0, 0x23, 0x6A, 0x03, 0xCC, +0x0C, 0x01, 0xA6, 0x84, 0x30, 0x04, 0x32, 0xE3, 0x39, 0xC8, 0x21, 0x8A, 0x01, 0xD5, 0xFA, 0x67, +0xE9, 0xEE, 0xEE, 0xCE, 0x21, 0x68, 0x32, 0x40, 0x6A, 0xF9, 0x74, 0x95, 0xDA, 0xB9, 0x94, 0xD8, +0x8D, 0xE8, 0x98, 0x7C, 0xE9, 0xF7, 0xDD, 0x29, 0xF9, 0x02, 0x79, 0x45, 0x8D, 0xB8, 0xC3, 0x13, +0x7D, 0x9C, 0x56, 0xC4, 0x10, 0x13, 0x99, 0x10, 0x08, 0xB7, 0x81, 0x5B, 0xD6, 0x30, 0xDC, 0xE1, +0x21, 0x97, 0x2D, 0x42, 0xA1, 0x58, 0x86, 0xA8, 0x5F, 0x80, 0xCE, 0xD6, 0x30, 0x04, 0x55, 0x11, +0x99, 0x63, 0x41, 0x72, 0x7C, 0x18, 0xB2, 0x02, 0xB2, 0xCD, 0xB6, 0xC0, 0xC2, 0x1B, 0xCF, 0x39, +0x10, 0xF2, 0xE1, 0xE1, 0x88, 0xA9, 0x28, 0x8A, 0x1A, 0xE4, 0x0B, 0x39, 0xE0, 0x2A, 0x3C, 0x58, +0x18, 0xC4, 0x06, 0xFD, 0xCD, 0x10, 0xB4, 0x51, 0xDA, 0xCB, 0x3A, 0x58, 0xA2, 0x82, 0xDE, 0xB1, +0x02, 0x3E, 0x41, 0x76, 0x4A, 0x9A, 0xED, 0x3C, 0xFF, 0xF3, 0xA0, 0xC4, 0xDE, 0x8D, 0xB7, 0x1B, +0xE0, 0x34, 0x95, 0xDA, 0x39, 0x63, 0x2C, 0xDA, 0xD6, 0xF9, 0x78, 0xFA, 0x7F, 0x2F, 0x2E, 0x3B, +0x51, 0x92, 0x46, 0x06, 0x27, 0xC7, 0x4A, 0x23, 0xC7, 0x76, 0x86, 0x6D, 0xB3, 0x02, 0x0B, 0x9B, +0x82, 0x10, 0x8F, 0x58, 0xB0, 0x13, 0xF1, 0xE1, 0x91, 0x54, 0x01, 0x54, 0x89, 0x83, 0xAE, 0xE6, +0x20, 0x63, 0x6A, 0x24, 0x1C, 0x00, 0x09, 0x59, 0x51, 0x42, 0x06, 0xC9, 0xC8, 0x44, 0xBF, 0x4F, +0x40, 0x79, 0x04, 0xF4, 0x76, 0x55, 0x66, 0x4B, 0xCB, 0x9A, 0x89, 0xE1, 0x8F, 0x0E, 0xBC, 0xC3, +0x41, 0xC5, 0x09, 0x40, 0xA9, 0x6A, 0x62, 0x5C, 0x6B, 0x42, 0x8B, 0x9D, 0x01, 0xCD, 0xB5, 0x20, +0x18, 0x50, 0xC1, 0xE4, 0x7C, 0xC0, 0xE3, 0x93, 0x39, 0xC1, 0x67, 0xCB, 0x6A, 0xE2, 0x77, 0x18, +0x4B, 0x92, 0x8A, 0x71, 0xED, 0x7F, 0xC2, 0x69, 0x4A, 0x73, 0xC2, 0x58, 0x52, 0x69, 0x28, 0x5D, +0x2F, 0x9A, 0xF0, 0x8E, 0x07, 0x23, 0xBD, 0xE3, 0xA5, 0xE4, 0x36, 0x8E, 0xF7, 0x5D, 0x1E, 0x46, +0x10, 0x7F, 0x41, 0xA3, 0x0A, 0xF3, 0x25, 0x64, 0x88, 0xAD, 0x43, 0x6F, 0xD1, 0x07, 0x8D, 0x61, +0x19, 0x1A, 0x22, 0x02, 0x34, 0xE0, 0x7D, 0xAD, 0xE8, 0x1C, 0x35, 0xCB, 0x2A, 0x88, 0x88, 0x46, +0x49, 0x18, 0xEB, 0x06, 0x14, 0x8C, 0x79, 0x79, 0xB2, 0xC2, 0x1C, 0xE8, 0xC8, 0xE1, 0x4C, 0xAE, +0x02, 0x13, 0xE9, 0x0C, 0xE4, 0xD0, 0x03, 0x1E, 0x4F, 0x97, 0x91, 0xF9, 0x0A, 0x84, 0x50, 0xAA, +0xF9, 0x62, 0x01, 0x4C, 0x51, 0x06, 0x41, 0x42, 0xD0, 0xD9, 0xE5, 0x58, 0x9C, 0xEC, 0x72, 0x8E, +0xA6, 0x06, 0xC1, 0x79, 0xA1, 0xCF, 0x84, 0x12, 0xFB, 0xE8, 0xE9, 0xAA, 0x8E, 0xE7, 0x84, 0xB1, +0x04, 0xF0, 0xE3, 0x8F, 0xBB, 0x5F, 0xEC, 0x31, 0x31, 0x45, 0x1D, 0x2F, 0x09, 0xC6, 0xCE, 0xC5, +0x5D, 0x1D, 0x97, 0x27, 0x22, 0x12, 0x84, 0x85, 0x32, 0x4A, 0x5F, 0x02, 0x2E, 0xEA, 0xE2, 0x60, +0x99, 0x8F, 0x83, 0xDF, 0xEC, 0x1A, 0x81, 0x64, 0x9E, 0x0C, 0x70, 0x00, 0xF4, 0x72, 0x05, 0x32, +0xC1, 0x0A, 0xB4, 0x27, 0xC2, 0x70, 0xD1, 0xF2, 0x26, 0x50, 0x50, 0x9A, 0x29, 0xE4, 0xE9, 0x99, +0xC8, 0xC3, 0x2F, 0xB6, 0x1C, 0x86, 0x81, 0xB1, 0x0C, 0xBD, 0x2B, 0xAA, 0x5E, 0x11, 0x56, 0xC6, +0xFD, 0x30, 0x86, 0x92, 0x3D, 0x59, 0xB5, 0xA1, 0xCD, 0xAF, 0x00, 0x6F, 0xF2, 0xA8, 0xAE, 0x11, +0x9A, 0x24, 0xF5, 0x6D, 0x95, 0x41, 0x09, 0xBA, 0xDB, 0xB6, 0x9F, 0x8D, 0xF6, 0xF5, 0xBE, 0xDF, +0xFD, 0x4C, 0x35, 0x75, 0x4C, 0x9F, 0x7D, 0x33, 0x9C, 0x66, 0x34, 0x57, 0xAA, 0x78, 0x43, 0xB5, +0x5A, 0xFD, 0xDE, 0x8B, 0x3D, 0xA0, 0xE8, 0xD3, 0xF2, 0x8B, 0x17, 0x2C, 0x18, 0xE2, 0xEC, 0x9C, +0xCB, 0xB9, 0x3A, 0x94, 0x73, 0x15, 0xAE, 0x5A, 0x9C, 0x80, 0x60, 0xB3, 0x1F, 0x0E, 0xF7, 0x0F, +0x23, 0x98, 0x50, 0x86, 0x37, 0xAC, 0x9A, 0x0F, 0x59, 0x5B, 0xC0, 0xF8, 0x35, 0x0F, 0xFB, 0x7B, +0xD2, 0x98, 0x7F, 0xF5, 0xC1, 0x05, 0xCB, 0xBB, 0xC1, 0xEF, 0x57, 0x99, 0xBD, 0x35, 0xD0, 0xD1, +0xCA, 0x65, 0xCA, 0xD0, 0x1C, 0xF4, 0xC3, 0xCA, 0x85, 0xAD, 0xA0, 0x22, 0x44, 0x21, 0x57, 0x52, +0xBC, 0x95, 0xCF, 0xC1, 0x33, 0xE3, 0x55, 0xE8, 0x31, 0xD1, 0x43, 0x96, 0x1D, 0x26, 0xDD, 0x68, +0x1B, 0xC0, 0xD2, 0x8A, 0xD0, 0x14, 0x4B, 0x64, 0x8E, 0x6C, 0xDC, 0xF8, 0x82, 0x12, 0xAB, 0x28, +0xCA, 0x2E, 0xF4, 0x0B, 0xFE, 0x10, 0x4E, 0x43, 0x9A, 0x13, 0xC6, 0xA2, 0x37, 0x1C, 0x79, 0x29, +0x24, 0xE7, 0xDE, 0xEF, 0xFC, 0x55, 0xF1, 0xCB, 0xFF, 0xF6, 0xE3, 0x3D, 0x85, 0xEC, 0x50, 0x1A, +0xC1, 0x7F, 0x0C, 0x52, 0x24, 0x48, 0x9B, 0x02, 0xEC, 0xCF, 0xEB, 0x10, 0xB5, 0x4D, 0xF8, 0xE2, +0x47, 0x2F, 0x83, 0xD1, 0xAC, 0x06, 0x15, 0x97, 0x3E, 0x72, 0x3B, 0x8C, 0x8F, 0x4C, 0x22, 0xA0, +0x6F, 0xE2, 0x17, 0xB0, 0xC0, 0xC1, 0x0C, 0x0E, 0x8F, 0x8C, 0x6A, 0x50, 0x78, 0x78, 0xDF, 0xF9, +0x5D, 0x50, 0x04, 0xD5, 0x7D, 0xAA, 0x3F, 0xC3, 0x3D, 0xBD, 0xFF, 0x08, 0xAF, 0xE0, 0x21, 0x69, +0x46, 0xBB, 0x6A, 0xA2, 0x8E, 0xB6, 0xC3, 0x09, 0x8C, 0x73, 0x5D, 0x90, 0x51, 0x5A, 0x89, 0xBB, +0x3E, 0x7C, 0xA9, 0x7C, 0x3E, 0xF7, 0x7B, 0x63, 0x79, 0xF2, 0x8E, 0x31, 0xA6, 0xED, 0x82, 0xD3, +0x90, 0x4E, 0xAD, 0xD2, 0x18, 0x91, 0xD7, 0x79, 0xC1, 0xD6, 0xC3, 0x41, 0x8E, 0x1B, 0x2F, 0x9B, +0x50, 0xD2, 0x75, 0x04, 0xF2, 0x35, 0x10, 0xB2, 0x29, 0xF8, 0xC9, 0xD3, 0xC3, 0xB0, 0xE9, 0xC8, +0x28, 0x0C, 0xF4, 0x8D, 0x20, 0x06, 0x1C, 0x85, 0xB3, 0xBA, 0x5B, 0xE1, 0xDC, 0x05, 0x51, 0xF4, +0x96, 0xF3, 0xE0, 0x57, 0xD1, 0xBB, 0x45, 0x0C, 0xB9, 0x98, 0x2B, 0x42, 0x19, 0x19, 0xB8, 0xB9, +0x6F, 0x9C, 0xBB, 0x77, 0xCB, 0x0E, 0x8C, 0x87, 0x5D, 0xE8, 0x68, 0x6F, 0x81, 0xA6, 0xD5, 0xE7, +0xC3, 0x81, 0xBD, 0x7B, 0xA1, 0x2B, 0x24, 0x42, 0x5A, 0x97, 0x51, 0xC5, 0x22, 0x93, 0x5D, 0x87, +0x79, 0xDE, 0xBA, 0x2D, 0xC4, 0x5F, 0xEC, 0x23, 0xA1, 0x2A, 0x3E, 0x2D, 0xA1, 0xC5, 0x39, 0x49, +0x02, 0xA0, 0xA7, 0x7A, 0x62, 0x08, 0x97, 0x18, 0x2A, 0x60, 0x54, 0x5A, 0xA8, 0xEA, 0x1C, 0x04, +0xFC, 0x7E, 0x68, 0x6E, 0x8A, 0x41, 0x9C, 0x37, 0x20, 0x55, 0x45, 0x7B, 0xB9, 0x72, 0x0D, 0x2C, +0x58, 0xB3, 0x02, 0x26, 0xAA, 0x55, 0x38, 0x32, 0x36, 0x01, 0x47, 0xD1, 0x6E, 0x56, 0x0C, 0x07, +0xA2, 0xE1, 0x20, 0xA8, 0x8A, 0x0F, 0x4A, 0x8E, 0x8F, 0x3C, 0x6F, 0xE4, 0x95, 0x02, 0x0D, 0xAD, +0x09, 0x98, 0xDF, 0x10, 0x42, 0x87, 0xCB, 0x0F, 0xDD, 0x54, 0x6D, 0x61, 0x26, 0xE1, 0xE6, 0xB5, +0x2D, 0xB0, 0x18, 0xFF, 0x66, 0xD9, 0x94, 0x08, 0x70, 0xC0, 0x72, 0x6C, 0x28, 0x6A, 0xC6, 0x4B, +0x7E, 0x24, 0x64, 0x6C, 0x14, 0x4E, 0x43, 0x3A, 0xB5, 0x24, 0xD6, 0x2A, 0x86, 0xF3, 0x25, 0x29, +0x94, 0xCA, 0x95, 0xDC, 0x44, 0x58, 0xE2, 0xFC, 0x8A, 0x1F, 0x16, 0xB4, 0x37, 0xC0, 0x3B, 0xD6, +0x2F, 0x86, 0x2D, 0xA3, 0x03, 0x10, 0x12, 0x1D, 0x58, 0xD8, 0x18, 0x85, 0x68, 0x44, 0x81, 0x0D, +0x67, 0xAF, 0x82, 0x06, 0xC0, 0xC4, 0xBA, 0xE9, 0xC0, 0xB6, 0x5D, 0x47, 0x08, 0xA3, 0x00, 0xD9, +0xD4, 0xA0, 0x19, 0x3D, 0xE6, 0x0D, 0xED, 0xAD, 0xD0, 0xAD, 0x18, 0x30, 0x86, 0xE9, 0xBD, 0x96, +0x58, 0x00, 0x9A, 0xFC, 0x12, 0xB4, 0xE0, 0x73, 0x7E, 0xBD, 0x6F, 0x0C, 0x3D, 0x69, 0x0E, 0x0C, +0x7C, 0x0E, 0xE2, 0x13, 0x2C, 0x4F, 0xFB, 0x5A, 0xA5, 0x53, 0x8A, 0xB1, 0x7D, 0x43, 0x85, 0xAA, +0x59, 0xCA, 0x54, 0xCB, 0xA5, 0x0A, 0x17, 0xC0, 0xF4, 0x9A, 0xA8, 0x4A, 0x10, 0x69, 0x88, 0xC0, +0xD9, 0x17, 0x9D, 0x07, 0x57, 0x06, 0x44, 0xD8, 0xFE, 0xEC, 0x0E, 0x78, 0xDB, 0x1F, 0xBF, 0x11, +0x55, 0xAF, 0x0F, 0x82, 0x18, 0xF6, 0x34, 0x35, 0xAD, 0x02, 0x35, 0x18, 0x84, 0x73, 0x90, 0x41, +0xE8, 0x9C, 0x41, 0x0E, 0x43, 0x9C, 0x50, 0x30, 0x00, 0xE8, 0x0C, 0x83, 0xB8, 0xB2, 0x11, 0xC6, +0xCB, 0x28, 0x91, 0x28, 0xA1, 0x79, 0x54, 0xD1, 0x99, 0x74, 0x1E, 0xC8, 0xB4, 0xCA, 0x88, 0x54, +0xE9, 0x06, 0x93, 0x44, 0x78, 0x2D, 0xD3, 0x5C, 0x85, 0x3B, 0xD9, 0x13, 0x79, 0x1C, 0xCF, 0xA3, +0xF1, 0x03, 0xD7, 0x26, 0x47, 0xA8, 0xA0, 0xE5, 0x20, 0x88, 0x3F, 0x15, 0x3F, 0x0F, 0x82, 0x63, +0x20, 0xE3, 0x50, 0xED, 0x36, 0xB6, 0xC0, 0x78, 0x2A, 0x89, 0xF7, 0x99, 0x20, 0x5B, 0x05, 0xD8, +0x37, 0x82, 0x39, 0x56, 0x1E, 0x19, 0x65, 0xBB, 0x70, 0xB4, 0xE7, 0x28, 0x64, 0x8A, 0x06, 0x88, +0x1C, 0xBA, 0x5D, 0x01, 0x0C, 0x7F, 0x0C, 0x03, 0x7C, 0x9A, 0x03, 0x55, 0xE4, 0x62, 0x08, 0xF3, +0xF4, 0x2D, 0x51, 0x05, 0x24, 0xCC, 0xC3, 0xFA, 0xF1, 0x35, 0x4B, 0x40, 0x08, 0x15, 0x03, 0x4D, +0x4E, 0xE0, 0x33, 0xBD, 0x6A, 0xB5, 0x08, 0x2F, 0x8B, 0xE6, 0x8A, 0xB1, 0x27, 0x64, 0xA7, 0xC2, +0xB2, 0x53, 0xCC, 0x0A, 0xBE, 0xA2, 0x4F, 0x8D, 0xBA, 0x01, 0xAE, 0xCC, 0x59, 0x4E, 0x95, 0x79, +0xB1, 0xAE, 0x65, 0xC0, 0xD6, 0x1D, 0x7B, 0xE0, 0xE1, 0x9D, 0xFD, 0x50, 0x45, 0x89, 0x0B, 0x84, +0xFC, 0x0C, 0x9C, 0x50, 0x64, 0x11, 0x9A, 0xE7, 0xCD, 0x87, 0x86, 0x79, 0x98, 0x9A, 0xC3, 0x98, +0x76, 0xCB, 0xD3, 0x3B, 0x21, 0x99, 0x49, 0x41, 0x38, 0x18, 0x81, 0xA6, 0x50, 0x18, 0x94, 0x46, +0x19, 0x32, 0x99, 0x22, 0xD8, 0x5A, 0x89, 0x0C, 0x3D, 0xDE, 0x5C, 0xF0, 0x61, 0x0C, 0x4B, 0xBC, +0x62, 0x4C, 0x56, 0x64, 0x78, 0xAD, 0xD2, 0x9C, 0x30, 0x16, 0x6D, 0xD9, 0x00, 0xD5, 0x0C, 0xBF, +0x54, 0xC8, 0xD3, 0x93, 0x11, 0xB4, 0x79, 0xC1, 0x46, 0x2D, 0x26, 0x87, 0x31, 0x60, 0x29, 0x43, +0x39, 0x9F, 0x85, 0x6A, 0xB9, 0x8C, 0x2A, 0x36, 0x0D, 0xD5, 0x42, 0x1E, 0x2E, 0x3F, 0x7B, 0x31, +0xB4, 0x2F, 0xE8, 0x42, 0x48, 0x31, 0x0A, 0xA2, 0x24, 0x81, 0x2A, 0xBA, 0xE0, 0x47, 0x90, 0x5F, +0x0C, 0x12, 0x74, 0x64, 0x43, 0x60, 0xBC, 0x1F, 0x8A, 0x21, 0xB4, 0xC3, 0x67, 0xAE, 0x44, 0xEC, +0x59, 0x61, 0x15, 0x13, 0x55, 0xCC, 0xCD, 0x66, 0xD2, 0x05, 0x18, 0x9F, 0xCC, 0xC0, 0xD1, 0x6C, +0x12, 0xD5, 0x3B, 0x42, 0x89, 0x28, 0xFD, 0x02, 0x32, 0x98, 0x72, 0xB8, 0x2F, 0x46, 0x94, 0x78, +0xD7, 0x75, 0x3D, 0x0F, 0xA7, 0x21, 0xCD, 0x95, 0xC4, 0xEE, 0xC2, 0x60, 0xFF, 0x25, 0x11, 0x1C, +0x7F, 0x28, 0x64, 0xB6, 0x28, 0xA3, 0x56, 0x45, 0x28, 0x73, 0x7A, 0x55, 0x62, 0x50, 0x60, 0xA5, +0x92, 0xC1, 0x30, 0x26, 0x07, 0xE7, 0x5D, 0x78, 0x0E, 0x2B, 0x0C, 0x77, 0x10, 0xFF, 0xF3, 0x08, +0x59, 0x89, 0xEA, 0xF6, 0xD1, 0x6F, 0xDF, 0x01, 0x85, 0x54, 0x1E, 0x33, 0x3B, 0x55, 0x38, 0x9A, +0x29, 0xC1, 0x82, 0x05, 0x6D, 0xD0, 0x8E, 0x80, 0xBF, 0x6E, 0x14, 0xC1, 0x44, 0xC6, 0x15, 0x4A, +0x1A, 0x14, 0x31, 0x91, 0x50, 0xB6, 0x38, 0x14, 0x58, 0x1E, 0x64, 0x4C, 0xE1, 0xA9, 0x32, 0x3A, +0x50, 0xE8, 0x51, 0xCB, 0x02, 0x55, 0x3F, 0xFD, 0x7E, 0x42, 0xBB, 0x4D, 0xAD, 0x25, 0x9B, 0xE1, +0x34, 0xA4, 0x39, 0x31, 0x20, 0x78, 0x71, 0x76, 0xD5, 0x32, 0x25, 0x2F, 0x4A, 0x0B, 0x9B, 0x02, +0x7A, 0x4B, 0x53, 0xB3, 0xDE, 0x84, 0x12, 0x09, 0x68, 0x2B, 0x39, 0x8E, 0x87, 0x64, 0xAE, 0x0C, +0xA3, 0x63, 0x29, 0x28, 0xA2, 0x8A, 0x4D, 0x97, 0xAB, 0xAC, 0xEE, 0x89, 0x50, 0x26, 0x22, 0x25, +0x92, 0x80, 0x73, 0xDF, 0x76, 0x3D, 0x2C, 0xD9, 0xB0, 0x1E, 0xF8, 0x86, 0x04, 0xDC, 0xF0, 0xDE, +0x37, 0xC1, 0xFA, 0x6B, 0x2E, 0x45, 0x7C, 0xD9, 0x81, 0x8A, 0xA6, 0xA3, 0x7D, 0x35, 0x31, 0x2D, +0xE7, 0x42, 0xC1, 0xE2, 0x21, 0x5D, 0xC1, 0xB8, 0x18, 0x6D, 0xB3, 0x84, 0x5E, 0xB1, 0x80, 0x6A, +0x98, 0x7C, 0x27, 0x57, 0x50, 0x29, 0x9E, 0xF5, 0xC3, 0xC6, 0x8D, 0x2F, 0x78, 0x1D, 0xF0, 0x40, +0xDE, 0x40, 0x87, 0x12, 0x4E, 0x43, 0x9A, 0x13, 0xC6, 0x12, 0x88, 0x8E, 0x8E, 0xCA, 0xA5, 0x27, +0xF2, 0x58, 0xB2, 0x9D, 0x1C, 0x19, 0x41, 0xDE, 0x8B, 0x4B, 0x2B, 0xC8, 0x9C, 0x89, 0x6C, 0x05, +0x4A, 0x86, 0xCD, 0xF0, 0x60, 0xC7, 0x44, 0x66, 0xE1, 0x8D, 0x42, 0x15, 0xB2, 0xBD, 0x36, 0xFE, +0x1E, 0x0C, 0xA9, 0xB0, 0xE2, 0xDC, 0x55, 0xC8, 0x24, 0x0E, 0xD5, 0x77, 0x81, 0xDD, 0xAF, 0x55, +0x0D, 0x86, 0x4C, 0xE5, 0x35, 0x1B, 0xB2, 0x45, 0x44, 0xAC, 0xCA, 0x5E, 0xBA, 0x95, 0x12, 0x74, +0x24, 0xA5, 0xA8, 0x89, 0xD1, 0x81, 0xC2, 0xDF, 0x9C, 0xF2, 0xC2, 0x15, 0x9B, 0x27, 0xFD, 0x2F, +0xF4, 0x59, 0xD0, 0x71, 0x5A, 0xFB, 0x7A, 0x3E, 0xF6, 0x25, 0xE8, 0x44, 0x33, 0x25, 0xBA, 0xAE, +0xB9, 0x94, 0x5B, 0x55, 0x25, 0x15, 0xAA, 0x15, 0x1F, 0x14, 0xA9, 0x22, 0x42, 0x2A, 0x41, 0x06, +0x33, 0x35, 0x01, 0x0C, 0x65, 0x88, 0x44, 0x0A, 0x6F, 0x2A, 0x15, 0x48, 0x8D, 0x1C, 0x86, 0x63, +0x3B, 0xF6, 0x42, 0x19, 0xC1, 0x06, 0x0E, 0x6D, 0x6E, 0x25, 0x8D, 0x29, 0x73, 0x04, 0x1D, 0xDC, +0x60, 0x08, 0x3A, 0x3B, 0x5A, 0xC0, 0xA7, 0xFA, 0xA1, 0x68, 0xB8, 0x4C, 0x52, 0x89, 0xC9, 0x9A, +0xE9, 0x82, 0x21, 0xCB, 0xAC, 0xEA, 0xB1, 0x4E, 0x22, 0x67, 0x74, 0xB8, 0xC5, 0x42, 0x08, 0x7F, +0x2D, 0x4D, 0xFF, 0x1C, 0x08, 0x25, 0x92, 0xE9, 0xE8, 0x87, 0xD3, 0x94, 0xE6, 0x92, 0xB1, 0x2F, +0x99, 0xB8, 0xCE, 0x66, 0x4B, 0xE2, 0xFC, 0x36, 0x45, 0x0A, 0xF8, 0x6D, 0x77, 0x24, 0x9D, 0xE6, +0x74, 0xD4, 0xB8, 0x0E, 0x8A, 0x56, 0xA1, 0x88, 0x69, 0xB8, 0x89, 0x34, 0x28, 0x3E, 0x89, 0xE5, +0x62, 0x09, 0x3E, 0x4C, 0x8D, 0x4D, 0xC2, 0x13, 0x9B, 0xB6, 0x42, 0xB9, 0x62, 0x00, 0xA7, 0x28, +0x50, 0x45, 0x66, 0x49, 0xE5, 0x22, 0xE8, 0x12, 0xA2, 0x50, 0xA5, 0x1C, 0x84, 0x42, 0x41, 0x04, +0x34, 0x14, 0xCC, 0xD9, 0x56, 0x59, 0x95, 0xA3, 0x81, 0xF6, 0x36, 0x6F, 0xCA, 0x60, 0xF1, 0x12, +0x3A, 0x4E, 0x0E, 0x7A, 0xD4, 0x04, 0x54, 0x20, 0xC6, 0x8C, 0xC9, 0xF6, 0x17, 0xB2, 0xB3, 0xA8, +0x11, 0x3E, 0x89, 0x3F, 0x36, 0xC2, 0x69, 0x4A, 0x73, 0xC6, 0x58, 0x92, 0xD4, 0xA3, 0x47, 0x8F, +0x7E, 0xE2, 0xC5, 0xBC, 0x63, 0x2B, 0x61, 0x1B, 0xBA, 0x6E, 0xEA, 0xE4, 0xB1, 0x86, 0x23, 0x8A, +0xEB, 0x57, 0x3B, 0x20, 0x3B, 0xBE, 0x60, 0x4F, 0xFF, 0xE8, 0x20, 0x17, 0x3A, 0xD4, 0xBF, 0xC6, +0x44, 0xA7, 0x68, 0x7E, 0x47, 0x13, 0x84, 0x31, 0xDC, 0xF1, 0x47, 0xC2, 0x70, 0xC9, 0x1B, 0x2E, +0x80, 0x30, 0x66, 0xDC, 0x8B, 0xE8, 0x20, 0x7D, 0x6F, 0xF7, 0x04, 0x9C, 0xB3, 0xAC, 0x1B, 0xE6, +0x87, 0x05, 0x48, 0x62, 0x3C, 0x2B, 0x48, 0x18, 0xEA, 0x58, 0x18, 0xE3, 0x62, 0x1C, 0x9B, 0x2B, +0xA0, 0x2A, 0x37, 0x01, 0xC6, 0x0C, 0x11, 0x1F, 0x6F, 0x63, 0x7A, 0x81, 0x3A, 0x04, 0x78, 0x88, +0x60, 0x42, 0x21, 0x6B, 0x97, 0xD4, 0x50, 0x74, 0x81, 0x3A, 0xFD, 0x73, 0x50, 0x19, 0x0F, 0xB5, +0x70, 0x2E, 0x5B, 0xB6, 0xAC, 0x1F, 0x4E, 0x53, 0x9A, 0xD3, 0xE8, 0x1B, 0x9D, 0x9E, 0x2F, 0xAB, +0xAA, 0xFA, 0x7B, 0xAB, 0xED, 0xB7, 0xDD, 0xDF, 0x8B, 0x58, 0x03, 0x97, 0xE2, 0x05, 0xD1, 0x08, +0x8A, 0x0A, 0x17, 0x51, 0x34, 0x2E, 0x1C, 0x6B, 0xDC, 0x93, 0x0C, 0xAC, 0xFC, 0xE6, 0x44, 0xAA, +0x58, 0xCA, 0xE7, 0x31, 0x04, 0xAA, 0x54, 0x51, 0x9A, 0x1C, 0x88, 0x44, 0x42, 0xD0, 0xD2, 0x9C, +0x40, 0x9B, 0x0B, 0x30, 0x99, 0x2A, 0xC3, 0xC0, 0x60, 0x16, 0xFA, 0xC7, 0x72, 0xE8, 0x6C, 0x55, +0x30, 0x79, 0xCE, 0x33, 0x3B, 0x5B, 0xD1, 0xA8, 0xC8, 0xDC, 0x00, 0x43, 0x17, 0x61, 0xA2, 0xC2, +0x43, 0xAE, 0x98, 0xC6, 0xD8, 0x55, 0x64, 0x95, 0x8C, 0xCC, 0xC8, 0x22, 0x71, 0xB6, 0x21, 0xC7, +0x55, 0xFF, 0xF3, 0x03, 0x5A, 0x2A, 0x66, 0x7B, 0x3F, 0x9C, 0xC6, 0x34, 0xA7, 0x8C, 0x25, 0xA9, +0x7D, 0xB1, 0x6A, 0xFB, 0xCD, 0x9B, 0x37, 0x5A, 0x25, 0x57, 0x1E, 0xC0, 0x4C, 0x69, 0xC6, 0xE6, +0x74, 0x74, 0x7B, 0x75, 0xBC, 0xF0, 0x95, 0xCE, 0x04, 0x5F, 0x78, 0xF6, 0x98, 0x6F, 0xC1, 0x2D, +0x3D, 0xA3, 0x39, 0x98, 0x4C, 0xE6, 0x90, 0x59, 0x3A, 0x7B, 0xBC, 0x49, 0x5D, 0x02, 0xC8, 0x44, +0x47, 0x10, 0x61, 0x3C, 0x9B, 0x86, 0x51, 0x0C, 0x6B, 0xE2, 0x4D, 0x0D, 0x10, 0x6F, 0xF0, 0xF0, +0x90, 0x6C, 0x2A, 0x05, 0xC3, 0xD9, 0x2A, 0x8C, 0x5A, 0x41, 0x38, 0x34, 0x9A, 0x84, 0xA6, 0xD6, +0x55, 0x6E, 0x22, 0xD6, 0xE6, 0x0A, 0x18, 0x2A, 0x11, 0xF2, 0x24, 0x4A, 0x68, 0xCB, 0x45, 0x5E, +0x9D, 0x18, 0x1F, 0x99, 0x92, 0xD8, 0x5A, 0x89, 0xAC, 0x7B, 0xBA, 0x37, 0x47, 0xCF, 0x39, 0x5E, +0x26, 0xCB, 0xF2, 0x27, 0xD1, 0xDB, 0xFC, 0x4F, 0x52, 0xC9, 0x2F, 0x74, 0xBF, 0x55, 0xC9, 0x99, +0x18, 0xA6, 0x30, 0xB3, 0x27, 0x20, 0xD3, 0x04, 0x53, 0x9F, 0x2F, 0x39, 0x95, 0xC8, 0xC4, 0xC2, +0x4B, 0xEF, 0x1E, 0xD3, 0xA4, 0xFE, 0xA3, 0xFD, 0x49, 0x0C, 0x7F, 0xD2, 0x2C, 0x46, 0x25, 0xAF, +0xB9, 0xB1, 0xAB, 0x03, 0x96, 0xAC, 0x58, 0x80, 0x40, 0x85, 0x4C, 0x6E, 0x2E, 0x28, 0x98, 0x64, +0xA7, 0xBF, 0xE7, 0x4B, 0x55, 0x18, 0xCF, 0xA0, 0x83, 0x85, 0x31, 0x6E, 0xA5, 0x3C, 0x82, 0xAA, +0x19, 0xF3, 0xAF, 0xD1, 0x05, 0x1C, 0xC6, 0xB2, 0x1C, 0x8F, 0xB1, 0x8E, 0x8D, 0x61, 0x10, 0x1D, +0x0C, 0xCB, 0x31, 0x02, 0x66, 0x25, 0xC5, 0xBC, 0x32, 0xFA, 0x4C, 0xD4, 0xA5, 0x40, 0x3D, 0xBA, +0x70, 0x9A, 0xD3, 0x9C, 0x33, 0x96, 0x92, 0xD7, 0x98, 0xC6, 0xFB, 0xD3, 0xDF, 0xA7, 0x92, 0xED, +0xAA, 0x4E, 0x3D, 0xCA, 0x5C, 0x40, 0x0D, 0xBB, 0x08, 0x1C, 0x41, 0xB8, 0x81, 0xEF, 0x6A, 0xE9, +0x0C, 0xB4, 0x1F, 0xB8, 0x73, 0xA3, 0x61, 0x85, 0xE6, 0x3F, 0xB8, 0x73, 0x20, 0x0B, 0x77, 0x6F, +0xDE, 0x0B, 0xB7, 0xDF, 0xF9, 0x08, 0xEC, 0xDD, 0x73, 0x18, 0x26, 0x46, 0x26, 0xD0, 0x43, 0xD6, +0xE0, 0x4F, 0xAF, 0x3E, 0x1B, 0x2E, 0x5E, 0x3C, 0x0F, 0x06, 0x87, 0x26, 0xE0, 0xB1, 0x67, 0x0E, +0xC2, 0xAF, 0xB6, 0x0E, 0xB8, 0x83, 0xC3, 0x93, 0xA0, 0xE7, 0x73, 0x18, 0x12, 0xD9, 0x20, 0xFA, +0xA2, 0x10, 0x8F, 0x27, 0x26, 0x30, 0x78, 0xCD, 0x53, 0x27, 0x9E, 0x86, 0xE1, 0x13, 0x87, 0xD6, +0xD6, 0xE4, 0x02, 0x21, 0xCD, 0x91, 0x62, 0x14, 0xCB, 0x52, 0x37, 0x3D, 0x99, 0x8B, 0xD7, 0xC2, +0x28, 0x83, 0x57, 0x25, 0xBB, 0x53, 0xAB, 0x00, 0xDC, 0xF0, 0x3B, 0xAD, 0x8B, 0x78, 0x71, 0x75, +0x4D, 0x8C, 0x3B, 0xA2, 0x5F, 0xD1, 0xAB, 0xE3, 0x9C, 0x56, 0xB1, 0x30, 0xA6, 0x45, 0x5B, 0x69, +0x89, 0x1D, 0x74, 0xB7, 0x20, 0x29, 0x03, 0x82, 0xE8, 0x87, 0x6C, 0x21, 0x03, 0xCF, 0xEE, 0xE8, +0x81, 0x09, 0x84, 0x0A, 0xE7, 0xB7, 0x8F, 0x61, 0xB6, 0x47, 0x06, 0x3F, 0xC2, 0x48, 0xE9, 0x42, +0x15, 0xFA, 0x50, 0x5D, 0xF7, 0x8F, 0xE7, 0xC1, 0xB1, 0x4C, 0xCE, 0xA7, 0x48, 0x18, 0x17, 0x4B, +0x60, 0xA1, 0x3D, 0x35, 0x11, 0xC1, 0x2A, 0x15, 0xF3, 0x69, 0xC9, 0x72, 0xC3, 0x82, 0xEB, 0x44, +0x08, 0xC4, 0x70, 0x04, 0x4C, 0xDF, 0x19, 0x08, 0x59, 0x08, 0x52, 0xE3, 0xEE, 0x1B, 0xDF, 0xFE, +0x59, 0xB4, 0xAB, 0xF9, 0x15, 0x2B, 0x56, 0xDC, 0x0D, 0xAF, 0x01, 0x7A, 0xD5, 0xD2, 0x76, 0x2F, +0xD4, 0x97, 0x7A, 0xD6, 0x36, 0x50, 0x9C, 0xB3, 0xA3, 0xCB, 0x03, 0x1D, 0xCB, 0xA3, 0xFB, 0x9F, +0xDA, 0x8C, 0x92, 0x66, 0x20, 0x04, 0xC8, 0xA3, 0x9A, 0x8D, 0x30, 0x1C, 0x31, 0xE0, 0x48, 0xC3, +0x52, 0x20, 0x58, 0xD6, 0xDD, 0x72, 0x00, 0x30, 0x37, 0x3B, 0x36, 0x91, 0x85, 0xB1, 0xD1, 0x14, +0x98, 0xA8, 0x78, 0x58, 0x68, 0x4A, 0x25, 0x32, 0x98, 0x44, 0x97, 0x30, 0x1C, 0x92, 0x02, 0x12, +0x0B, 0x8F, 0x6C, 0x10, 0x40, 0x45, 0x89, 0xE5, 0x90, 0xB1, 0xA3, 0xC7, 0x9E, 0x58, 0x11, 0x5F, +0xD0, 0x0A, 0x8E, 0x28, 0x80, 0x56, 0xB1, 0x21, 0x84, 0xE9, 0x3B, 0xBD, 0x9A, 0x56, 0xFE, 0xFE, +0xD3, 0xB7, 0xFE, 0xA1, 0x69, 0x1A, 0xCF, 0xAE, 0x5D, 0xBB, 0xF2, 0xEF, 0xE0, 0x35, 0x42, 0xAF, +0x6A, 0x4E, 0xEA, 0xF9, 0x7D, 0xA9, 0x4B, 0x3B, 0x9A, 0x7C, 0x92, 0xA0, 0xF8, 0x4C, 0xAD, 0xCA, +0xA5, 0x31, 0x2B, 0x33, 0x86, 0x5E, 0xAE, 0x68, 0x70, 0x98, 0x10, 0x10, 0x63, 0x74, 0xBF, 0x5F, +0x71, 0xB2, 0x82, 0xC8, 0x9B, 0xC8, 0x17, 0x54, 0xAD, 0x22, 0x44, 0x64, 0x17, 0x53, 0x72, 0x2E, +0x44, 0x45, 0x1B, 0x62, 0x78, 0x8B, 0xCB, 0x0E, 0xC4, 0x30, 0x6F, 0x1B, 0x0E, 0x29, 0x10, 0x43, +0x34, 0x4A, 0xC4, 0x90, 0x86, 0xF0, 0x60, 0x0E, 0xD1, 0x2C, 0x41, 0x09, 0x42, 0x25, 0x37, 0x80, +0x29, 0xC0, 0x3C, 0x89, 0x3E, 0xFE, 0x91, 0x67, 0xE8, 0xD5, 0x1F, 0xBC, 0xE7, 0x46, 0xD0, 0x74, +0x23, 0xFC, 0xBE, 0x8F, 0x7F, 0xF3, 0x1B, 0xF0, 0x1A, 0xA2, 0x57, 0x3D, 0xD9, 0x38, 0x8D, 0xB9, +0xDF, 0xBD, 0xF4, 0xDC, 0xA5, 0x71, 0x04, 0xFD, 0xB9, 0xDE, 0xA3, 0x7B, 0x1D, 0xCB, 0xD6, 0xA1, +0x54, 0x48, 0x41, 0x85, 0xCA, 0x58, 0x44, 0xCE, 0x47, 0x8F, 0x6D, 0x6F, 0x0D, 0x54, 0xE3, 0x51, +0xD5, 0x0E, 0x05, 0x30, 0xD1, 0xEE, 0xF7, 0x81, 0x8C, 0x48, 0x54, 0xCB, 0xBC, 0x26, 0x68, 0xEB, +0xEE, 0x80, 0xD6, 0x88, 0x0F, 0x12, 0x18, 0xFE, 0x34, 0x44, 0x54, 0x68, 0x8E, 0x87, 0x21, 0x11, +0x54, 0x21, 0x84, 0x8F, 0xF1, 0xE3, 0x01, 0xF0, 0x0B, 0x96, 0x2B, 0x88, 0x32, 0xE8, 0x96, 0x06, +0x55, 0xBB, 0x0C, 0x01, 0x04, 0x27, 0x54, 0x9F, 0x0F, 0x6E, 0xF9, 0xF8, 0xC7, 0x40, 0x47, 0x04, +0xEB, 0xDF, 0xFE, 0xE5, 0xBF, 0xBA, 0xB5, 0xEC, 0xC0, 0x0F, 0xD6, 0x5D, 0xF4, 0xD1, 0xD7, 0x4C, +0xE3, 0xF3, 0x29, 0x51, 0x41, 0x41, 0xCC, 0x25, 0x08, 0xEF, 0x92, 0x73, 0xDB, 0xBE, 0xFF, 0x50, +0x39, 0x1F, 0x3A, 0x72, 0x78, 0x8C, 0xF7, 0x49, 0x28, 0x75, 0xB1, 0x04, 0xF0, 0x28, 0x71, 0xB9, +0x5C, 0x99, 0x79, 0xAD, 0x81, 0x50, 0x30, 0xA2, 0xF8, 0x78, 0xD9, 0x40, 0x91, 0x0D, 0x28, 0x02, +0x84, 0x50, 0x1C, 0x83, 0xC8, 0x38, 0x59, 0xC4, 0xF3, 0x19, 0x6E, 0x3F, 0xFE, 0x82, 0x28, 0x8D, +0x08, 0x2C, 0x83, 0x61, 0x21, 0x00, 0x81, 0xE0, 0x7F, 0xC5, 0xB4, 0x38, 0xEA, 0xF7, 0x19, 0xCA, +0x71, 0xB0, 0xFB, 0x70, 0x16, 0xAE, 0xBC, 0x60, 0x05, 0x7C, 0xF8, 0x6D, 0xEF, 0x84, 0x3B, 0x6F, +0xBF, 0x03, 0x9E, 0x78, 0x66, 0x1F, 0x26, 0x0D, 0x84, 0x48, 0x2E, 0xD5, 0x77, 0x7E, 0x2E, 0x3B, +0x76, 0x7E, 0x47, 0xF7, 0x79, 0x21, 0x39, 0xD0, 0xFC, 0xE5, 0x63, 0xFB, 0xEE, 0x19, 0x82, 0xD3, +0x98, 0x4E, 0x99, 0xD2, 0x98, 0x25, 0x4B, 0x96, 0xEC, 0xBA, 0xE3, 0xDE, 0xC7, 0xDF, 0xDD, 0xD9, +0x19, 0x7F, 0xAC, 0xAD, 0xAD, 0xD1, 0x7D, 0xE4, 0x97, 0xDB, 0xB8, 0x89, 0xD4, 0x00, 0xB8, 0x46, +0x30, 0x87, 0x8C, 0x61, 0x8D, 0xC9, 0x4D, 0xCD, 0xA1, 0x4E, 0x33, 0xA5, 0x84, 0xB8, 0x92, 0x0C, +0x51, 0x74, 0x7C, 0xFC, 0x88, 0x40, 0x29, 0x18, 0xC6, 0x08, 0x88, 0xFF, 0xFA, 0x64, 0xCC, 0xCF, +0x72, 0xB5, 0xF2, 0x60, 0x4A, 0x22, 0x60, 0xC2, 0x20, 0x85, 0xCE, 0x97, 0xC9, 0x95, 0x41, 0x29, +0xE7, 0x21, 0xE4, 0xDA, 0x30, 0xAF, 0x25, 0x01, 0x9F, 0xFB, 0xDC, 0xA7, 0xE1, 0xD8, 0xB1, 0x3E, +0xF8, 0xC7, 0x7F, 0xFC, 0x1C, 0x84, 0x14, 0x87, 0x25, 0x12, 0x74, 0x33, 0xE0, 0x95, 0xCA, 0x98, +0x1A, 0xA4, 0x93, 0xE3, 0xEF, 0xF7, 0x95, 0xF2, 0x94, 0x31, 0xF8, 0x7B, 0x38, 0x8D, 0xE9, 0x94, +0xAA, 0x79, 0x3A, 0xB0, 0xC3, 0x1A, 0x1D, 0x1F, 0xDF, 0xF5, 0x4F, 0xA1, 0x78, 0xE2, 0xD6, 0x8B, +0x2E, 0xBD, 0xFC, 0x7C, 0xFD, 0xDC, 0xF5, 0xD0, 0xD7, 0x33, 0xF0, 0xD0, 0xE4, 0xAE, 0x63, 0x0F, +0xD2, 0xFD, 0x92, 0xE0, 0x53, 0xA3, 0x7E, 0x09, 0x4A, 0x28, 0xA1, 0x4A, 0x40, 0x85, 0x70, 0xD8, +0x8F, 0x78, 0x30, 0x30, 0x46, 0x92, 0x3D, 0x55, 0x94, 0xE7, 0x20, 0x83, 0x60, 0x38, 0x65, 0x4C, +0xDD, 0xC9, 0x30, 0x7F, 0xD5, 0x5A, 0xB8, 0xE1, 0xCD, 0x37, 0xC3, 0xA1, 0x81, 0x51, 0xF8, 0xE7, +0xFF, 0xFB, 0x1F, 0x30, 0x82, 0x69, 0x40, 0xC5, 0x27, 0x40, 0x53, 0x47, 0x90, 0x35, 0x72, 0xD9, +0x56, 0x01, 0x43, 0x60, 0x3C, 0x0C, 0xA8, 0xF1, 0x25, 0x59, 0x49, 0x2B, 0xC1, 0xC4, 0x61, 0x48, +0xC2, 0x69, 0x4D, 0xA7, 0xE4, 0x2C, 0xC5, 0x2B, 0xAF, 0xFC, 0xE8, 0x87, 0xFA, 0x7A, 0x9F, 0xFC, +0x64, 0xC7, 0x82, 0x95, 0x07, 0xFF, 0x69, 0xE3, 0x9F, 0xEC, 0x6F, 0x6D, 0x4E, 0xAC, 0xC1, 0xD8, +0x37, 0x97, 0xEB, 0x1D, 0x8C, 0xA5, 0x76, 0xFE, 0xFA, 0x2D, 0x87, 0x9F, 0x7E, 0x0C, 0x14, 0x0C, +0x71, 0xA2, 0xD1, 0x10, 0x4A, 0x9D, 0x04, 0x3C, 0x3A, 0x47, 0xA4, 0x9A, 0xEB, 0x24, 0x04, 0xA2, +0x20, 0xB7, 0x2C, 0x00, 0x2B, 0xD8, 0x00, 0x8E, 0x2F, 0x0C, 0x83, 0x3D, 0x47, 0xE1, 0x81, 0xDB, +0x7F, 0x0E, 0x0F, 0x1C, 0x19, 0x41, 0xD5, 0x2E, 0x81, 0x8B, 0x29, 0x41, 0x91, 0xB3, 0x61, 0x59, +0x77, 0x14, 0x8E, 0x0E, 0x56, 0x58, 0x19, 0xAA, 0x4B, 0xD8, 0xA4, 0xA3, 0x43, 0x24, 0xB1, 0xE0, +0x9F, 0x46, 0x07, 0xB7, 0x9E, 0xF6, 0xB6, 0xF6, 0x94, 0x64, 0xEC, 0x86, 0xF7, 0x6F, 0xA4, 0x7E, +0x55, 0xD8, 0xFC, 0xBD, 0x8D, 0x53, 0x3D, 0xAB, 0x04, 0xF5, 0xE9, 0x13, 0xE9, 0xBB, 0xEC, 0xE2, +0xF0, 0x19, 0x16, 0x27, 0x30, 0xAC, 0x57, 0xC6, 0xB4, 0x1C, 0x25, 0xCD, 0x19, 0xEE, 0x6B, 0x56, +0x31, 0x85, 0x8B, 0x12, 0x5B, 0xC9, 0xA1, 0xFA, 0xAE, 0x82, 0x9E, 0x1E, 0x83, 0xF1, 0xA3, 0x87, +0x60, 0x74, 0x78, 0x14, 0xBD, 0xEB, 0x34, 0x0C, 0xE7, 0x34, 0xF8, 0xD9, 0xD1, 0x02, 0x70, 0xA8, +0x92, 0x45, 0xCC, 0x00, 0xD1, 0x28, 0xB0, 0xD6, 0x98, 0x02, 0x13, 0x79, 0xCC, 0xEF, 0x3A, 0x32, +0xE6, 0x69, 0x6D, 0x2A, 0x7F, 0x05, 0x59, 0x09, 0xDF, 0x1D, 0x6A, 0x5A, 0xF9, 0x27, 0xA7, 0xBB, +0x8D, 0x7D, 0xE9, 0x32, 0xBD, 0x57, 0x81, 0xFA, 0x77, 0x6D, 0xB6, 0xE8, 0x56, 0xFF, 0x77, 0xD7, +0x86, 0x8D, 0xCA, 0xB6, 0x87, 0x37, 0x77, 0xBE, 0x71, 0x79, 0xE4, 0x9D, 0xEE, 0xF0, 0x33, 0x0D, +0xE9, 0x3D, 0x4F, 0x41, 0xE1, 0xD8, 0x3E, 0x54, 0xCD, 0x18, 0xCE, 0x34, 0xCC, 0x03, 0x5F, 0x4B, +0x37, 0x18, 0x7B, 0x1F, 0x61, 0x37, 0x7B, 0xF4, 0x08, 0xD8, 0x13, 0xC7, 0xC0, 0xCD, 0x4F, 0x40, +0x29, 0x5F, 0x64, 0x55, 0x8A, 0x3A, 0xA6, 0xED, 0x26, 0x2C, 0x15, 0xC6, 0xCB, 0x36, 0x41, 0x88, +0xE8, 0x2C, 0x79, 0x2F, 0x1D, 0xC6, 0xD0, 0xA8, 0x5C, 0xB5, 0x59, 0x01, 0x39, 0xCD, 0xAB, 0x00, +0x1E, 0x19, 0x6C, 0x9B, 0x41, 0xCC, 0x12, 0xF8, 0x9A, 0xE7, 0x6F, 0x38, 0x9C, 0x99, 0xD8, 0x5B, +0x80, 0xD3, 0x94, 0x4E, 0x49, 0xC6, 0x12, 0xAD, 0xD8, 0xF0, 0xD1, 0xE0, 0xD2, 0x25, 0x97, 0xAC, +0x6E, 0xEB, 0x3C, 0x73, 0xC5, 0x1A, 0x69, 0xE2, 0xED, 0x1F, 0xBA, 0x7C, 0xC1, 0x3F, 0x2F, 0x88, +0xF1, 0x8B, 0x6D, 0xD0, 0x41, 0x5D, 0x7C, 0x0E, 0x34, 0x5E, 0xFE, 0x2E, 0x90, 0x30, 0xA1, 0x5E, +0xD9, 0xB3, 0x09, 0xD4, 0x85, 0x67, 0x80, 0x90, 0x68, 0x67, 0x5D, 0x00, 0x62, 0x6E, 0x84, 0xD9, +0x5B, 0x0B, 0x91, 0x25, 0xCA, 0xF0, 0xE0, 0xFF, 0x41, 0x3F, 0x26, 0x01, 0x52, 0x98, 0xA2, 0x5B, +0x1F, 0x77, 0x98, 0xC4, 0xE6, 0x0D, 0x0B, 0x21, 0x45, 0x0B, 0xA2, 0x41, 0x1F, 0xAB, 0xB4, 0xA8, +0x56, 0x35, 0x54, 0xC5, 0x88, 0x72, 0x09, 0x32, 0x31, 0x38, 0x6C, 0x1B, 0xC5, 0xB3, 0x2B, 0xC5, +0xF1, 0xB3, 0x16, 0x2D, 0xBE, 0x48, 0x5D, 0xF1, 0xC6, 0x77, 0xED, 0x9F, 0x7E, 0xC8, 0x4E, 0x17, +0x3A, 0x25, 0xC7, 0xDA, 0x12, 0x45, 0x8B, 0xC3, 0xDF, 0x89, 0x8B, 0xD9, 0xB7, 0xCB, 0xF1, 0x16, +0xB8, 0xF1, 0xBC, 0x56, 0xE8, 0x5E, 0xD8, 0x0E, 0x85, 0x8E, 0x25, 0xC0, 0x87, 0x2E, 0x02, 0x65, +0x78, 0x37, 0xD8, 0x8F, 0x7F, 0x07, 0xAA, 0x99, 0xE4, 0xD4, 0xC9, 0xAC, 0x6C, 0xFE, 0x3E, 0xF8, +0x2F, 0x7C, 0x27, 0x80, 0xCF, 0x0F, 0xCE, 0xE1, 0x27, 0xD0, 0x73, 0x32, 0x31, 0xE1, 0x80, 0x90, +0x62, 0x38, 0x06, 0xE3, 0x49, 0x0E, 0xCE, 0x0F, 0xE4, 0xE1, 0x50, 0xC6, 0x01, 0x54, 0xC6, 0x08, +0x5E, 0x28, 0xA0, 0xCA, 0x06, 0x4B, 0x01, 0xF2, 0xD4, 0x1A, 0x8B, 0xAA, 0x9C, 0xB4, 0x39, 0x66, +0x92, 0xD8, 0xEB, 0x49, 0x92, 0x1F, 0x4D, 0x81, 0x73, 0x45, 0x6F, 0xEF, 0xD6, 0x2B, 0xF2, 0xC5, +0xE4, 0x45, 0x1F, 0xF8, 0xE3, 0xAF, 0x7D, 0x7F, 0xC1, 0xD2, 0xEE, 0xA1, 0x4F, 0x7F, 0xF2, 0x8D, +0x87, 0xE1, 0x34, 0xA1, 0x53, 0xCA, 0xC6, 0xBE, 0xFD, 0xED, 0x5F, 0x54, 0xC3, 0x70, 0xF4, 0xF2, +0xBD, 0xC7, 0x7A, 0x6F, 0x8A, 0xF8, 0x26, 0x3F, 0xB8, 0x62, 0xC5, 0x3A, 0x58, 0xB8, 0x64, 0x0D, +0x5C, 0x7C, 0xFE, 0x6A, 0x10, 0x31, 0xA4, 0x71, 0x31, 0xFC, 0x51, 0xD3, 0x47, 0x91, 0x8B, 0x79, +0x30, 0x4A, 0x98, 0xB5, 0xA9, 0x7A, 0xBD, 0x37, 0xE1, 0x9B, 0xFF, 0x11, 0xAC, 0x7B, 0xFF, 0x85, +0xFD, 0xCE, 0xAF, 0xBA, 0x0A, 0xB8, 0xE6, 0x45, 0xA0, 0x3D, 0xF6, 0x03, 0xC8, 0x65, 0x72, 0xB0, +0x7B, 0x12, 0xA1, 0x43, 0x57, 0xC3, 0x9C, 0x6C, 0x19, 0x7E, 0xBC, 0x7B, 0x04, 0x2C, 0x94, 0xE0, +0xAA, 0xE1, 0xE2, 0x73, 0xD1, 0xB6, 0xBA, 0x12, 0x74, 0xB5, 0xB7, 0x60, 0x9A, 0xAF, 0x13, 0x86, +0x46, 0xFA, 0x20, 0x97, 0xC6, 0x84, 0x02, 0xFE, 0x3D, 0x88, 0xF1, 0x71, 0x02, 0x1D, 0xB3, 0x8E, +0xF6, 0x36, 0xF8, 0xC0, 0x1F, 0xFC, 0x81, 0xBB, 0x76, 0xD5, 0x2A, 0x57, 0xE0, 0x55, 0x17, 0x44, +0xB7, 0x37, 0x53, 0xB1, 0xF6, 0x64, 0x34, 0xE1, 0xC9, 0xAA, 0x2C, 0xFF, 0x6C, 0xD3, 0x03, 0x43, +0x63, 0x1B, 0x37, 0x5E, 0x76, 0x4A, 0x4A, 0xF3, 0x29, 0x23, 0xB1, 0x1F, 0xF8, 0xF8, 0x57, 0x1A, +0x21, 0x9F, 0xBD, 0x60, 0xF0, 0xC8, 0xB1, 0xBF, 0x0E, 0x06, 0xDC, 0x33, 0x6E, 0xB9, 0xF5, 0xA3, +0xB0, 0x62, 0xDD, 0x7A, 0x98, 0x18, 0x1E, 0x81, 0xEC, 0xFE, 0xA7, 0x41, 0x75, 0xAA, 0xE0, 0x77, +0x4B, 0xE0, 0xF0, 0x98, 0x26, 0xB7, 0x4D, 0x96, 0x6C, 0x7F, 0x3E, 0x61, 0x82, 0x1E, 0xDC, 0x03, +0xBF, 0x65, 0x8E, 0x94, 0x7A, 0xE9, 0x1F, 0xC2, 0xD0, 0xC3, 0x3F, 0x83, 0xEC, 0xF8, 0x04, 0xC4, +0x7D, 0x55, 0xD8, 0x3E, 0x8A, 0x8E, 0x11, 0x47, 0xB6, 0x94, 0x67, 0x63, 0x0B, 0x6C, 0x4C, 0x0E, +0x48, 0x18, 0x26, 0x51, 0x73, 0x96, 0x00, 0x15, 0x94, 0x5C, 0x93, 0x0D, 0x20, 0xB9, 0x7E, 0x4D, +0x0B, 0x2C, 0x40, 0x04, 0xAB, 0xA3, 0xBD, 0x19, 0xBA, 0x17, 0x74, 0xE3, 0xEF, 0x16, 0xE7, 0x0E, +0x3F, 0xCB, 0xE9, 0x65, 0xF6, 0x7E, 0x8B, 0x83, 0x0D, 0x4D, 0x8B, 0x04, 0xB9, 0xF5, 0x72, 0x2B, +0xCF, 0x77, 0x5E, 0xB2, 0x54, 0xFC, 0x29, 0xFE, 0xED, 0x19, 0x38, 0x05, 0xE9, 0x94, 0x90, 0xD8, +0x8D, 0x5F, 0xFD, 0xCD, 0x3C, 0x21, 0x33, 0xF1, 0x27, 0xE0, 0xA6, 0x6F, 0x59, 0xB9, 0xBA, 0x33, +0x81, 0x17, 0x94, 0xDB, 0xBF, 0xF5, 0x49, 0xB8, 0xFF, 0x81, 0x47, 0xA0, 0x92, 0xC9, 0xC3, 0xFB, +0xCE, 0x6B, 0x82, 0xEE, 0xF6, 0x26, 0x08, 0xF8, 0x55, 0xA6, 0x3A, 0x5D, 0x1D, 0xA1, 0xC1, 0x62, +0x01, 0xEC, 0x5A, 0xFF, 0x8D, 0xFF, 0x26, 0xC4, 0x12, 0x36, 0x7D, 0x9D, 0x85, 0x3D, 0xAE, 0x65, +0xA1, 0x57, 0xAC, 0x01, 0xC4, 0xDB, 0x41, 0x5B, 0xF6, 0x06, 0x18, 0xDF, 0xBF, 0x15, 0x7E, 0xF4, +0x93, 0xEF, 0x41, 0x3E, 0x6F, 0xA0, 0xDD, 0x45, 0x26, 0x56, 0x2D, 0xD7, 0xD4, 0x4C, 0x4E, 0x17, +0x7C, 0x50, 0xC5, 0x44, 0x7B, 0xC9, 0x44, 0x80, 0x83, 0x60, 0x4B, 0x3C, 0x28, 0xCD, 0x51, 0x01, +0x3E, 0xF3, 0xE6, 0xB3, 0x31, 0x8C, 0x0A, 0x63, 0x5E, 0x37, 0x88, 0x21, 0x55, 0x00, 0x78, 0x49, +0xF2, 0xAA, 0x26, 0x6B, 0x64, 0x18, 0x54, 0x48, 0x47, 0x3D, 0xB9, 0x92, 0x6B, 0x72, 0xC1, 0x23, +0x4F, 0x0B, 0xEB, 0xDE, 0xFC, 0x47, 0x1F, 0xB8, 0xF4, 0x28, 0x9C, 0x62, 0xF4, 0xAA, 0x49, 0xEC, +0x17, 0xBF, 0x78, 0x87, 0x0A, 0xBE, 0xC6, 0xB6, 0x8B, 0x2E, 0xEC, 0xBA, 0x98, 0x37, 0xCA, 0x7F, +0xA4, 0x06, 0xDA, 0xCF, 0x1C, 0x1E, 0x1E, 0x11, 0xEF, 0xBF, 0xEB, 0x6E, 0xF8, 0x7E, 0xFF, 0x10, +0x24, 0xC2, 0x06, 0x68, 0x45, 0x13, 0x0A, 0xD9, 0x12, 0x54, 0x0A, 0x01, 0xF4, 0x64, 0x6D, 0x56, +0x9A, 0x4A, 0x49, 0x74, 0x0A, 0x4D, 0x7C, 0x7E, 0x3F, 0x0A, 0xA6, 0xC6, 0x6A, 0x9B, 0x88, 0x7C, +0x81, 0x10, 0x43, 0x8F, 0x2C, 0xA8, 0xA2, 0x44, 0x8B, 0x70, 0x60, 0xEF, 0x88, 0xDD, 0xBB, 0xE3, +0xEB, 0xC2, 0xC5, 0x37, 0xDF, 0x0A, 0x97, 0x5D, 0xAF, 0xC3, 0x5D, 0x3F, 0xFC, 0x0E, 0xF8, 0x5C, +0xD1, 0x0D, 0x37, 0xC4, 0xB8, 0x72, 0x49, 0x47, 0x06, 0x19, 0xC0, 0x63, 0xEC, 0x4A, 0x23, 0x0B, +0xE8, 0x22, 0x90, 0x02, 0x68, 0xA1, 0x59, 0x15, 0x88, 0x43, 0x53, 0x55, 0x86, 0x88, 0x58, 0xA6, +0x80, 0x78, 0x32, 0x75, 0x1C, 0xD4, 0x7B, 0x7C, 0xC8, 0x19, 0x93, 0x30, 0xE9, 0x60, 0x8B, 0xF8, +0xB9, 0x8A, 0x19, 0xAE, 0x5C, 0x18, 0x5A, 0xDA, 0x15, 0x73, 0xFE, 0xF4, 0xEB, 0xDF, 0x7D, 0xF4, +0x3F, 0x4F, 0x35, 0xE6, 0xCE, 0x29, 0x63, 0x37, 0x6C, 0xD8, 0x28, 0xDE, 0x7E, 0xD7, 0x9F, 0xAF, +0x48, 0x0D, 0xF6, 0xBC, 0xAF, 0x41, 0xE5, 0xDE, 0xE3, 0x0A, 0x76, 0x73, 0x41, 0x2F, 0x71, 0x5B, +0xF6, 0x1C, 0x84, 0xED, 0x5B, 0xF7, 0xBA, 0x4F, 0x3D, 0xF6, 0x00, 0x34, 0x05, 0xC3, 0x8C, 0x59, +0x95, 0xB2, 0x0E, 0xF1, 0x68, 0x10, 0xF2, 0x28, 0x99, 0x13, 0x85, 0x12, 0xAC, 0xE1, 0x59, 0x56, +0x0E, 0xE3, 0x56, 0xAF, 0x14, 0x86, 0x54, 0xB1, 0x69, 0x39, 0x20, 0x86, 0xBC, 0xCE, 0x00, 0xFA, +0x3B, 0x55, 0x33, 0x81, 0xAA, 0xC0, 0xA1, 0x9C, 0x01, 0x5F, 0x7F, 0xE6, 0xA8, 0x10, 0x91, 0x26, +0x61, 0xE7, 0xD1, 0xBF, 0x84, 0xB7, 0xBC, 0xFB, 0x23, 0xF0, 0xE7, 0x9F, 0xFB, 0x02, 0xDC, 0xF6, +0xB5, 0x2F, 0x71, 0x63, 0x03, 0x03, 0x10, 0x8A, 0x36, 0x83, 0x1F, 0xB3, 0x46, 0x95, 0x6C, 0x19, +0x54, 0x15, 0x25, 0xD2, 0xE1, 0xD0, 0xEE, 0xEA, 0x10, 0x6B, 0x0A, 0x81, 0x80, 0x87, 0xC7, 0x41, +0x10, 0x83, 0xC3, 0xCF, 0x40, 0xCD, 0x61, 0xB2, 0x7C, 0xBC, 0x1C, 0x8A, 0x18, 0xAC, 0x61, 0xD2, +0xC0, 0x87, 0x0C, 0x0F, 0x58, 0x26, 0x18, 0x68, 0xE3, 0xED, 0xBE, 0xA7, 0xFF, 0xB8, 0x2D, 0x36, +0x72, 0xDE, 0x1D, 0x5F, 0xFC, 0xD6, 0xCD, 0x37, 0xFF, 0xD9, 0xAD, 0x3D, 0x70, 0x8A, 0xD0, 0xDC, +0x65, 0x77, 0x30, 0x89, 0xFE, 0xF9, 0xFF, 0xBE, 0xE5, 0x2C, 0xB7, 0x90, 0xFE, 0x9F, 0x50, 0x40, +0xF8, 0xB3, 0xBC, 0x2B, 0xB6, 0x98, 0x13, 0xA3, 0xDC, 0xA3, 0x3F, 0xBF, 0x03, 0xFE, 0xEB, 0xAB, +0x3F, 0x80, 0xED, 0xCF, 0x3C, 0xC9, 0xF1, 0x18, 0x72, 0x9C, 0x77, 0xF6, 0xB9, 0xB0, 0x7C, 0xF5, +0xD9, 0x50, 0x2D, 0x15, 0x80, 0x32, 0x32, 0xF1, 0x86, 0x08, 0xA4, 0xCA, 0x26, 0x84, 0x90, 0x61, +0x42, 0xDD, 0x70, 0xE0, 0xDF, 0xCB, 0xA5, 0x12, 0x14, 0x90, 0xF9, 0x8E, 0xEB, 0xD4, 0xFE, 0x24, +0x23, 0x83, 0x6C, 0x98, 0x44, 0x20, 0xE2, 0x37, 0x87, 0xF2, 0xC0, 0x6B, 0xFD, 0x40, 0xA5, 0xE1, +0xC5, 0x5C, 0x1E, 0x7E, 0xF2, 0xE5, 0x2F, 0xC3, 0xD1, 0xBD, 0xFB, 0xE1, 0x96, 0x3F, 0xFD, 0x1B, +0xE8, 0x8A, 0xC7, 0x19, 0xF4, 0xA8, 0x62, 0xAE, 0x36, 0x16, 0x56, 0xA1, 0xA3, 0x03, 0xE3, 0x60, +0x7F, 0x90, 0x79, 0xC6, 0x8D, 0xA8, 0x9E, 0x69, 0x5A, 0xEA, 0x8B, 0x11, 0x31, 0x9E, 0xD4, 0x33, +0xE5, 0x7D, 0x7D, 0xB2, 0x37, 0xAD, 0xA6, 0x3C, 0x39, 0xB6, 0xD6, 0xAA, 0x66, 0xDF, 0x44, 0xE3, +0xEE, 0xE1, 0x14, 0xA1, 0x39, 0x8B, 0x63, 0xB7, 0xFD, 0xF7, 0x0F, 0xD7, 0x87, 0xC4, 0xCA, 0x16, +0xDE, 0x2A, 0xB5, 0x29, 0x63, 0x7B, 0x78, 0xFF, 0xC0, 0x56, 0x28, 0x8F, 0x0C, 0xC0, 0x3D, 0xDB, +0xB3, 0x28, 0x19, 0xE8, 0xA9, 0x96, 0x26, 0x21, 0x81, 0xF9, 0xF4, 0x85, 0xAD, 0x21, 0x68, 0x69, +0x5F, 0xE3, 0x1E, 0xED, 0xDD, 0xCD, 0x71, 0x88, 0x30, 0xF9, 0x31, 0x69, 0x9E, 0xAB, 0x94, 0x90, +0x69, 0x22, 0x2C, 0xC7, 0xFB, 0x68, 0x76, 0x31, 0xCD, 0x90, 0x30, 0x51, 0x95, 0xD2, 0x45, 0x8E, +0xB5, 0xB4, 0x82, 0xD9, 0xBA, 0x0A, 0x46, 0xB7, 0xFD, 0x16, 0x7E, 0xB6, 0xE3, 0x08, 0x3C, 0xB8, +0x3F, 0x09, 0x43, 0xE3, 0x49, 0x4C, 0xCD, 0xA1, 0x34, 0xA1, 0xF7, 0xAB, 0x72, 0x88, 0x27, 0xA3, +0x84, 0x8D, 0xEF, 0x7C, 0x1C, 0xFC, 0xC5, 0x34, 0xBC, 0xE1, 0x63, 0x9F, 0x02, 0x09, 0x61, 0xC8, +0x62, 0x6E, 0x1C, 0xDA, 0x9A, 0x43, 0xD0, 0xDE, 0xBD, 0x10, 0xC6, 0x53, 0x45, 0x28, 0x15, 0x8B, +0x70, 0x76, 0x93, 0x1F, 0xDA, 0x1B, 0x43, 0x4C, 0x23, 0xA8, 0x8A, 0xC2, 0x4E, 0x3D, 0xCF, 0x06, +0x60, 0x1F, 0x3F, 0xFF, 0x94, 0xC3, 0xA5, 0x59, 0x52, 0xA4, 0x2D, 0x0C, 0x1A, 0x68, 0x62, 0xA3, +0x87, 0x5D, 0x29, 0x73, 0xAE, 0x91, 0x5F, 0x2D, 0x9A, 0x99, 0xFE, 0x5F, 0x6C, 0x7E, 0x7C, 0x1F, +0x9C, 0x02, 0x34, 0x67, 0xAA, 0x78, 0x5E, 0x2C, 0xF4, 0x27, 0xC5, 0x62, 0x05, 0x9A, 0xF2, 0x87, +0xF9, 0xAA, 0x96, 0x41, 0x46, 0x99, 0x98, 0x52, 0xB3, 0x20, 0x59, 0x24, 0x6F, 0xB4, 0x84, 0xD2, +0x68, 0xA3, 0xF3, 0x12, 0x05, 0xAB, 0x77, 0x3F, 0xA8, 0xE1, 0x2E, 0x2E, 0xDE, 0xBC, 0xD4, 0x9D, +0x1C, 0x1F, 0xE4, 0xE2, 0x11, 0x09, 0xED, 0xA6, 0x0D, 0x8F, 0x1C, 0xE8, 0x05, 0xCD, 0xD6, 0x60, +0x5D, 0x47, 0x2B, 0x32, 0x9B, 0x47, 0x44, 0x09, 0x63, 0x52, 0xCD, 0x86, 0xC1, 0xC3, 0x63, 0xB0, +0xFC, 0x4C, 0x80, 0x1F, 0x6F, 0xDE, 0x0E, 0x13, 0x9A, 0x0B, 0xA6, 0x10, 0x05, 0x1F, 0x5F, 0x46, +0x61, 0x0D, 0x41, 0x40, 0x30, 0x40, 0x89, 0x84, 0xD8, 0x7C, 0x27, 0xA9, 0x5A, 0x86, 0x5D, 0x0F, +0xFF, 0x0A, 0x76, 0x1E, 0x3A, 0x0A, 0xEF, 0xDE, 0xF8, 0xEF, 0x28, 0xA5, 0x12, 0x6C, 0x7B, 0xEC, +0x97, 0xB0, 0x7F, 0xD7, 0x5E, 0x30, 0x8A, 0x25, 0xF4, 0x90, 0x51, 0x02, 0x79, 0x97, 0x85, 0x50, +0x02, 0x67, 0x60, 0x18, 0x6C, 0xA0, 0x4D, 0x17, 0xD0, 0x8E, 0x57, 0xC1, 0xF5, 0xF9, 0xA6, 0xBE, +0x87, 0x8D, 0xCC, 0xA4, 0x36, 0x13, 0x9A, 0x76, 0xCE, 0xFE, 0x43, 0xFB, 0x20, 0x73, 0xB4, 0x88, +0x22, 0xDD, 0xE6, 0xDA, 0xBE, 0x5B, 0xF1, 0x21, 0xB7, 0xC1, 0x29, 0x40, 0x73, 0x22, 0xB1, 0xFF, +0xF3, 0xAD, 0xA7, 0xD6, 0x5F, 0xB2, 0x3A, 0xF8, 0x95, 0x6C, 0x45, 0x87, 0xB0, 0x96, 0x04, 0xBB, +0x5A, 0xA4, 0x74, 0x29, 0x04, 0x10, 0x31, 0x52, 0xDA, 0xBA, 0xE0, 0xA9, 0x87, 0x7E, 0x0E, 0x6A, +0xA8, 0x01, 0x5A, 0x12, 0x51, 0xE8, 0xD0, 0x33, 0x60, 0x24, 0x8F, 0x40, 0x0B, 0xC6, 0xA3, 0xB2, +0x1C, 0xE0, 0x72, 0xF9, 0x32, 0x68, 0x85, 0x49, 0x70, 0x51, 0xAA, 0x7B, 0x51, 0xB2, 0x9E, 0x3A, +0x3A, 0x04, 0x8F, 0x1F, 0x19, 0x82, 0x67, 0xFA, 0x46, 0x60, 0x4B, 0xEF, 0x38, 0x6C, 0x3D, 0xD2, +0x0B, 0xD7, 0xDC, 0xF0, 0x4E, 0xB8, 0xEF, 0xAE, 0xDB, 0xC0, 0x17, 0x5B, 0x08, 0xA5, 0x6C, 0x0A, +0xB4, 0x54, 0x06, 0xFC, 0x98, 0x78, 0x2F, 0x58, 0x1C, 0x0C, 0x8C, 0x8E, 0x83, 0x10, 0x0E, 0x83, +0x11, 0x6F, 0x80, 0xCD, 0x43, 0x05, 0x38, 0x34, 0x99, 0x87, 0xC7, 0x36, 0x6F, 0x86, 0xAB, 0xDF, +0xF4, 0x16, 0x58, 0xBC, 0xF2, 0x1C, 0x38, 0xB8, 0xF3, 0x09, 0xA8, 0x6A, 0x15, 0x56, 0x6F, 0xBC, +0x18, 0x55, 0x73, 0x80, 0xDA, 0x2C, 0x1D, 0x92, 0x44, 0x07, 0xA5, 0x55, 0x00, 0x6A, 0xEF, 0xA1, +0x96, 0x13, 0xD6, 0x37, 0x44, 0x37, 0x94, 0x58, 0x8A, 0x85, 0xC9, 0xC3, 0xA6, 0x01, 0x25, 0xE4, +0xB0, 0xD1, 0xAD, 0x54, 0xAA, 0x00, 0xE8, 0xF9, 0xEE, 0xB7, 0xBC, 0xE3, 0x2F, 0xE0, 0x9E, 0x87, +0xEF, 0x7B, 0x14, 0x5E, 0x65, 0x9A, 0x13, 0x1B, 0xBB, 0x76, 0x45, 0xEB, 0xBB, 0x1D, 0xCC, 0x89, +0x8A, 0x78, 0xC1, 0xAC, 0xDA, 0x5B, 0x56, 0x1C, 0x1F, 0xE4, 0x9D, 0x30, 0x26, 0xD1, 0xB3, 0x34, +0xF9, 0x14, 0x9A, 0xC2, 0x11, 0x88, 0xF0, 0x16, 0xAA, 0x50, 0x09, 0x42, 0x18, 0xCE, 0x84, 0x53, +0x07, 0xDC, 0x75, 0xCB, 0x96, 0x60, 0xCE, 0x35, 0x8E, 0xB1, 0x26, 0x4A, 0x0E, 0xC2, 0x00, 0x94, +0xC1, 0x51, 0x7D, 0x94, 0x5E, 0xC3, 0x0B, 0x59, 0x36, 0xD8, 0xC8, 0xBD, 0x0A, 0x26, 0xD2, 0x89, +0xEC, 0x60, 0x17, 0xF4, 0x0F, 0xA2, 0x1A, 0x1E, 0x1A, 0x82, 0x51, 0xBC, 0xEF, 0x60, 0x5F, 0x12, +0x7A, 0x87, 0x92, 0x90, 0x2E, 0x18, 0x30, 0x38, 0x9A, 0xA6, 0xCE, 0x39, 0x08, 0xA3, 0xF4, 0x92, +0x93, 0x95, 0x4A, 0x26, 0xE1, 0x07, 0xDF, 0xFC, 0x1A, 0xDA, 0xE9, 0x02, 0x7C, 0xF4, 0x6F, 0xFE, +0x0D, 0x1A, 0x5A, 0xDA, 0xD0, 0x89, 0xF2, 0x81, 0x4E, 0x23, 0xFA, 0x50, 0x13, 0x90, 0xD4, 0x6A, +0xA5, 0x32, 0xE4, 0x73, 0x05, 0x28, 0x96, 0xCB, 0x6C, 0x0C, 0x02, 0xD9, 0x74, 0xEA, 0xD5, 0x35, +0x75, 0x6A, 0x17, 0x41, 0xD3, 0x41, 0x13, 0x6D, 0x6A, 0xF5, 0xCD, 0x64, 0x6B, 0x15, 0x89, 0x1C, +0x2B, 0x94, 0xEE, 0xB1, 0xAD, 0x1F, 0xFA, 0xDC, 0x9F, 0x7E, 0xB1, 0x0D, 0x5E, 0x65, 0x7A, 0xC5, +0x55, 0x31, 0x6D, 0xE5, 0x58, 0xBB, 0xC4, 0x7E, 0x87, 0x3B, 0x9A, 0x42, 0xAC, 0x0E, 0x7D, 0x0B, +0x4B, 0x67, 0x61, 0x43, 0x4E, 0xE3, 0xE1, 0xA1, 0xDF, 0xEE, 0x82, 0xCD, 0xCF, 0xFC, 0x06, 0x82, +0x91, 0x30, 0x34, 0x45, 0xFD, 0x20, 0x56, 0x26, 0x58, 0xA7, 0xB9, 0x8A, 0x18, 0xB0, 0x36, 0xB2, +0x87, 0x37, 0x2B, 0x19, 0x77, 0xF5, 0xD2, 0x0D, 0x68, 0x5B, 0x55, 0xEE, 0x49, 0x4C, 0xD5, 0x8D, +0xA5, 0x2A, 0x50, 0xC0, 0x50, 0xA5, 0x84, 0x92, 0xAF, 0x69, 0x26, 0x9B, 0xD5, 0xA4, 0x2A, 0x9E, +0x57, 0x3C, 0x36, 0x3A, 0x01, 0x69, 0x44, 0x8E, 0x7C, 0x08, 0x3C, 0x70, 0xE4, 0xCD, 0x8A, 0x2E, +0xAB, 0x25, 0x36, 0x90, 0x01, 0xA2, 0x84, 0x36, 0x99, 0x8A, 0xC4, 0xF1, 0x71, 0xD4, 0x46, 0xE9, +0xBA, 0x3C, 0x6A, 0x8D, 0x0A, 0xEC, 0x7D, 0xEA, 0xD7, 0xB0, 0x73, 0x57, 0x3B, 0xFC, 0xF1, 0xA7, +0xFE, 0x1E, 0x7E, 0x7E, 0xDB, 0xF7, 0x41, 0x1F, 0xDC, 0x8F, 0xDE, 0x31, 0x82, 0x17, 0x0E, 0x29, +0xB2, 0x2A, 0x50, 0x4B, 0x09, 0xC5, 0xB7, 0xD4, 0x26, 0x22, 0x08, 0xDE, 0x81, 0xA4, 0x83, 0x41, +0x5D, 0xF6, 0xB6, 0x65, 0xB3, 0xDA, 0x66, 0xB3, 0x5C, 0x64, 0xBD, 0x3F, 0x4A, 0x30, 0x00, 0x8A, +0xE9, 0x40, 0x6E, 0xAC, 0xA7, 0x2D, 0x9E, 0x08, 0x52, 0xDF, 0xCF, 0x5F, 0xC0, 0xAB, 0x48, 0xAF, +0x38, 0x63, 0x23, 0x52, 0xB8, 0x43, 0x0D, 0xC5, 0x5B, 0x4C, 0x18, 0x67, 0xFF, 0x76, 0x2C, 0xB4, +0x5D, 0x06, 0xB5, 0x61, 0xA0, 0x94, 0x48, 0x05, 0x68, 0x8A, 0x21, 0xB6, 0x6B, 0x35, 0x80, 0x64, +0xA0, 0x9D, 0x43, 0x27, 0x49, 0x09, 0x91, 0xD3, 0xC2, 0x01, 0x8F, 0xCE, 0x51, 0xB6, 0xFF, 0x10, +0x97, 0x8B, 0xAC, 0x47, 0xE8, 0x4F, 0x80, 0x91, 0x6C, 0x05, 0xF2, 0x98, 0xA5, 0x21, 0x95, 0xE8, +0x0F, 0xA3, 0xFD, 0x8C, 0x4B, 0x08, 0x52, 0x94, 0xA1, 0xB5, 0x63, 0x0D, 0xEB, 0x8A, 0x2C, 0x62, +0x36, 0x27, 0x10, 0x90, 0x99, 0xDD, 0x23, 0x92, 0x04, 0x1B, 0x02, 0xA2, 0x03, 0x02, 0xC2, 0xBE, +0x34, 0x52, 0x3E, 0x80, 0x5A, 0xA0, 0xAD, 0x9C, 0x02, 0x1B, 0x63, 0x54, 0xA9, 0xAD, 0x1D, 0x6C, +0x53, 0x07, 0x25, 0x1C, 0x87, 0xA7, 0x9E, 0x79, 0x1A, 0x0E, 0x1D, 0xDA, 0x0F, 0x9F, 0xFA, 0xAB, +0xBF, 0x85, 0x01, 0x04, 0x45, 0xCA, 0xBB, 0x7E, 0xCB, 0x98, 0x49, 0x0C, 0xF4, 0xBB, 0x26, 0xA2, +0x97, 0x05, 0xB0, 0xAA, 0x3E, 0x4C, 0xEC, 0x1F, 0xEF, 0xB4, 0x74, 0x29, 0x39, 0x6F, 0x53, 0xFF, +0x8F, 0x88, 0xE7, 0x14, 0x25, 0xD8, 0x26, 0x9B, 0xC6, 0xA3, 0x1A, 0x97, 0xD1, 0x83, 0xC7, 0xF8, +0xB8, 0x30, 0x70, 0xC6, 0xDB, 0x6F, 0xF9, 0x62, 0xFC, 0xCE, 0x6F, 0xFF, 0x59, 0x06, 0x5E, 0x25, +0x7A, 0xC5, 0x19, 0xDB, 0xD9, 0xDE, 0xB8, 0x08, 0x33, 0xDF, 0x60, 0x6B, 0x69, 0xB4, 0x93, 0x21, +0x56, 0x3C, 0xE6, 0xC7, 0xB0, 0x24, 0x63, 0x75, 0xD8, 0x47, 0xF2, 0x7D, 0x42, 0xE7, 0xFC, 0x6E, +0x74, 0x5A, 0x4C, 0x88, 0xA1, 0x24, 0xCF, 0xC7, 0xE0, 0x3F, 0x87, 0x76, 0xAB, 0x0F, 0xD3, 0x6B, +0xDB, 0xC6, 0x0C, 0x18, 0xC9, 0x63, 0x26, 0xA7, 0xB4, 0x09, 0x9A, 0x5B, 0x17, 0x43, 0x1F, 0x4A, +0xE4, 0xF9, 0x17, 0x5D, 0x0B, 0xE1, 0x90, 0x84, 0x2A, 0x4F, 0x87, 0x34, 0xDE, 0xB7, 0x6C, 0xD9, +0x22, 0x77, 0xA0, 0xE7, 0x31, 0xC6, 0x49, 0x19, 0x1D, 0x9C, 0xA8, 0x55, 0x86, 0x38, 0xCA, 0x4F, +0x13, 0x32, 0xD4, 0x87, 0x4E, 0x4E, 0x4C, 0x55, 0x41, 0x4E, 0x24, 0xA0, 0x88, 0x90, 0xB2, 0x5A, +0xCA, 0x40, 0xE3, 0xBC, 0x20, 0x4C, 0xE2, 0x73, 0xFD, 0x8D, 0x4D, 0x76, 0x3F, 0xDA, 0x84, 0x9F, +0xDD, 0xF3, 0x5B, 0xAE, 0xBB, 0xAB, 0x11, 0x46, 0xFA, 0x8E, 0xC2, 0x5F, 0xFE, 0xD9, 0x5F, 0xC2, +0x7F, 0x7E, 0xF1, 0xDF, 0x20, 0x17, 0x09, 0x40, 0xFF, 0x63, 0xF7, 0xB3, 0xDD, 0x3E, 0x2E, 0x87, +0xF9, 0x5D, 0x74, 0xA2, 0x7C, 0x08, 0x41, 0xBA, 0x84, 0x78, 0xF1, 0x22, 0x02, 0x14, 0x22, 0x2B, +0x50, 0x2F, 0xA1, 0x23, 0x68, 0x91, 0x9F, 0x80, 0xDA, 0xC0, 0x40, 0xE9, 0xA5, 0x9A, 0x66, 0x01, +0xBD, 0xF5, 0xA6, 0x80, 0x04, 0x43, 0x63, 0x99, 0x75, 0x2B, 0x1B, 0x8F, 0xAC, 0xBB, 0x13, 0xE0, +0xB7, 0xF0, 0x2A, 0xD1, 0x2B, 0x6E, 0x63, 0xCF, 0x58, 0xD3, 0xB2, 0xCA, 0x4D, 0x1D, 0x71, 0x5D, +0xAB, 0xCA, 0xF2, 0x9E, 0xD5, 0xB2, 0x97, 0xE2, 0xDC, 0x93, 0x4E, 0x0B, 0x7D, 0x43, 0x23, 0xD0, +0xD3, 0xDB, 0x0B, 0x89, 0xA6, 0x4E, 0x48, 0xE3, 0xC5, 0xBA, 0xAF, 0xE8, 0x87, 0x6F, 0x60, 0x88, +0x7F, 0xD7, 0x80, 0x0B, 0x03, 0x86, 0x02, 0xB6, 0x12, 0x81, 0x6C, 0xF2, 0x00, 0xE4, 0x92, 0xBB, +0xE1, 0xD6, 0xFF, 0xF3, 0xEF, 0xAE, 0xC6, 0x35, 0x83, 0x2E, 0x04, 0xA1, 0x2F, 0x6D, 0xBB, 0xA3, +0x19, 0xCB, 0x1D, 0xC9, 0xDB, 0xEE, 0x7C, 0xA3, 0xCC, 0x5E, 0xEF, 0x3A, 0x94, 0xFE, 0xEB, 0xA2, +0x1C, 0x5C, 0xD5, 0xAC, 0xC0, 0x99, 0x0D, 0x7E, 0x58, 0xD9, 0x88, 0xEA, 0x1D, 0x6D, 0x9F, 0x8A, +0x36, 0x3C, 0x5E, 0x4A, 0x83, 0x84, 0x9A, 0x22, 0x4B, 0x80, 0x02, 0xAD, 0x46, 0x2B, 0x8F, 0x0B, +0xFE, 0x88, 0xC0, 0xD1, 0xAA, 0x97, 0xC1, 0xFE, 0x71, 0x96, 0xAC, 0x9F, 0x1C, 0x1F, 0x85, 0x2F, +0xFE, 0xD1, 0x07, 0x01, 0x23, 0x24, 0x38, 0xFB, 0x23, 0x08, 0x51, 0x62, 0x3A, 0xA2, 0x8C, 0xF7, +0x93, 0xD9, 0xA8, 0xA2, 0x8A, 0x1D, 0x9B, 0x2C, 0x40, 0x06, 0xC3, 0xA8, 0xE4, 0xE8, 0x24, 0x1B, +0x2F, 0x54, 0xD6, 0x0C, 0xD6, 0x9E, 0x99, 0x29, 0x6A, 0x4C, 0x65, 0xD3, 0xD8, 0x3F, 0x03, 0x7F, +0xD2, 0xEB, 0x03, 0x6F, 0x26, 0xB4, 0x4A, 0xF1, 0xEA, 0x0F, 0x7E, 0xF0, 0xAB, 0xF3, 0xE0, 0x55, +0xA2, 0x57, 0x9C, 0xB1, 0xA1, 0xB0, 0xDF, 0xE7, 0xA4, 0xAB, 0x9C, 0x83, 0x0C, 0x20, 0xEF, 0xD1, +0xA8, 0x94, 0x81, 0x70, 0xDA, 0x48, 0x40, 0x80, 0xB6, 0x50, 0x11, 0x72, 0x13, 0xE3, 0xD0, 0xD7, +0x3F, 0x02, 0x0F, 0x8F, 0x86, 0xE1, 0x70, 0x39, 0x0C, 0x36, 0xE6, 0x44, 0x55, 0x05, 0xD5, 0x9A, +0x54, 0x81, 0x80, 0x5B, 0x81, 0x6E, 0xFC, 0xBD, 0xC1, 0x1F, 0x72, 0xB7, 0x1C, 0x29, 0x71, 0x05, +0x0C, 0x4B, 0x4A, 0x99, 0x12, 0x68, 0xE8, 0x34, 0x55, 0x11, 0x0F, 0x4E, 0x8D, 0xF7, 0x71, 0x4D, +0x7E, 0x4F, 0xF5, 0xC6, 0x51, 0x0D, 0xAA, 0x92, 0xF4, 0x9C, 0xF7, 0xB6, 0xD8, 0x54, 0x3D, 0x19, +0x64, 0x04, 0x37, 0xE8, 0x82, 0x97, 0xD1, 0x7E, 0xE6, 0x31, 0x7B, 0x53, 0x40, 0xC6, 0x60, 0x8A, +0x1E, 0x1A, 0xA3, 0x8D, 0x4C, 0x0A, 0xAB, 0x34, 0x9F, 0x02, 0x1F, 0x4B, 0x1B, 0x05, 0xB6, 0xFE, +0xEC, 0x87, 0xD0, 0xFB, 0xEC, 0x13, 0xB0, 0xEE, 0x0F, 0x3E, 0x01, 0x4E, 0xB0, 0x81, 0x8D, 0x3B, +0xA0, 0xF4, 0x1E, 0xDD, 0x86, 0x93, 0x05, 0xE8, 0x19, 0xC9, 0xA0, 0xAD, 0x2F, 0xB2, 0xCA, 0x48, +0x05, 0x1D, 0x3D, 0x1D, 0xEF, 0xCF, 0xE4, 0x4A, 0x6C, 0x02, 0x0D, 0x79, 0xD4, 0xC4, 0x5C, 0x8A, +0x7B, 0x31, 0x9C, 0xBB, 0x24, 0x6E, 0x1D, 0x9A, 0x0F, 0xAF, 0x12, 0xCD, 0x59, 0x1C, 0xAB, 0x15, +0xD0, 0xD9, 0x49, 0xB0, 0xD8, 0x01, 0x72, 0x65, 0x1F, 0x1C, 0x3B, 0xDA, 0xE3, 0x0E, 0x1C, 0xD9, +0xCD, 0xD1, 0xB8, 0x1E, 0x8D, 0xEF, 0x40, 0x09, 0x89, 0x22, 0x98, 0x90, 0x02, 0x05, 0x25, 0x3B, +0xE0, 0x94, 0xD1, 0x3E, 0x22, 0x1E, 0x2C, 0x58, 0x10, 0x8A, 0x34, 0xC2, 0x68, 0x6C, 0x91, 0x3B, +0xDA, 0x7F, 0x08, 0xE6, 0xC5, 0x65, 0x4E, 0xD3, 0x75, 0xD7, 0x76, 0x69, 0xE6, 0xB0, 0x84, 0x0E, +0x0C, 0xC6, 0x93, 0x3E, 0xEF, 0x6C, 0xDA, 0x8E, 0x4B, 0x63, 0x2B, 0x40, 0xE4, 0x38, 0x26, 0x3D, +0xB4, 0x88, 0x09, 0x1D, 0x55, 0x16, 0xB6, 0x68, 0xC8, 0x50, 0x0B, 0x39, 0x47, 0xE3, 0x0E, 0xAA, +0xC4, 0x6D, 0xB4, 0x9B, 0x1C, 0x3A, 0x4F, 0xD1, 0x78, 0x08, 0x43, 0xAB, 0x12, 0xDA, 0x70, 0x8E, +0x85, 0x32, 0x79, 0xAA, 0xB6, 0x40, 0x4F, 0x77, 0xEB, 0xBD, 0x77, 0x40, 0x76, 0x64, 0x10, 0xCE, +0x7A, 0xD7, 0x1F, 0x43, 0xEF, 0x93, 0x0F, 0xC3, 0xD0, 0xB3, 0x9B, 0xD8, 0x7B, 0x58, 0xF8, 0xB8, +0x42, 0x59, 0x83, 0x64, 0xD6, 0xAB, 0xCC, 0x88, 0x52, 0x13, 0x36, 0xAA, 0x66, 0x1E, 0x1D, 0x2B, +0xD3, 0xF2, 0x80, 0x0B, 0x22, 0x0A, 0x89, 0x0C, 0xA3, 0xDA, 0x6C, 0x5B, 0xE5, 0x20, 0xBC, 0x4A, +0x34, 0x67, 0x8C, 0xD5, 0x35, 0x2F, 0x16, 0xB4, 0xB4, 0x12, 0x24, 0xD1, 0x19, 0xDA, 0x87, 0xC0, +0x42, 0x72, 0x62, 0x14, 0xE4, 0x70, 0x2B, 0x84, 0x13, 0x1D, 0xB0, 0xA4, 0xBA, 0x07, 0x3A, 0xCC, +0x14, 0x34, 0xD8, 0x68, 0xD3, 0x90, 0x23, 0x84, 0xDF, 0x6A, 0x98, 0x2F, 0xDD, 0x36, 0xFF, 0x5D, +0xD0, 0x9B, 0x94, 0x79, 0x47, 0x7F, 0xDC, 0x95, 0x03, 0x2D, 0xD0, 0xD8, 0xDC, 0xC0, 0xB5, 0x74, +0x74, 0xB8, 0xC9, 0xAA, 0x63, 0x1B, 0x99, 0xA3, 0xA2, 0x51, 0xEC, 0x65, 0xAF, 0xAF, 0xE2, 0x05, +0x56, 0x6A, 0x9E, 0x2B, 0xCD, 0x23, 0xAE, 0x20, 0x03, 0x7D, 0x34, 0x7C, 0x1A, 0x19, 0x8B, 0x66, +0x10, 0x0C, 0x36, 0xA3, 0x18, 0x1D, 0x22, 0xF4, 0x94, 0x77, 0x4F, 0x54, 0xA1, 0x2D, 0x5D, 0x80, +0xAE, 0xEE, 0x4E, 0x48, 0x4E, 0x0E, 0x01, 0x95, 0x3B, 0xB9, 0xBC, 0x04, 0x29, 0xB4, 0xBF, 0xE3, +0x28, 0x7D, 0x04, 0x37, 0xEE, 0x78, 0xF4, 0xB7, 0xD0, 0xB3, 0x7F, 0x1F, 0xBC, 0xF5, 0x6F, 0x3E, +0x87, 0xAF, 0x85, 0xA6, 0xE3, 0xBE, 0x9F, 0xB1, 0xD7, 0xA6, 0x19, 0x53, 0xA4, 0x23, 0x8E, 0x62, +0x68, 0xA5, 0x48, 0x19, 0x58, 0xBB, 0xAC, 0x13, 0x64, 0x7C, 0xEF, 0x29, 0x35, 0x4C, 0xEF, 0x8F, +0x5E, 0xB9, 0x64, 0x26, 0xBB, 0x73, 0x45, 0x73, 0x19, 0xFE, 0xF3, 0x21, 0x78, 0x15, 0xE8, 0x15, +0x67, 0xEC, 0xA1, 0x9E, 0xCC, 0xD1, 0x33, 0x64, 0x60, 0xD9, 0x14, 0xBB, 0x9C, 0x03, 0xDB, 0x17, +0x86, 0xF1, 0xF2, 0x42, 0x37, 0x9B, 0xDD, 0xCD, 0x51, 0x6F, 0xCE, 0x1A, 0x4C, 0x74, 0x5F, 0x25, +0x22, 0x00, 0x81, 0x48, 0x90, 0x69, 0x88, 0x18, 0xCA, 0x98, 0xA0, 0x53, 0x98, 0x81, 0xF7, 0x15, +0x44, 0x05, 0xC1, 0xFA, 0x1E, 0x38, 0xAF, 0xA9, 0x09, 0x9C, 0xCE, 0x33, 0xB8, 0xA1, 0xA3, 0x3B, +0x1C, 0xDF, 0xC8, 0x2E, 0x5E, 0x91, 0x64, 0x2E, 0x20, 0x86, 0x44, 0x01, 0x6D, 0x68, 0xD0, 0x2D, +0x4F, 0xBD, 0x97, 0xE5, 0x78, 0x92, 0x4A, 0xE4, 0x47, 0x55, 0x69, 0x33, 0xF0, 0xC0, 0x4B, 0x1E, +0x10, 0x11, 0xA3, 0x49, 0x6A, 0x69, 0x52, 0x5B, 0x6E, 0xA0, 0x17, 0x96, 0x2C, 0x5E, 0x0A, 0x7E, +0x7F, 0x18, 0x19, 0x83, 0xCE, 0x10, 0x4A, 0x60, 0xA5, 0xE2, 0x40, 0x7F, 0xA6, 0x0A, 0x3E, 0x0E, +0x55, 0x3D, 0x1E, 0x2A, 0x6E, 0x6C, 0x18, 0xF6, 0x7C, 0xE8, 0xA3, 0xF0, 0xBE, 0x4F, 0xFD, 0x29, +0x5C, 0x83, 0xF1, 0xEE, 0xB7, 0x3E, 0xFB, 0x7F, 0xC1, 0x3F, 0x8E, 0xD0, 0x67, 0xD8, 0x0F, 0x8B, +0x3B, 0x9B, 0x10, 0xD2, 0x14, 0x40, 0xF1, 0x89, 0x2C, 0x0F, 0x4C, 0x1A, 0x83, 0x06, 0x9D, 0x38, +0x78, 0x4A, 0xA8, 0x7E, 0x1D, 0x95, 0x3F, 0x34, 0x84, 0xD5, 0x35, 0xF0, 0x2A, 0xD1, 0x2B, 0xCE, +0xD8, 0x91, 0xFE, 0xE4, 0xC4, 0x19, 0x4B, 0x00, 0x55, 0x58, 0x01, 0x64, 0xD7, 0x65, 0xE3, 0xDD, +0xC1, 0xAF, 0x72, 0x54, 0xCB, 0x7B, 0xE6, 0xBA, 0xB3, 0xE0, 0xDA, 0xAE, 0x55, 0x60, 0x8E, 0x1C, +0xC1, 0x10, 0x22, 0x8B, 0xF6, 0x4A, 0xAF, 0xAD, 0x3C, 0x73, 0xD8, 0xC8, 0x1F, 0x9F, 0x51, 0x84, +0xC8, 0x91, 0x5F, 0x83, 0x26, 0xFA, 0xC0, 0x8C, 0xC4, 0xA0, 0x35, 0x3B, 0xCE, 0xCB, 0x85, 0x1C, +0x98, 0xB6, 0x17, 0x93, 0x46, 0x10, 0xF3, 0x0D, 0xFB, 0x3C, 0xBB, 0x4A, 0xE3, 0x0D, 0xEA, 0x4C, +0xAD, 0x13, 0x83, 0xFC, 0x10, 0xCC, 0xA0, 0xB2, 0x17, 0x91, 0xF7, 0x18, 0x1D, 0x46, 0x46, 0x94, +0x91, 0xB9, 0xC3, 0x28, 0x99, 0x95, 0xD1, 0x3E, 0xCC, 0xBD, 0x36, 0xC1, 0xF0, 0xD0, 0x11, 0x0F, +0x55, 0x42, 0x55, 0x9B, 0x46, 0xA1, 0xF3, 0x61, 0x7C, 0xAA, 0xB9, 0x34, 0xD2, 0x80, 0x87, 0x22, +0xDA, 0xD0, 0xFF, 0xF8, 0xBB, 0x7F, 0x84, 0x77, 0x7E, 0xF0, 0x7D, 0xF0, 0x27, 0xFF, 0xF6, 0x2F, +0xF0, 0xCB, 0xFF, 0xF8, 0x07, 0x3C, 0x4C, 0xDE, 0x30, 0xCE, 0x60, 0x00, 0x0F, 0x1E, 0xED, 0x17, +0xC0, 0xE7, 0x71, 0x45, 0xEF, 0x3D, 0x69, 0xD6, 0x85, 0xE2, 0x18, 0x90, 0x47, 0xD5, 0x1C, 0x12, +0xCA, 0x67, 0xC3, 0xAB, 0x44, 0xAF, 0xB8, 0xF3, 0x94, 0x4E, 0x97, 0x9E, 0xC9, 0xA2, 0xD5, 0xC4, +0xFC, 0x36, 0xD0, 0xBE, 0xC0, 0x2C, 0x4A, 0xE5, 0xAE, 0xC3, 0x87, 0xDC, 0x78, 0xC8, 0x07, 0x37, +0x5C, 0xF9, 0x26, 0x88, 0xC9, 0xBF, 0x5B, 0x59, 0xC2, 0x39, 0xC7, 0xFF, 0x16, 0x40, 0xD5, 0x1C, +0xD3, 0xF2, 0xD0, 0x38, 0xDE, 0x0F, 0xED, 0x18, 0xFF, 0x86, 0x65, 0x01, 0x62, 0x08, 0xFF, 0x35, +0xF8, 0x3D, 0xA6, 0x0A, 0x35, 0x80, 0xDE, 0x27, 0xFC, 0x6E, 0xCD, 0x00, 0xF1, 0x59, 0x25, 0x27, +0x87, 0x5A, 0x42, 0xD0, 0x89, 0x22, 0xA7, 0xC6, 0xA8, 0x4D, 0x8C, 0x09, 0xE2, 0x79, 0x78, 0x7A, +0xCB, 0x6E, 0x7C, 0x9E, 0x0D, 0xC5, 0x8A, 0xCB, 0xCC, 0x84, 0xA1, 0x57, 0xD1, 0x3B, 0x47, 0xA6, +0x4C, 0x9B, 0x2A, 0x53, 0x41, 0x6F, 0x3A, 0x85, 0x29, 0xBD, 0x1F, 0x7C, 0xEB, 0xDB, 0xF0, 0xC4, +0x2F, 0xEF, 0x81, 0xB7, 0xFE, 0xED, 0xE7, 0x60, 0xE5, 0x25, 0x57, 0x62, 0xDE, 0x56, 0x85, 0x50, +0x10, 0xC3, 0x29, 0xC5, 0x87, 0x8E, 0x93, 0xC4, 0xFA, 0x84, 0x62, 0x41, 0x1F, 0x4A, 0x3F, 0x4A, +0x31, 0x3A, 0x51, 0xA1, 0x90, 0x0A, 0xBC, 0x55, 0x5D, 0xF7, 0x1F, 0x7F, 0xFD, 0x85, 0xBF, 0x81, +0x57, 0x81, 0x5E, 0x71, 0xC6, 0xDE, 0x7A, 0xEB, 0x05, 0x99, 0x67, 0x07, 0xF8, 0x7F, 0xF0, 0x09, +0x11, 0x17, 0x33, 0x22, 0xEE, 0x70, 0x2A, 0xEF, 0x3E, 0xFD, 0xEC, 0x6E, 0x6E, 0x4D, 0xD7, 0x12, +0x77, 0x75, 0x63, 0xD4, 0xAE, 0x94, 0x31, 0x21, 0xE0, 0x0E, 0xA0, 0xD7, 0x59, 0x66, 0x2A, 0x98, +0x88, 0x13, 0xBD, 0x1C, 0x28, 0x85, 0x21, 0x64, 0x3B, 0x83, 0xC8, 0x14, 0x92, 0x38, 0x5A, 0x35, +0x1A, 0xC1, 0x0B, 0xA9, 0x8A, 0xD4, 0xB3, 0x83, 0x17, 0x11, 0x7F, 0xD2, 0xFD, 0xCF, 0x27, 0x1A, +0x9A, 0x59, 0x27, 0x0E, 0x3C, 0xC9, 0x25, 0xBB, 0x3B, 0xAF, 0xB9, 0x11, 0x7C, 0x08, 0x6E, 0x90, +0x04, 0x07, 0xD1, 0xDB, 0x56, 0xD1, 0xA9, 0x1A, 0xD8, 0x7B, 0x84, 0xA9, 0xDD, 0x0A, 0x86, 0x2F, +0x81, 0x50, 0x14, 0xE2, 0x4D, 0x6D, 0xE8, 0x99, 0xFB, 0x98, 0xB4, 0x52, 0x47, 0x7D, 0x0E, 0x4D, +0x48, 0x11, 0x6F, 0x29, 0x94, 0xDC, 0xAF, 0x7D, 0xEB, 0xFB, 0xF0, 0xEB, 0x2F, 0x7F, 0x16, 0xBA, +0x37, 0xBC, 0x09, 0x1A, 0xCF, 0xB9, 0x9C, 0x75, 0x20, 0x28, 0x3E, 0x99, 0xCD, 0x4B, 0x0E, 0x86, +0x83, 0x98, 0x0E, 0xF4, 0xB1, 0x2A, 0x8F, 0x20, 0xDE, 0x12, 0x18, 0x0F, 0x53, 0xF3, 0x57, 0x42, +0xDB, 0xF6, 0xCF, 0xDF, 0xF8, 0xCE, 0xE3, 0xE7, 0xC2, 0x1C, 0xD3, 0x9C, 0x60, 0xC5, 0xFF, 0xF2, +0xF5, 0x7B, 0xBE, 0xE2, 0xCA, 0x6D, 0x49, 0x12, 0x84, 0x62, 0xC5, 0xE0, 0x30, 0x8E, 0x84, 0x8E, +0x05, 0x0B, 0x10, 0x71, 0xB2, 0xF8, 0x6A, 0x26, 0xCF, 0xBC, 0xDB, 0x2A, 0x8A, 0x73, 0xDD, 0xAB, +0x24, 0x22, 0x86, 0x4C, 0xD7, 0xAC, 0xC4, 0x64, 0xAE, 0x56, 0x1B, 0xEE, 0xAF, 0x25, 0xBF, 0xE5, +0xE7, 0x4F, 0x2F, 0x45, 0x46, 0xB8, 0x68, 0xEF, 0xC8, 0x99, 0xA1, 0x94, 0x9E, 0x8A, 0xD9, 0x22, +0x05, 0xC1, 0xFF, 0x78, 0x53, 0x02, 0xA2, 0x98, 0x12, 0xB4, 0xD0, 0xE3, 0x0D, 0xA2, 0x0D, 0xA4, +0xD7, 0xD5, 0x0C, 0x07, 0x25, 0x19, 0xBD, 0xE9, 0x42, 0x1E, 0x14, 0x8C, 0xAF, 0x11, 0x7E, 0x60, +0xF6, 0x92, 0x43, 0x30, 0xA5, 0x6C, 0x0B, 0xE8, 0x01, 0x23, 0x1E, 0x6D, 0x56, 0x41, 0x73, 0xC8, +0xF9, 0xC2, 0x5C, 0x6D, 0x20, 0x8C, 0x6F, 0x1C, 0x83, 0x27, 0x77, 0x1C, 0x86, 0x4D, 0xFF, 0xF3, +0xAF, 0x10, 0x5A, 0xB0, 0x0A, 0x1A, 0x2F, 0xBD, 0x19, 0x04, 0x9F, 0xC2, 0xE0, 0x46, 0xDA, 0x70, +0xE9, 0x60, 0x72, 0x9E, 0xBA, 0xFB, 0xC8, 0x89, 0x2A, 0xD1, 0x4C, 0x64, 0x4C, 0xD8, 0xA7, 0x87, +0x47, 0x40, 0x39, 0xF4, 0xE3, 0x6F, 0x7D, 0xE1, 0xEF, 0x3E, 0xF3, 0x8E, 0x8D, 0x1B, 0x37, 0xCD, +0x99, 0xB3, 0x3A, 0x27, 0x8C, 0x7D, 0xF2, 0xDE, 0xBF, 0x2A, 0x6A, 0x62, 0xE8, 0x37, 0xA8, 0x0A, +0x39, 0x0B, 0x83, 0xFA, 0x7C, 0xD1, 0x86, 0xA8, 0x2C, 0x39, 0xE5, 0x54, 0xDA, 0xB5, 0xCD, 0x49, +0xD0, 0x31, 0xF4, 0x20, 0xA6, 0x12, 0x83, 0xEB, 0x44, 0x98, 0xB1, 0x34, 0x8D, 0xB3, 0x24, 0x3D, +0x24, 0x79, 0xF4, 0x93, 0xBC, 0x5B, 0x81, 0xFF, 0x5D, 0xD5, 0x8B, 0x28, 0x30, 0x93, 0x6C, 0xAA, +0xC0, 0x90, 0x69, 0xF6, 0x13, 0xDA, 0xBE, 0x14, 0x1E, 0x26, 0x11, 0x19, 0xAC, 0x86, 0xC2, 0xCC, +0x86, 0x53, 0x66, 0x86, 0xEC, 0x31, 0x3D, 0x9F, 0x97, 0x44, 0x2F, 0xBF, 0x8A, 0xEF, 0xAB, 0xC8, +0x3E, 0xC8, 0x66, 0xD2, 0x30, 0x3A, 0x36, 0xC0, 0x16, 0x07, 0xEB, 0xF8, 0xF2, 0x3A, 0xA9, 0x67, +0x56, 0xA9, 0x81, 0xF6, 0x36, 0xDC, 0x0C, 0x1D, 0x9D, 0x6B, 0xF6, 0x1C, 0x4D, 0x97, 0x4B, 0x7B, +0xF6, 0x1E, 0x82, 0xBD, 0xDF, 0xFD, 0x77, 0x30, 0xF3, 0x69, 0x08, 0x5F, 0xFA, 0x07, 0x60, 0x4B, +0x7E, 0xAF, 0x82, 0x03, 0x35, 0x88, 0x8D, 0xEF, 0x4D, 0x25, 0x3C, 0x3C, 0x4D, 0x8E, 0xC3, 0xF7, +0x93, 0xD0, 0x14, 0x64, 0xD2, 0xE3, 0xAB, 0xFC, 0xDA, 0xF0, 0xA7, 0x9A, 0x61, 0x4B, 0x3B, 0xCC, +0x11, 0xCD, 0x59, 0x05, 0x45, 0xCE, 0xE5, 0xFE, 0x57, 0xF1, 0x07, 0xF4, 0xC6, 0xC6, 0x04, 0x84, +0x94, 0x00, 0xB4, 0xDB, 0x1C, 0x97, 0xEE, 0x1B, 0x9E, 0x7A, 0x7F, 0xB2, 0x7F, 0xB4, 0x07, 0x87, +0x98, 0x46, 0xB9, 0x4E, 0x52, 0x9D, 0xA6, 0xF3, 0xDC, 0xD1, 0x5A, 0xC4, 0x34, 0xBA, 0xD1, 0x7D, +0x75, 0x69, 0x9D, 0xEE, 0x30, 0xB1, 0x52, 0x16, 0x54, 0x8D, 0x14, 0x2E, 0x79, 0xAF, 0x29, 0xC2, +0x18, 0xC6, 0x9C, 0xE3, 0xA3, 0x49, 0xBC, 0xD0, 0xC0, 0xD4, 0xE6, 0xF3, 0x89, 0x99, 0x66, 0xBD, +0xC2, 0xF0, 0x69, 0x1A, 0x5F, 0x60, 0x23, 0x90, 0x62, 0xDB, 0x08, 0x3A, 0xA0, 0x06, 0x31, 0x6A, +0x23, 0x83, 0x10, 0xE1, 0x60, 0x37, 0x4B, 0xED, 0xB8, 0xA3, 0x0A, 0xC1, 0xEF, 0xEE, 0x1B, 0x4C, +0xC3, 0x78, 0x3A, 0x0F, 0x7D, 0xBF, 0xFD, 0x05, 0x54, 0x0E, 0x3F, 0x0B, 0xB1, 0x4B, 0xDE, 0x09, +0x6A, 0x4B, 0x17, 0x84, 0xD1, 0x99, 0x8A, 0xA3, 0x0A, 0x6E, 0x6E, 0x8E, 0x41, 0x63, 0x43, 0x98, +0xD5, 0x4F, 0x35, 0xC4, 0x42, 0x08, 0x6F, 0xA2, 0xE4, 0x27, 0x47, 0xD7, 0x55, 0xB3, 0xC9, 0x39, +0x1B, 0x5A, 0x32, 0x67, 0x8C, 0xED, 0xB3, 0xB8, 0x61, 0x45, 0x0D, 0x68, 0x2D, 0x5D, 0x8B, 0x60, +0xFD, 0xDA, 0xE5, 0x10, 0x94, 0x79, 0x9E, 0xF2, 0xA0, 0x20, 0x7B, 0x76, 0x95, 0x66, 0x0F, 0xAB, +0x35, 0x0F, 0x17, 0x28, 0xFF, 0x49, 0xE8, 0xEC, 0x34, 0xBE, 0x92, 0x84, 0xD5, 0xD5, 0xF1, 0x74, +0x72, 0x5E, 0x64, 0x52, 0xB8, 0x0F, 0x1F, 0x1B, 0xA2, 0x83, 0x82, 0x36, 0x9B, 0x16, 0x0B, 0xAB, +0xD4, 0xEB, 0xC3, 0xD1, 0x06, 0x69, 0x91, 0xA9, 0x7A, 0x07, 0x3D, 0x58, 0x3A, 0x0C, 0x02, 0x15, +0xB6, 0x21, 0x73, 0x99, 0xC4, 0x11, 0x8B, 0xA9, 0x2C, 0x15, 0xBD, 0x72, 0x02, 0x33, 0x48, 0x12, +0x25, 0x64, 0x2A, 0xC7, 0xCB, 0x30, 0x3A, 0x7C, 0xE8, 0x5A, 0x39, 0xD8, 0x7A, 0x5B, 0x1E, 0x42, +0xBF, 0xEA, 0x9F, 0x2C, 0x42, 0x05, 0xBD, 0xEB, 0xFC, 0xBE, 0x27, 0xA1, 0xB2, 0xFD, 0x7E, 0x08, +0x9C, 0x79, 0x35, 0x84, 0x56, 0x5D, 0x0C, 0x89, 0x78, 0x04, 0xC2, 0x68, 0x6F, 0x5B, 0x9B, 0xE3, +0xC8, 0xE0, 0x38, 0x33, 0x0B, 0x21, 0x55, 0x02, 0x85, 0xB3, 0x24, 0x21, 0xDF, 0x7B, 0xFD, 0x97, +0xBF, 0xFC, 0xE0, 0x3B, 0x61, 0x0E, 0x68, 0xCE, 0x18, 0x6B, 0x16, 0xF3, 0xE3, 0xE0, 0x8A, 0x99, +0x50, 0x20, 0x64, 0x7E, 0xF2, 0xA2, 0xB3, 0x31, 0x66, 0xC5, 0x70, 0xA3, 0x38, 0x8C, 0xF7, 0xD8, +0x2C, 0xFE, 0xD4, 0x51, 0x42, 0x28, 0x0D, 0x46, 0x4C, 0xA5, 0x7C, 0x27, 0x49, 0x25, 0x79, 0xBA, +0x22, 0x5E, 0x78, 0x6E, 0x1A, 0x37, 0x89, 0x91, 0xDA, 0xB4, 0xBA, 0xA4, 0x3A, 0xF3, 0x69, 0x84, +0xBC, 0xAC, 0xA8, 0x2C, 0x5F, 0x6A, 0xD7, 0xA6, 0xA3, 0x12, 0x18, 0xA2, 0xA0, 0xF4, 0x51, 0x7D, +0x52, 0x15, 0x33, 0x47, 0x25, 0xB4, 0xA7, 0x14, 0xF2, 0x58, 0xB5, 0x9A, 0x64, 0xF2, 0xB1, 0xA8, +0x00, 0x8E, 0xEE, 0xA7, 0x6C, 0x52, 0x94, 0x3A, 0xF7, 0x68, 0x50, 0x35, 0xDE, 0xE7, 0x53, 0x31, +0x9C, 0x89, 0xB6, 0x60, 0x22, 0x00, 0x0F, 0x81, 0x6B, 0x40, 0xA6, 0x30, 0x06, 0xF9, 0xFC, 0xE4, +0x05, 0x62, 0xEB, 0xFA, 0xB1, 0xBC, 0xBF, 0xE5, 0x4F, 0x77, 0xF5, 0x66, 0x77, 0x1E, 0x38, 0x3A, +0xEA, 0xD0, 0xB4, 0xF3, 0xE2, 0x68, 0x3F, 0x68, 0xCF, 0xDC, 0x0D, 0xE2, 0xBC, 0x65, 0xE0, 0x5B, +0x72, 0x11, 0x04, 0x31, 0x85, 0x17, 0x44, 0x20, 0x83, 0x96, 0x2A, 0xD2, 0xF8, 0x0C, 0x15, 0xE1, +0xC6, 0x58, 0x10, 0xB3, 0x56, 0x76, 0x35, 0x6A, 0xEF, 0xF8, 0xFA, 0x4F, 0xBE, 0xB1, 0xF1, 0xFF, +0xDE, 0x4A, 0x4B, 0x90, 0xE1, 0x15, 0xA4, 0x39, 0x63, 0x2C, 0xAD, 0xE9, 0x36, 0x79, 0x4E, 0x93, +0x14, 0xBF, 0x19, 0x6F, 0x0A, 0xBB, 0xE5, 0x22, 0xBA, 0x2B, 0xE4, 0x05, 0x23, 0x43, 0xC9, 0x1B, +0xA6, 0x46, 0x29, 0x6F, 0x30, 0x88, 0x8F, 0x49, 0x0C, 0xA9, 0x61, 0xF2, 0x6E, 0xA9, 0xFC, 0x53, +0xAA, 0x61, 0xC0, 0xAC, 0x37, 0x99, 0x98, 0x42, 0xCC, 0x23, 0x40, 0xC0, 0x71, 0xA7, 0xC0, 0x07, +0x0D, 0x01, 0x06, 0xAE, 0xC6, 0x70, 0x43, 0xF7, 0x3A, 0x04, 0x6C, 0x36, 0xE0, 0x4B, 0x60, 0x89, +0x72, 0x3A, 0x34, 0x04, 0x19, 0x66, 0xD0, 0x81, 0x2A, 0x19, 0x5E, 0xAD, 0x12, 0xBD, 0xBD, 0x55, +0x4B, 0xF3, 0x51, 0x3D, 0x32, 0x87, 0x7F, 0xF7, 0xD3, 0xE0, 0x55, 0x3C, 0x6C, 0x0C, 0xB8, 0x50, +0x13, 0xCC, 0x6E, 0x13, 0x90, 0x42, 0x15, 0x12, 0x9C, 0x6B, 0xF7, 0x73, 0xAE, 0x26, 0x2D, 0xED, +0xBA, 0xBA, 0x67, 0x58, 0x6E, 0xFE, 0x45, 0x7F, 0x46, 0x9F, 0x30, 0xD0, 0x5B, 0xD6, 0xF0, 0x3E, +0x2D, 0x33, 0x01, 0x95, 0xA7, 0x7E, 0x8A, 0x4E, 0x17, 0x7E, 0xBE, 0x33, 0xAE, 0x47, 0xEF, 0x3B, +0x81, 0xD2, 0x2A, 0xB1, 0x04, 0x3C, 0x85, 0x44, 0x04, 0x66, 0xC8, 0x98, 0x6D, 0xE2, 0xAB, 0x79, +0xCE, 0x9E, 0xD8, 0xFF, 0xB1, 0x66, 0x61, 0xE2, 0x62, 0x78, 0x05, 0x69, 0xCE, 0x18, 0xFB, 0xAD, +0x6F, 0x3D, 0x15, 0x57, 0x05, 0x37, 0xD2, 0xDC, 0x10, 0xF2, 0x89, 0xBE, 0x26, 0x1B, 0xF5, 0x1F, +0xB8, 0xF2, 0xF1, 0x81, 0xA3, 0x54, 0x6A, 0x42, 0x1E, 0x2D, 0x31, 0x88, 0x56, 0x80, 0x5A, 0x35, +0x51, 0x44, 0x65, 0xCD, 0x3C, 0x53, 0x83, 0xF0, 0x57, 0xDB, 0x9E, 0x52, 0xBD, 0xF5, 0x7F, 0x97, +0x0D, 0x8F, 0x89, 0xE9, 0x42, 0x09, 0x86, 0x27, 0x93, 0x90, 0x45, 0x2C, 0x57, 0xB3, 0x1C, 0x76, +0x58, 0x72, 0x25, 0x4C, 0x3C, 0xA0, 0xC4, 0xD2, 0x00, 0xFA, 0x49, 0x74, 0xDA, 0x8A, 0x84, 0x2E, +0xA1, 0xB7, 0x6A, 0xB3, 0xC1, 0x5D, 0x1C, 0xD8, 0x78, 0x10, 0xDC, 0x9A, 0x27, 0x4E, 0x9E, 0x6F, +0x46, 0xD3, 0xD0, 0x24, 0x08, 0xAC, 0xF2, 0x30, 0x97, 0x4B, 0xC1, 0xE4, 0x44, 0x2F, 0x4B, 0xCF, +0xD3, 0xBE, 0x3C, 0xDE, 0x97, 0xE8, 0x0B, 0x35, 0x74, 0xDE, 0xD2, 0xAC, 0xB6, 0xF6, 0xD1, 0x04, +0xB9, 0x58, 0x6C, 0xF5, 0x57, 0x0F, 0x95, 0xC4, 0xDB, 0x86, 0xC7, 0x33, 0xE8, 0xE9, 0xEB, 0x50, +0x29, 0xA0, 0x6A, 0xCE, 0x66, 0xA0, 0xBC, 0x77, 0x13, 0xB8, 0xE9, 0x01, 0x90, 0xCE, 0x7A, 0x33, +0xF8, 0xE2, 0x2D, 0x2C, 0xCD, 0x47, 0x15, 0x16, 0x32, 0xE6, 0x85, 0xA3, 0x0A, 0x07, 0x11, 0x94, +0x5C, 0xAE, 0x9C, 0x59, 0x19, 0xC8, 0x1E, 0xFA, 0xB3, 0x57, 0xB2, 0xD2, 0x62, 0xCE, 0x18, 0x7B, +0xDE, 0xFC, 0xC2, 0x65, 0x12, 0xE7, 0x34, 0x0A, 0x92, 0xC8, 0xC4, 0xCA, 0xC8, 0xE6, 0x00, 0x5D, +0x64, 0xF4, 0x52, 0xBD, 0xF2, 0x12, 0x52, 0xB7, 0x3A, 0x32, 0xAD, 0x40, 0x25, 0x27, 0x28, 0x3D, +0x1A, 0x4D, 0x07, 0x27, 0x0F, 0x1A, 0x2F, 0x58, 0x1E, 0x19, 0x54, 0x46, 0xA6, 0x14, 0x99, 0xC4, +0x1D, 0xBF, 0x55, 0x51, 0x65, 0x17, 0x74, 0xCF, 0x93, 0x66, 0x7F, 0xC3, 0x0C, 0x0C, 0x3D, 0xA7, +0x8C, 0x80, 0x42, 0x1A, 0x99, 0x57, 0xC0, 0x9C, 0x6A, 0x19, 0x5F, 0x2F, 0x8B, 0xB9, 0xD3, 0x4C, +0xA9, 0xCA, 0x98, 0xAA, 0xE3, 0xA1, 0x31, 0x2C, 0x4F, 0xDA, 0x49, 0xFA, 0xED, 0x9A, 0x9A, 0xB7, +0xC9, 0xA3, 0xA6, 0x71, 0xB9, 0xA4, 0x9F, 0x39, 0x4C, 0xE2, 0x6B, 0x45, 0xFC, 0x6C, 0x1A, 0x9B, +0xBB, 0x48, 0xCC, 0x95, 0x7C, 0xE1, 0x43, 0x81, 0x95, 0x67, 0x3D, 0x41, 0x4C, 0xA5, 0xC7, 0xEF, +0xDA, 0xF5, 0xBD, 0x5C, 0x56, 0x9A, 0x77, 0xFB, 0xF0, 0x44, 0x16, 0xCA, 0x25, 0x0D, 0xE1, 0x48, +0x84, 0x21, 0xAB, 0x06, 0x4B, 0x00, 0x38, 0x7D, 0x3B, 0x80, 0xEB, 0xDB, 0x0A, 0xEA, 0x79, 0x37, +0x42, 0x70, 0xF1, 0xD9, 0x5E, 0x3C, 0x4E, 0xE5, 0x33, 0xC8, 0x5C, 0xC5, 0x47, 0x03, 0x4F, 0x78, +0x89, 0x33, 0x73, 0x67, 0x47, 0xE5, 0xD1, 0x8B, 0x59, 0xE1, 0xFC, 0x2B, 0x40, 0x73, 0x16, 0x57, +0xDD, 0x7D, 0xDF, 0x6F, 0xFE, 0xEE, 0xC6, 0x77, 0xDF, 0xE4, 0x53, 0x7D, 0xE4, 0x2C, 0x09, 0x88, +0x09, 0x57, 0x61, 0xAC, 0x5C, 0x06, 0x09, 0x25, 0x6C, 0x12, 0xFF, 0x22, 0x21, 0x43, 0x30, 0x65, +0xE2, 0x31, 0x0B, 0x9D, 0x92, 0xBA, 0x47, 0x5C, 0x21, 0xDB, 0x6B, 0x3B, 0x2F, 0xF9, 0xFA, 0x1A, +0x32, 0x8C, 0x1E, 0x4B, 0x30, 0xA3, 0x1F, 0xA5, 0x90, 0xEA, 0x0A, 0xD3, 0x55, 0x54, 0xAF, 0x8E, +0x80, 0x7F, 0xD7, 0xC1, 0x40, 0x69, 0xF4, 0xCB, 0xB4, 0xE1, 0xD9, 0x41, 0xE6, 0xBB, 0xE8, 0x18, +0x01, 0x93, 0x56, 0x93, 0x0A, 0xC4, 0xD9, 0x1E, 0x08, 0x34, 0x03, 0xC8, 0xC4, 0x5C, 0xB9, 0x84, +0xD2, 0xE9, 0x47, 0x3B, 0x19, 0x86, 0x5C, 0x3E, 0x83, 0x6A, 0x34, 0x84, 0xB1, 0x6A, 0xAC, 0x2A, +0x88, 0xBE, 0x67, 0x68, 0x3A, 0xDC, 0xF4, 0xF7, 0x1C, 0x3E, 0xF2, 0xEB, 0x67, 0x0F, 0x89, 0x67, +0xFC, 0x3C, 0xEC, 0x0E, 0xBC, 0x95, 0x5B, 0xB6, 0xC0, 0x4B, 0x02, 0xD0, 0x52, 0x27, 0xBC, 0xF9, +0x51, 0x6A, 0xF9, 0x4A, 0x16, 0xFC, 0x2B, 0xAE, 0x42, 0xCD, 0x20, 0x42, 0x61, 0xDF, 0x13, 0x20, +0x62, 0x6A, 0xD1, 0xC5, 0x83, 0xE4, 0x62, 0xDA, 0x11, 0x55, 0x78, 0x44, 0x2D, 0xA7, 0x3F, 0x1F, +0x4E, 0x6D, 0xA7, 0x0D, 0x27, 0xBF, 0x86, 0x93, 0x4C, 0x73, 0x22, 0xB1, 0xFF, 0xF6, 0x6F, 0xF7, +0x84, 0x52, 0xA9, 0x91, 0xF9, 0x07, 0x8E, 0x1C, 0x83, 0x3D, 0x7B, 0xF7, 0xE3, 0xA9, 0x2E, 0x73, +0x96, 0x2D, 0x43, 0xA9, 0x4A, 0x33, 0xFF, 0xCB, 0xC0, 0xE5, 0x72, 0x30, 0x8E, 0xFA, 0xAE, 0xDF, +0x44, 0xA4, 0x47, 0xB7, 0x58, 0xCE, 0x34, 0x8F, 0x12, 0x98, 0x43, 0x78, 0xCF, 0x40, 0xB5, 0x6A, +0x11, 0x02, 0x54, 0xB1, 0x7F, 0xE7, 0x66, 0xA1, 0x74, 0xD1, 0xAE, 0x76, 0xA2, 0x34, 0xB5, 0x6D, +0xE0, 0x63, 0x93, 0xF8, 0x73, 0xBC, 0x64, 0xC2, 0xC1, 0xC3, 0x83, 0xEC, 0xF9, 0xBA, 0xE5, 0xB0, +0x9A, 0x24, 0x92, 0xD0, 0x0C, 0x15, 0xC0, 0xE9, 0x0E, 0x73, 0x9A, 0x74, 0x7C, 0x4D, 0xB4, 0x9A, +0x2C, 0xDF, 0x5A, 0xA1, 0xAA, 0xC3, 0x9A, 0x8A, 0x0F, 0xE1, 0x0F, 0xDE, 0xA8, 0xA2, 0x94, 0xCA, +0xE8, 0x3C, 0x75, 0x32, 0x47, 0x4C, 0xF6, 0x05, 0x8F, 0xC4, 0x5A, 0xBB, 0x5F, 0x70, 0x62, 0x9B, +0x14, 0xF2, 0xFF, 0x77, 0x9F, 0x13, 0x3E, 0x94, 0x4C, 0x17, 0x21, 0x55, 0xD0, 0xA0, 0x90, 0x46, +0x09, 0x26, 0x73, 0x80, 0x49, 0x7A, 0xA3, 0x90, 0x01, 0x63, 0xC7, 0x2F, 0x99, 0x4A, 0x6E, 0xBA, +0xFC, 0x3D, 0x68, 0x77, 0x63, 0x88, 0x78, 0x49, 0x88, 0x4C, 0xC9, 0x10, 0xF1, 0xA1, 0xE2, 0x2A, +0x8F, 0xB6, 0x15, 0xB2, 0x13, 0x9F, 0x7E, 0x25, 0x1C, 0xA9, 0x39, 0x91, 0x58, 0xC3, 0x27, 0xCF, +0xCB, 0xDB, 0x56, 0x3C, 0x87, 0x2A, 0xEB, 0xD1, 0x6D, 0xDB, 0x21, 0xB7, 0xDC, 0x12, 0xC4, 0x60, +0x23, 0x4A, 0x4F, 0x13, 0x4A, 0xE3, 0x00, 0x64, 0x91, 0x89, 0x15, 0x4C, 0xE5, 0x95, 0x04, 0x0F, +0x4F, 0xA6, 0x44, 0x00, 0x21, 0x43, 0x75, 0xC7, 0x48, 0x47, 0x06, 0x18, 0x36, 0xDE, 0xD0, 0x2E, +0x12, 0x1F, 0xEB, 0x76, 0x31, 0x6F, 0x38, 0x2C, 0xFE, 0x24, 0x4A, 0x96, 0x5D, 0x54, 0x79, 0x9E, +0x33, 0x25, 0xD4, 0xA7, 0xC7, 0x50, 0x27, 0x00, 0x7A, 0xB4, 0x21, 0x8C, 0x7B, 0x2A, 0xD4, 0x3A, +0x49, 0x7D, 0xD0, 0xEC, 0x75, 0x50, 0xC2, 0x91, 0x75, 0x3A, 0xA9, 0x62, 0xF7, 0xB9, 0x61, 0x15, +0xC7, 0xE2, 0x69, 0xF4, 0x95, 0x11, 0x35, 0x52, 0x42, 0xDD, 0xAE, 0x6D, 0x14, 0x38, 0x81, 0x77, +0x72, 0x66, 0x45, 0x1B, 0x7F, 0xA1, 0xEF, 0xB6, 0x47, 0x5D, 0xFC, 0xF4, 0xCA, 0xDC, 0xE1, 0x7F, +0x18, 0x48, 0x96, 0xFF, 0x17, 0x0F, 0x4C, 0x94, 0x40, 0x14, 0xC9, 0x5F, 0x62, 0xEA, 0xD7, 0x14, +0xD1, 0x23, 0x47, 0x4D, 0x51, 0x78, 0xFC, 0xE7, 0x10, 0x5D, 0x73, 0x09, 0xC4, 0x2F, 0x7D, 0x17, +0x8C, 0xDE, 0xFF, 0x6D, 0x74, 0x08, 0x6D, 0xE6, 0x35, 0xB3, 0x49, 0xE7, 0x95, 0xF1, 0x0B, 0x97, +0x44, 0xFA, 0xFF, 0x10, 0x5F, 0xEA, 0xBF, 0xE0, 0x24, 0xD2, 0x9C, 0x48, 0x6C, 0x26, 0x99, 0x0B, +0x15, 0x73, 0x15, 0x36, 0x30, 0x1A, 0x30, 0x53, 0xF3, 0xE4, 0x9E, 0x3D, 0x20, 0x60, 0x08, 0x80, +0x7E, 0x2C, 0x4C, 0x6A, 0x9E, 0x84, 0x52, 0x32, 0xBC, 0x82, 0xD2, 0x4A, 0x8E, 0x0F, 0x95, 0xA2, +0x90, 0x1D, 0x24, 0x46, 0xD0, 0xAD, 0x8A, 0xD2, 0x4C, 0x1E, 0xAC, 0xEE, 0xF2, 0xCC, 0x53, 0xD6, +0x68, 0xF6, 0x3F, 0xDE, 0x4A, 0xC8, 0x24, 0xCD, 0xAE, 0x3B, 0x53, 0xC8, 0x2C, 0x7C, 0x2C, 0x4D, +0x25, 0xAF, 0x4E, 0xBB, 0x95, 0xF1, 0x05, 0xF2, 0x28, 0xC1, 0x65, 0xB3, 0xF6, 0x6F, 0xDB, 0x73, +0xC8, 0xF4, 0x1A, 0x37, 0xCD, 0xE7, 0xC7, 0xC1, 0x04, 0x7C, 0xC8, 0x7E, 0x52, 0xBF, 0x84, 0x40, +0x71, 0xBC, 0xE8, 0x37, 0x05, 0x21, 0x38, 0xE1, 0x6B, 0x6C, 0x2F, 0xBE, 0xD0, 0x77, 0xEB, 0xDF, +0xFC, 0xBD, 0xAA, 0x15, 0x6A, 0x7D, 0x22, 0x9D, 0xAF, 0xEC, 0x9B, 0x44, 0xD0, 0xA2, 0x84, 0x5E, +0x37, 0xD9, 0x5C, 0xEA, 0xB3, 0xAD, 0xEF, 0x08, 0xA1, 0xF8, 0xB8, 0x7A, 0xF8, 0x69, 0x30, 0xFA, +0x77, 0x41, 0xEB, 0xB5, 0x1F, 0x04, 0xA5, 0x65, 0x21, 0x4B, 0x16, 0xF8, 0x31, 0x89, 0x40, 0x60, +0x8A, 0x95, 0x1B, 0xB8, 0xE1, 0x73, 0x7F, 0xF9, 0x95, 0xF5, 0x70, 0x12, 0x69, 0x4E, 0x18, 0xFB, +0xEB, 0x27, 0x77, 0xE7, 0x86, 0xB3, 0x3C, 0xAA, 0xA8, 0x12, 0x34, 0x34, 0xC6, 0xE1, 0xEB, 0x77, +0xDE, 0x81, 0x57, 0x38, 0xED, 0x0A, 0x31, 0xDB, 0x4E, 0xA2, 0x4A, 0xCD, 0xE0, 0x85, 0x4F, 0x95, +0xBC, 0x52, 0xCF, 0x1C, 0xE6, 0x44, 0x69, 0x19, 0x61, 0xB5, 0x26, 0x59, 0xC4, 0x10, 0x62, 0x1A, +0xF1, 0x8F, 0xB6, 0x4B, 0x92, 0x93, 0x25, 0x20, 0x33, 0x24, 0xBC, 0x09, 0xD3, 0xA4, 0x8D, 0x18, +0x4C, 0xB7, 0x0A, 0xDE, 0x4A, 0x96, 0x77, 0x33, 0x30, 0xD4, 0xA1, 0x3D, 0x76, 0x79, 0x7C, 0x8F, +0x0A, 0xDA, 0x5A, 0x6A, 0x71, 0xAD, 0x52, 0x12, 0x1E, 0x1F, 0x43, 0xE1, 0x4E, 0x99, 0x06, 0x65, +0xBA, 0x24, 0xBD, 0xE8, 0x48, 0x4D, 0x0D, 0x90, 0xA7, 0x2D, 0x10, 0x68, 0x8B, 0xD1, 0x2E, 0x9B, +0xE5, 0x41, 0x54, 0xC3, 0x81, 0x54, 0x20, 0xD4, 0xB4, 0x73, 0xFB, 0x7D, 0x1B, 0x2B, 0xBF, 0xF7, +0xFB, 0x3D, 0x7E, 0xD7, 0xD8, 0x6E, 0xF5, 0xFC, 0xBF, 0x1B, 0x2E, 0xC2, 0xB3, 0xB9, 0xA2, 0x06, +0xF9, 0x6C, 0x1E, 0xF2, 0xE9, 0x0C, 0x54, 0x4A, 0xC7, 0x9F, 0xA2, 0xA8, 0x0A, 0x38, 0xC3, 0xFB, +0xC0, 0xDD, 0xFB, 0x2B, 0x68, 0xBD, 0xF0, 0x3A, 0x88, 0xAD, 0xBD, 0x94, 0x85, 0x40, 0xA1, 0x78, +0x14, 0x04, 0x2B, 0x73, 0x45, 0x8B, 0xB9, 0xE3, 0x33, 0x64, 0xB2, 0xE0, 0x24, 0xD1, 0x9C, 0x30, +0xF6, 0xFA, 0xAB, 0xCF, 0xB5, 0x10, 0x25, 0x46, 0x87, 0x88, 0x67, 0x6B, 0x57, 0x28, 0x19, 0xFD, +0xE4, 0xE8, 0x61, 0x2E, 0x2E, 0x84, 0x78, 0xC3, 0xE1, 0x19, 0xD3, 0x2A, 0x28, 0xB9, 0xE5, 0x74, +0x09, 0x81, 0x0B, 0x0B, 0x53, 0x65, 0x1C, 0xAB, 0x57, 0xAA, 0x25, 0x7B, 0x98, 0x8D, 0xA5, 0xF3, +0x6F, 0xB1, 0x7C, 0x2E, 0xB0, 0xDF, 0xC9, 0x3E, 0xD6, 0x6F, 0x44, 0x54, 0x84, 0xC6, 0x6E, 0xF8, +0xBB, 0xC6, 0x79, 0x7F, 0xCF, 0xE3, 0x0B, 0x14, 0x49, 0xED, 0x22, 0xA3, 0x8A, 0xC8, 0xC4, 0xAA, +0xEB, 0x95, 0xCA, 0xD0, 0xCA, 0x16, 0x6D, 0x5A, 0xC2, 0x41, 0x65, 0x03, 0x6E, 0x6B, 0xDE, 0x31, +0x7A, 0xE9, 0x54, 0x97, 0x45, 0xC7, 0x88, 0xDA, 0x3E, 0x24, 0x49, 0x1E, 0xF7, 0x45, 0x9A, 0x5F, +0x72, 0x45, 0xCB, 0xC1, 0xAD, 0xDF, 0x7F, 0xAC, 0xA0, 0x76, 0x7E, 0x61, 0x70, 0xB2, 0x80, 0xA6, +0xC5, 0xC2, 0xB0, 0xCB, 0x80, 0xC9, 0x6C, 0x09, 0xC3, 0xA6, 0x12, 0x9B, 0x89, 0x41, 0x24, 0x51, +0x57, 0x7E, 0xB5, 0x08, 0xE6, 0xCE, 0xFB, 0xC0, 0xDF, 0xBE, 0x14, 0x16, 0xBD, 0xF7, 0xEF, 0x59, +0xCA, 0x4F, 0x95, 0xD0, 0xDE, 0x67, 0xB2, 0xE7, 0x89, 0x63, 0xCF, 0xBC, 0xF5, 0x1F, 0x3F, 0xFE, +0x95, 0x30, 0x9C, 0x04, 0x9A, 0x13, 0xC6, 0xDE, 0xBB, 0x63, 0xF7, 0xA8, 0x4F, 0x70, 0x1E, 0xA3, +0x39, 0xEF, 0xC4, 0xC4, 0xC6, 0x68, 0x08, 0x7E, 0xFC, 0xE4, 0x53, 0xF0, 0xF4, 0x10, 0xC6, 0x7B, +0xC1, 0x79, 0x30, 0x61, 0x78, 0xD3, 0x4B, 0xAB, 0x6C, 0x47, 0x0E, 0x66, 0x80, 0x4C, 0x92, 0x40, +0x8E, 0x31, 0x54, 0x73, 0xBD, 0x38, 0x96, 0x54, 0x6F, 0xA5, 0xC6, 0x38, 0x92, 0x2D, 0xF1, 0x79, +0x2A, 0xB4, 0x8C, 0x2F, 0x40, 0xB7, 0x0A, 0x03, 0x36, 0x3C, 0xFB, 0x59, 0xC5, 0x5B, 0x09, 0x6F, +0x05, 0x54, 0xF3, 0xE4, 0x35, 0xD3, 0xDF, 0x28, 0x3E, 0x36, 0x9F, 0x67, 0x57, 0xA7, 0x93, 0x81, +0xB1, 0xAD, 0x24, 0x07, 0x10, 0x7E, 0x0C, 0xA3, 0x77, 0x4B, 0xFD, 0xB1, 0xE1, 0x43, 0x16, 0xEF, +0x3B, 0xA1, 0xDD, 0x3B, 0xBA, 0xB2, 0xFE, 0xAE, 0x01, 0xAB, 0xE9, 0x5F, 0x46, 0x93, 0x39, 0xD6, +0x4D, 0x60, 0x52, 0xA1, 0x5B, 0xA6, 0x00, 0xD4, 0xA6, 0x62, 0xE0, 0x67, 0x20, 0x14, 0x8D, 0xE2, +0x5A, 0xD9, 0xD1, 0xC1, 0xDD, 0x79, 0x0F, 0x7B, 0x4E, 0x00, 0x4D, 0x52, 0x22, 0x11, 0x86, 0xD6, +0xA8, 0x10, 0x0D, 0xEA, 0xBD, 0x9F, 0x09, 0x4B, 0x43, 0x37, 0xC1, 0x49, 0xA0, 0x39, 0x61, 0x2C, +0x85, 0x09, 0xB1, 0x86, 0xC5, 0x5F, 0x8B, 0x47, 0xC3, 0x25, 0x62, 0x6E, 0xD5, 0x74, 0xD1, 0x8B, +0xAD, 0xC0, 0xB3, 0xBD, 0x7D, 0x5C, 0xC8, 0xDF, 0x06, 0x45, 0x8C, 0x1B, 0x99, 0x87, 0x4A, 0x4E, +0x12, 0xDD, 0x38, 0xFA, 0x1D, 0x18, 0x53, 0xE9, 0xDF, 0xC4, 0x49, 0x1F, 0x2D, 0x30, 0x44, 0xC7, +0x26, 0xC0, 0xB9, 0x10, 0x11, 0x39, 0x4C, 0xD0, 0x73, 0x10, 0x46, 0x73, 0x18, 0xAE, 0xA1, 0x8B, +0x61, 0x59, 0x82, 0x00, 0xC5, 0x8B, 0x94, 0x20, 0xA0, 0xDC, 0x6D, 0x4D, 0x4A, 0x88, 0xFF, 0xD3, +0x11, 0x2A, 0x22, 0x02, 0x23, 0x5E, 0x20, 0x39, 0xC4, 0x54, 0x32, 0x7D, 0x06, 0x25, 0x14, 0x07, +0x5F, 0x0D, 0xB7, 0xF6, 0xF9, 0x03, 0x7B, 0x9A, 0x85, 0xE8, 0x09, 0xCD, 0x69, 0xA3, 0x18, 0x77, +0x54, 0xE8, 0xF8, 0xEA, 0x50, 0xD9, 0x87, 0xF6, 0xB6, 0xC0, 0xB6, 0x74, 0x11, 0xD1, 0xAA, 0xB5, +0x54, 0x9A, 0x66, 0x66, 0xE8, 0x0C, 0x7B, 0xAE, 0x67, 0x82, 0x5C, 0x4B, 0xC7, 0xD7, 0x0F, 0xB1, +0xA4, 0x7D, 0x20, 0xE8, 0x07, 0xD9, 0xAD, 0x74, 0x86, 0x9D, 0xC2, 0x07, 0x2E, 0xBC, 0xFE, 0xDF, +0x5E, 0xB6, 0x4A, 0x9E, 0x33, 0x80, 0xE2, 0x83, 0x1F, 0xFA, 0xE4, 0x9E, 0x2B, 0xCF, 0x5E, 0x57, +0xB9, 0xA0, 0xBB, 0x05, 0xCE, 0x88, 0x85, 0xA1, 0x2D, 0x16, 0x40, 0xA7, 0x26, 0x0B, 0x7B, 0xC7, +0xC6, 0xDD, 0x15, 0x1D, 0x17, 0xB9, 0x05, 0x54, 0x9B, 0x25, 0xD4, 0xBF, 0x65, 0xD3, 0x8B, 0x61, +0xA9, 0x54, 0x95, 0x00, 0x03, 0x95, 0x92, 0xD9, 0xB4, 0xC7, 0xCE, 0xB1, 0x20, 0x80, 0x30, 0x02, +0x8D, 0xD8, 0xA3, 0x21, 0x6C, 0x32, 0x7E, 0x72, 0xFA, 0x3D, 0x54, 0xF3, 0xEB, 0x1B, 0x44, 0x9B, +0x31, 0x3C, 0x4A, 0x37, 0x72, 0x4C, 0x80, 0x0E, 0x00, 0x15, 0xAF, 0x09, 0x53, 0xB7, 0xA9, 0x2F, +0x4D, 0x66, 0xB4, 0xA6, 0x7A, 0x7D, 0xD3, 0x38, 0x9C, 0xA5, 0xC2, 0x37, 0x25, 0x8A, 0x30, 0xA4, +0x0F, 0x0A, 0x99, 0x3E, 0x04, 0x14, 0x22, 0xE8, 0xE4, 0x25, 0x9E, 0xAA, 0x83, 0x12, 0x27, 0x42, +0x07, 0xB7, 0xFF, 0x68, 0x2C, 0x67, 0xC2, 0x5F, 0x0E, 0x64, 0xAA, 0x25, 0x1A, 0x94, 0x9D, 0xCD, +0x97, 0x58, 0xC6, 0x89, 0x92, 0x0F, 0xD9, 0x94, 0xB7, 0x94, 0xD3, 0x66, 0xA5, 0x3F, 0x36, 0x9B, +0xA5, 0xA1, 0x86, 0x23, 0x10, 0xC2, 0xA4, 0x41, 0x43, 0x3C, 0x04, 0xAD, 0x4D, 0x18, 0x0E, 0x59, +0x13, 0x97, 0xDC, 0xB0, 0x82, 0xCD, 0xB6, 0x78, 0x59, 0x34, 0x67, 0x8C, 0x15, 0x1D, 0x4D, 0x55, +0x7D, 0x82, 0xD8, 0xDE, 0x12, 0x81, 0x9B, 0x2E, 0xEC, 0x82, 0xB7, 0xAF, 0x6E, 0x87, 0x37, 0xAF, +0xEC, 0x80, 0x8E, 0x68, 0x9E, 0x5B, 0xDE, 0xD8, 0xCA, 0x45, 0xA3, 0xAD, 0x2C, 0xCC, 0x50, 0x90, +0x19, 0x94, 0x87, 0xA5, 0x34, 0x1E, 0x95, 0x76, 0xAA, 0xC8, 0x4C, 0x19, 0x2F, 0x80, 0xC3, 0xF2, +0xB0, 0x2F, 0xFE, 0x1E, 0x94, 0x38, 0xA7, 0xF9, 0xC4, 0x22, 0xDA, 0x70, 0x15, 0x13, 0x08, 0x12, +0xBE, 0x1E, 0x25, 0xEA, 0x68, 0x07, 0x00, 0xB1, 0xAF, 0x2E, 0xC5, 0x44, 0xC4, 0xD0, 0x00, 0x95, +0x8D, 0xD6, 0x44, 0x59, 0xC3, 0xF7, 0x0B, 0xA3, 0xA4, 0xCA, 0x4A, 0x10, 0x0A, 0xD9, 0x61, 0xE6, +0xA4, 0xF9, 0xD4, 0xD0, 0x98, 0x2F, 0xD0, 0xBD, 0x07, 0x66, 0x48, 0xBD, 0x89, 0x37, 0x6D, 0x4A, +0x55, 0xD5, 0xAF, 0xF4, 0x8C, 0xE6, 0x27, 0x93, 0x99, 0x22, 0x24, 0x27, 0x32, 0x0C, 0xF1, 0x22, +0x67, 0xA9, 0x88, 0x28, 0x1A, 0xF5, 0x02, 0xB9, 0x35, 0x67, 0x8D, 0x54, 0x33, 0x61, 0xE1, 0xFE, +0x40, 0x00, 0x12, 0xD1, 0x00, 0x4B, 0x1C, 0x24, 0xB4, 0x6D, 0xD7, 0x7E, 0xE3, 0xEF, 0x3F, 0xFB, +0x17, 0x1F, 0xFF, 0xF8, 0x03, 0x3E, 0x98, 0x25, 0xCD, 0x19, 0x63, 0x55, 0x4E, 0x6B, 0xD1, 0x34, +0xD3, 0x6F, 0x99, 0x9E, 0xD3, 0xC2, 0xDA, 0xFD, 0xA9, 0x10, 0x0C, 0x53, 0x77, 0x05, 0xBD, 0x0A, +0x1D, 0x0D, 0x0B, 0x30, 0xB6, 0x0B, 0xB3, 0x49, 0x2E, 0xE4, 0xF1, 0x4A, 0xAC, 0x00, 0xCD, 0x65, +0xCC, 0x24, 0x7E, 0x70, 0x35, 0xC9, 0x62, 0x13, 0xF6, 0xE8, 0x27, 0x5E, 0x10, 0x11, 0xED, 0x93, +0x50, 0xAB, 0x75, 0xAA, 0x97, 0x3C, 0xB1, 0xBD, 0xB0, 0xB5, 0x6F, 0x45, 0x5E, 0x34, 0x7B, 0x3D, +0x00, 0xD6, 0xC7, 0xFA, 0x7C, 0xA2, 0x58, 0x53, 0xC6, 0x1C, 0xB0, 0x8B, 0x37, 0x01, 0x55, 0xA2, +0x80, 0xB6, 0x55, 0x47, 0xB4, 0x88, 0x66, 0x2A, 0x0A, 0x18, 0xC7, 0x0A, 0x72, 0xCB, 0x23, 0xBB, +0x36, 0x6F, 0x9C, 0xF1, 0x8E, 0xF6, 0xFE, 0xCD, 0x1B, 0xAB, 0xBD, 0xD2, 0xBA, 0xFF, 0x4A, 0x55, +0xC5, 0xDB, 0x47, 0x10, 0x72, 0x4C, 0x66, 0xA9, 0x73, 0xAF, 0xC4, 0x86, 0x85, 0x95, 0x8A, 0xD4, +0xB1, 0xE7, 0xE1, 0xE1, 0x44, 0xA4, 0x99, 0x54, 0x3F, 0xAA, 0xE2, 0x80, 0x1F, 0x99, 0xEB, 0x87, +0x78, 0x02, 0x25, 0x18, 0x4F, 0x68, 0xA3, 0x52, 0x7C, 0xEF, 0x92, 0xC6, 0x63, 0x4B, 0x7E, 0xDF, +0xDE, 0xBD, 0x97, 0xA2, 0x39, 0x83, 0x14, 0x55, 0x5E, 0x0F, 0x96, 0xB5, 0x12, 0xC7, 0x3A, 0xE1, +0x6A, 0xA2, 0x47, 0xB6, 0x8F, 0xD6, 0x92, 0x1D, 0x9E, 0xDC, 0x03, 0x8B, 0x9B, 0x56, 0x60, 0x18, +0x52, 0x81, 0x12, 0xDF, 0x0F, 0x12, 0xA6, 0xDB, 0x44, 0xD7, 0x66, 0xA7, 0x8E, 0x4A, 0x39, 0x7D, +0x02, 0x31, 0xC5, 0x62, 0xBB, 0xEB, 0xEA, 0x4E, 0x4F, 0x00, 0x55, 0x97, 0x40, 0x13, 0xE5, 0x8B, +0xDE, 0xB8, 0x45, 0x7A, 0x8C, 0x86, 0x5F, 0x87, 0xA7, 0x02, 0x37, 0xFC, 0x37, 0x87, 0xD8, 0xB0, +0x43, 0x45, 0xDC, 0xD3, 0xF8, 0xE9, 0xA5, 0x02, 0x31, 0xD7, 0x4A, 0xB0, 0x1F, 0x2F, 0x81, 0xE8, +0x47, 0x87, 0x0C, 0xD1, 0x2E, 0x0B, 0x01, 0x48, 0x1A, 0x58, 0xA2, 0x95, 0x52, 0x6C, 0x51, 0x22, +0x79, 0xEE, 0xB4, 0x8D, 0x4B, 0x50, 0x82, 0x4F, 0xC2, 0x2C, 0xE9, 0xE0, 0xF6, 0xFF, 0x1D, 0x33, +0x2F, 0xFE, 0xC0, 0x67, 0xCB, 0x99, 0x83, 0x2B, 0x84, 0x89, 0xDC, 0x15, 0xBA, 0xEB, 0x9D, 0x38, +0xB7, 0x86, 0x4D, 0x2B, 0x04, 0x7B, 0x92, 0x23, 0x47, 0xBB, 0xF9, 0x30, 0x21, 0x4F, 0xD7, 0x45, +0xA8, 0xCD, 0xBC, 0x58, 0x88, 0x3F, 0x93, 0xBA, 0xB0, 0x4A, 0x29, 0xE6, 0xFE, 0xFE, 0x9F, 0x4B, +0xC1, 0xCF, 0xFC, 0x2D, 0xBA, 0x29, 0x30, 0x43, 0x9A, 0x33, 0xC6, 0xFA, 0xCB, 0x96, 0x3F, 0xA7, +0x57, 0x44, 0x3E, 0x24, 0xBB, 0xE8, 0x3C, 0x70, 0x64, 0x5F, 0xB8, 0x6A, 0x19, 0x6D, 0x9F, 0x0B, +0x7D, 0xE3, 0x3D, 0x30, 0x2F, 0xB2, 0xD8, 0x5D, 0x1A, 0x5F, 0xC4, 0x1D, 0xB6, 0x30, 0x05, 0x46, +0xAA, 0xB8, 0xEC, 0x09, 0x8A, 0xE5, 0xC1, 0xAF, 0x35, 0x89, 0x44, 0x05, 0xA6, 0x92, 0xA3, 0xA1, +0x82, 0x12, 0x89, 0x83, 0x11, 0xF6, 0x83, 0xAD, 0xD6, 0x26, 0xBA, 0x34, 0xB4, 0xBB, 0x94, 0x5F, +0xE0, 0x02, 0x3E, 0xF6, 0x48, 0xC7, 0x2D, 0x83, 0x93, 0x29, 0x81, 0x3E, 0x59, 0x41, 0x6F, 0xD8, +0x66, 0x15, 0x10, 0x1C, 0x0D, 0x0D, 0x41, 0x1B, 0xEC, 0x0B, 0x7A, 0xF3, 0x89, 0x47, 0x92, 0x69, +0xBC, 0x02, 0xB4, 0x67, 0x96, 0x96, 0x1F, 0x56, 0xD9, 0x62, 0x08, 0x0A, 0xC5, 0xA8, 0x64, 0x55, +0x46, 0xE9, 0xB5, 0x5D, 0xF1, 0x65, 0x6D, 0xA2, 0xEC, 0x79, 0xFC, 0xBB, 0xC9, 0x1E, 0x80, 0x2B, +0xA3, 0xAB, 0xD7, 0x8E, 0x55, 0xF5, 0x89, 0x16, 0xFA, 0x22, 0x1C, 0x25, 0x38, 0xD0, 0x51, 0x52, +0x51, 0x5B, 0x05, 0x11, 0x9F, 0xA6, 0xED, 0x9A, 0x39, 0xA3, 0xC2, 0xAA, 0x3B, 0x24, 0xB6, 0xEC, +0x18, 0x8D, 0x47, 0x90, 0x46, 0xF2, 0x56, 0xB9, 0x66, 0xA9, 0x72, 0x73, 0x99, 0x0F, 0xD1, 0xB0, +0xCE, 0x3F, 0x87, 0x19, 0xD2, 0x9C, 0x31, 0xD6, 0xE8, 0x6A, 0x53, 0xB9, 0xC9, 0x02, 0x5F, 0xD5, +0xCA, 0x1C, 0x15, 0xAE, 0x19, 0xB5, 0xF0, 0x83, 0x88, 0x2A, 0x0E, 0xC7, 0xE4, 0x22, 0x07, 0x0B, +0xD7, 0x22, 0x70, 0x3E, 0xE9, 0xCA, 0xAE, 0x8B, 0x9A, 0x93, 0x86, 0x48, 0xD3, 0x48, 0x1E, 0x19, +0xCA, 0x98, 0x4F, 0xA5, 0xCE, 0x67, 0xDA, 0x73, 0xC7, 0x21, 0x83, 0x78, 0x19, 0x31, 0x66, 0x17, +0x4F, 0xBA, 0x8B, 0x1F, 0x5F, 0xF0, 0xB2, 0x3B, 0xE1, 0xAE, 0x04, 0x67, 0x18, 0x54, 0x90, 0x16, +0x82, 0x68, 0x5C, 0x65, 0x0D, 0xD6, 0xAE, 0xC5, 0x8E, 0x02, 0x8C, 0x0D, 0x8C, 0x40, 0x3A, 0xAB, +0x41, 0x1A, 0xD5, 0x7E, 0x19, 0xDF, 0xDB, 0xC2, 0xF0, 0x83, 0xF5, 0xB6, 0x52, 0x2D, 0x13, 0x6F, +0xE0, 0x45, 0xF0, 0xEC, 0x1F, 0x4B, 0x36, 0x90, 0xC4, 0xF2, 0x32, 0x55, 0x5B, 0xE4, 0xC2, 0xCD, +0x5D, 0xFB, 0xE1, 0x24, 0x90, 0xE6, 0x28, 0xFF, 0x27, 0x53, 0xD6, 0xFE, 0x55, 0x18, 0xCB, 0x2E, +0x72, 0x75, 0x3F, 0xC4, 0xCA, 0x55, 0xD6, 0xEB, 0xD3, 0x9C, 0x4D, 0x63, 0x8E, 0x18, 0xE3, 0x78, +0x2B, 0x07, 0x7C, 0x34, 0x02, 0x0A, 0xDA, 0x59, 0xBE, 0x96, 0x44, 0xA0, 0x98, 0xBF, 0xAA, 0xA5, +0x61, 0x45, 0xC2, 0xF8, 0xC4, 0x27, 0x3E, 0xFA, 0xA5, 0xDB, 0xBF, 0xFC, 0xB5, 0x4F, 0x6E, 0x9D, +0xC9, 0x7B, 0xCE, 0x19, 0x63, 0x05, 0xDE, 0xC7, 0x06, 0x85, 0xE8, 0x5A, 0x19, 0x10, 0x7E, 0x63, +0xE0, 0xFB, 0xD4, 0x7D, 0xA8, 0x3E, 0x0B, 0x99, 0x49, 0x68, 0xF0, 0x05, 0xDD, 0x50, 0xD7, 0x25, +0xC0, 0xE5, 0xFB, 0x5D, 0x9F, 0x32, 0x06, 0x82, 0x6D, 0x72, 0x3C, 0x66, 0x64, 0x0C, 0x7C, 0x4E, +0xA9, 0x50, 0x70, 0xCB, 0x9A, 0xCE, 0x95, 0x11, 0xA0, 0x2F, 0x22, 0x6C, 0xD7, 0x28, 0x27, 0x18, +0x52, 0x55, 0xC3, 0x30, 0x10, 0x3A, 0x44, 0x4F, 0x13, 0xD5, 0x2A, 0xA9, 0xBB, 0x82, 0x29, 0x41, +0x06, 0x2F, 0x9A, 0x51, 0xD0, 0x59, 0x5E, 0x36, 0x5F, 0x2C, 0x21, 0x5C, 0x89, 0xC0, 0x3C, 0x1E, +0x10, 0x1B, 0x2F, 0x18, 0x25, 0xD2, 0x45, 0x04, 0x1F, 0x38, 0xB4, 0xD3, 0x34, 0x1C, 0xD3, 0x41, +0xE5, 0xCD, 0xC6, 0x0E, 0x50, 0xAF, 0x07, 0x2F, 0xB1, 0x52, 0xC8, 0xAA, 0xC1, 0x1D, 0xDA, 0x7B, +0xEF, 0x5F, 0x15, 0xE1, 0x24, 0x50, 0x7F, 0x7C, 0xC5, 0x63, 0x1D, 0xB9, 0xC3, 0xDF, 0x94, 0x0B, +0xD9, 0xCF, 0xC8, 0xB2, 0xA8, 0x50, 0x51, 0x5D, 0x10, 0x53, 0x78, 0x64, 0x67, 0x09, 0x7E, 0xF4, +0xCB, 0xCF, 0xB5, 0xFF, 0x34, 0x5F, 0x4A, 0x45, 0x3B, 0x4C, 0x79, 0x02, 0xB7, 0x9A, 0x12, 0x5B, +0x42, 0xF3, 0xDE, 0x85, 0x7F, 0x3E, 0x35, 0x19, 0x8B, 0xB6, 0x6F, 0x6D, 0xC0, 0xEF, 0x47, 0xE7, +0xA1, 0x00, 0x93, 0x99, 0x82, 0x57, 0x06, 0x33, 0x8D, 0x8C, 0xCC, 0x10, 0x8C, 0xEC, 0xF8, 0x25, +0x17, 0x58, 0x7C, 0x39, 0xE4, 0x51, 0x8A, 0x14, 0x33, 0x00, 0x3E, 0xAE, 0x0C, 0x36, 0xC2, 0x81, +0x55, 0x04, 0x80, 0x11, 0x76, 0xE4, 0x4C, 0x64, 0x2A, 0x4D, 0x02, 0x47, 0x97, 0x08, 0x46, 0x31, +0xB1, 0x6E, 0x61, 0x4E, 0xD7, 0xE5, 0xBC, 0x8B, 0x72, 0x6C, 0x38, 0x89, 0x00, 0x00, 0xA6, 0xC4, +0x52, 0x13, 0xA0, 0x1D, 0xB1, 0xA9, 0xC3, 0x9A, 0xFD, 0x9B, 0x55, 0x5A, 0xB8, 0x1C, 0x2B, 0x82, +0x93, 0x11, 0xE1, 0xE1, 0xD9, 0x49, 0x40, 0x4D, 0xE0, 0x50, 0x8C, 0xEC, 0xB0, 0x94, 0xDD, 0xF4, +0xAC, 0x20, 0x01, 0x28, 0xE4, 0x70, 0x61, 0x72, 0x7C, 0x1C, 0x4E, 0x12, 0x91, 0x4A, 0x5E, 0x78, +0xF1, 0x4D, 0x3F, 0xD4, 0x2B, 0x95, 0x37, 0xE7, 0xB3, 0xB9, 0x8B, 0x2C, 0x74, 0x96, 0xDC, 0x5A, +0x48, 0x47, 0x24, 0x0A, 0xBF, 0xEB, 0xEE, 0x8B, 0xB2, 0xC4, 0x3C, 0xE6, 0xC9, 0xC9, 0x0C, 0x86, +0x72, 0x99, 0x8B, 0x69, 0x86, 0xF3, 0xF4, 0xF9, 0xCD, 0x2F, 0x45, 0x73, 0xE6, 0x15, 0x0B, 0x2E, +0x1F, 0xE6, 0xF1, 0x02, 0xD3, 0x87, 0xD5, 0x0D, 0xDA, 0xE7, 0x6A, 0xB0, 0x46, 0x26, 0x22, 0x55, +0xF2, 0xEA, 0x8E, 0x0A, 0xA9, 0x21, 0x10, 0xAA, 0xA3, 0xAE, 0x51, 0x9E, 0x80, 0xC9, 0x54, 0x2F, +0x0C, 0x8F, 0xF5, 0xC1, 0xE8, 0xE8, 0x31, 0x48, 0xA7, 0x68, 0xB8, 0x65, 0x01, 0x2F, 0x00, 0x22, +0xBA, 0xC8, 0x19, 0xAA, 0x94, 0x11, 0x44, 0x62, 0x1C, 0xBA, 0x3D, 0xB5, 0xA3, 0x89, 0x46, 0x9B, +0xE2, 0x1A, 0x64, 0x20, 0x86, 0x47, 0x28, 0x8D, 0x32, 0xDB, 0x13, 0x20, 0x32, 0x47, 0x8D, 0x32, +0x2E, 0xEE, 0x54, 0xDD, 0x94, 0x0B, 0xD3, 0x17, 0x78, 0xB3, 0x05, 0xC1, 0xAC, 0xF1, 0xC4, 0xAD, +0x35, 0x55, 0x71, 0x1E, 0x80, 0x20, 0x70, 0x12, 0x9C, 0x44, 0xFA, 0xF5, 0x15, 0x6B, 0x26, 0x4A, +0x62, 0xE3, 0x37, 0x68, 0xFD, 0x17, 0x95, 0xF0, 0xD0, 0x64, 0x56, 0xFA, 0x4C, 0xEC, 0x1D, 0x79, +0x6E, 0x8A, 0xB9, 0x54, 0xBA, 0x4A, 0x44, 0x63, 0x88, 0xC8, 0x67, 0x60, 0x13, 0xE9, 0xF4, 0xE1, +0x25, 0x67, 0x77, 0xAD, 0x99, 0x11, 0xD4, 0x38, 0x67, 0x8C, 0x4D, 0xC4, 0xFD, 0xE7, 0xDA, 0xB6, +0xC0, 0xBE, 0x40, 0x44, 0xF5, 0x31, 0x28, 0x8D, 0x2E, 0x3A, 0x15, 0x5B, 0x4B, 0xF4, 0x29, 0xA8, +0x2C, 0x06, 0x71, 0x54, 0xA3, 0x9C, 0x82, 0x58, 0xAC, 0x89, 0x79, 0xAF, 0x3E, 0xBC, 0x43, 0x52, +0xF1, 0x0B, 0xE2, 0xE3, 0xE9, 0x77, 0xEA, 0x49, 0x95, 0x88, 0x81, 0xCC, 0x63, 0x76, 0x59, 0x75, +0x43, 0x9D, 0x45, 0xD4, 0xE9, 0x61, 0x9A, 0x0E, 0x4B, 0xCB, 0x91, 0x2D, 0x36, 0x58, 0xA5, 0x04, +0x5F, 0x9B, 0x27, 0x01, 0x53, 0xCB, 0x80, 0xEB, 0x53, 0x5E, 0xA6, 0x17, 0xC8, 0xD1, 0xE8, 0x01, +0xB7, 0x36, 0x9C, 0x9A, 0xC1, 0x9E, 0xE8, 0xCC, 0xE8, 0xC5, 0xEC, 0x02, 0x38, 0x99, 0xB4, 0x71, +0xA3, 0xF3, 0xD0, 0x33, 0x0F, 0xFD, 0x68, 0xA7, 0xB8, 0xEE, 0x33, 0x21, 0x42, 0x57, 0xFC, 0x41, +0xB0, 0x30, 0xD1, 0x20, 0xE1, 0x4F, 0x3A, 0x48, 0x7C, 0x2D, 0x9C, 0xAB, 0xAF, 0x29, 0xF7, 0xBE, +0x93, 0xA7, 0x71, 0xD2, 0xC9, 0xB1, 0xB0, 0xAA, 0xF0, 0xCD, 0x30, 0x03, 0x9A, 0x13, 0xC6, 0xDE, +0x77, 0xDF, 0x91, 0xE5, 0x8A, 0xCC, 0x77, 0x3A, 0x68, 0x03, 0x5D, 0xCC, 0xA9, 0x52, 0xB5, 0xBC, +0x54, 0xEB, 0xB9, 0xA9, 0x55, 0xCA, 0x30, 0x15, 0xCB, 0xA1, 0x7A, 0x2E, 0xE7, 0x93, 0x1C, 0x05, +0xEC, 0x9C, 0x83, 0x4E, 0x92, 0xAB, 0x80, 0x6D, 0xF3, 0x5E, 0xA5, 0x83, 0x4B, 0x06, 0x87, 0x67, +0x22, 0x66, 0x4F, 0x9B, 0x62, 0x64, 0xBB, 0x75, 0xE8, 0x90, 0x63, 0x2A, 0x95, 0x1A, 0xAB, 0x50, +0x14, 0xD0, 0xFE, 0x72, 0x1E, 0x13, 0x6B, 0xC5, 0x2D, 0xCE, 0xF3, 0xC0, 0x61, 0xEE, 0x79, 0x75, +0xAC, 0x34, 0x91, 0x8D, 0xBC, 0x62, 0x81, 0x73, 0x59, 0x5D, 0x95, 0xC2, 0x19, 0xAD, 0x2B, 0x36, +0x6C, 0x3C, 0xE9, 0xFD, 0xAD, 0x8E, 0x18, 0x7F, 0xA4, 0x5E, 0x40, 0x87, 0x01, 0x2D, 0x04, 0xC2, +0x61, 0xA6, 0xC5, 0xBC, 0x99, 0xC9, 0xDC, 0xD4, 0xB0, 0x30, 0xFA, 0xEC, 0xF4, 0x99, 0x59, 0x02, +0x01, 0x0F, 0x5D, 0x7B, 0x53, 0xC2, 0x3F, 0x93, 0xF7, 0x79, 0xC5, 0x19, 0x4B, 0x53, 0x63, 0xD6, +0xAD, 0x68, 0xB8, 0x8D, 0x1B, 0xDD, 0x2B, 0x3A, 0xA5, 0x3C, 0xC7, 0xF9, 0x94, 0xDF, 0xFF, 0x60, +0x94, 0x66, 0x03, 0x33, 0x3B, 0x82, 0x10, 0x60, 0x5C, 0xA0, 0x2F, 0xEA, 0x92, 0x46, 0x44, 0xC3, +0xC7, 0xA1, 0x8B, 0x6B, 0xB9, 0x14, 0x07, 0xB2, 0x28, 0x95, 0x3D, 0x9C, 0x98, 0xE9, 0xD4, 0xBC, +0x27, 0x72, 0x8A, 0x2C, 0xC7, 0xBB, 0x18, 0x75, 0x16, 0x3A, 0xAE, 0x37, 0x16, 0x9E, 0x3D, 0x96, +0x1E, 0xC8, 0x09, 0x20, 0x3C, 0xEF, 0x1B, 0xB3, 0x8B, 0x49, 0xE0, 0xBC, 0xC8, 0xB1, 0x5E, 0x20, +0x6A, 0x89, 0xA4, 0xD7, 0xCF, 0xDB, 0x10, 0x75, 0xB5, 0xE1, 0x4B, 0xE0, 0x64, 0x93, 0xBF, 0x7D, +0x67, 0x89, 0x0B, 0xE4, 0x68, 0xA1, 0x10, 0xAB, 0x59, 0x46, 0x3F, 0x40, 0xA8, 0xED, 0xA5, 0x9F, +0x3E, 0x65, 0x95, 0x7D, 0x27, 0x3C, 0xA9, 0x64, 0xAE, 0xA8, 0xEA, 0x63, 0xA6, 0xF4, 0x8A, 0x33, +0xF6, 0xFD, 0x6F, 0xBB, 0xE4, 0x86, 0xC6, 0x58, 0x61, 0x75, 0x75, 0xF8, 0x18, 0xF0, 0xD6, 0x28, +0xC8, 0xC1, 0x20, 0x86, 0x8E, 0x0A, 0xDB, 0x3B, 0xE7, 0xA3, 0xA6, 0x2A, 0x9F, 0xB7, 0x83, 0x8E, +0x24, 0x97, 0x26, 0xA3, 0x49, 0x68, 0x17, 0x11, 0x85, 0xE1, 0xC8, 0x53, 0xA5, 0xCA, 0x25, 0x9E, +0xF0, 0x23, 0x57, 0xA2, 0xEA, 0x5F, 0x60, 0x1D, 0x36, 0x8E, 0xCD, 0xD4, 0x93, 0x6E, 0x7A, 0x52, +0x59, 0x6F, 0xE4, 0x22, 0x22, 0x1E, 0x52, 0xB9, 0x4C, 0xDD, 0x29, 0x79, 0x4E, 0xA9, 0x14, 0xE7, +0xB5, 0x67, 0xF1, 0x35, 0xC9, 0x20, 0xAA, 0xB7, 0x89, 0xB0, 0xDE, 0x1B, 0x8E, 0xAB, 0x29, 0x76, +0xFA, 0x1B, 0x26, 0x03, 0xAA, 0x05, 0x68, 0x0C, 0xF0, 0x17, 0xC0, 0x49, 0xA6, 0x03, 0x9B, 0x37, +0x96, 0x78, 0x4E, 0xD0, 0x02, 0x08, 0xA8, 0xF0, 0xC4, 0x54, 0x02, 0x26, 0x28, 0x7E, 0xC5, 0xF8, +0x5C, 0x7A, 0xDE, 0xA8, 0x05, 0xC7, 0xF5, 0x5A, 0x4A, 0x1D, 0x54, 0xD9, 0x07, 0x0E, 0xF4, 0xC1, +0x4C, 0xE8, 0x15, 0xF5, 0x8A, 0xF7, 0x1F, 0x4C, 0x7E, 0x24, 0xE4, 0x17, 0xFF, 0xCA, 0x3A, 0x78, +0x80, 0x0F, 0x84, 0x30, 0x85, 0x96, 0xE8, 0x44, 0xB4, 0x2E, 0x0B, 0x6B, 0x16, 0x34, 0x21, 0x28, +0x91, 0x67, 0x65, 0x9B, 0x85, 0xBC, 0x97, 0xAF, 0x2C, 0x6A, 0x05, 0xA8, 0x92, 0x27, 0xCB, 0x2B, +0xF8, 0x05, 0x15, 0xD6, 0xEC, 0xE4, 0xEA, 0x36, 0x9B, 0x8C, 0xE6, 0x32, 0x15, 0xCC, 0xB3, 0x84, +0x3B, 0x39, 0x46, 0xAC, 0x04, 0xD5, 0xF1, 0x8A, 0xC5, 0x6D, 0xA7, 0xCE, 0x44, 0x8B, 0x01, 0x19, +0x8E, 0xE3, 0x15, 0x7C, 0xD3, 0x9C, 0x27, 0x62, 0x7C, 0xDD, 0x51, 0xA2, 0x03, 0xC1, 0x09, 0x9E, +0x2A, 0xF7, 0x40, 0x08, 0x2F, 0xC3, 0x43, 0xC7, 0x82, 0xF8, 0x3C, 0x2D, 0x3D, 0xCB, 0xFE, 0x5E, +0x2C, 0x22, 0xC6, 0x3B, 0x72, 0xF0, 0x42, 0xCA, 0xB4, 0x3C, 0x79, 0x92, 0xC2, 0x9E, 0x3A, 0xB1, +0x1A, 0x63, 0xC5, 0xEB, 0x20, 0x24, 0xFF, 0x81, 0x2F, 0x61, 0x02, 0x22, 0x9D, 0x86, 0x14, 0x26, +0x09, 0xE8, 0x9A, 0x50, 0x18, 0x17, 0xF1, 0xFB, 0x30, 0x0B, 0x66, 0x23, 0x78, 0xE1, 0x02, 0xD9, +0xE4, 0x23, 0x13, 0x33, 0x9B, 0x2C, 0xF4, 0x8A, 0x31, 0xF6, 0x37, 0x4F, 0x1C, 0x9A, 0xD7, 0xD5, +0xE9, 0x7F, 0xAF, 0x9C, 0xEC, 0xEF, 0xB6, 0xCC, 0x3C, 0xAD, 0x21, 0x03, 0xAB, 0x71, 0x1E, 0xF8, +0x0F, 0xFE, 0x0A, 0x9A, 0x3B, 0x5A, 0x41, 0xC4, 0x60, 0x3C, 0x95, 0xCA, 0xC1, 0x08, 0x72, 0x8E, +0x4A, 0x4B, 0x69, 0x50, 0x07, 0x87, 0xCE, 0x7C, 0x34, 0x1A, 0x71, 0x6B, 0x3D, 0x36, 0xCF, 0x31, +0x82, 0x3C, 0xE7, 0xE1, 0xC6, 0x64, 0x73, 0x59, 0xB7, 0x00, 0x7E, 0x74, 0x09, 0xFF, 0xC6, 0xFF, +0x4E, 0xCB, 0x87, 0x77, 0xA3, 0xBF, 0xD3, 0x4F, 0x62, 0x2E, 0x39, 0x6C, 0x2C, 0x11, 0xE0, 0x5A, +0x53, 0x8F, 0x21, 0xE6, 0x33, 0x29, 0xAD, 0x85, 0x4B, 0x9E, 0x16, 0xF4, 0x12, 0xEE, 0x6C, 0xA2, +0x2A, 0x32, 0x7F, 0x3C, 0x39, 0xB0, 0xA1, 0xAD, 0x7B, 0x94, 0xA4, 0xF6, 0xA4, 0x56, 0x11, 0x06, +0xE4, 0x90, 0x29, 0x72, 0x3A, 0x7E, 0x6F, 0x1B, 0x46, 0x87, 0x73, 0xB0, 0x6F, 0x6F, 0x2F, 0xCB, +0x58, 0x45, 0x51, 0x73, 0xF9, 0x59, 0xCB, 0x28, 0xE7, 0xEE, 0x1F, 0x2C, 0x70, 0x63, 0x63, 0x93, +0x88, 0x5D, 0x6B, 0xD0, 0x88, 0xD9, 0xB0, 0xE6, 0xD6, 0xC4, 0x8C, 0x30, 0xEB, 0x57, 0x84, 0xB1, +0x54, 0x2B, 0xBB, 0xA4, 0x3D, 0x71, 0x99, 0x54, 0xC8, 0xAC, 0xB3, 0x8A, 0x29, 0xF6, 0x37, 0x5D, +0x0E, 0x83, 0x98, 0x1F, 0x06, 0x3D, 0x9F, 0x66, 0xFF, 0xA6, 0x34, 0x16, 0xD9, 0x34, 0x8E, 0xE5, +0x4E, 0x05, 0xD6, 0xF5, 0x46, 0x5B, 0x22, 0x5B, 0xDB, 0x3A, 0x38, 0xF3, 0x05, 0xB2, 0xE0, 0xE4, +0x0D, 0x6B, 0xCC, 0xC3, 0xF5, 0x32, 0x35, 0x36, 0x1E, 0x14, 0x8A, 0x0C, 0x38, 0xB0, 0x7F, 0xEF, +0xE7, 0xF0, 0xEE, 0x13, 0xA6, 0xDE, 0x8F, 0x90, 0x25, 0x91, 0x65, 0x7D, 0x78, 0x66, 0xBF, 0xC8, +0x51, 0x11, 0x5D, 0x4F, 0xE5, 0x11, 0xE0, 0x44, 0x65, 0x34, 0x74, 0xBF, 0x69, 0x0B, 0x2C, 0xB9, +0xA0, 0xA3, 0x77, 0x7C, 0xF8, 0xC0, 0x13, 0xEF, 0x5A, 0x7E, 0xD6, 0x87, 0xF7, 0x10, 0xF6, 0x0B, +0x27, 0x89, 0x28, 0x3F, 0x7B, 0x64, 0xB4, 0x02, 0xFC, 0x50, 0x06, 0x22, 0xE1, 0x26, 0x58, 0xD1, +0xD1, 0x04, 0x89, 0x70, 0x80, 0x75, 0x0D, 0xD4, 0x9C, 0x27, 0x8E, 0xBA, 0xE5, 0x05, 0xF4, 0x21, +0x76, 0xF4, 0x0E, 0x42, 0x61, 0x5C, 0x1B, 0x97, 0x1A, 0x4B, 0xD9, 0x99, 0xBC, 0xC7, 0x2B, 0x62, +0x63, 0x2F, 0xBE, 0xE2, 0xC2, 0x4E, 0x59, 0x11, 0xAF, 0x71, 0xB5, 0x4C, 0xC0, 0xD5, 0x2B, 0xE0, +0xA2, 0xF7, 0x57, 0x49, 0x2C, 0x06, 0x79, 0x6C, 0xFF, 0x94, 0x77, 0xCA, 0xD4, 0xA1, 0xE3, 0x55, +0xE5, 0x13, 0x96, 0xAB, 0xA1, 0xDA, 0x11, 0x02, 0x61, 0x4C, 0x95, 0xA9, 0x6E, 0xA1, 0x90, 0x7F, +0xCE, 0xEB, 0x21, 0x94, 0xCF, 0x6C, 0xA7, 0xE7, 0x28, 0xB9, 0x6C, 0x96, 0xA2, 0xF7, 0x9B, 0x3B, +0x15, 0x26, 0x10, 0x71, 0xCC, 0x12, 0x5B, 0xC7, 0x83, 0x20, 0x97, 0x26, 0xB9, 0x98, 0x53, 0x36, +0xD7, 0x4B, 0xBA, 0x7B, 0x1D, 0x7A, 0x75, 0xA7, 0x98, 0xAB, 0xFD, 0x4E, 0xB6, 0x97, 0x65, 0x8A, +0xC8, 0x3B, 0xAF, 0xB5, 0x8A, 0x50, 0x8B, 0x46, 0x55, 0xCB, 0x5E, 0xC8, 0x69, 0x3D, 0xD7, 0xC0, +0x49, 0xA4, 0xA1, 0x92, 0x3B, 0x3A, 0x54, 0x74, 0x20, 0x1A, 0x54, 0x20, 0x8A, 0x09, 0x80, 0x84, +0x9F, 0xFA, 0x6A, 0x25, 0x96, 0x10, 0xA8, 0x94, 0x2B, 0xEC, 0xC6, 0x19, 0x65, 0x08, 0x61, 0x66, +0xA3, 0x01, 0x13, 0x1D, 0x79, 0x5B, 0x08, 0xF6, 0x8E, 0x16, 0xB4, 0x99, 0xBC, 0xC7, 0x2B, 0xC2, +0xD8, 0xA6, 0xB8, 0x74, 0x4D, 0xB3, 0xCF, 0xFC, 0x03, 0x27, 0x87, 0xD2, 0x8A, 0x78, 0x67, 0xCA, +0xF6, 0x21, 0x34, 0x56, 0x46, 0x00, 0x62, 0x02, 0xF1, 0xD9, 0xE7, 0x22, 0x4E, 0xD4, 0x65, 0xC7, +0xCA, 0x55, 0x78, 0x3F, 0xB4, 0x74, 0x2C, 0x71, 0xCB, 0x55, 0xD7, 0xAD, 0x14, 0x27, 0xA7, 0x44, +0x56, 0xE0, 0x75, 0xBC, 0xF0, 0x26, 0x93, 0x2A, 0x62, 0x10, 0x79, 0xBF, 0xE4, 0x0D, 0x8B, 0xA8, +0xB2, 0xA6, 0x87, 0x07, 0xE4, 0x4D, 0x43, 0x2D, 0xB4, 0xA9, 0x65, 0xC4, 0x58, 0x95, 0x82, 0xC0, +0x79, 0x80, 0x04, 0xEB, 0xAA, 0x13, 0x38, 0x2F, 0x1C, 0xE2, 0xF8, 0xA9, 0x11, 0x07, 0xAC, 0x09, +0xAB, 0xBE, 0x9E, 0x85, 0x35, 0x64, 0x51, 0xA3, 0xB3, 0xC9, 0x0E, 0x07, 0xEB, 0x4E, 0x30, 0x8D, +0x45, 0xA3, 0xE3, 0x3D, 0x7F, 0xB4, 0xFC, 0x82, 0x5B, 0xE6, 0xC3, 0x49, 0xA2, 0xB4, 0xC4, 0x6D, +0x0B, 0xB7, 0xC6, 0x30, 0x67, 0x8C, 0x9F, 0xC6, 0x39, 0xAE, 0x71, 0xBC, 0xF9, 0x8C, 0x26, 0xBB, +0x39, 0x96, 0x0E, 0xF9, 0x7C, 0x81, 0xA3, 0x75, 0xAB, 0x78, 0xCD, 0x82, 0xD9, 0x82, 0xB7, 0x47, +0xFE, 0x44, 0xE9, 0x15, 0x51, 0xC5, 0xA2, 0x61, 0xBF, 0xCD, 0x29, 0x22, 0xDC, 0x57, 0x4D, 0x02, +0x0D, 0xEE, 0x32, 0x5A, 0xD6, 0x83, 0x7B, 0xE8, 0x31, 0xFC, 0xC0, 0x5E, 0xE3, 0x14, 0x79, 0x7A, +0x54, 0xC8, 0x4D, 0x95, 0xFB, 0x95, 0x4A, 0x15, 0xB2, 0x45, 0x0D, 0x1C, 0xA5, 0x01, 0x22, 0x9D, +0x2B, 0xB8, 0x54, 0x6A, 0x88, 0xCB, 0x15, 0xB2, 0x60, 0x51, 0x93, 0x15, 0x67, 0xB1, 0x16, 0x10, +0x92, 0x72, 0x96, 0x4E, 0xAB, 0x11, 0xF9, 0xAF, 0x8E, 0x81, 0x80, 0x60, 0x2D, 0x67, 0x0B, 0xD3, +0xEE, 0xF1, 0x56, 0x8C, 0x7A, 0x1E, 0x73, 0x3D, 0xB4, 0x61, 0xBF, 0x0B, 0xF5, 0x2E, 0x79, 0x97, +0x79, 0xC1, 0x0E, 0x39, 0x64, 0xD3, 0xDC, 0x66, 0x6F, 0x2C, 0xBD, 0x07, 0x08, 0x78, 0x1E, 0xB2, +0xA7, 0x25, 0x24, 0x9E, 0x76, 0x10, 0xB8, 0xEB, 0x4B, 0xC3, 0xDB, 0x69, 0xF0, 0xE5, 0x9F, 0xC2, +0x49, 0xA0, 0x98, 0xE8, 0xEF, 0xF5, 0x3B, 0x86, 0x2D, 0x21, 0x92, 0x22, 0xD0, 0x00, 0x31, 0xF4, +0xF8, 0xD2, 0xE8, 0x44, 0x0E, 0x8D, 0x0C, 0x41, 0xB5, 0xAC, 0x41, 0xBE, 0x5C, 0x82, 0x51, 0xC4, +0xC3, 0x69, 0x7C, 0x42, 0x25, 0x6F, 0x42, 0x44, 0x69, 0xDD, 0x69, 0x75, 0x05, 0x72, 0x33, 0xC9, +0xDD, 0x9D, 0x74, 0x89, 0xA5, 0xE6, 0xAB, 0x98, 0xE2, 0x5C, 0x60, 0x23, 0x3C, 0x48, 0x6B, 0x52, +0x74, 0x7F, 0x23, 0x73, 0x3B, 0xDD, 0xDC, 0x28, 0x73, 0xE7, 0xD9, 0x1A, 0x3A, 0x54, 0xBB, 0x3A, +0xDB, 0x50, 0x65, 0xB0, 0xBA, 0xA0, 0x42, 0x51, 0x07, 0x35, 0xDE, 0xC6, 0x52, 0x65, 0x34, 0x01, +0xCD, 0xF3, 0x74, 0x29, 0xD3, 0x32, 0x2D, 0x94, 0xE1, 0xC4, 0xDA, 0x3C, 0x09, 0x60, 0x4C, 0x16, +0x29, 0x5C, 0x98, 0x16, 0xBA, 0x00, 0xD4, 0x24, 0x8E, 0xF7, 0xE2, 0x5C, 0x51, 0xF0, 0x42, 0x97, +0xE7, 0xDE, 0xEF, 0x31, 0xCF, 0xAD, 0xAD, 0xFD, 0x76, 0xA7, 0xDD, 0x1C, 0xD7, 0x9D, 0xF2, 0xB0, +0xBD, 0xA2, 0xF3, 0xFA, 0x05, 0xC2, 0xCF, 0x81, 0x99, 0xA4, 0x6A, 0xA5, 0xF0, 0xB6, 0x33, 0x2E, +0xFE, 0xC8, 0x0A, 0x38, 0x09, 0x24, 0x0B, 0xC2, 0x30, 0xE7, 0x0A, 0x45, 0xE4, 0x2B, 0x47, 0xDD, +0x79, 0xFD, 0x93, 0x29, 0xD8, 0x8D, 0xB6, 0xF4, 0xE0, 0xD8, 0x04, 0xF4, 0x8E, 0xA5, 0x20, 0x43, +0xC9, 0x0A, 0x74, 0x9A, 0x0A, 0xA9, 0x02, 0x4C, 0xA4, 0xF2, 0x30, 0x56, 0x86, 0xF2, 0x4C, 0x70, +0x62, 0xA2, 0x93, 0x2E, 0xB1, 0xEB, 0xD7, 0x77, 0xBC, 0x55, 0xE2, 0xB3, 0xBC, 0x69, 0x7A, 0x26, +0xA1, 0x18, 0x98, 0x07, 0xCA, 0xE4, 0x61, 0x70, 0x31, 0x01, 0x30, 0x31, 0x91, 0x64, 0x4E, 0x12, +0x25, 0x00, 0x0C, 0x0D, 0xB3, 0x34, 0xA5, 0x0A, 0x4C, 0x64, 0x31, 0xDB, 0x53, 0xE5, 0x61, 0x69, +0xD7, 0x4A, 0xB7, 0x5C, 0x29, 0x72, 0x78, 0x63, 0xCF, 0x73, 0x05, 0xB4, 0xCD, 0xAE, 0xFE, 0xDC, +0x2A, 0xFD, 0x9A, 0xED, 0x24, 0xA9, 0x63, 0x6E, 0x11, 0xFF, 0x42, 0xA5, 0x86, 0x2E, 0xCB, 0xDE, +0x4C, 0x9F, 0xB1, 0x5D, 0x8B, 0x72, 0x98, 0xEB, 0xCB, 0xF6, 0xF5, 0x50, 0x67, 0x5F, 0x2D, 0x46, +0xAC, 0x33, 0xDE, 0x61, 0x6D, 0x99, 0xDE, 0xF3, 0x5D, 0xF7, 0x78, 0x8D, 0x71, 0x7D, 0xCA, 0x9B, +0x6E, 0x56, 0xDB, 0xF3, 0xE3, 0x3B, 0xEE, 0x58, 0x75, 0xE6, 0x4D, 0x9F, 0x86, 0x60, 0xCB, 0xB6, +0x06, 0xBE, 0x69, 0x6C, 0x26, 0xB5, 0x50, 0xD3, 0xC9, 0xB1, 0xA5, 0xE1, 0x82, 0xEE, 0x1E, 0x1A, +0x18, 0x9F, 0x3C, 0xAF, 0xB5, 0xA3, 0x0D, 0xB6, 0x1E, 0xE8, 0xC1, 0xD8, 0xDD, 0x07, 0x4D, 0xC1, +0x28, 0xF8, 0x02, 0x36, 0x26, 0x3F, 0x1C, 0x28, 0x47, 0xD0, 0xEE, 0x2A, 0x29, 0x0C, 0xD3, 0xD2, +0xD0, 0x5B, 0x35, 0x66, 0x8C, 0x5B, 0x9F, 0x54, 0xC6, 0x7E, 0xE2, 0x2F, 0x7F, 0xB8, 0xB4, 0xA3, +0x3D, 0xF4, 0x2E, 0x67, 0x78, 0xC0, 0x4B, 0x87, 0xA1, 0x94, 0x99, 0x98, 0xAE, 0x13, 0x46, 0x0E, +0x30, 0xDB, 0x4A, 0xA3, 0x00, 0x2C, 0x64, 0xEA, 0xE4, 0x64, 0x16, 0x32, 0xC5, 0x2A, 0xDB, 0xC6, +0x9C, 0x4F, 0xE7, 0x81, 0xEF, 0x3C, 0x07, 0x7C, 0x4A, 0x80, 0x1B, 0x9F, 0x18, 0x61, 0x0C, 0x27, +0xE0, 0x1B, 0x44, 0x1B, 0xEA, 0xD3, 0xB7, 0x2C, 0x04, 0x28, 0x24, 0xD7, 0xAB, 0xF5, 0x25, 0xAA, +0x87, 0x28, 0x2F, 0x44, 0x1C, 0x37, 0xBD, 0xEB, 0xDD, 0x93, 0x42, 0xCB, 0x36, 0xBD, 0xCC, 0x0F, +0xBE, 0x56, 0xD5, 0xF0, 0x66, 0x1D, 0xD6, 0xC1, 0x09, 0x6F, 0x84, 0x2D, 0xC7, 0x9C, 0x30, 0x42, +0x9F, 0x08, 0x30, 0xA0, 0xBB, 0x44, 0x86, 0x08, 0x49, 0x0C, 0xB9, 0xB2, 0xC9, 0x71, 0xC3, 0x4B, +0xA5, 0x55, 0x32, 0x2B, 0xC7, 0x26, 0x7A, 0xEF, 0x8A, 0x07, 0x83, 0x25, 0xB7, 0x65, 0xD9, 0x9F, +0x20, 0xE4, 0x78, 0x27, 0x01, 0x0E, 0x30, 0x43, 0xDA, 0x97, 0x34, 0xFA, 0x9B, 0xE4, 0xC2, 0xA6, +0xF9, 0xE3, 0xA9, 0xF3, 0x22, 0x89, 0x04, 0xCC, 0x6F, 0x6D, 0x06, 0x4B, 0x34, 0xC1, 0x2A, 0xEB, +0x30, 0x51, 0x2A, 0xE0, 0x75, 0xA9, 0x20, 0x8E, 0x4C, 0xB3, 0x36, 0x25, 0x08, 0x88, 0x92, 0xDB, +0xD5, 0xBA, 0x6C, 0xE7, 0xD1, 0x43, 0x9B, 0x66, 0xF4, 0x1E, 0x2F, 0x9B, 0xB1, 0x7B, 0x0F, 0x25, +0xCF, 0xDE, 0xF6, 0xE4, 0x53, 0xD7, 0xA7, 0xB3, 0xD9, 0xA5, 0xE5, 0x4C, 0xB2, 0xEB, 0xCE, 0x1F, +0x7F, 0x7B, 0xD9, 0xBA, 0x00, 0x0F, 0x89, 0xA8, 0x08, 0x62, 0xFB, 0x72, 0xF0, 0x27, 0x0F, 0xB0, +0x0C, 0x06, 0xCD, 0x1E, 0x24, 0x3D, 0x4A, 0x83, 0xA1, 0x69, 0x6A, 0x68, 0x36, 0x5B, 0x80, 0xE1, +0x09, 0x8C, 0x63, 0x85, 0x26, 0xF0, 0x77, 0xBD, 0x01, 0xA5, 0x38, 0x8D, 0x4C, 0x3F, 0x3E, 0x65, +0xCD, 0xAC, 0x22, 0x03, 0x30, 0xEE, 0xE4, 0x58, 0x9E, 0xD4, 0x64, 0xCF, 0xA5, 0x9C, 0x29, 0xE1, +0xC4, 0x3C, 0x25, 0xD0, 0x49, 0xEA, 0x98, 0x4A, 0x3E, 0xAE, 0x6A, 0xA9, 0x81, 0x8A, 0xC1, 0x90, +0xAE, 0x87, 0xFD, 0xB2, 0x04, 0x1F, 0xAB, 0x8A, 0x70, 0x59, 0xCC, 0xEB, 0x53, 0x6A, 0x65, 0xE1, +0x1C, 0xC7, 0x18, 0xAA, 0x55, 0x2D, 0x16, 0xBF, 0xF2, 0xB5, 0x61, 0x23, 0x74, 0x5C, 0xA8, 0x98, +0x9C, 0x63, 0xCE, 0x95, 0xF7, 0xBB, 0x8E, 0x00, 0x01, 0x2D, 0x76, 0x20, 0xAF, 0x9D, 0x9C, 0x3C, +0x5B, 0x0C, 0x51, 0xF3, 0x55, 0xD0, 0xB0, 0x07, 0xAF, 0x17, 0x2A, 0xF6, 0x36, 0xBA, 0x04, 0x30, +0x43, 0xD2, 0x42, 0x8B, 0xB2, 0xB6, 0xF6, 0xF4, 0xD1, 0x58, 0x2C, 0x60, 0xB7, 0x34, 0x47, 0x85, +0x6A, 0x73, 0x33, 0x8C, 0x8F, 0x4F, 0x82, 0x82, 0xB8, 0x71, 0x43, 0x28, 0x82, 0x29, 0x61, 0x1F, +0x8C, 0xA6, 0xC7, 0xE1, 0x60, 0x5F, 0x1E, 0x52, 0x45, 0x83, 0xCB, 0xBA, 0x23, 0x33, 0xD6, 0x0C, +0x2F, 0x8B, 0xB1, 0x14, 0xAF, 0x36, 0x44, 0xE5, 0x7F, 0x1D, 0xEC, 0x3D, 0x74, 0xC5, 0x78, 0x66, +0x1C, 0x44, 0x4B, 0x83, 0x81, 0x81, 0x02, 0x1C, 0x0B, 0x71, 0xD0, 0xDD, 0xD2, 0x02, 0x97, 0x2C, +0x38, 0x0F, 0xB8, 0xFD, 0x8F, 0x63, 0xAC, 0x48, 0x1B, 0x35, 0xAA, 0xA0, 0x95, 0x4A, 0x50, 0x42, +0x27, 0x81, 0x2A, 0x28, 0x26, 0xD1, 0x7B, 0x9F, 0x28, 0x99, 0xA0, 0xB6, 0x9F, 0x0D, 0x6F, 0xBD, +0x62, 0x85, 0xBB, 0xE3, 0xA9, 0x47, 0x10, 0x80, 0x10, 0x38, 0x1A, 0xC9, 0x53, 0xAD, 0x3A, 0xAC, +0x36, 0x58, 0x12, 0x64, 0x96, 0x6D, 0x01, 0x9E, 0xE4, 0xC5, 0x5B, 0x85, 0x42, 0x99, 0x1B, 0x9E, +0x21, 0x51, 0xDE, 0x96, 0x0D, 0xAE, 0xA6, 0x8E, 0x1B, 0x22, 0x7E, 0x64, 0x90, 0x97, 0xF9, 0xA1, +0xE6, 0x65, 0x3F, 0xAA, 0x36, 0x8A, 0x57, 0xA9, 0x52, 0x81, 0x9C, 0x90, 0x64, 0xB6, 0xC2, 0x2A, +0x25, 0x08, 0xC6, 0xA3, 0x54, 0xB0, 0x69, 0xBA, 0xD0, 0xD6, 0xE8, 0x67, 0x9D, 0x6F, 0x76, 0x4D, +0x25, 0xEF, 0x3B, 0x96, 0x61, 0xD0, 0xA6, 0x2C, 0x79, 0x75, 0xC8, 0xB4, 0xD7, 0x5D, 0xC0, 0x03, +0x52, 0xAE, 0x62, 0xC8, 0x64, 0x79, 0x23, 0x82, 0x04, 0xFC, 0x2C, 0x06, 0xA9, 0x74, 0xDE, 0x3C, +0x5B, 0xB5, 0x8B, 0x4B, 0x60, 0x16, 0x8C, 0xA5, 0x62, 0xB7, 0x33, 0xAF, 0xB8, 0xBE, 0x7F, 0x7E, +0x4B, 0x93, 0x16, 0x0B, 0xF8, 0x83, 0x39, 0x5A, 0x67, 0x1B, 0x51, 0xA0, 0xA1, 0xA1, 0x91, 0x7D, +0x7E, 0x8D, 0xE6, 0x23, 0x57, 0x03, 0x90, 0x6B, 0x74, 0x18, 0x0A, 0x57, 0x36, 0x43, 0x07, 0x61, +0x86, 0xF4, 0xB2, 0x18, 0x8B, 0xF1, 0xEA, 0x55, 0x99, 0x9D, 0x0F, 0x5C, 0xD1, 0x3F, 0x9C, 0x85, +0x0D, 0x97, 0x9C, 0x05, 0xE5, 0xC2, 0x51, 0x18, 0xEA, 0xD7, 0x61, 0x60, 0x64, 0x0C, 0xCE, 0xB8, +0xE8, 0x2A, 0xD8, 0xBD, 0x6F, 0x1F, 0xFC, 0xE6, 0x97, 0x4F, 0x42, 0x8B, 0x9F, 0x87, 0x85, 0xB1, +0x00, 0xB4, 0x48, 0x1C, 0xE4, 0x90, 0xB1, 0x83, 0x23, 0x69, 0x18, 0x4D, 0xA1, 0x06, 0xF3, 0x47, +0xE1, 0x82, 0xF3, 0x97, 0x43, 0x0B, 0x3F, 0x09, 0x7E, 0x49, 0x03, 0x37, 0xEC, 0x42, 0x73, 0x2C, +0x8A, 0xA9, 0x2B, 0x03, 0xB4, 0x7C, 0x15, 0xF2, 0x18, 0xCF, 0x52, 0xD1, 0x59, 0x18, 0xA5, 0x89, +0xAA, 0x0D, 0x5C, 0x17, 0xD3, 0x7D, 0x0D, 0xCB, 0xD1, 0x91, 0x41, 0xC7, 0xAC, 0x9A, 0x86, 0xE5, +0xDD, 0x9D, 0xA8, 0xD6, 0x3D, 0x40, 0x66, 0xF5, 0xA2, 0x26, 0x84, 0xE3, 0x2A, 0x34, 0x73, 0x00, +0xE2, 0xF1, 0x20, 0x8C, 0x4D, 0xD2, 0xE0, 0x12, 0x89, 0xC1, 0x72, 0x3A, 0xA2, 0x55, 0xC5, 0xAA, +0xB7, 0x6D, 0xC3, 0xA8, 0x8D, 0x27, 0xD0, 0xD0, 0x05, 0x68, 0x69, 0xF0, 0xA6, 0xC8, 0x10, 0x30, +0x41, 0x87, 0x80, 0x8E, 0x4F, 0x41, 0x43, 0x89, 0xD5, 0x2C, 0x96, 0xCF, 0xA5, 0x4A, 0xC8, 0x4C, +0xBE, 0xC0, 0x86, 0x88, 0xA0, 0xA9, 0x80, 0x8E, 0x8E, 0xD5, 0x70, 0xAC, 0x6F, 0x0F, 0x8B, 0xC1, +0xB5, 0x52, 0xA6, 0x1D, 0x0F, 0x17, 0xC5, 0xB7, 0x3F, 0x87, 0x59, 0x90, 0xE9, 0x5F, 0x38, 0x19, +0xF4, 0xAB, 0x05, 0xD4, 0x06, 0x41, 0xCA, 0x6C, 0x35, 0x24, 0xE2, 0x30, 0x59, 0xCA, 0xC3, 0xF0, +0xE4, 0x04, 0x8C, 0x0C, 0x4D, 0x22, 0xF0, 0x6F, 0x7B, 0x5D, 0x09, 0x78, 0xB8, 0x2F, 0x39, 0xFF, +0x8D, 0xBB, 0xF7, 0x3C, 0xF3, 0xE3, 0x19, 0xBD, 0xFE, 0xAC, 0x19, 0x4B, 0x0D, 0x44, 0x2B, 0xE6, +0xE5, 0xFE, 0xE8, 0x91, 0x5F, 0x6E, 0x81, 0x25, 0x1D, 0x41, 0xE8, 0x68, 0x8C, 0x42, 0x2E, 0xD8, +0x88, 0x27, 0x4C, 0x80, 0x58, 0xBC, 0x19, 0x56, 0xAC, 0x39, 0x03, 0xFE, 0xF5, 0x9F, 0x37, 0xC2, +0xE8, 0x78, 0x16, 0x0E, 0xA2, 0xF7, 0x7B, 0x7F, 0xC5, 0x82, 0xCE, 0xB0, 0x0D, 0xF3, 0x51, 0x22, +0x0B, 0xC8, 0xB4, 0x64, 0x35, 0x90, 0xF6, 0x2F, 0xB9, 0xE6, 0x50, 0x11, 0x16, 0x2E, 0x7D, 0xE0, +0xA9, 0xA3, 0xF1, 0xA1, 0x91, 0x0A, 0xD5, 0xB5, 0xC0, 0xE2, 0xCE, 0x18, 0x74, 0x36, 0x17, 0x21, +0xA7, 0x16, 0x61, 0x68, 0x1C, 0xE3, 0x5E, 0xD3, 0x07, 0x88, 0x8F, 0xA3, 0xA4, 0x22, 0x66, 0xAA, +0xCA, 0x98, 0x74, 0xCF, 0xA0, 0x04, 0x52, 0x5C, 0xAB, 0x80, 0x9A, 0x4C, 0xC1, 0xCA, 0xF6, 0x56, +0xF6, 0x79, 0x7A, 0x06, 0x46, 0xA0, 0xB1, 0x31, 0x06, 0x71, 0x54, 0x67, 0x3D, 0xC3, 0x79, 0xC8, +0x96, 0x74, 0x44, 0x72, 0x90, 0x59, 0x34, 0x44, 0x3A, 0x6B, 0x60, 0xD2, 0xDD, 0xDB, 0xB0, 0x65, +0x12, 0xBE, 0x81, 0x87, 0xC5, 0x74, 0xA8, 0x51, 0x9A, 0x46, 0x08, 0x79, 0x03, 0xA4, 0xD9, 0x58, +0x5A, 0xB4, 0xC5, 0x85, 0xB2, 0x01, 0x09, 0x3C, 0x5C, 0x17, 0x5F, 0xB0, 0xC1, 0xBD, 0xFF, 0xD1, +0xA7, 0x29, 0xE2, 0x62, 0xB9, 0x5A, 0xD6, 0x1D, 0x87, 0xB9, 0x61, 0x96, 0x69, 0x40, 0xA5, 0x4D, +0xD3, 0x55, 0x55, 0xB7, 0xFC, 0x16, 0xFC, 0xC7, 0x87, 0x60, 0x16, 0x14, 0x0E, 0x77, 0xE7, 0x87, +0xC7, 0x93, 0x45, 0x21, 0x12, 0x83, 0xFD, 0x49, 0x13, 0x62, 0x4E, 0xD1, 0x1D, 0xAF, 0x14, 0xB8, +0x5E, 0x74, 0x30, 0x8D, 0x32, 0x87, 0x9E, 0x70, 0x09, 0x92, 0xB9, 0x2A, 0x1E, 0x30, 0x1F, 0xEC, +0x2B, 0x3F, 0x3C, 0xE3, 0x45, 0x4D, 0xB3, 0x0E, 0x77, 0x36, 0xAC, 0x5F, 0xB0, 0x34, 0x9B, 0x29, +0x2F, 0x7D, 0x62, 0xBC, 0x04, 0x92, 0x8F, 0x46, 0x06, 0x0C, 0x41, 0x96, 0xA6, 0xAC, 0xA1, 0xED, +0x6B, 0xEF, 0x9C, 0x0F, 0x43, 0xBD, 0x47, 0x41, 0xA6, 0x21, 0x1D, 0xA1, 0x20, 0xB3, 0x61, 0xA4, +0x62, 0xF6, 0x4F, 0x70, 0x70, 0xF7, 0xD1, 0x22, 0x3C, 0x3D, 0x59, 0x84, 0x54, 0xA4, 0xFB, 0x0B, +0x5D, 0xF3, 0xE7, 0xFF, 0xBD, 0x13, 0x59, 0x94, 0xB1, 0xA2, 0xEB, 0x20, 0xD4, 0xB6, 0xC6, 0x36, +0x82, 0x0B, 0xEC, 0x42, 0x95, 0x73, 0x8E, 0x8D, 0xA6, 0x21, 0x93, 0xD3, 0x98, 0x2D, 0x2C, 0xA2, +0xDE, 0xAC, 0x3A, 0x01, 0x90, 0x03, 0xDD, 0x50, 0x45, 0x95, 0x9E, 0xCF, 0xF7, 0xD1, 0x50, 0x01, +0x90, 0x50, 0x4D, 0x8E, 0xE0, 0xEB, 0x08, 0xCD, 0x5D, 0xEC, 0xF3, 0x74, 0x74, 0xB6, 0x33, 0x15, +0x4F, 0xCF, 0x2D, 0x20, 0xC7, 0x28, 0x29, 0xEF, 0x39, 0x41, 0x54, 0x71, 0x28, 0x30, 0x60, 0x42, +0x09, 0xC6, 0xE1, 0x82, 0x0D, 0x97, 0x43, 0x28, 0x92, 0x60, 0x76, 0x97, 0x16, 0x02, 0x33, 0xF4, +0xBF, 0xE6, 0x8B, 0x09, 0xA2, 0x8F, 0x01, 0x17, 0x06, 0xC6, 0xCE, 0x7B, 0x0E, 0x1F, 0xE4, 0x38, +0x5B, 0xC3, 0x43, 0x20, 0x62, 0x1A, 0x58, 0x46, 0x4D, 0x53, 0x84, 0xFD, 0x07, 0xB6, 0x33, 0x4F, +0x5A, 0x12, 0x65, 0xD6, 0xD7, 0x93, 0xCD, 0x67, 0x1B, 0x17, 0xAF, 0xBE, 0x79, 0x56, 0xA9, 0xBD, +0xF1, 0xCA, 0x98, 0x66, 0xD9, 0x7C, 0x45, 0x45, 0x9B, 0xBA, 0xA0, 0x41, 0x01, 0xD9, 0x27, 0x71, +0xC5, 0x4A, 0x19, 0x0F, 0x76, 0x0B, 0x5C, 0x7B, 0xEE, 0x62, 0x78, 0xE3, 0x99, 0x6B, 0x60, 0x7E, +0x43, 0x03, 0xAB, 0x15, 0xC3, 0x0F, 0x36, 0xE3, 0xDD, 0x02, 0xB3, 0x62, 0xEC, 0x17, 0xEF, 0x78, +0x4A, 0x4D, 0x04, 0x8C, 0x55, 0x7D, 0x47, 0x0F, 0xCC, 0xEB, 0x1F, 0x1A, 0x82, 0xA6, 0x16, 0x4F, +0x52, 0x25, 0xD9, 0x5B, 0xF0, 0xB7, 0x7C, 0xED, 0x39, 0xB0, 0x67, 0xC7, 0x33, 0xDE, 0x24, 0x53, +0xDB, 0x66, 0x0E, 0x8A, 0x4E, 0x1D, 0x74, 0x26, 0xAD, 0x07, 0x45, 0x1B, 0x93, 0x2C, 0x80, 0x1C, +0xEE, 0xE8, 0xE9, 0x68, 0x6D, 0xCC, 0xA0, 0xC3, 0xE3, 0xB4, 0x2C, 0x58, 0x65, 0x2F, 0x9C, 0xE7, +0x17, 0xB4, 0x62, 0x5A, 0x30, 0xCD, 0x0A, 0xCF, 0x10, 0xA6, 0x5A, 0xA2, 0x9C, 0xD4, 0xA4, 0x8A, +0x2A, 0xFB, 0xF2, 0x4B, 0x2F, 0x42, 0xE6, 0x88, 0xAC, 0x7E, 0x49, 0x10, 0xEB, 0xDE, 0x31, 0x07, +0x57, 0x5C, 0x7B, 0x03, 0x1C, 0x3E, 0xB8, 0x1F, 0x6E, 0x7A, 0xDF, 0xC7, 0x20, 0x59, 0xD0, 0x59, +0xCB, 0x24, 0x5F, 0x1B, 0x46, 0x5D, 0x0B, 0x58, 0xA7, 0x6E, 0x16, 0x32, 0x72, 0xE8, 0xD8, 0x10, +0xEB, 0x38, 0xA7, 0xBC, 0xAB, 0x69, 0x79, 0x93, 0x51, 0x59, 0x3A, 0x9E, 0x3D, 0xDC, 0xAB, 0x52, +0xD4, 0x51, 0x0D, 0x0E, 0x0F, 0x0D, 0xA0, 0xFE, 0x30, 0xD9, 0x81, 0x94, 0x59, 0xAE, 0x96, 0x67, +0x8B, 0x96, 0x82, 0x3E, 0x8E, 0xCD, 0x6D, 0x0A, 0x07, 0xFC, 0x28, 0xC5, 0x32, 0xDA, 0x5D, 0x43, +0x99, 0xCD, 0x35, 0x5C, 0xB8, 0xA4, 0xCB, 0x6A, 0x68, 0x98, 0x67, 0xFA, 0x15, 0xD5, 0x49, 0x25, +0x27, 0x61, 0x5F, 0xDF, 0x30, 0xA6, 0x31, 0x15, 0x88, 0xA1, 0x36, 0xA1, 0x06, 0x2E, 0xD2, 0x30, +0x1D, 0x61, 0x05, 0x9A, 0x14, 0xA9, 0x1A, 0x6F, 0x5E, 0x3C, 0xE3, 0x6A, 0xC9, 0x59, 0x31, 0xF6, +0x8A, 0xA5, 0xF3, 0x97, 0x57, 0x65, 0xFE, 0xDD, 0x4F, 0x6F, 0xDD, 0xA1, 0x2C, 0x44, 0x3B, 0xD7, +0xDC, 0xDA, 0x80, 0xC0, 0x82, 0x01, 0x26, 0x7E, 0xA0, 0x58, 0xA2, 0x0D, 0xD2, 0x13, 0x93, 0x30, +0x34, 0x38, 0x88, 0x99, 0x89, 0x12, 0x4D, 0xA0, 0x66, 0x08, 0x0E, 0x75, 0xAA, 0xB3, 0xFA, 0x23, +0x07, 0xA5, 0x49, 0x8D, 0x8D, 0xA2, 0x01, 0xDB, 0xD5, 0x57, 0x0C, 0xC4, 0xB3, 0xB9, 0x4A, 0xA2, +0x90, 0xC9, 0xF2, 0xE3, 0x68, 0x5B, 0x88, 0x2C, 0xDB, 0x60, 0x2B, 0x5C, 0x30, 0x05, 0xC9, 0x98, +0x48, 0x7D, 0x2F, 0x14, 0xF7, 0x3E, 0xB3, 0xE7, 0x28, 0x1E, 0x0C, 0x3F, 0x3A, 0x3A, 0x78, 0x40, +0xE8, 0x8B, 0xE3, 0x41, 0xBE, 0xE8, 0x92, 0x0D, 0x8C, 0xB9, 0x5F, 0xFF, 0xD2, 0xE7, 0x21, 0x8E, +0xA7, 0x7B, 0xC1, 0xC2, 0xA5, 0xF8, 0x18, 0xBB, 0xF6, 0x3A, 0x5E, 0xED, 0x04, 0x79, 0xB8, 0xD4, +0xF6, 0x41, 0x99, 0xA1, 0x2C, 0x4A, 0x5D, 0x4F, 0xCF, 0x41, 0x28, 0xE6, 0x53, 0xA8, 0xCE, 0x2B, +0xDE, 0x7C, 0x63, 0xCA, 0x03, 0xCB, 0xDE, 0x44, 0x37, 0xC2, 0x99, 0xC9, 0x03, 0x17, 0x50, 0xFF, +0x62, 0xCA, 0x1F, 0x33, 0x2E, 0x16, 0xB4, 0xC4, 0x64, 0x68, 0x6F, 0x50, 0xA1, 0xBD, 0x11, 0x6F, +0x0D, 0x7E, 0x04, 0xEB, 0x25, 0x64, 0xAC, 0x08, 0x2A, 0x5E, 0xF8, 0x78, 0x24, 0x04, 0x6A, 0x28, +0x31, 0xE3, 0x4E, 0x01, 0xA2, 0xFF, 0x55, 0xC7, 0x8A, 0x7E, 0xC1, 0x98, 0x30, 0x31, 0xD1, 0x70, +0x64, 0xB2, 0x0C, 0x82, 0x5F, 0x05, 0x15, 0xBF, 0xDB, 0x24, 0xFA, 0x20, 0x87, 0xD0, 0x6F, 0x18, +0x41, 0x95, 0x9C, 0xB7, 0xCA, 0xA8, 0xFE, 0x95, 0xDC, 0x6C, 0xD2, 0x86, 0xB3, 0x62, 0x2C, 0x97, +0xEE, 0xDD, 0xE0, 0x8C, 0x1F, 0x3E, 0x67, 0x14, 0x91, 0x92, 0x65, 0x2B, 0x97, 0x79, 0xA1, 0x01, +0x72, 0x82, 0xA4, 0x73, 0xE1, 0xD2, 0xB5, 0xB0, 0x73, 0xEB, 0x53, 0x6C, 0x11, 0x11, 0x49, 0x06, +0x43, 0x99, 0xCC, 0x7A, 0x0B, 0x14, 0x35, 0x5C, 0x61, 0xDA, 0x2A, 0xD6, 0xF5, 0x77, 0xD1, 0x05, +0xF1, 0xA1, 0x8A, 0x25, 0x46, 0x5C, 0x4E, 0xF0, 0xF5, 0xF7, 0xED, 0x85, 0x74, 0xCE, 0x72, 0x10, +0xB1, 0x62, 0x17, 0x95, 0x76, 0xE7, 0xD0, 0x80, 0x02, 0x56, 0xB9, 0x2F, 0x53, 0xDD, 0x12, 0x3A, +0x5C, 0xC7, 0x28, 0x16, 0xAE, 0x32, 0x2F, 0xD5, 0x5B, 0xFD, 0x89, 0x8C, 0xBD, 0x74, 0x03, 0xDC, +0xFB, 0xB3, 0x3B, 0x59, 0xE8, 0xF4, 0xA3, 0xEF, 0x7F, 0x17, 0x6E, 0x7C, 0xFB, 0x3B, 0xD8, 0x30, +0x68, 0x9A, 0x19, 0x4C, 0xE3, 0x6C, 0x9D, 0x5A, 0x25, 0x60, 0x6B, 0x34, 0x00, 0x01, 0x2A, 0xA2, +0xD3, 0xCA, 0x08, 0x66, 0xE9, 0xEC, 0x46, 0x2B, 0x46, 0xCB, 0xB4, 0x0D, 0x24, 0xAB, 0x41, 0x0A, +0x6F, 0x63, 0xC9, 0x12, 0x63, 0x72, 0x5B, 0x43, 0x80, 0xDD, 0xDA, 0x1B, 0x03, 0x30, 0x0F, 0xBD, +0xE6, 0x58, 0x48, 0x86, 0x20, 0x31, 0xD2, 0x27, 0x20, 0x43, 0x05, 0x26, 0xBD, 0xD4, 0x88, 0x47, +0x87, 0x81, 0xC5, 0xC6, 0xB9, 0xFE, 0xD9, 0xCD, 0x24, 0xDE, 0xB8, 0xD1, 0x19, 0x9D, 0xC8, 0x57, +0x2B, 0x55, 0xCB, 0xC9, 0x22, 0x7C, 0x98, 0x4C, 0xE6, 0xA0, 0x07, 0x73, 0xB2, 0xC7, 0x10, 0x6D, +0xEA, 0x9D, 0xA4, 0x78, 0x16, 0x4D, 0x85, 0x2B, 0xD0, 0x82, 0x44, 0x77, 0x36, 0x2F, 0x3F, 0x63, +0xE7, 0x89, 0x9C, 0x26, 0x27, 0x28, 0x7D, 0xFC, 0xE9, 0xA7, 0x0E, 0x44, 0x03, 0xFE, 0x38, 0x2C, +0x59, 0xD2, 0x86, 0x18, 0x67, 0x9A, 0xD9, 0xD6, 0x68, 0xA2, 0x95, 0x29, 0xBD, 0x43, 0x87, 0xF7, +0x63, 0x88, 0x80, 0x90, 0x18, 0x8D, 0x20, 0xC0, 0x78, 0x34, 0x97, 0xAB, 0x30, 0x3B, 0x97, 0xCE, +0xE9, 0xC3, 0xBC, 0x7F, 0xDE, 0xFF, 0x9D, 0x1C, 0xDA, 0xF2, 0xBD, 0xFF, 0xF3, 0x86, 0xCF, 0xDC, +0x80, 0x81, 0xE2, 0x57, 0x1F, 0xDF, 0x79, 0x20, 0xE8, 0xB3, 0x7A, 0xF8, 0x74, 0xB6, 0x07, 0xF1, +0xDF, 0x2A, 0xAA, 0xB6, 0x30, 0xEB, 0x87, 0xA5, 0x05, 0x48, 0x06, 0x1E, 0x96, 0x89, 0x64, 0x16, +0x02, 0xA8, 0xFA, 0xE8, 0x82, 0x1A, 0x78, 0x3A, 0x22, 0xF1, 0x2E, 0xA6, 0x22, 0x5B, 0x5B, 0xBA, +0x21, 0xD1, 0xD0, 0x04, 0xBF, 0x7A, 0xF8, 0x49, 0x36, 0xE6, 0x76, 0xF7, 0xB3, 0x5B, 0xE0, 0xEA, +0x37, 0x5E, 0x07, 0x67, 0x9F, 0x77, 0x3E, 0x3C, 0xB1, 0x79, 0x33, 0x60, 0xE0, 0xC2, 0x2A, 0xFE, +0x58, 0x49, 0x0C, 0x54, 0x99, 0x63, 0xD4, 0x1C, 0xF3, 0xB1, 0xCA, 0x45, 0x22, 0xDB, 0xF5, 0x43, +0x09, 0x0F, 0xDE, 0x68, 0xAA, 0xC2, 0xCA, 0x52, 0xE9, 0xD6, 0x92, 0xF0, 0x63, 0xC6, 0x45, 0x62, +0x40, 0x4A, 0x1D, 0x95, 0x22, 0x40, 0x83, 0xBE, 0x53, 0x58, 0xF6, 0xE6, 0x35, 0x15, 0xCB, 0xDE, +0x6A, 0x26, 0x6A, 0x05, 0x2D, 0x55, 0x09, 0x00, 0xC9, 0x7D, 0xE8, 0xC2, 0xB3, 0xDF, 0xDA, 0xFF, +0xE4, 0xB6, 0x9F, 0x3F, 0x30, 0x93, 0xEB, 0x78, 0xDE, 0x79, 0x37, 0x2E, 0xDF, 0x7B, 0x74, 0xEB, +0x19, 0x0B, 0xCF, 0x59, 0x2E, 0x56, 0x8A, 0x63, 0xCC, 0x79, 0xD3, 0xF1, 0x7A, 0x19, 0xBA, 0xC5, +0xE2, 0xE6, 0x61, 0xCE, 0x87, 0xCC, 0x41, 0x3F, 0x3D, 0x10, 0x3D, 0x06, 0xB3, 0xA0, 0x19, 0x4B, +0x2C, 0xA7, 0x4A, 0xE7, 0xA7, 0x26, 0x86, 0xE6, 0x0F, 0x0D, 0x8E, 0x42, 0xF7, 0x92, 0xF6, 0xDA, +0xAC, 0x05, 0xAF, 0xF8, 0xAA, 0xAD, 0x63, 0x09, 0xEC, 0xDA, 0xF2, 0x04, 0x94, 0x30, 0xEC, 0xA0, +0xBF, 0x93, 0xE4, 0x94, 0xCA, 0x36, 0xCB, 0xE0, 0x20, 0x18, 0xA0, 0x73, 0x52, 0xFC, 0xC7, 0xA1, +0x58, 0xE7, 0xFD, 0xF4, 0xF8, 0xF9, 0x0B, 0xDA, 0x2E, 0x8D, 0x47, 0xF8, 0x79, 0x0D, 0x42, 0x3F, +0x1F, 0xF3, 0x67, 0x30, 0x99, 0x4C, 0x1B, 0x3F, 0x68, 0x86, 0x7F, 0x1E, 0x26, 0xC6, 0x33, 0x70, +0x6C, 0x30, 0x89, 0x90, 0xA3, 0x8E, 0x0C, 0x45, 0x1B, 0x4B, 0x5D, 0x0F, 0x2A, 0xCF, 0xE2, 0xCA, +0x72, 0x29, 0x05, 0x13, 0xE9, 0x49, 0x78, 0xCB, 0x5B, 0xDE, 0x02, 0xDF, 0xFF, 0xCE, 0xF7, 0xD9, +0x18, 0xBD, 0x71, 0xB4, 0xD9, 0x23, 0x93, 0x25, 0xF8, 0xF6, 0x37, 0xBF, 0x07, 0x7F, 0xF0, 0x81, +0x5B, 0x50, 0xD5, 0xFB, 0x99, 0x74, 0x82, 0x89, 0x21, 0x0F, 0x49, 0xA8, 0xA3, 0x83, 0x1F, 0x0F, +0x16, 0x1D, 0x10, 0x91, 0x8D, 0xF1, 0xE3, 0x58, 0xC9, 0x2B, 0x31, 0xB2, 0xAB, 0x25, 0x08, 0x0B, +0xE6, 0x85, 0xA0, 0x7B, 0x5E, 0x18, 0xA5, 0x53, 0x62, 0x61, 0x0F, 0xA9, 0x17, 0xF2, 0x19, 0x02, +0x98, 0x13, 0x25, 0xDB, 0x4A, 0x35, 0xC0, 0x84, 0x3E, 0xD1, 0xF7, 0x60, 0x8E, 0x98, 0xE3, 0x2D, +0x7E, 0xA0, 0x81, 0x9E, 0x21, 0x1F, 0xDF, 0x15, 0x53, 0xB4, 0xAB, 0x67, 0xDA, 0x19, 0xE7, 0xB7, +0x8D, 0x98, 0x56, 0x2E, 0x06, 0x55, 0x35, 0x30, 0x0D, 0xC2, 0xF4, 0x88, 0x4D, 0xCA, 0xC1, 0x74, +0x67, 0x3A, 0x57, 0x86, 0xC9, 0xD1, 0xC1, 0xAE, 0x44, 0xD3, 0xF2, 0x2B, 0x69, 0xF7, 0x2E, 0xCC, +0x80, 0x66, 0xF4, 0x60, 0x2A, 0x5A, 0xBE, 0x66, 0x59, 0xF4, 0x6F, 0xEE, 0x7F, 0xF4, 0x1E, 0x8E, +0x2A, 0xF9, 0x3B, 0x3A, 0x5A, 0xD0, 0x6E, 0x79, 0x98, 0x30, 0xF5, 0xB4, 0x29, 0x78, 0x41, 0xB7, +0x6F, 0x7B, 0x0A, 0x9D, 0x0F, 0x0B, 0xCA, 0x08, 0x0D, 0xE6, 0xD1, 0x5D, 0xA7, 0x2A, 0x42, 0x9A, +0x18, 0x5E, 0xAE, 0xC2, 0x63, 0xFE, 0x86, 0x96, 0xAF, 0x1C, 0xDB, 0x77, 0xCF, 0xE8, 0xBD, 0x77, +0x6E, 0xF9, 0xA4, 0x5E, 0xC8, 0xFD, 0xE1, 0xB6, 0xED, 0x5B, 0xF9, 0xAA, 0xEE, 0xA1, 0x4D, 0x91, +0x48, 0x14, 0x1D, 0x12, 0x1A, 0x13, 0x50, 0x62, 0xDE, 0xB4, 0x8B, 0x9E, 0xB0, 0x1E, 0x90, 0x58, +0xAF, 0x6C, 0xC0, 0x27, 0xB0, 0xA2, 0x2F, 0x0A, 0x4B, 0x42, 0x78, 0x5F, 0xCB, 0xB2, 0x6E, 0xB4, +0xEB, 0xCD, 0xF0, 0xF8, 0x23, 0xBF, 0x82, 0x28, 0x02, 0x0C, 0x02, 0x03, 0xFE, 0x05, 0xC8, 0x8E, +0x1E, 0x86, 0x4C, 0x2A, 0x09, 0x6F, 0xBB, 0xF9, 0xED, 0x70, 0xCF, 0x1D, 0x3F, 0x86, 0x80, 0x22, +0x31, 0x69, 0xA3, 0x9E, 0x18, 0xDA, 0xB4, 0xE1, 0x13, 0x1D, 0x96, 0x19, 0x22, 0xDB, 0x4D, 0x88, +0x16, 0xAB, 0x5E, 0x74, 0x81, 0xD5, 0x5C, 0xC5, 0xE3, 0x61, 0xA0, 0x3D, 0x3C, 0x45, 0x84, 0xF5, +0xA8, 0x6A, 0x90, 0xE7, 0xBD, 0xEC, 0x50, 0x14, 0x81, 0x0F, 0xFA, 0x3E, 0xB4, 0x76, 0x2D, 0x8F, +0x59, 0x28, 0x1D, 0x25, 0x95, 0xD6, 0x79, 0xEB, 0x54, 0x60, 0x46, 0x08, 0x16, 0x58, 0x51, 0x44, +0xB1, 0xAE, 0x81, 0x7D, 0xDF, 0xFC, 0x0E, 0xBE, 0xD5, 0xEE, 0x13, 0xBD, 0x96, 0x86, 0xAF, 0x41, +0xB7, 0xAD, 0xB4, 0xC1, 0x72, 0xCA, 0x34, 0x10, 0x94, 0x46, 0x12, 0xB1, 0xB0, 0xAB, 0x36, 0xE7, +0x91, 0x10, 0x6F, 0x6A, 0x20, 0xD3, 0xAB, 0xED, 0x7E, 0xA8, 0xDE, 0x91, 0xD2, 0x86, 0x37, 0xE0, +0x9F, 0x4F, 0xB8, 0xA5, 0x73, 0x46, 0x12, 0x4B, 0x45, 0xCB, 0x07, 0x47, 0xFA, 0xCF, 0xA1, 0x3D, +0x72, 0x8B, 0x97, 0xCC, 0xF7, 0x52, 0x64, 0x48, 0x55, 0x8C, 0xF6, 0xDB, 0xE6, 0x2F, 0x85, 0xED, +0x4F, 0x3E, 0xCA, 0xDA, 0x04, 0x4B, 0x78, 0x81, 0xCA, 0x78, 0x81, 0x58, 0x55, 0x3D, 0x5E, 0xA4, +0x54, 0x26, 0x07, 0xBE, 0x50, 0xEB, 0xB7, 0x87, 0xDE, 0x75, 0xE1, 0xF8, 0xD7, 0xBF, 0xFB, 0xE8, +0xE2, 0xF3, 0x2F, 0x5E, 0xFC, 0x67, 0x3D, 0x07, 0x0E, 0x45, 0x27, 0xD0, 0x61, 0xD2, 0x2D, 0x6F, +0x32, 0x1B, 0xED, 0x55, 0xB7, 0x31, 0x67, 0x4B, 0x6A, 0x30, 0x14, 0x90, 0x31, 0xA7, 0xAB, 0x42, +0x8C, 0x1C, 0x15, 0x45, 0x84, 0x30, 0xCD, 0x45, 0xC2, 0xA4, 0x74, 0x38, 0xE0, 0xCD, 0x48, 0xBA, +0xE6, 0xCD, 0xD7, 0x33, 0xC6, 0x45, 0x43, 0x3E, 0x68, 0x88, 0xAA, 0x10, 0x0E, 0xCA, 0xEC, 0x3E, +0xFA, 0xF7, 0x0F, 0xBF, 0xF9, 0xDF, 0x70, 0xDD, 0x5B, 0x6E, 0x84, 0xB6, 0xE6, 0x18, 0x4A, 0xB9, +0xC0, 0x0E, 0x05, 0xD9, 0xC7, 0x80, 0xC2, 0x33, 0x06, 0x8A, 0xA2, 0x97, 0x73, 0x65, 0xD3, 0x54, +0x85, 0x5A, 0x5D, 0x33, 0x0D, 0xAE, 0x16, 0xBC, 0x71, 0xB9, 0xA2, 0xE8, 0x75, 0x03, 0x52, 0x6F, +0xAE, 0x69, 0x7B, 0xDE, 0xB4, 0x4C, 0xCF, 0x47, 0x24, 0x8B, 0xAA, 0xF3, 0x05, 0x94, 0x60, 0x99, +0xA9, 0x73, 0x97, 0x21, 0x5A, 0x05, 0xFC, 0xBE, 0x93, 0xE9, 0xC9, 0xCE, 0xE4, 0xD8, 0xF0, 0x27, +0xAE, 0x3B, 0xEF, 0xCA, 0xE5, 0x27, 0x7A, 0x2D, 0x83, 0x4E, 0x41, 0x16, 0x1C, 0x4B, 0x26, 0xDF, +0x43, 0xC0, 0xF7, 0x8B, 0xA0, 0x1F, 0xD0, 0xD2, 0x1C, 0x81, 0x44, 0xC2, 0xAB, 0x78, 0x65, 0xF0, +0x25, 0x4D, 0x79, 0xC3, 0xCF, 0x28, 0x3A, 0x46, 0xAC, 0xAC, 0x65, 0xBA, 0x60, 0x06, 0x34, 0x23, +0xC6, 0x76, 0xC4, 0xD4, 0xCB, 0xBF, 0xF5, 0xE3, 0xDF, 0x06, 0x82, 0x8D, 0xAB, 0x60, 0xDD, 0xBA, +0xE5, 0x10, 0x0E, 0x79, 0x9E, 0xBE, 0x8E, 0x80, 0x41, 0x34, 0xDE, 0x04, 0x3B, 0x76, 0x6D, 0x85, +0x54, 0xA9, 0x0C, 0xB9, 0x4C, 0x01, 0x8A, 0x85, 0x2A, 0x43, 0x8D, 0x0A, 0xD9, 0x2C, 0xB4, 0x76, +0x5F, 0xF4, 0xAD, 0xD1, 0xFE, 0x27, 0x6F, 0xBF, 0x70, 0x87, 0x1A, 0xB8, 0xF1, 0x8A, 0x35, 0xFF, +0xBA, 0xE3, 0xF1, 0xED, 0x1D, 0x87, 0x8E, 0x3C, 0xCB, 0x99, 0x76, 0x9A, 0x2D, 0xD7, 0xA5, 0x24, +0x3C, 0xFB, 0x30, 0xCC, 0x69, 0x72, 0x58, 0x18, 0xE2, 0xA2, 0x13, 0x45, 0x52, 0x1A, 0x0E, 0xD0, +0xA6, 0x0C, 0x81, 0x15, 0xBC, 0xD1, 0x14, 0xD1, 0x86, 0xC6, 0x26, 0x58, 0xB4, 0x6C, 0x25, 0xEC, +0xDE, 0xF2, 0x28, 0x3B, 0x00, 0xF1, 0x88, 0x8F, 0x31, 0x95, 0x02, 0x79, 0x62, 0x5C, 0xA5, 0x98, +0x85, 0xA7, 0x1F, 0xFB, 0x2D, 0x5C, 0x73, 0xC3, 0x5B, 0x21, 0x80, 0x87, 0x21, 0x88, 0xF7, 0xA9, +0x3E, 0x6F, 0x07, 0x0F, 0x1B, 0x54, 0x4D, 0x2B, 0x5A, 0x90, 0x49, 0x41, 0x3C, 0x04, 0x8A, 0x1F, +0x7F, 0x06, 0x15, 0x96, 0x80, 0x37, 0x50, 0x02, 0x89, 0x71, 0x41, 0xFC, 0x9B, 0xDF, 0xAF, 0x30, +0x06, 0xD3, 0x98, 0x3C, 0xD2, 0x12, 0x05, 0xFC, 0x2E, 0xD9, 0x34, 0x82, 0x26, 0x08, 0xAC, 0x90, +0xD3, 0xD4, 0x10, 0x53, 0x60, 0x7E, 0x5B, 0x14, 0xDF, 0x5B, 0x45, 0x4D, 0x20, 0x11, 0x06, 0xAD, +0x4C, 0x96, 0x33, 0x1F, 0x38, 0x98, 0x2A, 0xBF, 0xF7, 0x44, 0xAF, 0x65, 0x44, 0x2A, 0x47, 0xF1, +0xA5, 0xC3, 0xA4, 0x31, 0xFC, 0x98, 0xF9, 0x5A, 0xBD, 0xA8, 0x1B, 0xDE, 0xB0, 0x6A, 0x39, 0x5C, +0xB3, 0x76, 0x8D, 0x7B, 0xC9, 0x85, 0xCB, 0x60, 0x51, 0x7B, 0x84, 0x15, 0xC9, 0xD3, 0x8A, 0x53, +0x13, 0x0F, 0x59, 0x31, 0x3D, 0xB0, 0x18, 0x66, 0x40, 0x33, 0xDA, 0x1F, 0x1B, 0x6F, 0x59, 0xAF, +0x97, 0x20, 0x52, 0x9A, 0x18, 0xEC, 0x5B, 0xD5, 0x7B, 0x68, 0x54, 0x3D, 0xD6, 0x33, 0xC4, 0x40, +0x81, 0x45, 0x4B, 0x57, 0x43, 0x6A, 0x72, 0x1C, 0x36, 0x6F, 0x7A, 0x04, 0xF2, 0x98, 0x86, 0xCB, +0xA0, 0x0A, 0xA6, 0x84, 0xBA, 0x51, 0x2D, 0x81, 0xEE, 0xAA, 0xBF, 0xEA, 0xED, 0x79, 0x8A, 0x8D, +0x4D, 0xFF, 0xD4, 0x2D, 0xE7, 0x6E, 0x94, 0x64, 0xFB, 0xA6, 0x47, 0x1E, 0xDD, 0xEC, 0x9F, 0x1C, +0xEC, 0xA3, 0x69, 0xA2, 0x78, 0x51, 0xBD, 0x3A, 0x60, 0x01, 0x21, 0x3C, 0x93, 0x25, 0x08, 0x28, +0x3C, 0xA2, 0xAA, 0x01, 0xD3, 0xAB, 0x94, 0x10, 0xBC, 0x6A, 0x07, 0x97, 0xE1, 0xB4, 0x02, 0xBC, +0xE1, 0xC6, 0x77, 0xC3, 0xAE, 0x67, 0x1E, 0x83, 0xF4, 0xE4, 0x28, 0x7B, 0xEF, 0x48, 0x30, 0xE4, +0x25, 0xCE, 0x69, 0x5F, 0x0F, 0xC6, 0x40, 0x04, 0xEE, 0xEF, 0xDB, 0xBD, 0x17, 0xFE, 0xE0, 0x96, +0x3F, 0x86, 0xDE, 0x43, 0x7B, 0xD8, 0xB4, 0x70, 0x96, 0x40, 0xB0, 0xBD, 0x32, 0x1A, 0x91, 0x3A, +0xC8, 0x6B, 0x99, 0x9E, 0xFA, 0x60, 0x0A, 0x91, 0xD5, 0x5E, 0xD5, 0xAA, 0x17, 0xD9, 0x7B, 0x51, +0x95, 0x62, 0x85, 0x65, 0x86, 0x7C, 0xF8, 0xB9, 0xA8, 0x6D, 0x33, 0x1C, 0x09, 0x60, 0xE8, 0x21, +0x31, 0xD0, 0x83, 0x25, 0x19, 0x30, 0xB5, 0x46, 0x3B, 0x67, 0x35, 0xDD, 0x66, 0x55, 0x1D, 0xF4, +0x26, 0x7E, 0x7F, 0x28, 0x96, 0x58, 0xF1, 0xC1, 0x1F, 0x26, 0xFB, 0x37, 0x1B, 0x2F, 0x76, 0x1D, +0x57, 0xBC, 0x7D, 0xA3, 0x1C, 0x33, 0x06, 0x2E, 0xE4, 0xDC, 0xF2, 0xDB, 0x36, 0xBC, 0xF1, 0x2D, +0xB0, 0x6D, 0xF3, 0xFD, 0xA8, 0xAD, 0x6C, 0x8C, 0x65, 0x27, 0x10, 0x52, 0x4C, 0x71, 0x55, 0x04, +0x67, 0x74, 0x72, 0x1E, 0x6D, 0x6F, 0xA2, 0x0E, 0xD0, 0xAC, 0x65, 0x25, 0xB0, 0x3F, 0x9B, 0x9B, +0x38, 0xE1, 0xA2, 0xBA, 0x19, 0x49, 0xEC, 0x4F, 0xBE, 0xF7, 0x89, 0xA3, 0x89, 0x90, 0xEF, 0x57, +0xE7, 0x9F, 0x79, 0x4E, 0xB4, 0x8A, 0x4E, 0xCC, 0x5E, 0xB4, 0xA7, 0x8F, 0x3E, 0xBE, 0x0F, 0x16, +0x2D, 0x59, 0x01, 0x77, 0xFE, 0xF4, 0x5E, 0x8F, 0xA9, 0x18, 0x3A, 0x34, 0x36, 0xC5, 0xD1, 0x6B, +0x8D, 0x80, 0x25, 0x84, 0x7F, 0x25, 0x04, 0x5B, 0xFF, 0x89, 0x9E, 0xFB, 0xD1, 0x8F, 0xAE, 0x5F, +0xBD, 0x60, 0x51, 0xDB, 0x0D, 0x47, 0x76, 0x1D, 0x88, 0x17, 0xD3, 0x59, 0xF4, 0xA0, 0x23, 0x68, +0x93, 0xE9, 0x64, 0x21, 0x72, 0x8B, 0xD9, 0x0C, 0xEA, 0x69, 0xE1, 0xF9, 0xFA, 0x7C, 0x62, 0x7E, +0x2A, 0x75, 0xC6, 0xD5, 0xCA, 0x45, 0x45, 0x94, 0x0C, 0xBC, 0x6C, 0x18, 0xD8, 0xAF, 0x80, 0xE1, +0xDE, 0xC3, 0xEC, 0xF3, 0x78, 0xF1, 0xB1, 0x55, 0x4B, 0xAD, 0xD9, 0x6C, 0xF4, 0x3C, 0x55, 0x18, +0x92, 0x96, 0xD8, 0xB1, 0x65, 0x33, 0x5C, 0x74, 0xD5, 0xF5, 0x88, 0x31, 0x7B, 0xC3, 0xA4, 0xD9, +0xBC, 0xFF, 0x1A, 0xD3, 0xDC, 0x5A, 0x25, 0x23, 0x35, 0x7B, 0x89, 0x35, 0x4E, 0xD1, 0x58, 0x5D, +0x1A, 0x21, 0x40, 0x43, 0xC6, 0x8A, 0xA8, 0x5E, 0xE9, 0x73, 0xB4, 0x34, 0x61, 0x4A, 0x6D, 0x7E, +0x3B, 0x7E, 0x97, 0x06, 0x16, 0xB3, 0xFA, 0xD1, 0x8B, 0x23, 0x07, 0x8A, 0xD2, 0x86, 0x15, 0xCD, +0x66, 0x68, 0x96, 0x2F, 0x10, 0x60, 0x59, 0x26, 0xB2, 0xD9, 0x60, 0x64, 0x57, 0x35, 0x8B, 0x93, +0x2F, 0x09, 0x31, 0x76, 0x14, 0x26, 0x3B, 0x2D, 0x8B, 0xBF, 0xA0, 0x5C, 0xCC, 0x20, 0xF8, 0x82, +0x07, 0x06, 0xBF, 0xFF, 0xA2, 0xE6, 0x26, 0x38, 0x63, 0x51, 0x2B, 0x9B, 0x48, 0xDE, 0x9F, 0xB6, +0x20, 0x9D, 0x37, 0xC0, 0x2F, 0xE2, 0x81, 0xF2, 0xC7, 0x87, 0x75, 0x88, 0x7D, 0xDB, 0xF2, 0x35, +0xCD, 0x08, 0x93, 0x9E, 0xB1, 0x57, 0xDC, 0xDA, 0xBD, 0xE2, 0x5A, 0xE0, 0x2C, 0xCE, 0xB2, 0x73, +0xE8, 0x94, 0x58, 0x70, 0xD6, 0x9A, 0x2E, 0xD8, 0xFC, 0xC8, 0x26, 0xD8, 0x7F, 0xA8, 0x1F, 0x53, +0x4C, 0x0E, 0x5B, 0x35, 0x16, 0xF2, 0x0B, 0xE8, 0x38, 0x55, 0x26, 0x15, 0xB5, 0xF9, 0x5B, 0x2D, +0x91, 0xA5, 0xCC, 0xA1, 0xC8, 0x64, 0xB2, 0xE7, 0x8D, 0xF4, 0xF4, 0x76, 0xF5, 0xF5, 0xF6, 0xA1, +0xF8, 0x94, 0x91, 0x21, 0x55, 0xA6, 0xC6, 0x02, 0xA8, 0xFA, 0x7C, 0x50, 0x61, 0x31, 0x30, 0x2B, +0x2A, 0x63, 0xA3, 0xE1, 0x3D, 0x45, 0xC2, 0x90, 0x27, 0x1A, 0x51, 0x6B, 0xB9, 0x6C, 0x8A, 0xE9, +0xC5, 0x57, 0xBD, 0x09, 0x76, 0x3E, 0x8B, 0xD2, 0x9A, 0x1C, 0x67, 0x61, 0x8C, 0xB7, 0x1C, 0xC2, +0x9D, 0x62, 0x32, 0x0D, 0xC0, 0xA4, 0x34, 0x9B, 0x8B, 0xAF, 0xF1, 0xF8, 0x43, 0xF7, 0xC3, 0xD2, +0x55, 0x67, 0xC3, 0xBC, 0xF9, 0x8B, 0x59, 0xC6, 0x46, 0xA9, 0x8D, 0x35, 0xE0, 0x3D, 0xE1, 0x62, +0xCC, 0x24, 0x66, 0xD3, 0xD4, 0xF1, 0xBA, 0xB3, 0x44, 0x53, 0x4F, 0xBD, 0xBF, 0xA1, 0x3D, 0x0F, +0xFB, 0x99, 0x06, 0xA8, 0x57, 0x7C, 0x50, 0x82, 0xDE, 0x57, 0x6B, 0xA4, 0x32, 0x4C, 0x1A, 0x0C, +0xE6, 0xC7, 0x38, 0x58, 0xC6, 0x77, 0xA7, 0xB9, 0x15, 0xCD, 0x18, 0xD8, 0xC6, 0xA1, 0x82, 0x8F, +0xD3, 0xF2, 0x87, 0x3F, 0xB6, 0x6E, 0xC3, 0xC6, 0xE8, 0x8B, 0x5D, 0x43, 0xB7, 0x7C, 0xF0, 0x0D, +0x8A, 0x9B, 0x7C, 0x93, 0x50, 0x6B, 0xC4, 0x22, 0xA4, 0x29, 0x99, 0xCA, 0xA1, 0xC6, 0x72, 0xA0, +0x39, 0xE4, 0x87, 0x15, 0xED, 0x31, 0x14, 0x52, 0x2A, 0x6E, 0xA3, 0x50, 0xCC, 0xF7, 0x88, 0xDC, +0xBC, 0xE0, 0x5F, 0xF8, 0xD6, 0x0B, 0xB7, 0xC3, 0x0C, 0x68, 0x46, 0x5E, 0x31, 0x15, 0x4F, 0xB7, +0xCB, 0xB9, 0xBF, 0x3A, 0x7C, 0x70, 0x8B, 0x6B, 0x57, 0x93, 0x1C, 0xB5, 0xF7, 0xBF, 0xF1, 0xFA, +0x1B, 0xE1, 0xAF, 0x3F, 0xF9, 0x09, 0x28, 0x8D, 0x21, 0xD2, 0x24, 0x06, 0x20, 0x88, 0x27, 0xBB, +0xA7, 0x1F, 0xB3, 0xB3, 0x65, 0xEE, 0x3B, 0xE9, 0x89, 0x87, 0xA7, 0x4E, 0x99, 0x8F, 0x87, 0x0F, +0x6F, 0xDA, 0xB2, 0x45, 0xEE, 0x1F, 0xDA, 0xC3, 0x95, 0xB4, 0x82, 0xD7, 0xBF, 0x43, 0xF6, 0x4E, +0xA6, 0x4E, 0x3B, 0x60, 0x95, 0x8C, 0x25, 0x74, 0x46, 0xEC, 0x5A, 0x35, 0x0C, 0xCD, 0x80, 0xA0, +0x49, 0xE3, 0x84, 0x34, 0x51, 0x91, 0x57, 0x24, 0x1E, 0x83, 0x65, 0x6B, 0xCE, 0x86, 0xAF, 0x7C, +0xF6, 0x2F, 0xD8, 0xA2, 0x40, 0x0D, 0xA5, 0xCD, 0x36, 0x2C, 0xA6, 0xAE, 0xA9, 0x6A, 0x91, 0xD2, +0xB2, 0xAC, 0x4B, 0xC0, 0xA2, 0xF1, 0x7D, 0x36, 0xA4, 0xD1, 0x61, 0x7B, 0xF0, 0xEE, 0x9F, 0xC2, +0x95, 0xD7, 0xBF, 0x03, 0x6E, 0xFF, 0xC6, 0xBF, 0xB0, 0xEC, 0x1F, 0x79, 0x9D, 0x34, 0x12, 0x80, +0x72, 0xB9, 0x24, 0xC9, 0x92, 0x8F, 0xF6, 0xE3, 0x19, 0x5E, 0xD3, 0xB3, 0x55, 0x4B, 0xF9, 0x61, +0x16, 0x47, 0xC2, 0xF7, 0x56, 0xFD, 0xF5, 0xFD, 0x01, 0x68, 0x7B, 0xD1, 0x61, 0xA2, 0xA6, 0x6A, +0xC6, 0x08, 0xCC, 0xB6, 0x48, 0xE8, 0xE8, 0x70, 0x83, 0x87, 0xC1, 0xC2, 0x84, 0x04, 0xB5, 0xB6, +0x9A, 0x24, 0x1F, 0x91, 0x06, 0x90, 0x82, 0x2D, 0xA8, 0x85, 0xA2, 0x0B, 0xAB, 0xD6, 0xC4, 0x55, +0xF8, 0xC4, 0x3B, 0x7F, 0xDF, 0x75, 0x14, 0xAA, 0x95, 0x0F, 0x95, 0xDC, 0x42, 0xB3, 0x53, 0x5B, +0x43, 0x33, 0x89, 0xC0, 0x44, 0xAF, 0x95, 0x05, 0xC9, 0xB5, 0x98, 0xF7, 0x4E, 0xA3, 0xF8, 0xBA, +0xC3, 0x3E, 0x38, 0x9C, 0x17, 0xF0, 0xC8, 0xFB, 0x8B, 0x43, 0xFB, 0x1E, 0xC4, 0x58, 0xF6, 0x41, +0x98, 0x09, 0x9D, 0xB0, 0xC4, 0x92, 0x8D, 0xBC, 0xF9, 0xE2, 0xAE, 0x4F, 0x69, 0x63, 0xDB, 0x20, +0x33, 0x71, 0x80, 0x43, 0x1E, 0xC0, 0x19, 0xE7, 0x5D, 0x06, 0x7D, 0x3D, 0x47, 0x61, 0x7C, 0x62, +0x02, 0x2C, 0xF2, 0x22, 0x8D, 0x12, 0x8C, 0x8E, 0x8D, 0x41, 0x2A, 0xEF, 0xFC, 0xB0, 0x63, 0xF9, +0xCD, 0xFF, 0x56, 0x7F, 0xEE, 0xF6, 0x67, 0xFB, 0xFF, 0x63, 0x78, 0x68, 0x64, 0xCD, 0xD1, 0x63, +0x3D, 0x18, 0xF9, 0xD4, 0x9A, 0xB2, 0xD0, 0xB6, 0xFA, 0x25, 0x07, 0x6D, 0x6A, 0x05, 0x6D, 0x32, +0x32, 0x03, 0xD1, 0x17, 0x97, 0x8D, 0x91, 0x37, 0x58, 0xCF, 0x0D, 0x09, 0x15, 0x95, 0x7F, 0x7A, +0x78, 0xAD, 0x03, 0x57, 0xBD, 0xE9, 0x6D, 0xB0, 0x77, 0xC7, 0x36, 0x18, 0x1E, 0x4B, 0x43, 0xD5, +0x12, 0x18, 0x60, 0x6F, 0xA3, 0x73, 0x46, 0x83, 0xAB, 0xA9, 0x2D, 0x13, 0xB9, 0x84, 0xB1, 0xA5, +0xC0, 0x3A, 0xEE, 0x2C, 0x94, 0xF0, 0x22, 0x62, 0xC6, 0x9B, 0x7E, 0x75, 0x2F, 0x86, 0x31, 0x0D, +0x54, 0xFD, 0x88, 0xA1, 0x4C, 0x85, 0xC5, 0xC5, 0x19, 0x34, 0x17, 0x29, 0xF4, 0x01, 0x72, 0x25, +0x03, 0xD3, 0x7F, 0x74, 0x98, 0x2C, 0xA6, 0x92, 0x15, 0x59, 0x85, 0x66, 0x74, 0xCC, 0x1A, 0x12, +0x51, 0x8C, 0xA7, 0x03, 0x5E, 0xDA, 0x8E, 0xD9, 0x6E, 0x67, 0xAA, 0x97, 0x97, 0x14, 0x04, 0x4D, +0x1E, 0xA7, 0x51, 0xBC, 0xE3, 0x08, 0x9C, 0x64, 0xA8, 0x0D, 0x17, 0x1F, 0xDF, 0xB6, 0x6E, 0x11, +0xB4, 0x27, 0x14, 0xF0, 0x97, 0x86, 0x20, 0xD9, 0xBF, 0x13, 0xD6, 0xB7, 0xC1, 0xE7, 0x3F, 0xFF, +0x7F, 0xEF, 0xB8, 0xEA, 0x85, 0x62, 0xDB, 0x4B, 0xCF, 0x7F, 0xDB, 0xDB, 0x65, 0x31, 0xB3, 0xCE, +0xA6, 0xB1, 0x09, 0xB5, 0xBE, 0x22, 0xAA, 0xB8, 0xA4, 0x26, 0xE7, 0x2A, 0x26, 0xFE, 0x33, 0xD9, +0x2A, 0x1C, 0xEC, 0xCD, 0xC0, 0x11, 0x44, 0xD3, 0x22, 0x88, 0x78, 0xB5, 0x84, 0xD5, 0x59, 0xB5, +0x73, 0x9E, 0x30, 0x63, 0x35, 0x25, 0x19, 0xE8, 0x68, 0xF0, 0x9D, 0x7F, 0xB8, 0xEF, 0x18, 0x26, +0xD4, 0x4D, 0x56, 0xDD, 0xF0, 0xA6, 0xB7, 0xBE, 0x13, 0xEE, 0xF9, 0xC5, 0x5D, 0x6C, 0xA0, 0x25, +0x39, 0x2D, 0x06, 0xAB, 0x25, 0x82, 0x64, 0xAC, 0x65, 0xF1, 0x77, 0xEA, 0xD3, 0x56, 0xF6, 0x1C, +0x1E, 0x5F, 0xB0, 0x6C, 0x71, 0xE3, 0x9F, 0x1E, 0xEB, 0xE9, 0xE1, 0x05, 0x07, 0x21, 0x3D, 0xBE, +0xCA, 0x98, 0x4A, 0x5F, 0xAA, 0x42, 0x95, 0x78, 0x94, 0x89, 0x11, 0x3C, 0xDB, 0x48, 0x38, 0xB1, +0xCB, 0x16, 0xDA, 0x3B, 0x6C, 0xD8, 0x47, 0xBD, 0xA1, 0x2A, 0x86, 0x09, 0xE8, 0xF3, 0x2E, 0xDE, +0x00, 0xBF, 0xBC, 0xEB, 0x76, 0x2F, 0x04, 0x70, 0xBC, 0xC9, 0x6A, 0xAC, 0xB2, 0xC1, 0x70, 0xD8, +0x3E, 0x3C, 0xA3, 0xAA, 0x7B, 0x4C, 0xA5, 0x42, 0xF0, 0x7A, 0x25, 0x22, 0x3E, 0xE8, 0x07, 0xFF, +0xFB, 0x15, 0xB8, 0xE4, 0xEA, 0x1B, 0x19, 0x96, 0x4D, 0x2A, 0x9D, 0x9C, 0x1D, 0x4A, 0xCD, 0xD1, +0x4F, 0x0A, 0x29, 0xA8, 0xB2, 0xC3, 0x60, 0x63, 0x0B, 0x4C, 0x66, 0x63, 0x25, 0x89, 0xB6, 0x5C, +0x85, 0x59, 0xFF, 0x2A, 0x81, 0x14, 0xAC, 0x98, 0x9C, 0xF5, 0xCC, 0xA2, 0x37, 0x60, 0xB2, 0x99, +0x70, 0x60, 0x67, 0x93, 0xE0, 0xA7, 0xCA, 0xFD, 0x68, 0x10, 0x1A, 0x50, 0x75, 0xF2, 0x18, 0x15, +0x54, 0xF0, 0xA0, 0x94, 0xF1, 0xB3, 0x4D, 0x64, 0x32, 0xD0, 0xD7, 0xD7, 0xD3, 0x39, 0xAF, 0x23, +0xF1, 0xC1, 0x6B, 0xAE, 0x69, 0x5F, 0x32, 0xFD, 0x1A, 0x76, 0xAD, 0xB8, 0xB6, 0xC5, 0x6F, 0x0E, +0xFD, 0x2D, 0xC1, 0xAA, 0xE4, 0xC0, 0x11, 0xB2, 0xA4, 0x55, 0x68, 0x6B, 0x88, 0x07, 0x4F, 0x2A, +0x08, 0x9F, 0x92, 0xB9, 0xA0, 0xBC, 0x71, 0x01, 0x0F, 0x62, 0xBA, 0x48, 0x51, 0x83, 0x3E, 0xAB, +0x61, 0x5E, 0x27, 0xCC, 0xD8, 0x72, 0x32, 0xDB, 0xBA, 0x65, 0xFB, 0xD6, 0xD6, 0x92, 0x96, 0x46, +0x77, 0x47, 0x82, 0xE5, 0xAB, 0xCF, 0x65, 0x36, 0x70, 0xFF, 0x9E, 0xDD, 0x6C, 0xE2, 0xA8, 0xC6, +0xD4, 0x9C, 0xA2, 0x05, 0x82, 0xCD, 0xFF, 0xDE, 0xB7, 0xFF, 0x3E, 0x66, 0x57, 0xA9, 0xD3, 0xAE, +0xA3, 0xC9, 0xFF, 0xB7, 0x03, 0x43, 0x63, 0x42, 0xFF, 0xB1, 0xFD, 0xC8, 0xAC, 0x22, 0x93, 0xCA, +0x00, 0xEA, 0x2F, 0xB3, 0x5A, 0x40, 0xA8, 0x31, 0x87, 0x69, 0x38, 0x8D, 0x2D, 0x0B, 0xA4, 0xE8, +0x52, 0x14, 0x44, 0x66, 0x03, 0xC9, 0x59, 0xA2, 0x25, 0x87, 0x55, 0x56, 0xC9, 0x68, 0xC3, 0x19, +0xE7, 0x5E, 0x02, 0x4F, 0x62, 0x08, 0x33, 0x82, 0x99, 0x24, 0xFA, 0x3B, 0x49, 0xA8, 0x56, 0x35, +0x59, 0x39, 0x2B, 0x3D, 0x46, 0x37, 0xBC, 0xBA, 0x24, 0xD3, 0xF2, 0x6C, 0xB2, 0x51, 0x1B, 0x1D, +0x4F, 0x4C, 0xDF, 0xB1, 0x7D, 0x17, 0xF3, 0x6E, 0xD7, 0x9C, 0xBB, 0x81, 0x49, 0x67, 0xB6, 0x48, +0x8C, 0xE4, 0x09, 0x5C, 0x67, 0x9B, 0xAD, 0xA8, 0x7B, 0xCF, 0x71, 0xBD, 0xC2, 0xF1, 0x44, 0x43, +0x1C, 0x58, 0x7C, 0x8A, 0xB9, 0xD0, 0x7A, 0x9F, 0xAA, 0x6D, 0x79, 0x1D, 0x03, 0x54, 0x65, 0x41, +0x35, 0x18, 0x32, 0x26, 0xDE, 0x79, 0xCC, 0xC6, 0x74, 0xC4, 0xFD, 0xD0, 0xD1, 0xDE, 0x00, 0x46, +0x01, 0x1D, 0xC6, 0xC3, 0x7D, 0x60, 0x8F, 0x8F, 0x81, 0x52, 0x2C, 0x42, 0x77, 0x4B, 0x3B, 0x8C, +0x66, 0x46, 0x31, 0x5F, 0xAB, 0xDD, 0x1C, 0x8D, 0xC5, 0xBF, 0x54, 0xBF, 0x7E, 0x2B, 0x36, 0x7C, +0x34, 0xD8, 0xAD, 0x0C, 0x7F, 0x5A, 0x10, 0xB2, 0xEB, 0xA8, 0xA9, 0x99, 0x99, 0x74, 0x51, 0x64, +0x8C, 0xA5, 0x01, 0x27, 0x94, 0xA6, 0xCC, 0x22, 0x4A, 0x57, 0xD4, 0x69, 0x1D, 0xAA, 0x57, 0x48, +0x3F, 0x9E, 0x2E, 0xC3, 0xD8, 0x64, 0x26, 0x0E, 0xB3, 0xA0, 0x13, 0x62, 0x2C, 0xF5, 0x89, 0x72, +0x86, 0x76, 0x65, 0x25, 0x9F, 0x5E, 0xC5, 0x5B, 0x69, 0xA0, 0x39, 0x10, 0xE7, 0x5D, 0x71, 0x35, +0xFC, 0xF0, 0xDB, 0xDF, 0x81, 0x0C, 0xA6, 0xCA, 0x4C, 0xB4, 0x83, 0x92, 0x2F, 0x0A, 0xC1, 0x86, +0x85, 0xDF, 0x4E, 0x2C, 0x3A, 0x7F, 0xCA, 0xB6, 0xBC, 0xE3, 0x9A, 0xF5, 0x1F, 0xB5, 0x2A, 0xCE, +0x35, 0xB7, 0x7D, 0xF7, 0xFB, 0x18, 0xDB, 0x16, 0x5D, 0x91, 0x0F, 0x62, 0xDA, 0xCB, 0x73, 0x18, +0x24, 0x06, 0xA6, 0x53, 0xEA, 0x4C, 0x67, 0x63, 0x6B, 0x7D, 0x08, 0x20, 0xF8, 0xD1, 0xAE, 0x05, +0xFC, 0x12, 0x86, 0x11, 0x01, 0xB6, 0xE0, 0x88, 0x42, 0x8A, 0x08, 0xAA, 0xD2, 0xF5, 0x17, 0x5E, +0x06, 0x77, 0xFE, 0xE8, 0x07, 0x1E, 0xB3, 0x6A, 0x28, 0x10, 0x31, 0x98, 0xBC, 0x5C, 0xA7, 0xB6, +0x27, 0x80, 0x2A, 0x23, 0x38, 0xD7, 0x64, 0xD2, 0x45, 0xD2, 0x58, 0xA4, 0x51, 0xF1, 0x06, 0x4F, +0xB3, 0x24, 0xE0, 0xA7, 0x3F, 0xBE, 0x0D, 0xDE, 0xF4, 0xB6, 0x77, 0x41, 0x19, 0x9D, 0x1E, 0x0D, +0x2F, 0x5C, 0x22, 0xA6, 0x42, 0x22, 0xEA, 0xF7, 0x36, 0x74, 0xE1, 0x01, 0xA1, 0x5E, 0x21, 0xF2, +0x78, 0x75, 0x0C, 0xB5, 0x8A, 0x85, 0xA2, 0xC7, 0xD4, 0x69, 0x30, 0x1F, 0x53, 0xC9, 0xA8, 0x3D, +0x96, 0x2C, 0x5D, 0x09, 0xA1, 0x4A, 0x86, 0x85, 0x47, 0xB4, 0xE4, 0xC1, 0x87, 0xEF, 0x3D, 0x6F, +0xD5, 0x5A, 0x36, 0xF3, 0x98, 0x66, 0xD5, 0xC4, 0xDB, 0x1B, 0xA1, 0x7B, 0xE5, 0x4A, 0x58, 0xB2, +0x7C, 0x3D, 0x3C, 0xFD, 0xEC, 0x11, 0x5E, 0xF5, 0x1B, 0x97, 0xFF, 0xEF, 0xB7, 0x1F, 0x7B, 0x2B, +0x85, 0x37, 0x8B, 0xC4, 0x7D, 0x37, 0x37, 0x04, 0xAD, 0x8F, 0x4A, 0x78, 0x98, 0x9E, 0x3F, 0x9A, +0x80, 0x35, 0x85, 0xD9, 0x2E, 0x73, 0xD0, 0x28, 0xBC, 0x21, 0xD4, 0x89, 0xBE, 0x13, 0x21, 0x52, +0x9C, 0x63, 0x76, 0xC0, 0x2C, 0xE8, 0x84, 0x18, 0xFB, 0x0F, 0xEF, 0x59, 0x7F, 0x6B, 0x7B, 0x44, +0xFE, 0xF4, 0x68, 0xB6, 0xC4, 0x51, 0x82, 0x39, 0x94, 0x98, 0x07, 0xF1, 0xC6, 0x66, 0xB8, 0xFF, +0x81, 0x07, 0x6B, 0x61, 0x83, 0xE1, 0x94, 0xCB, 0xC5, 0x1E, 0xAD, 0x9C, 0xFD, 0xE1, 0xC1, 0xA7, +0xBE, 0x3D, 0x40, 0xCF, 0xD9, 0xBE, 0xA5, 0x77, 0x4D, 0x58, 0xE5, 0xDF, 0xBB, 0xF5, 0xB1, 0x47, +0xE7, 0x15, 0x4B, 0x15, 0x37, 0xEC, 0xB7, 0x39, 0x49, 0x28, 0x23, 0xB3, 0x3C, 0x6C, 0x99, 0x32, +0x34, 0x0A, 0x9A, 0x8F, 0x48, 0x08, 0xD3, 0x55, 0x0A, 0x87, 0x18, 0xB0, 0x09, 0x59, 0xB4, 0x7D, +0x5A, 0x85, 0x56, 0x7E, 0x9B, 0x98, 0xDB, 0x15, 0x58, 0x42, 0xFB, 0xCC, 0xF5, 0xE7, 0xC2, 0xB1, +0xC3, 0xFB, 0x60, 0x7C, 0x3C, 0x85, 0x12, 0xE7, 0x32, 0xC6, 0x90, 0x9F, 0x43, 0xD0, 0x1E, 0x49, +0x6D, 0x3D, 0x1E, 0x25, 0x75, 0x4A, 0xC0, 0x3C, 0xF5, 0xE7, 0x10, 0x63, 0x4A, 0x9A, 0xC9, 0xB6, +0x77, 0xD0, 0x78, 0xDA, 0x1D, 0xDB, 0xB7, 0xC1, 0xD8, 0xE8, 0x18, 0x22, 0x52, 0x37, 0x20, 0xCA, +0xE3, 0x63, 0x20, 0xDE, 0x58, 0xAA, 0x04, 0xFD, 0xE3, 0x15, 0x88, 0x86, 0x69, 0x7D, 0x4A, 0x88, +0x41, 0x84, 0x69, 0x54, 0xA3, 0x84, 0x24, 0x15, 0x0A, 0x15, 0xE6, 0xA0, 0x51, 0xBD, 0x11, 0x99, +0x84, 0x32, 0x66, 0xAA, 0xA8, 0x0E, 0x9A, 0x66, 0x3F, 0x95, 0x7D, 0x88, 0x0C, 0x75, 0x2C, 0x04, +0x63, 0xE1, 0x4A, 0x18, 0x30, 0x7C, 0xB0, 0xEF, 0xD1, 0x47, 0xBD, 0x38, 0x1C, 0xB9, 0x13, 0x6B, +0xC0, 0x70, 0xA5, 0xAB, 0x95, 0x69, 0x9D, 0x42, 0xBE, 0xE8, 0x66, 0x27, 0x4B, 0xD6, 0xBC, 0xD6, +0xA6, 0x65, 0x9D, 0xC3, 0x9B, 0xDE, 0x22, 0x68, 0xE5, 0x4F, 0xDB, 0x35, 0xA4, 0x8E, 0xAB, 0xA1, +0x5E, 0xD3, 0x69, 0x5A, 0x58, 0x3D, 0xC5, 0x6C, 0xD2, 0x14, 0x55, 0x2D, 0xBF, 0xE0, 0x8C, 0xCB, +0x3F, 0x35, 0x1F, 0x66, 0x48, 0x2F, 0xC9, 0xD8, 0x2F, 0x7F, 0xF9, 0xBE, 0x55, 0x4E, 0x35, 0xFD, +0xE1, 0xFC, 0xF8, 0xDE, 0x78, 0x39, 0x7D, 0x18, 0x26, 0x33, 0x45, 0x78, 0xC3, 0x9B, 0x6F, 0x82, +0x1F, 0xFD, 0xE0, 0xC7, 0x28, 0x01, 0x12, 0x4B, 0xC3, 0x21, 0x3C, 0x97, 0x56, 0xC2, 0x2D, 0xF7, +0x34, 0x2F, 0xDB, 0xC0, 0x8A, 0xD5, 0xF7, 0xEC, 0xC9, 0xC5, 0xE6, 0xCF, 0x6F, 0xB8, 0x66, 0x62, +0x6C, 0x62, 0x71, 0xDF, 0xD0, 0x30, 0x22, 0x44, 0x22, 0x27, 0x88, 0x74, 0xD1, 0x8D, 0xA9, 0xDE, +0x1D, 0x16, 0xD6, 0xE0, 0x4D, 0xA5, 0x36, 0x42, 0x56, 0x11, 0x48, 0x13, 0x5E, 0x74, 0x56, 0x40, +0x9E, 0x42, 0xC7, 0x81, 0x70, 0x59, 0x02, 0x20, 0x2E, 0xBC, 0xE2, 0x4D, 0x70, 0xFF, 0x5D, 0xB7, +0xB1, 0x22, 0x32, 0x42, 0x61, 0xA8, 0xCD, 0xB0, 0xC8, 0x46, 0xCA, 0x7B, 0x9B, 0xAD, 0xAA, 0x34, +0xDB, 0x98, 0xB0, 0x5B, 0xBC, 0x95, 0x35, 0x93, 0x49, 0x2B, 0x9B, 0x41, 0x8C, 0x92, 0x4D, 0x36, +0xBC, 0x84, 0x20, 0x75, 0x1E, 0xC1, 0x86, 0x7F, 0xF8, 0x87, 0xCF, 0xC0, 0xCD, 0xEF, 0xBC, 0x99, +0xD9, 0xC5, 0x14, 0x22, 0x48, 0x29, 0x74, 0x52, 0x22, 0xF8, 0x3B, 0xE5, 0xEC, 0x65, 0xF4, 0x8E, +0x83, 0x41, 0x7F, 0xAD, 0xB6, 0x98, 0x44, 0xDF, 0xF1, 0xB6, 0x38, 0x9B, 0x55, 0x6F, 0xB2, 0x0B, +0xBE, 0xE7, 0xE0, 0x58, 0x1E, 0x0E, 0xED, 0xEF, 0x83, 0x01, 0x34, 0x1B, 0x47, 0x07, 0x53, 0x50, +0xA4, 0x8D, 0x5A, 0xF8, 0xD9, 0x2D, 0xFA, 0x1E, 0xF8, 0x22, 0x34, 0xD8, 0xBA, 0x94, 0x9A, 0x84, +0x2C, 0xE6, 0xA2, 0x6D, 0x94, 0x6A, 0xB3, 0x34, 0xC6, 0x15, 0x4A, 0x25, 0x0E, 0xFD, 0x91, 0xB6, +0xAA, 0x59, 0xB9, 0x49, 0x94, 0xF4, 0x2E, 0x9A, 0x83, 0x5C, 0x67, 0xDA, 0x54, 0xF5, 0x7B, 0x8D, +0x9C, 0x5A, 0xD1, 0xFA, 0xD4, 0xBF, 0x1D, 0xEF, 0x81, 0xB6, 0x6D, 0xA8, 0xD5, 0x4A, 0x61, 0x46, +0xA8, 0xD3, 0x4B, 0x32, 0xF6, 0xDD, 0xEF, 0xFF, 0xF2, 0xE2, 0xEE, 0x46, 0xE9, 0x8E, 0xAD, 0xBB, +0xB6, 0x2D, 0xDF, 0x7B, 0xEC, 0x88, 0xC8, 0x63, 0xFC, 0xD9, 0x98, 0x88, 0xC3, 0xCA, 0x55, 0x6B, +0x60, 0xC7, 0x8E, 0x43, 0xA0, 0xC4, 0x96, 0xB1, 0x4F, 0xE2, 0x8F, 0x74, 0x6E, 0x6E, 0xEA, 0x5A, +0xF1, 0x5F, 0x07, 0x36, 0x7F, 0x8D, 0xD5, 0xD8, 0xBA, 0x6E, 0xEE, 0xAD, 0x7A, 0xB5, 0xF0, 0xA9, +0xA7, 0x1E, 0x7B, 0x8A, 0x9F, 0x9C, 0x4C, 0x72, 0x3E, 0x45, 0x67, 0x31, 0x99, 0x8D, 0x5E, 0x33, +0x6D, 0xC6, 0xA0, 0x0B, 0xC6, 0x16, 0x05, 0x93, 0x74, 0x21, 0xB3, 0x44, 0x89, 0x63, 0x65, 0xA2, +0x34, 0x60, 0xA4, 0x54, 0x41, 0xCF, 0xB0, 0x60, 0xB0, 0x1C, 0xE9, 0xF2, 0x33, 0x2E, 0x84, 0x9E, +0x43, 0x07, 0x10, 0xD8, 0xF7, 0x3A, 0xF6, 0x08, 0xB4, 0xA7, 0x98, 0x92, 0x6A, 0x92, 0x93, 0x79, +0xC4, 0xA4, 0xD1, 0x8B, 0xCC, 0x51, 0x7D, 0x32, 0xDE, 0x08, 0xBC, 0x37, 0x6A, 0xB3, 0x9B, 0xC8, +0x3E, 0x55, 0xD1, 0x0E, 0xD3, 0xFD, 0x14, 0x42, 0x15, 0x50, 0x0B, 0x0C, 0x0D, 0x8F, 0xC2, 0xDD, +0x3F, 0xFB, 0x19, 0x5C, 0x75, 0xCD, 0xB5, 0xCC, 0x06, 0xFB, 0x31, 0x73, 0x83, 0x5C, 0xC3, 0xE7, +0x69, 0xA8, 0x56, 0x8B, 0xDE, 0xCE, 0x3B, 0x51, 0xF0, 0x52, 0x7D, 0xAE, 0x17, 0x1A, 0x51, 0x52, +0xA0, 0x77, 0x28, 0x09, 0xC7, 0xC6, 0x8A, 0x90, 0xAE, 0xB8, 0xF0, 0xF8, 0x96, 0x67, 0xC0, 0x87, +0x5E, 0x71, 0x5B, 0x58, 0x84, 0x60, 0x09, 0x9F, 0x83, 0x0E, 0x4E, 0x02, 0xD1, 0x5E, 0x45, 0xF0, +0xBA, 0xE2, 0x2B, 0x88, 0xA1, 0x1F, 0x78, 0xE4, 0xB7, 0x60, 0x11, 0x44, 0x8A, 0x39, 0xE4, 0x9E, +0xA3, 0x43, 0xC2, 0xC8, 0xE1, 0x67, 0xDE, 0xC9, 0xBB, 0xA5, 0x1B, 0x1D, 0x5E, 0x7E, 0x4E, 0x37, +0x3D, 0xF7, 0xBC, 0x2E, 0x86, 0xE9, 0xE4, 0xED, 0xB2, 0xAD, 0x37, 0x96, 0x61, 0xD2, 0x5F, 0xCF, +0x5E, 0x0E, 0x27, 0x8B, 0xB1, 0x14, 0x64, 0x5F, 0x7B, 0x61, 0xD7, 0x47, 0xFA, 0x87, 0x27, 0x96, +0x8D, 0xE2, 0x49, 0xE4, 0x30, 0x9D, 0x46, 0x52, 0x73, 0xFD, 0xDB, 0xDF, 0x03, 0x87, 0xF6, 0xED, +0x06, 0xA3, 0x94, 0x85, 0x78, 0xC3, 0x3C, 0xAE, 0x82, 0xE9, 0x31, 0x51, 0x56, 0xFB, 0x5A, 0x94, +0x65, 0xC3, 0xF5, 0xE7, 0x36, 0x85, 0xD4, 0x8F, 0x8F, 0x0D, 0x0E, 0x37, 0x8E, 0xA3, 0xFA, 0xF3, +0xB1, 0x25, 0x82, 0xA8, 0x52, 0xF4, 0x2A, 0xF3, 0x56, 0x2D, 0x66, 0xD7, 0x74, 0xAF, 0x10, 0x9C, +0x7A, 0x66, 0x6B, 0x4E, 0x0A, 0x05, 0xFF, 0xE4, 0xCC, 0x10, 0x48, 0x4F, 0x98, 0x2E, 0xC5, 0x99, +0xD7, 0xDE, 0xF4, 0x4E, 0xB8, 0xED, 0x07, 0x68, 0x9F, 0xD1, 0xE1, 0x21, 0x40, 0x9E, 0xAF, 0xB5, +0x68, 0xD0, 0xE5, 0x28, 0x53, 0x5F, 0x0B, 0xAD, 0x62, 0xA9, 0xE8, 0xCC, 0xE3, 0x65, 0x4E, 0x93, +0x69, 0x4F, 0xB5, 0x6C, 0x58, 0x54, 0x49, 0x48, 0x10, 0xA5, 0x65, 0x32, 0xC7, 0x87, 0x2A, 0x01, +0x7F, 0xF8, 0xA3, 0x9F, 0xC0, 0x4D, 0x6F, 0x7B, 0x2B, 0xB4, 0xB7, 0xB7, 0xA2, 0x94, 0x7A, 0xF3, +0x9E, 0x68, 0xA4, 0xAC, 0x6D, 0xF1, 0xC8, 0x60, 0x83, 0x81, 0x1B, 0x64, 0xB3, 0x49, 0x6A, 0x73, +0x68, 0x6B, 0xFB, 0x07, 0x27, 0x21, 0x55, 0xA0, 0x4D, 0x99, 0x2E, 0x6B, 0xB8, 0xF6, 0xF3, 0x36, +0xCC, 0x5F, 0xD4, 0x0E, 0x8B, 0x57, 0x2F, 0xC5, 0xCF, 0x8A, 0x89, 0x03, 0x0C, 0x66, 0xCC, 0x40, +0x8C, 0x7D, 0x0F, 0x36, 0x06, 0x97, 0xD6, 0xAB, 0x99, 0x06, 0x6B, 0xBA, 0x76, 0xF0, 0x00, 0x1F, +0xDC, 0xBF, 0x0D, 0x9E, 0xDD, 0x72, 0x77, 0x2C, 0xA0, 0x8A, 0x3E, 0x72, 0x0F, 0xE9, 0xC0, 0x11, +0x00, 0x22, 0x8A, 0xC7, 0xD5, 0x70, 0x3A, 0x39, 0x01, 0x89, 0x46, 0x6F, 0x6E, 0x08, 0xED, 0x3B, +0x30, 0x6D, 0xF7, 0x39, 0x69, 0x3C, 0x96, 0x32, 0xAC, 0x66, 0x56, 0xC3, 0x0C, 0xE9, 0x05, 0x01, +0x8A, 0x6F, 0x7C, 0xE3, 0xA1, 0x48, 0x40, 0xE4, 0xBF, 0x36, 0x3C, 0x9E, 0x7B, 0xCB, 0xF6, 0x5D, +0xFB, 0x50, 0x9D, 0xA4, 0xF0, 0xC3, 0x1A, 0x10, 0x4C, 0xB4, 0xC0, 0xF9, 0x97, 0x5D, 0x05, 0x7F, +0x7E, 0xCB, 0x7B, 0x41, 0x70, 0x31, 0x74, 0xE1, 0x74, 0x44, 0x76, 0xCE, 0x4C, 0xC7, 0x9A, 0x56, +0xFD, 0x82, 0xDA, 0x1D, 0xA8, 0x6F, 0xE7, 0xEA, 0xAB, 0x97, 0xFD, 0xC5, 0xC8, 0x68, 0xFF, 0x9A, +0xC7, 0xB7, 0xEE, 0x04, 0x85, 0xD4, 0xAF, 0x8B, 0x6A, 0x35, 0x93, 0xC6, 0xF4, 0x1A, 0x65, 0x4E, +0x22, 0x4C, 0x5A, 0x2B, 0x24, 0x25, 0x04, 0x2E, 0x38, 0x2E, 0xBB, 0xE0, 0x36, 0xC5, 0xAD, 0x3C, +0x75, 0xC4, 0x01, 0x3A, 0x35, 0x68, 0x73, 0xD1, 0xBE, 0x2E, 0x5A, 0x73, 0x11, 0xC3, 0x9F, 0x8F, +0xF5, 0x0D, 0x4E, 0x55, 0xEF, 0xD3, 0xFC, 0x7C, 0x09, 0x0F, 0x89, 0x4A, 0x29, 0x37, 0xD7, 0x6B, +0xEA, 0xA2, 0x93, 0x2D, 0x4C, 0x3B, 0xFD, 0x84, 0x20, 0xD1, 0x1A, 0x70, 0xBA, 0x38, 0x26, 0xAD, +0x3F, 0x63, 0x48, 0x16, 0xCF, 0x20, 0xC3, 0x4C, 0xAE, 0x04, 0x77, 0xDD, 0x75, 0x0F, 0x7C, 0xFC, +0x93, 0x9F, 0x84, 0xAF, 0x7F, 0xE1, 0x33, 0x78, 0x91, 0x83, 0xF8, 0x3C, 0x09, 0xB5, 0x44, 0xD9, +0x43, 0xA5, 0xF0, 0x35, 0xD2, 0x79, 0x0C, 0x87, 0x2A, 0x26, 0xDB, 0x4B, 0xE0, 0xD0, 0x06, 0x0F, +0x84, 0x10, 0x69, 0xE3, 0x1D, 0x85, 0x51, 0x0D, 0x8D, 0x11, 0x78, 0xFA, 0x99, 0x6D, 0xA8, 0x61, +0x64, 0x4C, 0x0A, 0x54, 0x80, 0x97, 0x82, 0x6C, 0x00, 0x8A, 0x8F, 0xC2, 0x21, 0x94, 0x78, 0x19, +0x91, 0xAA, 0xCE, 0x4B, 0x2F, 0x84, 0x52, 0x1A, 0x6D, 0xF5, 0xF8, 0x11, 0x0C, 0x0B, 0x87, 0x50, +0xAB, 0x57, 0x99, 0x33, 0x54, 0x29, 0xEA, 0x0C, 0x01, 0x6B, 0x6E, 0x0C, 0x31, 0x8F, 0x9C, 0xE6, +0x37, 0x65, 0x30, 0xDF, 0x0A, 0xAE, 0x97, 0xEB, 0x25, 0x72, 0x6A, 0x2D, 0x25, 0xD3, 0x89, 0xEC, +0x71, 0x3E, 0x3B, 0x74, 0xC9, 0x9A, 0x0D, 0x1F, 0x6F, 0xDF, 0xB3, 0xF9, 0xAB, 0xC3, 0x70, 0x82, +0xF4, 0x82, 0x12, 0xAB, 0xAA, 0xF2, 0x59, 0xA8, 0x24, 0x2F, 0x49, 0xE6, 0x0A, 0xAA, 0x88, 0x71, +0xA7, 0x48, 0x4C, 0xC4, 0xFF, 0x56, 0x9F, 0x79, 0x3E, 0x6C, 0x7D, 0xF4, 0x21, 0x0F, 0xD2, 0xA3, +0xC1, 0xD1, 0x5A, 0xC5, 0x6D, 0x6E, 0x5D, 0xF9, 0xD8, 0x8E, 0x27, 0xFF, 0x67, 0x0B, 0x01, 0x18, +0xE7, 0x9E, 0x3B, 0xEF, 0x86, 0x80, 0xCF, 0xBD, 0xF1, 0xC0, 0xAE, 0x83, 0xC0, 0x57, 0xA9, 0x1A, +0xA2, 0x84, 0xB8, 0x6B, 0x1A, 0x3F, 0xB1, 0xC1, 0x2E, 0x3C, 0xD9, 0x48, 0xBA, 0xE0, 0x64, 0xBF, +0x28, 0xCE, 0xF4, 0xA1, 0x84, 0xD2, 0x8D, 0x7D, 0x29, 0xE7, 0xF8, 0xA8, 0x1E, 0xBA, 0xEF, 0x2D, +0x6F, 0x7F, 0x17, 0x3C, 0xF0, 0xF3, 0x9F, 0x30, 0x66, 0x92, 0x94, 0x92, 0x9A, 0xA5, 0xA9, 0xDD, +0xDE, 0x24, 0x15, 0x81, 0x2D, 0x03, 0xF4, 0xAA, 0x1F, 0xBD, 0x24, 0x82, 0xC3, 0x18, 0x69, 0x33, +0x15, 0x6C, 0x3C, 0xAF, 0xE1, 0xCA, 0x83, 0x26, 0xE9, 0xC2, 0xAB, 0xF0, 0xC0, 0x7D, 0x0F, 0x22, +0x96, 0xDD, 0x04, 0xCB, 0x56, 0xAC, 0x64, 0xAA, 0xB1, 0x4A, 0x33, 0x14, 0x6B, 0x6B, 0xD6, 0x92, +0x45, 0xC4, 0x68, 0x4B, 0x06, 0x73, 0xD0, 0x7C, 0x22, 0xA9, 0x58, 0x87, 0xCD, 0x5B, 0x12, 0xD0, +0x43, 0x27, 0x40, 0x3E, 0x87, 0xE1, 0x48, 0xBE, 0x50, 0x62, 0xCF, 0xEB, 0x44, 0x2F, 0xBE, 0x01, +0x43, 0x36, 0x25, 0x3F, 0x02, 0x0A, 0x2B, 0xC2, 0x74, 0x40, 0x09, 0x05, 0x20, 0xD2, 0xD2, 0x81, +0xC8, 0x51, 0x23, 0xA6, 0x1D, 0xA3, 0xD0, 0x82, 0x21, 0x11, 0xA1, 0x56, 0x84, 0x3F, 0x67, 0x0B, +0x1A, 0x43, 0xD2, 0x52, 0x08, 0x90, 0x94, 0x51, 0xC5, 0x13, 0xC4, 0xF9, 0xBC, 0x91, 0x53, 0xCF, +0xA3, 0x5A, 0x4F, 0x11, 0xE9, 0x15, 0xBB, 0x1A, 0xD6, 0x35, 0x6D, 0x46, 0x61, 0xCF, 0x0B, 0x32, +0x16, 0x3F, 0xF3, 0x5F, 0x1E, 0x3C, 0x3A, 0x38, 0x2F, 0x97, 0x3C, 0x08, 0xAA, 0x35, 0x8E, 0x39, +0x41, 0x1F, 0x5E, 0x6C, 0x05, 0x2E, 0xBA, 0xF2, 0x3A, 0xF8, 0xF5, 0xCF, 0x7F, 0xC4, 0xA6, 0xAF, +0xB8, 0x3C, 0x2D, 0x78, 0x62, 0x25, 0x2B, 0xCC, 0x0B, 0xBE, 0xEE, 0xC6, 0x25, 0x0B, 0x17, 0x74, +0x37, 0x7E, 0x62, 0xBC, 0x77, 0x68, 0x49, 0x36, 0x8B, 0xB1, 0x2E, 0xC6, 0x82, 0xE5, 0xFC, 0x04, +0x54, 0x8B, 0x79, 0xD0, 0xA9, 0xA2, 0x42, 0xA3, 0x26, 0x2B, 0x9B, 0xC1, 0x83, 0xEC, 0x3D, 0x90, +0xA1, 0x04, 0x00, 0xF0, 0x5C, 0x7D, 0xBE, 0x91, 0x57, 0x5D, 0x48, 0x10, 0xE1, 0x9A, 0xF5, 0x97, +0xA0, 0x5D, 0x9D, 0x44, 0x6F, 0x78, 0x3F, 0x0B, 0xDA, 0xA9, 0xB2, 0x9F, 0x88, 0xBC, 0xE0, 0x3C, +0x3A, 0x43, 0xE4, 0x40, 0x51, 0x2F, 0x10, 0xAD, 0x1A, 0x35, 0x09, 0xBC, 0xA7, 0xD8, 0x16, 0xA5, +0x94, 0x54, 0x28, 0x01, 0x0D, 0xAC, 0xBF, 0xD4, 0x71, 0x3C, 0x95, 0x6C, 0xD1, 0x12, 0x44, 0xEF, +0x60, 0x85, 0xD0, 0xD9, 0x11, 0x1D, 0x0D, 0x7E, 0x75, 0xF7, 0x9D, 0x70, 0xF5, 0xF5, 0x37, 0x7B, +0x15, 0x11, 0x34, 0x43, 0x18, 0x9D, 0xAE, 0xC1, 0x89, 0x32, 0xA4, 0x29, 0x2B, 0x45, 0xB3, 0x8E, +0x15, 0x9E, 0xC1, 0x93, 0x15, 0xCB, 0x9B, 0x62, 0x43, 0x40, 0x09, 0x15, 0xAF, 0x2D, 0x68, 0x0B, +0xC2, 0xE2, 0x8E, 0x08, 0xC4, 0x83, 0x3E, 0x68, 0x6C, 0x6E, 0x80, 0x80, 0xAB, 0x41, 0x03, 0x72, +0xD5, 0xA5, 0x9C, 0x29, 0xD9, 0x67, 0x34, 0x27, 0x21, 0x4E, 0x65, 0x5A, 0x22, 0x18, 0x55, 0xE8, +0x32, 0x41, 0x1A, 0xFD, 0x85, 0x4C, 0x5E, 0x47, 0x73, 0x82, 0x26, 0xA3, 0xE8, 0xB0, 0x64, 0x46, +0x2A, 0xE3, 0xD5, 0x83, 0x51, 0xC8, 0x07, 0xDC, 0x4B, 0x33, 0x89, 0x4A, 0x86, 0x8C, 0x97, 0x9B, +0x8F, 0xBD, 0xEF, 0xC1, 0x83, 0x37, 0x59, 0x95, 0xD4, 0x45, 0xD5, 0xCC, 0x3E, 0x34, 0xAB, 0x47, +0xB9, 0x0A, 0x3A, 0x16, 0x12, 0xC6, 0x9F, 0xEB, 0x2F, 0xBA, 0x0A, 0x52, 0x63, 0x43, 0x18, 0x92, +0x64, 0xBC, 0x39, 0x0F, 0xBC, 0x82, 0xC1, 0x3D, 0xA6, 0xDA, 0x2C, 0x8E, 0xB5, 0xF7, 0x15, 0xC7, +0x73, 0xD1, 0x9E, 0x43, 0x23, 0xD1, 0xC3, 0x7D, 0x83, 0x5C, 0x48, 0xF0, 0xB9, 0x0A, 0xC6, 0x85, +0x14, 0x9B, 0xE2, 0xB5, 0xAC, 0x0D, 0xF9, 0xE0, 0x98, 0xDD, 0xAC, 0xEA, 0x3A, 0xF3, 0x66, 0xD9, +0x07, 0x66, 0x5B, 0x28, 0x3D, 0xC0, 0xC1, 0xA9, 0x31, 0x9D, 0x24, 0xEF, 0x8A, 0x37, 0xBD, 0x1D, +0xB6, 0x3C, 0xFE, 0x08, 0xD3, 0x0A, 0xE4, 0xCC, 0x10, 0x0A, 0x24, 0xB2, 0xC9, 0x2E, 0x5E, 0x51, +0x1C, 0x49, 0x26, 0xB5, 0xFB, 0x9B, 0xAC, 0xA1, 0x4A, 0xA8, 0x65, 0x80, 0x9C, 0x29, 0x66, 0xFE, +0xCE, 0x97, 0xA4, 0x76, 0x11, 0xD1, 0x5B, 0xB9, 0x2D, 0xA3, 0xB3, 0xF3, 0xCC, 0x93, 0x8F, 0xB2, +0xC7, 0x75, 0x74, 0x2F, 0x42, 0x49, 0x32, 0x60, 0x2C, 0x63, 0x22, 0xCA, 0x63, 0x79, 0x5E, 0xB1, +0xCB, 0xB1, 0xB8, 0x9A, 0xDE, 0x27, 0x86, 0x78, 0x6D, 0x04, 0x7D, 0xAC, 0xE6, 0x88, 0x04, 0x8B, +0xDA, 0x22, 0x98, 0xD0, 0xC7, 0x1C, 0x2E, 0x31, 0x03, 0x3D, 0x62, 0x8B, 0xB6, 0x72, 0xA0, 0x24, +0x73, 0xAA, 0xCA, 0xB6, 0x8D, 0x50, 0xBF, 0x2F, 0x41, 0x94, 0x56, 0x35, 0x0D, 0xF9, 0xBE, 0xA3, +0x60, 0xD3, 0xFC, 0x47, 0x8C, 0xA5, 0xD3, 0x79, 0x6F, 0xC1, 0x22, 0x1D, 0x38, 0xDB, 0xB5, 0xD8, +0xF7, 0x60, 0x51, 0x00, 0x5B, 0xF4, 0xF4, 0x62, 0x5C, 0xAD, 0x77, 0x16, 0xF2, 0x0C, 0xC3, 0x36, +0x2B, 0xC5, 0x26, 0x98, 0x01, 0x3D, 0xC7, 0xC6, 0xFE, 0xF2, 0x67, 0x5B, 0x16, 0x57, 0x73, 0xC3, +0x3F, 0x7B, 0xEA, 0xF1, 0xBB, 0xB9, 0x4C, 0xEA, 0x18, 0x4A, 0x88, 0x86, 0xAA, 0x47, 0x87, 0xB6, +0xD6, 0x36, 0xB8, 0xE4, 0x8D, 0x6F, 0x86, 0x47, 0xEF, 0xFB, 0x21, 0xA2, 0x33, 0x61, 0x18, 0xCF, +0xE6, 0xF0, 0x34, 0x93, 0x7A, 0x2A, 0x41, 0xAE, 0xEA, 0x7F, 0x96, 0x9E, 0xBB, 0xBB, 0xB7, 0x20, +0x56, 0x9E, 0x1D, 0x14, 0x0F, 0x1D, 0xDC, 0x8E, 0x31, 0xE7, 0x30, 0xD7, 0x12, 0xE5, 0xA1, 0x6B, +0xBE, 0x8A, 0xD8, 0x6B, 0x0B, 0x22, 0x4D, 0x19, 0x54, 0xA3, 0x18, 0x62, 0xA4, 0x31, 0x83, 0x61, +0x68, 0xAC, 0xFA, 0xDE, 0x6B, 0x7C, 0x92, 0x18, 0x43, 0xA9, 0x1B, 0xAE, 0x58, 0xF4, 0x2A, 0x1A, +0xD7, 0x9D, 0x7F, 0x29, 0xFB, 0x4E, 0xDB, 0x9E, 0xDC, 0x04, 0xF5, 0xE3, 0x4C, 0x27, 0x3B, 0xA8, +0x7A, 0xAA, 0xCB, 0xD6, 0xE8, 0x50, 0x38, 0xB5, 0x7E, 0x56, 0x4F, 0xFA, 0x9D, 0xFA, 0x2C, 0xA7, +0x1A, 0x53, 0xBD, 0xC6, 0xAC, 0xE3, 0x6A, 0x98, 0x88, 0x6A, 0x80, 0xE9, 0x8A, 0x16, 0x2B, 0x16, +0xB3, 0x9F, 0xB7, 0xFF, 0xF4, 0x0E, 0xF8, 0xD0, 0x47, 0x3F, 0x06, 0x0F, 0x6C, 0xFE, 0x24, 0x4B, +0x04, 0xD0, 0xBC, 0xE3, 0x30, 0xE2, 0x84, 0xF1, 0x58, 0x80, 0x95, 0x97, 0x06, 0x59, 0x18, 0xE6, +0x4E, 0xC5, 0x9B, 0x74, 0x68, 0x34, 0xAD, 0xCA, 0xA4, 0xD2, 0xC2, 0x38, 0xBB, 0x48, 0x7B, 0xEF, +0x30, 0xAE, 0x35, 0x26, 0xD0, 0xA9, 0x24, 0xA7, 0xC7, 0xA5, 0xC9, 0x2F, 0x19, 0xD8, 0x7A, 0xFB, +0xCF, 0xD8, 0x24, 0x53, 0x5E, 0x8E, 0xC2, 0xD9, 0xAB, 0x16, 0x83, 0x8C, 0x0E, 0xDE, 0xDE, 0xBE, +0x34, 0x21, 0x73, 0xCE, 0xD0, 0x44, 0xB1, 0x6F, 0x61, 0x57, 0x6B, 0x00, 0xD3, 0x88, 0x2D, 0xF4, +0x99, 0x09, 0x60, 0x49, 0x23, 0x8A, 0x15, 0x6F, 0x6A, 0x66, 0xD9, 0x29, 0x02, 0x24, 0x98, 0xCD, +0x35, 0xA7, 0x79, 0xC5, 0x64, 0xC2, 0xE8, 0x6F, 0x7A, 0x7A, 0x05, 0xD5, 0x3D, 0x9D, 0x68, 0xEB, +0xE6, 0x14, 0x63, 0xDF, 0x7E, 0xCB, 0x17, 0xE3, 0x13, 0x93, 0xB9, 0x3F, 0xDA, 0xB3, 0xF7, 0x19, +0x98, 0x1C, 0x3B, 0x8A, 0x0E, 0x45, 0x89, 0x5D, 0x84, 0x4A, 0xAE, 0x88, 0x99, 0x8E, 0x10, 0xFC, +0xFC, 0x3B, 0x5F, 0xC5, 0xD3, 0x98, 0x62, 0xBD, 0xA5, 0x16, 0x2B, 0xDC, 0x46, 0x87, 0xC4, 0x2A, +0xE3, 0x11, 0x0C, 0x1E, 0x25, 0xFB, 0xDA, 0x96, 0x08, 0x36, 0x4D, 0xB8, 0x9D, 0xE1, 0x68, 0x63, +0xD1, 0xDD, 0xD3, 0x9B, 0x84, 0x6C, 0x7E, 0x84, 0x1B, 0x4F, 0xE9, 0xD0, 0x1C, 0xC7, 0x4C, 0x45, +0x43, 0x0C, 0x55, 0x99, 0x0A, 0x91, 0x30, 0x42, 0x7D, 0x3A, 0xCF, 0x7A, 0x73, 0x18, 0x23, 0x68, +0x0A, 0x1A, 0xE1, 0xB7, 0x9A, 0xCE, 0x10, 0x20, 0xF2, 0x5E, 0xCF, 0x3A, 0xFF, 0x32, 0x54, 0x95, +0x3F, 0x65, 0xAA, 0xD9, 0xB1, 0x3D, 0x88, 0x90, 0x9C, 0x0B, 0x36, 0x2B, 0xE2, 0x79, 0x8B, 0x81, +0x9F, 0x1F, 0x2E, 0xD4, 0x7B, 0x5E, 0x9F, 0x4F, 0x36, 0x93, 0x70, 0x6A, 0xDF, 0xA8, 0x32, 0x9B, +0x4D, 0xED, 0x5C, 0x3B, 0xF7, 0x1C, 0x85, 0xC9, 0x89, 0x24, 0x5C, 0x73, 0xDD, 0xD5, 0xF0, 0xC8, +0x83, 0xF7, 0x41, 0x34, 0x28, 0xC0, 0xFC, 0x46, 0x99, 0x2D, 0xF5, 0x65, 0x63, 0x2E, 0x78, 0x5A, +0x19, 0x43, 0x15, 0x13, 0x1E, 0x70, 0xC0, 0xC2, 0x33, 0xFC, 0x4C, 0xAC, 0x3C, 0x06, 0x0F, 0x60, +0x20, 0x88, 0xDE, 0x30, 0xA7, 0xC0, 0xE8, 0x68, 0xD2, 0xEB, 0xD4, 0xAB, 0xBD, 0x2D, 0x75, 0xFC, +0x69, 0x68, 0x53, 0x3B, 0x96, 0xCC, 0x87, 0xAB, 0xCE, 0x5B, 0x0F, 0xA9, 0x04, 0xAA, 0x65, 0xFD, +0x00, 0x3C, 0xAB, 0x03, 0x5E, 0xD5, 0xC6, 0x2F, 0x8C, 0xA7, 0xFC, 0x67, 0x27, 0xD4, 0xCC, 0x07, +0x15, 0x94, 0x7E, 0xBF, 0xEA, 0xB5, 0x73, 0x52, 0x96, 0x4B, 0x45, 0x2F, 0x5D, 0xA0, 0x65, 0x8A, +0x35, 0x5F, 0x81, 0x86, 0x65, 0xD7, 0x0F, 0x25, 0x75, 0xBD, 0xF3, 0x8E, 0xB9, 0x30, 0x07, 0x39, +0xAA, 0x9B, 0x39, 0xA1, 0x3A, 0xE6, 0x29, 0xC6, 0x5E, 0xB8, 0x7C, 0xE5, 0x1F, 0xF6, 0xF7, 0x1E, +0x7C, 0xFB, 0x68, 0xEF, 0x6F, 0xD9, 0x0E, 0x0D, 0x72, 0x56, 0x28, 0xA4, 0x18, 0xC3, 0x40, 0x3E, +0x14, 0xAF, 0xC2, 0xC4, 0xC8, 0x10, 0x50, 0x12, 0x29, 0xD9, 0x87, 0xC1, 0xB7, 0xA1, 0x82, 0xA4, +0x32, 0xC0, 0xAB, 0x8F, 0x6B, 0x8B, 0x1F, 0x09, 0x87, 0xCB, 0x9D, 0x63, 0x85, 0x86, 0x2B, 0x0F, +0x4E, 0x88, 0x6A, 0xB6, 0x1A, 0x84, 0xD6, 0xF6, 0x2E, 0xA7, 0x51, 0xE0, 0x84, 0x68, 0xD0, 0x84, +0x09, 0xF4, 0x1E, 0x77, 0x0E, 0x9B, 0xE8, 0x15, 0x23, 0xF3, 0x30, 0x70, 0x57, 0xF0, 0x4B, 0x2C, +0x5F, 0xD2, 0xCE, 0xAE, 0x16, 0xD9, 0x49, 0x36, 0x48, 0xC4, 0xA5, 0xA4, 0xBA, 0x8C, 0x1E, 0xF6, +0x42, 0xE6, 0xFA, 0xEF, 0x7C, 0xE6, 0x51, 0xE6, 0xA0, 0xB8, 0xBC, 0x67, 0x2B, 0x0C, 0xC7, 0x65, +0x5E, 0x34, 0xD4, 0xE6, 0x42, 0x90, 0xE7, 0xCB, 0xB9, 0xDC, 0x73, 0x26, 0x88, 0xBE, 0x10, 0x43, +0xA7, 0x1F, 0x00, 0x83, 0xEC, 0x94, 0x4E, 0x8C, 0x0D, 0xE1, 0x81, 0x52, 0x59, 0xFF, 0xCF, 0xED, +0x3F, 0xF9, 0x09, 0xFC, 0xF5, 0xDF, 0xFF, 0x0D, 0xF4, 0xEC, 0xDC, 0x84, 0xDA, 0xCE, 0x60, 0xF9, +0x58, 0xCA, 0xE4, 0x50, 0x3E, 0x98, 0x5E, 0x9F, 0x88, 0x6C, 0x21, 0x69, 0x06, 0x32, 0x1F, 0x12, +0x8B, 0x71, 0xBD, 0xC3, 0x63, 0xB8, 0x3E, 0x88, 0xB5, 0xC7, 0x61, 0xE0, 0x99, 0x9D, 0xE8, 0x68, +0xD1, 0x32, 0x27, 0xFC, 0x0E, 0xB5, 0x73, 0x46, 0xFE, 0x44, 0x63, 0x28, 0x04, 0xB1, 0x08, 0x02, +0x17, 0x98, 0x24, 0x68, 0x68, 0x8C, 0xE7, 0x9A, 0xAC, 0xD8, 0x1D, 0x92, 0x72, 0xD9, 0x37, 0x87, +0x4A, 0x7D, 0x7B, 0x12, 0xDC, 0xC8, 0x07, 0x59, 0x41, 0x1D, 0x95, 0xEA, 0x48, 0x5E, 0xAD, 0xB2, +0xCA, 0x06, 0x4A, 0xBA, 0x68, 0xA3, 0xF1, 0x3B, 0x06, 0x68, 0x1A, 0x9D, 0x37, 0x0F, 0x92, 0xAE, +0xB2, 0x41, 0xC3, 0xEF, 0xED, 0x4A, 0x93, 0x55, 0xCE, 0x87, 0x4E, 0x94, 0xB1, 0xCC, 0xC6, 0x7E, +0xE1, 0x0B, 0xBF, 0xEE, 0x30, 0x8C, 0xD4, 0x9B, 0xB2, 0x93, 0x87, 0x5B, 0x7C, 0x7C, 0x09, 0x61, +0x35, 0x04, 0x00, 0x92, 0xA8, 0x66, 0x11, 0xA0, 0xA7, 0x05, 0xF4, 0xB4, 0x34, 0x77, 0x4D, 0x47, +0x3B, 0x9C, 0xB7, 0x64, 0x25, 0x5C, 0x7B, 0xFE, 0x0A, 0x58, 0x31, 0xBF, 0x19, 0x43, 0x96, 0x34, +0xE8, 0x5A, 0x6E, 0x2F, 0xAD, 0x5E, 0xF1, 0xCB, 0x6A, 0xBB, 0xA1, 0x69, 0x17, 0x54, 0x0C, 0x93, +0x7D, 0x35, 0x05, 0xCA, 0x3C, 0x49, 0x62, 0x01, 0x83, 0x78, 0x72, 0x3E, 0x62, 0xF1, 0x85, 0xEE, +0xA2, 0xB5, 0x17, 0xC2, 0x9A, 0xB3, 0xCF, 0x87, 0x50, 0x63, 0x27, 0xFC, 0xEA, 0xB1, 0xFD, 0xD0, +0x87, 0x81, 0x7F, 0x3E, 0x5F, 0xF1, 0x24, 0x90, 0xB5, 0x56, 0x38, 0x70, 0xE9, 0xB5, 0x6F, 0x83, +0x87, 0xEF, 0xBD, 0xDD, 0xC3, 0x4D, 0x91, 0xAB, 0x34, 0x62, 0x8F, 0x0D, 0xFD, 0xA8, 0x35, 0x26, +0x13, 0x0F, 0x59, 0x63, 0x3A, 0x1C, 0x57, 0xB5, 0x5E, 0xB6, 0xC7, 0x79, 0x8E, 0xDA, 0xAD, 0x4B, +0xF2, 0x74, 0x10, 0x80, 0x12, 0x0B, 0x54, 0x49, 0x41, 0xB5, 0x51, 0x46, 0x6D, 0x00, 0xF5, 0x50, +0xCF, 0x5E, 0xD8, 0xBB, 0xFD, 0x59, 0xB8, 0xE4, 0xCA, 0x6B, 0x59, 0xE5, 0x21, 0xC5, 0xDA, 0xA4, +0x6E, 0xC9, 0xF9, 0x22, 0xA7, 0x8B, 0x0D, 0xFB, 0xA0, 0x9F, 0xB6, 0xB7, 0xF8, 0x90, 0xB5, 0x96, +0xD4, 0x16, 0x47, 0xE4, 0x32, 0x63, 0xAC, 0x76, 0x9A, 0xF2, 0xB6, 0xCC, 0x2E, 0xB3, 0x7D, 0x3E, +0xA8, 0x92, 0x6B, 0xEF, 0x67, 0x20, 0x73, 0x2B, 0x79, 0x2F, 0xBF, 0x4A, 0xB6, 0x1B, 0xA1, 0x58, +0x8B, 0xD4, 0x68, 0x34, 0xD1, 0xD6, 0x2B, 0xF9, 0x02, 0xCC, 0x21, 0x23, 0x9F, 0x83, 0xCC, 0x4F, +0x05, 0x6D, 0x7A, 0x06, 0x95, 0x5F, 0x8A, 0x56, 0xB5, 0x91, 0xC1, 0x46, 0x8F, 0x9F, 0x4A, 0x65, +0xD9, 0xE7, 0x15, 0x3D, 0x37, 0x08, 0x23, 0x0A, 0x7F, 0x59, 0x4F, 0x9F, 0xF0, 0x3C, 0x45, 0x26, +0xB1, 0x18, 0xA7, 0x2E, 0x3A, 0xBA, 0xFB, 0x81, 0x35, 0x13, 0xA3, 0xFB, 0x25, 0x0D, 0x61, 0x3D, +0x42, 0x7E, 0xCA, 0x94, 0x02, 0xAB, 0xC5, 0x88, 0x15, 0xFC, 0x82, 0xAB, 0xCF, 0x5F, 0x0F, 0x17, +0x9D, 0xB9, 0x04, 0xB4, 0xC1, 0xA3, 0xC0, 0x3F, 0xF0, 0x38, 0x3C, 0xBA, 0xEF, 0x90, 0x69, 0x70, +0x21, 0xB6, 0x15, 0x28, 0xCB, 0xB7, 0x5C, 0xA8, 0x59, 0xF2, 0x72, 0x3D, 0xB3, 0x9D, 0xE3, 0xAD, +0x0A, 0x46, 0x76, 0x19, 0x9E, 0xC7, 0x54, 0x5C, 0x0F, 0xDA, 0x96, 0x09, 0xB4, 0x3B, 0x46, 0x75, +0x27, 0xB7, 0x75, 0x5B, 0x14, 0xDE, 0xF3, 0x81, 0x5B, 0xE1, 0xDA, 0x37, 0x5F, 0x0D, 0x3F, 0xFD, +0xC5, 0x7B, 0x60, 0xC7, 0x81, 0x3E, 0x68, 0x8C, 0x86, 0x61, 0x01, 0x9E, 0xFA, 0x08, 0x7E, 0xDC, +0x28, 0x82, 0xFD, 0x91, 0x58, 0x02, 0x7E, 0x7D, 0xFF, 0x83, 0x6C, 0x11, 0x2F, 0xED, 0xB9, 0x23, +0x75, 0x4C, 0xA0, 0x03, 0x4B, 0x09, 0xD2, 0x42, 0x5F, 0xBA, 0xC8, 0x0C, 0x7C, 0x70, 0x98, 0x37, +0xFC, 0x7C, 0x3B, 0x5A, 0xA7, 0xE9, 0x0C, 0x26, 0xA6, 0x2B, 0x81, 0xC4, 0x28, 0x4A, 0x24, 0x8A, +0xAA, 0x13, 0xA2, 0x30, 0xC9, 0x46, 0xE6, 0xC9, 0x88, 0x76, 0x39, 0x08, 0x89, 0xDE, 0xFD, 0x8B, +0x9F, 0xC1, 0x9F, 0xFF, 0xCD, 0x46, 0xD8, 0xFC, 0xEB, 0x7B, 0x58, 0xFC, 0x6B, 0xA0, 0xD4, 0xB2, +0xD2, 0x53, 0xCE, 0x5B, 0x1A, 0x3C, 0xFD, 0xB5, 0x59, 0x69, 0x0D, 0x81, 0x1D, 0x04, 0x21, 0x66, +0xD0, 0xDB, 0x2F, 0xF8, 0x41, 0xED, 0xEC, 0x80, 0x42, 0xDF, 0x04, 0x04, 0xBA, 0x9A, 0x31, 0xDE, +0x4C, 0x81, 0xC8, 0x46, 0x2D, 0xB0, 0x72, 0x52, 0x57, 0x96, 0x0D, 0x8E, 0x35, 0x79, 0x59, 0xA6, +0x98, 0x2F, 0x68, 0xAC, 0xF2, 0x6F, 0xFB, 0xAF, 0xFF, 0x79, 0xAC, 0xF5, 0x82, 0x8B, 0x76, 0x49, +0x52, 0x65, 0x1D, 0xC5, 0xCE, 0xAE, 0xE3, 0x35, 0x56, 0x53, 0xE6, 0x29, 0x53, 0xB1, 0xBC, 0xA4, +0x3E, 0xE2, 0xD4, 0xB4, 0x4E, 0x86, 0x60, 0x4A, 0xF2, 0xDA, 0xFD, 0x6A, 0x90, 0xAE, 0x43, 0x58, +0x2B, 0x95, 0x4F, 0x78, 0xB4, 0xAD, 0xF8, 0x9F, 0xFF, 0xF9, 0xE0, 0xF9, 0xE5, 0xC2, 0xF0, 0x3F, +0x18, 0xDA, 0x58, 0x03, 0xC1, 0x7D, 0x25, 0x74, 0xF9, 0x4B, 0x78, 0x7A, 0xA8, 0x22, 0x9D, 0x4A, +0x5C, 0xD9, 0x18, 0x73, 0xEA, 0x1B, 0xAD, 0x70, 0x90, 0xE9, 0xED, 0x83, 0x6C, 0xCF, 0x3E, 0x08, +0x72, 0xE2, 0xC4, 0xEA, 0x85, 0xEB, 0x7E, 0x94, 0x36, 0x5B, 0x7F, 0xB9, 0x2B, 0xDD, 0x03, 0xA2, +0x5D, 0xBA, 0xB2, 0x50, 0x14, 0x31, 0xDF, 0x5A, 0x71, 0xED, 0x72, 0x2F, 0x27, 0x70, 0x78, 0x0A, +0x11, 0x56, 0xAB, 0xD4, 0xAA, 0x0F, 0xA9, 0x6A, 0xC1, 0x36, 0xF2, 0x70, 0xC7, 0x0F, 0xFF, 0x07, +0xEE, 0x40, 0x67, 0x69, 0xED, 0xB2, 0x56, 0x96, 0x43, 0x2D, 0x60, 0x4C, 0x78, 0xB0, 0x77, 0x82, +0x7D, 0x99, 0x7F, 0xFA, 0xEC, 0x47, 0xE1, 0xA1, 0x5F, 0xFE, 0x0C, 0x62, 0x08, 0x50, 0x54, 0xAA, +0x1E, 0x34, 0x48, 0xCD, 0xC9, 0xF5, 0x95, 0xDD, 0x14, 0x03, 0x56, 0x09, 0xA9, 0xAA, 0x31, 0x74, +0x3A, 0x4D, 0x9F, 0x18, 0x5A, 0x77, 0x9C, 0x88, 0x24, 0x39, 0xB4, 0x47, 0x56, 0x63, 0xBF, 0xC1, +0xFC, 0xF0, 0x17, 0xA2, 0x4D, 0xEB, 0xAB, 0x99, 0x81, 0x07, 0xBF, 0x5E, 0x2C, 0xE6, 0xDE, 0x21, +0xCB, 0x3C, 0x1B, 0x2D, 0x0F, 0x8A, 0xCB, 0xEA, 0x90, 0x9F, 0x79, 0x72, 0x33, 0x5C, 0x7B, 0xE3, +0xBB, 0xE0, 0xFE, 0x3B, 0xBF, 0x47, 0x33, 0xC4, 0xBC, 0x58, 0x9A, 0x86, 0x73, 0xCA, 0x9E, 0x07, +0x4E, 0xAF, 0x49, 0xE5, 0x32, 0xF4, 0x77, 0xDA, 0x25, 0x4F, 0x12, 0x4C, 0xB6, 0x36, 0x87, 0x8E, +0x91, 0x86, 0x0C, 0xC8, 0x93, 0xD4, 0xA2, 0xAA, 0x57, 0xA2, 0x09, 0x74, 0x02, 0x0B, 0x6C, 0x28, +0x58, 0x28, 0xDE, 0xE4, 0xCA, 0x81, 0x30, 0xA6, 0xDD, 0xB2, 0x5C, 0x39, 0x5B, 0x76, 0x83, 0x4A, +0x62, 0xCA, 0x56, 0x84, 0x14, 0x7F, 0x3E, 0x11, 0xF0, 0xE6, 0x23, 0xA7, 0x87, 0x07, 0x21, 0x8F, +0x90, 0x29, 0x95, 0xC7, 0xC4, 0xA9, 0x5C, 0xD6, 0xEF, 0x83, 0x11, 0xCC, 0xE0, 0x5B, 0xAC, 0xEB, +0xCF, 0x66, 0x7E, 0x88, 0x8E, 0xAF, 0x29, 0x8B, 0x72, 0x93, 0x5F, 0x1F, 0x3D, 0x61, 0xCF, 0x98, +0xCF, 0x57, 0x15, 0x5F, 0xB6, 0x64, 0x84, 0x34, 0x74, 0x0E, 0x18, 0x10, 0x40, 0xC9, 0x6B, 0x52, +0x11, 0xAE, 0x37, 0x24, 0x99, 0x0D, 0x42, 0xC6, 0x13, 0xA8, 0xA0, 0x0D, 0xAA, 0x94, 0x0A, 0x28, +0xBD, 0x2E, 0x34, 0x86, 0xD5, 0xC9, 0x75, 0x67, 0x5F, 0xFE, 0x04, 0x6D, 0x3D, 0xA6, 0xE2, 0xEF, +0xB6, 0x48, 0xF9, 0xDC, 0x4C, 0xEF, 0x13, 0x42, 0xC0, 0x38, 0x06, 0x8D, 0xFE, 0x3C, 0x67, 0x54, +0xF3, 0x30, 0x30, 0x38, 0xC2, 0x60, 0x3A, 0xD2, 0x61, 0x12, 0x62, 0x2F, 0x61, 0xFC, 0xD2, 0xD4, +0x87, 0xD3, 0x96, 0xF0, 0xE3, 0xF3, 0x45, 0x06, 0xBC, 0xC7, 0xA2, 0x21, 0x68, 0x69, 0x89, 0x43, +0xEB, 0xBC, 0x76, 0x58, 0xB0, 0x64, 0x05, 0x7C, 0xE7, 0x7B, 0x77, 0xC2, 0xE0, 0x78, 0x89, 0x8D, +0x10, 0x60, 0x75, 0xBE, 0xBC, 0x07, 0x4E, 0xB0, 0x1B, 0xC7, 0xD5, 0xE6, 0xFA, 0xF2, 0x53, 0x8C, +0x74, 0x7E, 0x47, 0xA2, 0x04, 0x16, 0x63, 0xD3, 0xDF, 0x83, 0xF1, 0xEE, 0x9F, 0x47, 0x1A, 0x97, +0xBF, 0x2B, 0xB6, 0xE6, 0x3D, 0x9F, 0xEE, 0x3F, 0xF0, 0xC0, 0x38, 0x25, 0xFE, 0x31, 0x05, 0xB6, +0xC7, 0xAA, 0xC5, 0xB4, 0xCC, 0x1E, 0xB2, 0x41, 0x9B, 0x2E, 0x3C, 0xF2, 0xEB, 0x07, 0x31, 0x9C, +0xBB, 0x0C, 0x31, 0x6F, 0x34, 0x31, 0x98, 0xFF, 0xA5, 0xE4, 0x01, 0x79, 0xEA, 0xC4, 0x5C, 0xA9, +0x36, 0x18, 0x9A, 0x50, 0xA3, 0x3C, 0x66, 0x7D, 0x06, 0x26, 0x35, 0x18, 0x4A, 0x56, 0x61, 0x34, +0x45, 0xF8, 0x73, 0x0A, 0x06, 0x87, 0x11, 0x41, 0xA2, 0x44, 0xBF, 0x2B, 0xB2, 0xFE, 0x25, 0x03, +0x81, 0x0E, 0x03, 0x9F, 0xB3, 0xA8, 0x75, 0x1E, 0x28, 0xE8, 0x24, 0x8E, 0xF4, 0x0E, 0x22, 0xCE, +0xEC, 0x38, 0xCD, 0x0D, 0xED, 0x50, 0xAF, 0xE6, 0x7F, 0xDF, 0x7B, 0xDE, 0xB5, 0xEF, 0xAF, 0x3E, +0xFC, 0x3E, 0xF8, 0xD8, 0x5B, 0xAF, 0x86, 0x75, 0xDC, 0x28, 0x24, 0xCA, 0x93, 0x88, 0x1D, 0x48, +0x10, 0x0F, 0xC9, 0xCC, 0xDE, 0x52, 0x0D, 0x16, 0x81, 0x30, 0x89, 0x90, 0xAF, 0x16, 0x1E, 0x09, +0xF4, 0x39, 0x0B, 0x15, 0x47, 0x2D, 0x9C, 0x30, 0x63, 0x8B, 0xF9, 0x64, 0x31, 0x3B, 0xD9, 0x9F, +0xA3, 0x93, 0x46, 0x49, 0xE8, 0x6A, 0xD9, 0x7A, 0xCE, 0x04, 0x51, 0x22, 0x4D, 0xAF, 0xA0, 0x7A, +0x4E, 0x33, 0x74, 0x86, 0x06, 0x27, 0xAB, 0xB2, 0x2B, 0xC7, 0x61, 0x34, 0x48, 0x89, 0x74, 0x2A, +0xFE, 0x56, 0xDD, 0x82, 0x7F, 0x7E, 0xA8, 0xC0, 0x29, 0x62, 0x95, 0xD3, 0xF1, 0xB1, 0x0B, 0x16, +0xAE, 0x86, 0xF9, 0x1D, 0x0D, 0x60, 0xE1, 0x29, 0xA6, 0xC5, 0xBF, 0x3E, 0x8C, 0xF5, 0xE8, 0xFA, +0xC4, 0x03, 0x1C, 0x34, 0xC7, 0x14, 0xA6, 0x56, 0xCD, 0x5A, 0x22, 0x9C, 0x90, 0x95, 0x5B, 0x3E, +0xF4, 0x41, 0xF8, 0xF1, 0x8F, 0x7E, 0x8C, 0x07, 0x8A, 0x83, 0xE1, 0x64, 0x11, 0xC1, 0x82, 0x02, +0x4B, 0x9E, 0x7B, 0x15, 0x8B, 0xC7, 0x87, 0x48, 0x4F, 0x4D, 0x53, 0xE3, 0xB8, 0x29, 0x09, 0x9D, +0x4E, 0xAC, 0xE2, 0x02, 0x05, 0xC1, 0x1F, 0x6C, 0xFE, 0x59, 0xB8, 0x71, 0xF1, 0x3F, 0x8E, 0x0F, +0x3E, 0x7E, 0x80, 0xC6, 0x02, 0x4C, 0x3D, 0x40, 0xE0, 0x72, 0xD4, 0x3E, 0xC9, 0x91, 0x9A, 0xE5, +0x04, 0xE6, 0x14, 0x91, 0x54, 0x94, 0x4B, 0x25, 0xD8, 0xF4, 0x9B, 0xFB, 0xE1, 0x3D, 0xB7, 0x7C, +0xD4, 0x1B, 0x66, 0xCD, 0x6C, 0x1F, 0xF5, 0xE8, 0xD8, 0x6C, 0x77, 0x3C, 0xD9, 0x55, 0xF2, 0x90, +0xA9, 0xA4, 0x86, 0xE6, 0xA3, 0x55, 0xA9, 0x2B, 0x9E, 0x13, 0x59, 0x36, 0x29, 0x12, 0x0B, 0x61, +0x98, 0x84, 0xD2, 0x8D, 0x6A, 0xD8, 0x4C, 0xD5, 0x36, 0xA5, 0x91, 0x86, 0x72, 0x2A, 0xFC, 0xC0, +0xC0, 0x20, 0xB7, 0xA7, 0x6F, 0x12, 0x06, 0xB8, 0x90, 0xBF, 0xA8, 0xAA, 0xF3, 0x97, 0x9C, 0xDB, +0xCA, 0x86, 0x70, 0xCD, 0x6B, 0x8E, 0x57, 0x13, 0x68, 0x7F, 0xA8, 0x1E, 0x9A, 0x8A, 0xE1, 0xDB, +0x30, 0x58, 0xBE, 0xA8, 0x2B, 0x0E, 0xD7, 0xAC, 0x9C, 0x0F, 0x17, 0x2F, 0x68, 0x81, 0x33, 0x9B, +0x02, 0xC0, 0xA3, 0xD9, 0xA1, 0x25, 0x4C, 0x64, 0x8E, 0xD8, 0x81, 0x16, 0x84, 0x82, 0x1C, 0x6A, +0x3C, 0x71, 0xC6, 0x76, 0xC6, 0xCC, 0xF0, 0x05, 0xCB, 0xE7, 0xCD, 0xFB, 0xD0, 0xE5, 0x67, 0xC3, +0x1B, 0x57, 0x2E, 0x64, 0x1D, 0xE0, 0xAC, 0x2A, 0x8F, 0x39, 0x0F, 0x5E, 0xC8, 0x34, 0x91, 0x2A, +0xC0, 0x9E, 0x43, 0x83, 0x08, 0x95, 0x05, 0x99, 0x6A, 0xB6, 0x45, 0x9F, 0xC0, 0x5B, 0x79, 0x59, +0xB7, 0x65, 0x6A, 0x97, 0x6A, 0xD9, 0xBA, 0x6F, 0x08, 0x34, 0x47, 0xE2, 0xA2, 0x01, 0x97, 0x0B, +0xF9, 0x2A, 0x78, 0x62, 0x23, 0xF0, 0xB6, 0x5B, 0x3F, 0x05, 0x7F, 0xF6, 0xA7, 0x1F, 0x81, 0x6B, +0xAF, 0x3C, 0x9B, 0xF5, 0xA2, 0x92, 0x94, 0x85, 0x1B, 0x12, 0x08, 0x6C, 0xF0, 0xAC, 0x26, 0xA9, +0x3E, 0xFE, 0x2E, 0x16, 0x6F, 0x84, 0xE5, 0xAB, 0x56, 0xC1, 0x81, 0xFD, 0x87, 0x21, 0xE4, 0x57, +0x11, 0xD4, 0x08, 0xA2, 0x7D, 0x75, 0x60, 0x60, 0x3C, 0xC3, 0xD2, 0x77, 0x6C, 0x94, 0x7B, 0x2D, +0x2D, 0x62, 0x4D, 0x01, 0x1B, 0x4E, 0xED, 0xFA, 0x09, 0x53, 0x4C, 0x26, 0x27, 0x4A, 0x10, 0xD5, +0xE1, 0xD8, 0xBC, 0xB5, 0x9F, 0xED, 0x3C, 0xEB, 0xD6, 0x0F, 0x0C, 0x1E, 0xF8, 0xE5, 0xEF, 0xF4, +0x94, 0x66, 0x73, 0xB9, 0x5E, 0x64, 0xCA, 0x28, 0x73, 0xC4, 0x6A, 0x63, 0x72, 0x79, 0x47, 0x60, +0xDB, 0xB2, 0x1E, 0xF9, 0xD5, 0x83, 0xE8, 0x91, 0x63, 0xA2, 0x1C, 0x1D, 0x44, 0x04, 0x5D, 0xF0, +0x33, 0x98, 0xAC, 0xCE, 0x99, 0xD0, 0x98, 0x3C, 0xA2, 0x46, 0xC7, 0x06, 0x73, 0xCC, 0x3B, 0x25, +0x55, 0x4C, 0xA9, 0x42, 0x87, 0xCD, 0x65, 0xE4, 0xF1, 0x00, 0x37, 0x43, 0x17, 0x26, 0xD8, 0x25, +0x8C, 0x6D, 0x63, 0x0D, 0x1E, 0xEA, 0x67, 0x94, 0x2B, 0xF0, 0xF9, 0xDB, 0x1F, 0x84, 0x8F, 0x7F, +0xE5, 0x1E, 0x78, 0xF8, 0xD0, 0x24, 0x86, 0x59, 0x98, 0xBA, 0x1A, 0x2E, 0x86, 0xC1, 0x0A, 0xB1, +0xFA, 0xA5, 0xF4, 0x64, 0x6A, 0x1E, 0x85, 0x7C, 0xC9, 0xA1, 0x41, 0x18, 0x1E, 0xCF, 0xE2, 0x01, +0xB7, 0x60, 0x11, 0xFA, 0x1A, 0xCB, 0x31, 0x97, 0xBB, 0x6E, 0x41, 0x2B, 0xBC, 0x61, 0x79, 0x2B, +0xAC, 0xC2, 0xD7, 0xA4, 0x73, 0x4A, 0x8E, 0x59, 0x6B, 0x5C, 0x81, 0x88, 0x24, 0xE4, 0xC2, 0x0D, +0xED, 0x27, 0xDC, 0xB2, 0x29, 0xBE, 0xE5, 0xBA, 0x73, 0x39, 0xBF, 0x6C, 0xF2, 0xA1, 0x62, 0x17, +0xAC, 0xDA, 0xF1, 0x24, 0x1C, 0x3E, 0xDC, 0x07, 0x0F, 0x1C, 0xCB, 0xB0, 0x8B, 0x46, 0xA7, 0x95, +0x69, 0x2C, 0x64, 0xF0, 0x23, 0x5B, 0x9E, 0x85, 0xB7, 0x6D, 0x58, 0x0D, 0xBC, 0x41, 0xA9, 0x2E, +0x7E, 0x20, 0xE7, 0x5F, 0xD7, 0xA3, 0xE4, 0x8B, 0x9D, 0x95, 0x62, 0x9E, 0xA3, 0xF0, 0x20, 0x9B, +0x9D, 0x70, 0x33, 0x95, 0x11, 0x8E, 0x06, 0x73, 0x8C, 0xF6, 0xDE, 0x0E, 0x07, 0xB7, 0x3E, 0x08, +0x0B, 0x17, 0x2F, 0x03, 0x41, 0x89, 0x40, 0x44, 0x65, 0x65, 0x88, 0xC0, 0xA3, 0x34, 0xEB, 0x8E, +0xC1, 0xEC, 0x25, 0x61, 0xAB, 0x54, 0x9D, 0xFF, 0x8E, 0x77, 0xBD, 0x13, 0x36, 0x3D, 0xB2, 0x09, +0xC6, 0x47, 0x86, 0xBD, 0xB1, 0xB5, 0xD4, 0x89, 0x1E, 0x08, 0x60, 0xBC, 0x2B, 0x41, 0x59, 0xD7, +0xD0, 0xF3, 0x2C, 0x4E, 0x8D, 0xC7, 0xAB, 0x03, 0x11, 0xAC, 0x54, 0xC5, 0xB6, 0x6B, 0xD3, 0x85, +0xE9, 0x34, 0xCB, 0xC9, 0x70, 0x62, 0xDE, 0xB7, 0x5B, 0xBB, 0xCF, 0xFA, 0xC1, 0xBE, 0x2D, 0x3F, +0x3C, 0x38, 0x39, 0xF8, 0xD4, 0x0B, 0x7E, 0x59, 0x55, 0x6D, 0xC8, 0x89, 0x5C, 0xB9, 0xDF, 0xB1, +0x8C, 0x79, 0x94, 0x70, 0x17, 0x68, 0x6A, 0x79, 0x6D, 0xD0, 0x57, 0x01, 0x21, 0xD0, 0x9F, 0xFE, +0xE8, 0x7B, 0xF0, 0xC6, 0x1B, 0xDE, 0x06, 0x5F, 0xFF, 0x8F, 0x7F, 0x44, 0xB5, 0xEA, 0x40, 0x96, +0x36, 0x63, 0x96, 0x75, 0x56, 0x64, 0x46, 0xF5, 0x52, 0x2E, 0xAA, 0xDA, 0x8E, 0x98, 0xC0, 0x1C, +0xB8, 0x5C, 0x59, 0x60, 0xB3, 0x1D, 0x0F, 0x1E, 0x19, 0x61, 0x68, 0x96, 0x81, 0xF9, 0x5C, 0x76, +0xB5, 0x62, 0x1D, 0x68, 0xCE, 0x06, 0x90, 0xB9, 0x1A, 0x54, 0xA8, 0xAF, 0x88, 0x42, 0x24, 0x54, +0xB5, 0x6E, 0xB4, 0x43, 0x29, 0x8F, 0xA7, 0x14, 0xAA, 0xA6, 0x68, 0x6F, 0x8C, 0x5D, 0x9E, 0x19, +0x3F, 0x00, 0x7B, 0x0F, 0x0E, 0xC0, 0x18, 0xC6, 0xC1, 0xFB, 0xA1, 0x05, 0x96, 0xC4, 0x45, 0x16, +0xF2, 0xE8, 0x08, 0xC0, 0x4C, 0xA2, 0x77, 0xBC, 0xB6, 0x49, 0x85, 0xB0, 0x13, 0x81, 0x12, 0x9A, +0x8B, 0xB0, 0x84, 0x61, 0x67, 0xB0, 0xE3, 0x49, 0x4B, 0xEE, 0x18, 0x39, 0xD1, 0x29, 0x23, 0x08, +0x7D, 0x8C, 0x44, 0xC5, 0xCC, 0x68, 0x8B, 0x55, 0xC8, 0x31, 0x88, 0xAB, 0x15, 0x91, 0xA5, 0xB8, +0xF0, 0x5C, 0x7C, 0x9A, 0xEC, 0xDB, 0xE0, 0x44, 0xC6, 0x78, 0xF8, 0xD9, 0x03, 0x4F, 0x0D, 0x8F, +0x25, 0xEF, 0xDC, 0x32, 0x08, 0x3F, 0xFA, 0xF5, 0xEE, 0xDC, 0x9E, 0x78, 0xC8, 0xDF, 0xE5, 0x0F, +0x45, 0xDC, 0x2A, 0xDA, 0x54, 0x11, 0x3C, 0x8D, 0x67, 0xA2, 0x7D, 0x8A, 0x62, 0xF0, 0xED, 0x73, +0x53, 0x70, 0x60, 0xFB, 0x43, 0x30, 0xDE, 0xB3, 0x03, 0x96, 0x75, 0x86, 0xF1, 0xD4, 0xA1, 0x8D, +0xCA, 0x7B, 0x5D, 0x02, 0x65, 0x93, 0x67, 0x2A, 0xB8, 0x11, 0x11, 0x97, 0xCB, 0xAF, 0xB8, 0x1C, +0x36, 0xFF, 0xF6, 0xB7, 0x2C, 0xB3, 0xC1, 0x4E, 0x3B, 0xD5, 0x2B, 0xD1, 0xEA, 0x16, 0x9A, 0x8E, +0x8A, 0x17, 0x9F, 0xED, 0x96, 0x45, 0xFB, 0x4F, 0x75, 0xC5, 0x75, 0x49, 0x65, 0x2A, 0x98, 0x62, +0x4D, 0x54, 0x87, 0xA2, 0x2F, 0x94, 0x0C, 0x44, 0x3B, 0x6F, 0x4B, 0x4F, 0x1C, 0xF8, 0x1B, 0x62, +0xEA, 0x8B, 0x7D, 0x59, 0x31, 0x10, 0xD5, 0x04, 0x49, 0xCE, 0xD4, 0xAB, 0x2E, 0x6C, 0x74, 0xF2, +0x28, 0x2C, 0x73, 0x2C, 0x6F, 0xEE, 0xE6, 0xEE, 0x6D, 0xCF, 0xB0, 0xD0, 0x6B, 0xE9, 0xEA, 0xB3, +0x10, 0x93, 0x46, 0x98, 0xB1, 0x80, 0x9E, 0x6A, 0xD9, 0x65, 0xE1, 0x08, 0xC9, 0x38, 0x8D, 0xC6, +0xD6, 0x4C, 0x92, 0x66, 0x60, 0x92, 0xCB, 0xB6, 0x50, 0xE3, 0x01, 0xD0, 0xCA, 0x3A, 0x5B, 0xF1, +0x52, 0xC5, 0xEF, 0x4E, 0x73, 0x18, 0x89, 0x99, 0x32, 0xE1, 0xCB, 0x68, 0x2F, 0x4D, 0xC5, 0x8F, +0x26, 0x49, 0x83, 0xAA, 0x5B, 0xB1, 0x35, 0xAD, 0x68, 0xAF, 0x49, 0x34, 0xCF, 0x0B, 0x5B, 0x93, +0xCD, 0x49, 0x4C, 0xC8, 0x17, 0x8A, 0x15, 0xC8, 0x6A, 0x32, 0x6A, 0xAA, 0x30, 0x34, 0x23, 0xF4, +0x9A, 0xC7, 0xF4, 0xE3, 0x58, 0xAA, 0xC0, 0x20, 0x56, 0x97, 0x17, 0x58, 0x1F, 0x6E, 0xD0, 0x2F, +0x32, 0x4D, 0x25, 0x07, 0x1B, 0x8E, 0xCD, 0x64, 0x60, 0x98, 0x38, 0x92, 0xB7, 0x4A, 0x6E, 0x50, +0x1F, 0x6F, 0x16, 0xB8, 0x48, 0x0C, 0xA1, 0xC3, 0x37, 0x6C, 0x38, 0x13, 0x0E, 0x61, 0x62, 0xF9, +0xA9, 0xFE, 0x24, 0x78, 0x2E, 0xA2, 0xCD, 0x80, 0x71, 0xD7, 0x95, 0xF7, 0x7D, 0xF5, 0x91, 0xC9, +0x0F, 0x8E, 0x1E, 0xFE, 0xD5, 0xE1, 0xFA, 0x93, 0x9B, 0x3E, 0xBA, 0xD5, 0xA2, 0x42, 0xB5, 0x52, +0xE9, 0xB9, 0xCB, 0x90, 0xA9, 0x26, 0x38, 0x1E, 0x8B, 0x43, 0x2C, 0x44, 0x0C, 0xF2, 0x3C, 0xD9, +0x08, 0xD5, 0x32, 0x91, 0x29, 0x42, 0x23, 0x95, 0x4B, 0x61, 0x7C, 0x8C, 0x17, 0xE7, 0xA6, 0x9B, +0xDF, 0x81, 0xD2, 0xFA, 0x5B, 0x4C, 0x61, 0x4D, 0x32, 0x0F, 0x9C, 0x81, 0xF6, 0xB5, 0xA9, 0x69, +0x16, 0x03, 0xF2, 0x6D, 0x86, 0x95, 0x52, 0x91, 0x1B, 0x8B, 0x57, 0xDD, 0x69, 0x78, 0x30, 0x47, +0x23, 0x60, 0x05, 0x4D, 0x09, 0x36, 0x7D, 0x31, 0xD6, 0xBC, 0xF0, 0x3B, 0x99, 0x89, 0x97, 0x6E, +0x44, 0x53, 0x95, 0x86, 0x34, 0x38, 0xE9, 0x23, 0xE4, 0x64, 0x51, 0x4E, 0x88, 0x18, 0x43, 0x3D, +0x42, 0x34, 0x57, 0x91, 0x67, 0xD5, 0x0D, 0x0E, 0xDC, 0x79, 0xDB, 0xED, 0xF0, 0xA1, 0xFF, 0xF3, +0x27, 0xB0, 0x15, 0x33, 0x54, 0xE5, 0x42, 0x81, 0x2D, 0x36, 0x12, 0x39, 0x8A, 0x0C, 0x68, 0x2D, +0xA8, 0xCD, 0xF2, 0xBB, 0x54, 0x65, 0x89, 0x7E, 0x0D, 0xDB, 0x4A, 0x2D, 0x60, 0x8E, 0x56, 0x0D, +0x06, 0xE8, 0xF4, 0x81, 0x8E, 0x99, 0xA1, 0x94, 0x56, 0x64, 0xEB, 0xDB, 0x04, 0x34, 0x5B, 0x14, +0x92, 0xD2, 0x76, 0xAE, 0xB2, 0xA3, 0x43, 0xC9, 0xC9, 0x72, 0x84, 0x2E, 0x2C, 0x09, 0x3A, 0x57, +0x99, 0x66, 0x09, 0x46, 0xFA, 0x07, 0xC1, 0x2C, 0x97, 0x61, 0xAC, 0x1A, 0xD9, 0xBB, 0x58, 0x74, +0x5B, 0x63, 0xA0, 0x35, 0xF4, 0x0E, 0x96, 0x50, 0x80, 0xB2, 0x18, 0x72, 0xC9, 0xF8, 0x1E, 0x0E, +0xC2, 0x96, 0x82, 0x4B, 0xB6, 0x3D, 0xC3, 0x45, 0x0E, 0xC4, 0x9B, 0xD6, 0x3E, 0x08, 0xF0, 0x0B, +0x38, 0x51, 0xE2, 0x3F, 0xF4, 0xC3, 0xC7, 0x37, 0x97, 0x53, 0xBE, 0x7F, 0xB5, 0x4D, 0xD5, 0x55, +0x03, 0x41, 0x58, 0xD8, 0xD5, 0x0E, 0x4B, 0x3B, 0xE7, 0xB9, 0xCB, 0xF1, 0x85, 0x5B, 0x11, 0xC4, +0x17, 0xD1, 0xE6, 0xD9, 0xAE, 0x58, 0xD4, 0xF9, 0xD0, 0xE3, 0xD3, 0x99, 0x4A, 0x34, 0xAF, 0x31, +0x7E, 0xC5, 0x6F, 0x1E, 0xDA, 0xC5, 0x4B, 0x01, 0x99, 0x13, 0x42, 0x32, 0xC7, 0xAB, 0x61, 0x3C, +0x59, 0x08, 0x94, 0x2B, 0x0A, 0x1B, 0xFC, 0x4C, 0x62, 0xC0, 0xC0, 0x6F, 0xBC, 0x00, 0x65, 0xCD, +0x43, 0xB2, 0xA8, 0x88, 0xEC, 0xDC, 0x55, 0x9D, 0x70, 0xF6, 0xEA, 0x76, 0x26, 0xAD, 0x3F, 0xF8, +0xCE, 0xB7, 0xBD, 0x81, 0x98, 0xB5, 0xFE, 0x1C, 0x16, 0x3B, 0xB2, 0x4B, 0xEC, 0xF5, 0xA0, 0x5A, +0x8E, 0x57, 0x8A, 0x2A, 0xB0, 0xA5, 0xBA, 0xCA, 0x71, 0x18, 0x91, 0xE5, 0x70, 0xC5, 0xBD, 0x2D, +0x0B, 0xD7, 0xDF, 0x76, 0x6C, 0xCF, 0x2F, 0x26, 0x4F, 0xE4, 0xCB, 0x8A, 0x4A, 0x14, 0x01, 0x22, +0x31, 0x4D, 0x09, 0x75, 0x2A, 0x00, 0xAF, 0xA5, 0x41, 0x59, 0xA2, 0x5C, 0x33, 0x50, 0xE7, 0xD8, +0x21, 0x78, 0x7A, 0xDB, 0x41, 0x36, 0x1A, 0xF0, 0x0D, 0xD7, 0x5C, 0x8B, 0x98, 0xAD, 0x8D, 0x18, +0xB2, 0xCD, 0x9A, 0xBA, 0x1A, 0x23, 0x32, 0x2C, 0x9D, 0x1F, 0xC4, 0x6B, 0x13, 0x80, 0x85, 0xF3, +0xFC, 0xD0, 0xD1, 0x82, 0x3F, 0x5B, 0x15, 0x58, 0xDC, 0xEE, 0x87, 0xB8, 0x9F, 0x87, 0x00, 0x66, +0x73, 0x54, 0xB3, 0x08, 0x8D, 0xE5, 0xBC, 0x17, 0x3F, 0x23, 0xD8, 0x61, 0x55, 0xF2, 0xA0, 0x61, +0x5C, 0x4B, 0xA1, 0x95, 0x61, 0xE8, 0x46, 0x5F, 0x2E, 0x23, 0xFF, 0xCD, 0x4D, 0xF1, 0xFF, 0x3D, +0x76, 0xF4, 0x28, 0x8C, 0xA3, 0x64, 0x1E, 0xA9, 0x46, 0x77, 0xF5, 0xB9, 0xB1, 0x2F, 0xB5, 0x88, +0x13, 0x0D, 0x39, 0x3C, 0x64, 0xC3, 0x49, 0x6F, 0xEA, 0xBA, 0xEC, 0xA2, 0x37, 0x9D, 0xAE, 0xBA, +0x7A, 0xA5, 0xC4, 0x71, 0xFE, 0xE8, 0xEE, 0xA7, 0x8F, 0xEC, 0x5E, 0x75, 0xFF, 0x5D, 0x1B, 0x7B, +0x61, 0x06, 0xC4, 0x13, 0x72, 0x64, 0x28, 0x5C, 0x5F, 0xD9, 0x15, 0x92, 0x84, 0x01, 0x87, 0xE2, +0x71, 0x78, 0xDF, 0x3B, 0x2E, 0xE3, 0x6E, 0xBC, 0xEE, 0x5C, 0x38, 0x03, 0xCF, 0x51, 0x87, 0x63, +0xC2, 0x99, 0xF3, 0x9A, 0xF6, 0xC6, 0x5B, 0xD6, 0xDD, 0x36, 0xFD, 0x89, 0xFF, 0xF3, 0x3F, 0x0F, +0x76, 0xF9, 0x84, 0xEA, 0x99, 0xF4, 0x7B, 0x04, 0x33, 0xEA, 0x0A, 0x9E, 0x32, 0x55, 0xC6, 0xCB, +0x46, 0x41, 0x9C, 0x7B, 0xBC, 0x5D, 0xA3, 0x3E, 0xFB, 0x97, 0xCD, 0x0E, 0x46, 0xC9, 0xCD, 0x62, +0xB2, 0x3B, 0x8D, 0x69, 0xBD, 0x8B, 0x2F, 0x7B, 0x03, 0xEC, 0xDC, 0xF2, 0x28, 0x82, 0x23, 0x79, +0xD6, 0x88, 0x45, 0xDB, 0xB0, 0xA8, 0x83, 0xDD, 0x9B, 0x83, 0x5F, 0x1F, 0xB7, 0xE7, 0xED, 0xC3, +0xA9, 0x87, 0x37, 0x14, 0xF7, 0x51, 0x46, 0x89, 0xC3, 0x14, 0x22, 0xC7, 0xCB, 0x45, 0xD9, 0x17, +0xB9, 0xBF, 0x5E, 0x3C, 0x77, 0x22, 0x74, 0xE8, 0xD9, 0xFF, 0x4E, 0x3B, 0xD5, 0xF2, 0x4E, 0x8C, +0x91, 0x4B, 0x0C, 0x26, 0xC4, 0x83, 0x83, 0x97, 0x11, 0x71, 0xD9, 0x20, 0xDB, 0x03, 0x34, 0x3E, +0x99, 0x42, 0x93, 0xAB, 0xC3, 0x37, 0xBF, 0xFA, 0x45, 0xB8, 0xEE, 0xCD, 0x6F, 0x86, 0x45, 0x9D, +0x51, 0x58, 0xD9, 0x1D, 0x86, 0xD5, 0x8B, 0x9B, 0x60, 0x61, 0x7B, 0x8C, 0x15, 0x00, 0xD4, 0x9B, +0xB2, 0x08, 0xA9, 0x22, 0x27, 0x93, 0xED, 0xEB, 0x41, 0x50, 0x87, 0x55, 0x3E, 0x50, 0x4D, 0x32, +0xC1, 0x82, 0xB4, 0xEA, 0x45, 0xD3, 0x40, 0xA0, 0xD5, 0x6D, 0x94, 0x4A, 0xA4, 0x52, 0x1B, 0x5E, +0x49, 0x7C, 0xFA, 0xE6, 0x75, 0xFF, 0xFE, 0xF4, 0xC3, 0x8F, 0xC0, 0x8F, 0x6F, 0xFB, 0x35, 0xEC, +0xDA, 0x7E, 0x68, 0x32, 0x9F, 0x2D, 0xFF, 0xEB, 0x99, 0x9D, 0xA1, 0xA6, 0x18, 0xAA, 0x6E, 0x0A, +0xB1, 0xA8, 0x45, 0x45, 0x40, 0x30, 0xA2, 0x80, 0xEA, 0xDE, 0xA8, 0x9A, 0xBA, 0x29, 0x37, 0x7C, +0xD7, 0x55, 0xA3, 0xEF, 0x86, 0x59, 0x10, 0xBB, 0x62, 0x0F, 0x6C, 0xDA, 0xD5, 0x73, 0xAC, 0x37, +0xB7, 0xA9, 0xB7, 0x67, 0x2C, 0x37, 0x3A, 0x32, 0x0E, 0xD1, 0x86, 0x66, 0x78, 0xC3, 0x9B, 0xAE, +0x82, 0x0B, 0x2F, 0x58, 0x0B, 0x2D, 0x2A, 0xCD, 0x57, 0x92, 0xB8, 0x8E, 0x08, 0xAF, 0xAC, 0x3A, +0xF7, 0xD6, 0xE6, 0xF7, 0xBC, 0xE7, 0x2B, 0xED, 0x5D, 0x1B, 0x36, 0x2A, 0xE7, 0xAC, 0x5E, 0xDC, +0x8D, 0x6E, 0xFB, 0x7C, 0xCB, 0xD2, 0x5D, 0xDB, 0xCC, 0x73, 0x36, 0xE6, 0x26, 0xBD, 0x65, 0x72, +0x78, 0xF1, 0x69, 0x21, 0x61, 0x7D, 0xB8, 0x73, 0xAD, 0x80, 0xCB, 0x71, 0xD8, 0xA2, 0x39, 0xA6, +0x4A, 0x45, 0x74, 0xA8, 0x56, 0x9E, 0x75, 0x11, 0xDC, 0x7D, 0xFB, 0x8F, 0x58, 0x4E, 0x96, 0xDA, +0x11, 0x69, 0x1F, 0x3A, 0xE1, 0xB5, 0x94, 0x69, 0xA9, 0xA7, 0xE0, 0x88, 0xBC, 0x11, 0xB3, 0xDE, +0x9C, 0x61, 0x56, 0xFF, 0x0B, 0x5E, 0xBF, 0x4E, 0x30, 0xD6, 0xF9, 0x60, 0xDB, 0xC2, 0x2B, 0xBF, +0x09, 0x33, 0x24, 0x9F, 0xBF, 0x31, 0xCD, 0x39, 0x56, 0x9A, 0x46, 0x17, 0xD0, 0x18, 0x7A, 0xDB, +0x91, 0xD0, 0x41, 0xF2, 0xF2, 0xC5, 0x89, 0x90, 0x00, 0x0D, 0x28, 0x99, 0xA0, 0xE7, 0x58, 0x47, +0xDF, 0x95, 0x6F, 0xBA, 0xC1, 0x4B, 0x51, 0xB2, 0xD2, 0x50, 0x2F, 0xC7, 0xCB, 0xBA, 0xFF, 0xA8, +0x87, 0xD6, 0xE7, 0x35, 0x53, 0x53, 0x82, 0x82, 0xB5, 0x61, 0xDA, 0xA8, 0xAE, 0x95, 0x10, 0x94, +0x68, 0xFF, 0x3B, 0xAA, 0x5F, 0x0B, 0xB5, 0x8B, 0x41, 0x1A, 0xC6, 0xF5, 0xEA, 0x84, 0x75, 0x5F, +0xB4, 0x5B, 0x2D, 0x1E, 0xBD, 0xE6, 0xE7, 0xBF, 0xD8, 0x84, 0x8E, 0x97, 0x39, 0x39, 0xE8, 0x46, +0xBE, 0xDF, 0xB9, 0xE4, 0x4C, 0x7B, 0x75, 0x30, 0x75, 0x73, 0x0A, 0xED, 0x12, 0x0D, 0x0B, 0xB5, +0x04, 0xAF, 0xE5, 0xA3, 0x8C, 0xA6, 0xCD, 0x56, 0xA2, 0xBF, 0xE0, 0xC3, 0xF1, 0xFF, 0xB8, 0x7F, +0xCB, 0xC3, 0x33, 0x9E, 0xCA, 0x46, 0xC4, 0xC4, 0xE9, 0xB7, 0x5B, 0x7E, 0x5D, 0x5C, 0xB0, 0x78, +0xC3, 0xD3, 0x87, 0x06, 0xF3, 0x23, 0x85, 0xD1, 0xA1, 0x6B, 0x26, 0xC6, 0x87, 0x79, 0x2A, 0x0B, +0x6D, 0xC1, 0x3C, 0x64, 0x4B, 0x22, 0x48, 0xD5, 0x04, 0x8D, 0xFE, 0x6A, 0xF2, 0x92, 0x65, 0xDA, +0xFE, 0x37, 0x2E, 0x31, 0x8F, 0xBE, 0x73, 0x9E, 0x92, 0x39, 0x3B, 0xB1, 0xE4, 0x8C, 0x65, 0x99, +0xF4, 0xE4, 0xC5, 0x7D, 0x3D, 0xFB, 0x38, 0xDE, 0xD1, 0x11, 0x2C, 0x2D, 0x62, 0x62, 0xBD, 0xC0, +0xE0, 0x36, 0x9F, 0x60, 0x7A, 0x95, 0xFC, 0x60, 0xB1, 0x36, 0x49, 0x0A, 0x05, 0x1D, 0xA7, 0x56, +0xC1, 0x8F, 0x17, 0x67, 0xE9, 0x9A, 0xF5, 0xEC, 0x82, 0x3D, 0xF2, 0x9B, 0xDF, 0x30, 0x10, 0xC3, +0xB4, 0xBC, 0x46, 0x64, 0xB6, 0x7E, 0xD4, 0xF5, 0x42, 0x17, 0xC3, 0xAA, 0x81, 0xFE, 0xB5, 0x0F, +0x6A, 0xD5, 0xF6, 0xEB, 0x90, 0xE4, 0x0B, 0x92, 0x92, 0x6D, 0x5F, 0x70, 0xD1, 0xF5, 0x07, 0xB7, +0x7F, 0x77, 0xC6, 0xE3, 0xDC, 0x13, 0x5D, 0xE7, 0xE9, 0x5A, 0x7E, 0xE0, 0x4A, 0x54, 0xED, 0xDD, +0xE8, 0x78, 0xD1, 0xB8, 0x5A, 0x4C, 0xD1, 0x71, 0x10, 0x41, 0x70, 0x20, 0xA4, 0x72, 0x6C, 0x1B, +0x24, 0xA5, 0x14, 0x93, 0xA3, 0x7D, 0x70, 0xFD, 0x3B, 0x6F, 0x81, 0x83, 0xBB, 0xB7, 0xB2, 0x02, +0x72, 0xBB, 0xB6, 0x70, 0xC9, 0xEB, 0x08, 0xF4, 0xB6, 0x7E, 0x58, 0xB6, 0x53, 0x9B, 0x18, 0xE7, +0x32, 0xF0, 0x42, 0x43, 0x7B, 0x5C, 0xA0, 0x18, 0xD7, 0xA7, 0x82, 0xAB, 0xA0, 0xDD, 0x95, 0x54, +0xD6, 0xEB, 0x83, 0xAC, 0x37, 0x31, 0xB6, 0x1E, 0xC7, 0x0B, 0x94, 0x3B, 0x36, 0x32, 0x69, 0x99, +0xE1, 0xB6, 0x4F, 0xEA, 0x9D, 0x97, 0xDD, 0x7F, 0x5D, 0x67, 0xFE, 0x9F, 0xCD, 0x4A, 0xFE, 0xDC, +0xC7, 0xF6, 0x0C, 0xC2, 0x50, 0x5A, 0x67, 0x05, 0xF0, 0x9A, 0xCD, 0xE5, 0xCA, 0x62, 0xCB, 0x67, +0x47, 0x1A, 0xCF, 0xFC, 0xFB, 0xA7, 0x9E, 0xB8, 0x7D, 0x14, 0x66, 0x49, 0x53, 0x55, 0x55, 0xC4, +0xDC, 0x86, 0x75, 0x37, 0x1E, 0x53, 0xF5, 0xF2, 0x88, 0x96, 0x19, 0x7C, 0xE3, 0xDE, 0x3D, 0x07, +0xB9, 0x63, 0x23, 0x19, 0x88, 0x05, 0x65, 0x68, 0x46, 0x65, 0x41, 0x85, 0xF2, 0x8A, 0xE0, 0xCC, +0x9F, 0xAC, 0x9A, 0x1D, 0xA3, 0x66, 0x40, 0x2B, 0xF2, 0xCD, 0xD9, 0x4D, 0x4F, 0xEF, 0x5C, 0x74, +0xE4, 0xE8, 0x2E, 0xA5, 0x54, 0xCA, 0xA3, 0x5D, 0xF5, 0xB3, 0xC6, 0xE4, 0x34, 0x06, 0xEA, 0x55, +0xAD, 0xC4, 0x92, 0xC9, 0x32, 0xED, 0x93, 0x61, 0xDD, 0x6A, 0xBA, 0xB7, 0xFD, 0x91, 0xB6, 0x58, +0x21, 0x83, 0x6E, 0xF9, 0x93, 0xBF, 0x82, 0x1F, 0x7C, 0xE3, 0xCB, 0x6C, 0xFC, 0x1E, 0xB5, 0x87, +0x50, 0xEF, 0x0C, 0xC1, 0x74, 0x8E, 0x7B, 0x7C, 0x65, 0xCA, 0x14, 0x16, 0x3C, 0xF5, 0x9F, 0xD7, +0x26, 0x47, 0x92, 0xEF, 0xF3, 0xC7, 0x9F, 0x19, 0xE9, 0x7D, 0xEC, 0xBF, 0x60, 0x16, 0xB4, 0x7A, +0xE9, 0xDB, 0x8C, 0xF1, 0xE4, 0xBE, 0xF5, 0xE8, 0xB9, 0x2E, 0x33, 0x1D, 0x41, 0xF6, 0xF3, 0x3A, +0x04, 0x14, 0x71, 0x2A, 0xD9, 0x40, 0x89, 0x7B, 0x6A, 0xF0, 0x22, 0x58, 0x34, 0x88, 0x19, 0x9A, +0xA5, 0xAB, 0xCE, 0x82, 0x23, 0xFB, 0x77, 0xD5, 0x06, 0x0A, 0x78, 0x49, 0x6F, 0x8F, 0xBC, 0xB6, +0x16, 0xFA, 0x5E, 0x9E, 0xE5, 0x70, 0x98, 0xE4, 0xDA, 0x04, 0x7E, 0x90, 0x93, 0x47, 0x3D, 0xBE, +0x64, 0x5A, 0x80, 0xBA, 0xFA, 0x55, 0x7C, 0xAB, 0xC0, 0x33, 0x8A, 0xE8, 0xFB, 0x5C, 0xD9, 0xD4, +0xEE, 0x19, 0x8E, 0x9D, 0xF5, 0xF0, 0xBB, 0xD7, 0xA8, 0x0B, 0xFD, 0x56, 0xE6, 0x23, 0x47, 0xFA, +0x86, 0x42, 0xBD, 0x93, 0x15, 0x0F, 0x2F, 0x76, 0xD5, 0xDF, 0x56, 0x05, 0xE5, 0x3F, 0x47, 0xFD, +0x67, 0xFF, 0xE8, 0xE0, 0x93, 0x5F, 0xCB, 0xC3, 0xCB, 0xA0, 0xE7, 0x54, 0x2D, 0x1F, 0xD8, 0xF9, +0x6B, 0x6D, 0xD3, 0xEE, 0xAD, 0xCF, 0x4E, 0xC6, 0xAF, 0xFB, 0x49, 0x58, 0xD4, 0xD5, 0x52, 0xA1, +0xD0, 0xB0, 0x65, 0xD7, 0xD1, 0xC8, 0xAE, 0xBE, 0xCC, 0xF0, 0xB1, 0x91, 0x6C, 0x7F, 0xC9, 0xE2, +0x8E, 0x3D, 0x69, 0x2F, 0xF9, 0xF2, 0xA6, 0x37, 0x9E, 0xF3, 0x91, 0xF3, 0x83, 0x17, 0x97, 0xED, +0xE0, 0xA2, 0x1B, 0xC6, 0xB2, 0xBC, 0xBF, 0x98, 0x3A, 0xC6, 0x66, 0x52, 0xAC, 0xBE, 0xF0, 0x46, +0x77, 0xF5, 0x05, 0x1B, 0xB8, 0x44, 0x3C, 0xE6, 0xD2, 0x5C, 0xFB, 0x6C, 0x36, 0xC3, 0x51, 0xF5, +0xA1, 0xC5, 0xAA, 0xFD, 0xBD, 0x59, 0xFD, 0xEB, 0x2F, 0xDA, 0xC0, 0x42, 0x8B, 0x47, 0x1F, 0x79, +0x84, 0x05, 0xFA, 0xE4, 0xDA, 0x93, 0x7D, 0x62, 0x80, 0xBF, 0xE1, 0x55, 0x1A, 0x12, 0x36, 0x2C, +0x09, 0x5E, 0x8F, 0xEC, 0xD4, 0x70, 0x68, 0x76, 0x51, 0xD1, 0xED, 0xF7, 0x85, 0x32, 0xB2, 0x3F, +0xFC, 0x0F, 0x5A, 0x29, 0x39, 0xE3, 0x65, 0xB9, 0x44, 0xFD, 0xFD, 0x9B, 0x9D, 0xE6, 0xEE, 0x4B, +0x4D, 0xAD, 0x30, 0x7E, 0x86, 0x22, 0x58, 0xAD, 0xB4, 0x6D, 0x99, 0xB6, 0x7B, 0x30, 0x4F, 0x9B, +0x85, 0x18, 0x74, 0x80, 0x1C, 0x96, 0xB6, 0xCC, 0x4C, 0x0E, 0x32, 0xA9, 0x4D, 0x8D, 0xF5, 0x43, +0x36, 0x93, 0x66, 0x9D, 0x06, 0xC4, 0x28, 0xBB, 0x36, 0xCC, 0x8D, 0x8E, 0x20, 0x55, 0x5B, 0x68, +0xB5, 0xF0, 0x4C, 0x64, 0xC0, 0x87, 0xE7, 0x4B, 0xD0, 0x67, 0xA5, 0xAA, 0x4C, 0xAA, 0x18, 0xD1, +0x4D, 0xBD, 0x84, 0x89, 0xFE, 0x47, 0x02, 0xF1, 0x8B, 0xBF, 0xB1, 0xE9, 0xD9, 0x9F, 0x1C, 0x49, +0xF6, 0x6F, 0x35, 0x6E, 0x3C, 0xA3, 0x7D, 0xD9, 0xE1, 0x7D, 0x3D, 0xD7, 0xEE, 0x1D, 0x2E, 0x15, +0xAA, 0x42, 0x60, 0x13, 0x9F, 0x58, 0xF0, 0x4F, 0xBD, 0x89, 0x37, 0x7C, 0x7A, 0xF7, 0xD6, 0xDB, +0x9E, 0x4D, 0x8D, 0x6C, 0x9D, 0xD1, 0xFC, 0xFF, 0x17, 0xA2, 0x17, 0xEC, 0x68, 0x1F, 0x1F, 0x78, +0x26, 0x73, 0xFE, 0x4D, 0x9F, 0xD9, 0x9E, 0x4B, 0x0D, 0xE6, 0x0B, 0xF9, 0x02, 0x22, 0xC0, 0xAD, +0xB7, 0x4F, 0xFA, 0xE6, 0xFF, 0x3C, 0x25, 0xCE, 0xFF, 0xB9, 0x1B, 0xEA, 0x78, 0xE2, 0x1A, 0x7B, +0x99, 0x13, 0x6E, 0x6E, 0xBD, 0xC2, 0xE5, 0x7D, 0x6F, 0x05, 0x6D, 0xD2, 0x0D, 0x89, 0x15, 0x3E, +0x95, 0x1A, 0x87, 0x3D, 0x7B, 0x77, 0x72, 0x85, 0xEC, 0x04, 0xAC, 0x5C, 0xBB, 0xC1, 0x6D, 0x6D, +0x8A, 0x71, 0xCF, 0x3C, 0xF3, 0x14, 0x47, 0x12, 0xC6, 0x06, 0x50, 0x92, 0xE3, 0x83, 0x4C, 0x7A, +0xEF, 0x47, 0xFF, 0x92, 0x49, 0x2B, 0x79, 0x85, 0xA5, 0x0A, 0x95, 0x90, 0x9A, 0x0C, 0x79, 0xA1, +0xD8, 0x95, 0x42, 0x1D, 0x36, 0x16, 0x87, 0x50, 0xAF, 0x5A, 0x6D, 0xAD, 0x77, 0x01, 0xA7, 0xD6, +0x37, 0x38, 0x92, 0x1A, 0x7B, 0x50, 0x51, 0x12, 0x3F, 0x2B, 0x17, 0x86, 0x4E, 0xC8, 0x13, 0x7E, +0x21, 0x6A, 0xED, 0xB8, 0xA4, 0xA2, 0x17, 0xFB, 0x2F, 0xF5, 0x2B, 0xE2, 0x52, 0x3A, 0x30, 0xDE, +0xA0, 0x98, 0x5A, 0x21, 0x9D, 0xE4, 0x4D, 0x28, 0x27, 0xD4, 0x8D, 0x56, 0x91, 0x52, 0xA6, 0x6E, +0xDD, 0x79, 0x97, 0xC1, 0xBE, 0xED, 0x4F, 0x30, 0x15, 0xCC, 0xDA, 0x30, 0xEC, 0xBA, 0xF7, 0xCE, +0x31, 0x54, 0xAA, 0x8C, 0xBE, 0x36, 0x3A, 0xFD, 0x2C, 0x06, 0xE7, 0xD8, 0x61, 0xF4, 0xAA, 0x0D, +0xD9, 0xA6, 0x2B, 0x9B, 0xA9, 0x6F, 0x17, 0x41, 0x9C, 0x03, 0xFB, 0xF7, 0xFF, 0xFC, 0xDE, 0xFA, +0x67, 0xE0, 0x5B, 0xAF, 0xD3, 0xC6, 0x2A, 0x56, 0x66, 0x52, 0x88, 0x6E, 0xC9, 0x07, 0xBB, 0xBE, +0xB9, 0xE5, 0x99, 0x9F, 0x6F, 0xCA, 0xF5, 0x6F, 0x9E, 0xD5, 0x60, 0xEB, 0x17, 0xA2, 0xDF, 0xDB, +0x1F, 0xFB, 0x5F, 0xFF, 0xFE, 0x2E, 0xD2, 0xEF, 0x5F, 0x41, 0xA4, 0xE4, 0xEB, 0x47, 0xD0, 0x73, +0x9E, 0x7E, 0xDF, 0x99, 0x1F, 0xFE, 0x46, 0x6B, 0xB1, 0x98, 0x6D, 0x2F, 0x9A, 0x6C, 0xBB, 0xB2, +0x4B, 0xB5, 0x47, 0x45, 0x2A, 0xDE, 0xCE, 0x67, 0x60, 0x7C, 0xF4, 0x08, 0xEC, 0xDC, 0xBE, 0x8D, +0x6F, 0x88, 0x87, 0x60, 0x74, 0x0C, 0x93, 0xD4, 0x68, 0x37, 0xC2, 0xE8, 0x80, 0x45, 0x10, 0x17, +0xDD, 0x70, 0xE5, 0x55, 0x08, 0xA7, 0x4D, 0xC2, 0xB1, 0xBE, 0x51, 0xBC, 0x20, 0x55, 0x26, 0xC5, +0x24, 0xB1, 0xBA, 0x55, 0x8F, 0x51, 0x5D, 0xF6, 0x93, 0xE5, 0x59, 0xA7, 0xBD, 0x1F, 0xCB, 0xDA, +0xF0, 0x94, 0x4E, 0x13, 0x8B, 0xAA, 0x3F, 0xFC, 0x93, 0x44, 0xA8, 0xED, 0xC8, 0x04, 0xCC, 0x9E, +0x68, 0xD5, 0xCA, 0xC2, 0x05, 0x67, 0x1F, 0xE4, 0x9C, 0xEC, 0x9B, 0xC9, 0x66, 0x50, 0x48, 0xC5, +0xAA, 0xB2, 0x6A, 0x5D, 0xEE, 0x12, 0xB3, 0xF5, 0x34, 0xCE, 0x16, 0xE0, 0xA9, 0x4D, 0x0F, 0xC0, +0xD9, 0x17, 0x5D, 0x05, 0xF3, 0x17, 0x2E, 0x85, 0xA1, 0xDE, 0x43, 0x35, 0xA7, 0xD0, 0xAD, 0x0D, +0xEA, 0xF4, 0x7A, 0x86, 0x4C, 0x66, 0x22, 0x8E, 0xEF, 0x86, 0xF7, 0x16, 0x47, 0xD0, 0x80, 0x90, +0xBA, 0x87, 0x20, 0x14, 0x2C, 0x5E, 0x7E, 0x4E, 0xE9, 0xE8, 0xBD, 0xF7, 0xFE, 0x3B, 0x5D, 0xDF, +0xFF, 0x86, 0x57, 0x88, 0x5E, 0xB2, 0xC5, 0xE3, 0xC0, 0xF3, 0x98, 0x4A, 0x14, 0x6D, 0x5E, 0xD0, +0xC0, 0xF9, 0xFC, 0xCB, 0xE9, 0x8B, 0x35, 0x26, 0x82, 0x7C, 0x55, 0x2F, 0xB1, 0xA9, 0x69, 0x3E, +0x89, 0x66, 0x3C, 0xF8, 0x98, 0xDD, 0xC9, 0x67, 0x33, 0x10, 0x8F, 0x23, 0xD0, 0x8D, 0x1E, 0x6F, +0x11, 0x61, 0xB2, 0x63, 0xA3, 0x65, 0xF4, 0x32, 0x6F, 0x86, 0x1F, 0xFF, 0xF0, 0x07, 0xCC, 0xFE, +0x52, 0x22, 0x59, 0x55, 0x24, 0xB6, 0x02, 0x8D, 0x66, 0x0A, 0xFB, 0x24, 0x99, 0x75, 0x03, 0x30, +0x1B, 0x57, 0xBB, 0xD5, 0xC3, 0x1C, 0x96, 0x8A, 0xF3, 0x6C, 0xEC, 0xB0, 0x12, 0x6E, 0x3E, 0x74, +0xE0, 0xC0, 0x9D, 0x06, 0xBC, 0x4C, 0x52, 0x83, 0x89, 0x51, 0xF2, 0x8C, 0x89, 0xBC, 0xDD, 0x1F, +0x1C, 0x8B, 0x6B, 0xD9, 0x48, 0x1E, 0xB3, 0xD6, 0x26, 0x42, 0x0B, 0x29, 0xF0, 0xC0, 0xDE, 0xF3, +0x93, 0xFF, 0x85, 0xF3, 0xAF, 0x7C, 0x8B, 0x17, 0x92, 0xD0, 0x61, 0xC4, 0x9B, 0xEB, 0x3D, 0xD1, +0x4B, 0xFE, 0xBB, 0x75, 0xDC, 0xEC, 0x78, 0x72, 0x82, 0x35, 0x52, 0x73, 0x5E, 0x66, 0x06, 0x6F, +0x55, 0x8C, 0xA1, 0x5F, 0x96, 0xCD, 0x9C, 0x29, 0xCD, 0x6A, 0xE4, 0x9E, 0x3F, 0x18, 0x50, 0x0D, +0x5D, 0x8F, 0xCB, 0xC6, 0x04, 0xE7, 0xE6, 0x8F, 0x72, 0x03, 0xA3, 0xC3, 0x28, 0xB1, 0x12, 0xEB, +0x6F, 0x95, 0x7D, 0x01, 0x68, 0x88, 0x4A, 0x30, 0x2F, 0x21, 0xC0, 0x12, 0xC4, 0xC9, 0x9A, 0xA2, +0x32, 0xC4, 0x30, 0x03, 0x72, 0xFD, 0x4D, 0x6F, 0x81, 0xB1, 0xF1, 0x09, 0x78, 0x78, 0xF3, 0xB3, +0x30, 0x3C, 0x59, 0x62, 0x6A, 0x98, 0x50, 0x25, 0x1A, 0xD8, 0x11, 0x54, 0x44, 0x36, 0xA1, 0xC5, +0x9B, 0x58, 0x5A, 0x9B, 0x3B, 0xE1, 0x1E, 0x4F, 0xC9, 0xB1, 0x6D, 0x3A, 0x46, 0x19, 0xD4, 0x50, +0xF3, 0xD7, 0x07, 0x0F, 0x3C, 0x38, 0x2B, 0xDB, 0xFA, 0x7C, 0xAA, 0x98, 0xCA, 0x51, 0x86, 0x59, +0x03, 0x25, 0x17, 0x78, 0x64, 0x84, 0x50, 0xDB, 0x7C, 0xE9, 0xB2, 0xD6, 0x49, 0x9B, 0x6A, 0x9C, +0x10, 0x64, 0xA0, 0x06, 0xAD, 0x5D, 0x3B, 0xB6, 0x33, 0x6D, 0xB2, 0xE2, 0x8C, 0x0B, 0x19, 0xC3, +0xA8, 0xF2, 0xA1, 0x6E, 0x1E, 0x44, 0xC1, 0x5B, 0xA5, 0x56, 0xEF, 0xFA, 0x63, 0x9F, 0xD7, 0xAD, +0x85, 0x7A, 0x9C, 0x5B, 0x8B, 0x06, 0xAC, 0xA2, 0xA2, 0x44, 0x4E, 0xB8, 0xD8, 0xFB, 0x64, 0xD0, +0xAC, 0x18, 0x5B, 0x29, 0x6B, 0x09, 0xCC, 0x7C, 0x04, 0x92, 0xE9, 0x9C, 0x4B, 0xAB, 0xCD, 0x16, +0x74, 0x2D, 0x42, 0x06, 0x8A, 0x6C, 0x6C, 0x1D, 0xDB, 0xEA, 0x88, 0xB6, 0x29, 0xA2, 0x4A, 0xDE, +0x5C, 0x08, 0xC3, 0x66, 0x8D, 0x52, 0xEF, 0x7A, 0xF7, 0xBB, 0xE0, 0xB1, 0xCD, 0x8F, 0x41, 0x30, +0x18, 0x62, 0x83, 0xA1, 0xF3, 0x08, 0xBF, 0x65, 0xF0, 0xA2, 0x15, 0x10, 0x67, 0xF5, 0x12, 0xE4, +0xF4, 0xCA, 0xC7, 0x3B, 0x95, 0xB8, 0x5A, 0xF9, 0x0B, 0x8B, 0x23, 0xC9, 0x4E, 0xFB, 0x82, 0xC3, +0x2D, 0x9D, 0x17, 0xCD, 0x6A, 0xE8, 0xF3, 0x0B, 0x91, 0x3F, 0xD2, 0xD8, 0x87, 0xAE, 0xAA, 0xE7, +0x08, 0xB9, 0xDE, 0x2A, 0x34, 0x41, 0x70, 0x6A, 0x52, 0xE8, 0x95, 0xE6, 0x98, 0x2C, 0x94, 0x01, +0x96, 0x8D, 0xFA, 0xCD, 0x3D, 0x77, 0xC0, 0x95, 0xD7, 0xDF, 0x8C, 0x9E, 0x72, 0xB8, 0x56, 0xFC, +0xEE, 0x85, 0x6F, 0x42, 0x2D, 0xFC, 0xF1, 0x1A, 0xA8, 0xA0, 0x66, 0x83, 0xBD, 0x05, 0xC3, 0x75, +0x0F, 0x5A, 0xC0, 0xE0, 0x9C, 0x73, 0xDD, 0x0A, 0xCC, 0x21, 0xCD, 0x8A, 0xB1, 0x1B, 0x56, 0x06, +0x3E, 0xB1, 0xAC, 0xA9, 0xB0, 0x5C, 0x4B, 0xEE, 0xE5, 0xCA, 0x62, 0xBB, 0xFD, 0xA1, 0x5B, 0xDF, +0x0D, 0xB7, 0xBE, 0xEF, 0x0F, 0x60, 0xF5, 0xCA, 0x73, 0x20, 0x18, 0x08, 0x63, 0x96, 0xC2, 0xDB, +0xAB, 0x33, 0x91, 0xD3, 0xD9, 0x2C, 0xC5, 0xCB, 0x10, 0x3A, 0xA4, 0x0B, 0xF6, 0xEB, 0xDF, 0x3C, +0xC2, 0xD4, 0x9D, 0xAA, 0x60, 0x7A, 0x4E, 0x0D, 0x00, 0x27, 0xCA, 0x6C, 0x85, 0xE6, 0x44, 0xB6, +0x04, 0xD9, 0x52, 0x19, 0xC1, 0xF5, 0xEA, 0x54, 0x06, 0xA7, 0x5E, 0xAF, 0x44, 0xF3, 0x82, 0x11, +0x65, 0x82, 0xE6, 0xCE, 0x73, 0xFF, 0xFE, 0x64, 0xAE, 0x21, 0x2B, 0x29, 0xED, 0x7D, 0xC0, 0x07, +0x0B, 0xA6, 0x65, 0x3E, 0xA7, 0xAD, 0xC2, 0x76, 0xBD, 0x7E, 0x19, 0x22, 0x62, 0x3C, 0x61, 0xC5, +0x34, 0x0B, 0xB5, 0xEF, 0xE8, 0x01, 0x28, 0x60, 0x28, 0x77, 0xDE, 0x86, 0x6B, 0x6A, 0xDD, 0x0A, +0x82, 0x37, 0x66, 0x9E, 0x0E, 0xB2, 0x5C, 0x07, 0x2B, 0x2C, 0x96, 0xA3, 0x35, 0x6A, 0x83, 0x3A, +0x29, 0x23, 0xC4, 0x5E, 0x93, 0x7F, 0x45, 0xF6, 0x56, 0xBD, 0x28, 0xCD, 0xEA, 0x1D, 0x45, 0xD5, +0x77, 0x81, 0x59, 0x18, 0x51, 0xDB, 0xC2, 0xE8, 0x00, 0x4D, 0xEC, 0xE6, 0x1F, 0xBC, 0xEF, 0x57, +0x70, 0xE8, 0xD0, 0x61, 0xCC, 0x6C, 0x68, 0x6C, 0xDB, 0x46, 0xAE, 0xE2, 0x40, 0x1A, 0xBD, 0x45, +0xCD, 0xF4, 0xC2, 0x88, 0xCB, 0x2F, 0xBF, 0x1C, 0x6E, 0xBF, 0xED, 0xA7, 0x9E, 0x97, 0x3B, 0x6D, +0xF3, 0x32, 0xD9, 0x51, 0xAA, 0xF7, 0xA5, 0xE9, 0x31, 0x16, 0x6B, 0xAA, 0x32, 0x59, 0xD5, 0x3E, +0xC3, 0x97, 0x69, 0xE6, 0x12, 0x4B, 0xCA, 0xD1, 0xE8, 0x59, 0xA5, 0x92, 0x68, 0x5F, 0xB9, 0x19, +0x4E, 0x22, 0x51, 0x02, 0x1E, 0x03, 0xB0, 0xE1, 0xE3, 0x9F, 0xA7, 0xD6, 0x91, 0xE0, 0x70, 0xB5, +0xC1, 0x9A, 0x5E, 0x0D, 0xAA, 0xED, 0x1C, 0x2F, 0x96, 0xBB, 0xEB, 0x87, 0x5F, 0x83, 0x0B, 0x2F, +0xBF, 0x8E, 0x0D, 0xD7, 0x16, 0x69, 0xDF, 0xBB, 0xC0, 0xD5, 0x34, 0xCA, 0xF1, 0xDE, 0x56, 0xFA, +0x37, 0xFB, 0xB5, 0x06, 0x3D, 0xB2, 0xD1, 0x09, 0xBC, 0x6C, 0x0B, 0x81, 0xC0, 0xCB, 0xF6, 0x0B, +0x66, 0x42, 0xB3, 0x62, 0xEC, 0xF0, 0xC0, 0x90, 0xF1, 0xE4, 0x96, 0x9D, 0x5C, 0x36, 0x97, 0x85, +0x90, 0x98, 0xE1, 0x8A, 0x13, 0x3B, 0xA1, 0x34, 0xFA, 0x2C, 0xC8, 0xC6, 0x30, 0x34, 0x47, 0x51, +0x15, 0x61, 0xDE, 0x75, 0x64, 0xBC, 0x04, 0xA3, 0x49, 0x1D, 0x3A, 0x17, 0xAD, 0x64, 0xBD, 0x32, +0x9B, 0x30, 0x35, 0x57, 0x27, 0xAA, 0x4E, 0xA8, 0x2F, 0x31, 0x62, 0xD5, 0x83, 0x98, 0xBD, 0x41, +0x34, 0x09, 0x4F, 0xBE, 0x3A, 0xB5, 0xA3, 0x9C, 0xAA, 0x04, 0xD9, 0xD8, 0x39, 0x2A, 0x46, 0x53, +0x43, 0x03, 0x3B, 0x7F, 0xFB, 0x85, 0x13, 0xC6, 0x84, 0x4F, 0x94, 0x9A, 0x5A, 0x96, 0xB0, 0xC4, +0xAD, 0x39, 0xCD, 0x3E, 0xB2, 0x8D, 0x5A, 0xFC, 0xB4, 0xE5, 0xC3, 0x54, 0xE2, 0x6A, 0x5B, 0x8C, +0xB9, 0x99, 0xE4, 0x24, 0x3C, 0xB9, 0xE9, 0x7E, 0xB8, 0xF8, 0x8A, 0x37, 0x79, 0xBB, 0x6A, 0x2D, +0x6F, 0xF6, 0x21, 0x7D, 0xC6, 0x7A, 0x47, 0x02, 0xD4, 0x9E, 0x49, 0x30, 0x64, 0xBD, 0xE7, 0x15, +0xBD, 0x68, 0xDD, 0xC7, 0x29, 0xB3, 0x9A, 0x6B, 0x3C, 0x5B, 0x9A, 0x15, 0x63, 0x55, 0x55, 0x85, +0x58, 0x34, 0x06, 0xBE, 0xDA, 0xC4, 0x9C, 0x52, 0xC1, 0x80, 0x64, 0x2E, 0x07, 0x29, 0xCC, 0xB7, +0x12, 0xC3, 0x16, 0xB4, 0x85, 0x30, 0x03, 0xA2, 0x40, 0xCC, 0x67, 0xC0, 0x7B, 0xDE, 0xFD, 0x76, +0xB8, 0xF3, 0xC7, 0x3F, 0x42, 0x4C, 0x9C, 0x06, 0x55, 0x5B, 0x4C, 0x1A, 0xC8, 0xDB, 0x65, 0xF9, +0xDE, 0x7A, 0x4D, 0x30, 0xFD, 0x74, 0x3C, 0x08, 0x91, 0xC6, 0xC2, 0x03, 0x4F, 0xED, 0x94, 0x32, +0xD4, 0x0C, 0x1E, 0x86, 0x85, 0xF2, 0x09, 0x0F, 0x9F, 0x9C, 0x09, 0x69, 0x26, 0xFF, 0xC4, 0xF1, +0x84, 0x43, 0xAD, 0xA5, 0xA2, 0x9E, 0x1A, 0xAC, 0x49, 0xB2, 0xC1, 0xEA, 0x7B, 0xBD, 0xB6, 0x4E, +0xEA, 0xFA, 0x7B, 0xEC, 0xD7, 0xF7, 0xB1, 0x66, 0xEC, 0x40, 0x38, 0xCE, 0xFE, 0x5E, 0x07, 0x2B, +0xD8, 0xA4, 0x1B, 0xDE, 0x5B, 0x17, 0x63, 0x3B, 0xC7, 0x9B, 0x98, 0x25, 0xCE, 0xA1, 0xDC, 0xAA, +0x66, 0xF3, 0xE1, 0x53, 0x9F, 0xB1, 0x7E, 0xD5, 0x07, 0xF1, 0x68, 0xC4, 0xAD, 0x4D, 0xC9, 0x61, +0x69, 0x5B, 0x3A, 0xB5, 0x74, 0x7A, 0x29, 0xBE, 0xCB, 0x95, 0xBC, 0x3E, 0x98, 0xC5, 0x0B, 0x3B, +0xA1, 0x75, 0x5E, 0x0B, 0xEC, 0xDF, 0xFE, 0x28, 0x24, 0x82, 0x1C, 0xF8, 0x38, 0x83, 0x8D, 0x99, +0x25, 0x20, 0xA2, 0x5E, 0x0F, 0x4C, 0x44, 0x3D, 0xB3, 0x30, 0x25, 0x25, 0xC7, 0x3D, 0x61, 0x9E, +0x97, 0x34, 0x25, 0xD4, 0xF0, 0x45, 0xD5, 0x1F, 0xFF, 0x1C, 0xBC, 0x02, 0x14, 0x4A, 0x74, 0x3C, +0xE5, 0x78, 0xDE, 0x13, 0x8B, 0x65, 0x89, 0xC8, 0xB1, 0x63, 0x35, 0x5F, 0xF5, 0x85, 0xC3, 0x34, +0xB4, 0x84, 0xD2, 0x8E, 0xBA, 0xB7, 0xA7, 0x27, 0x9B, 0x2B, 0xC0, 0xA3, 0x0F, 0xFD, 0x12, 0xDE, +0x71, 0xCB, 0xC7, 0xD9, 0x30, 0x13, 0x9E, 0x0E, 0x64, 0xAD, 0xE7, 0x88, 0x40, 0x8B, 0x3A, 0x72, +0xC6, 0x86, 0x98, 0x72, 0x53, 0x8B, 0x11, 0x2D, 0xC1, 0xAF, 0xBE, 0x6C, 0x34, 0x69, 0x26, 0x34, +0x2B, 0xC6, 0xF2, 0xB6, 0x5B, 0xF1, 0xF9, 0x54, 0x36, 0x4D, 0x9F, 0x35, 0xFC, 0xF2, 0xAC, 0xF3, +0x63, 0x2A, 0xA5, 0x45, 0x23, 0xE4, 0x69, 0x10, 0xC8, 0x35, 0x37, 0xBC, 0x13, 0xEE, 0xBE, 0xE3, +0x36, 0x76, 0xD2, 0xE9, 0x02, 0x49, 0xB5, 0xE9, 0xDC, 0x50, 0xCF, 0xE2, 0xD8, 0x96, 0x57, 0x2C, +0x06, 0x5C, 0xAD, 0x06, 0xCA, 0x9D, 0xB2, 0x75, 0x8C, 0xB5, 0xA2, 0x30, 0x1C, 0x8C, 0x75, 0xDC, +0x31, 0xFE, 0xC1, 0xAB, 0x66, 0x95, 0xE1, 0x78, 0x29, 0x32, 0x9A, 0xE3, 0x03, 0x16, 0xC8, 0xFB, +0x49, 0xAF, 0x8A, 0x82, 0x17, 0xEE, 0x50, 0x25, 0x84, 0xCD, 0x49, 0x53, 0xAB, 0xD7, 0xDC, 0x5A, +0x58, 0xC3, 0x8A, 0xBB, 0x6B, 0xA8, 0xC9, 0xA6, 0x07, 0xEF, 0x85, 0x78, 0x43, 0x13, 0x2C, 0x59, +0xB1, 0x8A, 0x8D, 0x6A, 0x98, 0x02, 0x53, 0xA6, 0x95, 0xBE, 0xD2, 0x45, 0x61, 0x93, 0x61, 0xF0, +0xC0, 0xA2, 0x13, 0x35, 0xA7, 0xF6, 0xD5, 0x7B, 0xF7, 0x59, 0x90, 0x3F, 0x16, 0x3A, 0xC2, 0xB6, +0x5B, 0x08, 0x7E, 0xD6, 0x3E, 0x28, 0x11, 0xFC, 0x26, 0x78, 0xC8, 0x8B, 0xA7, 0xD5, 0x1C, 0x88, +0xC5, 0x9B, 0x60, 0x29, 0x7E, 0xF1, 0x07, 0x1F, 0xF8, 0x0D, 0x64, 0x0B, 0x55, 0x28, 0x55, 0x1D, +0x96, 0x68, 0x27, 0x26, 0xB3, 0xD6, 0x06, 0xB6, 0xF9, 0xD1, 0x66, 0x8D, 0xD0, 0x2C, 0x7F, 0x4B, +0x2D, 0xF9, 0x9C, 0x73, 0x7C, 0x03, 0x33, 0x27, 0xE8, 0x3E, 0x39, 0xBE, 0x25, 0x76, 0xD6, 0x55, +0x7B, 0x68, 0xCC, 0x3A, 0xBC, 0x02, 0x44, 0xE0, 0x0B, 0x2F, 0xC6, 0x3E, 0xAE, 0x55, 0xAA, 0x29, +0xAA, 0xA8, 0x64, 0x2B, 0x48, 0x6B, 0xBD, 0x06, 0xF4, 0x29, 0x6C, 0x56, 0x62, 0x51, 0xDF, 0x0B, +0x0F, 0x0C, 0x7A, 0xA4, 0xB5, 0x68, 0x1A, 0xE6, 0x8E, 0x1F, 0xFC, 0xC5, 0x4F, 0xE1, 0x4D, 0x37, +0xBD, 0x6B, 0xCA, 0x23, 0x26, 0xE2, 0x38, 0x6E, 0xAA, 0xC0, 0x8E, 0xAF, 0x6D, 0xB6, 0x64, 0xA6, +0x87, 0x93, 0x0B, 0xB1, 0x70, 0x43, 0x19, 0xE6, 0x90, 0x66, 0xED, 0x87, 0x7B, 0x6B, 0x3F, 0x79, +0x28, 0x13, 0xEE, 0xC6, 0xB9, 0x6C, 0xAA, 0x28, 0x5D, 0x14, 0x82, 0x17, 0x09, 0xD4, 0xBF, 0x9E, +0x1A, 0x97, 0x7F, 0xF9, 0xCB, 0xA9, 0xC7, 0xD3, 0xBA, 0x50, 0x52, 0xD5, 0x56, 0x6D, 0xD0, 0xB2, +0x57, 0x43, 0xE4, 0x79, 0xC6, 0xFC, 0xF3, 0x00, 0x09, 0x96, 0x60, 0x17, 0xA4, 0x1D, 0xB1, 0xF6, +0x15, 0xDF, 0x7A, 0x21, 0xE4, 0xEB, 0x64, 0xD2, 0xF8, 0xC8, 0x33, 0x9B, 0x4C, 0x21, 0xFC, 0x99, +0x6A, 0xB5, 0x3A, 0x40, 0xE6, 0x41, 0x12, 0xF1, 0x26, 0xD8, 0x35, 0xD6, 0x02, 0x53, 0xA7, 0x8E, +0x2B, 0xB0, 0xA2, 0x76, 0xBF, 0x72, 0x9C, 0x81, 0x3B, 0x9F, 0xDA, 0xC4, 0xCE, 0xC0, 0xB2, 0x55, +0xAB, 0x59, 0xD8, 0x43, 0xC9, 0x03, 0xA9, 0x06, 0x56, 0xD4, 0xE3, 0xEF, 0x3A, 0x61, 0xD6, 0xCB, +0x90, 0xE2, 0x9A, 0x09, 0x73, 0x48, 0x2F, 0x83, 0xB1, 0x62, 0xED, 0x4B, 0x18, 0x60, 0x38, 0x46, +0x4D, 0x55, 0x79, 0x33, 0x1C, 0xA2, 0xF1, 0x46, 0x58, 0xB6, 0x72, 0x15, 0x6C, 0x7D, 0xFA, 0xC9, +0xA9, 0x8A, 0x38, 0x4F, 0xCD, 0xD6, 0x9F, 0xEB, 0xA9, 0x37, 0xDB, 0xAD, 0x87, 0x3D, 0xFC, 0x94, +0x57, 0xE9, 0x3D, 0xC6, 0x41, 0x15, 0x1F, 0xD9, 0x3E, 0xFF, 0xAC, 0x33, 0x9F, 0x85, 0x39, 0x20, +0x02, 0x3E, 0x6C, 0x87, 0xDF, 0x41, 0x95, 0x1C, 0x64, 0x0A, 0xBC, 0xD2, 0xD4, 0xDA, 0xE8, 0x03, +0x56, 0xB0, 0xCD, 0x31, 0x69, 0xA5, 0xE2, 0x71, 0x81, 0xF3, 0xD6, 0x9B, 0x52, 0xCD, 0xD5, 0xAF, +0xEE, 0xBE, 0x1D, 0xDE, 0xFB, 0xE1, 0x4F, 0xB0, 0xEE, 0x77, 0x42, 0xCD, 0xEA, 0x63, 0xE9, 0xBD, +0xE2, 0x80, 0xE3, 0x54, 0x36, 0x8D, 0xFC, 0x4C, 0xD7, 0x84, 0xBE, 0x5C, 0x9A, 0x15, 0x63, 0x8B, +0xC5, 0x0A, 0x2B, 0x5C, 0x46, 0x2F, 0x1E, 0xF4, 0x52, 0x91, 0xA5, 0xAE, 0x0C, 0xD3, 0x9B, 0xAF, +0x44, 0xA7, 0x9E, 0xA4, 0xF5, 0xD1, 0x47, 0x1E, 0x86, 0x89, 0x89, 0xDF, 0x4D, 0xC0, 0xB0, 0xBE, +0x18, 0x81, 0xAB, 0x35, 0x3F, 0xBB, 0x53, 0xA5, 0xA5, 0x44, 0x9E, 0xC4, 0x92, 0x6D, 0x55, 0x20, +0xD8, 0xB0, 0x68, 0xD3, 0x5C, 0x5D, 0x0C, 0x02, 0x3E, 0x84, 0x50, 0xC7, 0xC3, 0x95, 0x4A, 0x89, +0xD9, 0x51, 0xCA, 0x19, 0xB3, 0xAC, 0x0C, 0x55, 0x4B, 0x50, 0x37, 0x9C, 0x2C, 0x78, 0xBE, 0x04, +0x92, 0x4F, 0xAA, 0x6F, 0xAD, 0xE4, 0x60, 0xA0, 0xE7, 0x00, 0xE4, 0x32, 0x49, 0xB8, 0xF2, 0xDA, +0xEB, 0x19, 0xFA, 0x44, 0x4C, 0xA5, 0x85, 0x10, 0x52, 0x6D, 0x14, 0x83, 0x58, 0xEB, 0x60, 0xF0, +0x49, 0xC1, 0x34, 0xCC, 0x31, 0xCD, 0x8A, 0xB1, 0x87, 0x06, 0xCA, 0x09, 0xFA, 0x69, 0x90, 0x93, +0x6B, 0x7A, 0x55, 0x0E, 0x64, 0x63, 0xC9, 0x13, 0x8E, 0x27, 0x1A, 0xE1, 0x92, 0xCB, 0xAF, 0x84, +0x47, 0x7E, 0xF3, 0x10, 0xB3, 0xB5, 0x14, 0xC0, 0x18, 0x56, 0x3D, 0x46, 0xF4, 0x6C, 0x0F, 0x49, +0xB7, 0x5B, 0xEB, 0x5A, 0xE3, 0x5F, 0xA0, 0xAA, 0x9F, 0x2A, 0xF5, 0xC3, 0x91, 0xA6, 0x3E, 0x98, +0x43, 0x8A, 0xB5, 0xAC, 0x7E, 0x48, 0xC0, 0x10, 0xCB, 0x66, 0x73, 0x93, 0x3D, 0xD3, 0x22, 0x73, +0x32, 0x1B, 0x93, 0x40, 0x8C, 0x95, 0xC5, 0xFA, 0x0E, 0xF7, 0x3A, 0x2A, 0xE6, 0xC1, 0x89, 0xD4, +0x1D, 0x78, 0xE3, 0x7B, 0x6E, 0x81, 0x70, 0x28, 0xC0, 0xFE, 0x1D, 0x0A, 0xF8, 0xD8, 0x74, 0x39, +0x4A, 0xD4, 0xD3, 0x84, 0x79, 0x6A, 0xD7, 0xC0, 0x54, 0xE3, 0x9C, 0x86, 0x3A, 0x44, 0xB3, 0x62, +0xEC, 0xFC, 0xA8, 0xD5, 0x3D, 0x36, 0x79, 0x1C, 0xDD, 0xE3, 0xF9, 0xE3, 0xC8, 0xCB, 0x5B, 0x98, +0xB4, 0x3E, 0x02, 0xC9, 0x64, 0x92, 0xA9, 0xE5, 0xFA, 0x10, 0x4A, 0x9E, 0x3B, 0xEE, 0x35, 0x13, +0x09, 0xB5, 0x44, 0xBA, 0x5B, 0x6B, 0xF4, 0xA5, 0x70, 0x81, 0x55, 0x25, 0xA2, 0xB7, 0xCC, 0x09, +0xE2, 0x53, 0x4D, 0xAB, 0x16, 0xBC, 0x22, 0x9E, 0xF0, 0xEF, 0xA3, 0x83, 0xCF, 0x7C, 0xE3, 0x28, +0xA7, 0x36, 0xDD, 0x47, 0x7B, 0x6F, 0xE9, 0x73, 0xF9, 0x08, 0x37, 0x56, 0x5C, 0x50, 0xF0, 0x1F, +0x34, 0x9E, 0x80, 0x32, 0x51, 0xFE, 0x40, 0x10, 0xB3, 0x52, 0x0A, 0xFE, 0x2E, 0xB2, 0xBA, 0x27, +0x1A, 0x40, 0x7D, 0xE4, 0xD0, 0x01, 0xE8, 0x39, 0xB4, 0x1F, 0x3A, 0xBA, 0x16, 0x30, 0x70, 0x83, +0x32, 0x5B, 0x6C, 0x1F, 0x2D, 0x78, 0x09, 0x79, 0xB2, 0xCD, 0x11, 0x41, 0x9B, 0x3F, 0xD3, 0x2D, +0x1C, 0x2F, 0x97, 0x66, 0xF5, 0x66, 0x0E, 0x2F, 0xFA, 0xCB, 0x65, 0x0F, 0xD3, 0x76, 0xC8, 0xBE, +0x4E, 0x4B, 0x9E, 0x76, 0x74, 0x77, 0xC3, 0x77, 0xBF, 0xF1, 0x4D, 0xA8, 0x4F, 0x2E, 0x25, 0x4E, +0x92, 0x9A, 0x3A, 0xDE, 0xA0, 0xEC, 0x4E, 0xD5, 0x0F, 0xB3, 0xB9, 0x81, 0x53, 0xAD, 0x90, 0x0E, +0xC3, 0xE6, 0x44, 0xD1, 0x97, 0x54, 0x7D, 0xD1, 0x9F, 0xCC, 0xB5, 0x4D, 0x22, 0x0A, 0xC4, 0xBA, +0x1E, 0x96, 0x8A, 0xBB, 0xDF, 0x44, 0x9D, 0x0D, 0x94, 0x73, 0x65, 0xAA, 0x54, 0xF4, 0xB6, 0x79, +0x90, 0xE3, 0x47, 0x13, 0xDE, 0xA8, 0x46, 0x8B, 0x46, 0xF9, 0xD1, 0xD4, 0x38, 0xD2, 0x44, 0xD4, +0xEE, 0xB9, 0xFF, 0xC0, 0x41, 0x90, 0xC2, 0xCD, 0xD0, 0x3B, 0x92, 0x63, 0x31, 0x70, 0xBD, 0xFD, +0x93, 0xFA, 0x83, 0x48, 0x35, 0xEB, 0x46, 0xB1, 0x3B, 0xE5, 0x4C, 0xD2, 0x76, 0xC5, 0x21, 0x98, +0x23, 0x9A, 0x31, 0x63, 0x57, 0x6C, 0xF8, 0x8B, 0x96, 0x62, 0xBE, 0xC4, 0x46, 0xAD, 0xBA, 0x16, +0xCD, 0xEF, 0x2F, 0x7A, 0x89, 0x65, 0xA8, 0xCD, 0x30, 0x2C, 0x96, 0x9E, 0xD3, 0xB7, 0xCA, 0x98, +0x0A, 0x6E, 0xAD, 0xE8, 0xCB, 0x7B, 0x0D, 0x8A, 0xFD, 0x1C, 0xF7, 0xF8, 0x68, 0x01, 0xEA, 0x4F, +0x71, 0x58, 0x52, 0x9A, 0x37, 0xFD, 0xD1, 0x79, 0x5F, 0x89, 0x36, 0x2F, 0xB9, 0x33, 0x9D, 0x9C, +0xF1, 0x3A, 0xB7, 0x97, 0x4D, 0xAA, 0xDA, 0xBC, 0xD3, 0xAD, 0x48, 0xDE, 0x2A, 0x17, 0x9F, 0xC8, +0xBA, 0xF1, 0xC6, 0x4B, 0x25, 0x36, 0xBD, 0x2D, 0x87, 0x4C, 0xF5, 0x86, 0xA0, 0x78, 0x8F, 0x65, +0x43, 0x3F, 0x6A, 0x00, 0xC4, 0xAE, 0x3D, 0x87, 0xE0, 0xCC, 0x33, 0xCF, 0xA4, 0x25, 0xBE, 0x9E, +0x06, 0x22, 0xE4, 0x86, 0x96, 0x1A, 0x63, 0x48, 0x48, 0xB3, 0x37, 0x30, 0x43, 0x79, 0x6E, 0xC0, +0x7D, 0xE6, 0x26, 0x7C, 0xE8, 0x97, 0x61, 0x8E, 0x68, 0xC6, 0x8C, 0x7D, 0xCF, 0x9B, 0x2F, 0x5F, +0xA9, 0x15, 0xD3, 0xB2, 0xA1, 0x97, 0x11, 0x7E, 0xF3, 0x56, 0xAB, 0x78, 0x93, 0xD8, 0xBD, 0xD1, +0xED, 0x9E, 0xFB, 0xE3, 0xFD, 0xBF, 0xED, 0x78, 0xD3, 0xD4, 0x3C, 0xE6, 0xD5, 0xD7, 0x6A, 0xDB, +0x53, 0x52, 0xEB, 0x4C, 0x15, 0xAB, 0x51, 0x01, 0x98, 0x49, 0xC9, 0x80, 0x23, 0x01, 0x7F, 0xCB, +0x2F, 0x8F, 0xDD, 0xB4, 0x36, 0x05, 0x7B, 0x4E, 0xBC, 0xEA, 0xFD, 0x64, 0x11, 0x27, 0xFB, 0xD3, +0x0C, 0x64, 0xC0, 0xCF, 0x57, 0xA9, 0x98, 0x6C, 0x6C, 0x4F, 0xBE, 0x5C, 0x66, 0xC5, 0x78, 0x8E, +0xEB, 0xED, 0x2B, 0x50, 0x15, 0x85, 0xB5, 0x70, 0x78, 0x5D, 0x7B, 0x1C, 0xEB, 0xE1, 0xED, 0xEB, +0x1F, 0x81, 0x0F, 0x7D, 0xE4, 0x56, 0xFC, 0x9B, 0xC2, 0x0E, 0x2F, 0x2D, 0x6F, 0x72, 0xCC, 0x0A, +0x0B, 0xFD, 0x44, 0xC4, 0xC0, 0x75, 0xA3, 0xD2, 0xC2, 0x15, 0x52, 0x6B, 0x61, 0x0E, 0x69, 0xC6, +0x8C, 0x6D, 0x8C, 0x06, 0xA2, 0x13, 0xF9, 0x24, 0xAB, 0xB3, 0x15, 0x6A, 0x53, 0x5B, 0xF4, 0xDA, +0x3C, 0x7E, 0x1A, 0x01, 0x90, 0x9C, 0x98, 0x40, 0x54, 0x26, 0xE1, 0x0D, 0x07, 0x61, 0x2A, 0xD7, +0x9D, 0x0A, 0x75, 0xC8, 0x13, 0x76, 0x6B, 0xC0, 0xBF, 0x3D, 0x6D, 0xBC, 0x80, 0x83, 0x92, 0x2F, +0xC8, 0x81, 0x5D, 0x91, 0xA6, 0xA5, 0xFF, 0x34, 0xD2, 0xB7, 0x69, 0x37, 0x6C, 0xDC, 0x04, 0xAF, +0x0A, 0xA9, 0x72, 0x91, 0xB4, 0x49, 0x36, 0x95, 0x83, 0x62, 0x89, 0x70, 0x6F, 0x8B, 0x39, 0x72, +0x8A, 0x3F, 0x8A, 0x0E, 0x94, 0x1F, 0x68, 0xC6, 0x9E, 0xC8, 0xDB, 0x6C, 0xF4, 0xA0, 0xD7, 0x31, +0xE8, 0x82, 0xDF, 0x8F, 0x79, 0x5B, 0x0C, 0x93, 0xE6, 0xB5, 0xB6, 0xC0, 0x79, 0xEB, 0x56, 0x41, +0xD5, 0xD1, 0xD8, 0x7E, 0x3D, 0x07, 0xE2, 0x50, 0xAC, 0xF2, 0xD0, 0x7B, 0xE4, 0x09, 0xC4, 0x95, +0xE7, 0xED, 0x8B, 0xB5, 0x2C, 0xFF, 0x69, 0x31, 0x77, 0xD2, 0xF3, 0x18, 0xBF, 0x97, 0x66, 0xEC, +0x3C, 0x95, 0x73, 0xE9, 0x10, 0x65, 0x67, 0x88, 0xEA, 0x6D, 0x96, 0x56, 0x4D, 0x1A, 0xC1, 0xAD, +0xC5, 0xA7, 0xB6, 0xD7, 0x7E, 0xEF, 0xD6, 0x93, 0xD6, 0xAC, 0x9E, 0xB8, 0x36, 0x41, 0x0D, 0xBC, +0xA1, 0xCE, 0x9E, 0x4C, 0x7B, 0x48, 0x0F, 0x1B, 0x27, 0xE0, 0x4F, 0xDC, 0xBF, 0xE2, 0xB2, 0xAB, +0x67, 0x36, 0xF8, 0xFE, 0x24, 0x53, 0xCC, 0x1F, 0xCF, 0xE6, 0x4A, 0x55, 0x8D, 0x36, 0x4D, 0x93, +0x59, 0xA1, 0x62, 0x77, 0xC5, 0x1F, 0x63, 0x6B, 0x4E, 0x65, 0xCC, 0x21, 0x53, 0x29, 0x14, 0x79, +0xBA, 0x64, 0x37, 0x43, 0x6C, 0xEA, 0x8B, 0xC8, 0x46, 0x07, 0x71, 0x56, 0x15, 0x33, 0x5E, 0x83, +0xD0, 0x31, 0xAF, 0x11, 0x9F, 0x63, 0x62, 0x5C, 0x8B, 0xB1, 0x7C, 0x48, 0x81, 0x48, 0xA2, 0x93, +0x65, 0xB2, 0x38, 0x4E, 0x2D, 0x04, 0x82, 0x0D, 0x73, 0x66, 0x5F, 0x89, 0x66, 0x2C, 0xB1, 0x4D, +0xD1, 0xE0, 0xF9, 0xBD, 0x3D, 0x07, 0x5D, 0xC7, 0x2C, 0xA1, 0x85, 0xA9, 0xE1, 0xDA, 0x0C, 0xE8, +0xB5, 0x6B, 0x75, 0x40, 0xC7, 0xC3, 0x96, 0xE9, 0x08, 0x0C, 0x1B, 0x8E, 0x65, 0x3B, 0x53, 0xE5, +0xA4, 0xEC, 0x7E, 0xAA, 0x33, 0xA2, 0xCD, 0x58, 0xB1, 0xCE, 0x83, 0x8D, 0x2B, 0x2E, 0xFA, 0xF2, +0xAB, 0xE1, 0x30, 0x4D, 0x27, 0x5A, 0xE7, 0x19, 0x8A, 0x75, 0x3F, 0x83, 0x38, 0xF6, 0x06, 0x62, +0x66, 0x28, 0xD2, 0x88, 0x0C, 0x0C, 0x81, 0xE2, 0xB3, 0x59, 0x5D, 0x93, 0x8E, 0xF6, 0x52, 0x16, +0x68, 0xA6, 0x05, 0x0D, 0x27, 0x53, 0x40, 0x43, 0x07, 0x92, 0xD6, 0xBB, 0x09, 0xBC, 0x05, 0xFD, +0x03, 0xBD, 0x90, 0x68, 0x6D, 0x80, 0x83, 0x47, 0xF7, 0xB1, 0x10, 0xAE, 0x54, 0x19, 0x84, 0x7C, +0x35, 0x8F, 0x07, 0x22, 0xCC, 0x2A, 0x53, 0x1D, 0x6B, 0x76, 0x7B, 0x66, 0x67, 0x4B, 0x33, 0x96, +0xD8, 0x95, 0xEB, 0x16, 0xCF, 0xAB, 0x68, 0x15, 0xFC, 0x9E, 0x84, 0xF4, 0xD5, 0x17, 0x16, 0x7A, +0x52, 0x3A, 0x9D, 0x91, 0x53, 0x6A, 0xB6, 0xB6, 0xF0, 0xEF, 0xB8, 0x4D, 0x3D, 0x4E, 0x5E, 0xD7, +0x1C, 0x0F, 0xE1, 0xC4, 0xE2, 0xCF, 0xF6, 0x3C, 0xFE, 0xDD, 0x24, 0x9C, 0x02, 0x24, 0x48, 0xEA, +0x66, 0xCC, 0x2A, 0x19, 0x3E, 0xC5, 0x8F, 0x61, 0x57, 0x10, 0x5A, 0x13, 0x51, 0x88, 0xC8, 0xD4, +0x71, 0xA7, 0x83, 0xEA, 0x73, 0xD9, 0xB8, 0x05, 0x9A, 0xE5, 0x2F, 0x60, 0x96, 0x4A, 0x11, 0x8F, +0xCF, 0x5D, 0x1E, 0x1A, 0xE8, 0x87, 0xAE, 0xEE, 0x2E, 0xB6, 0xDE, 0x94, 0x50, 0x2A, 0x9A, 0x29, +0x41, 0xC3, 0xCA, 0x68, 0xC7, 0x80, 0x24, 0x71, 0x16, 0x2F, 0xCA, 0xA7, 0x36, 0xF2, 0x34, 0x78, +0x6C, 0xBC, 0x5C, 0xEF, 0x2C, 0x27, 0xD2, 0xEB, 0xF6, 0x93, 0x54, 0x2A, 0x4A, 0xED, 0xE4, 0xF8, +0x18, 0x34, 0xB7, 0xB4, 0xC0, 0xF1, 0x69, 0x2E, 0xB5, 0xF0, 0x66, 0x2A, 0xB5, 0xE5, 0xD9, 0x65, +0xD7, 0xF5, 0x54, 0x70, 0x20, 0xDA, 0xFE, 0xF3, 0xA1, 0xA3, 0xBF, 0xBA, 0x0D, 0x4E, 0x11, 0x9A, +0xB7, 0xE2, 0xE6, 0x2F, 0xC4, 0xE6, 0xAD, 0xB9, 0x45, 0xF2, 0x85, 0xB2, 0x3C, 0xED, 0xAB, 0xE2, +0x7C, 0xB0, 0xA0, 0x7B, 0xB1, 0x4B, 0xFB, 0xDE, 0x69, 0x2D, 0x38, 0x9B, 0x31, 0x05, 0x9E, 0xE7, +0x4B, 0xE6, 0xC6, 0x1B, 0xCE, 0xE9, 0x40, 0x7F, 0x7F, 0x1F, 0x74, 0xCE, 0xEF, 0x66, 0x99, 0x1E, +0x41, 0x90, 0x3D, 0x47, 0xD2, 0xAE, 0x30, 0xA6, 0x57, 0xCA, 0x99, 0x92, 0xED, 0x0A, 0x27, 0xAD, +0x66, 0xF8, 0x44, 0x68, 0x46, 0x8C, 0x7D, 0xF7, 0x5F, 0xFF, 0x38, 0x56, 0x35, 0xED, 0x0B, 0xCA, +0xE5, 0xB2, 0x3B, 0x7D, 0x0C, 0x0F, 0x75, 0x9E, 0x39, 0x35, 0xC6, 0x4D, 0x4F, 0x5D, 0x31, 0x86, +0x4F, 0x15, 0x87, 0xB9, 0x53, 0x45, 0xE0, 0x44, 0xD4, 0x33, 0x8B, 0x8E, 0xC9, 0x08, 0xFA, 0x22, +0x5F, 0x84, 0x53, 0x88, 0x0E, 0x6C, 0xDE, 0x58, 0x5A, 0x3A, 0xFF, 0x8A, 0x9F, 0xFA, 0x03, 0xD1, +0x5F, 0xD1, 0xBF, 0xD3, 0xB9, 0x3C, 0x24, 0x35, 0x91, 0x8B, 0x35, 0xB5, 0x81, 0x53, 0xAD, 0x1D, +0x54, 0xD4, 0x32, 0x91, 0x70, 0x08, 0xDA, 0x1A, 0x5A, 0xA1, 0xB5, 0xB1, 0x01, 0x9A, 0x1B, 0xE3, +0x60, 0x19, 0x15, 0x98, 0x8F, 0x20, 0x45, 0x5B, 0x7B, 0x2B, 0x44, 0x13, 0x2D, 0x78, 0x4D, 0xBC, +0xDE, 0x1E, 0x17, 0x54, 0xC2, 0x26, 0x4F, 0x78, 0x3E, 0xD3, 0xC9, 0xA2, 0x19, 0xD9, 0xD8, 0x25, +0x6D, 0x8D, 0x6A, 0x4B, 0x8B, 0xDA, 0x41, 0x98, 0x2A, 0x4D, 0x5D, 0x31, 0xEB, 0x33, 0x21, 0x6A, +0xDE, 0x2E, 0xEB, 0xBF, 0x71, 0xDC, 0x69, 0xB9, 0x55, 0x4F, 0x45, 0x3B, 0xB5, 0x2D, 0x49, 0x7C, +0x0D, 0xFC, 0x27, 0x90, 0x1D, 0x23, 0x87, 0x8C, 0xCF, 0xDF, 0x70, 0x5B, 0x4B, 0xCB, 0xEA, 0x6D, +0x99, 0xCC, 0x21, 0x38, 0x95, 0x88, 0x3A, 0xC7, 0x17, 0x2D, 0xB9, 0xAC, 0x9F, 0x7E, 0xD7, 0xAA, +0x25, 0x38, 0x70, 0x60, 0x1F, 0x2C, 0xED, 0x6E, 0x85, 0x45, 0x4B, 0x3B, 0x31, 0x02, 0x70, 0x30, +0xC9, 0xD1, 0x02, 0x11, 0x1F, 0x87, 0x21, 0x91, 0x57, 0xF0, 0x5E, 0xD6, 0xF2, 0x30, 0x3C, 0x32, +0x09, 0x25, 0x8C, 0x79, 0x53, 0x59, 0x13, 0x86, 0x47, 0x47, 0x68, 0xD2, 0x13, 0xF3, 0xFE, 0xA9, +0x49, 0xBA, 0x6A, 0x98, 0xA2, 0x6B, 0xE9, 0x73, 0x6A, 0x63, 0x67, 0xC4, 0xD8, 0xF2, 0x44, 0x46, +0x4D, 0x26, 0x02, 0x0C, 0xE8, 0x27, 0x95, 0xE4, 0xD4, 0x1A, 0x58, 0xBC, 0xE5, 0xF5, 0xC7, 0xC3, +0x17, 0xFA, 0xCF, 0x2B, 0xF2, 0xAA, 0x4D, 0x4F, 0x63, 0x2B, 0xCD, 0xAC, 0xFA, 0x3C, 0x4F, 0xF0, +0xCE, 0x03, 0x7F, 0x2C, 0x14, 0x5F, 0x72, 0xDF, 0xC9, 0x28, 0xFE, 0x7E, 0x25, 0x08, 0x63, 0x5A, +0x0C, 0x60, 0x8B, 0xA8, 0x69, 0x68, 0x90, 0x17, 0xED, 0x04, 0x48, 0x42, 0x7C, 0xC5, 0x12, 0x10, +0x10, 0x4B, 0xCE, 0xE7, 0x4D, 0x18, 0x2B, 0xA5, 0xD9, 0xFC, 0x47, 0x9A, 0xE6, 0x46, 0x5D, 0x72, +0xB4, 0x7B, 0xE0, 0x58, 0x4F, 0x1F, 0x34, 0xB7, 0x76, 0x60, 0x5C, 0x3B, 0x56, 0x2B, 0xAF, 0x71, +0xBC, 0xEE, 0x00, 0xD7, 0x0A, 0x1B, 0x95, 0x2C, 0x6D, 0xE3, 0xD8, 0x0B, 0x73, 0x44, 0x33, 0x62, +0xEC, 0xA2, 0x05, 0x6D, 0x0D, 0xBD, 0x18, 0x8C, 0x53, 0x79, 0x0B, 0x98, 0x59, 0xE4, 0x8D, 0xC5, +0xB2, 0x3A, 0x8E, 0xE5, 0x4C, 0x0D, 0xDA, 0x1A, 0x1B, 0x1B, 0x83, 0x35, 0xEB, 0xD6, 0x4D, 0xE5, +0x5D, 0x89, 0xA8, 0x52, 0x82, 0xF0, 0x60, 0x36, 0xC0, 0x97, 0x80, 0x0B, 0x0C, 0x0F, 0x94, 0x40, +0xF3, 0xEE, 0xE1, 0x9E, 0x07, 0x1F, 0x85, 0x53, 0x94, 0x4C, 0x9B, 0xEB, 0xA1, 0x9F, 0xAE, 0xEB, +0x8D, 0x4A, 0xC8, 0xE4, 0x8A, 0xF0, 0xF8, 0xB3, 0x7B, 0x30, 0x29, 0x80, 0x5A, 0xC7, 0x44, 0x8D, +0xC5, 0x86, 0x54, 0x7B, 0x43, 0xB4, 0x31, 0x44, 0xC0, 0x1B, 0xCF, 0xB2, 0x59, 0x6B, 0xD7, 0xAE, +0x86, 0x67, 0x9F, 0xD9, 0xC6, 0xE6, 0x27, 0xD3, 0x9C, 0x0A, 0x52, 0xC5, 0x88, 0x3F, 0x37, 0x14, +0x0A, 0xC3, 0xB4, 0x5B, 0x76, 0x46, 0xEB, 0xBE, 0x5F, 0x0E, 0xCD, 0xC8, 0xC6, 0x86, 0x83, 0xCA, +0xEF, 0xEC, 0x80, 0x31, 0x75, 0x8B, 0x15, 0x72, 0x39, 0xF6, 0x71, 0xDF, 0x60, 0x5A, 0xC4, 0xC3, +0xEC, 0xEA, 0x74, 0x62, 0x0D, 0x4B, 0xF8, 0xB7, 0x78, 0xDB, 0x99, 0xA7, 0x8C, 0xC3, 0xF4, 0x42, +0x14, 0x8C, 0xC4, 0xF6, 0x20, 0x22, 0x56, 0x05, 0xD7, 0x43, 0x9D, 0xF8, 0x1A, 0x7C, 0xA8, 0x48, +0x0E, 0xAB, 0xA2, 0xB0, 0x1C, 0xC9, 0xEB, 0x0E, 0x34, 0x1C, 0xD6, 0x45, 0x40, 0xE7, 0x78, 0xF7, +0x9E, 0x7D, 0x90, 0x40, 0x9B, 0x4B, 0x4C, 0x35, 0xD9, 0xAD, 0x8A, 0x12, 0xAB, 0x53, 0xEE, 0x3A, +0x61, 0x96, 0xB3, 0x2B, 0xE6, 0x32, 0x11, 0x30, 0x23, 0xC6, 0xF2, 0x55, 0xBD, 0xA1, 0x5A, 0x2D, +0xBA, 0xBC, 0x5B, 0x9D, 0x02, 0x27, 0x88, 0xEA, 0xA5, 0xA2, 0xD3, 0x9D, 0xA6, 0x3A, 0x39, 0xEE, +0x73, 0x99, 0x4B, 0x68, 0x8E, 0x3F, 0xDC, 0x74, 0x8C, 0x6B, 0x5A, 0xFB, 0x14, 0x9C, 0xC2, 0xC4, +0x26, 0xD0, 0x88, 0xA1, 0x9F, 0x3B, 0xB5, 0x15, 0x2D, 0x54, 0xF2, 0x52, 0x5F, 0x93, 0xC6, 0xC6, +0x01, 0xD6, 0x32, 0x52, 0xF5, 0x91, 0xF5, 0x04, 0x95, 0x1E, 0x39, 0x7A, 0x0C, 0x16, 0x2D, 0x5C, +0xC0, 0x96, 0x22, 0xF2, 0x6C, 0x68, 0x36, 0xB5, 0x83, 0xB2, 0x41, 0x26, 0x2A, 0x3E, 0xAA, 0xA3, +0x36, 0x96, 0x76, 0x4E, 0x68, 0x46, 0x8C, 0x8D, 0x06, 0x7C, 0x2D, 0xF9, 0x62, 0x91, 0x35, 0x60, +0xD9, 0x18, 0x0A, 0xD8, 0xAC, 0xE9, 0xD7, 0xA9, 0x8D, 0x16, 0xA8, 0xC5, 0xB0, 0xD3, 0xA5, 0xB5, +0x66, 0x67, 0x9F, 0xB3, 0xC0, 0x00, 0x7F, 0x0F, 0x45, 0x3A, 0xEE, 0x7A, 0xCE, 0xC4, 0xB4, 0x53, +0x94, 0xC4, 0x60, 0xF3, 0x77, 0x39, 0xCE, 0xAE, 0x8D, 0x47, 0xF0, 0x30, 0x6F, 0x9A, 0x6C, 0x5E, +0xF7, 0xEE, 0xEB, 0x07, 0xB6, 0x1E, 0x9F, 0x93, 0x2A, 0x0E, 0x04, 0x03, 0x10, 0x0C, 0x05, 0x51, +0x52, 0xBD, 0x56, 0x69, 0x62, 0xBA, 0xCB, 0xAE, 0x81, 0xED, 0xB3, 0xB4, 0x92, 0x0F, 0xE6, 0x88, +0x4E, 0x98, 0xB1, 0xFF, 0xF6, 0x6F, 0xF7, 0x84, 0xC6, 0x32, 0xE5, 0x73, 0x07, 0x86, 0x47, 0x39, +0x93, 0xBE, 0xA0, 0xE3, 0x6D, 0xA6, 0xA2, 0xD2, 0xD1, 0x3A, 0x1E, 0xEC, 0xD9, 0xD8, 0x71, 0x44, +0x6B, 0xBC, 0x83, 0x39, 0x55, 0x15, 0xCF, 0xDE, 0x89, 0x2A, 0x10, 0xA8, 0xAA, 0x5F, 0x82, 0x68, +0xF7, 0xA5, 0xFF, 0x0B, 0xA7, 0x01, 0xF5, 0xEE, 0xFC, 0xF1, 0x23, 0x86, 0xE5, 0x3B, 0x48, 0x92, +0x5A, 0x27, 0xDD, 0xE2, 0xA7, 0x0E, 0x6A, 0x5D, 0x5A, 0xA7, 0xD3, 0xB1, 0x9E, 0x63, 0xB0, 0x60, +0x41, 0x37, 0x78, 0x93, 0xA9, 0xDD, 0x5A, 0x17, 0x01, 0x4A, 0xB7, 0x69, 0xF0, 0xE8, 0x5B, 0xCC, +0x59, 0xAF, 0xC7, 0x09, 0xBF, 0x91, 0x3F, 0xAE, 0x34, 0xE0, 0x8F, 0x86, 0x42, 0x6E, 0x92, 0xE6, +0x11, 0xB3, 0x7E, 0x23, 0xCB, 0xB0, 0xBD, 0x8D, 0x55, 0xD3, 0xD5, 0x30, 0xDE, 0xE8, 0xC4, 0xB2, +0xDF, 0x1D, 0xCB, 0x9B, 0x00, 0x53, 0xBB, 0x87, 0x2E, 0x10, 0x27, 0x85, 0x0E, 0x1F, 0xD8, 0xFC, +0xAF, 0x3D, 0x70, 0x9A, 0x90, 0x5F, 0x95, 0x27, 0xA9, 0xB8, 0x8D, 0x88, 0x3F, 0x81, 0x1E, 0x9C, +0x63, 0xC7, 0xFA, 0x60, 0xE1, 0xA2, 0x05, 0x2C, 0x13, 0x44, 0x2D, 0x94, 0xCE, 0xD4, 0x78, 0x23, +0x2E, 0x62, 0x98, 0x5E, 0xE5, 0xC9, 0x5C, 0xD0, 0x89, 0x31, 0x76, 0xE3, 0x46, 0x3E, 0x24, 0xA9, +0xF3, 0x0C, 0xA3, 0xDA, 0x48, 0xFD, 0x39, 0x94, 0x6B, 0xF4, 0x42, 0x9A, 0x1A, 0xD3, 0x38, 0xEE, +0x39, 0x50, 0x22, 0x91, 0x57, 0x7A, 0xE9, 0x4E, 0x95, 0xBE, 0xD4, 0xAB, 0xED, 0x31, 0x8D, 0x75, +0x14, 0x4E, 0x23, 0x32, 0x8C, 0x4A, 0xA2, 0x3E, 0x2E, 0x57, 0xF1, 0xBD, 0x88, 0x26, 0xAD, 0xA1, +0x6C, 0xBD, 0x7D, 0xFD, 0x8C, 0xB1, 0x44, 0x54, 0xC9, 0x69, 0x7B, 0x40, 0x0C, 0xFD, 0xAB, 0xAD, +0x94, 0x1D, 0x5B, 0x09, 0x73, 0x44, 0x27, 0xC4, 0xD8, 0x3B, 0x16, 0x5E, 0xB9, 0x78, 0x69, 0x77, +0xF3, 0x87, 0x0A, 0xA5, 0xE4, 0x3C, 0xD7, 0x28, 0xA2, 0xEA, 0xD5, 0x6A, 0xED, 0x82, 0xF4, 0x02, +0x56, 0x2D, 0x86, 0xF5, 0xC0, 0x88, 0x7A, 0x7B, 0x83, 0x59, 0x4F, 0x0A, 0x10, 0xD1, 0xC0, 0x0D, +0xF0, 0x6A, 0x72, 0xF1, 0x14, 0xCF, 0x49, 0xE5, 0xE1, 0xC9, 0x20, 0xDA, 0x70, 0xCD, 0x3B, 0x7A, +0x3B, 0x79, 0xFC, 0xC7, 0x17, 0x4A, 0x50, 0xBD, 0xF0, 0x0B, 0x5F, 0x36, 0x01, 0x19, 0x39, 0xD0, +0x37, 0x80, 0x0E, 0xD4, 0x42, 0x26, 0xDD, 0x42, 0xAD, 0x0F, 0x89, 0x54, 0x31, 0xAD, 0x9C, 0xB6, +0x8C, 0xEA, 0x9C, 0xF9, 0x15, 0x27, 0xC4, 0xD8, 0x37, 0xDE, 0x70, 0x56, 0x5B, 0x4B, 0x47, 0xE4, +0x82, 0xA1, 0xA1, 0x61, 0x09, 0xD8, 0x72, 0x41, 0x2A, 0xE6, 0xA7, 0xD9, 0x46, 0xDE, 0xC0, 0x68, +0xCB, 0xF6, 0x4E, 0xAB, 0x81, 0x3F, 0x69, 0x87, 0x5C, 0x6B, 0x6B, 0xEB, 0x73, 0x5C, 0x63, 0x89, +0xF7, 0x8A, 0xC8, 0x79, 0x51, 0x1D, 0xB5, 0x2C, 0x63, 0x2B, 0x9C, 0x26, 0x64, 0x0A, 0xB6, 0x8C, +0x78, 0x30, 0x4F, 0x11, 0x00, 0x4B, 0xBE, 0x6B, 0x9A, 0xD7, 0xFD, 0xEE, 0xBE, 0xC0, 0x5A, 0x15, +0x56, 0x24, 0xCE, 0x43, 0x72, 0x32, 0xC5, 0x24, 0x36, 0x14, 0x8D, 0x60, 0x0E, 0x57, 0xC1, 0x04, +0x40, 0x6D, 0x5B, 0x04, 0xCF, 0x8F, 0x07, 0x12, 0x1D, 0x73, 0x66, 0x82, 0x4E, 0x88, 0xB1, 0x85, +0x82, 0x59, 0x9D, 0x18, 0x2B, 0x67, 0x69, 0x8F, 0x4C, 0xA9, 0xA2, 0x41, 0x95, 0x66, 0xE9, 0xDA, +0xDE, 0x04, 0x53, 0x62, 0xEC, 0x54, 0x06, 0xC7, 0xB1, 0xA0, 0xBE, 0xCE, 0x82, 0xAD, 0x25, 0x63, +0x83, 0xA1, 0x8F, 0xBF, 0x05, 0x2F, 0x88, 0x9A, 0x24, 0xCA, 0x73, 0x0A, 0x86, 0xBF, 0x1C, 0x7A, +0xF6, 0x17, 0x7F, 0x9B, 0xD6, 0x39, 0xF5, 0xAB, 0xA5, 0x72, 0x31, 0x69, 0xEA, 0xA5, 0xA9, 0x75, +0x6A, 0xAC, 0xDC, 0xBD, 0xB6, 0x2B, 0x61, 0xFA, 0x01, 0x26, 0x2D, 0x95, 0xC9, 0xE7, 0x99, 0x77, +0xDC, 0xDC, 0xDC, 0xC2, 0xFE, 0xC6, 0x86, 0x7E, 0x51, 0xAB, 0x28, 0xF0, 0xF3, 0x4A, 0xA9, 0xBE, +0x79, 0x30, 0x47, 0x74, 0x42, 0x8C, 0xDD, 0xFC, 0xF4, 0xA1, 0xF1, 0x43, 0x87, 0x87, 0x77, 0x19, +0x88, 0x9B, 0x96, 0x69, 0x12, 0x0A, 0x8D, 0x9B, 0xAB, 0xE3, 0xC3, 0xB5, 0x24, 0xBA, 0xE7, 0xFD, +0x1D, 0x7F, 0x4E, 0xAD, 0xA7, 0x1B, 0xA6, 0xFC, 0x62, 0x0A, 0x09, 0x6C, 0xD7, 0x67, 0xD2, 0xD4, +0x8E, 0xD3, 0x88, 0xFC, 0x81, 0x86, 0xEF, 0x0A, 0x6A, 0xE3, 0x8F, 0x10, 0x13, 0x2E, 0xB0, 0xA2, +0xF6, 0xDA, 0xAC, 0x63, 0x97, 0xF7, 0xB1, 0x64, 0x80, 0x3B, 0x2D, 0x46, 0xAF, 0xFB, 0x13, 0xBB, +0x77, 0xEF, 0x85, 0x45, 0x8B, 0xBA, 0xD9, 0xEF, 0x6C, 0xFE, 0x13, 0x26, 0xEC, 0xD1, 0x3C, 0x05, +0x6C, 0xB3, 0xB2, 0x10, 0xE6, 0x88, 0x4E, 0x88, 0xB1, 0x5B, 0x1E, 0x4D, 0x8D, 0xEC, 0x39, 0xD8, +0xFB, 0x70, 0xA5, 0x98, 0x2E, 0x0A, 0x96, 0xEE, 0x0D, 0xDD, 0xAA, 0x7A, 0x5D, 0xDB, 0xCC, 0xAE, +0x52, 0x55, 0x1E, 0x4D, 0x29, 0xAB, 0x33, 0x18, 0xEA, 0xDB, 0xAC, 0x8C, 0xA9, 0xF5, 0x64, 0xB5, +0x59, 0x0C, 0xCD, 0x22, 0x27, 0xDD, 0x04, 0xA7, 0x11, 0x0D, 0xF5, 0xFC, 0xF6, 0x58, 0x43, 0xB8, +0x73, 0xA3, 0x2F, 0x3C, 0xFF, 0x13, 0x28, 0xA0, 0x07, 0xED, 0x5A, 0x78, 0x23, 0x8A, 0x0A, 0x5B, +0x5A, 0x58, 0xEF, 0xE7, 0x25, 0x22, 0x26, 0xD3, 0x84, 0xF2, 0xC3, 0x87, 0x8E, 0x40, 0x47, 0x47, +0x3B, 0x94, 0x4B, 0x39, 0x66, 0x5B, 0x45, 0x6F, 0x90, 0x99, 0x64, 0x59, 0xD5, 0xFF, 0x43, 0x76, +0x1B, 0xE6, 0x80, 0x4E, 0x88, 0xB1, 0x5F, 0xFD, 0xEA, 0xB5, 0xFA, 0xE4, 0xD8, 0xC4, 0x91, 0x8A, +0x6E, 0x8C, 0x55, 0x2D, 0x42, 0x5E, 0x80, 0x95, 0x57, 0xD2, 0xC6, 0x29, 0xB6, 0xB3, 0xD5, 0xF1, +0x54, 0xB2, 0x89, 0xF7, 0xF5, 0x0F, 0x0E, 0xC2, 0xBC, 0x79, 0xAD, 0xAC, 0x33, 0x9D, 0xB6, 0x2D, +0xD3, 0x4F, 0xEA, 0x54, 0xF7, 0xB6, 0x5A, 0xB9, 0x92, 0xA9, 0x17, 0x6F, 0x5C, 0x7E, 0xCE, 0x1F, +0x5E, 0x02, 0xA7, 0x11, 0xF5, 0xF4, 0x3C, 0x58, 0x88, 0x77, 0xAD, 0xF8, 0x99, 0x14, 0x6A, 0xFA, +0x12, 0x15, 0xAC, 0x71, 0xB5, 0xA9, 0xE7, 0xD4, 0xB0, 0xCD, 0x36, 0x4F, 0x57, 0xCA, 0x90, 0x43, +0x15, 0x9C, 0xA1, 0x9D, 0xF3, 0xB9, 0x14, 0xEC, 0xDA, 0xB5, 0x13, 0x63, 0xD9, 0xF9, 0x50, 0x2E, +0x17, 0x80, 0x8A, 0xFE, 0xA8, 0x89, 0x8B, 0x0E, 0xB6, 0x65, 0x94, 0x97, 0x8C, 0xF6, 0x3E, 0x7D, +0x03, 0xCC, 0x01, 0x9D, 0x70, 0x1C, 0xBB, 0x7A, 0xF5, 0xF2, 0x5E, 0xD9, 0x1F, 0xE9, 0x1D, 0x9E, +0xC8, 0x60, 0x26, 0xA3, 0xCC, 0xCA, 0x2A, 0x4B, 0x95, 0x0A, 0x94, 0xAA, 0x1A, 0x9B, 0x1D, 0x61, +0xB0, 0xB1, 0x7A, 0xDE, 0xC2, 0x40, 0x22, 0x82, 0x19, 0xA7, 0x2F, 0x63, 0xF0, 0xD6, 0xEB, 0xE8, +0x20, 0xB8, 0x95, 0xC6, 0x4C, 0xFF, 0xE3, 0xBF, 0x6C, 0x5F, 0x72, 0xF5, 0x7A, 0x38, 0x8D, 0x88, +0x96, 0x1E, 0x07, 0x63, 0x8B, 0xB7, 0x82, 0x10, 0x76, 0xA9, 0xA8, 0x7D, 0x6C, 0xF8, 0x28, 0x8C, +0x0C, 0x1D, 0x82, 0xC9, 0x89, 0x7E, 0x48, 0xA7, 0x27, 0xA0, 0x54, 0xCC, 0x32, 0x46, 0x56, 0x75, +0x0D, 0x0E, 0x1C, 0x3C, 0x0C, 0xCB, 0x96, 0x2D, 0x65, 0x49, 0x02, 0x97, 0x13, 0x51, 0xA3, 0x69, +0x5E, 0xB7, 0x04, 0xA2, 0x33, 0xE3, 0xC7, 0x1E, 0xFB, 0x46, 0x73, 0xF3, 0xB2, 0x7B, 0x17, 0x2C, +0xBE, 0xF0, 0x8F, 0x16, 0x2D, 0x7A, 0xE3, 0x09, 0xAF, 0x5B, 0x99, 0x29, 0x9D, 0x30, 0x63, 0xA5, +0x84, 0x4F, 0x5A, 0xB4, 0x60, 0x85, 0x48, 0xE3, 0x5F, 0x35, 0x64, 0xAA, 0xC1, 0x10, 0xA7, 0xE3, +0xCC, 0xFB, 0x9D, 0x8D, 0x1A, 0xCF, 0xD9, 0xE9, 0xEA, 0x0D, 0x95, 0x24, 0x54, 0x83, 0xE2, 0x3A, +0xC3, 0x28, 0x85, 0x2B, 0xF9, 0xD1, 0x77, 0x2D, 0xBA, 0xF8, 0x03, 0x8D, 0x70, 0x1A, 0x11, 0xEF, +0x68, 0x2B, 0xC9, 0xA7, 0xD0, 0xAA, 0x46, 0xAD, 0x50, 0x80, 0x0A, 0xCA, 0xBD, 0x19, 0x1A, 0x54, +0x35, 0x21, 0x20, 0x23, 0xE9, 0x46, 0x29, 0xBC, 0x62, 0xB1, 0xC4, 0x34, 0x57, 0x1D, 0x8E, 0x64, +0x20, 0x05, 0xEB, 0x9E, 0x37, 0x54, 0x47, 0x4F, 0xBF, 0xD9, 0xD2, 0x92, 0x7F, 0x07, 0x42, 0x79, +0xC3, 0x59, 0x67, 0x7D, 0xF8, 0x15, 0x49, 0xC2, 0x9F, 0x30, 0x63, 0x79, 0xC3, 0x6D, 0x5C, 0xB2, +0x68, 0x49, 0x53, 0x4B, 0xEB, 0x22, 0xA6, 0x62, 0x5F, 0x8A, 0xEA, 0xB9, 0xD9, 0xE9, 0x5B, 0xAB, +0xBC, 0x3B, 0x1C, 0x6F, 0xB8, 0xA4, 0x5E, 0x78, 0x7B, 0xB6, 0x77, 0xE7, 0xAD, 0x73, 0xDD, 0xFA, +0xF0, 0x72, 0x08, 0xBD, 0xDB, 0x85, 0xD4, 0x30, 0xA6, 0x84, 0xDA, 0x40, 0xC5, 0x9B, 0xE8, 0x8B, +0x50, 0x08, 0xC7, 0x98, 0x0B, 0x0C, 0xF4, 0x67, 0x63, 0xC0, 0xD8, 0x8D, 0x86, 0xAD, 0x2C, 0x5F, +0xB6, 0xC8, 0x7B, 0x22, 0x1B, 0x9A, 0x69, 0x00, 0x87, 0x07, 0x5B, 0xF1, 0x51, 0x2D, 0x95, 0x4C, +0x15, 0x17, 0xED, 0x66, 0x71, 0xE0, 0x0B, 0x85, 0xC2, 0x8E, 0x37, 0xC2, 0x2B, 0x40, 0x27, 0xCC, +0xD8, 0xC9, 0xE1, 0x8C, 0x4A, 0x75, 0x94, 0xE7, 0x9D, 0x73, 0x09, 0xEB, 0x46, 0xB7, 0xD9, 0xA2, +0xA1, 0xE3, 0x4F, 0x9F, 0xBE, 0x40, 0x70, 0x64, 0x64, 0x14, 0xDA, 0xDB, 0xDB, 0x58, 0x46, 0xA4, +0x5E, 0xEC, 0x45, 0x61, 0x02, 0x5F, 0x5B, 0x13, 0x4A, 0x17, 0xC0, 0x75, 0x8C, 0x66, 0xB0, 0xAA, +0x57, 0x0F, 0x4C, 0xEC, 0x69, 0x83, 0xD3, 0x84, 0x2A, 0xC5, 0x24, 0x4F, 0xDF, 0x99, 0x17, 0x7C, +0x2E, 0x6D, 0x13, 0x22, 0x6F, 0x97, 0x4D, 0x53, 0xAE, 0x37, 0x96, 0xD5, 0xBE, 0x1D, 0x7D, 0xBF, +0xD1, 0xD1, 0x51, 0x58, 0xBA, 0x74, 0x09, 0x93, 0x52, 0x97, 0x4D, 0x6E, 0x73, 0xC0, 0x27, 0x49, +0xAC, 0xC9, 0xCB, 0x9B, 0xC1, 0xC1, 0xD1, 0xAE, 0xBD, 0x45, 0xE5, 0x72, 0xE9, 0xFD, 0xF0, 0x0A, +0xD0, 0x09, 0x33, 0x76, 0x60, 0x20, 0x9D, 0x9A, 0x4C, 0xA5, 0x52, 0x67, 0xAD, 0x3D, 0x07, 0x62, +0x89, 0x0E, 0xD6, 0xC8, 0xFC, 0x9C, 0x54, 0xCE, 0xF3, 0x5F, 0x98, 0xC6, 0xE6, 0x09, 0xC2, 0xF1, +0x15, 0x2A, 0x6C, 0xBF, 0xBA, 0x37, 0x79, 0x8D, 0x9C, 0x0E, 0x8C, 0x79, 0x45, 0xDB, 0xD0, 0xCE, +0xB3, 0x8D, 0xC9, 0xAB, 0xE1, 0x34, 0x20, 0x72, 0xF8, 0x5C, 0x57, 0xFA, 0xF4, 0xF4, 0xBF, 0x4D, +0xA9, 0x62, 0x5E, 0x66, 0xCD, 0xCF, 0x74, 0x70, 0x59, 0xD9, 0x0F, 0x7E, 0xF7, 0x23, 0x87, 0x8F, +0x30, 0xC6, 0x92, 0x10, 0xD0, 0x35, 0xA0, 0x91, 0x82, 0x54, 0x8F, 0x1C, 0xF0, 0x09, 0x10, 0xC4, +0x73, 0xE1, 0x97, 0x1C, 0xD6, 0x8E, 0x69, 0x6B, 0xA9, 0x37, 0x75, 0x2D, 0xBB, 0xEE, 0xA4, 0x5F, +0x83, 0x13, 0x66, 0xEC, 0x93, 0x23, 0x99, 0xD4, 0xE8, 0xF8, 0x64, 0xDF, 0xD1, 0xDE, 0xA3, 0xD0, +0x14, 0x6F, 0x04, 0xD5, 0x1F, 0x66, 0x12, 0xEB, 0xB9, 0xF2, 0xDC, 0xF3, 0x6E, 0xC7, 0x31, 0xE3, +0xBA, 0x7D, 0x15, 0x6A, 0xD2, 0x4A, 0x44, 0x13, 0xC8, 0x69, 0xEF, 0x39, 0x66, 0x3B, 0x7C, 0x68, +0xAB, 0x2F, 0x83, 0x53, 0x9C, 0x56, 0xAC, 0x78, 0xBB, 0xAC, 0x57, 0xF2, 0x37, 0xEA, 0xE8, 0x18, +0x89, 0x4E, 0x8E, 0x03, 0x33, 0xC3, 0xD1, 0x80, 0x6D, 0x82, 0x19, 0x6D, 0xDA, 0x23, 0xCB, 0x1A, +0xBF, 0xBD, 0x41, 0x9F, 0x3C, 0x98, 0x2C, 0xD9, 0xB1, 0x65, 0xCB, 0x16, 0x64, 0xEC, 0x52, 0xD6, +0x12, 0x12, 0x40, 0x8C, 0xD9, 0x2F, 0x4B, 0xEC, 0x9A, 0x54, 0xAA, 0x3A, 0xE4, 0xCB, 0x3A, 0x68, +0x06, 0x0F, 0xA1, 0x78, 0xB7, 0x2B, 0xF8, 0x9B, 0xA0, 0x90, 0xEE, 0xBF, 0x68, 0x46, 0x1F, 0xE8, +0x04, 0xE8, 0x84, 0x19, 0x4B, 0xF9, 0x53, 0xB4, 0x27, 0xCF, 0x64, 0x32, 0xA3, 0x6C, 0x33, 0x45, +0x22, 0x16, 0x63, 0x90, 0x19, 0x53, 0xAF, 0xB5, 0xE5, 0x80, 0xF5, 0x19, 0x0C, 0xF5, 0x25, 0x48, +0x2C, 0xA0, 0x07, 0x6E, 0xEA, 0x31, 0x53, 0xCB, 0x8F, 0x5C, 0x0F, 0xB9, 0xA1, 0xF9, 0xBF, 0x68, +0x6C, 0xE6, 0xBC, 0x82, 0x6F, 0x26, 0x44, 0x3E, 0x80, 0xE0, 0xD3, 0xCE, 0x32, 0x0D, 0xE3, 0x3A, +0x9F, 0x4F, 0x85, 0xA0, 0x8A, 0x52, 0xA7, 0x10, 0x4C, 0x6A, 0x81, 0x22, 0x89, 0x40, 0x7F, 0x53, +0x90, 0x69, 0x54, 0x9E, 0x2A, 0xD4, 0x4E, 0x2E, 0x7D, 0xDF, 0x74, 0x3A, 0x0B, 0xE1, 0x70, 0x08, +0x9A, 0x1A, 0x12, 0xAC, 0x31, 0x8D, 0x12, 0xF1, 0xF9, 0x62, 0x19, 0xCA, 0xBA, 0x0B, 0xF1, 0x86, +0x56, 0x68, 0x5F, 0x70, 0x26, 0x08, 0x51, 0xCC, 0x09, 0xC8, 0x09, 0x37, 0xD2, 0xBA, 0xEC, 0xA4, +0xE3, 0xE7, 0x33, 0xCA, 0x0F, 0x6A, 0xBA, 0x75, 0xA8, 0x52, 0x31, 0xA0, 0x64, 0x70, 0x4C, 0x5A, +0x69, 0x25, 0x5A, 0x7D, 0x65, 0x0A, 0x57, 0xC3, 0x4A, 0x89, 0xB1, 0x64, 0x5F, 0xDA, 0xDB, 0xDB, +0xA7, 0x9E, 0xE7, 0xB8, 0xCF, 0x5D, 0x03, 0xEA, 0xD4, 0x72, 0x95, 0xF4, 0x6F, 0xC3, 0xB2, 0xE6, +0xB4, 0x7A, 0x6F, 0xA6, 0x44, 0x3E, 0x80, 0x6E, 0xDA, 0x6F, 0xE5, 0x39, 0xB7, 0x83, 0x24, 0x96, +0x8A, 0xDB, 0x6C, 0x97, 0x20, 0x42, 0xE6, 0xE1, 0xB2, 0x81, 0x28, 0x1E, 0xCC, 0x58, 0x6B, 0x60, +0xE1, 0xBC, 0x6B, 0xE0, 0x43, 0x4D, 0xD6, 0x73, 0xB4, 0x07, 0xE6, 0x77, 0x77, 0x43, 0xBE, 0x54, +0x66, 0x53, 0xEA, 0xC2, 0xF1, 0x66, 0xE8, 0xEC, 0x6C, 0x07, 0xBF, 0xA2, 0x42, 0x31, 0x3F, 0x01, +0x13, 0x7D, 0x4F, 0x71, 0xD5, 0x5C, 0x3F, 0xA7, 0xCA, 0x81, 0x97, 0x33, 0xA5, 0xF7, 0x05, 0x69, +0x46, 0x8C, 0xFD, 0xCE, 0xFF, 0x7E, 0xEC, 0x37, 0x39, 0x4D, 0x78, 0x8A, 0x66, 0x2E, 0xD0, 0x97, +0xE3, 0xEA, 0x33, 0x24, 0xD8, 0xF2, 0x79, 0x6F, 0xCD, 0xD9, 0xF1, 0xB8, 0xF5, 0xB8, 0x33, 0xE5, +0xD9, 0x9E, 0x69, 0x16, 0x99, 0x3C, 0x63, 0x07, 0x58, 0x13, 0x97, 0x56, 0x18, 0xB9, 0x78, 0xC5, +0x86, 0xBF, 0x5E, 0x04, 0xA7, 0x28, 0xA9, 0x3E, 0xE7, 0x23, 0x98, 0x00, 0xF8, 0x94, 0xE9, 0x08, +0x3E, 0x5A, 0x64, 0x58, 0x66, 0x73, 0x8A, 0xA9, 0x85, 0x52, 0x64, 0xA1, 0x9B, 0x6B, 0x6A, 0xAC, +0x41, 0x8D, 0xBE, 0xAD, 0x22, 0xFB, 0xD8, 0xB8, 0x7C, 0xBA, 0x06, 0x45, 0x04, 0x2D, 0xF6, 0xED, +0xDF, 0x0F, 0x0B, 0x17, 0x2F, 0xC2, 0x43, 0xDE, 0x05, 0x6B, 0x56, 0x9F, 0x0D, 0x4B, 0xBA, 0x56, +0x81, 0x5E, 0xB5, 0x60, 0x64, 0x6C, 0x18, 0x0F, 0xFF, 0x31, 0x28, 0x95, 0x32, 0x40, 0x1B, 0x40, +0x2B, 0xA5, 0x74, 0x0C, 0x4E, 0x32, 0xCD, 0x38, 0xD4, 0x28, 0x5B, 0xFC, 0x0F, 0x30, 0x0D, 0x75, +0x81, 0x37, 0xC0, 0x92, 0x47, 0x15, 0x24, 0xB3, 0xE1, 0x57, 0xD3, 0xAB, 0xFE, 0x7F, 0x9F, 0x53, +0x45, 0xA5, 0x24, 0x0C, 0x7F, 0x72, 0x6B, 0xF3, 0x7C, 0x69, 0x0C, 0x90, 0x24, 0xA8, 0x63, 0xFB, +0xEE, 0xF9, 0xD1, 0x8A, 0x0D, 0x1F, 0xBD, 0x92, 0x40, 0x00, 0x38, 0xC5, 0xC8, 0x76, 0x04, 0x49, +0xD7, 0xF5, 0x02, 0x1A, 0x8F, 0x10, 0xA2, 0xFE, 0x9C, 0xEC, 0x8F, 0x11, 0xF0, 0xE0, 0x6A, 0xE5, +0x20, 0xA7, 0x2A, 0x0D, 0x60, 0x94, 0x93, 0x78, 0xC0, 0x5D, 0xB6, 0xF3, 0x8F, 0x36, 0x91, 0x88, +0x32, 0xAD, 0x8E, 0xF1, 0x83, 0xA4, 0x44, 0x00, 0x43, 0x59, 0xD8, 0x70, 0xE9, 0x85, 0x90, 0x9B, +0x18, 0x82, 0x64, 0x26, 0x0F, 0x83, 0x43, 0xC3, 0x98, 0x21, 0xAA, 0xB0, 0x5D, 0x01, 0x02, 0x5B, +0xEA, 0xC4, 0xB3, 0xD4, 0xA7, 0xA6, 0x17, 0x96, 0xE0, 0x5B, 0xFD, 0x1A, 0x4E, 0x22, 0xCD, 0x98, +0xB1, 0x28, 0x65, 0xBF, 0x45, 0x06, 0xE5, 0x5C, 0x8E, 0x8B, 0x52, 0x7E, 0x95, 0x9C, 0x63, 0xBE, +0xB6, 0x20, 0x9E, 0x7D, 0x58, 0x3A, 0xAD, 0x85, 0xD2, 0x54, 0x15, 0xC5, 0x0B, 0x11, 0x53, 0xCD, +0x8E, 0xE9, 0xAD, 0x31, 0xC3, 0x98, 0xCE, 0xD0, 0xF3, 0xE7, 0x16, 0x86, 0xFB, 0xCE, 0xC2, 0xBB, +0x4E, 0xB9, 0x72, 0x54, 0x91, 0x37, 0xEE, 0x90, 0x79, 0xBB, 0xBB, 0xAC, 0xE7, 0x6E, 0x90, 0xD4, +0x79, 0x7C, 0x43, 0xD7, 0x7A, 0x54, 0xC6, 0x08, 0xB2, 0x54, 0x4B, 0x1C, 0xFD, 0xAC, 0x94, 0x0A, +0xAE, 0x44, 0xCB, 0x86, 0xAC, 0x0A, 0xE7, 0xE7, 0x4A, 0x9C, 0x28, 0x94, 0x6A, 0xD9, 0x2E, 0x1D, +0x86, 0x06, 0x0E, 0xC2, 0xB5, 0xD7, 0x5C, 0x04, 0x3B, 0xF6, 0xF6, 0xB2, 0x55, 0xE4, 0x16, 0xAB, +0x5C, 0x34, 0x59, 0xCC, 0xEB, 0x09, 0x80, 0x17, 0x06, 0x39, 0xD5, 0xE2, 0x49, 0xC7, 0x8F, 0x67, +0x5C, 0x83, 0x43, 0xB3, 0x1A, 0x5C, 0xDE, 0xFF, 0x2B, 0x87, 0xCD, 0xF8, 0xF5, 0x12, 0x35, 0xD3, +0x6B, 0x80, 0x18, 0x63, 0x8B, 0x45, 0x08, 0x85, 0x8E, 0x7F, 0xD6, 0x7A, 0x92, 0x7A, 0xEA, 0xDF, +0x53, 0x3B, 0x75, 0x5C, 0x06, 0x92, 0x13, 0x69, 0xC5, 0x81, 0x0F, 0x2D, 0x3F, 0xEB, 0xC3, 0xAD, +0x70, 0x8A, 0xD1, 0xFE, 0x1B, 0xCE, 0xDA, 0x0E, 0x52, 0xF3, 0x3F, 0x68, 0xA5, 0xCC, 0x3E, 0x03, +0x05, 0x37, 0x37, 0xB2, 0x9B, 0x4B, 0xF6, 0x3D, 0xCE, 0x97, 0xC6, 0xB7, 0x43, 0x7E, 0x7C, 0x07, +0x70, 0x76, 0x12, 0x7D, 0xC0, 0x51, 0xCE, 0xAA, 0xF4, 0x71, 0xB9, 0xDC, 0x20, 0x86, 0x85, 0x07, +0xA1, 0xB7, 0xEF, 0x00, 0xF4, 0xF5, 0x1F, 0x82, 0x3D, 0xBB, 0xF6, 0xB1, 0x46, 0x2D, 0x1D, 0x3D, +0xE1, 0xA9, 0x9E, 0x25, 0xC7, 0xDB, 0x60, 0xCD, 0xDA, 0x3F, 0x1C, 0x2F, 0x83, 0x59, 0xD5, 0xB2, +0x0B, 0x36, 0xBC, 0x7F, 0xE3, 0x49, 0xF5, 0x35, 0x66, 0x55, 0x5C, 0xE5, 0x8A, 0x81, 0x5F, 0x70, +0x7C, 0x60, 0x9C, 0x86, 0x68, 0x90, 0x87, 0x2C, 0xB2, 0x39, 0x4D, 0x7C, 0xAD, 0x47, 0xC7, 0x79, +0x0E, 0x58, 0xC1, 0xDE, 0x84, 0x7B, 0xEE, 0xDB, 0x4C, 0xC7, 0x8F, 0x81, 0xBA, 0xF6, 0x10, 0x43, +0xC6, 0x78, 0xEF, 0x0C, 0xAD, 0x32, 0x7A, 0xEA, 0x25, 0x07, 0x36, 0x6E, 0x74, 0x7A, 0x0E, 0xDC, +0x79, 0x60, 0xDE, 0x82, 0xF3, 0x3F, 0x50, 0x4C, 0x1F, 0x44, 0x90, 0x22, 0x05, 0xA6, 0x96, 0x81, +0x6A, 0x25, 0x87, 0xB7, 0x22, 0x86, 0x2A, 0xC3, 0x90, 0x9E, 0x18, 0xE2, 0x52, 0xC9, 0x11, 0x48, +0x27, 0x87, 0x11, 0x3F, 0xA7, 0x31, 0x82, 0xDE, 0x1A, 0x1A, 0x9A, 0xD3, 0x31, 0x3E, 0x36, 0x01, +0x8B, 0x97, 0x2C, 0xAA, 0xCD, 0x9A, 0x34, 0x99, 0x7F, 0x21, 0x80, 0x57, 0xF9, 0xE8, 0x55, 0x37, +0x52, 0x6C, 0xC8, 0xCD, 0x9B, 0xEC, 0x2F, 0x47, 0xE1, 0x24, 0xD2, 0xEC, 0x46, 0xEE, 0x05, 0xC2, +0x49, 0xC9, 0xE7, 0x3F, 0x86, 0x92, 0xE7, 0xD0, 0x1C, 0xFF, 0xFA, 0x80, 0x10, 0x62, 0xAE, 0x48, +0x05, 0x5C, 0xF5, 0x61, 0x21, 0xCF, 0x23, 0x36, 0x8B, 0xC2, 0xF6, 0x66, 0x41, 0x11, 0x4D, 0x85, +0x40, 0x2C, 0x1E, 0xAC, 0x34, 0x16, 0xB2, 0x03, 0x2B, 0xA9, 0xBE, 0x0A, 0x4E, 0x41, 0x3A, 0xB0, +0xED, 0x07, 0x3B, 0x1B, 0xDB, 0xCF, 0x7C, 0x27, 0x7A, 0xC7, 0x23, 0x96, 0x23, 0x3E, 0x67, 0xA5, +0x38, 0x43, 0xD6, 0x10, 0x6A, 0x74, 0x78, 0x6F, 0x16, 0x14, 0x99, 0x26, 0xD6, 0xA7, 0xC4, 0x49, +0xB0, 0x13, 0xA5, 0xB6, 0x7B, 0x41, 0x37, 0x7B, 0x2C, 0x81, 0x36, 0x2E, 0x6D, 0x0E, 0xA3, 0x71, +0x85, 0x78, 0xDF, 0xD4, 0x3C, 0x75, 0xA7, 0xDA, 0x56, 0x1C, 0xDE, 0x76, 0x52, 0x93, 0x22, 0xB3, +0xBA, 0x88, 0x67, 0xAF, 0x39, 0xE7, 0xAC, 0xF6, 0xB6, 0xEE, 0x16, 0xCB, 0x76, 0x4D, 0x0A, 0x79, +0x08, 0x49, 0x72, 0xA6, 0xFA, 0x76, 0xE0, 0xB9, 0x8B, 0x0F, 0xC0, 0x9D, 0xD6, 0x2B, 0xEB, 0xFC, +0x0E, 0x53, 0xD9, 0x33, 0xA8, 0x3C, 0xD3, 0x31, 0xA3, 0x76, 0xB5, 0xB8, 0x72, 0xC5, 0xE6, 0xC9, +0x53, 0x36, 0xAE, 0xED, 0x3F, 0x78, 0xDF, 0xED, 0xB2, 0x3F, 0xBA, 0x89, 0x6D, 0x8B, 0xA6, 0xA9, +0x37, 0x8E, 0x3D, 0x65, 0x66, 0x64, 0xD6, 0x66, 0xC9, 0xD7, 0xA6, 0xB6, 0x79, 0x83, 0x47, 0xE8, +0x5A, 0x1C, 0x3D, 0x7A, 0x0C, 0x16, 0x2E, 0x5A, 0xC8, 0x62, 0x77, 0x6F, 0xF1, 0xA2, 0x0C, 0x91, +0x48, 0x02, 0x22, 0xD1, 0xC6, 0xDA, 0x38, 0x3F, 0x5A, 0x59, 0xC9, 0x2D, 0x28, 0x64, 0xFB, 0xDE, +0xD1, 0xDE, 0x7E, 0x75, 0x1C, 0x4E, 0x12, 0xCD, 0x8A, 0xB1, 0x51, 0x3F, 0x7F, 0x59, 0x2C, 0x20, +0x75, 0x09, 0x72, 0x98, 0x1D, 0x51, 0x09, 0x61, 0x35, 0xEA, 0x6F, 0xA9, 0x33, 0x75, 0x7C, 0x6C, +0x1C, 0xDA, 0xDA, 0xDA, 0x9E, 0xA3, 0x92, 0xE9, 0x22, 0xD4, 0x53, 0x79, 0xEC, 0x8D, 0x6B, 0x88, +0xD4, 0x54, 0xD9, 0xAA, 0x63, 0x49, 0xAE, 0xA3, 0x2D, 0xA8, 0x4E, 0x4C, 0x9C, 0x72, 0x76, 0x76, +0x3A, 0x55, 0xAB, 0x5A, 0x18, 0x78, 0xBF, 0xCB, 0x71, 0xDE, 0xEA, 0x53, 0xFA, 0x4E, 0x6C, 0xFC, +0xBC, 0x73, 0xBC, 0xA8, 0xDC, 0x72, 0xC8, 0xE3, 0x95, 0xD8, 0x00, 0xD1, 0x4C, 0x3A, 0x85, 0x08, +0xD4, 0x62, 0x88, 0x22, 0xB0, 0xD1, 0x28, 0xF3, 0xD0, 0x84, 0x58, 0x71, 0xC0, 0x28, 0x41, 0xC0, +0x2C, 0x22, 0x7A, 0x17, 0x62, 0x52, 0x8C, 0x98, 0x40, 0xD0, 0xAD, 0x96, 0xDE, 0xE2, 0xC0, 0xE4, +0x8D, 0x18, 0x1D, 0x9C, 0x94, 0x6E, 0x81, 0x59, 0x31, 0xB6, 0x54, 0x29, 0x8B, 0x65, 0xAD, 0x4C, +0x28, 0x21, 0xEF, 0x7D, 0x21, 0x97, 0xCD, 0x12, 0x24, 0x67, 0xCA, 0xDB, 0x1F, 0xE9, 0x4E, 0xA9, +0x19, 0x6F, 0xE1, 0xE0, 0xF1, 0xD4, 0x1E, 0x91, 0x87, 0x4E, 0xD5, 0x12, 0x07, 0x74, 0x81, 0x1C, +0xBB, 0x3E, 0x79, 0x66, 0x7E, 0x3E, 0x7D, 0x60, 0x3E, 0x9C, 0xC2, 0x84, 0x82, 0xD9, 0xC9, 0xBB, +0x3A, 0x57, 0xAF, 0xE5, 0xA2, 0x82, 0x79, 0xBD, 0x5A, 0x66, 0x92, 0x1A, 0x09, 0xFB, 0x21, 0x1E, +0x4F, 0x40, 0x22, 0xA2, 0x40, 0x53, 0x84, 0x87, 0x66, 0x45, 0x87, 0x91, 0x6D, 0x5B, 0x61, 0xF1, +0x82, 0x2E, 0x68, 0xC9, 0xA7, 0x21, 0x52, 0xC8, 0x82, 0x1F, 0xCF, 0xB1, 0x12, 0x14, 0x40, 0x0E, +0xCA, 0x6C, 0x2E, 0x23, 0x5D, 0x33, 0xB6, 0x9D, 0x96, 0x73, 0x02, 0x8E, 0xA5, 0xBF, 0xB1, 0x34, +0x39, 0x74, 0x52, 0xBE, 0xFF, 0xAC, 0x52, 0x66, 0x07, 0x8F, 0x1E, 0xCB, 0x0B, 0x78, 0xE2, 0x7C, +0xA2, 0x03, 0x15, 0xD3, 0x8F, 0x0C, 0xCB, 0xB2, 0xC6, 0x67, 0x36, 0x02, 0xB6, 0x56, 0x8A, 0xEA, +0xD9, 0xD3, 0xDA, 0x92, 0xDF, 0x5A, 0xDE, 0xB6, 0xCE, 0x50, 0xA2, 0xBA, 0x34, 0xD3, 0x97, 0xAB, +0x97, 0xA7, 0xE2, 0x63, 0xCB, 0x82, 0xA4, 0xCC, 0xE9, 0xF8, 0xD7, 0x99, 0x12, 0x26, 0xD2, 0x2B, +0xB4, 0xB4, 0x58, 0xA1, 0x6D, 0xD4, 0x96, 0xD7, 0x8C, 0xD6, 0xD2, 0xDC, 0x06, 0x61, 0x09, 0xF3, +0xD3, 0x7A, 0x05, 0x78, 0x6D, 0x02, 0x54, 0xDD, 0x66, 0x35, 0x7D, 0x2E, 0x2B, 0xE6, 0x33, 0x41, +0xAB, 0x54, 0xA0, 0x63, 0xF5, 0x5A, 0x48, 0x8F, 0x8E, 0xB0, 0x83, 0x6F, 0x96, 0x74, 0x54, 0xC9, +0x16, 0x83, 0x64, 0xCB, 0x15, 0x8D, 0x1D, 0x0E, 0xF4, 0x4F, 0x10, 0xB6, 0x92, 0xB7, 0xC4, 0x9B, +0x16, 0x8E, 0x0C, 0x9E, 0x84, 0x05, 0x34, 0x2F, 0xC3, 0x51, 0x71, 0xBD, 0xB5, 0xD5, 0x42, 0x6D, +0xBD, 0x99, 0xEB, 0xCD, 0xC6, 0x27, 0xF5, 0x44, 0x53, 0x57, 0x02, 0x01, 0x3F, 0x53, 0x51, 0x75, +0x27, 0x83, 0x90, 0xA9, 0x7A, 0xA6, 0x67, 0xEA, 0x56, 0x97, 0x6B, 0x16, 0xD7, 0xB1, 0x56, 0xCC, +0x01, 0x5F, 0xB0, 0x63, 0x00, 0x4E, 0x61, 0xC2, 0x6C, 0x8E, 0xDF, 0xEB, 0xD4, 0xF7, 0x56, 0x89, +0x33, 0x4C, 0x9C, 0x26, 0x55, 0x95, 0x73, 0xE0, 0xD7, 0xCB, 0xA0, 0x3A, 0x12, 0x48, 0xFE, 0x00, +0xF8, 0x10, 0x27, 0x96, 0x23, 0x11, 0x90, 0x22, 0x31, 0x18, 0xE9, 0xED, 0x87, 0xB6, 0xF6, 0x79, +0xE0, 0x16, 0x73, 0xC0, 0xA7, 0x93, 0x84, 0x8F, 0xE3, 0x4D, 0x67, 0x33, 0x1B, 0x05, 0x81, 0xAB, +0xAD, 0x4D, 0x73, 0xDC, 0xAA, 0x65, 0x04, 0x8A, 0x99, 0xB4, 0x0C, 0x27, 0x81, 0x66, 0x17, 0xEE, +0x60, 0xD2, 0x98, 0xE6, 0x2B, 0xF8, 0x04, 0x0B, 0x24, 0xBC, 0xD1, 0xFE, 0xF4, 0x52, 0xB5, 0xCA, +0x12, 0xF0, 0x14, 0x80, 0xE7, 0x73, 0x79, 0x08, 0x85, 0x43, 0x53, 0xD8, 0xB1, 0xEA, 0x53, 0x18, +0xDC, 0xC6, 0x9E, 0xEB, 0xBA, 0x53, 0x39, 0x5A, 0xAE, 0xE6, 0x64, 0x88, 0x0E, 0x31, 0x9F, 0xEB, +0x53, 0xC2, 0xF3, 0x7E, 0x32, 0xF4, 0xAE, 0x33, 0xC7, 0xE1, 0x14, 0x26, 0x4B, 0x2F, 0x4B, 0xF5, +0xE6, 0x2C, 0x5A, 0x52, 0x4C, 0x9F, 0xDF, 0x30, 0xAB, 0x20, 0xAB, 0x7E, 0x66, 0x47, 0xE5, 0x40, +0x90, 0x16, 0x13, 0x61, 0x04, 0xA7, 0x81, 0x80, 0x90, 0xA1, 0x9D, 0x4B, 0x41, 0x6A, 0x68, 0x00, +0xE2, 0xB1, 0x28, 0x08, 0xB1, 0x20, 0xC8, 0xF3, 0x62, 0x8C, 0xB1, 0x94, 0x74, 0x97, 0x78, 0x6F, +0xA6, 0x05, 0x78, 0x98, 0xB9, 0xC0, 0xD9, 0xC6, 0x1B, 0xB5, 0x7C, 0xCF, 0x49, 0x81, 0x57, 0x67, +0xC5, 0x58, 0x0F, 0x18, 0x44, 0xBB, 0xC8, 0x60, 0x34, 0x17, 0x54, 0x64, 0x1A, 0x39, 0x4F, 0x14, +0xFA, 0x50, 0x1B, 0x04, 0x6D, 0xA0, 0xA4, 0xD0, 0xC7, 0x2F, 0xCB, 0xEC, 0x46, 0x80, 0xB8, 0xED, +0x4C, 0x4B, 0x16, 0x4C, 0xC5, 0xB5, 0x8E, 0x57, 0x2E, 0xC3, 0xC9, 0x5A, 0x28, 0xD6, 0xF9, 0xA5, +0x48, 0xBC, 0xFD, 0xAE, 0x57, 0x6A, 0x9A, 0xF8, 0xC9, 0x20, 0xAA, 0x30, 0xC4, 0xC3, 0x18, 0xA6, +0x43, 0x49, 0x63, 0x81, 0xE8, 0x3B, 0xF1, 0xBC, 0x02, 0x55, 0xD3, 0x06, 0x03, 0x9D, 0x25, 0x4A, +0xDA, 0xB9, 0xC8, 0x48, 0xAA, 0xE4, 0xA4, 0xEC, 0x95, 0x83, 0xAA, 0x58, 0xC1, 0x38, 0x7D, 0xEC, +0xC8, 0x21, 0x58, 0x7A, 0xCE, 0xD9, 0x20, 0x37, 0x34, 0x42, 0x08, 0x93, 0x23, 0x42, 0x24, 0x88, +0xD7, 0x01, 0x9D, 0x2B, 0x17, 0x58, 0x29, 0x0D, 0x09, 0x04, 0xE1, 0xCD, 0x96, 0x55, 0x6D, 0x41, +0xB0, 0x82, 0x39, 0x4F, 0xB4, 0x7C, 0x99, 0x6E, 0x30, 0x4B, 0x9A, 0x15, 0x63, 0x05, 0xBB, 0xFC, +0x04, 0x67, 0x19, 0x55, 0xAA, 0x1F, 0x50, 0x45, 0x1B, 0x1A, 0xA3, 0x7E, 0x68, 0x6D, 0x6E, 0x81, +0xB6, 0xA6, 0x38, 0x34, 0x45, 0x43, 0xE0, 0xF7, 0xC9, 0xE8, 0xFE, 0x8B, 0xC8, 0x64, 0x99, 0x49, +0x26, 0x15, 0x98, 0x3B, 0xAE, 0x67, 0x63, 0x45, 0x16, 0x1A, 0x51, 0x16, 0x44, 0x60, 0xB6, 0x95, +0x97, 0x63, 0x47, 0x3A, 0xCF, 0xBD, 0x65, 0x41, 0x72, 0x6C, 0xCF, 0x57, 0xFA, 0x0F, 0x3C, 0x70, +0x4A, 0x4B, 0x2B, 0xCD, 0x81, 0x92, 0x65, 0xE9, 0x19, 0xCA, 0xE8, 0xD0, 0x77, 0x71, 0xCD, 0x3C, +0x2B, 0x56, 0x33, 0x6C, 0x09, 0x31, 0xE3, 0x12, 0x5B, 0x9D, 0x46, 0x43, 0xBE, 0xD8, 0xF4, 0x54, +0x03, 0x73, 0xB7, 0xD5, 0x0A, 0x9B, 0x0F, 0x35, 0x70, 0xEC, 0x18, 0xB4, 0x2F, 0x5F, 0x01, 0x3E, +0x4C, 0x75, 0xFA, 0x24, 0xD4, 0x5E, 0x6D, 0xED, 0xE0, 0x04, 0x03, 0xE8, 0x70, 0xD2, 0xC8, 0x5C, +0xAF, 0x3E, 0x59, 0x55, 0x02, 0x28, 0x20, 0x52, 0x2C, 0xE8, 0x0F, 0x7E, 0xB0, 0xA1, 0x75, 0xD5, +0xB7, 0x8A, 0xFB, 0x7F, 0x7C, 0x30, 0xB7, 0xE7, 0xFB, 0x07, 0x5B, 0xE7, 0x9F, 0xF7, 0x79, 0x98, +0x05, 0xCD, 0xCA, 0x79, 0x12, 0x8D, 0x42, 0x8F, 0xAD, 0x55, 0x06, 0x51, 0x85, 0x2C, 0xA1, 0x66, +0x2C, 0x1A, 0x99, 0x4E, 0x6D, 0x1C, 0x64, 0x6D, 0xCC, 0xDA, 0x1C, 0x5F, 0x6F, 0x4D, 0x98, 0x37, +0x86, 0x8F, 0x48, 0x60, 0x31, 0xAB, 0x67, 0x55, 0x29, 0xEE, 0x25, 0x37, 0x9F, 0x76, 0xB2, 0x4B, +0xC1, 0xC0, 0xDE, 0x03, 0x9B, 0xFF, 0xE3, 0x94, 0x66, 0xE8, 0x74, 0x42, 0x6F, 0xE2, 0xB7, 0x02, +0x6F, 0x9F, 0x6F, 0xDB, 0x6E, 0x3B, 0xE5, 0x5F, 0x0D, 0xBD, 0xC8, 0x56, 0xCA, 0x58, 0x50, 0x05, +0x83, 0x56, 0xA2, 0xF9, 0x23, 0xC0, 0xE9, 0x93, 0x5E, 0x2F, 0x13, 0xDE, 0x44, 0x9F, 0x08, 0x55, +0x3C, 0x08, 0x2A, 0xFA, 0x1C, 0x01, 0x8C, 0x61, 0xF5, 0x72, 0x19, 0x25, 0x55, 0x66, 0xE3, 0xFB, +0x50, 0x38, 0xD0, 0x09, 0xC3, 0x14, 0x9F, 0x12, 0xC4, 0xBC, 0x6E, 0x90, 0x92, 0x2A, 0x92, 0x51, +0xCD, 0xDD, 0xA4, 0x97, 0x8B, 0x34, 0xCB, 0x9A, 0x5A, 0x67, 0x32, 0x86, 0x5E, 0x0A, 0xC0, 0x2C, +0x68, 0x76, 0x13, 0xC6, 0xED, 0xE8, 0xD6, 0xBC, 0x2B, 0x7F, 0x4F, 0xF7, 0xEA, 0x63, 0xBC, 0x9D, +0xE5, 0xA2, 0x97, 0xCA, 0xA2, 0xF6, 0x41, 0xEA, 0x91, 0x6D, 0x6A, 0xF2, 0x66, 0x3D, 0x49, 0x28, +0xB1, 0x3E, 0xFC, 0x9B, 0x5C, 0x83, 0x1D, 0xA9, 0xC3, 0x9B, 0x54, 0xB1, 0xAE, 0x57, 0x59, 0x81, +0x39, 0x7E, 0x99, 0x53, 0xDA, 0x0B, 0x7E, 0x3E, 0xF9, 0x5C, 0xDF, 0x4F, 0x38, 0x41, 0xF9, 0x5B, +0xBD, 0x92, 0x49, 0x12, 0x53, 0xAB, 0x65, 0xB4, 0xA3, 0x78, 0x19, 0x0A, 0x42, 0x10, 0xAA, 0x3E, +0x0F, 0x1F, 0x17, 0xA7, 0x5D, 0x55, 0x35, 0xA4, 0x80, 0x96, 0xCA, 0x42, 0x36, 0x99, 0x84, 0x16, +0x54, 0xC3, 0x3E, 0x1F, 0x7E, 0x77, 0xB7, 0xCA, 0x42, 0x24, 0xAD, 0x52, 0x42, 0x88, 0x32, 0xCD, +0x0E, 0x3B, 0x39, 0x9A, 0x9A, 0xAE, 0xA9, 0xA5, 0x52, 0x1E, 0x6D, 0x38, 0xA6, 0x01, 0xE5, 0xC8, +0x16, 0x25, 0x34, 0xEF, 0xE3, 0x82, 0xDA, 0xBC, 0x11, 0x66, 0x41, 0xB3, 0x62, 0xEC, 0xCE, 0xB7, +0xAC, 0x4C, 0x03, 0x1F, 0xBD, 0x1B, 0xF9, 0x76, 0x90, 0xF6, 0x58, 0xD3, 0x5C, 0x5F, 0x9A, 0xEF, +0x4B, 0x61, 0x00, 0x2D, 0xF9, 0xB5, 0xA7, 0x5A, 0xDB, 0xB9, 0xA9, 0x3D, 0x84, 0x14, 0xA9, 0x9A, +0xA8, 0x92, 0x2B, 0xE8, 0x68, 0x55, 0x69, 0xC5, 0x35, 0x53, 0xC7, 0x6C, 0x18, 0x56, 0x0A, 0x4E, +0x23, 0xA2, 0xE2, 0x71, 0x5E, 0x8E, 0x3F, 0x22, 0xF8, 0x5B, 0x0F, 0x4B, 0xFE, 0x56, 0x50, 0x02, +0x8D, 0x6C, 0x2E, 0xB1, 0x66, 0xE0, 0x41, 0xAD, 0x65, 0x2B, 0x2D, 0x04, 0x6C, 0x48, 0xE2, 0x48, +0x2D, 0xDB, 0xE5, 0x2A, 0x98, 0x28, 0xA5, 0x7D, 0x87, 0x0F, 0x41, 0xFB, 0xFC, 0x4E, 0xC8, 0xA2, +0x67, 0x5C, 0xC6, 0x7C, 0x1E, 0x8D, 0x15, 0xA2, 0x89, 0x9C, 0x65, 0x74, 0x3A, 0xE9, 0xBA, 0x50, +0xC8, 0x43, 0xF5, 0x51, 0xBC, 0x20, 0x4F, 0x04, 0x63, 0x1D, 0xFF, 0x25, 0xC9, 0x81, 0x3F, 0xE3, +0x62, 0x8B, 0xEF, 0x9D, 0xEC, 0x7B, 0x64, 0x56, 0x49, 0xF8, 0xD9, 0x95, 0x7E, 0xA2, 0x83, 0xB3, +0x0F, 0xC3, 0xD9, 0xE5, 0xE7, 0xFC, 0xE1, 0x27, 0xE4, 0xFC, 0xD3, 0x8F, 0x9A, 0xE8, 0x1D, 0x6A, +0xA5, 0x22, 0xE4, 0xF1, 0x03, 0x93, 0x43, 0x51, 0xA8, 0x54, 0x59, 0x8B, 0x47, 0xB6, 0x54, 0x9C, +0x0A, 0x6D, 0xBC, 0x11, 0x42, 0x9E, 0x97, 0x5C, 0x77, 0xA2, 0xBC, 0x61, 0x5F, 0xDC, 0x9C, 0xCF, +0xCB, 0x7F, 0xB9, 0x34, 0x74, 0xF8, 0xDE, 0xD1, 0x25, 0xAB, 0x6E, 0x7A, 0x20, 0x5F, 0x48, 0x2D, +0xF4, 0x47, 0xDA, 0x5B, 0xA8, 0x5D, 0xB2, 0x54, 0x98, 0xE0, 0xF2, 0xE8, 0x42, 0x45, 0xA0, 0x44, +0x6B, 0xA9, 0xC1, 0xAA, 0x1A, 0x60, 0xA3, 0xB9, 0x49, 0x56, 0xD0, 0x39, 0x54, 0x2C, 0x38, 0xDA, +0xD7, 0x0B, 0x4B, 0x96, 0xAF, 0x84, 0xC3, 0x43, 0x05, 0xD0, 0x2C, 0x9E, 0x6D, 0xBB, 0xCC, 0x6B, +0x3A, 0x1B, 0xCD, 0x47, 0x70, 0x24, 0x95, 0xA7, 0xF2, 0x82, 0x38, 0x0A, 0x82, 0x72, 0xCB, 0xC4, +0xF0, 0x6E, 0x36, 0x3C, 0x0C, 0x46, 0x76, 0xC2, 0x6C, 0x69, 0xD6, 0x35, 0xBD, 0x5D, 0x1B, 0xDE, +0xAF, 0x14, 0x7A, 0xF7, 0x9C, 0xE9, 0x97, 0x83, 0x07, 0x32, 0xB9, 0x5C, 0xB7, 0x55, 0x2D, 0xAA, +0xE4, 0xD9, 0xE9, 0x28, 0xB5, 0x99, 0x4C, 0x9A, 0x0D, 0x97, 0xAC, 0x33, 0x91, 0xAD, 0x3D, 0x41, +0xFB, 0xC2, 0x71, 0xD3, 0x53, 0x76, 0x2C, 0x8E, 0x75, 0x50, 0x6A, 0xE7, 0x74, 0x61, 0xEE, 0xC9, +0x22, 0x21, 0xD0, 0xF8, 0x33, 0xAE, 0x98, 0xBC, 0xA4, 0x90, 0x3E, 0xDA, 0x2A, 0x2B, 0x51, 0x10, +0x25, 0xD5, 0x9D, 0xC8, 0x55, 0xB8, 0x0A, 0x8A, 0x69, 0xC8, 0x17, 0x06, 0x43, 0x54, 0xD8, 0x38, +0x20, 0xD6, 0x00, 0x8E, 0x07, 0xFA, 0xF1, 0x67, 0xF6, 0xC0, 0xF9, 0x1B, 0xAE, 0x82, 0xF1, 0x4C, +0xC9, 0xEB, 0x97, 0xA5, 0x9A, 0x6B, 0xD7, 0xD3, 0x76, 0x46, 0x2D, 0xEB, 0x13, 0x0C, 0xB4, 0xDF, +0x1D, 0x69, 0x5B, 0x7E, 0xA8, 0x90, 0x39, 0x06, 0x2F, 0x97, 0x66, 0xC5, 0x58, 0x2A, 0xF0, 0x1A, +0x1A, 0xFA, 0xF9, 0x65, 0x88, 0x2C, 0xDD, 0xA0, 0xCB, 0x0B, 0x6F, 0xAE, 0x68, 0x23, 0x8F, 0x19, +0x5A, 0x49, 0xA5, 0xCD, 0x92, 0x3E, 0xD4, 0x41, 0x34, 0xA1, 0x8C, 0xE2, 0x58, 0xA2, 0xA9, 0xF6, +0x7E, 0x56, 0xF0, 0x66, 0x3F, 0xA7, 0x5B, 0x00, 0x0D, 0x6C, 0x15, 0x21, 0xB5, 0x39, 0x5F, 0x84, +0x70, 0x32, 0x28, 0xDE, 0xBC, 0x60, 0xBC, 0x34, 0xD9, 0x33, 0xA9, 0xA1, 0x3D, 0x34, 0xB4, 0x24, +0xB8, 0x9A, 0xC8, 0xD9, 0xE8, 0x25, 0x4F, 0x62, 0x82, 0xBD, 0x14, 0x88, 0x02, 0xEF, 0x9A, 0x6C, +0x9E, 0x15, 0x01, 0x19, 0x34, 0x16, 0xE8, 0xC8, 0x51, 0x0B, 0x5A, 0x5B, 0x9B, 0x11, 0xA1, 0x33, +0xC0, 0x87, 0xCC, 0xF4, 0x21, 0x23, 0xFD, 0xB1, 0x30, 0xE8, 0xE8, 0x97, 0x8C, 0x4F, 0x4E, 0xB2, +0x04, 0x82, 0x5F, 0xF1, 0xE7, 0x55, 0x21, 0xA8, 0xC3, 0x49, 0xA0, 0x59, 0xD9, 0xD8, 0x9E, 0x9E, +0x5F, 0x2F, 0x2F, 0x6B, 0xEE, 0xFB, 0x4C, 0xC7, 0xBD, 0x3B, 0x10, 0x9A, 0x67, 0x38, 0x66, 0x25, +0x24, 0xD7, 0x0A, 0xDB, 0x28, 0x9C, 0xF1, 0xC8, 0x7D, 0x4E, 0x37, 0x80, 0xFB, 0x3C, 0xA6, 0x7A, +0xF7, 0x51, 0xAF, 0xB4, 0x9D, 0x81, 0xD3, 0x90, 0xA4, 0x82, 0xA6, 0x39, 0xBC, 0x7B, 0x54, 0x14, +0xF1, 0xBB, 0xD9, 0x1A, 0x19, 0xD3, 0xDA, 0xAA, 0x19, 0x04, 0x2C, 0x10, 0x9C, 0xF0, 0x96, 0x5C, +0xD8, 0x2C, 0x99, 0xAE, 0x52, 0xE6, 0x87, 0x55, 0x5B, 0x94, 0xE0, 0xEA, 0x73, 0xD6, 0xC1, 0xC2, +0xA0, 0x02, 0x1D, 0x78, 0x99, 0x42, 0xB4, 0xAF, 0x07, 0x19, 0xCA, 0x76, 0xE4, 0xA2, 0x97, 0xEC, +0xC0, 0xC9, 0xCB, 0x58, 0xCE, 0xEA, 0x95, 0x38, 0x9F, 0xFB, 0x61, 0xCB, 0x28, 0xA8, 0x89, 0x8B, +0xDE, 0xF1, 0xB5, 0x4A, 0x61, 0xF8, 0xBD, 0xA8, 0x60, 0x25, 0xDA, 0x1E, 0x49, 0x99, 0x0E, 0x62, +0x1D, 0x9D, 0x48, 0xA2, 0xE7, 0x34, 0x65, 0x4D, 0xCB, 0xF4, 0x4C, 0x25, 0x01, 0x78, 0xDE, 0xF2, +0x09, 0xFE, 0x53, 0x7E, 0x2C, 0xD0, 0x0B, 0x11, 0xCD, 0x5B, 0x94, 0x24, 0x75, 0x2B, 0x27, 0x52, +0xA8, 0x82, 0x4C, 0xB1, 0x4A, 0x6C, 0xEF, 0x4E, 0x24, 0xDA, 0x04, 0xF3, 0x12, 0x01, 0x68, 0xC0, +0x20, 0xA5, 0xAB, 0xD9, 0x0F, 0x17, 0xAD, 0x69, 0x85, 0x4B, 0xCF, 0x5C, 0x08, 0xE7, 0x76, 0xB7, +0x41, 0xEF, 0xAE, 0xDD, 0xB0, 0x62, 0xD9, 0x52, 0x50, 0x4C, 0xAF, 0x88, 0x9C, 0x26, 0xA4, 0x12, +0x33, 0xD9, 0x20, 0x12, 0x02, 0x6B, 0x9C, 0x93, 0xB7, 0x4C, 0x6B, 0x56, 0x8C, 0x45, 0x50, 0x7B, +0x2D, 0x27, 0xC5, 0x9F, 0xA5, 0xF5, 0x64, 0x95, 0xE2, 0xE4, 0x19, 0xB4, 0xF7, 0xD5, 0xE7, 0x0B, +0xB0, 0x39, 0xF9, 0xE4, 0x19, 0xD2, 0x92, 0xFA, 0x50, 0x28, 0xCC, 0xCA, 0x53, 0x55, 0xC5, 0xCF, +0x70, 0x62, 0x67, 0x5A, 0x83, 0xF0, 0x94, 0x23, 0xC5, 0x0B, 0x25, 0xA0, 0xDB, 0x69, 0x4A, 0x6A, +0xA0, 0x6D, 0x8F, 0x6B, 0x55, 0x27, 0x75, 0xF4, 0xF4, 0x69, 0xDD, 0x38, 0x6B, 0x17, 0xC5, 0xE0, +0x35, 0x82, 0xAA, 0x78, 0x7E, 0xB8, 0x01, 0x16, 0x24, 0x9A, 0x31, 0xF7, 0x1A, 0x06, 0xAB, 0xA2, +0x43, 0x71, 0x74, 0x00, 0x86, 0x7A, 0x8E, 0x42, 0x6B, 0x57, 0xE7, 0xD4, 0xF0, 0x33, 0x0E, 0x9C, +0x5A, 0xFE, 0x56, 0xF2, 0x76, 0xDC, 0x88, 0x52, 0xD4, 0xB5, 0xAD, 0x93, 0x32, 0x0B, 0x6A, 0x76, +0x12, 0xCB, 0x71, 0x65, 0xAD, 0x9A, 0x65, 0x79, 0x53, 0xDE, 0xB5, 0xE2, 0xBC, 0x14, 0x42, 0x53, +0xA1, 0x16, 0x28, 0x05, 0x45, 0xB5, 0x3C, 0x54, 0xF3, 0x44, 0xC5, 0xD2, 0xC4, 0x40, 0x6A, 0xAF, +0x7C, 0x7E, 0xD1, 0x62, 0x3D, 0x0F, 0x8B, 0xD7, 0xA0, 0xE4, 0x8B, 0xC4, 0x4E, 0x5B, 0xC6, 0xD2, +0x86, 0x2D, 0x7F, 0x20, 0xF0, 0x43, 0xF4, 0x82, 0x86, 0xA9, 0x39, 0xCB, 0x03, 0x5D, 0x6C, 0x44, +0xDA, 0x30, 0x56, 0x45, 0xBC, 0xB8, 0x5A, 0x28, 0x40, 0xB5, 0xE2, 0x80, 0x39, 0x96, 0x06, 0xA7, +0xA0, 0x43, 0x76, 0x62, 0x1C, 0xDA, 0x17, 0x2E, 0xF2, 0x1C, 0x47, 0x4A, 0x8C, 0xE0, 0x61, 0x97, +0x85, 0x7A, 0x15, 0x09, 0xC5, 0x84, 0x96, 0x5C, 0xB6, 0xF2, 0x27, 0xA5, 0xE3, 0x7F, 0x76, 0x12, +0x5B, 0x4A, 0x3E, 0xE0, 0x1A, 0xE5, 0xB5, 0x5D, 0x2B, 0xAE, 0x6D, 0xD1, 0xF4, 0x52, 0x44, 0x92, +0x02, 0xFD, 0x98, 0x6C, 0xDF, 0x27, 0x09, 0xD2, 0x73, 0x86, 0x76, 0x11, 0x63, 0x29, 0x29, 0xF0, +0xFC, 0x62, 0xB6, 0xBA, 0x43, 0xC5, 0x71, 0xAE, 0xA6, 0x8A, 0xA1, 0x39, 0xDD, 0xAB, 0x7A, 0xB2, +0xC9, 0x27, 0xC4, 0xFF, 0x29, 0xD6, 0xB4, 0xE2, 0x1F, 0x42, 0x91, 0xD6, 0x9C, 0x4F, 0x0D, 0xB2, +0xAD, 0x5A, 0x45, 0xDA, 0x20, 0x86, 0xCC, 0xD2, 0xB2, 0x05, 0x70, 0x93, 0x19, 0x97, 0xBA, 0xFA, +0x31, 0x33, 0x0F, 0x87, 0xB6, 0xED, 0x40, 0xC6, 0x2E, 0x64, 0xA5, 0xAA, 0x74, 0x05, 0x68, 0x1A, +0x87, 0xC4, 0x79, 0xC9, 0x10, 0xC7, 0x3D, 0xB9, 0x10, 0xF9, 0xEC, 0x6A, 0x9E, 0x42, 0xED, 0xDB, +0x24, 0xB5, 0x91, 0x9B, 0xEC, 0xDF, 0x76, 0x1E, 0x3A, 0x4B, 0x9A, 0xE5, 0x58, 0x63, 0x55, 0xD3, +0x3A, 0x48, 0xF9, 0x47, 0x02, 0xB5, 0xAD, 0xA9, 0x76, 0x7E, 0x71, 0x2A, 0xE4, 0x79, 0xFE, 0xF0, +0x2B, 0x36, 0x79, 0x85, 0x93, 0x8B, 0x20, 0x27, 0x8A, 0x70, 0x1A, 0x13, 0x01, 0x16, 0x8E, 0x20, +0x3F, 0xEB, 0x52, 0xA9, 0x22, 0xED, 0x07, 0x40, 0x09, 0xA4, 0xFE, 0x59, 0x27, 0x14, 0x47, 0x24, +0x4A, 0xC5, 0x04, 0x6E, 0x9E, 0x73, 0x74, 0x6F, 0x72, 0x6F, 0xB9, 0xC0, 0x56, 0x02, 0x42, 0xA2, +0xB5, 0x95, 0xD5, 0x64, 0xD7, 0xAF, 0x09, 0x55, 0x5A, 0xB0, 0x42, 0x84, 0x17, 0x69, 0x72, 0x9B, +0x29, 0xCD, 0x8A, 0xB1, 0x2B, 0x16, 0x5F, 0xBB, 0xD5, 0x32, 0x4B, 0xFF, 0x25, 0xF9, 0x23, 0x17, +0x8A, 0xBC, 0xEC, 0x70, 0x3C, 0x87, 0xA9, 0x61, 0xFB, 0x69, 0xCC, 0xA9, 0x3A, 0x94, 0xA3, 0xC4, +0x14, 0x14, 0x53, 0xC7, 0x91, 0x50, 0x68, 0x2A, 0x4D, 0xF7, 0x3B, 0x6F, 0xCC, 0xF1, 0x86, 0xC8, +0xF1, 0xA3, 0x2D, 0xFE, 0xC6, 0xD3, 0x32, 0x8E, 0x9D, 0x4E, 0xC1, 0xA6, 0x8E, 0x01, 0x45, 0x09, +0xED, 0x45, 0xCC, 0x5C, 0xA7, 0x6C, 0x15, 0x1D, 0x6C, 0x93, 0xC7, 0x5C, 0xAC, 0x1C, 0x80, 0x7C, +0xBA, 0xC2, 0xD4, 0xAE, 0xCD, 0x7B, 0x1A, 0xF6, 0xC8, 0x8E, 0x9D, 0xD0, 0xB1, 0x68, 0x11, 0x5B, +0x19, 0xCE, 0xB9, 0x9E, 0xC3, 0xE4, 0xED, 0x26, 0xB2, 0x69, 0xB8, 0xA6, 0xAD, 0x70, 0xEA, 0x49, +0xE1, 0xEE, 0xAC, 0x18, 0x4B, 0x1E, 0x61, 0x38, 0xDA, 0x7D, 0x04, 0x93, 0x54, 0xE7, 0x97, 0x4B, +0x13, 0xED, 0xE8, 0x04, 0x25, 0x6D, 0x5B, 0x1A, 0x14, 0x45, 0xA5, 0x20, 0xF9, 0x22, 0xCC, 0x66, +0xD4, 0xED, 0xEC, 0xEF, 0x23, 0x8E, 0x17, 0x0C, 0xCC, 0x59, 0xE7, 0xE8, 0xB5, 0xE0, 0x34, 0x27, +0xEA, 0x60, 0xF0, 0x89, 0xF2, 0x13, 0xE8, 0x08, 0x8D, 0xD3, 0x1C, 0x2C, 0x4A, 0xA0, 0xD3, 0xE1, +0x96, 0x31, 0x65, 0xE9, 0x48, 0xCF, 0xCD, 0x9B, 0xA7, 0xC7, 0xC6, 0x98, 0xC4, 0xD6, 0x89, 0x4D, +0x48, 0x15, 0x79, 0xD6, 0x15, 0xCF, 0x0B, 0x28, 0xE2, 0x9C, 0x7C, 0x52, 0xBA, 0xFC, 0x67, 0x8D, +0x3C, 0x45, 0x03, 0xCD, 0xFB, 0xCB, 0xC5, 0xB1, 0xA7, 0x11, 0x04, 0xBF, 0x30, 0xDA, 0xBC, 0x62, +0x7F, 0x58, 0x4E, 0x1C, 0x9E, 0x18, 0xD8, 0x74, 0x58, 0x16, 0xA5, 0x73, 0x7D, 0x3E, 0x85, 0x7D, +0x64, 0xA8, 0xA9, 0x1B, 0x05, 0x3F, 0xAF, 0xC5, 0x46, 0x14, 0x4C, 0x8B, 0xBD, 0x11, 0x98, 0xF0, +0x07, 0x9B, 0xFA, 0xB2, 0xE9, 0x23, 0xF0, 0x5A, 0x20, 0x27, 0xD0, 0xF5, 0x30, 0x67, 0x14, 0x6F, +0xE2, 0xCC, 0xE4, 0x7C, 0x8A, 0xD9, 0x09, 0x56, 0x8D, 0x84, 0x7D, 0x10, 0xF0, 0x49, 0x98, 0xDE, +0x3B, 0x3E, 0x44, 0x7D, 0xE8, 0xE8, 0x11, 0x58, 0x72, 0xE6, 0x99, 0xCC, 0xE6, 0xBA, 0x2A, 0x3A, +0x9B, 0x18, 0xC3, 0x4A, 0x12, 0x07, 0xE1, 0x60, 0x18, 0x38, 0xBB, 0x7C, 0x4D, 0x7E, 0x7C, 0xEB, +0x8A, 0x79, 0x0B, 0x2E, 0xFB, 0x0E, 0xA2, 0x1D, 0x4A, 0xD5, 0xC8, 0x25, 0x44, 0x5E, 0x72, 0xD4, +0xD0, 0xBC, 0x27, 0xFA, 0x0F, 0xDD, 0x3F, 0xA3, 0x16, 0x90, 0x59, 0x33, 0x96, 0x46, 0xBE, 0x37, +0xB4, 0xAD, 0xFF, 0x66, 0x50, 0xE0, 0xCC, 0x50, 0x43, 0xD3, 0x56, 0xBE, 0x60, 0x8F, 0xF3, 0x72, +0x70, 0x37, 0x22, 0xDE, 0x2B, 0x51, 0x72, 0x59, 0xB2, 0xD8, 0xEB, 0x4E, 0x01, 0x36, 0x5E, 0x9D, +0xE7, 0x9F, 0x5B, 0x44, 0x8E, 0xB6, 0xB7, 0x22, 0xF8, 0x02, 0xA7, 0xC4, 0x4A, 0x96, 0x93, 0x41, +0x46, 0xA8, 0xAB, 0xDF, 0x4E, 0x1D, 0xD8, 0x8F, 0xCE, 0xE2, 0x65, 0x0E, 0x26, 0xAC, 0xAA, 0x34, +0x4A, 0x14, 0xF3, 0xB4, 0x61, 0x8C, 0xEF, 0x8B, 0x82, 0xE1, 0xCD, 0x83, 0x42, 0xFF, 0x63, 0xEF, +0xEE, 0x03, 0x70, 0xDD, 0xAD, 0xB7, 0x42, 0xC1, 0x1F, 0x40, 0xD8, 0xD1, 0x07, 0x55, 0x87, 0x63, +0x99, 0x2E, 0x5A, 0x6F, 0x8A, 0xF0, 0x4E, 0x23, 0xA6, 0x34, 0x1B, 0xF5, 0x7C, 0x5F, 0x82, 0xCA, +0xF2, 0xD1, 0x33, 0xF1, 0x9B, 0x3C, 0x26, 0xF9, 0xF2, 0x07, 0xAF, 0x9D, 0xBF, 0xEC, 0xBA, 0xE2, +0xC0, 0xA1, 0xFB, 0x4F, 0x78, 0xC6, 0xF3, 0xCB, 0x9A, 0xFF, 0x90, 0x1A, 0x79, 0x96, 0xC4, 0xED, +0x6F, 0xF3, 0x49, 0x4F, 0xEA, 0x96, 0x9F, 0xF5, 0xE1, 0x8D, 0xFD, 0x87, 0xEE, 0x09, 0xA0, 0xFD, +0x78, 0x0F, 0x0D, 0xD7, 0x08, 0x47, 0xA2, 0x20, 0x8C, 0x8E, 0x63, 0x36, 0xC7, 0x98, 0x1A, 0x5B, +0x50, 0x27, 0x3C, 0xD5, 0x79, 0x8C, 0x7F, 0xE7, 0x74, 0x7B, 0xD4, 0x2B, 0x49, 0xD4, 0x3F, 0x8C, +0x49, 0x91, 0x3B, 0x05, 0x39, 0xF1, 0x07, 0xC8, 0xC2, 0x08, 0xB5, 0x5B, 0xA2, 0x57, 0x05, 0x15, +0x49, 0xE1, 0xDC, 0xE0, 0x38, 0xDB, 0x41, 0x6F, 0x22, 0x13, 0x47, 0x32, 0x05, 0x50, 0x11, 0x47, +0xCF, 0x08, 0x21, 0x28, 0xE5, 0xF3, 0x0C, 0x23, 0xD6, 0x31, 0x33, 0x44, 0x9D, 0x7B, 0x14, 0x32, +0xD1, 0xCA, 0x17, 0xF4, 0xA5, 0x12, 0x82, 0x20, 0x55, 0x31, 0x87, 0x5D, 0xA4, 0x39, 0xFD, 0xE8, +0xC4, 0xE4, 0x10, 0xFC, 0x98, 0x51, 0x7A, 0xF3, 0xA4, 0x0E, 0xF6, 0xA0, 0xB8, 0xAE, 0xA1, 0xED, +0xCC, 0x9F, 0x16, 0x52, 0xC7, 0x6E, 0x2A, 0x16, 0xF2, 0x6A, 0x18, 0x9D, 0x27, 0xB6, 0x83, 0x9D, +0x7F, 0x6E, 0xE3, 0x33, 0x91, 0x8B, 0xA1, 0x8E, 0xE8, 0x8B, 0x9E, 0x76, 0x99, 0x9D, 0x17, 0x23, +0xD7, 0x36, 0x1B, 0x30, 0x69, 0x17, 0x21, 0xE7, 0xD6, 0x31, 0x8A, 0x34, 0x8D, 0x9C, 0x2B, 0xD1, +0x52, 0x25, 0xDE, 0xDB, 0x37, 0xE4, 0xB2, 0xF1, 0xFA, 0x36, 0xDB, 0x9B, 0xB0, 0x70, 0x41, 0x07, +0xEC, 0xDC, 0x5E, 0xDB, 0x88, 0x4D, 0x55, 0x9A, 0x2E, 0x1B, 0x86, 0x96, 0x11, 0x25, 0xF9, 0x98, +0xC3, 0x0B, 0x4F, 0x61, 0x52, 0x21, 0x27, 0xA8, 0xB1, 0xB4, 0x4F, 0xF2, 0xE7, 0x02, 0xB1, 0xAE, +0x2D, 0xD4, 0x33, 0x35, 0x93, 0xCF, 0x72, 0xD2, 0x27, 0xB6, 0xA4, 0x46, 0x76, 0xDC, 0x17, 0x8F, +0x77, 0xDD, 0x8D, 0xBF, 0xBE, 0x0B, 0x6A, 0x5D, 0x78, 0xC4, 0x58, 0xEA, 0xFC, 0xA6, 0x6E, 0xB3, +0x7A, 0xBC, 0x26, 0xF0, 0xB2, 0xC5, 0x89, 0xBE, 0xD3, 0x12, 0x4E, 0x7C, 0x31, 0xCA, 0x8E, 0xEF, +0xE2, 0x44, 0x39, 0xC8, 0x6A, 0x98, 0xA8, 0x3B, 0xC2, 0x27, 0x60, 0x9E, 0x9A, 0x5C, 0x24, 0xDB, +0x64, 0xE0, 0x92, 0x0F, 0xFF, 0xB6, 0x1F, 0x3D, 0xE3, 0xB5, 0x4B, 0x17, 0xC1, 0xC0, 0xAE, 0x1D, +0x60, 0xE2, 0xF5, 0x30, 0xFC, 0x51, 0x4C, 0x9C, 0x14, 0x80, 0x57, 0x63, 0xBF, 0x4A, 0x34, 0xAD, +0xFA, 0xCF, 0xDE, 0x7D, 0x3F, 0xDF, 0x06, 0x2F, 0x93, 0x5E, 0x91, 0x3E, 0x19, 0xBF, 0x3F, 0xB8, +0xD3, 0x03, 0xC4, 0x59, 0x19, 0xB8, 0x37, 0x61, 0x86, 0x97, 0x18, 0xD8, 0x5D, 0x27, 0x4E, 0x3A, +0xA5, 0x1B, 0xD9, 0x67, 0x45, 0x56, 0xC0, 0xF7, 0xB8, 0x1C, 0x6C, 0xFE, 0x36, 0xAD, 0x25, 0xA5, +0xA4, 0x39, 0x15, 0x98, 0xF8, 0x54, 0x15, 0xC2, 0x32, 0x07, 0x31, 0x64, 0x70, 0x14, 0x2F, 0x09, +0xFA, 0x24, 0xC8, 0xFC, 0x71, 0x58, 0xB2, 0x64, 0x11, 0xF8, 0x68, 0x2F, 0x8F, 0x5B, 0x5B, 0x85, +0x2E, 0xFB, 0x41, 0xE0, 0xC4, 0x92, 0xC0, 0xB9, 0x27, 0x25, 0x29, 0xF2, 0x8A, 0x30, 0x56, 0x96, +0xA3, 0xC3, 0x55, 0xC3, 0xD2, 0x43, 0x41, 0xAF, 0x5C, 0x87, 0x54, 0x70, 0xA5, 0x9C, 0xC3, 0x64, +0xB2, 0x79, 0xDC, 0xCE, 0x3A, 0xA7, 0x6C, 0x31, 0xE2, 0xAC, 0x89, 0xF6, 0xF3, 0xA5, 0xC6, 0xF6, +0xDD, 0xAA, 0xF8, 0x02, 0xBF, 0xA4, 0xA2, 0x25, 0x91, 0x8A, 0xCA, 0xC1, 0x0F, 0x41, 0xC4, 0xCD, +0x83, 0x34, 0x60, 0x04, 0x1F, 0x23, 0xE2, 0xB5, 0xD8, 0xB7, 0x73, 0x27, 0x74, 0x2F, 0x5E, 0x0C, +0x5C, 0xBD, 0xD6, 0xDA, 0xD2, 0xBC, 0x46, 0x2E, 0x41, 0x14, 0xAA, 0xAE, 0xC6, 0xC1, 0x49, 0xA0, +0x57, 0x88, 0xB1, 0x30, 0x66, 0x1A, 0xA6, 0x46, 0xA7, 0x95, 0x00, 0x0A, 0xAA, 0x29, 0x66, 0xD3, +0x65, 0x78, 0xEE, 0xF8, 0x5C, 0x24, 0xFB, 0xA4, 0xA4, 0x1D, 0x4F, 0x49, 0xE2, 0x44, 0x65, 0x33, +0x2A, 0x5F, 0x8B, 0x07, 0x6F, 0xDC, 0xAF, 0x8D, 0x87, 0xD9, 0xA1, 0xE1, 0x23, 0xB5, 0xFB, 0x93, +0x63, 0xE3, 0xD0, 0xD8, 0xEA, 0x8D, 0xBD, 0x95, 0x68, 0x20, 0x0B, 0x1D, 0x72, 0xF7, 0xE4, 0xA1, +0x4E, 0x44, 0xAF, 0x58, 0xCB, 0x22, 0x46, 0xB0, 0xAC, 0x9E, 0x98, 0xDA, 0x2A, 0x45, 0x44, 0x63, +0x64, 0x3C, 0xBD, 0x7C, 0xAD, 0x51, 0x9A, 0xCD, 0xA4, 0xE0, 0xB8, 0x68, 0xB5, 0x3C, 0xD1, 0x0D, +0xAF, 0x41, 0xE2, 0xC5, 0xD0, 0xE3, 0xC8, 0xA8, 0x61, 0xB6, 0xDC, 0x10, 0x9D, 0x27, 0x34, 0x9E, +0x40, 0x69, 0xCD, 0x7A, 0x83, 0xB8, 0x5E, 0xD1, 0x58, 0xDD, 0x53, 0x53, 0x8D, 0xB9, 0xDE, 0x50, +0x12, 0xE7, 0x39, 0xA6, 0xEA, 0x65, 0x7F, 0x06, 0x78, 0x85, 0x88, 0xC2, 0x56, 0x15, 0xFD, 0x76, +0x56, 0x47, 0xE9, 0xD8, 0xAC, 0x60, 0xCB, 0xFB, 0x3B, 0xE7, 0x6D, 0xCC, 0x72, 0xEC, 0xB6, 0x42, +0x76, 0xF0, 0xD2, 0x97, 0x53, 0x14, 0x7D, 0xAA, 0x52, 0x20, 0xB6, 0x70, 0x00, 0x53, 0x96, 0x03, +0x94, 0x63, 0xA5, 0x91, 0x05, 0xB4, 0x44, 0x8A, 0x95, 0x9B, 0xD6, 0x77, 0x28, 0xE0, 0xF5, 0x38, +0xB0, 0x63, 0x07, 0xAC, 0x58, 0x77, 0x06, 0xFB, 0x67, 0x7D, 0xE2, 0x0E, 0xC0, 0xC9, 0x33, 0x4F, +0xAF, 0x18, 0x63, 0x4B, 0xE5, 0xB2, 0xAD, 0x60, 0xB8, 0x43, 0x39, 0x59, 0x83, 0x1C, 0x27, 0x0A, +0xBF, 0x91, 0xDB, 0xAC, 0x04, 0x95, 0x67, 0x50, 0x5A, 0xB3, 0x68, 0xE5, 0xDE, 0x15, 0xCC, 0xEF, +0x58, 0x05, 0xAF, 0x31, 0x3A, 0xB6, 0xE7, 0x87, 0x93, 0xB1, 0x44, 0xF7, 0x26, 0xF4, 0x99, 0x92, +0xDE, 0xE8, 0x5B, 0x93, 0xE5, 0xAA, 0x9D, 0xDA, 0xCA, 0x34, 0x3A, 0xE2, 0x7D, 0x3D, 0xC7, 0xA0, +0x7B, 0x89, 0xD7, 0xCD, 0xC1, 0xAA, 0x49, 0x6C, 0x8C, 0xF5, 0x5D, 0x3B, 0xCA, 0x39, 0xE2, 0x49, +0x39, 0xE8, 0xAF, 0x10, 0x63, 0x55, 0xB7, 0x54, 0xAE, 0x5A, 0x81, 0x40, 0x80, 0x49, 0x6A, 0xC4, +0xEF, 0x83, 0xB0, 0xDF, 0xCF, 0x06, 0x5D, 0x09, 0x35, 0xE7, 0x89, 0x0A, 0xBA, 0x2A, 0x9A, 0x66, +0x65, 0x4B, 0x85, 0xD3, 0x1E, 0x2B, 0x7E, 0x21, 0x72, 0xA3, 0xDD, 0x3F, 0xB0, 0x05, 0xDF, 0x16, +0x4A, 0x0A, 0xE8, 0x3A, 0xA1, 0x4A, 0x02, 0xDB, 0x39, 0xA4, 0x50, 0xD7, 0x21, 0xA6, 0xF6, 0xF2, +0x85, 0x2C, 0x2C, 0x58, 0xB2, 0xD8, 0x7B, 0x2C, 0xE7, 0xAD, 0x72, 0xB1, 0x2D, 0x7D, 0xA1, 0x96, +0x1D, 0x38, 0x29, 0xCD, 0xCF, 0xAF, 0x08, 0x63, 0x0B, 0xA6, 0x6E, 0x62, 0xFC, 0x6A, 0x51, 0x29, +0x2A, 0x15, 0x88, 0x2B, 0x88, 0x97, 0x8A, 0xF5, 0xB1, 0x65, 0xB5, 0xBE, 0x1D, 0xB2, 0x27, 0x82, +0xF8, 0xDA, 0x0B, 0x79, 0xEA, 0x74, 0xF8, 0xD9, 0x1F, 0xF6, 0x09, 0xC1, 0xF6, 0x5F, 0x89, 0x76, +0x85, 0x0D, 0xE8, 0x36, 0x31, 0xEB, 0x45, 0x5E, 0xB0, 0x86, 0xE9, 0x3C, 0x43, 0x56, 0x61, 0x60, +0x74, 0x08, 0xBA, 0xD0, 0x33, 0x16, 0x10, 0x9D, 0x03, 0xEA, 0x7B, 0x62, 0x6A, 0xDA, 0x09, 0x61, +0xE4, 0xF0, 0xEA, 0x55, 0x50, 0xBC, 0x14, 0x89, 0x62, 0x80, 0xC3, 0x3C, 0x2D, 0xE7, 0xA3, 0x66, +0x68, 0x52, 0x33, 0x86, 0xC5, 0x4A, 0x4F, 0x3D, 0xBC, 0xD8, 0x65, 0x83, 0x25, 0x45, 0x29, 0x00, +0x92, 0xDA, 0x50, 0x54, 0xC3, 0xCD, 0xA7, 0x75, 0x3E, 0xF6, 0xC5, 0xC8, 0xDF, 0xD0, 0xFD, 0xB8, +0x2C, 0x09, 0xB5, 0xEA, 0x4C, 0x60, 0x85, 0x7E, 0x3C, 0xEA, 0x67, 0xAA, 0x23, 0x4E, 0x8F, 0x78, +0x68, 0x6A, 0x6B, 0x47, 0x33, 0xC8, 0xB6, 0xC1, 0x0A, 0xC6, 0x1D, 0xCB, 0x08, 0xBB, 0x82, 0x14, +0x81, 0x93, 0x40, 0xAF, 0x08, 0x63, 0xC3, 0x7E, 0x49, 0xC7, 0xA4, 0x73, 0xA9, 0x21, 0x11, 0x43, +0x69, 0x15, 0x21, 0x87, 0x29, 0x3C, 0x83, 0x4A, 0x67, 0xC5, 0x10, 0x6B, 0x62, 0x0A, 0x04, 0x82, +0x98, 0xCD, 0x90, 0x21, 0x28, 0x55, 0xCE, 0x94, 0x8D, 0xDC, 0x37, 0xE0, 0x35, 0x4A, 0xBD, 0xDB, +0x7F, 0xBC, 0xD7, 0x54, 0x3A, 0x7F, 0x2E, 0xD8, 0x55, 0x28, 0xE3, 0x05, 0x20, 0x04, 0xCA, 0x57, +0xAC, 0x00, 0x4F, 0x35, 0x50, 0xBA, 0x05, 0x7B, 0x77, 0xED, 0x82, 0x44, 0x53, 0x0B, 0x94, 0x38, +0x09, 0x93, 0x06, 0x02, 0x26, 0x4B, 0xF4, 0x46, 0xCE, 0xE1, 0x4E, 0xCA, 0xA6, 0x8F, 0x57, 0x84, +0xB1, 0xAD, 0xF3, 0x56, 0x74, 0x97, 0xAB, 0x2E, 0x2F, 0xA8, 0x01, 0x74, 0x80, 0x79, 0x88, 0x21, +0x83, 0xC9, 0x9D, 0xB7, 0xF4, 0x02, 0x5B, 0x58, 0xAF, 0x88, 0xDE, 0x80, 0xCC, 0x62, 0x31, 0x03, +0x43, 0xBD, 0x5B, 0xAF, 0xE8, 0x5A, 0x71, 0xC3, 0x87, 0xE1, 0x35, 0x4A, 0x0D, 0xED, 0x67, 0xFD, +0x8D, 0x24, 0xCB, 0x7A, 0x2E, 0x5F, 0x86, 0xFE, 0x92, 0x01, 0x93, 0xA8, 0xB1, 0x26, 0x31, 0x39, +0x90, 0xD7, 0x65, 0x18, 0x1A, 0x4D, 0x22, 0x63, 0xE7, 0x81, 0xAC, 0x22, 0xA6, 0x2E, 0x87, 0xD8, +0x50, 0x33, 0x8E, 0x73, 0x4E, 0xCA, 0xF8, 0xBD, 0x93, 0xCE, 0x58, 0xAA, 0x83, 0xEA, 0xEA, 0x5A, +0xB2, 0xC6, 0xEF, 0x8F, 0x26, 0x64, 0xD6, 0x84, 0xC5, 0xB3, 0x20, 0x3D, 0x18, 0x50, 0xC0, 0xEF, +0x13, 0x98, 0x1A, 0xA2, 0xB1, 0x73, 0xE9, 0x74, 0x1A, 0x0A, 0x85, 0xBC, 0x37, 0x90, 0xB9, 0x34, +0x76, 0xD3, 0xE9, 0x34, 0x69, 0x7C, 0x26, 0x44, 0xE0, 0xBD, 0xE2, 0xF3, 0x0F, 0x49, 0x5C, 0x95, +0xCD, 0x8F, 0xB4, 0x30, 0xA6, 0x95, 0x31, 0x5F, 0x2D, 0xFB, 0x64, 0xE8, 0xEF, 0x1F, 0x80, 0x45, +0xE4, 0x19, 0x33, 0x3C, 0x5D, 0xAC, 0x4D, 0xEE, 0x70, 0x4E, 0x3D, 0x55, 0xBC, 0x74, 0xFD, 0x7B, +0xBB, 0xFD, 0x5C, 0xF6, 0x33, 0xBB, 0x7F, 0xFB, 0xCD, 0x5B, 0xB3, 0xC3, 0x87, 0x63, 0xE4, 0x00, +0xB3, 0x95, 0xDF, 0xBA, 0x01, 0x85, 0x92, 0x06, 0x25, 0x83, 0x87, 0x92, 0x66, 0x41, 0x32, 0x57, +0x64, 0x15, 0x06, 0x5E, 0xB3, 0x34, 0x86, 0x01, 0x46, 0x76, 0xC3, 0x84, 0x36, 0xF6, 0x9A, 0x04, +0x2B, 0x88, 0x6C, 0xC1, 0x7F, 0x3F, 0xC5, 0xAA, 0x12, 0x1B, 0x07, 0xE4, 0x75, 0x1C, 0xD2, 0x6D, +0xEF, 0xDE, 0xFD, 0xB0, 0x6E, 0xED, 0x5A, 0x16, 0xC3, 0xB2, 0x21, 0xA3, 0x6C, 0x1E, 0x07, 0x9C, +0x94, 0xA9, 0x39, 0x27, 0x8D, 0xB1, 0x2B, 0x36, 0x6C, 0x0C, 0xAE, 0x5D, 0x79, 0xC9, 0x7F, 0xAD, +0x3D, 0xEF, 0x43, 0xB7, 0xF2, 0x12, 0xDF, 0x92, 0xC9, 0x0D, 0x81, 0xA8, 0xA8, 0x0C, 0x6D, 0x99, +0xDF, 0x12, 0x64, 0xAB, 0x5C, 0xA8, 0x11, 0x49, 0xC7, 0x63, 0x5B, 0xEF, 0x80, 0xAF, 0xE7, 0x68, +0x39, 0xA7, 0xEA, 0xD3, 0xF2, 0xC3, 0x0B, 0xE0, 0x35, 0x4A, 0xC5, 0x52, 0xE9, 0x3E, 0x9B, 0x57, +0x8E, 0x09, 0x54, 0x26, 0xC3, 0x07, 0x91, 0xB9, 0x1E, 0x02, 0x97, 0x49, 0xA5, 0xD9, 0xCC, 0x49, +0xDA, 0x39, 0x4B, 0xD7, 0xC1, 0xA1, 0x5A, 0x29, 0xC3, 0x3A, 0x75, 0x18, 0xBB, 0xE2, 0xFC, 0x5B, +0xE2, 0xBE, 0xCA, 0xA1, 0x77, 0x14, 0xAA, 0x85, 0xD5, 0x15, 0x2D, 0xEB, 0x34, 0xA8, 0x45, 0xB0, +0x2A, 0x25, 0xF0, 0xAB, 0x7E, 0xB6, 0x26, 0x2C, 0x5D, 0x34, 0xC0, 0x8F, 0x5F, 0x46, 0x40, 0xD7, +0x5F, 0x80, 0xDA, 0xCA, 0x4E, 0xEE, 0xF8, 0x98, 0x3E, 0x9A, 0x03, 0x2C, 0x89, 0xC2, 0xAC, 0x1A, +0x7C, 0x4F, 0x07, 0xF2, 0xC7, 0x16, 0x1F, 0x50, 0x02, 0xB1, 0x9F, 0xD1, 0xEF, 0x6C, 0x89, 0x32, +0xA7, 0x30, 0xE6, 0xD2, 0x2D, 0x39, 0x99, 0x84, 0xF9, 0xED, 0xCD, 0x6C, 0x9E, 0x07, 0x0D, 0x2A, +0xE1, 0x1C, 0xF3, 0xA4, 0xAC, 0x6C, 0x39, 0x29, 0x8C, 0xB5, 0xAC, 0xEA, 0x42, 0xAD, 0x92, 0xB9, +0xF2, 0xE8, 0x33, 0xB7, 0x25, 0x8E, 0x6D, 0xBB, 0xDD, 0x4D, 0xE6, 0xF2, 0xA0, 0x59, 0xDE, 0x50, +0x66, 0xCB, 0x72, 0x21, 0x49, 0x85, 0xB6, 0xD3, 0xEA, 0x8D, 0x49, 0x8A, 0xB9, 0x3A, 0x50, 0x81, +0xA1, 0x00, 0x9D, 0x5F, 0xD7, 0xD6, 0x4E, 0xE9, 0xC1, 0x5D, 0x2F, 0x87, 0x16, 0xB6, 0x9E, 0x39, +0xA9, 0xCA, 0xEA, 0xB3, 0x08, 0xA7, 0x96, 0xEB, 0x4B, 0x86, 0xC9, 0x44, 0xD1, 0xAD, 0xBF, 0xAF, +0x0F, 0xD6, 0xAE, 0x5D, 0x85, 0xAA, 0x98, 0xF7, 0x76, 0x01, 0x82, 0x7B, 0x6A, 0x30, 0x76, 0xC5, +0xD9, 0xEF, 0x3B, 0xC3, 0x2E, 0x67, 0xFF, 0x59, 0x91, 0xD5, 0x6B, 0x1A, 0xA2, 0x31, 0xBF, 0x68, +0x65, 0xA5, 0x82, 0xEE, 0x62, 0x7E, 0x11, 0x81, 0x6F, 0xB4, 0x27, 0x1C, 0xD5, 0x19, 0x0B, 0x7E, +0xD0, 0x19, 0x0C, 0xEA, 0xF5, 0xC4, 0x32, 0x72, 0xBD, 0x8C, 0x06, 0xAB, 0x2C, 0x10, 0x24, 0xC8, +0x65, 0xC7, 0x4E, 0xAB, 0x1D, 0x3C, 0x33, 0x21, 0xD6, 0xE7, 0x13, 0x68, 0xDF, 0x86, 0x39, 0xE9, +0x7D, 0xF4, 0x6F, 0x62, 0xA8, 0xC0, 0x4C, 0x91, 0x08, 0x83, 0x83, 0xC3, 0x6C, 0xD6, 0x22, 0x35, +0xB5, 0x11, 0xFC, 0x6A, 0xD9, 0x66, 0xFC, 0x64, 0xAC, 0x49, 0x7B, 0x59, 0x8C, 0xA5, 0x51, 0xAC, +0xE5, 0x52, 0xFA, 0x6F, 0x23, 0x92, 0x79, 0x91, 0x60, 0xA7, 0xA3, 0x8E, 0x91, 0x03, 0x5E, 0xA2, +0xA1, 0x1B, 0x36, 0xA4, 0x27, 0xC7, 0x21, 0xD1, 0xD0, 0x44, 0x33, 0xC7, 0x18, 0xE8, 0x6F, 0x3B, +0xAC, 0x8E, 0xC0, 0x93, 0xDC, 0xFA, 0x5C, 0x45, 0xB6, 0x07, 0x0F, 0xA5, 0x97, 0x26, 0x74, 0x73, +0xA2, 0x01, 0xAF, 0x61, 0x52, 0x5B, 0x17, 0xA6, 0xD0, 0xBE, 0x0E, 0x52, 0x25, 0x05, 0x45, 0x09, +0x54, 0x32, 0x44, 0xB7, 0xC3, 0x87, 0x8F, 0x40, 0x77, 0xF7, 0x7C, 0xD6, 0x98, 0x25, 0x0A, 0xB4, +0x10, 0xC2, 0x0E, 0x65, 0x2B, 0x99, 0x97, 0x1D, 0xF2, 0xCC, 0xAE, 0x60, 0x7C, 0xC5, 0xDB, 0xE5, +0x73, 0x2E, 0xF9, 0x68, 0x87, 0x52, 0xE0, 0xFF, 0x7C, 0xC5, 0x9A, 0x8B, 0x6E, 0xF4, 0xC7, 0xE6, +0x2B, 0x21, 0xD9, 0x0F, 0x3E, 0x2B, 0xC7, 0xF2, 0xAC, 0x74, 0xFA, 0x74, 0x0C, 0xC8, 0x59, 0xE7, +0x9D, 0x89, 0xF6, 0xD3, 0x2A, 0x00, 0xA1, 0x50, 0x6E, 0xED, 0x3F, 0xE6, 0xF6, 0xBB, 0xDE, 0x1C, +0x63, 0x9A, 0x43, 0x51, 0xAC, 0x56, 0x20, 0x98, 0xE8, 0x7A, 0xD9, 0xE5, 0x20, 0xA7, 0x32, 0x85, +0x4A, 0x60, 0x08, 0xB2, 0x6F, 0xAC, 0x5E, 0x50, 0x2E, 0x0A, 0x2E, 0xF8, 0x54, 0x0E, 0x31, 0xE3, +0x0C, 0x34, 0x36, 0x35, 0xE1, 0xEF, 0x88, 0x23, 0xA3, 0x4F, 0x82, 0x61, 0x8F, 0x64, 0xA4, 0xFA, +0xCF, 0x85, 0x97, 0x49, 0x33, 0x8E, 0x1D, 0xC9, 0xFB, 0xED, 0x88, 0x3A, 0x57, 0xF3, 0x66, 0xFE, +0x22, 0xC7, 0x2E, 0xBF, 0xC3, 0x6F, 0x66, 0x04, 0xDB, 0xC9, 0x20, 0x83, 0x2A, 0x78, 0xA3, 0x0F, +0xEC, 0x03, 0x45, 0xE2, 0xC0, 0x64, 0xDB, 0x44, 0x79, 0xD0, 0x5C, 0xAA, 0x0C, 0xF0, 0xEA, 0x8B, +0x1D, 0xCB, 0xF3, 0x8C, 0xD9, 0x34, 0x72, 0x74, 0xA2, 0x5C, 0xD6, 0xE2, 0xEE, 0xF5, 0xCD, 0x06, +0x82, 0x0D, 0xAF, 0x99, 0x8A, 0xC5, 0x17, 0x22, 0x52, 0xC7, 0xF3, 0x3A, 0xCF, 0xC9, 0x91, 0xA6, +0xA2, 0x69, 0xE3, 0x2E, 0xC6, 0xB3, 0x92, 0x4C, 0x3E, 0x48, 0x05, 0x34, 0xCC, 0xCF, 0x36, 0x36, +0x35, 0xC0, 0x64, 0xAA, 0xC0, 0xB2, 0x60, 0xA6, 0x5E, 0x7A, 0xD9, 0x66, 0x69, 0x46, 0x12, 0x4B, +0x13, 0xC0, 0x5B, 0xA2, 0xEA, 0x46, 0x57, 0x4B, 0x7E, 0x07, 0x8C, 0xC9, 0x4F, 0xF2, 0x99, 0xDD, +0xAD, 0xA5, 0xC9, 0xC3, 0xC0, 0x95, 0x06, 0x31, 0x15, 0x97, 0xC5, 0x94, 0x23, 0x7E, 0x50, 0xC7, +0x40, 0xAF, 0x8F, 0x96, 0x13, 0x5A, 0xB0, 0x7B, 0xD7, 0x4E, 0x56, 0x15, 0x2F, 0x49, 0x22, 0x6B, +0xD9, 0xB7, 0xD9, 0x1A, 0x6C, 0x97, 0xAD, 0x08, 0xAB, 0x4F, 0x43, 0xA5, 0x42, 0x72, 0xC9, 0x17, +0x86, 0x52, 0x7E, 0xF2, 0xCD, 0x27, 0x7B, 0xCA, 0xF6, 0xA9, 0x46, 0x7E, 0x59, 0xC2, 0x2B, 0x60, +0xB1, 0x34, 0x9E, 0x61, 0x73, 0x40, 0x1B, 0x4A, 0xC9, 0x87, 0x3C, 0x72, 0xF4, 0x10, 0xAC, 0x5A, +0xBD, 0x8C, 0x0D, 0x24, 0xA1, 0xF4, 0x9D, 0x2A, 0x89, 0x2F, 0x3B, 0xA6, 0x3F, 0x21, 0xC6, 0x52, +0x32, 0x7C, 0xF9, 0x25, 0x1F, 0x59, 0x1C, 0xF4, 0x73, 0xEF, 0x17, 0xAA, 0x23, 0xEF, 0x73, 0x2C, +0x3D, 0x6C, 0xDB, 0xDE, 0xAA, 0x2F, 0xE6, 0xA2, 0xCB, 0xD4, 0x91, 0x8D, 0x38, 0xA8, 0x48, 0x73, +0x7B, 0xF1, 0x86, 0xF0, 0x61, 0xB5, 0x30, 0x09, 0x5F, 0xF9, 0xFC, 0x17, 0x40, 0x96, 0x69, 0x62, +0x99, 0xE8, 0x35, 0x61, 0x31, 0xDB, 0xEA, 0x4D, 0x47, 0x71, 0x6A, 0x93, 0xDA, 0x14, 0x25, 0x04, +0xE1, 0x48, 0x23, 0x54, 0x72, 0xBD, 0xD7, 0x0D, 0x6C, 0xDF, 0x71, 0x5A, 0x6D, 0xA8, 0x9C, 0x29, +0x29, 0xFE, 0x50, 0x96, 0x86, 0x82, 0x52, 0x97, 0x3B, 0xCD, 0xC0, 0xAA, 0xD3, 0xD0, 0xE0, 0x20, +0x74, 0xB4, 0x77, 0x82, 0x0F, 0x91, 0x39, 0xD2, 0x6E, 0xE9, 0x89, 0x63, 0x57, 0xBE, 0xDC, 0x43, +0xFE, 0x92, 0xBD, 0x98, 0xD7, 0x5F, 0xFF, 0xF7, 0x4B, 0xAF, 0x5A, 0xCA, 0x6F, 0x5F, 0x1A, 0xD3, +0xFF, 0xAE, 0x31, 0x58, 0xBA, 0xC2, 0xC7, 0xA5, 0x02, 0x11, 0x49, 0x43, 0x78, 0x50, 0x03, 0xC5, +0x2D, 0x82, 0x60, 0xE4, 0x41, 0xC7, 0xF8, 0x94, 0xE6, 0x03, 0xA2, 0x5C, 0x32, 0x8F, 0x8F, 0xF5, +0x7C, 0xE2, 0xCF, 0x82, 0x21, 0xB0, 0xFD, 0xED, 0x86, 0x0D, 0x4C, 0xFD, 0x52, 0xF5, 0x9E, 0x53, +0x1B, 0x34, 0x22, 0xC9, 0x41, 0x0C, 0xCE, 0xE3, 0x10, 0x0A, 0x05, 0x80, 0xB6, 0x4E, 0xE5, 0xD2, +0x63, 0xED, 0xE5, 0xDC, 0x78, 0x73, 0xDB, 0xCA, 0xB7, 0x3F, 0x90, 0x1B, 0xDF, 0xF5, 0x9A, 0x2B, +0x4B, 0x25, 0xF2, 0xC7, 0x97, 0x77, 0xF1, 0x56, 0xE6, 0x6D, 0x96, 0xAB, 0x60, 0x72, 0x44, 0x81, +0x50, 0x40, 0x66, 0x7E, 0x46, 0x30, 0x18, 0x81, 0x25, 0x4B, 0x96, 0xC1, 0xEE, 0xDD, 0xBB, 0xF0, +0x5A, 0x09, 0x50, 0xCC, 0x27, 0x5B, 0xF2, 0x63, 0x19, 0x61, 0x7E, 0xFB, 0xF9, 0x8F, 0x27, 0x93, +0x07, 0x6C, 0x98, 0x05, 0xBD, 0xA8, 0xC4, 0x12, 0x7E, 0x1B, 0xF5, 0x6B, 0x7F, 0x27, 0x6B, 0x87, +0xDA, 0xCC, 0xFC, 0x31, 0xF0, 0xD9, 0x93, 0x10, 0x12, 0xB3, 0x10, 0xE1, 0x33, 0x98, 0x3F, 0x4C, +0x82, 0x63, 0xA6, 0x91, 0x29, 0x15, 0x10, 0x31, 0x7B, 0x41, 0x65, 0x1F, 0x88, 0x16, 0x42, 0x15, +0x3F, 0x58, 0xDE, 0x14, 0x90, 0xD9, 0xDE, 0x48, 0x78, 0xDD, 0xF2, 0xCA, 0x4F, 0xEB, 0x93, 0xC5, +0xA9, 0xBE, 0x38, 0x1C, 0x8A, 0x61, 0x86, 0x27, 0xEC, 0x2D, 0x3E, 0xF0, 0x66, 0x80, 0x51, 0xF9, +0x25, 0xBA, 0xD3, 0xD6, 0x32, 0xAE, 0x72, 0x6C, 0xC9, 0xA9, 0x3A, 0x3E, 0xFE, 0xE5, 0x12, 0x3A, +0x4C, 0x12, 0xDB, 0x5A, 0xC9, 0xD9, 0x2C, 0xD4, 0x89, 0xE0, 0xC1, 0x76, 0x1D, 0x11, 0x46, 0x86, +0x47, 0x60, 0xE9, 0xB2, 0xA5, 0x2C, 0xB5, 0x47, 0xB5, 0x61, 0x32, 0x6A, 0x31, 0xB4, 0xB3, 0x97, +0xE3, 0xE9, 0x6E, 0x81, 0x59, 0xD2, 0x8B, 0x3A, 0x4F, 0x98, 0x28, 0x8D, 0xFA, 0xAC, 0xF1, 0xF7, +0x1E, 0x3E, 0xB6, 0x9F, 0x55, 0x3C, 0x70, 0x22, 0x26, 0xCC, 0x65, 0xF2, 0x78, 0x1D, 0xB6, 0xCE, +0xDB, 0xB1, 0xA8, 0x33, 0x9B, 0x76, 0x00, 0x58, 0x60, 0x38, 0x1C, 0x54, 0x2C, 0x01, 0x0C, 0xD7, +0x93, 0x52, 0x60, 0xD3, 0xB7, 0xBD, 0x5A, 0x27, 0x6A, 0xE1, 0x27, 0x5B, 0xAA, 0xB0, 0xD1, 0x72, +0x0A, 0x4B, 0xB2, 0x97, 0x8A, 0x69, 0xD6, 0xB3, 0xE2, 0xFA, 0x03, 0xAC, 0xD0, 0xCB, 0xAF, 0xFA, +0xA0, 0x6C, 0x6B, 0xDD, 0xA5, 0x7C, 0xEE, 0xF2, 0x65, 0x0F, 0xF4, 0x1E, 0x3B, 0x04, 0xF0, 0x9A, +0xEA, 0x12, 0x20, 0x73, 0x16, 0xC9, 0x6F, 0xDE, 0x90, 0x12, 0x03, 0x28, 0x10, 0x3A, 0x68, 0xE5, +0x2A, 0xFE, 0x94, 0xF1, 0x60, 0x73, 0x30, 0xD0, 0xDB, 0xE7, 0xCD, 0xEA, 0x40, 0xC7, 0xB2, 0x54, +0xC8, 0xB2, 0xF6, 0x4B, 0x0C, 0x05, 0xBB, 0x0B, 0x99, 0x1E, 0xB2, 0xB5, 0x83, 0x30, 0x0B, 0x7A, +0x51, 0xC9, 0x28, 0x55, 0x52, 0x21, 0xDB, 0x48, 0xA1, 0x0A, 0x35, 0x40, 0x33, 0x29, 0x2C, 0x71, +0xA0, 0x52, 0x35, 0x19, 0xC3, 0x48, 0x02, 0x05, 0x56, 0x85, 0x67, 0x81, 0x66, 0xB8, 0x6C, 0x37, +0x39, 0x7E, 0x4A, 0x14, 0x3A, 0x93, 0xD6, 0x67, 0x82, 0xA6, 0xEB, 0xE8, 0x24, 0xD8, 0x4C, 0xFD, +0x12, 0x64, 0x48, 0xF3, 0x02, 0xFD, 0x7E, 0x42, 0x0D, 0x5D, 0xB6, 0xBB, 0xBC, 0x8A, 0x21, 0x0E, +0x25, 0xA0, 0x6D, 0xA6, 0xC2, 0x75, 0x10, 0xF1, 0x14, 0xA3, 0x6A, 0x3E, 0x82, 0xC0, 0xC6, 0x93, +0x55, 0xFF, 0xE9, 0x35, 0x86, 0xEF, 0x44, 0x68, 0x91, 0xFE, 0xEC, 0x62, 0xD1, 0x29, 0x5D, 0xE8, +0x70, 0x01, 0x76, 0xB8, 0x69, 0xB6, 0xD3, 0xF6, 0x3D, 0x3B, 0xE0, 0xD0, 0xE1, 0x43, 0x70, 0xE4, +0x58, 0x3F, 0x1C, 0x3C, 0x78, 0x08, 0xA2, 0xB1, 0x28, 0x64, 0x32, 0x13, 0xEC, 0xD0, 0xA3, 0x1D, +0x8E, 0xFA, 0x14, 0xFF, 0xF2, 0xD9, 0x8E, 0x92, 0x7F, 0x51, 0x89, 0x55, 0x65, 0xFB, 0x6C, 0x40, +0x88, 0xA1, 0x40, 0x59, 0x19, 0x83, 0xA3, 0x6A, 0x67, 0x08, 0x9A, 0xDE, 0x60, 0x47, 0x87, 0xED, +0x8F, 0x65, 0xCD, 0xBA, 0x0C, 0x50, 0x72, 0x6D, 0xD7, 0x6B, 0xE4, 0x2D, 0xEB, 0x28, 0xB9, 0x0E, +0x1B, 0x5E, 0x55, 0xD4, 0xBC, 0x29, 0x04, 0xD1, 0x58, 0x1B, 0xC6, 0x68, 0x01, 0xA8, 0x14, 0x26, +0xA0, 0x50, 0xCC, 0x31, 0x29, 0xAE, 0x2F, 0x38, 0xA4, 0x16, 0x43, 0xB7, 0x5C, 0x01, 0xC3, 0xDF, +0xF1, 0xFD, 0x86, 0xD6, 0xD5, 0x5F, 0xA6, 0x6D, 0x19, 0x30, 0x74, 0xD2, 0x77, 0xF8, 0xBD, 0xEA, +0xE4, 0x94, 0x26, 0xDB, 0x25, 0xC7, 0x6A, 0x77, 0xC1, 0xCF, 0x1C, 0xCA, 0x5C, 0x36, 0x09, 0xF9, +0xEC, 0xC8, 0x54, 0x63, 0xF8, 0x81, 0x03, 0x07, 0xA0, 0xA9, 0xA9, 0xD1, 0x5B, 0xAB, 0xA6, 0x57, +0xA0, 0x5A, 0x4E, 0xCB, 0xA1, 0x46, 0x71, 0x65, 0xD8, 0xD0, 0x13, 0xF8, 0xF4, 0x19, 0xCF, 0xE9, +0xF8, 0xBD, 0x8C, 0x7D, 0xCB, 0xCD, 0xFF, 0x72, 0xA5, 0x65, 0xE4, 0xFF, 0x6A, 0xEB, 0xFE, 0x14, +0x34, 0xA9, 0x68, 0x43, 0xF1, 0xA1, 0xD4, 0x2D, 0x56, 0x42, 0xA7, 0x48, 0x33, 0xBD, 0x31, 0x3F, +0x0A, 0xD9, 0x55, 0xC4, 0x0A, 0x8B, 0x9A, 0xCD, 0xBA, 0xC4, 0x4A, 0x3A, 0x0D, 0xA5, 0xB6, 0x31, +0x35, 0x57, 0x65, 0xF7, 0xFB, 0xFD, 0x21, 0x50, 0x03, 0x51, 0x74, 0x96, 0x7C, 0x28, 0xCD, 0x15, +0xC7, 0x74, 0x7C, 0xDB, 0x83, 0xF1, 0x85, 0x5B, 0x6C, 0xA3, 0x1A, 0xD5, 0x2A, 0xA9, 0x2E, 0x4C, +0x55, 0xC9, 0x4A, 0xA4, 0x79, 0xBB, 0xD2, 0x76, 0xF6, 0xED, 0x7D, 0x5B, 0xBF, 0xFF, 0xD8, 0xE4, +0xCB, 0x18, 0x31, 0x77, 0xAA, 0x53, 0x46, 0x58, 0xF5, 0x74, 0xA1, 0xB8, 0xF5, 0x5E, 0x59, 0x28, +0xBE, 0x3B, 0x5F, 0xA8, 0xA2, 0xD6, 0x4A, 0x4F, 0x2B, 0x3B, 0x05, 0xB6, 0x6F, 0xF6, 0xEC, 0xB3, +0xCF, 0xF2, 0x06, 0x8B, 0xA2, 0xF3, 0xC9, 0xFB, 0x12, 0xDB, 0xFC, 0xE1, 0xA6, 0x6F, 0x35, 0xCB, +0x1D, 0x23, 0x07, 0x61, 0xE6, 0xF4, 0x82, 0x8C, 0x25, 0x7B, 0x10, 0xF3, 0xBB, 0xEF, 0x2F, 0xB8, +0xC2, 0x2A, 0x37, 0xB6, 0x06, 0x7A, 0x46, 0x76, 0xA0, 0xDA, 0x2D, 0xE2, 0x87, 0xD0, 0xD1, 0x0C, +0x48, 0xAC, 0x25, 0x90, 0x3A, 0xC7, 0xE8, 0x56, 0xAA, 0x1A, 0x50, 0xD1, 0xCD, 0xDA, 0x0C, 0x05, +0x8E, 0x6D, 0x41, 0x8E, 0x46, 0xE3, 0xCC, 0xEB, 0x23, 0xA2, 0xE9, 0x64, 0x94, 0xE1, 0x71, 0x5D, +0xDE, 0x8C, 0xC4, 0x5A, 0xBF, 0xD1, 0xB0, 0xF2, 0xEA, 0xDB, 0x34, 0x15, 0xD9, 0xDC, 0xBF, 0x3F, +0x8E, 0x0A, 0x57, 0xC6, 0x47, 0x8D, 0x1F, 0xD8, 0xFA, 0xFD, 0xD7, 0x34, 0x9C, 0x48, 0xB4, 0x6B, +0xD7, 0xF7, 0x72, 0x9D, 0xAB, 0xDF, 0xFE, 0x45, 0x48, 0x3E, 0xF5, 0x6E, 0x82, 0xDD, 0x68, 0x7C, +0xD0, 0x54, 0x17, 0x22, 0xFE, 0xB7, 0x63, 0xFB, 0x2E, 0xF8, 0xE3, 0x8F, 0xFE, 0xB1, 0x37, 0x4D, +0x87, 0x2A, 0x19, 0x45, 0x75, 0xFF, 0xE2, 0x79, 0x97, 0xEE, 0x9F, 0x6D, 0xC7, 0xFF, 0x0B, 0x32, +0xF6, 0x8C, 0x0E, 0x74, 0x59, 0x4B, 0x7B, 0xDA, 0x8D, 0x74, 0xD6, 0xB7, 0xB4, 0x7D, 0x1E, 0x4C, +0xC8, 0x4B, 0xA1, 0x8C, 0x71, 0xA9, 0xA9, 0xA5, 0x98, 0x6D, 0xA4, 0xE1, 0x19, 0x26, 0xD9, 0x4F, +0xCB, 0x0B, 0x6F, 0x68, 0x45, 0x35, 0x15, 0x6D, 0xD1, 0x64, 0x71, 0x1A, 0x6D, 0x4B, 0x12, 0xCA, +0xE3, 0xA9, 0xCB, 0x97, 0xF0, 0xB1, 0xA8, 0x8E, 0x1B, 0xD1, 0x76, 0x98, 0x8E, 0x8B, 0x78, 0x94, +0xB1, 0x26, 0x73, 0x6C, 0xCF, 0xC3, 0x7D, 0x07, 0xEF, 0x1A, 0xC0, 0xB7, 0x39, 0x6D, 0x66, 0x14, +0x9F, 0x2C, 0x42, 0xD8, 0x74, 0xC4, 0x28, 0xEE, 0x46, 0xA6, 0x96, 0xA0, 0x8A, 0xF1, 0xAC, 0x49, +0x5E, 0x30, 0xC3, 0x88, 0x05, 0x36, 0xF6, 0x96, 0x46, 0x3B, 0x84, 0xC3, 0x61, 0xF4, 0x63, 0x6C, +0x34, 0x83, 0x72, 0x43, 0xB1, 0x38, 0x4A, 0x4E, 0xC9, 0xAC, 0x66, 0x74, 0xBC, 0x20, 0x63, 0x2B, +0x93, 0xFD, 0xED, 0xA9, 0x89, 0xBD, 0xED, 0x23, 0x63, 0xA3, 0x70, 0xE1, 0x59, 0x1D, 0x70, 0x66, +0x48, 0x86, 0x72, 0x9C, 0x47, 0xE7, 0x29, 0x0E, 0x5A, 0x89, 0x47, 0x5C, 0x53, 0x61, 0x61, 0x8C, +0xA9, 0x7B, 0xA1, 0x0A, 0x29, 0x93, 0x7C, 0xD9, 0x84, 0x64, 0xAE, 0xCA, 0xB6, 0x40, 0x71, 0x06, +0xE6, 0x5D, 0x5D, 0x6F, 0x44, 0x3C, 0x8D, 0x45, 0x57, 0x30, 0x37, 0x0B, 0xFE, 0x20, 0xCF, 0xCB, +0xBE, 0x95, 0xB2, 0x62, 0x11, 0x5C, 0x76, 0x4A, 0x2F, 0x74, 0x78, 0x25, 0x89, 0xB4, 0xD9, 0x60, +0x3E, 0xCF, 0x66, 0x38, 0x53, 0x9D, 0x29, 0x81, 0x15, 0xD4, 0xE3, 0x44, 0x44, 0xFB, 0x8A, 0xBA, +0xE6, 0xCF, 0x87, 0x03, 0x87, 0x7B, 0x69, 0x5D, 0x4B, 0xEB, 0xA4, 0x3E, 0xD4, 0x00, 0x27, 0x93, +0xB1, 0x46, 0x7E, 0x58, 0xCA, 0x8C, 0x97, 0x74, 0xDB, 0x95, 0x0D, 0x9F, 0x2C, 0xCB, 0xDC, 0x64, +0x81, 0x49, 0x64, 0xB1, 0x62, 0xC0, 0xD1, 0x63, 0x69, 0x88, 0xC4, 0x55, 0x68, 0x8E, 0x61, 0xBC, +0xC5, 0x5A, 0x18, 0xD0, 0x51, 0xC2, 0x10, 0x27, 0x9B, 0xAF, 0xC0, 0x70, 0xAA, 0x08, 0x11, 0xBF, +0x0A, 0xD4, 0x65, 0x47, 0xE1, 0x8D, 0x8A, 0x0A, 0x1C, 0xED, 0x6C, 0xDF, 0xB0, 0x1D, 0x78, 0xA2, +0xC5, 0xDF, 0xF5, 0xB8, 0xA2, 0xB4, 0xDF, 0xB9, 0x6B, 0xE7, 0xF7, 0x4E, 0xCB, 0xA1, 0x98, 0x27, +0x83, 0xE4, 0x68, 0xA0, 0x5A, 0x1C, 0x2A, 0x27, 0x83, 0x01, 0xB5, 0x91, 0xF3, 0x4B, 0x2C, 0x19, +0xA2, 0x55, 0x51, 0x38, 0xA8, 0x0B, 0x11, 0xF1, 0xC5, 0xA3, 0x87, 0x0F, 0xC3, 0xB9, 0xEB, 0xCF, +0x86, 0x81, 0x81, 0x21, 0xDA, 0x2E, 0xD0, 0x2A, 0x55, 0x32, 0x94, 0xA3, 0x9E, 0xD5, 0x28, 0xD4, +0x17, 0x64, 0x6C, 0x5A, 0xE9, 0x1C, 0xC9, 0x2A, 0x13, 0xDF, 0xF7, 0xB9, 0xA5, 0xAB, 0x1C, 0xCB, +0xBC, 0x92, 0x86, 0xA3, 0xD3, 0xA4, 0xF0, 0x62, 0xD9, 0x82, 0x3C, 0xAA, 0x5F, 0x23, 0xA7, 0xB1, +0xDA, 0x9D, 0x86, 0xA0, 0xF7, 0xF4, 0xAA, 0x45, 0xBE, 0x33, 0xCF, 0xF6, 0xD0, 0x94, 0xF1, 0x83, +0xE2, 0x07, 0x47, 0x96, 0x22, 0x60, 0x0C, 0x62, 0x5F, 0x24, 0xDE, 0xF8, 0xED, 0x79, 0x2B, 0xDF, +0xF6, 0x0D, 0x9A, 0xA7, 0x0F, 0xFF, 0x9F, 0x93, 0x93, 0x4B, 0x07, 0x39, 0xCE, 0x69, 0x64, 0xEB, +0xD2, 0x38, 0x99, 0x39, 0x9A, 0xAA, 0x4F, 0x42, 0x61, 0x50, 0x58, 0xAF, 0xD3, 0x70, 0x7F, 0x1F, +0xCC, 0xEF, 0xEC, 0x80, 0x10, 0xE5, 0xB1, 0x05, 0x88, 0x0B, 0x82, 0xD5, 0x49, 0x99, 0x34, 0x9A, +0xF7, 0x01, 0x33, 0xA4, 0x17, 0x64, 0xEC, 0x9E, 0xCD, 0x5F, 0x1D, 0xC6, 0x1F, 0xFF, 0xBE, 0x60, +0xDD, 0xBB, 0x7F, 0xD1, 0x33, 0xD6, 0xF3, 0x57, 0x21, 0x29, 0x7C, 0x21, 0x57, 0xD1, 0x5B, 0x46, +0xF3, 0xA5, 0x28, 0xAF, 0x36, 0x1E, 0x74, 0x04, 0x73, 0x0C, 0x63, 0xD4, 0xCB, 0xC9, 0x13, 0xD6, +0x69, 0xDD, 0x17, 0x4A, 0xAD, 0x5F, 0x96, 0xFB, 0xD4, 0x70, 0x3B, 0x22, 0x19, 0x76, 0xDC, 0x91, +0xA2, 0x07, 0x24, 0x49, 0xD8, 0x66, 0x40, 0xF8, 0xA9, 0x12, 0x1F, 0xEB, 0x43, 0xA6, 0x9E, 0xB6, +0x63, 0xF5, 0x4E, 0x26, 0x15, 0x53, 0x43, 0x2B, 0x48, 0xFD, 0x52, 0xF1, 0x81, 0x5E, 0x2E, 0x80, +0x88, 0xE1, 0x61, 0x18, 0xCD, 0x5C, 0x44, 0xE5, 0x19, 0xEA, 0x94, 0x1E, 0xED, 0x87, 0xAB, 0xAE, +0xBD, 0x16, 0x04, 0x0C, 0x21, 0xCB, 0xA6, 0xED, 0xE3, 0x7C, 0xE2, 0xB9, 0x18, 0x4C, 0x3E, 0x01, +0xB3, 0x00, 0x29, 0x5E, 0x34, 0x8E, 0xED, 0xDD, 0xF5, 0x93, 0xA3, 0xBD, 0x00, 0xB7, 0xD2, 0xEF, +0xCB, 0xD6, 0x7F, 0x2C, 0x01, 0xD1, 0x91, 0x37, 0xCC, 0x5F, 0xB2, 0xFE, 0x37, 0xE3, 0x87, 0x9F, +0x6E, 0x11, 0xF9, 0xF1, 0xCF, 0x80, 0xA3, 0x5F, 0x28, 0x3A, 0x4A, 0x69, 0xC2, 0xF6, 0x0D, 0xBB, +0xBC, 0xBB, 0x39, 0x97, 0x7E, 0xE2, 0x33, 0xF4, 0xD8, 0xDC, 0x69, 0x39, 0xA8, 0xF6, 0x95, 0x27, +0x8C, 0x22, 0x62, 0x82, 0x80, 0xA1, 0x22, 0xE7, 0x47, 0xAD, 0x46, 0xD5, 0xFF, 0x06, 0xD3, 0x72, +0x93, 0xA3, 0x1E, 0x34, 0x9E, 0x2D, 0xEC, 0x87, 0x3F, 0xF9, 0xDB, 0x66, 0xCC, 0x16, 0x48, 0xC0, +0x9B, 0x15, 0xEA, 0xE9, 0x69, 0xB3, 0xA0, 0x3A, 0xAB, 0x6A, 0x8A, 0x13, 0xCE, 0xC7, 0x1E, 0x7A, +0xF6, 0xBF, 0x09, 0xE2, 0xBB, 0xAD, 0x77, 0x3F, 0x8D, 0x97, 0x80, 0xF4, 0x82, 0x0D, 0x1B, 0xDF, +0x59, 0x0A, 0xAB, 0xEA, 0xEB, 0x2A, 0xF6, 0xC4, 0xC9, 0x17, 0xEA, 0x7A, 0xD6, 0x4E, 0x1D, 0xC6, +0x18, 0xCF, 0x81, 0x44, 0x58, 0x81, 0xB1, 0xF1, 0x2A, 0x83, 0x66, 0xFD, 0x2C, 0xAB, 0x83, 0x41, +0x8F, 0x68, 0x42, 0xB9, 0x5C, 0x82, 0x76, 0x8C, 0x44, 0x46, 0xC7, 0x92, 0x04, 0xE4, 0x74, 0x81, +0xA3, 0xCD, 0xAA, 0x9A, 0x62, 0xD6, 0x45, 0xDA, 0xB5, 0xF8, 0xEA, 0x75, 0xA6, 0xCE, 0x80, 0x04, +0xBF, 0xAA, 0x09, 0x12, 0x0D, 0xC8, 0x44, 0x06, 0x22, 0x3C, 0xEB, 0x22, 0xE6, 0x2E, 0x60, 0xD8, +0xA8, 0x24, 0xBC, 0x98, 0xDF, 0xC0, 0x7F, 0x1F, 0xD8, 0xBD, 0x1B, 0x96, 0xAF, 0x58, 0x0D, 0xA3, +0xA3, 0x8F, 0x20, 0x26, 0x60, 0x2F, 0x04, 0xD1, 0x21, 0xBC, 0xF8, 0x09, 0x98, 0x21, 0xBD, 0x26, +0xB3, 0x28, 0xA7, 0x2A, 0x55, 0x20, 0x90, 0xB3, 0x6D, 0x3E, 0x49, 0xE3, 0xF5, 0x34, 0x64, 0xAC, +0x88, 0x79, 0x6C, 0x35, 0xE4, 0x63, 0x83, 0x35, 0x89, 0xA8, 0x23, 0x71, 0xA4, 0xBF, 0x87, 0xAD, +0x25, 0xE5, 0x0D, 0xC2, 0xDC, 0x4B, 0x51, 0xD3, 0xAC, 0xBE, 0x05, 0x66, 0x41, 0xAF, 0x33, 0x76, +0x0E, 0x89, 0x86, 0x7C, 0x39, 0xAE, 0x50, 0xA6, 0x5E, 0x59, 0x41, 0xF1, 0x93, 0x04, 0x83, 0x12, +0x54, 0x10, 0x8C, 0xA0, 0x71, 0x49, 0x22, 0xF8, 0x43, 0x0A, 0x14, 0xF2, 0x69, 0x68, 0x6B, 0x6F, +0x45, 0x1B, 0x2C, 0x7A, 0x05, 0x9D, 0x8E, 0x71, 0xC9, 0xF2, 0x73, 0x3F, 0xB2, 0x78, 0xA6, 0xEF, +0xF5, 0x3A, 0x63, 0xE7, 0x90, 0xCE, 0x5B, 0x7B, 0xCD, 0x4D, 0x01, 0x37, 0xDB, 0x25, 0xBB, 0x26, +0x02, 0x14, 0x36, 0x24, 0x54, 0x1B, 0xE2, 0x8A, 0x8D, 0xE8, 0x13, 0x40, 0x40, 0x42, 0x5B, 0xCB, +0x5B, 0x90, 0x1E, 0x3E, 0x06, 0xCB, 0x56, 0xAD, 0x85, 0x96, 0x98, 0x04, 0xF3, 0xA3, 0x0E, 0xC4, +0x94, 0x6A, 0x23, 0x57, 0x3A, 0xFC, 0x85, 0x99, 0xF6, 0x36, 0xBD, 0xCE, 0xD8, 0x39, 0x22, 0x8A, +0x47, 0x15, 0x67, 0xFC, 0x7A, 0x5E, 0x90, 0x21, 0xEE, 0xC3, 0x30, 0x47, 0xD2, 0x21, 0xE0, 0x43, +0x49, 0x95, 0x6A, 0x85, 0xF3, 0xE0, 0xAD, 0x4C, 0x4B, 0x22, 0xB4, 0x78, 0xF8, 0xC0, 0x5E, 0xF6, +0xEF, 0x90, 0x64, 0x41, 0xC2, 0x87, 0x98, 0x81, 0x31, 0x7E, 0x5E, 0xB6, 0x7C, 0x78, 0xE9, 0x4C, +0xDE, 0xEF, 0xA4, 0x8C, 0x29, 0x7F, 0x9D, 0x5E, 0x9A, 0x9A, 0x3B, 0x96, 0x2E, 0x11, 0xCC, 0x89, +0x4F, 0x48, 0x01, 0x7F, 0x53, 0x40, 0xD6, 0x81, 0x63, 0xEB, 0xBF, 0x5D, 0x0C, 0x79, 0x6A, 0x2B, +0xC0, 0x51, 0xC6, 0x2C, 0xDA, 0xE4, 0x61, 0x2B, 0xB0, 0x7D, 0xCB, 0x26, 0x4C, 0xC2, 0xFB, 0xC1, +0xA1, 0x6E, 0x01, 0x97, 0x16, 0x3F, 0x1A, 0x01, 0xCE, 0x28, 0x34, 0x49, 0x8D, 0x67, 0x3E, 0x9E, +0x4B, 0x1E, 0x3D, 0x21, 0x4C, 0xE0, 0x75, 0x89, 0x9D, 0x03, 0x22, 0x35, 0x1A, 0x84, 0xB1, 0xE5, +0xC0, 0x3B, 0xDD, 0xB2, 0x60, 0x02, 0x87, 0xE9, 0x4F, 0xC1, 0x12, 0xD8, 0x9A, 0x56, 0x0E, 0x13, +0x28, 0x3C, 0xAD, 0x62, 0xC5, 0x6C, 0x58, 0x40, 0x54, 0x51, 0x25, 0x4B, 0x10, 0x94, 0xFC, 0x2C, +0x3B, 0xC6, 0x09, 0x61, 0xA0, 0x2D, 0x21, 0xA6, 0x18, 0x01, 0xC3, 0x2C, 0x5F, 0xE1, 0xB3, 0x73, +0x17, 0x9D, 0xE8, 0x94, 0x9D, 0xD7, 0x64, 0x4F, 0xEA, 0xA9, 0x46, 0xC7, 0x52, 0xCF, 0xCC, 0x0F, +0x19, 0xFA, 0xB5, 0x2A, 0xEF, 0x04, 0x02, 0x98, 0x1C, 0x41, 0x6D, 0x8C, 0x99, 0x30, 0xC4, 0x8E, +0x5D, 0x15, 0xC4, 0xA0, 0x0F, 0x62, 0x20, 0x3D, 0xE7, 0xF1, 0xA5, 0x10, 0xAA, 0xE8, 0xB2, 0x0D, +0xE3, 0x88, 0xB7, 0x17, 0x8A, 0x02, 0x86, 0xB2, 0x32, 0x18, 0x20, 0xC6, 0x0C, 0xDB, 0x78, 0xA7, +0x33, 0xB9, 0x9D, 0xD2, 0xB3, 0xFB, 0x5F, 0xEA, 0x3D, 0x5F, 0x67, 0xEC, 0x1C, 0x50, 0xA0, 0x9A, +0xEC, 0xC0, 0x2C, 0xD7, 0xB9, 0x3E, 0x3F, 0x47, 0xDA, 0x97, 0x2F, 0x9A, 0x22, 0x54, 0x05, 0x64, +0x9E, 0xC2, 0xA3, 0xE4, 0xDA, 0x90, 0xA5, 0xC9, 0xA7, 0x54, 0x59, 0x84, 0x92, 0x4C, 0xCB, 0x32, +0xEC, 0x82, 0xED, 0x4D, 0x74, 0x73, 0x6C, 0x06, 0x60, 0x58, 0xA6, 0x8F, 0x6D, 0xD2, 0x12, 0x2A, +0xF9, 0x6B, 0x11, 0xAA, 0xA2, 0x81, 0xD4, 0x2F, 0xC9, 0xD8, 0xD7, 0x6D, 0xEC, 0x1C, 0x50, 0x34, +0xBE, 0x36, 0xE3, 0x8A, 0x42, 0x3E, 0xC0, 0x6B, 0x97, 0xA2, 0x1E, 0x56, 0xA9, 0x66, 0x8C, 0xAA, +0x38, 0xCB, 0x26, 0xCF, 0xEA, 0xC5, 0xCA, 0x08, 0x4C, 0x94, 0x30, 0xAE, 0xAD, 0x1A, 0x54, 0x53, +0x86, 0x20, 0x22, 0xAB, 0x42, 0xB1, 0xA0, 0xA4, 0x73, 0x50, 0xD1, 0x4C, 0xD0, 0xB5, 0xA2, 0xB7, +0x17, 0x10, 0x40, 0xAA, 0xDA, 0x62, 0x7C, 0xCD, 0x86, 0x3F, 0xBB, 0x73, 0xE8, 0xF0, 0xC3, 0x2F, +0x9A, 0x18, 0x78, 0xDD, 0xC6, 0xCE, 0x01, 0x59, 0xED, 0xE7, 0x1A, 0x0D, 0x41, 0xDB, 0xE6, 0x38, +0xD7, 0x4F, 0x89, 0x13, 0x13, 0xA5, 0x91, 0x6A, 0xFF, 0xA8, 0x9D, 0xD4, 0xA2, 0xCD, 0x9C, 0x34, +0x84, 0x1A, 0xF3, 0xB2, 0x0E, 0x8D, 0xFD, 0xB5, 0xA8, 0x24, 0xD7, 0x66, 0x43, 0x44, 0x79, 0x9A, +0x49, 0x41, 0x45, 0xF9, 0xBC, 0xCB, 0x52, 0x7B, 0x6C, 0x1D, 0xA9, 0x59, 0x59, 0x3B, 0xDA, 0xFB, +0xF4, 0x0D, 0x2F, 0xF5, 0x9E, 0xAF, 0x33, 0x76, 0x0E, 0x08, 0xED, 0xE2, 0x42, 0xDD, 0xB0, 0xAE, +0x37, 0x51, 0xA7, 0x8E, 0xE7, 0x91, 0xA9, 0x36, 0xCD, 0xE5, 0xC0, 0x54, 0xA7, 0x4E, 0x85, 0x6B, +0x3A, 0xF2, 0xCC, 0x64, 0xA3, 0xE3, 0x69, 0x83, 0x16, 0x25, 0x05, 0x5C, 0xC7, 0xAD, 0xAD, 0xDD, +0x75, 0x68, 0x61, 0x15, 0x4B, 0xE9, 0x51, 0xF9, 0x51, 0xB1, 0x54, 0x41, 0x94, 0x4A, 0x0E, 0x3A, +0xE5, 0xE1, 0x1F, 0xBC, 0x54, 0xAB, 0xE5, 0xEB, 0xAA, 0x78, 0x0E, 0x68, 0x69, 0x47, 0xE2, 0xFD, +0x21, 0xA9, 0xF2, 0x09, 0x8A, 0x61, 0x93, 0xD9, 0x12, 0x94, 0x2B, 0x9A, 0x57, 0x9D, 0x48, 0x43, +0x60, 0x91, 0x89, 0x4C, 0x72, 0x6D, 0xEA, 0x7B, 0x62, 0x8D, 0xCF, 0xEC, 0x7F, 0xAC, 0x73, 0xC2, +0x22, 0xF5, 0x6C, 0xB1, 0x02, 0x87, 0x7C, 0x05, 0x41, 0x0D, 0x25, 0x04, 0xC1, 0x60, 0x00, 0x9D, +0xA9, 0x14, 0x1E, 0x06, 0x6B, 0x47, 0x72, 0xE2, 0xF0, 0x81, 0xDF, 0xF7, 0x9E, 0xAF, 0x3B, 0x4F, +0x73, 0x40, 0xC5, 0x92, 0x7B, 0x89, 0x8C, 0xB0, 0xA1, 0x8C, 0xE9, 0xB8, 0x05, 0xAD, 0xAD, 0x30, +0x92, 0x49, 0x43, 0xA6, 0x50, 0x42, 0xE9, 0xCC, 0xB1, 0x51, 0x7B, 0xB2, 0x28, 0xB0, 0x6D, 0x59, +0xD4, 0x07, 0xC5, 0x46, 0xE1, 0x3A, 0x2E, 0xDB, 0x6D, 0x6F, 0xDA, 0x0E, 0x8B, 0x75, 0x89, 0xD1, +0x0D, 0xF1, 0x10, 0x44, 0x82, 0x32, 0xE8, 0x46, 0x1E, 0x50, 0x59, 0x43, 0x36, 0x3B, 0x40, 0x13, +0x36, 0x7F, 0xF6, 0xFB, 0xDE, 0xF3, 0x75, 0x55, 0x3C, 0x07, 0x24, 0x09, 0x76, 0x89, 0xE7, 0xAA, +0x50, 0x2C, 0xE6, 0x21, 0x26, 0x97, 0xA1, 0xBB, 0xC9, 0x07, 0x9D, 0x4D, 0x21, 0x88, 0x86, 0x42, +0x10, 0x52, 0x65, 0xA6, 0x76, 0x59, 0x11, 0xBE, 0xE5, 0x35, 0x6B, 0xB1, 0x91, 0xF3, 0x88, 0x48, +0x35, 0x47, 0x55, 0x98, 0xDF, 0x12, 0x82, 0x25, 0x1D, 0x11, 0x68, 0xC0, 0x84, 0x3C, 0xA2, 0x14, +0x60, 0x56, 0xAB, 0x90, 0x2B, 0x69, 0xA0, 0x8A, 0x6E, 0xE4, 0xC5, 0x1A, 0xB7, 0x5E, 0x97, 0xD8, +0x39, 0x20, 0x14, 0x46, 0xC9, 0x76, 0x0C, 0x18, 0x4E, 0x96, 0x50, 0x42, 0xC3, 0xD0, 0xAC, 0x3A, +0x10, 0x89, 0x8A, 0xB0, 0xA8, 0x3D, 0xCE, 0x26, 0x36, 0x50, 0x57, 0x85, 0x8C, 0x99, 0x1E, 0xEA, +0x9B, 0xAD, 0x77, 0xE1, 0x89, 0x92, 0x08, 0xD9, 0x4C, 0x99, 0x79, 0xC5, 0x32, 0x47, 0x12, 0x8C, +0x4C, 0x05, 0xDA, 0xA5, 0xC0, 0x31, 0x69, 0xB6, 0x6D, 0x73, 0xF9, 0xC4, 0xC1, 0xB1, 0x0E, 0xFC, +0xD3, 0x0B, 0x2E, 0x81, 0x78, 0x9D, 0xB1, 0x73, 0x41, 0x0E, 0xEC, 0xCE, 0x94, 0x9D, 0xAB, 0xD0, +0x66, 0x86, 0x55, 0x99, 0x1A, 0xD6, 0xBC, 0xF9, 0x1B, 0xA9, 0xB1, 0x22, 0x8C, 0x23, 0xB3, 0x49, +0x3A, 0x3B, 0x9B, 0x03, 0x28, 0xBD, 0xFC, 0x14, 0x43, 0x32, 0xE9, 0x0A, 0xEC, 0xEB, 0xCB, 0x82, +0xCB, 0x51, 0xE6, 0x47, 0x86, 0xA6, 0x98, 0x9F, 0x49, 0x35, 0xA9, 0x65, 0x5E, 0xF2, 0x1F, 0x28, +0x68, 0xC2, 0x43, 0x31, 0xB5, 0xF5, 0xF7, 0xEE, 0x2D, 0x7A, 0x9D, 0xB1, 0x73, 0x40, 0xA6, 0xA9, +0xFC, 0xBC, 0xE8, 0x84, 0x9B, 0x55, 0xC5, 0xBD, 0x5A, 0x12, 0xF9, 0x45, 0x34, 0x54, 0x9E, 0x3C, +0xE3, 0x64, 0x51, 0x83, 0x54, 0x45, 0x07, 0x85, 0xF2, 0xB2, 0x15, 0x87, 0xE5, 0x65, 0x25, 0xCE, +0xB3, 0xB1, 0x15, 0x0B, 0x40, 0x77, 0xBD, 0x8E, 0x7F, 0xBB, 0xAA, 0x63, 0xF6, 0x8E, 0x96, 0x2F, +0x51, 0x7B, 0x14, 0x5F, 0x68, 0xE8, 0x5C, 0xFF, 0xAF, 0x91, 0x86, 0x75, 0xBF, 0xDC, 0xB5, 0x79, +0xE3, 0xEF, 0xAD, 0xF8, 0x7C, 0xDD, 0x2B, 0x9E, 0x03, 0x4A, 0x66, 0x06, 0x93, 0xED, 0xED, 0x97, +0x3E, 0x1C, 0x4C, 0x74, 0xEA, 0x82, 0x39, 0x76, 0x5D, 0xD9, 0x51, 0x19, 0xC2, 0x34, 0x91, 0xCA, +0x40, 0xD5, 0x12, 0x2A, 0x3E, 0x35, 0xD8, 0xAF, 0x4A, 0x90, 0xA0, 0xB9, 0x4F, 0x22, 0x7A, 0x3D, +0x15, 0x64, 0xBA, 0x61, 0xF1, 0xBA, 0x06, 0xA1, 0x9F, 0x81, 0x1C, 0xDB, 0x86, 0x3C, 0x0E, 0x05, +0xFD, 0x89, 0x23, 0xB6, 0x14, 0xFC, 0xA9, 0xC1, 0x87, 0xBE, 0x16, 0x5C, 0x77, 0xC9, 0x5D, 0x7B, +0x1F, 0xD8, 0xF8, 0xA2, 0x8D, 0x6B, 0x27, 0x65, 0x63, 0xC4, 0xEB, 0x74, 0x62, 0x44, 0xB1, 0x67, +0x66, 0xF4, 0xE0, 0xC5, 0x66, 0x79, 0xF4, 0x4D, 0xA0, 0x67, 0xCF, 0x4D, 0xA5, 0xC7, 0x16, 0xF8, +0xA2, 0xF3, 0xBE, 0x2B, 0x87, 0x12, 0xFF, 0xDD, 0xC6, 0x27, 0xFF, 0x86, 0xB3, 0x72, 0xB7, 0x58, +0xAE, 0x0F, 0x8A, 0x06, 0xDF, 0x6F, 0x73, 0xF2, 0xE1, 0xAA, 0xD2, 0xF4, 0xB1, 0xA1, 0x7D, 0x0F, +0xCE, 0xAA, 0xAE, 0xF8, 0x75, 0xC6, 0xBE, 0x4A, 0x44, 0x59, 0x1A, 0x3F, 0x94, 0xA3, 0x54, 0x2E, +0x43, 0x95, 0x15, 0xEB, 0xD6, 0xBD, 0x3F, 0x6A, 0x29, 0x62, 0x2B, 0xAF, 0xA8, 0x45, 0x0B, 0x14, +0xAB, 0xA9, 0x2B, 0x90, 0xDB, 0xFC, 0xBD, 0x8D, 0xAF, 0xC9, 0xCE, 0xFE, 0xD7, 0xE9, 0x75, 0x7A, +0x9D, 0x5E, 0xA7, 0xFF, 0x4F, 0xE8, 0xFF, 0x01, 0xA4, 0x5B, 0x78, 0x50, 0x27, 0xFE, 0x03, 0x45, +0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4E, 0x44, 0xAE, 0x42, 0x60, 0x82 +}; \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/crt.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/crt.h new file mode 100644 index 0000000..9b7aa43 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/crt.h @@ -0,0 +1,1920 @@ +#pragma once +// used: [stl] string, string_view, wstring, wstring_view +#include +// used: [crt] va_list, va_start, va_end +#include + +#include "../common.h" + +#ifdef CS_COMPILER_MSC +#include +#endif + +// used: algorithm function +#include "math.h" +// used: stb_sprintf +#include "../../dependencies/stb_sprintf.h" + +// add support of syntax highlight to our string formatting methods +#ifdef CS_COMPILER_CLANG +#define CS_CRT_FORMAT_STRING_ATTRIBUTE(METHOD, STRING_INDEX, FIRST_INDEX) __attribute__((format(METHOD, STRING_INDEX, FIRST_INDEX))) +#elif defined(__RESHARPER__) +#define CS_CRT_FORMAT_STRING_ATTRIBUTE(METHOD, STRING_INDEX, FIRST_INDEX) [[rscpp::format(METHOD, STRING_INDEX, FIRST_INDEX)]] +#else +#define CS_CRT_FORMAT_STRING_ATTRIBUTE(METHOD, STRING_INDEX, FIRST_INDEX) +#endif + +// @todo: '__restrict' keyword to hint compiler on those +// @todo: disable msvc debug runtime checks for those + +/* + * C-RUNTIME + * - rebuild of C standard library and partially STL + */ +namespace CRT +{ + /* + * - according to IEEE-754: + * + * 1. binary32 floating point + * +/- exponent (+127) mantissa (fractional part) + * *-------*---*-----------------*-----------------------------------------------* + * | width | 1 | 8 | 23 | + * *-------*---*-----------------*-----------------------------------------------* + * | mask | 0 | 0 1 1 1 1 1 0 0 | 0 0 0 1 0 0 0 1 1 1 0 1 0 0 0 1 0 1 0 0 1 1 1 | + * *-------*---*-----------------*-----------------------------------------------* + * ^ ^ ^ ^ ^ + * 31 30 23 22 0 + * + * 2. binary64 floating point + * +/- exponent (+1023) mantissa (fractional part) + * *-------*---*-----------------------*---------------------------------------------------* + * | width | 1 | 11 | 52 | + * *-------*---*-----------------------*---------------------------------------------------* + * | mask | 0 | 0 1 1 1 1 1 0 0 0 0 0 | 0 0 0 1 0 0 0 1 1 1 0 1 0 0 0 1 0 1 0 0 1 1 1 ... | + * *-------*---*-----------------------*---------------------------------------------------* + * ^ ^ ^ ^ ^ + * 63 62 52 51 0 + */ + template requires (std::is_floating_point_v) + struct FloatSpecification_t + { + static_assert(std::numeric_limits::is_iec559); + static_assert(sizeof(long double) == 8, "CRT rebuild doesn't support binary128 format"); + + // bit equivalent integer type for given floating point type + using BitEquivalent_t = std::conditional_t || std::is_same_v, std::uint64_t, std::uint32_t>; + + static constexpr std::uint32_t MANTISSA_WIDTH = ((sizeof(T) == sizeof(double)) ? 52U : 23U); + static constexpr std::uint32_t EXPONENT_WIDTH = ((sizeof(T) == sizeof(double)) ? 11U : 8U); + static constexpr std::uint32_t SIGN_WIDTH = 1U; + static constexpr std::uint32_t TOTAL_WIDTH = MANTISSA_WIDTH + EXPONENT_WIDTH + SIGN_WIDTH; + static constexpr std::uint32_t EXPONENT_BIAS = (1U << (EXPONENT_WIDTH - 1U)) - 1U; + + static constexpr BitEquivalent_t MANTISSA_MASK = (BitEquivalent_t(1U) << MANTISSA_WIDTH) - 1U; + static constexpr BitEquivalent_t SIGN_MASK = (BitEquivalent_t(1U) << (EXPONENT_WIDTH + MANTISSA_WIDTH)); + static constexpr BitEquivalent_t EXPONENT_MASK = ~(SIGN_MASK | MANTISSA_MASK); + + static constexpr BitEquivalent_t QUIET_NAN_MASK = (BitEquivalent_t(1U) << (MANTISSA_WIDTH - 1U)); + }; + + /* @section: [internal] constants */ + // largest valid base + constexpr int _NUMBER_MAX_BASE = 36; + // every possible character to represent the number with the largest valid base + constexpr const char* _NUMBER_ALPHA = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; + // lookup table for fast integer to string conversion in range [00 .. 99] + constexpr char _TWO_DIGITS_LUT[] = + "0001020304050607080910111213141516171819" + "2021222324252627282930313233343536373839" + "4041424344454647484950515253545556575859" + "6061626364656667686970717273747576777879" + "8081828384858687888990919293949596979899"; + // lookup table for fast hex integer to string conversion in range [00 .. FF] + constexpr char _TWO_DIGITS_HEX_LUT[] = + "000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F" + "202122232425262728292A2B2C2D2E2F303132333435363738393A3B3C3D3E3F" + "404142434445464748494A4B4C4D4E4F505152535455565758595A5B5C5D5E5F" + "606162636465666768696A6B6C6D6E6F707172737475767778797A7B7C7D7E7F" + "808182838485868788898A8B8C8D8E8F909192939495969798999A9B9C9D9E9F" + "A0A1A2A3A4A5A6A7A8A9AAABACADAEAFB0B1B2B3B4B5B6B7B8B9BABBBCBDBEBF" + "C0C1C2C3C4C5C6C7C8C9CACBCCCDCECFD0D1D2D3D4D5D6D7D8D9DADBDCDDDEDF" + "E0E1E2E3E4E5E6E7E8E9EAEBECEDEEEFF0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF"; + + template requires (std::is_integral_v && BASE > 0U && BASE <= _NUMBER_MAX_BASE) + struct IntegerToString_t + { + // maximum count of characters, including terminating null and negative sign where appropriate, needed for integer-to-string conversion + static consteval std::size_t MaxCount() + { + std::size_t nDigitsCount = 0U; + + constexpr std::uint64_t ullNegativeMax = (std::is_unsigned_v ? (std::numeric_limits::max)() : (static_cast((std::numeric_limits::max)()) + 1ULL)); + + for (std::uint64_t nShift = ullNegativeMax; nShift > 0ULL; nShift /= BASE) + nDigitsCount++; + + return (nDigitsCount + (std::is_signed_v && BASE == 10U ? 1U : 0U) + 1U); + } + }; + + /* + * @section: utility + * - methods that provide general-purpose functionality + */ +#pragma region stl_utility + + // indicate that an object may be "moved from", i.e. allowing the efficient transfer of resources to another object, alternative of 'std::move' + template + [[nodiscard]] CS_INLINE constexpr std::remove_reference_t&& Move(T&& argument) noexcept + { + return static_cast&&>(argument); + } + + // forward an lvalue as either an lvalue or an rvalue, alternative of 'std::forward' + template + [[nodiscard]] CS_INLINE constexpr T&& Forward(std::remove_reference_t& argument) noexcept + { + return static_cast(argument); + } + + // forward an rvalue as an rvalue, alternative of 'std::forward' + template + [[nodiscard]] CS_INLINE constexpr T&& Forward(std::remove_reference_t&& argument) noexcept + { + static_assert(!std::is_lvalue_reference_v, "bad forward call"); + return static_cast(argument); + } + + /// swap value of @a'left' to @a'right' and @a'right' to @a'left', alternative of 'std::swap' + template + requires (std::is_move_constructible_v && std::is_move_assignable_v) + CS_INLINE constexpr void Swap(T& left, T& right) noexcept(std::is_nothrow_move_constructible_v&& std::is_nothrow_move_assignable_v) + { + T temporary = Move(left); + left = Move(right); + right = Move(temporary); + } + +#pragma endregion + + /* @section: memory */ +#pragma region crt_memory + + /// compare bytes in two buffers, alternative of 'memcmp()' + /// @remarks: compares the first count bytes of @a'pFirstBuffer' and @a'pRightBuffer' and return a value that indicates their relationship, performs unsigned character comparison + /// @returns: <0 - if @a'pFirstBuffer' less than @a'pRightBuffer', 0 - if @a'pFirstBuffer' identical to @a'pRightBuffer', >0 - if @a'pFirstBuffer' greater than @a'pRightBuffer' + CS_INLINE int MemoryCompare(const void* pLeftBuffer, const void* pRightBuffer, std::size_t nCount) + { + auto pLeftByte = static_cast(pLeftBuffer); + auto pRightByte = static_cast(pRightBuffer); + + while (nCount--) + { + if (*pLeftByte++ != *pRightByte++) + return pLeftByte[-1] - pRightByte[-1]; + } + + return 0; + } + + /// compare bytes in two buffers, alternative of 'wmemcmp()' + /// @remarks: compares the first count characters of @a'pwLeftBuffer' and @a'pwRightBuffer' and return a value that indicates their relationship, performs signed character comparison + /// @returns: <0 - if @a'pwLeftBuffer' less than @a'pwRightBuffer', 0 - if @a'pwLeftBuffer' identical to @a'pwRightBuffer', >0 - if @a'pwLeftBuffer' greater than @a'pwRightBuffer' + CS_INLINE int MemoryCompareW(const wchar_t* pwLeftBuffer, const wchar_t* pwRightBuffer, std::size_t nCount) + { + while (nCount--) + { + if (*pwLeftBuffer++ != *pwRightBuffer++) + return pwLeftBuffer[-1] - pwRightBuffer[-1]; + } + + return 0; + } + + /// find character in a buffer, alternative of 'memchr()' + /// @remarks: look for the first occurrence of @a'uSearch' character in the first @a'nCount' characters of buffer, performs unsigned comparison for elements + /// @returns: pointer to the found character on success, null otherwise + CS_INLINE void* MemoryChar(const void* pBuffer, const std::uint8_t uSearch, std::size_t nCount) + { + auto pByte = static_cast(pBuffer); + + while (nCount--) + { + if (*pByte == uSearch) + return const_cast(pByte); + + ++pByte; + } + + return nullptr; + } + + /// find wide character in a buffer, alternative of 'wmemchr()' + /// @remarks: look for the first occurrence of @a'wSearch' character in the first @a'nCount' wide characters of buffer, performs signed comparison for elements + /// @returns: pointer to the found wide character on success, null otherwise + CS_INLINE wchar_t* MemoryCharW(wchar_t* pwBuffer, const wchar_t wSearch, std::size_t nCount) + { + while (nCount--) + { + if (*pwBuffer == wSearch) + return pwBuffer; + + ++pwBuffer; + } + + return nullptr; + } + + /// set a buffer to a specified byte, alternative of 'memset()' + /// @remarks: sets the first @a'nCount' bytes of @a'pDestination' to the @a'uByte' + /// @returns: pointer to the @a'pDestination' + CS_INLINE void* MemorySet(void* pDestination, const std::uint8_t uByte, std::size_t nCount) + { +#ifdef CS_COMPILER_MSC + // @test: clang always tries to detect 'memset' like instructions and replace them with CRT's function call + if (const std::size_t nCountAlign = (nCount & 3U); nCountAlign == 0U) + { + auto pDestinationLong = static_cast(pDestination); + __stosd(pDestinationLong, static_cast(uByte) * 0x01010101, nCount >> 2U); + } + else if (nCountAlign == 2U) + { + auto pDestinationWord = static_cast(pDestination); + __stosw(pDestinationWord, static_cast(uByte | (uByte << 8U)), nCount >> 1U); + } + else + { + auto pDestinationByte = static_cast(pDestination); + __stosb(pDestinationByte, uByte, nCount); + } +#else + auto pDestinationByte = static_cast(pDestination); + + while (nCount--) + *pDestinationByte++ = uByte; +#endif + + return pDestination; + } + + /// copy one buffer to another, alternative of 'memcpy()' + /// @remarks: copies @a'nCount' bytes from @a'pSource' to @a'pDestination'. if the source and destination regions overlap, the behavior is undefined + /// @returns: pointer to the @a'pDestination' + CS_INLINE void* MemoryCopy(void* pDestination, const void* pSource, std::size_t nCount) + { +#ifdef CS_COMPILER_MSC + // @test: clang always tries to detect 'memcpy' like instructions and replace them with CRT's function call + if (const std::size_t nCountAlign = (nCount & 3U); nCountAlign == 0U) + { + auto pDestinationLong = static_cast(pDestination); + auto pSourceLong = static_cast(pSource); + __movsd(pDestinationLong, pSourceLong, nCount >> 2U); + } + else if (nCountAlign == 2U) + { + auto pDestinationWord = static_cast(pDestination); + auto pSourceWord = static_cast(pSource); + __movsw(pDestinationWord, pSourceWord, nCount >> 1U); + } + else + { + auto pDestinationByte = static_cast(pDestination); + auto pSourceByte = static_cast(pSource); + __movsb(pDestinationByte, pSourceByte, nCount); + } +#else + auto pDestinationByte = static_cast(pDestination); + auto pSourceByte = static_cast(pSource); + + while (nCount--) + *pDestinationByte++ = *pSourceByte++; +#endif + + return pDestination; + } + + /// move one buffer to another, alternative of 'memmove()' + /// @remarks: copies @a'nCount' bytes from @a'pSource' to @a'pDestination'. if some portions of the source and the destination regions overlap, both functions ensure that the original source bytes in the overlapping region are copied before being overwritten + /// @returns: pointer to the @a'pDestination' + CS_INLINE void* MemoryMove(void* pDestination, const void* pSource, std::size_t nCount) + { + auto pDestinationByte = static_cast(pDestination); + auto pSourceByte = static_cast(pSource); + + // perform copy when source greater than destination + if (pDestinationByte < pSourceByte) + { +#ifdef CS_COMPILER_MSC + // @todo: also check for available align for given nCount + __movsb(pDestinationByte, pSourceByte, nCount); +#else + while (nCount--) + *pDestinationByte++ = *pSourceByte++; +#endif + } + // inverse copy otherwise + else + { + std::uint8_t* pLastDestinationByte = pDestinationByte + (nCount - 1U); + const std::uint8_t* pLastSourceByte = pSourceByte + (nCount - 1U); + + while (nCount--) + *pLastDestinationByte-- = *pLastSourceByte--; + } + + return pDestination; + } + +#pragma endregion + + /* + * @section: character + * - valid only for default C locale + */ +#pragma region crt_characters + + /// alternative of 'iscntrl()', @todo: 'iswcntrl()' + /// @returns: true if given character is a control character, false otherwise + [[nodiscard]] constexpr bool IsControl(const std::uint8_t uChar) + { + return (uChar <= 0x1F || uChar == 0x7F); + } + + /// alternative of 'isdigit()', @todo: 'iswdigit()' + /// @returns: true if given character is decimal digit, false otherwise + [[nodiscard]] constexpr bool IsDigit(const std::uint8_t uChar) + { + return (uChar >= '0' && uChar <= '9'); + } + + /// alternative of 'isxdigit()', @todo: 'iswxdigit()' + /// @returns: true if given character is hexadecimal digit, false otherwise + [[nodiscard]] constexpr bool IsHexDigit(const std::uint8_t uChar) + { + return ((uChar >= '0' && uChar <= '9') || (uChar >= 'A' && uChar <= 'F') || (uChar >= 'a' && uChar <= 'f')); + } + + /// alternative of 'isblank()', @todo: 'iswblank()' + /// @returns: true if given character is blank, false otherwise + [[nodiscard]] constexpr bool IsBlank(const std::uint8_t uChar) + { + return (uChar == '\t' || uChar == ' '); + } + + /// alternative of 'isspace()', @todo: 'iswspace()' + /// @returns: true if given character is whitespace, false otherwise + [[nodiscard]] constexpr bool IsSpace(const std::uint8_t uChar) + { + return ((uChar >= '\t' && uChar <= '\r') || uChar == ' '); + } + + /// alternative of 'isalpha()', @todo: 'iswalpha()' + /// @returns: true if given character is alphabetic, false otherwise + [[nodiscard]] constexpr bool IsAlpha(const std::uint8_t uChar) + { + return ((uChar >= 'A' && uChar <= 'Z') || (uChar >= 'a' && uChar <= 'z')); + } + + /// alternative of 'isalnum()', @todo: 'iswalnum()' + /// @returns: true if given character is alphabetic or numeric, false otherwise + [[nodiscard]] constexpr bool IsAlphaNum(const std::uint8_t uChar) + { + return ((uChar >= '0' && uChar <= '9') || (uChar >= 'A' && uChar <= 'Z') || (uChar >= 'a' && uChar <= 'z')); + } + + /// alternative of 'isprint()', @todo: 'iswprint()' + /// @returns: true if given character is printable, false otherwise + [[nodiscard]] constexpr bool IsPrint(const std::uint8_t uChar) + { + return (uChar >= ' ' && uChar <= '~'); + } + + /// alternative of 'isgraph()', @todo: 'iswgraph()' + /// @returns: true if given character is graphic (has a graphical representation), false otherwise + [[nodiscard]] constexpr bool IsGraph(const std::uint8_t uChar) + { + return (uChar >= '!' && uChar <= '~'); + } + + /// alternative of 'ispunct()', @todo: 'iswpunct()' + /// @returns: true if given character is a punctuation character, false otherwise + [[nodiscard]] constexpr bool IsPunct(const std::uint8_t uChar) + { + return ((uChar >= '!' && uChar <= '/') || (uChar >= ':' && uChar <= '@') || (uChar >= '[' && uChar <= '`') || (uChar >= '{' && uChar <= '~')); + } + + /// alternative of 'isupper()', @todo: 'iswupper()' + /// @returns: true if given alphabetic character is uppercase, false otherwise + [[nodiscard]] constexpr bool IsUpper(const std::uint8_t uChar) + { + return (uChar >= 'A' && uChar <= 'Z'); + } + + /// alternative of 'islower()', @todo: 'iswlower()' + /// @returns: true if given alphabetic character is lowercase, false otherwise + [[nodiscard]] constexpr bool IsLower(const std::uint8_t uChar) + { + return (uChar >= 'a' && uChar <= 'z'); + } + +#pragma endregion + + /* @section: character conversion */ +#pragma region crt_character_conversion + + /// convert single digit character to integer + /// @returns: converted value if character is digit, 0 otherwise + [[nodiscard]] constexpr std::int32_t CharToInt(const std::uint8_t uChar) + { + return IsDigit(uChar) ? (uChar - '0') : 0; + } + + /// convert single hex digit character to integer + /// @returns: converted value if character is hex digit, 0 otherwise + [[nodiscard]] constexpr std::uint32_t CharToHexInt(const std::uint8_t uChar) + { + const std::uint8_t uCharLower = (uChar | ('a' ^ 'A')); + return ((uCharLower >= 'a' && uCharLower <= 'f') ? (uCharLower - 'a' + 0xA) : (IsDigit(uChar) ? (uChar - '0') : 0x0)); + } + + // convert single character to uppercase, alternative of 'toupper()', @todo: 'towupper()' + [[nodiscard]] constexpr char CharToUpper(const std::uint8_t uChar) + { + return static_cast(IsLower(uChar) ? (uChar & ~('a' ^ 'A')) : uChar); + } + + // convert single character to lowercase, alternative of 'tolower()', @todo: 'towlower()' + [[nodiscard]] constexpr char CharToLower(const std::uint8_t uChar) + { + return static_cast(IsUpper(uChar) ? (uChar | ('a' ^ 'A')) : uChar); + } + +#pragma endregion + + /* + * @section: string + * - @note: return value of some methods correspond to the POSIX standard but not C standard, it was necessary to reduce time complexity of them + * - valid only for default C locale + */ +#pragma region crt_string + + /// get the length of a string, alternative of 'strlen()', 'wcslen()' + /// @returns: number of characters in the string, not including the terminating null character + template requires (std::is_same_v || std::is_same_v) + constexpr std::size_t StringLength(const C* tszSource) + { + const C* tszSourceEnd = tszSource; + + while (*tszSourceEnd != C('\0')) + ++tszSourceEnd; + + return tszSourceEnd - tszSource; + } + + /// get the length of a string limited by max length, alternative of 'strnlen()', 'wcsnlen()' + /// @returns: number of characters in the string, not including the terminating null character. if there is no null terminator within the first @a'nMaxLength' bytes of the string, then @a'nMaxLength' is returned to indicate the error condition + template requires (std::is_same_v || std::is_same_v) + constexpr std::size_t StringLengthN(const C* tszSource, const std::size_t nMaxLength) + { + std::size_t i = 0U; + + while (tszSource[i] != C('\0') && i < nMaxLength) + ++i; + + return i; + } + + /// compare two strings, alternative of 'strcmp()', 'wcscmp()' + /// @remarks: performs a signed/unsigned character comparison depending on the string type + /// @returns: <0 - if @a'tszLeft' less than @a'tszRight', 0 - if @a'tszLeft' is identical to @a'tszRight', >0 - if @a'tszLeft' greater than @a'tszRight' + template requires (std::is_same_v || std::is_same_v) + constexpr int StringCompare(const C* tszLeft, const C* tszRight) + { + if (tszLeft == nullptr) + return -1; + + if (tszRight == nullptr) + return 1; + + using ComparisonType_t = std::conditional_t, std::uint8_t, std::conditional_t>; + + ComparisonType_t nLeft, nRight; + do + { + nLeft = static_cast(*tszLeft++); + nRight = static_cast(*tszRight++); + + if (nLeft == C('\0')) + break; + } while (nLeft == nRight); + + return nLeft - nRight; + } + + /// case-insensitive compare two strings, alternative of 'stricmp()', @todo: 'wcsicmp()' + /// @remarks: performs unsigned character comparison + /// @returns: <0 - if @a'szLeft' less than @a'szRight', 0 - if @a'szLeft' is identical to @a'szRight', >0 - if @a'szLeft' greater than @a'szRight' + constexpr int StringCompareI(const char* szLeft, const char* szRight) + { + std::uint8_t uLeft, uRight; + do + { + uLeft = static_cast(CharToLower(static_cast(*szLeft++))); + uRight = static_cast(CharToLower(static_cast(*szRight++))); + + if (uLeft == '\0') + break; + } while (uLeft == uRight); + + return uLeft - uRight; + } + + /// compare two strings up to the specified count of characters, alternative of 'strncmp()', 'wcsncmp()' + /// @remarks: performs a signed/unsigned character comparison depending on the string type + /// @returns: <0 - if @a'tszLeft' less than @a'tszRight', 0 - if 'tszLeft' is identical to @a'tszRight', >0 - if @a'tszLeft' greater than @a'tszRight' + template requires (std::is_same_v || std::is_same_v) + constexpr int StringCompareN(const C* tszLeft, const C* tszRight, std::size_t nCount) + { + using ComparisonType_t = std::conditional_t, std::uint8_t, std::conditional_t>; + + ComparisonType_t nLeft, nRight; + while (nCount--) + { + nLeft = static_cast(*tszLeft++); + nRight = static_cast(*tszRight++); + + if (nLeft != nRight) + return nLeft - nRight; + + if (nLeft == C('\0')) + break; + } + + return 0; + } + + /// find a character in a string, alternative of 'strchr()', 'wcschr()' + /// @remarks: the null terminating character is included in the search, performs signed character comparison + /// @returns: pointer to the first found occurrence of @a'iSearch' character in @a'tszSource' on success, null otherwise + template requires (std::is_same_v || std::is_same_v) + constexpr C* StringChar(const C* tszSource, const int iSearch) + { + while (*tszSource != C('\0')) + { + if (*tszSource == iSearch) + return const_cast(tszSource); + + ++tszSource; + } + + return nullptr; + } + + /// find a last occurrence of character in a string, alternative of 'strrchr()', 'wcsrchr()' + /// @remarks: the null terminating character is included in the search, performs signed character comparison + /// @returns: pointer to the last found occurrence of @a'iSearch' character in @a'tszSource' on success, null otherwise + template requires (std::is_same_v || std::is_same_v) + constexpr C* StringCharR(const C* tszSource, const int iSearch) + { + C* tszLastOccurrence = nullptr; + + do + { + if (*tszSource == iSearch) + tszLastOccurrence = const_cast(tszSource); + } while (*tszSource++ != C('\0')); + + return tszLastOccurrence; + } + + /// search for one string inside another, alternative of 'strstr()', 'wcsstr()' + /// @remarks: finds the first occurrence of @a'tszSearch' in @a'tszSource'. the search does not include terminating null character, performs signed character comparison + /// @returns: pointer to the first found occurrence of @a'tszSearch' substring in @a'tszSource' on success, null otherwise + template requires (std::is_same_v || std::is_same_v) + constexpr C* StringString(const C* tszSource, const C* tszSearch) + { + while (*tszSource != C('\0')) + { + while (*tszSearch != C('\0') && (*tszSource - *tszSearch) == C('\0')) + { + ++tszSource; + ++tszSearch; + } + + if (*tszSearch == C('\0')) + return const_cast(tszSource); + + ++tszSource; + } + + return nullptr; + } + + /// case-insensitive search for one string inside another, alternative of 'strcasestr()' + /// @remarks: finds the first occurrence of @a'szSearch' in @a'szSource'. the search does not include terminating null character, performs unsigned character comparison + /// @returns: pointer to the first found occurrence of @a'szSearch' substring in @a'szSource' on success, null otherwise + constexpr char* StringStringI(const char* szSource, const char* szSearch) + { + while (*szSource != '\0') + { + while (*szSearch != '\0' && CharToLower(static_cast(*szSource)) == CharToLower(static_cast(*szSearch))) + { + ++szSource; + ++szSearch; + } + + if (*szSearch == '\0') + return const_cast(szSource); + + ++szSource; + } + + return nullptr; + } + + /// copy a one string to another, alternative of 'stpcpy()', 'wcpcpy()' + /// @remarks: copies @a'szSource', including the terminating null character, to the location that's specified by @a'szDestination'. the behavior is undefined if the source and destination strings overlap + /// @returns: pointer to the terminating null in @a'tszDestination' + template requires (std::is_same_v || std::is_same_v) + constexpr C* StringCopy(C* tszDestination, const C* tszSource) + { + while (*tszSource != C('\0')) + *tszDestination++ = *tszSource++; + + *tszDestination = C('\0'); + return tszDestination; + } + + /// copy a one string to another up to the specified count of characters, alternative of 'stpncpy()', 'wcpncpy()' + /// @remarks: copies the initial @a'nCount' characters of @a'tszSource' to @a'tszDestination'. if count is less than or equal to the length of @a'tszSource', a null character is not appended automatically to the copied string. if @a'nCount' is greater than the length of @a'tszSource', the destination string is padded with null characters up to length count. the behavior is undefined if the source and destination strings overlap + /// @returns: pointer to @a'tszDestination' + @a'nCount' + template requires (std::is_same_v || std::is_same_v) + constexpr C* StringCopyN(C* tszDestination, const C* tszSource, std::size_t nCount) + { + while (nCount--) + *tszDestination++ = (*tszSource != C('\0') ? *tszSource++ : C('\0')); + + return tszDestination; + } + + /// append a one string to another, alternative of 'stpcat()', 'wcpcat()' + /// @remarks: appends @a'tszSource' to @a'tszDestination' and terminates the resulting string with a null character. the initial character of @a'tszSource' overwrites the terminating null character of @a'tszDestination'. the behavior is undefined if the source and destination strings overlap + /// @returns: pointer to the terminating null in @a'tszDestination' + template requires (std::is_same_v || std::is_same_v) + constexpr C* StringCat(C* tszDestination, const C* tszSource) + { + while (*tszDestination != C('\0')) + ++tszDestination; + + while (*tszSource != C('\0')) + *tszDestination++ = *tszSource++; + + *tszDestination = C('\0'); + return tszDestination; + } + + /// append a one string to another up to the specified count of characters, alternative of 'stpncat()', 'wcpncat()' + /// @remarks: appends, at most, the first @a'nCount' characters of @a'tszSource' to @a'tszDestination'. the initial character of @a'tszSource' overwrites the terminating null character of @a'tszDestination'. if a null character appears in @a'tszSource' before @a'nCount' characters are appended, function appends all characters from @a'tszSource', up to the null character. if count is greater than the length of @a'tszSource', the length of @a'tszSource' is used in place of count. in all cases, the resulting string is terminated with a null character. if copying takes place between strings that overlap, the behavior is undefined + /// @returns: pointer to the terminating null in @a'tszDestination' + template requires (std::is_same_v || std::is_same_v) + constexpr C* StringCatN(C* tszDestination, const C* tszSource, std::size_t nCount) + { + while (*tszDestination != C('\0')) + ++tszDestination; + + while (*tszSource != C('\0') && nCount--) + *tszDestination++ = *tszSource++; + + *tszDestination = C('\0'); + return tszDestination; + } + +#pragma endregion + + /* + * @section: string conversion + * - these methods can write past the end of a buffer that is too small. + * to prevent buffer overruns, ensure that buffer is large enough to hold the converted data and the trailing null-character. + * misuse of these methods can cause serious security issues in your code + * - valid only for default C locale + */ +#pragma region crt_string_conversion + + /// convert every char in the string to uppercase + /// @returns: pointer to the @a'szDestination' + constexpr char* StringToUpper(char* szDestination) + { + char* szDestinationOut = szDestination; + + while (*szDestinationOut++ != '\0') + *szDestinationOut = CharToUpper(static_cast(*szDestinationOut)); + + return szDestination; + } + + /// convert every char in the string to lowercase + /// @returns: pointer to the @a'szDestination' + constexpr char* StringToLower(char* szDestination) + { + char* szDestinationOut = szDestination; + + while (*szDestinationOut++ != '\0') + *szDestinationOut = CharToLower(static_cast(*szDestinationOut)); + + return szDestination; + } + + // @todo: rework sprintf like, with specific format right here + /// convert the integer to a string, alternative of 'to_string', '_itoa_s', '_ltoa_s', '_ultoa_s', '_i64toa_s', '_ui64toa_s' + /// @param[in] iBase numeric base to use to represent number in range [2 .. 36] + /// @returns: pointer to the begin of converted integer in the buffer + template requires std::is_integral_v + char* IntegerToString(const T value, char* szDestination, const std::size_t nDestinationLength, int iBase = 10) + { + if (iBase < 0 || iBase == 1 || iBase > _NUMBER_MAX_BASE) + { + CS_ASSERT(false); // given number base is out of range + return szDestination; + } + + const bool bIsPositive = (value >= 0); + std::make_unsigned_t uValue = (bIsPositive ? static_cast>(value) : static_cast>(0 - value)); // @test: how it actually compiles, can avoid branch at compile time + + char* szDestinationEnd = szDestination + nDestinationLength; + *--szDestinationEnd = '\0'; + + if (uValue == 0U) + *--szDestinationEnd = '0'; + // for decimal base perform fast path write by two digits in a group + else if (iBase == 10) + { + while (uValue >= 100U) + { + const char* szTwoDigits = &_TWO_DIGITS_LUT[(uValue % 100U) * 2U]; + *--szDestinationEnd = szTwoDigits[1]; + *--szDestinationEnd = szTwoDigits[0]; + uValue /= 100U; + } + + if (uValue < 10U) + *--szDestinationEnd = _NUMBER_ALPHA[uValue]; + else + { + const char* szTwoDigits = &_TWO_DIGITS_LUT[uValue * 2U]; + *--szDestinationEnd = szTwoDigits[1]; + *--szDestinationEnd = szTwoDigits[0]; + } + + // insert negative sign, only decimal base can have it + if (!bIsPositive) + *--szDestinationEnd = '-'; + } + // for hexadecimal base perform fast path write by two digits in a group + else if (iBase == 16) + { + while (uValue >= 0x100) + { + const char* szTwoDigits = &_TWO_DIGITS_HEX_LUT[(uValue % 0x100) * 2U]; + *--szDestinationEnd = szTwoDigits[1]; + *--szDestinationEnd = szTwoDigits[0]; + uValue /= 0x100; + } + + if (uValue < 0x10) + *--szDestinationEnd = _NUMBER_ALPHA[uValue]; + else + { + const char* szTwoDigits = &_TWO_DIGITS_HEX_LUT[uValue * 2U]; + *--szDestinationEnd = szTwoDigits[1]; + *--szDestinationEnd = szTwoDigits[0]; + } + } + // for other bases perform write by single digit + else + { + while (uValue > 0U) + { + *--szDestinationEnd = _NUMBER_ALPHA[uValue % iBase]; + uValue /= iBase; + } + } + + return szDestinationEnd; + } + + // @todo: rework sprintf like, with specific format right here + /// convert the floating point to a string, alternative of 'to_string' + /// @returns: + template requires std::is_floating_point_v + char* FloatToString(const T value, char* szDestination, const std::size_t nDestinationSize, int iPrecision = std::numeric_limits::digits10) + { + // @todo: because i dont have time so yeah, would rebuild it some time + StringPrintN(szDestination, nDestinationSize, "%.*f", iPrecision, value); + return szDestination; + } + + /** + * convert the time point to a string, alternative of 'strftime', 'wcsftime' + * @param[in] tszFormat string specifying the format of conversion. formatting codes are: + * - '%a' abbreviated weekday name + * - '%A' full weekday name + * - '%b' abbreviated month name + * - '%B' full month name + * - '%c' date and time representation appropriate for locale + * - '%C' century as a decimal number [0 .. 99] + * - '%d' day of month as a decimal number [01 .. 31] + * - '%D' equivalent to "%m/%d/%y" + * - '%e' day of month as a decimal number [1 .. 31], where single digits are preceded by a space + * - '%F' equivalent to "%Y-%m-%d" + * - '%g' week-based year without century as a decimal number, the ISO 8601 time format [00 .. 99] + * - '%G' week-based year as a decimal number, the ISO 8601 time format [0000 .. 9999] + * - '%h' Abbreviated month name(equivalent to % b) + * - '%H' hour in 24-hour format [00 .. 23] + * - '%I' hour in 12-hour format [01 .. 12] + * - '%j' day of the year as a decimal number [001 .. 366] + * - '%m' month as a decimal number [01 .. 12] + * - '%M' minute as a decimal number [00 .. 59] + * - '%n' new line character escape + * - '%p' the locale's A.M./P.M. indicator for 12-hour clock + * - '%r' the locale's 12-hour clock time + * - '%R' equivalent to "%H:%M" + * - '%S' second as decimal number [00 .. 59] + * - '%t' tab character escape + * - '%T' equivalent to "%H:%M:%S", the ISO 8601 time format + * - '%u' weekday as a decimal number, the ISO 8601 time format [1 .. 7] + * - '%U' week number of the year as a decimal number, where the first Sunday is the first day of week 1 [00 .. 53] + * - '%V' week number as a decimal number, the ISO 8601 time format [00 .. 53] + * - '%w' weekday as a decimal number [0 .. 6] + * - '%W' week number of the year as a decimal number, where the first Monday is the first day of week 1 [00 .. 53] + * - '%x' date representation for the locale + * - '%X' time representation for the locale + * - '%y' year without century, as decimal number [00 .. 99] + * - '%Y' year with century, as decimal number [1900 .. 9999] + * - '%z' the offset from UTC, the ISO 8601 format + * - '%Z' either the locale's time-zone name or time zone abbreviation, depending on registry settings + * - '%%' percent character escape + * @returns: the number of characters placed in @a'szDestination' not including the terminating null, if the total number of characters, including the terminating null, is more than @a'nDestinationSize', returns 0 and the contents of @a'szDestination' are indeterminate + **/ + template requires (std::is_same_v || std::is_same_v) + std::size_t TimeToString(C* tszDestination, const std::size_t nDestinationSize, const C* tszFormat, const std::tm* pTime) + { + // full names of weekdays + constexpr const char* arrWeekdayNames[7] = { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" }; + // full names of months + constexpr const char* arrMonthNames[12] = { "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" }; + + C* tszDestinationOut = tszDestination; + C* tszFormatCurrent = nullptr; + + // try to find format token, at same time copy everything until it + while (*tszFormat != C('\0') && nDestinationSize > 0U) + { + if (*tszFormat == C('%')) + { + tszFormatCurrent = const_cast(tszFormat); + break; + } + + *tszDestinationOut++ = *tszFormat++; + } + + std::size_t nWroteCount = tszDestinationOut - tszDestination; + + // check do we have nothing to format + if (tszFormatCurrent == nullptr) + return tszDestinationOut - tszDestination; + + while (*tszFormatCurrent != C('\0') && nWroteCount < nDestinationSize) + { + // check is format token begin + if (*tszFormatCurrent == C('%')) + { + ++tszFormatCurrent; + + // we are don't support any locale and other modifiers + if (*tszFormatCurrent == C('#') || *tszFormatCurrent == C('0') || *tszFormatCurrent == C('E')) + ++tszFormatCurrent; + + const C* tszDestinationBefore = tszDestinationOut; + + /* + * handle format token + * @test: C standard and POSIX are very unclear and don't explicitly specify the behaviour when time components are negative + */ + switch (*tszFormatCurrent) + { + case C('a'): + { + const char* szWeekdayName = arrWeekdayNames[pTime->tm_wday]; + + std::size_t i = 3U; + while (i-- > 0U) + *tszDestinationOut++ = static_cast(szWeekdayName[i]); + + break; + } + case C('A'): + { + const char* szWeekdayName = arrWeekdayNames[pTime->tm_wday]; + + while (*szWeekdayName != C('\0')) + *tszDestinationOut++ = static_cast(*szWeekdayName++); + + break; + } + case C('b'): + case C('h'): // equivalent to "%b" + { + const char* szMonthName = arrMonthNames[pTime->tm_mon]; + + std::size_t i = 3U; + while (i-- > 0U) + *tszDestinationOut++ = static_cast(szMonthName[i]); + + break; + } + case C('B'): + { + const char* szMonthName = arrMonthNames[pTime->tm_mon]; + + while (*szMonthName != C('\0')) + *tszDestinationOut++ = static_cast(*szMonthName++); + + break; + } + case C('c'): + { + // default locale equivalent to "%a %b %e %H:%M:%S %Y" + + // @todo: is it possible to avoid these ugly branches and make string type dependent on template + if constexpr (std::is_same_v) + tszDestinationOut += TimeToString(tszDestinationOut, nDestinationSize - (tszDestinationOut - tszDestination), L"%a %b %e %H:%M:%S %Y", pTime); + else + tszDestinationOut += TimeToString(tszDestinationOut, nDestinationSize - (tszDestinationOut - tszDestination), "%a %b %e %H:%M:%S %Y", pTime); + + break; + } + case C('C'): + { + const int iYear = pTime->tm_year + 1900; + const int iCentury = iYear / 100; + + if (iYear >= -99 && iYear < 0) + { + *tszDestinationOut++ = C('-'); + *tszDestinationOut++ = C('0'); + } + else if (iCentury >= 0 && iCentury < 100) + { + const char* szCenturyNumber = &_TWO_DIGITS_LUT[static_cast(iCentury) * 2U]; + *tszDestinationOut++ = static_cast(*szCenturyNumber++); + *tszDestinationOut++ = static_cast(*szCenturyNumber); + } + else + *tszDestinationOut++ = static_cast(iCentury % 10U + '0'); + + break; + } + case C('d'): + { + const char* szMonthDayNumber = &_TWO_DIGITS_LUT[static_cast(pTime->tm_mday) * 2U]; + *tszDestinationOut++ = static_cast(*szMonthDayNumber++); + *tszDestinationOut++ = static_cast(*szMonthDayNumber); + break; + } + case C('D'): + [[fallthrough]]; + case C('x'): + { + // default locale equivalent to "%m/%d/%y" + + if constexpr (std::is_same_v) + tszDestinationOut += TimeToString(tszDestinationOut, nDestinationSize - (tszDestinationOut - tszDestination), L"%m/%d/%y", pTime); + else + tszDestinationOut += TimeToString(tszDestinationOut, nDestinationSize - (tszDestinationOut - tszDestination), "%m/%d/%y", pTime); + + break; + } + case C('e'): + { + unsigned int uMonthDay = pTime->tm_mday; + + const char* szMonthDayNumber = &_TWO_DIGITS_LUT[uMonthDay * 2U]; + *tszDestinationOut++ = static_cast(uMonthDay < 10U ? ' ' : *szMonthDayNumber++); + *tszDestinationOut++ = static_cast(*szMonthDayNumber); + break; + } + case C('F'): + { + // equivalent to "%Y-%m-%d" + + if constexpr (std::is_same_v) + tszDestinationOut += TimeToString(tszDestinationOut, nDestinationSize - (tszDestinationOut - tszDestination), L"%Y-%m-%d", pTime); + else + tszDestinationOut += TimeToString(tszDestinationOut, nDestinationSize - (tszDestinationOut - tszDestination), "%Y-%m-%d", pTime); + + break; + } + case C('g'): + [[fallthrough]]; + case C('G'): + [[fallthrough]]; + case C('V'): + { + unsigned int uYear = pTime->tm_year + 1900U; + int iDays = (pTime->tm_yday - (pTime->tm_yday - pTime->tm_wday + 382) % 7 + 3); + + if (iDays < 0) + { + uYear -= 1U; + + const int iPreviousYearEndDay = pTime->tm_yday + (365 + ((uYear & 3U) == 0U && (uYear % 100U != 0U || uYear % 400U == 0U))); + iDays = (iPreviousYearEndDay - (iPreviousYearEndDay - pTime->tm_wday + 382) % 7 + 3); + } + else + { + const int iCurrentYearEndDay = pTime->tm_yday - (365 + ((uYear & 3U) == 0U && (uYear % 100U != 0U || uYear % 400U == 0U))); + const int iNextDays = (iCurrentYearEndDay - (iCurrentYearEndDay - pTime->tm_wday + 382) % 7 + 3); + + if (iNextDays >= 0) + { + uYear += 1U; + iDays = iNextDays; + } + } + + switch (*tszFormatCurrent) + { + case C('G'): + { + const char* szCenturyNumber = &_TWO_DIGITS_LUT[(uYear / 100U) * 2U]; + *tszDestinationOut++ = static_cast(*szCenturyNumber++); + *tszDestinationOut++ = static_cast(*szCenturyNumber); + [[fallthrough]]; + } + case C('g'): + { + const char* szYearNumber = &_TWO_DIGITS_LUT[(uYear % 100U) * 2U]; + *tszDestinationOut++ = static_cast(*szYearNumber++); + *tszDestinationOut++ = static_cast(*szYearNumber); + break; + } + default: + { + const char* szWeekNumber = &_TWO_DIGITS_LUT[(iDays / 7U + 1U) * 2U]; + *tszDestinationOut++ = static_cast(*szWeekNumber++); + *tszDestinationOut++ = static_cast(*szWeekNumber); + break; + } + } + + break; + } + case C('H'): + { + const char* szHourNumber = &_TWO_DIGITS_LUT[static_cast(pTime->tm_hour) * 2U]; + *tszDestinationOut++ = static_cast(*szHourNumber++); + *tszDestinationOut++ = static_cast(*szHourNumber); + break; + } + case C('I'): + { + unsigned int uHourFormat = pTime->tm_hour % 12U; + uHourFormat = ((uHourFormat == 0U) ? 12U : uHourFormat); + + const char* szHourNumber = &_TWO_DIGITS_LUT[uHourFormat * 2U]; + *tszDestinationOut++ = static_cast(*szHourNumber++); + *tszDestinationOut++ = static_cast(*szHourNumber); + break; + } + case C('j'): + { + unsigned int uYearDay = pTime->tm_yday + 1U; + + const char* szYearDayNumber = &_TWO_DIGITS_LUT[uYearDay * 2U]; + *tszDestinationOut++ = static_cast((uYearDay / 100U) % 10U + '0'); + *tszDestinationOut++ = static_cast(*szYearDayNumber++); + *tszDestinationOut++ = static_cast(*szYearDayNumber); + break; + } + case C('m'): + { + const char* szMonthNumber = &_TWO_DIGITS_LUT[(pTime->tm_mon + 1U) * 2U]; + *tszDestinationOut++ = static_cast(*szMonthNumber++); + *tszDestinationOut++ = static_cast(*szMonthNumber); + break; + } + case C('M'): + { + const char* szMinuteNumber = &_TWO_DIGITS_LUT[static_cast(pTime->tm_min) * 2U]; + *tszDestinationOut++ = static_cast(*szMinuteNumber++); + *tszDestinationOut++ = static_cast(*szMinuteNumber); + break; + } + case C('n'): + { + *tszDestinationOut++ = C('\n'); + break; + } + case C('p'): + { + *tszDestinationOut++ = ((pTime->tm_hour < 12) ? C('A') : C('P')); + *tszDestinationOut++ = C('M'); + break; + } + case C('r'): + { + // default locale equivalent to "%I:%M:%S %p" + + if constexpr (std::is_same_v) + tszDestinationOut += TimeToString(tszDestinationOut, nDestinationSize - (tszDestinationOut - tszDestination), L"%I:%M:%S %p", pTime); + else + tszDestinationOut += TimeToString(tszDestinationOut, nDestinationSize - (tszDestinationOut - tszDestination), "%I:%M:%S %p", pTime); + + break; + } + case C('R'): + { + const char* szHourNumber = &_TWO_DIGITS_LUT[static_cast(pTime->tm_hour) * 2U]; + *tszDestinationOut++ = static_cast(*szHourNumber++); + *tszDestinationOut++ = static_cast(*szHourNumber); + + const char* szMinuteNumber = &_TWO_DIGITS_LUT[static_cast(pTime->tm_min) * 2U]; + *tszDestinationOut++ = static_cast(*szMinuteNumber++); + *tszDestinationOut++ = static_cast(*szMinuteNumber); + break; + } + case C('S'): + { + const char* szSecondNumber = &_TWO_DIGITS_LUT[static_cast(pTime->tm_sec) * 2U]; + *tszDestinationOut++ = static_cast(*szSecondNumber++); + *tszDestinationOut++ = static_cast(*szSecondNumber); + break; + } + case C('t'): + { + *tszDestinationOut++ = C('\t'); + break; + } + case C('T'): + [[fallthrough]]; + case C('X'): + { + // default locale equivalent to "%H:%M:%S" + + if constexpr (std::is_same_v) + tszDestinationOut += TimeToString(tszDestinationOut, nDestinationSize - (tszDestinationOut - tszDestination), L"%H:%M:%S", pTime); + else + tszDestinationOut += TimeToString(tszDestinationOut, nDestinationSize - (tszDestinationOut - tszDestination), "%H:%M:%S", pTime); + + break; + } + case C('u'): + { + *tszDestinationOut++ = static_cast(((pTime->tm_wday + 6U) % 7U + 1U) + '0'); + break; + } + case C('U'): + { + const char* szWeekNumber = &_TWO_DIGITS_LUT[((pTime->tm_yday - pTime->tm_wday + 7U) / 7U) * 2U]; + *tszDestinationOut++ = static_cast(*szWeekNumber++); + *tszDestinationOut++ = static_cast(*szWeekNumber); + break; + } + case C('w'): + { + *tszDestinationOut++ = static_cast(pTime->tm_wday + '0'); + break; + } + case C('W'): + { + const char* szWeekNumber = &_TWO_DIGITS_LUT[(((pTime->tm_yday - pTime->tm_wday - 6U) % 7U + 7U) / 7U) * 2U]; + *tszDestinationOut++ = static_cast(*szWeekNumber++); + *tszDestinationOut++ = static_cast(*szWeekNumber); + break; + } + case C('y'): + { + const char* szYearNumber = &_TWO_DIGITS_LUT[((pTime->tm_year + 1900U) % 100U) * 2U]; + *tszDestinationOut++ = static_cast(*szYearNumber++); + *tszDestinationOut++ = static_cast(*szYearNumber); + break; + } + case C('Y'): + { + unsigned int uYear = pTime->tm_year + 1900U; + + const char* szCenturyNumber = &_TWO_DIGITS_LUT[(uYear / 100U) * 2U]; + *tszDestinationOut++ = static_cast(*szCenturyNumber++); + *tszDestinationOut++ = static_cast(*szCenturyNumber); + + const char* szYearNumber = &_TWO_DIGITS_LUT[(uYear % 100U) * 2U]; + *tszDestinationOut++ = static_cast(*szYearNumber++); + *tszDestinationOut++ = static_cast(*szYearNumber); + break; + } + case C('z'): + // @todo: + break; + case C('Z'): + { + // @todo: + //if constexpr (requires { pTime->tm_zone; }) + //{ + // + //} + //else + //{ + // + //} + break; + } + case C('%'): // percent escape + { + *tszDestinationOut++ = *tszFormatCurrent; + break; + } + default: + CS_ASSERT(false); // unknown token! + break; + } + + // accumulate written characters count per token + nWroteCount += tszDestinationOut - tszDestinationBefore; + + ++tszFormatCurrent; + continue; + } + + *tszDestinationOut++ = *tszFormatCurrent++; + ++nWroteCount; + } + + // check is limit was reached before the entire string could be stored + if (nWroteCount > nDestinationSize) + return 0U; + + *tszDestinationOut = C('\0'); + return nWroteCount; + } + + /// convert the string to an integer, @todo: no wide yet alternative of 'atoi()', '_wtoi()', '_atoi64()', '_wtoi64()', 'atol()', '_wtol()', 'atoll()', '_wtoll()', 'strtol()', 'wcstol()', '_strtoi64()', '_wcstoi64()', 'strtoul()', 'wcstoul()', 'strtoull()', 'wcstoull()' + /// @todo: remarks about behaviour + /// @param[in] iBase number of digits used to represent number. 0 to automatically determine number base in range [2 .. 16] or value in range [2 .. 36] + /// @returns: integer converted from string + template requires (std::is_integral_v) + constexpr T StringToInteger(const char* szSourceBegin, char** pszSourceEnd = nullptr, int iBase = 0) + { + if (iBase < 0 || iBase == 1 || iBase > _NUMBER_MAX_BASE) + { + CS_ASSERT(false); // given number base is out of range + return 0; + } + + const char* szSourceCurrent = szSourceBegin; + + // skip to first not whitespace + while (IsSpace(*szSourceCurrent)) + ++szSourceCurrent; + + // determine the sign and strip it + const bool bIsPositive = ((*szSourceCurrent == '+' || *szSourceCurrent == '-') ? (*szSourceCurrent++ == '+') : true); + constexpr bool bIsUnsigned = ((std::numeric_limits::min)() == 0U); + + // user provided exact number base + if (iBase > 0) + { + // strip 0x or 0X + if (iBase == 16 && *szSourceCurrent == '0' && (szSourceCurrent[1] | ('a' ^ 'A')) == 'x') + szSourceCurrent += 2; + } + // otherwise try to determine base automatically + else if (*szSourceCurrent == '0') + { + if (((*szSourceCurrent++) | ('a' ^ 'A')) == 'x') + { + // a hexadecimal number is defined as "the prefix 0x or 0X followed by a sequence of the decimal digits and the letters a (or A) through f (or F) with values 10 through 15 respectively" (C standard 6.4.4.1) + iBase = 16; + ++szSourceCurrent; + } + else + // an octal number is defined as "the prefix 0 optionally followed by a sequence of the digits 0 through 7 only" (C standard 6.4.4.1) and so any number that starts with 0, including just 0, is an octal number + iBase = 8; + } + else + // a decimal number is defined as beginning "with a nonzero digit and consisting of a sequence of decimal digits" (C standard 6.4.4.1) + iBase = 10; + + constexpr std::uint64_t ullNegativeMax = (bIsUnsigned ? (std::numeric_limits::max)() : (static_cast((std::numeric_limits::max)()) + 1ULL)); + const std::uint64_t ullAbsoluteMax = (bIsPositive ? (std::numeric_limits::max)() : ullNegativeMax); + const std::uint64_t ullAbsoluteMaxOfBase = ullAbsoluteMax / iBase; + + bool bIsNumber = false; + std::uint64_t ullResult = 0ULL; + + for (bool bIsDigit = false, bIsAlpha = false; ((bIsDigit = IsDigit(*szSourceCurrent))) || ((bIsAlpha = IsAlpha(*szSourceCurrent)));) // @note: looks slightly unsafe but have possibility to fast path, double parenthesis to suppress warnings + { + int iCurrentDigit = 0; + + if (bIsDigit) + iCurrentDigit = *szSourceCurrent - '0'; + else if (bIsAlpha) + iCurrentDigit = (*szSourceCurrent | ('a' ^ 'A')) - 'a' + 0xA; + + if (iCurrentDigit >= iBase) + break; + + bIsNumber = true; + ++szSourceCurrent; + + // if the number has already hit the maximum value for the current type then the result cannot change, but we still need to advance source to the end of the number + if (ullResult == ullAbsoluteMax) + { + CS_ASSERT(false); // numeric overflow + continue; + } + + if (ullResult <= ullAbsoluteMaxOfBase) + ullResult *= iBase; + else + { + CS_ASSERT(false); // numeric overflow + ullResult = ullAbsoluteMax; + } + + if (ullResult <= ullAbsoluteMax - iCurrentDigit) + ullResult += iCurrentDigit; + else + { + CS_ASSERT(false); // numeric overflow + ullResult = ullAbsoluteMax; + } + } + + if (pszSourceEnd != nullptr) + *pszSourceEnd = const_cast(bIsNumber ? szSourceCurrent : szSourceBegin); + + // clamp on overflow + if (ullResult == ullAbsoluteMax) + return ((bIsPositive || bIsUnsigned) ? (std::numeric_limits::max)() : (std::numeric_limits::min)()); + + return (bIsPositive ? static_cast(ullResult) : -static_cast(ullResult)); + } + +#pragma endregion + + /* + * @section: string encode/decode + * - valid only for default C locale + */ +#pragma region crt_string_encode_decode + + /// convert UTF-X multibyte string to a corresponding UTF-32 character, process single character input, alternative of 'mbtowc()' + /// @credits: github.com/skeeto/branchless-utf8 + /// @remarks: handles decoding error by skipping forward + /// @returns: the length in bytes of the converted character + template + std::ptrdiff_t CharMultiByteToUTF32(const C* tszBegin, const C* tszEnd, std::uint32_t* puOutChar) + { + // index from the high 5 bits of the first byte in a sequence to the length of the sequence. imperative that 0 == invalid + constexpr std::uint8_t arrSequenceLength[32] = { + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // [ 0 .. 15] [00000 .. 01111] + 0, 0, 0, 0, 0, 0, 0, 0, // [16 .. 23] [10000 .. 10111] - 10XXX is only legal as prefixes for continuation bytes + 2, 2, 2, 2, // [24 .. 27] [11000 .. 11011] + 3, 3, // [28 .. 29] [11100 .. 11101] + 4, 0 // [30 .. 31] [11110 .. 11111] + }; + + constexpr std::uint8_t arrMask[] = { 0x00, 0x7F, 0x1F, 0x0F, 0x07 }; + constexpr std::uint32_t arrStartCodePoint[] = { 0x400000, 0, 0x80, 0x800, 0x10000 }; + constexpr std::uint8_t arrCharShift[] = { 0, 18, 12, 6, 0 }; + constexpr std::uint8_t arrErrorShift[] = { 0, 6, 4, 2, 0 }; + + const std::uint8_t nNextLength = arrSequenceLength[*reinterpret_cast(tszBegin) >> 3U]; + std::ptrdiff_t nLength = nNextLength + !nNextLength; + + unsigned char uString[4] = {}; + const std::ptrdiff_t nSourceLength = tszEnd - tszBegin; + + // copy at most 'nLength' bytes, stop copying at 0 or past end iterator. branch predictor does a good job here, so it is fast even with excessive branching + uString[0] = nSourceLength > 0 ? tszBegin[0] : 0; + uString[1] = nSourceLength > 1 ? tszBegin[1] : 0; + uString[2] = nSourceLength > 2 ? tszBegin[2] : 0; + uString[3] = nSourceLength > 3 ? tszBegin[3] : 0; + + // assume a four-byte character and load four bytes. unused bits are shifted out + *puOutChar = static_cast(uString[0] & arrMask[nNextLength]) << 18U; + *puOutChar |= static_cast(uString[1] & 0x3F) << 12U; + *puOutChar |= static_cast(uString[2] & 0x3F) << 6U; + *puOutChar |= static_cast(uString[3] & 0x3F); + *puOutChar >>= arrCharShift[nNextLength]; + + // accumulate the various error conditions + unsigned int uError = (*puOutChar < arrStartCodePoint[nNextLength]) << 6U; // non-canonical encoding + uError |= ((*puOutChar >> 11U) == 0x1B) << 7U; // surrogate half? + uError |= (*puOutChar > 0x10FFFF) << 8U; // out of range? + uError |= (uString[1] & 0xC0) >> 2U; + uError |= (uString[2] & 0xC0) >> 4U; + uError |= (uString[3]) >> 6U; + uError ^= 0x2A; // top two bits of each tail byte correct? + uError >>= arrErrorShift[nNextLength]; + + if (uError > 0U) + { + /* + * no bytes are consumed when string empty + * one byte is consumed in case of invalid first byte of begin + * all available bytes (at most 'nLength' bytes) are consumed on incomplete/invalid second to last bytes + * invalid or incomplete input may consume less bytes than wanted, therefore every byte has to be inspected in 'uString' + */ + nLength = std::min(nLength, static_cast(!!uString[0] + !!uString[1] + !!uString[2] + !!uString[3])); + *puOutChar = 0xFFFD; + } + + return nLength; + } + + /// convert UTF-32 character to a corresponding multibyte UTF-8 string, process single character input, alternative of 'wctomb()' + /// @credits: github.com/nothings/stb + /// @remarks: locale-independent + /// @returns: the length in bytes of the UTF-32 character. if UTF-32 character is invalid it returns 0 + inline std::ptrdiff_t CharMultiByteFromUTF32(char* szOutBuffer, const std::size_t nOutBufferSize, const std::uint32_t uChar) + { + // utf-8 + if (uChar < 0x80) + { + szOutBuffer[0] = static_cast(uChar); + return 1; + } + // utf-16 + if (uChar < 0x800 && nOutBufferSize >= 2U) + { + szOutBuffer[0] = static_cast(0xC0 + (uChar >> 6U)); + szOutBuffer[1] = static_cast(0x80 + (uChar & 0x3F)); + return 2; + } + // utf-16 + if (uChar < 0x10000 && nOutBufferSize >= 3U) + { + szOutBuffer[0] = static_cast(0xE0 + (uChar >> 12U)); + szOutBuffer[1] = static_cast(0x80 + ((uChar >> 6U) & 0x3F)); + szOutBuffer[2] = static_cast(0x80 + (uChar & 0x3F)); + return 3; + } + // utf-32 + if (uChar <= 0x10FFFF && nOutBufferSize >= 4U) + { + szOutBuffer[0] = static_cast(0xF0 + (uChar >> 18U)); + szOutBuffer[1] = static_cast(0x80 + ((uChar >> 12U) & 0x3F)); + szOutBuffer[2] = static_cast(0x80 + ((uChar >> 6U) & 0x3F)); + szOutBuffer[3] = static_cast(0x80 + (uChar & 0x3F)); + return 4; + } + + // invalid code point + return 0; + } + + /// alternative of '_mbslen()' + /// @returns: UTF-8 characters count of UTF-16/UTF-32 string + template + int StringLengthMultiByte(const C* tszBegin, const C* tszEnd = nullptr) + { + int nOctetCount = 0; + + // go through each character until terminating null up to end if given + while (*tszBegin != C('\0') && (tszEnd == nullptr || tszBegin < tszEnd)) + { + if (const std::uint32_t uChar = static_cast(*tszBegin++); uChar < 0x80) + nOctetCount += 1; + else if (uChar < 0x800) + nOctetCount += 2; + else if (uChar < 0x10000) + nOctetCount += 3; + else if (uChar <= 0x7FFFFFFF) + nOctetCount += 4; + } + + return nOctetCount; + } + + /// @returns: valid unicode characters count of UTF-X string + template + int StringLengthUnicode(const C* tszBegin, const C* tszEnd) + { + int nCharCount = 0; + + std::uint32_t uChar = 0U; + while (*tszBegin != C('\0') && tszBegin < tszEnd) + { + tszBegin += CharMultiByteToUTF32(tszBegin, tszEnd, &uChar); + + if (uChar == 0U) + break; + + ++nCharCount; + } + + return nCharCount; + } + + /// convert UTF-8 string to UTF-X string, alternative of 'MultiByteToWideChar()', 'mbstowcs()' + /// @remarks: locale-independent + /// @todo: param desc + /// @returns: length of converted UTF-X string + CS_INLINE std::ptrdiff_t StringMultiByteToUnicode(wchar_t* szOutBuffer, const std::size_t nOutBufferLength, const char* szBegin, const char* szEnd) + { + wchar_t* pBufferBegin = szOutBuffer; + const wchar_t* pBufferEnd = szOutBuffer + nOutBufferLength; + + std::uint32_t uChar = 0U; + while (pBufferBegin < pBufferEnd - 1 && szBegin < szEnd && *szBegin != '\0') + { + szBegin += CharMultiByteToUTF32(szBegin, szEnd, &uChar); + + if (uChar == 0U) + break; + + *pBufferBegin++ = static_cast(uChar); + } + + *pBufferBegin = 0U; + return pBufferBegin - szOutBuffer; + } + + /// convert unicode string to UTF-8 string, alternative of 'WideToMultiByteChar()', 'wcstombs()' + /// @remarks: locale-independent + /// @todo: param desc + /// @returns: length of converted multibyte UTF-8 string + CS_INLINE std::ptrdiff_t StringUnicodeToMultiByte(char* szOutBuffer, const std::size_t nOutBufferLength, const wchar_t* wszBegin, const wchar_t* wszEnd = nullptr) + { + char* pBufferBegin = szOutBuffer; + const char* pBufferEnd = szOutBuffer + nOutBufferLength; + + while (pBufferBegin < pBufferEnd - 1 && (wszEnd == nullptr || wszBegin < wszEnd) && *wszBegin != L'\0') + pBufferBegin += CharMultiByteFromUTF32(pBufferBegin, pBufferEnd - pBufferBegin - 1, *wszBegin++); + + *pBufferBegin = '\0'; + return pBufferBegin - szOutBuffer; + } + + /// @remarks: locale-independent + /// @returns: unicode string (UTF-16 on Windows and UTF-32 on POSIX) converted from UTF-X + CS_INLINE std::wstring StringMultiByteToUnicode(const std::string_view strMultiByte) + { + const std::size_t nLength = StringLengthUnicode(strMultiByte.data(), strMultiByte.data() + strMultiByte.size()) + 1U; + std::wstring wstrUnicodeOut(nLength, L'\0'); + + StringMultiByteToUnicode(wstrUnicodeOut.data(), nLength, strMultiByte.data(), strMultiByte.data() + strMultiByte.size()); + return wstrUnicodeOut; + } + + /// @remarks: locale-independent + /// @returns: UTF-8 string converted from UTF-X + CS_INLINE std::string StringUnicodeToMultiByte(const std::wstring_view wstrUnicode) + { + const std::size_t nLength = StringLengthMultiByte(wstrUnicode.data(), wstrUnicode.data() + wstrUnicode.size()) + 1U; + std::string strMultiByteOut(nLength, '\0'); + + StringUnicodeToMultiByte(strMultiByteOut.data(), nLength, wstrUnicode.data(), wstrUnicode.data() + wstrUnicode.size()); + return strMultiByteOut; + } + +#pragma endregion + +#pragma region string_format + + /// write formatted data to a string, alternative of 'sprintf' + /// @returns: the number of characters written to the formatted data string, not including the terminating null character. a return value of -1 indicates that an encoding error has occurred + inline CS_CRT_FORMAT_STRING_ATTRIBUTE(printf, 2, 3) int StringPrint(char* szBuffer, const char* const szFormat, ...) + { + va_list args; + va_start(args, szFormat); + + const int iReturn = stbsp_vsprintf(szBuffer, szFormat, args); + + va_end(args); + + return iReturn; + } + + /// write formatted data to a string up to the specified count of characters, alternative of 'snprintf' + /// @remarks: format and store @a'nCount' or fewer characters in @a'szBuffer'. always store a terminating null character, truncating the output if necessary. if copying occurs between strings that overlap, the behavior is undefined + /// @returns: if the buffer size specified by @a'nCount' isn't sufficiently large to contain the output specified by @a'szFormat', the return value is the number of characters that would be written, not including the terminating null character, if @a'nCount' were sufficiently large. if the return value is greater than @a'nCount' - 1, the output has been truncated. a return value of -1 indicates that an encoding error has occurred + CS_INLINE CS_CRT_FORMAT_STRING_ATTRIBUTE(printf, 3, 4) int StringPrintN(char* szBuffer, std::size_t nCount, const char* const szFormat, ...) + { + va_list args; + va_start(args, szFormat); + + const int iReturn = stbsp_vsnprintf(szBuffer, static_cast(nCount), szFormat, args); + + va_end(args); + + if (iReturn >= static_cast(nCount)) + return iReturn; + + return iReturn; + } + +#pragma endregion + + // wrapper of crt_string + template + struct String_t + { + String_t() + { + // empty string + szBuffer[0] = '\0'; + } + + String_t(const char* szStr) + { + StringCopy(this->szBuffer, szStr); + } + + String_t(const char* szFormat, ...) + { + va_list args; + va_start(args, szFormat); + + [[maybe_unused]] const int iReturn = stbsp_vsnprintf(this->szBuffer, static_cast(sizeof(this->szBuffer)), szFormat, args); + + va_end(args); + } + + String_t(const char* tszFormat, const std::tm* pTime) + { + TimeToString(this->szBuffer, sizeof(this->szBuffer), tszFormat, pTime); + } + + String_t(const wchar_t* wszStr) + { + FromMultiByte(wszStr); + } + + // no allocated memory so no need to deallocate + ~String_t() = default; + + const char* Format(const char* szFormat, ...) + { + va_list args; + va_start(args, szFormat); + + [[maybe_unused]] const int iReturn = stbsp_vsnprintf(this->szBuffer, static_cast(sizeof(this->szBuffer)), szFormat, args); + + va_end(args); + + return this->Data(); + } + + /// @returns: length of string + [[nodiscard]] const std::size_t Length() const + { + return StringLength(this->szBuffer); + } + + /// @returns: length of string + [[nodiscard]] const std::size_t Length() + { + return StringLength(this->szBuffer); + } + + /// @returns: size of data + [[nodiscard]] const std::size_t Size() const + { + return CS_ARRAYSIZE(this->szBuffer); + } + + /// @returns: size of data + [[nodiscard]] const std::size_t Size() + { + return CS_ARRAYSIZE(this->szBuffer); + } + + /// @returns: true if buffer is empty, false otherwise + [[nodiscard]] const bool IsEmpty() const + { + return szBuffer[0] == '\0'; + } + + /// @returns: c-type string type + [[nodiscard]] const char* Data() const + { + return this->szBuffer; + } + + /// @returns: c-type string type + [[nodiscard]] const char* Data() + { + return this->szBuffer; + } + + /// @returns: <0 - if @a'Data()' less than @a'szRight', 0 - if @a'szSearch' is identical to @a'szSearch', >0 - if @a'szSearch' greater than @a'szSearch' + [[nodiscard]] const int Compare(const char* szData, bool bCaseSensitive = false) const + { + CS_ASSERT(IsEmpty()); // failed because of empty string + + return bCaseSensitive ? StringCompareI(this->Data(), szData) : StringCompare(this->Data(), szData); + } + + /// @returns: <0 - if @a'Data()' less than @a'szSearch', 0 - if @a'szSearch' is identical to @a'szSearch', >0 - if @a'szSearch' greater than @a'szSearch' + [[nodiscard]] const int CompareN(const char* szSearch) const + { + CS_ASSERT(IsEmpty()); // failed because of empty string + + return StringCompareN(this->Data(), szSearch, this->Size()); + } + + /// @returns: pointer to the first found occurrence of @a'szSearch' substring in @a'Data()' on success, null otherwise + [[nodiscard]] const char* Find(const char* szSearch, bool bCaseSensitive = false) const + { + CS_ASSERT(IsEmpty()); // failed because of empty string + + return bCaseSensitive ? StringStringI(this->Data(), szSearch) : StringString(this->Data(), szSearch); + } + + /// @returns: pointer to the terminating null in @a'szBuffer' + [[nodiscard]] const char* Append(const char* szData) const + { + return StringCat(this->szBuffer, szData); + } + + /// @returns: pointer to the terminating null in @a'szBuffer' + [[nodiscard]] const char* AppendN(const char* szData) const + { + return StringCatN(this->szBuffer, szData, this->Size()); + } + + /// @returns: pointer to the @a'szBuffer' + [[nodiscard]] const char* ToUpper() const + { + CS_ASSERT(IsEmpty()); // failed because of empty string + return StringToUpper(this->szBuffer); + } + + /// @returns: pointer to the @a'szBuffer' + [[nodiscard]] const char* ToLower() const + { + CS_ASSERT(IsEmpty()); // failed because of empty string + return StringToLower(this->szBuffer); + } + + /// [UNSAFE] /// + /// @returns: converted buffer into multibyte + /// @note: delete the buffer after using, else in return we will have a memory leak + [[nodiscard]] const wchar_t* ToMultiByte() const + { + wchar_t* szOutBuffer = new wchar_t[this->Length() + 1U]; + StringMultiByteToUnicode(szOutBuffer, this->Length() + 1U, this->szBuffer, this->szBuffer + this->Length() + 1U); + + return szOutBuffer; + } + + /// converted from multibyte data + void FromMultiByte(const wchar_t* wszData) + { + StringUnicodeToMultiByte(this->szBuffer, this->Length(), wszData, wszData + this->Length()); + } + + void Clear() noexcept + { + MemorySet(szBuffer, 0U, sizeof(szBuffer)); + } + + char szBuffer[SIZE]; + }; + + // wrapper for wchar_t string + template + struct WString_t + { + WString_t() + { + // empty string + wszBuffer[0] = L'\0'; + } + + WString_t(const wchar_t* wszStr) + { + StringCopy(this->wszBuffer, wszStr); + } + + WString_t(const char* szStr) + { + FromUnicode(szStr); + } + + /// @returns: length of string + [[nodiscard]] const std::size_t Length() const + { + return StringLengthMultiByte(this->wszBuffer); + } + + /// @returns: length of string + [[nodiscard]] const std::size_t Length() + { + return StringLengthMultiByte(this->wszBuffer); + } + + /// @returns: size of data + [[nodiscard]] const std::size_t Size() const + { + return CS_ARRAYSIZE(this->wszBuffer); + } + + /// @returns: size of data + [[nodiscard]] const std::size_t Size() + { + return CS_ARRAYSIZE(this->wszBuffer); + } + + /// @returns: true if buffer is empty, false otherwise + [[nodiscard]] const bool IsEmpty() const + { + return wszBuffer[0] == '\0'; + } + + /// @returns: c-type string type + [[nodiscard]] const wchar_t* Data() const + { + return this->wszBuffer; + } + + /// @returns: c-type string type + [[nodiscard]] const wchar_t* Data() + { + return this->wszBuffer; + } + + /// @returns: <0 - if @a'Data()' less than @a'szRight', 0 - if @a'szSearch' is identical to @a'szSearch', >0 - if @a'szSearch' greater than @a'szSearch' + [[nodiscard]] const int Compare(const wchar_t* szData, bool bCaseSensitive = false) const + { + CS_ASSERT(IsEmpty()); // failed because of empty string + + return bCaseSensitive ? StringCompareI(this->Data(), szData) : StringCompare(this->Data(), szData); + } + + /// @returns: <0 - if @a'Data()' less than @a'szSearch', 0 - if @a'szSearch' is identical to @a'szSearch', >0 - if @a'szSearch' greater than @a'szSearch' + [[nodiscard]] const int CompareN(const wchar_t* szSearch) const + { + CS_ASSERT(IsEmpty()); // failed because of empty string + + return StringCompareN(this->Data(), szSearch, this->Size()); + } + + /// @returns: pointer to the first found occurrence of @a'szSearch' substring in @a'Data()' on success, null otherwise + [[nodiscard]] const char* Find(const wchar_t* szSearch, bool bCaseSensitive = false) const + { + CS_ASSERT(IsEmpty()); // failed because of empty string + + return bCaseSensitive ? StringStringI(this->Data(), szSearch) : StringString(this->Data(), szSearch); + } + + /// @returns: pointer to the terminating null in @a'szBuffer' + [[nodiscard]] const char* Append(const wchar_t* szData) const + { + return StringCat(this->wszBuffer, szData); + } + + /// @returns: pointer to the terminating null in @a'szBuffer' + [[nodiscard]] const char* AppendN(const wchar_t* szData) const + { + return StringCatN(this->wszBuffer, szData, this->Size()); + } + + /// @returns: pointer to the @a'szBuffer' + [[nodiscard]] const char* ToUpper() const + { + CS_ASSERT(IsEmpty()); // failed because of empty string + return StringToUpper(this->wszBuffer); + } + + /// @returns: pointer to the @a'szBuffer' + [[nodiscard]] const char* ToLower() const + { + CS_ASSERT(IsEmpty()); // failed because of empty string + return StringToLower(this->wszBuffer); + } + + /// [UNSAFE] /// + /// @returns: converted buffer into multibyte + /// @note: delete the buffer after using, else in return we will have a memory leak + const char* ToUnicode() + { + char* szOutBuffer = new char[this->Length() + 1U]; + StringUnicodeToMultiByte(szOutBuffer, this->Length() + 1U, this->wszBuffer, this->wszBuffer + this->Length() + 1U); + + return szOutBuffer; + } + + /// conveted from multibyte data + void FromUnicode(const char* szStr) + { + StringMultiByteToUnicode(this->wszBuffer, this->Length(), szStr, szStr + this->Length()); + } + + wchar_t wszBuffer[SIZE]; + }; +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/detourhook.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/detourhook.h new file mode 100644 index 0000000..d02763c --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/detourhook.h @@ -0,0 +1,139 @@ +#pragma once +// used: [ext] minhook +// @credits: https://github.com/TsudaKageyu/minhook +#include "../../dependencies/minhook/minhook.h" + +// used: l_print +#include "log.h" + +template +class CBaseHookObject +{ +public: + /// setup hook and replace function + /// @returns: true if hook has been successfully created, false otherwise + bool Create(void* pFunction, void* pDetour) + { + if (pFunction == nullptr || pDetour == nullptr) + return false; + + pBaseFn = pFunction; + pReplaceFn = pDetour; + + if (const MH_STATUS status = MH_CreateHook(pBaseFn, pReplaceFn, &pOriginalFn); status != MH_OK) + { +#ifdef _DEBUG + L_PRINT(LOG_ERROR) << CS_XOR("failed to create hook, status: \"") << MH_StatusToString(status) << CS_XOR("\" with base address: ") << L::AddFlags(LOG_MODE_INT_SHOWBASE | LOG_MODE_INT_FORMAT_HEX) << reinterpret_cast(pBaseFn); +#else + L_PRINT(LOG_ERROR) << CS_XOR("failed to create hook"); +#endif + + CS_ASSERT(false); + return false; + } + + if (!Replace()) + return false; + + return true; + } + + /// patch memory to jump to our function instead of original + /// @returns: true if hook has been successfully applied, false otherwise + bool Replace() + { + // check is hook has been created + if (pBaseFn == nullptr) + return false; + + // check that function isn't already hooked + if (bIsHooked) + return false; + + if (const MH_STATUS status = MH_EnableHook(pBaseFn); status != MH_OK) + { +#ifdef _DEBUG + L_PRINT(LOG_ERROR) << CS_XOR("failed to enable hook, status: \"") << MH_StatusToString(status) << CS_XOR("\" with base address: ") << L::AddFlags(LOG_MODE_INT_SHOWBASE | LOG_MODE_INT_FORMAT_HEX) << reinterpret_cast(pBaseFn); +#else + L_PRINT(LOG_ERROR) << CS_XOR("failed to enable hook"); +#endif + + CS_ASSERT(false); + return false; + } + + // switch hook state + bIsHooked = true; + return true; + } + + /// restore original function call and cleanup hook data + /// @returns: true if hook has been successfully removed, false otherwise + bool Remove() + { + // restore it at first + if (!Restore()) + return false; + + if (const MH_STATUS status = MH_RemoveHook(pBaseFn); status != MH_OK) + { +#ifdef _DEBUG + L_PRINT(LOG_ERROR) << CS_XOR("failed to remove hook, status: \"") << MH_StatusToString(status) << CS_XOR("\" with base address: ") << L::AddFlags(LOG_MODE_INT_SHOWBASE | LOG_MODE_INT_FORMAT_HEX) << reinterpret_cast(pBaseFn); +#else + L_PRINT(LOG_ERROR) << CS_XOR("failed to remove hook"); +#endif + + CS_ASSERT(false); + return false; + } + + return true; + } + + /// restore patched memory to original function call + /// @returns: true if hook has been successfully restored, false otherwise + bool Restore() + { + // check that function is hooked + if (!bIsHooked) + return false; + + if (const MH_STATUS status = MH_DisableHook(pBaseFn); status != MH_OK) + { +#ifdef _DEBUG + L_PRINT(LOG_ERROR) << CS_XOR("failed to restore hook, status: \"") << MH_StatusToString(status) << CS_XOR("\" with base address: ") << L::AddFlags(LOG_MODE_INT_SHOWBASE | LOG_MODE_INT_FORMAT_HEX) << reinterpret_cast(pBaseFn); +#else + L_PRINT(LOG_ERROR) << CS_XOR("failed to restore hook"); +#endif + + CS_ASSERT(false); + return false; + } + + // switch hook state + bIsHooked = false; + return true; + } + + /// @returns: original, unwrapped function that would be called without the hook + CS_INLINE T GetOriginal() + { + return reinterpret_cast(pOriginalFn); + } + + /// @returns: true if hook is applied at the time, false otherwise + CS_INLINE bool IsHooked() const + { + return bIsHooked; + } + +private: + // current hook state + bool bIsHooked = false; + // function base handle + void* pBaseFn = nullptr; + // function that being replace the original call + void* pReplaceFn = nullptr; + // original function + void* pOriginalFn = nullptr; +}; diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/draw.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/draw.cpp new file mode 100644 index 0000000..e021f5c --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/draw.cpp @@ -0,0 +1,946 @@ +#include "draw.h" + +// used: cheat variables +#include "../core/variables.h" +// used: viewmatrix +#include "../core/sdk.h" + +// used: m_deg2rad +#include "math.h" +// used: memoryset +#include "crt.h" +// used: easing +#include "easing.h" +// used: ipt +#include "inputsystem.h" + +// used: [ext] imgui +#include "../../dependencies/imgui/imgui_freetype.h" +#include "../../dependencies/imgui/imgui_impl_dx11.h" +#include "../../dependencies/imgui/imgui_impl_win32.h" + +// used: [resouces] font awesome +#include "../../resources/fa_solid_900.h" +#include "../../resources/font_awesome_5.h" +#include "../core/ImFont.h" +#include "../core/imfonts.h" +#include "../core/Bgs.h" +#include "../core/Header.h" +#include "../core/gui.hpp" +#include "../cstrike/font.h" +#include "../cstrike/texture.h" +#include "../dependencies/imgui/imgui_settings.h" +// used: engine/engineclient +#include "../sdk/interfaces/iengineclient.h" + +//dx11: +#include "../sdk/interfaces/iswapchaindx11.h" + +// used: iinputsystem +#include "../core/interfaces.h" +#include "../sdk/interfaces/iinputsystem.h" + +// used: bMainWindowOpened +#include "../core/menu.h" +#include "../core/ui_icons.hpp" + +#pragma region imgui_extended +static constexpr const char* arrKeyNames[] = { + "", + "mouse 1", "mouse 2", "cancel", "mouse 3", "mouse 4", "mouse 5", "", + "backspace", "tab", "", "", "clear", "enter", "", "", + "shift", "control", "alt", "pause", "caps", "", "", "", "", "", "", + "escape", "", "", "", "", "space", "page up", "page down", + "end", "home", "left", "up", "right", "down", "", "", "", + "print", "insert", "delete", "", + "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", + "", "", "", "", "", "", "", + "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", + "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", + "v", "w", "x", "y", "z", "lwin", "rwin", "", "", "", + "num0", "num1", "num2", "num3", "num4", "num5", + "num6", "num7", "num8", "num9", + "*", "+", "", "-", ".", "/", + "f1", "f2", "f3", "f4", "f5", "f6", "f7", "f8", + "f9", "f10", "f11", "f12", "f13", "f14", "f15", "f16", + "f17", "f18", "f19", "f20", "f21", "f22", "f23", "f24", + "", "", "", "", "", "", "", "", + "num lock", "scroll lock", + "", "", "", "", "", "", "", + "", "", "", "", "", "", "", + "lshift", "rshift", "lctrl", + "rctrl", "lmenu", "rmenu" +}; + +void ImGui::HelpMarker(const char* szDescription) +{ + TextDisabled(CS_XOR("(?)")); + if (IsItemHovered()) + { + BeginTooltip(); + PushTextWrapPos(450.f); + TextUnformatted(szDescription); + PopTextWrapPos(); + EndTooltip(); + } +} + +bool ImGui::HotKey(const char* szLabel, unsigned int* pValue) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* pWindow = g.CurrentWindow; + + if (pWindow->SkipItems) + return false; + + ImGuiIO& io = g.IO; + const ImGuiStyle& style = g.Style; + const ImGuiID nIndex = pWindow->GetID(szLabel); + + const float flWidth = CalcItemWidth(); + const ImVec2 vecLabelSize = CalcTextSize(szLabel, nullptr, true); + float xOffset = 50.f; + const ImRect rectFrame(pWindow->DC.CursorPos + ImVec2(vecLabelSize.x > 0.0f ? style.ItemInnerSpacing.x + GetFrameHeight() + xOffset : xOffset, 0.0f), pWindow->DC.CursorPos + ImVec2(flWidth + xOffset, vecLabelSize.x > 0.0f ? vecLabelSize.y + style.FramePadding.y : 0.f)); + const ImRect rectTotal(rectFrame.Min, rectFrame.Max); + + + ItemSize(rectTotal, style.FramePadding.y); + if (!ItemAdd(rectTotal, nIndex, &rectFrame)) + return false; + + const bool bHovered = ItemHoverable(rectFrame, nIndex, ImGuiItemFlags_None); + if (bHovered) + { + SetHoveredID(nIndex); + g.MouseCursor = ImGuiMouseCursor_TextInput; + } + + const bool bClicked = bHovered && io.MouseClicked[0]; + const bool bDoubleClicked = bHovered && io.MouseDoubleClicked[0]; + if (bClicked || bDoubleClicked) + { + if (g.ActiveId != nIndex) + { + CRT::MemorySet(io.MouseDown, 0, sizeof(io.MouseDown)); + CRT::MemorySet(io.KeysDown, 0, sizeof(io.KeysDown)); + *pValue = 0U; + } + + SetActiveID(nIndex, pWindow); + FocusWindow(pWindow); + } + + bool bValueChanged = false; + if (unsigned int nKey = *pValue; g.ActiveId == nIndex) + { + for (int n = 0; n < IM_ARRAYSIZE(io.MouseDown); n++) + { + if (IsMouseDown(n)) + { + switch (n) + { + case 0: + nKey = VK_LBUTTON; + break; + case 1: + nKey = VK_RBUTTON; + break; + case 2: + nKey = VK_MBUTTON; + break; + case 3: + nKey = VK_XBUTTON1; + break; + case 4: + nKey = VK_XBUTTON2; + break; + } + + bValueChanged = true; + ClearActiveID(); + } + } + + if (!bValueChanged) + { + for (int n = VK_BACK; n <= VK_RMENU; n++) + { + if (IsKeyDown((ImGuiKey)n)) + { + nKey = n; + bValueChanged = true; + ClearActiveID(); + } + } + } + + if (IsKeyPressed(ImGuiKey_Escape)) + { + *pValue = 0U; + ClearActiveID(); + } + else + *pValue = nKey; + } + + char szBuffer[64] = {}; + char* szBufferEnd = CRT::StringCopy(szBuffer, " "); + if (*pValue != 0 && g.ActiveId != nIndex) + szBufferEnd = CRT::StringCat(szBufferEnd, arrKeyNames[*pValue]); + else if (g.ActiveId == nIndex) + szBufferEnd = CRT::StringCat(szBufferEnd, CS_XOR("press")); + else + szBufferEnd = CRT::StringCat(szBufferEnd, CS_XOR("none")); + CRT::StringCat(szBufferEnd, " "); + + PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(style.FramePadding.x, -1)); + + const ImVec2 vecBufferSize = CalcTextSize(szBuffer); + RenderFrame(ImVec2(rectFrame.Max.x - vecBufferSize.x, rectTotal.Min.y), ImVec2(rectFrame.Max.x, rectTotal.Min.y + style.FramePadding.y + vecBufferSize.y), GetColorU32((bHovered || bClicked || bDoubleClicked) ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg), true, style.FrameRounding); + pWindow->DrawList->AddText(ImVec2(rectFrame.Max.x - vecBufferSize.x, rectTotal.Min.y + style.FramePadding.y), GetColorU32(g.ActiveId == nIndex ? ImGuiCol_Text : ImGuiCol_TextDisabled), szBuffer); + + //if (vecLabelSize.x > 0.f) + //RenderText(ImVec2(rectTotal.Min.x, rectTotal.Min.y + style.FramePadding.y), szLabel); + + PopStyleVar(); + return bValueChanged; +} + +bool ImGui::HotKey(const char* szLabel, KeyBind_t* pKeyBind, const bool bAllowSwitch) +{ + const bool bValueChanged = HotKey(szLabel, &pKeyBind->uKey); + + if (bAllowSwitch) + { + + char* szUniqueID = static_cast(MEM_STACKALLOC(CRT::StringLength(szLabel) + 6)); + CRT::StringCat(CRT::StringCopy(szUniqueID, CS_XOR("key##")), szLabel); + + if (IsItemClicked(ImGuiMouseButton_Right)) + OpenPopup(szUniqueID); + + if (BeginPopup(szUniqueID)) + { + SetNextItemWidth(ImGui::GetWindowWidth() + 20.f); + if (Combo(CS_XOR("##keybind.mode"), reinterpret_cast(&pKeyBind->nMode), CS_XOR("Hold\0Toggle\0\0"))) + CloseCurrentPopup(); + + EndPopup(); + } + + MEM_STACKFREE(szUniqueID); + } + + return bValueChanged; +} + + + +bool ImGui::BeginListBox(const char* szLabel, int nItemsCount, int nHeightInItems) +{ + float height = GetTextLineHeightWithSpacing() * ((nHeightInItems < 0 ? ImMin(nItemsCount, 7) : nHeightInItems) + 0.25f) + GetStyle().FramePadding.y * 2.0f; + return BeginListBox(szLabel, ImVec2(0.0f, height)); +} + +bool ImGui::ColorEdit3(const char* szLabel, Color_t* pColor, ImGuiColorEditFlags flags) +{ + return ColorEdit4(szLabel, pColor, flags | ImGuiColorEditFlags_NoAlpha); +} + +bool ImGui::ColorEdit4(const char* szLabel, Color_t* pColor, ImGuiColorEditFlags flags, int type) +{ + if (type == 0) { + ImVec2 v1 = ImGui::GetItemRectSize(); + ImVec2 v1pos = ImGui::GetCursorPos(); + ImGui::SameLine(v1pos.x + v1.x + 230); + } + if (type == 1) { + ImVec2 v1 = ImGui::GetItemRectSize(); + ImVec2 v1pos = ImGui::GetCursorPos(); + ImGui::SameLine(v1pos.x + v1.x + 75.f); + } + float arrColor[4]; + pColor->BaseAlpha(arrColor); + + if (ColorEdit4(szLabel, &arrColor[0], flags)) + { + *pColor = Color_t::FromBase4(arrColor); + return true; + } + + return false; +} + + +bool ImGui::ColorEdit3(const char* szLabel, ColorPickerVar_t* pColor, ImGuiColorEditFlags flags) +{ + return ColorEdit4(szLabel, pColor, flags | ImGuiColorEditFlags_NoAlpha); +} + +bool ImGui::ColorEdit4(const char* szLabel, ColorPickerVar_t* pColorVar, ImGuiColorEditFlags flags, int type) +{ + const bool bResult = ColorEdit4(szLabel, &pColorVar->colValue, flags); + + // switch rainbow mode on middle mouse click + if (IsItemHovered()) + { + // tooltip for turn on/off rainbow mode + BeginTooltip(); + { + PushTextWrapPos(450.f); + TextUnformatted(CS_XOR("use mouse middle-click to turn on/off rainbow mode!")); + PopTextWrapPos(); + } + EndTooltip(); + + if (IsMouseClicked(ImGuiMouseButton_Middle)) + pColorVar->bRainbow = !pColorVar->bRainbow; + } + + // open the context popup + OpenPopupOnItemClick(CS_XOR("context##color.picker"), ImGuiPopupFlags_MouseButtonRight); + // @todo: cleaner code + SetNextWindowSize(ImVec2((pColorVar->bRainbow ? 120.f : 60.f) * D::CalculateDPI(C_GET(int, Vars.nDpiScale)), 0.f)); + if (BeginPopup(CS_XOR("context##color.picker"))) + { + if (Button(CS_XOR("copy##color.picker"), ImVec2(-1, 25 * D::CalculateDPI(C_GET(int, Vars.nDpiScale))))) + { + // @todo: im32 hex format is AARRGGBB, but we need RRGGBBAA + CRT::String_t<64U> szBuffer(CS_XOR("#%X"), pColorVar->colValue.GetU32()); + SetClipboardText(szBuffer.Data()); + szBuffer.Clear(); + + CloseCurrentPopup(); + } + + if (Button(CS_XOR("paste##color.picker"), ImVec2(-1, 25 * D::CalculateDPI(C_GET(int, Vars.nDpiScale))))) + { + const char* szClipboardText = GetClipboardText(); + // @note: +1U for '#' prefix skipping + const ImU32 uConvertedColor = CRT::StringToInteger(szClipboardText + 1U, nullptr, 16); + + pColorVar->colValue = Color_t(uConvertedColor); + CloseCurrentPopup(); + } + + if (pColorVar->bRainbow) + { + // @note: urgh padding moment idk + SetNextItemWidth(ImGui::GetWindowWidth() * 0.90f + 1.f); + SliderFloat(CS_XOR("##speed.color.picker"), &pColorVar->flRainbowSpeed, 0.f, 5.f, CS_XOR("speed: %.1f"), ImGuiSliderFlags_AlwaysClamp); + } + + EndPopup(); + } + + return bResult; +} + +#pragma endregion + + +#include + +// Forward declaration of the ImGui render function. +void ImGui_ImplDX11_RenderDrawData(ImDrawData* draw_data); +void ImGui_ImplDX11_SetupRenderState(ImDrawData* draw_data, ID3D11DeviceContext* ctx); + +// thread-safe draw data mutex +static SRWLOCK drawLock = {}; + +static void* __cdecl ImGuiAllocWrapper(const std::size_t nSize, [[maybe_unused]] void* pUserData = nullptr) +{ + return MEM::HeapAlloc(nSize); +} + +static void __cdecl ImGuiFreeWrapper(void* pMemory, [[maybe_unused]] void* pUserData = nullptr) noexcept +{ + MEM::HeapFree(pMemory); +} + +// Function to load a texture from memory +HRESULT LoadTextureFromMemory(ID3D11Device* device, const void* data, size_t dataSize, ID3D11ShaderResourceView** textureView) +{ + D3D11_TEXTURE2D_DESC desc; + ZeroMemory(&desc, sizeof(desc)); + desc.Width = 512; // Set the width of your texture + desc.Height = 512; // Set the height of your texture + desc.MipLevels = 1; + desc.ArraySize = 1; + desc.Format = DXGI_FORMAT_R8G8B8A8_UNORM; // Adjust the format based on your texture data + desc.SampleDesc.Count = 1; + desc.SampleDesc.Quality = 0; + desc.Usage = D3D11_USAGE_DEFAULT; + desc.BindFlags = D3D11_BIND_SHADER_RESOURCE; + desc.CPUAccessFlags = 0; + desc.MiscFlags = 0; + + D3D11_SUBRESOURCE_DATA initData; + ZeroMemory(&initData, sizeof(initData)); + initData.pSysMem = data; + initData.SysMemPitch = static_cast(desc.Width * 4); // Assuming 4 bytes per pixel, adjust as needed + + ID3D11Texture2D* texture = nullptr; + HRESULT hr = device->CreateTexture2D(&desc, &initData, &texture); + + if (SUCCEEDED(hr)) + { + D3D11_SHADER_RESOURCE_VIEW_DESC srvDesc; + ZeroMemory(&srvDesc, sizeof(srvDesc)); + srvDesc.Format = desc.Format; + srvDesc.ViewDimension = D3D11_SRV_DIMENSION_TEXTURE2D; + srvDesc.Texture2D.MipLevels = desc.MipLevels; + srvDesc.Texture2D.MostDetailedMip = 0; + + hr = device->CreateShaderResourceView(texture, &srvDesc, textureView); + + // Release the texture because we have created a shader resource view + texture->Release(); + } + + return hr; +} +#define STB_IMAGE_IMPLEMENTATION +#include "stb_image.h" +#include "../core/hooks.h" + +// Simple helper function to load an image into a DX11 texture with common settings +bool LoadTextureFromFile(const char* filename, ID3D11ShaderResourceView** out_srv, int* out_width, int* out_height) +{ + // Load from disk into a raw RGBA buffer + int image_width = 0; + int image_height = 0; + unsigned char* image_data = stbi_load(filename, &image_width, &image_height, NULL, 4); + if (image_data == NULL) + return false; + + // Create texture + D3D11_TEXTURE2D_DESC desc; + ZeroMemory(&desc, sizeof(desc)); + desc.Width = image_width; + desc.Height = image_height; + desc.MipLevels = 1; + desc.ArraySize = 1; + desc.Format = DXGI_FORMAT_R8G8B8A8_UNORM; + desc.SampleDesc.Count = 1; + desc.Usage = D3D11_USAGE_DEFAULT; + desc.BindFlags = D3D11_BIND_SHADER_RESOURCE; + desc.CPUAccessFlags = 0; + + ID3D11Texture2D* pTexture = NULL; + D3D11_SUBRESOURCE_DATA subResource; + subResource.pSysMem = image_data; + subResource.SysMemPitch = desc.Width * 4; + subResource.SysMemSlicePitch = 0; + I::Device->CreateTexture2D(&desc, &subResource, &pTexture); + + // Create texture view + D3D11_SHADER_RESOURCE_VIEW_DESC srvDesc; + ZeroMemory(&srvDesc, sizeof(srvDesc)); + srvDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM; + srvDesc.ViewDimension = D3D11_SRV_DIMENSION_TEXTURE2D; + srvDesc.Texture2D.MipLevels = desc.MipLevels; + srvDesc.Texture2D.MostDetailedMip = 0; + I::Device->CreateShaderResourceView(pTexture, &srvDesc, out_srv); + pTexture->Release(); + + *out_width = image_width; + *out_height = image_height; + stbi_image_free(image_data); + + return true; +} +#include "../icons/iconscs2.c" +int my_image_width = 170; +int my_image_height = 295; +float font_size = 18.f; // The desired font size + +bool D::InitImGui() +{ + if (bInitialized) { + L_PRINT(LOG_WARNING) << CS_XOR("Aready Initialized overlay"); + return false; + } + ImGui::SetAllocatorFunctions(ImGuiAllocWrapper, ImGuiFreeWrapper); + + ImGui::CreateContext(); + ImGui::SetCurrentContext(ImGui::GetCurrentContext()); + ImGui_ImplWin32_Init(IPT::hWindow); + ImGui_ImplDX11_Init(I::Device, I::DeviceContext); + + ImGuiIO& io = ImGui::GetIO(); + + io.IniFilename = nullptr; + io.LogFilename = nullptr; + + io.MouseDrawCursor = MENU::bMainWindowOpened; + + + // create draw data containers + pDrawListActive = IM_NEW(ImDrawList)(ImGui::GetDrawListSharedData()); + pDrawListSafe = IM_NEW(ImDrawList)(ImGui::GetDrawListSharedData()); + pDrawListRender = IM_NEW(ImDrawList)(ImGui::GetDrawListSharedData()); + +#pragma region draw_setup_style + ImGuiStyle& style = ImGui::GetStyle(); + style.Alpha = 1.0f; + style.WindowPadding = ImVec2(8, 8); + style.WindowRounding = 4.0f; + style.WindowBorderSize = 1.0f; + style.WindowMinSize = ImVec2(32, 32); + style.WindowTitleAlign = ImVec2(0.5f, 0.5f); + style.ChildRounding = 4.0f; + style.ChildBorderSize = 1.0f; + style.PopupRounding = 4.0f; + style.PopupBorderSize = 1.0f; + style.FramePadding = ImVec2(4, 2); + style.FrameRounding = 4.0f; + style.FrameBorderSize = 1.0f; + style.ItemSpacing = ImVec2(8, 4); + style.ItemInnerSpacing = ImVec2(4, 4); + style.IndentSpacing = 6.0f; + style.ColumnsMinSpacing = 6.0f; + style.ScrollbarSize = 6.0f; + style.ScrollbarRounding = 9.0f; + style.GrabMinSize = 0.0f; + style.GrabRounding = 4.0f; + style.TabRounding = 4.0f; + style.TabBorderSize = 1.0f; + style.ButtonTextAlign = ImVec2(0.5f, 0.5f); + style.SelectableTextAlign = ImVec2(0.0f, 0.5f); + style.WindowShadowSize = 0.f; + style.AntiAliasedLines = true; + style.AntiAliasedFill = true; + style.AntiAliasedLinesUseTex = true; + style.ColorButtonPosition = ImGuiDir_Right; + style.Colors[ImGuiCol_PopupBg] = ImVec4(0.08f, 0.08f, 0.08f, 0.94f); + style.Colors[ImGuiCol_Border] = ImVec4(0.43f, 0.43f, 0.50f, 0.50f); + style.Colors[ImGuiCol_BorderShadow] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + style.Colors[ImGuiCol_Header] = ImVec4{ ImColor(15, 18, 15, 155) }; + style.Colors[ImGuiCol_HeaderHovered] = ImVec4{ ImColor(15, 18, 15, 155) }; + style.Colors[ImGuiCol_HeaderActive] = ImVec4{ ImColor(15, 18, 15, 155) }; + style.Colors[ImGuiCol_Separator] = style.Colors[ImGuiCol_Border]; + style.Colors[ImGuiCol_SeparatorHovered] = ImVec4(0.10f, 0.40f, 0.75f, 0.78f); + style.Colors[ImGuiCol_SeparatorActive] = ImVec4(0.10f, 0.40f, 0.75f, 0.00f); + style.Colors[ImGuiCol_ResizeGrip] = ImVec4(0.26f, 0.59f, 0.98f, 0); + style.Colors[ImGuiCol_ResizeGripHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0); + style.Colors[ImGuiCol_ResizeGripActive] = ImVec4(0.26f, 0.59f, 0.98f, 0); + style.Colors[ImGuiCol_Button] = ImVec4{ ImColor(15, 18, 15, 155) }; + style.Colors[ImGuiCol_ButtonHovered] = ImVec4{ ImColor(15, 18, 15, 155) }; + style.Colors[ImGuiCol_ButtonActive] = ImVec4{ ImColor(15, 18, 15, 155) }; +#pragma endregion + + io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange; + + for (int i = 0; i < CS_ARRAYSIZE(FONT::pMenu); i++) { + const float flFontSize = 16.f * CalculateDPI(i); + FONT::pMenu[i] = io.Fonts->AddFontFromFileTTF(CS_XOR("C:\\Windows\\Fonts\\Verdana.ttf"), flFontSize, nullptr, io.Fonts->GetGlyphRangesCyrillic()); + } + + ImFontConfig verdana_cfg; + ImFontConfig name_cfg; + ImFontConfig seg_cfg; + ImFontConfig tahoma_cfg; + verdana_cfg.FontBuilderFlags = ImGuiFreeTypeBuilderFlags_LightHinting; + tahoma_cfg.FontBuilderFlags = ImGuiFreeTypeBuilderFlags_Bitmap; + seg_cfg.FontBuilderFlags = ImGuiFreeTypeBuilderFlags_Monochrome | ImGuiFreeTypeBuilderFlags_NoHinting; + name_cfg.FontBuilderFlags = ImGuiFreeTypeBuilderFlags_ForceAutoHint; + + ImFontConfig cfg; + cfg.FontBuilderFlags = ImGuiFreeTypeBuilderFlags_ForceAutoHint | ImGuiFreeTypeBuilderFlags_LightHinting | ImGuiFreeTypeBuilderFlags_LoadColor; + + font::lexend_general_bold = io.Fonts->AddFontFromFileTTF(("C:\\Windows\\Fonts\\segoeui.ttf"), 18.0f, NULL, io.Fonts->GetGlyphRangesJapanese()); + font::lexend_bold = io.Fonts->AddFontFromFileTTF(("C:\\Windows\\Fonts\\segoeui.ttf"), 18.0f, NULL, io.Fonts->GetGlyphRangesJapanese()); + + font::lexend_regular = io.Fonts->AddFontFromMemoryTTF(lexend_regular, sizeof(lexend_regular), 14.f, &cfg, io.Fonts->GetGlyphRangesCyrillic()); + font::icomoon = io.Fonts->AddFontFromMemoryTTF(icomoon, sizeof(icomoon), 20.f, &cfg, io.Fonts->GetGlyphRangesCyrillic()); + + font::icomoon_widget = io.Fonts->AddFontFromMemoryTTF(icomoon_widget, sizeof(icomoon_widget), 15.f, &cfg, io.Fonts->GetGlyphRangesCyrillic()); + font::icomoon_widget2 = io.Fonts->AddFontFromMemoryTTF(icomoon, sizeof(icomoon), 16.f, &cfg, io.Fonts->GetGlyphRangesCyrillic()); + + + FONT::pExtra = io.Fonts->AddFontFromFileTTF(CS_XOR("C:\\Windows\\Fonts\\Verdana.ttf"), 12.f, &verdana_cfg, io.Fonts->GetGlyphRangesCyrillic()); + FONT::pEspHealth = io.Fonts->AddFontFromFileTTF(CS_XOR("C:\\Windows\\Fonts\\Verdana.ttf"), 9.f, &verdana_cfg, io.Fonts->GetGlyphRangesCyrillic()); + FONT::pMenuTabsDesc = io.Fonts->AddFontFromFileTTF(CS_XOR("C:\\Windows\\Fonts\\Verdana.ttf"), 12.f, &verdana_cfg, io.Fonts->GetGlyphRangesCyrillic()); + FONT::pEspWepName = io.Fonts->AddFontFromFileTTF(CS_XOR("C:\\Windows\\Fonts\\Verdana.ttf"), 10.f, &name_cfg, io.Fonts->GetGlyphRangesDefault()); + FONT::pEspName = io.Fonts->AddFontFromFileTTF(CS_XOR("C:\\Windows\\Fonts\\Verdana.ttf"), 11.5f, &name_cfg, io.Fonts->GetGlyphRangesDefault()); + FONT::pVisual = io.Fonts->AddFontFromFileTTF(CS_XOR("C:\\Windows\\Fonts\\Tahoma.ttf"), 14.f, &tahoma_cfg, io.Fonts->GetGlyphRangesCyrillic()); + FONT::pEspFlagsName = io.Fonts->AddFontFromFileTTF(CS_XOR("C:\\Windows\\Fonts\\Verdana.ttf"), 11.f, &verdana_cfg, io.Fonts->GetGlyphRangesDefault()); + FONT::pEspIcons = io.Fonts->AddFontFromFileTTF(CS_XOR("C:\\Windows\\Fonts\\Verdana.ttf"), 10.f, &name_cfg, io.Fonts->GetGlyphRangesDefault()); + + LoadTextureFromFile("C:\\Program Files\\cs2.png", &I::Maintexture, &my_image_width, &my_image_height); + + FONT::isis = io.Fonts->AddFontFromFileTTF(("C:\\Windows\\Fonts\\segoeui.ttf"), 18.0f, NULL, io.Fonts->GetGlyphRangesJapanese()); + FONT::icon_font = io.Fonts->AddFontFromFileTTF(CS_XOR("C:\\Windows\\Fonts\\Tahoma.ttf"), 18.f, &tahoma_cfg, io.Fonts->GetGlyphRangesCyrillic()); + FONT::font = io.Fonts->AddFontFromFileTTF(("C:\\Windows\\Fonts\\segoeui.ttf"), 16.0f, NULL, io.Fonts->GetGlyphRangesCyrillic()); + FONT::mainfont = io.Fonts->AddFontFromFileTTF(("C:\\Windows\\Fonts\\segoeui.ttf"), 18.f, NULL, io.Fonts->GetGlyphRangesCyrillic()); + + io.Fonts->FontBuilderFlags = ImGuiFreeTypeBuilderFlags_LightHinting; + bInitialized = io.Fonts->Build(); + return bInitialized; +} + +#include "../cstrike/features/visuals/overlay.h" + +void D::Destroy() +{ + // check is it already destroyed or wasn't initialized at all + if (!bInitialized) + return; + + ImGui::GetIO().Fonts->Clear(); + ImGui::GetIO().Fonts->TexID = 0; + + // free draw data containers + IM_DELETE(pDrawListActive); + IM_DELETE(pDrawListSafe); + IM_DELETE(pDrawListRender); + + // shutdown imgui directOMSetRenderTargets(1, &I::RenderTargetView, NULL); + ImGui_ImplDX11_RenderDrawData(ImGui::GetDrawData()); +} +#pragma endregion + +#pragma region draw_callbacks + +extern IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); + +bool D::OnWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) +{ + // check is drawing initialized + if (!bInitialized) + return false; + + IPT::OnWndProc(hWnd, uMsg, wParam, lParam); + + // switch menu state + if (IPT::IsKeyReleased(C_GET(unsigned int, Vars.nMenuKey))) + { + MENU::bMainWindowOpened = !MENU::bMainWindowOpened; + // update animation + MENU::animMenuDimBackground.Switch(); + // handle mouse input when menu is opened + if (I::InputSystem->IsRelativeMouseMode()) + { + // set input system mouse mode + MEM::fnSetRelativeMouseMode(!MENU::bMainWindowOpened); + // set input system window grab state + MEM::fnSetWindowGrab(I::InputSystem->GetSDLWindow(), !MENU::bMainWindowOpened); + // warp our cursor into middle of the screen + const ImVec2 vecScreenCenter = ImGui::GetIO().DisplaySize / 2.f; + MEM::fnWarpMouseInWindow(nullptr, vecScreenCenter.x, vecScreenCenter.y); + } + } + + // handle ImGui's window messages and block game's input if menu is opened + return ImGui_ImplWin32_WndProcHandler(hWnd, uMsg, wParam, lParam) || MENU::bMainWindowOpened; +} + + + +#pragma endregion + +#pragma region draw_main + +void D::RenderDrawData(ImDrawData* pDrawData) +{ + if (!pDrawData) + return; + + if (TryAcquireSRWLockExclusive(&drawLock)) + { + *pDrawListRender = *pDrawListSafe; + ReleaseSRWLockExclusive(&drawLock); + } + + if (pDrawListRender->CmdBuffer.empty()) + return; + + // remove trailing command if unused + // @note: equivalent to pDrawList->_PopUnusedDrawCmd() + const ImDrawCmd& lastCommand = pDrawListRender->CmdBuffer.back(); + if ( lastCommand.ElemCount == 0 && lastCommand.UserCallback == nullptr) + { + pDrawListRender->CmdBuffer.pop_back(); + if (pDrawListRender->CmdBuffer.empty()) + return; + } + + ImGuiContext* pContext = ImGui::GetCurrentContext(); + ImGuiViewportP* pViewport = pContext->Viewports[0]; + ImVector* vecDrawLists = pViewport->DrawDataBuilder.Layers[0]; + vecDrawLists->push_front(pDrawListRender); // this one being most background + + pDrawData->CmdLists.push_front(pDrawListRender); + pDrawData->CmdListsCount = vecDrawLists->Size; + pDrawData->TotalVtxCount += pDrawListRender->VtxBuffer.Size; + pDrawData->TotalIdxCount += pDrawListRender->IdxBuffer.Size; +} + +void D::ResetDrawData() +{ + pDrawListActive->_ResetForNewFrame(); + pDrawListActive->PushTextureID(ImGui::GetIO().Fonts->TexID); + pDrawListActive->PushClipRectFullScreen(); +} + +void D::SwapDrawData() +{ + ::AcquireSRWLockExclusive(&drawLock); + + + *pDrawListSafe = *pDrawListActive; + + ::ReleaseSRWLockExclusive(&drawLock); +} + +#pragma endregion + +#pragma region draw_bindings + +bool D::WorldToScreen(const Vector_t& in, ImVec2& out) +{ + if (!ImGui::GetCurrentContext()) + return false; + + auto z = SDK::ViewMatrix[3][0] * in.x + SDK::ViewMatrix[3][1] * in.y + SDK::ViewMatrix[3][2] * in.z + SDK::ViewMatrix[3][3]; + if (z < 0.001f) return false; + + out = ImGui::GetIO().DisplaySize * 0.5f; + out.x *= 1.0f + (SDK::ViewMatrix[0][0] * in.x + SDK::ViewMatrix[0][1] * in.y + SDK::ViewMatrix[0][2] * in.z + SDK::ViewMatrix[0][3]) / z; + out.y *= 1.0f - (SDK::ViewMatrix[1][0] * in.x + SDK::ViewMatrix[1][1] * in.y + SDK::ViewMatrix[1][2] * in.z + SDK::ViewMatrix[1][3]) / z; + + // Prevents rounded corners. + out = ImFloor(out); + + return true; +} + +float D::CalculateDPI(const int nScaleTarget) +{ + switch ((EMiscDpiScale)nScaleTarget) + { + case EMiscDpiScale::MISC_DPISCALE_DEFAULT: + return 1.f; + case EMiscDpiScale::MISC_DPISCALE_125: + return 1.25f; + case EMiscDpiScale::MISC_DPISCALE_150: + return 1.5f; + case EMiscDpiScale::MISC_DPISCALE_175: + return 1.75f; + case EMiscDpiScale::MISC_DPISCALE_200: + return 2.f; + default: + return 1.f; + } +} + +void D::AddDrawListRect(ImDrawList* pDrawList, const ImVec2& vecMin, const ImVec2& vecMax, const Color_t& colRect, const unsigned int uFlags, const Color_t& colOutline, const float flRounding, const ImDrawFlags roundingCorners, float flThickness, const float flOutlineThickness) +{ + if (pDrawList == nullptr) + pDrawList = pDrawListActive; + + const ImU32 colRectPacked = colRect.GetU32(); + const ImU32 colOutlinePacked = colOutline.GetU32(); + + if (uFlags & DRAW_RECT_FILLED) + pDrawList->AddRectFilled(vecMin, vecMax, colRectPacked, flRounding, roundingCorners); + else + { + pDrawList->AddRect(vecMin, vecMax, colRectPacked, flRounding, roundingCorners, flThickness); + flThickness *= 0.5f; + } + + const float flHalfOutlineThickness = flOutlineThickness * 0.5f; + const ImVec2 vecThicknessOffset = { flThickness + flHalfOutlineThickness, flThickness + flHalfOutlineThickness }; + + if (uFlags & DRAW_RECT_BORDER) + pDrawList->AddRect(vecMin + vecThicknessOffset, vecMax - vecThicknessOffset, colOutlinePacked, flRounding, roundingCorners, flOutlineThickness); + + if (uFlags & DRAW_RECT_OUTLINE) + pDrawList->AddRect(vecMin - vecThicknessOffset, vecMax + vecThicknessOffset, colOutlinePacked, flRounding, roundingCorners, flOutlineThickness); +} + +void D::AddDrawListRectMultiColor(ImDrawList* pDrawList, const ImVec2& vecMin, const ImVec2& vecMax, const Color_t& colUpperLeft, const Color_t& colUpperRight, const Color_t& colBottomRight, const Color_t& colBottomLeft) +{ + if (pDrawList == nullptr) + pDrawList = pDrawListActive; + + pDrawList->AddRectFilledMultiColor(vecMin, vecMax, colUpperLeft.GetU32(), colUpperRight.GetU32(), colBottomRight.GetU32(), colBottomLeft.GetU32()); +} + +void D::AddDrawListCircle(ImDrawList* pDrawList, const ImVec2& vecCenter, const float flRadius, const Color_t& colCircle, const int nSegments, const unsigned int uFlags, const Color_t& colOutline, float flThickness, const float flOutlineThickness) +{ + if (pDrawList == nullptr) + pDrawList = pDrawListActive; + + const ImU32 colCirclePacked = colCircle.GetU32(); + + if (uFlags & DRAW_CIRCLE_FILLED) + { + pDrawList->AddCircleFilled(vecCenter, flRadius, colCirclePacked, nSegments); + flThickness = 0.0f; + } + else + pDrawList->AddCircle(vecCenter, flRadius, colCirclePacked, nSegments, flThickness); + + if (uFlags & DRAW_CIRCLE_OUTLINE) + pDrawList->AddCircle(vecCenter, flRadius + flOutlineThickness, colOutline.GetU32(), nSegments, flThickness + flOutlineThickness); +} + +void D::AddDrawListArc(ImDrawList* pDrawList, const ImVec2& vecPosition, const float flRadius, const float flMinimumAngle, const float flMaximumAngle, const Color_t& colArc, const float flThickness) +{ + if (pDrawList == nullptr) + pDrawList = pDrawListActive; + + pDrawList->PathArcTo(vecPosition, flRadius, M_DEG2RAD(flMinimumAngle), M_DEG2RAD(flMaximumAngle), 32); + pDrawList->PathStroke(colArc.GetU32(), false, flThickness); +} + +void D::AddDrawListLine(ImDrawList* pDrawList, const ImVec2& vecFirst, const ImVec2& vecSecond, const Color_t& colLine, const float flThickness) +{ + if (pDrawList == nullptr) + pDrawList = pDrawListActive; + + pDrawList->AddLine(vecFirst, vecSecond, colLine.GetU32(), flThickness); +} + +void D::AddDrawListTriangle(ImDrawList* pDrawList, const ImVec2& vecFirst, const ImVec2& vecSecond, const ImVec2& vecThird, const Color_t& colTriangle, const unsigned int uFlags, const Color_t& colOutline, const float flThickness) +{ + if (pDrawList == nullptr) + pDrawList = pDrawListActive; + + const ImU32 colTrianglePacked = colTriangle.GetU32(); + + if (uFlags & DRAW_TRIANGLE_FILLED) + pDrawList->AddTriangleFilled(vecFirst, vecSecond, vecThird, colTrianglePacked); + else + pDrawList->AddTriangle(vecFirst, vecSecond, vecThird, colTrianglePacked, flThickness); + + if (uFlags & DRAW_TRIANGLE_OUTLINE) + pDrawList->AddTriangle(vecFirst, vecSecond, vecThird, colOutline.GetU32(), flThickness + 1.0f); +} + +void D::AddDrawListQuad(ImDrawList* pDrawList, const ImVec2& vecFirst, const ImVec2& vecSecond, const ImVec2& vecThird, const ImVec2& vecFourth, const Color_t& colQuad, const unsigned int uFlags, const Color_t& colOutline, const float flThickness) +{ + if (pDrawList == nullptr) + pDrawList = pDrawListActive; + + const ImU32 colQuadPacked = colQuad.GetU32(); + + if (uFlags & DRAW_QUAD_FILLED) + pDrawList->AddQuadFilled(vecFirst, vecSecond, vecThird, vecFourth, colQuadPacked); + else + pDrawList->AddQuad(vecFirst, vecSecond, vecThird, vecFourth, colQuadPacked, flThickness); + + if (uFlags & DRAW_QUAD_OUTLINE) + pDrawList->AddQuad(vecFirst, vecSecond, vecThird, vecFourth, colOutline.GetU32(), flThickness + 1.0f); +} + +void D::AddDrawListPolygon(ImDrawList* pDrawList, const ImVec2* vecPoints, const int nPointsCount, const Color_t& colPolygon, unsigned int uFlags, const Color_t& colOutline, const bool bClosed, const float flThickness) +{ + if (pDrawList == nullptr) + pDrawList = pDrawListActive; + + const ImU32 colPolygonPacked = colPolygon.GetU32(); + + if (uFlags & DRAW_POLYGON_FILLED) + pDrawList->AddConvexPolyFilled(vecPoints, nPointsCount, colPolygonPacked); + else + pDrawList->AddPolyline(vecPoints, nPointsCount, colPolygonPacked, bClosed, flThickness); + + if (uFlags & DRAW_POLYGON_OUTLINE) + pDrawList->AddPolyline(vecPoints, nPointsCount, colOutline.GetU32(), bClosed, flThickness + 1.0f); +} + +void D::AddDrawListText(ImDrawList* pDrawList, const ImFont* pFont, const ImVec2& vecPosition, const char* szText, const Color_t& colText, const unsigned int uFlags, const Color_t& colOutline, const float flThickness) +{ + if (pDrawList == nullptr) + pDrawList = pDrawListActive; + + // set font texture + pDrawList->PushTextureID(pFont->ContainerAtlas->TexID); + + const ImU32 colOutlinePacked = colOutline.GetU32(); + + if (uFlags & DRAW_TEXT_DROPSHADOW) + pDrawList->AddText(pFont, pFont->FontSize, vecPosition + ImVec2(flThickness, flThickness), colOutlinePacked, szText); + else if (uFlags & DRAW_TEXT_OUTLINE) + { + pDrawList->AddText(pFont, pFont->FontSize, vecPosition + ImVec2(flThickness, -flThickness), colOutlinePacked, szText); + pDrawList->AddText(pFont, pFont->FontSize, vecPosition + ImVec2(-flThickness, flThickness), colOutlinePacked, szText); + } + + pDrawList->AddText(pFont, pFont->FontSize, vecPosition, colText.GetU32(), szText); + pDrawList->PopTextureID(); +} + +void D::AddDrawListShadowRect(ImDrawList* pDrawList, const ImVec2& vecMin, const ImVec2& vecMax, const Color_t& colShadow, float flThickness, float flRounding, ImDrawFlags roundingCorners) +{ + if (pDrawList == nullptr) + pDrawList = pDrawListActive; + + pDrawList->AddShadowRect(vecMin, vecMax, colShadow.GetU32(), flThickness, ImVec2(0, 0), roundingCorners, flRounding); +} + +#pragma endregion + +#pragma region draw_structures + +void AnimationHandler_t::Update(const float flDeltaTime, const float flDuration) +{ + if (fnEaseIn == nullptr) + fnEaseIn = &EASING::InSine; + + if (fnEaseOut == nullptr) + fnEaseOut = &EASING::OutSine; + + // Reset the elapsed time if the bool switches + if (bSwitch != bLastSwitch) + flElapsedTime = 0; + + flElapsedTime = MATH::Max(0.0f, MATH::Min(flElapsedTime, flDuration)); + float flTime = flElapsedTime / flDuration; + + // Determine the initial and target value based on the current state + float flInitialValue = bSwitch ? 0.1f : flValue; + float flTargetValue = bSwitch ? 1.0f : 0.1f; /*(1.0f is max value)*/ + + // Select the appropriate easing function based on the current state + EasingFunction_t fnCurrentEase = bSwitch ? fnEaseIn : fnEaseOut; + + // Apply the appropriate easing function based on fade-in or fade-out (with lerping, which is basically what's the math were doing) + flValue = (flInitialValue + (flTargetValue - flInitialValue)) * (float)fnCurrentEase(flTime); + flValue = MATH::Clamp(flValue, 0.1f, 1.0f); + + flElapsedTime += flDeltaTime; + bLastSwitch = bSwitch; +} + +#pragma endregion diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/draw.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/draw.h new file mode 100644 index 0000000..185feff --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/draw.h @@ -0,0 +1,246 @@ +#pragma once + +// used: [d3d] +#include + +#include "../common.h" + +#include "../sdk/datatypes/color.h" +#include "../sdk/datatypes/vector.h" +#include +// used: [ext] imgui +#include "../../dependencies/imgui/imgui.h" +#include "../../dependencies/imgui/imgui_internal.h" + +// forward declarations +struct KeyBind_t; + +#pragma region draw_objects_enumerations + +enum ERectRenderFlags : unsigned int +{ + DRAW_RECT_NONE = 0, + DRAW_RECT_OUTLINE = (1 << 0), + DRAW_RECT_BORDER = (1 << 1), + DRAW_RECT_FILLED = (1 << 2) +}; + +enum ECircleRenderFlags : unsigned int +{ + DRAW_CIRCLE_NONE = 0, + DRAW_CIRCLE_OUTLINE = (1 << 0), + DRAW_CIRCLE_FILLED = (1 << 1) +}; + +enum ETriangleRenderFlags : unsigned int +{ + DRAW_TRIANGLE_NONE = 0, + DRAW_TRIANGLE_OUTLINE = (1 << 0), + DRAW_TRIANGLE_FILLED = (1 << 1) +}; + +enum EQuadRenderFlags : unsigned int +{ + DRAW_QUAD_NONE = 0, + DRAW_QUAD_OUTLINE = (1 << 0), + DRAW_QUAD_FILLED = (1 << 1) +}; + +enum EPolygonRenderFlags : unsigned int +{ + DRAW_POLYGON_NONE = 0, + DRAW_POLYGON_OUTLINE = (1 << 0), + DRAW_POLYGON_FILLED = (1 << 1) +}; + +enum ETextRenderFlags : unsigned int +{ + DRAW_TEXT_NONE = 0, + DRAW_TEXT_DROPSHADOW = (1 << 0), + DRAW_TEXT_OUTLINE = (1 << 1) +}; + +#pragma endregion + +#pragma region draw_structures +struct BBox_t { + BBox_t() { Invalidate(); } + + void Invalidate() { + static constexpr auto MAX_FLOAT = std::numeric_limits::max(); + + m_Mins.x = m_Mins.y = MAX_FLOAT; + m_Maxs.x = m_Maxs.y = -MAX_FLOAT; + + std::fill(std::begin(m_Vertices), std::end(m_Vertices), ImVec2{ -MAX_FLOAT, -MAX_FLOAT }); + } + + ImVec2 m_Mins, m_Maxs; + ImVec2 m_Vertices[8]; +}; + +// predefined custom user type +struct ColorPickerVar_t; + +typedef double (*EasingFunction_t)(double); +struct AnimationHandler_t +{ + // default: ease::in/outsine + AnimationHandler_t(EasingFunction_t fnIn = nullptr, EasingFunction_t fnOut = nullptr) : + fnEaseIn(fnIn), fnEaseOut(fnOut), bSwitch(false), bLastSwitch(false), flElapsedTime(0.f), flValue(0.1f){}; + ~AnimationHandler_t() = default; + + // Has to be called every frame + void Update(const float flDeltaTime, const float flDuration); + + // Get the current value multiplied by a scale + float GetValue(float flScale = 1.0f) + { + return flValue * flScale; + } + + const bool GetSwitch() const + { + return bSwitch; + } + + // switch state + void Switch() + { + bSwitch = !bSwitch; + } + + void SetSwitch(const bool bState) + { + bSwitch = bState; + } + +private: + // Set to true for ease-in animation, false for ease-out + bool bSwitch = 0; + bool bLastSwitch = bSwitch; + + float flElapsedTime = 0.f; + + // Current value of the animation + float flValue = 0.1f; + + // Ease in and out functions Declaration + EasingFunction_t fnEaseIn = nullptr; + EasingFunction_t fnEaseOut = nullptr; +}; + +#pragma endregion + +/* + * FONTS + */ +namespace FONT +{ + // 0. verdana, size: 12px * scaledDPI(1.0f->2.0f); lighthinting + inline ImFont* pMenu[5]; + inline ImFont* pMenuTabsDesc; + // 1. verdana, size: 14px; bold + inline ImFont* pExtra; + // 2. tahoma, size: 16px; lighthinting + inline ImFont* pVisual; + + inline ImFont* pEspName; + inline ImFont* pEspFlagsName; + inline ImFont* pEspWepName; + inline ImFont* pEspHealth; + inline ImFont* pEspIcons; + inline ImFont* pEspArmor; + inline ImFont* gui_icons_font; + inline ImFont* isis; + inline ImFont* icon_font; + inline ImFont* font; + inline ImFont* mainfont; + inline ImFont* esp; + inline ImFont* menuFont; + inline ImFont* controlFont; + inline ImFont* boldMenuFont; + inline ImFont* tabFont; + inline ImFont* keybinds; + inline ImFont* weaponzFont; + inline ImFont* weapon_icons; + inline ImFont* museoSans; + inline ImFont* roboto; + inline ImFont* robotoTitle; + inline ImFont* iconsLarge; + inline ImFont* weaponIcons; + inline ImFont* interfaces; + inline ImFont* cs; + inline ImFont* cs_huge; +} + +// extended imgui functionality +namespace ImGui +{ + /* @section: main */ + void HelpMarker(const char* szDescription); + bool HotKey(const char* szLabel, unsigned int* pValue); + bool HotKey(const char* szLabel, KeyBind_t* pKeyBind, const bool bAllowSwitch = true); + bool MultiCombo(const char* szLabel, unsigned int* pFlags, const char* const* arrItems, int nItemsCount); + bool BeginListBox(const char* szLabel, int nItemsCount, int nHeightInItems = -1); + + /* @section: wrappers */ + bool ColorEdit3(const char* szLabel, Color_t* pColor, ImGuiColorEditFlags flags = ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoTooltip | ImGuiColorEditFlags_NoSidePreview | ImGuiColorEditFlags_DisplayHex); + bool ColorEdit4(const char* szLabel, Color_t* pColor, ImGuiColorEditFlags flags = ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoTooltip | ImGuiColorEditFlags_NoSidePreview | ImGuiColorEditFlags_DisplayHex | ImGuiColorEditFlags_AlphaBar, int type = 0); + + bool ColorEdit3(const char* szLabel, ColorPickerVar_t* pColor, ImGuiColorEditFlags flags = ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoTooltip | ImGuiColorEditFlags_NoSidePreview | ImGuiColorEditFlags_DisplayHex); + bool ColorEdit4(const char* szLabel, ColorPickerVar_t* pColorVar, ImGuiColorEditFlags flags = ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoTooltip | ImGuiColorEditFlags_NoSidePreview | ImGuiColorEditFlags_DisplayHex | ImGuiColorEditFlags_AlphaBar, int type = 0); +} +inline std::recursive_mutex input_mutex{ }; + +/* + * DRAW + * - rendering framework + */ +namespace D +{ + // initialize rendering engine, create fonts, set styles etc + bool Setup(HWND hWnd, ID3D11Device* pDevice, ID3D11DeviceContext* pContext); + // shutdown rendering engine + void Destroy(); + + bool InitImGui(); + void Render(); + /* @section: callbacks */ + // handle input window message and save keys states in array + bool OnWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); + + /* @section: get */ + /// convert world space to screen space coordinates by game's conversion matrix + /// @param[out] pvecScreen output for converted screen position + /// @returns: true if converted coordinates fit into display size, false otherwise + bool WorldToScreen(const Vector_t& in, ImVec2& out); + void RenderDrawData(ImDrawData* data); + void ResetDrawData(); + void SwapDrawData(); + /* @section: some small utils*/ + Vector_t GetScreenSize(); + float CalculateDPI(const int nScaleTarget = 0); + + /* @section: bindings */ + void AddDrawListRect(ImDrawList* pDrawList, const ImVec2& vecMin, const ImVec2& vecMax, const Color_t& colRect, const unsigned int uFlags = DRAW_RECT_NONE, const Color_t& colOutline = Color_t(0, 0, 0, 255), const float flRounding = 0.f, const ImDrawFlags roundingCorners = ImDrawFlags_RoundCornersAll, float flThickness = 1.0f, const float flOutlineThickness = 1.0f); + void AddDrawListRectMultiColor(ImDrawList* pDrawList, const ImVec2& vecMin, const ImVec2& vecMax, const Color_t& colUpperLeft, const Color_t& colUpperRight, const Color_t& colBottomRight, const Color_t& colBottomLeft); + void AddDrawListCircle(ImDrawList* pDrawList, const ImVec2& vecCenter, const float flRadius, const Color_t& colCircle, const int nSegments, const unsigned int uFlags = DRAW_CIRCLE_NONE, const Color_t& colOutline = Color_t(0, 0, 0, 255), const float flThickness = 1.0f, const float flOutlineThickness = 1.0f); + void AddDrawListArc(ImDrawList* pDrawList, const ImVec2& vecPosition, const float flRadius, const float flMinimumAngle, const float flMaximumAngle, const Color_t& colArc = Color_t(255, 255, 255, 255), const float flThickness = 1.0f); + void AddDrawListLine(ImDrawList* pDrawList, const ImVec2& vecFirst, const ImVec2& vecSecond, const Color_t& colLine, const float flThickness = 1.0f); + void AddDrawListTriangle(ImDrawList* pDrawList, const ImVec2& vecFirst, const ImVec2& vecSecond, const ImVec2& vecThird, const Color_t& colTriangle, const unsigned int uFlags = DRAW_TRIANGLE_NONE, const Color_t& colOutline = Color_t(0, 0, 0, 255), const float flThickness = 0.f); + void AddDrawListQuad(ImDrawList* pDrawList, const ImVec2& vecFirst, const ImVec2& vecSecond, const ImVec2& vecThird, const ImVec2& vecFourth, const Color_t& colQuad, const unsigned int uFlags = DRAW_QUAD_NONE, const Color_t& colOutline = Color_t(0, 0, 0, 255), const float flThickness = 0.f); + void AddDrawListPolygon(ImDrawList* pDrawList, const ImVec2* vecPoints, const int nPointsCount, const Color_t& colPolygon, unsigned int uFlags = DRAW_POLYGON_NONE, const Color_t& colOutline = Color_t(0, 0, 0, 255), const bool bClosed = true, const float flThickness = 1.0f); + void AddDrawListText(ImDrawList* pDrawList, const ImFont* pFont, const ImVec2& vecPosition, const char* szText, const Color_t& colText, const unsigned int uFlags = DRAW_TEXT_NONE, const Color_t& colOutline = Color_t(0, 0, 0, 255), const float flThickness = 1.0f); + void AddDrawListShadowRect(ImDrawList* pDrawList, const ImVec2& vecMin, const ImVec2& vecMax, const Color_t& colShadow, float flThickness = 32.f, float flRounding = 0.0f, ImDrawFlags roundingCorners = ImDrawFlags_RoundCornersAll); + + /* @section: values */ + // rendering engine initialization state + inline bool bInitialized = false; + // active draw data container used to store + inline ImDrawList* pDrawListActive = nullptr; + // safe draw data container + inline ImDrawList* pDrawListSafe = nullptr; + // actual draw data container used to render + inline ImDrawList* pDrawListRender = nullptr; +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/easing.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/easing.h new file mode 100644 index 0000000..771d279 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/easing.h @@ -0,0 +1,224 @@ +#pragma once + +// used: math functions +#include "math.h" + +namespace EASING +{ + CS_INLINE double InSine(const double t) + { + return M_SIN(1.5707963 * t); + } + + CS_INLINE double OutSine(double t) + { + return 1 + M_SIN(1.5707963 * (--t)); + } + + CS_INLINE double InOutSine(const double t) + { + return 0.5 * (1 + M_SIN(3.1415926 * (t - 0.5))); + } + + CS_INLINE double InQuad(const double t) + { + return t * t; + } + + CS_INLINE double OutQuad(const double t) + { + return t * (2 - t); + } + + CS_INLINE double InOutQuad(const double t) + { + return t < 0.5 ? 2 * t * t : t * (4 - 2 * t) - 1; + } + + CS_INLINE double InCubic(const double t) + { + return t * t * t; + } + + CS_INLINE double OutCubic(double t) + { + return 1 + (--t) * t * t; + } + + CS_INLINE double InOutCubic(double t) + { + return t < 0.5 ? 4 * t * t * t : 1 + (--t) * (2 * (--t)) * (2 * t); + } + + CS_INLINE double InQuart(double t) + { + t *= t; + return t * t; + } + + CS_INLINE double OutQuart(double t) + { + t = (--t) * t; + return 1 - t * t; + } + + CS_INLINE double InOutQuart(double t) + { + if (t < 0.5) + { + t *= t; + return 8 * t * t; + } + else + { + t = (--t) * t; + return 1 - 8 * t * t; + } + } + + CS_INLINE double InQuint(const double t) + { + const double t2 = t * t; + return t * t2 * t2; + } + + CS_INLINE double OutQuint(double t) + { + const double t2 = (--t) * t; + return 1 + t * t2 * t2; + } + + CS_INLINE double InOutQuint(double t) + { + double t2; + if (t < 0.5) + { + t2 = t * t; + return 16 * t * t2 * t2; + } + else + { + t2 = (--t) * t; + return 1 + 16 * t * t2 * t2; + } + } + + CS_INLINE double InExpo(const double t) + { + return (M_POW(2.0, 8 * t) - 1) / 255; + } + + CS_INLINE double OutExpo(const double t) + { + return 1 - M_POW(2.0, -8 * t); + } + + CS_INLINE double InOutExpo(const double t) + { + if (t < 0.5) + { + return (M_POW(2.0, 16 * t) - 1) / 510; + } + else + { + return 1 - 0.5 * M_POW(2.0, -16 * (t - 0.5)); + } + } + + CS_INLINE double InCirc(const double t) + { + return 1 - M_SQRT(1 - t); + } + + CS_INLINE double OutCirc(const double t) + { + return M_SQRT(t); + } + + CS_INLINE double InOutCirc(const double t) + { + if (t < 0.5) + { + return (1 - M_SQRT(1 - 2 * t)) * 0.5; + } + else + { + return (1 + M_SQRT(2 * t - 1)) * 0.5; + } + } + + CS_INLINE double InBack(const double t) + { + return t * t * (2.70158 * t - 1.70158); + } + + CS_INLINE double OutBack(double t) + { + return 1 + (--t) * t * (2.70158 * t + 1.70158); + } + + CS_INLINE double InOutBack(double t) + { + if (t < 0.5) + { + return t * t * (7 * t - 2.5) * 2; + } + else + { + return 1 + (--t) * t * 2 * (7 * t + 2.5); + } + } + + CS_INLINE double InElastic(const double t) + { + const double t2 = t * t; + return t2 * t2 * M_SIN(t * MATH::_PI * 4.5); + } + + CS_INLINE double OutElastic(const double t) + { + const double t2 = (t - 1) * (t - 1); + return 1 - t2 * t2 * M_COS(t * MATH::_PI * 4.5); + } + + CS_INLINE double InOutElastic(const double t) + { + double t2; + if (t < 0.45) + { + t2 = t * t; + return 8 * t2 * t2 * M_SIN(t * MATH::_PI * 9); + } + else if (t < 0.55) + { + return 0.5 + 0.75 * M_SIN(t * MATH::_PI * 4); + } + else + { + t2 = (t - 1) * (t - 1); + return 1 - 8 * t2 * t2 * M_SIN(t * MATH::_PI * 9); + } + } + + CS_INLINE double InBounce(const double t) + { + return M_POW(2.0, 6 * (t - 1)) * M_ABS(M_SIN(t * MATH::_PI * 3.5)); + } + + CS_INLINE double OutBounce(const double t) + { + return 1 - M_POW(2.0, -6 * t) * M_ABS(M_COS(t * MATH::_PI * 3.5)); + } + + CS_INLINE double InOutBounce(const double t) + { + if (t < 0.5) + { + return 8 * M_POW(2.0, 8 * (t - 1)) * M_ABS(M_SIN(t * MATH::_PI * 7)); + } + else + { + return 1 - 8 * M_POW(2.0, -8 * t) * M_ABS(M_SIN(t * MATH::_PI * 7)); + } + } +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/fnv1a.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/fnv1a.h new file mode 100644 index 0000000..2d9a2d7 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/fnv1a.h @@ -0,0 +1,52 @@ +#pragma once +// used: [stl] uint64_t +#include + +// used :CRT::StringLength +#include "crt.h" + +using FNV1A_t = std::uint64_t; + +/* + * 64-BIT FNV1A HASH + */ +namespace HASHCNSX { + + constexpr uint32_t val_32_const = 0x811c9dc5; + constexpr uint32_t prime_32_const = 0x1000193; + + inline constexpr uint32_t hash_32_fnv1a_const(const char* const str, const uint32_t value = val_32_const) noexcept { + return (str[0] == '\0') ? value : hash_32_fnv1a_const(&str[1], (value ^ uint32_t(str[0])) * prime_32_const); + } +} +namespace FNV1A +{ + /* @section: [internal] constants */ + constexpr FNV1A_t ullBasis = 0xCBF29CE484222325ULL; + constexpr FNV1A_t ullPrime = 0x100000001B3ULL; + + /* @section: get */ + /// @param[in] szString string for which you want to generate a hash + /// @param[in] uKey key of hash generation + /// @returns: calculated at compile-time hash of given string + consteval FNV1A_t HashConst(const char* szString, const FNV1A_t uKey = ullBasis) noexcept + { + return (szString[0] == '\0') ? uKey : HashConst(&szString[1], (uKey ^ static_cast(szString[0])) * ullPrime); + } + + /// @param[in] szString string for which you want to generate a hash + /// @param[in] uKey key of hash generation + /// @returns: calculated at run-time hash of given string + inline FNV1A_t Hash(const char* szString, FNV1A_t uKey = ullBasis) noexcept + { + const std::size_t nLength = CRT::StringLength(szString); + + for (std::size_t i = 0U; i < nLength; ++i) + { + uKey ^= szString[i]; + uKey *= ullPrime; + } + + return uKey; + } +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/inputsystem.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/inputsystem.cpp new file mode 100644 index 0000000..bbb8c25 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/inputsystem.cpp @@ -0,0 +1,157 @@ +// used: get_x_lparam, get_y_lparam +#include + +#include "inputsystem.h" + +// used: menu open/panic keys +#include "../core/variables.h" +// used: wndproc hook +#include "../core/hooks.h" +// used: menu variables +#include "../core/menu.h" +// used: iinputsystem +#include "../core/interfaces.h" +#include "../sdk/interfaces/iinputsystem.h" + +// used: [ext] imrect +#include "../dependencies/imgui/imgui_internal.h" +#include "../cstrike/core/spoofcall/syscall.h" +#include +#include "bcrypt.h" +#include "../core/spoofcall/lazy_importer.hpp" +static BOOL CALLBACK EnumWindowsCallback(HWND handle, LPARAM lParam) +{ + const auto MainWindow = [handle]() + { + return GetWindow(handle, GW_OWNER) == nullptr && + IsWindowVisible(handle) && handle != GetConsoleWindow(); + }; + + DWORD nPID = 0; + LI_FN(GetWindowThreadProcessId).safe()(handle, &nPID); + + if (LI_FN(GetCurrentProcessId).safe()() != nPID || !MainWindow()) + return TRUE; + + *reinterpret_cast(lParam) = handle; + return FALSE; +} + +bool IPT::Setup() +{ + while (hWindow == nullptr) + { + EnumWindows(::EnumWindowsCallback, reinterpret_cast(&hWindow)); + ::Sleep(200U); + } + + // change window message handle to our + pOldWndProc = reinterpret_cast(SetWindowLongPtrW(hWindow, GWLP_WNDPROC, reinterpret_cast(H::WndProc))); + if (pOldWndProc == nullptr) + return false; + + return true; +} + +void IPT::Destroy() +{ + MENU::bMainWindowOpened = false; + ::Sleep(200U); + + if (pOldWndProc != nullptr) + { + SetWindowLongPtrW(hWindow, GWLP_WNDPROC, reinterpret_cast(pOldWndProc)); + pOldWndProc = nullptr; + } +} + +bool IPT::OnWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) +{ + // prevent process when e.g. binding something in-menu + if (wParam != C_GET(unsigned int, Vars.nMenuKey) && wParam != C_GET(unsigned int, Vars.nPanicKey) && MENU::bMainWindowOpened) + return false; + + // current active key + int nKey = 0; + // current active key state + KeyState_t state = KEY_STATE_NONE; + + switch (uMsg) + { + case WM_KEYDOWN: + case WM_SYSKEYDOWN: + if (wParam < 256U) + { + nKey = static_cast(wParam); + state = KEY_STATE_DOWN; + } + break; + case WM_KEYUP: + case WM_SYSKEYUP: + if (wParam < 256U) + { + nKey = static_cast(wParam); + state = KEY_STATE_UP; + } + break; + case WM_LBUTTONDOWN: + case WM_LBUTTONUP: + case WM_LBUTTONDBLCLK: + nKey = VK_LBUTTON; + state = uMsg == WM_LBUTTONUP ? KEY_STATE_UP : KEY_STATE_DOWN; + break; + case WM_RBUTTONDOWN: + case WM_RBUTTONUP: + case WM_RBUTTONDBLCLK: + nKey = VK_RBUTTON; + state = uMsg == WM_RBUTTONUP ? KEY_STATE_UP : KEY_STATE_DOWN; + break; + case WM_MBUTTONDOWN: + case WM_MBUTTONUP: + case WM_MBUTTONDBLCLK: + nKey = VK_MBUTTON; + state = uMsg == WM_MBUTTONUP ? KEY_STATE_UP : KEY_STATE_DOWN; + break; + case WM_XBUTTONDOWN: + case WM_XBUTTONUP: + case WM_XBUTTONDBLCLK: + nKey = (GET_XBUTTON_WPARAM(wParam) == XBUTTON1 ? VK_XBUTTON1 : VK_XBUTTON2); + state = uMsg == WM_XBUTTONUP ? KEY_STATE_UP : KEY_STATE_DOWN; + break; + default: + return false; + } + + // save key states + if (state == KEY_STATE_UP && arrKeyState[nKey] == KEY_STATE_DOWN) // if swap states it will be pressed state + arrKeyState[nKey] = KEY_STATE_RELEASED; + else + arrKeyState[nKey] = state; + + return true; +} + +bool IPT::GetBindState(KeyBind_t& keyBind) +{ + if (keyBind.uKey == 0U) + return false; + + switch (keyBind.nMode) + { + case EKeyBindMode::HOLD: + keyBind.bEnable = IsKeyDown(keyBind.uKey); + break; + case EKeyBindMode::TOGGLE: + if (IsKeyReleased(keyBind.uKey)) + keyBind.bEnable = !keyBind.bEnable; + break; + } + + return keyBind.bEnable; +} + +bool IPT::IsHovered(const ImVec2& vecPosition, const ImVec2& vecSize) +{ + const ImVec2 vecMousePosition = ImGui::GetMousePos(); + return ImRect(vecPosition, vecPosition + vecSize).Contains(vecMousePosition); +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/inputsystem.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/inputsystem.h new file mode 100644 index 0000000..e1f2876 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/inputsystem.h @@ -0,0 +1,68 @@ +#pragma once +// used: [win] winapi +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#include + +#include "../common.h" +// used: keybind_t +#include "../core/config.h" + +/* + * INPUT SYSTEM + * listen and handle key states + */ +namespace IPT +{ + using KeyState_t = std::uint8_t; + + enum EKeyState : KeyState_t + { + KEY_STATE_NONE, + KEY_STATE_DOWN, + KEY_STATE_UP, + KEY_STATE_RELEASED + }; + + /* @section: values */ + // current window + inline HWND hWindow = nullptr; + // saved window messages handler + inline WNDPROC pOldWndProc = nullptr; + // last processed key states + inline KeyState_t arrKeyState[256] = {}; + + // replace game window messages processor with our + bool Setup(); + // restore window messages processor to original + void Destroy(); + + /* @section: callbacks */ + // process input window message and save keys states in array + bool OnWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); + + /* @section: get */ + /// @returns: true if keybind is active, false otherwise + bool GetBindState(KeyBind_t& keyBind); + + [[nodiscard]] bool IsHovered(const ImVec2& vecPosition, const ImVec2& vecSize); + + /// @returns: true if key is being held, false otherwise + [[nodiscard]] CS_INLINE bool IsKeyDown(const std::uint32_t uButtonCode) + { + return arrKeyState[uButtonCode] == KEY_STATE_DOWN; + } + + /// @returns: true if key has been just released, false otherwise + [[nodiscard]] CS_INLINE bool IsKeyReleased(const std::uint32_t uButtonCode) + { + if (arrKeyState[uButtonCode] == KEY_STATE_RELEASED) + { + arrKeyState[uButtonCode] = KEY_STATE_UP; + return true; + } + + return false; + } +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/log.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/log.cpp new file mode 100644 index 0000000..9d120d3 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/log.cpp @@ -0,0 +1,258 @@ +// used: [crt] time_t, time, localtime_s +#include + +#include "log.h" +// using: mem_stackalloc, mem_stackfree +#include "memory.h" +// used: IsPowerOfTwo +#include "math.h" +// used: GetWorkingPath +#include "../core.h" + +// console write stream +static HANDLE hConsoleStream = INVALID_HANDLE_VALUE; +// file write stream +static HANDLE hFileStream = INVALID_HANDLE_VALUE; + +#pragma region log_main +bool L::AttachConsole(const wchar_t* wszWindowTitle) +{ + // allocate memory for console + if (::AllocConsole() != TRUE) + return false; + + // open console output stream + if (hConsoleStream = ::CreateFileW(L"CONOUT$", GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, nullptr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, nullptr); hConsoleStream == INVALID_HANDLE_VALUE) + return false; + + // @test: unnecessary as fas as we don't use std::cout etc + if (::SetStdHandle(STD_OUTPUT_HANDLE, hConsoleStream) != TRUE) + return false; + + // set console window title + if (::SetConsoleTitleW(wszWindowTitle) != TRUE) + return false; + + return true; +} + +void L::DetachConsole() +{ + ::CloseHandle(hConsoleStream); + + // free allocated memory for console + if (::FreeConsole() != TRUE) + return; + + // close console window + if (const HWND hConsoleWindow = ::GetConsoleWindow(); hConsoleWindow != nullptr) + ::PostMessageW(hConsoleWindow, WM_CLOSE, 0U, 0L); +} + +bool L::OpenFile(const wchar_t* wszFileName) +{ + wchar_t wszFilePath[MAX_PATH]; + if (!CORE::GetWorkingPath(wszFilePath)) + return false; + + CRT::StringCat(wszFilePath, wszFileName); + + // @todo: append time/date to filename and always keep up to 3 files, otherwise delete with lowest date + // open file output stream + if (hFileStream = ::CreateFileW(wszFilePath, GENERIC_WRITE, FILE_SHARE_READ, nullptr, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, nullptr); hFileStream == INVALID_HANDLE_VALUE) + return false; + + // insert UTF-8 BOM + ::WriteFile(hFileStream, "\xEF\xBB\xBF", 3UL, nullptr, nullptr); + + return true; +} + +void L::CloseFile() +{ + ::CloseHandle(hFileStream); +} + +void L::WriteMessage(const char* szMessage, const std::size_t nMessageLength) +{ +#ifdef CS_LOG_CONSOLE + ::WriteConsoleA(hConsoleStream, szMessage, nMessageLength, nullptr, nullptr); +#endif +#ifdef CS_LOG_FILE + ::WriteFile(hFileStream, szMessage, nMessageLength, nullptr, nullptr); +#endif +} +#pragma endregion + +#pragma region log_stream_control +L::Stream_t::ColorMarker_t L::SetColor(const LogColorFlags_t nColorFlags) +{ + return { nColorFlags }; +} + +L::Stream_t::PrecisionMarker_t L::SetPrecision(const int iPrecision) +{ + return { iPrecision }; +} + +L::Stream_t::ModeMarker_t L::AddFlags(const LogModeFlags_t nModeFlags) +{ + return { nModeFlags }; +} + +L::Stream_t::ModeMarker_t L::RemoveFlags(const LogModeFlags_t nModeFlags) +{ + return { static_cast(nModeFlags | LOG_MODE_REMOVE) }; +} +#pragma endregion + +L::Stream_t& L::Stream_t::operator()(const ELogLevel nLevel, const char* szFileBlock) +{ +#if defined(CS_LOG_CONSOLE) || defined(CS_LOG_FILE) + // reset previous flags + nModeFlags = LOG_MODE_NONE; + + const char* szTypeBlock = nullptr; + [[maybe_unused]] LogColorFlags_t nTypeColorFlags = LOG_COLOR_DEFAULT; + + switch (nLevel) + { + case LOG_INFO: + szTypeBlock = "[info] "; + nTypeColorFlags = LOG_COLOR_FORE_CYAN; + break; + case LOG_WARNING: + szTypeBlock = "[warning] "; + nTypeColorFlags = LOG_COLOR_FORE_YELLOW; + break; + case LOG_ERROR: + szTypeBlock = "[error] "; + nTypeColorFlags = LOG_COLOR_FORE_RED; + break; + default: + break; + } + + const std::time_t time = std::time(nullptr); + std::tm timePoint; + localtime_s(&timePoint, &time); + + // @todo: no new line at first use / ghetto af but cheap enough but still ghetto uhhh + char szTimeBuffer[32]; + const std::size_t nTimeSize = CRT::TimeToString(szTimeBuffer, sizeof(szTimeBuffer), "\n[%d-%m-%Y %T] ", &timePoint) - bFirstPrint; + +#ifdef CS_LOG_CONSOLE + ::SetConsoleTextAttribute(hConsoleStream, FOREGROUND_GREEN | FOREGROUND_INTENSITY); + ::WriteConsoleA(hConsoleStream, szTimeBuffer + bFirstPrint, nTimeSize, nullptr, nullptr); + + if (szFileBlock != nullptr) + { + ::SetConsoleTextAttribute(hConsoleStream, FOREGROUND_INTENSITY); + ::WriteConsoleA(hConsoleStream, szFileBlock, CRT::StringLength(szFileBlock), nullptr, nullptr); + } + + if (szTypeBlock != nullptr) + { + ::SetConsoleTextAttribute(hConsoleStream, static_cast(nTypeColorFlags)); + ::WriteConsoleA(hConsoleStream, szTypeBlock, CRT::StringLength(szTypeBlock), nullptr, nullptr); + } + + ::SetConsoleTextAttribute(hConsoleStream, FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE); +#endif +#ifdef CS_LOG_FILE + ::WriteFile(hFileStream, szTimeBuffer + bFirstPrint, nTimeSize, nullptr, nullptr); + + char szBlockBuffer[MAX_PATH] = { '\0' }; + char* szCurrentBlock = szBlockBuffer; + + if (szFileBlock != nullptr) + szCurrentBlock = CRT::StringCat(szCurrentBlock, szFileBlock); + + if (szTypeBlock != nullptr) + szCurrentBlock = CRT::StringCat(szCurrentBlock, szTypeBlock); + + if (szBlockBuffer[0] != '\0') + ::WriteFile(hFileStream, szBlockBuffer, static_cast(szCurrentBlock - szBlockBuffer), nullptr, nullptr); +#endif + + bFirstPrint = false; +#endif + return *this; +} + +L::Stream_t& L::Stream_t::operator<<(const ColorMarker_t colorMarker) +{ +#ifdef CS_LOG_CONSOLE + ::SetConsoleTextAttribute(hConsoleStream, static_cast(colorMarker.nColorFlags)); +#endif + return *this; +} + +L::Stream_t& L::Stream_t::operator<<(const PrecisionMarker_t precisionMarker) +{ +#if defined(CS_LOG_CONSOLE) || defined(CS_LOG_FILE) + this->iPrecision = precisionMarker.iPrecision; +#endif + return *this; +} + +L::Stream_t& L::Stream_t::operator<<(const ModeMarker_t modeMarker) +{ +#if defined(CS_LOG_CONSOLE) || defined(CS_LOG_FILE) + CS_ASSERT(nModeFlags == 0U || MATH::IsPowerOfTwo(nModeFlags & LOG_MODE_INT_FORMAT_MASK)); // used conflicting format flags + + if (modeMarker.nModeFlags & LOG_MODE_REMOVE) + nModeFlags &= ~modeMarker.nModeFlags; + else + nModeFlags |= modeMarker.nModeFlags; +#endif + return *this; +} + +L::Stream_t& L::Stream_t::operator<<(const char* szMessage) +{ +#if defined(CS_LOG_CONSOLE) || defined(CS_LOG_FILE) + WriteMessage(szMessage, CRT::StringLength(szMessage)); +#endif + return *this; +} + +L::Stream_t& L::Stream_t::operator<<(const wchar_t* wszMessage) +{ +#if defined(CS_LOG_CONSOLE) || defined(CS_LOG_FILE) + /* + * to keep stream orientation always same, convert message to UTF-8 + * + * regarding to C++ standard: + * [C++11: 27.4.1/3]: + * mixing operations on corresponding wide- and narrow-character streams follows the same semantics as mixing such operations on 'FILE's, as specified in amendation [1] of the ISO C standard + * + * [1]: + * the definition of a stream was changed to include the concept of an orientation for both text and binary streams. + * after a stream is associated with a file, but before any operations are performed on the stream, the stream is without orientation. + * if a wide-character input or output function is applied to a stream without orientation, the stream becomes wide-oriented. + * likewise, if a byte input or output operation is applied to a stream with orientation, the stream becomes byte-oriented. + * thereafter, only the 'fwide()' or 'freopen()' functions can alter the orientation of a stream. + * byte input/output functions shall not be applied to a wide-oriented stream and wide-character input/output functions shall not be applied to a byte-oriented stream. + */ + const std::size_t nMessageLength = CRT::StringLengthMultiByte(wszMessage); + char* szMessage = static_cast(MEM_STACKALLOC(nMessageLength + 1U)); + CRT::StringUnicodeToMultiByte(szMessage, nMessageLength + 1U, wszMessage); + + WriteMessage(szMessage, nMessageLength); + + MEM_STACKFREE(szMessage); +#endif + return *this; +} + +L::Stream_t& L::Stream_t::operator<<(const bool bValue) +{ +#if defined(CS_LOG_CONSOLE) || defined(CS_LOG_FILE) + const char* szBoolean = ((nModeFlags & LOG_MODE_BOOL_ALPHA) ? (bValue ? "true" : "false") : (bValue ? "1" : "0")); + const std::size_t nBooleanLength = CRT::StringLength(szBoolean); + + WriteMessage(szBoolean, nBooleanLength); +#endif + return *this; +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/log.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/log.h new file mode 100644 index 0000000..6ecc3d8 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/log.h @@ -0,0 +1,327 @@ +#pragma once +// used: [win] winapi +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#include + +#include "../common.h" + +// using: stringcopy, stringcat, timetostring +#include "crt.h" + +// used: sdk datatypes +#include "../sdk/datatypes/color.h" +#include "../sdk/datatypes/vector.h" +#include "../sdk/datatypes/qangle.h" + +// @todo: poorly designed in case we don't need logging at all, xor continues wasteful compilation without any references | add smth like dummystream_t and unreference macro params? + +#pragma region log_definitions +#ifdef _DEBUG +#if defined(CS_COMPILER_CLANG) +#define L_PRINT(LEVEL) L::stream(LEVEL, "[" __FILE_NAME__ ":" CS_STRINGIFY(__LINE__) "] ") +#else +#define L_PRINT(LEVEL) L::stream(LEVEL, L::DETAIL::MakeFileBlock(L::DETAIL::GetFileName(__FILE__), CS_STRINGIFY(__LINE__)).Get()) +#endif +#else +#define L_PRINT(LEVEL) L::stream(LEVEL) +#endif +#pragma endregion + +#pragma region log_enumerations + +enum ELogLevel : std::uint8_t +{ + LOG_NONE = 0, + LOG_INFO, + LOG_WARNING, + LOG_ERROR +}; + +using LogModeFlags_t = std::uint16_t; + +enum ELogModeFlags : LogModeFlags_t +{ + LOG_MODE_NONE = 0U, + + // boolean formatting + LOG_MODE_BOOL_ALPHA = (1U << 0U), // switches between textual and numeric representation of booleans + + // integer formatting + LOG_MODE_INT_SHOWBASE = (1U << 1U), // switches display of number base prefixes used by C++ literal constants + LOG_MODE_INT_FORMAT_HEX = (1U << 2U), // switches integer numbers hexadecimal format + LOG_MODE_INT_FORMAT_DEC = (1U << 3U), // switches integer numbers decimal format + LOG_MODE_INT_FORMAT_OCT = (1U << 4U), // switches integer numbers octal format + LOG_MODE_INT_FORMAT_BIN = (1U << 5U), // switches integer numbers binary format + LOG_MODE_INT_FORMAT_MASK = (LOG_MODE_INT_FORMAT_HEX | LOG_MODE_INT_FORMAT_DEC | LOG_MODE_INT_FORMAT_OCT | LOG_MODE_INT_FORMAT_BIN), + + // floating-point formatting + LOG_MODE_FLOAT_SHOWPOINT = (1U << 6U), // switches decimal point for those numbers whose decimal part is zero + LOG_MODE_FLOAT_FORMAT_HEX = (1U << 7U), // switches floating-point numbers hexadecimal format + LOG_MODE_FLOAT_FORMAT_FIXED = (1U << 8U), // switches floating-point numbers formatting in fixed-point notation + LOG_MODE_FLOAT_FORMAT_SCIENTIFIC = (1U << 9U), // switches floating-point numbers formatting in scientific notation + LOG_MODE_FLOAT_FORMAT_MASK = (LOG_MODE_FLOAT_FORMAT_HEX | LOG_MODE_FLOAT_FORMAT_FIXED | LOG_MODE_FLOAT_FORMAT_SCIENTIFIC), + + // numerical formatting + LOG_MODE_NUM_SHOWPOSITIVE = (1U << 10U), // switches display of plus sign '+' in non-negative numbers + LOG_MODE_NUM_UPPERCASE = (1U << 11U), // switches uppercase characters in numbers + + /* [internal] */ + LOG_MODE_REMOVE = (1U << 15U) +}; + +using LogColorFlags_t = std::uint16_t; + +enum ELogColorFlags : LogColorFlags_t +{ + LOG_COLOR_FORE_BLUE = FOREGROUND_BLUE, + LOG_COLOR_FORE_GREEN = FOREGROUND_GREEN, + LOG_COLOR_FORE_RED = FOREGROUND_RED, + LOG_COLOR_FORE_INTENSITY = FOREGROUND_INTENSITY, + LOG_COLOR_FORE_GRAY = FOREGROUND_INTENSITY, + LOG_COLOR_FORE_CYAN = FOREGROUND_BLUE | FOREGROUND_GREEN, + LOG_COLOR_FORE_MAGENTA = FOREGROUND_BLUE | FOREGROUND_RED, + LOG_COLOR_FORE_YELLOW = FOREGROUND_GREEN | FOREGROUND_RED, + LOG_COLOR_FORE_BLACK = 0U, + LOG_COLOR_FORE_WHITE = FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE, + + LOG_COLOR_BACK_BLUE = BACKGROUND_BLUE, + LOG_COLOR_BACK_GREEN = BACKGROUND_GREEN, + LOG_COLOR_BACK_RED = BACKGROUND_RED, + LOG_COLOR_BACK_INTENSITY = BACKGROUND_INTENSITY, + LOG_COLOR_BACK_GRAY = BACKGROUND_INTENSITY, + LOG_COLOR_BACK_CYAN = BACKGROUND_BLUE | BACKGROUND_GREEN, + LOG_COLOR_BACK_MAGENTA = BACKGROUND_BLUE | BACKGROUND_RED, + LOG_COLOR_BACK_YELLOW = BACKGROUND_GREEN | BACKGROUND_RED, + LOG_COLOR_BACK_BLACK = 0U, + LOG_COLOR_BACK_WHITE = BACKGROUND_RED | BACKGROUND_GREEN | BACKGROUND_BLUE, + + /* [internal] */ + LOG_COLOR_DEFAULT = LOG_COLOR_FORE_WHITE | LOG_COLOR_BACK_BLACK +}; + +#pragma endregion + +/* + * LOGGING + * - simple logging system with file and console output + * used for debugging and fetching values/errors at run-time + * @todo: currently not thread safe and can mess messages when used from different threads + */ +namespace L +{ + namespace DETAIL + { + // @todo: constructs string per-byte in the stack, how do we can optimize this? + template + struct FileBlockStorage_t + { + template + consteval explicit FileBlockStorage_t(const char* szFileName, const char* szLineNumber, std::index_sequence, std::index_sequence) : + szStorage{ '[', szFileName[I1]..., ':', szLineNumber[I2]..., ']', ' ', '\0' } { } + + [[nodiscard]] constexpr const char* Get() const + { + return szStorage; + } + + const char szStorage[N + 5U]; + }; + + // fail-free version of 'StringCharR' + consteval const char* GetFileName(const char* szFilePath) + { + const char* szLastPath = szFilePath; + + do + { + if (*szFilePath == '\\') + szLastPath = szFilePath + 1U; + } while (*szFilePath++ != '\0'); + + return szLastPath; + } + + // helper to generate file info block for logging message at compile-time + template + consteval auto MakeFileBlock(const char* szFileName, const char* szFileNumber) noexcept + { + return FileBlockStorage_t(szFileName, szFileNumber, std::make_index_sequence{}, std::make_index_sequence{}); + } + } + + /* @section: main */ + // attach console to current window with write permission and given title + bool AttachConsole(const wchar_t* wszWindowTitle); + // close write streams and detach console from current window + void DetachConsole(); + // open logging output file + bool OpenFile(const wchar_t* wszFileName); + // close logging output file + void CloseFile(); + // write message to the file or/and console + void WriteMessage(const char* szMessage, const std::size_t nMessageLength); + + // alternative of C++ 'std::cout' and other STL-like streams logging scheme + // @todo: is it faster to constantly call 'WriteMessage' instead of concatenating all of the output and print once? i dont think so, due to additional allocations, thread-safe requirements, conditions when we still should call print due to color/etc changes | but generally this should lead to better inlining and less complicated compiled code + struct Stream_t + { + // special unique return type markers to determine and handle change of those flags, just a snap for compile-time, inlined as underlying types at run-time + struct ColorMarker_t + { + LogColorFlags_t nColorFlags; + }; + + struct PrecisionMarker_t + { + int iPrecision; + }; + + struct ModeMarker_t + { + LogModeFlags_t nModeFlags; + }; + + // begin of each log message, puts time, file & line, level blocks + Stream_t& operator()(const ELogLevel nLevel, const char* szFileBlock = nullptr); + + // manipulators + Stream_t& operator<<(ColorMarker_t); + Stream_t& operator<<(PrecisionMarker_t); + Stream_t& operator<<(ModeMarker_t); + // message + Stream_t& operator<<(const char* szMessage); + Stream_t& operator<<(const wchar_t* wszMessage); + // conversion + Stream_t& operator<<(const bool bValue); + + template requires std::is_integral_v + Stream_t& operator<<(const T value) + { +#if defined(CS_LOG_CONSOLE) || defined(CS_LOG_FILE) + int iBase = 10; + const char* szPrefix = nullptr; + + if (nModeFlags & LOG_MODE_INT_FORMAT_HEX) + { + iBase = 16; + szPrefix = "0x"; + } + else if (nModeFlags & LOG_MODE_INT_FORMAT_OCT) + iBase = 8; + else if (nModeFlags & LOG_MODE_INT_FORMAT_BIN) + { + iBase = 2; + szPrefix = "0b"; + } + + // @todo: LOG_MODE_NUM_UPPERCASE not handled + char szIntegerBuffer[CRT::IntegerToString_t::MaxCount() + 2U]; + char* szInteger = CRT::IntegerToString(value, szIntegerBuffer + 2U, sizeof(szIntegerBuffer) - 2U, iBase); + + // @todo: after int2str rework could be simplified | or completely replaced with strformat + if (szPrefix != nullptr && (nModeFlags & LOG_MODE_INT_SHOWBASE)) + { + *--szInteger = szPrefix[1]; + *--szInteger = szPrefix[0]; + } + + if constexpr (std::is_signed_v) + { + if (value >= 0 && (nModeFlags & LOG_MODE_NUM_SHOWPOSITIVE)) + *--szInteger = '+'; + } + + const std::size_t nIntegerLength = szIntegerBuffer + sizeof(szIntegerBuffer) - szInteger - 1; + WriteMessage(szInteger, nIntegerLength); +#endif + return *this; + } + + template requires std::is_floating_point_v + Stream_t& operator<<(const T value) + { +#if defined(CS_LOG_CONSOLE) || defined(CS_LOG_FILE) + //static_assert((nModeFlags & (LOG_MODE_FLOAT_FORMAT_FIXED | LOG_MODE_FLOAT_FORMAT_SCIENTIFIC)) && std::is_same_v); // expected 'double' or 'long double' + int iDesiredPrecision = /*((nModeFlags & (LOG_MODE_FLOAT_FORMAT_FIXED | LOG_MODE_FLOAT_FORMAT_SCIENTIFIC)) ? -1 : (*/ iPrecision > 0 ? iPrecision : FLT_DIG; //)); + + char szFormatBuffer[8]; + char* szFormat = szFormatBuffer; + *szFormat++ = '%'; + + if (nModeFlags & LOG_MODE_NUM_SHOWPOSITIVE) + *szFormat++ = '+'; + + if (nModeFlags & LOG_MODE_FLOAT_SHOWPOINT) + *szFormat++ = '#'; + + *szFormat++ = '.'; + *szFormat++ = '*'; + if constexpr (std::is_same_v) + *szFormat++ = 'L'; + + if (nModeFlags & LOG_MODE_FLOAT_FORMAT_FIXED) + *szFormat++ = 'f'; + else + { + const bool bIsUpperCase = (nModeFlags & LOG_MODE_NUM_UPPERCASE); + + if (nModeFlags & LOG_MODE_FLOAT_FORMAT_HEX) + *szFormat++ = bIsUpperCase ? 'A' : 'a'; + else if (nModeFlags & LOG_MODE_FLOAT_FORMAT_SCIENTIFIC) + *szFormat++ = bIsUpperCase ? 'E' : 'e'; + else + *szFormat++ = bIsUpperCase ? 'G' : 'g'; + } + *szFormat = '\0'; + + char szFloatBuffer[96]; + const int nFloatLength = CRT::StringPrintN(szFloatBuffer, sizeof(szFloatBuffer), szFormatBuffer, iDesiredPrecision, value); + + WriteMessage(szFloatBuffer, nFloatLength); +#endif + return *this; + } + + Stream_t& operator<<(const Vector_t& vecValue) + { + this->nModeFlags |= LOG_MODE_FLOAT_FORMAT_FIXED; + this->iPrecision = 3; + *this << CS_XOR("vector3d: (") << vecValue.x << CS_XOR(" | ") << vecValue.y << CS_XOR(" | ") << vecValue.z << CS_XOR(")"); + return *this; + } + + Stream_t& operator<<(const QAngle_t& angValue) + { + this->nModeFlags |= LOG_MODE_FLOAT_FORMAT_FIXED; + this->iPrecision = 3; + *this << CS_XOR("qangle: (") << angValue.x << CS_XOR(" | ") << angValue.y << CS_XOR(" | ") << angValue.z << CS_XOR(")"); + return *this; + } + + Stream_t& operator<<(const Color_t& colValue) + { + *this << CS_XOR("color: (") << static_cast(colValue.r) << CS_XOR(" | ") << static_cast(colValue.g) << CS_XOR(" | ") << static_cast(colValue.b) << CS_XOR(" | ") << static_cast(colValue.a) << CS_XOR(")"); + return *this; + } + + bool bFirstPrint = true; + int iPrecision = 0; + LogModeFlags_t nModeFlags = LOG_MODE_NONE; + }; + + /* @section: stream control */ + // set console color flags for current stream, will reset on next message + Stream_t::ColorMarker_t SetColor(const LogColorFlags_t nColorFlags); + // set the decimal precision to be used to format floating-point values for current stream, will reset on next message + Stream_t::PrecisionMarker_t SetPrecision(const int m_iPrecision); + // add logging mode flags for current stream, will reset on next message + Stream_t::ModeMarker_t AddFlags(const LogModeFlags_t m_nModeFlags); + // remove logging mode flags for current stream + Stream_t::ModeMarker_t RemoveFlags(const LogModeFlags_t m_nModeFlags); + + /* @section: values */ + // primary logging stream + inline Stream_t stream; +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/math.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/math.cpp new file mode 100644 index 0000000..2637836 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/math.cpp @@ -0,0 +1,226 @@ +#include "math.h" + +//used: getexportaddr +#include "memory.h" +#include "../core/sdk.h" +#include +bool MATH::Setup() +{ + bool bSuccess = true; + + const void* hTier0Lib = MEM::GetModuleBaseHandle(TIER0_DLL); + if (hTier0Lib == nullptr) + return false; + + fnRandomSeed = reinterpret_cast(MEM::GetExportAddress(hTier0Lib, CS_XOR("RandomSeed"))); + bSuccess &= (fnRandomSeed != nullptr); + + fnRandomFloat = reinterpret_cast(MEM::GetExportAddress(hTier0Lib, CS_XOR("RandomFloat"))); + bSuccess &= (fnRandomFloat != nullptr); + + fnRandomFloatExp = reinterpret_cast(MEM::GetExportAddress(hTier0Lib, CS_XOR("RandomFloatExp"))); + bSuccess &= (fnRandomFloatExp != nullptr); + + fnRandomInt = reinterpret_cast(MEM::GetExportAddress(hTier0Lib, CS_XOR("RandomInt"))); + bSuccess &= (fnRandomInt != nullptr); + + fnRandomGaussianFloat = reinterpret_cast(MEM::GetExportAddress(hTier0Lib, CS_XOR("RandomGaussianFloat"))); + bSuccess &= (fnRandomGaussianFloat != nullptr); + + return bSuccess; +} + +// distance between to line segments +float MATH::segment_dist(Vector_t start1, Vector_t end1, Vector_t start2, Vector_t end2) noexcept { + Vector_t u = end1 - start1; + Vector_t v = end2 - start2; + Vector_t w = start1 - start2; + float a = u.DotProduct(u); + float b = u.DotProduct(v); + float c = v.DotProduct(v); + float d = u.DotProduct(w); + float e = v.DotProduct(w); + float D = a * c - b * b; + float sc, sN, sD = D; + float tc, tN, tD = D; + + if (D < 0.001f) { + sN = 0.0f; + sD = 1.0f; + tN = e; + tD = c; + } + else { + sN = (b * e - c * d); + tN = (a * e - b * d); + if (sN < 0.0f) { + sN = 0.0f; + tN = e; + tD = c; + } + else if (sN > sD) { + sN = sD; + tN = e + b; + tD = c; + } + } + + if (tN < 0.0f) { + tN = 0.0f; + + if (-d < 0.0f) { + sN = 0.0f; + } + else if (-d > a) { + sN = sD; + } + else { + sN = -d; + sD = a; + } + } + else if (tN > tD) { + tN = tD; + + if ((-d + b) < 0.0f) { + sN = 0; + } + else if ((-d + b) > a) { + sN = sD; + } + else { + sN = (-d + b); + sD = a; + } + } + + sc = (std::abs(sN) < 0.001f ? 0.0f : sN / sD); + tc = (std::abs(tN) < 0.001f ? 0.0f : tN / tD); + + Vector_t dP = w + (u * sc) - (v * tc); + return dP.Length(); +} +void MATH::TransformAABB(const Matrix3x4a_t& transform, const Vector_t& minsIn, const Vector_t& maxsIn, Vector_t& minsOut, Vector_t& maxsOut) { + const Vector_t localCenter = (minsIn + maxsIn) * 0.5f; + const Vector_t& localExtent = maxsIn - localCenter; + + const auto& mat = transform.arrData; + const Vector_t worldAxisX{ mat[0][0], mat[0][1], mat[0][2] }; + const Vector_t worldAxisY{ mat[1][0], mat[1][1], mat[1][2] }; + const Vector_t worldAxisZ{ mat[2][0], mat[2][1], mat[2][2] }; + + const Vector_t worldCenter = localCenter.Transform(transform); + const Vector_t worldExtent{ + localExtent.DotProduct(worldAxisX), + localExtent.DotProduct(worldAxisY), + localExtent.DotProduct(worldAxisZ), + }; + + minsOut = worldCenter - worldExtent; + maxsOut = worldCenter + worldExtent; +} +#include + +void MATH::angle_vector(const QAngle_t& angles, Vector_t& forward) noexcept { + const float x = angles.x * std::numbers::pi_v / 180.f; + const float y = angles.y * std::numbers::pi_v / 180.f; + const float sp = std::sin(x); + const float cp = std::cos(x); + const float sy = std::sin(y); + const float cy = std::cos(y); + forward.x = cp * cy; + forward.y = cp * sy; + forward.z = -sp; +} + +Vector_t MATH::angle_vector(const QAngle_t& angles) noexcept { + Vector_t forward; + angle_vector(angles, forward); + return forward; +} + +void MATH::anglevectors(const QAngle_t& angles, Vector_t* forward, Vector_t* right, Vector_t* up ) +{ + float cp = std::cos(M_DEG2RAD(angles.x)), sp = std::sin(M_DEG2RAD(angles.x)); + float cy = std::cos(M_DEG2RAD(angles.y)), sy = std::sin(M_DEG2RAD(angles.y)); + float cr = std::cos(M_DEG2RAD(angles.z)), sr = std::sin(M_DEG2RAD(angles.z)); + + if (forward) { + forward->x = cp * cy; + forward->y = cp * sy; + forward->z = -sp; + } + + if (right) { + right->x = -1.f * sr * sp * cy + -1.f * cr * -sy; + right->y = -1.f * sr * sp * sy + -1.f * cr * cy; + right->z = -1.f * sr * cp; + } + + if (up) { + up->x = cr * sp * cy + -sr * -sy; + up->y = cr * sp * sy + -sr * cy; + up->z = cr * cp; + } +} + +void MATH::VectorAngless(const Vector_t& forward, QAngle_t& angles, Vector_t* up) { + Vector_t left; + float len, up_z, pitch, yaw, roll; + + // get 2d length. + len = forward.Length2D(); + + if (up && len > 0.001f) { + pitch = M_RAD2DEG(std::atan2(-forward.z, len)); + yaw = M_RAD2DEG(std::atan2(forward.y, forward.x)); + + // get left direction vector using cross product. + left = (*up).CrossProduct(forward).Normalized(); + + // calculate up_z. + up_z = (left.y * forward.x) - (left.x * forward.y); + + // calculate roll. + roll = M_RAD2DEG(std::atan2(left.z, up_z)); + } + + else { + if (len > 0.f) { + // calculate pitch and yaw. + pitch = M_RAD2DEG(std::atan2(-forward.z, len)); + yaw = M_RAD2DEG(std::atan2(forward.y, forward.x)); + roll = 0.f; + } + + else { + pitch = (forward.z > 0.f) ? -90.f : 90.f; + yaw = 0.f; + roll = 0.f; + } + } + + // set out angles. + angles = { pitch, yaw, roll }; +} + +bool MATH::WorldToScreen(const Vector_t& in, ImVec2& out) { + if (!ImGui::GetCurrentContext()) return false; + + auto z = SDK::ViewMatrix[3][0] * in.x + SDK::ViewMatrix[3][1] * in.y + + SDK::ViewMatrix[3][2] * in.z + SDK::ViewMatrix[3][3]; + + if (z < 0.001f) + return false; + + out = { (ImGui::GetIO().DisplaySize.x * 0.5f), (ImGui::GetIO().DisplaySize.y * 0.5f) }; + out.x *= 1.0f + (SDK::ViewMatrix[0][0] * in.x + SDK::ViewMatrix[0][1] * in.y + + SDK::ViewMatrix[0][2] * in.z + SDK::ViewMatrix[0][3]) / + z; + out.y *= 1.0f - (SDK::ViewMatrix[1][0] * in.x + SDK::ViewMatrix[1][1] * in.y + + SDK::ViewMatrix[1][2] * in.z + SDK::ViewMatrix[1][3]) / + z; + + out = { out.x, out.y }; + return true; +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/math.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/math.h new file mode 100644 index 0000000..d7a0378 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/math.h @@ -0,0 +1,179 @@ +#pragma once + +#include "../common.h" +// used: std::is_integral_v +#include +// used: sin, cos, pow, abs, sqrt +#include // used: MATH::Sin, cos, MATH::Pow, abs, sqrt +#include +// used: rand, srand +#include +// used: time +#include +#include +#include "../sdk/datatypes/matrix.h" +#include "../sdk/datatypes/vector.h" +#include "../sdk/datatypes/qangle.h" +// convert angle in degrees to radians +#define M_DEG2RAD(DEGREES) ((DEGREES) * (MATH::_PI / 180.f)) +// convert angle in radians to degrees +#define M_RAD2DEG(RADIANS) ((RADIANS) * (180.f / MATH::_PI)) +/// linearly interpolate the value between @a'X0' and @a'X1' by @a'FACTOR' +#define M_LERP(X0, X1, FACTOR) ((X0) + ((X1) - (X0)) * (FACTOR)) +/// trigonometry +#define M_COS(ANGLE) cos(ANGLE) +#define M_SIN(ANGLE) sin(ANGLE) +#define M_TAN(ANGLE) tan(ANGLE) +/// power +#define M_POW(BASE, EXPONENT) pow(BASE, EXPONENT) +/// absolute value +#define M_ABS(VALUE) abs(VALUE) +/// square root +#define M_SQRT(VALUE) sqrt(VALUE) +/// floor +#define M_FLOOR(VALUE) floor(VALUE) +constexpr auto RadPi = 3.14159265358979323846; +constexpr auto DegPi = 180.0; +template +T ToDegrees(T radians) { + return (radians * (static_cast(DegPi) / static_cast(RadPi))); +} +/* + * MATHEMATICS + * - basic trigonometry, algebraic mathematical functions and constants + */ +namespace MATH +{ + /* @section: constants */ + // pi value + inline constexpr float _PI = 3.141592654f; + // double of pi + inline constexpr float _2PI = 6.283185307f; + // half of pi + inline constexpr float _HPI = 1.570796327f; + // quarter of pi + inline constexpr float _QPI = 0.785398163f; + // reciprocal of double of pi + inline constexpr float _1DIV2PI = 0.159154943f; + // golden ratio + inline constexpr float _PHI = 1.618033988f; + bool WorldToScreen(const Vector_t& in, ImVec2& out); + + // capture game's exports + bool Setup(); + + void TransformAABB(const Matrix3x4a_t& transform, const Vector_t& minsIn, const Vector_t& maxsIn, Vector_t& minsOut, Vector_t& maxsOut); + + void angle_vector(const QAngle_t& angles, Vector_t& forward) noexcept; + + Vector_t angle_vector(const QAngle_t& angles) noexcept; + + float segment_dist(Vector_t start1, Vector_t end1, Vector_t start2, Vector_t end2) noexcept; + + /* @section: algorithm */ + /// alternative of 'std::min' + /// @returns : minimal value of the given comparable values + template + [[nodiscard]] CS_INLINE constexpr const T& Min(const T& left, const T& right) noexcept + { + return (right < left) ? right : left; + } + + template + CS_INLINE T clamp(const T& n, const T& lower, const T& upper) + { + return std::max(lower, std::min(n, upper)); + } + + /// alternative of 'std::max' + /// @returns : maximal value of the given comparable values + template + [[nodiscard]] CS_INLINE constexpr const T& Max(const T& left, const T& right) noexcept + { + return (right > left) ? right : left; + } + + + [[nodiscard]] CS_INLINE float normalize_yaw(float yaw) noexcept + { + while (yaw > 180.0f) + yaw -= 360.0f; + + while (yaw < -180.0f) + yaw += 360.0f; + + return yaw; + } + /// alternative of 'std::clamp' + /// @returns : value clamped in range ['minimal' .. 'maximal'] + template + [[nodiscard]] CS_INLINE constexpr const T& Clamp(const T& value, const T& minimal, const T& maximal) noexcept + { + return (value < minimal) ? minimal : (value > maximal) ? maximal : + value; + } + + + void anglevectors(const QAngle_t& angles, Vector_t* forward, Vector_t* right = nullptr, Vector_t* up = nullptr); + + void VectorAngless(const Vector_t& forward, QAngle_t& angles, Vector_t* up = nullptr); + + [[nodiscard]] inline void vec_angles(Vector_t forward, Vector_t* angles) + { + float tmp, yaw, pitch; + + if (forward.y == 0.f && forward.x == 0.f) { + yaw = 0; + if (forward.z > 0) { + pitch = 270; + } + else { + pitch = 90.f; + } + } + else { + yaw = (float)(atan2(forward.y, forward.x) * 180.f / 3.14159265358979323846f); + if (yaw < 0) { + yaw += 360.f; + } + tmp = (float)sqrt(forward.x * forward.x + forward.y * forward.y); + pitch = (float)(atan2(-forward.z, tmp) * 180.f / 3.14159265358979323846f); + if (pitch < 0) { + pitch += 360.f; + } + } + angles->x = pitch; + angles->y = yaw; + angles->z = 0.f; + } + + /* @section: exponential */ + /// @returns: true if given number is power of two, false otherwise + template requires (std::is_integral_v) + [[nodiscard]] CS_INLINE constexpr bool IsPowerOfTwo(const T value) noexcept + { + return value != 0 && (value & (value - 1)) == 0; + } + + __forceinline float AngleNormalize(float angle) + { + angle = fmodf(angle, 360.0f); + if (angle > 180) + { + angle -= 360; + } + if (angle < -180) + { + angle += 360; + } + return angle; + } + + /* @section: random using game's exports */ + inline int(CS_CDECL* fnRandomSeed)(int iSeed) = nullptr; + inline float(CS_CDECL* fnRandomFloat)(float flMinValue, float flMaxValue) = nullptr; + inline float(CS_CDECL* fnRandomFloatExp)(float flMinValue, float flMaxValue, float flExponent) = nullptr; + inline int(CS_CDECL* fnRandomInt)(int iMinValue, int iMaxValue) = nullptr; + inline float(CS_CDECL* fnRandomGaussianFloat)(float flMean, float flStdDev) = nullptr; + +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/memory.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/memory.cpp new file mode 100644 index 0000000..b9934ba --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/memory.cpp @@ -0,0 +1,515 @@ +// used: __readfsdword +#include +// used: d3d11 +#include + +#include "memory.h" + +// used: l_print +#include "log.h" +// used: chartohexint +#include "crt.h" +// used: pe64 +#include "pe64.h" +#include "../core/spoofcall/invoker.h" +#include "../core/spoofcall/lazy_importer.hpp" + +bool MEM::Setup() +{ + bool bSuccess = true; + + const void* hSDL3 = spoof_call(_fake_addr, &GetModuleBaseHandle, SDL3_DLL); + const void* hDbgHelp = spoof_call(_fake_addr, &GetModuleBaseHandle, DBGHELP_DLL); + const void* hTier0 = GetModuleBaseHandle(TIER0_DLL); + + if (hSDL3 == nullptr || hDbgHelp == nullptr) + return false; + + fnUnDecorateSymbolName = reinterpret_cast(GetExportAddress(hDbgHelp, CS_XOR("UnDecorateSymbolName"))); + bSuccess &= (fnUnDecorateSymbolName != nullptr); + + fnSetRelativeMouseMode = reinterpret_cast(GetExportAddress(hSDL3, "SDL_SetRelativeMouseMode")); + bSuccess &= (fnSetRelativeMouseMode != nullptr); + + fnSetWindowGrab = reinterpret_cast(GetExportAddress(hSDL3, "SDL_SetWindowGrab")); + bSuccess &= (fnSetWindowGrab != nullptr); + + fnWarpMouseInWindow = reinterpret_cast(GetExportAddress(hSDL3, "SDL_WarpMouseInWindow")); + bSuccess &= (fnWarpMouseInWindow != nullptr); + L_PRINT(LOG_INFO) << CS_XOR("[Memory] Loaded fnWarpMouseInWindow"); + + fnCreateMaterial = reinterpret_cast(FindPattern(MATERIAL_SYSTEM2_DLL, CS_XOR("48 89 5C 24 ? 48 89 6C 24 ? 56 57 41 56 48 81 EC ? ? ? ? 48 8D 0D"))); + bSuccess &= (fnCreateMaterial != nullptr); + L_PRINT(LOG_INFO) << CS_XOR("[Memory] Loaded fnCreateMaterial"); + + load_key_value = reinterpret_cast(GetExportAddress(hTier0, CS_XOR("?LoadKV3@@YA_NPEAVKeyValues3@@PEAVCUtlString@@PEBDAEBUKV3ID_t@@2@Z"))); + bSuccess &= (load_key_value != nullptr); + L_PRINT(LOG_INFO) << CS_XOR("[Memory] Loaded load_key_value"); + + return bSuccess; +} + +#pragma region memory_allocation + +/* + * overload global new/delete operators with our allocators + * - @note: ensure that all sdk classes that can be instantiated have an overloaded constructor and/or game allocator, otherwise marked as non-constructible + */ +void* __cdecl operator new(const std::size_t nSize) +{ + return MEM::HeapAlloc(nSize); +} + +void* __cdecl operator new[](const std::size_t nSize) +{ + return MEM::HeapAlloc(nSize); +} + +void __cdecl operator delete(void* pMemory) noexcept +{ + MEM::HeapFree(pMemory); +} + +void __cdecl operator delete[](void* pMemory) noexcept +{ + MEM::HeapFree(pMemory); +} + +void* MEM::HeapAlloc(const std::size_t nSize) +{ + const HANDLE hHeap = ::GetProcessHeap(); + return ::HeapAlloc(hHeap, 0UL, nSize); +} + +void MEM::HeapFree(void* pMemory) +{ + if (pMemory != nullptr) + { + const HANDLE hHeap = ::GetProcessHeap(); + ::HeapFree(hHeap, 0UL, pMemory); + } +} + +void* MEM::HeapRealloc(void* pMemory, const std::size_t nNewSize) +{ + if (pMemory == nullptr) + return HeapAlloc(nNewSize); + + if (nNewSize == 0UL) + { + HeapFree(pMemory); + return nullptr; + } + + const HANDLE hHeap = ::GetProcessHeap(); + return ::HeapReAlloc(hHeap, 0UL, pMemory, nNewSize); +} + +#pragma endregion + +// @todo: move to win.cpp (or platform.cpp?) except getsectioninfo +#pragma region memory_get + +void* MEM::GetModuleBaseHandle(const wchar_t* wszModuleName) +{ + const _PEB* pPEB = reinterpret_cast<_PEB*>(__readgsqword(0x60)); + + if (wszModuleName == nullptr) + return pPEB->ImageBaseAddress; + + void* pModuleBase = nullptr; + for (LIST_ENTRY* pListEntry = pPEB->Ldr->InMemoryOrderModuleList.Flink; pListEntry != &pPEB->Ldr->InMemoryOrderModuleList; pListEntry = pListEntry->Flink) + { + const _LDR_DATA_TABLE_ENTRY* pEntry = CONTAINING_RECORD(pListEntry, _LDR_DATA_TABLE_ENTRY, InMemoryOrderLinks); + + if (pEntry->FullDllName.Buffer != nullptr && CRT::StringCompare(wszModuleName, pEntry->BaseDllName.Buffer) == 0) + { + pModuleBase = pEntry->DllBase; + break; + } + } + + if (pModuleBase == nullptr) + L_PRINT(LOG_ERROR) << CS_XOR("module base not found: \"") << wszModuleName << CS_XOR("\""); + + return pModuleBase; +} + +const wchar_t* MEM::GetModuleBaseFileName(const void* hModuleBase) +{ + const _PEB* pPEB = reinterpret_cast<_PEB*>(__readgsqword(0x60)); + + if (hModuleBase == nullptr) + hModuleBase = pPEB->ImageBaseAddress; + + ::EnterCriticalSection(pPEB->LoaderLock); + + const wchar_t* wszModuleName = nullptr; + for (LIST_ENTRY* pListEntry = pPEB->Ldr->InMemoryOrderModuleList.Flink; pListEntry != &pPEB->Ldr->InMemoryOrderModuleList; pListEntry = pListEntry->Flink) + { + const _LDR_DATA_TABLE_ENTRY* pEntry = CONTAINING_RECORD(pListEntry, _LDR_DATA_TABLE_ENTRY, InMemoryOrderLinks); + + if (pEntry->DllBase == hModuleBase) + { + wszModuleName = pEntry->BaseDllName.Buffer; + break; + } + } + + ::LeaveCriticalSection(pPEB->LoaderLock); + + return wszModuleName; +} + +void* MEM::GetExportAddress(const void* hModuleBase, const char* szProcedureName) +{ + const auto pBaseAddress = static_cast(hModuleBase); + + const auto pIDH = static_cast(hModuleBase); + if (pIDH->e_magic != IMAGE_DOS_SIGNATURE) + return nullptr; + + const auto pINH = reinterpret_cast(pBaseAddress + pIDH->e_lfanew); + if (pINH->Signature != IMAGE_NT_SIGNATURE) + return nullptr; + + const IMAGE_OPTIONAL_HEADER64* pIOH = &pINH->OptionalHeader; + const std::uintptr_t nExportDirectorySize = pIOH->DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].Size; + const std::uintptr_t uExportDirectoryAddress = pIOH->DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].VirtualAddress; + + if (nExportDirectorySize == 0U || uExportDirectoryAddress == 0U) + { + L_PRINT(LOG_ERROR) << CS_XOR("module has no exports: \"") << GetModuleBaseFileName(hModuleBase) << CS_XOR("\""); + return nullptr; + } + + const auto pIED = reinterpret_cast(pBaseAddress + uExportDirectoryAddress); + const auto pNamesRVA = reinterpret_cast(pBaseAddress + pIED->AddressOfNames); + const auto pNameOrdinalsRVA = reinterpret_cast(pBaseAddress + pIED->AddressOfNameOrdinals); + const auto pFunctionsRVA = reinterpret_cast(pBaseAddress + pIED->AddressOfFunctions); + + // Perform binary search to find the export by name + std::size_t nRight = pIED->NumberOfNames, nLeft = 0U; + while (nRight != nLeft) + { + // Avoid INT_MAX/2 overflow + const std::size_t uMiddle = nLeft + ((nRight - nLeft) >> 1U); + const int iResult = CRT::StringCompare(szProcedureName, reinterpret_cast(pBaseAddress + pNamesRVA[uMiddle])); + + if (iResult == 0) + { + const std::uint32_t uFunctionRVA = pFunctionsRVA[pNameOrdinalsRVA[uMiddle]]; + +#ifdef _DEBUG + L_PRINT(LOG_INFO) << CS_XOR("export found: \"") << reinterpret_cast(pBaseAddress + pNamesRVA[uMiddle]) << CS_XOR("\" in \"") << GetModuleBaseFileName(hModuleBase) << CS_XOR("\" at: ") << L::AddFlags(LOG_MODE_INT_SHOWBASE | LOG_MODE_INT_FORMAT_HEX) << uFunctionRVA; +#else + L_PRINT(LOG_INFO) << CS_XOR("export found: ") << szProcedureName; +#endif // _DEBUG + + // Check if it's a forwarded export + if (uFunctionRVA >= uExportDirectoryAddress && uFunctionRVA - uExportDirectoryAddress < nExportDirectorySize) + { + // Forwarded exports are not supported + break; + } + + return const_cast(pBaseAddress) + uFunctionRVA; + } + + if (iResult > 0) + nLeft = uMiddle + 1; + else + nRight = uMiddle; + } + + L_PRINT(LOG_ERROR) << CS_XOR("export not found: ") << szProcedureName; + + // Export not found + return nullptr; +} + +bool MEM::GetSectionInfo(const void* hModuleBase, const char* szSectionName, std::uint8_t** ppSectionStart, std::size_t* pnSectionSize) +{ + const auto pBaseAddress = static_cast(hModuleBase); + + const auto pIDH = static_cast(hModuleBase); + if (pIDH->e_magic != IMAGE_DOS_SIGNATURE) + return false; + + const auto pINH = reinterpret_cast(pBaseAddress + pIDH->e_lfanew); + if (pINH->Signature != IMAGE_NT_SIGNATURE) + return false; + + const IMAGE_SECTION_HEADER* pISH = IMAGE_FIRST_SECTION(pINH); + + // go through all code sections + for (WORD i = 0U; i < pINH->FileHeader.NumberOfSections; i++, pISH++) + { + // @test: use case insensitive comparison instead? + if (CRT::StringCompareN(szSectionName, reinterpret_cast(pISH->Name), IMAGE_SIZEOF_SHORT_NAME) == 0) + { + if (ppSectionStart != nullptr) + *ppSectionStart = const_cast(pBaseAddress) + pISH->VirtualAddress; + + if (pnSectionSize != nullptr) + *pnSectionSize = pISH->SizeOfRawData; + + return true; + } + } + + L_PRINT(LOG_ERROR) << CS_XOR("code section not found: \"") << szSectionName << CS_XOR("\""); + return false; +} + +#pragma endregion + +#pragma region memory_search +UTILPtr MEM::FindPatterns(const wchar_t* wszModuleName, const char* szPattern) +{ + // convert pattern string to byte array + const std::size_t nApproximateBufferSize = (CRT::StringLength(szPattern) >> 1U) + 1U; + std::uint8_t* arrByteBuffer = static_cast(MEM_STACKALLOC(nApproximateBufferSize)); + char* szMaskBuffer = static_cast(MEM_STACKALLOC(nApproximateBufferSize)); + PatternToBytes(szPattern, arrByteBuffer, szMaskBuffer); + + // @test: use search with straight in-place conversion? do not think it will be faster, cuz of bunch of new checks that gonna be performed for each iteration + return FindPattern(wszModuleName, reinterpret_cast(arrByteBuffer), szMaskBuffer); +} +std::uint8_t* MEM::FindPattern(const wchar_t* wszModuleName, const char* szPattern) +{ + // convert pattern string to byte array + const std::size_t nApproximateBufferSize = (CRT::StringLength(szPattern) >> 1U) + 1U; + std::uint8_t* arrByteBuffer = static_cast(MEM_STACKALLOC(nApproximateBufferSize)); + char* szMaskBuffer = static_cast(MEM_STACKALLOC(nApproximateBufferSize)); + PatternToBytes(szPattern, arrByteBuffer, szMaskBuffer); + + // @test: use search with straight in-place conversion? do not think it will be faster, cuz of bunch of new checks that gonna be performed for each iteration + return FindPattern(wszModuleName, reinterpret_cast(arrByteBuffer), szMaskBuffer); +} +std::uint8_t* MEM::FindPattern(const wchar_t* wszModuleName, const char* szBytePattern, const char* szByteMask) +{ + const void* hModuleBase = spoof_call(_fake_addr, &GetModuleBaseHandle, wszModuleName); + + if (hModuleBase == nullptr) + { + L_PRINT(LOG_ERROR) << CS_XOR("failed to get module handle for: \"") << wszModuleName << CS_XOR("\""); + return nullptr; + } + + const auto pBaseAddress = static_cast(hModuleBase); + + const auto pIDH = static_cast(hModuleBase); + if (pIDH->e_magic != IMAGE_DOS_SIGNATURE) + { + L_PRINT(LOG_ERROR) << CS_XOR("failed to get module size, image is invalid"); + return nullptr; + } + + const auto pINH = reinterpret_cast(pBaseAddress + pIDH->e_lfanew); + if (pINH->Signature != IMAGE_NT_SIGNATURE) + { + L_PRINT(LOG_ERROR) << CS_XOR("failed to get module size, image is invalid"); + return nullptr; + } + + const std::uint8_t* arrByteBuffer = reinterpret_cast(szBytePattern); + const std::size_t nByteCount = CRT::StringLength(szByteMask); + + std::uint8_t* pFoundAddress = nullptr; + + // perform little overhead to keep all patterns unique +#ifdef CS_PARANOID_PATTERN_UNIQUENESS + const std::vector vecFoundOccurrences = FindPatternAllOccurrencesEx(pBaseAddress, pINH->OptionalHeader.SizeOfImage, arrByteBuffer, nByteCount, szByteMask); + + // notify user about non-unique pattern + if (!vecFoundOccurrences.empty()) + { + // notify user about non-unique pattern + if (vecFoundOccurrences.size() > 1U) + { + char* szPattern = static_cast(MEM_STACKALLOC((nByteCount << 1U) + nByteCount)); + [[maybe_unused]] const std::size_t nConvertedPatternLength = BytesToPattern(arrByteBuffer, nByteCount, szPattern); + + L_PRINT(LOG_WARNING) << CS_XOR("found more than one occurrence with \"") << szPattern << CS_XOR("\" pattern, consider updating it!"); + + MEM_STACKFREE(szPattern); + } + + // return first found occurrence + pFoundAddress = vecFoundOccurrences[0]; + } +#else + // @todo: we also can go through code sections and skip noexec pages, but will it really improve performance? / or at least for all occurrences search + // https://docs.microsoft.com/en-us/windows/win32/api/winnt/ns-winnt-image_section_header +#if 0 + IMAGE_SECTION_HEADER* pCurrentSection = IMAGE_FIRST_SECTION(pINH); + for (WORD i = 0U; i != pINH->FileHeader.NumberOfSections; i++) + { + // check does page have executable code + if (pCurrentSection->Characteristics & IMAGE_SCN_CNT_CODE || pCurrentSection->Characteristics & IMAGE_SCN_MEM_EXECUTE) + { + pFoundAddress = FindPatternEx(pBaseAddress + pCurrentSection->VirtualAddress, pCurrentSection->SizeOfRawData, arrByteBuffer, nByteCount, szByteMask); + + if (pFoundAddress != nullptr) + break; + } + + ++pCurrentSection; + } +#else + pFoundAddress = FindPatternEx(pBaseAddress, pINH->OptionalHeader.SizeOfImage, arrByteBuffer, nByteCount, szByteMask); +#endif +#endif + + if (pFoundAddress == nullptr) + { + char* szPattern = static_cast(MEM_STACKALLOC((nByteCount << 1U) + nByteCount)); + [[maybe_unused]] const std::size_t nConvertedPatternLength = BytesToPattern(arrByteBuffer, nByteCount, szPattern); + + L_PRINT(LOG_ERROR) << CS_XOR("pattern not found: \"") << szPattern << CS_XOR("\""); + + MEM_STACKFREE(szPattern); + } + + return pFoundAddress; +} + +// @todo: msvc poorly optimizes this, it looks even better w/o optimization at all +std::uint8_t* MEM::FindPatternEx(const std::uint8_t* pRegionStart, const std::size_t nRegionSize, const std::uint8_t* arrByteBuffer, const std::size_t nByteCount, const char* szByteMask) +{ + std::uint8_t* pCurrentAddress = const_cast(pRegionStart); + const std::uint8_t* pRegionEnd = pRegionStart + nRegionSize - nByteCount; + const bool bIsMaskUsed = (szByteMask != nullptr); + + while (pCurrentAddress < pRegionEnd) + { + // check the first byte before entering the loop, otherwise if there two consecutive bytes of first byte in the buffer, we may skip both and fail the search + if ((bIsMaskUsed && *szByteMask == '?') || *pCurrentAddress == *arrByteBuffer) + { + if (nByteCount == 1) + return pCurrentAddress; + + // compare the least byte sequence and continue on wildcard or skip forward on first mismatched byte + std::size_t nComparedBytes = 0U; + while ((bIsMaskUsed && szByteMask[nComparedBytes + 1U] == '?') || pCurrentAddress[nComparedBytes + 1U] == arrByteBuffer[nComparedBytes + 1U]) + { + // check does byte sequence match + if (++nComparedBytes == nByteCount - 1U) + return pCurrentAddress; + } + + // skip non suitable bytes + pCurrentAddress += nComparedBytes; + } + + ++pCurrentAddress; + } + + return nullptr; +} + +std::vector MEM::FindPatternAllOccurrencesEx(const std::uint8_t* pRegionStart, const std::size_t nRegionSize, const std::uint8_t* arrByteBuffer, const std::size_t nByteCount, const char* szByteMask) +{ + const std::uint8_t* pRegionEnd = pRegionStart + nRegionSize - nByteCount; + const bool bIsMaskUsed = (szByteMask != nullptr); + + // container for addresses of the all found occurrences + std::vector vecOccurrences = {}; + + for (std::uint8_t* pCurrentByte = const_cast(pRegionStart); pCurrentByte < pRegionEnd; ++pCurrentByte) + { + // do a first byte check before entering the loop, otherwise if there two consecutive bytes of first byte in the buffer, we may skip both and fail the search + if ((!bIsMaskUsed || *szByteMask != '?') && *pCurrentByte != *arrByteBuffer) + continue; + + // check for bytes sequence match + bool bSequenceMatch = true; + for (std::size_t i = 1U; i < nByteCount; i++) + { + // compare sequence and continue on wildcard or skip forward on first mismatched byte + if ((!bIsMaskUsed || szByteMask[i] != '?') && pCurrentByte[i] != arrByteBuffer[i]) + { + // skip non suitable bytes + pCurrentByte += i - 1U; + + bSequenceMatch = false; + break; + } + } + + // check did we found address + if (bSequenceMatch) + vecOccurrences.push_back(pCurrentByte); + } + + return vecOccurrences; +} + +#pragma endregion + +#pragma region memory_extra + +std::size_t MEM::PatternToBytes(const char* szPattern, std::uint8_t* pOutByteBuffer, char* szOutMaskBuffer) +{ + std::uint8_t* pCurrentByte = pOutByteBuffer; + + while (*szPattern != '\0') + { + // check is a wildcard + if (*szPattern == '?') + { + ++szPattern; +#ifdef CS_PARANOID + CS_ASSERT(*szPattern == '\0' || *szPattern == ' ' || *szPattern == '?'); // we're expect that next character either terminating null, whitespace or part of double wildcard (note that it's required if your pattern written without whitespaces) +#endif + + // ignore that + *pCurrentByte++ = 0U; + *szOutMaskBuffer++ = '?'; + } + // check is not space + else if (*szPattern != ' ') + { + // convert two consistent numbers in a row to byte value + std::uint8_t uByte = static_cast(CRT::CharToHexInt(*szPattern) << 4); + + ++szPattern; +#ifdef CS_PARANOID + CS_ASSERT(*szPattern != '\0' && *szPattern != '?' && *szPattern != ' '); // we're expect that byte always represented by two numbers in a row +#endif + + uByte |= static_cast(CRT::CharToHexInt(*szPattern)); + + *pCurrentByte++ = uByte; + *szOutMaskBuffer++ = 'x'; + } + + ++szPattern; + } + + // zero terminate both buffers + *pCurrentByte = 0U; + *szOutMaskBuffer = '\0'; + + return pCurrentByte - pOutByteBuffer; +} + +std::size_t MEM::BytesToPattern(const std::uint8_t* pByteBuffer, const std::size_t nByteCount, char* szOutBuffer) +{ + char* szCurrentPattern = szOutBuffer; + + for (std::size_t i = 0U; i < nByteCount; i++) + { + // manually convert byte to chars + const char* szHexByte = &CRT::_TWO_DIGITS_HEX_LUT[pByteBuffer[i] * 2U]; + *szCurrentPattern++ = szHexByte[0]; + *szCurrentPattern++ = szHexByte[1]; + *szCurrentPattern++ = ' '; + } + *--szCurrentPattern = '\0'; + + return szCurrentPattern - szOutBuffer; +} + +#pragma endregion \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/memory.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/memory.h new file mode 100644 index 0000000..cbedd7a --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/memory.h @@ -0,0 +1,199 @@ +#pragma once +// used: memory api +#include +// used: std::vector +#include +#include +#include "../common.h" +#include "../sdk/datatypes/K3V.h" +#include "../utilities/log.h" +#pragma region memory_definitions +#pragma warning(push) +#pragma warning(disable: 6255) // '_alloca' indicates failure by raising a stack overflow exception. consider using '_malloca' instead +#define MEM_STACKALLOC(SIZE) _malloca(SIZE) +#pragma warning(pop) +#define MEM_STACKFREE(MEMORY) static_cast(0) + +#define MEM_PAD(SIZE) \ +private: \ + char CS_CONCATENATE(pad_0, __COUNTER__)[SIZE]; \ +public: +#pragma endregion + + +// Pointer arithmetic utility class. +struct UTILPtr { +public: + template + UTILPtr(T val) { + m_val = (uintptr_t)(val); + } + + template + T Get(const char* variableName = nullptr) { +#ifdef CS2_SDK_ENABLE_LOGGING + if (variableName) LOG("%s found at -> %llX\n", variableName, m_val); +#endif + + return (T)(m_val); + } + + template + void Get(T& dst, const char* variableName = nullptr) { + dst = Get(variableName); + } + + UTILPtr& AddOffset(int offset) { + if (m_val) m_val += offset; + return *this; + } + UTILPtr& ToAbsolute(int preOffset, int postOffset) { + if (m_val) { + AddOffset(preOffset); + m_val = m_val + sizeof(int) + *(int*)(m_val); + AddOffset(postOffset); + } + return *this; + } + UTILPtr& Dereference(int dereferences) { + if (m_val) + while (dereferences-- != 0) m_val = *(uintptr_t*)(m_val); + return *this; + } + + bool IsValid() { return m_val != 0; } + +private: + uintptr_t m_val; +}; + +namespace MEM +{ + bool Setup(); + + /* @section: allocation */ + // allocate a block of memory from a heap + [[nodiscard]] void* HeapAlloc(const std::size_t nSize); + // free a memory block allocated from a heap + void HeapFree(void* pMemory); + // reallocate a block of memory from a heap + // @note: we're expect this to allocate instead when passed null, and free if size is null + void* HeapRealloc(void* pMemory, const std::size_t nNewSize); + + /* @section: get */ + /// alternative of 'GetModuleHandle()' + /// @param[in] wszModuleName module name to search base handle for, null means current process + /// @returns: base handle of module with given name if it exist, null otherwise + [[nodiscard]] void* GetModuleBaseHandle(const wchar_t* wszModuleName); + /// alternative of 'GetModuleFileName()' + /// @param[in] hModuleBase module base to search filename for, null means current process + /// @returns: name of given module if it's valid, null otherwise + [[nodiscard]] const wchar_t* GetModuleBaseFileName(const void* hModuleBase); + /// alternative of 'GetProcAddress()' + /// @remarks: doesn't support forwarded exports, this means you may need to manual call 'LoadLibrary'/'FreeLibrary' for export library + /// @returns: pointer to exported procedure + [[nodiscard]] void* GetExportAddress(const void* hModuleBase, const char* szProcedureName); + + /// @param[in] szSectionName section to get info of (e.g. ".rdata", ".text", etc) + /// @param[out] ppSectionStart output for section start address + /// @param[out] pnSectionSize output for section size + /// @returns: true if code section has been found, false otherwise + [[nodiscard]] bool GetSectionInfo(const void* hModuleBase, const char* szSectionName, std::uint8_t** ppSectionStart, std::size_t* pnSectionSize); + /// get absolute address from relative address + /// @param[in] pRelativeAddress pointer to relative address, e.g. destination address from JMP, JE, JNE and others instructions + /// @param[in] nPreOffset offset before relative address + /// @param[in] nPostOffset offset after relative address + /// @returns: pointer to absolute address + template + [[nodiscard]] T* GetAbsoluteAddress(T* pRelativeAddress, int nPreOffset = 0x0, int nPostOffset = 0x0) + { + pRelativeAddress += nPreOffset; + pRelativeAddress += sizeof(std::int32_t) + *reinterpret_cast(pRelativeAddress); + pRelativeAddress += nPostOffset; + return pRelativeAddress; + } + /// resolve rip relative address + /// @param[in] nAddressBytes as byte for the address we want to resolve + /// @param[in] nRVAOffset offset of the relative address + /// @param[in] nRIPOffset offset of the instruction pointer + /// @returns: pointer to resolved address + [[nodiscard]] CS_INLINE std::uint8_t* ResolveRelativeAddress(std::uint8_t* nAddressBytes, std::uint32_t nRVAOffset, std::uint32_t nRIPOffset) + { + std::uint32_t nRVA = *reinterpret_cast(nAddressBytes + nRVAOffset); + std::uint64_t nRIP = reinterpret_cast(nAddressBytes) + nRIPOffset; + + return reinterpret_cast(nRVA + nRIP); + } + + /// get pointer to function of virtual-function table + /// @returns: pointer to virtual function + template + [[nodiscard]] CS_INLINE T GetVFunc(const void* thisptr, std::size_t nIndex) + { + return (*static_cast(thisptr))[nIndex]; + } + /// call virtual function of specified class at given index + /// @note: reference and const reference arguments must be forwarded as pointers or wrapped with 'std::ref'/'std::cref' calls! + /// @returns: result of virtual function call + template + static CS_INLINE T CallVFunc(CBaseClass* thisptr, Args_t... argList) + { + using VirtualFn_t = T(__thiscall*)(const void*, decltype(argList)...); + return (*reinterpret_cast(reinterpret_cast(thisptr)))[nIndex](thisptr, argList...); + } + [[nodiscard]] uintptr_t FindPattern(const std::span& pattern) ; + /* @section: search */ + /// ida style pattern byte comparison in a specific mo dule + /// @param[in] wszModuleName module name where to search for pattern + /// @param[in] szPattern ida style pattern, e.g. "55 8B 40 ? 30", wildcard can be either '?' or "??", bytes always presented by two numbers in a row [00 .. FF], whitespaces can be omitted (wildcards in this case should be two-character) + /// @returns: pointer to address of the first found occurrence with equal byte sequence on success, null otherwise + [[nodiscard]] std::uint8_t* FindPattern(const wchar_t* wszModuleName, const char* szPattern); + [[nodiscard]] UTILPtr FindPatterns(const wchar_t* wszModuleName, const char* szPattern); + + /// naive style pattern byte comparison in a specific module + /// @param[in] wszModuleName module name where to search for pattern + /// @param[in] szBytePattern naive style pattern, e.g. "\x55\x8B\x40\x00\x30", wildcard bytes value ignored + /// @param[in] szByteMask wildcard mask for byte array, e.g. "xxx?x", should always correspond to bytes count + /// @returns: pointer to address of the first found occurrence with equal byte sequence on success, null otherwise + [[nodiscard]] std::uint8_t* FindPattern(const wchar_t* wszModuleName, const char* szBytePattern, const char* szByteMask); + /// pattern byte comparison in the specific region + /// @param[in] arrByteBuffer byte sequence to search + /// @param[in] nByteCount count of search bytes + /// @param[in] szByteMask [optional] wildcard mask for byte array + /// @returns: pointer to address of the first found occurrence with equal byte sequence on success, null otherwise + [[nodiscard]] std::uint8_t* FindPatternEx(const std::uint8_t* pRegionStart, const std::size_t nRegionSize, const std::uint8_t* arrByteBuffer, const std::size_t nByteCount, const char* szByteMask = nullptr); + /// pattern byte comparison in the specific region + /// @param[in] arrByteBuffer byte sequence to search + /// @param[in] nByteCount count of search bytes + /// @param[in] szByteMask [optional] wildcard mask for byte array + /// @returns: pointers to addresses of the all found occurrences with equal byte sequence on success, empty otherwise + [[nodiscard]] std::vector FindPatternAllOccurrencesEx(const std::uint8_t* pRegionStart, const std::size_t nRegionSize, const std::uint8_t* arrByteBuffer, const std::size_t nByteCount, const char* szByteMask = nullptr); + /// class RTTI virtual table search in a specific module + /// @returns: pointer to the found virtual table on success, null otherwise + + /* @section: extra */ + /// convert ida-style pattern to byte array + /// @param[in] szPattern ida-style pattern, e.g. "55 8B 40 ? 30", wildcard can be either '?' or "??", bytes are always presented by two numbers in a row [00 .. FF], blank delimiters are ignored and not necessary (wildcard in this case should be two-character) + /// @param[out] pOutByteBuffer output for converted, zero-terminated byte array + /// @param[out] szOutMaskBuffer output for wildcard, zero-terminated byte mask + /// @returns: count of the converted bytes from the pattern + std::size_t PatternToBytes(const char* szPattern, std::uint8_t* pOutByteBuffer, char* szOutMaskBuffer); + /// convert byte array to ida-style pattern + /// @param[in] pByteBuffer buffer of bytes to convert + /// @param[in] nByteCount count of bytes to convert + /// @param[out] szOutBuffer output for converted pattern + /// @returns: length of the converted ida-style pattern, not including the terminating null + std::size_t BytesToPattern(const std::uint8_t* pByteBuffer, const std::size_t nByteCount, char* szOutBuffer); + + /* @section: game exports */ + inline unsigned long(CS_STDCALL* fnUnDecorateSymbolName)(const char* szName, char* pszOutput, unsigned long nMaxStringLength, unsigned long dwFlags) = nullptr; + + // SDL window stuffs + // @note: helpful for doing our mouse cursor like force show it when our menu is opened + inline int(CS_STDCALL* fnSetRelativeMouseMode)(int) = nullptr; + inline int(CS_STDCALL* fnSetWindowGrab)(void*, int) = nullptr; + inline int(CS_STDCALL* fnWarpMouseInWindow)(void*, float, float) = nullptr; + inline bool(__fastcall* load_key_value)(CKeyValues3*, void*, const char*, const KV3IVD_t*, const char*); + + inline std::int64_t(__fastcall* fnCreateMaterial)(void*, void*, const char*, void*, unsigned int, unsigned int); +} diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/notify.cpp b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/notify.cpp new file mode 100644 index 0000000..905e832 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/notify.cpp @@ -0,0 +1,144 @@ +#include "notify.h" + +// used: cheat variables +#include "../core/variables.h" +// used: menu::bMainWindowOpened +#include "../core/menu.h" +// used: [resources] font awesome icons definitions +#include "../../resources/font_awesome_5.h" +// used: easingg library +#include "easing.h" + +inline static const float GetTime() noexcept +{ + return static_cast(clock() / 1000.f); +} + +inline static bool IsEmptyOrNullptr(const char* szText) +{ + return szText == nullptr || szText[0] == '\0'; +} + +NOTIFY::NotificationData_t::NotificationData_t(ENotificationType nType, const char* szFormat, ...) : + nType(nType), flCreateionTime(GetTime()), animHandler(&EASING::InQuad, &EASING::OutQuad) +{ + va_list args; + va_start(args, szFormat); + stbsp_vsnprintf(this->szBuffer, sizeof(szBuffer), szFormat, args); + va_end(args); +} + +const Color_t& NOTIFY::NotificationData_t::GetTypeColor() const +{ + switch (nType) + { + case N_TYPE_INFO: + // cyan + return Color_t(0, 255, 255); + case N_TYPE_SUCCESS: + // green + return Color_t(0, 255, 0); + case N_TYPE_WARNING: + // yellow + return Color_t(255, 255, 0); + case N_TYPE_ERROR: + // red + return Color_t(255, 0, 0); + default: + // white + return Color_t(255, 255, 255); + } +} + +const char* NOTIFY::NotificationData_t::Data() const +{ + return this->szBuffer; +} + +const char* NOTIFY::NotificationData_t::GetIcon() const +{ + switch (nType) + { + case N_TYPE_INFO: + return ICON_FA_INFO; + case N_TYPE_SUCCESS: + return ICON_FA_CHECK; + case N_TYPE_WARNING: + return ICON_FA_EXCLAMATION; + case N_TYPE_ERROR: + return ICON_FA_TIMES; + default: + return nullptr; + } +} + +const float NOTIFY::NotificationData_t::GetTimeDelta(const float flCurrentTime) const +{ + return flCurrentTime - this->flCreateionTime; +} + +void NOTIFY::Push(const NotificationData_t& notification) +{ + vecNotifications.push_back(notification); +} + +void NOTIFY::_Remove(size_t nIndex) +{ + vecNotifications.erase(vecNotifications.begin() + nIndex); +} + +void NOTIFY::Render() +{ + if (vecNotifications.empty()) + return; + + ImGuiStyle& style = ImGui::GetStyle(); + ImGuiIO& io = ImGui::GetIO(); + + // padding with menu watermark + float flPaddingY = (MENU::bMainWindowOpened && C_GET(bool, Vars.bWatermark)) ? ImGui::GetFrameHeight() : 0.f; + + for (size_t i = 0U; i < vecNotifications.size(); i++) + { + NotificationData_t* pData = &vecNotifications[i]; + + // shouldn't happen, but maybe it does + if (IsEmptyOrNullptr(pData->Data())) + continue; + + // handling animation + const float flTimeDelta = pData->GetTimeDelta(GetTime()); + pData->animHandler.Update(io.DeltaTime, style.AnimationSpeed); + + if (flTimeDelta >= (_MAX_TIME - 0.25f)) + pData->animHandler.SetSwitch(false); + else if (flTimeDelta <= 0.25f) + pData->animHandler.SetSwitch(true); + + const float flAnimValue = pData->animHandler.GetValue(1.f); + + // if animation is done, remove notification + if (!pData->animHandler.GetSwitch()) + { + _Remove(i); + continue; + } + + // render frame and notification + CRT::String_t<32U> szWindowName(CS_XOR("notification##%d"), i); + ImGui::SetNextWindowPos(ImVec2(style.WindowPadding.x * flAnimValue, flPaddingY * flAnimValue), ImGuiCond_Always); + ImGui::Begin(szWindowName.Data(), nullptr, ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoDecoration | ImGuiWindowFlags_NoBackground | ImGuiWindowFlags_NoInputs | ImGuiWindowFlags_NoNav | ImGuiWindowFlags_NoBringToFrontOnFocus | ImGuiWindowFlags_NoFocusOnAppearing); + { + if (const char* szIcon = pData->GetIcon(); szIcon != nullptr) + { + ImGui::TextColored(pData->GetTypeColor().GetVec4(flAnimValue), szIcon); + ImGui::SameLine(); + } + + ImGui::TextColored(C_GET(ColorPickerVar_t, Vars.colPrimtv0).colValue.GetVec4(flAnimValue), pData->Data()); + + flPaddingY += ImGui::GetWindowHeight(); + } + ImGui::End(); + } +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/notify.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/notify.h new file mode 100644 index 0000000..80e1614 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/notify.h @@ -0,0 +1,75 @@ +#pragma once + +// used: [stl] vector +#include +// used: draw wrapper +#include "draw.h" + +#pragma region notify_definitions +#define NOFITY_TEXT_SIZE 64U // max size of notification text +// @todo: use ImStyle? +#define NOTIFY_ANIMATION_TIME 15.0 // time in ms to show/hide notification +#define NOTIFY_DELETE_TIME 30.0 // time in ms to delete notification +#pragma endregion + +#pragma region notify_enumerations +using NotificationType_t = int; + +enum ENotificationType : NotificationType_t +{ + N_TYPE_DEFAULT = 0, + N_TYPE_INFO, + N_TYPE_SUCCESS, + N_TYPE_WARNING, + N_TYPE_ERROR, + N_TYPE_MAX +}; + +using NotificationState_t = int; + +enum ENotificationState : NotificationState_t +{ + N_STATE_START = 0, + N_STATE_STAY, + N_STATE_END, + N_STATE_EXPIRED, + N_STATE_MAX +}; + +#pragma endregion + +namespace NOTIFY +{ + struct NotificationData_t + { + NotificationData_t(ENotificationType nType, const char* szFormat, ...); + + /// @return color of notification type + const Color_t& GetTypeColor() const; + /// @return c-type string of notification text + const char* Data() const; + /// @return icon of notification type + const char* GetIcon() const; + /// @return time difference between creation and current time + const float GetTimeDelta(const float flCurrentTime) const; + + int nType = 0; + char szBuffer[NOFITY_TEXT_SIZE]; + float flCreateionTime = 0.0; + AnimationHandler_t animHandler = AnimationHandler_t(); + }; + + /* @section: main */ + // push notification to queue + void Push(const NotificationData_t& notification); + // pop notification from queue + void _Remove(size_t nIndex); + // render notifications + void Render(); + + /* @section: values */ + // maximum time to show notification + inline constexpr float _MAX_TIME = 5.f; + // maximum count of notifications + inline std::vector vecNotifications = {}; +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/pe64.h b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/pe64.h new file mode 100644 index 0000000..ae4d50b --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/cstrike/utilities/pe64.h @@ -0,0 +1,592 @@ +#pragma once +// used: [win] winapi +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#include + +#pragma region winapi_nt_types +using NTSTATUS = LONG; +using MEMORY_INFORMATION_CLASS = INT; +#pragma endregion + +#pragma region winapi_nt_definitions +#define NtCurrentProcess() (reinterpret_cast(-1)) +#define NtCurrentThread() (reinterpret_cast(-2)) + +/* + * NT_SUCCESS = [0x00000000 .. 0x3FFFFFFF] + * NT_INFORMATION = [0x40000000 .. 0x7FFFFFFF] + * NT_WARNING = [0x80000000 .. 0xBFFFFFFF] + * NT_ERROR = [0xC0000000 .. 0xFFFFFFFF] + */ +#define NT_SUCCESS(STATUS) (static_cast(STATUS) >= 0) +#define NT_INFORMATION(STATUS) ((static_cast(STATUS) >> 30UL) == 1UL) +#define NT_WARNING(STATUS) ((static_cast(STATUS) >> 30UL) == 2UL) +#define NT_ERROR(STATUS) ((static_cast(STATUS) >> 30UL) == 3UL) +#pragma endregion + +#pragma region winapi_nt + + // @credits: https://www.vergiliusproject.com/kernels/x86/Windows%2010 + +typedef struct _UNICODE_STRING +{ + USHORT Length; // 0x0 + USHORT MaximumLength; // 0x2 + WCHAR* Buffer; // 0x8 +} UNICODE_STRING, * PUNICODE_STRING; + +static_assert(sizeof(_UNICODE_STRING) == 0x10); + +struct _RTL_BALANCED_NODE +{ + union + { + struct _RTL_BALANCED_NODE* Children[2]; //0x0 + + struct + { + struct _RTL_BALANCED_NODE* Left; //0x0 + struct _RTL_BALANCED_NODE* Right; //0x8 + }; + }; + + union + { + struct + { + UCHAR Red : 1; //0x10 + UCHAR Balance : 2; //0x10 + }; + + ULONGLONG ParentValue; //0x10 + }; +}; + +static_assert(sizeof(_RTL_BALANCED_NODE) == 0x18); + +struct _LDR_DATA_TABLE_ENTRY +{ + struct _LIST_ENTRY InLoadOrderLinks; //0x0 + struct _LIST_ENTRY InMemoryOrderLinks; //0x10 + struct _LIST_ENTRY InInitializationOrderLinks; //0x20 + VOID* DllBase; //0x30 + VOID* EntryPoint; //0x38 + ULONG SizeOfImage; //0x40 + struct _UNICODE_STRING FullDllName; //0x48 + struct _UNICODE_STRING BaseDllName; //0x58 + + union + { + UCHAR FlagGroup[4]; //0x68 + ULONG Flags; //0x68 + + struct + { + ULONG PackagedBinary : 1; //0x68 + ULONG MarkedForRemoval : 1; //0x68 + ULONG ImageDll : 1; //0x68 + ULONG LoadNotificationsSent : 1; //0x68 + ULONG TelemetryEntryProcessed : 1; //0x68 + ULONG ProcessStaticImport : 1; //0x68 + ULONG InLegacyLists : 1; //0x68 + ULONG InIndexes : 1; //0x68 + ULONG ShimDll : 1; //0x68 + ULONG InExceptionTable : 1; //0x68 + ULONG ReservedFlags1 : 2; //0x68 + ULONG LoadInProgress : 1; //0x68 + ULONG LoadConfigProcessed : 1; //0x68 + ULONG EntryProcessed : 1; //0x68 + ULONG ProtectDelayLoad : 1; //0x68 + ULONG ReservedFlags3 : 2; //0x68 + ULONG DontCallForThreads : 1; //0x68 + ULONG ProcessAttachCalled : 1; //0x68 + ULONG ProcessAttachFailed : 1; //0x68 + ULONG CorDeferredValidate : 1; //0x68 + ULONG CorImage : 1; //0x68 + ULONG DontRelocate : 1; //0x68 + ULONG CorILOnly : 1; //0x68 + ULONG ChpeImage : 1; //0x68 + ULONG ChpeEmulatorImage : 1; //0x68 + ULONG ReservedFlags5 : 1; //0x68 + ULONG Redirected : 1; //0x68 + ULONG ReservedFlags6 : 2; //0x68 + ULONG CompatDatabaseProcessed : 1; //0x68 + }; + }; + + USHORT ObsoleteLoadCount; //0x6c + USHORT TlsIndex; //0x6e + struct _LIST_ENTRY HashLinks; //0x70 + ULONG TimeDateStamp; //0x80 + struct _ACTIVATION_CONTEXT* EntryPointActivationContext; //0x88 + VOID* Lock; //0x90 + struct _LDR_DDAG_NODE* DdagNode; //0x98 + struct _LIST_ENTRY NodeModuleLink; //0xa0 + struct _LDRP_LOAD_CONTEXT* LoadContext; //0xb0 + VOID* ParentDllBase; //0xb8 + VOID* SwitchBackContext; //0xc0 + _RTL_BALANCED_NODE BaseAddressIndexNode; //0xc8 + _RTL_BALANCED_NODE MappingInfoIndexNode; //0xe0 + ULONGLONG OriginalBase; //0xf8 + union _LARGE_INTEGER LoadTime; //0x100 + ULONG BaseNameHashValue; //0x108 + enum _LDR_DLL_LOAD_REASON LoadReason; //0x10c + ULONG ImplicitPathOptions; //0x110 + ULONG ReferenceCount; //0x114 + ULONG DependentLoadFlags; //0x118 + UCHAR SigningLevel; //0x11c + ULONG CheckSum; //0x120 + VOID* ActivePatchImageBase; //0x128 + enum _LDR_HOT_PATCH_STATE HotPatchState; //0x130 +}; + +static_assert(sizeof(_LDR_DATA_TABLE_ENTRY) == 0x138); + +struct _PEB_LDR_DATA +{ + ULONG Length; //0x0 + UCHAR Initialized; //0x4 + VOID* SsHandle; //0x8 + struct _LIST_ENTRY InLoadOrderModuleList; //0x10 + struct _LIST_ENTRY InMemoryOrderModuleList; //0x20 + struct _LIST_ENTRY InInitializationOrderModuleList; //0x30 + VOID* EntryInProgress; //0x40 + UCHAR ShutdownInProgress; //0x48 + VOID* ShutdownThreadId; //0x50 +}; + +static_assert(sizeof(_PEB_LDR_DATA) == 0x58); + +struct _CURDIR +{ + struct _UNICODE_STRING DosPath; //0x0 + VOID* Handle; //0x10 +}; + +static_assert(sizeof(_CURDIR) == 0x18); + +struct _STRING +{ + USHORT Length; //0x0 + USHORT MaximumLength; //0x2 + CHAR* Buffer; //0x8 +}; + +static_assert(sizeof(_STRING) == 0x10); + +struct _RTL_DRIVE_LETTER_CURDIR +{ + USHORT Flags; //0x0 + USHORT Length; //0x2 + ULONG TimeStamp; //0x4 + struct _STRING DosPath; //0x8 +}; + +static_assert(sizeof(_RTL_DRIVE_LETTER_CURDIR) == 0x18); + +struct _RTL_USER_PROCESS_PARAMETERS +{ + ULONG MaximumLength; //0x0 + ULONG Length; //0x4 + ULONG Flags; //0x8 + ULONG DebugFlags; //0xc + VOID* ConsoleHandle; //0x10 + ULONG ConsoleFlags; //0x18 + VOID* StandardInput; //0x20 + VOID* StandardOutput; //0x28 + VOID* StandardError; //0x30 + struct _CURDIR CurrentDirectory; //0x38 + struct _UNICODE_STRING DllPath; //0x50 + struct _UNICODE_STRING ImagePathName; //0x60 + struct _UNICODE_STRING CommandLine; //0x70 + VOID* Environment; //0x80 + ULONG StartingX; //0x88 + ULONG StartingY; //0x8c + ULONG CountX; //0x90 + ULONG CountY; //0x94 + ULONG CountCharsX; //0x98 + ULONG CountCharsY; //0x9c + ULONG FillAttribute; //0xa0 + ULONG WindowFlags; //0xa4 + ULONG ShowWindowFlags; //0xa8 + struct _UNICODE_STRING WindowTitle; //0xb0 + struct _UNICODE_STRING DesktopInfo; //0xc0 + struct _UNICODE_STRING ShellInfo; //0xd0 + struct _UNICODE_STRING RuntimeData; //0xe0 + struct _RTL_DRIVE_LETTER_CURDIR CurrentDirectores[32]; //0xf0 + ULONGLONG EnvironmentSize; //0x3f0 + ULONGLONG EnvironmentVersion; //0x3f8 + VOID* PackageDependencyData; //0x400 + ULONG ProcessGroupId; //0x408 + ULONG LoaderThreads; //0x40c + struct _UNICODE_STRING RedirectionDllName; //0x410 + struct _UNICODE_STRING HeapPartitionName; //0x420 + ULONGLONG* DefaultThreadpoolCpuSetMasks; //0x430 + ULONG DefaultThreadpoolCpuSetMaskCount; //0x438 + ULONG DefaultThreadpoolThreadMaximum; //0x43c + ULONG HeapMemoryTypeMask; //0x440 +}; + +static_assert(sizeof(_RTL_USER_PROCESS_PARAMETERS) == 0x448); + +struct _PEB +{ + UCHAR InheritedAddressSpace; //0x0 + UCHAR ReadImageFileExecOptions; //0x1 + UCHAR BeingDebugged; //0x2 + + union + { + UCHAR BitField; //0x3 + + struct + { + UCHAR ImageUsesLargePages : 1; //0x3 + UCHAR IsProtectedProcess : 1; //0x3 + UCHAR IsImageDynamicallyRelocated : 1; //0x3 + UCHAR SkipPatchingUser32Forwarders : 1; //0x3 + UCHAR IsPackagedProcess : 1; //0x3 + UCHAR IsAppContainer : 1; //0x3 + UCHAR IsProtectedProcessLight : 1; //0x3 + UCHAR IsLongPathAwareProcess : 1; //0x3 + }; + }; + + UCHAR Padding0[4]; //0x4 + VOID* Mutant; //0x8 + VOID* ImageBaseAddress; //0x10 + struct _PEB_LDR_DATA* Ldr; //0x18 + struct _RTL_USER_PROCESS_PARAMETERS* ProcessParameters; //0x20 + VOID* SubSystemData; //0x28 + VOID* ProcessHeap; //0x30 + struct _RTL_CRITICAL_SECTION* FastPebLock; //0x38 + union _SLIST_HEADER* volatile AtlThunkSListPtr; //0x40 + VOID* IFEOKey; //0x48 + + union + { + ULONG CrossProcessFlags; //0x50 + + struct + { + ULONG ProcessInJob : 1; //0x50 + ULONG ProcessInitializing : 1; //0x50 + ULONG ProcessUsingVEH : 1; //0x50 + ULONG ProcessUsingVCH : 1; //0x50 + ULONG ProcessUsingFTH : 1; //0x50 + ULONG ProcessPreviouslyThrottled : 1; //0x50 + ULONG ProcessCurrentlyThrottled : 1; //0x50 + ULONG ProcessImagesHotPatched : 1; //0x50 + ULONG ReservedBits0 : 24; //0x50 + }; + }; + + UCHAR Padding1[4]; //0x54 + + union + { + VOID* KernelCallbackTable; //0x58 + VOID* UserSharedInfoPtr; //0x58 + }; + + ULONG SystemReserved; //0x60 + ULONG AtlThunkSListPtr32; //0x64 + VOID* ApiSetMap; //0x68 + ULONG TlsExpansionCounter; //0x70 + UCHAR Padding2[4]; //0x74 + struct _RTL_BITMAP* TlsBitmap; //0x78 + ULONG TlsBitmapBits[2]; //0x80 + VOID* ReadOnlySharedMemoryBase; //0x88 + VOID* SharedData; //0x90 + VOID** ReadOnlyStaticServerData; //0x98 + VOID* AnsiCodePageData; //0xa0 + VOID* OemCodePageData; //0xa8 + VOID* UnicodeCaseTableData; //0xb0 + ULONG NumberOfProcessors; //0xb8 + ULONG NtGlobalFlag; //0xbc + union _LARGE_INTEGER CriticalSectionTimeout; //0xc0 + ULONGLONG HeapSegmentReserve; //0xc8 + ULONGLONG HeapSegmentCommit; //0xd0 + ULONGLONG HeapDeCommitTotalFreeThreshold; //0xd8 + ULONGLONG HeapDeCommitFreeBlockThreshold; //0xe0 + ULONG NumberOfHeaps; //0xe8 + ULONG MaximumNumberOfHeaps; //0xec + VOID** ProcessHeaps; //0xf0 + VOID* GdiSharedHandleTable; //0xf8 + VOID* ProcessStarterHelper; //0x100 + ULONG GdiDCAttributeList; //0x108 + UCHAR Padding3[4]; //0x10c + struct _RTL_CRITICAL_SECTION* LoaderLock; //0x110 + ULONG OSMajorVersion; //0x118 + ULONG OSMinorVersion; //0x11c + USHORT OSBuildNumber; //0x120 + USHORT OSCSDVersion; //0x122 + ULONG OSPlatformId; //0x124 + ULONG ImageSubsystem; //0x128 + ULONG ImageSubsystemMajorVersion; //0x12c + ULONG ImageSubsystemMinorVersion; //0x130 + UCHAR Padding4[4]; //0x134 + ULONGLONG ActiveProcessAffinityMask; //0x138 + ULONG GdiHandleBuffer[60]; //0x140 + VOID(*PostProcessInitRoutine) + (); //0x230 + struct _RTL_BITMAP* TlsExpansionBitmap; //0x238 + ULONG TlsExpansionBitmapBits[32]; //0x240 + ULONG SessionId; //0x2c0 + UCHAR Padding5[4]; //0x2c4 + union _ULARGE_INTEGER AppCompatFlags; //0x2c8 + union _ULARGE_INTEGER AppCompatFlagsUser; //0x2d0 + VOID* pShimData; //0x2d8 + VOID* AppCompatInfo; //0x2e0 + struct _UNICODE_STRING CSDVersion; //0x2e8 + struct _ACTIVATION_CONTEXT_DATA* ActivationContextData; //0x2f8 + struct _ASSEMBLY_STORAGE_MAP* ProcessAssemblyStorageMap; //0x300 + struct _ACTIVATION_CONTEXT_DATA* SystemDefaultActivationContextData; //0x308 + struct _ASSEMBLY_STORAGE_MAP* SystemAssemblyStorageMap; //0x310 + ULONGLONG MinimumStackCommit; //0x318 + VOID* SparePointers[2]; //0x320 + VOID* PatchLoaderData; //0x330 + struct _CHPEV2_PROCESS_INFO* ChpeV2ProcessInfo; //0x338 + ULONG AppModelFeatureState; //0x340 + ULONG SpareUlongs[2]; //0x344 + USHORT ActiveCodePage; //0x34c + USHORT OemCodePage; //0x34e + USHORT UseCaseMapping; //0x350 + USHORT UnusedNlsField; //0x352 + VOID* WerRegistrationData; //0x358 + VOID* WerShipAssertPtr; //0x360 + VOID* EcCodeBitMap; //0x368 + VOID* pImageHeaderHash; //0x370 + + union + { + ULONG TracingFlags; //0x378 + + struct + { + ULONG HeapTracingEnabled : 1; //0x378 + ULONG CritSecTracingEnabled : 1; //0x378 + ULONG LibLoaderTracingEnabled : 1; //0x378 + ULONG SpareTracingBits : 29; //0x378 + }; + }; + + UCHAR Padding6[4]; //0x37c + ULONGLONG CsrServerReadOnlySharedMemoryBase; //0x380 + ULONGLONG TppWorkerpListLock; //0x388 + struct _LIST_ENTRY TppWorkerpList; //0x390 + VOID* WaitOnAddressHashTable[128]; //0x3a0 + VOID* TelemetryCoverageHeader; //0x7a0 + ULONG CloudFileFlags; //0x7a8 + ULONG CloudFileDiagFlags; //0x7ac + CHAR PlaceholderCompatibilityMode; //0x7b0 + CHAR PlaceholderCompatibilityModeReserved[7]; //0x7b1 + struct _LEAP_SECOND_DATA* LeapSecondData; //0x7b8 + + union + { + ULONG LeapSecondFlags; //0x7c0 + + struct + { + ULONG SixtySecondEnabled : 1; //0x7c0 + ULONG Reserved : 31; //0x7c0 + }; + }; + + ULONG NtGlobalFlag2; //0x7c4 + ULONGLONG ExtendedFeatureDisableMask; //0x7c8 +}; + +static_assert(sizeof(_PEB) == 0x7d0); + +struct _CLIENT_ID +{ + PVOID UniqueProcess; // 0x0 + PVOID UniqueThread; // 0x8 +}; + +static_assert(sizeof(_CLIENT_ID) == 0x10); + +struct _GDI_TEB_BATCH +{ + ULONG Offset : 31; //0x0 + ULONG HasRenderingCommand : 1; //0x0 + ULONGLONG HDC; //0x8 + ULONG Buffer[310]; //0x10 +}; + +static_assert(sizeof(_GDI_TEB_BATCH) == 0x4E8); + +struct _ACTIVATION_CONTEXT_STACK +{ + struct _RTL_ACTIVATION_CONTEXT_STACK_FRAME* ActiveFrame; //0x0 + struct _LIST_ENTRY FrameListCache; //0x8 + ULONG Flags; //0x18 + ULONG NextCookieSequenceNumber; //0x1c + ULONG StackId; //0x20 +}; + +static_assert(sizeof(_ACTIVATION_CONTEXT_STACK) == 0x28); + +struct _TEB +{ + struct _NT_TIB NtTib; //0x0 + VOID* EnvironmentPointer; //0x38 + struct _CLIENT_ID ClientId; //0x40 + VOID* ActiveRpcHandle; //0x50 + VOID* ThreadLocalStoragePointer; //0x58 + struct _PEB* ProcessEnvironmentBlock; //0x60 + ULONG LastErrorValue; //0x68 + ULONG CountOfOwnedCriticalSections; //0x6c + VOID* CsrClientThread; //0x70 + VOID* Win32ThreadInfo; //0x78 + ULONG User32Reserved[26]; //0x80 + ULONG UserReserved[5]; //0xe8 + VOID* WOW32Reserved; //0x100 + ULONG CurrentLocale; //0x108 + ULONG FpSoftwareStatusRegister; //0x10c + VOID* ReservedForDebuggerInstrumentation[16]; //0x110 + VOID* SystemReserved1[30]; //0x190 + CHAR PlaceholderCompatibilityMode; //0x280 + UCHAR PlaceholderHydrationAlwaysExplicit; //0x281 + CHAR PlaceholderReserved[10]; //0x282 + ULONG ProxiedProcessId; //0x28c + struct _ACTIVATION_CONTEXT_STACK _ActivationStack; //0x290 + UCHAR WorkingOnBehalfTicket[8]; //0x2b8 + LONG ExceptionCode; //0x2c0 + UCHAR Padding0[4]; //0x2c4 + struct _ACTIVATION_CONTEXT_STACK* ActivationContextStackPointer; //0x2c8 + ULONGLONG InstrumentationCallbackSp; //0x2d0 + ULONGLONG InstrumentationCallbackPreviousPc; //0x2d8 + ULONGLONG InstrumentationCallbackPreviousSp; //0x2e0 + ULONG TxFsContext; //0x2e8 + UCHAR InstrumentationCallbackDisabled; //0x2ec + UCHAR UnalignedLoadStoreExceptions; //0x2ed + UCHAR Padding1[2]; //0x2ee + struct _GDI_TEB_BATCH GdiTebBatch; //0x2f0 + struct _CLIENT_ID RealClientId; //0x7d8 + VOID* GdiCachedProcessHandle; //0x7e8 + ULONG GdiClientPID; //0x7f0 + ULONG GdiClientTID; //0x7f4 + VOID* GdiThreadLocalInfo; //0x7f8 + ULONGLONG Win32ClientInfo[62]; //0x800 + VOID* glDispatchTable[233]; //0x9f0 + ULONGLONG glReserved1[29]; //0x1138 + VOID* glReserved2; //0x1220 + VOID* glSectionInfo; //0x1228 + VOID* glSection; //0x1230 + VOID* glTable; //0x1238 + VOID* glCurrentRC; //0x1240 + VOID* glContext; //0x1248 + ULONG LastStatusValue; //0x1250 + UCHAR Padding2[4]; //0x1254 + struct _UNICODE_STRING StaticUnicodeString; //0x1258 + WCHAR StaticUnicodeBuffer[261]; //0x1268 + UCHAR Padding3[6]; //0x1472 + VOID* DeallocationStack; //0x1478 + VOID* TlsSlots[64]; //0x1480 + struct _LIST_ENTRY TlsLinks; //0x1680 + VOID* Vdm; //0x1690 + VOID* ReservedForNtRpc; //0x1698 + VOID* DbgSsReserved[2]; //0x16a0 + ULONG HardErrorMode; //0x16b0 + UCHAR Padding4[4]; //0x16b4 + VOID* Instrumentation[11]; //0x16b8 + struct _GUID ActivityId; //0x1710 + VOID* SubProcessTag; //0x1720 + VOID* PerflibData; //0x1728 + VOID* EtwTraceData; //0x1730 + VOID* WinSockData; //0x1738 + ULONG GdiBatchCount; //0x1740 + + union + { + struct _PROCESSOR_NUMBER CurrentIdealProcessor; //0x1744 + ULONG IdealProcessorValue; //0x1744 + + struct + { + UCHAR ReservedPad0; //0x1744 + UCHAR ReservedPad1; //0x1745 + UCHAR ReservedPad2; //0x1746 + UCHAR IdealProcessor; //0x1747 + }; + }; + + ULONG GuaranteedStackBytes; //0x1748 + UCHAR Padding5[4]; //0x174c + VOID* ReservedForPerf; //0x1750 + VOID* ReservedForOle; //0x1758 + ULONG WaitingOnLoaderLock; //0x1760 + UCHAR Padding6[4]; //0x1764 + VOID* SavedPriorityState; //0x1768 + ULONGLONG ReservedForCodeCoverage; //0x1770 + VOID* ThreadPoolData; //0x1778 + VOID** TlsExpansionSlots; //0x1780 + struct _CHPEV2_CPUAREA_INFO* ChpeV2CpuAreaInfo; //0x1788 + VOID* Unused; //0x1790 + ULONG MuiGeneration; //0x1798 + ULONG IsImpersonating; //0x179c + VOID* NlsCache; //0x17a0 + VOID* pShimData; //0x17a8 + ULONG HeapData; //0x17b0 + UCHAR Padding7[4]; //0x17b4 + VOID* CurrentTransactionHandle; //0x17b8 + struct _TEB_ACTIVE_FRAME* ActiveFrame; //0x17c0 + VOID* FlsData; //0x17c8 + VOID* PreferredLanguages; //0x17d0 + VOID* UserPrefLanguages; //0x17d8 + VOID* MergedPrefLanguages; //0x17e0 + ULONG MuiImpersonation; //0x17e8 + + union + { + volatile USHORT CrossTebFlags; //0x17ec + USHORT SpareCrossTebBits : 16; //0x17ec + }; + + union + { + USHORT SameTebFlags; //0x17ee + + struct + { + USHORT SafeThunkCall : 1; //0x17ee + USHORT InDebugPrint : 1; //0x17ee + USHORT HasFiberData : 1; //0x17ee + USHORT SkipThreadAttach : 1; //0x17ee + USHORT WerInShipAssertCode : 1; //0x17ee + USHORT RanProcessInit : 1; //0x17ee + USHORT ClonedThread : 1; //0x17ee + USHORT SuppressDebugMsg : 1; //0x17ee + USHORT DisableUserStackWalk : 1; //0x17ee + USHORT RtlExceptionAttached : 1; //0x17ee + USHORT InitialThread : 1; //0x17ee + USHORT SessionAware : 1; //0x17ee + USHORT LoadOwner : 1; //0x17ee + USHORT LoaderWorker : 1; //0x17ee + USHORT SkipLoaderInit : 1; //0x17ee + USHORT SkipFileAPIBrokering : 1; //0x17ee + }; + }; + + VOID* TxnScopeEnterCallback; //0x17f0 + VOID* TxnScopeExitCallback; //0x17f8 + VOID* TxnScopeContext; //0x1800 + ULONG LockCount; //0x1808 + LONG WowTebOffset; //0x180c + VOID* ResourceRetValue; //0x1810 + VOID* ReservedForWdf; //0x1818 + ULONGLONG ReservedForCrt; //0x1820 + struct _GUID EffectiveContainerId; //0x1828 + ULONGLONG LastSleepCounter; //0x1838 + ULONG SpinCallCount; //0x1840 + UCHAR Padding8[4]; //0x1844 + ULONGLONG ExtendedFeatureDisableMask; //0x1848 +}; + +static_assert(sizeof(_TEB) == 0x1850); +#pragma endregion \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/binary/freetype.lib b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/binary/freetype.lib new file mode 100644 index 0000000..fbf9271 Binary files /dev/null and b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/binary/freetype.lib differ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/binary/freetype_debug.lib b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/binary/freetype_debug.lib new file mode 100644 index 0000000..2374012 Binary files /dev/null and b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/binary/freetype_debug.lib differ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/config/ftconfig.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/config/ftconfig.h new file mode 100644 index 0000000..9466603 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/config/ftconfig.h @@ -0,0 +1,575 @@ +/**************************************************************************** + * + * ftconfig.h + * + * ANSI-specific configuration file (specification only). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * This header file contains a number of macro definitions that are used by + * the rest of the engine. Most of the macros here are automatically + * determined at compile time, and you should not need to change it to port + * FreeType, except to compile the library with a non-ANSI compiler. + * + * Note however that if some specific modifications are needed, we advise + * you to place a modified copy in your build directory. + * + * The build directory is usually `builds/`, and contains + * system-specific files that are always included first when building the + * library. + * + * This ANSI version should stay in `include/config/`. + * + */ + +#ifndef FTCONFIG_H_ +#define FTCONFIG_H_ + +#include +#include FT_CONFIG_OPTIONS_H +#include FT_CONFIG_STANDARD_LIBRARY_H + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * PLATFORM-SPECIFIC CONFIGURATION MACROS + * + * These macros can be toggled to suit a specific system. The current ones + * are defaults used to compile FreeType in an ANSI C environment (16bit + * compilers are also supported). Copy this file to your own + * `builds/` directory, and edit it to port the engine. + * + */ + + + /* There are systems (like the Texas Instruments 'C54x) where a `char` */ + /* has 16~bits. ANSI~C says that `sizeof(char)` is always~1. Since an */ + /* `int` has 16~bits also for this system, `sizeof(int)` gives~1 which */ + /* is probably unexpected. */ + /* */ + /* `CHAR_BIT` (defined in `limits.h`) gives the number of bits in a */ + /* `char` type. */ + +#ifndef FT_CHAR_BIT +#define FT_CHAR_BIT CHAR_BIT +#endif + + + /* The size of an `int` type. */ +#if FT_UINT_MAX == 0xFFFFUL +#define FT_SIZEOF_INT ( 16 / FT_CHAR_BIT ) +#elif FT_UINT_MAX == 0xFFFFFFFFUL +#define FT_SIZEOF_INT ( 32 / FT_CHAR_BIT ) +#elif FT_UINT_MAX > 0xFFFFFFFFUL && FT_UINT_MAX == 0xFFFFFFFFFFFFFFFFUL +#define FT_SIZEOF_INT ( 64 / FT_CHAR_BIT ) +#else +#error "Unsupported size of `int' type!" +#endif + + /* The size of a `long` type. A five-byte `long` (as used e.g. on the */ + /* DM642) is recognized but avoided. */ +#if FT_ULONG_MAX == 0xFFFFFFFFUL +#define FT_SIZEOF_LONG ( 32 / FT_CHAR_BIT ) +#elif FT_ULONG_MAX > 0xFFFFFFFFUL && FT_ULONG_MAX == 0xFFFFFFFFFFUL +#define FT_SIZEOF_LONG ( 32 / FT_CHAR_BIT ) +#elif FT_ULONG_MAX > 0xFFFFFFFFUL && FT_ULONG_MAX == 0xFFFFFFFFFFFFFFFFUL +#define FT_SIZEOF_LONG ( 64 / FT_CHAR_BIT ) +#else +#error "Unsupported size of `long' type!" +#endif + + + /* `FT_UNUSED` indicates that a given parameter is not used -- */ + /* this is only used to get rid of unpleasant compiler warnings. */ +#ifndef FT_UNUSED +#define FT_UNUSED( arg ) ( (arg) = (arg) ) +#endif + + + /************************************************************************** + * + * AUTOMATIC CONFIGURATION MACROS + * + * These macros are computed from the ones defined above. Don't touch + * their definition, unless you know precisely what you are doing. No + * porter should need to mess with them. + * + */ + + + /************************************************************************** + * + * Mac support + * + * This is the only necessary change, so it is defined here instead + * providing a new configuration file. + */ +#if defined( __APPLE__ ) || ( defined( __MWERKS__ ) && defined( macintosh ) ) + /* No Carbon frameworks for 64bit 10.4.x. */ + /* `AvailabilityMacros.h` is available since Mac OS X 10.2, */ + /* so guess the system version by maximum errno before inclusion. */ +#include +#ifdef ECANCELED /* defined since 10.2 */ +#include "AvailabilityMacros.h" +#endif +#if defined( __LP64__ ) && \ + ( MAC_OS_X_VERSION_MIN_REQUIRED <= MAC_OS_X_VERSION_10_4 ) +#undef FT_MACINTOSH +#endif + +#elif defined( __SC__ ) || defined( __MRC__ ) + /* Classic MacOS compilers */ +#include "ConditionalMacros.h" +#if TARGET_OS_MAC +#define FT_MACINTOSH 1 +#endif + +#endif + + + /* Fix compiler warning with sgi compiler. */ +#if defined( __sgi ) && !defined( __GNUC__ ) +#if defined( _COMPILER_VERSION ) && ( _COMPILER_VERSION >= 730 ) +#pragma set woff 3505 +#endif +#endif + + + /************************************************************************** + * + * @section: + * basic_types + * + */ + + + /************************************************************************** + * + * @type: + * FT_Int16 + * + * @description: + * A typedef for a 16bit signed integer type. + */ + typedef signed short FT_Int16; + + + /************************************************************************** + * + * @type: + * FT_UInt16 + * + * @description: + * A typedef for a 16bit unsigned integer type. + */ + typedef unsigned short FT_UInt16; + + /* */ + + + /* this #if 0 ... #endif clause is for documentation purposes */ +#if 0 + + /************************************************************************** + * + * @type: + * FT_Int32 + * + * @description: + * A typedef for a 32bit signed integer type. The size depends on the + * configuration. + */ + typedef signed XXX FT_Int32; + + + /************************************************************************** + * + * @type: + * FT_UInt32 + * + * A typedef for a 32bit unsigned integer type. The size depends on the + * configuration. + */ + typedef unsigned XXX FT_UInt32; + + + /************************************************************************** + * + * @type: + * FT_Int64 + * + * A typedef for a 64bit signed integer type. The size depends on the + * configuration. Only defined if there is real 64bit support; + * otherwise, it gets emulated with a structure (if necessary). + */ + typedef signed XXX FT_Int64; + + + /************************************************************************** + * + * @type: + * FT_UInt64 + * + * A typedef for a 64bit unsigned integer type. The size depends on the + * configuration. Only defined if there is real 64bit support; + * otherwise, it gets emulated with a structure (if necessary). + */ + typedef unsigned XXX FT_UInt64; + + /* */ + +#endif + +#if FT_SIZEOF_INT == ( 32 / FT_CHAR_BIT ) + + typedef signed int FT_Int32; + typedef unsigned int FT_UInt32; + +#elif FT_SIZEOF_LONG == ( 32 / FT_CHAR_BIT ) + + typedef signed long FT_Int32; + typedef unsigned long FT_UInt32; + +#else +#error "no 32bit type found -- please check your configuration files" +#endif + + + /* look up an integer type that is at least 32~bits */ +#if FT_SIZEOF_INT >= ( 32 / FT_CHAR_BIT ) + + typedef int FT_Fast; + typedef unsigned int FT_UFast; + +#elif FT_SIZEOF_LONG >= ( 32 / FT_CHAR_BIT ) + + typedef long FT_Fast; + typedef unsigned long FT_UFast; + +#endif + + + /* determine whether we have a 64-bit `int` type for platforms without */ + /* Autoconf */ +#if FT_SIZEOF_LONG == ( 64 / FT_CHAR_BIT ) + + /* `FT_LONG64` must be defined if a 64-bit type is available */ +#define FT_LONG64 +#define FT_INT64 long +#define FT_UINT64 unsigned long + + /************************************************************************** + * + * A 64-bit data type may create compilation problems if you compile in + * strict ANSI mode. To avoid them, we disable other 64-bit data types if + * `__STDC__` is defined. You can however ignore this rule by defining the + * `FT_CONFIG_OPTION_FORCE_INT64` configuration macro. + */ +#elif !defined( __STDC__ ) || defined( FT_CONFIG_OPTION_FORCE_INT64 ) + +#if defined( __STDC_VERSION__ ) && __STDC_VERSION__ >= 199901L + +#define FT_LONG64 +#define FT_INT64 long long int +#define FT_UINT64 unsigned long long int + +#elif defined( _MSC_VER ) && _MSC_VER >= 900 /* Visual C++ (and Intel C++) */ + + /* this compiler provides the `__int64` type */ +#define FT_LONG64 +#define FT_INT64 __int64 +#define FT_UINT64 unsigned __int64 + +#elif defined( __BORLANDC__ ) /* Borland C++ */ + + /* XXXX: We should probably check the value of `__BORLANDC__` in order */ + /* to test the compiler version. */ + + /* this compiler provides the `__int64` type */ +#define FT_LONG64 +#define FT_INT64 __int64 +#define FT_UINT64 unsigned __int64 + +#elif defined( __WATCOMC__ ) /* Watcom C++ */ + + /* Watcom doesn't provide 64-bit data types */ + +#elif defined( __MWERKS__ ) /* Metrowerks CodeWarrior */ + +#define FT_LONG64 +#define FT_INT64 long long int +#define FT_UINT64 unsigned long long int + +#elif defined( __GNUC__ ) + + /* GCC provides the `long long` type */ +#define FT_LONG64 +#define FT_INT64 long long int +#define FT_UINT64 unsigned long long int + +#endif /* __STDC_VERSION__ >= 199901L */ + +#endif /* FT_SIZEOF_LONG == (64 / FT_CHAR_BIT) */ + +#ifdef FT_LONG64 + typedef FT_INT64 FT_Int64; + typedef FT_UINT64 FT_UInt64; +#endif + + +#ifdef _WIN64 + /* only 64bit Windows uses the LLP64 data model, i.e., */ + /* 32bit integers, 64bit pointers */ +#define FT_UINT_TO_POINTER( x ) (void*)(unsigned __int64)(x) +#else +#define FT_UINT_TO_POINTER( x ) (void*)(unsigned long)(x) +#endif + + + /************************************************************************** + * + * miscellaneous + * + */ + + +#define FT_BEGIN_STMNT do { +#define FT_END_STMNT } while ( 0 ) +#define FT_DUMMY_STMNT FT_BEGIN_STMNT FT_END_STMNT + + + /* `typeof` condition taken from gnulib's `intprops.h` header file */ +#if ( ( defined( __GNUC__ ) && __GNUC__ >= 2 ) || \ + ( defined( __IBMC__ ) && __IBMC__ >= 1210 && \ + defined( __IBM__TYPEOF__ ) ) || \ + ( defined( __SUNPRO_C ) && __SUNPRO_C >= 0x5110 && !__STDC__ ) ) +#define FT_TYPEOF( type ) ( __typeof__ ( type ) ) +#else +#define FT_TYPEOF( type ) /* empty */ +#endif + + + /* Use `FT_LOCAL` and `FT_LOCAL_DEF` to declare and define, */ + /* respectively, a function that gets used only within the scope of a */ + /* module. Normally, both the header and source code files for such a */ + /* function are within a single module directory. */ + /* */ + /* Intra-module arrays should be tagged with `FT_LOCAL_ARRAY` and */ + /* `FT_LOCAL_ARRAY_DEF`. */ + /* */ +#ifdef FT_MAKE_OPTION_SINGLE_OBJECT + +#define FT_LOCAL( x ) static x +#define FT_LOCAL_DEF( x ) static x + +#else + +#ifdef __cplusplus +#define FT_LOCAL( x ) extern "C" x +#define FT_LOCAL_DEF( x ) extern "C" x +#else +#define FT_LOCAL( x ) extern x +#define FT_LOCAL_DEF( x ) x +#endif + +#endif /* FT_MAKE_OPTION_SINGLE_OBJECT */ + +#define FT_LOCAL_ARRAY( x ) extern const x +#define FT_LOCAL_ARRAY_DEF( x ) const x + + + /* Use `FT_BASE` and `FT_BASE_DEF` to declare and define, respectively, */ + /* functions that are used in more than a single module. In the */ + /* current setup this implies that the declaration is in a header file */ + /* in the `include/freetype/internal` directory, and the function body */ + /* is in a file in `src/base`. */ + /* */ +#ifndef FT_BASE + +#ifdef __cplusplus +#define FT_BASE( x ) extern "C" x +#else +#define FT_BASE( x ) extern x +#endif + +#endif /* !FT_BASE */ + + +#ifndef FT_BASE_DEF + +#ifdef __cplusplus +#define FT_BASE_DEF( x ) x +#else +#define FT_BASE_DEF( x ) x +#endif + +#endif /* !FT_BASE_DEF */ + + + /* When compiling FreeType as a DLL or DSO with hidden visibility */ + /* some systems/compilers need a special attribute in front OR after */ + /* the return type of function declarations. */ + /* */ + /* Two macros are used within the FreeType source code to define */ + /* exported library functions: `FT_EXPORT` and `FT_EXPORT_DEF`. */ + /* */ + /* - `FT_EXPORT( return_type )` */ + /* */ + /* is used in a function declaration, as in */ + /* */ + /* ``` */ + /* FT_EXPORT( FT_Error ) */ + /* FT_Init_FreeType( FT_Library* alibrary ); */ + /* ``` */ + /* */ + /* - `FT_EXPORT_DEF( return_type )` */ + /* */ + /* is used in a function definition, as in */ + /* */ + /* ``` */ + /* FT_EXPORT_DEF( FT_Error ) */ + /* FT_Init_FreeType( FT_Library* alibrary ) */ + /* { */ + /* ... some code ... */ + /* return FT_Err_Ok; */ + /* } */ + /* ``` */ + /* */ + /* You can provide your own implementation of `FT_EXPORT` and */ + /* `FT_EXPORT_DEF` here if you want. */ + /* */ + /* To export a variable, use `FT_EXPORT_VAR`. */ + /* */ +#ifndef FT_EXPORT + +#ifdef FT2_BUILD_LIBRARY + +#if defined( _WIN32 ) && defined( DLL_EXPORT ) +#define FT_EXPORT( x ) __declspec( dllexport ) x +#elif defined( __GNUC__ ) && __GNUC__ >= 4 +#define FT_EXPORT( x ) __attribute__(( visibility( "default" ) )) x +#elif defined( __SUNPRO_C ) && __SUNPRO_C >= 0x550 +#define FT_EXPORT( x ) __global x +#elif defined( __cplusplus ) +#define FT_EXPORT( x ) extern "C" x +#else +#define FT_EXPORT( x ) extern x +#endif + +#else + +#if defined( _WIN32 ) && defined( DLL_IMPORT ) +#define FT_EXPORT( x ) __declspec( dllimport ) x +#elif defined( __cplusplus ) +#define FT_EXPORT( x ) extern "C" x +#else +#define FT_EXPORT( x ) extern x +#endif + +#endif + +#endif /* !FT_EXPORT */ + + +#ifndef FT_EXPORT_DEF + +#ifdef __cplusplus +#define FT_EXPORT_DEF( x ) extern "C" x +#else +#define FT_EXPORT_DEF( x ) extern x +#endif + +#endif /* !FT_EXPORT_DEF */ + + +#ifndef FT_EXPORT_VAR + +#ifdef __cplusplus +#define FT_EXPORT_VAR( x ) extern "C" x +#else +#define FT_EXPORT_VAR( x ) extern x +#endif + +#endif /* !FT_EXPORT_VAR */ + + + /* The following macros are needed to compile the library with a */ + /* C++ compiler and with 16bit compilers. */ + /* */ + + /* This is special. Within C++, you must specify `extern "C"` for */ + /* functions which are used via function pointers, and you also */ + /* must do that for structures which contain function pointers to */ + /* assure C linkage -- it's not possible to have (local) anonymous */ + /* functions which are accessed by (global) function pointers. */ + /* */ + /* */ + /* FT_CALLBACK_DEF is used to _define_ a callback function, */ + /* located in the same source code file as the structure that uses */ + /* it. */ + /* */ + /* FT_BASE_CALLBACK and FT_BASE_CALLBACK_DEF are used to declare */ + /* and define a callback function, respectively, in a similar way */ + /* as FT_BASE and FT_BASE_DEF work. */ + /* */ + /* FT_CALLBACK_TABLE is used to _declare_ a constant variable that */ + /* contains pointers to callback functions. */ + /* */ + /* FT_CALLBACK_TABLE_DEF is used to _define_ a constant variable */ + /* that contains pointers to callback functions. */ + /* */ + /* */ + /* Some 16bit compilers have to redefine these macros to insert */ + /* the infamous `_cdecl` or `__fastcall` declarations. */ + /* */ +#ifndef FT_CALLBACK_DEF +#ifdef __cplusplus +#define FT_CALLBACK_DEF( x ) extern "C" x +#else +#define FT_CALLBACK_DEF( x ) static x +#endif +#endif /* FT_CALLBACK_DEF */ + +#ifndef FT_BASE_CALLBACK +#ifdef __cplusplus +#define FT_BASE_CALLBACK( x ) extern "C" x +#define FT_BASE_CALLBACK_DEF( x ) extern "C" x +#else +#define FT_BASE_CALLBACK( x ) extern x +#define FT_BASE_CALLBACK_DEF( x ) x +#endif +#endif /* FT_BASE_CALLBACK */ + +#ifndef FT_CALLBACK_TABLE +#ifdef __cplusplus +#define FT_CALLBACK_TABLE extern "C" +#define FT_CALLBACK_TABLE_DEF extern "C" +#else +#define FT_CALLBACK_TABLE extern +#define FT_CALLBACK_TABLE_DEF /* nothing */ +#endif +#endif /* FT_CALLBACK_TABLE */ + + +FT_END_HEADER + + +#endif /* FTCONFIG_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/config/ftheader.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/config/ftheader.h new file mode 100644 index 0000000..696d6ba --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/config/ftheader.h @@ -0,0 +1,814 @@ +/**************************************************************************** + * + * ftheader.h + * + * Build macros of the FreeType 2 library. + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + +#ifndef FTHEADER_H_ +#define FTHEADER_H_ + + + /*@***********************************************************************/ + /* */ + /* */ + /* FT_BEGIN_HEADER */ + /* */ + /* */ + /* This macro is used in association with @FT_END_HEADER in header */ + /* files to ensure that the declarations within are properly */ + /* encapsulated in an `extern "C" { .. }` block when included from a */ + /* C++ compiler. */ + /* */ +#ifdef __cplusplus +#define FT_BEGIN_HEADER extern "C" { +#else +#define FT_BEGIN_HEADER /* nothing */ +#endif + + + /*@***********************************************************************/ + /* */ + /* */ + /* FT_END_HEADER */ + /* */ + /* */ + /* This macro is used in association with @FT_BEGIN_HEADER in header */ + /* files to ensure that the declarations within are properly */ + /* encapsulated in an `extern "C" { .. }` block when included from a */ + /* C++ compiler. */ + /* */ +#ifdef __cplusplus +#define FT_END_HEADER } +#else +#define FT_END_HEADER /* nothing */ +#endif + + + /************************************************************************** + * + * Aliases for the FreeType 2 public and configuration files. + * + */ + + /************************************************************************** + * + * @section: + * header_file_macros + * + * @title: + * Header File Macros + * + * @abstract: + * Macro definitions used to `#include` specific header files. + * + * @description: + * The following macros are defined to the name of specific FreeType~2 + * header files. They can be used directly in `#include` statements as + * in: + * + * ``` + * #include FT_FREETYPE_H + * #include FT_MULTIPLE_MASTERS_H + * #include FT_GLYPH_H + * ``` + * + * There are several reasons why we are now using macros to name public + * header files. The first one is that such macros are not limited to + * the infamous 8.3~naming rule required by DOS (and + * `FT_MULTIPLE_MASTERS_H` is a lot more meaningful than `ftmm.h`). + * + * The second reason is that it allows for more flexibility in the way + * FreeType~2 is installed on a given system. + * + */ + + + /* configuration files */ + + /************************************************************************** + * + * @macro: + * FT_CONFIG_CONFIG_H + * + * @description: + * A macro used in `#include` statements to name the file containing + * FreeType~2 configuration data. + * + */ +#ifndef FT_CONFIG_CONFIG_H +#define FT_CONFIG_CONFIG_H +#endif + + + /************************************************************************** + * + * @macro: + * FT_CONFIG_STANDARD_LIBRARY_H + * + * @description: + * A macro used in `#include` statements to name the file containing + * FreeType~2 interface to the standard C library functions. + * + */ +#ifndef FT_CONFIG_STANDARD_LIBRARY_H +#define FT_CONFIG_STANDARD_LIBRARY_H +#endif + + + /************************************************************************** + * + * @macro: + * FT_CONFIG_OPTIONS_H + * + * @description: + * A macro used in `#include` statements to name the file containing + * FreeType~2 project-specific configuration options. + * + */ +#ifndef FT_CONFIG_OPTIONS_H +#define FT_CONFIG_OPTIONS_H +#endif + + + /************************************************************************** + * + * @macro: + * FT_CONFIG_MODULES_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * list of FreeType~2 modules that are statically linked to new library + * instances in @FT_Init_FreeType. + * + */ +#ifndef FT_CONFIG_MODULES_H +#define FT_CONFIG_MODULES_H +#endif + + /* */ + + /* public headers */ + + /************************************************************************** + * + * @macro: + * FT_FREETYPE_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * base FreeType~2 API. + * + */ +#define FT_FREETYPE_H + + + /************************************************************************** + * + * @macro: + * FT_ERRORS_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * list of FreeType~2 error codes (and messages). + * + * It is included by @FT_FREETYPE_H. + * + */ +#define FT_ERRORS_H + + + /************************************************************************** + * + * @macro: + * FT_MODULE_ERRORS_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * list of FreeType~2 module error offsets (and messages). + * + */ +#define FT_MODULE_ERRORS_H + + + /************************************************************************** + * + * @macro: + * FT_SYSTEM_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 interface to low-level operations (i.e., memory management + * and stream i/o). + * + * It is included by @FT_FREETYPE_H. + * + */ +#define FT_SYSTEM_H + + + /************************************************************************** + * + * @macro: + * FT_IMAGE_H + * + * @description: + * A macro used in `#include` statements to name the file containing type + * definitions related to glyph images (i.e., bitmaps, outlines, + * scan-converter parameters). + * + * It is included by @FT_FREETYPE_H. + * + */ +#define FT_IMAGE_H + + + /************************************************************************** + * + * @macro: + * FT_TYPES_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * basic data types defined by FreeType~2. + * + * It is included by @FT_FREETYPE_H. + * + */ +#define FT_TYPES_H + + + /************************************************************************** + * + * @macro: + * FT_LIST_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * list management API of FreeType~2. + * + * (Most applications will never need to include this file.) + * + */ +#define FT_LIST_H + + + /************************************************************************** + * + * @macro: + * FT_OUTLINE_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * scalable outline management API of FreeType~2. + * + */ +#define FT_OUTLINE_H + + + /************************************************************************** + * + * @macro: + * FT_SIZES_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * API which manages multiple @FT_Size objects per face. + * + */ +#define FT_SIZES_H + + + /************************************************************************** + * + * @macro: + * FT_MODULE_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * module management API of FreeType~2. + * + */ +#define FT_MODULE_H + + + /************************************************************************** + * + * @macro: + * FT_RENDER_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * renderer module management API of FreeType~2. + * + */ +#define FT_RENDER_H + + + /************************************************************************** + * + * @macro: + * FT_DRIVER_H + * + * @description: + * A macro used in `#include` statements to name the file containing + * structures and macros related to the driver modules. + * + */ +#define FT_DRIVER_H + + + /************************************************************************** + * + * @macro: + * FT_AUTOHINTER_H + * + * @description: + * A macro used in `#include` statements to name the file containing + * structures and macros related to the auto-hinting module. + * + * Deprecated since version~2.9; use @FT_DRIVER_H instead. + * + */ +#define FT_AUTOHINTER_H FT_DRIVER_H + + + /************************************************************************** + * + * @macro: + * FT_CFF_DRIVER_H + * + * @description: + * A macro used in `#include` statements to name the file containing + * structures and macros related to the CFF driver module. + * + * Deprecated since version~2.9; use @FT_DRIVER_H instead. + * + */ +#define FT_CFF_DRIVER_H FT_DRIVER_H + + + /************************************************************************** + * + * @macro: + * FT_TRUETYPE_DRIVER_H + * + * @description: + * A macro used in `#include` statements to name the file containing + * structures and macros related to the TrueType driver module. + * + * Deprecated since version~2.9; use @FT_DRIVER_H instead. + * + */ +#define FT_TRUETYPE_DRIVER_H FT_DRIVER_H + + + /************************************************************************** + * + * @macro: + * FT_PCF_DRIVER_H + * + * @description: + * A macro used in `#include` statements to name the file containing + * structures and macros related to the PCF driver module. + * + * Deprecated since version~2.9; use @FT_DRIVER_H instead. + * + */ +#define FT_PCF_DRIVER_H FT_DRIVER_H + + + /************************************************************************** + * + * @macro: + * FT_TYPE1_TABLES_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * types and API specific to the Type~1 format. + * + */ +#define FT_TYPE1_TABLES_H + + + /************************************************************************** + * + * @macro: + * FT_TRUETYPE_IDS_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * enumeration values which identify name strings, languages, encodings, + * etc. This file really contains a _large_ set of constant macro + * definitions, taken from the TrueType and OpenType specifications. + * + */ +#define FT_TRUETYPE_IDS_H + + + /************************************************************************** + * + * @macro: + * FT_TRUETYPE_TABLES_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * types and API specific to the TrueType (as well as OpenType) format. + * + */ +#define FT_TRUETYPE_TABLES_H + + + /************************************************************************** + * + * @macro: + * FT_TRUETYPE_TAGS_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * definitions of TrueType four-byte 'tags' which identify blocks in + * SFNT-based font formats (i.e., TrueType and OpenType). + * + */ +#define FT_TRUETYPE_TAGS_H + + + /************************************************************************** + * + * @macro: + * FT_BDF_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * definitions of an API which accesses BDF-specific strings from a face. + * + */ +#define FT_BDF_H + + + /************************************************************************** + * + * @macro: + * FT_CID_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * definitions of an API which access CID font information from a face. + * + */ +#define FT_CID_H + + + /************************************************************************** + * + * @macro: + * FT_GZIP_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * definitions of an API which supports gzip-compressed files. + * + */ +#define FT_GZIP_H + + + /************************************************************************** + * + * @macro: + * FT_LZW_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * definitions of an API which supports LZW-compressed files. + * + */ +#define FT_LZW_H + + + /************************************************************************** + * + * @macro: + * FT_BZIP2_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * definitions of an API which supports bzip2-compressed files. + * + */ +#define FT_BZIP2_H + + + /************************************************************************** + * + * @macro: + * FT_WINFONTS_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * definitions of an API which supports Windows FNT files. + * + */ +#define FT_WINFONTS_H + + + /************************************************************************** + * + * @macro: + * FT_GLYPH_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * API of the optional glyph management component. + * + */ +#define FT_GLYPH_H + + + /************************************************************************** + * + * @macro: + * FT_BITMAP_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * API of the optional bitmap conversion component. + * + */ +#define FT_BITMAP_H + + + /************************************************************************** + * + * @macro: + * FT_BBOX_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * API of the optional exact bounding box computation routines. + * + */ +#define FT_BBOX_H + + + /************************************************************************** + * + * @macro: + * FT_CACHE_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * API of the optional FreeType~2 cache sub-system. + * + */ +#define FT_CACHE_H + + + /************************************************************************** + * + * @macro: + * FT_MAC_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * Macintosh-specific FreeType~2 API. The latter is used to access fonts + * embedded in resource forks. + * + * This header file must be explicitly included by client applications + * compiled on the Mac (note that the base API still works though). + * + */ +#define FT_MAC_H + + + /************************************************************************** + * + * @macro: + * FT_MULTIPLE_MASTERS_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * optional multiple-masters management API of FreeType~2. + * + */ +#define FT_MULTIPLE_MASTERS_H + + + /************************************************************************** + * + * @macro: + * FT_SFNT_NAMES_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * optional FreeType~2 API which accesses embedded 'name' strings in + * SFNT-based font formats (i.e., TrueType and OpenType). + * + */ +#define FT_SFNT_NAMES_H + + + /************************************************************************** + * + * @macro: + * FT_OPENTYPE_VALIDATE_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * optional FreeType~2 API which validates OpenType tables ('BASE', + * 'GDEF', 'GPOS', 'GSUB', 'JSTF'). + * + */ +#define FT_OPENTYPE_VALIDATE_H + + + /************************************************************************** + * + * @macro: + * FT_GX_VALIDATE_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * optional FreeType~2 API which validates TrueTypeGX/AAT tables ('feat', + * 'mort', 'morx', 'bsln', 'just', 'kern', 'opbd', 'trak', 'prop'). + * + */ +#define FT_GX_VALIDATE_H + + + /************************************************************************** + * + * @macro: + * FT_PFR_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which accesses PFR-specific data. + * + */ +#define FT_PFR_H + + + /************************************************************************** + * + * @macro: + * FT_STROKER_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which provides functions to stroke outline paths. + */ +#define FT_STROKER_H + + + /************************************************************************** + * + * @macro: + * FT_SYNTHESIS_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which performs artificial obliquing and emboldening. + */ +#define FT_SYNTHESIS_H + + + /************************************************************************** + * + * @macro: + * FT_FONT_FORMATS_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which provides functions specific to font formats. + */ +#define FT_FONT_FORMATS_H + + /* deprecated */ +#define FT_XFREE86_H FT_FONT_FORMATS_H + + + /************************************************************************** + * + * @macro: + * FT_TRIGONOMETRY_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which performs trigonometric computations (e.g., + * cosines and arc tangents). + */ +#define FT_TRIGONOMETRY_H + + + /************************************************************************** + * + * @macro: + * FT_LCD_FILTER_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which performs color filtering for subpixel rendering. + */ +#define FT_LCD_FILTER_H + + + /************************************************************************** + * + * @macro: + * FT_INCREMENTAL_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which performs incremental glyph loading. + */ +#define FT_INCREMENTAL_H + + + /************************************************************************** + * + * @macro: + * FT_GASP_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which returns entries from the TrueType GASP table. + */ +#define FT_GASP_H + + + /************************************************************************** + * + * @macro: + * FT_ADVANCES_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which returns individual and ranged glyph advances. + */ +#define FT_ADVANCES_H + + + /************************************************************************** + * + * @macro: + * FT_COLOR_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which handles the OpenType 'CPAL' table. + */ +#define FT_COLOR_H + + + /* */ + + /* These header files don't need to be included by the user. */ +#define FT_ERROR_DEFINITIONS_H +#define FT_PARAMETER_TAGS_H + + /* Deprecated macros. */ +#define FT_UNPATENTED_HINTING_H +#define FT_TRUETYPE_UNPATENTED_H + + /* `FT_CACHE_H` is the only header file needed for the cache subsystem. */ +#define FT_CACHE_IMAGE_H FT_CACHE_H +#define FT_CACHE_SMALL_BITMAPS_H FT_CACHE_H +#define FT_CACHE_CHARMAP_H FT_CACHE_H + + /* The internals of the cache sub-system are no longer exposed. We */ + /* default to `FT_CACHE_H` at the moment just in case, but we know */ + /* of no rogue client that uses them. */ + /* */ +#define FT_CACHE_MANAGER_H FT_CACHE_H +#define FT_CACHE_INTERNAL_MRU_H FT_CACHE_H +#define FT_CACHE_INTERNAL_MANAGER_H FT_CACHE_H +#define FT_CACHE_INTERNAL_CACHE_H FT_CACHE_H +#define FT_CACHE_INTERNAL_GLYPH_H FT_CACHE_H +#define FT_CACHE_INTERNAL_IMAGE_H FT_CACHE_H +#define FT_CACHE_INTERNAL_SBITS_H FT_CACHE_H + + + /* + * Include internal headers definitions from `` only when + * building the library. + */ +#ifdef FT2_BUILD_LIBRARY +#define FT_INTERNAL_INTERNAL_H +#include FT_INTERNAL_INTERNAL_H +#endif /* FT2_BUILD_LIBRARY */ + + +#endif /* FTHEADER_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/config/ftmodule.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/config/ftmodule.h new file mode 100644 index 0000000..7c603e5 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/config/ftmodule.h @@ -0,0 +1,32 @@ +/* + * This file registers the FreeType modules compiled into the library. + * + * If you use GNU make, this file IS NOT USED! Instead, it is created in + * the objects directory (normally `/objs/`) based on information + * from `/modules.cfg`. + * + * Please read `docs/INSTALL.ANY` and `docs/CUSTOMIZE` how to compile + * FreeType without GNU make. + * + */ + +FT_USE_MODULE( FT_Module_Class, autofit_module_class ) +FT_USE_MODULE( FT_Driver_ClassRec, tt_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, t1_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, cff_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, t1cid_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, pfr_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, t42_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, winfnt_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, pcf_driver_class ) +FT_USE_MODULE( FT_Module_Class, psaux_module_class ) +FT_USE_MODULE( FT_Module_Class, psnames_module_class ) +FT_USE_MODULE( FT_Module_Class, pshinter_module_class ) +FT_USE_MODULE( FT_Renderer_Class, ft_raster1_renderer_class ) +FT_USE_MODULE( FT_Module_Class, sfnt_module_class ) +FT_USE_MODULE( FT_Renderer_Class, ft_smooth_renderer_class ) +FT_USE_MODULE( FT_Renderer_Class, ft_smooth_lcd_renderer_class ) +FT_USE_MODULE( FT_Renderer_Class, ft_smooth_lcdv_renderer_class ) +FT_USE_MODULE( FT_Driver_ClassRec, bdf_driver_class ) + +/* EOF */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/config/ftoption.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/config/ftoption.h new file mode 100644 index 0000000..12f47a8 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/config/ftoption.h @@ -0,0 +1,982 @@ +/**************************************************************************** + * + * ftoption.h + * + * User-selectable configuration macros (specification only). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTOPTION_H_ +#define FTOPTION_H_ + + +#include + + +FT_BEGIN_HEADER + + /************************************************************************** + * + * USER-SELECTABLE CONFIGURATION MACROS + * + * This file contains the default configuration macro definitions for a + * standard build of the FreeType library. There are three ways to use + * this file to build project-specific versions of the library: + * + * - You can modify this file by hand, but this is not recommended in + * cases where you would like to build several versions of the library + * from a single source directory. + * + * - You can put a copy of this file in your build directory, more + * precisely in `$BUILD/freetype/config/ftoption.h`, where `$BUILD` is + * the name of a directory that is included _before_ the FreeType include + * path during compilation. + * + * The default FreeType Makefiles and Jamfiles use the build directory + * `builds/` by default, but you can easily change that for your + * own projects. + * + * - Copy the file to `$BUILD/ft2build.h` and modify it + * slightly to pre-define the macro `FT_CONFIG_OPTIONS_H` used to locate + * this file during the build. For example, + * + * ``` + * #define FT_CONFIG_OPTIONS_H + * #include + * ``` + * + * will use `$BUILD/myftoptions.h` instead of this file for macro + * definitions. + * + * Note also that you can similarly pre-define the macro + * `FT_CONFIG_MODULES_H` used to locate the file listing of the modules + * that are statically linked to the library at compile time. By + * default, this file is ``. + * + * We highly recommend using the third method whenever possible. + * + */ + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** G E N E R A L F R E E T Y P E 2 C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /*#************************************************************************ + * + * If you enable this configuration option, FreeType recognizes an + * environment variable called `FREETYPE_PROPERTIES`, which can be used to + * control the various font drivers and modules. The controllable + * properties are listed in the section @properties. + * + * You have to undefine this configuration option on platforms that lack + * the concept of environment variables (and thus don't have the `getenv` + * function), for example Windows CE. + * + * `FREETYPE_PROPERTIES` has the following syntax form (broken here into + * multiple lines for better readability). + * + * ``` + * + * ':' + * '=' + * + * ':' + * '=' + * ... + * ``` + * + * Example: + * + * ``` + * FREETYPE_PROPERTIES=truetype:interpreter-version=35 \ + * cff:no-stem-darkening=1 \ + * autofitter:warping=1 + * ``` + * + */ +#define FT_CONFIG_OPTION_ENVIRONMENT_PROPERTIES + + + /************************************************************************** + * + * Uncomment the line below if you want to activate LCD rendering + * technology similar to ClearType in this build of the library. This + * technology triples the resolution in the direction color subpixels. To + * mitigate color fringes inherent to this technology, you also need to + * explicitly set up LCD filtering. + * + * Note that this feature is covered by several Microsoft patents and + * should not be activated in any default build of the library. When this + * macro is not defined, FreeType offers alternative LCD rendering + * technology that produces excellent output without LCD filtering. + */ +/* #define FT_CONFIG_OPTION_SUBPIXEL_RENDERING */ + + + /************************************************************************** + * + * Many compilers provide a non-ANSI 64-bit data type that can be used by + * FreeType to speed up some computations. However, this will create some + * problems when compiling the library in strict ANSI mode. + * + * For this reason, the use of 64-bit integers is normally disabled when + * the `__STDC__` macro is defined. You can however disable this by + * defining the macro `FT_CONFIG_OPTION_FORCE_INT64` here. + * + * For most compilers, this will only create compilation warnings when + * building the library. + * + * ObNote: The compiler-specific 64-bit integers are detected in the + * file `ftconfig.h` either statically or through the `configure` + * script on supported platforms. + */ +#undef FT_CONFIG_OPTION_FORCE_INT64 + + + /************************************************************************** + * + * If this macro is defined, do not try to use an assembler version of + * performance-critical functions (e.g., @FT_MulFix). You should only do + * that to verify that the assembler function works properly, or to execute + * benchmark tests of the various implementations. + */ +/* #define FT_CONFIG_OPTION_NO_ASSEMBLER */ + + + /************************************************************************** + * + * If this macro is defined, try to use an inlined assembler version of the + * @FT_MulFix function, which is a 'hotspot' when loading and hinting + * glyphs, and which should be executed as fast as possible. + * + * Note that if your compiler or CPU is not supported, this will default to + * the standard and portable implementation found in `ftcalc.c`. + */ +#define FT_CONFIG_OPTION_INLINE_MULFIX + + + /************************************************************************** + * + * LZW-compressed file support. + * + * FreeType now handles font files that have been compressed with the + * `compress` program. This is mostly used to parse many of the PCF + * files that come with various X11 distributions. The implementation + * uses NetBSD's `zopen` to partially uncompress the file on the fly (see + * `src/lzw/ftgzip.c`). + * + * Define this macro if you want to enable this 'feature'. + */ +#define FT_CONFIG_OPTION_USE_LZW + + + /************************************************************************** + * + * Gzip-compressed file support. + * + * FreeType now handles font files that have been compressed with the + * `gzip` program. This is mostly used to parse many of the PCF files + * that come with XFree86. The implementation uses 'zlib' to partially + * uncompress the file on the fly (see `src/gzip/ftgzip.c`). + * + * Define this macro if you want to enable this 'feature'. See also the + * macro `FT_CONFIG_OPTION_SYSTEM_ZLIB` below. + */ +#define FT_CONFIG_OPTION_USE_ZLIB + + + /************************************************************************** + * + * ZLib library selection + * + * This macro is only used when `FT_CONFIG_OPTION_USE_ZLIB` is defined. + * It allows FreeType's 'ftgzip' component to link to the system's + * installation of the ZLib library. This is useful on systems like + * Unix or VMS where it generally is already available. + * + * If you let it undefined, the component will use its own copy of the + * zlib sources instead. These have been modified to be included + * directly within the component and **not** export external function + * names. This allows you to link any program with FreeType _and_ ZLib + * without linking conflicts. + * + * Do not `#undef` this macro here since the build system might define + * it for certain configurations only. + * + * If you use a build system like cmake or the `configure` script, + * options set by those programs have precedence, overwriting the value + * here with the configured one. + */ +/* #define FT_CONFIG_OPTION_SYSTEM_ZLIB */ + + + /************************************************************************** + * + * Bzip2-compressed file support. + * + * FreeType now handles font files that have been compressed with the + * `bzip2` program. This is mostly used to parse many of the PCF files + * that come with XFree86. The implementation uses `libbz2` to partially + * uncompress the file on the fly (see `src/bzip2/ftbzip2.c`). Contrary + * to gzip, bzip2 currently is not included and need to use the system + * available bzip2 implementation. + * + * Define this macro if you want to enable this 'feature'. + * + * If you use a build system like cmake or the `configure` script, + * options set by those programs have precedence, overwriting the value + * here with the configured one. + */ +/* #define FT_CONFIG_OPTION_USE_BZIP2 */ + + + /************************************************************************** + * + * Define to disable the use of file stream functions and types, `FILE`, + * `fopen`, etc. Enables the use of smaller system libraries on embedded + * systems that have multiple system libraries, some with or without file + * stream support, in the cases where file stream support is not necessary + * such as memory loading of font files. + */ +/* #define FT_CONFIG_OPTION_DISABLE_STREAM_SUPPORT */ + + + /************************************************************************** + * + * PNG bitmap support. + * + * FreeType now handles loading color bitmap glyphs in the PNG format. + * This requires help from the external libpng library. Uncompressed + * color bitmaps do not need any external libraries and will be supported + * regardless of this configuration. + * + * Define this macro if you want to enable this 'feature'. + * + * If you use a build system like cmake or the `configure` script, + * options set by those programs have precedence, overwriting the value + * here with the configured one. + */ +/* #define FT_CONFIG_OPTION_USE_PNG */ + + + /************************************************************************** + * + * HarfBuzz support. + * + * FreeType uses the HarfBuzz library to improve auto-hinting of OpenType + * fonts. If available, many glyphs not directly addressable by a font's + * character map will be hinted also. + * + * Define this macro if you want to enable this 'feature'. + * + * If you use a build system like cmake or the `configure` script, + * options set by those programs have precedence, overwriting the value + * here with the configured one. + */ +/* #define FT_CONFIG_OPTION_USE_HARFBUZZ */ + + + /************************************************************************** + * + * Glyph Postscript Names handling + * + * By default, FreeType 2 is compiled with the 'psnames' module. This + * module is in charge of converting a glyph name string into a Unicode + * value, or return a Macintosh standard glyph name for the use with the + * TrueType 'post' table. + * + * Undefine this macro if you do not want 'psnames' compiled in your + * build of FreeType. This has the following effects: + * + * - The TrueType driver will provide its own set of glyph names, if you + * build it to support postscript names in the TrueType 'post' table, + * but will not synthesize a missing Unicode charmap. + * + * - The Type~1 driver will not be able to synthesize a Unicode charmap + * out of the glyphs found in the fonts. + * + * You would normally undefine this configuration macro when building a + * version of FreeType that doesn't contain a Type~1 or CFF driver. + */ +#define FT_CONFIG_OPTION_POSTSCRIPT_NAMES + + + /************************************************************************** + * + * Postscript Names to Unicode Values support + * + * By default, FreeType~2 is built with the 'psnames' module compiled in. + * Among other things, the module is used to convert a glyph name into a + * Unicode value. This is especially useful in order to synthesize on + * the fly a Unicode charmap from the CFF/Type~1 driver through a big + * table named the 'Adobe Glyph List' (AGL). + * + * Undefine this macro if you do not want the Adobe Glyph List compiled + * in your 'psnames' module. The Type~1 driver will not be able to + * synthesize a Unicode charmap out of the glyphs found in the fonts. + */ +#define FT_CONFIG_OPTION_ADOBE_GLYPH_LIST + + + /************************************************************************** + * + * Support for Mac fonts + * + * Define this macro if you want support for outline fonts in Mac format + * (mac dfont, mac resource, macbinary containing a mac resource) on + * non-Mac platforms. + * + * Note that the 'FOND' resource isn't checked. + */ +#define FT_CONFIG_OPTION_MAC_FONTS + + + /************************************************************************** + * + * Guessing methods to access embedded resource forks + * + * Enable extra Mac fonts support on non-Mac platforms (e.g., GNU/Linux). + * + * Resource forks which include fonts data are stored sometimes in + * locations which users or developers don't expected. In some cases, + * resource forks start with some offset from the head of a file. In + * other cases, the actual resource fork is stored in file different from + * what the user specifies. If this option is activated, FreeType tries + * to guess whether such offsets or different file names must be used. + * + * Note that normal, direct access of resource forks is controlled via + * the `FT_CONFIG_OPTION_MAC_FONTS` option. + */ +#ifdef FT_CONFIG_OPTION_MAC_FONTS +#define FT_CONFIG_OPTION_GUESSING_EMBEDDED_RFORK +#endif + + + /************************************************************************** + * + * Allow the use of `FT_Incremental_Interface` to load typefaces that + * contain no glyph data, but supply it via a callback function. This is + * required by clients supporting document formats which supply font data + * incrementally as the document is parsed, such as the Ghostscript + * interpreter for the PostScript language. + */ +#define FT_CONFIG_OPTION_INCREMENTAL + + + /************************************************************************** + * + * The size in bytes of the render pool used by the scan-line converter to + * do all of its work. + */ +#define FT_RENDER_POOL_SIZE 16384L + + + /************************************************************************** + * + * FT_MAX_MODULES + * + * The maximum number of modules that can be registered in a single + * FreeType library object. 32~is the default. + */ +#define FT_MAX_MODULES 32 + + + /************************************************************************** + * + * Debug level + * + * FreeType can be compiled in debug or trace mode. In debug mode, + * errors are reported through the 'ftdebug' component. In trace mode, + * additional messages are sent to the standard output during execution. + * + * Define `FT_DEBUG_LEVEL_ERROR` to build the library in debug mode. + * Define `FT_DEBUG_LEVEL_TRACE` to build it in trace mode. + * + * Don't define any of these macros to compile in 'release' mode! + * + * Do not `#undef` these macros here since the build system might define + * them for certain configurations only. + */ +/* #define FT_DEBUG_LEVEL_ERROR */ +/* #define FT_DEBUG_LEVEL_TRACE */ + + + /************************************************************************** + * + * Autofitter debugging + * + * If `FT_DEBUG_AUTOFIT` is defined, FreeType provides some means to + * control the autofitter behaviour for debugging purposes with global + * boolean variables (consequently, you should **never** enable this + * while compiling in 'release' mode): + * + * ``` + * _af_debug_disable_horz_hints + * _af_debug_disable_vert_hints + * _af_debug_disable_blue_hints + * ``` + * + * Additionally, the following functions provide dumps of various + * internal autofit structures to stdout (using `printf`): + * + * ``` + * af_glyph_hints_dump_points + * af_glyph_hints_dump_segments + * af_glyph_hints_dump_edges + * af_glyph_hints_get_num_segments + * af_glyph_hints_get_segment_offset + * ``` + * + * As an argument, they use another global variable: + * + * ``` + * _af_debug_hints + * ``` + * + * Please have a look at the `ftgrid` demo program to see how those + * variables and macros should be used. + * + * Do not `#undef` these macros here since the build system might define + * them for certain configurations only. + */ +/* #define FT_DEBUG_AUTOFIT */ + + + /************************************************************************** + * + * Memory Debugging + * + * FreeType now comes with an integrated memory debugger that is capable + * of detecting simple errors like memory leaks or double deletes. To + * compile it within your build of the library, you should define + * `FT_DEBUG_MEMORY` here. + * + * Note that the memory debugger is only activated at runtime when when + * the _environment_ variable `FT2_DEBUG_MEMORY` is defined also! + * + * Do not `#undef` this macro here since the build system might define it + * for certain configurations only. + */ +/* #define FT_DEBUG_MEMORY */ + + + /************************************************************************** + * + * Module errors + * + * If this macro is set (which is _not_ the default), the higher byte of + * an error code gives the module in which the error has occurred, while + * the lower byte is the real error code. + * + * Setting this macro makes sense for debugging purposes only, since it + * would break source compatibility of certain programs that use + * FreeType~2. + * + * More details can be found in the files `ftmoderr.h` and `fterrors.h`. + */ +#undef FT_CONFIG_OPTION_USE_MODULE_ERRORS + + + /************************************************************************** + * + * Error Strings + * + * If this macro is set, `FT_Error_String` will return meaningful + * descriptions. This is not enabled by default to reduce the overall + * size of FreeType. + * + * More details can be found in the file `fterrors.h`. + */ +/* #define FT_CONFIG_OPTION_ERROR_STRINGS */ + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** S F N T D R I V E R C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_EMBEDDED_BITMAPS` if you want to support + * embedded bitmaps in all formats using the 'sfnt' module (namely + * TrueType~& OpenType). + */ +#define TT_CONFIG_OPTION_EMBEDDED_BITMAPS + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_COLOR_LAYERS` if you want to support coloured + * outlines (from the 'COLR'/'CPAL' tables) in all formats using the 'sfnt' + * module (namely TrueType~& OpenType). + */ +#define TT_CONFIG_OPTION_COLOR_LAYERS + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_POSTSCRIPT_NAMES` if you want to be able to + * load and enumerate the glyph Postscript names in a TrueType or OpenType + * file. + * + * Note that when you do not compile the 'psnames' module by undefining the + * above `FT_CONFIG_OPTION_POSTSCRIPT_NAMES`, the 'sfnt' module will + * contain additional code used to read the PS Names table from a font. + * + * (By default, the module uses 'psnames' to extract glyph names.) + */ +#define TT_CONFIG_OPTION_POSTSCRIPT_NAMES + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_SFNT_NAMES` if your applications need to access + * the internal name table in a SFNT-based format like TrueType or + * OpenType. The name table contains various strings used to describe the + * font, like family name, copyright, version, etc. It does not contain + * any glyph name though. + * + * Accessing SFNT names is done through the functions declared in + * `ftsnames.h`. + */ +#define TT_CONFIG_OPTION_SFNT_NAMES + + + /************************************************************************** + * + * TrueType CMap support + * + * Here you can fine-tune which TrueType CMap table format shall be + * supported. + */ +#define TT_CONFIG_CMAP_FORMAT_0 +#define TT_CONFIG_CMAP_FORMAT_2 +#define TT_CONFIG_CMAP_FORMAT_4 +#define TT_CONFIG_CMAP_FORMAT_6 +#define TT_CONFIG_CMAP_FORMAT_8 +#define TT_CONFIG_CMAP_FORMAT_10 +#define TT_CONFIG_CMAP_FORMAT_12 +#define TT_CONFIG_CMAP_FORMAT_13 +#define TT_CONFIG_CMAP_FORMAT_14 + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** T R U E T Y P E D R I V E R C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_BYTECODE_INTERPRETER` if you want to compile a + * bytecode interpreter in the TrueType driver. + * + * By undefining this, you will only compile the code necessary to load + * TrueType glyphs without hinting. + * + * Do not `#undef` this macro here, since the build system might define it + * for certain configurations only. + */ +#define TT_CONFIG_OPTION_BYTECODE_INTERPRETER + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_SUBPIXEL_HINTING` if you want to compile + * subpixel hinting support into the TrueType driver. This modifies the + * TrueType hinting mechanism when anything but `FT_RENDER_MODE_MONO` is + * requested. + * + * In particular, it modifies the bytecode interpreter to interpret (or + * not) instructions in a certain way so that all TrueType fonts look like + * they do in a Windows ClearType (DirectWrite) environment. See [1] for a + * technical overview on what this means. See `ttinterp.h` for more + * details on the LEAN option. + * + * There are three possible values. + * + * Value 1: + * This value is associated with the 'Infinality' moniker, contributed by + * an individual nicknamed Infinality with the goal of making TrueType + * fonts render better than on Windows. A high amount of configurability + * and flexibility, down to rules for single glyphs in fonts, but also + * very slow. Its experimental and slow nature and the original + * developer losing interest meant that this option was never enabled in + * default builds. + * + * The corresponding interpreter version is v38. + * + * Value 2: + * The new default mode for the TrueType driver. The Infinality code + * base was stripped to the bare minimum and all configurability removed + * in the name of speed and simplicity. The configurability was mainly + * aimed at legacy fonts like 'Arial', 'Times New Roman', or 'Courier'. + * Legacy fonts are fonts that modify vertical stems to achieve clean + * black-and-white bitmaps. The new mode focuses on applying a minimal + * set of rules to all fonts indiscriminately so that modern and web + * fonts render well while legacy fonts render okay. + * + * The corresponding interpreter version is v40. + * + * Value 3: + * Compile both, making both v38 and v40 available (the latter is the + * default). + * + * By undefining these, you get rendering behavior like on Windows without + * ClearType, i.e., Windows XP without ClearType enabled and Win9x + * (interpreter version v35). Or not, depending on how much hinting blood + * and testing tears the font designer put into a given font. If you + * define one or both subpixel hinting options, you can switch between + * between v35 and the ones you define (using `FT_Property_Set`). + * + * This option requires `TT_CONFIG_OPTION_BYTECODE_INTERPRETER` to be + * defined. + * + * [1] + * https://www.microsoft.com/typography/cleartype/truetypecleartype.aspx + */ +/* #define TT_CONFIG_OPTION_SUBPIXEL_HINTING 1 */ +#define TT_CONFIG_OPTION_SUBPIXEL_HINTING 2 +/* #define TT_CONFIG_OPTION_SUBPIXEL_HINTING ( 1 | 2 ) */ + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_COMPONENT_OFFSET_SCALED` to compile the + * TrueType glyph loader to use Apple's definition of how to handle + * component offsets in composite glyphs. + * + * Apple and MS disagree on the default behavior of component offsets in + * composites. Apple says that they should be scaled by the scaling + * factors in the transformation matrix (roughly, it's more complex) while + * MS says they should not. OpenType defines two bits in the composite + * flags array which can be used to disambiguate, but old fonts will not + * have them. + * + * https://www.microsoft.com/typography/otspec/glyf.htm + * https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6glyf.html + */ +#undef TT_CONFIG_OPTION_COMPONENT_OFFSET_SCALED + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_GX_VAR_SUPPORT` if you want to include support + * for Apple's distortable font technology ('fvar', 'gvar', 'cvar', and + * 'avar' tables). Tagged 'Font Variations', this is now part of OpenType + * also. This has many similarities to Type~1 Multiple Masters support. + */ +#define TT_CONFIG_OPTION_GX_VAR_SUPPORT + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_BDF` if you want to include support for an + * embedded 'BDF~' table within SFNT-based bitmap formats. + */ +#define TT_CONFIG_OPTION_BDF + + + /************************************************************************** + * + * Option `TT_CONFIG_OPTION_MAX_RUNNABLE_OPCODES` controls the maximum + * number of bytecode instructions executed for a single run of the + * bytecode interpreter, needed to prevent infinite loops. You don't want + * to change this except for very special situations (e.g., making a + * library fuzzer spend less time to handle broken fonts). + * + * It is not expected that this value is ever modified by a configuring + * script; instead, it gets surrounded with `#ifndef ... #endif` so that + * the value can be set as a preprocessor option on the compiler's command + * line. + */ +#ifndef TT_CONFIG_OPTION_MAX_RUNNABLE_OPCODES +#define TT_CONFIG_OPTION_MAX_RUNNABLE_OPCODES 1000000L +#endif + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** T Y P E 1 D R I V E R C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * `T1_MAX_DICT_DEPTH` is the maximum depth of nest dictionaries and arrays + * in the Type~1 stream (see `t1load.c`). A minimum of~4 is required. + */ +#define T1_MAX_DICT_DEPTH 5 + + + /************************************************************************** + * + * `T1_MAX_SUBRS_CALLS` details the maximum number of nested sub-routine + * calls during glyph loading. + */ +#define T1_MAX_SUBRS_CALLS 16 + + + /************************************************************************** + * + * `T1_MAX_CHARSTRING_OPERANDS` is the charstring stack's capacity. A + * minimum of~16 is required. + * + * The Chinese font 'MingTiEG-Medium' (covering the CNS 11643 character + * set) needs 256. + */ +#define T1_MAX_CHARSTRINGS_OPERANDS 256 + + + /************************************************************************** + * + * Define this configuration macro if you want to prevent the compilation + * of the 't1afm' module, which is in charge of reading Type~1 AFM files + * into an existing face. Note that if set, the Type~1 driver will be + * unable to produce kerning distances. + */ +#undef T1_CONFIG_OPTION_NO_AFM + + + /************************************************************************** + * + * Define this configuration macro if you want to prevent the compilation + * of the Multiple Masters font support in the Type~1 driver. + */ +#undef T1_CONFIG_OPTION_NO_MM_SUPPORT + + + /************************************************************************** + * + * `T1_CONFIG_OPTION_OLD_ENGINE` controls whether the pre-Adobe Type~1 + * engine gets compiled into FreeType. If defined, it is possible to + * switch between the two engines using the `hinting-engine` property of + * the 'type1' driver module. + */ +/* #define T1_CONFIG_OPTION_OLD_ENGINE */ + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** C F F D R I V E R C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * Using `CFF_CONFIG_OPTION_DARKENING_PARAMETER_{X,Y}{1,2,3,4}` it is + * possible to set up the default values of the four control points that + * define the stem darkening behaviour of the (new) CFF engine. For more + * details please read the documentation of the `darkening-parameters` + * property (file `ftdriver.h`), which allows the control at run-time. + * + * Do **not** undefine these macros! + */ +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_X1 500 +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y1 400 + +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_X2 1000 +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y2 275 + +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_X3 1667 +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y3 275 + +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_X4 2333 +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y4 0 + + + /************************************************************************** + * + * `CFF_CONFIG_OPTION_OLD_ENGINE` controls whether the pre-Adobe CFF engine + * gets compiled into FreeType. If defined, it is possible to switch + * between the two engines using the `hinting-engine` property of the 'cff' + * driver module. + */ +/* #define CFF_CONFIG_OPTION_OLD_ENGINE */ + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** P C F D R I V E R C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * There are many PCF fonts just called 'Fixed' which look completely + * different, and which have nothing to do with each other. When selecting + * 'Fixed' in KDE or Gnome one gets results that appear rather random, the + * style changes often if one changes the size and one cannot select some + * fonts at all. This option makes the 'pcf' module prepend the foundry + * name (plus a space) to the family name. + * + * We also check whether we have 'wide' characters; all put together, we + * get family names like 'Sony Fixed' or 'Misc Fixed Wide'. + * + * If this option is activated, it can be controlled with the + * `no-long-family-names` property of the 'pcf' driver module. + */ +/* #define PCF_CONFIG_OPTION_LONG_FAMILY_NAMES */ + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** A U T O F I T M O D U L E C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * Compile 'autofit' module with CJK (Chinese, Japanese, Korean) script + * support. + */ +#define AF_CONFIG_OPTION_CJK + + + /************************************************************************** + * + * Compile 'autofit' module with fallback Indic script support, covering + * some scripts that the 'latin' submodule of the 'autofit' module doesn't + * (yet) handle. + */ +#define AF_CONFIG_OPTION_INDIC + + + /************************************************************************** + * + * Compile 'autofit' module with warp hinting. The idea of the warping + * code is to slightly scale and shift a glyph within a single dimension so + * that as much of its segments are aligned (more or less) on the grid. To + * find out the optimal scaling and shifting value, various parameter + * combinations are tried and scored. + * + * You can switch warping on and off with the `warping` property of the + * auto-hinter (see file `ftdriver.h` for more information; by default it + * is switched off). + * + * This experimental option is not active if the rendering mode is + * `FT_RENDER_MODE_LIGHT`. + */ +#define AF_CONFIG_OPTION_USE_WARPER + + + /************************************************************************** + * + * Use TrueType-like size metrics for 'light' auto-hinting. + * + * It is strongly recommended to avoid this option, which exists only to + * help some legacy applications retain its appearance and behaviour with + * respect to auto-hinted TrueType fonts. + * + * The very reason this option exists at all are GNU/Linux distributions + * like Fedora that did not un-patch the following change (which was + * present in FreeType between versions 2.4.6 and 2.7.1, inclusive). + * + * ``` + * 2011-07-16 Steven Chu + * + * [truetype] Fix metrics on size request for scalable fonts. + * ``` + * + * This problematic commit is now reverted (more or less). + */ +/* #define AF_CONFIG_OPTION_TT_SIZE_METRICS */ + + /* */ + + + /* + * This macro is obsolete. Support has been removed in FreeType version + * 2.5. + */ +/* #define FT_CONFIG_OPTION_OLD_INTERNALS */ + + + /* + * The next three macros are defined if native TrueType hinting is + * requested by the definitions above. Don't change this. + */ +#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER +#define TT_USE_BYTECODE_INTERPRETER + +#ifdef TT_CONFIG_OPTION_SUBPIXEL_HINTING +#if TT_CONFIG_OPTION_SUBPIXEL_HINTING & 1 +#define TT_SUPPORT_SUBPIXEL_HINTING_INFINALITY +#endif + +#if TT_CONFIG_OPTION_SUBPIXEL_HINTING & 2 +#define TT_SUPPORT_SUBPIXEL_HINTING_MINIMAL +#endif +#endif +#endif + + + /* + * Check CFF darkening parameters. The checks are the same as in function + * `cff_property_set` in file `cffdrivr.c`. + */ +#if CFF_CONFIG_OPTION_DARKENING_PARAMETER_X1 < 0 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X2 < 0 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X3 < 0 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X4 < 0 || \ + \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y1 < 0 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y2 < 0 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y3 < 0 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y4 < 0 || \ + \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X1 > \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X2 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X2 > \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X3 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X3 > \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X4 || \ + \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y1 > 500 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y2 > 500 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y3 > 500 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y4 > 500 +#error "Invalid CFF darkening parameters!" +#endif + +FT_END_HEADER + + +#endif /* FTOPTION_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/config/ftstdlib.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/config/ftstdlib.h new file mode 100644 index 0000000..438b614 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/config/ftstdlib.h @@ -0,0 +1,175 @@ +/**************************************************************************** + * + * ftstdlib.h + * + * ANSI-specific library and header configuration file (specification + * only). + * + * Copyright (C) 2002-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * This file is used to group all `#includes` to the ANSI~C library that + * FreeType normally requires. It also defines macros to rename the + * standard functions within the FreeType source code. + * + * Load a file which defines `FTSTDLIB_H_` before this one to override it. + * + */ + + +#ifndef FTSTDLIB_H_ +#define FTSTDLIB_H_ + + +#include + +#define ft_ptrdiff_t ptrdiff_t + + + /************************************************************************** + * + * integer limits + * + * `UINT_MAX` and `ULONG_MAX` are used to automatically compute the size of + * `int` and `long` in bytes at compile-time. So far, this works for all + * platforms the library has been tested on. + * + * Note that on the extremely rare platforms that do not provide integer + * types that are _exactly_ 16 and 32~bits wide (e.g., some old Crays where + * `int` is 36~bits), we do not make any guarantee about the correct + * behaviour of FreeType~2 with all fonts. + * + * In these cases, `ftconfig.h` will refuse to compile anyway with a + * message like 'couldn't find 32-bit type' or something similar. + * + */ + + +#include + +#define FT_CHAR_BIT CHAR_BIT +#define FT_USHORT_MAX USHRT_MAX +#define FT_INT_MAX INT_MAX +#define FT_INT_MIN INT_MIN +#define FT_UINT_MAX UINT_MAX +#define FT_LONG_MIN LONG_MIN +#define FT_LONG_MAX LONG_MAX +#define FT_ULONG_MAX ULONG_MAX + + + /************************************************************************** + * + * character and string processing + * + */ + + +#include + +#define ft_memchr memchr +#define ft_memcmp memcmp +#define ft_memcpy memcpy +#define ft_memmove memmove +#define ft_memset memset +#define ft_strcat strcat +#define ft_strcmp strcmp +#define ft_strcpy strcpy +#define ft_strlen strlen +#define ft_strncmp strncmp +#define ft_strncpy strncpy +#define ft_strrchr strrchr +#define ft_strstr strstr + + + /************************************************************************** + * + * file handling + * + */ + + +#include + +#define FT_FILE FILE +#define ft_fclose fclose +#define ft_fopen fopen +#define ft_fread fread +#define ft_fseek fseek +#define ft_ftell ftell +#define ft_sprintf sprintf + + + /************************************************************************** + * + * sorting + * + */ + + +#include + +#define ft_qsort qsort + + + /************************************************************************** + * + * memory allocation + * + */ + + +#define ft_scalloc calloc +#define ft_sfree free +#define ft_smalloc malloc +#define ft_srealloc realloc + + + /************************************************************************** + * + * miscellaneous + * + */ + + +#define ft_strtol strtol +#define ft_getenv getenv + + + /************************************************************************** + * + * execution control + * + */ + + +#include + +#define ft_jmp_buf jmp_buf /* note: this cannot be a typedef since */ + /* `jmp_buf` is defined as a macro */ + /* on certain platforms */ + +#define ft_longjmp longjmp +#define ft_setjmp( b ) setjmp( *(ft_jmp_buf*) &(b) ) /* same thing here */ + + + /* The following is only used for debugging purposes, i.e., if */ + /* `FT_DEBUG_LEVEL_ERROR` or `FT_DEBUG_LEVEL_TRACE` are defined. */ + +#include + + +#endif /* FTSTDLIB_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/freetype.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/freetype.h new file mode 100644 index 0000000..4f2eaca --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/freetype.h @@ -0,0 +1,4880 @@ +/**************************************************************************** + * + * freetype.h + * + * FreeType high-level API and common types (specification only). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FREETYPE_H_ +#define FREETYPE_H_ + + +#ifndef FT_FREETYPE_H +#error "`ft2build.h' hasn't been included yet!" +#error "Please always use macros to include FreeType header files." +#error "Example:" +#error " #include " +#error " #include FT_FREETYPE_H" +#endif + + +#include +#include FT_CONFIG_CONFIG_H +#include FT_TYPES_H +#include FT_ERRORS_H + + +FT_BEGIN_HEADER + + + + /************************************************************************** + * + * @section: + * header_inclusion + * + * @title: + * FreeType's header inclusion scheme + * + * @abstract: + * How client applications should include FreeType header files. + * + * @description: + * To be as flexible as possible (and for historical reasons), FreeType + * uses a very special inclusion scheme to load header files, for example + * + * ``` + * #include + * + * #include FT_FREETYPE_H + * #include FT_OUTLINE_H + * ``` + * + * A compiler and its preprocessor only needs an include path to find the + * file `ft2build.h`; the exact locations and names of the other FreeType + * header files are hidden by @header_file_macros, loaded by + * `ft2build.h`. The API documentation always gives the header macro + * name needed for a particular function. + * + */ + + + /************************************************************************** + * + * @section: + * user_allocation + * + * @title: + * User allocation + * + * @abstract: + * How client applications should allocate FreeType data structures. + * + * @description: + * FreeType assumes that structures allocated by the user and passed as + * arguments are zeroed out except for the actual data. In other words, + * it is recommended to use `calloc` (or variants of it) instead of + * `malloc` for allocation. + * + */ + + + + /*************************************************************************/ + /*************************************************************************/ + /* */ + /* B A S I C T Y P E S */ + /* */ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @section: + * base_interface + * + * @title: + * Base Interface + * + * @abstract: + * The FreeType~2 base font interface. + * + * @description: + * This section describes the most important public high-level API + * functions of FreeType~2. + * + * @order: + * FT_Library + * FT_Face + * FT_Size + * FT_GlyphSlot + * FT_CharMap + * FT_Encoding + * FT_ENC_TAG + * + * FT_FaceRec + * + * FT_FACE_FLAG_SCALABLE + * FT_FACE_FLAG_FIXED_SIZES + * FT_FACE_FLAG_FIXED_WIDTH + * FT_FACE_FLAG_HORIZONTAL + * FT_FACE_FLAG_VERTICAL + * FT_FACE_FLAG_COLOR + * FT_FACE_FLAG_SFNT + * FT_FACE_FLAG_CID_KEYED + * FT_FACE_FLAG_TRICKY + * FT_FACE_FLAG_KERNING + * FT_FACE_FLAG_MULTIPLE_MASTERS + * FT_FACE_FLAG_VARIATION + * FT_FACE_FLAG_GLYPH_NAMES + * FT_FACE_FLAG_EXTERNAL_STREAM + * FT_FACE_FLAG_HINTER + * + * FT_HAS_HORIZONTAL + * FT_HAS_VERTICAL + * FT_HAS_KERNING + * FT_HAS_FIXED_SIZES + * FT_HAS_GLYPH_NAMES + * FT_HAS_COLOR + * FT_HAS_MULTIPLE_MASTERS + * + * FT_IS_SFNT + * FT_IS_SCALABLE + * FT_IS_FIXED_WIDTH + * FT_IS_CID_KEYED + * FT_IS_TRICKY + * FT_IS_NAMED_INSTANCE + * FT_IS_VARIATION + * + * FT_STYLE_FLAG_BOLD + * FT_STYLE_FLAG_ITALIC + * + * FT_SizeRec + * FT_Size_Metrics + * + * FT_GlyphSlotRec + * FT_Glyph_Metrics + * FT_SubGlyph + * + * FT_Bitmap_Size + * + * FT_Init_FreeType + * FT_Done_FreeType + * + * FT_New_Face + * FT_Done_Face + * FT_Reference_Face + * FT_New_Memory_Face + * FT_Face_Properties + * FT_Open_Face + * FT_Open_Args + * FT_Parameter + * FT_Attach_File + * FT_Attach_Stream + * + * FT_Set_Char_Size + * FT_Set_Pixel_Sizes + * FT_Request_Size + * FT_Select_Size + * FT_Size_Request_Type + * FT_Size_RequestRec + * FT_Size_Request + * FT_Set_Transform + * FT_Load_Glyph + * FT_Get_Char_Index + * FT_Get_First_Char + * FT_Get_Next_Char + * FT_Get_Name_Index + * FT_Load_Char + * + * FT_OPEN_MEMORY + * FT_OPEN_STREAM + * FT_OPEN_PATHNAME + * FT_OPEN_DRIVER + * FT_OPEN_PARAMS + * + * FT_LOAD_DEFAULT + * FT_LOAD_RENDER + * FT_LOAD_MONOCHROME + * FT_LOAD_LINEAR_DESIGN + * FT_LOAD_NO_SCALE + * FT_LOAD_NO_HINTING + * FT_LOAD_NO_BITMAP + * FT_LOAD_NO_AUTOHINT + * FT_LOAD_COLOR + * + * FT_LOAD_VERTICAL_LAYOUT + * FT_LOAD_IGNORE_TRANSFORM + * FT_LOAD_FORCE_AUTOHINT + * FT_LOAD_NO_RECURSE + * FT_LOAD_PEDANTIC + * + * FT_LOAD_TARGET_NORMAL + * FT_LOAD_TARGET_LIGHT + * FT_LOAD_TARGET_MONO + * FT_LOAD_TARGET_LCD + * FT_LOAD_TARGET_LCD_V + * + * FT_LOAD_TARGET_MODE + * + * FT_Render_Glyph + * FT_Render_Mode + * FT_Get_Kerning + * FT_Kerning_Mode + * FT_Get_Track_Kerning + * FT_Get_Glyph_Name + * FT_Get_Postscript_Name + * + * FT_CharMapRec + * FT_Select_Charmap + * FT_Set_Charmap + * FT_Get_Charmap_Index + * + * FT_Get_FSType_Flags + * FT_Get_SubGlyph_Info + * + * FT_Face_Internal + * FT_Size_Internal + * FT_Slot_Internal + * + * FT_FACE_FLAG_XXX + * FT_STYLE_FLAG_XXX + * FT_OPEN_XXX + * FT_LOAD_XXX + * FT_LOAD_TARGET_XXX + * FT_SUBGLYPH_FLAG_XXX + * FT_FSTYPE_XXX + * + * FT_HAS_FAST_GLYPHS + * + */ + + + /************************************************************************** + * + * @struct: + * FT_Glyph_Metrics + * + * @description: + * A structure to model the metrics of a single glyph. The values are + * expressed in 26.6 fractional pixel format; if the flag + * @FT_LOAD_NO_SCALE has been used while loading the glyph, values are + * expressed in font units instead. + * + * @fields: + * width :: + * The glyph's width. + * + * height :: + * The glyph's height. + * + * horiBearingX :: + * Left side bearing for horizontal layout. + * + * horiBearingY :: + * Top side bearing for horizontal layout. + * + * horiAdvance :: + * Advance width for horizontal layout. + * + * vertBearingX :: + * Left side bearing for vertical layout. + * + * vertBearingY :: + * Top side bearing for vertical layout. Larger positive values mean + * further below the vertical glyph origin. + * + * vertAdvance :: + * Advance height for vertical layout. Positive values mean the glyph + * has a positive advance downward. + * + * @note: + * If not disabled with @FT_LOAD_NO_HINTING, the values represent + * dimensions of the hinted glyph (in case hinting is applicable). + * + * Stroking a glyph with an outside border does not increase + * `horiAdvance` or `vertAdvance`; you have to manually adjust these + * values to account for the added width and height. + * + * FreeType doesn't use the 'VORG' table data for CFF fonts because it + * doesn't have an interface to quickly retrieve the glyph height. The + * y~coordinate of the vertical origin can be simply computed as + * `vertBearingY + height` after loading a glyph. + */ + typedef struct FT_Glyph_Metrics_ + { + FT_Pos width; + FT_Pos height; + + FT_Pos horiBearingX; + FT_Pos horiBearingY; + FT_Pos horiAdvance; + + FT_Pos vertBearingX; + FT_Pos vertBearingY; + FT_Pos vertAdvance; + + } FT_Glyph_Metrics; + + + /************************************************************************** + * + * @struct: + * FT_Bitmap_Size + * + * @description: + * This structure models the metrics of a bitmap strike (i.e., a set of + * glyphs for a given point size and resolution) in a bitmap font. It is + * used for the `available_sizes` field of @FT_Face. + * + * @fields: + * height :: + * The vertical distance, in pixels, between two consecutive baselines. + * It is always positive. + * + * width :: + * The average width, in pixels, of all glyphs in the strike. + * + * size :: + * The nominal size of the strike in 26.6 fractional points. This + * field is not very useful. + * + * x_ppem :: + * The horizontal ppem (nominal width) in 26.6 fractional pixels. + * + * y_ppem :: + * The vertical ppem (nominal height) in 26.6 fractional pixels. + * + * @note: + * Windows FNT: + * The nominal size given in a FNT font is not reliable. If the driver + * finds it incorrect, it sets `size` to some calculated values, and + * `x_ppem` and `y_ppem` to the pixel width and height given in the + * font, respectively. + * + * TrueType embedded bitmaps: + * `size`, `width`, and `height` values are not contained in the bitmap + * strike itself. They are computed from the global font parameters. + */ + typedef struct FT_Bitmap_Size_ + { + FT_Short height; + FT_Short width; + + FT_Pos size; + + FT_Pos x_ppem; + FT_Pos y_ppem; + + } FT_Bitmap_Size; + + + /*************************************************************************/ + /*************************************************************************/ + /* */ + /* O B J E C T C L A S S E S */ + /* */ + /*************************************************************************/ + /*************************************************************************/ + + /************************************************************************** + * + * @type: + * FT_Library + * + * @description: + * A handle to a FreeType library instance. Each 'library' is completely + * independent from the others; it is the 'root' of a set of objects like + * fonts, faces, sizes, etc. + * + * It also embeds a memory manager (see @FT_Memory), as well as a + * scan-line converter object (see @FT_Raster). + * + * [Since 2.5.6] In multi-threaded applications it is easiest to use one + * `FT_Library` object per thread. In case this is too cumbersome, a + * single `FT_Library` object across threads is possible also, as long as + * a mutex lock is used around @FT_New_Face and @FT_Done_Face. + * + * @note: + * Library objects are normally created by @FT_Init_FreeType, and + * destroyed with @FT_Done_FreeType. If you need reference-counting + * (cf. @FT_Reference_Library), use @FT_New_Library and @FT_Done_Library. + */ + typedef struct FT_LibraryRec_ *FT_Library; + + + /************************************************************************** + * + * @section: + * module_management + * + */ + + /************************************************************************** + * + * @type: + * FT_Module + * + * @description: + * A handle to a given FreeType module object. A module can be a font + * driver, a renderer, or anything else that provides services to the + * former. + */ + typedef struct FT_ModuleRec_* FT_Module; + + + /************************************************************************** + * + * @type: + * FT_Driver + * + * @description: + * A handle to a given FreeType font driver object. A font driver is a + * module capable of creating faces from font files. + */ + typedef struct FT_DriverRec_* FT_Driver; + + + /************************************************************************** + * + * @type: + * FT_Renderer + * + * @description: + * A handle to a given FreeType renderer. A renderer is a module in + * charge of converting a glyph's outline image to a bitmap. It supports + * a single glyph image format, and one or more target surface depths. + */ + typedef struct FT_RendererRec_* FT_Renderer; + + + /************************************************************************** + * + * @section: + * base_interface + * + */ + + /************************************************************************** + * + * @type: + * FT_Face + * + * @description: + * A handle to a typographic face object. A face object models a given + * typeface, in a given style. + * + * @note: + * A face object also owns a single @FT_GlyphSlot object, as well as one + * or more @FT_Size objects. + * + * Use @FT_New_Face or @FT_Open_Face to create a new face object from a + * given filepath or a custom input stream. + * + * Use @FT_Done_Face to destroy it (along with its slot and sizes). + * + * An `FT_Face` object can only be safely used from one thread at a time. + * Similarly, creation and destruction of `FT_Face` with the same + * @FT_Library object can only be done from one thread at a time. On the + * other hand, functions like @FT_Load_Glyph and its siblings are + * thread-safe and do not need the lock to be held as long as the same + * `FT_Face` object is not used from multiple threads at the same time. + * + * @also: + * See @FT_FaceRec for the publicly accessible fields of a given face + * object. + */ + typedef struct FT_FaceRec_* FT_Face; + + + /************************************************************************** + * + * @type: + * FT_Size + * + * @description: + * A handle to an object that models a face scaled to a given character + * size. + * + * @note: + * An @FT_Face has one _active_ @FT_Size object that is used by functions + * like @FT_Load_Glyph to determine the scaling transformation that in + * turn is used to load and hint glyphs and metrics. + * + * You can use @FT_Set_Char_Size, @FT_Set_Pixel_Sizes, @FT_Request_Size + * or even @FT_Select_Size to change the content (i.e., the scaling + * values) of the active @FT_Size. + * + * You can use @FT_New_Size to create additional size objects for a given + * @FT_Face, but they won't be used by other functions until you activate + * it through @FT_Activate_Size. Only one size can be activated at any + * given time per face. + * + * @also: + * See @FT_SizeRec for the publicly accessible fields of a given size + * object. + */ + typedef struct FT_SizeRec_* FT_Size; + + + /************************************************************************** + * + * @type: + * FT_GlyphSlot + * + * @description: + * A handle to a given 'glyph slot'. A slot is a container that can hold + * any of the glyphs contained in its parent face. + * + * In other words, each time you call @FT_Load_Glyph or @FT_Load_Char, + * the slot's content is erased by the new glyph data, i.e., the glyph's + * metrics, its image (bitmap or outline), and other control information. + * + * @also: + * See @FT_GlyphSlotRec for the publicly accessible glyph fields. + */ + typedef struct FT_GlyphSlotRec_* FT_GlyphSlot; + + + /************************************************************************** + * + * @type: + * FT_CharMap + * + * @description: + * A handle to a character map (usually abbreviated to 'charmap'). A + * charmap is used to translate character codes in a given encoding into + * glyph indexes for its parent's face. Some font formats may provide + * several charmaps per font. + * + * Each face object owns zero or more charmaps, but only one of them can + * be 'active', providing the data used by @FT_Get_Char_Index or + * @FT_Load_Char. + * + * The list of available charmaps in a face is available through the + * `face->num_charmaps` and `face->charmaps` fields of @FT_FaceRec. + * + * The currently active charmap is available as `face->charmap`. You + * should call @FT_Set_Charmap to change it. + * + * @note: + * When a new face is created (either through @FT_New_Face or + * @FT_Open_Face), the library looks for a Unicode charmap within the + * list and automatically activates it. If there is no Unicode charmap, + * FreeType doesn't set an 'active' charmap. + * + * @also: + * See @FT_CharMapRec for the publicly accessible fields of a given + * character map. + */ + typedef struct FT_CharMapRec_* FT_CharMap; + + + /************************************************************************** + * + * @macro: + * FT_ENC_TAG + * + * @description: + * This macro converts four-letter tags into an unsigned long. It is + * used to define 'encoding' identifiers (see @FT_Encoding). + * + * @note: + * Since many 16-bit compilers don't like 32-bit enumerations, you should + * redefine this macro in case of problems to something like this: + * + * ``` + * #define FT_ENC_TAG( value, a, b, c, d ) value + * ``` + * + * to get a simple enumeration without assigning special numbers. + */ + +#ifndef FT_ENC_TAG +#define FT_ENC_TAG( value, a, b, c, d ) \ + value = ( ( (FT_UInt32)(a) << 24 ) | \ + ( (FT_UInt32)(b) << 16 ) | \ + ( (FT_UInt32)(c) << 8 ) | \ + (FT_UInt32)(d) ) + +#endif /* FT_ENC_TAG */ + + + /************************************************************************** + * + * @enum: + * FT_Encoding + * + * @description: + * An enumeration to specify character sets supported by charmaps. Used + * in the @FT_Select_Charmap API function. + * + * @note: + * Despite the name, this enumeration lists specific character + * repertories (i.e., charsets), and not text encoding methods (e.g., + * UTF-8, UTF-16, etc.). + * + * Other encodings might be defined in the future. + * + * @values: + * FT_ENCODING_NONE :: + * The encoding value~0 is reserved for all formats except BDF, PCF, + * and Windows FNT; see below for more information. + * + * FT_ENCODING_UNICODE :: + * The Unicode character set. This value covers all versions of the + * Unicode repertoire, including ASCII and Latin-1. Most fonts include + * a Unicode charmap, but not all of them. + * + * For example, if you want to access Unicode value U+1F028 (and the + * font contains it), use value 0x1F028 as the input value for + * @FT_Get_Char_Index. + * + * FT_ENCODING_MS_SYMBOL :: + * Microsoft Symbol encoding, used to encode mathematical symbols and + * wingdings. For more information, see + * 'https://www.microsoft.com/typography/otspec/recom.htm', + * 'http://www.kostis.net/charsets/symbol.htm', and + * 'http://www.kostis.net/charsets/wingding.htm'. + * + * This encoding uses character codes from the PUA (Private Unicode + * Area) in the range U+F020-U+F0FF. + * + * FT_ENCODING_SJIS :: + * Shift JIS encoding for Japanese. More info at + * 'https://en.wikipedia.org/wiki/Shift_JIS'. See note on multi-byte + * encodings below. + * + * FT_ENCODING_PRC :: + * Corresponds to encoding systems mainly for Simplified Chinese as + * used in People's Republic of China (PRC). The encoding layout is + * based on GB~2312 and its supersets GBK and GB~18030. + * + * FT_ENCODING_BIG5 :: + * Corresponds to an encoding system for Traditional Chinese as used in + * Taiwan and Hong Kong. + * + * FT_ENCODING_WANSUNG :: + * Corresponds to the Korean encoding system known as Extended Wansung + * (MS Windows code page 949). For more information see + * 'https://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit949.txt'. + * + * FT_ENCODING_JOHAB :: + * The Korean standard character set (KS~C 5601-1992), which + * corresponds to MS Windows code page 1361. This character set + * includes all possible Hangul character combinations. + * + * FT_ENCODING_ADOBE_LATIN_1 :: + * Corresponds to a Latin-1 encoding as defined in a Type~1 PostScript + * font. It is limited to 256 character codes. + * + * FT_ENCODING_ADOBE_STANDARD :: + * Adobe Standard encoding, as found in Type~1, CFF, and OpenType/CFF + * fonts. It is limited to 256 character codes. + * + * FT_ENCODING_ADOBE_EXPERT :: + * Adobe Expert encoding, as found in Type~1, CFF, and OpenType/CFF + * fonts. It is limited to 256 character codes. + * + * FT_ENCODING_ADOBE_CUSTOM :: + * Corresponds to a custom encoding, as found in Type~1, CFF, and + * OpenType/CFF fonts. It is limited to 256 character codes. + * + * FT_ENCODING_APPLE_ROMAN :: + * Apple roman encoding. Many TrueType and OpenType fonts contain a + * charmap for this 8-bit encoding, since older versions of Mac OS are + * able to use it. + * + * FT_ENCODING_OLD_LATIN_2 :: + * This value is deprecated and was neither used nor reported by + * FreeType. Don't use or test for it. + * + * FT_ENCODING_MS_SJIS :: + * Same as FT_ENCODING_SJIS. Deprecated. + * + * FT_ENCODING_MS_GB2312 :: + * Same as FT_ENCODING_PRC. Deprecated. + * + * FT_ENCODING_MS_BIG5 :: + * Same as FT_ENCODING_BIG5. Deprecated. + * + * FT_ENCODING_MS_WANSUNG :: + * Same as FT_ENCODING_WANSUNG. Deprecated. + * + * FT_ENCODING_MS_JOHAB :: + * Same as FT_ENCODING_JOHAB. Deprecated. + * + * @note: + * By default, FreeType enables a Unicode charmap and tags it with + * `FT_ENCODING_UNICODE` when it is either provided or can be generated + * from PostScript glyph name dictionaries in the font file. All other + * encodings are considered legacy and tagged only if explicitly defined + * in the font file. Otherwise, `FT_ENCODING_NONE` is used. + * + * `FT_ENCODING_NONE` is set by the BDF and PCF drivers if the charmap is + * neither Unicode nor ISO-8859-1 (otherwise it is set to + * `FT_ENCODING_UNICODE`). Use @FT_Get_BDF_Charset_ID to find out which + * encoding is really present. If, for example, the `cs_registry` field + * is 'KOI8' and the `cs_encoding` field is 'R', the font is encoded in + * KOI8-R. + * + * `FT_ENCODING_NONE` is always set (with a single exception) by the + * winfonts driver. Use @FT_Get_WinFNT_Header and examine the `charset` + * field of the @FT_WinFNT_HeaderRec structure to find out which encoding + * is really present. For example, @FT_WinFNT_ID_CP1251 (204) means + * Windows code page 1251 (for Russian). + * + * `FT_ENCODING_NONE` is set if `platform_id` is @TT_PLATFORM_MACINTOSH + * and `encoding_id` is not `TT_MAC_ID_ROMAN` (otherwise it is set to + * `FT_ENCODING_APPLE_ROMAN`). + * + * If `platform_id` is @TT_PLATFORM_MACINTOSH, use the function + * @FT_Get_CMap_Language_ID to query the Mac language ID that may be + * needed to be able to distinguish Apple encoding variants. See + * + * https://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/Readme.txt + * + * to get an idea how to do that. Basically, if the language ID is~0, + * don't use it, otherwise subtract 1 from the language ID. Then examine + * `encoding_id`. If, for example, `encoding_id` is `TT_MAC_ID_ROMAN` + * and the language ID (minus~1) is `TT_MAC_LANGID_GREEK`, it is the + * Greek encoding, not Roman. `TT_MAC_ID_ARABIC` with + * `TT_MAC_LANGID_FARSI` means the Farsi variant the Arabic encoding. + */ + typedef enum FT_Encoding_ + { + FT_ENC_TAG( FT_ENCODING_NONE, 0, 0, 0, 0 ), + + FT_ENC_TAG( FT_ENCODING_MS_SYMBOL, 's', 'y', 'm', 'b' ), + FT_ENC_TAG( FT_ENCODING_UNICODE, 'u', 'n', 'i', 'c' ), + + FT_ENC_TAG( FT_ENCODING_SJIS, 's', 'j', 'i', 's' ), + FT_ENC_TAG( FT_ENCODING_PRC, 'g', 'b', ' ', ' ' ), + FT_ENC_TAG( FT_ENCODING_BIG5, 'b', 'i', 'g', '5' ), + FT_ENC_TAG( FT_ENCODING_WANSUNG, 'w', 'a', 'n', 's' ), + FT_ENC_TAG( FT_ENCODING_JOHAB, 'j', 'o', 'h', 'a' ), + + /* for backward compatibility */ + FT_ENCODING_GB2312 = FT_ENCODING_PRC, + FT_ENCODING_MS_SJIS = FT_ENCODING_SJIS, + FT_ENCODING_MS_GB2312 = FT_ENCODING_PRC, + FT_ENCODING_MS_BIG5 = FT_ENCODING_BIG5, + FT_ENCODING_MS_WANSUNG = FT_ENCODING_WANSUNG, + FT_ENCODING_MS_JOHAB = FT_ENCODING_JOHAB, + + FT_ENC_TAG( FT_ENCODING_ADOBE_STANDARD, 'A', 'D', 'O', 'B' ), + FT_ENC_TAG( FT_ENCODING_ADOBE_EXPERT, 'A', 'D', 'B', 'E' ), + FT_ENC_TAG( FT_ENCODING_ADOBE_CUSTOM, 'A', 'D', 'B', 'C' ), + FT_ENC_TAG( FT_ENCODING_ADOBE_LATIN_1, 'l', 'a', 't', '1' ), + + FT_ENC_TAG( FT_ENCODING_OLD_LATIN_2, 'l', 'a', 't', '2' ), + + FT_ENC_TAG( FT_ENCODING_APPLE_ROMAN, 'a', 'r', 'm', 'n' ) + + } FT_Encoding; + + + /* these constants are deprecated; use the corresponding `FT_Encoding` */ + /* values instead */ +#define ft_encoding_none FT_ENCODING_NONE +#define ft_encoding_unicode FT_ENCODING_UNICODE +#define ft_encoding_symbol FT_ENCODING_MS_SYMBOL +#define ft_encoding_latin_1 FT_ENCODING_ADOBE_LATIN_1 +#define ft_encoding_latin_2 FT_ENCODING_OLD_LATIN_2 +#define ft_encoding_sjis FT_ENCODING_SJIS +#define ft_encoding_gb2312 FT_ENCODING_PRC +#define ft_encoding_big5 FT_ENCODING_BIG5 +#define ft_encoding_wansung FT_ENCODING_WANSUNG +#define ft_encoding_johab FT_ENCODING_JOHAB + +#define ft_encoding_adobe_standard FT_ENCODING_ADOBE_STANDARD +#define ft_encoding_adobe_expert FT_ENCODING_ADOBE_EXPERT +#define ft_encoding_adobe_custom FT_ENCODING_ADOBE_CUSTOM +#define ft_encoding_apple_roman FT_ENCODING_APPLE_ROMAN + + + /************************************************************************** + * + * @struct: + * FT_CharMapRec + * + * @description: + * The base charmap structure. + * + * @fields: + * face :: + * A handle to the parent face object. + * + * encoding :: + * An @FT_Encoding tag identifying the charmap. Use this with + * @FT_Select_Charmap. + * + * platform_id :: + * An ID number describing the platform for the following encoding ID. + * This comes directly from the TrueType specification and gets + * emulated for other formats. + * + * encoding_id :: + * A platform-specific encoding number. This also comes from the + * TrueType specification and gets emulated similarly. + */ + typedef struct FT_CharMapRec_ + { + FT_Face face; + FT_Encoding encoding; + FT_UShort platform_id; + FT_UShort encoding_id; + + } FT_CharMapRec; + + + /*************************************************************************/ + /*************************************************************************/ + /* */ + /* B A S E O B J E C T C L A S S E S */ + /* */ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @type: + * FT_Face_Internal + * + * @description: + * An opaque handle to an `FT_Face_InternalRec` structure that models the + * private data of a given @FT_Face object. + * + * This structure might change between releases of FreeType~2 and is not + * generally available to client applications. + */ + typedef struct FT_Face_InternalRec_* FT_Face_Internal; + + + /************************************************************************** + * + * @struct: + * FT_FaceRec + * + * @description: + * FreeType root face class structure. A face object models a typeface + * in a font file. + * + * @fields: + * num_faces :: + * The number of faces in the font file. Some font formats can have + * multiple faces in a single font file. + * + * face_index :: + * This field holds two different values. Bits 0-15 are the index of + * the face in the font file (starting with value~0). They are set + * to~0 if there is only one face in the font file. + * + * [Since 2.6.1] Bits 16-30 are relevant to GX and OpenType variation + * fonts only, holding the named instance index for the current face + * index (starting with value~1; value~0 indicates font access without + * a named instance). For non-variation fonts, bits 16-30 are ignored. + * If we have the third named instance of face~4, say, `face_index` is + * set to 0x00030004. + * + * Bit 31 is always zero (this is, `face_index` is always a positive + * value). + * + * [Since 2.9] Changing the design coordinates with + * @FT_Set_Var_Design_Coordinates or @FT_Set_Var_Blend_Coordinates does + * not influence the named instance index value (only + * @FT_Set_Named_Instance does that). + * + * face_flags :: + * A set of bit flags that give important information about the face; + * see @FT_FACE_FLAG_XXX for the details. + * + * style_flags :: + * The lower 16~bits contain a set of bit flags indicating the style of + * the face; see @FT_STYLE_FLAG_XXX for the details. + * + * [Since 2.6.1] Bits 16-30 hold the number of named instances + * available for the current face if we have a GX or OpenType variation + * (sub)font. Bit 31 is always zero (this is, `style_flags` is always + * a positive value). Note that a variation font has always at least + * one named instance, namely the default instance. + * + * num_glyphs :: + * The number of glyphs in the face. If the face is scalable and has + * sbits (see `num_fixed_sizes`), it is set to the number of outline + * glyphs. + * + * For CID-keyed fonts (not in an SFNT wrapper) this value gives the + * highest CID used in the font. + * + * family_name :: + * The face's family name. This is an ASCII string, usually in + * English, that describes the typeface's family (like 'Times New + * Roman', 'Bodoni', 'Garamond', etc). This is a least common + * denominator used to list fonts. Some formats (TrueType & OpenType) + * provide localized and Unicode versions of this string. Applications + * should use the format-specific interface to access them. Can be + * `NULL` (e.g., in fonts embedded in a PDF file). + * + * In case the font doesn't provide a specific family name entry, + * FreeType tries to synthesize one, deriving it from other name + * entries. + * + * style_name :: + * The face's style name. This is an ASCII string, usually in English, + * that describes the typeface's style (like 'Italic', 'Bold', + * 'Condensed', etc). Not all font formats provide a style name, so + * this field is optional, and can be set to `NULL`. As for + * `family_name`, some formats provide localized and Unicode versions + * of this string. Applications should use the format-specific + * interface to access them. + * + * num_fixed_sizes :: + * The number of bitmap strikes in the face. Even if the face is + * scalable, there might still be bitmap strikes, which are called + * 'sbits' in that case. + * + * available_sizes :: + * An array of @FT_Bitmap_Size for all bitmap strikes in the face. It + * is set to `NULL` if there is no bitmap strike. + * + * Note that FreeType tries to sanitize the strike data since they are + * sometimes sloppy or incorrect, but this can easily fail. + * + * num_charmaps :: + * The number of charmaps in the face. + * + * charmaps :: + * An array of the charmaps of the face. + * + * generic :: + * A field reserved for client uses. See the @FT_Generic type + * description. + * + * bbox :: + * The font bounding box. Coordinates are expressed in font units (see + * `units_per_EM`). The box is large enough to contain any glyph from + * the font. Thus, `bbox.yMax` can be seen as the 'maximum ascender', + * and `bbox.yMin` as the 'minimum descender'. Only relevant for + * scalable formats. + * + * Note that the bounding box might be off by (at least) one pixel for + * hinted fonts. See @FT_Size_Metrics for further discussion. + * + * units_per_EM :: + * The number of font units per EM square for this face. This is + * typically 2048 for TrueType fonts, and 1000 for Type~1 fonts. Only + * relevant for scalable formats. + * + * ascender :: + * The typographic ascender of the face, expressed in font units. For + * font formats not having this information, it is set to `bbox.yMax`. + * Only relevant for scalable formats. + * + * descender :: + * The typographic descender of the face, expressed in font units. For + * font formats not having this information, it is set to `bbox.yMin`. + * Note that this field is negative for values below the baseline. + * Only relevant for scalable formats. + * + * height :: + * This value is the vertical distance between two consecutive + * baselines, expressed in font units. It is always positive. Only + * relevant for scalable formats. + * + * If you want the global glyph height, use `ascender - descender`. + * + * max_advance_width :: + * The maximum advance width, in font units, for all glyphs in this + * face. This can be used to make word wrapping computations faster. + * Only relevant for scalable formats. + * + * max_advance_height :: + * The maximum advance height, in font units, for all glyphs in this + * face. This is only relevant for vertical layouts, and is set to + * `height` for fonts that do not provide vertical metrics. Only + * relevant for scalable formats. + * + * underline_position :: + * The position, in font units, of the underline line for this face. + * It is the center of the underlining stem. Only relevant for + * scalable formats. + * + * underline_thickness :: + * The thickness, in font units, of the underline for this face. Only + * relevant for scalable formats. + * + * glyph :: + * The face's associated glyph slot(s). + * + * size :: + * The current active size for this face. + * + * charmap :: + * The current active charmap for this face. + * + * @note: + * Fields may be changed after a call to @FT_Attach_File or + * @FT_Attach_Stream. + * + * For an OpenType variation font, the values of the following fields can + * change after a call to @FT_Set_Var_Design_Coordinates (and friends) if + * the font contains an 'MVAR' table: `ascender`, `descender`, `height`, + * `underline_position`, and `underline_thickness`. + * + * Especially for TrueType fonts see also the documentation for + * @FT_Size_Metrics. + */ + typedef struct FT_FaceRec_ + { + FT_Long num_faces; + FT_Long face_index; + + FT_Long face_flags; + FT_Long style_flags; + + FT_Long num_glyphs; + + FT_String* family_name; + FT_String* style_name; + + FT_Int num_fixed_sizes; + FT_Bitmap_Size* available_sizes; + + FT_Int num_charmaps; + FT_CharMap* charmaps; + + FT_Generic generic; + + /*# The following member variables (down to `underline_thickness`) */ + /*# are only relevant to scalable outlines; cf. @FT_Bitmap_Size */ + /*# for bitmap fonts. */ + FT_BBox bbox; + + FT_UShort units_per_EM; + FT_Short ascender; + FT_Short descender; + FT_Short height; + + FT_Short max_advance_width; + FT_Short max_advance_height; + + FT_Short underline_position; + FT_Short underline_thickness; + + FT_GlyphSlot glyph; + FT_Size size; + FT_CharMap charmap; + + /*@private begin */ + + FT_Driver driver; + FT_Memory memory; + FT_Stream stream; + + FT_ListRec sizes_list; + + FT_Generic autohint; /* face-specific auto-hinter data */ + void* extensions; /* unused */ + + FT_Face_Internal internal; + + /*@private end */ + + } FT_FaceRec; + + + /************************************************************************** + * + * @enum: + * FT_FACE_FLAG_XXX + * + * @description: + * A list of bit flags used in the `face_flags` field of the @FT_FaceRec + * structure. They inform client applications of properties of the + * corresponding face. + * + * @values: + * FT_FACE_FLAG_SCALABLE :: + * The face contains outline glyphs. Note that a face can contain + * bitmap strikes also, i.e., a face can have both this flag and + * @FT_FACE_FLAG_FIXED_SIZES set. + * + * FT_FACE_FLAG_FIXED_SIZES :: + * The face contains bitmap strikes. See also the `num_fixed_sizes` + * and `available_sizes` fields of @FT_FaceRec. + * + * FT_FACE_FLAG_FIXED_WIDTH :: + * The face contains fixed-width characters (like Courier, Lucida, + * MonoType, etc.). + * + * FT_FACE_FLAG_SFNT :: + * The face uses the SFNT storage scheme. For now, this means TrueType + * and OpenType. + * + * FT_FACE_FLAG_HORIZONTAL :: + * The face contains horizontal glyph metrics. This should be set for + * all common formats. + * + * FT_FACE_FLAG_VERTICAL :: + * The face contains vertical glyph metrics. This is only available in + * some formats, not all of them. + * + * FT_FACE_FLAG_KERNING :: + * The face contains kerning information. If set, the kerning distance + * can be retrieved using the function @FT_Get_Kerning. Otherwise the + * function always return the vector (0,0). Note that FreeType doesn't + * handle kerning data from the SFNT 'GPOS' table (as present in many + * OpenType fonts). + * + * FT_FACE_FLAG_FAST_GLYPHS :: + * THIS FLAG IS DEPRECATED. DO NOT USE OR TEST IT. + * + * FT_FACE_FLAG_MULTIPLE_MASTERS :: + * The face contains multiple masters and is capable of interpolating + * between them. Supported formats are Adobe MM, TrueType GX, and + * OpenType variation fonts. + * + * See section @multiple_masters for API details. + * + * FT_FACE_FLAG_GLYPH_NAMES :: + * The face contains glyph names, which can be retrieved using + * @FT_Get_Glyph_Name. Note that some TrueType fonts contain broken + * glyph name tables. Use the function @FT_Has_PS_Glyph_Names when + * needed. + * + * FT_FACE_FLAG_EXTERNAL_STREAM :: + * Used internally by FreeType to indicate that a face's stream was + * provided by the client application and should not be destroyed when + * @FT_Done_Face is called. Don't read or test this flag. + * + * FT_FACE_FLAG_HINTER :: + * The font driver has a hinting machine of its own. For example, with + * TrueType fonts, it makes sense to use data from the SFNT 'gasp' + * table only if the native TrueType hinting engine (with the bytecode + * interpreter) is available and active. + * + * FT_FACE_FLAG_CID_KEYED :: + * The face is CID-keyed. In that case, the face is not accessed by + * glyph indices but by CID values. For subsetted CID-keyed fonts this + * has the consequence that not all index values are a valid argument + * to @FT_Load_Glyph. Only the CID values for which corresponding + * glyphs in the subsetted font exist make `FT_Load_Glyph` return + * successfully; in all other cases you get an + * `FT_Err_Invalid_Argument` error. + * + * Note that CID-keyed fonts that are in an SFNT wrapper (this is, all + * OpenType/CFF fonts) don't have this flag set since the glyphs are + * accessed in the normal way (using contiguous indices); the + * 'CID-ness' isn't visible to the application. + * + * FT_FACE_FLAG_TRICKY :: + * The face is 'tricky', this is, it always needs the font format's + * native hinting engine to get a reasonable result. A typical example + * is the old Chinese font `mingli.ttf` (but not `mingliu.ttc`) that + * uses TrueType bytecode instructions to move and scale all of its + * subglyphs. + * + * It is not possible to auto-hint such fonts using + * @FT_LOAD_FORCE_AUTOHINT; it will also ignore @FT_LOAD_NO_HINTING. + * You have to set both @FT_LOAD_NO_HINTING and @FT_LOAD_NO_AUTOHINT to + * really disable hinting; however, you probably never want this except + * for demonstration purposes. + * + * Currently, there are about a dozen TrueType fonts in the list of + * tricky fonts; they are hard-coded in file `ttobjs.c`. + * + * FT_FACE_FLAG_COLOR :: + * [Since 2.5.1] The face has color glyph tables. See @FT_LOAD_COLOR + * for more information. + * + * FT_FACE_FLAG_VARIATION :: + * [Since 2.9] Set if the current face (or named instance) has been + * altered with @FT_Set_MM_Design_Coordinates, + * @FT_Set_Var_Design_Coordinates, or @FT_Set_Var_Blend_Coordinates. + * This flag is unset by a call to @FT_Set_Named_Instance. + */ +#define FT_FACE_FLAG_SCALABLE ( 1L << 0 ) +#define FT_FACE_FLAG_FIXED_SIZES ( 1L << 1 ) +#define FT_FACE_FLAG_FIXED_WIDTH ( 1L << 2 ) +#define FT_FACE_FLAG_SFNT ( 1L << 3 ) +#define FT_FACE_FLAG_HORIZONTAL ( 1L << 4 ) +#define FT_FACE_FLAG_VERTICAL ( 1L << 5 ) +#define FT_FACE_FLAG_KERNING ( 1L << 6 ) +#define FT_FACE_FLAG_FAST_GLYPHS ( 1L << 7 ) +#define FT_FACE_FLAG_MULTIPLE_MASTERS ( 1L << 8 ) +#define FT_FACE_FLAG_GLYPH_NAMES ( 1L << 9 ) +#define FT_FACE_FLAG_EXTERNAL_STREAM ( 1L << 10 ) +#define FT_FACE_FLAG_HINTER ( 1L << 11 ) +#define FT_FACE_FLAG_CID_KEYED ( 1L << 12 ) +#define FT_FACE_FLAG_TRICKY ( 1L << 13 ) +#define FT_FACE_FLAG_COLOR ( 1L << 14 ) +#define FT_FACE_FLAG_VARIATION ( 1L << 15 ) + + + /************************************************************************** + * + * @macro: + * FT_HAS_HORIZONTAL + * + * @description: + * A macro that returns true whenever a face object contains horizontal + * metrics (this is true for all font formats though). + * + * @also: + * @FT_HAS_VERTICAL can be used to check for vertical metrics. + * + */ +#define FT_HAS_HORIZONTAL( face ) \ + ( (face)->face_flags & FT_FACE_FLAG_HORIZONTAL ) + + + /************************************************************************** + * + * @macro: + * FT_HAS_VERTICAL + * + * @description: + * A macro that returns true whenever a face object contains real + * vertical metrics (and not only synthesized ones). + * + */ +#define FT_HAS_VERTICAL( face ) \ + ( (face)->face_flags & FT_FACE_FLAG_VERTICAL ) + + + /************************************************************************** + * + * @macro: + * FT_HAS_KERNING + * + * @description: + * A macro that returns true whenever a face object contains kerning data + * that can be accessed with @FT_Get_Kerning. + * + */ +#define FT_HAS_KERNING( face ) \ + ( (face)->face_flags & FT_FACE_FLAG_KERNING ) + + + /************************************************************************** + * + * @macro: + * FT_IS_SCALABLE + * + * @description: + * A macro that returns true whenever a face object contains a scalable + * font face (true for TrueType, Type~1, Type~42, CID, OpenType/CFF, and + * PFR font formats). + * + */ +#define FT_IS_SCALABLE( face ) \ + ( (face)->face_flags & FT_FACE_FLAG_SCALABLE ) + + + /************************************************************************** + * + * @macro: + * FT_IS_SFNT + * + * @description: + * A macro that returns true whenever a face object contains a font whose + * format is based on the SFNT storage scheme. This usually means: + * TrueType fonts, OpenType fonts, as well as SFNT-based embedded bitmap + * fonts. + * + * If this macro is true, all functions defined in @FT_SFNT_NAMES_H and + * @FT_TRUETYPE_TABLES_H are available. + * + */ +#define FT_IS_SFNT( face ) \ + ( (face)->face_flags & FT_FACE_FLAG_SFNT ) + + + /************************************************************************** + * + * @macro: + * FT_IS_FIXED_WIDTH + * + * @description: + * A macro that returns true whenever a face object contains a font face + * that contains fixed-width (or 'monospace', 'fixed-pitch', etc.) + * glyphs. + * + */ +#define FT_IS_FIXED_WIDTH( face ) \ + ( (face)->face_flags & FT_FACE_FLAG_FIXED_WIDTH ) + + + /************************************************************************** + * + * @macro: + * FT_HAS_FIXED_SIZES + * + * @description: + * A macro that returns true whenever a face object contains some + * embedded bitmaps. See the `available_sizes` field of the @FT_FaceRec + * structure. + * + */ +#define FT_HAS_FIXED_SIZES( face ) \ + ( (face)->face_flags & FT_FACE_FLAG_FIXED_SIZES ) + + + /************************************************************************** + * + * @macro: + * FT_HAS_FAST_GLYPHS + * + * @description: + * Deprecated. + * + */ +#define FT_HAS_FAST_GLYPHS( face ) 0 + + + /************************************************************************** + * + * @macro: + * FT_HAS_GLYPH_NAMES + * + * @description: + * A macro that returns true whenever a face object contains some glyph + * names that can be accessed through @FT_Get_Glyph_Name. + * + */ +#define FT_HAS_GLYPH_NAMES( face ) \ + ( (face)->face_flags & FT_FACE_FLAG_GLYPH_NAMES ) + + + /************************************************************************** + * + * @macro: + * FT_HAS_MULTIPLE_MASTERS + * + * @description: + * A macro that returns true whenever a face object contains some + * multiple masters. The functions provided by @FT_MULTIPLE_MASTERS_H + * are then available to choose the exact design you want. + * + */ +#define FT_HAS_MULTIPLE_MASTERS( face ) \ + ( (face)->face_flags & FT_FACE_FLAG_MULTIPLE_MASTERS ) + + + /************************************************************************** + * + * @macro: + * FT_IS_NAMED_INSTANCE + * + * @description: + * A macro that returns true whenever a face object is a named instance + * of a GX or OpenType variation font. + * + * [Since 2.9] Changing the design coordinates with + * @FT_Set_Var_Design_Coordinates or @FT_Set_Var_Blend_Coordinates does + * not influence the return value of this macro (only + * @FT_Set_Named_Instance does that). + * + * @since: + * 2.7 + * + */ +#define FT_IS_NAMED_INSTANCE( face ) \ + ( (face)->face_index & 0x7FFF0000L ) + + + /************************************************************************** + * + * @macro: + * FT_IS_VARIATION + * + * @description: + * A macro that returns true whenever a face object has been altered by + * @FT_Set_MM_Design_Coordinates, @FT_Set_Var_Design_Coordinates, or + * @FT_Set_Var_Blend_Coordinates. + * + * @since: + * 2.9 + * + */ +#define FT_IS_VARIATION( face ) \ + ( (face)->face_flags & FT_FACE_FLAG_VARIATION ) + + + /************************************************************************** + * + * @macro: + * FT_IS_CID_KEYED + * + * @description: + * A macro that returns true whenever a face object contains a CID-keyed + * font. See the discussion of @FT_FACE_FLAG_CID_KEYED for more details. + * + * If this macro is true, all functions defined in @FT_CID_H are + * available. + * + */ +#define FT_IS_CID_KEYED( face ) \ + ( (face)->face_flags & FT_FACE_FLAG_CID_KEYED ) + + + /************************************************************************** + * + * @macro: + * FT_IS_TRICKY + * + * @description: + * A macro that returns true whenever a face represents a 'tricky' font. + * See the discussion of @FT_FACE_FLAG_TRICKY for more details. + * + */ +#define FT_IS_TRICKY( face ) \ + ( (face)->face_flags & FT_FACE_FLAG_TRICKY ) + + + /************************************************************************** + * + * @macro: + * FT_HAS_COLOR + * + * @description: + * A macro that returns true whenever a face object contains tables for + * color glyphs. + * + * @since: + * 2.5.1 + * + */ +#define FT_HAS_COLOR( face ) \ + ( (face)->face_flags & FT_FACE_FLAG_COLOR ) + + + /************************************************************************** + * + * @enum: + * FT_STYLE_FLAG_XXX + * + * @description: + * A list of bit flags to indicate the style of a given face. These are + * used in the `style_flags` field of @FT_FaceRec. + * + * @values: + * FT_STYLE_FLAG_ITALIC :: + * The face style is italic or oblique. + * + * FT_STYLE_FLAG_BOLD :: + * The face is bold. + * + * @note: + * The style information as provided by FreeType is very basic. More + * details are beyond the scope and should be done on a higher level (for + * example, by analyzing various fields of the 'OS/2' table in SFNT based + * fonts). + */ +#define FT_STYLE_FLAG_ITALIC ( 1 << 0 ) +#define FT_STYLE_FLAG_BOLD ( 1 << 1 ) + + + /************************************************************************** + * + * @type: + * FT_Size_Internal + * + * @description: + * An opaque handle to an `FT_Size_InternalRec` structure, used to model + * private data of a given @FT_Size object. + */ + typedef struct FT_Size_InternalRec_* FT_Size_Internal; + + + /************************************************************************** + * + * @struct: + * FT_Size_Metrics + * + * @description: + * The size metrics structure gives the metrics of a size object. + * + * @fields: + * x_ppem :: + * The width of the scaled EM square in pixels, hence the term 'ppem' + * (pixels per EM). It is also referred to as 'nominal width'. + * + * y_ppem :: + * The height of the scaled EM square in pixels, hence the term 'ppem' + * (pixels per EM). It is also referred to as 'nominal height'. + * + * x_scale :: + * A 16.16 fractional scaling value to convert horizontal metrics from + * font units to 26.6 fractional pixels. Only relevant for scalable + * font formats. + * + * y_scale :: + * A 16.16 fractional scaling value to convert vertical metrics from + * font units to 26.6 fractional pixels. Only relevant for scalable + * font formats. + * + * ascender :: + * The ascender in 26.6 fractional pixels, rounded up to an integer + * value. See @FT_FaceRec for the details. + * + * descender :: + * The descender in 26.6 fractional pixels, rounded down to an integer + * value. See @FT_FaceRec for the details. + * + * height :: + * The height in 26.6 fractional pixels, rounded to an integer value. + * See @FT_FaceRec for the details. + * + * max_advance :: + * The maximum advance width in 26.6 fractional pixels, rounded to an + * integer value. See @FT_FaceRec for the details. + * + * @note: + * The scaling values, if relevant, are determined first during a size + * changing operation. The remaining fields are then set by the driver. + * For scalable formats, they are usually set to scaled values of the + * corresponding fields in @FT_FaceRec. Some values like ascender or + * descender are rounded for historical reasons; more precise values (for + * outline fonts) can be derived by scaling the corresponding @FT_FaceRec + * values manually, with code similar to the following. + * + * ``` + * scaled_ascender = FT_MulFix( face->ascender, + * size_metrics->y_scale ); + * ``` + * + * Note that due to glyph hinting and the selected rendering mode these + * values are usually not exact; consequently, they must be treated as + * unreliable with an error margin of at least one pixel! + * + * Indeed, the only way to get the exact metrics is to render _all_ + * glyphs. As this would be a definite performance hit, it is up to + * client applications to perform such computations. + * + * The `FT_Size_Metrics` structure is valid for bitmap fonts also. + * + * + * **TrueType fonts with native bytecode hinting** + * + * All applications that handle TrueType fonts with native hinting must + * be aware that TTFs expect different rounding of vertical font + * dimensions. The application has to cater for this, especially if it + * wants to rely on a TTF's vertical data (for example, to properly align + * box characters vertically). + * + * Only the application knows _in advance_ that it is going to use native + * hinting for TTFs! FreeType, on the other hand, selects the hinting + * mode not at the time of creating an @FT_Size object but much later, + * namely while calling @FT_Load_Glyph. + * + * Here is some pseudo code that illustrates a possible solution. + * + * ``` + * font_format = FT_Get_Font_Format( face ); + * + * if ( !strcmp( font_format, "TrueType" ) && + * do_native_bytecode_hinting ) + * { + * ascender = ROUND( FT_MulFix( face->ascender, + * size_metrics->y_scale ) ); + * descender = ROUND( FT_MulFix( face->descender, + * size_metrics->y_scale ) ); + * } + * else + * { + * ascender = size_metrics->ascender; + * descender = size_metrics->descender; + * } + * + * height = size_metrics->height; + * max_advance = size_metrics->max_advance; + * ``` + */ + typedef struct FT_Size_Metrics_ + { + FT_UShort x_ppem; /* horizontal pixels per EM */ + FT_UShort y_ppem; /* vertical pixels per EM */ + + FT_Fixed x_scale; /* scaling values used to convert font */ + FT_Fixed y_scale; /* units to 26.6 fractional pixels */ + + FT_Pos ascender; /* ascender in 26.6 frac. pixels */ + FT_Pos descender; /* descender in 26.6 frac. pixels */ + FT_Pos height; /* text height in 26.6 frac. pixels */ + FT_Pos max_advance; /* max horizontal advance, in 26.6 pixels */ + + } FT_Size_Metrics; + + + /************************************************************************** + * + * @struct: + * FT_SizeRec + * + * @description: + * FreeType root size class structure. A size object models a face + * object at a given size. + * + * @fields: + * face :: + * Handle to the parent face object. + * + * generic :: + * A typeless pointer, unused by the FreeType library or any of its + * drivers. It can be used by client applications to link their own + * data to each size object. + * + * metrics :: + * Metrics for this size object. This field is read-only. + */ + typedef struct FT_SizeRec_ + { + FT_Face face; /* parent face object */ + FT_Generic generic; /* generic pointer for client uses */ + FT_Size_Metrics metrics; /* size metrics */ + FT_Size_Internal internal; + + } FT_SizeRec; + + + /************************************************************************** + * + * @struct: + * FT_SubGlyph + * + * @description: + * The subglyph structure is an internal object used to describe + * subglyphs (for example, in the case of composites). + * + * @note: + * The subglyph implementation is not part of the high-level API, hence + * the forward structure declaration. + * + * You can however retrieve subglyph information with + * @FT_Get_SubGlyph_Info. + */ + typedef struct FT_SubGlyphRec_* FT_SubGlyph; + + + /************************************************************************** + * + * @type: + * FT_Slot_Internal + * + * @description: + * An opaque handle to an `FT_Slot_InternalRec` structure, used to model + * private data of a given @FT_GlyphSlot object. + */ + typedef struct FT_Slot_InternalRec_* FT_Slot_Internal; + + + /************************************************************************** + * + * @struct: + * FT_GlyphSlotRec + * + * @description: + * FreeType root glyph slot class structure. A glyph slot is a container + * where individual glyphs can be loaded, be they in outline or bitmap + * format. + * + * @fields: + * library :: + * A handle to the FreeType library instance this slot belongs to. + * + * face :: + * A handle to the parent face object. + * + * next :: + * In some cases (like some font tools), several glyph slots per face + * object can be a good thing. As this is rare, the glyph slots are + * listed through a direct, single-linked list using its `next` field. + * + * glyph_index :: + * [Since 2.10] The glyph index passed as an argument to @FT_Load_Glyph + * while initializing the glyph slot. + * + * generic :: + * A typeless pointer unused by the FreeType library or any of its + * drivers. It can be used by client applications to link their own + * data to each glyph slot object. + * + * metrics :: + * The metrics of the last loaded glyph in the slot. The returned + * values depend on the last load flags (see the @FT_Load_Glyph API + * function) and can be expressed either in 26.6 fractional pixels or + * font units. + * + * Note that even when the glyph image is transformed, the metrics are + * not. + * + * linearHoriAdvance :: + * The advance width of the unhinted glyph. Its value is expressed in + * 16.16 fractional pixels, unless @FT_LOAD_LINEAR_DESIGN is set when + * loading the glyph. This field can be important to perform correct + * WYSIWYG layout. Only relevant for outline glyphs. + * + * linearVertAdvance :: + * The advance height of the unhinted glyph. Its value is expressed in + * 16.16 fractional pixels, unless @FT_LOAD_LINEAR_DESIGN is set when + * loading the glyph. This field can be important to perform correct + * WYSIWYG layout. Only relevant for outline glyphs. + * + * advance :: + * This shorthand is, depending on @FT_LOAD_IGNORE_TRANSFORM, the + * transformed (hinted) advance width for the glyph, in 26.6 fractional + * pixel format. As specified with @FT_LOAD_VERTICAL_LAYOUT, it uses + * either the `horiAdvance` or the `vertAdvance` value of `metrics` + * field. + * + * format :: + * This field indicates the format of the image contained in the glyph + * slot. Typically @FT_GLYPH_FORMAT_BITMAP, @FT_GLYPH_FORMAT_OUTLINE, + * or @FT_GLYPH_FORMAT_COMPOSITE, but other values are possible. + * + * bitmap :: + * This field is used as a bitmap descriptor. Note that the address + * and content of the bitmap buffer can change between calls of + * @FT_Load_Glyph and a few other functions. + * + * bitmap_left :: + * The bitmap's left bearing expressed in integer pixels. + * + * bitmap_top :: + * The bitmap's top bearing expressed in integer pixels. This is the + * distance from the baseline to the top-most glyph scanline, upwards + * y~coordinates being **positive**. + * + * outline :: + * The outline descriptor for the current glyph image if its format is + * @FT_GLYPH_FORMAT_OUTLINE. Once a glyph is loaded, `outline` can be + * transformed, distorted, emboldened, etc. However, it must not be + * freed. + * + * num_subglyphs :: + * The number of subglyphs in a composite glyph. This field is only + * valid for the composite glyph format that should normally only be + * loaded with the @FT_LOAD_NO_RECURSE flag. + * + * subglyphs :: + * An array of subglyph descriptors for composite glyphs. There are + * `num_subglyphs` elements in there. Currently internal to FreeType. + * + * control_data :: + * Certain font drivers can also return the control data for a given + * glyph image (e.g. TrueType bytecode, Type~1 charstrings, etc.). + * This field is a pointer to such data; it is currently internal to + * FreeType. + * + * control_len :: + * This is the length in bytes of the control data. Currently internal + * to FreeType. + * + * other :: + * Reserved. + * + * lsb_delta :: + * The difference between hinted and unhinted left side bearing while + * auto-hinting is active. Zero otherwise. + * + * rsb_delta :: + * The difference between hinted and unhinted right side bearing while + * auto-hinting is active. Zero otherwise. + * + * @note: + * If @FT_Load_Glyph is called with default flags (see @FT_LOAD_DEFAULT) + * the glyph image is loaded in the glyph slot in its native format + * (e.g., an outline glyph for TrueType and Type~1 formats). [Since 2.9] + * The prospective bitmap metrics are calculated according to + * @FT_LOAD_TARGET_XXX and other flags even for the outline glyph, even + * if @FT_LOAD_RENDER is not set. + * + * This image can later be converted into a bitmap by calling + * @FT_Render_Glyph. This function searches the current renderer for the + * native image's format, then invokes it. + * + * The renderer is in charge of transforming the native image through the + * slot's face transformation fields, then converting it into a bitmap + * that is returned in `slot->bitmap`. + * + * Note that `slot->bitmap_left` and `slot->bitmap_top` are also used to + * specify the position of the bitmap relative to the current pen + * position (e.g., coordinates (0,0) on the baseline). Of course, + * `slot->format` is also changed to @FT_GLYPH_FORMAT_BITMAP. + * + * Here is a small pseudo code fragment that shows how to use `lsb_delta` + * and `rsb_delta` to do fractional positioning of glyphs: + * + * ``` + * FT_GlyphSlot slot = face->glyph; + * FT_Pos origin_x = 0; + * + * + * for all glyphs do + * + * + * FT_Outline_Translate( slot->outline, origin_x & 63, 0 ); + * + * + * + * + * + * origin_x += slot->advance.x; + * origin_x += slot->lsb_delta - slot->rsb_delta; + * endfor + * ``` + * + * Here is another small pseudo code fragment that shows how to use + * `lsb_delta` and `rsb_delta` to improve integer positioning of glyphs: + * + * ``` + * FT_GlyphSlot slot = face->glyph; + * FT_Pos origin_x = 0; + * FT_Pos prev_rsb_delta = 0; + * + * + * for all glyphs do + * + * + * + * + * if ( prev_rsb_delta - slot->lsb_delta > 32 ) + * origin_x -= 64; + * else if ( prev_rsb_delta - slot->lsb_delta < -31 ) + * origin_x += 64; + * + * prev_rsb_delta = slot->rsb_delta; + * + * + * + * origin_x += slot->advance.x; + * endfor + * ``` + * + * If you use strong auto-hinting, you **must** apply these delta values! + * Otherwise you will experience far too large inter-glyph spacing at + * small rendering sizes in most cases. Note that it doesn't harm to use + * the above code for other hinting modes also, since the delta values + * are zero then. + */ + typedef struct FT_GlyphSlotRec_ + { + FT_Library library; + FT_Face face; + FT_GlyphSlot next; + FT_UInt glyph_index; /* new in 2.10; was reserved previously */ + FT_Generic generic; + + FT_Glyph_Metrics metrics; + FT_Fixed linearHoriAdvance; + FT_Fixed linearVertAdvance; + FT_Vector advance; + + FT_Glyph_Format format; + + FT_Bitmap bitmap; + FT_Int bitmap_left; + FT_Int bitmap_top; + + FT_Outline outline; + + FT_UInt num_subglyphs; + FT_SubGlyph subglyphs; + + void* control_data; + long control_len; + + FT_Pos lsb_delta; + FT_Pos rsb_delta; + + void* other; + + FT_Slot_Internal internal; + + } FT_GlyphSlotRec; + + + /*************************************************************************/ + /*************************************************************************/ + /* */ + /* F U N C T I O N S */ + /* */ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @function: + * FT_Init_FreeType + * + * @description: + * Initialize a new FreeType library object. The set of modules that are + * registered by this function is determined at build time. + * + * @output: + * alibrary :: + * A handle to a new library object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * In case you want to provide your own memory allocating routines, use + * @FT_New_Library instead, followed by a call to @FT_Add_Default_Modules + * (or a series of calls to @FT_Add_Module) and + * @FT_Set_Default_Properties. + * + * See the documentation of @FT_Library and @FT_Face for multi-threading + * issues. + * + * If you need reference-counting (cf. @FT_Reference_Library), use + * @FT_New_Library and @FT_Done_Library. + * + * If compilation option `FT_CONFIG_OPTION_ENVIRONMENT_PROPERTIES` is + * set, this function reads the `FREETYPE_PROPERTIES` environment + * variable to control driver properties. See section @properties for + * more. + */ + FT_EXPORT( FT_Error ) + FT_Init_FreeType( FT_Library *alibrary ); + + + /************************************************************************** + * + * @function: + * FT_Done_FreeType + * + * @description: + * Destroy a given FreeType library object and all of its children, + * including resources, drivers, faces, sizes, etc. + * + * @input: + * library :: + * A handle to the target library object. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Done_FreeType( FT_Library library ); + + + /************************************************************************** + * + * @enum: + * FT_OPEN_XXX + * + * @description: + * A list of bit field constants used within the `flags` field of the + * @FT_Open_Args structure. + * + * @values: + * FT_OPEN_MEMORY :: + * This is a memory-based stream. + * + * FT_OPEN_STREAM :: + * Copy the stream from the `stream` field. + * + * FT_OPEN_PATHNAME :: + * Create a new input stream from a C~path name. + * + * FT_OPEN_DRIVER :: + * Use the `driver` field. + * + * FT_OPEN_PARAMS :: + * Use the `num_params` and `params` fields. + * + * @note: + * The `FT_OPEN_MEMORY`, `FT_OPEN_STREAM`, and `FT_OPEN_PATHNAME` flags + * are mutually exclusive. + */ +#define FT_OPEN_MEMORY 0x1 +#define FT_OPEN_STREAM 0x2 +#define FT_OPEN_PATHNAME 0x4 +#define FT_OPEN_DRIVER 0x8 +#define FT_OPEN_PARAMS 0x10 + + + /* these constants are deprecated; use the corresponding `FT_OPEN_XXX` */ + /* values instead */ +#define ft_open_memory FT_OPEN_MEMORY +#define ft_open_stream FT_OPEN_STREAM +#define ft_open_pathname FT_OPEN_PATHNAME +#define ft_open_driver FT_OPEN_DRIVER +#define ft_open_params FT_OPEN_PARAMS + + + /************************************************************************** + * + * @struct: + * FT_Parameter + * + * @description: + * A simple structure to pass more or less generic parameters to + * @FT_Open_Face and @FT_Face_Properties. + * + * @fields: + * tag :: + * A four-byte identification tag. + * + * data :: + * A pointer to the parameter data. + * + * @note: + * The ID and function of parameters are driver-specific. See section + * @parameter_tags for more information. + */ + typedef struct FT_Parameter_ + { + FT_ULong tag; + FT_Pointer data; + + } FT_Parameter; + + + /************************************************************************** + * + * @struct: + * FT_Open_Args + * + * @description: + * A structure to indicate how to open a new font file or stream. A + * pointer to such a structure can be used as a parameter for the + * functions @FT_Open_Face and @FT_Attach_Stream. + * + * @fields: + * flags :: + * A set of bit flags indicating how to use the structure. + * + * memory_base :: + * The first byte of the file in memory. + * + * memory_size :: + * The size in bytes of the file in memory. + * + * pathname :: + * A pointer to an 8-bit file pathname. + * + * stream :: + * A handle to a source stream object. + * + * driver :: + * This field is exclusively used by @FT_Open_Face; it simply specifies + * the font driver to use for opening the face. If set to `NULL`, + * FreeType tries to load the face with each one of the drivers in its + * list. + * + * num_params :: + * The number of extra parameters. + * + * params :: + * Extra parameters passed to the font driver when opening a new face. + * + * @note: + * The stream type is determined by the contents of `flags` that are + * tested in the following order by @FT_Open_Face: + * + * If the @FT_OPEN_MEMORY bit is set, assume that this is a memory file + * of `memory_size` bytes, located at `memory_address`. The data are not + * copied, and the client is responsible for releasing and destroying + * them _after_ the corresponding call to @FT_Done_Face. + * + * Otherwise, if the @FT_OPEN_STREAM bit is set, assume that a custom + * input stream `stream` is used. + * + * Otherwise, if the @FT_OPEN_PATHNAME bit is set, assume that this is a + * normal file and use `pathname` to open it. + * + * If the @FT_OPEN_DRIVER bit is set, @FT_Open_Face only tries to open + * the file with the driver whose handler is in `driver`. + * + * If the @FT_OPEN_PARAMS bit is set, the parameters given by + * `num_params` and `params` is used. They are ignored otherwise. + * + * Ideally, both the `pathname` and `params` fields should be tagged as + * 'const'; this is missing for API backward compatibility. In other + * words, applications should treat them as read-only. + */ + typedef struct FT_Open_Args_ + { + FT_UInt flags; + const FT_Byte* memory_base; + FT_Long memory_size; + FT_String* pathname; + FT_Stream stream; + FT_Module driver; + FT_Int num_params; + FT_Parameter* params; + + } FT_Open_Args; + + + /************************************************************************** + * + * @function: + * FT_New_Face + * + * @description: + * Call @FT_Open_Face to open a font by its pathname. + * + * @inout: + * library :: + * A handle to the library resource. + * + * @input: + * pathname :: + * A path to the font file. + * + * face_index :: + * See @FT_Open_Face for a detailed description of this parameter. + * + * @output: + * aface :: + * A handle to a new face object. If `face_index` is greater than or + * equal to zero, it must be non-`NULL`. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Use @FT_Done_Face to destroy the created @FT_Face object (along with + * its slot and sizes). + */ + FT_EXPORT( FT_Error ) + FT_New_Face( FT_Library library, + const char* filepathname, + FT_Long face_index, + FT_Face *aface ); + + + /************************************************************************** + * + * @function: + * FT_New_Memory_Face + * + * @description: + * Call @FT_Open_Face to open a font that has been loaded into memory. + * + * @inout: + * library :: + * A handle to the library resource. + * + * @input: + * file_base :: + * A pointer to the beginning of the font data. + * + * file_size :: + * The size of the memory chunk used by the font data. + * + * face_index :: + * See @FT_Open_Face for a detailed description of this parameter. + * + * @output: + * aface :: + * A handle to a new face object. If `face_index` is greater than or + * equal to zero, it must be non-`NULL`. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You must not deallocate the memory before calling @FT_Done_Face. + */ + FT_EXPORT( FT_Error ) + FT_New_Memory_Face( FT_Library library, + const FT_Byte* file_base, + FT_Long file_size, + FT_Long face_index, + FT_Face *aface ); + + + /************************************************************************** + * + * @function: + * FT_Open_Face + * + * @description: + * Create a face object from a given resource described by @FT_Open_Args. + * + * @inout: + * library :: + * A handle to the library resource. + * + * @input: + * args :: + * A pointer to an `FT_Open_Args` structure that must be filled by the + * caller. + * + * face_index :: + * This field holds two different values. Bits 0-15 are the index of + * the face in the font file (starting with value~0). Set it to~0 if + * there is only one face in the font file. + * + * [Since 2.6.1] Bits 16-30 are relevant to GX and OpenType variation + * fonts only, specifying the named instance index for the current face + * index (starting with value~1; value~0 makes FreeType ignore named + * instances). For non-variation fonts, bits 16-30 are ignored. + * Assuming that you want to access the third named instance in face~4, + * `face_index` should be set to 0x00030004. If you want to access + * face~4 without variation handling, simply set `face_index` to + * value~4. + * + * `FT_Open_Face` and its siblings can be used to quickly check whether + * the font format of a given font resource is supported by FreeType. + * In general, if the `face_index` argument is negative, the function's + * return value is~0 if the font format is recognized, or non-zero + * otherwise. The function allocates a more or less empty face handle + * in `*aface` (if `aface` isn't `NULL`); the only two useful fields in + * this special case are `face->num_faces` and `face->style_flags`. + * For any negative value of `face_index`, `face->num_faces` gives the + * number of faces within the font file. For the negative value + * '-(N+1)' (with 'N' a non-negative 16-bit value), bits 16-30 in + * `face->style_flags` give the number of named instances in face 'N' + * if we have a variation font (or zero otherwise). After examination, + * the returned @FT_Face structure should be deallocated with a call to + * @FT_Done_Face. + * + * @output: + * aface :: + * A handle to a new face object. If `face_index` is greater than or + * equal to zero, it must be non-`NULL`. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Unlike FreeType 1.x, this function automatically creates a glyph slot + * for the face object that can be accessed directly through + * `face->glyph`. + * + * Each new face object created with this function also owns a default + * @FT_Size object, accessible as `face->size`. + * + * One @FT_Library instance can have multiple face objects, this is, + * @FT_Open_Face and its siblings can be called multiple times using the + * same `library` argument. + * + * See the discussion of reference counters in the description of + * @FT_Reference_Face. + * + * @example: + * To loop over all faces, use code similar to the following snippet + * (omitting the error handling). + * + * ``` + * ... + * FT_Face face; + * FT_Long i, num_faces; + * + * + * error = FT_Open_Face( library, args, -1, &face ); + * if ( error ) { ... } + * + * num_faces = face->num_faces; + * FT_Done_Face( face ); + * + * for ( i = 0; i < num_faces; i++ ) + * { + * ... + * error = FT_Open_Face( library, args, i, &face ); + * ... + * FT_Done_Face( face ); + * ... + * } + * ``` + * + * To loop over all valid values for `face_index`, use something similar + * to the following snippet, again without error handling. The code + * accesses all faces immediately (thus only a single call of + * `FT_Open_Face` within the do-loop), with and without named instances. + * + * ``` + * ... + * FT_Face face; + * + * FT_Long num_faces = 0; + * FT_Long num_instances = 0; + * + * FT_Long face_idx = 0; + * FT_Long instance_idx = 0; + * + * + * do + * { + * FT_Long id = ( instance_idx << 16 ) + face_idx; + * + * + * error = FT_Open_Face( library, args, id, &face ); + * if ( error ) { ... } + * + * num_faces = face->num_faces; + * num_instances = face->style_flags >> 16; + * + * ... + * + * FT_Done_Face( face ); + * + * if ( instance_idx < num_instances ) + * instance_idx++; + * else + * { + * face_idx++; + * instance_idx = 0; + * } + * + * } while ( face_idx < num_faces ) + * ``` + */ + FT_EXPORT( FT_Error ) + FT_Open_Face( FT_Library library, + const FT_Open_Args* args, + FT_Long face_index, + FT_Face *aface ); + + + /************************************************************************** + * + * @function: + * FT_Attach_File + * + * @description: + * Call @FT_Attach_Stream to attach a file. + * + * @inout: + * face :: + * The target face object. + * + * @input: + * filepathname :: + * The pathname. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Attach_File( FT_Face face, + const char* filepathname ); + + + /************************************************************************** + * + * @function: + * FT_Attach_Stream + * + * @description: + * 'Attach' data to a face object. Normally, this is used to read + * additional information for the face object. For example, you can + * attach an AFM file that comes with a Type~1 font to get the kerning + * values and other metrics. + * + * @inout: + * face :: + * The target face object. + * + * @input: + * parameters :: + * A pointer to @FT_Open_Args that must be filled by the caller. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The meaning of the 'attach' (i.e., what really happens when the new + * file is read) is not fixed by FreeType itself. It really depends on + * the font format (and thus the font driver). + * + * Client applications are expected to know what they are doing when + * invoking this function. Most drivers simply do not implement file or + * stream attachments. + */ + FT_EXPORT( FT_Error ) + FT_Attach_Stream( FT_Face face, + FT_Open_Args* parameters ); + + + /************************************************************************** + * + * @function: + * FT_Reference_Face + * + * @description: + * A counter gets initialized to~1 at the time an @FT_Face structure is + * created. This function increments the counter. @FT_Done_Face then + * only destroys a face if the counter is~1, otherwise it simply + * decrements the counter. + * + * This function helps in managing life-cycles of structures that + * reference @FT_Face objects. + * + * @input: + * face :: + * A handle to a target face object. + * + * @return: + * FreeType error code. 0~means success. + * + * @since: + * 2.4.2 + */ + FT_EXPORT( FT_Error ) + FT_Reference_Face( FT_Face face ); + + + /************************************************************************** + * + * @function: + * FT_Done_Face + * + * @description: + * Discard a given face object, as well as all of its child slots and + * sizes. + * + * @input: + * face :: + * A handle to a target face object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * See the discussion of reference counters in the description of + * @FT_Reference_Face. + */ + FT_EXPORT( FT_Error ) + FT_Done_Face( FT_Face face ); + + + /************************************************************************** + * + * @function: + * FT_Select_Size + * + * @description: + * Select a bitmap strike. To be more precise, this function sets the + * scaling factors of the active @FT_Size object in a face so that + * bitmaps from this particular strike are taken by @FT_Load_Glyph and + * friends. + * + * @inout: + * face :: + * A handle to a target face object. + * + * @input: + * strike_index :: + * The index of the bitmap strike in the `available_sizes` field of + * @FT_FaceRec structure. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * For bitmaps embedded in outline fonts it is common that only a subset + * of the available glyphs at a given ppem value is available. FreeType + * silently uses outlines if there is no bitmap for a given glyph index. + * + * For GX and OpenType variation fonts, a bitmap strike makes sense only + * if the default instance is active (this is, no glyph variation takes + * place); otherwise, FreeType simply ignores bitmap strikes. The same + * is true for all named instances that are different from the default + * instance. + * + * Don't use this function if you are using the FreeType cache API. + */ + FT_EXPORT( FT_Error ) + FT_Select_Size( FT_Face face, + FT_Int strike_index ); + + + /************************************************************************** + * + * @enum: + * FT_Size_Request_Type + * + * @description: + * An enumeration type that lists the supported size request types, i.e., + * what input size (in font units) maps to the requested output size (in + * pixels, as computed from the arguments of @FT_Size_Request). + * + * @values: + * FT_SIZE_REQUEST_TYPE_NOMINAL :: + * The nominal size. The `units_per_EM` field of @FT_FaceRec is used + * to determine both scaling values. + * + * This is the standard scaling found in most applications. In + * particular, use this size request type for TrueType fonts if they + * provide optical scaling or something similar. Note, however, that + * `units_per_EM` is a rather abstract value which bears no relation to + * the actual size of the glyphs in a font. + * + * FT_SIZE_REQUEST_TYPE_REAL_DIM :: + * The real dimension. The sum of the `ascender` and (minus of) the + * `descender` fields of @FT_FaceRec is used to determine both scaling + * values. + * + * FT_SIZE_REQUEST_TYPE_BBOX :: + * The font bounding box. The width and height of the `bbox` field of + * @FT_FaceRec are used to determine the horizontal and vertical + * scaling value, respectively. + * + * FT_SIZE_REQUEST_TYPE_CELL :: + * The `max_advance_width` field of @FT_FaceRec is used to determine + * the horizontal scaling value; the vertical scaling value is + * determined the same way as @FT_SIZE_REQUEST_TYPE_REAL_DIM does. + * Finally, both scaling values are set to the smaller one. This type + * is useful if you want to specify the font size for, say, a window of + * a given dimension and 80x24 cells. + * + * FT_SIZE_REQUEST_TYPE_SCALES :: + * Specify the scaling values directly. + * + * @note: + * The above descriptions only apply to scalable formats. For bitmap + * formats, the behaviour is up to the driver. + * + * See the note section of @FT_Size_Metrics if you wonder how size + * requesting relates to scaling values. + */ + typedef enum FT_Size_Request_Type_ + { + FT_SIZE_REQUEST_TYPE_NOMINAL, + FT_SIZE_REQUEST_TYPE_REAL_DIM, + FT_SIZE_REQUEST_TYPE_BBOX, + FT_SIZE_REQUEST_TYPE_CELL, + FT_SIZE_REQUEST_TYPE_SCALES, + + FT_SIZE_REQUEST_TYPE_MAX + + } FT_Size_Request_Type; + + + /************************************************************************** + * + * @struct: + * FT_Size_RequestRec + * + * @description: + * A structure to model a size request. + * + * @fields: + * type :: + * See @FT_Size_Request_Type. + * + * width :: + * The desired width, given as a 26.6 fractional point value (with 72pt + * = 1in). + * + * height :: + * The desired height, given as a 26.6 fractional point value (with + * 72pt = 1in). + * + * horiResolution :: + * The horizontal resolution (dpi, i.e., pixels per inch). If set to + * zero, `width` is treated as a 26.6 fractional **pixel** value, which + * gets internally rounded to an integer. + * + * vertResolution :: + * The vertical resolution (dpi, i.e., pixels per inch). If set to + * zero, `height` is treated as a 26.6 fractional **pixel** value, + * which gets internally rounded to an integer. + * + * @note: + * If `width` is zero, the horizontal scaling value is set equal to the + * vertical scaling value, and vice versa. + * + * If `type` is `FT_SIZE_REQUEST_TYPE_SCALES`, `width` and `height` are + * interpreted directly as 16.16 fractional scaling values, without any + * further modification, and both `horiResolution` and `vertResolution` + * are ignored. + */ + typedef struct FT_Size_RequestRec_ + { + FT_Size_Request_Type type; + FT_Long width; + FT_Long height; + FT_UInt horiResolution; + FT_UInt vertResolution; + + } FT_Size_RequestRec; + + + /************************************************************************** + * + * @struct: + * FT_Size_Request + * + * @description: + * A handle to a size request structure. + */ + typedef struct FT_Size_RequestRec_ *FT_Size_Request; + + + /************************************************************************** + * + * @function: + * FT_Request_Size + * + * @description: + * Resize the scale of the active @FT_Size object in a face. + * + * @inout: + * face :: + * A handle to a target face object. + * + * @input: + * req :: + * A pointer to a @FT_Size_RequestRec. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Although drivers may select the bitmap strike matching the request, + * you should not rely on this if you intend to select a particular + * bitmap strike. Use @FT_Select_Size instead in that case. + * + * The relation between the requested size and the resulting glyph size + * is dependent entirely on how the size is defined in the source face. + * The font designer chooses the final size of each glyph relative to + * this size. For more information refer to + * 'https://www.freetype.org/freetype2/docs/glyphs/glyphs-2.html'. + * + * Contrary to @FT_Set_Char_Size, this function doesn't have special code + * to normalize zero-valued widths, heights, or resolutions (which lead + * to errors in most cases). + * + * Don't use this function if you are using the FreeType cache API. + */ + FT_EXPORT( FT_Error ) + FT_Request_Size( FT_Face face, + FT_Size_Request req ); + + + /************************************************************************** + * + * @function: + * FT_Set_Char_Size + * + * @description: + * Call @FT_Request_Size to request the nominal size (in points). + * + * @inout: + * face :: + * A handle to a target face object. + * + * @input: + * char_width :: + * The nominal width, in 26.6 fractional points. + * + * char_height :: + * The nominal height, in 26.6 fractional points. + * + * horz_resolution :: + * The horizontal resolution in dpi. + * + * vert_resolution :: + * The vertical resolution in dpi. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * While this function allows fractional points as input values, the + * resulting ppem value for the given resolution is always rounded to the + * nearest integer. + * + * If either the character width or height is zero, it is set equal to + * the other value. + * + * If either the horizontal or vertical resolution is zero, it is set + * equal to the other value. + * + * A character width or height smaller than 1pt is set to 1pt; if both + * resolution values are zero, they are set to 72dpi. + * + * Don't use this function if you are using the FreeType cache API. + */ + FT_EXPORT( FT_Error ) + FT_Set_Char_Size( FT_Face face, + FT_F26Dot6 char_width, + FT_F26Dot6 char_height, + FT_UInt horz_resolution, + FT_UInt vert_resolution ); + + + /************************************************************************** + * + * @function: + * FT_Set_Pixel_Sizes + * + * @description: + * Call @FT_Request_Size to request the nominal size (in pixels). + * + * @inout: + * face :: + * A handle to the target face object. + * + * @input: + * pixel_width :: + * The nominal width, in pixels. + * + * pixel_height :: + * The nominal height, in pixels. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You should not rely on the resulting glyphs matching or being + * constrained to this pixel size. Refer to @FT_Request_Size to + * understand how requested sizes relate to actual sizes. + * + * Don't use this function if you are using the FreeType cache API. + */ + FT_EXPORT( FT_Error ) + FT_Set_Pixel_Sizes( FT_Face face, + FT_UInt pixel_width, + FT_UInt pixel_height ); + + + /************************************************************************** + * + * @function: + * FT_Load_Glyph + * + * @description: + * Load a glyph into the glyph slot of a face object. + * + * @inout: + * face :: + * A handle to the target face object where the glyph is loaded. + * + * @input: + * glyph_index :: + * The index of the glyph in the font file. For CID-keyed fonts + * (either in PS or in CFF format) this argument specifies the CID + * value. + * + * load_flags :: + * A flag indicating what to load for this glyph. The @FT_LOAD_XXX + * constants can be used to control the glyph loading process (e.g., + * whether the outline should be scaled, whether to load bitmaps or + * not, whether to hint the outline, etc). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The loaded glyph may be transformed. See @FT_Set_Transform for the + * details. + * + * For subsetted CID-keyed fonts, `FT_Err_Invalid_Argument` is returned + * for invalid CID values (this is, for CID values that don't have a + * corresponding glyph in the font). See the discussion of the + * @FT_FACE_FLAG_CID_KEYED flag for more details. + * + * If you receive `FT_Err_Glyph_Too_Big`, try getting the glyph outline + * at EM size, then scale it manually and fill it as a graphics + * operation. + */ + FT_EXPORT( FT_Error ) + FT_Load_Glyph( FT_Face face, + FT_UInt glyph_index, + FT_Int32 load_flags ); + + + /************************************************************************** + * + * @function: + * FT_Load_Char + * + * @description: + * Load a glyph into the glyph slot of a face object, accessed by its + * character code. + * + * @inout: + * face :: + * A handle to a target face object where the glyph is loaded. + * + * @input: + * char_code :: + * The glyph's character code, according to the current charmap used in + * the face. + * + * load_flags :: + * A flag indicating what to load for this glyph. The @FT_LOAD_XXX + * constants can be used to control the glyph loading process (e.g., + * whether the outline should be scaled, whether to load bitmaps or + * not, whether to hint the outline, etc). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function simply calls @FT_Get_Char_Index and @FT_Load_Glyph. + * + * Many fonts contain glyphs that can't be loaded by this function since + * its glyph indices are not listed in any of the font's charmaps. + * + * If no active cmap is set up (i.e., `face->charmap` is zero), the call + * to @FT_Get_Char_Index is omitted, and the function behaves identically + * to @FT_Load_Glyph. + */ + FT_EXPORT( FT_Error ) + FT_Load_Char( FT_Face face, + FT_ULong char_code, + FT_Int32 load_flags ); + + + /************************************************************************** + * + * @enum: + * FT_LOAD_XXX + * + * @description: + * A list of bit field constants for @FT_Load_Glyph to indicate what kind + * of operations to perform during glyph loading. + * + * @values: + * FT_LOAD_DEFAULT :: + * Corresponding to~0, this value is used as the default glyph load + * operation. In this case, the following happens: + * + * 1. FreeType looks for a bitmap for the glyph corresponding to the + * face's current size. If one is found, the function returns. The + * bitmap data can be accessed from the glyph slot (see note below). + * + * 2. If no embedded bitmap is searched for or found, FreeType looks + * for a scalable outline. If one is found, it is loaded from the font + * file, scaled to device pixels, then 'hinted' to the pixel grid in + * order to optimize it. The outline data can be accessed from the + * glyph slot (see note below). + * + * Note that by default the glyph loader doesn't render outlines into + * bitmaps. The following flags are used to modify this default + * behaviour to more specific and useful cases. + * + * FT_LOAD_NO_SCALE :: + * Don't scale the loaded outline glyph but keep it in font units. + * + * This flag implies @FT_LOAD_NO_HINTING and @FT_LOAD_NO_BITMAP, and + * unsets @FT_LOAD_RENDER. + * + * If the font is 'tricky' (see @FT_FACE_FLAG_TRICKY for more), using + * `FT_LOAD_NO_SCALE` usually yields meaningless outlines because the + * subglyphs must be scaled and positioned with hinting instructions. + * This can be solved by loading the font without `FT_LOAD_NO_SCALE` + * and setting the character size to `font->units_per_EM`. + * + * FT_LOAD_NO_HINTING :: + * Disable hinting. This generally generates 'blurrier' bitmap glyphs + * when the glyph are rendered in any of the anti-aliased modes. See + * also the note below. + * + * This flag is implied by @FT_LOAD_NO_SCALE. + * + * FT_LOAD_RENDER :: + * Call @FT_Render_Glyph after the glyph is loaded. By default, the + * glyph is rendered in @FT_RENDER_MODE_NORMAL mode. This can be + * overridden by @FT_LOAD_TARGET_XXX or @FT_LOAD_MONOCHROME. + * + * This flag is unset by @FT_LOAD_NO_SCALE. + * + * FT_LOAD_NO_BITMAP :: + * Ignore bitmap strikes when loading. Bitmap-only fonts ignore this + * flag. + * + * @FT_LOAD_NO_SCALE always sets this flag. + * + * FT_LOAD_VERTICAL_LAYOUT :: + * Load the glyph for vertical text layout. In particular, the + * `advance` value in the @FT_GlyphSlotRec structure is set to the + * `vertAdvance` value of the `metrics` field. + * + * In case @FT_HAS_VERTICAL doesn't return true, you shouldn't use this + * flag currently. Reason is that in this case vertical metrics get + * synthesized, and those values are not always consistent across + * various font formats. + * + * FT_LOAD_FORCE_AUTOHINT :: + * Prefer the auto-hinter over the font's native hinter. See also the + * note below. + * + * FT_LOAD_PEDANTIC :: + * Make the font driver perform pedantic verifications during glyph + * loading and hinting. This is mostly used to detect broken glyphs in + * fonts. By default, FreeType tries to handle broken fonts also. + * + * In particular, errors from the TrueType bytecode engine are not + * passed to the application if this flag is not set; this might result + * in partially hinted or distorted glyphs in case a glyph's bytecode + * is buggy. + * + * FT_LOAD_NO_RECURSE :: + * Don't load composite glyphs recursively. Instead, the font driver + * fills the `num_subglyph` and `subglyphs` values of the glyph slot; + * it also sets `glyph->format` to @FT_GLYPH_FORMAT_COMPOSITE. The + * description of subglyphs can then be accessed with + * @FT_Get_SubGlyph_Info. + * + * Don't use this flag for retrieving metrics information since some + * font drivers only return rudimentary data. + * + * This flag implies @FT_LOAD_NO_SCALE and @FT_LOAD_IGNORE_TRANSFORM. + * + * FT_LOAD_IGNORE_TRANSFORM :: + * Ignore the transform matrix set by @FT_Set_Transform. + * + * FT_LOAD_MONOCHROME :: + * This flag is used with @FT_LOAD_RENDER to indicate that you want to + * render an outline glyph to a 1-bit monochrome bitmap glyph, with + * 8~pixels packed into each byte of the bitmap data. + * + * Note that this has no effect on the hinting algorithm used. You + * should rather use @FT_LOAD_TARGET_MONO so that the + * monochrome-optimized hinting algorithm is used. + * + * FT_LOAD_LINEAR_DESIGN :: + * Keep `linearHoriAdvance` and `linearVertAdvance` fields of + * @FT_GlyphSlotRec in font units. See @FT_GlyphSlotRec for details. + * + * FT_LOAD_NO_AUTOHINT :: + * Disable the auto-hinter. See also the note below. + * + * FT_LOAD_COLOR :: + * Load colored glyphs. There are slight differences depending on the + * font format. + * + * [Since 2.5] Load embedded color bitmap images. The resulting color + * bitmaps, if available, will have the @FT_PIXEL_MODE_BGRA format, + * with pre-multiplied color channels. If the flag is not set and + * color bitmaps are found, they are converted to 256-level gray + * bitmaps, using the @FT_PIXEL_MODE_GRAY format. + * + * [Since 2.10, experimental] If the glyph index contains an entry in + * the face's 'COLR' table with a 'CPAL' palette table (as defined in + * the OpenType specification), make @FT_Render_Glyph provide a default + * blending of the color glyph layers associated with the glyph index, + * using the same bitmap format as embedded color bitmap images. This + * is mainly for convenience; for full control of color layers use + * @FT_Get_Color_Glyph_Layer and FreeType's color functions like + * @FT_Palette_Select instead of setting @FT_LOAD_COLOR for rendering + * so that the client application can handle blending by itself. + * + * FT_LOAD_COMPUTE_METRICS :: + * [Since 2.6.1] Compute glyph metrics from the glyph data, without the + * use of bundled metrics tables (for example, the 'hdmx' table in + * TrueType fonts). This flag is mainly used by font validating or + * font editing applications, which need to ignore, verify, or edit + * those tables. + * + * Currently, this flag is only implemented for TrueType fonts. + * + * FT_LOAD_BITMAP_METRICS_ONLY :: + * [Since 2.7.1] Request loading of the metrics and bitmap image + * information of a (possibly embedded) bitmap glyph without allocating + * or copying the bitmap image data itself. No effect if the target + * glyph is not a bitmap image. + * + * This flag unsets @FT_LOAD_RENDER. + * + * FT_LOAD_CROP_BITMAP :: + * Ignored. Deprecated. + * + * FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH :: + * Ignored. Deprecated. + * + * @note: + * By default, hinting is enabled and the font's native hinter (see + * @FT_FACE_FLAG_HINTER) is preferred over the auto-hinter. You can + * disable hinting by setting @FT_LOAD_NO_HINTING or change the + * precedence by setting @FT_LOAD_FORCE_AUTOHINT. You can also set + * @FT_LOAD_NO_AUTOHINT in case you don't want the auto-hinter to be used + * at all. + * + * See the description of @FT_FACE_FLAG_TRICKY for a special exception + * (affecting only a handful of Asian fonts). + * + * Besides deciding which hinter to use, you can also decide which + * hinting algorithm to use. See @FT_LOAD_TARGET_XXX for details. + * + * Note that the auto-hinter needs a valid Unicode cmap (either a native + * one or synthesized by FreeType) for producing correct results. If a + * font provides an incorrect mapping (for example, assigning the + * character code U+005A, LATIN CAPITAL LETTER~Z, to a glyph depicting a + * mathematical integral sign), the auto-hinter might produce useless + * results. + * + */ +#define FT_LOAD_DEFAULT 0x0 +#define FT_LOAD_NO_SCALE ( 1L << 0 ) +#define FT_LOAD_NO_HINTING ( 1L << 1 ) +#define FT_LOAD_RENDER ( 1L << 2 ) +#define FT_LOAD_NO_BITMAP ( 1L << 3 ) +#define FT_LOAD_VERTICAL_LAYOUT ( 1L << 4 ) +#define FT_LOAD_FORCE_AUTOHINT ( 1L << 5 ) +#define FT_LOAD_CROP_BITMAP ( 1L << 6 ) +#define FT_LOAD_PEDANTIC ( 1L << 7 ) +#define FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH ( 1L << 9 ) +#define FT_LOAD_NO_RECURSE ( 1L << 10 ) +#define FT_LOAD_IGNORE_TRANSFORM ( 1L << 11 ) +#define FT_LOAD_MONOCHROME ( 1L << 12 ) +#define FT_LOAD_LINEAR_DESIGN ( 1L << 13 ) +#define FT_LOAD_NO_AUTOHINT ( 1L << 15 ) + /* Bits 16-19 are used by `FT_LOAD_TARGET_` */ +#define FT_LOAD_COLOR ( 1L << 20 ) +#define FT_LOAD_COMPUTE_METRICS ( 1L << 21 ) +#define FT_LOAD_BITMAP_METRICS_ONLY ( 1L << 22 ) + + /* */ + + /* used internally only by certain font drivers */ +#define FT_LOAD_ADVANCE_ONLY ( 1L << 8 ) +#define FT_LOAD_SBITS_ONLY ( 1L << 14 ) + + + /************************************************************************** + * + * @enum: + * FT_LOAD_TARGET_XXX + * + * @description: + * A list of values to select a specific hinting algorithm for the + * hinter. You should OR one of these values to your `load_flags` when + * calling @FT_Load_Glyph. + * + * Note that a font's native hinters may ignore the hinting algorithm you + * have specified (e.g., the TrueType bytecode interpreter). You can set + * @FT_LOAD_FORCE_AUTOHINT to ensure that the auto-hinter is used. + * + * @values: + * FT_LOAD_TARGET_NORMAL :: + * The default hinting algorithm, optimized for standard gray-level + * rendering. For monochrome output, use @FT_LOAD_TARGET_MONO instead. + * + * FT_LOAD_TARGET_LIGHT :: + * A lighter hinting algorithm for gray-level modes. Many generated + * glyphs are fuzzier but better resemble their original shape. This + * is achieved by snapping glyphs to the pixel grid only vertically + * (Y-axis), as is done by FreeType's new CFF engine or Microsoft's + * ClearType font renderer. This preserves inter-glyph spacing in + * horizontal text. The snapping is done either by the native font + * driver, if the driver itself and the font support it, or by the + * auto-hinter. + * + * Advance widths are rounded to integer values; however, using the + * `lsb_delta` and `rsb_delta` fields of @FT_GlyphSlotRec, it is + * possible to get fractional advance widths for subpixel positioning + * (which is recommended to use). + * + * If configuration option `AF_CONFIG_OPTION_TT_SIZE_METRICS` is + * active, TrueType-like metrics are used to make this mode behave + * similarly as in unpatched FreeType versions between 2.4.6 and 2.7.1 + * (inclusive). + * + * FT_LOAD_TARGET_MONO :: + * Strong hinting algorithm that should only be used for monochrome + * output. The result is probably unpleasant if the glyph is rendered + * in non-monochrome modes. + * + * Note that for outline fonts only the TrueType font driver has proper + * monochrome hinting support, provided the TTFs contain hints for B/W + * rendering (which most fonts no longer provide). If these conditions + * are not met it is very likely that you get ugly results at smaller + * sizes. + * + * FT_LOAD_TARGET_LCD :: + * A variant of @FT_LOAD_TARGET_LIGHT optimized for horizontally + * decimated LCD displays. + * + * FT_LOAD_TARGET_LCD_V :: + * A variant of @FT_LOAD_TARGET_NORMAL optimized for vertically + * decimated LCD displays. + * + * @note: + * You should use only _one_ of the `FT_LOAD_TARGET_XXX` values in your + * `load_flags`. They can't be ORed. + * + * If @FT_LOAD_RENDER is also set, the glyph is rendered in the + * corresponding mode (i.e., the mode that matches the used algorithm + * best). An exception is `FT_LOAD_TARGET_MONO` since it implies + * @FT_LOAD_MONOCHROME. + * + * You can use a hinting algorithm that doesn't correspond to the same + * rendering mode. As an example, it is possible to use the 'light' + * hinting algorithm and have the results rendered in horizontal LCD + * pixel mode, with code like + * + * ``` + * FT_Load_Glyph( face, glyph_index, + * load_flags | FT_LOAD_TARGET_LIGHT ); + * + * FT_Render_Glyph( face->glyph, FT_RENDER_MODE_LCD ); + * ``` + * + * In general, you should stick with one rendering mode. For example, + * switching between @FT_LOAD_TARGET_NORMAL and @FT_LOAD_TARGET_MONO + * enforces a lot of recomputation for TrueType fonts, which is slow. + * Another reason is caching: Selecting a different mode usually causes + * changes in both the outlines and the rasterized bitmaps; it is thus + * necessary to empty the cache after a mode switch to avoid false hits. + * + */ +#define FT_LOAD_TARGET_( x ) ( (FT_Int32)( (x) & 15 ) << 16 ) + +#define FT_LOAD_TARGET_NORMAL FT_LOAD_TARGET_( FT_RENDER_MODE_NORMAL ) +#define FT_LOAD_TARGET_LIGHT FT_LOAD_TARGET_( FT_RENDER_MODE_LIGHT ) +#define FT_LOAD_TARGET_MONO FT_LOAD_TARGET_( FT_RENDER_MODE_MONO ) +#define FT_LOAD_TARGET_LCD FT_LOAD_TARGET_( FT_RENDER_MODE_LCD ) +#define FT_LOAD_TARGET_LCD_V FT_LOAD_TARGET_( FT_RENDER_MODE_LCD_V ) + + + /************************************************************************** + * + * @macro: + * FT_LOAD_TARGET_MODE + * + * @description: + * Return the @FT_Render_Mode corresponding to a given + * @FT_LOAD_TARGET_XXX value. + * + */ +#define FT_LOAD_TARGET_MODE( x ) ( (FT_Render_Mode)( ( (x) >> 16 ) & 15 ) ) + + + /************************************************************************** + * + * @function: + * FT_Set_Transform + * + * @description: + * Set the transformation that is applied to glyph images when they are + * loaded into a glyph slot through @FT_Load_Glyph. + * + * @inout: + * face :: + * A handle to the source face object. + * + * @input: + * matrix :: + * A pointer to the transformation's 2x2 matrix. Use `NULL` for the + * identity matrix. + * delta :: + * A pointer to the translation vector. Use `NULL` for the null vector. + * + * @note: + * The transformation is only applied to scalable image formats after the + * glyph has been loaded. It means that hinting is unaltered by the + * transformation and is performed on the character size given in the + * last call to @FT_Set_Char_Size or @FT_Set_Pixel_Sizes. + * + * Note that this also transforms the `face.glyph.advance` field, but + * **not** the values in `face.glyph.metrics`. + */ + FT_EXPORT( void ) + FT_Set_Transform( FT_Face face, + FT_Matrix* matrix, + FT_Vector* delta ); + + + /************************************************************************** + * + * @enum: + * FT_Render_Mode + * + * @description: + * Render modes supported by FreeType~2. Each mode corresponds to a + * specific type of scanline conversion performed on the outline. + * + * For bitmap fonts and embedded bitmaps the `bitmap->pixel_mode` field + * in the @FT_GlyphSlotRec structure gives the format of the returned + * bitmap. + * + * All modes except @FT_RENDER_MODE_MONO use 256 levels of opacity, + * indicating pixel coverage. Use linear alpha blending and gamma + * correction to correctly render non-monochrome glyph bitmaps onto a + * surface; see @FT_Render_Glyph. + * + * @values: + * FT_RENDER_MODE_NORMAL :: + * Default render mode; it corresponds to 8-bit anti-aliased bitmaps. + * + * FT_RENDER_MODE_LIGHT :: + * This is equivalent to @FT_RENDER_MODE_NORMAL. It is only defined as + * a separate value because render modes are also used indirectly to + * define hinting algorithm selectors. See @FT_LOAD_TARGET_XXX for + * details. + * + * FT_RENDER_MODE_MONO :: + * This mode corresponds to 1-bit bitmaps (with 2~levels of opacity). + * + * FT_RENDER_MODE_LCD :: + * This mode corresponds to horizontal RGB and BGR subpixel displays + * like LCD screens. It produces 8-bit bitmaps that are 3~times the + * width of the original glyph outline in pixels, and which use the + * @FT_PIXEL_MODE_LCD mode. + * + * FT_RENDER_MODE_LCD_V :: + * This mode corresponds to vertical RGB and BGR subpixel displays + * (like PDA screens, rotated LCD displays, etc.). It produces 8-bit + * bitmaps that are 3~times the height of the original glyph outline in + * pixels and use the @FT_PIXEL_MODE_LCD_V mode. + * + * @note: + * Should you define `FT_CONFIG_OPTION_SUBPIXEL_RENDERING` in your + * `ftoption.h`, which enables patented ClearType-style rendering, the + * LCD-optimized glyph bitmaps should be filtered to reduce color fringes + * inherent to this technology. You can either set up LCD filtering with + * @FT_Library_SetLcdFilter or @FT_Face_Properties, or do the filtering + * yourself. The default FreeType LCD rendering technology does not + * require filtering. + * + * The selected render mode only affects vector glyphs of a font. + * Embedded bitmaps often have a different pixel mode like + * @FT_PIXEL_MODE_MONO. You can use @FT_Bitmap_Convert to transform them + * into 8-bit pixmaps. + */ + typedef enum FT_Render_Mode_ + { + FT_RENDER_MODE_NORMAL = 0, + FT_RENDER_MODE_LIGHT, + FT_RENDER_MODE_MONO, + FT_RENDER_MODE_LCD, + FT_RENDER_MODE_LCD_V, + + FT_RENDER_MODE_MAX + + } FT_Render_Mode; + + + /* these constants are deprecated; use the corresponding */ + /* `FT_Render_Mode` values instead */ +#define ft_render_mode_normal FT_RENDER_MODE_NORMAL +#define ft_render_mode_mono FT_RENDER_MODE_MONO + + + /************************************************************************** + * + * @function: + * FT_Render_Glyph + * + * @description: + * Convert a given glyph image to a bitmap. It does so by inspecting the + * glyph image format, finding the relevant renderer, and invoking it. + * + * @inout: + * slot :: + * A handle to the glyph slot containing the image to convert. + * + * @input: + * render_mode :: + * The render mode used to render the glyph image into a bitmap. See + * @FT_Render_Mode for a list of possible values. + * + * If @FT_RENDER_MODE_NORMAL is used, a previous call of @FT_Load_Glyph + * with flag @FT_LOAD_COLOR makes FT_Render_Glyph provide a default + * blending of colored glyph layers associated with the current glyph + * slot (provided the font contains such layers) instead of rendering + * the glyph slot's outline. This is an experimental feature; see + * @FT_LOAD_COLOR for more information. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * To get meaningful results, font scaling values must be set with + * functions like @FT_Set_Char_Size before calling `FT_Render_Glyph`. + * + * When FreeType outputs a bitmap of a glyph, it really outputs an alpha + * coverage map. If a pixel is completely covered by a filled-in + * outline, the bitmap contains 0xFF at that pixel, meaning that + * 0xFF/0xFF fraction of that pixel is covered, meaning the pixel is 100% + * black (or 0% bright). If a pixel is only 50% covered (value 0x80), + * the pixel is made 50% black (50% bright or a middle shade of grey). + * 0% covered means 0% black (100% bright or white). + * + * On high-DPI screens like on smartphones and tablets, the pixels are so + * small that their chance of being completely covered and therefore + * completely black are fairly good. On the low-DPI screens, however, + * the situation is different. The pixels are too large for most of the + * details of a glyph and shades of gray are the norm rather than the + * exception. + * + * This is relevant because all our screens have a second problem: they + * are not linear. 1~+~1 is not~2. Twice the value does not result in + * twice the brightness. When a pixel is only 50% covered, the coverage + * map says 50% black, and this translates to a pixel value of 128 when + * you use 8~bits per channel (0-255). However, this does not translate + * to 50% brightness for that pixel on our sRGB and gamma~2.2 screens. + * Due to their non-linearity, they dwell longer in the darks and only a + * pixel value of about 186 results in 50% brightness -- 128 ends up too + * dark on both bright and dark backgrounds. The net result is that dark + * text looks burnt-out, pixely and blotchy on bright background, bright + * text too frail on dark backgrounds, and colored text on colored + * background (for example, red on green) seems to have dark halos or + * 'dirt' around it. The situation is especially ugly for diagonal stems + * like in 'w' glyph shapes where the quality of FreeType's anti-aliasing + * depends on the correct display of grays. On high-DPI screens where + * smaller, fully black pixels reign supreme, this doesn't matter, but on + * our low-DPI screens with all the gray shades, it does. 0% and 100% + * brightness are the same things in linear and non-linear space, just + * all the shades in-between aren't. + * + * The blending function for placing text over a background is + * + * ``` + * dst = alpha * src + (1 - alpha) * dst , + * ``` + * + * which is known as the OVER operator. + * + * To correctly composite an antialiased pixel of a glyph onto a surface, + * + * 1. take the foreground and background colors (e.g., in sRGB space) + * and apply gamma to get them in a linear space, + * + * 2. use OVER to blend the two linear colors using the glyph pixel + * as the alpha value (remember, the glyph bitmap is an alpha coverage + * bitmap), and + * + * 3. apply inverse gamma to the blended pixel and write it back to + * the image. + * + * Internal testing at Adobe found that a target inverse gamma of~1.8 for + * step~3 gives good results across a wide range of displays with an sRGB + * gamma curve or a similar one. + * + * This process can cost performance. There is an approximation that + * does not need to know about the background color; see + * https://bel.fi/alankila/lcd/ and + * https://bel.fi/alankila/lcd/alpcor.html for details. + * + * **ATTENTION**: Linear blending is even more important when dealing + * with subpixel-rendered glyphs to prevent color-fringing! A + * subpixel-rendered glyph must first be filtered with a filter that + * gives equal weight to the three color primaries and does not exceed a + * sum of 0x100, see section @lcd_rendering. Then the only difference to + * gray linear blending is that subpixel-rendered linear blending is done + * 3~times per pixel: red foreground subpixel to red background subpixel + * and so on for green and blue. + */ + FT_EXPORT( FT_Error ) + FT_Render_Glyph( FT_GlyphSlot slot, + FT_Render_Mode render_mode ); + + + /************************************************************************** + * + * @enum: + * FT_Kerning_Mode + * + * @description: + * An enumeration to specify the format of kerning values returned by + * @FT_Get_Kerning. + * + * @values: + * FT_KERNING_DEFAULT :: + * Return grid-fitted kerning distances in 26.6 fractional pixels. + * + * FT_KERNING_UNFITTED :: + * Return un-grid-fitted kerning distances in 26.6 fractional pixels. + * + * FT_KERNING_UNSCALED :: + * Return the kerning vector in original font units. + * + * @note: + * `FT_KERNING_DEFAULT` returns full pixel values; it also makes FreeType + * heuristically scale down kerning distances at small ppem values so + * that they don't become too big. + * + * Both `FT_KERNING_DEFAULT` and `FT_KERNING_UNFITTED` use the current + * horizontal scaling factor (as set e.g. with @FT_Set_Char_Size) to + * convert font units to pixels. + */ + typedef enum FT_Kerning_Mode_ + { + FT_KERNING_DEFAULT = 0, + FT_KERNING_UNFITTED, + FT_KERNING_UNSCALED + + } FT_Kerning_Mode; + + + /* these constants are deprecated; use the corresponding */ + /* `FT_Kerning_Mode` values instead */ +#define ft_kerning_default FT_KERNING_DEFAULT +#define ft_kerning_unfitted FT_KERNING_UNFITTED +#define ft_kerning_unscaled FT_KERNING_UNSCALED + + + /************************************************************************** + * + * @function: + * FT_Get_Kerning + * + * @description: + * Return the kerning vector between two glyphs of the same face. + * + * @input: + * face :: + * A handle to a source face object. + * + * left_glyph :: + * The index of the left glyph in the kern pair. + * + * right_glyph :: + * The index of the right glyph in the kern pair. + * + * kern_mode :: + * See @FT_Kerning_Mode for more information. Determines the scale and + * dimension of the returned kerning vector. + * + * @output: + * akerning :: + * The kerning vector. This is either in font units, fractional pixels + * (26.6 format), or pixels for scalable formats, and in pixels for + * fixed-sizes formats. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Only horizontal layouts (left-to-right & right-to-left) are supported + * by this method. Other layouts, or more sophisticated kernings, are + * out of the scope of this API function -- they can be implemented + * through format-specific interfaces. + * + * Kerning for OpenType fonts implemented in a 'GPOS' table is not + * supported; use @FT_HAS_KERNING to find out whether a font has data + * that can be extracted with `FT_Get_Kerning`. + */ + FT_EXPORT( FT_Error ) + FT_Get_Kerning( FT_Face face, + FT_UInt left_glyph, + FT_UInt right_glyph, + FT_UInt kern_mode, + FT_Vector *akerning ); + + + /************************************************************************** + * + * @function: + * FT_Get_Track_Kerning + * + * @description: + * Return the track kerning for a given face object at a given size. + * + * @input: + * face :: + * A handle to a source face object. + * + * point_size :: + * The point size in 16.16 fractional points. + * + * degree :: + * The degree of tightness. Increasingly negative values represent + * tighter track kerning, while increasingly positive values represent + * looser track kerning. Value zero means no track kerning. + * + * @output: + * akerning :: + * The kerning in 16.16 fractional points, to be uniformly applied + * between all glyphs. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Currently, only the Type~1 font driver supports track kerning, using + * data from AFM files (if attached with @FT_Attach_File or + * @FT_Attach_Stream). + * + * Only very few AFM files come with track kerning data; please refer to + * Adobe's AFM specification for more details. + */ + FT_EXPORT( FT_Error ) + FT_Get_Track_Kerning( FT_Face face, + FT_Fixed point_size, + FT_Int degree, + FT_Fixed* akerning ); + + + /************************************************************************** + * + * @function: + * FT_Get_Glyph_Name + * + * @description: + * Retrieve the ASCII name of a given glyph in a face. This only works + * for those faces where @FT_HAS_GLYPH_NAMES(face) returns~1. + * + * @input: + * face :: + * A handle to a source face object. + * + * glyph_index :: + * The glyph index. + * + * buffer_max :: + * The maximum number of bytes available in the buffer. + * + * @output: + * buffer :: + * A pointer to a target buffer where the name is copied to. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * An error is returned if the face doesn't provide glyph names or if the + * glyph index is invalid. In all cases of failure, the first byte of + * `buffer` is set to~0 to indicate an empty name. + * + * The glyph name is truncated to fit within the buffer if it is too + * long. The returned string is always zero-terminated. + * + * Be aware that FreeType reorders glyph indices internally so that glyph + * index~0 always corresponds to the 'missing glyph' (called '.notdef'). + * + * This function always returns an error if the config macro + * `FT_CONFIG_OPTION_NO_GLYPH_NAMES` is not defined in `ftoption.h`. + */ + FT_EXPORT( FT_Error ) + FT_Get_Glyph_Name( FT_Face face, + FT_UInt glyph_index, + FT_Pointer buffer, + FT_UInt buffer_max ); + + + /************************************************************************** + * + * @function: + * FT_Get_Postscript_Name + * + * @description: + * Retrieve the ASCII PostScript name of a given face, if available. + * This only works with PostScript, TrueType, and OpenType fonts. + * + * @input: + * face :: + * A handle to the source face object. + * + * @return: + * A pointer to the face's PostScript name. `NULL` if unavailable. + * + * @note: + * The returned pointer is owned by the face and is destroyed with it. + * + * For variation fonts, this string changes if you select a different + * instance, and you have to call `FT_Get_PostScript_Name` again to + * retrieve it. FreeType follows Adobe TechNote #5902, 'Generating + * PostScript Names for Fonts Using OpenType Font Variations'. + * + * https://download.macromedia.com/pub/developer/opentype/tech-notes/5902.AdobePSNameGeneration.html + * + * [Since 2.9] Special PostScript names for named instances are only + * returned if the named instance is set with @FT_Set_Named_Instance (and + * the font has corresponding entries in its 'fvar' table). If + * @FT_IS_VARIATION returns true, the algorithmically derived PostScript + * name is provided, not looking up special entries for named instances. + */ + FT_EXPORT( const char* ) + FT_Get_Postscript_Name( FT_Face face ); + + + /************************************************************************** + * + * @function: + * FT_Select_Charmap + * + * @description: + * Select a given charmap by its encoding tag (as listed in + * `freetype.h`). + * + * @inout: + * face :: + * A handle to the source face object. + * + * @input: + * encoding :: + * A handle to the selected encoding. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function returns an error if no charmap in the face corresponds + * to the encoding queried here. + * + * Because many fonts contain more than a single cmap for Unicode + * encoding, this function has some special code to select the one that + * covers Unicode best ('best' in the sense that a UCS-4 cmap is + * preferred to a UCS-2 cmap). It is thus preferable to @FT_Set_Charmap + * in this case. + */ + FT_EXPORT( FT_Error ) + FT_Select_Charmap( FT_Face face, + FT_Encoding encoding ); + + + /************************************************************************** + * + * @function: + * FT_Set_Charmap + * + * @description: + * Select a given charmap for character code to glyph index mapping. + * + * @inout: + * face :: + * A handle to the source face object. + * + * @input: + * charmap :: + * A handle to the selected charmap. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function returns an error if the charmap is not part of the face + * (i.e., if it is not listed in the `face->charmaps` table). + * + * It also fails if an OpenType type~14 charmap is selected (which + * doesn't map character codes to glyph indices at all). + */ + FT_EXPORT( FT_Error ) + FT_Set_Charmap( FT_Face face, + FT_CharMap charmap ); + + + /************************************************************************** + * + * @function: + * FT_Get_Charmap_Index + * + * @description: + * Retrieve index of a given charmap. + * + * @input: + * charmap :: + * A handle to a charmap. + * + * @return: + * The index into the array of character maps within the face to which + * `charmap` belongs. If an error occurs, -1 is returned. + * + */ + FT_EXPORT( FT_Int ) + FT_Get_Charmap_Index( FT_CharMap charmap ); + + + /************************************************************************** + * + * @function: + * FT_Get_Char_Index + * + * @description: + * Return the glyph index of a given character code. This function uses + * the currently selected charmap to do the mapping. + * + * @input: + * face :: + * A handle to the source face object. + * + * charcode :: + * The character code. + * + * @return: + * The glyph index. 0~means 'undefined character code'. + * + * @note: + * If you use FreeType to manipulate the contents of font files directly, + * be aware that the glyph index returned by this function doesn't always + * correspond to the internal indices used within the file. This is done + * to ensure that value~0 always corresponds to the 'missing glyph'. If + * the first glyph is not named '.notdef', then for Type~1 and Type~42 + * fonts, '.notdef' will be moved into the glyph ID~0 position, and + * whatever was there will be moved to the position '.notdef' had. For + * Type~1 fonts, if there is no '.notdef' glyph at all, then one will be + * created at index~0 and whatever was there will be moved to the last + * index -- Type~42 fonts are considered invalid under this condition. + */ + FT_EXPORT( FT_UInt ) + FT_Get_Char_Index( FT_Face face, + FT_ULong charcode ); + + + /************************************************************************** + * + * @function: + * FT_Get_First_Char + * + * @description: + * Return the first character code in the current charmap of a given + * face, together with its corresponding glyph index. + * + * @input: + * face :: + * A handle to the source face object. + * + * @output: + * agindex :: + * Glyph index of first character code. 0~if charmap is empty. + * + * @return: + * The charmap's first character code. + * + * @note: + * You should use this function together with @FT_Get_Next_Char to parse + * all character codes available in a given charmap. The code should + * look like this: + * + * ``` + * FT_ULong charcode; + * FT_UInt gindex; + * + * + * charcode = FT_Get_First_Char( face, &gindex ); + * while ( gindex != 0 ) + * { + * ... do something with (charcode,gindex) pair ... + * + * charcode = FT_Get_Next_Char( face, charcode, &gindex ); + * } + * ``` + * + * Be aware that character codes can have values up to 0xFFFFFFFF; this + * might happen for non-Unicode or malformed cmaps. However, even with + * regular Unicode encoding, so-called 'last resort fonts' (using SFNT + * cmap format 13, see function @FT_Get_CMap_Format) normally have + * entries for all Unicode characters up to 0x1FFFFF, which can cause *a + * lot* of iterations. + * + * Note that `*agindex` is set to~0 if the charmap is empty. The result + * itself can be~0 in two cases: if the charmap is empty or if the + * value~0 is the first valid character code. + */ + FT_EXPORT( FT_ULong ) + FT_Get_First_Char( FT_Face face, + FT_UInt *agindex ); + + + /************************************************************************** + * + * @function: + * FT_Get_Next_Char + * + * @description: + * Return the next character code in the current charmap of a given face + * following the value `char_code`, as well as the corresponding glyph + * index. + * + * @input: + * face :: + * A handle to the source face object. + * + * char_code :: + * The starting character code. + * + * @output: + * agindex :: + * Glyph index of next character code. 0~if charmap is empty. + * + * @return: + * The charmap's next character code. + * + * @note: + * You should use this function with @FT_Get_First_Char to walk over all + * character codes available in a given charmap. See the note for that + * function for a simple code example. + * + * Note that `*agindex` is set to~0 when there are no more codes in the + * charmap. + */ + FT_EXPORT( FT_ULong ) + FT_Get_Next_Char( FT_Face face, + FT_ULong char_code, + FT_UInt *agindex ); + + + /************************************************************************** + * + * @function: + * FT_Face_Properties + * + * @description: + * Set or override certain (library or module-wide) properties on a + * face-by-face basis. Useful for finer-grained control and avoiding + * locks on shared structures (threads can modify their own faces as they + * see fit). + * + * Contrary to @FT_Property_Set, this function uses @FT_Parameter so that + * you can pass multiple properties to the target face in one call. Note + * that only a subset of the available properties can be controlled. + * + * * @FT_PARAM_TAG_STEM_DARKENING (stem darkening, corresponding to the + * property `no-stem-darkening` provided by the 'autofit', 'cff', + * 'type1', and 't1cid' modules; see @no-stem-darkening). + * + * * @FT_PARAM_TAG_LCD_FILTER_WEIGHTS (LCD filter weights, corresponding + * to function @FT_Library_SetLcdFilterWeights). + * + * * @FT_PARAM_TAG_RANDOM_SEED (seed value for the CFF, Type~1, and CID + * 'random' operator, corresponding to the `random-seed` property + * provided by the 'cff', 'type1', and 't1cid' modules; see + * @random-seed). + * + * Pass `NULL` as `data` in @FT_Parameter for a given tag to reset the + * option and use the library or module default again. + * + * @input: + * face :: + * A handle to the source face object. + * + * num_properties :: + * The number of properties that follow. + * + * properties :: + * A handle to an @FT_Parameter array with `num_properties` elements. + * + * @return: + * FreeType error code. 0~means success. + * + * @example: + * Here is an example that sets three properties. You must define + * `FT_CONFIG_OPTION_SUBPIXEL_RENDERING` to make the LCD filter examples + * work. + * + * ``` + * FT_Parameter property1; + * FT_Bool darken_stems = 1; + * + * FT_Parameter property2; + * FT_LcdFiveTapFilter custom_weight = + * { 0x11, 0x44, 0x56, 0x44, 0x11 }; + * + * FT_Parameter property3; + * FT_Int32 random_seed = 314159265; + * + * FT_Parameter properties[3] = { property1, + * property2, + * property3 }; + * + * + * property1.tag = FT_PARAM_TAG_STEM_DARKENING; + * property1.data = &darken_stems; + * + * property2.tag = FT_PARAM_TAG_LCD_FILTER_WEIGHTS; + * property2.data = custom_weight; + * + * property3.tag = FT_PARAM_TAG_RANDOM_SEED; + * property3.data = &random_seed; + * + * FT_Face_Properties( face, 3, properties ); + * ``` + * + * The next example resets a single property to its default value. + * + * ``` + * FT_Parameter property; + * + * + * property.tag = FT_PARAM_TAG_LCD_FILTER_WEIGHTS; + * property.data = NULL; + * + * FT_Face_Properties( face, 1, &property ); + * ``` + * + * @since: + * 2.8 + * + */ + FT_EXPORT( FT_Error ) + FT_Face_Properties( FT_Face face, + FT_UInt num_properties, + FT_Parameter* properties ); + + + /************************************************************************** + * + * @function: + * FT_Get_Name_Index + * + * @description: + * Return the glyph index of a given glyph name. + * + * @input: + * face :: + * A handle to the source face object. + * + * glyph_name :: + * The glyph name. + * + * @return: + * The glyph index. 0~means 'undefined character code'. + */ + FT_EXPORT( FT_UInt ) + FT_Get_Name_Index( FT_Face face, + FT_String* glyph_name ); + + + /************************************************************************** + * + * @enum: + * FT_SUBGLYPH_FLAG_XXX + * + * @description: + * A list of constants describing subglyphs. Please refer to the 'glyf' + * table description in the OpenType specification for the meaning of the + * various flags (which get synthesized for non-OpenType subglyphs). + * + * https://docs.microsoft.com/en-us/typography/opentype/spec/glyf#composite-glyph-description + * + * @values: + * FT_SUBGLYPH_FLAG_ARGS_ARE_WORDS :: + * FT_SUBGLYPH_FLAG_ARGS_ARE_XY_VALUES :: + * FT_SUBGLYPH_FLAG_ROUND_XY_TO_GRID :: + * FT_SUBGLYPH_FLAG_SCALE :: + * FT_SUBGLYPH_FLAG_XY_SCALE :: + * FT_SUBGLYPH_FLAG_2X2 :: + * FT_SUBGLYPH_FLAG_USE_MY_METRICS :: + * + */ +#define FT_SUBGLYPH_FLAG_ARGS_ARE_WORDS 1 +#define FT_SUBGLYPH_FLAG_ARGS_ARE_XY_VALUES 2 +#define FT_SUBGLYPH_FLAG_ROUND_XY_TO_GRID 4 +#define FT_SUBGLYPH_FLAG_SCALE 8 +#define FT_SUBGLYPH_FLAG_XY_SCALE 0x40 +#define FT_SUBGLYPH_FLAG_2X2 0x80 +#define FT_SUBGLYPH_FLAG_USE_MY_METRICS 0x200 + + + /************************************************************************** + * + * @function: + * FT_Get_SubGlyph_Info + * + * @description: + * Retrieve a description of a given subglyph. Only use it if + * `glyph->format` is @FT_GLYPH_FORMAT_COMPOSITE; an error is returned + * otherwise. + * + * @input: + * glyph :: + * The source glyph slot. + * + * sub_index :: + * The index of the subglyph. Must be less than + * `glyph->num_subglyphs`. + * + * @output: + * p_index :: + * The glyph index of the subglyph. + * + * p_flags :: + * The subglyph flags, see @FT_SUBGLYPH_FLAG_XXX. + * + * p_arg1 :: + * The subglyph's first argument (if any). + * + * p_arg2 :: + * The subglyph's second argument (if any). + * + * p_transform :: + * The subglyph transformation (if any). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The values of `*p_arg1`, `*p_arg2`, and `*p_transform` must be + * interpreted depending on the flags returned in `*p_flags`. See the + * OpenType specification for details. + * + * https://docs.microsoft.com/en-us/typography/opentype/spec/glyf#composite-glyph-description + * + */ + FT_EXPORT( FT_Error ) + FT_Get_SubGlyph_Info( FT_GlyphSlot glyph, + FT_UInt sub_index, + FT_Int *p_index, + FT_UInt *p_flags, + FT_Int *p_arg1, + FT_Int *p_arg2, + FT_Matrix *p_transform ); + + + /************************************************************************** + * + * @section: + * layer_management + * + * @title: + * Glyph Layer Management + * + * @abstract: + * Retrieving and manipulating OpenType's 'COLR' table data. + * + * @description: + * The functions described here allow access of colored glyph layer data + * in OpenType's 'COLR' tables. + */ + + + /************************************************************************** + * + * @struct: + * FT_LayerIterator + * + * @description: + * This iterator object is needed for @FT_Get_Color_Glyph_Layer. + * + * @fields: + * num_layers :: + * The number of glyph layers for the requested glyph index. Will be + * set by @FT_Get_Color_Glyph_Layer. + * + * layer :: + * The current layer. Will be set by @FT_Get_Color_Glyph_Layer. + * + * p :: + * An opaque pointer into 'COLR' table data. The caller must set this + * to `NULL` before the first call of @FT_Get_Color_Glyph_Layer. + */ + typedef struct FT_LayerIterator_ + { + FT_UInt num_layers; + FT_UInt layer; + FT_Byte* p; + + } FT_LayerIterator; + + + /************************************************************************** + * + * @function: + * FT_Get_Color_Glyph_Layer + * + * @description: + * This is an interface to the 'COLR' table in OpenType fonts to + * iteratively retrieve the colored glyph layers associated with the + * current glyph slot. + * + * https://docs.microsoft.com/en-us/typography/opentype/spec/colr + * + * The glyph layer data for a given glyph index, if present, provides an + * alternative, multi-colour glyph representation: Instead of rendering + * the outline or bitmap with the given glyph index, glyphs with the + * indices and colors returned by this function are rendered layer by + * layer. + * + * The returned elements are ordered in the z~direction from bottom to + * top; the 'n'th element should be rendered with the associated palette + * color and blended on top of the already rendered layers (elements 0, + * 1, ..., n-1). + * + * @input: + * face :: + * A handle to the parent face object. + * + * base_glyph :: + * The glyph index the colored glyph layers are associated with. + * + * @inout: + * iterator :: + * An @FT_LayerIterator object. For the first call you should set + * `iterator->p` to `NULL`. For all following calls, simply use the + * same object again. + * + * @output: + * aglyph_index :: + * The glyph index of the current layer. + * + * acolor_index :: + * The color index into the font face's color palette of the current + * layer. The value 0xFFFF is special; it doesn't reference a palette + * entry but indicates that the text foreground color should be used + * instead (to be set up by the application outside of FreeType). + * + * The color palette can be retrieved with @FT_Palette_Select. + * + * @return: + * Value~1 if everything is OK. If there are no more layers (or if there + * are no layers at all), value~0 gets returned. In case of an error, + * value~0 is returned also. + * + * @note: + * This function is necessary if you want to handle glyph layers by + * yourself. In particular, functions that operate with @FT_GlyphRec + * objects (like @FT_Get_Glyph or @FT_Glyph_To_Bitmap) don't have access + * to this information. + * + * Note that @FT_Render_Glyph is able to handle colored glyph layers + * automatically if the @FT_LOAD_COLOR flag is passed to a previous call + * to @FT_Load_Glyph. [This is an experimental feature.] + * + * @example: + * ``` + * FT_Color* palette; + * FT_LayerIterator iterator; + * + * FT_Bool have_layers; + * FT_UInt layer_glyph_index; + * FT_UInt layer_color_index; + * + * + * error = FT_Palette_Select( face, palette_index, &palette ); + * if ( error ) + * palette = NULL; + * + * iterator.p = NULL; + * have_layers = FT_Get_Color_Glyph_Layer( face, + * glyph_index, + * &layer_glyph_index, + * &layer_color_index, + * &iterator ); + * + * if ( palette && have_layers ) + * { + * do + * { + * FT_Color layer_color; + * + * + * if ( layer_color_index == 0xFFFF ) + * layer_color = text_foreground_color; + * else + * layer_color = palette[layer_color_index]; + * + * // Load and render glyph `layer_glyph_index', then + * // blend resulting pixmap (using color `layer_color') + * // with previously created pixmaps. + * + * } while ( FT_Get_Color_Glyph_Layer( face, + * glyph_index, + * &layer_glyph_index, + * &layer_color_index, + * &iterator ) ); + * } + * ``` + */ + FT_EXPORT( FT_Bool ) + FT_Get_Color_Glyph_Layer( FT_Face face, + FT_UInt base_glyph, + FT_UInt *aglyph_index, + FT_UInt *acolor_index, + FT_LayerIterator* iterator ); + + + /************************************************************************** + * + * @section: + * base_interface + * + */ + + /************************************************************************** + * + * @enum: + * FT_FSTYPE_XXX + * + * @description: + * A list of bit flags used in the `fsType` field of the OS/2 table in a + * TrueType or OpenType font and the `FSType` entry in a PostScript font. + * These bit flags are returned by @FT_Get_FSType_Flags; they inform + * client applications of embedding and subsetting restrictions + * associated with a font. + * + * See + * https://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/FontPolicies.pdf + * for more details. + * + * @values: + * FT_FSTYPE_INSTALLABLE_EMBEDDING :: + * Fonts with no fsType bit set may be embedded and permanently + * installed on the remote system by an application. + * + * FT_FSTYPE_RESTRICTED_LICENSE_EMBEDDING :: + * Fonts that have only this bit set must not be modified, embedded or + * exchanged in any manner without first obtaining permission of the + * font software copyright owner. + * + * FT_FSTYPE_PREVIEW_AND_PRINT_EMBEDDING :: + * The font may be embedded and temporarily loaded on the remote + * system. Documents containing Preview & Print fonts must be opened + * 'read-only'; no edits can be applied to the document. + * + * FT_FSTYPE_EDITABLE_EMBEDDING :: + * The font may be embedded but must only be installed temporarily on + * other systems. In contrast to Preview & Print fonts, documents + * containing editable fonts may be opened for reading, editing is + * permitted, and changes may be saved. + * + * FT_FSTYPE_NO_SUBSETTING :: + * The font may not be subsetted prior to embedding. + * + * FT_FSTYPE_BITMAP_EMBEDDING_ONLY :: + * Only bitmaps contained in the font may be embedded; no outline data + * may be embedded. If there are no bitmaps available in the font, + * then the font is unembeddable. + * + * @note: + * The flags are ORed together, thus more than a single value can be + * returned. + * + * While the `fsType` flags can indicate that a font may be embedded, a + * license with the font vendor may be separately required to use the + * font in this way. + */ +#define FT_FSTYPE_INSTALLABLE_EMBEDDING 0x0000 +#define FT_FSTYPE_RESTRICTED_LICENSE_EMBEDDING 0x0002 +#define FT_FSTYPE_PREVIEW_AND_PRINT_EMBEDDING 0x0004 +#define FT_FSTYPE_EDITABLE_EMBEDDING 0x0008 +#define FT_FSTYPE_NO_SUBSETTING 0x0100 +#define FT_FSTYPE_BITMAP_EMBEDDING_ONLY 0x0200 + + + /************************************************************************** + * + * @function: + * FT_Get_FSType_Flags + * + * @description: + * Return the `fsType` flags for a font. + * + * @input: + * face :: + * A handle to the source face object. + * + * @return: + * The `fsType` flags, see @FT_FSTYPE_XXX. + * + * @note: + * Use this function rather than directly reading the `fs_type` field in + * the @PS_FontInfoRec structure, which is only guaranteed to return the + * correct results for Type~1 fonts. + * + * @since: + * 2.3.8 + */ + FT_EXPORT( FT_UShort ) + FT_Get_FSType_Flags( FT_Face face ); + + + /************************************************************************** + * + * @section: + * glyph_variants + * + * @title: + * Unicode Variation Sequences + * + * @abstract: + * The FreeType~2 interface to Unicode Variation Sequences (UVS), using + * the SFNT cmap format~14. + * + * @description: + * Many characters, especially for CJK scripts, have variant forms. They + * are a sort of grey area somewhere between being totally irrelevant and + * semantically distinct; for this reason, the Unicode consortium decided + * to introduce Variation Sequences (VS), consisting of a Unicode base + * character and a variation selector instead of further extending the + * already huge number of characters. + * + * Unicode maintains two different sets, namely 'Standardized Variation + * Sequences' and registered 'Ideographic Variation Sequences' (IVS), + * collected in the 'Ideographic Variation Database' (IVD). + * + * https://unicode.org/Public/UCD/latest/ucd/StandardizedVariants.txt + * https://unicode.org/reports/tr37/ https://unicode.org/ivd/ + * + * To date (January 2017), the character with the most ideographic + * variations is U+9089, having 32 such IVS. + * + * Three Mongolian Variation Selectors have the values U+180B-U+180D; 256 + * generic Variation Selectors are encoded in the ranges U+FE00-U+FE0F + * and U+E0100-U+E01EF. IVS currently use Variation Selectors from the + * range U+E0100-U+E01EF only. + * + * A VS consists of the base character value followed by a single + * Variation Selector. For example, to get the first variation of + * U+9089, you have to write the character sequence `U+9089 U+E0100`. + * + * Adobe and MS decided to support both standardized and ideographic VS + * with a new cmap subtable (format~14). It is an odd subtable because + * it is not a mapping of input code points to glyphs, but contains lists + * of all variations supported by the font. + * + * A variation may be either 'default' or 'non-default' for a given font. + * A default variation is the one you will get for that code point if you + * look it up in the standard Unicode cmap. A non-default variation is a + * different glyph. + * + */ + + + /************************************************************************** + * + * @function: + * FT_Face_GetCharVariantIndex + * + * @description: + * Return the glyph index of a given character code as modified by the + * variation selector. + * + * @input: + * face :: + * A handle to the source face object. + * + * charcode :: + * The character code point in Unicode. + * + * variantSelector :: + * The Unicode code point of the variation selector. + * + * @return: + * The glyph index. 0~means either 'undefined character code', or + * 'undefined selector code', or 'no variation selector cmap subtable', + * or 'current CharMap is not Unicode'. + * + * @note: + * If you use FreeType to manipulate the contents of font files directly, + * be aware that the glyph index returned by this function doesn't always + * correspond to the internal indices used within the file. This is done + * to ensure that value~0 always corresponds to the 'missing glyph'. + * + * This function is only meaningful if + * a) the font has a variation selector cmap sub table, and + * b) the current charmap has a Unicode encoding. + * + * @since: + * 2.3.6 + */ + FT_EXPORT( FT_UInt ) + FT_Face_GetCharVariantIndex( FT_Face face, + FT_ULong charcode, + FT_ULong variantSelector ); + + + /************************************************************************** + * + * @function: + * FT_Face_GetCharVariantIsDefault + * + * @description: + * Check whether this variation of this Unicode character is the one to + * be found in the charmap. + * + * @input: + * face :: + * A handle to the source face object. + * + * charcode :: + * The character codepoint in Unicode. + * + * variantSelector :: + * The Unicode codepoint of the variation selector. + * + * @return: + * 1~if found in the standard (Unicode) cmap, 0~if found in the variation + * selector cmap, or -1 if it is not a variation. + * + * @note: + * This function is only meaningful if the font has a variation selector + * cmap subtable. + * + * @since: + * 2.3.6 + */ + FT_EXPORT( FT_Int ) + FT_Face_GetCharVariantIsDefault( FT_Face face, + FT_ULong charcode, + FT_ULong variantSelector ); + + + /************************************************************************** + * + * @function: + * FT_Face_GetVariantSelectors + * + * @description: + * Return a zero-terminated list of Unicode variation selectors found in + * the font. + * + * @input: + * face :: + * A handle to the source face object. + * + * @return: + * A pointer to an array of selector code points, or `NULL` if there is + * no valid variation selector cmap subtable. + * + * @note: + * The last item in the array is~0; the array is owned by the @FT_Face + * object but can be overwritten or released on the next call to a + * FreeType function. + * + * @since: + * 2.3.6 + */ + FT_EXPORT( FT_UInt32* ) + FT_Face_GetVariantSelectors( FT_Face face ); + + + /************************************************************************** + * + * @function: + * FT_Face_GetVariantsOfChar + * + * @description: + * Return a zero-terminated list of Unicode variation selectors found for + * the specified character code. + * + * @input: + * face :: + * A handle to the source face object. + * + * charcode :: + * The character codepoint in Unicode. + * + * @return: + * A pointer to an array of variation selector code points that are + * active for the given character, or `NULL` if the corresponding list is + * empty. + * + * @note: + * The last item in the array is~0; the array is owned by the @FT_Face + * object but can be overwritten or released on the next call to a + * FreeType function. + * + * @since: + * 2.3.6 + */ + FT_EXPORT( FT_UInt32* ) + FT_Face_GetVariantsOfChar( FT_Face face, + FT_ULong charcode ); + + + /************************************************************************** + * + * @function: + * FT_Face_GetCharsOfVariant + * + * @description: + * Return a zero-terminated list of Unicode character codes found for the + * specified variation selector. + * + * @input: + * face :: + * A handle to the source face object. + * + * variantSelector :: + * The variation selector code point in Unicode. + * + * @return: + * A list of all the code points that are specified by this selector + * (both default and non-default codes are returned) or `NULL` if there + * is no valid cmap or the variation selector is invalid. + * + * @note: + * The last item in the array is~0; the array is owned by the @FT_Face + * object but can be overwritten or released on the next call to a + * FreeType function. + * + * @since: + * 2.3.6 + */ + FT_EXPORT( FT_UInt32* ) + FT_Face_GetCharsOfVariant( FT_Face face, + FT_ULong variantSelector ); + + + /************************************************************************** + * + * @section: + * computations + * + * @title: + * Computations + * + * @abstract: + * Crunching fixed numbers and vectors. + * + * @description: + * This section contains various functions used to perform computations + * on 16.16 fixed-float numbers or 2d vectors. + * + * **Attention**: Most arithmetic functions take `FT_Long` as arguments. + * For historical reasons, FreeType was designed under the assumption + * that `FT_Long` is a 32-bit integer; results can thus be undefined if + * the arguments don't fit into 32 bits. + * + * @order: + * FT_MulDiv + * FT_MulFix + * FT_DivFix + * FT_RoundFix + * FT_CeilFix + * FT_FloorFix + * FT_Vector_Transform + * FT_Matrix_Multiply + * FT_Matrix_Invert + * + */ + + + /************************************************************************** + * + * @function: + * FT_MulDiv + * + * @description: + * Compute `(a*b)/c` with maximum accuracy, using a 64-bit intermediate + * integer whenever necessary. + * + * This function isn't necessarily as fast as some processor-specific + * operations, but is at least completely portable. + * + * @input: + * a :: + * The first multiplier. + * + * b :: + * The second multiplier. + * + * c :: + * The divisor. + * + * @return: + * The result of `(a*b)/c`. This function never traps when trying to + * divide by zero; it simply returns 'MaxInt' or 'MinInt' depending on + * the signs of `a` and `b`. + */ + FT_EXPORT( FT_Long ) + FT_MulDiv( FT_Long a, + FT_Long b, + FT_Long c ); + + + /************************************************************************** + * + * @function: + * FT_MulFix + * + * @description: + * Compute `(a*b)/0x10000` with maximum accuracy. Its main use is to + * multiply a given value by a 16.16 fixed-point factor. + * + * @input: + * a :: + * The first multiplier. + * + * b :: + * The second multiplier. Use a 16.16 factor here whenever possible + * (see note below). + * + * @return: + * The result of `(a*b)/0x10000`. + * + * @note: + * This function has been optimized for the case where the absolute value + * of `a` is less than 2048, and `b` is a 16.16 scaling factor. As this + * happens mainly when scaling from notional units to fractional pixels + * in FreeType, it resulted in noticeable speed improvements between + * versions 2.x and 1.x. + * + * As a conclusion, always try to place a 16.16 factor as the _second_ + * argument of this function; this can make a great difference. + */ + FT_EXPORT( FT_Long ) + FT_MulFix( FT_Long a, + FT_Long b ); + + + /************************************************************************** + * + * @function: + * FT_DivFix + * + * @description: + * Compute `(a*0x10000)/b` with maximum accuracy. Its main use is to + * divide a given value by a 16.16 fixed-point factor. + * + * @input: + * a :: + * The numerator. + * + * b :: + * The denominator. Use a 16.16 factor here. + * + * @return: + * The result of `(a*0x10000)/b`. + */ + FT_EXPORT( FT_Long ) + FT_DivFix( FT_Long a, + FT_Long b ); + + + /************************************************************************** + * + * @function: + * FT_RoundFix + * + * @description: + * Round a 16.16 fixed number. + * + * @input: + * a :: + * The number to be rounded. + * + * @return: + * `a` rounded to the nearest 16.16 fixed integer, halfway cases away + * from zero. + * + * @note: + * The function uses wrap-around arithmetic. + */ + FT_EXPORT( FT_Fixed ) + FT_RoundFix( FT_Fixed a ); + + + /************************************************************************** + * + * @function: + * FT_CeilFix + * + * @description: + * Compute the smallest following integer of a 16.16 fixed number. + * + * @input: + * a :: + * The number for which the ceiling function is to be computed. + * + * @return: + * `a` rounded towards plus infinity. + * + * @note: + * The function uses wrap-around arithmetic. + */ + FT_EXPORT( FT_Fixed ) + FT_CeilFix( FT_Fixed a ); + + + /************************************************************************** + * + * @function: + * FT_FloorFix + * + * @description: + * Compute the largest previous integer of a 16.16 fixed number. + * + * @input: + * a :: + * The number for which the floor function is to be computed. + * + * @return: + * `a` rounded towards minus infinity. + */ + FT_EXPORT( FT_Fixed ) + FT_FloorFix( FT_Fixed a ); + + + /************************************************************************** + * + * @function: + * FT_Vector_Transform + * + * @description: + * Transform a single vector through a 2x2 matrix. + * + * @inout: + * vector :: + * The target vector to transform. + * + * @input: + * matrix :: + * A pointer to the source 2x2 matrix. + * + * @note: + * The result is undefined if either `vector` or `matrix` is invalid. + */ + FT_EXPORT( void ) + FT_Vector_Transform( FT_Vector* vector, + const FT_Matrix* matrix ); + + + /************************************************************************** + * + * @section: + * version + * + * @title: + * FreeType Version + * + * @abstract: + * Functions and macros related to FreeType versions. + * + * @description: + * Note that those functions and macros are of limited use because even a + * new release of FreeType with only documentation changes increases the + * version number. + * + * @order: + * FT_Library_Version + * + * FREETYPE_MAJOR + * FREETYPE_MINOR + * FREETYPE_PATCH + * + * FT_Face_CheckTrueTypePatents + * FT_Face_SetUnpatentedHinting + * + */ + + + /************************************************************************** + * + * @enum: + * FREETYPE_XXX + * + * @description: + * These three macros identify the FreeType source code version. Use + * @FT_Library_Version to access them at runtime. + * + * @values: + * FREETYPE_MAJOR :: + * The major version number. + * FREETYPE_MINOR :: + * The minor version number. + * FREETYPE_PATCH :: + * The patch level. + * + * @note: + * The version number of FreeType if built as a dynamic link library with + * the 'libtool' package is _not_ controlled by these three macros. + * + */ +#define FREETYPE_MAJOR 2 +#define FREETYPE_MINOR 10 +#define FREETYPE_PATCH 0 + + + /************************************************************************** + * + * @function: + * FT_Library_Version + * + * @description: + * Return the version of the FreeType library being used. This is useful + * when dynamically linking to the library, since one cannot use the + * macros @FREETYPE_MAJOR, @FREETYPE_MINOR, and @FREETYPE_PATCH. + * + * @input: + * library :: + * A source library handle. + * + * @output: + * amajor :: + * The major version number. + * + * aminor :: + * The minor version number. + * + * apatch :: + * The patch version number. + * + * @note: + * The reason why this function takes a `library` argument is because + * certain programs implement library initialization in a custom way that + * doesn't use @FT_Init_FreeType. + * + * In such cases, the library version might not be available before the + * library object has been created. + */ + FT_EXPORT( void ) + FT_Library_Version( FT_Library library, + FT_Int *amajor, + FT_Int *aminor, + FT_Int *apatch ); + + + /************************************************************************** + * + * @function: + * FT_Face_CheckTrueTypePatents + * + * @description: + * Deprecated, does nothing. + * + * @input: + * face :: + * A face handle. + * + * @return: + * Always returns false. + * + * @note: + * Since May 2010, TrueType hinting is no longer patented. + * + * @since: + * 2.3.5 + */ + FT_EXPORT( FT_Bool ) + FT_Face_CheckTrueTypePatents( FT_Face face ); + + + /************************************************************************** + * + * @function: + * FT_Face_SetUnpatentedHinting + * + * @description: + * Deprecated, does nothing. + * + * @input: + * face :: + * A face handle. + * + * value :: + * New boolean setting. + * + * @return: + * Always returns false. + * + * @note: + * Since May 2010, TrueType hinting is no longer patented. + * + * @since: + * 2.3.5 + */ + FT_EXPORT( FT_Bool ) + FT_Face_SetUnpatentedHinting( FT_Face face, + FT_Bool value ); + + /* */ + + +FT_END_HEADER + +#endif /* FREETYPE_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftadvanc.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftadvanc.h new file mode 100644 index 0000000..95c38f9 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftadvanc.h @@ -0,0 +1,188 @@ +/**************************************************************************** + * + * ftadvanc.h + * + * Quick computation of advance widths (specification only). + * + * Copyright (C) 2008-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTADVANC_H_ +#define FTADVANC_H_ + + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * quick_advance + * + * @title: + * Quick retrieval of advance values + * + * @abstract: + * Retrieve horizontal and vertical advance values without processing + * glyph outlines, if possible. + * + * @description: + * This section contains functions to quickly extract advance values + * without handling glyph outlines, if possible. + * + * @order: + * FT_Get_Advance + * FT_Get_Advances + * + */ + + + /************************************************************************** + * + * @enum: + * FT_ADVANCE_FLAG_FAST_ONLY + * + * @description: + * A bit-flag to be OR-ed with the `flags` parameter of the + * @FT_Get_Advance and @FT_Get_Advances functions. + * + * If set, it indicates that you want these functions to fail if the + * corresponding hinting mode or font driver doesn't allow for very quick + * advance computation. + * + * Typically, glyphs that are either unscaled, unhinted, bitmapped, or + * light-hinted can have their advance width computed very quickly. + * + * Normal and bytecode hinted modes that require loading, scaling, and + * hinting of the glyph outline, are extremely slow by comparison. + */ +#define FT_ADVANCE_FLAG_FAST_ONLY 0x20000000L + + + /************************************************************************** + * + * @function: + * FT_Get_Advance + * + * @description: + * Retrieve the advance value of a given glyph outline in an @FT_Face. + * + * @input: + * face :: + * The source @FT_Face handle. + * + * gindex :: + * The glyph index. + * + * load_flags :: + * A set of bit flags similar to those used when calling + * @FT_Load_Glyph, used to determine what kind of advances you need. + * @output: + * padvance :: + * The advance value. If scaling is performed (based on the value of + * `load_flags`), the advance value is in 16.16 format. Otherwise, it + * is in font units. + * + * If @FT_LOAD_VERTICAL_LAYOUT is set, this is the vertical advance + * corresponding to a vertical layout. Otherwise, it is the horizontal + * advance in a horizontal layout. + * + * @return: + * FreeType error code. 0 means success. + * + * @note: + * This function may fail if you use @FT_ADVANCE_FLAG_FAST_ONLY and if + * the corresponding font backend doesn't have a quick way to retrieve + * the advances. + * + * A scaled advance is returned in 16.16 format but isn't transformed by + * the affine transformation specified by @FT_Set_Transform. + */ + FT_EXPORT( FT_Error ) + FT_Get_Advance( FT_Face face, + FT_UInt gindex, + FT_Int32 load_flags, + FT_Fixed *padvance ); + + + /************************************************************************** + * + * @function: + * FT_Get_Advances + * + * @description: + * Retrieve the advance values of several glyph outlines in an @FT_Face. + * + * @input: + * face :: + * The source @FT_Face handle. + * + * start :: + * The first glyph index. + * + * count :: + * The number of advance values you want to retrieve. + * + * load_flags :: + * A set of bit flags similar to those used when calling + * @FT_Load_Glyph. + * + * @output: + * padvance :: + * The advance values. This array, to be provided by the caller, must + * contain at least `count` elements. + * + * If scaling is performed (based on the value of `load_flags`), the + * advance values are in 16.16 format. Otherwise, they are in font + * units. + * + * If @FT_LOAD_VERTICAL_LAYOUT is set, these are the vertical advances + * corresponding to a vertical layout. Otherwise, they are the + * horizontal advances in a horizontal layout. + * + * @return: + * FreeType error code. 0 means success. + * + * @note: + * This function may fail if you use @FT_ADVANCE_FLAG_FAST_ONLY and if + * the corresponding font backend doesn't have a quick way to retrieve + * the advances. + * + * Scaled advances are returned in 16.16 format but aren't transformed by + * the affine transformation specified by @FT_Set_Transform. + */ + FT_EXPORT( FT_Error ) + FT_Get_Advances( FT_Face face, + FT_UInt start, + FT_UInt count, + FT_Int32 load_flags, + FT_Fixed *padvances ); + + /* */ + + +FT_END_HEADER + +#endif /* FTADVANC_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftbbox.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftbbox.h new file mode 100644 index 0000000..22da70c --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftbbox.h @@ -0,0 +1,102 @@ +/**************************************************************************** + * + * ftbbox.h + * + * FreeType exact bbox computation (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * This component has a _single_ role: to compute exact outline bounding + * boxes. + * + * It is separated from the rest of the engine for various technical + * reasons. It may well be integrated in 'ftoutln' later. + * + */ + + +#ifndef FTBBOX_H_ +#define FTBBOX_H_ + + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * outline_processing + * + */ + + + /************************************************************************** + * + * @function: + * FT_Outline_Get_BBox + * + * @description: + * Compute the exact bounding box of an outline. This is slower than + * computing the control box. However, it uses an advanced algorithm + * that returns _very_ quickly when the two boxes coincide. Otherwise, + * the outline Bezier arcs are traversed to extract their extrema. + * + * @input: + * outline :: + * A pointer to the source outline. + * + * @output: + * abbox :: + * The outline's exact bounding box. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If the font is tricky and the glyph has been loaded with + * @FT_LOAD_NO_SCALE, the resulting BBox is meaningless. To get + * reasonable values for the BBox it is necessary to load the glyph at a + * large ppem value (so that the hinting instructions can properly shift + * and scale the subglyphs), then extracting the BBox, which can be + * eventually converted back to font units. + */ + FT_EXPORT( FT_Error ) + FT_Outline_Get_BBox( FT_Outline* outline, + FT_BBox *abbox ); + + /* */ + + +FT_END_HEADER + +#endif /* FTBBOX_H_ */ + + +/* END */ + + +/* Local Variables: */ +/* coding: utf-8 */ +/* End: */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftbdf.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftbdf.h new file mode 100644 index 0000000..1c46da5 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftbdf.h @@ -0,0 +1,213 @@ +/**************************************************************************** + * + * ftbdf.h + * + * FreeType API for accessing BDF-specific strings (specification). + * + * Copyright (C) 2002-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTBDF_H_ +#define FTBDF_H_ + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * bdf_fonts + * + * @title: + * BDF and PCF Files + * + * @abstract: + * BDF and PCF specific API. + * + * @description: + * This section contains the declaration of functions specific to BDF and + * PCF fonts. + * + */ + + + /************************************************************************** + * + * @enum: + * BDF_PropertyType + * + * @description: + * A list of BDF property types. + * + * @values: + * BDF_PROPERTY_TYPE_NONE :: + * Value~0 is used to indicate a missing property. + * + * BDF_PROPERTY_TYPE_ATOM :: + * Property is a string atom. + * + * BDF_PROPERTY_TYPE_INTEGER :: + * Property is a 32-bit signed integer. + * + * BDF_PROPERTY_TYPE_CARDINAL :: + * Property is a 32-bit unsigned integer. + */ + typedef enum BDF_PropertyType_ + { + BDF_PROPERTY_TYPE_NONE = 0, + BDF_PROPERTY_TYPE_ATOM = 1, + BDF_PROPERTY_TYPE_INTEGER = 2, + BDF_PROPERTY_TYPE_CARDINAL = 3 + + } BDF_PropertyType; + + + /************************************************************************** + * + * @type: + * BDF_Property + * + * @description: + * A handle to a @BDF_PropertyRec structure to model a given BDF/PCF + * property. + */ + typedef struct BDF_PropertyRec_* BDF_Property; + + + /************************************************************************** + * + * @struct: + * BDF_PropertyRec + * + * @description: + * This structure models a given BDF/PCF property. + * + * @fields: + * type :: + * The property type. + * + * u.atom :: + * The atom string, if type is @BDF_PROPERTY_TYPE_ATOM. May be + * `NULL`, indicating an empty string. + * + * u.integer :: + * A signed integer, if type is @BDF_PROPERTY_TYPE_INTEGER. + * + * u.cardinal :: + * An unsigned integer, if type is @BDF_PROPERTY_TYPE_CARDINAL. + */ + typedef struct BDF_PropertyRec_ + { + BDF_PropertyType type; + union { + const char* atom; + FT_Int32 integer; + FT_UInt32 cardinal; + + } u; + + } BDF_PropertyRec; + + + /************************************************************************** + * + * @function: + * FT_Get_BDF_Charset_ID + * + * @description: + * Retrieve a BDF font character set identity, according to the BDF + * specification. + * + * @input: + * face :: + * A handle to the input face. + * + * @output: + * acharset_encoding :: + * Charset encoding, as a C~string, owned by the face. + * + * acharset_registry :: + * Charset registry, as a C~string, owned by the face. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with BDF faces, returning an error otherwise. + */ + FT_EXPORT( FT_Error ) + FT_Get_BDF_Charset_ID( FT_Face face, + const char* *acharset_encoding, + const char* *acharset_registry ); + + + /************************************************************************** + * + * @function: + * FT_Get_BDF_Property + * + * @description: + * Retrieve a BDF property from a BDF or PCF font file. + * + * @input: + * face :: + * A handle to the input face. + * + * name :: + * The property name. + * + * @output: + * aproperty :: + * The property. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function works with BDF _and_ PCF fonts. It returns an error + * otherwise. It also returns an error if the property is not in the + * font. + * + * A 'property' is a either key-value pair within the STARTPROPERTIES + * ... ENDPROPERTIES block of a BDF font or a key-value pair from the + * `info->props` array within a `FontRec` structure of a PCF font. + * + * Integer properties are always stored as 'signed' within PCF fonts; + * consequently, @BDF_PROPERTY_TYPE_CARDINAL is a possible return value + * for BDF fonts only. + * + * In case of error, `aproperty->type` is always set to + * @BDF_PROPERTY_TYPE_NONE. + */ + FT_EXPORT( FT_Error ) + FT_Get_BDF_Property( FT_Face face, + const char* prop_name, + BDF_PropertyRec *aproperty ); + + /* */ + +FT_END_HEADER + +#endif /* FTBDF_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftbitmap.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftbitmap.h new file mode 100644 index 0000000..a6acdb9 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftbitmap.h @@ -0,0 +1,330 @@ +/**************************************************************************** + * + * ftbitmap.h + * + * FreeType utility functions for bitmaps (specification). + * + * Copyright (C) 2004-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTBITMAP_H_ +#define FTBITMAP_H_ + + +#include +#include FT_FREETYPE_H +#include FT_COLOR_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * bitmap_handling + * + * @title: + * Bitmap Handling + * + * @abstract: + * Handling FT_Bitmap objects. + * + * @description: + * This section contains functions for handling @FT_Bitmap objects, + * automatically adjusting the target's bitmap buffer size as needed. + * + * Note that none of the functions changes the bitmap's 'flow' (as + * indicated by the sign of the `pitch` field in @FT_Bitmap). + * + * To set the flow, assign an appropriate positive or negative value to + * the `pitch` field of the target @FT_Bitmap object after calling + * @FT_Bitmap_Init but before calling any of the other functions + * described here. + */ + + + /************************************************************************** + * + * @function: + * FT_Bitmap_Init + * + * @description: + * Initialize a pointer to an @FT_Bitmap structure. + * + * @inout: + * abitmap :: + * A pointer to the bitmap structure. + * + * @note: + * A deprecated name for the same function is `FT_Bitmap_New`. + */ + FT_EXPORT( void ) + FT_Bitmap_Init( FT_Bitmap *abitmap ); + + + /* deprecated */ + FT_EXPORT( void ) + FT_Bitmap_New( FT_Bitmap *abitmap ); + + + /************************************************************************** + * + * @function: + * FT_Bitmap_Copy + * + * @description: + * Copy a bitmap into another one. + * + * @input: + * library :: + * A handle to a library object. + * + * source :: + * A handle to the source bitmap. + * + * @output: + * target :: + * A handle to the target bitmap. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * `source->buffer` and `target->buffer` must neither be equal nor + * overlap. + */ + FT_EXPORT( FT_Error ) + FT_Bitmap_Copy( FT_Library library, + const FT_Bitmap *source, + FT_Bitmap *target ); + + + /************************************************************************** + * + * @function: + * FT_Bitmap_Embolden + * + * @description: + * Embolden a bitmap. The new bitmap will be about `xStrength` pixels + * wider and `yStrength` pixels higher. The left and bottom borders are + * kept unchanged. + * + * @input: + * library :: + * A handle to a library object. + * + * xStrength :: + * How strong the glyph is emboldened horizontally. Expressed in 26.6 + * pixel format. + * + * yStrength :: + * How strong the glyph is emboldened vertically. Expressed in 26.6 + * pixel format. + * + * @inout: + * bitmap :: + * A handle to the target bitmap. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The current implementation restricts `xStrength` to be less than or + * equal to~8 if bitmap is of pixel_mode @FT_PIXEL_MODE_MONO. + * + * If you want to embolden the bitmap owned by a @FT_GlyphSlotRec, you + * should call @FT_GlyphSlot_Own_Bitmap on the slot first. + * + * Bitmaps in @FT_PIXEL_MODE_GRAY2 and @FT_PIXEL_MODE_GRAY@ format are + * converted to @FT_PIXEL_MODE_GRAY format (i.e., 8bpp). + */ + FT_EXPORT( FT_Error ) + FT_Bitmap_Embolden( FT_Library library, + FT_Bitmap* bitmap, + FT_Pos xStrength, + FT_Pos yStrength ); + + + /************************************************************************** + * + * @function: + * FT_Bitmap_Convert + * + * @description: + * Convert a bitmap object with depth 1bpp, 2bpp, 4bpp, 8bpp or 32bpp to + * a bitmap object with depth 8bpp, making the number of used bytes per + * line (a.k.a. the 'pitch') a multiple of `alignment`. + * + * @input: + * library :: + * A handle to a library object. + * + * source :: + * The source bitmap. + * + * alignment :: + * The pitch of the bitmap is a multiple of this argument. Common + * values are 1, 2, or 4. + * + * @output: + * target :: + * The target bitmap. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * It is possible to call @FT_Bitmap_Convert multiple times without + * calling @FT_Bitmap_Done (the memory is simply reallocated). + * + * Use @FT_Bitmap_Done to finally remove the bitmap object. + * + * The `library` argument is taken to have access to FreeType's memory + * handling functions. + * + * `source->buffer` and `target->buffer` must neither be equal nor + * overlap. + */ + FT_EXPORT( FT_Error ) + FT_Bitmap_Convert( FT_Library library, + const FT_Bitmap *source, + FT_Bitmap *target, + FT_Int alignment ); + + + /************************************************************************** + * + * @function: + * FT_Bitmap_Blend + * + * @description: + * Blend a bitmap onto another bitmap, using a given color. + * + * @input: + * library :: + * A handle to a library object. + * + * source :: + * The source bitmap, which can have any @FT_Pixel_Mode format. + * + * source_offset :: + * The offset vector to the upper left corner of the source bitmap in + * 26.6 pixel format. It should represent an integer offset; the + * function will set the lowest six bits to zero to enforce that. + * + * color :: + * The color used to draw `source` onto `target`. + * + * @inout: + * target :: + * A handle to an `FT_Bitmap` object. It should be either initialized + * as empty with a call to @FT_Bitmap_Init, or it should be of type + * @FT_PIXEL_MODE_BGRA. + * + * atarget_offset :: + * The offset vector to the upper left corner of the target bitmap in + * 26.6 pixel format. It should represent an integer offset; the + * function will set the lowest six bits to zero to enforce that. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function doesn't perform clipping. + * + * The bitmap in `target` gets allocated or reallocated as needed; the + * vector `atarget_offset` is updated accordingly. + * + * In case of allocation or reallocation, the bitmap's pitch is set to + * `4 * width`. Both `source` and `target` must have the same bitmap + * flow (as indicated by the sign of the `pitch` field). + * + * `source->buffer` and `target->buffer` must neither be equal nor + * overlap. + * + * @since: + * 2.10 + */ + FT_EXPORT( FT_Error ) + FT_Bitmap_Blend( FT_Library library, + const FT_Bitmap* source, + const FT_Vector source_offset, + FT_Bitmap* target, + FT_Vector *atarget_offset, + FT_Color color ); + + + /************************************************************************** + * + * @function: + * FT_GlyphSlot_Own_Bitmap + * + * @description: + * Make sure that a glyph slot owns `slot->bitmap`. + * + * @input: + * slot :: + * The glyph slot. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function is to be used in combination with @FT_Bitmap_Embolden. + */ + FT_EXPORT( FT_Error ) + FT_GlyphSlot_Own_Bitmap( FT_GlyphSlot slot ); + + + /************************************************************************** + * + * @function: + * FT_Bitmap_Done + * + * @description: + * Destroy a bitmap object initialized with @FT_Bitmap_Init. + * + * @input: + * library :: + * A handle to a library object. + * + * bitmap :: + * The bitmap object to be freed. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The `library` argument is taken to have access to FreeType's memory + * handling functions. + */ + FT_EXPORT( FT_Error ) + FT_Bitmap_Done( FT_Library library, + FT_Bitmap *bitmap ); + + + /* */ + + +FT_END_HEADER + +#endif /* FTBITMAP_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftbzip2.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftbzip2.h new file mode 100644 index 0000000..ae88cfd --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftbzip2.h @@ -0,0 +1,102 @@ +/**************************************************************************** + * + * ftbzip2.h + * + * Bzip2-compressed stream support. + * + * Copyright (C) 2010-2019 by + * Joel Klinghed. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTBZIP2_H_ +#define FTBZIP2_H_ + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /************************************************************************** + * + * @section: + * bzip2 + * + * @title: + * BZIP2 Streams + * + * @abstract: + * Using bzip2-compressed font files. + * + * @description: + * This section contains the declaration of Bzip2-specific functions. + * + */ + + + /************************************************************************** + * + * @function: + * FT_Stream_OpenBzip2 + * + * @description: + * Open a new stream to parse bzip2-compressed font files. This is + * mainly used to support the compressed `*.pcf.bz2` fonts that come with + * XFree86. + * + * @input: + * stream :: + * The target embedding stream. + * + * source :: + * The source stream. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The source stream must be opened _before_ calling this function. + * + * Calling the internal function `FT_Stream_Close` on the new stream will + * **not** call `FT_Stream_Close` on the source stream. None of the + * stream objects will be released to the heap. + * + * The stream implementation is very basic and resets the decompression + * process each time seeking backwards is needed within the stream. + * + * In certain builds of the library, bzip2 compression recognition is + * automatically handled when calling @FT_New_Face or @FT_Open_Face. + * This means that if no font driver is capable of handling the raw + * compressed file, the library will try to open a bzip2 compressed + * stream from it and re-open the face with it. + * + * This function may return `FT_Err_Unimplemented_Feature` if your build + * of FreeType was not compiled with bzip2 support. + */ + FT_EXPORT( FT_Error ) + FT_Stream_OpenBzip2( FT_Stream stream, + FT_Stream source ); + + /* */ + + +FT_END_HEADER + +#endif /* FTBZIP2_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftcache.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftcache.h new file mode 100644 index 0000000..0d589d0 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftcache.h @@ -0,0 +1,1088 @@ +/**************************************************************************** + * + * ftcache.h + * + * FreeType Cache subsystem (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTCACHE_H_ +#define FTCACHE_H_ + + +#include +#include FT_GLYPH_H + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * cache_subsystem + * + * @title: + * Cache Sub-System + * + * @abstract: + * How to cache face, size, and glyph data with FreeType~2. + * + * @description: + * This section describes the FreeType~2 cache sub-system, which is used + * to limit the number of concurrently opened @FT_Face and @FT_Size + * objects, as well as caching information like character maps and glyph + * images while limiting their maximum memory usage. + * + * Note that all types and functions begin with the `FTC_` prefix. + * + * The cache is highly portable and thus doesn't know anything about the + * fonts installed on your system, or how to access them. This implies + * the following scheme: + * + * First, available or installed font faces are uniquely identified by + * @FTC_FaceID values, provided to the cache by the client. Note that + * the cache only stores and compares these values, and doesn't try to + * interpret them in any way. + * + * Second, the cache calls, only when needed, a client-provided function + * to convert an @FTC_FaceID into a new @FT_Face object. The latter is + * then completely managed by the cache, including its termination + * through @FT_Done_Face. To monitor termination of face objects, the + * finalizer callback in the `generic` field of the @FT_Face object can + * be used, which might also be used to store the @FTC_FaceID of the + * face. + * + * Clients are free to map face IDs to anything else. The most simple + * usage is to associate them to a (pathname,face_index) pair that is + * used to call @FT_New_Face. However, more complex schemes are also + * possible. + * + * Note that for the cache to work correctly, the face ID values must be + * **persistent**, which means that the contents they point to should not + * change at runtime, or that their value should not become invalid. + * + * If this is unavoidable (e.g., when a font is uninstalled at runtime), + * you should call @FTC_Manager_RemoveFaceID as soon as possible, to let + * the cache get rid of any references to the old @FTC_FaceID it may keep + * internally. Failure to do so will lead to incorrect behaviour or even + * crashes. + * + * To use the cache, start with calling @FTC_Manager_New to create a new + * @FTC_Manager object, which models a single cache instance. You can + * then look up @FT_Face and @FT_Size objects with + * @FTC_Manager_LookupFace and @FTC_Manager_LookupSize, respectively. + * + * If you want to use the charmap caching, call @FTC_CMapCache_New, then + * later use @FTC_CMapCache_Lookup to perform the equivalent of + * @FT_Get_Char_Index, only much faster. + * + * If you want to use the @FT_Glyph caching, call @FTC_ImageCache, then + * later use @FTC_ImageCache_Lookup to retrieve the corresponding + * @FT_Glyph objects from the cache. + * + * If you need lots of small bitmaps, it is much more memory efficient to + * call @FTC_SBitCache_New followed by @FTC_SBitCache_Lookup. This + * returns @FTC_SBitRec structures, which are used to store small bitmaps + * directly. (A small bitmap is one whose metrics and dimensions all fit + * into 8-bit integers). + * + * We hope to also provide a kerning cache in the near future. + * + * + * @order: + * FTC_Manager + * FTC_FaceID + * FTC_Face_Requester + * + * FTC_Manager_New + * FTC_Manager_Reset + * FTC_Manager_Done + * FTC_Manager_LookupFace + * FTC_Manager_LookupSize + * FTC_Manager_RemoveFaceID + * + * FTC_Node + * FTC_Node_Unref + * + * FTC_ImageCache + * FTC_ImageCache_New + * FTC_ImageCache_Lookup + * + * FTC_SBit + * FTC_SBitCache + * FTC_SBitCache_New + * FTC_SBitCache_Lookup + * + * FTC_CMapCache + * FTC_CMapCache_New + * FTC_CMapCache_Lookup + * + *************************************************************************/ + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** BASIC TYPE DEFINITIONS *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @type: + * FTC_FaceID + * + * @description: + * An opaque pointer type that is used to identity face objects. The + * contents of such objects is application-dependent. + * + * These pointers are typically used to point to a user-defined structure + * containing a font file path, and face index. + * + * @note: + * Never use `NULL` as a valid @FTC_FaceID. + * + * Face IDs are passed by the client to the cache manager that calls, + * when needed, the @FTC_Face_Requester to translate them into new + * @FT_Face objects. + * + * If the content of a given face ID changes at runtime, or if the value + * becomes invalid (e.g., when uninstalling a font), you should + * immediately call @FTC_Manager_RemoveFaceID before any other cache + * function. + * + * Failure to do so will result in incorrect behaviour or even memory + * leaks and crashes. + */ + typedef FT_Pointer FTC_FaceID; + + + /************************************************************************** + * + * @functype: + * FTC_Face_Requester + * + * @description: + * A callback function provided by client applications. It is used by + * the cache manager to translate a given @FTC_FaceID into a new valid + * @FT_Face object, on demand. + * + * @input: + * face_id :: + * The face ID to resolve. + * + * library :: + * A handle to a FreeType library object. + * + * req_data :: + * Application-provided request data (see note below). + * + * @output: + * aface :: + * A new @FT_Face handle. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The third parameter `req_data` is the same as the one passed by the + * client when @FTC_Manager_New is called. + * + * The face requester should not perform funny things on the returned + * face object, like creating a new @FT_Size for it, or setting a + * transformation through @FT_Set_Transform! + */ + typedef FT_Error + (*FTC_Face_Requester)( FTC_FaceID face_id, + FT_Library library, + FT_Pointer req_data, + FT_Face* aface ); + + /* */ + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** CACHE MANAGER OBJECT *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @type: + * FTC_Manager + * + * @description: + * This object corresponds to one instance of the cache-subsystem. It is + * used to cache one or more @FT_Face objects, along with corresponding + * @FT_Size objects. + * + * The manager intentionally limits the total number of opened @FT_Face + * and @FT_Size objects to control memory usage. See the `max_faces` and + * `max_sizes` parameters of @FTC_Manager_New. + * + * The manager is also used to cache 'nodes' of various types while + * limiting their total memory usage. + * + * All limitations are enforced by keeping lists of managed objects in + * most-recently-used order, and flushing old nodes to make room for new + * ones. + */ + typedef struct FTC_ManagerRec_* FTC_Manager; + + + /************************************************************************** + * + * @type: + * FTC_Node + * + * @description: + * An opaque handle to a cache node object. Each cache node is + * reference-counted. A node with a count of~0 might be flushed out of a + * full cache whenever a lookup request is performed. + * + * If you look up nodes, you have the ability to 'acquire' them, i.e., to + * increment their reference count. This will prevent the node from + * being flushed out of the cache until you explicitly 'release' it (see + * @FTC_Node_Unref). + * + * See also @FTC_SBitCache_Lookup and @FTC_ImageCache_Lookup. + */ + typedef struct FTC_NodeRec_* FTC_Node; + + + /************************************************************************** + * + * @function: + * FTC_Manager_New + * + * @description: + * Create a new cache manager. + * + * @input: + * library :: + * The parent FreeType library handle to use. + * + * max_faces :: + * Maximum number of opened @FT_Face objects managed by this cache + * instance. Use~0 for defaults. + * + * max_sizes :: + * Maximum number of opened @FT_Size objects managed by this cache + * instance. Use~0 for defaults. + * + * max_bytes :: + * Maximum number of bytes to use for cached data nodes. Use~0 for + * defaults. Note that this value does not account for managed + * @FT_Face and @FT_Size objects. + * + * requester :: + * An application-provided callback used to translate face IDs into + * real @FT_Face objects. + * + * req_data :: + * A generic pointer that is passed to the requester each time it is + * called (see @FTC_Face_Requester). + * + * @output: + * amanager :: + * A handle to a new manager object. 0~in case of failure. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FTC_Manager_New( FT_Library library, + FT_UInt max_faces, + FT_UInt max_sizes, + FT_ULong max_bytes, + FTC_Face_Requester requester, + FT_Pointer req_data, + FTC_Manager *amanager ); + + + /************************************************************************** + * + * @function: + * FTC_Manager_Reset + * + * @description: + * Empty a given cache manager. This simply gets rid of all the + * currently cached @FT_Face and @FT_Size objects within the manager. + * + * @inout: + * manager :: + * A handle to the manager. + */ + FT_EXPORT( void ) + FTC_Manager_Reset( FTC_Manager manager ); + + + /************************************************************************** + * + * @function: + * FTC_Manager_Done + * + * @description: + * Destroy a given manager after emptying it. + * + * @input: + * manager :: + * A handle to the target cache manager object. + */ + FT_EXPORT( void ) + FTC_Manager_Done( FTC_Manager manager ); + + + /************************************************************************** + * + * @function: + * FTC_Manager_LookupFace + * + * @description: + * Retrieve the @FT_Face object that corresponds to a given face ID + * through a cache manager. + * + * @input: + * manager :: + * A handle to the cache manager. + * + * face_id :: + * The ID of the face object. + * + * @output: + * aface :: + * A handle to the face object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The returned @FT_Face object is always owned by the manager. You + * should never try to discard it yourself. + * + * The @FT_Face object doesn't necessarily have a current size object + * (i.e., face->size can be~0). If you need a specific 'font size', use + * @FTC_Manager_LookupSize instead. + * + * Never change the face's transformation matrix (i.e., never call the + * @FT_Set_Transform function) on a returned face! If you need to + * transform glyphs, do it yourself after glyph loading. + * + * When you perform a lookup, out-of-memory errors are detected _within_ + * the lookup and force incremental flushes of the cache until enough + * memory is released for the lookup to succeed. + * + * If a lookup fails with `FT_Err_Out_Of_Memory` the cache has already + * been completely flushed, and still no memory was available for the + * operation. + */ + FT_EXPORT( FT_Error ) + FTC_Manager_LookupFace( FTC_Manager manager, + FTC_FaceID face_id, + FT_Face *aface ); + + + /************************************************************************** + * + * @struct: + * FTC_ScalerRec + * + * @description: + * A structure used to describe a given character size in either pixels + * or points to the cache manager. See @FTC_Manager_LookupSize. + * + * @fields: + * face_id :: + * The source face ID. + * + * width :: + * The character width. + * + * height :: + * The character height. + * + * pixel :: + * A Boolean. If 1, the `width` and `height` fields are interpreted as + * integer pixel character sizes. Otherwise, they are expressed as + * 1/64th of points. + * + * x_res :: + * Only used when `pixel` is value~0 to indicate the horizontal + * resolution in dpi. + * + * y_res :: + * Only used when `pixel` is value~0 to indicate the vertical + * resolution in dpi. + * + * @note: + * This type is mainly used to retrieve @FT_Size objects through the + * cache manager. + */ + typedef struct FTC_ScalerRec_ + { + FTC_FaceID face_id; + FT_UInt width; + FT_UInt height; + FT_Int pixel; + FT_UInt x_res; + FT_UInt y_res; + + } FTC_ScalerRec; + + + /************************************************************************** + * + * @struct: + * FTC_Scaler + * + * @description: + * A handle to an @FTC_ScalerRec structure. + */ + typedef struct FTC_ScalerRec_* FTC_Scaler; + + + /************************************************************************** + * + * @function: + * FTC_Manager_LookupSize + * + * @description: + * Retrieve the @FT_Size object that corresponds to a given + * @FTC_ScalerRec pointer through a cache manager. + * + * @input: + * manager :: + * A handle to the cache manager. + * + * scaler :: + * A scaler handle. + * + * @output: + * asize :: + * A handle to the size object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The returned @FT_Size object is always owned by the manager. You + * should never try to discard it by yourself. + * + * You can access the parent @FT_Face object simply as `size->face` if + * you need it. Note that this object is also owned by the manager. + * + * @note: + * When you perform a lookup, out-of-memory errors are detected _within_ + * the lookup and force incremental flushes of the cache until enough + * memory is released for the lookup to succeed. + * + * If a lookup fails with `FT_Err_Out_Of_Memory` the cache has already + * been completely flushed, and still no memory is available for the + * operation. + */ + FT_EXPORT( FT_Error ) + FTC_Manager_LookupSize( FTC_Manager manager, + FTC_Scaler scaler, + FT_Size *asize ); + + + /************************************************************************** + * + * @function: + * FTC_Node_Unref + * + * @description: + * Decrement a cache node's internal reference count. When the count + * reaches 0, it is not destroyed but becomes eligible for subsequent + * cache flushes. + * + * @input: + * node :: + * The cache node handle. + * + * manager :: + * The cache manager handle. + */ + FT_EXPORT( void ) + FTC_Node_Unref( FTC_Node node, + FTC_Manager manager ); + + + /************************************************************************** + * + * @function: + * FTC_Manager_RemoveFaceID + * + * @description: + * A special function used to indicate to the cache manager that a given + * @FTC_FaceID is no longer valid, either because its content changed, or + * because it was deallocated or uninstalled. + * + * @input: + * manager :: + * The cache manager handle. + * + * face_id :: + * The @FTC_FaceID to be removed. + * + * @note: + * This function flushes all nodes from the cache corresponding to this + * `face_id`, with the exception of nodes with a non-null reference + * count. + * + * Such nodes are however modified internally so as to never appear in + * later lookups with the same `face_id` value, and to be immediately + * destroyed when released by all their users. + * + */ + FT_EXPORT( void ) + FTC_Manager_RemoveFaceID( FTC_Manager manager, + FTC_FaceID face_id ); + + + /************************************************************************** + * + * @type: + * FTC_CMapCache + * + * @description: + * An opaque handle used to model a charmap cache. This cache is to hold + * character codes -> glyph indices mappings. + * + */ + typedef struct FTC_CMapCacheRec_* FTC_CMapCache; + + + /************************************************************************** + * + * @function: + * FTC_CMapCache_New + * + * @description: + * Create a new charmap cache. + * + * @input: + * manager :: + * A handle to the cache manager. + * + * @output: + * acache :: + * A new cache handle. `NULL` in case of error. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Like all other caches, this one will be destroyed with the cache + * manager. + * + */ + FT_EXPORT( FT_Error ) + FTC_CMapCache_New( FTC_Manager manager, + FTC_CMapCache *acache ); + + + /************************************************************************** + * + * @function: + * FTC_CMapCache_Lookup + * + * @description: + * Translate a character code into a glyph index, using the charmap + * cache. + * + * @input: + * cache :: + * A charmap cache handle. + * + * face_id :: + * The source face ID. + * + * cmap_index :: + * The index of the charmap in the source face. Any negative value + * means to use the cache @FT_Face's default charmap. + * + * char_code :: + * The character code (in the corresponding charmap). + * + * @return: + * Glyph index. 0~means 'no glyph'. + * + */ + FT_EXPORT( FT_UInt ) + FTC_CMapCache_Lookup( FTC_CMapCache cache, + FTC_FaceID face_id, + FT_Int cmap_index, + FT_UInt32 char_code ); + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** IMAGE CACHE OBJECT *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @struct: + * FTC_ImageTypeRec + * + * @description: + * A structure used to model the type of images in a glyph cache. + * + * @fields: + * face_id :: + * The face ID. + * + * width :: + * The width in pixels. + * + * height :: + * The height in pixels. + * + * flags :: + * The load flags, as in @FT_Load_Glyph. + * + */ + typedef struct FTC_ImageTypeRec_ + { + FTC_FaceID face_id; + FT_UInt width; + FT_UInt height; + FT_Int32 flags; + + } FTC_ImageTypeRec; + + + /************************************************************************** + * + * @type: + * FTC_ImageType + * + * @description: + * A handle to an @FTC_ImageTypeRec structure. + * + */ + typedef struct FTC_ImageTypeRec_* FTC_ImageType; + + + /* */ + + +#define FTC_IMAGE_TYPE_COMPARE( d1, d2 ) \ + ( (d1)->face_id == (d2)->face_id && \ + (d1)->width == (d2)->width && \ + (d1)->flags == (d2)->flags ) + + + /************************************************************************** + * + * @type: + * FTC_ImageCache + * + * @description: + * A handle to a glyph image cache object. They are designed to hold + * many distinct glyph images while not exceeding a certain memory + * threshold. + */ + typedef struct FTC_ImageCacheRec_* FTC_ImageCache; + + + /************************************************************************** + * + * @function: + * FTC_ImageCache_New + * + * @description: + * Create a new glyph image cache. + * + * @input: + * manager :: + * The parent manager for the image cache. + * + * @output: + * acache :: + * A handle to the new glyph image cache object. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FTC_ImageCache_New( FTC_Manager manager, + FTC_ImageCache *acache ); + + + /************************************************************************** + * + * @function: + * FTC_ImageCache_Lookup + * + * @description: + * Retrieve a given glyph image from a glyph image cache. + * + * @input: + * cache :: + * A handle to the source glyph image cache. + * + * type :: + * A pointer to a glyph image type descriptor. + * + * gindex :: + * The glyph index to retrieve. + * + * @output: + * aglyph :: + * The corresponding @FT_Glyph object. 0~in case of failure. + * + * anode :: + * Used to return the address of the corresponding cache node after + * incrementing its reference count (see note below). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The returned glyph is owned and managed by the glyph image cache. + * Never try to transform or discard it manually! You can however create + * a copy with @FT_Glyph_Copy and modify the new one. + * + * If `anode` is _not_ `NULL`, it receives the address of the cache node + * containing the glyph image, after increasing its reference count. + * This ensures that the node (as well as the @FT_Glyph) will always be + * kept in the cache until you call @FTC_Node_Unref to 'release' it. + * + * If `anode` is `NULL`, the cache node is left unchanged, which means + * that the @FT_Glyph could be flushed out of the cache on the next call + * to one of the caching sub-system APIs. Don't assume that it is + * persistent! + */ + FT_EXPORT( FT_Error ) + FTC_ImageCache_Lookup( FTC_ImageCache cache, + FTC_ImageType type, + FT_UInt gindex, + FT_Glyph *aglyph, + FTC_Node *anode ); + + + /************************************************************************** + * + * @function: + * FTC_ImageCache_LookupScaler + * + * @description: + * A variant of @FTC_ImageCache_Lookup that uses an @FTC_ScalerRec to + * specify the face ID and its size. + * + * @input: + * cache :: + * A handle to the source glyph image cache. + * + * scaler :: + * A pointer to a scaler descriptor. + * + * load_flags :: + * The corresponding load flags. + * + * gindex :: + * The glyph index to retrieve. + * + * @output: + * aglyph :: + * The corresponding @FT_Glyph object. 0~in case of failure. + * + * anode :: + * Used to return the address of the corresponding cache node after + * incrementing its reference count (see note below). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The returned glyph is owned and managed by the glyph image cache. + * Never try to transform or discard it manually! You can however create + * a copy with @FT_Glyph_Copy and modify the new one. + * + * If `anode` is _not_ `NULL`, it receives the address of the cache node + * containing the glyph image, after increasing its reference count. + * This ensures that the node (as well as the @FT_Glyph) will always be + * kept in the cache until you call @FTC_Node_Unref to 'release' it. + * + * If `anode` is `NULL`, the cache node is left unchanged, which means + * that the @FT_Glyph could be flushed out of the cache on the next call + * to one of the caching sub-system APIs. Don't assume that it is + * persistent! + * + * Calls to @FT_Set_Char_Size and friends have no effect on cached + * glyphs; you should always use the FreeType cache API instead. + */ + FT_EXPORT( FT_Error ) + FTC_ImageCache_LookupScaler( FTC_ImageCache cache, + FTC_Scaler scaler, + FT_ULong load_flags, + FT_UInt gindex, + FT_Glyph *aglyph, + FTC_Node *anode ); + + + /************************************************************************** + * + * @type: + * FTC_SBit + * + * @description: + * A handle to a small bitmap descriptor. See the @FTC_SBitRec structure + * for details. + */ + typedef struct FTC_SBitRec_* FTC_SBit; + + + /************************************************************************** + * + * @struct: + * FTC_SBitRec + * + * @description: + * A very compact structure used to describe a small glyph bitmap. + * + * @fields: + * width :: + * The bitmap width in pixels. + * + * height :: + * The bitmap height in pixels. + * + * left :: + * The horizontal distance from the pen position to the left bitmap + * border (a.k.a. 'left side bearing', or 'lsb'). + * + * top :: + * The vertical distance from the pen position (on the baseline) to the + * upper bitmap border (a.k.a. 'top side bearing'). The distance is + * positive for upwards y~coordinates. + * + * format :: + * The format of the glyph bitmap (monochrome or gray). + * + * max_grays :: + * Maximum gray level value (in the range 1 to~255). + * + * pitch :: + * The number of bytes per bitmap line. May be positive or negative. + * + * xadvance :: + * The horizontal advance width in pixels. + * + * yadvance :: + * The vertical advance height in pixels. + * + * buffer :: + * A pointer to the bitmap pixels. + */ + typedef struct FTC_SBitRec_ + { + FT_Byte width; + FT_Byte height; + FT_Char left; + FT_Char top; + + FT_Byte format; + FT_Byte max_grays; + FT_Short pitch; + FT_Char xadvance; + FT_Char yadvance; + + FT_Byte* buffer; + + } FTC_SBitRec; + + + /************************************************************************** + * + * @type: + * FTC_SBitCache + * + * @description: + * A handle to a small bitmap cache. These are special cache objects + * used to store small glyph bitmaps (and anti-aliased pixmaps) in a much + * more efficient way than the traditional glyph image cache implemented + * by @FTC_ImageCache. + */ + typedef struct FTC_SBitCacheRec_* FTC_SBitCache; + + + /************************************************************************** + * + * @function: + * FTC_SBitCache_New + * + * @description: + * Create a new cache to store small glyph bitmaps. + * + * @input: + * manager :: + * A handle to the source cache manager. + * + * @output: + * acache :: + * A handle to the new sbit cache. `NULL` in case of error. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FTC_SBitCache_New( FTC_Manager manager, + FTC_SBitCache *acache ); + + + /************************************************************************** + * + * @function: + * FTC_SBitCache_Lookup + * + * @description: + * Look up a given small glyph bitmap in a given sbit cache and 'lock' it + * to prevent its flushing from the cache until needed. + * + * @input: + * cache :: + * A handle to the source sbit cache. + * + * type :: + * A pointer to the glyph image type descriptor. + * + * gindex :: + * The glyph index. + * + * @output: + * sbit :: + * A handle to a small bitmap descriptor. + * + * anode :: + * Used to return the address of the corresponding cache node after + * incrementing its reference count (see note below). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The small bitmap descriptor and its bit buffer are owned by the cache + * and should never be freed by the application. They might as well + * disappear from memory on the next cache lookup, so don't treat them as + * persistent data. + * + * The descriptor's `buffer` field is set to~0 to indicate a missing + * glyph bitmap. + * + * If `anode` is _not_ `NULL`, it receives the address of the cache node + * containing the bitmap, after increasing its reference count. This + * ensures that the node (as well as the image) will always be kept in + * the cache until you call @FTC_Node_Unref to 'release' it. + * + * If `anode` is `NULL`, the cache node is left unchanged, which means + * that the bitmap could be flushed out of the cache on the next call to + * one of the caching sub-system APIs. Don't assume that it is + * persistent! + */ + FT_EXPORT( FT_Error ) + FTC_SBitCache_Lookup( FTC_SBitCache cache, + FTC_ImageType type, + FT_UInt gindex, + FTC_SBit *sbit, + FTC_Node *anode ); + + + /************************************************************************** + * + * @function: + * FTC_SBitCache_LookupScaler + * + * @description: + * A variant of @FTC_SBitCache_Lookup that uses an @FTC_ScalerRec to + * specify the face ID and its size. + * + * @input: + * cache :: + * A handle to the source sbit cache. + * + * scaler :: + * A pointer to the scaler descriptor. + * + * load_flags :: + * The corresponding load flags. + * + * gindex :: + * The glyph index. + * + * @output: + * sbit :: + * A handle to a small bitmap descriptor. + * + * anode :: + * Used to return the address of the corresponding cache node after + * incrementing its reference count (see note below). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The small bitmap descriptor and its bit buffer are owned by the cache + * and should never be freed by the application. They might as well + * disappear from memory on the next cache lookup, so don't treat them as + * persistent data. + * + * The descriptor's `buffer` field is set to~0 to indicate a missing + * glyph bitmap. + * + * If `anode` is _not_ `NULL`, it receives the address of the cache node + * containing the bitmap, after increasing its reference count. This + * ensures that the node (as well as the image) will always be kept in + * the cache until you call @FTC_Node_Unref to 'release' it. + * + * If `anode` is `NULL`, the cache node is left unchanged, which means + * that the bitmap could be flushed out of the cache on the next call to + * one of the caching sub-system APIs. Don't assume that it is + * persistent! + */ + FT_EXPORT( FT_Error ) + FTC_SBitCache_LookupScaler( FTC_SBitCache cache, + FTC_Scaler scaler, + FT_ULong load_flags, + FT_UInt gindex, + FTC_SBit *sbit, + FTC_Node *anode ); + + /* */ + + +FT_END_HEADER + +#endif /* FTCACHE_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftchapters.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftchapters.h new file mode 100644 index 0000000..2ee2697 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftchapters.h @@ -0,0 +1,145 @@ +/**************************************************************************** + * + * This file defines the structure of the FreeType reference. + * It is used by the python script that generates the HTML files. + * + */ + + + /************************************************************************** + * + * @chapter: + * general_remarks + * + * @title: + * General Remarks + * + * @sections: + * header_inclusion + * user_allocation + * + */ + + + /************************************************************************** + * + * @chapter: + * core_api + * + * @title: + * Core API + * + * @sections: + * version + * basic_types + * base_interface + * glyph_variants + * color_management + * layer_management + * glyph_management + * mac_specific + * sizes_management + * header_file_macros + * + */ + + + /************************************************************************** + * + * @chapter: + * format_specific + * + * @title: + * Format-Specific API + * + * @sections: + * multiple_masters + * truetype_tables + * type1_tables + * sfnt_names + * bdf_fonts + * cid_fonts + * pfr_fonts + * winfnt_fonts + * font_formats + * gasp_table + * + */ + + + /************************************************************************** + * + * @chapter: + * module_specific + * + * @title: + * Controlling FreeType Modules + * + * @sections: + * auto_hinter + * cff_driver + * t1_cid_driver + * tt_driver + * pcf_driver + * properties + * parameter_tags + * lcd_rendering + * + */ + + + /************************************************************************** + * + * @chapter: + * cache_subsystem + * + * @title: + * Cache Sub-System + * + * @sections: + * cache_subsystem + * + */ + + + /************************************************************************** + * + * @chapter: + * support_api + * + * @title: + * Support API + * + * @sections: + * computations + * list_processing + * outline_processing + * quick_advance + * bitmap_handling + * raster + * glyph_stroker + * system_interface + * module_management + * gzip + * lzw + * bzip2 + * + */ + + + /************************************************************************** + * + * @chapter: + * error_codes + * + * @title: + * Error Codes + * + * @sections: + * error_enumerations + * error_code_values + * + */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftcid.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftcid.h new file mode 100644 index 0000000..8eafc1c --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftcid.h @@ -0,0 +1,168 @@ +/**************************************************************************** + * + * ftcid.h + * + * FreeType API for accessing CID font information (specification). + * + * Copyright (C) 2007-2019 by + * Dereg Clegg and Michael Toftdal. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTCID_H_ +#define FTCID_H_ + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * cid_fonts + * + * @title: + * CID Fonts + * + * @abstract: + * CID-keyed font-specific API. + * + * @description: + * This section contains the declaration of CID-keyed font-specific + * functions. + * + */ + + + /************************************************************************** + * + * @function: + * FT_Get_CID_Registry_Ordering_Supplement + * + * @description: + * Retrieve the Registry/Ordering/Supplement triple (also known as the + * "R/O/S") from a CID-keyed font. + * + * @input: + * face :: + * A handle to the input face. + * + * @output: + * registry :: + * The registry, as a C~string, owned by the face. + * + * ordering :: + * The ordering, as a C~string, owned by the face. + * + * supplement :: + * The supplement. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with CID faces, returning an error + * otherwise. + * + * @since: + * 2.3.6 + */ + FT_EXPORT( FT_Error ) + FT_Get_CID_Registry_Ordering_Supplement( FT_Face face, + const char* *registry, + const char* *ordering, + FT_Int *supplement ); + + + /************************************************************************** + * + * @function: + * FT_Get_CID_Is_Internally_CID_Keyed + * + * @description: + * Retrieve the type of the input face, CID keyed or not. In contrast + * to the @FT_IS_CID_KEYED macro this function returns successfully also + * for CID-keyed fonts in an SFNT wrapper. + * + * @input: + * face :: + * A handle to the input face. + * + * @output: + * is_cid :: + * The type of the face as an @FT_Bool. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with CID faces and OpenType fonts, returning + * an error otherwise. + * + * @since: + * 2.3.9 + */ + FT_EXPORT( FT_Error ) + FT_Get_CID_Is_Internally_CID_Keyed( FT_Face face, + FT_Bool *is_cid ); + + + /************************************************************************** + * + * @function: + * FT_Get_CID_From_Glyph_Index + * + * @description: + * Retrieve the CID of the input glyph index. + * + * @input: + * face :: + * A handle to the input face. + * + * glyph_index :: + * The input glyph index. + * + * @output: + * cid :: + * The CID as an @FT_UInt. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with CID faces and OpenType fonts, returning + * an error otherwise. + * + * @since: + * 2.3.9 + */ + FT_EXPORT( FT_Error ) + FT_Get_CID_From_Glyph_Index( FT_Face face, + FT_UInt glyph_index, + FT_UInt *cid ); + + /* */ + + +FT_END_HEADER + +#endif /* FTCID_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftcolor.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftcolor.h new file mode 100644 index 0000000..cf18021 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftcolor.h @@ -0,0 +1,311 @@ +/**************************************************************************** + * + * ftcolor.h + * + * FreeType's glyph color management (specification). + * + * Copyright (C) 2018-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTCOLOR_H_ +#define FTCOLOR_H_ + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * color_management + * + * @title: + * Glyph Color Management + * + * @abstract: + * Retrieving and manipulating OpenType's 'CPAL' table data. + * + * @description: + * The functions described here allow access and manipulation of color + * palette entries in OpenType's 'CPAL' tables. + */ + + + /************************************************************************** + * + * @struct: + * FT_Color + * + * @description: + * This structure models a BGRA color value of a 'CPAL' palette entry. + * + * The used color space is sRGB; the colors are not pre-multiplied, and + * alpha values must be explicitly set. + * + * @fields: + * blue :: + * Blue value. + * + * green :: + * Green value. + * + * red :: + * Red value. + * + * alpha :: + * Alpha value, giving the red, green, and blue color's opacity. + * + * @since: + * 2.10 + */ + typedef struct FT_Color_ + { + FT_Byte blue; + FT_Byte green; + FT_Byte red; + FT_Byte alpha; + + } FT_Color; + + + /************************************************************************** + * + * @enum: + * FT_PALETTE_XXX + * + * @description: + * A list of bit field constants used in the `palette_flags` array of the + * @FT_Palette_Data structure to indicate for which background a palette + * with a given index is usable. + * + * @values: + * FT_PALETTE_FOR_LIGHT_BACKGROUND :: + * The palette is appropriate to use when displaying the font on a + * light background such as white. + * + * FT_PALETTE_FOR_DARK_BACKGROUND :: + * The palette is appropriate to use when displaying the font on a dark + * background such as black. + * + * @since: + * 2.10 + */ +#define FT_PALETTE_FOR_LIGHT_BACKGROUND 0x01 +#define FT_PALETTE_FOR_DARK_BACKGROUND 0x02 + + + /************************************************************************** + * + * @struct: + * FT_Palette_Data + * + * @description: + * This structure holds the data of the 'CPAL' table. + * + * @fields: + * num_palettes :: + * The number of palettes. + * + * palette_name_ids :: + * A read-only array of palette name IDs with `num_palettes` elements, + * corresponding to entries like 'dark' or 'light' in the font's 'name' + * table. + * + * An empty name ID in the 'CPAL' table gets represented as value + * 0xFFFF. + * + * `NULL` if the font's 'CPAL' table doesn't contain appropriate data. + * + * palette_flags :: + * A read-only array of palette flags with `num_palettes` elements. + * Possible values are an ORed combination of + * @FT_PALETTE_FOR_LIGHT_BACKGROUND and + * @FT_PALETTE_FOR_DARK_BACKGROUND. + * + * `NULL` if the font's 'CPAL' table doesn't contain appropriate data. + * + * num_palette_entries :: + * The number of entries in a single palette. All palettes have the + * same size. + * + * palette_entry_name_ids :: + * A read-only array of palette entry name IDs with + * `num_palette_entries`. In each palette, entries with the same index + * have the same function. For example, index~0 might correspond to + * string 'outline' in the font's 'name' table to indicate that this + * palette entry is used for outlines, index~1 might correspond to + * 'fill' to indicate the filling color palette entry, etc. + * + * An empty entry name ID in the 'CPAL' table gets represented as value + * 0xFFFF. + * + * `NULL` if the font's 'CPAL' table doesn't contain appropriate data. + * + * @note: + * Use function @FT_Get_Sfnt_Name to map name IDs and entry name IDs to + * name strings. + * + * @since: + * 2.10 + */ + typedef struct FT_Palette_Data_ { + FT_UShort num_palettes; + const FT_UShort* palette_name_ids; + const FT_UShort* palette_flags; + + FT_UShort num_palette_entries; + const FT_UShort* palette_entry_name_ids; + + } FT_Palette_Data; + + + /************************************************************************** + * + * @function: + * FT_Palette_Data_Get + * + * @description: + * Retrieve the face's color palette data. + * + * @input: + * face :: + * The source face handle. + * + * @output: + * apalette :: + * A pointer to an @FT_Palette_Data structure. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * All arrays in the returned @FT_Palette_Data structure are read-only. + * + * This function always returns an error if the config macro + * `TT_CONFIG_OPTION_COLOR_LAYERS` is not defined in `ftoption.h`. + * + * @since: + * 2.10 + */ + FT_EXPORT( FT_Error ) + FT_Palette_Data_Get( FT_Face face, + FT_Palette_Data *apalette ); + + + /************************************************************************** + * + * @function: + * FT_Palette_Select + * + * @description: + * This function has two purposes. + * + * (1) It activates a palette for rendering color glyphs, and + * + * (2) it retrieves all (unmodified) color entries of this palette. This + * function returns a read-write array, which means that a calling + * application can modify the palette entries on demand. + * + * A corollary of (2) is that calling the function, then modifying some + * values, then calling the function again with the same arguments resets + * all color entries to the original 'CPAL' values; all user modifications + * are lost. + * + * @input: + * face :: + * The source face handle. + * + * palette_index :: + * The palette index. + * + * @output: + * apalette :: + * An array of color entries for a palette with index `palette_index`, + * having `num_palette_entries` elements (as found in the + * `FT_Palette_Data` structure). If `apalette` is set to `NULL`, no + * array gets returned (and no color entries can be modified). + * + * In case the font doesn't support color palettes, `NULL` is returned. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The array pointed to by `apalette_entries` is owned and managed by + * FreeType. + * + * This function always returns an error if the config macro + * `TT_CONFIG_OPTION_COLOR_LAYERS` is not defined in `ftoption.h`. + * + * @since: + * 2.10 + */ + FT_EXPORT( FT_Error ) + FT_Palette_Select( FT_Face face, + FT_UShort palette_index, + FT_Color* *apalette ); + + + /************************************************************************** + * + * @function: + * FT_Palette_Set_Foreground_Color + * + * @description: + * 'COLR' uses palette index 0xFFFF to indicate a 'text foreground + * color'. This function sets this value. + * + * @input: + * face :: + * The source face handle. + * + * foreground_color :: + * An `FT_Color` structure to define the text foreground color. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If this function isn't called, the text foreground color is set to + * white opaque (BGRA value 0xFFFFFFFF) if + * @FT_PALETTE_FOR_DARK_BACKGROUND is present for the current palette, + * and black opaque (BGRA value 0x000000FF) otherwise, including the case + * that no palette types are available in the 'CPAL' table. + * + * This function always returns an error if the config macro + * `TT_CONFIG_OPTION_COLOR_LAYERS` is not defined in `ftoption.h`. + * + * @since: + * 2.10 + */ + FT_EXPORT( FT_Error ) + FT_Palette_Set_Foreground_Color( FT_Face face, + FT_Color foreground_color ); + + /* */ + + +FT_END_HEADER + +#endif /* FTCOLOR_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftdriver.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftdriver.h new file mode 100644 index 0000000..497bde9 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftdriver.h @@ -0,0 +1,1232 @@ +/**************************************************************************** + * + * ftdriver.h + * + * FreeType API for controlling driver modules (specification only). + * + * Copyright (C) 2017-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTDRIVER_H_ +#define FTDRIVER_H_ + +#include +#include FT_FREETYPE_H +#include FT_PARAMETER_TAGS_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * auto_hinter + * + * @title: + * The auto-hinter + * + * @abstract: + * Controlling the auto-hinting module. + * + * @description: + * While FreeType's auto-hinter doesn't expose API functions by itself, + * it is possible to control its behaviour with @FT_Property_Set and + * @FT_Property_Get. The following lists the available properties + * together with the necessary macros and structures. + * + * Note that the auto-hinter's module name is 'autofitter' for historical + * reasons. + * + * Available properties are @increase-x-height, @no-stem-darkening + * (experimental), @darkening-parameters (experimental), @warping + * (experimental), @glyph-to-script-map (experimental), @fallback-script + * (experimental), and @default-script (experimental), as documented in + * the @properties section. + * + */ + + + /************************************************************************** + * + * @section: + * cff_driver + * + * @title: + * The CFF driver + * + * @abstract: + * Controlling the CFF driver module. + * + * @description: + * While FreeType's CFF driver doesn't expose API functions by itself, it + * is possible to control its behaviour with @FT_Property_Set and + * @FT_Property_Get. + * + * The CFF driver's module name is 'cff'. + * + * Available properties are @hinting-engine, @no-stem-darkening, + * @darkening-parameters, and @random-seed, as documented in the + * @properties section. + * + * + * **Hinting and antialiasing principles of the new engine** + * + * The rasterizer is positioning horizontal features (e.g., ascender + * height & x-height, or crossbars) on the pixel grid and minimizing the + * amount of antialiasing applied to them, while placing vertical + * features (vertical stems) on the pixel grid without hinting, thus + * representing the stem position and weight accurately. Sometimes the + * vertical stems may be only partially black. In this context, + * 'antialiasing' means that stems are not positioned exactly on pixel + * borders, causing a fuzzy appearance. + * + * There are two principles behind this approach. + * + * 1) No hinting in the horizontal direction: Unlike 'superhinted' + * TrueType, which changes glyph widths to accommodate regular + * inter-glyph spacing, Adobe's approach is 'faithful to the design' in + * representing both the glyph width and the inter-glyph spacing designed + * for the font. This makes the screen display as close as it can be to + * the result one would get with infinite resolution, while preserving + * what is considered the key characteristics of each glyph. Note that + * the distances between unhinted and grid-fitted positions at small + * sizes are comparable to kerning values and thus would be noticeable + * (and distracting) while reading if hinting were applied. + * + * One of the reasons to not hint horizontally is antialiasing for LCD + * screens: The pixel geometry of modern displays supplies three vertical + * subpixels as the eye moves horizontally across each visible pixel. On + * devices where we can be certain this characteristic is present a + * rasterizer can take advantage of the subpixels to add increments of + * weight. In Western writing systems this turns out to be the more + * critical direction anyway; the weights and spacing of vertical stems + * (see above) are central to Armenian, Cyrillic, Greek, and Latin type + * designs. Even when the rasterizer uses greyscale antialiasing instead + * of color (a necessary compromise when one doesn't know the screen + * characteristics), the unhinted vertical features preserve the design's + * weight and spacing much better than aliased type would. + * + * 2) Alignment in the vertical direction: Weights and spacing along the + * y~axis are less critical; what is much more important is the visual + * alignment of related features (like cap-height and x-height). The + * sense of alignment for these is enhanced by the sharpness of grid-fit + * edges, while the cruder vertical resolution (full pixels instead of + * 1/3 pixels) is less of a problem. + * + * On the technical side, horizontal alignment zones for ascender, + * x-height, and other important height values (traditionally called + * 'blue zones') as defined in the font are positioned independently, + * each being rounded to the nearest pixel edge, taking care of overshoot + * suppression at small sizes, stem darkening, and scaling. + * + * Hstems (this is, hint values defined in the font to help align + * horizontal features) that fall within a blue zone are said to be + * 'captured' and are aligned to that zone. Uncaptured stems are moved + * in one of four ways, top edge up or down, bottom edge up or down. + * Unless there are conflicting hstems, the smallest movement is taken to + * minimize distortion. + * + */ + + + /************************************************************************** + * + * @section: + * pcf_driver + * + * @title: + * The PCF driver + * + * @abstract: + * Controlling the PCF driver module. + * + * @description: + * While FreeType's PCF driver doesn't expose API functions by itself, it + * is possible to control its behaviour with @FT_Property_Set and + * @FT_Property_Get. Right now, there is a single property + * @no-long-family-names available if FreeType is compiled with + * PCF_CONFIG_OPTION_LONG_FAMILY_NAMES. + * + * The PCF driver's module name is 'pcf'. + * + */ + + + /************************************************************************** + * + * @section: + * t1_cid_driver + * + * @title: + * The Type 1 and CID drivers + * + * @abstract: + * Controlling the Type~1 and CID driver modules. + * + * @description: + * It is possible to control the behaviour of FreeType's Type~1 and + * Type~1 CID drivers with @FT_Property_Set and @FT_Property_Get. + * + * Behind the scenes, both drivers use the Adobe CFF engine for hinting; + * however, the used properties must be specified separately. + * + * The Type~1 driver's module name is 'type1'; the CID driver's module + * name is 't1cid'. + * + * Available properties are @hinting-engine, @no-stem-darkening, + * @darkening-parameters, and @random-seed, as documented in the + * @properties section. + * + * Please see the @cff_driver section for more details on the new hinting + * engine. + * + */ + + + /************************************************************************** + * + * @section: + * tt_driver + * + * @title: + * The TrueType driver + * + * @abstract: + * Controlling the TrueType driver module. + * + * @description: + * While FreeType's TrueType driver doesn't expose API functions by + * itself, it is possible to control its behaviour with @FT_Property_Set + * and @FT_Property_Get. The following lists the available properties + * together with the necessary macros and structures. + * + * The TrueType driver's module name is 'truetype'. + * + * A single property @interpreter-version is available, as documented in + * the @properties section. + * + * We start with a list of definitions, kindly provided by Greg + * Hitchcock. + * + * _Bi-Level Rendering_ + * + * Monochromatic rendering, exclusively used in the early days of + * TrueType by both Apple and Microsoft. Microsoft's GDI interface + * supported hinting of the right-side bearing point, such that the + * advance width could be non-linear. Most often this was done to + * achieve some level of glyph symmetry. To enable reasonable + * performance (e.g., not having to run hinting on all glyphs just to get + * the widths) there was a bit in the head table indicating if the side + * bearing was hinted, and additional tables, 'hdmx' and 'LTSH', to cache + * hinting widths across multiple sizes and device aspect ratios. + * + * _Font Smoothing_ + * + * Microsoft's GDI implementation of anti-aliasing. Not traditional + * anti-aliasing as the outlines were hinted before the sampling. The + * widths matched the bi-level rendering. + * + * _ClearType Rendering_ + * + * Technique that uses physical subpixels to improve rendering on LCD + * (and other) displays. Because of the higher resolution, many methods + * of improving symmetry in glyphs through hinting the right-side bearing + * were no longer necessary. This lead to what GDI calls 'natural + * widths' ClearType, see + * http://rastertragedy.com/RTRCh4.htm#Sec21. Since hinting + * has extra resolution, most non-linearity went away, but it is still + * possible for hints to change the advance widths in this mode. + * + * _ClearType Compatible Widths_ + * + * One of the earliest challenges with ClearType was allowing the + * implementation in GDI to be selected without requiring all UI and + * documents to reflow. To address this, a compatible method of + * rendering ClearType was added where the font hints are executed once + * to determine the width in bi-level rendering, and then re-run in + * ClearType, with the difference in widths being absorbed in the font + * hints for ClearType (mostly in the white space of hints); see + * http://rastertragedy.com/RTRCh4.htm#Sec20. Somewhat by + * definition, compatible width ClearType allows for non-linear widths, + * but only when the bi-level version has non-linear widths. + * + * _ClearType Subpixel Positioning_ + * + * One of the nice benefits of ClearType is the ability to more crisply + * display fractional widths; unfortunately, the GDI model of integer + * bitmaps did not support this. However, the WPF and Direct Write + * frameworks do support fractional widths. DWrite calls this 'natural + * mode', not to be confused with GDI's 'natural widths'. Subpixel + * positioning, in the current implementation of Direct Write, + * unfortunately does not support hinted advance widths, see + * http://rastertragedy.com/RTRCh4.htm#Sec22. Note that the + * TrueType interpreter fully allows the advance width to be adjusted in + * this mode, just the DWrite client will ignore those changes. + * + * _ClearType Backward Compatibility_ + * + * This is a set of exceptions made in the TrueType interpreter to + * minimize hinting techniques that were problematic with the extra + * resolution of ClearType; see + * http://rastertragedy.com/RTRCh4.htm#Sec1 and + * https://www.microsoft.com/typography/cleartype/truetypecleartype.aspx. + * This technique is not to be confused with ClearType compatible widths. + * ClearType backward compatibility has no direct impact on changing + * advance widths, but there might be an indirect impact on disabling + * some deltas. This could be worked around in backward compatibility + * mode. + * + * _Native ClearType Mode_ + * + * (Not to be confused with 'natural widths'.) This mode removes all the + * exceptions in the TrueType interpreter when running with ClearType. + * Any issues on widths would still apply, though. + * + */ + + + /************************************************************************** + * + * @section: + * properties + * + * @title: + * Driver properties + * + * @abstract: + * Controlling driver modules. + * + * @description: + * Driver modules can be controlled by setting and unsetting properties, + * using the functions @FT_Property_Set and @FT_Property_Get. This + * section documents the available properties, together with auxiliary + * macros and structures. + * + */ + + + /************************************************************************** + * + * @enum: + * FT_HINTING_XXX + * + * @description: + * A list of constants used for the @hinting-engine property to select + * the hinting engine for CFF, Type~1, and CID fonts. + * + * @values: + * FT_HINTING_FREETYPE :: + * Use the old FreeType hinting engine. + * + * FT_HINTING_ADOBE :: + * Use the hinting engine contributed by Adobe. + * + * @since: + * 2.9 + * + */ +#define FT_HINTING_FREETYPE 0 +#define FT_HINTING_ADOBE 1 + + /* these constants (introduced in 2.4.12) are deprecated */ +#define FT_CFF_HINTING_FREETYPE FT_HINTING_FREETYPE +#define FT_CFF_HINTING_ADOBE FT_HINTING_ADOBE + + + /************************************************************************** + * + * @property: + * hinting-engine + * + * @description: + * Thanks to Adobe, which contributed a new hinting (and parsing) engine, + * an application can select between 'freetype' and 'adobe' if compiled + * with `CFF_CONFIG_OPTION_OLD_ENGINE`. If this configuration macro + * isn't defined, 'hinting-engine' does nothing. + * + * The same holds for the Type~1 and CID modules if compiled with + * `T1_CONFIG_OPTION_OLD_ENGINE`. + * + * For the 'cff' module, the default engine is 'freetype' if + * `CFF_CONFIG_OPTION_OLD_ENGINE` is defined, and 'adobe' otherwise. + * + * For both the 'type1' and 't1cid' modules, the default engine is + * 'freetype' if `T1_CONFIG_OPTION_OLD_ENGINE` is defined, and 'adobe' + * otherwise. + * + * @note: + * This property can be used with @FT_Property_Get also. + * + * This property can be set via the `FREETYPE_PROPERTIES` environment + * variable (using values 'adobe' or 'freetype'). + * + * @example: + * The following example code demonstrates how to select Adobe's hinting + * engine for the 'cff' module (omitting the error handling). + * + * ``` + * FT_Library library; + * FT_UInt hinting_engine = FT_HINTING_ADOBE; + * + * + * FT_Init_FreeType( &library ); + * + * FT_Property_Set( library, "cff", + * "hinting-engine", &hinting_engine ); + * ``` + * + * @since: + * 2.4.12 (for 'cff' module) + * + * 2.9 (for 'type1' and 't1cid' modules) + * + */ + + + /************************************************************************** + * + * @property: + * no-stem-darkening + * + * @description: + * All glyphs that pass through the auto-hinter will be emboldened unless + * this property is set to TRUE. The same is true for the CFF, Type~1, + * and CID font modules if the 'Adobe' engine is selected (which is the + * default). + * + * Stem darkening emboldens glyphs at smaller sizes to make them more + * readable on common low-DPI screens when using linear alpha blending + * and gamma correction, see @FT_Render_Glyph. When not using linear + * alpha blending and gamma correction, glyphs will appear heavy and + * fuzzy! + * + * Gamma correction essentially lightens fonts since shades of grey are + * shifted to higher pixel values (=~higher brightness) to match the + * original intention to the reality of our screens. The side-effect is + * that glyphs 'thin out'. Mac OS~X and Adobe's proprietary font + * rendering library implement a counter-measure: stem darkening at + * smaller sizes where shades of gray dominate. By emboldening a glyph + * slightly in relation to its pixel size, individual pixels get higher + * coverage of filled-in outlines and are therefore 'blacker'. This + * counteracts the 'thinning out' of glyphs, making text remain readable + * at smaller sizes. + * + * By default, the Adobe engines for CFF, Type~1, and CID fonts darken + * stems at smaller sizes, regardless of hinting, to enhance contrast. + * Setting this property, stem darkening gets switched off. + * + * For the auto-hinter, stem-darkening is experimental currently and thus + * switched off by default (this is, `no-stem-darkening` is set to TRUE + * by default). Total consistency with the CFF driver is not achieved + * right now because the emboldening method differs and glyphs must be + * scaled down on the Y-axis to keep outline points inside their + * precomputed blue zones. The smaller the size (especially 9ppem and + * down), the higher the loss of emboldening versus the CFF driver. + * + * Note that stem darkening is never applied if @FT_LOAD_NO_SCALE is set. + * + * @note: + * This property can be used with @FT_Property_Get also. + * + * This property can be set via the `FREETYPE_PROPERTIES` environment + * variable (using values 1 and 0 for 'on' and 'off', respectively). It + * can also be set per face using @FT_Face_Properties with + * @FT_PARAM_TAG_STEM_DARKENING. + * + * @example: + * ``` + * FT_Library library; + * FT_Bool no_stem_darkening = TRUE; + * + * + * FT_Init_FreeType( &library ); + * + * FT_Property_Set( library, "cff", + * "no-stem-darkening", &no_stem_darkening ); + * ``` + * + * @since: + * 2.4.12 (for 'cff' module) + * + * 2.6.2 (for 'autofitter' module) + * + * 2.9 (for 'type1' and 't1cid' modules) + * + */ + + + /************************************************************************** + * + * @property: + * darkening-parameters + * + * @description: + * By default, the Adobe hinting engine, as used by the CFF, Type~1, and + * CID font drivers, darkens stems as follows (if the `no-stem-darkening` + * property isn't set): + * + * ``` + * stem width <= 0.5px: darkening amount = 0.4px + * stem width = 1px: darkening amount = 0.275px + * stem width = 1.667px: darkening amount = 0.275px + * stem width >= 2.333px: darkening amount = 0px + * ``` + * + * and piecewise linear in-between. At configuration time, these four + * control points can be set with the macro + * `CFF_CONFIG_OPTION_DARKENING_PARAMETERS`; the CFF, Type~1, and CID + * drivers share these values. At runtime, the control points can be + * changed using the `darkening-parameters` property (see the example + * below that demonstrates this for the Type~1 driver). + * + * The x~values give the stem width, and the y~values the darkening + * amount. The unit is 1000th of pixels. All coordinate values must be + * positive; the x~values must be monotonically increasing; the y~values + * must be monotonically decreasing and smaller than or equal to 500 + * (corresponding to half a pixel); the slope of each linear piece must + * be shallower than -1 (e.g., -.4). + * + * The auto-hinter provides this property, too, as an experimental + * feature. See @no-stem-darkening for more. + * + * @note: + * This property can be used with @FT_Property_Get also. + * + * This property can be set via the `FREETYPE_PROPERTIES` environment + * variable, using eight comma-separated integers without spaces. Here + * the above example, using `\` to break the line for readability. + * + * ``` + * FREETYPE_PROPERTIES=\ + * type1:darkening-parameters=500,300,1000,200,1500,100,2000,0 + * ``` + * + * @example: + * ``` + * FT_Library library; + * FT_Int darken_params[8] = { 500, 300, // x1, y1 + * 1000, 200, // x2, y2 + * 1500, 100, // x3, y3 + * 2000, 0 }; // x4, y4 + * + * + * FT_Init_FreeType( &library ); + * + * FT_Property_Set( library, "type1", + * "darkening-parameters", darken_params ); + * ``` + * + * @since: + * 2.5.1 (for 'cff' module) + * + * 2.6.2 (for 'autofitter' module) + * + * 2.9 (for 'type1' and 't1cid' modules) + * + */ + + + /************************************************************************** + * + * @property: + * random-seed + * + * @description: + * By default, the seed value for the CFF 'random' operator and the + * similar '0 28 callothersubr pop' command for the Type~1 and CID + * drivers is set to a random value. However, mainly for debugging + * purposes, it is often necessary to use a known value as a seed so that + * the pseudo-random number sequences generated by 'random' are + * repeatable. + * + * The `random-seed` property does that. Its argument is a signed 32bit + * integer; if the value is zero or negative, the seed given by the + * `intitialRandomSeed` private DICT operator in a CFF file gets used (or + * a default value if there is no such operator). If the value is + * positive, use it instead of `initialRandomSeed`, which is consequently + * ignored. + * + * @note: + * This property can be set via the `FREETYPE_PROPERTIES` environment + * variable. It can also be set per face using @FT_Face_Properties with + * @FT_PARAM_TAG_RANDOM_SEED. + * + * @since: + * 2.8 (for 'cff' module) + * + * 2.9 (for 'type1' and 't1cid' modules) + * + */ + + + /************************************************************************** + * + * @property: + * no-long-family-names + * + * @description: + * If `PCF_CONFIG_OPTION_LONG_FAMILY_NAMES` is active while compiling + * FreeType, the PCF driver constructs long family names. + * + * There are many PCF fonts just called 'Fixed' which look completely + * different, and which have nothing to do with each other. When + * selecting 'Fixed' in KDE or Gnome one gets results that appear rather + * random, the style changes often if one changes the size and one cannot + * select some fonts at all. The improve this situation, the PCF module + * prepends the foundry name (plus a space) to the family name. It also + * checks whether there are 'wide' characters; all put together, family + * names like 'Sony Fixed' or 'Misc Fixed Wide' are constructed. + * + * If `no-long-family-names` is set, this feature gets switched off. + * + * @note: + * This property can be used with @FT_Property_Get also. + * + * This property can be set via the `FREETYPE_PROPERTIES` environment + * variable (using values 1 and 0 for 'on' and 'off', respectively). + * + * @example: + * ``` + * FT_Library library; + * FT_Bool no_long_family_names = TRUE; + * + * + * FT_Init_FreeType( &library ); + * + * FT_Property_Set( library, "pcf", + * "no-long-family-names", + * &no_long_family_names ); + * ``` + * + * @since: + * 2.8 + */ + + + /************************************************************************** + * + * @enum: + * TT_INTERPRETER_VERSION_XXX + * + * @description: + * A list of constants used for the @interpreter-version property to + * select the hinting engine for Truetype fonts. + * + * The numeric value in the constant names represents the version number + * as returned by the 'GETINFO' bytecode instruction. + * + * @values: + * TT_INTERPRETER_VERSION_35 :: + * Version~35 corresponds to MS rasterizer v.1.7 as used e.g. in + * Windows~98; only grayscale and B/W rasterizing is supported. + * + * TT_INTERPRETER_VERSION_38 :: + * Version~38 corresponds to MS rasterizer v.1.9; it is roughly + * equivalent to the hinting provided by DirectWrite ClearType (as can + * be found, for example, in the Internet Explorer~9 running on + * Windows~7). It is used in FreeType to select the 'Infinality' + * subpixel hinting code. The code may be removed in a future version. + * + * TT_INTERPRETER_VERSION_40 :: + * Version~40 corresponds to MS rasterizer v.2.1; it is roughly + * equivalent to the hinting provided by DirectWrite ClearType (as can + * be found, for example, in Microsoft's Edge Browser on Windows~10). + * It is used in FreeType to select the 'minimal' subpixel hinting + * code, a stripped-down and higher performance version of the + * 'Infinality' code. + * + * @note: + * This property controls the behaviour of the bytecode interpreter and + * thus how outlines get hinted. It does **not** control how glyph get + * rasterized! In particular, it does not control subpixel color + * filtering. + * + * If FreeType has not been compiled with the configuration option + * `TT_CONFIG_OPTION_SUBPIXEL_HINTING`, selecting version~38 or~40 causes + * an `FT_Err_Unimplemented_Feature` error. + * + * Depending on the graphics framework, Microsoft uses different bytecode + * and rendering engines. As a consequence, the version numbers returned + * by a call to the 'GETINFO' bytecode instruction are more convoluted + * than desired. + * + * Here are two tables that try to shed some light on the possible values + * for the MS rasterizer engine, together with the additional features + * introduced by it. + * + * ``` + * GETINFO framework version feature + * ------------------------------------------------------------------- + * 3 GDI (Win 3.1), v1.0 16-bit, first version + * TrueImage + * 33 GDI (Win NT 3.1), v1.5 32-bit + * HP Laserjet + * 34 GDI (Win 95) v1.6 font smoothing, + * new SCANTYPE opcode + * 35 GDI (Win 98/2000) v1.7 (UN)SCALED_COMPONENT_OFFSET + * bits in composite glyphs + * 36 MGDI (Win CE 2) v1.6+ classic ClearType + * 37 GDI (XP and later), v1.8 ClearType + * GDI+ old (before Vista) + * 38 GDI+ old (Vista, Win 7), v1.9 subpixel ClearType, + * WPF Y-direction ClearType, + * additional error checking + * 39 DWrite (before Win 8) v2.0 subpixel ClearType flags + * in GETINFO opcode, + * bug fixes + * 40 GDI+ (after Win 7), v2.1 Y-direction ClearType flag + * DWrite (Win 8) in GETINFO opcode, + * Gray ClearType + * ``` + * + * The 'version' field gives a rough orientation only, since some + * applications provided certain features much earlier (as an example, + * Microsoft Reader used subpixel and Y-direction ClearType already in + * Windows 2000). Similarly, updates to a given framework might include + * improved hinting support. + * + * ``` + * version sampling rendering comment + * x y x y + * -------------------------------------------------------------- + * v1.0 normal normal B/W B/W bi-level + * v1.6 high high gray gray grayscale + * v1.8 high normal color-filter B/W (GDI) ClearType + * v1.9 high high color-filter gray Color ClearType + * v2.1 high normal gray B/W Gray ClearType + * v2.1 high high gray gray Gray ClearType + * ``` + * + * Color and Gray ClearType are the two available variants of + * 'Y-direction ClearType', meaning grayscale rasterization along the + * Y-direction; the name used in the TrueType specification for this + * feature is 'symmetric smoothing'. 'Classic ClearType' is the original + * algorithm used before introducing a modified version in Win~XP. + * Another name for v1.6's grayscale rendering is 'font smoothing', and + * 'Color ClearType' is sometimes also called 'DWrite ClearType'. To + * differentiate between today's Color ClearType and the earlier + * ClearType variant with B/W rendering along the vertical axis, the + * latter is sometimes called 'GDI ClearType'. + * + * 'Normal' and 'high' sampling describe the (virtual) resolution to + * access the rasterized outline after the hinting process. 'Normal' + * means 1 sample per grid line (i.e., B/W). In the current Microsoft + * implementation, 'high' means an extra virtual resolution of 16x16 (or + * 16x1) grid lines per pixel for bytecode instructions like 'MIRP'. + * After hinting, these 16 grid lines are mapped to 6x5 (or 6x1) grid + * lines for color filtering if Color ClearType is activated. + * + * Note that 'Gray ClearType' is essentially the same as v1.6's grayscale + * rendering. However, the GETINFO instruction handles it differently: + * v1.6 returns bit~12 (hinting for grayscale), while v2.1 returns + * bits~13 (hinting for ClearType), 18 (symmetrical smoothing), and~19 + * (Gray ClearType). Also, this mode respects bits 2 and~3 for the + * version~1 gasp table exclusively (like Color ClearType), while v1.6 + * only respects the values of version~0 (bits 0 and~1). + * + * Keep in mind that the features of the above interpreter versions might + * not map exactly to FreeType features or behavior because it is a + * fundamentally different library with different internals. + * + */ +#define TT_INTERPRETER_VERSION_35 35 +#define TT_INTERPRETER_VERSION_38 38 +#define TT_INTERPRETER_VERSION_40 40 + + + /************************************************************************** + * + * @property: + * interpreter-version + * + * @description: + * Currently, three versions are available, two representing the bytecode + * interpreter with subpixel hinting support (old 'Infinality' code and + * new stripped-down and higher performance 'minimal' code) and one + * without, respectively. The default is subpixel support if + * `TT_CONFIG_OPTION_SUBPIXEL_HINTING` is defined, and no subpixel + * support otherwise (since it isn't available then). + * + * If subpixel hinting is on, many TrueType bytecode instructions behave + * differently compared to B/W or grayscale rendering (except if 'native + * ClearType' is selected by the font). Microsoft's main idea is to + * render at a much increased horizontal resolution, then sampling down + * the created output to subpixel precision. However, many older fonts + * are not suited to this and must be specially taken care of by applying + * (hardcoded) tweaks in Microsoft's interpreter. + * + * Details on subpixel hinting and some of the necessary tweaks can be + * found in Greg Hitchcock's whitepaper at + * 'https://www.microsoft.com/typography/cleartype/truetypecleartype.aspx'. + * Note that FreeType currently doesn't really 'subpixel hint' (6x1, 6x2, + * or 6x5 supersampling) like discussed in the paper. Depending on the + * chosen interpreter, it simply ignores instructions on vertical stems + * to arrive at very similar results. + * + * @note: + * This property can be used with @FT_Property_Get also. + * + * This property can be set via the `FREETYPE_PROPERTIES` environment + * variable (using values '35', '38', or '40'). + * + * @example: + * The following example code demonstrates how to deactivate subpixel + * hinting (omitting the error handling). + * + * ``` + * FT_Library library; + * FT_Face face; + * FT_UInt interpreter_version = TT_INTERPRETER_VERSION_35; + * + * + * FT_Init_FreeType( &library ); + * + * FT_Property_Set( library, "truetype", + * "interpreter-version", + * &interpreter_version ); + * ``` + * + * @since: + * 2.5 + */ + + + /************************************************************************** + * + * @property: + * glyph-to-script-map + * + * @description: + * **Experimental only** + * + * The auto-hinter provides various script modules to hint glyphs. + * Examples of supported scripts are Latin or CJK. Before a glyph is + * auto-hinted, the Unicode character map of the font gets examined, and + * the script is then determined based on Unicode character ranges, see + * below. + * + * OpenType fonts, however, often provide much more glyphs than character + * codes (small caps, superscripts, ligatures, swashes, etc.), to be + * controlled by so-called 'features'. Handling OpenType features can be + * quite complicated and thus needs a separate library on top of + * FreeType. + * + * The mapping between glyph indices and scripts (in the auto-hinter + * sense, see the @FT_AUTOHINTER_SCRIPT_XXX values) is stored as an array + * with `num_glyphs` elements, as found in the font's @FT_Face structure. + * The `glyph-to-script-map` property returns a pointer to this array, + * which can be modified as needed. Note that the modification should + * happen before the first glyph gets processed by the auto-hinter so + * that the global analysis of the font shapes actually uses the modified + * mapping. + * + * @example: + * The following example code demonstrates how to access it (omitting the + * error handling). + * + * ``` + * FT_Library library; + * FT_Face face; + * FT_Prop_GlyphToScriptMap prop; + * + * + * FT_Init_FreeType( &library ); + * FT_New_Face( library, "foo.ttf", 0, &face ); + * + * prop.face = face; + * + * FT_Property_Get( library, "autofitter", + * "glyph-to-script-map", &prop ); + * + * // adjust `prop.map' as needed right here + * + * FT_Load_Glyph( face, ..., FT_LOAD_FORCE_AUTOHINT ); + * ``` + * + * @since: + * 2.4.11 + * + */ + + + /************************************************************************** + * + * @enum: + * FT_AUTOHINTER_SCRIPT_XXX + * + * @description: + * **Experimental only** + * + * A list of constants used for the @glyph-to-script-map property to + * specify the script submodule the auto-hinter should use for hinting a + * particular glyph. + * + * @values: + * FT_AUTOHINTER_SCRIPT_NONE :: + * Don't auto-hint this glyph. + * + * FT_AUTOHINTER_SCRIPT_LATIN :: + * Apply the latin auto-hinter. For the auto-hinter, 'latin' is a very + * broad term, including Cyrillic and Greek also since characters from + * those scripts share the same design constraints. + * + * By default, characters from the following Unicode ranges are + * assigned to this submodule. + * + * ``` + * U+0020 - U+007F // Basic Latin (no control characters) + * U+00A0 - U+00FF // Latin-1 Supplement (no control characters) + * U+0100 - U+017F // Latin Extended-A + * U+0180 - U+024F // Latin Extended-B + * U+0250 - U+02AF // IPA Extensions + * U+02B0 - U+02FF // Spacing Modifier Letters + * U+0300 - U+036F // Combining Diacritical Marks + * U+0370 - U+03FF // Greek and Coptic + * U+0400 - U+04FF // Cyrillic + * U+0500 - U+052F // Cyrillic Supplement + * U+1D00 - U+1D7F // Phonetic Extensions + * U+1D80 - U+1DBF // Phonetic Extensions Supplement + * U+1DC0 - U+1DFF // Combining Diacritical Marks Supplement + * U+1E00 - U+1EFF // Latin Extended Additional + * U+1F00 - U+1FFF // Greek Extended + * U+2000 - U+206F // General Punctuation + * U+2070 - U+209F // Superscripts and Subscripts + * U+20A0 - U+20CF // Currency Symbols + * U+2150 - U+218F // Number Forms + * U+2460 - U+24FF // Enclosed Alphanumerics + * U+2C60 - U+2C7F // Latin Extended-C + * U+2DE0 - U+2DFF // Cyrillic Extended-A + * U+2E00 - U+2E7F // Supplemental Punctuation + * U+A640 - U+A69F // Cyrillic Extended-B + * U+A720 - U+A7FF // Latin Extended-D + * U+FB00 - U+FB06 // Alphab. Present. Forms (Latin Ligatures) + * U+1D400 - U+1D7FF // Mathematical Alphanumeric Symbols + * U+1F100 - U+1F1FF // Enclosed Alphanumeric Supplement + * ``` + * + * FT_AUTOHINTER_SCRIPT_CJK :: + * Apply the CJK auto-hinter, covering Chinese, Japanese, Korean, old + * Vietnamese, and some other scripts. + * + * By default, characters from the following Unicode ranges are + * assigned to this submodule. + * + * ``` + * U+1100 - U+11FF // Hangul Jamo + * U+2E80 - U+2EFF // CJK Radicals Supplement + * U+2F00 - U+2FDF // Kangxi Radicals + * U+2FF0 - U+2FFF // Ideographic Description Characters + * U+3000 - U+303F // CJK Symbols and Punctuation + * U+3040 - U+309F // Hiragana + * U+30A0 - U+30FF // Katakana + * U+3100 - U+312F // Bopomofo + * U+3130 - U+318F // Hangul Compatibility Jamo + * U+3190 - U+319F // Kanbun + * U+31A0 - U+31BF // Bopomofo Extended + * U+31C0 - U+31EF // CJK Strokes + * U+31F0 - U+31FF // Katakana Phonetic Extensions + * U+3200 - U+32FF // Enclosed CJK Letters and Months + * U+3300 - U+33FF // CJK Compatibility + * U+3400 - U+4DBF // CJK Unified Ideographs Extension A + * U+4DC0 - U+4DFF // Yijing Hexagram Symbols + * U+4E00 - U+9FFF // CJK Unified Ideographs + * U+A960 - U+A97F // Hangul Jamo Extended-A + * U+AC00 - U+D7AF // Hangul Syllables + * U+D7B0 - U+D7FF // Hangul Jamo Extended-B + * U+F900 - U+FAFF // CJK Compatibility Ideographs + * U+FE10 - U+FE1F // Vertical forms + * U+FE30 - U+FE4F // CJK Compatibility Forms + * U+FF00 - U+FFEF // Halfwidth and Fullwidth Forms + * U+1B000 - U+1B0FF // Kana Supplement + * U+1D300 - U+1D35F // Tai Xuan Hing Symbols + * U+1F200 - U+1F2FF // Enclosed Ideographic Supplement + * U+20000 - U+2A6DF // CJK Unified Ideographs Extension B + * U+2A700 - U+2B73F // CJK Unified Ideographs Extension C + * U+2B740 - U+2B81F // CJK Unified Ideographs Extension D + * U+2F800 - U+2FA1F // CJK Compatibility Ideographs Supplement + * ``` + * + * FT_AUTOHINTER_SCRIPT_INDIC :: + * Apply the indic auto-hinter, covering all major scripts from the + * Indian sub-continent and some other related scripts like Thai, Lao, + * or Tibetan. + * + * By default, characters from the following Unicode ranges are + * assigned to this submodule. + * + * ``` + * U+0900 - U+0DFF // Indic Range + * U+0F00 - U+0FFF // Tibetan + * U+1900 - U+194F // Limbu + * U+1B80 - U+1BBF // Sundanese + * U+A800 - U+A82F // Syloti Nagri + * U+ABC0 - U+ABFF // Meetei Mayek + * U+11800 - U+118DF // Sharada + * ``` + * + * Note that currently Indic support is rudimentary only, missing blue + * zone support. + * + * @since: + * 2.4.11 + * + */ +#define FT_AUTOHINTER_SCRIPT_NONE 0 +#define FT_AUTOHINTER_SCRIPT_LATIN 1 +#define FT_AUTOHINTER_SCRIPT_CJK 2 +#define FT_AUTOHINTER_SCRIPT_INDIC 3 + + + /************************************************************************** + * + * @struct: + * FT_Prop_GlyphToScriptMap + * + * @description: + * **Experimental only** + * + * The data exchange structure for the @glyph-to-script-map property. + * + * @since: + * 2.4.11 + * + */ + typedef struct FT_Prop_GlyphToScriptMap_ + { + FT_Face face; + FT_UShort* map; + + } FT_Prop_GlyphToScriptMap; + + + /************************************************************************** + * + * @property: + * fallback-script + * + * @description: + * **Experimental only** + * + * If no auto-hinter script module can be assigned to a glyph, a fallback + * script gets assigned to it (see also the @glyph-to-script-map + * property). By default, this is @FT_AUTOHINTER_SCRIPT_CJK. Using the + * `fallback-script` property, this fallback value can be changed. + * + * @note: + * This property can be used with @FT_Property_Get also. + * + * It's important to use the right timing for changing this value: The + * creation of the glyph-to-script map that eventually uses the fallback + * script value gets triggered either by setting or reading a + * face-specific property like @glyph-to-script-map, or by auto-hinting + * any glyph from that face. In particular, if you have already created + * an @FT_Face structure but not loaded any glyph (using the + * auto-hinter), a change of the fallback script will affect this face. + * + * @example: + * ``` + * FT_Library library; + * FT_UInt fallback_script = FT_AUTOHINTER_SCRIPT_NONE; + * + * + * FT_Init_FreeType( &library ); + * + * FT_Property_Set( library, "autofitter", + * "fallback-script", &fallback_script ); + * ``` + * + * @since: + * 2.4.11 + * + */ + + + /************************************************************************** + * + * @property: + * default-script + * + * @description: + * **Experimental only** + * + * If FreeType gets compiled with `FT_CONFIG_OPTION_USE_HARFBUZZ` to make + * the HarfBuzz library access OpenType features for getting better glyph + * coverages, this property sets the (auto-fitter) script to be used for + * the default (OpenType) script data of a font's GSUB table. Features + * for the default script are intended for all scripts not explicitly + * handled in GSUB; an example is a 'dlig' feature, containing the + * combination of the characters 'T', 'E', and 'L' to form a 'TEL' + * ligature. + * + * By default, this is @FT_AUTOHINTER_SCRIPT_LATIN. Using the + * `default-script` property, this default value can be changed. + * + * @note: + * This property can be used with @FT_Property_Get also. + * + * It's important to use the right timing for changing this value: The + * creation of the glyph-to-script map that eventually uses the default + * script value gets triggered either by setting or reading a + * face-specific property like @glyph-to-script-map, or by auto-hinting + * any glyph from that face. In particular, if you have already created + * an @FT_Face structure but not loaded any glyph (using the + * auto-hinter), a change of the default script will affect this face. + * + * @example: + * ``` + * FT_Library library; + * FT_UInt default_script = FT_AUTOHINTER_SCRIPT_NONE; + * + * + * FT_Init_FreeType( &library ); + * + * FT_Property_Set( library, "autofitter", + * "default-script", &default_script ); + * ``` + * + * @since: + * 2.5.3 + * + */ + + + /************************************************************************** + * + * @property: + * increase-x-height + * + * @description: + * For ppem values in the range 6~<= ppem <= `increase-x-height`, round + * up the font's x~height much more often than normally. If the value is + * set to~0, which is the default, this feature is switched off. Use + * this property to improve the legibility of small font sizes if + * necessary. + * + * @note: + * This property can be used with @FT_Property_Get also. + * + * Set this value right after calling @FT_Set_Char_Size, but before + * loading any glyph (using the auto-hinter). + * + * @example: + * ``` + * FT_Library library; + * FT_Face face; + * FT_Prop_IncreaseXHeight prop; + * + * + * FT_Init_FreeType( &library ); + * FT_New_Face( library, "foo.ttf", 0, &face ); + * FT_Set_Char_Size( face, 10 * 64, 0, 72, 0 ); + * + * prop.face = face; + * prop.limit = 14; + * + * FT_Property_Set( library, "autofitter", + * "increase-x-height", &prop ); + * ``` + * + * @since: + * 2.4.11 + * + */ + + + /************************************************************************** + * + * @struct: + * FT_Prop_IncreaseXHeight + * + * @description: + * The data exchange structure for the @increase-x-height property. + * + */ + typedef struct FT_Prop_IncreaseXHeight_ + { + FT_Face face; + FT_UInt limit; + + } FT_Prop_IncreaseXHeight; + + + /************************************************************************** + * + * @property: + * warping + * + * @description: + * **Experimental only** + * + * If FreeType gets compiled with option `AF_CONFIG_OPTION_USE_WARPER` to + * activate the warp hinting code in the auto-hinter, this property + * switches warping on and off. + * + * Warping only works in 'normal' auto-hinting mode replacing it. The + * idea of the code is to slightly scale and shift a glyph along the + * non-hinted dimension (which is usually the horizontal axis) so that as + * much of its segments are aligned (more or less) to the grid. To find + * out a glyph's optimal scaling and shifting value, various parameter + * combinations are tried and scored. + * + * By default, warping is off. + * + * @note: + * This property can be used with @FT_Property_Get also. + * + * This property can be set via the `FREETYPE_PROPERTIES` environment + * variable (using values 1 and 0 for 'on' and 'off', respectively). + * + * The warping code can also change advance widths. Have a look at the + * `lsb_delta` and `rsb_delta` fields in the @FT_GlyphSlotRec structure + * for details on improving inter-glyph distances while rendering. + * + * Since warping is a global property of the auto-hinter it is best to + * change its value before rendering any face. Otherwise, you should + * reload all faces that get auto-hinted in 'normal' hinting mode. + * + * @example: + * This example shows how to switch on warping (omitting the error + * handling). + * + * ``` + * FT_Library library; + * FT_Bool warping = 1; + * + * + * FT_Init_FreeType( &library ); + * + * FT_Property_Set( library, "autofitter", "warping", &warping ); + * ``` + * + * @since: + * 2.6 + * + */ + + + /* */ + + +FT_END_HEADER + + +#endif /* FTDRIVER_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/fterrdef.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/fterrdef.h new file mode 100644 index 0000000..9bc7dc6 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/fterrdef.h @@ -0,0 +1,279 @@ +/**************************************************************************** + * + * fterrdef.h + * + * FreeType error codes (specification). + * + * Copyright (C) 2002-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * @section: + * error_code_values + * + * @title: + * Error Code Values + * + * @abstract: + * All possible error codes returned by FreeType functions. + * + * @description: + * The list below is taken verbatim from the file `fterrdef.h` (loaded + * automatically by including `FT_FREETYPE_H`). The first argument of the + * `FT_ERROR_DEF_` macro is the error label; by default, the prefix + * `FT_Err_` gets added so that you get error names like + * `FT_Err_Cannot_Open_Resource`. The second argument is the error code, + * and the last argument an error string, which is not used by FreeType. + * + * Within your application you should **only** use error names and + * **never** its numeric values! The latter might (and actually do) + * change in forthcoming FreeType versions. + * + * Macro `FT_NOERRORDEF_` defines `FT_Err_Ok`, which is always zero. See + * the 'Error Enumerations' subsection how to automatically generate a + * list of error strings. + * + */ + + + /************************************************************************** + * + * @enum: + * FT_Err_XXX + * + */ + + /* generic errors */ + + FT_NOERRORDEF_( Ok, 0x00, + "no error" ) + + FT_ERRORDEF_( Cannot_Open_Resource, 0x01, + "cannot open resource" ) + FT_ERRORDEF_( Unknown_File_Format, 0x02, + "unknown file format" ) + FT_ERRORDEF_( Invalid_File_Format, 0x03, + "broken file" ) + FT_ERRORDEF_( Invalid_Version, 0x04, + "invalid FreeType version" ) + FT_ERRORDEF_( Lower_Module_Version, 0x05, + "module version is too low" ) + FT_ERRORDEF_( Invalid_Argument, 0x06, + "invalid argument" ) + FT_ERRORDEF_( Unimplemented_Feature, 0x07, + "unimplemented feature" ) + FT_ERRORDEF_( Invalid_Table, 0x08, + "broken table" ) + FT_ERRORDEF_( Invalid_Offset, 0x09, + "broken offset within table" ) + FT_ERRORDEF_( Array_Too_Large, 0x0A, + "array allocation size too large" ) + FT_ERRORDEF_( Missing_Module, 0x0B, + "missing module" ) + FT_ERRORDEF_( Missing_Property, 0x0C, + "missing property" ) + + /* glyph/character errors */ + + FT_ERRORDEF_( Invalid_Glyph_Index, 0x10, + "invalid glyph index" ) + FT_ERRORDEF_( Invalid_Character_Code, 0x11, + "invalid character code" ) + FT_ERRORDEF_( Invalid_Glyph_Format, 0x12, + "unsupported glyph image format" ) + FT_ERRORDEF_( Cannot_Render_Glyph, 0x13, + "cannot render this glyph format" ) + FT_ERRORDEF_( Invalid_Outline, 0x14, + "invalid outline" ) + FT_ERRORDEF_( Invalid_Composite, 0x15, + "invalid composite glyph" ) + FT_ERRORDEF_( Too_Many_Hints, 0x16, + "too many hints" ) + FT_ERRORDEF_( Invalid_Pixel_Size, 0x17, + "invalid pixel size" ) + + /* handle errors */ + + FT_ERRORDEF_( Invalid_Handle, 0x20, + "invalid object handle" ) + FT_ERRORDEF_( Invalid_Library_Handle, 0x21, + "invalid library handle" ) + FT_ERRORDEF_( Invalid_Driver_Handle, 0x22, + "invalid module handle" ) + FT_ERRORDEF_( Invalid_Face_Handle, 0x23, + "invalid face handle" ) + FT_ERRORDEF_( Invalid_Size_Handle, 0x24, + "invalid size handle" ) + FT_ERRORDEF_( Invalid_Slot_Handle, 0x25, + "invalid glyph slot handle" ) + FT_ERRORDEF_( Invalid_CharMap_Handle, 0x26, + "invalid charmap handle" ) + FT_ERRORDEF_( Invalid_Cache_Handle, 0x27, + "invalid cache manager handle" ) + FT_ERRORDEF_( Invalid_Stream_Handle, 0x28, + "invalid stream handle" ) + + /* driver errors */ + + FT_ERRORDEF_( Too_Many_Drivers, 0x30, + "too many modules" ) + FT_ERRORDEF_( Too_Many_Extensions, 0x31, + "too many extensions" ) + + /* memory errors */ + + FT_ERRORDEF_( Out_Of_Memory, 0x40, + "out of memory" ) + FT_ERRORDEF_( Unlisted_Object, 0x41, + "unlisted object" ) + + /* stream errors */ + + FT_ERRORDEF_( Cannot_Open_Stream, 0x51, + "cannot open stream" ) + FT_ERRORDEF_( Invalid_Stream_Seek, 0x52, + "invalid stream seek" ) + FT_ERRORDEF_( Invalid_Stream_Skip, 0x53, + "invalid stream skip" ) + FT_ERRORDEF_( Invalid_Stream_Read, 0x54, + "invalid stream read" ) + FT_ERRORDEF_( Invalid_Stream_Operation, 0x55, + "invalid stream operation" ) + FT_ERRORDEF_( Invalid_Frame_Operation, 0x56, + "invalid frame operation" ) + FT_ERRORDEF_( Nested_Frame_Access, 0x57, + "nested frame access" ) + FT_ERRORDEF_( Invalid_Frame_Read, 0x58, + "invalid frame read" ) + + /* raster errors */ + + FT_ERRORDEF_( Raster_Uninitialized, 0x60, + "raster uninitialized" ) + FT_ERRORDEF_( Raster_Corrupted, 0x61, + "raster corrupted" ) + FT_ERRORDEF_( Raster_Overflow, 0x62, + "raster overflow" ) + FT_ERRORDEF_( Raster_Negative_Height, 0x63, + "negative height while rastering" ) + + /* cache errors */ + + FT_ERRORDEF_( Too_Many_Caches, 0x70, + "too many registered caches" ) + + /* TrueType and SFNT errors */ + + FT_ERRORDEF_( Invalid_Opcode, 0x80, + "invalid opcode" ) + FT_ERRORDEF_( Too_Few_Arguments, 0x81, + "too few arguments" ) + FT_ERRORDEF_( Stack_Overflow, 0x82, + "stack overflow" ) + FT_ERRORDEF_( Code_Overflow, 0x83, + "code overflow" ) + FT_ERRORDEF_( Bad_Argument, 0x84, + "bad argument" ) + FT_ERRORDEF_( Divide_By_Zero, 0x85, + "division by zero" ) + FT_ERRORDEF_( Invalid_Reference, 0x86, + "invalid reference" ) + FT_ERRORDEF_( Debug_OpCode, 0x87, + "found debug opcode" ) + FT_ERRORDEF_( ENDF_In_Exec_Stream, 0x88, + "found ENDF opcode in execution stream" ) + FT_ERRORDEF_( Nested_DEFS, 0x89, + "nested DEFS" ) + FT_ERRORDEF_( Invalid_CodeRange, 0x8A, + "invalid code range" ) + FT_ERRORDEF_( Execution_Too_Long, 0x8B, + "execution context too long" ) + FT_ERRORDEF_( Too_Many_Function_Defs, 0x8C, + "too many function definitions" ) + FT_ERRORDEF_( Too_Many_Instruction_Defs, 0x8D, + "too many instruction definitions" ) + FT_ERRORDEF_( Table_Missing, 0x8E, + "SFNT font table missing" ) + FT_ERRORDEF_( Horiz_Header_Missing, 0x8F, + "horizontal header (hhea) table missing" ) + FT_ERRORDEF_( Locations_Missing, 0x90, + "locations (loca) table missing" ) + FT_ERRORDEF_( Name_Table_Missing, 0x91, + "name table missing" ) + FT_ERRORDEF_( CMap_Table_Missing, 0x92, + "character map (cmap) table missing" ) + FT_ERRORDEF_( Hmtx_Table_Missing, 0x93, + "horizontal metrics (hmtx) table missing" ) + FT_ERRORDEF_( Post_Table_Missing, 0x94, + "PostScript (post) table missing" ) + FT_ERRORDEF_( Invalid_Horiz_Metrics, 0x95, + "invalid horizontal metrics" ) + FT_ERRORDEF_( Invalid_CharMap_Format, 0x96, + "invalid character map (cmap) format" ) + FT_ERRORDEF_( Invalid_PPem, 0x97, + "invalid ppem value" ) + FT_ERRORDEF_( Invalid_Vert_Metrics, 0x98, + "invalid vertical metrics" ) + FT_ERRORDEF_( Could_Not_Find_Context, 0x99, + "could not find context" ) + FT_ERRORDEF_( Invalid_Post_Table_Format, 0x9A, + "invalid PostScript (post) table format" ) + FT_ERRORDEF_( Invalid_Post_Table, 0x9B, + "invalid PostScript (post) table" ) + FT_ERRORDEF_( DEF_In_Glyf_Bytecode, 0x9C, + "found FDEF or IDEF opcode in glyf bytecode" ) + FT_ERRORDEF_( Missing_Bitmap, 0x9D, + "missing bitmap in strike" ) + + /* CFF, CID, and Type 1 errors */ + + FT_ERRORDEF_( Syntax_Error, 0xA0, + "opcode syntax error" ) + FT_ERRORDEF_( Stack_Underflow, 0xA1, + "argument stack underflow" ) + FT_ERRORDEF_( Ignore, 0xA2, + "ignore" ) + FT_ERRORDEF_( No_Unicode_Glyph_Name, 0xA3, + "no Unicode glyph name found" ) + FT_ERRORDEF_( Glyph_Too_Big, 0xA4, + "glyph too big for hinting" ) + + /* BDF errors */ + + FT_ERRORDEF_( Missing_Startfont_Field, 0xB0, + "`STARTFONT' field missing" ) + FT_ERRORDEF_( Missing_Font_Field, 0xB1, + "`FONT' field missing" ) + FT_ERRORDEF_( Missing_Size_Field, 0xB2, + "`SIZE' field missing" ) + FT_ERRORDEF_( Missing_Fontboundingbox_Field, 0xB3, + "`FONTBOUNDINGBOX' field missing" ) + FT_ERRORDEF_( Missing_Chars_Field, 0xB4, + "`CHARS' field missing" ) + FT_ERRORDEF_( Missing_Startchar_Field, 0xB5, + "`STARTCHAR' field missing" ) + FT_ERRORDEF_( Missing_Encoding_Field, 0xB6, + "`ENCODING' field missing" ) + FT_ERRORDEF_( Missing_Bbx_Field, 0xB7, + "`BBX' field missing" ) + FT_ERRORDEF_( Bbx_Too_Big, 0xB8, + "`BBX' too big" ) + FT_ERRORDEF_( Corrupted_Font_Header, 0xB9, + "Font header corrupted or missing fields" ) + FT_ERRORDEF_( Corrupted_Font_Glyphs, 0xBA, + "Font glyphs corrupted or missing fields" ) + + /* */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/fterrors.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/fterrors.h new file mode 100644 index 0000000..58f5a3e --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/fterrors.h @@ -0,0 +1,285 @@ +/**************************************************************************** + * + * fterrors.h + * + * FreeType error code handling (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * @section: + * error_enumerations + * + * @title: + * Error Enumerations + * + * @abstract: + * How to handle errors and error strings. + * + * @description: + * The header file `fterrors.h` (which is automatically included by + * `freetype.h` defines the handling of FreeType's enumeration + * constants. It can also be used to generate error message strings + * with a small macro trick explained below. + * + * **Error Formats** + * + * The configuration macro `FT_CONFIG_OPTION_USE_MODULE_ERRORS` can be + * defined in `ftoption.h` in order to make the higher byte indicate the + * module where the error has happened (this is not compatible with + * standard builds of FreeType~2, however). See the file `ftmoderr.h` + * for more details. + * + * **Error Message Strings** + * + * Error definitions are set up with special macros that allow client + * applications to build a table of error message strings. The strings + * are not included in a normal build of FreeType~2 to save space (most + * client applications do not use them). + * + * To do so, you have to define the following macros before including + * this file. + * + * ``` + * FT_ERROR_START_LIST + * ``` + * + * This macro is called before anything else to define the start of the + * error list. It is followed by several `FT_ERROR_DEF` calls. + * + * ``` + * FT_ERROR_DEF( e, v, s ) + * ``` + * + * This macro is called to define one single error. 'e' is the error + * code identifier (e.g., `Invalid_Argument`), 'v' is the error's + * numerical value, and 's' is the corresponding error string. + * + * ``` + * FT_ERROR_END_LIST + * ``` + * + * This macro ends the list. + * + * Additionally, you have to undefine `FTERRORS_H_` before #including + * this file. + * + * Here is a simple example. + * + * ``` + * #undef FTERRORS_H_ + * #define FT_ERRORDEF( e, v, s ) { e, s }, + * #define FT_ERROR_START_LIST { + * #define FT_ERROR_END_LIST { 0, NULL } }; + * + * const struct + * { + * int err_code; + * const char* err_msg; + * } ft_errors[] = + * + * #include FT_ERRORS_H + * ``` + * + * An alternative to using an array is a switch statement. + * + * ``` + * #undef FTERRORS_H_ + * #define FT_ERROR_START_LIST switch ( error_code ) { + * #define FT_ERRORDEF( e, v, s ) case v: return s; + * #define FT_ERROR_END_LIST } + * ``` + * + * If you use `FT_CONFIG_OPTION_USE_MODULE_ERRORS`, `error_code` should + * be replaced with `FT_ERROR_BASE(error_code)` in the last example. + */ + + /* */ + + /* In previous FreeType versions we used `__FTERRORS_H__`. However, */ + /* using two successive underscores in a non-system symbol name */ + /* violates the C (and C++) standard, so it was changed to the */ + /* current form. In spite of this, we have to make */ + /* */ + /* ``` */ + /* #undefine __FTERRORS_H__ */ + /* ``` */ + /* */ + /* work for backward compatibility. */ + /* */ +#if !( defined( FTERRORS_H_ ) && defined ( __FTERRORS_H__ ) ) +#define FTERRORS_H_ +#define __FTERRORS_H__ + + + /* include module base error codes */ +#include FT_MODULE_ERRORS_H + + + /*******************************************************************/ + /*******************************************************************/ + /***** *****/ + /***** SETUP MACROS *****/ + /***** *****/ + /*******************************************************************/ + /*******************************************************************/ + + +#undef FT_NEED_EXTERN_C + + + /* FT_ERR_PREFIX is used as a prefix for error identifiers. */ + /* By default, we use `FT_Err_`. */ + /* */ +#ifndef FT_ERR_PREFIX +#define FT_ERR_PREFIX FT_Err_ +#endif + + + /* FT_ERR_BASE is used as the base for module-specific errors. */ + /* */ +#ifdef FT_CONFIG_OPTION_USE_MODULE_ERRORS + +#ifndef FT_ERR_BASE +#define FT_ERR_BASE FT_Mod_Err_Base +#endif + +#else + +#undef FT_ERR_BASE +#define FT_ERR_BASE 0 + +#endif /* FT_CONFIG_OPTION_USE_MODULE_ERRORS */ + + + /* If FT_ERRORDEF is not defined, we need to define a simple */ + /* enumeration type. */ + /* */ +#ifndef FT_ERRORDEF + +#define FT_INCLUDE_ERR_PROTOS + +#define FT_ERRORDEF( e, v, s ) e = v, +#define FT_ERROR_START_LIST enum { +#define FT_ERROR_END_LIST FT_ERR_CAT( FT_ERR_PREFIX, Max ) }; + +#ifdef __cplusplus +#define FT_NEED_EXTERN_C + extern "C" { +#endif + +#endif /* !FT_ERRORDEF */ + + + /* this macro is used to define an error */ +#define FT_ERRORDEF_( e, v, s ) \ + FT_ERRORDEF( FT_ERR_CAT( FT_ERR_PREFIX, e ), v + FT_ERR_BASE, s ) + + /* this is only used for _Err_Ok, which must be 0! */ +#define FT_NOERRORDEF_( e, v, s ) \ + FT_ERRORDEF( FT_ERR_CAT( FT_ERR_PREFIX, e ), v, s ) + + +#ifdef FT_ERROR_START_LIST + FT_ERROR_START_LIST +#endif + + + /* now include the error codes */ +#include FT_ERROR_DEFINITIONS_H + + +#ifdef FT_ERROR_END_LIST + FT_ERROR_END_LIST +#endif + + + /*******************************************************************/ + /*******************************************************************/ + /***** *****/ + /***** SIMPLE CLEANUP *****/ + /***** *****/ + /*******************************************************************/ + /*******************************************************************/ + +#ifdef FT_NEED_EXTERN_C + } +#endif + +#undef FT_ERROR_START_LIST +#undef FT_ERROR_END_LIST + +#undef FT_ERRORDEF +#undef FT_ERRORDEF_ +#undef FT_NOERRORDEF_ + +#undef FT_NEED_EXTERN_C +#undef FT_ERR_BASE + + /* FT_ERR_PREFIX is needed internally */ +#ifndef FT2_BUILD_LIBRARY +#undef FT_ERR_PREFIX +#endif + + /* FT_INCLUDE_ERR_PROTOS: Control if function prototypes should be */ + /* included with `#include FT_ERRORS_H'. This is */ + /* only true where `FT_ERRORDEF` is undefined. */ + /* FT_ERR_PROTOS_DEFINED: Actual multiple-inclusion protection of */ + /* `fterrors.h`. */ +#ifdef FT_INCLUDE_ERR_PROTOS +#undef FT_INCLUDE_ERR_PROTOS + +#ifndef FT_ERR_PROTOS_DEFINED +#define FT_ERR_PROTOS_DEFINED + + + /************************************************************************** + * + * @function: + * FT_Error_String + * + * @description: + * Retrieve the description of a valid FreeType error code. + * + * @input: + * error_code :: + * A valid FreeType error code. + * + * @return: + * A C~string or `NULL`, if any error occurred. + * + * @note: + * FreeType has to be compiled with `FT_CONFIG_OPTION_ERROR_STRINGS` or + * `FT_DEBUG_LEVEL_ERROR` to get meaningful descriptions. + * 'error_string' will be `NULL` otherwise. + * + * Module identification will be ignored: + * + * ```c + * strcmp( FT_Error_String( FT_Err_Unknown_File_Format ), + * FT_Error_String( BDF_Err_Unknown_File_Format ) ) == 0; + * ``` + */ + FT_EXPORT( const char* ) + FT_Error_String( FT_Error error_code ); + + +#endif /* FT_ERR_PROTOS_DEFINED */ + +#endif /* FT_INCLUDE_ERR_PROTOS */ + +#endif /* !(FTERRORS_H_ && __FTERRORS_H__) */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftfntfmt.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftfntfmt.h new file mode 100644 index 0000000..aae0b13 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftfntfmt.h @@ -0,0 +1,94 @@ +/**************************************************************************** + * + * ftfntfmt.h + * + * Support functions for font formats. + * + * Copyright (C) 2002-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTFNTFMT_H_ +#define FTFNTFMT_H_ + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * font_formats + * + * @title: + * Font Formats + * + * @abstract: + * Getting the font format. + * + * @description: + * The single function in this section can be used to get the font format. + * Note that this information is not needed normally; however, there are + * special cases (like in PDF devices) where it is important to + * differentiate, in spite of FreeType's uniform API. + * + */ + + + /************************************************************************** + * + * @function: + * FT_Get_Font_Format + * + * @description: + * Return a string describing the format of a given face. Possible values + * are 'TrueType', 'Type~1', 'BDF', 'PCF', 'Type~42', 'CID~Type~1', 'CFF', + * 'PFR', and 'Windows~FNT'. + * + * The return value is suitable to be used as an X11 FONT_PROPERTY. + * + * @input: + * face :: + * Input face handle. + * + * @return: + * Font format string. `NULL` in case of error. + * + * @note: + * A deprecated name for the same function is `FT_Get_X11_Font_Format`. + */ + FT_EXPORT( const char* ) + FT_Get_Font_Format( FT_Face face ); + + + /* deprecated */ + FT_EXPORT( const char* ) + FT_Get_X11_Font_Format( FT_Face face ); + + + /* */ + + +FT_END_HEADER + +#endif /* FTFNTFMT_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftgasp.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftgasp.h new file mode 100644 index 0000000..24673d8 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftgasp.h @@ -0,0 +1,144 @@ +/**************************************************************************** + * + * ftgasp.h + * + * Access of TrueType's 'gasp' table (specification). + * + * Copyright (C) 2007-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTGASP_H_ +#define FTGASP_H_ + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * gasp_table + * + * @title: + * Gasp Table + * + * @abstract: + * Retrieving TrueType 'gasp' table entries. + * + * @description: + * The function @FT_Get_Gasp can be used to query a TrueType or OpenType + * font for specific entries in its 'gasp' table, if any. This is mainly + * useful when implementing native TrueType hinting with the bytecode + * interpreter to duplicate the Windows text rendering results. + */ + + /************************************************************************** + * + * @enum: + * FT_GASP_XXX + * + * @description: + * A list of values and/or bit-flags returned by the @FT_Get_Gasp + * function. + * + * @values: + * FT_GASP_NO_TABLE :: + * This special value means that there is no GASP table in this face. + * It is up to the client to decide what to do. + * + * FT_GASP_DO_GRIDFIT :: + * Grid-fitting and hinting should be performed at the specified ppem. + * This **really** means TrueType bytecode interpretation. If this bit + * is not set, no hinting gets applied. + * + * FT_GASP_DO_GRAY :: + * Anti-aliased rendering should be performed at the specified ppem. + * If not set, do monochrome rendering. + * + * FT_GASP_SYMMETRIC_SMOOTHING :: + * If set, smoothing along multiple axes must be used with ClearType. + * + * FT_GASP_SYMMETRIC_GRIDFIT :: + * Grid-fitting must be used with ClearType's symmetric smoothing. + * + * @note: + * The bit-flags `FT_GASP_DO_GRIDFIT` and `FT_GASP_DO_GRAY` are to be + * used for standard font rasterization only. Independently of that, + * `FT_GASP_SYMMETRIC_SMOOTHING` and `FT_GASP_SYMMETRIC_GRIDFIT` are to + * be used if ClearType is enabled (and `FT_GASP_DO_GRIDFIT` and + * `FT_GASP_DO_GRAY` are consequently ignored). + * + * 'ClearType' is Microsoft's implementation of LCD rendering, partly + * protected by patents. + * + * @since: + * 2.3.0 + */ +#define FT_GASP_NO_TABLE -1 +#define FT_GASP_DO_GRIDFIT 0x01 +#define FT_GASP_DO_GRAY 0x02 +#define FT_GASP_SYMMETRIC_GRIDFIT 0x04 +#define FT_GASP_SYMMETRIC_SMOOTHING 0x08 + + + /************************************************************************** + * + * @function: + * FT_Get_Gasp + * + * @description: + * For a TrueType or OpenType font file, return the rasterizer behaviour + * flags from the font's 'gasp' table corresponding to a given character + * pixel size. + * + * @input: + * face :: + * The source face handle. + * + * ppem :: + * The vertical character pixel size. + * + * @return: + * Bit flags (see @FT_GASP_XXX), or @FT_GASP_NO_TABLE if there is no + * 'gasp' table in the face. + * + * @note: + * If you want to use the MM functionality of OpenType variation fonts + * (i.e., using @FT_Set_Var_Design_Coordinates and friends), call this + * function **after** setting an instance since the return values can + * change. + * + * @since: + * 2.3.0 + */ + FT_EXPORT( FT_Int ) + FT_Get_Gasp( FT_Face face, + FT_UInt ppem ); + + /* */ + + +FT_END_HEADER + +#endif /* FTGASP_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftglyph.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftglyph.h new file mode 100644 index 0000000..4067c2e --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftglyph.h @@ -0,0 +1,665 @@ +/**************************************************************************** + * + * ftglyph.h + * + * FreeType convenience functions to handle glyphs (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * This file contains the definition of several convenience functions that + * can be used by client applications to easily retrieve glyph bitmaps and + * outlines from a given face. + * + * These functions should be optional if you are writing a font server or + * text layout engine on top of FreeType. However, they are pretty handy + * for many other simple uses of the library. + * + */ + + +#ifndef FTGLYPH_H_ +#define FTGLYPH_H_ + + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * glyph_management + * + * @title: + * Glyph Management + * + * @abstract: + * Generic interface to manage individual glyph data. + * + * @description: + * This section contains definitions used to manage glyph data through + * generic @FT_Glyph objects. Each of them can contain a bitmap, + * a vector outline, or even images in other formats. These objects are + * detached from @FT_Face, contrary to @FT_GlyphSlot. + * + */ + + + /* forward declaration to a private type */ + typedef struct FT_Glyph_Class_ FT_Glyph_Class; + + + /************************************************************************** + * + * @type: + * FT_Glyph + * + * @description: + * Handle to an object used to model generic glyph images. It is a + * pointer to the @FT_GlyphRec structure and can contain a glyph bitmap + * or pointer. + * + * @note: + * Glyph objects are not owned by the library. You must thus release + * them manually (through @FT_Done_Glyph) _before_ calling + * @FT_Done_FreeType. + */ + typedef struct FT_GlyphRec_* FT_Glyph; + + + /************************************************************************** + * + * @struct: + * FT_GlyphRec + * + * @description: + * The root glyph structure contains a given glyph image plus its advance + * width in 16.16 fixed-point format. + * + * @fields: + * library :: + * A handle to the FreeType library object. + * + * clazz :: + * A pointer to the glyph's class. Private. + * + * format :: + * The format of the glyph's image. + * + * advance :: + * A 16.16 vector that gives the glyph's advance width. + */ + typedef struct FT_GlyphRec_ + { + FT_Library library; + const FT_Glyph_Class* clazz; + FT_Glyph_Format format; + FT_Vector advance; + + } FT_GlyphRec; + + + /************************************************************************** + * + * @type: + * FT_BitmapGlyph + * + * @description: + * A handle to an object used to model a bitmap glyph image. This is a + * sub-class of @FT_Glyph, and a pointer to @FT_BitmapGlyphRec. + */ + typedef struct FT_BitmapGlyphRec_* FT_BitmapGlyph; + + + /************************************************************************** + * + * @struct: + * FT_BitmapGlyphRec + * + * @description: + * A structure used for bitmap glyph images. This really is a + * 'sub-class' of @FT_GlyphRec. + * + * @fields: + * root :: + * The root @FT_Glyph fields. + * + * left :: + * The left-side bearing, i.e., the horizontal distance from the + * current pen position to the left border of the glyph bitmap. + * + * top :: + * The top-side bearing, i.e., the vertical distance from the current + * pen position to the top border of the glyph bitmap. This distance + * is positive for upwards~y! + * + * bitmap :: + * A descriptor for the bitmap. + * + * @note: + * You can typecast an @FT_Glyph to @FT_BitmapGlyph if you have + * `glyph->format == FT_GLYPH_FORMAT_BITMAP`. This lets you access the + * bitmap's contents easily. + * + * The corresponding pixel buffer is always owned by @FT_BitmapGlyph and + * is thus created and destroyed with it. + */ + typedef struct FT_BitmapGlyphRec_ + { + FT_GlyphRec root; + FT_Int left; + FT_Int top; + FT_Bitmap bitmap; + + } FT_BitmapGlyphRec; + + + /************************************************************************** + * + * @type: + * FT_OutlineGlyph + * + * @description: + * A handle to an object used to model an outline glyph image. This is a + * sub-class of @FT_Glyph, and a pointer to @FT_OutlineGlyphRec. + */ + typedef struct FT_OutlineGlyphRec_* FT_OutlineGlyph; + + + /************************************************************************** + * + * @struct: + * FT_OutlineGlyphRec + * + * @description: + * A structure used for outline (vectorial) glyph images. This really is + * a 'sub-class' of @FT_GlyphRec. + * + * @fields: + * root :: + * The root @FT_Glyph fields. + * + * outline :: + * A descriptor for the outline. + * + * @note: + * You can typecast an @FT_Glyph to @FT_OutlineGlyph if you have + * `glyph->format == FT_GLYPH_FORMAT_OUTLINE`. This lets you access the + * outline's content easily. + * + * As the outline is extracted from a glyph slot, its coordinates are + * expressed normally in 26.6 pixels, unless the flag @FT_LOAD_NO_SCALE + * was used in @FT_Load_Glyph() or @FT_Load_Char(). + * + * The outline's tables are always owned by the object and are destroyed + * with it. + */ + typedef struct FT_OutlineGlyphRec_ + { + FT_GlyphRec root; + FT_Outline outline; + + } FT_OutlineGlyphRec; + + + /************************************************************************** + * + * @function: + * FT_New_Glyph + * + * @description: + * A function used to create a new empty glyph image. Note that the + * created @FT_Glyph object must be released with @FT_Done_Glyph. + * + * @input: + * library :: + * A handle to the FreeType library object. + * + * format :: + * The format of the glyph's image. + * + * @output: + * aglyph :: + * A handle to the glyph object. + * + * @return: + * FreeType error code. 0~means success. + * + * @since: + * 2.10 + */ + FT_EXPORT( FT_Error ) + FT_New_Glyph( FT_Library library, + FT_Glyph_Format format, + FT_Glyph *aglyph ); + + + /************************************************************************** + * + * @function: + * FT_Get_Glyph + * + * @description: + * A function used to extract a glyph image from a slot. Note that the + * created @FT_Glyph object must be released with @FT_Done_Glyph. + * + * @input: + * slot :: + * A handle to the source glyph slot. + * + * @output: + * aglyph :: + * A handle to the glyph object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Because `*aglyph->advance.x` and `*aglyph->advance.y` are 16.16 + * fixed-point numbers, `slot->advance.x` and `slot->advance.y` (which + * are in 26.6 fixed-point format) must be in the range ]-32768;32768[. + */ + FT_EXPORT( FT_Error ) + FT_Get_Glyph( FT_GlyphSlot slot, + FT_Glyph *aglyph ); + + + /************************************************************************** + * + * @function: + * FT_Glyph_Copy + * + * @description: + * A function used to copy a glyph image. Note that the created + * @FT_Glyph object must be released with @FT_Done_Glyph. + * + * @input: + * source :: + * A handle to the source glyph object. + * + * @output: + * target :: + * A handle to the target glyph object. 0~in case of error. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Glyph_Copy( FT_Glyph source, + FT_Glyph *target ); + + + /************************************************************************** + * + * @function: + * FT_Glyph_Transform + * + * @description: + * Transform a glyph image if its format is scalable. + * + * @inout: + * glyph :: + * A handle to the target glyph object. + * + * @input: + * matrix :: + * A pointer to a 2x2 matrix to apply. + * + * delta :: + * A pointer to a 2d vector to apply. Coordinates are expressed in + * 1/64th of a pixel. + * + * @return: + * FreeType error code (if not 0, the glyph format is not scalable). + * + * @note: + * The 2x2 transformation matrix is also applied to the glyph's advance + * vector. + */ + FT_EXPORT( FT_Error ) + FT_Glyph_Transform( FT_Glyph glyph, + FT_Matrix* matrix, + FT_Vector* delta ); + + + /************************************************************************** + * + * @enum: + * FT_Glyph_BBox_Mode + * + * @description: + * The mode how the values of @FT_Glyph_Get_CBox are returned. + * + * @values: + * FT_GLYPH_BBOX_UNSCALED :: + * Return unscaled font units. + * + * FT_GLYPH_BBOX_SUBPIXELS :: + * Return unfitted 26.6 coordinates. + * + * FT_GLYPH_BBOX_GRIDFIT :: + * Return grid-fitted 26.6 coordinates. + * + * FT_GLYPH_BBOX_TRUNCATE :: + * Return coordinates in integer pixels. + * + * FT_GLYPH_BBOX_PIXELS :: + * Return grid-fitted pixel coordinates. + */ + typedef enum FT_Glyph_BBox_Mode_ + { + FT_GLYPH_BBOX_UNSCALED = 0, + FT_GLYPH_BBOX_SUBPIXELS = 0, + FT_GLYPH_BBOX_GRIDFIT = 1, + FT_GLYPH_BBOX_TRUNCATE = 2, + FT_GLYPH_BBOX_PIXELS = 3 + + } FT_Glyph_BBox_Mode; + + + /* these constants are deprecated; use the corresponding */ + /* `FT_Glyph_BBox_Mode` values instead */ +#define ft_glyph_bbox_unscaled FT_GLYPH_BBOX_UNSCALED +#define ft_glyph_bbox_subpixels FT_GLYPH_BBOX_SUBPIXELS +#define ft_glyph_bbox_gridfit FT_GLYPH_BBOX_GRIDFIT +#define ft_glyph_bbox_truncate FT_GLYPH_BBOX_TRUNCATE +#define ft_glyph_bbox_pixels FT_GLYPH_BBOX_PIXELS + + + /************************************************************************** + * + * @function: + * FT_Glyph_Get_CBox + * + * @description: + * Return a glyph's 'control box'. The control box encloses all the + * outline's points, including Bezier control points. Though it + * coincides with the exact bounding box for most glyphs, it can be + * slightly larger in some situations (like when rotating an outline that + * contains Bezier outside arcs). + * + * Computing the control box is very fast, while getting the bounding box + * can take much more time as it needs to walk over all segments and arcs + * in the outline. To get the latter, you can use the 'ftbbox' + * component, which is dedicated to this single task. + * + * @input: + * glyph :: + * A handle to the source glyph object. + * + * mode :: + * The mode that indicates how to interpret the returned bounding box + * values. + * + * @output: + * acbox :: + * The glyph coordinate bounding box. Coordinates are expressed in + * 1/64th of pixels if it is grid-fitted. + * + * @note: + * Coordinates are relative to the glyph origin, using the y~upwards + * convention. + * + * If the glyph has been loaded with @FT_LOAD_NO_SCALE, `bbox_mode` must + * be set to @FT_GLYPH_BBOX_UNSCALED to get unscaled font units in 26.6 + * pixel format. The value @FT_GLYPH_BBOX_SUBPIXELS is another name for + * this constant. + * + * If the font is tricky and the glyph has been loaded with + * @FT_LOAD_NO_SCALE, the resulting CBox is meaningless. To get + * reasonable values for the CBox it is necessary to load the glyph at a + * large ppem value (so that the hinting instructions can properly shift + * and scale the subglyphs), then extracting the CBox, which can be + * eventually converted back to font units. + * + * Note that the maximum coordinates are exclusive, which means that one + * can compute the width and height of the glyph image (be it in integer + * or 26.6 pixels) as: + * + * ``` + * width = bbox.xMax - bbox.xMin; + * height = bbox.yMax - bbox.yMin; + * ``` + * + * Note also that for 26.6 coordinates, if `bbox_mode` is set to + * @FT_GLYPH_BBOX_GRIDFIT, the coordinates will also be grid-fitted, + * which corresponds to: + * + * ``` + * bbox.xMin = FLOOR(bbox.xMin); + * bbox.yMin = FLOOR(bbox.yMin); + * bbox.xMax = CEILING(bbox.xMax); + * bbox.yMax = CEILING(bbox.yMax); + * ``` + * + * To get the bbox in pixel coordinates, set `bbox_mode` to + * @FT_GLYPH_BBOX_TRUNCATE. + * + * To get the bbox in grid-fitted pixel coordinates, set `bbox_mode` to + * @FT_GLYPH_BBOX_PIXELS. + */ + FT_EXPORT( void ) + FT_Glyph_Get_CBox( FT_Glyph glyph, + FT_UInt bbox_mode, + FT_BBox *acbox ); + + + /************************************************************************** + * + * @function: + * FT_Glyph_To_Bitmap + * + * @description: + * Convert a given glyph object to a bitmap glyph object. + * + * @inout: + * the_glyph :: + * A pointer to a handle to the target glyph. + * + * @input: + * render_mode :: + * An enumeration that describes how the data is rendered. + * + * origin :: + * A pointer to a vector used to translate the glyph image before + * rendering. Can be~0 (if no translation). The origin is expressed + * in 26.6 pixels. + * + * destroy :: + * A boolean that indicates that the original glyph image should be + * destroyed by this function. It is never destroyed in case of error. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function does nothing if the glyph format isn't scalable. + * + * The glyph image is translated with the `origin` vector before + * rendering. + * + * The first parameter is a pointer to an @FT_Glyph handle, that will be + * _replaced_ by this function (with newly allocated data). Typically, + * you would use (omitting error handling): + * + * ``` + * FT_Glyph glyph; + * FT_BitmapGlyph glyph_bitmap; + * + * + * // load glyph + * error = FT_Load_Char( face, glyph_index, FT_LOAD_DEFAULT ); + * + * // extract glyph image + * error = FT_Get_Glyph( face->glyph, &glyph ); + * + * // convert to a bitmap (default render mode + destroying old) + * if ( glyph->format != FT_GLYPH_FORMAT_BITMAP ) + * { + * error = FT_Glyph_To_Bitmap( &glyph, FT_RENDER_MODE_NORMAL, + * 0, 1 ); + * if ( error ) // `glyph' unchanged + * ... + * } + * + * // access bitmap content by typecasting + * glyph_bitmap = (FT_BitmapGlyph)glyph; + * + * // do funny stuff with it, like blitting/drawing + * ... + * + * // discard glyph image (bitmap or not) + * FT_Done_Glyph( glyph ); + * ``` + * + * Here is another example, again without error handling: + * + * ``` + * FT_Glyph glyphs[MAX_GLYPHS] + * + * + * ... + * + * for ( idx = 0; i < MAX_GLYPHS; i++ ) + * error = FT_Load_Glyph( face, idx, FT_LOAD_DEFAULT ) || + * FT_Get_Glyph ( face->glyph, &glyphs[idx] ); + * + * ... + * + * for ( idx = 0; i < MAX_GLYPHS; i++ ) + * { + * FT_Glyph bitmap = glyphs[idx]; + * + * + * ... + * + * // after this call, `bitmap' no longer points into + * // the `glyphs' array (and the old value isn't destroyed) + * FT_Glyph_To_Bitmap( &bitmap, FT_RENDER_MODE_MONO, 0, 0 ); + * + * ... + * + * FT_Done_Glyph( bitmap ); + * } + * + * ... + * + * for ( idx = 0; i < MAX_GLYPHS; i++ ) + * FT_Done_Glyph( glyphs[idx] ); + * ``` + */ + FT_EXPORT( FT_Error ) + FT_Glyph_To_Bitmap( FT_Glyph* the_glyph, + FT_Render_Mode render_mode, + FT_Vector* origin, + FT_Bool destroy ); + + + /************************************************************************** + * + * @function: + * FT_Done_Glyph + * + * @description: + * Destroy a given glyph. + * + * @input: + * glyph :: + * A handle to the target glyph object. + */ + FT_EXPORT( void ) + FT_Done_Glyph( FT_Glyph glyph ); + + /* */ + + + /* other helpful functions */ + + /************************************************************************** + * + * @section: + * computations + * + */ + + + /************************************************************************** + * + * @function: + * FT_Matrix_Multiply + * + * @description: + * Perform the matrix operation `b = a*b`. + * + * @input: + * a :: + * A pointer to matrix `a`. + * + * @inout: + * b :: + * A pointer to matrix `b`. + * + * @note: + * The result is undefined if either `a` or `b` is zero. + * + * Since the function uses wrap-around arithmetic, results become + * meaningless if the arguments are very large. + */ + FT_EXPORT( void ) + FT_Matrix_Multiply( const FT_Matrix* a, + FT_Matrix* b ); + + + /************************************************************************** + * + * @function: + * FT_Matrix_Invert + * + * @description: + * Invert a 2x2 matrix. Return an error if it can't be inverted. + * + * @inout: + * matrix :: + * A pointer to the target matrix. Remains untouched in case of error. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Matrix_Invert( FT_Matrix* matrix ); + + /* */ + + +FT_END_HEADER + +#endif /* FTGLYPH_H_ */ + + +/* END */ + + +/* Local Variables: */ +/* coding: utf-8 */ +/* End: */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftgxval.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftgxval.h new file mode 100644 index 0000000..b14f637 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftgxval.h @@ -0,0 +1,355 @@ +/**************************************************************************** + * + * ftgxval.h + * + * FreeType API for validating TrueTypeGX/AAT tables (specification). + * + * Copyright (C) 2004-2019 by + * Masatake YAMATO, Redhat K.K, + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + +/**************************************************************************** + * + * gxvalid is derived from both gxlayout module and otvalid module. + * Development of gxlayout is supported by the Information-technology + * Promotion Agency(IPA), Japan. + * + */ + + +#ifndef FTGXVAL_H_ +#define FTGXVAL_H_ + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * gx_validation + * + * @title: + * TrueTypeGX/AAT Validation + * + * @abstract: + * An API to validate TrueTypeGX/AAT tables. + * + * @description: + * This section contains the declaration of functions to validate some + * TrueTypeGX tables (feat, mort, morx, bsln, just, kern, opbd, trak, + * prop, lcar). + * + * @order: + * FT_TrueTypeGX_Validate + * FT_TrueTypeGX_Free + * + * FT_ClassicKern_Validate + * FT_ClassicKern_Free + * + * FT_VALIDATE_GX_LENGTH + * FT_VALIDATE_GXXXX + * FT_VALIDATE_CKERNXXX + * + */ + + /************************************************************************** + * + * + * Warning: Use `FT_VALIDATE_XXX` to validate a table. + * Following definitions are for gxvalid developers. + * + * + */ + +#define FT_VALIDATE_feat_INDEX 0 +#define FT_VALIDATE_mort_INDEX 1 +#define FT_VALIDATE_morx_INDEX 2 +#define FT_VALIDATE_bsln_INDEX 3 +#define FT_VALIDATE_just_INDEX 4 +#define FT_VALIDATE_kern_INDEX 5 +#define FT_VALIDATE_opbd_INDEX 6 +#define FT_VALIDATE_trak_INDEX 7 +#define FT_VALIDATE_prop_INDEX 8 +#define FT_VALIDATE_lcar_INDEX 9 +#define FT_VALIDATE_GX_LAST_INDEX FT_VALIDATE_lcar_INDEX + + + /************************************************************************** + * + * @macro: + * FT_VALIDATE_GX_LENGTH + * + * @description: + * The number of tables checked in this module. Use it as a parameter + * for the `table-length` argument of function @FT_TrueTypeGX_Validate. + */ +#define FT_VALIDATE_GX_LENGTH ( FT_VALIDATE_GX_LAST_INDEX + 1 ) + + /* */ + + /* Up to 0x1000 is used by otvalid. + Ox2xxx is reserved for feature OT extension. */ +#define FT_VALIDATE_GX_START 0x4000 +#define FT_VALIDATE_GX_BITFIELD( tag ) \ + ( FT_VALIDATE_GX_START << FT_VALIDATE_##tag##_INDEX ) + + + /************************************************************************** + * + * @enum: + * FT_VALIDATE_GXXXX + * + * @description: + * A list of bit-field constants used with @FT_TrueTypeGX_Validate to + * indicate which TrueTypeGX/AAT Type tables should be validated. + * + * @values: + * FT_VALIDATE_feat :: + * Validate 'feat' table. + * + * FT_VALIDATE_mort :: + * Validate 'mort' table. + * + * FT_VALIDATE_morx :: + * Validate 'morx' table. + * + * FT_VALIDATE_bsln :: + * Validate 'bsln' table. + * + * FT_VALIDATE_just :: + * Validate 'just' table. + * + * FT_VALIDATE_kern :: + * Validate 'kern' table. + * + * FT_VALIDATE_opbd :: + * Validate 'opbd' table. + * + * FT_VALIDATE_trak :: + * Validate 'trak' table. + * + * FT_VALIDATE_prop :: + * Validate 'prop' table. + * + * FT_VALIDATE_lcar :: + * Validate 'lcar' table. + * + * FT_VALIDATE_GX :: + * Validate all TrueTypeGX tables (feat, mort, morx, bsln, just, kern, + * opbd, trak, prop and lcar). + * + */ + +#define FT_VALIDATE_feat FT_VALIDATE_GX_BITFIELD( feat ) +#define FT_VALIDATE_mort FT_VALIDATE_GX_BITFIELD( mort ) +#define FT_VALIDATE_morx FT_VALIDATE_GX_BITFIELD( morx ) +#define FT_VALIDATE_bsln FT_VALIDATE_GX_BITFIELD( bsln ) +#define FT_VALIDATE_just FT_VALIDATE_GX_BITFIELD( just ) +#define FT_VALIDATE_kern FT_VALIDATE_GX_BITFIELD( kern ) +#define FT_VALIDATE_opbd FT_VALIDATE_GX_BITFIELD( opbd ) +#define FT_VALIDATE_trak FT_VALIDATE_GX_BITFIELD( trak ) +#define FT_VALIDATE_prop FT_VALIDATE_GX_BITFIELD( prop ) +#define FT_VALIDATE_lcar FT_VALIDATE_GX_BITFIELD( lcar ) + +#define FT_VALIDATE_GX ( FT_VALIDATE_feat | \ + FT_VALIDATE_mort | \ + FT_VALIDATE_morx | \ + FT_VALIDATE_bsln | \ + FT_VALIDATE_just | \ + FT_VALIDATE_kern | \ + FT_VALIDATE_opbd | \ + FT_VALIDATE_trak | \ + FT_VALIDATE_prop | \ + FT_VALIDATE_lcar ) + + + /************************************************************************** + * + * @function: + * FT_TrueTypeGX_Validate + * + * @description: + * Validate various TrueTypeGX tables to assure that all offsets and + * indices are valid. The idea is that a higher-level library that + * actually does the text layout can access those tables without error + * checking (which can be quite time consuming). + * + * @input: + * face :: + * A handle to the input face. + * + * validation_flags :: + * A bit field that specifies the tables to be validated. See + * @FT_VALIDATE_GXXXX for possible values. + * + * table_length :: + * The size of the `tables` array. Normally, @FT_VALIDATE_GX_LENGTH + * should be passed. + * + * @output: + * tables :: + * The array where all validated sfnt tables are stored. The array + * itself must be allocated by a client. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with TrueTypeGX fonts, returning an error + * otherwise. + * + * After use, the application should deallocate the buffers pointed to by + * each `tables` element, by calling @FT_TrueTypeGX_Free. A `NULL` value + * indicates that the table either doesn't exist in the font, the + * application hasn't asked for validation, or the validator doesn't have + * the ability to validate the sfnt table. + */ + FT_EXPORT( FT_Error ) + FT_TrueTypeGX_Validate( FT_Face face, + FT_UInt validation_flags, + FT_Bytes tables[FT_VALIDATE_GX_LENGTH], + FT_UInt table_length ); + + + /************************************************************************** + * + * @function: + * FT_TrueTypeGX_Free + * + * @description: + * Free the buffer allocated by TrueTypeGX validator. + * + * @input: + * face :: + * A handle to the input face. + * + * table :: + * The pointer to the buffer allocated by @FT_TrueTypeGX_Validate. + * + * @note: + * This function must be used to free the buffer allocated by + * @FT_TrueTypeGX_Validate only. + */ + FT_EXPORT( void ) + FT_TrueTypeGX_Free( FT_Face face, + FT_Bytes table ); + + + /************************************************************************** + * + * @enum: + * FT_VALIDATE_CKERNXXX + * + * @description: + * A list of bit-field constants used with @FT_ClassicKern_Validate to + * indicate the classic kern dialect or dialects. If the selected type + * doesn't fit, @FT_ClassicKern_Validate regards the table as invalid. + * + * @values: + * FT_VALIDATE_MS :: + * Handle the 'kern' table as a classic Microsoft kern table. + * + * FT_VALIDATE_APPLE :: + * Handle the 'kern' table as a classic Apple kern table. + * + * FT_VALIDATE_CKERN :: + * Handle the 'kern' as either classic Apple or Microsoft kern table. + */ +#define FT_VALIDATE_MS ( FT_VALIDATE_GX_START << 0 ) +#define FT_VALIDATE_APPLE ( FT_VALIDATE_GX_START << 1 ) + +#define FT_VALIDATE_CKERN ( FT_VALIDATE_MS | FT_VALIDATE_APPLE ) + + + /************************************************************************** + * + * @function: + * FT_ClassicKern_Validate + * + * @description: + * Validate classic (16-bit format) kern table to assure that the + * offsets and indices are valid. The idea is that a higher-level + * library that actually does the text layout can access those tables + * without error checking (which can be quite time consuming). + * + * The 'kern' table validator in @FT_TrueTypeGX_Validate deals with both + * the new 32-bit format and the classic 16-bit format, while + * FT_ClassicKern_Validate only supports the classic 16-bit format. + * + * @input: + * face :: + * A handle to the input face. + * + * validation_flags :: + * A bit field that specifies the dialect to be validated. See + * @FT_VALIDATE_CKERNXXX for possible values. + * + * @output: + * ckern_table :: + * A pointer to the kern table. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * After use, the application should deallocate the buffers pointed to by + * `ckern_table`, by calling @FT_ClassicKern_Free. A `NULL` value + * indicates that the table doesn't exist in the font. + */ + FT_EXPORT( FT_Error ) + FT_ClassicKern_Validate( FT_Face face, + FT_UInt validation_flags, + FT_Bytes *ckern_table ); + + + /************************************************************************** + * + * @function: + * FT_ClassicKern_Free + * + * @description: + * Free the buffer allocated by classic Kern validator. + * + * @input: + * face :: + * A handle to the input face. + * + * table :: + * The pointer to the buffer that is allocated by + * @FT_ClassicKern_Validate. + * + * @note: + * This function must be used to free the buffer allocated by + * @FT_ClassicKern_Validate only. + */ + FT_EXPORT( void ) + FT_ClassicKern_Free( FT_Face face, + FT_Bytes table ); + + /* */ + + +FT_END_HEADER + +#endif /* FTGXVAL_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftgzip.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftgzip.h new file mode 100644 index 0000000..418c612 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftgzip.h @@ -0,0 +1,151 @@ +/**************************************************************************** + * + * ftgzip.h + * + * Gzip-compressed stream support. + * + * Copyright (C) 2002-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTGZIP_H_ +#define FTGZIP_H_ + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /************************************************************************** + * + * @section: + * gzip + * + * @title: + * GZIP Streams + * + * @abstract: + * Using gzip-compressed font files. + * + * @description: + * This section contains the declaration of Gzip-specific functions. + * + */ + + + /************************************************************************** + * + * @function: + * FT_Stream_OpenGzip + * + * @description: + * Open a new stream to parse gzip-compressed font files. This is mainly + * used to support the compressed `*.pcf.gz` fonts that come with + * XFree86. + * + * @input: + * stream :: + * The target embedding stream. + * + * source :: + * The source stream. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The source stream must be opened _before_ calling this function. + * + * Calling the internal function `FT_Stream_Close` on the new stream will + * **not** call `FT_Stream_Close` on the source stream. None of the + * stream objects will be released to the heap. + * + * The stream implementation is very basic and resets the decompression + * process each time seeking backwards is needed within the stream. + * + * In certain builds of the library, gzip compression recognition is + * automatically handled when calling @FT_New_Face or @FT_Open_Face. + * This means that if no font driver is capable of handling the raw + * compressed file, the library will try to open a gzipped stream from it + * and re-open the face with it. + * + * This function may return `FT_Err_Unimplemented_Feature` if your build + * of FreeType was not compiled with zlib support. + */ + FT_EXPORT( FT_Error ) + FT_Stream_OpenGzip( FT_Stream stream, + FT_Stream source ); + + + /************************************************************************** + * + * @function: + * FT_Gzip_Uncompress + * + * @description: + * Decompress a zipped input buffer into an output buffer. This function + * is modeled after zlib's `uncompress` function. + * + * @input: + * memory :: + * A FreeType memory handle. + * + * input :: + * The input buffer. + * + * input_len :: + * The length of the input buffer. + * + * @output: + * output :: + * The output buffer. + * + * @inout: + * output_len :: + * Before calling the function, this is the total size of the output + * buffer, which must be large enough to hold the entire uncompressed + * data (so the size of the uncompressed data must be known in + * advance). After calling the function, `output_len` is the size of + * the used data in `output`. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function may return `FT_Err_Unimplemented_Feature` if your build + * of FreeType was not compiled with zlib support. + * + * @since: + * 2.5.1 + */ + FT_EXPORT( FT_Error ) + FT_Gzip_Uncompress( FT_Memory memory, + FT_Byte* output, + FT_ULong* output_len, + const FT_Byte* input, + FT_ULong input_len ); + + /* */ + + +FT_END_HEADER + +#endif /* FTGZIP_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftimage.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftimage.h new file mode 100644 index 0000000..d640b0b --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftimage.h @@ -0,0 +1,1240 @@ +/**************************************************************************** + * + * ftimage.h + * + * FreeType glyph image formats and default raster interface + * (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + /************************************************************************** + * + * Note: A 'raster' is simply a scan-line converter, used to render + * FT_Outlines into FT_Bitmaps. + * + */ + + +#ifndef FTIMAGE_H_ +#define FTIMAGE_H_ + + + /* STANDALONE_ is from ftgrays.c */ +#ifndef STANDALONE_ +#include +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * basic_types + * + */ + + + /************************************************************************** + * + * @type: + * FT_Pos + * + * @description: + * The type FT_Pos is used to store vectorial coordinates. Depending on + * the context, these can represent distances in integer font units, or + * 16.16, or 26.6 fixed-point pixel coordinates. + */ + typedef signed long FT_Pos; + + + /************************************************************************** + * + * @struct: + * FT_Vector + * + * @description: + * A simple structure used to store a 2D vector; coordinates are of the + * FT_Pos type. + * + * @fields: + * x :: + * The horizontal coordinate. + * y :: + * The vertical coordinate. + */ + typedef struct FT_Vector_ + { + FT_Pos x; + FT_Pos y; + + } FT_Vector; + + + /************************************************************************** + * + * @struct: + * FT_BBox + * + * @description: + * A structure used to hold an outline's bounding box, i.e., the + * coordinates of its extrema in the horizontal and vertical directions. + * + * @fields: + * xMin :: + * The horizontal minimum (left-most). + * + * yMin :: + * The vertical minimum (bottom-most). + * + * xMax :: + * The horizontal maximum (right-most). + * + * yMax :: + * The vertical maximum (top-most). + * + * @note: + * The bounding box is specified with the coordinates of the lower left + * and the upper right corner. In PostScript, those values are often + * called (llx,lly) and (urx,ury), respectively. + * + * If `yMin` is negative, this value gives the glyph's descender. + * Otherwise, the glyph doesn't descend below the baseline. Similarly, + * if `ymax` is positive, this value gives the glyph's ascender. + * + * `xMin` gives the horizontal distance from the glyph's origin to the + * left edge of the glyph's bounding box. If `xMin` is negative, the + * glyph extends to the left of the origin. + */ + typedef struct FT_BBox_ + { + FT_Pos xMin, yMin; + FT_Pos xMax, yMax; + + } FT_BBox; + + + /************************************************************************** + * + * @enum: + * FT_Pixel_Mode + * + * @description: + * An enumeration type used to describe the format of pixels in a given + * bitmap. Note that additional formats may be added in the future. + * + * @values: + * FT_PIXEL_MODE_NONE :: + * Value~0 is reserved. + * + * FT_PIXEL_MODE_MONO :: + * A monochrome bitmap, using 1~bit per pixel. Note that pixels are + * stored in most-significant order (MSB), which means that the + * left-most pixel in a byte has value 128. + * + * FT_PIXEL_MODE_GRAY :: + * An 8-bit bitmap, generally used to represent anti-aliased glyph + * images. Each pixel is stored in one byte. Note that the number of + * 'gray' levels is stored in the `num_grays` field of the @FT_Bitmap + * structure (it generally is 256). + * + * FT_PIXEL_MODE_GRAY2 :: + * A 2-bit per pixel bitmap, used to represent embedded anti-aliased + * bitmaps in font files according to the OpenType specification. We + * haven't found a single font using this format, however. + * + * FT_PIXEL_MODE_GRAY4 :: + * A 4-bit per pixel bitmap, representing embedded anti-aliased bitmaps + * in font files according to the OpenType specification. We haven't + * found a single font using this format, however. + * + * FT_PIXEL_MODE_LCD :: + * An 8-bit bitmap, representing RGB or BGR decimated glyph images used + * for display on LCD displays; the bitmap is three times wider than + * the original glyph image. See also @FT_RENDER_MODE_LCD. + * + * FT_PIXEL_MODE_LCD_V :: + * An 8-bit bitmap, representing RGB or BGR decimated glyph images used + * for display on rotated LCD displays; the bitmap is three times + * taller than the original glyph image. See also + * @FT_RENDER_MODE_LCD_V. + * + * FT_PIXEL_MODE_BGRA :: + * [Since 2.5] An image with four 8-bit channels per pixel, + * representing a color image (such as emoticons) with alpha channel. + * For each pixel, the format is BGRA, which means, the blue channel + * comes first in memory. The color channels are pre-multiplied and in + * the sRGB colorspace. For example, full red at half-translucent + * opacity will be represented as '00,00,80,80', not '00,00,FF,80'. + * See also @FT_LOAD_COLOR. + */ + typedef enum FT_Pixel_Mode_ + { + FT_PIXEL_MODE_NONE = 0, + FT_PIXEL_MODE_MONO, + FT_PIXEL_MODE_GRAY, + FT_PIXEL_MODE_GRAY2, + FT_PIXEL_MODE_GRAY4, + FT_PIXEL_MODE_LCD, + FT_PIXEL_MODE_LCD_V, + FT_PIXEL_MODE_BGRA, + + FT_PIXEL_MODE_MAX /* do not remove */ + + } FT_Pixel_Mode; + + + /* these constants are deprecated; use the corresponding `FT_Pixel_Mode` */ + /* values instead. */ +#define ft_pixel_mode_none FT_PIXEL_MODE_NONE +#define ft_pixel_mode_mono FT_PIXEL_MODE_MONO +#define ft_pixel_mode_grays FT_PIXEL_MODE_GRAY +#define ft_pixel_mode_pal2 FT_PIXEL_MODE_GRAY2 +#define ft_pixel_mode_pal4 FT_PIXEL_MODE_GRAY4 + + + /************************************************************************** + * + * @struct: + * FT_Bitmap + * + * @description: + * A structure used to describe a bitmap or pixmap to the raster. Note + * that we now manage pixmaps of various depths through the `pixel_mode` + * field. + * + * @fields: + * rows :: + * The number of bitmap rows. + * + * width :: + * The number of pixels in bitmap row. + * + * pitch :: + * The pitch's absolute value is the number of bytes taken by one + * bitmap row, including padding. However, the pitch is positive when + * the bitmap has a 'down' flow, and negative when it has an 'up' flow. + * In all cases, the pitch is an offset to add to a bitmap pointer in + * order to go down one row. + * + * Note that 'padding' means the alignment of a bitmap to a byte + * border, and FreeType functions normally align to the smallest + * possible integer value. + * + * For the B/W rasterizer, `pitch` is always an even number. + * + * To change the pitch of a bitmap (say, to make it a multiple of 4), + * use @FT_Bitmap_Convert. Alternatively, you might use callback + * functions to directly render to the application's surface; see the + * file `example2.cpp` in the tutorial for a demonstration. + * + * buffer :: + * A typeless pointer to the bitmap buffer. This value should be + * aligned on 32-bit boundaries in most cases. + * + * num_grays :: + * This field is only used with @FT_PIXEL_MODE_GRAY; it gives the + * number of gray levels used in the bitmap. + * + * pixel_mode :: + * The pixel mode, i.e., how pixel bits are stored. See @FT_Pixel_Mode + * for possible values. + * + * palette_mode :: + * This field is intended for paletted pixel modes; it indicates how + * the palette is stored. Not used currently. + * + * palette :: + * A typeless pointer to the bitmap palette; this field is intended for + * paletted pixel modes. Not used currently. + */ + typedef struct FT_Bitmap_ + { + unsigned int rows; + unsigned int width; + int pitch; + unsigned char* buffer; + unsigned short num_grays; + unsigned char pixel_mode; + unsigned char palette_mode; + void* palette; + + } FT_Bitmap; + + + /************************************************************************** + * + * @section: + * outline_processing + * + */ + + + /************************************************************************** + * + * @struct: + * FT_Outline + * + * @description: + * This structure is used to describe an outline to the scan-line + * converter. + * + * @fields: + * n_contours :: + * The number of contours in the outline. + * + * n_points :: + * The number of points in the outline. + * + * points :: + * A pointer to an array of `n_points` @FT_Vector elements, giving the + * outline's point coordinates. + * + * tags :: + * A pointer to an array of `n_points` chars, giving each outline + * point's type. + * + * If bit~0 is unset, the point is 'off' the curve, i.e., a Bezier + * control point, while it is 'on' if set. + * + * Bit~1 is meaningful for 'off' points only. If set, it indicates a + * third-order Bezier arc control point; and a second-order control + * point if unset. + * + * If bit~2 is set, bits 5-7 contain the drop-out mode (as defined in + * the OpenType specification; the value is the same as the argument to + * the 'SCANMODE' instruction). + * + * Bits 3 and~4 are reserved for internal purposes. + * + * contours :: + * An array of `n_contours` shorts, giving the end point of each + * contour within the outline. For example, the first contour is + * defined by the points '0' to `contours[0]`, the second one is + * defined by the points `contours[0]+1` to `contours[1]`, etc. + * + * flags :: + * A set of bit flags used to characterize the outline and give hints + * to the scan-converter and hinter on how to convert/grid-fit it. See + * @FT_OUTLINE_XXX. + * + * @note: + * The B/W rasterizer only checks bit~2 in the `tags` array for the first + * point of each contour. The drop-out mode as given with + * @FT_OUTLINE_IGNORE_DROPOUTS, @FT_OUTLINE_SMART_DROPOUTS, and + * @FT_OUTLINE_INCLUDE_STUBS in `flags` is then overridden. + */ + typedef struct FT_Outline_ + { + short n_contours; /* number of contours in glyph */ + short n_points; /* number of points in the glyph */ + + FT_Vector* points; /* the outline's points */ + char* tags; /* the points flags */ + short* contours; /* the contour end points */ + + int flags; /* outline masks */ + + } FT_Outline; + + /* */ + + /* Following limits must be consistent with */ + /* FT_Outline.{n_contours,n_points} */ +#define FT_OUTLINE_CONTOURS_MAX SHRT_MAX +#define FT_OUTLINE_POINTS_MAX SHRT_MAX + + + /************************************************************************** + * + * @enum: + * FT_OUTLINE_XXX + * + * @description: + * A list of bit-field constants used for the flags in an outline's + * `flags` field. + * + * @values: + * FT_OUTLINE_NONE :: + * Value~0 is reserved. + * + * FT_OUTLINE_OWNER :: + * If set, this flag indicates that the outline's field arrays (i.e., + * `points`, `flags`, and `contours`) are 'owned' by the outline + * object, and should thus be freed when it is destroyed. + * + * FT_OUTLINE_EVEN_ODD_FILL :: + * By default, outlines are filled using the non-zero winding rule. If + * set to 1, the outline will be filled using the even-odd fill rule + * (only works with the smooth rasterizer). + * + * FT_OUTLINE_REVERSE_FILL :: + * By default, outside contours of an outline are oriented in + * clock-wise direction, as defined in the TrueType specification. + * This flag is set if the outline uses the opposite direction + * (typically for Type~1 fonts). This flag is ignored by the scan + * converter. + * + * FT_OUTLINE_IGNORE_DROPOUTS :: + * By default, the scan converter will try to detect drop-outs in an + * outline and correct the glyph bitmap to ensure consistent shape + * continuity. If set, this flag hints the scan-line converter to + * ignore such cases. See below for more information. + * + * FT_OUTLINE_SMART_DROPOUTS :: + * Select smart dropout control. If unset, use simple dropout control. + * Ignored if @FT_OUTLINE_IGNORE_DROPOUTS is set. See below for more + * information. + * + * FT_OUTLINE_INCLUDE_STUBS :: + * If set, turn pixels on for 'stubs', otherwise exclude them. Ignored + * if @FT_OUTLINE_IGNORE_DROPOUTS is set. See below for more + * information. + * + * FT_OUTLINE_HIGH_PRECISION :: + * This flag indicates that the scan-line converter should try to + * convert this outline to bitmaps with the highest possible quality. + * It is typically set for small character sizes. Note that this is + * only a hint that might be completely ignored by a given + * scan-converter. + * + * FT_OUTLINE_SINGLE_PASS :: + * This flag is set to force a given scan-converter to only use a + * single pass over the outline to render a bitmap glyph image. + * Normally, it is set for very large character sizes. It is only a + * hint that might be completely ignored by a given scan-converter. + * + * @note: + * The flags @FT_OUTLINE_IGNORE_DROPOUTS, @FT_OUTLINE_SMART_DROPOUTS, and + * @FT_OUTLINE_INCLUDE_STUBS are ignored by the smooth rasterizer. + * + * There exists a second mechanism to pass the drop-out mode to the B/W + * rasterizer; see the `tags` field in @FT_Outline. + * + * Please refer to the description of the 'SCANTYPE' instruction in the + * OpenType specification (in file `ttinst1.doc`) how simple drop-outs, + * smart drop-outs, and stubs are defined. + */ +#define FT_OUTLINE_NONE 0x0 +#define FT_OUTLINE_OWNER 0x1 +#define FT_OUTLINE_EVEN_ODD_FILL 0x2 +#define FT_OUTLINE_REVERSE_FILL 0x4 +#define FT_OUTLINE_IGNORE_DROPOUTS 0x8 +#define FT_OUTLINE_SMART_DROPOUTS 0x10 +#define FT_OUTLINE_INCLUDE_STUBS 0x20 + +#define FT_OUTLINE_HIGH_PRECISION 0x100 +#define FT_OUTLINE_SINGLE_PASS 0x200 + + + /* these constants are deprecated; use the corresponding */ + /* `FT_OUTLINE_XXX` values instead */ +#define ft_outline_none FT_OUTLINE_NONE +#define ft_outline_owner FT_OUTLINE_OWNER +#define ft_outline_even_odd_fill FT_OUTLINE_EVEN_ODD_FILL +#define ft_outline_reverse_fill FT_OUTLINE_REVERSE_FILL +#define ft_outline_ignore_dropouts FT_OUTLINE_IGNORE_DROPOUTS +#define ft_outline_high_precision FT_OUTLINE_HIGH_PRECISION +#define ft_outline_single_pass FT_OUTLINE_SINGLE_PASS + + /* */ + +#define FT_CURVE_TAG( flag ) ( flag & 0x03 ) + + /* see the `tags` field in `FT_Outline` for a description of the values */ +#define FT_CURVE_TAG_ON 0x01 +#define FT_CURVE_TAG_CONIC 0x00 +#define FT_CURVE_TAG_CUBIC 0x02 + +#define FT_CURVE_TAG_HAS_SCANMODE 0x04 + +#define FT_CURVE_TAG_TOUCH_X 0x08 /* reserved for TrueType hinter */ +#define FT_CURVE_TAG_TOUCH_Y 0x10 /* reserved for TrueType hinter */ + +#define FT_CURVE_TAG_TOUCH_BOTH ( FT_CURVE_TAG_TOUCH_X | \ + FT_CURVE_TAG_TOUCH_Y ) + /* values 0x20, 0x40, and 0x80 are reserved */ + + + /* these constants are deprecated; use the corresponding */ + /* `FT_CURVE_TAG_XXX` values instead */ +#define FT_Curve_Tag_On FT_CURVE_TAG_ON +#define FT_Curve_Tag_Conic FT_CURVE_TAG_CONIC +#define FT_Curve_Tag_Cubic FT_CURVE_TAG_CUBIC +#define FT_Curve_Tag_Touch_X FT_CURVE_TAG_TOUCH_X +#define FT_Curve_Tag_Touch_Y FT_CURVE_TAG_TOUCH_Y + + + /************************************************************************** + * + * @functype: + * FT_Outline_MoveToFunc + * + * @description: + * A function pointer type used to describe the signature of a 'move to' + * function during outline walking/decomposition. + * + * A 'move to' is emitted to start a new contour in an outline. + * + * @input: + * to :: + * A pointer to the target point of the 'move to'. + * + * user :: + * A typeless pointer, which is passed from the caller of the + * decomposition function. + * + * @return: + * Error code. 0~means success. + */ + typedef int + (*FT_Outline_MoveToFunc)( const FT_Vector* to, + void* user ); + +#define FT_Outline_MoveTo_Func FT_Outline_MoveToFunc + + + /************************************************************************** + * + * @functype: + * FT_Outline_LineToFunc + * + * @description: + * A function pointer type used to describe the signature of a 'line to' + * function during outline walking/decomposition. + * + * A 'line to' is emitted to indicate a segment in the outline. + * + * @input: + * to :: + * A pointer to the target point of the 'line to'. + * + * user :: + * A typeless pointer, which is passed from the caller of the + * decomposition function. + * + * @return: + * Error code. 0~means success. + */ + typedef int + (*FT_Outline_LineToFunc)( const FT_Vector* to, + void* user ); + +#define FT_Outline_LineTo_Func FT_Outline_LineToFunc + + + /************************************************************************** + * + * @functype: + * FT_Outline_ConicToFunc + * + * @description: + * A function pointer type used to describe the signature of a 'conic to' + * function during outline walking or decomposition. + * + * A 'conic to' is emitted to indicate a second-order Bezier arc in the + * outline. + * + * @input: + * control :: + * An intermediate control point between the last position and the new + * target in `to`. + * + * to :: + * A pointer to the target end point of the conic arc. + * + * user :: + * A typeless pointer, which is passed from the caller of the + * decomposition function. + * + * @return: + * Error code. 0~means success. + */ + typedef int + (*FT_Outline_ConicToFunc)( const FT_Vector* control, + const FT_Vector* to, + void* user ); + +#define FT_Outline_ConicTo_Func FT_Outline_ConicToFunc + + + /************************************************************************** + * + * @functype: + * FT_Outline_CubicToFunc + * + * @description: + * A function pointer type used to describe the signature of a 'cubic to' + * function during outline walking or decomposition. + * + * A 'cubic to' is emitted to indicate a third-order Bezier arc. + * + * @input: + * control1 :: + * A pointer to the first Bezier control point. + * + * control2 :: + * A pointer to the second Bezier control point. + * + * to :: + * A pointer to the target end point. + * + * user :: + * A typeless pointer, which is passed from the caller of the + * decomposition function. + * + * @return: + * Error code. 0~means success. + */ + typedef int + (*FT_Outline_CubicToFunc)( const FT_Vector* control1, + const FT_Vector* control2, + const FT_Vector* to, + void* user ); + +#define FT_Outline_CubicTo_Func FT_Outline_CubicToFunc + + + /************************************************************************** + * + * @struct: + * FT_Outline_Funcs + * + * @description: + * A structure to hold various function pointers used during outline + * decomposition in order to emit segments, conic, and cubic Beziers. + * + * @fields: + * move_to :: + * The 'move to' emitter. + * + * line_to :: + * The segment emitter. + * + * conic_to :: + * The second-order Bezier arc emitter. + * + * cubic_to :: + * The third-order Bezier arc emitter. + * + * shift :: + * The shift that is applied to coordinates before they are sent to the + * emitter. + * + * delta :: + * The delta that is applied to coordinates before they are sent to the + * emitter, but after the shift. + * + * @note: + * The point coordinates sent to the emitters are the transformed version + * of the original coordinates (this is important for high accuracy + * during scan-conversion). The transformation is simple: + * + * ``` + * x' = (x << shift) - delta + * y' = (y << shift) - delta + * ``` + * + * Set the values of `shift` and `delta` to~0 to get the original point + * coordinates. + */ + typedef struct FT_Outline_Funcs_ + { + FT_Outline_MoveToFunc move_to; + FT_Outline_LineToFunc line_to; + FT_Outline_ConicToFunc conic_to; + FT_Outline_CubicToFunc cubic_to; + + int shift; + FT_Pos delta; + + } FT_Outline_Funcs; + + + /************************************************************************** + * + * @section: + * basic_types + * + */ + + + /************************************************************************** + * + * @macro: + * FT_IMAGE_TAG + * + * @description: + * This macro converts four-letter tags to an unsigned long type. + * + * @note: + * Since many 16-bit compilers don't like 32-bit enumerations, you should + * redefine this macro in case of problems to something like this: + * + * ``` + * #define FT_IMAGE_TAG( value, _x1, _x2, _x3, _x4 ) value + * ``` + * + * to get a simple enumeration without assigning special numbers. + */ +#ifndef FT_IMAGE_TAG +#define FT_IMAGE_TAG( value, _x1, _x2, _x3, _x4 ) \ + value = ( ( (unsigned long)_x1 << 24 ) | \ + ( (unsigned long)_x2 << 16 ) | \ + ( (unsigned long)_x3 << 8 ) | \ + (unsigned long)_x4 ) +#endif /* FT_IMAGE_TAG */ + + + /************************************************************************** + * + * @enum: + * FT_Glyph_Format + * + * @description: + * An enumeration type used to describe the format of a given glyph + * image. Note that this version of FreeType only supports two image + * formats, even though future font drivers will be able to register + * their own format. + * + * @values: + * FT_GLYPH_FORMAT_NONE :: + * The value~0 is reserved. + * + * FT_GLYPH_FORMAT_COMPOSITE :: + * The glyph image is a composite of several other images. This format + * is _only_ used with @FT_LOAD_NO_RECURSE, and is used to report + * compound glyphs (like accented characters). + * + * FT_GLYPH_FORMAT_BITMAP :: + * The glyph image is a bitmap, and can be described as an @FT_Bitmap. + * You generally need to access the `bitmap` field of the + * @FT_GlyphSlotRec structure to read it. + * + * FT_GLYPH_FORMAT_OUTLINE :: + * The glyph image is a vectorial outline made of line segments and + * Bezier arcs; it can be described as an @FT_Outline; you generally + * want to access the `outline` field of the @FT_GlyphSlotRec structure + * to read it. + * + * FT_GLYPH_FORMAT_PLOTTER :: + * The glyph image is a vectorial path with no inside and outside + * contours. Some Type~1 fonts, like those in the Hershey family, + * contain glyphs in this format. These are described as @FT_Outline, + * but FreeType isn't currently capable of rendering them correctly. + */ + typedef enum FT_Glyph_Format_ + { + FT_IMAGE_TAG( FT_GLYPH_FORMAT_NONE, 0, 0, 0, 0 ), + + FT_IMAGE_TAG( FT_GLYPH_FORMAT_COMPOSITE, 'c', 'o', 'm', 'p' ), + FT_IMAGE_TAG( FT_GLYPH_FORMAT_BITMAP, 'b', 'i', 't', 's' ), + FT_IMAGE_TAG( FT_GLYPH_FORMAT_OUTLINE, 'o', 'u', 't', 'l' ), + FT_IMAGE_TAG( FT_GLYPH_FORMAT_PLOTTER, 'p', 'l', 'o', 't' ) + + } FT_Glyph_Format; + + + /* these constants are deprecated; use the corresponding */ + /* `FT_Glyph_Format` values instead. */ +#define ft_glyph_format_none FT_GLYPH_FORMAT_NONE +#define ft_glyph_format_composite FT_GLYPH_FORMAT_COMPOSITE +#define ft_glyph_format_bitmap FT_GLYPH_FORMAT_BITMAP +#define ft_glyph_format_outline FT_GLYPH_FORMAT_OUTLINE +#define ft_glyph_format_plotter FT_GLYPH_FORMAT_PLOTTER + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** R A S T E R D E F I N I T I O N S *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * A raster is a scan converter, in charge of rendering an outline into a + * bitmap. This section contains the public API for rasters. + * + * Note that in FreeType 2, all rasters are now encapsulated within + * specific modules called 'renderers'. See `ftrender.h` for more details + * on renderers. + * + */ + + + /************************************************************************** + * + * @section: + * raster + * + * @title: + * Scanline Converter + * + * @abstract: + * How vectorial outlines are converted into bitmaps and pixmaps. + * + * @description: + * This section contains technical definitions. + * + * @order: + * FT_Raster + * FT_Span + * FT_SpanFunc + * + * FT_Raster_Params + * FT_RASTER_FLAG_XXX + * + * FT_Raster_NewFunc + * FT_Raster_DoneFunc + * FT_Raster_ResetFunc + * FT_Raster_SetModeFunc + * FT_Raster_RenderFunc + * FT_Raster_Funcs + * + */ + + + /************************************************************************** + * + * @type: + * FT_Raster + * + * @description: + * An opaque handle (pointer) to a raster object. Each object can be + * used independently to convert an outline into a bitmap or pixmap. + */ + typedef struct FT_RasterRec_* FT_Raster; + + + /************************************************************************** + * + * @struct: + * FT_Span + * + * @description: + * A structure used to model a single span of gray pixels when rendering + * an anti-aliased bitmap. + * + * @fields: + * x :: + * The span's horizontal start position. + * + * len :: + * The span's length in pixels. + * + * coverage :: + * The span color/coverage, ranging from 0 (background) to 255 + * (foreground). + * + * @note: + * This structure is used by the span drawing callback type named + * @FT_SpanFunc that takes the y~coordinate of the span as a parameter. + * + * The coverage value is always between 0 and 255. If you want less gray + * values, the callback function has to reduce them. + */ + typedef struct FT_Span_ + { + short x; + unsigned short len; + unsigned char coverage; + + } FT_Span; + + + /************************************************************************** + * + * @functype: + * FT_SpanFunc + * + * @description: + * A function used as a call-back by the anti-aliased renderer in order + * to let client applications draw themselves the gray pixel spans on + * each scan line. + * + * @input: + * y :: + * The scanline's y~coordinate. + * + * count :: + * The number of spans to draw on this scanline. + * + * spans :: + * A table of `count` spans to draw on the scanline. + * + * user :: + * User-supplied data that is passed to the callback. + * + * @note: + * This callback allows client applications to directly render the gray + * spans of the anti-aliased bitmap to any kind of surfaces. + * + * This can be used to write anti-aliased outlines directly to a given + * background bitmap, and even perform translucency. + */ + typedef void + (*FT_SpanFunc)( int y, + int count, + const FT_Span* spans, + void* user ); + +#define FT_Raster_Span_Func FT_SpanFunc + + + /************************************************************************** + * + * @functype: + * FT_Raster_BitTest_Func + * + * @description: + * Deprecated, unimplemented. + */ + typedef int + (*FT_Raster_BitTest_Func)( int y, + int x, + void* user ); + + + /************************************************************************** + * + * @functype: + * FT_Raster_BitSet_Func + * + * @description: + * Deprecated, unimplemented. + */ + typedef void + (*FT_Raster_BitSet_Func)( int y, + int x, + void* user ); + + + /************************************************************************** + * + * @enum: + * FT_RASTER_FLAG_XXX + * + * @description: + * A list of bit flag constants as used in the `flags` field of a + * @FT_Raster_Params structure. + * + * @values: + * FT_RASTER_FLAG_DEFAULT :: + * This value is 0. + * + * FT_RASTER_FLAG_AA :: + * This flag is set to indicate that an anti-aliased glyph image should + * be generated. Otherwise, it will be monochrome (1-bit). + * + * FT_RASTER_FLAG_DIRECT :: + * This flag is set to indicate direct rendering. In this mode, client + * applications must provide their own span callback. This lets them + * directly draw or compose over an existing bitmap. If this bit is + * not set, the target pixmap's buffer _must_ be zeroed before + * rendering. + * + * Direct rendering is only possible with anti-aliased glyphs. + * + * FT_RASTER_FLAG_CLIP :: + * This flag is only used in direct rendering mode. If set, the output + * will be clipped to a box specified in the `clip_box` field of the + * @FT_Raster_Params structure. + * + * Note that by default, the glyph bitmap is clipped to the target + * pixmap, except in direct rendering mode where all spans are + * generated if no clipping box is set. + */ +#define FT_RASTER_FLAG_DEFAULT 0x0 +#define FT_RASTER_FLAG_AA 0x1 +#define FT_RASTER_FLAG_DIRECT 0x2 +#define FT_RASTER_FLAG_CLIP 0x4 + + /* these constants are deprecated; use the corresponding */ + /* `FT_RASTER_FLAG_XXX` values instead */ +#define ft_raster_flag_default FT_RASTER_FLAG_DEFAULT +#define ft_raster_flag_aa FT_RASTER_FLAG_AA +#define ft_raster_flag_direct FT_RASTER_FLAG_DIRECT +#define ft_raster_flag_clip FT_RASTER_FLAG_CLIP + + + /************************************************************************** + * + * @struct: + * FT_Raster_Params + * + * @description: + * A structure to hold the arguments used by a raster's render function. + * + * @fields: + * target :: + * The target bitmap. + * + * source :: + * A pointer to the source glyph image (e.g., an @FT_Outline). + * + * flags :: + * The rendering flags. + * + * gray_spans :: + * The gray span drawing callback. + * + * black_spans :: + * Unused. + * + * bit_test :: + * Unused. + * + * bit_set :: + * Unused. + * + * user :: + * User-supplied data that is passed to each drawing callback. + * + * clip_box :: + * An optional clipping box. It is only used in direct rendering mode. + * Note that coordinates here should be expressed in _integer_ pixels + * (and not in 26.6 fixed-point units). + * + * @note: + * An anti-aliased glyph bitmap is drawn if the @FT_RASTER_FLAG_AA bit + * flag is set in the `flags` field, otherwise a monochrome bitmap is + * generated. + * + * If the @FT_RASTER_FLAG_DIRECT bit flag is set in `flags`, the raster + * will call the `gray_spans` callback to draw gray pixel spans. This + * allows direct composition over a pre-existing bitmap through + * user-provided callbacks to perform the span drawing and composition. + * Not supported by the monochrome rasterizer. + */ + typedef struct FT_Raster_Params_ + { + const FT_Bitmap* target; + const void* source; + int flags; + FT_SpanFunc gray_spans; + FT_SpanFunc black_spans; /* unused */ + FT_Raster_BitTest_Func bit_test; /* unused */ + FT_Raster_BitSet_Func bit_set; /* unused */ + void* user; + FT_BBox clip_box; + + } FT_Raster_Params; + + + /************************************************************************** + * + * @functype: + * FT_Raster_NewFunc + * + * @description: + * A function used to create a new raster object. + * + * @input: + * memory :: + * A handle to the memory allocator. + * + * @output: + * raster :: + * A handle to the new raster object. + * + * @return: + * Error code. 0~means success. + * + * @note: + * The `memory` parameter is a typeless pointer in order to avoid + * un-wanted dependencies on the rest of the FreeType code. In practice, + * it is an @FT_Memory object, i.e., a handle to the standard FreeType + * memory allocator. However, this field can be completely ignored by a + * given raster implementation. + */ + typedef int + (*FT_Raster_NewFunc)( void* memory, + FT_Raster* raster ); + +#define FT_Raster_New_Func FT_Raster_NewFunc + + + /************************************************************************** + * + * @functype: + * FT_Raster_DoneFunc + * + * @description: + * A function used to destroy a given raster object. + * + * @input: + * raster :: + * A handle to the raster object. + */ + typedef void + (*FT_Raster_DoneFunc)( FT_Raster raster ); + +#define FT_Raster_Done_Func FT_Raster_DoneFunc + + + /************************************************************************** + * + * @functype: + * FT_Raster_ResetFunc + * + * @description: + * FreeType used to provide an area of memory called the 'render pool' + * available to all registered rasterizers. This was not thread safe, + * however, and now FreeType never allocates this pool. + * + * This function is called after a new raster object is created. + * + * @input: + * raster :: + * A handle to the new raster object. + * + * pool_base :: + * Previously, the address in memory of the render pool. Set this to + * `NULL`. + * + * pool_size :: + * Previously, the size in bytes of the render pool. Set this to 0. + * + * @note: + * Rasterizers should rely on dynamic or stack allocation if they want to + * (a handle to the memory allocator is passed to the rasterizer + * constructor). + */ + typedef void + (*FT_Raster_ResetFunc)( FT_Raster raster, + unsigned char* pool_base, + unsigned long pool_size ); + +#define FT_Raster_Reset_Func FT_Raster_ResetFunc + + + /************************************************************************** + * + * @functype: + * FT_Raster_SetModeFunc + * + * @description: + * This function is a generic facility to change modes or attributes in a + * given raster. This can be used for debugging purposes, or simply to + * allow implementation-specific 'features' in a given raster module. + * + * @input: + * raster :: + * A handle to the new raster object. + * + * mode :: + * A 4-byte tag used to name the mode or property. + * + * args :: + * A pointer to the new mode/property to use. + */ + typedef int + (*FT_Raster_SetModeFunc)( FT_Raster raster, + unsigned long mode, + void* args ); + +#define FT_Raster_Set_Mode_Func FT_Raster_SetModeFunc + + + /************************************************************************** + * + * @functype: + * FT_Raster_RenderFunc + * + * @description: + * Invoke a given raster to scan-convert a given glyph image into a + * target bitmap. + * + * @input: + * raster :: + * A handle to the raster object. + * + * params :: + * A pointer to an @FT_Raster_Params structure used to store the + * rendering parameters. + * + * @return: + * Error code. 0~means success. + * + * @note: + * The exact format of the source image depends on the raster's glyph + * format defined in its @FT_Raster_Funcs structure. It can be an + * @FT_Outline or anything else in order to support a large array of + * glyph formats. + * + * Note also that the render function can fail and return a + * `FT_Err_Unimplemented_Feature` error code if the raster used does not + * support direct composition. + */ + typedef int + (*FT_Raster_RenderFunc)( FT_Raster raster, + const FT_Raster_Params* params ); + +#define FT_Raster_Render_Func FT_Raster_RenderFunc + + + /************************************************************************** + * + * @struct: + * FT_Raster_Funcs + * + * @description: + * A structure used to describe a given raster class to the library. + * + * @fields: + * glyph_format :: + * The supported glyph format for this raster. + * + * raster_new :: + * The raster constructor. + * + * raster_reset :: + * Used to reset the render pool within the raster. + * + * raster_render :: + * A function to render a glyph into a given bitmap. + * + * raster_done :: + * The raster destructor. + */ + typedef struct FT_Raster_Funcs_ + { + FT_Glyph_Format glyph_format; + + FT_Raster_NewFunc raster_new; + FT_Raster_ResetFunc raster_reset; + FT_Raster_SetModeFunc raster_set_mode; + FT_Raster_RenderFunc raster_render; + FT_Raster_DoneFunc raster_done; + + } FT_Raster_Funcs; + + /* */ + + +FT_END_HEADER + +#endif /* FTIMAGE_H_ */ + + +/* END */ + + +/* Local Variables: */ +/* coding: utf-8 */ +/* End: */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftincrem.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftincrem.h new file mode 100644 index 0000000..a4db02b --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftincrem.h @@ -0,0 +1,344 @@ +/**************************************************************************** + * + * ftincrem.h + * + * FreeType incremental loading (specification). + * + * Copyright (C) 2002-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTINCREM_H_ +#define FTINCREM_H_ + +#include +#include FT_FREETYPE_H +#include FT_PARAMETER_TAGS_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /************************************************************************** + * + * @section: + * incremental + * + * @title: + * Incremental Loading + * + * @abstract: + * Custom Glyph Loading. + * + * @description: + * This section contains various functions used to perform so-called + * 'incremental' glyph loading. This is a mode where all glyphs loaded + * from a given @FT_Face are provided by the client application. + * + * Apart from that, all other tables are loaded normally from the font + * file. This mode is useful when FreeType is used within another + * engine, e.g., a PostScript Imaging Processor. + * + * To enable this mode, you must use @FT_Open_Face, passing an + * @FT_Parameter with the @FT_PARAM_TAG_INCREMENTAL tag and an + * @FT_Incremental_Interface value. See the comments for + * @FT_Incremental_InterfaceRec for an example. + * + */ + + + /************************************************************************** + * + * @type: + * FT_Incremental + * + * @description: + * An opaque type describing a user-provided object used to implement + * 'incremental' glyph loading within FreeType. This is used to support + * embedded fonts in certain environments (e.g., PostScript + * interpreters), where the glyph data isn't in the font file, or must be + * overridden by different values. + * + * @note: + * It is up to client applications to create and implement + * @FT_Incremental objects, as long as they provide implementations for + * the methods @FT_Incremental_GetGlyphDataFunc, + * @FT_Incremental_FreeGlyphDataFunc and + * @FT_Incremental_GetGlyphMetricsFunc. + * + * See the description of @FT_Incremental_InterfaceRec to understand how + * to use incremental objects with FreeType. + * + */ + typedef struct FT_IncrementalRec_* FT_Incremental; + + + /************************************************************************** + * + * @struct: + * FT_Incremental_MetricsRec + * + * @description: + * A small structure used to contain the basic glyph metrics returned by + * the @FT_Incremental_GetGlyphMetricsFunc method. + * + * @fields: + * bearing_x :: + * Left bearing, in font units. + * + * bearing_y :: + * Top bearing, in font units. + * + * advance :: + * Horizontal component of glyph advance, in font units. + * + * advance_v :: + * Vertical component of glyph advance, in font units. + * + * @note: + * These correspond to horizontal or vertical metrics depending on the + * value of the `vertical` argument to the function + * @FT_Incremental_GetGlyphMetricsFunc. + * + */ + typedef struct FT_Incremental_MetricsRec_ + { + FT_Long bearing_x; + FT_Long bearing_y; + FT_Long advance; + FT_Long advance_v; /* since 2.3.12 */ + + } FT_Incremental_MetricsRec; + + + /************************************************************************** + * + * @struct: + * FT_Incremental_Metrics + * + * @description: + * A handle to an @FT_Incremental_MetricsRec structure. + * + */ + typedef struct FT_Incremental_MetricsRec_* FT_Incremental_Metrics; + + + /************************************************************************** + * + * @type: + * FT_Incremental_GetGlyphDataFunc + * + * @description: + * A function called by FreeType to access a given glyph's data bytes + * during @FT_Load_Glyph or @FT_Load_Char if incremental loading is + * enabled. + * + * Note that the format of the glyph's data bytes depends on the font + * file format. For TrueType, it must correspond to the raw bytes within + * the 'glyf' table. For PostScript formats, it must correspond to the + * **unencrypted** charstring bytes, without any `lenIV` header. It is + * undefined for any other format. + * + * @input: + * incremental :: + * Handle to an opaque @FT_Incremental handle provided by the client + * application. + * + * glyph_index :: + * Index of relevant glyph. + * + * @output: + * adata :: + * A structure describing the returned glyph data bytes (which will be + * accessed as a read-only byte block). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If this function returns successfully the method + * @FT_Incremental_FreeGlyphDataFunc will be called later to release the + * data bytes. + * + * Nested calls to @FT_Incremental_GetGlyphDataFunc can happen for + * compound glyphs. + * + */ + typedef FT_Error + (*FT_Incremental_GetGlyphDataFunc)( FT_Incremental incremental, + FT_UInt glyph_index, + FT_Data* adata ); + + + /************************************************************************** + * + * @type: + * FT_Incremental_FreeGlyphDataFunc + * + * @description: + * A function used to release the glyph data bytes returned by a + * successful call to @FT_Incremental_GetGlyphDataFunc. + * + * @input: + * incremental :: + * A handle to an opaque @FT_Incremental handle provided by the client + * application. + * + * data :: + * A structure describing the glyph data bytes (which will be accessed + * as a read-only byte block). + * + */ + typedef void + (*FT_Incremental_FreeGlyphDataFunc)( FT_Incremental incremental, + FT_Data* data ); + + + /************************************************************************** + * + * @type: + * FT_Incremental_GetGlyphMetricsFunc + * + * @description: + * A function used to retrieve the basic metrics of a given glyph index + * before accessing its data. This is necessary because, in certain + * formats like TrueType, the metrics are stored in a different place + * from the glyph images proper. + * + * @input: + * incremental :: + * A handle to an opaque @FT_Incremental handle provided by the client + * application. + * + * glyph_index :: + * Index of relevant glyph. + * + * vertical :: + * If true, return vertical metrics. + * + * ametrics :: + * This parameter is used for both input and output. The original + * glyph metrics, if any, in font units. If metrics are not available + * all the values must be set to zero. + * + * @output: + * ametrics :: + * The replacement glyph metrics in font units. + * + */ + typedef FT_Error + (*FT_Incremental_GetGlyphMetricsFunc) + ( FT_Incremental incremental, + FT_UInt glyph_index, + FT_Bool vertical, + FT_Incremental_MetricsRec *ametrics ); + + + /************************************************************************** + * + * @struct: + * FT_Incremental_FuncsRec + * + * @description: + * A table of functions for accessing fonts that load data incrementally. + * Used in @FT_Incremental_InterfaceRec. + * + * @fields: + * get_glyph_data :: + * The function to get glyph data. Must not be null. + * + * free_glyph_data :: + * The function to release glyph data. Must not be null. + * + * get_glyph_metrics :: + * The function to get glyph metrics. May be null if the font does not + * provide overriding glyph metrics. + * + */ + typedef struct FT_Incremental_FuncsRec_ + { + FT_Incremental_GetGlyphDataFunc get_glyph_data; + FT_Incremental_FreeGlyphDataFunc free_glyph_data; + FT_Incremental_GetGlyphMetricsFunc get_glyph_metrics; + + } FT_Incremental_FuncsRec; + + + /************************************************************************** + * + * @struct: + * FT_Incremental_InterfaceRec + * + * @description: + * A structure to be used with @FT_Open_Face to indicate that the user + * wants to support incremental glyph loading. You should use it with + * @FT_PARAM_TAG_INCREMENTAL as in the following example: + * + * ``` + * FT_Incremental_InterfaceRec inc_int; + * FT_Parameter parameter; + * FT_Open_Args open_args; + * + * + * // set up incremental descriptor + * inc_int.funcs = my_funcs; + * inc_int.object = my_object; + * + * // set up optional parameter + * parameter.tag = FT_PARAM_TAG_INCREMENTAL; + * parameter.data = &inc_int; + * + * // set up FT_Open_Args structure + * open_args.flags = FT_OPEN_PATHNAME | FT_OPEN_PARAMS; + * open_args.pathname = my_font_pathname; + * open_args.num_params = 1; + * open_args.params = ¶meter; // we use one optional argument + * + * // open the font + * error = FT_Open_Face( library, &open_args, index, &face ); + * ... + * ``` + * + */ + typedef struct FT_Incremental_InterfaceRec_ + { + const FT_Incremental_FuncsRec* funcs; + FT_Incremental object; + + } FT_Incremental_InterfaceRec; + + + /************************************************************************** + * + * @type: + * FT_Incremental_Interface + * + * @description: + * A pointer to an @FT_Incremental_InterfaceRec structure. + * + */ + typedef FT_Incremental_InterfaceRec* FT_Incremental_Interface; + + + /* */ + + +FT_END_HEADER + +#endif /* FTINCREM_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftlcdfil.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftlcdfil.h new file mode 100644 index 0000000..3a19d04 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftlcdfil.h @@ -0,0 +1,328 @@ +/**************************************************************************** + * + * ftlcdfil.h + * + * FreeType API for color filtering of subpixel bitmap glyphs + * (specification). + * + * Copyright (C) 2006-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTLCDFIL_H_ +#define FTLCDFIL_H_ + +#include +#include FT_FREETYPE_H +#include FT_PARAMETER_TAGS_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /************************************************************************** + * + * @section: + * lcd_rendering + * + * @title: + * Subpixel Rendering + * + * @abstract: + * API to control subpixel rendering. + * + * @description: + * FreeType provides two alternative subpixel rendering technologies. + * Should you define `FT_CONFIG_OPTION_SUBPIXEL_RENDERING` in your + * `ftoption.h` file, this enables patented ClearType-style rendering. + * Otherwise, Harmony LCD rendering is enabled. These technologies are + * controlled differently and API described below, although always + * available, performs its function when appropriate method is enabled + * and does nothing otherwise. + * + * ClearType-style LCD rendering exploits the color-striped structure of + * LCD pixels, increasing the available resolution in the direction of + * the stripe (usually horizontal RGB) by a factor of~3. Using the + * subpixels coverages unfiltered can create severe color fringes + * especially when rendering thin features. Indeed, to produce + * black-on-white text, the nearby color subpixels must be dimmed + * equally. + * + * A good 5-tap FIR filter should be applied to subpixel coverages + * regardless of pixel boundaries and should have these properties: + * + * 1. It should be symmetrical, like {~a, b, c, b, a~}, to avoid + * any shifts in appearance. + * + * 2. It should be color-balanced, meaning a~+ b~=~c, to reduce color + * fringes by distributing the computed coverage for one subpixel to + * all subpixels equally. + * + * 3. It should be normalized, meaning 2a~+ 2b~+ c~=~1.0 to maintain + * overall brightness. + * + * Boxy 3-tap filter {0, 1/3, 1/3, 1/3, 0} is sharper but is less + * forgiving of non-ideal gamma curves of a screen (and viewing angles), + * beveled filters are fuzzier but more tolerant. + * + * Use the @FT_Library_SetLcdFilter or @FT_Library_SetLcdFilterWeights + * API to specify a low-pass filter, which is then applied to + * subpixel-rendered bitmaps generated through @FT_Render_Glyph. + * + * Harmony LCD rendering is suitable to panels with any regular subpixel + * structure, not just monitors with 3 color striped subpixels, as long + * as the color subpixels have fixed positions relative to the pixel + * center. In this case, each color channel is then rendered separately + * after shifting the outline opposite to the subpixel shift so that the + * coverage maps are aligned. This method is immune to color fringes + * because the shifts do not change integral coverage. + * + * The subpixel geometry must be specified by xy-coordinates for each + * subpixel. By convention they may come in the RGB order: {{-1/3, 0}, + * {0, 0}, {1/3, 0}} for standard RGB striped panel or {{-1/6, 1/4}, + * {-1/6, -1/4}, {1/3, 0}} for a certain PenTile panel. + * + * Use the @FT_Library_SetLcdGeometry API to specify subpixel positions. + * If one follows the RGB order convention, the same order applies to the + * resulting @FT_PIXEL_MODE_LCD and @FT_PIXEL_MODE_LCD_V bitmaps. Note, + * however, that the coordinate frame for the latter must be rotated + * clockwise. Harmony with default LCD geometry is equivalent to + * ClearType with light filter. + * + * As a result of ClearType filtering or Harmony rendering, the + * dimensions of LCD bitmaps can be either wider or taller than the + * dimensions of the corresponding outline with regard to the pixel grid. + * For example, for @FT_RENDER_MODE_LCD, the filter adds 2~subpixels to + * the left, and 2~subpixels to the right. The bitmap offset values are + * adjusted accordingly, so clients shouldn't need to modify their layout + * and glyph positioning code when enabling the filter. + * + * The ClearType and Harmony rendering is applicable to glyph bitmaps + * rendered through @FT_Render_Glyph, @FT_Load_Glyph, @FT_Load_Char, and + * @FT_Glyph_To_Bitmap, when @FT_RENDER_MODE_LCD or @FT_RENDER_MODE_LCD_V + * is specified. This API does not control @FT_Outline_Render and + * @FT_Outline_Get_Bitmap. + * + * The described algorithms can completely remove color artefacts when + * combined with gamma-corrected alpha blending in linear space. Each of + * the 3~alpha values (subpixels) must by independently used to blend one + * color channel. That is, red alpha blends the red channel of the text + * color with the red channel of the background pixel. + */ + + + /************************************************************************** + * + * @enum: + * FT_LcdFilter + * + * @description: + * A list of values to identify various types of LCD filters. + * + * @values: + * FT_LCD_FILTER_NONE :: + * Do not perform filtering. When used with subpixel rendering, this + * results in sometimes severe color fringes. + * + * FT_LCD_FILTER_DEFAULT :: + * This is a beveled, normalized, and color-balanced five-tap filter + * with weights of [0x08 0x4D 0x56 0x4D 0x08] in 1/256th units. + * + * FT_LCD_FILTER_LIGHT :: + * this is a boxy, normalized, and color-balanced three-tap filter with + * weights of [0x00 0x55 0x56 0x55 0x00] in 1/256th units. + * + * FT_LCD_FILTER_LEGACY :: + * FT_LCD_FILTER_LEGACY1 :: + * This filter corresponds to the original libXft color filter. It + * provides high contrast output but can exhibit really bad color + * fringes if glyphs are not extremely well hinted to the pixel grid. + * This filter is only provided for comparison purposes, and might be + * disabled or stay unsupported in the future. The second value is + * provided for compatibility with FontConfig, which historically used + * different enumeration, sometimes incorrectly forwarded to FreeType. + * + * @since: + * 2.3.0 (`FT_LCD_FILTER_LEGACY1` since 2.6.2) + */ + typedef enum FT_LcdFilter_ + { + FT_LCD_FILTER_NONE = 0, + FT_LCD_FILTER_DEFAULT = 1, + FT_LCD_FILTER_LIGHT = 2, + FT_LCD_FILTER_LEGACY1 = 3, + FT_LCD_FILTER_LEGACY = 16, + + FT_LCD_FILTER_MAX /* do not remove */ + + } FT_LcdFilter; + + + /************************************************************************** + * + * @function: + * FT_Library_SetLcdFilter + * + * @description: + * This function is used to apply color filtering to LCD decimated + * bitmaps, like the ones used when calling @FT_Render_Glyph with + * @FT_RENDER_MODE_LCD or @FT_RENDER_MODE_LCD_V. + * + * @input: + * library :: + * A handle to the target library instance. + * + * filter :: + * The filter type. + * + * You can use @FT_LCD_FILTER_NONE here to disable this feature, or + * @FT_LCD_FILTER_DEFAULT to use a default filter that should work well + * on most LCD screens. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This feature is always disabled by default. Clients must make an + * explicit call to this function with a `filter` value other than + * @FT_LCD_FILTER_NONE in order to enable it. + * + * Due to **PATENTS** covering subpixel rendering, this function doesn't + * do anything except returning `FT_Err_Unimplemented_Feature` if the + * configuration macro `FT_CONFIG_OPTION_SUBPIXEL_RENDERING` is not + * defined in your build of the library, which should correspond to all + * default builds of FreeType. + * + * @since: + * 2.3.0 + */ + FT_EXPORT( FT_Error ) + FT_Library_SetLcdFilter( FT_Library library, + FT_LcdFilter filter ); + + + /************************************************************************** + * + * @function: + * FT_Library_SetLcdFilterWeights + * + * @description: + * This function can be used to enable LCD filter with custom weights, + * instead of using presets in @FT_Library_SetLcdFilter. + * + * @input: + * library :: + * A handle to the target library instance. + * + * weights :: + * A pointer to an array; the function copies the first five bytes and + * uses them to specify the filter weights in 1/256th units. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Due to **PATENTS** covering subpixel rendering, this function doesn't + * do anything except returning `FT_Err_Unimplemented_Feature` if the + * configuration macro `FT_CONFIG_OPTION_SUBPIXEL_RENDERING` is not + * defined in your build of the library, which should correspond to all + * default builds of FreeType. + * + * LCD filter weights can also be set per face using @FT_Face_Properties + * with @FT_PARAM_TAG_LCD_FILTER_WEIGHTS. + * + * @since: + * 2.4.0 + */ + FT_EXPORT( FT_Error ) + FT_Library_SetLcdFilterWeights( FT_Library library, + unsigned char *weights ); + + + /************************************************************************** + * + * @type: + * FT_LcdFiveTapFilter + * + * @description: + * A typedef for passing the five LCD filter weights to + * @FT_Face_Properties within an @FT_Parameter structure. + * + * @since: + * 2.8 + * + */ +#define FT_LCD_FILTER_FIVE_TAPS 5 + + typedef FT_Byte FT_LcdFiveTapFilter[FT_LCD_FILTER_FIVE_TAPS]; + + + /************************************************************************** + * + * @function: + * FT_Library_SetLcdGeometry + * + * @description: + * This function can be used to modify default positions of color + * subpixels, which controls Harmony LCD rendering. + * + * @input: + * library :: + * A handle to the target library instance. + * + * sub :: + * A pointer to an array of 3 vectors in 26.6 fractional pixel format; + * the function modifies the default values, see the note below. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Subpixel geometry examples: + * + * - {{-21, 0}, {0, 0}, {21, 0}} is the default, corresponding to 3 color + * stripes shifted by a third of a pixel. This could be an RGB panel. + * + * - {{21, 0}, {0, 0}, {-21, 0}} looks the same as the default but can + * specify a BGR panel instead, while keeping the bitmap in the same + * RGB888 format. + * + * - {{0, 21}, {0, 0}, {0, -21}} is the vertical RGB, but the bitmap + * stays RGB888 as a result. + * + * - {{-11, 16}, {-11, -16}, {22, 0}} is a certain PenTile arrangement. + * + * This function does nothing and returns `FT_Err_Unimplemented_Feature` + * in the context of ClearType-style subpixel rendering when + * `FT_CONFIG_OPTION_SUBPIXEL_RENDERING` is defined in your build of the + * library. + * + * @since: + * 2.10.0 + */ + FT_EXPORT( FT_Error ) + FT_Library_SetLcdGeometry( FT_Library library, + FT_Vector sub[3] ); + + /* */ + + +FT_END_HEADER + +#endif /* FTLCDFIL_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftlist.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftlist.h new file mode 100644 index 0000000..4782892 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftlist.h @@ -0,0 +1,297 @@ +/**************************************************************************** + * + * ftlist.h + * + * Generic list support for FreeType (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * This file implements functions relative to list processing. Its data + * structures are defined in `freetype.h`. + * + */ + + +#ifndef FTLIST_H_ +#define FTLIST_H_ + + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * list_processing + * + * @title: + * List Processing + * + * @abstract: + * Simple management of lists. + * + * @description: + * This section contains various definitions related to list processing + * using doubly-linked nodes. + * + * @order: + * FT_List + * FT_ListNode + * FT_ListRec + * FT_ListNodeRec + * + * FT_List_Add + * FT_List_Insert + * FT_List_Find + * FT_List_Remove + * FT_List_Up + * FT_List_Iterate + * FT_List_Iterator + * FT_List_Finalize + * FT_List_Destructor + * + */ + + + /************************************************************************** + * + * @function: + * FT_List_Find + * + * @description: + * Find the list node for a given listed object. + * + * @input: + * list :: + * A pointer to the parent list. + * data :: + * The address of the listed object. + * + * @return: + * List node. `NULL` if it wasn't found. + */ + FT_EXPORT( FT_ListNode ) + FT_List_Find( FT_List list, + void* data ); + + + /************************************************************************** + * + * @function: + * FT_List_Add + * + * @description: + * Append an element to the end of a list. + * + * @inout: + * list :: + * A pointer to the parent list. + * node :: + * The node to append. + */ + FT_EXPORT( void ) + FT_List_Add( FT_List list, + FT_ListNode node ); + + + /************************************************************************** + * + * @function: + * FT_List_Insert + * + * @description: + * Insert an element at the head of a list. + * + * @inout: + * list :: + * A pointer to parent list. + * node :: + * The node to insert. + */ + FT_EXPORT( void ) + FT_List_Insert( FT_List list, + FT_ListNode node ); + + + /************************************************************************** + * + * @function: + * FT_List_Remove + * + * @description: + * Remove a node from a list. This function doesn't check whether the + * node is in the list! + * + * @input: + * node :: + * The node to remove. + * + * @inout: + * list :: + * A pointer to the parent list. + */ + FT_EXPORT( void ) + FT_List_Remove( FT_List list, + FT_ListNode node ); + + + /************************************************************************** + * + * @function: + * FT_List_Up + * + * @description: + * Move a node to the head/top of a list. Used to maintain LRU lists. + * + * @inout: + * list :: + * A pointer to the parent list. + * node :: + * The node to move. + */ + FT_EXPORT( void ) + FT_List_Up( FT_List list, + FT_ListNode node ); + + + /************************************************************************** + * + * @functype: + * FT_List_Iterator + * + * @description: + * An FT_List iterator function that is called during a list parse by + * @FT_List_Iterate. + * + * @input: + * node :: + * The current iteration list node. + * + * user :: + * A typeless pointer passed to @FT_List_Iterate. Can be used to point + * to the iteration's state. + */ + typedef FT_Error + (*FT_List_Iterator)( FT_ListNode node, + void* user ); + + + /************************************************************************** + * + * @function: + * FT_List_Iterate + * + * @description: + * Parse a list and calls a given iterator function on each element. + * Note that parsing is stopped as soon as one of the iterator calls + * returns a non-zero value. + * + * @input: + * list :: + * A handle to the list. + * iterator :: + * An iterator function, called on each node of the list. + * user :: + * A user-supplied field that is passed as the second argument to the + * iterator. + * + * @return: + * The result (a FreeType error code) of the last iterator call. + */ + FT_EXPORT( FT_Error ) + FT_List_Iterate( FT_List list, + FT_List_Iterator iterator, + void* user ); + + + /************************************************************************** + * + * @functype: + * FT_List_Destructor + * + * @description: + * An @FT_List iterator function that is called during a list + * finalization by @FT_List_Finalize to destroy all elements in a given + * list. + * + * @input: + * system :: + * The current system object. + * + * data :: + * The current object to destroy. + * + * user :: + * A typeless pointer passed to @FT_List_Iterate. It can be used to + * point to the iteration's state. + */ + typedef void + (*FT_List_Destructor)( FT_Memory memory, + void* data, + void* user ); + + + /************************************************************************** + * + * @function: + * FT_List_Finalize + * + * @description: + * Destroy all elements in the list as well as the list itself. + * + * @input: + * list :: + * A handle to the list. + * + * destroy :: + * A list destructor that will be applied to each element of the list. + * Set this to `NULL` if not needed. + * + * memory :: + * The current memory object that handles deallocation. + * + * user :: + * A user-supplied field that is passed as the last argument to the + * destructor. + * + * @note: + * This function expects that all nodes added by @FT_List_Add or + * @FT_List_Insert have been dynamically allocated. + */ + FT_EXPORT( void ) + FT_List_Finalize( FT_List list, + FT_List_Destructor destroy, + FT_Memory memory, + void* user ); + + /* */ + + +FT_END_HEADER + +#endif /* FTLIST_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftlzw.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftlzw.h new file mode 100644 index 0000000..fd22968 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftlzw.h @@ -0,0 +1,100 @@ +/**************************************************************************** + * + * ftlzw.h + * + * LZW-compressed stream support. + * + * Copyright (C) 2004-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTLZW_H_ +#define FTLZW_H_ + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /************************************************************************** + * + * @section: + * lzw + * + * @title: + * LZW Streams + * + * @abstract: + * Using LZW-compressed font files. + * + * @description: + * This section contains the declaration of LZW-specific functions. + * + */ + + /************************************************************************** + * + * @function: + * FT_Stream_OpenLZW + * + * @description: + * Open a new stream to parse LZW-compressed font files. This is mainly + * used to support the compressed `*.pcf.Z` fonts that come with XFree86. + * + * @input: + * stream :: + * The target embedding stream. + * + * source :: + * The source stream. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The source stream must be opened _before_ calling this function. + * + * Calling the internal function `FT_Stream_Close` on the new stream will + * **not** call `FT_Stream_Close` on the source stream. None of the + * stream objects will be released to the heap. + * + * The stream implementation is very basic and resets the decompression + * process each time seeking backwards is needed within the stream + * + * In certain builds of the library, LZW compression recognition is + * automatically handled when calling @FT_New_Face or @FT_Open_Face. + * This means that if no font driver is capable of handling the raw + * compressed file, the library will try to open a LZW stream from it and + * re-open the face with it. + * + * This function may return `FT_Err_Unimplemented_Feature` if your build + * of FreeType was not compiled with LZW support. + */ + FT_EXPORT( FT_Error ) + FT_Stream_OpenLZW( FT_Stream stream, + FT_Stream source ); + + /* */ + + +FT_END_HEADER + +#endif /* FTLZW_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftmac.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftmac.h new file mode 100644 index 0000000..92b9f3d --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftmac.h @@ -0,0 +1,290 @@ +/**************************************************************************** + * + * ftmac.h + * + * Additional Mac-specific API. + * + * Copyright (C) 1996-2019 by + * Just van Rossum, David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +/**************************************************************************** + * + * NOTE: Include this file after `FT_FREETYPE_H` and after any + * Mac-specific headers (because this header uses Mac types such as + * 'Handle', 'FSSpec', 'FSRef', etc.) + * + */ + + +#ifndef FTMAC_H_ +#define FTMAC_H_ + + +#include + + +FT_BEGIN_HEADER + + + /* gcc-3.1 and later can warn about functions tagged as deprecated */ +#ifndef FT_DEPRECATED_ATTRIBUTE +#if defined( __GNUC__ ) && \ + ( ( __GNUC__ >= 4 ) || \ + ( ( __GNUC__ == 3 ) && ( __GNUC_MINOR__ >= 1 ) ) ) +#define FT_DEPRECATED_ATTRIBUTE __attribute__(( deprecated )) +#else +#define FT_DEPRECATED_ATTRIBUTE +#endif +#endif + + + /************************************************************************** + * + * @section: + * mac_specific + * + * @title: + * Mac Specific Interface + * + * @abstract: + * Only available on the Macintosh. + * + * @description: + * The following definitions are only available if FreeType is compiled + * on a Macintosh. + * + */ + + + /************************************************************************** + * + * @function: + * FT_New_Face_From_FOND + * + * @description: + * Create a new face object from a FOND resource. + * + * @inout: + * library :: + * A handle to the library resource. + * + * @input: + * fond :: + * A FOND resource. + * + * face_index :: + * Only supported for the -1 'sanity check' special case. + * + * @output: + * aface :: + * A handle to a new face object. + * + * @return: + * FreeType error code. 0~means success. + * + * @example: + * This function can be used to create @FT_Face objects from fonts that + * are installed in the system as follows. + * + * ``` + * fond = GetResource( 'FOND', fontName ); + * error = FT_New_Face_From_FOND( library, fond, 0, &face ); + * ``` + */ + FT_EXPORT( FT_Error ) + FT_New_Face_From_FOND( FT_Library library, + Handle fond, + FT_Long face_index, + FT_Face *aface ) + FT_DEPRECATED_ATTRIBUTE; + + + /************************************************************************** + * + * @function: + * FT_GetFile_From_Mac_Name + * + * @description: + * Return an FSSpec for the disk file containing the named font. + * + * @input: + * fontName :: + * Mac OS name of the font (e.g., Times New Roman Bold). + * + * @output: + * pathSpec :: + * FSSpec to the file. For passing to @FT_New_Face_From_FSSpec. + * + * face_index :: + * Index of the face. For passing to @FT_New_Face_From_FSSpec. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_GetFile_From_Mac_Name( const char* fontName, + FSSpec* pathSpec, + FT_Long* face_index ) + FT_DEPRECATED_ATTRIBUTE; + + + /************************************************************************** + * + * @function: + * FT_GetFile_From_Mac_ATS_Name + * + * @description: + * Return an FSSpec for the disk file containing the named font. + * + * @input: + * fontName :: + * Mac OS name of the font in ATS framework. + * + * @output: + * pathSpec :: + * FSSpec to the file. For passing to @FT_New_Face_From_FSSpec. + * + * face_index :: + * Index of the face. For passing to @FT_New_Face_From_FSSpec. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_GetFile_From_Mac_ATS_Name( const char* fontName, + FSSpec* pathSpec, + FT_Long* face_index ) + FT_DEPRECATED_ATTRIBUTE; + + + /************************************************************************** + * + * @function: + * FT_GetFilePath_From_Mac_ATS_Name + * + * @description: + * Return a pathname of the disk file and face index for given font name + * that is handled by ATS framework. + * + * @input: + * fontName :: + * Mac OS name of the font in ATS framework. + * + * @output: + * path :: + * Buffer to store pathname of the file. For passing to @FT_New_Face. + * The client must allocate this buffer before calling this function. + * + * maxPathSize :: + * Lengths of the buffer `path` that client allocated. + * + * face_index :: + * Index of the face. For passing to @FT_New_Face. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_GetFilePath_From_Mac_ATS_Name( const char* fontName, + UInt8* path, + UInt32 maxPathSize, + FT_Long* face_index ) + FT_DEPRECATED_ATTRIBUTE; + + + /************************************************************************** + * + * @function: + * FT_New_Face_From_FSSpec + * + * @description: + * Create a new face object from a given resource and typeface index + * using an FSSpec to the font file. + * + * @inout: + * library :: + * A handle to the library resource. + * + * @input: + * spec :: + * FSSpec to the font file. + * + * face_index :: + * The index of the face within the resource. The first face has + * index~0. + * @output: + * aface :: + * A handle to a new face object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * @FT_New_Face_From_FSSpec is identical to @FT_New_Face except it + * accepts an FSSpec instead of a path. + */ + FT_EXPORT( FT_Error ) + FT_New_Face_From_FSSpec( FT_Library library, + const FSSpec *spec, + FT_Long face_index, + FT_Face *aface ) + FT_DEPRECATED_ATTRIBUTE; + + + /************************************************************************** + * + * @function: + * FT_New_Face_From_FSRef + * + * @description: + * Create a new face object from a given resource and typeface index + * using an FSRef to the font file. + * + * @inout: + * library :: + * A handle to the library resource. + * + * @input: + * spec :: + * FSRef to the font file. + * + * face_index :: + * The index of the face within the resource. The first face has + * index~0. + * @output: + * aface :: + * A handle to a new face object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * @FT_New_Face_From_FSRef is identical to @FT_New_Face except it accepts + * an FSRef instead of a path. + */ + FT_EXPORT( FT_Error ) + FT_New_Face_From_FSRef( FT_Library library, + const FSRef *ref, + FT_Long face_index, + FT_Face *aface ) + FT_DEPRECATED_ATTRIBUTE; + + /* */ + + +FT_END_HEADER + + +#endif /* FTMAC_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftmm.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftmm.h new file mode 100644 index 0000000..f2e16b6 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftmm.h @@ -0,0 +1,753 @@ +/**************************************************************************** + * + * ftmm.h + * + * FreeType Multiple Master font interface (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTMM_H_ +#define FTMM_H_ + + +#include +#include FT_TYPE1_TABLES_H + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * multiple_masters + * + * @title: + * Multiple Masters + * + * @abstract: + * How to manage Multiple Masters fonts. + * + * @description: + * The following types and functions are used to manage Multiple Master + * fonts, i.e., the selection of specific design instances by setting + * design axis coordinates. + * + * Besides Adobe MM fonts, the interface supports Apple's TrueType GX and + * OpenType variation fonts. Some of the routines only work with Adobe + * MM fonts, others will work with all three types. They are similar + * enough that a consistent interface makes sense. + * + */ + + + /************************************************************************** + * + * @struct: + * FT_MM_Axis + * + * @description: + * A structure to model a given axis in design space for Multiple Masters + * fonts. + * + * This structure can't be used for TrueType GX or OpenType variation + * fonts. + * + * @fields: + * name :: + * The axis's name. + * + * minimum :: + * The axis's minimum design coordinate. + * + * maximum :: + * The axis's maximum design coordinate. + */ + typedef struct FT_MM_Axis_ + { + FT_String* name; + FT_Long minimum; + FT_Long maximum; + + } FT_MM_Axis; + + + /************************************************************************** + * + * @struct: + * FT_Multi_Master + * + * @description: + * A structure to model the axes and space of a Multiple Masters font. + * + * This structure can't be used for TrueType GX or OpenType variation + * fonts. + * + * @fields: + * num_axis :: + * Number of axes. Cannot exceed~4. + * + * num_designs :: + * Number of designs; should be normally 2^num_axis even though the + * Type~1 specification strangely allows for intermediate designs to be + * present. This number cannot exceed~16. + * + * axis :: + * A table of axis descriptors. + */ + typedef struct FT_Multi_Master_ + { + FT_UInt num_axis; + FT_UInt num_designs; + FT_MM_Axis axis[T1_MAX_MM_AXIS]; + + } FT_Multi_Master; + + + /************************************************************************** + * + * @struct: + * FT_Var_Axis + * + * @description: + * A structure to model a given axis in design space for Multiple + * Masters, TrueType GX, and OpenType variation fonts. + * + * @fields: + * name :: + * The axis's name. Not always meaningful for TrueType GX or OpenType + * variation fonts. + * + * minimum :: + * The axis's minimum design coordinate. + * + * def :: + * The axis's default design coordinate. FreeType computes meaningful + * default values for Adobe MM fonts. + * + * maximum :: + * The axis's maximum design coordinate. + * + * tag :: + * The axis's tag (the equivalent to 'name' for TrueType GX and + * OpenType variation fonts). FreeType provides default values for + * Adobe MM fonts if possible. + * + * strid :: + * The axis name entry in the font's 'name' table. This is another + * (and often better) version of the 'name' field for TrueType GX or + * OpenType variation fonts. Not meaningful for Adobe MM fonts. + * + * @note: + * The fields `minimum`, `def`, and `maximum` are 16.16 fractional values + * for TrueType GX and OpenType variation fonts. For Adobe MM fonts, the + * values are integers. + */ + typedef struct FT_Var_Axis_ + { + FT_String* name; + + FT_Fixed minimum; + FT_Fixed def; + FT_Fixed maximum; + + FT_ULong tag; + FT_UInt strid; + + } FT_Var_Axis; + + + /************************************************************************** + * + * @struct: + * FT_Var_Named_Style + * + * @description: + * A structure to model a named instance in a TrueType GX or OpenType + * variation font. + * + * This structure can't be used for Adobe MM fonts. + * + * @fields: + * coords :: + * The design coordinates for this instance. This is an array with one + * entry for each axis. + * + * strid :: + * The entry in 'name' table identifying this instance. + * + * psid :: + * The entry in 'name' table identifying a PostScript name for this + * instance. Value 0xFFFF indicates a missing entry. + */ + typedef struct FT_Var_Named_Style_ + { + FT_Fixed* coords; + FT_UInt strid; + FT_UInt psid; /* since 2.7.1 */ + + } FT_Var_Named_Style; + + + /************************************************************************** + * + * @struct: + * FT_MM_Var + * + * @description: + * A structure to model the axes and space of an Adobe MM, TrueType GX, + * or OpenType variation font. + * + * Some fields are specific to one format and not to the others. + * + * @fields: + * num_axis :: + * The number of axes. The maximum value is~4 for Adobe MM fonts; no + * limit in TrueType GX or OpenType variation fonts. + * + * num_designs :: + * The number of designs; should be normally 2^num_axis for Adobe MM + * fonts. Not meaningful for TrueType GX or OpenType variation fonts + * (where every glyph could have a different number of designs). + * + * num_namedstyles :: + * The number of named styles; a 'named style' is a tuple of design + * coordinates that has a string ID (in the 'name' table) associated + * with it. The font can tell the user that, for example, + * [Weight=1.5,Width=1.1] is 'Bold'. Another name for 'named style' is + * 'named instance'. + * + * For Adobe Multiple Masters fonts, this value is always zero because + * the format does not support named styles. + * + * axis :: + * An axis descriptor table. TrueType GX and OpenType variation fonts + * contain slightly more data than Adobe MM fonts. Memory management + * of this pointer is done internally by FreeType. + * + * namedstyle :: + * A named style (instance) table. Only meaningful for TrueType GX and + * OpenType variation fonts. Memory management of this pointer is done + * internally by FreeType. + */ + typedef struct FT_MM_Var_ + { + FT_UInt num_axis; + FT_UInt num_designs; + FT_UInt num_namedstyles; + FT_Var_Axis* axis; + FT_Var_Named_Style* namedstyle; + + } FT_MM_Var; + + + /************************************************************************** + * + * @function: + * FT_Get_Multi_Master + * + * @description: + * Retrieve a variation descriptor of a given Adobe MM font. + * + * This function can't be used with TrueType GX or OpenType variation + * fonts. + * + * @input: + * face :: + * A handle to the source face. + * + * @output: + * amaster :: + * The Multiple Masters descriptor. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Get_Multi_Master( FT_Face face, + FT_Multi_Master *amaster ); + + + /************************************************************************** + * + * @function: + * FT_Get_MM_Var + * + * @description: + * Retrieve a variation descriptor for a given font. + * + * This function works with all supported variation formats. + * + * @input: + * face :: + * A handle to the source face. + * + * @output: + * amaster :: + * The variation descriptor. Allocates a data structure, which the + * user must deallocate with a call to @FT_Done_MM_Var after use. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Get_MM_Var( FT_Face face, + FT_MM_Var* *amaster ); + + + /************************************************************************** + * + * @function: + * FT_Done_MM_Var + * + * @description: + * Free the memory allocated by @FT_Get_MM_Var. + * + * @input: + * library :: + * A handle of the face's parent library object that was used in the + * call to @FT_Get_MM_Var to create `amaster`. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Done_MM_Var( FT_Library library, + FT_MM_Var *amaster ); + + + /************************************************************************** + * + * @function: + * FT_Set_MM_Design_Coordinates + * + * @description: + * For Adobe MM fonts, choose an interpolated font design through design + * coordinates. + * + * This function can't be used with TrueType GX or OpenType variation + * fonts. + * + * @inout: + * face :: + * A handle to the source face. + * + * @input: + * num_coords :: + * The number of available design coordinates. If it is larger than + * the number of axes, ignore the excess values. If it is smaller than + * the number of axes, use default values for the remaining axes. + * + * coords :: + * An array of design coordinates. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * [Since 2.8.1] To reset all axes to the default values, call the + * function with `num_coords` set to zero and `coords` set to `NULL`. + * + * [Since 2.9] If `num_coords` is larger than zero, this function sets + * the @FT_FACE_FLAG_VARIATION bit in @FT_Face's `face_flags` field + * (i.e., @FT_IS_VARIATION will return true). If `num_coords` is zero, + * this bit flag gets unset. + */ + FT_EXPORT( FT_Error ) + FT_Set_MM_Design_Coordinates( FT_Face face, + FT_UInt num_coords, + FT_Long* coords ); + + + /************************************************************************** + * + * @function: + * FT_Set_Var_Design_Coordinates + * + * @description: + * Choose an interpolated font design through design coordinates. + * + * This function works with all supported variation formats. + * + * @inout: + * face :: + * A handle to the source face. + * + * @input: + * num_coords :: + * The number of available design coordinates. If it is larger than + * the number of axes, ignore the excess values. If it is smaller than + * the number of axes, use default values for the remaining axes. + * + * coords :: + * An array of design coordinates. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * [Since 2.8.1] To reset all axes to the default values, call the + * function with `num_coords` set to zero and `coords` set to `NULL`. + * [Since 2.9] 'Default values' means the currently selected named + * instance (or the base font if no named instance is selected). + * + * [Since 2.9] If `num_coords` is larger than zero, this function sets + * the @FT_FACE_FLAG_VARIATION bit in @FT_Face's `face_flags` field + * (i.e., @FT_IS_VARIATION will return true). If `num_coords` is zero, + * this bit flag gets unset. + */ + FT_EXPORT( FT_Error ) + FT_Set_Var_Design_Coordinates( FT_Face face, + FT_UInt num_coords, + FT_Fixed* coords ); + + + /************************************************************************** + * + * @function: + * FT_Get_Var_Design_Coordinates + * + * @description: + * Get the design coordinates of the currently selected interpolated + * font. + * + * This function works with all supported variation formats. + * + * @input: + * face :: + * A handle to the source face. + * + * num_coords :: + * The number of design coordinates to retrieve. If it is larger than + * the number of axes, set the excess values to~0. + * + * @output: + * coords :: + * The design coordinates array. + * + * @return: + * FreeType error code. 0~means success. + * + * @since: + * 2.7.1 + */ + FT_EXPORT( FT_Error ) + FT_Get_Var_Design_Coordinates( FT_Face face, + FT_UInt num_coords, + FT_Fixed* coords ); + + + /************************************************************************** + * + * @function: + * FT_Set_MM_Blend_Coordinates + * + * @description: + * Choose an interpolated font design through normalized blend + * coordinates. + * + * This function works with all supported variation formats. + * + * @inout: + * face :: + * A handle to the source face. + * + * @input: + * num_coords :: + * The number of available design coordinates. If it is larger than + * the number of axes, ignore the excess values. If it is smaller than + * the number of axes, use default values for the remaining axes. + * + * coords :: + * The design coordinates array (each element must be between 0 and 1.0 + * for Adobe MM fonts, and between -1.0 and 1.0 for TrueType GX and + * OpenType variation fonts). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * [Since 2.8.1] To reset all axes to the default values, call the + * function with `num_coords` set to zero and `coords` set to `NULL`. + * [Since 2.9] 'Default values' means the currently selected named + * instance (or the base font if no named instance is selected). + * + * [Since 2.9] If `num_coords` is larger than zero, this function sets + * the @FT_FACE_FLAG_VARIATION bit in @FT_Face's `face_flags` field + * (i.e., @FT_IS_VARIATION will return true). If `num_coords` is zero, + * this bit flag gets unset. + */ + FT_EXPORT( FT_Error ) + FT_Set_MM_Blend_Coordinates( FT_Face face, + FT_UInt num_coords, + FT_Fixed* coords ); + + + /************************************************************************** + * + * @function: + * FT_Get_MM_Blend_Coordinates + * + * @description: + * Get the normalized blend coordinates of the currently selected + * interpolated font. + * + * This function works with all supported variation formats. + * + * @input: + * face :: + * A handle to the source face. + * + * num_coords :: + * The number of normalized blend coordinates to retrieve. If it is + * larger than the number of axes, set the excess values to~0.5 for + * Adobe MM fonts, and to~0 for TrueType GX and OpenType variation + * fonts. + * + * @output: + * coords :: + * The normalized blend coordinates array. + * + * @return: + * FreeType error code. 0~means success. + * + * @since: + * 2.7.1 + */ + FT_EXPORT( FT_Error ) + FT_Get_MM_Blend_Coordinates( FT_Face face, + FT_UInt num_coords, + FT_Fixed* coords ); + + + /************************************************************************** + * + * @function: + * FT_Set_Var_Blend_Coordinates + * + * @description: + * This is another name of @FT_Set_MM_Blend_Coordinates. + */ + FT_EXPORT( FT_Error ) + FT_Set_Var_Blend_Coordinates( FT_Face face, + FT_UInt num_coords, + FT_Fixed* coords ); + + + /************************************************************************** + * + * @function: + * FT_Get_Var_Blend_Coordinates + * + * @description: + * This is another name of @FT_Get_MM_Blend_Coordinates. + * + * @since: + * 2.7.1 + */ + FT_EXPORT( FT_Error ) + FT_Get_Var_Blend_Coordinates( FT_Face face, + FT_UInt num_coords, + FT_Fixed* coords ); + + + /************************************************************************** + * + * @function: + * FT_Set_MM_WeightVector + * + * @description: + * For Adobe MM fonts, choose an interpolated font design by directly + * setting the weight vector. + * + * This function can't be used with TrueType GX or OpenType variation + * fonts. + * + * @inout: + * face :: + * A handle to the source face. + * + * @input: + * len :: + * The length of the weight vector array. If it is larger than the + * number of designs, the extra values are ignored. If it is less than + * the number of designs, the remaining values are set to zero. + * + * weightvector :: + * An array representing the weight vector. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Adobe Multiple Master fonts limit the number of designs, and thus the + * length of the weight vector to~16. + * + * If `len` is zero and `weightvector` is `NULL`, the weight vector array + * is reset to the default values. + * + * The Adobe documentation also states that the values in the + * WeightVector array must total 1.0 +/-~0.001. In practice this does + * not seem to be enforced, so is not enforced here, either. + * + * @since: + * 2.10 + */ + FT_EXPORT( FT_Error ) + FT_Set_MM_WeightVector( FT_Face face, + FT_UInt len, + FT_Fixed* weightvector ); + + + /************************************************************************** + * + * @function: + * FT_Get_MM_WeightVector + * + * @description: + * For Adobe MM fonts, retrieve the current weight vector of the font. + * + * This function can't be used with TrueType GX or OpenType variation + * fonts. + * + * @inout: + * face :: + * A handle to the source face. + * + * len :: + * A pointer to the size of the array to be filled. If the size of the + * array is less than the number of designs, `FT_Err_Invalid_Argument` + * is returned, and `len` is set to the required size (the number of + * designs). If the size of the array is greater than the number of + * designs, the remaining entries are set to~0. On successful + * completion, `len` is set to the number of designs (i.e., the number + * of values written to the array). + * + * @output: + * weightvector :: + * An array to be filled. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Adobe Multiple Master fonts limit the number of designs, and thus the + * length of the WeightVector to~16. + * + * @since: + * 2.10 + */ + FT_EXPORT( FT_Error ) + FT_Get_MM_WeightVector( FT_Face face, + FT_UInt* len, + FT_Fixed* weightvector ); + + + /************************************************************************** + * + * @enum: + * FT_VAR_AXIS_FLAG_XXX + * + * @description: + * A list of bit flags used in the return value of + * @FT_Get_Var_Axis_Flags. + * + * @values: + * FT_VAR_AXIS_FLAG_HIDDEN :: + * The variation axis should not be exposed to user interfaces. + * + * @since: + * 2.8.1 + */ +#define FT_VAR_AXIS_FLAG_HIDDEN 1 + + + /************************************************************************** + * + * @function: + * FT_Get_Var_Axis_Flags + * + * @description: + * Get the 'flags' field of an OpenType Variation Axis Record. + * + * Not meaningful for Adobe MM fonts (`*flags` is always zero). + * + * @input: + * master :: + * The variation descriptor. + * + * axis_index :: + * The index of the requested variation axis. + * + * @output: + * flags :: + * The 'flags' field. See @FT_VAR_AXIS_FLAG_XXX for possible values. + * + * @return: + * FreeType error code. 0~means success. + * + * @since: + * 2.8.1 + */ + FT_EXPORT( FT_Error ) + FT_Get_Var_Axis_Flags( FT_MM_Var* master, + FT_UInt axis_index, + FT_UInt* flags ); + + + /************************************************************************** + * + * @function: + * FT_Set_Named_Instance + * + * @description: + * Set or change the current named instance. + * + * @input: + * face :: + * A handle to the source face. + * + * instance_index :: + * The index of the requested instance, starting with value 1. If set + * to value 0, FreeType switches to font access without a named + * instance. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The function uses the value of `instance_index` to set bits 16-30 of + * the face's `face_index` field. It also resets any variation applied + * to the font, and the @FT_FACE_FLAG_VARIATION bit of the face's + * `face_flags` field gets reset to zero (i.e., @FT_IS_VARIATION will + * return false). + * + * For Adobe MM fonts (which don't have named instances) this function + * simply resets the current face to the default instance. + * + * @since: + * 2.9 + */ + FT_EXPORT( FT_Error ) + FT_Set_Named_Instance( FT_Face face, + FT_UInt instance_index ); + + /* */ + + +FT_END_HEADER + +#endif /* FTMM_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftmodapi.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftmodapi.h new file mode 100644 index 0000000..88488bf --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftmodapi.h @@ -0,0 +1,785 @@ +/**************************************************************************** + * + * ftmodapi.h + * + * FreeType modules public interface (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTMODAPI_H_ +#define FTMODAPI_H_ + + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * module_management + * + * @title: + * Module Management + * + * @abstract: + * How to add, upgrade, remove, and control modules from FreeType. + * + * @description: + * The definitions below are used to manage modules within FreeType. + * Modules can be added, upgraded, and removed at runtime. Additionally, + * some module properties can be controlled also. + * + * Here is a list of possible values of the `module_name` field in the + * @FT_Module_Class structure. + * + * ``` + * autofitter + * bdf + * cff + * gxvalid + * otvalid + * pcf + * pfr + * psaux + * pshinter + * psnames + * raster1 + * sfnt + * smooth, smooth-lcd, smooth-lcdv + * truetype + * type1 + * type42 + * t1cid + * winfonts + * ``` + * + * Note that the FreeType Cache sub-system is not a FreeType module. + * + * @order: + * FT_Module + * FT_Module_Constructor + * FT_Module_Destructor + * FT_Module_Requester + * FT_Module_Class + * + * FT_Add_Module + * FT_Get_Module + * FT_Remove_Module + * FT_Add_Default_Modules + * + * FT_Property_Set + * FT_Property_Get + * FT_Set_Default_Properties + * + * FT_New_Library + * FT_Done_Library + * FT_Reference_Library + * + * FT_Renderer + * FT_Renderer_Class + * + * FT_Get_Renderer + * FT_Set_Renderer + * + * FT_Set_Debug_Hook + * + */ + + + /* module bit flags */ +#define FT_MODULE_FONT_DRIVER 1 /* this module is a font driver */ +#define FT_MODULE_RENDERER 2 /* this module is a renderer */ +#define FT_MODULE_HINTER 4 /* this module is a glyph hinter */ +#define FT_MODULE_STYLER 8 /* this module is a styler */ + +#define FT_MODULE_DRIVER_SCALABLE 0x100 /* the driver supports */ + /* scalable fonts */ +#define FT_MODULE_DRIVER_NO_OUTLINES 0x200 /* the driver does not */ + /* support vector outlines */ +#define FT_MODULE_DRIVER_HAS_HINTER 0x400 /* the driver provides its */ + /* own hinter */ +#define FT_MODULE_DRIVER_HINTS_LIGHTLY 0x800 /* the driver's hinter */ + /* produces LIGHT hints */ + + + /* deprecated values */ +#define ft_module_font_driver FT_MODULE_FONT_DRIVER +#define ft_module_renderer FT_MODULE_RENDERER +#define ft_module_hinter FT_MODULE_HINTER +#define ft_module_styler FT_MODULE_STYLER + +#define ft_module_driver_scalable FT_MODULE_DRIVER_SCALABLE +#define ft_module_driver_no_outlines FT_MODULE_DRIVER_NO_OUTLINES +#define ft_module_driver_has_hinter FT_MODULE_DRIVER_HAS_HINTER +#define ft_module_driver_hints_lightly FT_MODULE_DRIVER_HINTS_LIGHTLY + + + typedef FT_Pointer FT_Module_Interface; + + + /************************************************************************** + * + * @functype: + * FT_Module_Constructor + * + * @description: + * A function used to initialize (not create) a new module object. + * + * @input: + * module :: + * The module to initialize. + */ + typedef FT_Error + (*FT_Module_Constructor)( FT_Module module ); + + + /************************************************************************** + * + * @functype: + * FT_Module_Destructor + * + * @description: + * A function used to finalize (not destroy) a given module object. + * + * @input: + * module :: + * The module to finalize. + */ + typedef void + (*FT_Module_Destructor)( FT_Module module ); + + + /************************************************************************** + * + * @functype: + * FT_Module_Requester + * + * @description: + * A function used to query a given module for a specific interface. + * + * @input: + * module :: + * The module to be searched. + * + * name :: + * The name of the interface in the module. + */ + typedef FT_Module_Interface + (*FT_Module_Requester)( FT_Module module, + const char* name ); + + + /************************************************************************** + * + * @struct: + * FT_Module_Class + * + * @description: + * The module class descriptor. While being a public structure necessary + * for FreeType's module bookkeeping, most of the fields are essentially + * internal, not to be used directly by an application. + * + * @fields: + * module_flags :: + * Bit flags describing the module. + * + * module_size :: + * The size of one module object/instance in bytes. + * + * module_name :: + * The name of the module. + * + * module_version :: + * The version, as a 16.16 fixed number (major.minor). + * + * module_requires :: + * The version of FreeType this module requires, as a 16.16 fixed + * number (major.minor). Starts at version 2.0, i.e., 0x20000. + * + * module_interface :: + * A typeless pointer to a structure (which varies between different + * modules) that holds the module's interface functions. This is + * essentially what `get_interface` returns. + * + * module_init :: + * The initializing function. + * + * module_done :: + * The finalizing function. + * + * get_interface :: + * The interface requesting function. + */ + typedef struct FT_Module_Class_ + { + FT_ULong module_flags; + FT_Long module_size; + const FT_String* module_name; + FT_Fixed module_version; + FT_Fixed module_requires; + + const void* module_interface; + + FT_Module_Constructor module_init; + FT_Module_Destructor module_done; + FT_Module_Requester get_interface; + + } FT_Module_Class; + + + /************************************************************************** + * + * @function: + * FT_Add_Module + * + * @description: + * Add a new module to a given library instance. + * + * @inout: + * library :: + * A handle to the library object. + * + * @input: + * clazz :: + * A pointer to class descriptor for the module. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * An error will be returned if a module already exists by that name, or + * if the module requires a version of FreeType that is too great. + */ + FT_EXPORT( FT_Error ) + FT_Add_Module( FT_Library library, + const FT_Module_Class* clazz ); + + + /************************************************************************** + * + * @function: + * FT_Get_Module + * + * @description: + * Find a module by its name. + * + * @input: + * library :: + * A handle to the library object. + * + * module_name :: + * The module's name (as an ASCII string). + * + * @return: + * A module handle. 0~if none was found. + * + * @note: + * FreeType's internal modules aren't documented very well, and you + * should look up the source code for details. + */ + FT_EXPORT( FT_Module ) + FT_Get_Module( FT_Library library, + const char* module_name ); + + + /************************************************************************** + * + * @function: + * FT_Remove_Module + * + * @description: + * Remove a given module from a library instance. + * + * @inout: + * library :: + * A handle to a library object. + * + * @input: + * module :: + * A handle to a module object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The module object is destroyed by the function in case of success. + */ + FT_EXPORT( FT_Error ) + FT_Remove_Module( FT_Library library, + FT_Module module ); + + + /************************************************************************** + * + * @function: + * FT_Property_Set + * + * @description: + * Set a property for a given module. + * + * @input: + * library :: + * A handle to the library the module is part of. + * + * module_name :: + * The module name. + * + * property_name :: + * The property name. Properties are described in section + * @properties. + * + * Note that only a few modules have properties. + * + * value :: + * A generic pointer to a variable or structure that gives the new + * value of the property. The exact definition of `value` is + * dependent on the property; see section @properties. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If `module_name` isn't a valid module name, or `property_name` + * doesn't specify a valid property, or if `value` doesn't represent a + * valid value for the given property, an error is returned. + * + * The following example sets property 'bar' (a simple integer) in + * module 'foo' to value~1. + * + * ``` + * FT_UInt bar; + * + * + * bar = 1; + * FT_Property_Set( library, "foo", "bar", &bar ); + * ``` + * + * Note that the FreeType Cache sub-system doesn't recognize module + * property changes. To avoid glyph lookup confusion within the cache + * you should call @FTC_Manager_Reset to completely flush the cache if a + * module property gets changed after @FTC_Manager_New has been called. + * + * It is not possible to set properties of the FreeType Cache sub-system + * itself with FT_Property_Set; use @FTC_Property_Set instead. + * + * @since: + * 2.4.11 + * + */ + FT_EXPORT( FT_Error ) + FT_Property_Set( FT_Library library, + const FT_String* module_name, + const FT_String* property_name, + const void* value ); + + + /************************************************************************** + * + * @function: + * FT_Property_Get + * + * @description: + * Get a module's property value. + * + * @input: + * library :: + * A handle to the library the module is part of. + * + * module_name :: + * The module name. + * + * property_name :: + * The property name. Properties are described in section + * @properties. + * + * @inout: + * value :: + * A generic pointer to a variable or structure that gives the value + * of the property. The exact definition of `value` is dependent on + * the property; see section @properties. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If `module_name` isn't a valid module name, or `property_name` + * doesn't specify a valid property, or if `value` doesn't represent a + * valid value for the given property, an error is returned. + * + * The following example gets property 'baz' (a range) in module 'foo'. + * + * ``` + * typedef range_ + * { + * FT_Int32 min; + * FT_Int32 max; + * + * } range; + * + * range baz; + * + * + * FT_Property_Get( library, "foo", "baz", &baz ); + * ``` + * + * It is not possible to retrieve properties of the FreeType Cache + * sub-system with FT_Property_Get; use @FTC_Property_Get instead. + * + * @since: + * 2.4.11 + * + */ + FT_EXPORT( FT_Error ) + FT_Property_Get( FT_Library library, + const FT_String* module_name, + const FT_String* property_name, + void* value ); + + + /************************************************************************** + * + * @function: + * FT_Set_Default_Properties + * + * @description: + * If compilation option `FT_CONFIG_OPTION_ENVIRONMENT_PROPERTIES` is + * set, this function reads the `FREETYPE_PROPERTIES` environment + * variable to control driver properties. See section @properties for + * more. + * + * If the compilation option is not set, this function does nothing. + * + * `FREETYPE_PROPERTIES` has the following syntax form (broken here into + * multiple lines for better readability). + * + * ``` + * + * ':' + * '=' + * + * ':' + * '=' + * ... + * ``` + * + * Example: + * + * ``` + * FREETYPE_PROPERTIES=truetype:interpreter-version=35 \ + * cff:no-stem-darkening=1 \ + * autofitter:warping=1 + * ``` + * + * @inout: + * library :: + * A handle to a new library object. + * + * @since: + * 2.8 + */ + FT_EXPORT( void ) + FT_Set_Default_Properties( FT_Library library ); + + + /************************************************************************** + * + * @function: + * FT_Reference_Library + * + * @description: + * A counter gets initialized to~1 at the time an @FT_Library structure + * is created. This function increments the counter. @FT_Done_Library + * then only destroys a library if the counter is~1, otherwise it simply + * decrements the counter. + * + * This function helps in managing life-cycles of structures that + * reference @FT_Library objects. + * + * @input: + * library :: + * A handle to a target library object. + * + * @return: + * FreeType error code. 0~means success. + * + * @since: + * 2.4.2 + */ + FT_EXPORT( FT_Error ) + FT_Reference_Library( FT_Library library ); + + + /************************************************************************** + * + * @function: + * FT_New_Library + * + * @description: + * This function is used to create a new FreeType library instance from a + * given memory object. It is thus possible to use libraries with + * distinct memory allocators within the same program. Note, however, + * that the used @FT_Memory structure is expected to remain valid for the + * life of the @FT_Library object. + * + * Normally, you would call this function (followed by a call to + * @FT_Add_Default_Modules or a series of calls to @FT_Add_Module, and a + * call to @FT_Set_Default_Properties) instead of @FT_Init_FreeType to + * initialize the FreeType library. + * + * Don't use @FT_Done_FreeType but @FT_Done_Library to destroy a library + * instance. + * + * @input: + * memory :: + * A handle to the original memory object. + * + * @output: + * alibrary :: + * A pointer to handle of a new library object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * See the discussion of reference counters in the description of + * @FT_Reference_Library. + */ + FT_EXPORT( FT_Error ) + FT_New_Library( FT_Memory memory, + FT_Library *alibrary ); + + + /************************************************************************** + * + * @function: + * FT_Done_Library + * + * @description: + * Discard a given library object. This closes all drivers and discards + * all resource objects. + * + * @input: + * library :: + * A handle to the target library. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * See the discussion of reference counters in the description of + * @FT_Reference_Library. + */ + FT_EXPORT( FT_Error ) + FT_Done_Library( FT_Library library ); + + + /************************************************************************** + * + * @functype: + * FT_DebugHook_Func + * + * @description: + * A drop-in replacement (or rather a wrapper) for the bytecode or + * charstring interpreter's main loop function. + * + * Its job is essentially + * + * - to activate debug mode to enforce single-stepping, + * + * - to call the main loop function to interpret the next opcode, and + * + * - to show the changed context to the user. + * + * An example for such a main loop function is `TT_RunIns` (declared in + * FreeType's internal header file `src/truetype/ttinterp.h`). + * + * Have a look at the source code of the `ttdebug` FreeType demo program + * for an example of a drop-in replacement. + * + * @inout: + * arg :: + * A typeless pointer, to be cast to the main loop function's data + * structure (which depends on the font module). For TrueType fonts + * it is bytecode interpreter's execution context, `TT_ExecContext`, + * which is declared in FreeType's internal header file `tttypes.h`. + */ + typedef void + (*FT_DebugHook_Func)( void* arg ); + + + /************************************************************************** + * + * @enum: + * FT_DEBUG_HOOK_XXX + * + * @description: + * A list of named debug hook indices. + * + * @values: + * FT_DEBUG_HOOK_TRUETYPE:: + * This hook index identifies the TrueType bytecode debugger. + */ +#define FT_DEBUG_HOOK_TRUETYPE 0 + + + /************************************************************************** + * + * @function: + * FT_Set_Debug_Hook + * + * @description: + * Set a debug hook function for debugging the interpreter of a font + * format. + * + * While this is a public API function, an application needs access to + * FreeType's internal header files to do something useful. + * + * Have a look at the source code of the `ttdebug` FreeType demo program + * for an example of its usage. + * + * @inout: + * library :: + * A handle to the library object. + * + * @input: + * hook_index :: + * The index of the debug hook. You should use defined enumeration + * macros like @FT_DEBUG_HOOK_TRUETYPE. + * + * debug_hook :: + * The function used to debug the interpreter. + * + * @note: + * Currently, four debug hook slots are available, but only one (for the + * TrueType interpreter) is defined. + */ + FT_EXPORT( void ) + FT_Set_Debug_Hook( FT_Library library, + FT_UInt hook_index, + FT_DebugHook_Func debug_hook ); + + + /************************************************************************** + * + * @function: + * FT_Add_Default_Modules + * + * @description: + * Add the set of default drivers to a given library object. This is + * only useful when you create a library object with @FT_New_Library + * (usually to plug a custom memory manager). + * + * @inout: + * library :: + * A handle to a new library object. + */ + FT_EXPORT( void ) + FT_Add_Default_Modules( FT_Library library ); + + + + /************************************************************************** + * + * @section: + * truetype_engine + * + * @title: + * The TrueType Engine + * + * @abstract: + * TrueType bytecode support. + * + * @description: + * This section contains a function used to query the level of TrueType + * bytecode support compiled in this version of the library. + * + */ + + + /************************************************************************** + * + * @enum: + * FT_TrueTypeEngineType + * + * @description: + * A list of values describing which kind of TrueType bytecode engine is + * implemented in a given FT_Library instance. It is used by the + * @FT_Get_TrueType_Engine_Type function. + * + * @values: + * FT_TRUETYPE_ENGINE_TYPE_NONE :: + * The library doesn't implement any kind of bytecode interpreter. + * + * FT_TRUETYPE_ENGINE_TYPE_UNPATENTED :: + * Deprecated and removed. + * + * FT_TRUETYPE_ENGINE_TYPE_PATENTED :: + * The library implements a bytecode interpreter that covers the full + * instruction set of the TrueType virtual machine (this was governed + * by patents until May 2010, hence the name). + * + * @since: + * 2.2 + * + */ + typedef enum FT_TrueTypeEngineType_ + { + FT_TRUETYPE_ENGINE_TYPE_NONE = 0, + FT_TRUETYPE_ENGINE_TYPE_UNPATENTED, + FT_TRUETYPE_ENGINE_TYPE_PATENTED + + } FT_TrueTypeEngineType; + + + /************************************************************************** + * + * @function: + * FT_Get_TrueType_Engine_Type + * + * @description: + * Return an @FT_TrueTypeEngineType value to indicate which level of the + * TrueType virtual machine a given library instance supports. + * + * @input: + * library :: + * A library instance. + * + * @return: + * A value indicating which level is supported. + * + * @since: + * 2.2 + * + */ + FT_EXPORT( FT_TrueTypeEngineType ) + FT_Get_TrueType_Engine_Type( FT_Library library ); + + /* */ + + +FT_END_HEADER + +#endif /* FTMODAPI_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftmoderr.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftmoderr.h new file mode 100644 index 0000000..e169935 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftmoderr.h @@ -0,0 +1,203 @@ +/**************************************************************************** + * + * ftmoderr.h + * + * FreeType module error offsets (specification). + * + * Copyright (C) 2001-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * This file is used to define the FreeType module error codes. + * + * If the macro `FT_CONFIG_OPTION_USE_MODULE_ERRORS` in `ftoption.h` is + * set, the lower byte of an error value identifies the error code as + * usual. In addition, the higher byte identifies the module. For + * example, the error `FT_Err_Invalid_File_Format` has value 0x0003, the + * error `TT_Err_Invalid_File_Format` has value 0x1303, the error + * `T1_Err_Invalid_File_Format` has value 0x1403, etc. + * + * Note that `FT_Err_Ok`, `TT_Err_Ok`, etc. are always equal to zero, + * including the high byte. + * + * If `FT_CONFIG_OPTION_USE_MODULE_ERRORS` isn't set, the higher byte of an + * error value is set to zero. + * + * To hide the various `XXX_Err_` prefixes in the source code, FreeType + * provides some macros in `fttypes.h`. + * + * FT_ERR( err ) + * + * Add current error module prefix (as defined with the `FT_ERR_PREFIX` + * macro) to `err`. For example, in the BDF module the line + * + * ``` + * error = FT_ERR( Invalid_Outline ); + * ``` + * + * expands to + * + * ``` + * error = BDF_Err_Invalid_Outline; + * ``` + * + * For simplicity, you can always use `FT_Err_Ok` directly instead of + * `FT_ERR( Ok )`. + * + * FT_ERR_EQ( errcode, err ) + * FT_ERR_NEQ( errcode, err ) + * + * Compare error code `errcode` with the error `err` for equality and + * inequality, respectively. Example: + * + * ``` + * if ( FT_ERR_EQ( error, Invalid_Outline ) ) + * ... + * ``` + * + * Using this macro you don't have to think about error prefixes. Of + * course, if module errors are not active, the above example is the + * same as + * + * ``` + * if ( error == FT_Err_Invalid_Outline ) + * ... + * ``` + * + * FT_ERROR_BASE( errcode ) + * FT_ERROR_MODULE( errcode ) + * + * Get base error and module error code, respectively. + * + * It can also be used to create a module error message table easily with + * something like + * + * ``` + * #undef FTMODERR_H_ + * #define FT_MODERRDEF( e, v, s ) { FT_Mod_Err_ ## e, s }, + * #define FT_MODERR_START_LIST { + * #define FT_MODERR_END_LIST { 0, 0 } }; + * + * const struct + * { + * int mod_err_offset; + * const char* mod_err_msg + * } ft_mod_errors[] = + * + * #include FT_MODULE_ERRORS_H + * ``` + * + */ + + +#ifndef FTMODERR_H_ +#define FTMODERR_H_ + + + /*******************************************************************/ + /*******************************************************************/ + /***** *****/ + /***** SETUP MACROS *****/ + /***** *****/ + /*******************************************************************/ + /*******************************************************************/ + + +#undef FT_NEED_EXTERN_C + +#ifndef FT_MODERRDEF + +#ifdef FT_CONFIG_OPTION_USE_MODULE_ERRORS +#define FT_MODERRDEF( e, v, s ) FT_Mod_Err_ ## e = v, +#else +#define FT_MODERRDEF( e, v, s ) FT_Mod_Err_ ## e = 0, +#endif + +#define FT_MODERR_START_LIST enum { +#define FT_MODERR_END_LIST FT_Mod_Err_Max }; + +#ifdef __cplusplus +#define FT_NEED_EXTERN_C + extern "C" { +#endif + +#endif /* !FT_MODERRDEF */ + + + /*******************************************************************/ + /*******************************************************************/ + /***** *****/ + /***** LIST MODULE ERROR BASES *****/ + /***** *****/ + /*******************************************************************/ + /*******************************************************************/ + + +#ifdef FT_MODERR_START_LIST + FT_MODERR_START_LIST +#endif + + + FT_MODERRDEF( Base, 0x000, "base module" ) + FT_MODERRDEF( Autofit, 0x100, "autofitter module" ) + FT_MODERRDEF( BDF, 0x200, "BDF module" ) + FT_MODERRDEF( Bzip2, 0x300, "Bzip2 module" ) + FT_MODERRDEF( Cache, 0x400, "cache module" ) + FT_MODERRDEF( CFF, 0x500, "CFF module" ) + FT_MODERRDEF( CID, 0x600, "CID module" ) + FT_MODERRDEF( Gzip, 0x700, "Gzip module" ) + FT_MODERRDEF( LZW, 0x800, "LZW module" ) + FT_MODERRDEF( OTvalid, 0x900, "OpenType validation module" ) + FT_MODERRDEF( PCF, 0xA00, "PCF module" ) + FT_MODERRDEF( PFR, 0xB00, "PFR module" ) + FT_MODERRDEF( PSaux, 0xC00, "PS auxiliary module" ) + FT_MODERRDEF( PShinter, 0xD00, "PS hinter module" ) + FT_MODERRDEF( PSnames, 0xE00, "PS names module" ) + FT_MODERRDEF( Raster, 0xF00, "raster module" ) + FT_MODERRDEF( SFNT, 0x1000, "SFNT module" ) + FT_MODERRDEF( Smooth, 0x1100, "smooth raster module" ) + FT_MODERRDEF( TrueType, 0x1200, "TrueType module" ) + FT_MODERRDEF( Type1, 0x1300, "Type 1 module" ) + FT_MODERRDEF( Type42, 0x1400, "Type 42 module" ) + FT_MODERRDEF( Winfonts, 0x1500, "Windows FON/FNT module" ) + FT_MODERRDEF( GXvalid, 0x1600, "GX validation module" ) + + +#ifdef FT_MODERR_END_LIST + FT_MODERR_END_LIST +#endif + + + /*******************************************************************/ + /*******************************************************************/ + /***** *****/ + /***** CLEANUP *****/ + /***** *****/ + /*******************************************************************/ + /*******************************************************************/ + + +#ifdef FT_NEED_EXTERN_C + } +#endif + +#undef FT_MODERR_START_LIST +#undef FT_MODERR_END_LIST +#undef FT_MODERRDEF +#undef FT_NEED_EXTERN_C + + +#endif /* FTMODERR_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftotval.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftotval.h new file mode 100644 index 0000000..c034f48 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftotval.h @@ -0,0 +1,207 @@ +/**************************************************************************** + * + * ftotval.h + * + * FreeType API for validating OpenType tables (specification). + * + * Copyright (C) 2004-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +/**************************************************************************** + * + * + * Warning: This module might be moved to a different library in the + * future to avoid a tight dependency between FreeType and the + * OpenType specification. + * + * + */ + + +#ifndef FTOTVAL_H_ +#define FTOTVAL_H_ + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * ot_validation + * + * @title: + * OpenType Validation + * + * @abstract: + * An API to validate OpenType tables. + * + * @description: + * This section contains the declaration of functions to validate some + * OpenType tables (BASE, GDEF, GPOS, GSUB, JSTF, MATH). + * + * @order: + * FT_OpenType_Validate + * FT_OpenType_Free + * + * FT_VALIDATE_OTXXX + * + */ + + + /************************************************************************** + * + * @enum: + * FT_VALIDATE_OTXXX + * + * @description: + * A list of bit-field constants used with @FT_OpenType_Validate to + * indicate which OpenType tables should be validated. + * + * @values: + * FT_VALIDATE_BASE :: + * Validate BASE table. + * + * FT_VALIDATE_GDEF :: + * Validate GDEF table. + * + * FT_VALIDATE_GPOS :: + * Validate GPOS table. + * + * FT_VALIDATE_GSUB :: + * Validate GSUB table. + * + * FT_VALIDATE_JSTF :: + * Validate JSTF table. + * + * FT_VALIDATE_MATH :: + * Validate MATH table. + * + * FT_VALIDATE_OT :: + * Validate all OpenType tables (BASE, GDEF, GPOS, GSUB, JSTF, MATH). + * + */ +#define FT_VALIDATE_BASE 0x0100 +#define FT_VALIDATE_GDEF 0x0200 +#define FT_VALIDATE_GPOS 0x0400 +#define FT_VALIDATE_GSUB 0x0800 +#define FT_VALIDATE_JSTF 0x1000 +#define FT_VALIDATE_MATH 0x2000 + +#define FT_VALIDATE_OT ( FT_VALIDATE_BASE | \ + FT_VALIDATE_GDEF | \ + FT_VALIDATE_GPOS | \ + FT_VALIDATE_GSUB | \ + FT_VALIDATE_JSTF | \ + FT_VALIDATE_MATH ) + + + /************************************************************************** + * + * @function: + * FT_OpenType_Validate + * + * @description: + * Validate various OpenType tables to assure that all offsets and + * indices are valid. The idea is that a higher-level library that + * actually does the text layout can access those tables without error + * checking (which can be quite time consuming). + * + * @input: + * face :: + * A handle to the input face. + * + * validation_flags :: + * A bit field that specifies the tables to be validated. See + * @FT_VALIDATE_OTXXX for possible values. + * + * @output: + * BASE_table :: + * A pointer to the BASE table. + * + * GDEF_table :: + * A pointer to the GDEF table. + * + * GPOS_table :: + * A pointer to the GPOS table. + * + * GSUB_table :: + * A pointer to the GSUB table. + * + * JSTF_table :: + * A pointer to the JSTF table. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with OpenType fonts, returning an error + * otherwise. + * + * After use, the application should deallocate the five tables with + * @FT_OpenType_Free. A `NULL` value indicates that the table either + * doesn't exist in the font, or the application hasn't asked for + * validation. + */ + FT_EXPORT( FT_Error ) + FT_OpenType_Validate( FT_Face face, + FT_UInt validation_flags, + FT_Bytes *BASE_table, + FT_Bytes *GDEF_table, + FT_Bytes *GPOS_table, + FT_Bytes *GSUB_table, + FT_Bytes *JSTF_table ); + + + /************************************************************************** + * + * @function: + * FT_OpenType_Free + * + * @description: + * Free the buffer allocated by OpenType validator. + * + * @input: + * face :: + * A handle to the input face. + * + * table :: + * The pointer to the buffer that is allocated by + * @FT_OpenType_Validate. + * + * @note: + * This function must be used to free the buffer allocated by + * @FT_OpenType_Validate only. + */ + FT_EXPORT( void ) + FT_OpenType_Free( FT_Face face, + FT_Bytes table ); + + + /* */ + + +FT_END_HEADER + +#endif /* FTOTVAL_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftoutln.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftoutln.h new file mode 100644 index 0000000..75c3d01 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftoutln.h @@ -0,0 +1,593 @@ +/**************************************************************************** + * + * ftoutln.h + * + * Support for the FT_Outline type used to store glyph shapes of + * most scalable font formats (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTOUTLN_H_ +#define FTOUTLN_H_ + + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * outline_processing + * + * @title: + * Outline Processing + * + * @abstract: + * Functions to create, transform, and render vectorial glyph images. + * + * @description: + * This section contains routines used to create and destroy scalable + * glyph images known as 'outlines'. These can also be measured, + * transformed, and converted into bitmaps and pixmaps. + * + * @order: + * FT_Outline + * FT_Outline_New + * FT_Outline_Done + * FT_Outline_Copy + * FT_Outline_Translate + * FT_Outline_Transform + * FT_Outline_Embolden + * FT_Outline_EmboldenXY + * FT_Outline_Reverse + * FT_Outline_Check + * + * FT_Outline_Get_CBox + * FT_Outline_Get_BBox + * + * FT_Outline_Get_Bitmap + * FT_Outline_Render + * FT_Outline_Decompose + * FT_Outline_Funcs + * FT_Outline_MoveToFunc + * FT_Outline_LineToFunc + * FT_Outline_ConicToFunc + * FT_Outline_CubicToFunc + * + * FT_Orientation + * FT_Outline_Get_Orientation + * + * FT_OUTLINE_XXX + * + */ + + + /************************************************************************** + * + * @function: + * FT_Outline_Decompose + * + * @description: + * Walk over an outline's structure to decompose it into individual + * segments and Bezier arcs. This function also emits 'move to' + * operations to indicate the start of new contours in the outline. + * + * @input: + * outline :: + * A pointer to the source target. + * + * func_interface :: + * A table of 'emitters', i.e., function pointers called during + * decomposition to indicate path operations. + * + * @inout: + * user :: + * A typeless pointer that is passed to each emitter during the + * decomposition. It can be used to store the state during the + * decomposition. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * A contour that contains a single point only is represented by a 'move + * to' operation followed by 'line to' to the same point. In most cases, + * it is best to filter this out before using the outline for stroking + * purposes (otherwise it would result in a visible dot when round caps + * are used). + * + * Similarly, the function returns success for an empty outline also + * (doing nothing, this is, not calling any emitter); if necessary, you + * should filter this out, too. + */ + FT_EXPORT( FT_Error ) + FT_Outline_Decompose( FT_Outline* outline, + const FT_Outline_Funcs* func_interface, + void* user ); + + + /************************************************************************** + * + * @function: + * FT_Outline_New + * + * @description: + * Create a new outline of a given size. + * + * @input: + * library :: + * A handle to the library object from where the outline is allocated. + * Note however that the new outline will **not** necessarily be + * **freed**, when destroying the library, by @FT_Done_FreeType. + * + * numPoints :: + * The maximum number of points within the outline. Must be smaller + * than or equal to 0xFFFF (65535). + * + * numContours :: + * The maximum number of contours within the outline. This value must + * be in the range 0 to `numPoints`. + * + * @output: + * anoutline :: + * A handle to the new outline. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The reason why this function takes a `library` parameter is simply to + * use the library's memory allocator. + */ + FT_EXPORT( FT_Error ) + FT_Outline_New( FT_Library library, + FT_UInt numPoints, + FT_Int numContours, + FT_Outline *anoutline ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Done + * + * @description: + * Destroy an outline created with @FT_Outline_New. + * + * @input: + * library :: + * A handle of the library object used to allocate the outline. + * + * outline :: + * A pointer to the outline object to be discarded. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If the outline's 'owner' field is not set, only the outline descriptor + * will be released. + */ + FT_EXPORT( FT_Error ) + FT_Outline_Done( FT_Library library, + FT_Outline* outline ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Check + * + * @description: + * Check the contents of an outline descriptor. + * + * @input: + * outline :: + * A handle to a source outline. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * An empty outline, or an outline with a single point only is also + * valid. + */ + FT_EXPORT( FT_Error ) + FT_Outline_Check( FT_Outline* outline ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Get_CBox + * + * @description: + * Return an outline's 'control box'. The control box encloses all the + * outline's points, including Bezier control points. Though it + * coincides with the exact bounding box for most glyphs, it can be + * slightly larger in some situations (like when rotating an outline that + * contains Bezier outside arcs). + * + * Computing the control box is very fast, while getting the bounding box + * can take much more time as it needs to walk over all segments and arcs + * in the outline. To get the latter, you can use the 'ftbbox' + * component, which is dedicated to this single task. + * + * @input: + * outline :: + * A pointer to the source outline descriptor. + * + * @output: + * acbox :: + * The outline's control box. + * + * @note: + * See @FT_Glyph_Get_CBox for a discussion of tricky fonts. + */ + FT_EXPORT( void ) + FT_Outline_Get_CBox( const FT_Outline* outline, + FT_BBox *acbox ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Translate + * + * @description: + * Apply a simple translation to the points of an outline. + * + * @inout: + * outline :: + * A pointer to the target outline descriptor. + * + * @input: + * xOffset :: + * The horizontal offset. + * + * yOffset :: + * The vertical offset. + */ + FT_EXPORT( void ) + FT_Outline_Translate( const FT_Outline* outline, + FT_Pos xOffset, + FT_Pos yOffset ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Copy + * + * @description: + * Copy an outline into another one. Both objects must have the same + * sizes (number of points & number of contours) when this function is + * called. + * + * @input: + * source :: + * A handle to the source outline. + * + * @output: + * target :: + * A handle to the target outline. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Outline_Copy( const FT_Outline* source, + FT_Outline *target ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Transform + * + * @description: + * Apply a simple 2x2 matrix to all of an outline's points. Useful for + * applying rotations, slanting, flipping, etc. + * + * @inout: + * outline :: + * A pointer to the target outline descriptor. + * + * @input: + * matrix :: + * A pointer to the transformation matrix. + * + * @note: + * You can use @FT_Outline_Translate if you need to translate the + * outline's points. + */ + FT_EXPORT( void ) + FT_Outline_Transform( const FT_Outline* outline, + const FT_Matrix* matrix ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Embolden + * + * @description: + * Embolden an outline. The new outline will be at most 4~times + * `strength` pixels wider and higher. You may think of the left and + * bottom borders as unchanged. + * + * Negative `strength` values to reduce the outline thickness are + * possible also. + * + * @inout: + * outline :: + * A handle to the target outline. + * + * @input: + * strength :: + * How strong the glyph is emboldened. Expressed in 26.6 pixel format. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The used algorithm to increase or decrease the thickness of the glyph + * doesn't change the number of points; this means that certain + * situations like acute angles or intersections are sometimes handled + * incorrectly. + * + * If you need 'better' metrics values you should call + * @FT_Outline_Get_CBox or @FT_Outline_Get_BBox. + * + * To get meaningful results, font scaling values must be set with + * functions like @FT_Set_Char_Size before calling FT_Render_Glyph. + * + * @example: + * ``` + * FT_Load_Glyph( face, index, FT_LOAD_DEFAULT ); + * + * if ( face->glyph->format == FT_GLYPH_FORMAT_OUTLINE ) + * FT_Outline_Embolden( &face->glyph->outline, strength ); + * ``` + * + */ + FT_EXPORT( FT_Error ) + FT_Outline_Embolden( FT_Outline* outline, + FT_Pos strength ); + + + /************************************************************************** + * + * @function: + * FT_Outline_EmboldenXY + * + * @description: + * Embolden an outline. The new outline will be `xstrength` pixels wider + * and `ystrength` pixels higher. Otherwise, it is similar to + * @FT_Outline_Embolden, which uses the same strength in both directions. + * + * @since: + * 2.4.10 + */ + FT_EXPORT( FT_Error ) + FT_Outline_EmboldenXY( FT_Outline* outline, + FT_Pos xstrength, + FT_Pos ystrength ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Reverse + * + * @description: + * Reverse the drawing direction of an outline. This is used to ensure + * consistent fill conventions for mirrored glyphs. + * + * @inout: + * outline :: + * A pointer to the target outline descriptor. + * + * @note: + * This function toggles the bit flag @FT_OUTLINE_REVERSE_FILL in the + * outline's `flags` field. + * + * It shouldn't be used by a normal client application, unless it knows + * what it is doing. + */ + FT_EXPORT( void ) + FT_Outline_Reverse( FT_Outline* outline ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Get_Bitmap + * + * @description: + * Render an outline within a bitmap. The outline's image is simply + * OR-ed to the target bitmap. + * + * @input: + * library :: + * A handle to a FreeType library object. + * + * outline :: + * A pointer to the source outline descriptor. + * + * @inout: + * abitmap :: + * A pointer to the target bitmap descriptor. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function does **not create** the bitmap, it only renders an + * outline image within the one you pass to it! Consequently, the + * various fields in `abitmap` should be set accordingly. + * + * It will use the raster corresponding to the default glyph format. + * + * The value of the `num_grays` field in `abitmap` is ignored. If you + * select the gray-level rasterizer, and you want less than 256 gray + * levels, you have to use @FT_Outline_Render directly. + */ + FT_EXPORT( FT_Error ) + FT_Outline_Get_Bitmap( FT_Library library, + FT_Outline* outline, + const FT_Bitmap *abitmap ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Render + * + * @description: + * Render an outline within a bitmap using the current scan-convert. + * This function uses an @FT_Raster_Params structure as an argument, + * allowing advanced features like direct composition, translucency, etc. + * + * @input: + * library :: + * A handle to a FreeType library object. + * + * outline :: + * A pointer to the source outline descriptor. + * + * @inout: + * params :: + * A pointer to an @FT_Raster_Params structure used to describe the + * rendering operation. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You should know what you are doing and how @FT_Raster_Params works to + * use this function. + * + * The field `params.source` will be set to `outline` before the scan + * converter is called, which means that the value you give to it is + * actually ignored. + * + * The gray-level rasterizer always uses 256 gray levels. If you want + * less gray levels, you have to provide your own span callback. See the + * @FT_RASTER_FLAG_DIRECT value of the `flags` field in the + * @FT_Raster_Params structure for more details. + */ + FT_EXPORT( FT_Error ) + FT_Outline_Render( FT_Library library, + FT_Outline* outline, + FT_Raster_Params* params ); + + + /************************************************************************** + * + * @enum: + * FT_Orientation + * + * @description: + * A list of values used to describe an outline's contour orientation. + * + * The TrueType and PostScript specifications use different conventions + * to determine whether outline contours should be filled or unfilled. + * + * @values: + * FT_ORIENTATION_TRUETYPE :: + * According to the TrueType specification, clockwise contours must be + * filled, and counter-clockwise ones must be unfilled. + * + * FT_ORIENTATION_POSTSCRIPT :: + * According to the PostScript specification, counter-clockwise + * contours must be filled, and clockwise ones must be unfilled. + * + * FT_ORIENTATION_FILL_RIGHT :: + * This is identical to @FT_ORIENTATION_TRUETYPE, but is used to + * remember that in TrueType, everything that is to the right of the + * drawing direction of a contour must be filled. + * + * FT_ORIENTATION_FILL_LEFT :: + * This is identical to @FT_ORIENTATION_POSTSCRIPT, but is used to + * remember that in PostScript, everything that is to the left of the + * drawing direction of a contour must be filled. + * + * FT_ORIENTATION_NONE :: + * The orientation cannot be determined. That is, different parts of + * the glyph have different orientation. + * + */ + typedef enum FT_Orientation_ + { + FT_ORIENTATION_TRUETYPE = 0, + FT_ORIENTATION_POSTSCRIPT = 1, + FT_ORIENTATION_FILL_RIGHT = FT_ORIENTATION_TRUETYPE, + FT_ORIENTATION_FILL_LEFT = FT_ORIENTATION_POSTSCRIPT, + FT_ORIENTATION_NONE + + } FT_Orientation; + + + /************************************************************************** + * + * @function: + * FT_Outline_Get_Orientation + * + * @description: + * This function analyzes a glyph outline and tries to compute its fill + * orientation (see @FT_Orientation). This is done by integrating the + * total area covered by the outline. The positive integral corresponds + * to the clockwise orientation and @FT_ORIENTATION_POSTSCRIPT is + * returned. The negative integral corresponds to the counter-clockwise + * orientation and @FT_ORIENTATION_TRUETYPE is returned. + * + * Note that this will return @FT_ORIENTATION_TRUETYPE for empty + * outlines. + * + * @input: + * outline :: + * A handle to the source outline. + * + * @return: + * The orientation. + * + */ + FT_EXPORT( FT_Orientation ) + FT_Outline_Get_Orientation( FT_Outline* outline ); + + + /* */ + + +FT_END_HEADER + +#endif /* FTOUTLN_H_ */ + + +/* END */ + + +/* Local Variables: */ +/* coding: utf-8 */ +/* End: */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftparams.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftparams.h new file mode 100644 index 0000000..c374ee2 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftparams.h @@ -0,0 +1,204 @@ +/**************************************************************************** + * + * ftparams.h + * + * FreeType API for possible FT_Parameter tags (specification only). + * + * Copyright (C) 2017-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTPARAMS_H_ +#define FTPARAMS_H_ + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * parameter_tags + * + * @title: + * Parameter Tags + * + * @abstract: + * Macros for driver property and font loading parameter tags. + * + * @description: + * This section contains macros for the @FT_Parameter structure that are + * used with various functions to activate some special functionality or + * different behaviour of various components of FreeType. + * + */ + + + /************************************************************************** + * + * @enum: + * FT_PARAM_TAG_IGNORE_TYPOGRAPHIC_FAMILY + * + * @description: + * A tag for @FT_Parameter to make @FT_Open_Face ignore typographic + * family names in the 'name' table (introduced in OpenType version 1.4). + * Use this for backward compatibility with legacy systems that have a + * four-faces-per-family restriction. + * + * @since: + * 2.8 + * + */ +#define FT_PARAM_TAG_IGNORE_TYPOGRAPHIC_FAMILY \ + FT_MAKE_TAG( 'i', 'g', 'p', 'f' ) + + + /* this constant is deprecated */ +#define FT_PARAM_TAG_IGNORE_PREFERRED_FAMILY \ + FT_PARAM_TAG_IGNORE_TYPOGRAPHIC_FAMILY + + + /************************************************************************** + * + * @enum: + * FT_PARAM_TAG_IGNORE_TYPOGRAPHIC_SUBFAMILY + * + * @description: + * A tag for @FT_Parameter to make @FT_Open_Face ignore typographic + * subfamily names in the 'name' table (introduced in OpenType version + * 1.4). Use this for backward compatibility with legacy systems that + * have a four-faces-per-family restriction. + * + * @since: + * 2.8 + * + */ +#define FT_PARAM_TAG_IGNORE_TYPOGRAPHIC_SUBFAMILY \ + FT_MAKE_TAG( 'i', 'g', 'p', 's' ) + + + /* this constant is deprecated */ +#define FT_PARAM_TAG_IGNORE_PREFERRED_SUBFAMILY \ + FT_PARAM_TAG_IGNORE_TYPOGRAPHIC_SUBFAMILY + + + /************************************************************************** + * + * @enum: + * FT_PARAM_TAG_INCREMENTAL + * + * @description: + * An @FT_Parameter tag to be used with @FT_Open_Face to indicate + * incremental glyph loading. + * + */ +#define FT_PARAM_TAG_INCREMENTAL \ + FT_MAKE_TAG( 'i', 'n', 'c', 'r' ) + + + /************************************************************************** + * + * @enum: + * FT_PARAM_TAG_LCD_FILTER_WEIGHTS + * + * @description: + * An @FT_Parameter tag to be used with @FT_Face_Properties. The + * corresponding argument specifies the five LCD filter weights for a + * given face (if using @FT_LOAD_TARGET_LCD, for example), overriding the + * global default values or the values set up with + * @FT_Library_SetLcdFilterWeights. + * + * @since: + * 2.8 + * + */ +#define FT_PARAM_TAG_LCD_FILTER_WEIGHTS \ + FT_MAKE_TAG( 'l', 'c', 'd', 'f' ) + + + /************************************************************************** + * + * @enum: + * FT_PARAM_TAG_RANDOM_SEED + * + * @description: + * An @FT_Parameter tag to be used with @FT_Face_Properties. The + * corresponding 32bit signed integer argument overrides the font + * driver's random seed value with a face-specific one; see @random-seed. + * + * @since: + * 2.8 + * + */ +#define FT_PARAM_TAG_RANDOM_SEED \ + FT_MAKE_TAG( 's', 'e', 'e', 'd' ) + + + /************************************************************************** + * + * @enum: + * FT_PARAM_TAG_STEM_DARKENING + * + * @description: + * An @FT_Parameter tag to be used with @FT_Face_Properties. The + * corresponding Boolean argument specifies whether to apply stem + * darkening, overriding the global default values or the values set up + * with @FT_Property_Set (see @no-stem-darkening). + * + * This is a passive setting that only takes effect if the font driver or + * autohinter honors it, which the CFF, Type~1, and CID drivers always + * do, but the autohinter only in 'light' hinting mode (as of version + * 2.9). + * + * @since: + * 2.8 + * + */ +#define FT_PARAM_TAG_STEM_DARKENING \ + FT_MAKE_TAG( 'd', 'a', 'r', 'k' ) + + + /************************************************************************** + * + * @enum: + * FT_PARAM_TAG_UNPATENTED_HINTING + * + * @description: + * Deprecated, no effect. + * + * Previously: A constant used as the tag of an @FT_Parameter structure + * to indicate that unpatented methods only should be used by the + * TrueType bytecode interpreter for a typeface opened by @FT_Open_Face. + * + */ +#define FT_PARAM_TAG_UNPATENTED_HINTING \ + FT_MAKE_TAG( 'u', 'n', 'p', 'a' ) + + + /* */ + + +FT_END_HEADER + + +#endif /* FTPARAMS_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftpfr.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftpfr.h new file mode 100644 index 0000000..b4eca76 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftpfr.h @@ -0,0 +1,180 @@ +/**************************************************************************** + * + * ftpfr.h + * + * FreeType API for accessing PFR-specific data (specification only). + * + * Copyright (C) 2002-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTPFR_H_ +#define FTPFR_H_ + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * pfr_fonts + * + * @title: + * PFR Fonts + * + * @abstract: + * PFR/TrueDoc-specific API. + * + * @description: + * This section contains the declaration of PFR-specific functions. + * + */ + + + /************************************************************************** + * + * @function: + * FT_Get_PFR_Metrics + * + * @description: + * Return the outline and metrics resolutions of a given PFR face. + * + * @input: + * face :: + * Handle to the input face. It can be a non-PFR face. + * + * @output: + * aoutline_resolution :: + * Outline resolution. This is equivalent to `face->units_per_EM` for + * non-PFR fonts. Optional (parameter can be `NULL`). + * + * ametrics_resolution :: + * Metrics resolution. This is equivalent to `outline_resolution` for + * non-PFR fonts. Optional (parameter can be `NULL`). + * + * ametrics_x_scale :: + * A 16.16 fixed-point number used to scale distance expressed in + * metrics units to device subpixels. This is equivalent to + * `face->size->x_scale`, but for metrics only. Optional (parameter + * can be `NULL`). + * + * ametrics_y_scale :: + * Same as `ametrics_x_scale` but for the vertical direction. + * optional (parameter can be `NULL`). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If the input face is not a PFR, this function will return an error. + * However, in all cases, it will return valid values. + */ + FT_EXPORT( FT_Error ) + FT_Get_PFR_Metrics( FT_Face face, + FT_UInt *aoutline_resolution, + FT_UInt *ametrics_resolution, + FT_Fixed *ametrics_x_scale, + FT_Fixed *ametrics_y_scale ); + + + /************************************************************************** + * + * @function: + * FT_Get_PFR_Kerning + * + * @description: + * Return the kerning pair corresponding to two glyphs in a PFR face. + * The distance is expressed in metrics units, unlike the result of + * @FT_Get_Kerning. + * + * @input: + * face :: + * A handle to the input face. + * + * left :: + * Index of the left glyph. + * + * right :: + * Index of the right glyph. + * + * @output: + * avector :: + * A kerning vector. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function always return distances in original PFR metrics units. + * This is unlike @FT_Get_Kerning with the @FT_KERNING_UNSCALED mode, + * which always returns distances converted to outline units. + * + * You can use the value of the `x_scale` and `y_scale` parameters + * returned by @FT_Get_PFR_Metrics to scale these to device subpixels. + */ + FT_EXPORT( FT_Error ) + FT_Get_PFR_Kerning( FT_Face face, + FT_UInt left, + FT_UInt right, + FT_Vector *avector ); + + + /************************************************************************** + * + * @function: + * FT_Get_PFR_Advance + * + * @description: + * Return a given glyph advance, expressed in original metrics units, + * from a PFR font. + * + * @input: + * face :: + * A handle to the input face. + * + * gindex :: + * The glyph index. + * + * @output: + * aadvance :: + * The glyph advance in metrics units. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You can use the `x_scale` or `y_scale` results of @FT_Get_PFR_Metrics + * to convert the advance to device subpixels (i.e., 1/64th of pixels). + */ + FT_EXPORT( FT_Error ) + FT_Get_PFR_Advance( FT_Face face, + FT_UInt gindex, + FT_Pos *aadvance ); + + /* */ + + +FT_END_HEADER + +#endif /* FTPFR_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftrender.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftrender.h new file mode 100644 index 0000000..a01c774 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftrender.h @@ -0,0 +1,245 @@ +/**************************************************************************** + * + * ftrender.h + * + * FreeType renderer modules public interface (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTRENDER_H_ +#define FTRENDER_H_ + + +#include +#include FT_MODULE_H +#include FT_GLYPH_H + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * module_management + * + */ + + + /* create a new glyph object */ + typedef FT_Error + (*FT_Glyph_InitFunc)( FT_Glyph glyph, + FT_GlyphSlot slot ); + + /* destroys a given glyph object */ + typedef void + (*FT_Glyph_DoneFunc)( FT_Glyph glyph ); + + typedef void + (*FT_Glyph_TransformFunc)( FT_Glyph glyph, + const FT_Matrix* matrix, + const FT_Vector* delta ); + + typedef void + (*FT_Glyph_GetBBoxFunc)( FT_Glyph glyph, + FT_BBox* abbox ); + + typedef FT_Error + (*FT_Glyph_CopyFunc)( FT_Glyph source, + FT_Glyph target ); + + typedef FT_Error + (*FT_Glyph_PrepareFunc)( FT_Glyph glyph, + FT_GlyphSlot slot ); + +/* deprecated */ +#define FT_Glyph_Init_Func FT_Glyph_InitFunc +#define FT_Glyph_Done_Func FT_Glyph_DoneFunc +#define FT_Glyph_Transform_Func FT_Glyph_TransformFunc +#define FT_Glyph_BBox_Func FT_Glyph_GetBBoxFunc +#define FT_Glyph_Copy_Func FT_Glyph_CopyFunc +#define FT_Glyph_Prepare_Func FT_Glyph_PrepareFunc + + + struct FT_Glyph_Class_ + { + FT_Long glyph_size; + FT_Glyph_Format glyph_format; + + FT_Glyph_InitFunc glyph_init; + FT_Glyph_DoneFunc glyph_done; + FT_Glyph_CopyFunc glyph_copy; + FT_Glyph_TransformFunc glyph_transform; + FT_Glyph_GetBBoxFunc glyph_bbox; + FT_Glyph_PrepareFunc glyph_prepare; + }; + + + typedef FT_Error + (*FT_Renderer_RenderFunc)( FT_Renderer renderer, + FT_GlyphSlot slot, + FT_Render_Mode mode, + const FT_Vector* origin ); + + typedef FT_Error + (*FT_Renderer_TransformFunc)( FT_Renderer renderer, + FT_GlyphSlot slot, + const FT_Matrix* matrix, + const FT_Vector* delta ); + + + typedef void + (*FT_Renderer_GetCBoxFunc)( FT_Renderer renderer, + FT_GlyphSlot slot, + FT_BBox* cbox ); + + + typedef FT_Error + (*FT_Renderer_SetModeFunc)( FT_Renderer renderer, + FT_ULong mode_tag, + FT_Pointer mode_ptr ); + +/* deprecated identifiers */ +#define FTRenderer_render FT_Renderer_RenderFunc +#define FTRenderer_transform FT_Renderer_TransformFunc +#define FTRenderer_getCBox FT_Renderer_GetCBoxFunc +#define FTRenderer_setMode FT_Renderer_SetModeFunc + + + /************************************************************************** + * + * @struct: + * FT_Renderer_Class + * + * @description: + * The renderer module class descriptor. + * + * @fields: + * root :: + * The root @FT_Module_Class fields. + * + * glyph_format :: + * The glyph image format this renderer handles. + * + * render_glyph :: + * A method used to render the image that is in a given glyph slot into + * a bitmap. + * + * transform_glyph :: + * A method used to transform the image that is in a given glyph slot. + * + * get_glyph_cbox :: + * A method used to access the glyph's cbox. + * + * set_mode :: + * A method used to pass additional parameters. + * + * raster_class :: + * For @FT_GLYPH_FORMAT_OUTLINE renderers only. This is a pointer to + * its raster's class. + */ + typedef struct FT_Renderer_Class_ + { + FT_Module_Class root; + + FT_Glyph_Format glyph_format; + + FT_Renderer_RenderFunc render_glyph; + FT_Renderer_TransformFunc transform_glyph; + FT_Renderer_GetCBoxFunc get_glyph_cbox; + FT_Renderer_SetModeFunc set_mode; + + FT_Raster_Funcs* raster_class; + + } FT_Renderer_Class; + + + /************************************************************************** + * + * @function: + * FT_Get_Renderer + * + * @description: + * Retrieve the current renderer for a given glyph format. + * + * @input: + * library :: + * A handle to the library object. + * + * format :: + * The glyph format. + * + * @return: + * A renderer handle. 0~if none found. + * + * @note: + * An error will be returned if a module already exists by that name, or + * if the module requires a version of FreeType that is too great. + * + * To add a new renderer, simply use @FT_Add_Module. To retrieve a + * renderer by its name, use @FT_Get_Module. + */ + FT_EXPORT( FT_Renderer ) + FT_Get_Renderer( FT_Library library, + FT_Glyph_Format format ); + + + /************************************************************************** + * + * @function: + * FT_Set_Renderer + * + * @description: + * Set the current renderer to use, and set additional mode. + * + * @inout: + * library :: + * A handle to the library object. + * + * @input: + * renderer :: + * A handle to the renderer object. + * + * num_params :: + * The number of additional parameters. + * + * parameters :: + * Additional parameters. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * In case of success, the renderer will be used to convert glyph images + * in the renderer's known format into bitmaps. + * + * This doesn't change the current renderer for other formats. + * + * Currently, no FreeType renderer module uses `parameters`; you should + * thus always pass `NULL` as the value. + */ + FT_EXPORT( FT_Error ) + FT_Set_Renderer( FT_Library library, + FT_Renderer renderer, + FT_UInt num_params, + FT_Parameter* parameters ); + + /* */ + + +FT_END_HEADER + +#endif /* FTRENDER_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftsizes.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftsizes.h new file mode 100644 index 0000000..6c63cef --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftsizes.h @@ -0,0 +1,160 @@ +/**************************************************************************** + * + * ftsizes.h + * + * FreeType size objects management (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * Typical application would normally not need to use these functions. + * However, they have been placed in a public API for the rare cases where + * they are needed. + * + */ + + +#ifndef FTSIZES_H_ +#define FTSIZES_H_ + + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * sizes_management + * + * @title: + * Size Management + * + * @abstract: + * Managing multiple sizes per face. + * + * @description: + * When creating a new face object (e.g., with @FT_New_Face), an @FT_Size + * object is automatically created and used to store all pixel-size + * dependent information, available in the `face->size` field. + * + * It is however possible to create more sizes for a given face, mostly + * in order to manage several character pixel sizes of the same font + * family and style. See @FT_New_Size and @FT_Done_Size. + * + * Note that @FT_Set_Pixel_Sizes and @FT_Set_Char_Size only modify the + * contents of the current 'active' size; you thus need to use + * @FT_Activate_Size to change it. + * + * 99% of applications won't need the functions provided here, especially + * if they use the caching sub-system, so be cautious when using these. + * + */ + + + /************************************************************************** + * + * @function: + * FT_New_Size + * + * @description: + * Create a new size object from a given face object. + * + * @input: + * face :: + * A handle to a parent face object. + * + * @output: + * asize :: + * A handle to a new size object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You need to call @FT_Activate_Size in order to select the new size for + * upcoming calls to @FT_Set_Pixel_Sizes, @FT_Set_Char_Size, + * @FT_Load_Glyph, @FT_Load_Char, etc. + */ + FT_EXPORT( FT_Error ) + FT_New_Size( FT_Face face, + FT_Size* size ); + + + /************************************************************************** + * + * @function: + * FT_Done_Size + * + * @description: + * Discard a given size object. Note that @FT_Done_Face automatically + * discards all size objects allocated with @FT_New_Size. + * + * @input: + * size :: + * A handle to a target size object. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Done_Size( FT_Size size ); + + + /************************************************************************** + * + * @function: + * FT_Activate_Size + * + * @description: + * Even though it is possible to create several size objects for a given + * face (see @FT_New_Size for details), functions like @FT_Load_Glyph or + * @FT_Load_Char only use the one that has been activated last to + * determine the 'current character pixel size'. + * + * This function can be used to 'activate' a previously created size + * object. + * + * @input: + * size :: + * A handle to a target size object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If `face` is the size's parent face object, this function changes the + * value of `face->size` to the input size handle. + */ + FT_EXPORT( FT_Error ) + FT_Activate_Size( FT_Size size ); + + /* */ + + +FT_END_HEADER + +#endif /* FTSIZES_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftsnames.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftsnames.h new file mode 100644 index 0000000..4d43602 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftsnames.h @@ -0,0 +1,273 @@ +/**************************************************************************** + * + * ftsnames.h + * + * Simple interface to access SFNT 'name' tables (which are used + * to hold font names, copyright info, notices, etc.) (specification). + * + * This is _not_ used to retrieve glyph names! + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTSNAMES_H_ +#define FTSNAMES_H_ + + +#include +#include FT_FREETYPE_H +#include FT_PARAMETER_TAGS_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * sfnt_names + * + * @title: + * SFNT Names + * + * @abstract: + * Access the names embedded in TrueType and OpenType files. + * + * @description: + * The TrueType and OpenType specifications allow the inclusion of a + * special names table ('name') in font files. This table contains + * textual (and internationalized) information regarding the font, like + * family name, copyright, version, etc. + * + * The definitions below are used to access them if available. + * + * Note that this has nothing to do with glyph names! + * + */ + + + /************************************************************************** + * + * @struct: + * FT_SfntName + * + * @description: + * A structure used to model an SFNT 'name' table entry. + * + * @fields: + * platform_id :: + * The platform ID for `string`. See @TT_PLATFORM_XXX for possible + * values. + * + * encoding_id :: + * The encoding ID for `string`. See @TT_APPLE_ID_XXX, @TT_MAC_ID_XXX, + * @TT_ISO_ID_XXX, @TT_MS_ID_XXX, and @TT_ADOBE_ID_XXX for possible + * values. + * + * language_id :: + * The language ID for `string`. See @TT_MAC_LANGID_XXX and + * @TT_MS_LANGID_XXX for possible values. + * + * Registered OpenType values for `language_id` are always smaller than + * 0x8000; values equal or larger than 0x8000 usually indicate a + * language tag string (introduced in OpenType version 1.6). Use + * function @FT_Get_Sfnt_LangTag with `language_id` as its argument to + * retrieve the associated language tag. + * + * name_id :: + * An identifier for `string`. See @TT_NAME_ID_XXX for possible + * values. + * + * string :: + * The 'name' string. Note that its format differs depending on the + * (platform,encoding) pair, being either a string of bytes (without a + * terminating `NULL` byte) or containing UTF-16BE entities. + * + * string_len :: + * The length of `string` in bytes. + * + * @note: + * Please refer to the TrueType or OpenType specification for more + * details. + */ + typedef struct FT_SfntName_ + { + FT_UShort platform_id; + FT_UShort encoding_id; + FT_UShort language_id; + FT_UShort name_id; + + FT_Byte* string; /* this string is *not* null-terminated! */ + FT_UInt string_len; /* in bytes */ + + } FT_SfntName; + + + /************************************************************************** + * + * @function: + * FT_Get_Sfnt_Name_Count + * + * @description: + * Retrieve the number of name strings in the SFNT 'name' table. + * + * @input: + * face :: + * A handle to the source face. + * + * @return: + * The number of strings in the 'name' table. + * + * @note: + * This function always returns an error if the config macro + * `TT_CONFIG_OPTION_SFNT_NAMES` is not defined in `ftoption.h`. + */ + FT_EXPORT( FT_UInt ) + FT_Get_Sfnt_Name_Count( FT_Face face ); + + + /************************************************************************** + * + * @function: + * FT_Get_Sfnt_Name + * + * @description: + * Retrieve a string of the SFNT 'name' table for a given index. + * + * @input: + * face :: + * A handle to the source face. + * + * idx :: + * The index of the 'name' string. + * + * @output: + * aname :: + * The indexed @FT_SfntName structure. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The `string` array returned in the `aname` structure is not + * null-terminated. Note that you don't have to deallocate `string` by + * yourself; FreeType takes care of it if you call @FT_Done_Face. + * + * Use @FT_Get_Sfnt_Name_Count to get the total number of available + * 'name' table entries, then do a loop until you get the right platform, + * encoding, and name ID. + * + * 'name' table format~1 entries can use language tags also, see + * @FT_Get_Sfnt_LangTag. + * + * This function always returns an error if the config macro + * `TT_CONFIG_OPTION_SFNT_NAMES` is not defined in `ftoption.h`. + */ + FT_EXPORT( FT_Error ) + FT_Get_Sfnt_Name( FT_Face face, + FT_UInt idx, + FT_SfntName *aname ); + + + /************************************************************************** + * + * @struct: + * FT_SfntLangTag + * + * @description: + * A structure to model a language tag entry from an SFNT 'name' table. + * + * @fields: + * string :: + * The language tag string, encoded in UTF-16BE (without trailing + * `NULL` bytes). + * + * string_len :: + * The length of `string` in **bytes**. + * + * @note: + * Please refer to the TrueType or OpenType specification for more + * details. + * + * @since: + * 2.8 + */ + typedef struct FT_SfntLangTag_ + { + FT_Byte* string; /* this string is *not* null-terminated! */ + FT_UInt string_len; /* in bytes */ + + } FT_SfntLangTag; + + + /************************************************************************** + * + * @function: + * FT_Get_Sfnt_LangTag + * + * @description: + * Retrieve the language tag associated with a language ID of an SFNT + * 'name' table entry. + * + * @input: + * face :: + * A handle to the source face. + * + * langID :: + * The language ID, as returned by @FT_Get_Sfnt_Name. This is always a + * value larger than 0x8000. + * + * @output: + * alangTag :: + * The language tag associated with the 'name' table entry's language + * ID. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The `string` array returned in the `alangTag` structure is not + * null-terminated. Note that you don't have to deallocate `string` by + * yourself; FreeType takes care of it if you call @FT_Done_Face. + * + * Only 'name' table format~1 supports language tags. For format~0 + * tables, this function always returns FT_Err_Invalid_Table. For + * invalid format~1 language ID values, FT_Err_Invalid_Argument is + * returned. + * + * This function always returns an error if the config macro + * `TT_CONFIG_OPTION_SFNT_NAMES` is not defined in `ftoption.h`. + * + * @since: + * 2.8 + */ + FT_EXPORT( FT_Error ) + FT_Get_Sfnt_LangTag( FT_Face face, + FT_UInt langID, + FT_SfntLangTag *alangTag ); + + + /* */ + + +FT_END_HEADER + +#endif /* FTSNAMES_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftstroke.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftstroke.h new file mode 100644 index 0000000..01a9c18 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftstroke.h @@ -0,0 +1,772 @@ +/**************************************************************************** + * + * ftstroke.h + * + * FreeType path stroker (specification). + * + * Copyright (C) 2002-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTSTROKE_H_ +#define FTSTROKE_H_ + +#include +#include FT_OUTLINE_H +#include FT_GLYPH_H + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * glyph_stroker + * + * @title: + * Glyph Stroker + * + * @abstract: + * Generating bordered and stroked glyphs. + * + * @description: + * This component generates stroked outlines of a given vectorial glyph. + * It also allows you to retrieve the 'outside' and/or the 'inside' + * borders of the stroke. + * + * This can be useful to generate 'bordered' glyph, i.e., glyphs + * displayed with a coloured (and anti-aliased) border around their + * shape. + * + * @order: + * FT_Stroker + * + * FT_Stroker_LineJoin + * FT_Stroker_LineCap + * FT_StrokerBorder + * + * FT_Outline_GetInsideBorder + * FT_Outline_GetOutsideBorder + * + * FT_Glyph_Stroke + * FT_Glyph_StrokeBorder + * + * FT_Stroker_New + * FT_Stroker_Set + * FT_Stroker_Rewind + * FT_Stroker_ParseOutline + * FT_Stroker_Done + * + * FT_Stroker_BeginSubPath + * FT_Stroker_EndSubPath + * + * FT_Stroker_LineTo + * FT_Stroker_ConicTo + * FT_Stroker_CubicTo + * + * FT_Stroker_GetBorderCounts + * FT_Stroker_ExportBorder + * FT_Stroker_GetCounts + * FT_Stroker_Export + * + */ + + + /************************************************************************** + * + * @type: + * FT_Stroker + * + * @description: + * Opaque handle to a path stroker object. + */ + typedef struct FT_StrokerRec_* FT_Stroker; + + + /************************************************************************** + * + * @enum: + * FT_Stroker_LineJoin + * + * @description: + * These values determine how two joining lines are rendered in a + * stroker. + * + * @values: + * FT_STROKER_LINEJOIN_ROUND :: + * Used to render rounded line joins. Circular arcs are used to join + * two lines smoothly. + * + * FT_STROKER_LINEJOIN_BEVEL :: + * Used to render beveled line joins. The outer corner of the joined + * lines is filled by enclosing the triangular region of the corner + * with a straight line between the outer corners of each stroke. + * + * FT_STROKER_LINEJOIN_MITER_FIXED :: + * Used to render mitered line joins, with fixed bevels if the miter + * limit is exceeded. The outer edges of the strokes for the two + * segments are extended until they meet at an angle. If the segments + * meet at too sharp an angle (such that the miter would extend from + * the intersection of the segments a distance greater than the product + * of the miter limit value and the border radius), then a bevel join + * (see above) is used instead. This prevents long spikes being + * created. `FT_STROKER_LINEJOIN_MITER_FIXED` generates a miter line + * join as used in PostScript and PDF. + * + * FT_STROKER_LINEJOIN_MITER_VARIABLE :: + * FT_STROKER_LINEJOIN_MITER :: + * Used to render mitered line joins, with variable bevels if the miter + * limit is exceeded. The intersection of the strokes is clipped at a + * line perpendicular to the bisector of the angle between the strokes, + * at the distance from the intersection of the segments equal to the + * product of the miter limit value and the border radius. This + * prevents long spikes being created. + * `FT_STROKER_LINEJOIN_MITER_VARIABLE` generates a mitered line join + * as used in XPS. `FT_STROKER_LINEJOIN_MITER` is an alias for + * `FT_STROKER_LINEJOIN_MITER_VARIABLE`, retained for backward + * compatibility. + */ + typedef enum FT_Stroker_LineJoin_ + { + FT_STROKER_LINEJOIN_ROUND = 0, + FT_STROKER_LINEJOIN_BEVEL = 1, + FT_STROKER_LINEJOIN_MITER_VARIABLE = 2, + FT_STROKER_LINEJOIN_MITER = FT_STROKER_LINEJOIN_MITER_VARIABLE, + FT_STROKER_LINEJOIN_MITER_FIXED = 3 + + } FT_Stroker_LineJoin; + + + /************************************************************************** + * + * @enum: + * FT_Stroker_LineCap + * + * @description: + * These values determine how the end of opened sub-paths are rendered in + * a stroke. + * + * @values: + * FT_STROKER_LINECAP_BUTT :: + * The end of lines is rendered as a full stop on the last point + * itself. + * + * FT_STROKER_LINECAP_ROUND :: + * The end of lines is rendered as a half-circle around the last point. + * + * FT_STROKER_LINECAP_SQUARE :: + * The end of lines is rendered as a square around the last point. + */ + typedef enum FT_Stroker_LineCap_ + { + FT_STROKER_LINECAP_BUTT = 0, + FT_STROKER_LINECAP_ROUND, + FT_STROKER_LINECAP_SQUARE + + } FT_Stroker_LineCap; + + + /************************************************************************** + * + * @enum: + * FT_StrokerBorder + * + * @description: + * These values are used to select a given stroke border in + * @FT_Stroker_GetBorderCounts and @FT_Stroker_ExportBorder. + * + * @values: + * FT_STROKER_BORDER_LEFT :: + * Select the left border, relative to the drawing direction. + * + * FT_STROKER_BORDER_RIGHT :: + * Select the right border, relative to the drawing direction. + * + * @note: + * Applications are generally interested in the 'inside' and 'outside' + * borders. However, there is no direct mapping between these and the + * 'left' and 'right' ones, since this really depends on the glyph's + * drawing orientation, which varies between font formats. + * + * You can however use @FT_Outline_GetInsideBorder and + * @FT_Outline_GetOutsideBorder to get these. + */ + typedef enum FT_StrokerBorder_ + { + FT_STROKER_BORDER_LEFT = 0, + FT_STROKER_BORDER_RIGHT + + } FT_StrokerBorder; + + + /************************************************************************** + * + * @function: + * FT_Outline_GetInsideBorder + * + * @description: + * Retrieve the @FT_StrokerBorder value corresponding to the 'inside' + * borders of a given outline. + * + * @input: + * outline :: + * The source outline handle. + * + * @return: + * The border index. @FT_STROKER_BORDER_RIGHT for empty or invalid + * outlines. + */ + FT_EXPORT( FT_StrokerBorder ) + FT_Outline_GetInsideBorder( FT_Outline* outline ); + + + /************************************************************************** + * + * @function: + * FT_Outline_GetOutsideBorder + * + * @description: + * Retrieve the @FT_StrokerBorder value corresponding to the 'outside' + * borders of a given outline. + * + * @input: + * outline :: + * The source outline handle. + * + * @return: + * The border index. @FT_STROKER_BORDER_LEFT for empty or invalid + * outlines. + */ + FT_EXPORT( FT_StrokerBorder ) + FT_Outline_GetOutsideBorder( FT_Outline* outline ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_New + * + * @description: + * Create a new stroker object. + * + * @input: + * library :: + * FreeType library handle. + * + * @output: + * astroker :: + * A new stroker object handle. `NULL` in case of error. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_New( FT_Library library, + FT_Stroker *astroker ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_Set + * + * @description: + * Reset a stroker object's attributes. + * + * @input: + * stroker :: + * The target stroker handle. + * + * radius :: + * The border radius. + * + * line_cap :: + * The line cap style. + * + * line_join :: + * The line join style. + * + * miter_limit :: + * The miter limit for the `FT_STROKER_LINEJOIN_MITER_FIXED` and + * `FT_STROKER_LINEJOIN_MITER_VARIABLE` line join styles, expressed as + * 16.16 fixed-point value. + * + * @note: + * The radius is expressed in the same units as the outline coordinates. + * + * This function calls @FT_Stroker_Rewind automatically. + */ + FT_EXPORT( void ) + FT_Stroker_Set( FT_Stroker stroker, + FT_Fixed radius, + FT_Stroker_LineCap line_cap, + FT_Stroker_LineJoin line_join, + FT_Fixed miter_limit ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_Rewind + * + * @description: + * Reset a stroker object without changing its attributes. You should + * call this function before beginning a new series of calls to + * @FT_Stroker_BeginSubPath or @FT_Stroker_EndSubPath. + * + * @input: + * stroker :: + * The target stroker handle. + */ + FT_EXPORT( void ) + FT_Stroker_Rewind( FT_Stroker stroker ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_ParseOutline + * + * @description: + * A convenience function used to parse a whole outline with the stroker. + * The resulting outline(s) can be retrieved later by functions like + * @FT_Stroker_GetCounts and @FT_Stroker_Export. + * + * @input: + * stroker :: + * The target stroker handle. + * + * outline :: + * The source outline. + * + * opened :: + * A boolean. If~1, the outline is treated as an open path instead of + * a closed one. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If `opened` is~0 (the default), the outline is treated as a closed + * path, and the stroker generates two distinct 'border' outlines. + * + * If `opened` is~1, the outline is processed as an open path, and the + * stroker generates a single 'stroke' outline. + * + * This function calls @FT_Stroker_Rewind automatically. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_ParseOutline( FT_Stroker stroker, + FT_Outline* outline, + FT_Bool opened ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_BeginSubPath + * + * @description: + * Start a new sub-path in the stroker. + * + * @input: + * stroker :: + * The target stroker handle. + * + * to :: + * A pointer to the start vector. + * + * open :: + * A boolean. If~1, the sub-path is treated as an open one. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function is useful when you need to stroke a path that is not + * stored as an @FT_Outline object. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_BeginSubPath( FT_Stroker stroker, + FT_Vector* to, + FT_Bool open ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_EndSubPath + * + * @description: + * Close the current sub-path in the stroker. + * + * @input: + * stroker :: + * The target stroker handle. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You should call this function after @FT_Stroker_BeginSubPath. If the + * subpath was not 'opened', this function 'draws' a single line segment + * to the start position when needed. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_EndSubPath( FT_Stroker stroker ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_LineTo + * + * @description: + * 'Draw' a single line segment in the stroker's current sub-path, from + * the last position. + * + * @input: + * stroker :: + * The target stroker handle. + * + * to :: + * A pointer to the destination point. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You should call this function between @FT_Stroker_BeginSubPath and + * @FT_Stroker_EndSubPath. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_LineTo( FT_Stroker stroker, + FT_Vector* to ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_ConicTo + * + * @description: + * 'Draw' a single quadratic Bezier in the stroker's current sub-path, + * from the last position. + * + * @input: + * stroker :: + * The target stroker handle. + * + * control :: + * A pointer to a Bezier control point. + * + * to :: + * A pointer to the destination point. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You should call this function between @FT_Stroker_BeginSubPath and + * @FT_Stroker_EndSubPath. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_ConicTo( FT_Stroker stroker, + FT_Vector* control, + FT_Vector* to ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_CubicTo + * + * @description: + * 'Draw' a single cubic Bezier in the stroker's current sub-path, from + * the last position. + * + * @input: + * stroker :: + * The target stroker handle. + * + * control1 :: + * A pointer to the first Bezier control point. + * + * control2 :: + * A pointer to second Bezier control point. + * + * to :: + * A pointer to the destination point. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You should call this function between @FT_Stroker_BeginSubPath and + * @FT_Stroker_EndSubPath. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_CubicTo( FT_Stroker stroker, + FT_Vector* control1, + FT_Vector* control2, + FT_Vector* to ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_GetBorderCounts + * + * @description: + * Call this function once you have finished parsing your paths with the + * stroker. It returns the number of points and contours necessary to + * export one of the 'border' or 'stroke' outlines generated by the + * stroker. + * + * @input: + * stroker :: + * The target stroker handle. + * + * border :: + * The border index. + * + * @output: + * anum_points :: + * The number of points. + * + * anum_contours :: + * The number of contours. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * When an outline, or a sub-path, is 'closed', the stroker generates two + * independent 'border' outlines, named 'left' and 'right'. + * + * When the outline, or a sub-path, is 'opened', the stroker merges the + * 'border' outlines with caps. The 'left' border receives all points, + * while the 'right' border becomes empty. + * + * Use the function @FT_Stroker_GetCounts instead if you want to retrieve + * the counts associated to both borders. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_GetBorderCounts( FT_Stroker stroker, + FT_StrokerBorder border, + FT_UInt *anum_points, + FT_UInt *anum_contours ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_ExportBorder + * + * @description: + * Call this function after @FT_Stroker_GetBorderCounts to export the + * corresponding border to your own @FT_Outline structure. + * + * Note that this function appends the border points and contours to your + * outline, but does not try to resize its arrays. + * + * @input: + * stroker :: + * The target stroker handle. + * + * border :: + * The border index. + * + * outline :: + * The target outline handle. + * + * @note: + * Always call this function after @FT_Stroker_GetBorderCounts to get + * sure that there is enough room in your @FT_Outline object to receive + * all new data. + * + * When an outline, or a sub-path, is 'closed', the stroker generates two + * independent 'border' outlines, named 'left' and 'right'. + * + * When the outline, or a sub-path, is 'opened', the stroker merges the + * 'border' outlines with caps. The 'left' border receives all points, + * while the 'right' border becomes empty. + * + * Use the function @FT_Stroker_Export instead if you want to retrieve + * all borders at once. + */ + FT_EXPORT( void ) + FT_Stroker_ExportBorder( FT_Stroker stroker, + FT_StrokerBorder border, + FT_Outline* outline ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_GetCounts + * + * @description: + * Call this function once you have finished parsing your paths with the + * stroker. It returns the number of points and contours necessary to + * export all points/borders from the stroked outline/path. + * + * @input: + * stroker :: + * The target stroker handle. + * + * @output: + * anum_points :: + * The number of points. + * + * anum_contours :: + * The number of contours. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_GetCounts( FT_Stroker stroker, + FT_UInt *anum_points, + FT_UInt *anum_contours ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_Export + * + * @description: + * Call this function after @FT_Stroker_GetBorderCounts to export all + * borders to your own @FT_Outline structure. + * + * Note that this function appends the border points and contours to your + * outline, but does not try to resize its arrays. + * + * @input: + * stroker :: + * The target stroker handle. + * + * outline :: + * The target outline handle. + */ + FT_EXPORT( void ) + FT_Stroker_Export( FT_Stroker stroker, + FT_Outline* outline ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_Done + * + * @description: + * Destroy a stroker object. + * + * @input: + * stroker :: + * A stroker handle. Can be `NULL`. + */ + FT_EXPORT( void ) + FT_Stroker_Done( FT_Stroker stroker ); + + + /************************************************************************** + * + * @function: + * FT_Glyph_Stroke + * + * @description: + * Stroke a given outline glyph object with a given stroker. + * + * @inout: + * pglyph :: + * Source glyph handle on input, new glyph handle on output. + * + * @input: + * stroker :: + * A stroker handle. + * + * destroy :: + * A Boolean. If~1, the source glyph object is destroyed on success. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The source glyph is untouched in case of error. + * + * Adding stroke may yield a significantly wider and taller glyph + * depending on how large of a radius was used to stroke the glyph. You + * may need to manually adjust horizontal and vertical advance amounts to + * account for this added size. + */ + FT_EXPORT( FT_Error ) + FT_Glyph_Stroke( FT_Glyph *pglyph, + FT_Stroker stroker, + FT_Bool destroy ); + + + /************************************************************************** + * + * @function: + * FT_Glyph_StrokeBorder + * + * @description: + * Stroke a given outline glyph object with a given stroker, but only + * return either its inside or outside border. + * + * @inout: + * pglyph :: + * Source glyph handle on input, new glyph handle on output. + * + * @input: + * stroker :: + * A stroker handle. + * + * inside :: + * A Boolean. If~1, return the inside border, otherwise the outside + * border. + * + * destroy :: + * A Boolean. If~1, the source glyph object is destroyed on success. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The source glyph is untouched in case of error. + * + * Adding stroke may yield a significantly wider and taller glyph + * depending on how large of a radius was used to stroke the glyph. You + * may need to manually adjust horizontal and vertical advance amounts to + * account for this added size. + */ + FT_EXPORT( FT_Error ) + FT_Glyph_StrokeBorder( FT_Glyph *pglyph, + FT_Stroker stroker, + FT_Bool inside, + FT_Bool destroy ); + + /* */ + +FT_END_HEADER + +#endif /* FTSTROKE_H_ */ + + +/* END */ + + +/* Local Variables: */ +/* coding: utf-8 */ +/* End: */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftsynth.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftsynth.h new file mode 100644 index 0000000..8754f97 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftsynth.h @@ -0,0 +1,84 @@ +/**************************************************************************** + * + * ftsynth.h + * + * FreeType synthesizing code for emboldening and slanting + * (specification). + * + * Copyright (C) 2000-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /********* *********/ + /********* WARNING, THIS IS ALPHA CODE! THIS API *********/ + /********* IS DUE TO CHANGE UNTIL STRICTLY NOTIFIED BY THE *********/ + /********* FREETYPE DEVELOPMENT TEAM *********/ + /********* *********/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /* Main reason for not lifting the functions in this module to a */ + /* 'standard' API is that the used parameters for emboldening and */ + /* slanting are not configurable. Consider the functions as a */ + /* code resource that should be copied into the application and */ + /* adapted to the particular needs. */ + + +#ifndef FTSYNTH_H_ +#define FTSYNTH_H_ + + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /* Embolden a glyph by a 'reasonable' value (which is highly a matter of */ + /* taste). This function is actually a convenience function, providing */ + /* a wrapper for @FT_Outline_Embolden and @FT_Bitmap_Embolden. */ + /* */ + /* For emboldened outlines the height, width, and advance metrics are */ + /* increased by the strength of the emboldening -- this even affects */ + /* mono-width fonts! */ + /* */ + /* You can also call @FT_Outline_Get_CBox to get precise values. */ + FT_EXPORT( void ) + FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); + + /* Slant an outline glyph to the right by about 12 degrees. */ + FT_EXPORT( void ) + FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); + + /* */ + + +FT_END_HEADER + +#endif /* FTSYNTH_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftsystem.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftsystem.h new file mode 100644 index 0000000..889a6ba --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftsystem.h @@ -0,0 +1,353 @@ +/**************************************************************************** + * + * ftsystem.h + * + * FreeType low-level system interface definition (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTSYSTEM_H_ +#define FTSYSTEM_H_ + + +#include + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * system_interface + * + * @title: + * System Interface + * + * @abstract: + * How FreeType manages memory and i/o. + * + * @description: + * This section contains various definitions related to memory management + * and i/o access. You need to understand this information if you want to + * use a custom memory manager or you own i/o streams. + * + */ + + + /************************************************************************** + * + * M E M O R Y M A N A G E M E N T + * + */ + + + /************************************************************************** + * + * @type: + * FT_Memory + * + * @description: + * A handle to a given memory manager object, defined with an + * @FT_MemoryRec structure. + * + */ + typedef struct FT_MemoryRec_* FT_Memory; + + + /************************************************************************** + * + * @functype: + * FT_Alloc_Func + * + * @description: + * A function used to allocate `size` bytes from `memory`. + * + * @input: + * memory :: + * A handle to the source memory manager. + * + * size :: + * The size in bytes to allocate. + * + * @return: + * Address of new memory block. 0~in case of failure. + * + */ + typedef void* + (*FT_Alloc_Func)( FT_Memory memory, + long size ); + + + /************************************************************************** + * + * @functype: + * FT_Free_Func + * + * @description: + * A function used to release a given block of memory. + * + * @input: + * memory :: + * A handle to the source memory manager. + * + * block :: + * The address of the target memory block. + * + */ + typedef void + (*FT_Free_Func)( FT_Memory memory, + void* block ); + + + /************************************************************************** + * + * @functype: + * FT_Realloc_Func + * + * @description: + * A function used to re-allocate a given block of memory. + * + * @input: + * memory :: + * A handle to the source memory manager. + * + * cur_size :: + * The block's current size in bytes. + * + * new_size :: + * The block's requested new size. + * + * block :: + * The block's current address. + * + * @return: + * New block address. 0~in case of memory shortage. + * + * @note: + * In case of error, the old block must still be available. + * + */ + typedef void* + (*FT_Realloc_Func)( FT_Memory memory, + long cur_size, + long new_size, + void* block ); + + + /************************************************************************** + * + * @struct: + * FT_MemoryRec + * + * @description: + * A structure used to describe a given memory manager to FreeType~2. + * + * @fields: + * user :: + * A generic typeless pointer for user data. + * + * alloc :: + * A pointer type to an allocation function. + * + * free :: + * A pointer type to an memory freeing function. + * + * realloc :: + * A pointer type to a reallocation function. + * + */ + struct FT_MemoryRec_ + { + void* user; + FT_Alloc_Func alloc; + FT_Free_Func free; + FT_Realloc_Func realloc; + }; + + + /************************************************************************** + * + * I / O M A N A G E M E N T + * + */ + + + /************************************************************************** + * + * @type: + * FT_Stream + * + * @description: + * A handle to an input stream. + * + * @also: + * See @FT_StreamRec for the publicly accessible fields of a given stream + * object. + * + */ + typedef struct FT_StreamRec_* FT_Stream; + + + /************************************************************************** + * + * @struct: + * FT_StreamDesc + * + * @description: + * A union type used to store either a long or a pointer. This is used + * to store a file descriptor or a `FILE*` in an input stream. + * + */ + typedef union FT_StreamDesc_ + { + long value; + void* pointer; + + } FT_StreamDesc; + + + /************************************************************************** + * + * @functype: + * FT_Stream_IoFunc + * + * @description: + * A function used to seek and read data from a given input stream. + * + * @input: + * stream :: + * A handle to the source stream. + * + * offset :: + * The offset of read in stream (always from start). + * + * buffer :: + * The address of the read buffer. + * + * count :: + * The number of bytes to read from the stream. + * + * @return: + * The number of bytes effectively read by the stream. + * + * @note: + * This function might be called to perform a seek or skip operation with + * a `count` of~0. A non-zero return value then indicates an error. + * + */ + typedef unsigned long + (*FT_Stream_IoFunc)( FT_Stream stream, + unsigned long offset, + unsigned char* buffer, + unsigned long count ); + + + /************************************************************************** + * + * @functype: + * FT_Stream_CloseFunc + * + * @description: + * A function used to close a given input stream. + * + * @input: + * stream :: + * A handle to the target stream. + * + */ + typedef void + (*FT_Stream_CloseFunc)( FT_Stream stream ); + + + /************************************************************************** + * + * @struct: + * FT_StreamRec + * + * @description: + * A structure used to describe an input stream. + * + * @input: + * base :: + * For memory-based streams, this is the address of the first stream + * byte in memory. This field should always be set to `NULL` for + * disk-based streams. + * + * size :: + * The stream size in bytes. + * + * In case of compressed streams where the size is unknown before + * actually doing the decompression, the value is set to 0x7FFFFFFF. + * (Note that this size value can occur for normal streams also; it is + * thus just a hint.) + * + * pos :: + * The current position within the stream. + * + * descriptor :: + * This field is a union that can hold an integer or a pointer. It is + * used by stream implementations to store file descriptors or `FILE*` + * pointers. + * + * pathname :: + * This field is completely ignored by FreeType. However, it is often + * useful during debugging to use it to store the stream's filename + * (where available). + * + * read :: + * The stream's input function. + * + * close :: + * The stream's close function. + * + * memory :: + * The memory manager to use to preload frames. This is set internally + * by FreeType and shouldn't be touched by stream implementations. + * + * cursor :: + * This field is set and used internally by FreeType when parsing + * frames. In particular, the `FT_GET_XXX` macros use this instead of + * the `pos` field. + * + * limit :: + * This field is set and used internally by FreeType when parsing + * frames. + * + */ + typedef struct FT_StreamRec_ + { + unsigned char* base; + unsigned long size; + unsigned long pos; + + FT_StreamDesc descriptor; + FT_StreamDesc pathname; + FT_Stream_IoFunc read; + FT_Stream_CloseFunc close; + + FT_Memory memory; + unsigned char* cursor; + unsigned char* limit; + + } FT_StreamRec; + + /* */ + + +FT_END_HEADER + +#endif /* FTSYSTEM_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/fttrigon.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/fttrigon.h new file mode 100644 index 0000000..37e1412 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/fttrigon.h @@ -0,0 +1,350 @@ +/**************************************************************************** + * + * fttrigon.h + * + * FreeType trigonometric functions (specification). + * + * Copyright (C) 2001-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTTRIGON_H_ +#define FTTRIGON_H_ + +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * computations + * + */ + + + /************************************************************************** + * + * @type: + * FT_Angle + * + * @description: + * This type is used to model angle values in FreeType. Note that the + * angle is a 16.16 fixed-point value expressed in degrees. + * + */ + typedef FT_Fixed FT_Angle; + + + /************************************************************************** + * + * @macro: + * FT_ANGLE_PI + * + * @description: + * The angle pi expressed in @FT_Angle units. + * + */ +#define FT_ANGLE_PI ( 180L << 16 ) + + + /************************************************************************** + * + * @macro: + * FT_ANGLE_2PI + * + * @description: + * The angle 2*pi expressed in @FT_Angle units. + * + */ +#define FT_ANGLE_2PI ( FT_ANGLE_PI * 2 ) + + + /************************************************************************** + * + * @macro: + * FT_ANGLE_PI2 + * + * @description: + * The angle pi/2 expressed in @FT_Angle units. + * + */ +#define FT_ANGLE_PI2 ( FT_ANGLE_PI / 2 ) + + + /************************************************************************** + * + * @macro: + * FT_ANGLE_PI4 + * + * @description: + * The angle pi/4 expressed in @FT_Angle units. + * + */ +#define FT_ANGLE_PI4 ( FT_ANGLE_PI / 4 ) + + + /************************************************************************** + * + * @function: + * FT_Sin + * + * @description: + * Return the sinus of a given angle in fixed-point format. + * + * @input: + * angle :: + * The input angle. + * + * @return: + * The sinus value. + * + * @note: + * If you need both the sinus and cosinus for a given angle, use the + * function @FT_Vector_Unit. + * + */ + FT_EXPORT( FT_Fixed ) + FT_Sin( FT_Angle angle ); + + + /************************************************************************** + * + * @function: + * FT_Cos + * + * @description: + * Return the cosinus of a given angle in fixed-point format. + * + * @input: + * angle :: + * The input angle. + * + * @return: + * The cosinus value. + * + * @note: + * If you need both the sinus and cosinus for a given angle, use the + * function @FT_Vector_Unit. + * + */ + FT_EXPORT( FT_Fixed ) + FT_Cos( FT_Angle angle ); + + + /************************************************************************** + * + * @function: + * FT_Tan + * + * @description: + * Return the tangent of a given angle in fixed-point format. + * + * @input: + * angle :: + * The input angle. + * + * @return: + * The tangent value. + * + */ + FT_EXPORT( FT_Fixed ) + FT_Tan( FT_Angle angle ); + + + /************************************************************************** + * + * @function: + * FT_Atan2 + * + * @description: + * Return the arc-tangent corresponding to a given vector (x,y) in the 2d + * plane. + * + * @input: + * x :: + * The horizontal vector coordinate. + * + * y :: + * The vertical vector coordinate. + * + * @return: + * The arc-tangent value (i.e. angle). + * + */ + FT_EXPORT( FT_Angle ) + FT_Atan2( FT_Fixed x, + FT_Fixed y ); + + + /************************************************************************** + * + * @function: + * FT_Angle_Diff + * + * @description: + * Return the difference between two angles. The result is always + * constrained to the ]-PI..PI] interval. + * + * @input: + * angle1 :: + * First angle. + * + * angle2 :: + * Second angle. + * + * @return: + * Constrained value of `angle2-angle1`. + * + */ + FT_EXPORT( FT_Angle ) + FT_Angle_Diff( FT_Angle angle1, + FT_Angle angle2 ); + + + /************************************************************************** + * + * @function: + * FT_Vector_Unit + * + * @description: + * Return the unit vector corresponding to a given angle. After the + * call, the value of `vec.x` will be `cos(angle)`, and the value of + * `vec.y` will be `sin(angle)`. + * + * This function is useful to retrieve both the sinus and cosinus of a + * given angle quickly. + * + * @output: + * vec :: + * The address of target vector. + * + * @input: + * angle :: + * The input angle. + * + */ + FT_EXPORT( void ) + FT_Vector_Unit( FT_Vector* vec, + FT_Angle angle ); + + + /************************************************************************** + * + * @function: + * FT_Vector_Rotate + * + * @description: + * Rotate a vector by a given angle. + * + * @inout: + * vec :: + * The address of target vector. + * + * @input: + * angle :: + * The input angle. + * + */ + FT_EXPORT( void ) + FT_Vector_Rotate( FT_Vector* vec, + FT_Angle angle ); + + + /************************************************************************** + * + * @function: + * FT_Vector_Length + * + * @description: + * Return the length of a given vector. + * + * @input: + * vec :: + * The address of target vector. + * + * @return: + * The vector length, expressed in the same units that the original + * vector coordinates. + * + */ + FT_EXPORT( FT_Fixed ) + FT_Vector_Length( FT_Vector* vec ); + + + /************************************************************************** + * + * @function: + * FT_Vector_Polarize + * + * @description: + * Compute both the length and angle of a given vector. + * + * @input: + * vec :: + * The address of source vector. + * + * @output: + * length :: + * The vector length. + * + * angle :: + * The vector angle. + * + */ + FT_EXPORT( void ) + FT_Vector_Polarize( FT_Vector* vec, + FT_Fixed *length, + FT_Angle *angle ); + + + /************************************************************************** + * + * @function: + * FT_Vector_From_Polar + * + * @description: + * Compute vector coordinates from a length and angle. + * + * @output: + * vec :: + * The address of source vector. + * + * @input: + * length :: + * The vector length. + * + * angle :: + * The vector angle. + * + */ + FT_EXPORT( void ) + FT_Vector_From_Polar( FT_Vector* vec, + FT_Fixed length, + FT_Angle angle ); + + /* */ + + +FT_END_HEADER + +#endif /* FTTRIGON_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/fttypes.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/fttypes.h new file mode 100644 index 0000000..1057150 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/fttypes.h @@ -0,0 +1,615 @@ +/**************************************************************************** + * + * fttypes.h + * + * FreeType simple types definitions (specification only). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTTYPES_H_ +#define FTTYPES_H_ + + +#include +#include FT_CONFIG_CONFIG_H +#include FT_SYSTEM_H +#include FT_IMAGE_H + +#include + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * basic_types + * + * @title: + * Basic Data Types + * + * @abstract: + * The basic data types defined by the library. + * + * @description: + * This section contains the basic data types defined by FreeType~2, + * ranging from simple scalar types to bitmap descriptors. More + * font-specific structures are defined in a different section. + * + * @order: + * FT_Byte + * FT_Bytes + * FT_Char + * FT_Int + * FT_UInt + * FT_Int16 + * FT_UInt16 + * FT_Int32 + * FT_UInt32 + * FT_Int64 + * FT_UInt64 + * FT_Short + * FT_UShort + * FT_Long + * FT_ULong + * FT_Bool + * FT_Offset + * FT_PtrDist + * FT_String + * FT_Tag + * FT_Error + * FT_Fixed + * FT_Pointer + * FT_Pos + * FT_Vector + * FT_BBox + * FT_Matrix + * FT_FWord + * FT_UFWord + * FT_F2Dot14 + * FT_UnitVector + * FT_F26Dot6 + * FT_Data + * + * FT_MAKE_TAG + * + * FT_Generic + * FT_Generic_Finalizer + * + * FT_Bitmap + * FT_Pixel_Mode + * FT_Palette_Mode + * FT_Glyph_Format + * FT_IMAGE_TAG + * + */ + + + /************************************************************************** + * + * @type: + * FT_Bool + * + * @description: + * A typedef of unsigned char, used for simple booleans. As usual, + * values 1 and~0 represent true and false, respectively. + */ + typedef unsigned char FT_Bool; + + + /************************************************************************** + * + * @type: + * FT_FWord + * + * @description: + * A signed 16-bit integer used to store a distance in original font + * units. + */ + typedef signed short FT_FWord; /* distance in FUnits */ + + + /************************************************************************** + * + * @type: + * FT_UFWord + * + * @description: + * An unsigned 16-bit integer used to store a distance in original font + * units. + */ + typedef unsigned short FT_UFWord; /* unsigned distance */ + + + /************************************************************************** + * + * @type: + * FT_Char + * + * @description: + * A simple typedef for the _signed_ char type. + */ + typedef signed char FT_Char; + + + /************************************************************************** + * + * @type: + * FT_Byte + * + * @description: + * A simple typedef for the _unsigned_ char type. + */ + typedef unsigned char FT_Byte; + + + /************************************************************************** + * + * @type: + * FT_Bytes + * + * @description: + * A typedef for constant memory areas. + */ + typedef const FT_Byte* FT_Bytes; + + + /************************************************************************** + * + * @type: + * FT_Tag + * + * @description: + * A typedef for 32-bit tags (as used in the SFNT format). + */ + typedef FT_UInt32 FT_Tag; + + + /************************************************************************** + * + * @type: + * FT_String + * + * @description: + * A simple typedef for the char type, usually used for strings. + */ + typedef char FT_String; + + + /************************************************************************** + * + * @type: + * FT_Short + * + * @description: + * A typedef for signed short. + */ + typedef signed short FT_Short; + + + /************************************************************************** + * + * @type: + * FT_UShort + * + * @description: + * A typedef for unsigned short. + */ + typedef unsigned short FT_UShort; + + + /************************************************************************** + * + * @type: + * FT_Int + * + * @description: + * A typedef for the int type. + */ + typedef signed int FT_Int; + + + /************************************************************************** + * + * @type: + * FT_UInt + * + * @description: + * A typedef for the unsigned int type. + */ + typedef unsigned int FT_UInt; + + + /************************************************************************** + * + * @type: + * FT_Long + * + * @description: + * A typedef for signed long. + */ + typedef signed long FT_Long; + + + /************************************************************************** + * + * @type: + * FT_ULong + * + * @description: + * A typedef for unsigned long. + */ + typedef unsigned long FT_ULong; + + + /************************************************************************** + * + * @type: + * FT_F2Dot14 + * + * @description: + * A signed 2.14 fixed-point type used for unit vectors. + */ + typedef signed short FT_F2Dot14; + + + /************************************************************************** + * + * @type: + * FT_F26Dot6 + * + * @description: + * A signed 26.6 fixed-point type used for vectorial pixel coordinates. + */ + typedef signed long FT_F26Dot6; + + + /************************************************************************** + * + * @type: + * FT_Fixed + * + * @description: + * This type is used to store 16.16 fixed-point values, like scaling + * values or matrix coefficients. + */ + typedef signed long FT_Fixed; + + + /************************************************************************** + * + * @type: + * FT_Error + * + * @description: + * The FreeType error code type. A value of~0 is always interpreted as a + * successful operation. + */ + typedef int FT_Error; + + + /************************************************************************** + * + * @type: + * FT_Pointer + * + * @description: + * A simple typedef for a typeless pointer. + */ + typedef void* FT_Pointer; + + + /************************************************************************** + * + * @type: + * FT_Offset + * + * @description: + * This is equivalent to the ANSI~C `size_t` type, i.e., the largest + * _unsigned_ integer type used to express a file size or position, or a + * memory block size. + */ + typedef size_t FT_Offset; + + + /************************************************************************** + * + * @type: + * FT_PtrDist + * + * @description: + * This is equivalent to the ANSI~C `ptrdiff_t` type, i.e., the largest + * _signed_ integer type used to express the distance between two + * pointers. + */ + typedef ft_ptrdiff_t FT_PtrDist; + + + /************************************************************************** + * + * @struct: + * FT_UnitVector + * + * @description: + * A simple structure used to store a 2D vector unit vector. Uses + * FT_F2Dot14 types. + * + * @fields: + * x :: + * Horizontal coordinate. + * + * y :: + * Vertical coordinate. + */ + typedef struct FT_UnitVector_ + { + FT_F2Dot14 x; + FT_F2Dot14 y; + + } FT_UnitVector; + + + /************************************************************************** + * + * @struct: + * FT_Matrix + * + * @description: + * A simple structure used to store a 2x2 matrix. Coefficients are in + * 16.16 fixed-point format. The computation performed is: + * + * ``` + * x' = x*xx + y*xy + * y' = x*yx + y*yy + * ``` + * + * @fields: + * xx :: + * Matrix coefficient. + * + * xy :: + * Matrix coefficient. + * + * yx :: + * Matrix coefficient. + * + * yy :: + * Matrix coefficient. + */ + typedef struct FT_Matrix_ + { + FT_Fixed xx, xy; + FT_Fixed yx, yy; + + } FT_Matrix; + + + /************************************************************************** + * + * @struct: + * FT_Data + * + * @description: + * Read-only binary data represented as a pointer and a length. + * + * @fields: + * pointer :: + * The data. + * + * length :: + * The length of the data in bytes. + */ + typedef struct FT_Data_ + { + const FT_Byte* pointer; + FT_Int length; + + } FT_Data; + + + /************************************************************************** + * + * @functype: + * FT_Generic_Finalizer + * + * @description: + * Describe a function used to destroy the 'client' data of any FreeType + * object. See the description of the @FT_Generic type for details of + * usage. + * + * @input: + * The address of the FreeType object that is under finalization. Its + * client data is accessed through its `generic` field. + */ + typedef void (*FT_Generic_Finalizer)( void* object ); + + + /************************************************************************** + * + * @struct: + * FT_Generic + * + * @description: + * Client applications often need to associate their own data to a + * variety of FreeType core objects. For example, a text layout API + * might want to associate a glyph cache to a given size object. + * + * Some FreeType object contains a `generic` field, of type `FT_Generic`, + * which usage is left to client applications and font servers. + * + * It can be used to store a pointer to client-specific data, as well as + * the address of a 'finalizer' function, which will be called by + * FreeType when the object is destroyed (for example, the previous + * client example would put the address of the glyph cache destructor in + * the `finalizer` field). + * + * @fields: + * data :: + * A typeless pointer to any client-specified data. This field is + * completely ignored by the FreeType library. + * + * finalizer :: + * A pointer to a 'generic finalizer' function, which will be called + * when the object is destroyed. If this field is set to `NULL`, no + * code will be called. + */ + typedef struct FT_Generic_ + { + void* data; + FT_Generic_Finalizer finalizer; + + } FT_Generic; + + + /************************************************************************** + * + * @macro: + * FT_MAKE_TAG + * + * @description: + * This macro converts four-letter tags that are used to label TrueType + * tables into an unsigned long, to be used within FreeType. + * + * @note: + * The produced values **must** be 32-bit integers. Don't redefine this + * macro. + */ +#define FT_MAKE_TAG( _x1, _x2, _x3, _x4 ) \ + (FT_Tag) \ + ( ( (FT_ULong)_x1 << 24 ) | \ + ( (FT_ULong)_x2 << 16 ) | \ + ( (FT_ULong)_x3 << 8 ) | \ + (FT_ULong)_x4 ) + + + /*************************************************************************/ + /*************************************************************************/ + /* */ + /* L I S T M A N A G E M E N T */ + /* */ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @section: + * list_processing + * + */ + + + /************************************************************************** + * + * @type: + * FT_ListNode + * + * @description: + * Many elements and objects in FreeType are listed through an @FT_List + * record (see @FT_ListRec). As its name suggests, an FT_ListNode is a + * handle to a single list element. + */ + typedef struct FT_ListNodeRec_* FT_ListNode; + + + /************************************************************************** + * + * @type: + * FT_List + * + * @description: + * A handle to a list record (see @FT_ListRec). + */ + typedef struct FT_ListRec_* FT_List; + + + /************************************************************************** + * + * @struct: + * FT_ListNodeRec + * + * @description: + * A structure used to hold a single list element. + * + * @fields: + * prev :: + * The previous element in the list. `NULL` if first. + * + * next :: + * The next element in the list. `NULL` if last. + * + * data :: + * A typeless pointer to the listed object. + */ + typedef struct FT_ListNodeRec_ + { + FT_ListNode prev; + FT_ListNode next; + void* data; + + } FT_ListNodeRec; + + + /************************************************************************** + * + * @struct: + * FT_ListRec + * + * @description: + * A structure used to hold a simple doubly-linked list. These are used + * in many parts of FreeType. + * + * @fields: + * head :: + * The head (first element) of doubly-linked list. + * + * tail :: + * The tail (last element) of doubly-linked list. + */ + typedef struct FT_ListRec_ + { + FT_ListNode head; + FT_ListNode tail; + + } FT_ListRec; + + /* */ + + +#define FT_IS_EMPTY( list ) ( (list).head == 0 ) +#define FT_BOOL( x ) ( (FT_Bool)( (x) != 0 ) ) + + /* concatenate C tokens */ +#define FT_ERR_XCAT( x, y ) x ## y +#define FT_ERR_CAT( x, y ) FT_ERR_XCAT( x, y ) + + /* see `ftmoderr.h` for descriptions of the following macros */ + +#define FT_ERR( e ) FT_ERR_CAT( FT_ERR_PREFIX, e ) + +#define FT_ERROR_BASE( x ) ( (x) & 0xFF ) +#define FT_ERROR_MODULE( x ) ( (x) & 0xFF00U ) + +#define FT_ERR_EQ( x, e ) \ + ( FT_ERROR_BASE( x ) == FT_ERROR_BASE( FT_ERR( e ) ) ) +#define FT_ERR_NEQ( x, e ) \ + ( FT_ERROR_BASE( x ) != FT_ERROR_BASE( FT_ERR( e ) ) ) + + +FT_END_HEADER + +#endif /* FTTYPES_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftwinfnt.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftwinfnt.h new file mode 100644 index 0000000..3437913 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ftwinfnt.h @@ -0,0 +1,277 @@ +/**************************************************************************** + * + * ftwinfnt.h + * + * FreeType API for accessing Windows fnt-specific data. + * + * Copyright (C) 2003-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTWINFNT_H_ +#define FTWINFNT_H_ + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * winfnt_fonts + * + * @title: + * Window FNT Files + * + * @abstract: + * Windows FNT-specific API. + * + * @description: + * This section contains the declaration of Windows FNT-specific + * functions. + * + */ + + + /************************************************************************** + * + * @enum: + * FT_WinFNT_ID_XXX + * + * @description: + * A list of valid values for the `charset` byte in @FT_WinFNT_HeaderRec. + * Exact mapping tables for the various 'cpXXXX' encodings (except for + * 'cp1361') can be found at 'ftp://ftp.unicode.org/Public' in the + * `MAPPINGS/VENDORS/MICSFT/WINDOWS` subdirectory. 'cp1361' is roughly a + * superset of `MAPPINGS/OBSOLETE/EASTASIA/KSC/JOHAB.TXT`. + * + * @values: + * FT_WinFNT_ID_DEFAULT :: + * This is used for font enumeration and font creation as a 'don't + * care' value. Valid font files don't contain this value. When + * querying for information about the character set of the font that is + * currently selected into a specified device context, this return + * value (of the related Windows API) simply denotes failure. + * + * FT_WinFNT_ID_SYMBOL :: + * There is no known mapping table available. + * + * FT_WinFNT_ID_MAC :: + * Mac Roman encoding. + * + * FT_WinFNT_ID_OEM :: + * From Michael Poettgen : + * + * The 'Windows Font Mapping' article says that `FT_WinFNT_ID_OEM` is + * used for the charset of vector fonts, like `modern.fon`, + * `roman.fon`, and `script.fon` on Windows. + * + * The 'CreateFont' documentation says: The `FT_WinFNT_ID_OEM` value + * specifies a character set that is operating-system dependent. + * + * The 'IFIMETRICS' documentation from the 'Windows Driver Development + * Kit' says: This font supports an OEM-specific character set. The + * OEM character set is system dependent. + * + * In general OEM, as opposed to ANSI (i.e., 'cp1252'), denotes the + * second default codepage that most international versions of Windows + * have. It is one of the OEM codepages from + * + * https://docs.microsoft.com/en-us/windows/desktop/intl/code-page-identifiers + * , + * + * and is used for the 'DOS boxes', to support legacy applications. A + * German Windows version for example usually uses ANSI codepage 1252 + * and OEM codepage 850. + * + * FT_WinFNT_ID_CP874 :: + * A superset of Thai TIS 620 and ISO 8859-11. + * + * FT_WinFNT_ID_CP932 :: + * A superset of Japanese Shift-JIS (with minor deviations). + * + * FT_WinFNT_ID_CP936 :: + * A superset of simplified Chinese GB 2312-1980 (with different + * ordering and minor deviations). + * + * FT_WinFNT_ID_CP949 :: + * A superset of Korean Hangul KS~C 5601-1987 (with different ordering + * and minor deviations). + * + * FT_WinFNT_ID_CP950 :: + * A superset of traditional Chinese Big~5 ETen (with different + * ordering and minor deviations). + * + * FT_WinFNT_ID_CP1250 :: + * A superset of East European ISO 8859-2 (with slightly different + * ordering). + * + * FT_WinFNT_ID_CP1251 :: + * A superset of Russian ISO 8859-5 (with different ordering). + * + * FT_WinFNT_ID_CP1252 :: + * ANSI encoding. A superset of ISO 8859-1. + * + * FT_WinFNT_ID_CP1253 :: + * A superset of Greek ISO 8859-7 (with minor modifications). + * + * FT_WinFNT_ID_CP1254 :: + * A superset of Turkish ISO 8859-9. + * + * FT_WinFNT_ID_CP1255 :: + * A superset of Hebrew ISO 8859-8 (with some modifications). + * + * FT_WinFNT_ID_CP1256 :: + * A superset of Arabic ISO 8859-6 (with different ordering). + * + * FT_WinFNT_ID_CP1257 :: + * A superset of Baltic ISO 8859-13 (with some deviations). + * + * FT_WinFNT_ID_CP1258 :: + * For Vietnamese. This encoding doesn't cover all necessary + * characters. + * + * FT_WinFNT_ID_CP1361 :: + * Korean (Johab). + */ + +#define FT_WinFNT_ID_CP1252 0 +#define FT_WinFNT_ID_DEFAULT 1 +#define FT_WinFNT_ID_SYMBOL 2 +#define FT_WinFNT_ID_MAC 77 +#define FT_WinFNT_ID_CP932 128 +#define FT_WinFNT_ID_CP949 129 +#define FT_WinFNT_ID_CP1361 130 +#define FT_WinFNT_ID_CP936 134 +#define FT_WinFNT_ID_CP950 136 +#define FT_WinFNT_ID_CP1253 161 +#define FT_WinFNT_ID_CP1254 162 +#define FT_WinFNT_ID_CP1258 163 +#define FT_WinFNT_ID_CP1255 177 +#define FT_WinFNT_ID_CP1256 178 +#define FT_WinFNT_ID_CP1257 186 +#define FT_WinFNT_ID_CP1251 204 +#define FT_WinFNT_ID_CP874 222 +#define FT_WinFNT_ID_CP1250 238 +#define FT_WinFNT_ID_OEM 255 + + + /************************************************************************** + * + * @struct: + * FT_WinFNT_HeaderRec + * + * @description: + * Windows FNT Header info. + */ + typedef struct FT_WinFNT_HeaderRec_ + { + FT_UShort version; + FT_ULong file_size; + FT_Byte copyright[60]; + FT_UShort file_type; + FT_UShort nominal_point_size; + FT_UShort vertical_resolution; + FT_UShort horizontal_resolution; + FT_UShort ascent; + FT_UShort internal_leading; + FT_UShort external_leading; + FT_Byte italic; + FT_Byte underline; + FT_Byte strike_out; + FT_UShort weight; + FT_Byte charset; + FT_UShort pixel_width; + FT_UShort pixel_height; + FT_Byte pitch_and_family; + FT_UShort avg_width; + FT_UShort max_width; + FT_Byte first_char; + FT_Byte last_char; + FT_Byte default_char; + FT_Byte break_char; + FT_UShort bytes_per_row; + FT_ULong device_offset; + FT_ULong face_name_offset; + FT_ULong bits_pointer; + FT_ULong bits_offset; + FT_Byte reserved; + FT_ULong flags; + FT_UShort A_space; + FT_UShort B_space; + FT_UShort C_space; + FT_UShort color_table_offset; + FT_ULong reserved1[4]; + + } FT_WinFNT_HeaderRec; + + + /************************************************************************** + * + * @struct: + * FT_WinFNT_Header + * + * @description: + * A handle to an @FT_WinFNT_HeaderRec structure. + */ + typedef struct FT_WinFNT_HeaderRec_* FT_WinFNT_Header; + + + /************************************************************************** + * + * @function: + * FT_Get_WinFNT_Header + * + * @description: + * Retrieve a Windows FNT font info header. + * + * @input: + * face :: + * A handle to the input face. + * + * @output: + * aheader :: + * The WinFNT header. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with Windows FNT faces, returning an error + * otherwise. + */ + FT_EXPORT( FT_Error ) + FT_Get_WinFNT_Header( FT_Face face, + FT_WinFNT_HeaderRec *aheader ); + + /* */ + + +FT_END_HEADER + +#endif /* FTWINFNT_H_ */ + + +/* END */ + + +/* Local Variables: */ +/* coding: utf-8 */ +/* End: */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/autohint.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/autohint.h new file mode 100644 index 0000000..f64c28b --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/autohint.h @@ -0,0 +1,232 @@ +/**************************************************************************** + * + * autohint.h + * + * High-level 'autohint' module-specific interface (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * The auto-hinter is used to load and automatically hint glyphs if a + * format-specific hinter isn't available. + * + */ + + +#ifndef AUTOHINT_H_ +#define AUTOHINT_H_ + + + /************************************************************************** + * + * A small technical note regarding automatic hinting in order to clarify + * this module interface. + * + * An automatic hinter might compute two kinds of data for a given face: + * + * - global hints: Usually some metrics that describe global properties + * of the face. It is computed by scanning more or less + * aggressively the glyphs in the face, and thus can be + * very slow to compute (even if the size of global hints + * is really small). + * + * - glyph hints: These describe some important features of the glyph + * outline, as well as how to align them. They are + * generally much faster to compute than global hints. + * + * The current FreeType auto-hinter does a pretty good job while performing + * fast computations for both global and glyph hints. However, we might be + * interested in introducing more complex and powerful algorithms in the + * future, like the one described in the John D. Hobby paper, which + * unfortunately requires a lot more horsepower. + * + * Because a sufficiently sophisticated font management system would + * typically implement an LRU cache of opened face objects to reduce memory + * usage, it is a good idea to be able to avoid recomputing global hints + * every time the same face is re-opened. + * + * We thus provide the ability to cache global hints outside of the face + * object, in order to speed up font re-opening time. Of course, this + * feature is purely optional, so most client programs won't even notice + * it. + * + * I initially thought that it would be a good idea to cache the glyph + * hints too. However, my general idea now is that if you really need to + * cache these too, you are simply in need of a new font format, where all + * this information could be stored within the font file and decoded on the + * fly. + * + */ + + +#include +#include FT_FREETYPE_H + + +FT_BEGIN_HEADER + + + typedef struct FT_AutoHinterRec_ *FT_AutoHinter; + + + /************************************************************************** + * + * @functype: + * FT_AutoHinter_GlobalGetFunc + * + * @description: + * Retrieve the global hints computed for a given face object. The + * resulting data is dissociated from the face and will survive a call to + * FT_Done_Face(). It must be discarded through the API + * FT_AutoHinter_GlobalDoneFunc(). + * + * @input: + * hinter :: + * A handle to the source auto-hinter. + * + * face :: + * A handle to the source face object. + * + * @output: + * global_hints :: + * A typeless pointer to the global hints. + * + * global_len :: + * The size in bytes of the global hints. + */ + typedef void + (*FT_AutoHinter_GlobalGetFunc)( FT_AutoHinter hinter, + FT_Face face, + void** global_hints, + long* global_len ); + + + /************************************************************************** + * + * @functype: + * FT_AutoHinter_GlobalDoneFunc + * + * @description: + * Discard the global hints retrieved through + * FT_AutoHinter_GlobalGetFunc(). This is the only way these hints are + * freed from memory. + * + * @input: + * hinter :: + * A handle to the auto-hinter module. + * + * global :: + * A pointer to retrieved global hints to discard. + */ + typedef void + (*FT_AutoHinter_GlobalDoneFunc)( FT_AutoHinter hinter, + void* global ); + + + /************************************************************************** + * + * @functype: + * FT_AutoHinter_GlobalResetFunc + * + * @description: + * This function is used to recompute the global metrics in a given font. + * This is useful when global font data changes (e.g. Multiple Masters + * fonts where blend coordinates change). + * + * @input: + * hinter :: + * A handle to the source auto-hinter. + * + * face :: + * A handle to the face. + */ + typedef void + (*FT_AutoHinter_GlobalResetFunc)( FT_AutoHinter hinter, + FT_Face face ); + + + /************************************************************************** + * + * @functype: + * FT_AutoHinter_GlyphLoadFunc + * + * @description: + * This function is used to load, scale, and automatically hint a glyph + * from a given face. + * + * @input: + * face :: + * A handle to the face. + * + * glyph_index :: + * The glyph index. + * + * load_flags :: + * The load flags. + * + * @note: + * This function is capable of loading composite glyphs by hinting each + * sub-glyph independently (which improves quality). + * + * It will call the font driver with @FT_Load_Glyph, with + * @FT_LOAD_NO_SCALE set. + */ + typedef FT_Error + (*FT_AutoHinter_GlyphLoadFunc)( FT_AutoHinter hinter, + FT_GlyphSlot slot, + FT_Size size, + FT_UInt glyph_index, + FT_Int32 load_flags ); + + + /************************************************************************** + * + * @struct: + * FT_AutoHinter_InterfaceRec + * + * @description: + * The auto-hinter module's interface. + */ + typedef struct FT_AutoHinter_InterfaceRec_ + { + FT_AutoHinter_GlobalResetFunc reset_face; + FT_AutoHinter_GlobalGetFunc get_global_hints; + FT_AutoHinter_GlobalDoneFunc done_global_hints; + FT_AutoHinter_GlyphLoadFunc load_glyph; + + } FT_AutoHinter_InterfaceRec, *FT_AutoHinter_Interface; + + +#define FT_DEFINE_AUTOHINTER_INTERFACE( \ + class_, \ + reset_face_, \ + get_global_hints_, \ + done_global_hints_, \ + load_glyph_ ) \ + FT_CALLBACK_TABLE_DEF \ + const FT_AutoHinter_InterfaceRec class_ = \ + { \ + reset_face_, \ + get_global_hints_, \ + done_global_hints_, \ + load_glyph_ \ + }; + + +FT_END_HEADER + +#endif /* AUTOHINT_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/cffotypes.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/cffotypes.h new file mode 100644 index 0000000..b26893e --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/cffotypes.h @@ -0,0 +1,108 @@ +/**************************************************************************** + * + * cffotypes.h + * + * Basic OpenType/CFF object type definitions (specification). + * + * Copyright (C) 2017-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef CFFOTYPES_H_ +#define CFFOTYPES_H_ + +#include +#include FT_INTERNAL_OBJECTS_H +#include FT_INTERNAL_CFF_TYPES_H +#include FT_INTERNAL_TRUETYPE_TYPES_H +#include FT_SERVICE_POSTSCRIPT_CMAPS_H +#include FT_INTERNAL_POSTSCRIPT_HINTS_H + + +FT_BEGIN_HEADER + + + typedef TT_Face CFF_Face; + + + /************************************************************************** + * + * @type: + * CFF_Size + * + * @description: + * A handle to an OpenType size object. + */ + typedef struct CFF_SizeRec_ + { + FT_SizeRec root; + FT_ULong strike_index; /* 0xFFFFFFFF to indicate invalid */ + + } CFF_SizeRec, *CFF_Size; + + + /************************************************************************** + * + * @type: + * CFF_GlyphSlot + * + * @description: + * A handle to an OpenType glyph slot object. + */ + typedef struct CFF_GlyphSlotRec_ + { + FT_GlyphSlotRec root; + + FT_Bool hint; + FT_Bool scaled; + + FT_Fixed x_scale; + FT_Fixed y_scale; + + } CFF_GlyphSlotRec, *CFF_GlyphSlot; + + + /************************************************************************** + * + * @type: + * CFF_Internal + * + * @description: + * The interface to the 'internal' field of `FT_Size`. + */ + typedef struct CFF_InternalRec_ + { + PSH_Globals topfont; + PSH_Globals subfonts[CFF_MAX_CID_FONTS]; + + } CFF_InternalRec, *CFF_Internal; + + + /************************************************************************** + * + * Subglyph transformation record. + */ + typedef struct CFF_Transform_ + { + FT_Fixed xx, xy; /* transformation matrix coefficients */ + FT_Fixed yx, yy; + FT_F26Dot6 ox, oy; /* offsets */ + + } CFF_Transform; + + +FT_END_HEADER + + +#endif /* CFFOTYPES_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/cfftypes.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/cfftypes.h new file mode 100644 index 0000000..2fc905e --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/cfftypes.h @@ -0,0 +1,417 @@ +/**************************************************************************** + * + * cfftypes.h + * + * Basic OpenType/CFF type definitions and interface (specification + * only). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef CFFTYPES_H_ +#define CFFTYPES_H_ + + +#include +#include FT_FREETYPE_H +#include FT_TYPE1_TABLES_H +#include FT_INTERNAL_SERVICE_H +#include FT_SERVICE_POSTSCRIPT_CMAPS_H +#include FT_INTERNAL_POSTSCRIPT_HINTS_H +#include FT_INTERNAL_TYPE1_TYPES_H + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @struct: + * CFF_IndexRec + * + * @description: + * A structure used to model a CFF Index table. + * + * @fields: + * stream :: + * The source input stream. + * + * start :: + * The position of the first index byte in the input stream. + * + * count :: + * The number of elements in the index. + * + * off_size :: + * The size in bytes of object offsets in index. + * + * data_offset :: + * The position of first data byte in the index's bytes. + * + * data_size :: + * The size of the data table in this index. + * + * offsets :: + * A table of element offsets in the index. Must be loaded explicitly. + * + * bytes :: + * If the index is loaded in memory, its bytes. + */ + typedef struct CFF_IndexRec_ + { + FT_Stream stream; + FT_ULong start; + FT_UInt hdr_size; + FT_UInt count; + FT_Byte off_size; + FT_ULong data_offset; + FT_ULong data_size; + + FT_ULong* offsets; + FT_Byte* bytes; + + } CFF_IndexRec, *CFF_Index; + + + typedef struct CFF_EncodingRec_ + { + FT_UInt format; + FT_ULong offset; + + FT_UInt count; + FT_UShort sids [256]; /* avoid dynamic allocations */ + FT_UShort codes[256]; + + } CFF_EncodingRec, *CFF_Encoding; + + + typedef struct CFF_CharsetRec_ + { + + FT_UInt format; + FT_ULong offset; + + FT_UShort* sids; + FT_UShort* cids; /* the inverse mapping of `sids'; only needed */ + /* for CID-keyed fonts */ + FT_UInt max_cid; + FT_UInt num_glyphs; + + } CFF_CharsetRec, *CFF_Charset; + + + /* cf. similar fields in file `ttgxvar.h' from the `truetype' module */ + + typedef struct CFF_VarData_ + { +#if 0 + FT_UInt itemCount; /* not used; always zero */ + FT_UInt shortDeltaCount; /* not used; always zero */ +#endif + + FT_UInt regionIdxCount; /* number of region indexes */ + FT_UInt* regionIndices; /* array of `regionIdxCount' indices; */ + /* these index `varRegionList' */ + } CFF_VarData; + + + /* contribution of one axis to a region */ + typedef struct CFF_AxisCoords_ + { + FT_Fixed startCoord; + FT_Fixed peakCoord; /* zero peak means no effect (factor = 1) */ + FT_Fixed endCoord; + + } CFF_AxisCoords; + + + typedef struct CFF_VarRegion_ + { + CFF_AxisCoords* axisList; /* array of axisCount records */ + + } CFF_VarRegion; + + + typedef struct CFF_VStoreRec_ + { + FT_UInt dataCount; + CFF_VarData* varData; /* array of dataCount records */ + /* vsindex indexes this array */ + FT_UShort axisCount; + FT_UInt regionCount; /* total number of regions defined */ + CFF_VarRegion* varRegionList; + + } CFF_VStoreRec, *CFF_VStore; + + + /* forward reference */ + typedef struct CFF_FontRec_* CFF_Font; + + + /* This object manages one cached blend vector. */ + /* */ + /* There is a BlendRec for Private DICT parsing in each subfont */ + /* and a BlendRec for charstrings in CF2_Font instance data. */ + /* A cached BV may be used across DICTs or Charstrings if inputs */ + /* have not changed. */ + /* */ + /* `usedBV' is reset at the start of each parse or charstring. */ + /* vsindex cannot be changed after a BV is used. */ + /* */ + /* Note: NDV is long (32/64 bit), while BV is 16.16 (FT_Int32). */ + typedef struct CFF_BlendRec_ + { + FT_Bool builtBV; /* blendV has been built */ + FT_Bool usedBV; /* blendV has been used */ + CFF_Font font; /* top level font struct */ + FT_UInt lastVsindex; /* last vsindex used */ + FT_UInt lenNDV; /* normDV length (aka numAxes) */ + FT_Fixed* lastNDV; /* last NDV used */ + FT_UInt lenBV; /* BlendV length (aka numMasters) */ + FT_Int32* BV; /* current blendV (per DICT/glyph) */ + + } CFF_BlendRec, *CFF_Blend; + + + typedef struct CFF_FontRecDictRec_ + { + FT_UInt version; + FT_UInt notice; + FT_UInt copyright; + FT_UInt full_name; + FT_UInt family_name; + FT_UInt weight; + FT_Bool is_fixed_pitch; + FT_Fixed italic_angle; + FT_Fixed underline_position; + FT_Fixed underline_thickness; + FT_Int paint_type; + FT_Int charstring_type; + FT_Matrix font_matrix; + FT_Bool has_font_matrix; + FT_ULong units_per_em; /* temporarily used as scaling value also */ + FT_Vector font_offset; + FT_ULong unique_id; + FT_BBox font_bbox; + FT_Pos stroke_width; + FT_ULong charset_offset; + FT_ULong encoding_offset; + FT_ULong charstrings_offset; + FT_ULong private_offset; + FT_ULong private_size; + FT_Long synthetic_base; + FT_UInt embedded_postscript; + + /* these should only be used for the top-level font dictionary */ + FT_UInt cid_registry; + FT_UInt cid_ordering; + FT_Long cid_supplement; + + FT_Long cid_font_version; + FT_Long cid_font_revision; + FT_Long cid_font_type; + FT_ULong cid_count; + FT_ULong cid_uid_base; + FT_ULong cid_fd_array_offset; + FT_ULong cid_fd_select_offset; + FT_UInt cid_font_name; + + /* the next fields come from the data of the deprecated */ + /* `MultipleMaster' operator; they are needed to parse the (also */ + /* deprecated) `blend' operator in Type 2 charstrings */ + FT_UShort num_designs; + FT_UShort num_axes; + + /* fields for CFF2 */ + FT_ULong vstore_offset; + FT_UInt maxstack; + + } CFF_FontRecDictRec, *CFF_FontRecDict; + + + /* forward reference */ + typedef struct CFF_SubFontRec_* CFF_SubFont; + + + typedef struct CFF_PrivateRec_ + { + FT_Byte num_blue_values; + FT_Byte num_other_blues; + FT_Byte num_family_blues; + FT_Byte num_family_other_blues; + + FT_Pos blue_values[14]; + FT_Pos other_blues[10]; + FT_Pos family_blues[14]; + FT_Pos family_other_blues[10]; + + FT_Fixed blue_scale; + FT_Pos blue_shift; + FT_Pos blue_fuzz; + FT_Pos standard_width; + FT_Pos standard_height; + + FT_Byte num_snap_widths; + FT_Byte num_snap_heights; + FT_Pos snap_widths[13]; + FT_Pos snap_heights[13]; + FT_Bool force_bold; + FT_Fixed force_bold_threshold; + FT_Int lenIV; + FT_Int language_group; + FT_Fixed expansion_factor; + FT_Long initial_random_seed; + FT_ULong local_subrs_offset; + FT_Pos default_width; + FT_Pos nominal_width; + + /* fields for CFF2 */ + FT_UInt vsindex; + CFF_SubFont subfont; + + } CFF_PrivateRec, *CFF_Private; + + + typedef struct CFF_FDSelectRec_ + { + FT_Byte format; + FT_UInt range_count; + + /* that's the table, taken from the file `as is' */ + FT_Byte* data; + FT_UInt data_size; + + /* small cache for format 3 only */ + FT_UInt cache_first; + FT_UInt cache_count; + FT_Byte cache_fd; + + } CFF_FDSelectRec, *CFF_FDSelect; + + + /* A SubFont packs a font dict and a private dict together. They are */ + /* needed to support CID-keyed CFF fonts. */ + typedef struct CFF_SubFontRec_ + { + CFF_FontRecDictRec font_dict; + CFF_PrivateRec private_dict; + + /* fields for CFF2 */ + CFF_BlendRec blend; /* current blend vector */ + FT_UInt lenNDV; /* current length NDV or zero */ + FT_Fixed* NDV; /* ptr to current NDV or NULL */ + + /* `blend_stack' is a writable buffer to hold blend results. */ + /* This buffer is to the side of the normal cff parser stack; */ + /* `cff_parse_blend' and `cff_blend_doBlend' push blend results here. */ + /* The normal stack then points to these values instead of the DICT */ + /* because all other operators in Private DICT clear the stack. */ + /* `blend_stack' could be cleared at each operator other than blend. */ + /* Blended values are stored as 5-byte fixed point values. */ + + FT_Byte* blend_stack; /* base of stack allocation */ + FT_Byte* blend_top; /* first empty slot */ + FT_UInt blend_used; /* number of bytes in use */ + FT_UInt blend_alloc; /* number of bytes allocated */ + + CFF_IndexRec local_subrs_index; + FT_Byte** local_subrs; /* array of pointers */ + /* into Local Subrs INDEX data */ + + FT_UInt32 random; + + } CFF_SubFontRec; + + +#define CFF_MAX_CID_FONTS 256 + + + typedef struct CFF_FontRec_ + { + FT_Library library; + FT_Stream stream; + FT_Memory memory; /* TODO: take this from stream->memory? */ + FT_ULong base_offset; /* offset to start of CFF */ + FT_UInt num_faces; + FT_UInt num_glyphs; + + FT_Byte version_major; + FT_Byte version_minor; + FT_Byte header_size; + + FT_UInt top_dict_length; /* cff2 only */ + + FT_Bool cff2; + + CFF_IndexRec name_index; + CFF_IndexRec top_dict_index; + CFF_IndexRec global_subrs_index; + + CFF_EncodingRec encoding; + CFF_CharsetRec charset; + + CFF_IndexRec charstrings_index; + CFF_IndexRec font_dict_index; + CFF_IndexRec private_index; + CFF_IndexRec local_subrs_index; + + FT_String* font_name; + + /* array of pointers into Global Subrs INDEX data */ + FT_Byte** global_subrs; + + /* array of pointers into String INDEX data stored at string_pool */ + FT_UInt num_strings; + FT_Byte** strings; + FT_Byte* string_pool; + FT_ULong string_pool_size; + + CFF_SubFontRec top_font; + FT_UInt num_subfonts; + CFF_SubFont subfonts[CFF_MAX_CID_FONTS]; + + CFF_FDSelectRec fd_select; + + /* interface to PostScript hinter */ + PSHinter_Service pshinter; + + /* interface to Postscript Names service */ + FT_Service_PsCMaps psnames; + + /* interface to CFFLoad service */ + const void* cffload; + + /* since version 2.3.0 */ + PS_FontInfoRec* font_info; /* font info dictionary */ + + /* since version 2.3.6 */ + FT_String* registry; + FT_String* ordering; + + /* since version 2.4.12 */ + FT_Generic cf2_instance; + + /* since version 2.7.1 */ + CFF_VStoreRec vstore; /* parsed vstore structure */ + + /* since version 2.9 */ + PS_FontExtraRec* font_extra; + + } CFF_FontRec; + + +FT_END_HEADER + +#endif /* CFFTYPES_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftcalc.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftcalc.h new file mode 100644 index 0000000..2986ec3 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftcalc.h @@ -0,0 +1,510 @@ +/**************************************************************************** + * + * ftcalc.h + * + * Arithmetic computations (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTCALC_H_ +#define FTCALC_H_ + + +#include +#include FT_FREETYPE_H + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * FT_MulDiv() and FT_MulFix() are declared in freetype.h. + * + */ + +#ifndef FT_CONFIG_OPTION_NO_ASSEMBLER + /* Provide assembler fragments for performance-critical functions. */ + /* These must be defined `static __inline__' with GCC. */ + +#if defined( __CC_ARM ) || defined( __ARMCC__ ) /* RVCT */ + +#define FT_MULFIX_ASSEMBLER FT_MulFix_arm + + /* documentation is in freetype.h */ + + static __inline FT_Int32 + FT_MulFix_arm( FT_Int32 a, + FT_Int32 b ) + { + FT_Int32 t, t2; + + + __asm + { + smull t2, t, b, a /* (lo=t2,hi=t) = a*b */ + mov a, t, asr #31 /* a = (hi >> 31) */ + add a, a, #0x8000 /* a += 0x8000 */ + adds t2, t2, a /* t2 += a */ + adc t, t, #0 /* t += carry */ + mov a, t2, lsr #16 /* a = t2 >> 16 */ + orr a, a, t, lsl #16 /* a |= t << 16 */ + } + return a; + } + +#endif /* __CC_ARM || __ARMCC__ */ + + +#ifdef __GNUC__ + +#if defined( __arm__ ) && \ + ( !defined( __thumb__ ) || defined( __thumb2__ ) ) && \ + !( defined( __CC_ARM ) || defined( __ARMCC__ ) ) + +#define FT_MULFIX_ASSEMBLER FT_MulFix_arm + + /* documentation is in freetype.h */ + + static __inline__ FT_Int32 + FT_MulFix_arm( FT_Int32 a, + FT_Int32 b ) + { + FT_Int32 t, t2; + + + __asm__ __volatile__ ( + "smull %1, %2, %4, %3\n\t" /* (lo=%1,hi=%2) = a*b */ + "mov %0, %2, asr #31\n\t" /* %0 = (hi >> 31) */ +#if defined( __clang__ ) && defined( __thumb2__ ) + "add.w %0, %0, #0x8000\n\t" /* %0 += 0x8000 */ +#else + "add %0, %0, #0x8000\n\t" /* %0 += 0x8000 */ +#endif + "adds %1, %1, %0\n\t" /* %1 += %0 */ + "adc %2, %2, #0\n\t" /* %2 += carry */ + "mov %0, %1, lsr #16\n\t" /* %0 = %1 >> 16 */ + "orr %0, %0, %2, lsl #16\n\t" /* %0 |= %2 << 16 */ + : "=r"(a), "=&r"(t2), "=&r"(t) + : "r"(a), "r"(b) + : "cc" ); + return a; + } + +#endif /* __arm__ && */ + /* ( __thumb2__ || !__thumb__ ) && */ + /* !( __CC_ARM || __ARMCC__ ) */ + + +#if defined( __i386__ ) + +#define FT_MULFIX_ASSEMBLER FT_MulFix_i386 + + /* documentation is in freetype.h */ + + static __inline__ FT_Int32 + FT_MulFix_i386( FT_Int32 a, + FT_Int32 b ) + { + FT_Int32 result; + + + __asm__ __volatile__ ( + "imul %%edx\n" + "movl %%edx, %%ecx\n" + "sarl $31, %%ecx\n" + "addl $0x8000, %%ecx\n" + "addl %%ecx, %%eax\n" + "adcl $0, %%edx\n" + "shrl $16, %%eax\n" + "shll $16, %%edx\n" + "addl %%edx, %%eax\n" + : "=a"(result), "=d"(b) + : "a"(a), "d"(b) + : "%ecx", "cc" ); + return result; + } + +#endif /* i386 */ + +#endif /* __GNUC__ */ + + +#ifdef _MSC_VER /* Visual C++ */ + +#ifdef _M_IX86 + +#define FT_MULFIX_ASSEMBLER FT_MulFix_i386 + + /* documentation is in freetype.h */ + + static __inline FT_Int32 + FT_MulFix_i386( FT_Int32 a, + FT_Int32 b ) + { + FT_Int32 result; + + __asm + { + mov eax, a + mov edx, b + imul edx + mov ecx, edx + sar ecx, 31 + add ecx, 8000h + add eax, ecx + adc edx, 0 + shr eax, 16 + shl edx, 16 + add eax, edx + mov result, eax + } + return result; + } + +#endif /* _M_IX86 */ + +#endif /* _MSC_VER */ + + +#if defined( __GNUC__ ) && defined( __x86_64__ ) + +#define FT_MULFIX_ASSEMBLER FT_MulFix_x86_64 + + static __inline__ FT_Int32 + FT_MulFix_x86_64( FT_Int32 a, + FT_Int32 b ) + { + /* Temporarily disable the warning that C90 doesn't support */ + /* `long long'. */ +#if __GNUC__ > 4 || ( __GNUC__ == 4 && __GNUC_MINOR__ >= 6 ) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wlong-long" +#endif + +#if 1 + /* Technically not an assembly fragment, but GCC does a really good */ + /* job at inlining it and generating good machine code for it. */ + long long ret, tmp; + + + ret = (long long)a * b; + tmp = ret >> 63; + ret += 0x8000 + tmp; + + return (FT_Int32)( ret >> 16 ); +#else + + /* For some reason, GCC 4.6 on Ubuntu 12.04 generates invalid machine */ + /* code from the lines below. The main issue is that `wide_a' is not */ + /* properly initialized by sign-extending `a'. Instead, the generated */ + /* machine code assumes that the register that contains `a' on input */ + /* can be used directly as a 64-bit value, which is wrong most of the */ + /* time. */ + long long wide_a = (long long)a; + long long wide_b = (long long)b; + long long result; + + + __asm__ __volatile__ ( + "imul %2, %1\n" + "mov %1, %0\n" + "sar $63, %0\n" + "lea 0x8000(%1, %0), %0\n" + "sar $16, %0\n" + : "=&r"(result), "=&r"(wide_a) + : "r"(wide_b) + : "cc" ); + + return (FT_Int32)result; +#endif + +#if __GNUC__ > 4 || ( __GNUC__ == 4 && __GNUC_MINOR__ >= 6 ) +#pragma GCC diagnostic pop +#endif + } + +#endif /* __GNUC__ && __x86_64__ */ + +#endif /* !FT_CONFIG_OPTION_NO_ASSEMBLER */ + + +#ifdef FT_CONFIG_OPTION_INLINE_MULFIX +#ifdef FT_MULFIX_ASSEMBLER +#define FT_MulFix( a, b ) FT_MULFIX_ASSEMBLER( (FT_Int32)(a), (FT_Int32)(b) ) +#endif +#endif + + + /************************************************************************** + * + * @function: + * FT_MulDiv_No_Round + * + * @description: + * A very simple function used to perform the computation '(a*b)/c' + * (without rounding) with maximum accuracy (it uses a 64-bit + * intermediate integer whenever necessary). + * + * This function isn't necessarily as fast as some processor-specific + * operations, but is at least completely portable. + * + * @input: + * a :: + * The first multiplier. + * b :: + * The second multiplier. + * c :: + * The divisor. + * + * @return: + * The result of '(a*b)/c'. This function never traps when trying to + * divide by zero; it simply returns 'MaxInt' or 'MinInt' depending on + * the signs of 'a' and 'b'. + */ + FT_BASE( FT_Long ) + FT_MulDiv_No_Round( FT_Long a, + FT_Long b, + FT_Long c ); + + + /* + * A variant of FT_Matrix_Multiply which scales its result afterwards. The + * idea is that both `a' and `b' are scaled by factors of 10 so that the + * values are as precise as possible to get a correct result during the + * 64bit multiplication. Let `sa' and `sb' be the scaling factors of `a' + * and `b', respectively, then the scaling factor of the result is `sa*sb'. + */ + FT_BASE( void ) + FT_Matrix_Multiply_Scaled( const FT_Matrix* a, + FT_Matrix *b, + FT_Long scaling ); + + + /* + * Check a matrix. If the transformation would lead to extreme shear or + * extreme scaling, for example, return 0. If everything is OK, return 1. + * + * Based on geometric considerations we use the following inequality to + * identify a degenerate matrix. + * + * 50 * abs(xx*yy - xy*yx) < xx^2 + xy^2 + yx^2 + yy^2 + * + * Value 50 is heuristic. + */ + FT_BASE( FT_Bool ) + FT_Matrix_Check( const FT_Matrix* matrix ); + + + /* + * A variant of FT_Vector_Transform. See comments for + * FT_Matrix_Multiply_Scaled. + */ + FT_BASE( void ) + FT_Vector_Transform_Scaled( FT_Vector* vector, + const FT_Matrix* matrix, + FT_Long scaling ); + + + /* + * This function normalizes a vector and returns its original length. The + * normalized vector is a 16.16 fixed-point unit vector with length close + * to 0x10000. The accuracy of the returned length is limited to 16 bits + * also. The function utilizes quick inverse square root approximation + * without divisions and square roots relying on Newton's iterations + * instead. + */ + FT_BASE( FT_UInt32 ) + FT_Vector_NormLen( FT_Vector* vector ); + + + /* + * Return -1, 0, or +1, depending on the orientation of a given corner. We + * use the Cartesian coordinate system, with positive vertical values going + * upwards. The function returns +1 if the corner turns to the left, -1 to + * the right, and 0 for undecidable cases. + */ + FT_BASE( FT_Int ) + ft_corner_orientation( FT_Pos in_x, + FT_Pos in_y, + FT_Pos out_x, + FT_Pos out_y ); + + + /* + * Return TRUE if a corner is flat or nearly flat. This is equivalent to + * saying that the corner point is close to its neighbors, or inside an + * ellipse defined by the neighbor focal points to be more precise. + */ + FT_BASE( FT_Int ) + ft_corner_is_flat( FT_Pos in_x, + FT_Pos in_y, + FT_Pos out_x, + FT_Pos out_y ); + + + /* + * Return the most significant bit index. + */ + +#ifndef FT_CONFIG_OPTION_NO_ASSEMBLER + +#if defined( __GNUC__ ) && \ + ( __GNUC__ > 3 || ( __GNUC__ == 3 && __GNUC_MINOR__ >= 4 ) ) + +#if FT_SIZEOF_INT == 4 + +#define FT_MSB( x ) ( 31 - __builtin_clz( x ) ) + +#elif FT_SIZEOF_LONG == 4 + +#define FT_MSB( x ) ( 31 - __builtin_clzl( x ) ) + +#endif /* __GNUC__ */ + + +#elif defined( _MSC_VER ) && ( _MSC_VER >= 1400 ) + +#if FT_SIZEOF_INT == 4 + +#include + + static __inline FT_Int32 + FT_MSB_i386( FT_UInt32 x ) + { + unsigned long where; + + + /* not available in older VC versions */ + _BitScanReverse( &where, x ); + + return (FT_Int32)where; + } + +#define FT_MSB( x ) ( FT_MSB_i386( x ) ) + +#endif + +#endif /* _MSC_VER */ + + +#endif /* !FT_CONFIG_OPTION_NO_ASSEMBLER */ + +#ifndef FT_MSB + + FT_BASE( FT_Int ) + FT_MSB( FT_UInt32 z ); + +#endif + + + /* + * Return sqrt(x*x+y*y), which is the same as `FT_Vector_Length' but uses + * two fixed-point arguments instead. + */ + FT_BASE( FT_Fixed ) + FT_Hypot( FT_Fixed x, + FT_Fixed y ); + + +#if 0 + + /************************************************************************** + * + * @function: + * FT_SqrtFixed + * + * @description: + * Computes the square root of a 16.16 fixed-point value. + * + * @input: + * x :: + * The value to compute the root for. + * + * @return: + * The result of 'sqrt(x)'. + * + * @note: + * This function is not very fast. + */ + FT_BASE( FT_Int32 ) + FT_SqrtFixed( FT_Int32 x ); + +#endif /* 0 */ + + +#define INT_TO_F26DOT6( x ) ( (FT_Long)(x) * 64 ) /* << 6 */ +#define INT_TO_F2DOT14( x ) ( (FT_Long)(x) * 16384 ) /* << 14 */ +#define INT_TO_FIXED( x ) ( (FT_Long)(x) * 65536 ) /* << 16 */ +#define F2DOT14_TO_FIXED( x ) ( (FT_Long)(x) * 4 ) /* << 2 */ +#define FIXED_TO_INT( x ) ( FT_RoundFix( x ) >> 16 ) + +#define ROUND_F26DOT6( x ) ( x >= 0 ? ( ( (x) + 32 ) & -64 ) \ + : ( -( ( 32 - (x) ) & -64 ) ) ) + + /* + * The following macros have two purposes. + * + * - Tag places where overflow is expected and harmless. + * + * - Avoid run-time sanitizer errors. + * + * Use with care! + */ +#define ADD_INT( a, b ) \ + (FT_Int)( (FT_UInt)(a) + (FT_UInt)(b) ) +#define SUB_INT( a, b ) \ + (FT_Int)( (FT_UInt)(a) - (FT_UInt)(b) ) +#define MUL_INT( a, b ) \ + (FT_Int)( (FT_UInt)(a) * (FT_UInt)(b) ) +#define NEG_INT( a ) \ + (FT_Int)( (FT_UInt)0 - (FT_UInt)(a) ) + +#define ADD_LONG( a, b ) \ + (FT_Long)( (FT_ULong)(a) + (FT_ULong)(b) ) +#define SUB_LONG( a, b ) \ + (FT_Long)( (FT_ULong)(a) - (FT_ULong)(b) ) +#define MUL_LONG( a, b ) \ + (FT_Long)( (FT_ULong)(a) * (FT_ULong)(b) ) +#define NEG_LONG( a ) \ + (FT_Long)( (FT_ULong)0 - (FT_ULong)(a) ) + +#define ADD_INT32( a, b ) \ + (FT_Int32)( (FT_UInt32)(a) + (FT_UInt32)(b) ) +#define SUB_INT32( a, b ) \ + (FT_Int32)( (FT_UInt32)(a) - (FT_UInt32)(b) ) +#define MUL_INT32( a, b ) \ + (FT_Int32)( (FT_UInt32)(a) * (FT_UInt32)(b) ) +#define NEG_INT32( a ) \ + (FT_Int32)( (FT_UInt32)0 - (FT_UInt32)(a) ) + +#ifdef FT_LONG64 + +#define ADD_INT64( a, b ) \ + (FT_Int64)( (FT_UInt64)(a) + (FT_UInt64)(b) ) +#define SUB_INT64( a, b ) \ + (FT_Int64)( (FT_UInt64)(a) - (FT_UInt64)(b) ) +#define MUL_INT64( a, b ) \ + (FT_Int64)( (FT_UInt64)(a) * (FT_UInt64)(b) ) +#define NEG_INT64( a ) \ + (FT_Int64)( (FT_UInt64)0 - (FT_UInt64)(a) ) + +#endif /* FT_LONG64 */ + + +FT_END_HEADER + +#endif /* FTCALC_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftdebug.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftdebug.h new file mode 100644 index 0000000..54a9673 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftdebug.h @@ -0,0 +1,283 @@ +/**************************************************************************** + * + * ftdebug.h + * + * Debugging and logging component (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + * + * IMPORTANT: A description of FreeType's debugging support can be + * found in 'docs/DEBUG.TXT'. Read it if you need to use or + * understand this code. + * + */ + + +#ifndef FTDEBUG_H_ +#define FTDEBUG_H_ + + +#include +#include FT_CONFIG_CONFIG_H +#include FT_FREETYPE_H + + +FT_BEGIN_HEADER + + + /* force the definition of FT_DEBUG_LEVEL_ERROR if FT_DEBUG_LEVEL_TRACE */ + /* is already defined; this simplifies the following #ifdefs */ + /* */ +#ifdef FT_DEBUG_LEVEL_TRACE +#undef FT_DEBUG_LEVEL_ERROR +#define FT_DEBUG_LEVEL_ERROR +#endif + + + /************************************************************************** + * + * Define the trace enums as well as the trace levels array when they are + * needed. + * + */ + +#ifdef FT_DEBUG_LEVEL_TRACE + +#define FT_TRACE_DEF( x ) trace_ ## x , + + /* defining the enumeration */ + typedef enum FT_Trace_ + { +#include FT_INTERNAL_TRACE_H + trace_count + + } FT_Trace; + + + /* a pointer to the array of trace levels, */ + /* provided by `src/base/ftdebug.c' */ + extern int* ft_trace_levels; + +#undef FT_TRACE_DEF + +#endif /* FT_DEBUG_LEVEL_TRACE */ + + + /************************************************************************** + * + * Define the FT_TRACE macro + * + * IMPORTANT! + * + * Each component must define the macro FT_COMPONENT to a valid FT_Trace + * value before using any TRACE macro. + * + */ + +#ifdef FT_DEBUG_LEVEL_TRACE + + /* we need two macros here to make cpp expand `FT_COMPONENT' */ +#define FT_TRACE_COMP( x ) FT_TRACE_COMP_( x ) +#define FT_TRACE_COMP_( x ) trace_ ## x + +#define FT_TRACE( level, varformat ) \ + do \ + { \ + if ( ft_trace_levels[FT_TRACE_COMP( FT_COMPONENT )] >= level ) \ + FT_Message varformat; \ + } while ( 0 ) + +#else /* !FT_DEBUG_LEVEL_TRACE */ + +#define FT_TRACE( level, varformat ) do { } while ( 0 ) /* nothing */ + +#endif /* !FT_DEBUG_LEVEL_TRACE */ + + + /************************************************************************** + * + * @function: + * FT_Trace_Get_Count + * + * @description: + * Return the number of available trace components. + * + * @return: + * The number of trace components. 0 if FreeType 2 is not built with + * FT_DEBUG_LEVEL_TRACE definition. + * + * @note: + * This function may be useful if you want to access elements of the + * internal trace levels array by an index. + */ + FT_BASE( FT_Int ) + FT_Trace_Get_Count( void ); + + + /************************************************************************** + * + * @function: + * FT_Trace_Get_Name + * + * @description: + * Return the name of a trace component. + * + * @input: + * The index of the trace component. + * + * @return: + * The name of the trace component. This is a statically allocated + * C~string, so do not free it after use. `NULL` if FreeType is not + * built with FT_DEBUG_LEVEL_TRACE definition. + * + * @note: + * Use @FT_Trace_Get_Count to get the number of available trace + * components. + */ + FT_BASE( const char* ) + FT_Trace_Get_Name( FT_Int idx ); + + + /************************************************************************** + * + * @function: + * FT_Trace_Disable + * + * @description: + * Switch off tracing temporarily. It can be activated again with + * @FT_Trace_Enable. + */ + FT_BASE( void ) + FT_Trace_Disable( void ); + + + /************************************************************************** + * + * @function: + * FT_Trace_Enable + * + * @description: + * Activate tracing. Use it after tracing has been switched off with + * @FT_Trace_Disable. + */ + FT_BASE( void ) + FT_Trace_Enable( void ); + + + /************************************************************************** + * + * You need two opening and closing parentheses! + * + * Example: FT_TRACE0(( "Value is %i", foo )) + * + * Output of the FT_TRACEX macros is sent to stderr. + * + */ + +#define FT_TRACE0( varformat ) FT_TRACE( 0, varformat ) +#define FT_TRACE1( varformat ) FT_TRACE( 1, varformat ) +#define FT_TRACE2( varformat ) FT_TRACE( 2, varformat ) +#define FT_TRACE3( varformat ) FT_TRACE( 3, varformat ) +#define FT_TRACE4( varformat ) FT_TRACE( 4, varformat ) +#define FT_TRACE5( varformat ) FT_TRACE( 5, varformat ) +#define FT_TRACE6( varformat ) FT_TRACE( 6, varformat ) +#define FT_TRACE7( varformat ) FT_TRACE( 7, varformat ) + + + /************************************************************************** + * + * Define the FT_ERROR macro. + * + * Output of this macro is sent to stderr. + * + */ + +#ifdef FT_DEBUG_LEVEL_ERROR + +#define FT_ERROR( varformat ) FT_Message varformat + +#else /* !FT_DEBUG_LEVEL_ERROR */ + +#define FT_ERROR( varformat ) do { } while ( 0 ) /* nothing */ + +#endif /* !FT_DEBUG_LEVEL_ERROR */ + + + /************************************************************************** + * + * Define the FT_ASSERT and FT_THROW macros. The call to `FT_Throw` makes + * it possible to easily set a breakpoint at this function. + * + */ + +#ifdef FT_DEBUG_LEVEL_ERROR + +#define FT_ASSERT( condition ) \ + do \ + { \ + if ( !( condition ) ) \ + FT_Panic( "assertion failed on line %d of file %s\n", \ + __LINE__, __FILE__ ); \ + } while ( 0 ) + +#define FT_THROW( e ) \ + ( FT_Throw( FT_ERR_CAT( FT_ERR_PREFIX, e ), \ + __LINE__, \ + __FILE__ ) | \ + FT_ERR_CAT( FT_ERR_PREFIX, e ) ) + +#else /* !FT_DEBUG_LEVEL_ERROR */ + +#define FT_ASSERT( condition ) do { } while ( 0 ) + +#define FT_THROW( e ) FT_ERR_CAT( FT_ERR_PREFIX, e ) + +#endif /* !FT_DEBUG_LEVEL_ERROR */ + + + /************************************************************************** + * + * Define `FT_Message` and `FT_Panic` when needed. + * + */ + +#ifdef FT_DEBUG_LEVEL_ERROR + +#include "stdio.h" /* for vfprintf() */ + + /* print a message */ + FT_BASE( void ) + FT_Message( const char* fmt, + ... ); + + /* print a message and exit */ + FT_BASE( void ) + FT_Panic( const char* fmt, + ... ); + + /* report file name and line number of an error */ + FT_BASE( int ) + FT_Throw( FT_Error error, + int line, + const char* file ); + +#endif /* FT_DEBUG_LEVEL_ERROR */ + + + FT_BASE( void ) + ft_debug_init( void ); + +FT_END_HEADER + +#endif /* FTDEBUG_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftdrv.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftdrv.h new file mode 100644 index 0000000..09e846e --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftdrv.h @@ -0,0 +1,288 @@ +/**************************************************************************** + * + * ftdrv.h + * + * FreeType internal font driver interface (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTDRV_H_ +#define FTDRV_H_ + + +#include +#include FT_MODULE_H + + +FT_BEGIN_HEADER + + + typedef FT_Error + (*FT_Face_InitFunc)( FT_Stream stream, + FT_Face face, + FT_Int typeface_index, + FT_Int num_params, + FT_Parameter* parameters ); + + typedef void + (*FT_Face_DoneFunc)( FT_Face face ); + + + typedef FT_Error + (*FT_Size_InitFunc)( FT_Size size ); + + typedef void + (*FT_Size_DoneFunc)( FT_Size size ); + + + typedef FT_Error + (*FT_Slot_InitFunc)( FT_GlyphSlot slot ); + + typedef void + (*FT_Slot_DoneFunc)( FT_GlyphSlot slot ); + + + typedef FT_Error + (*FT_Size_RequestFunc)( FT_Size size, + FT_Size_Request req ); + + typedef FT_Error + (*FT_Size_SelectFunc)( FT_Size size, + FT_ULong size_index ); + + typedef FT_Error + (*FT_Slot_LoadFunc)( FT_GlyphSlot slot, + FT_Size size, + FT_UInt glyph_index, + FT_Int32 load_flags ); + + + typedef FT_Error + (*FT_Face_GetKerningFunc)( FT_Face face, + FT_UInt left_glyph, + FT_UInt right_glyph, + FT_Vector* kerning ); + + + typedef FT_Error + (*FT_Face_AttachFunc)( FT_Face face, + FT_Stream stream ); + + + typedef FT_Error + (*FT_Face_GetAdvancesFunc)( FT_Face face, + FT_UInt first, + FT_UInt count, + FT_Int32 flags, + FT_Fixed* advances ); + + + /************************************************************************** + * + * @struct: + * FT_Driver_ClassRec + * + * @description: + * The font driver class. This structure mostly contains pointers to + * driver methods. + * + * @fields: + * root :: + * The parent module. + * + * face_object_size :: + * The size of a face object in bytes. + * + * size_object_size :: + * The size of a size object in bytes. + * + * slot_object_size :: + * The size of a glyph object in bytes. + * + * init_face :: + * The format-specific face constructor. + * + * done_face :: + * The format-specific face destructor. + * + * init_size :: + * The format-specific size constructor. + * + * done_size :: + * The format-specific size destructor. + * + * init_slot :: + * The format-specific slot constructor. + * + * done_slot :: + * The format-specific slot destructor. + * + * + * load_glyph :: + * A function handle to load a glyph to a slot. This field is + * mandatory! + * + * get_kerning :: + * A function handle to return the unscaled kerning for a given pair of + * glyphs. Can be set to 0 if the format doesn't support kerning. + * + * attach_file :: + * This function handle is used to read additional data for a face from + * another file/stream. For example, this can be used to add data from + * AFM or PFM files on a Type 1 face, or a CIDMap on a CID-keyed face. + * + * get_advances :: + * A function handle used to return advance widths of 'count' glyphs + * (in font units), starting at 'first'. The 'vertical' flag must be + * set to get vertical advance heights. The 'advances' buffer is + * caller-allocated. The idea of this function is to be able to + * perform device-independent text layout without loading a single + * glyph image. + * + * request_size :: + * A handle to a function used to request the new character size. Can + * be set to 0 if the scaling done in the base layer suffices. + * + * select_size :: + * A handle to a function used to select a new fixed size. It is used + * only if @FT_FACE_FLAG_FIXED_SIZES is set. Can be set to 0 if the + * scaling done in the base layer suffices. + * @note: + * Most function pointers, with the exception of `load_glyph`, can be set + * to 0 to indicate a default behaviour. + */ + typedef struct FT_Driver_ClassRec_ + { + FT_Module_Class root; + + FT_Long face_object_size; + FT_Long size_object_size; + FT_Long slot_object_size; + + FT_Face_InitFunc init_face; + FT_Face_DoneFunc done_face; + + FT_Size_InitFunc init_size; + FT_Size_DoneFunc done_size; + + FT_Slot_InitFunc init_slot; + FT_Slot_DoneFunc done_slot; + + FT_Slot_LoadFunc load_glyph; + + FT_Face_GetKerningFunc get_kerning; + FT_Face_AttachFunc attach_file; + FT_Face_GetAdvancesFunc get_advances; + + /* since version 2.2 */ + FT_Size_RequestFunc request_size; + FT_Size_SelectFunc select_size; + + } FT_Driver_ClassRec, *FT_Driver_Class; + + + /************************************************************************** + * + * @macro: + * FT_DECLARE_DRIVER + * + * @description: + * Used to create a forward declaration of an FT_Driver_ClassRec struct + * instance. + * + * @macro: + * FT_DEFINE_DRIVER + * + * @description: + * Used to initialize an instance of FT_Driver_ClassRec struct. + * + * `ftinit.c` (ft_create_default_module_classes) already contains a + * mechanism to call these functions for the default modules described in + * `ftmodule.h`. + * + * The struct will be allocated in the global scope (or the scope where + * the macro is used). + */ +#define FT_DECLARE_DRIVER( class_ ) \ + FT_CALLBACK_TABLE \ + const FT_Driver_ClassRec class_; + +#define FT_DEFINE_DRIVER( \ + class_, \ + flags_, \ + size_, \ + name_, \ + version_, \ + requires_, \ + interface_, \ + init_, \ + done_, \ + get_interface_, \ + face_object_size_, \ + size_object_size_, \ + slot_object_size_, \ + init_face_, \ + done_face_, \ + init_size_, \ + done_size_, \ + init_slot_, \ + done_slot_, \ + load_glyph_, \ + get_kerning_, \ + attach_file_, \ + get_advances_, \ + request_size_, \ + select_size_ ) \ + FT_CALLBACK_TABLE_DEF \ + const FT_Driver_ClassRec class_ = \ + { \ + FT_DEFINE_ROOT_MODULE( flags_, \ + size_, \ + name_, \ + version_, \ + requires_, \ + interface_, \ + init_, \ + done_, \ + get_interface_ ) \ + \ + face_object_size_, \ + size_object_size_, \ + slot_object_size_, \ + \ + init_face_, \ + done_face_, \ + \ + init_size_, \ + done_size_, \ + \ + init_slot_, \ + done_slot_, \ + \ + load_glyph_, \ + \ + get_kerning_, \ + attach_file_, \ + get_advances_, \ + \ + request_size_, \ + select_size_ \ + }; + + +FT_END_HEADER + +#endif /* FTDRV_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftgloadr.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftgloadr.h new file mode 100644 index 0000000..770871d --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftgloadr.h @@ -0,0 +1,149 @@ +/**************************************************************************** + * + * ftgloadr.h + * + * The FreeType glyph loader (specification). + * + * Copyright (C) 2002-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTGLOADR_H_ +#define FTGLOADR_H_ + + +#include +#include FT_FREETYPE_H + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @struct: + * FT_GlyphLoader + * + * @description: + * The glyph loader is an internal object used to load several glyphs + * together (for example, in the case of composites). + */ + typedef struct FT_SubGlyphRec_ + { + FT_Int index; + FT_UShort flags; + FT_Int arg1; + FT_Int arg2; + FT_Matrix transform; + + } FT_SubGlyphRec; + + + typedef struct FT_GlyphLoadRec_ + { + FT_Outline outline; /* outline */ + FT_Vector* extra_points; /* extra points table */ + FT_Vector* extra_points2; /* second extra points table */ + FT_UInt num_subglyphs; /* number of subglyphs */ + FT_SubGlyph subglyphs; /* subglyphs */ + + } FT_GlyphLoadRec, *FT_GlyphLoad; + + + typedef struct FT_GlyphLoaderRec_ + { + FT_Memory memory; + FT_UInt max_points; + FT_UInt max_contours; + FT_UInt max_subglyphs; + FT_Bool use_extra; + + FT_GlyphLoadRec base; + FT_GlyphLoadRec current; + + void* other; /* for possible future extension? */ + + } FT_GlyphLoaderRec, *FT_GlyphLoader; + + + /* create new empty glyph loader */ + FT_BASE( FT_Error ) + FT_GlyphLoader_New( FT_Memory memory, + FT_GlyphLoader *aloader ); + + /* add an extra points table to a glyph loader */ + FT_BASE( FT_Error ) + FT_GlyphLoader_CreateExtra( FT_GlyphLoader loader ); + + /* destroy a glyph loader */ + FT_BASE( void ) + FT_GlyphLoader_Done( FT_GlyphLoader loader ); + + /* reset a glyph loader (frees everything int it) */ + FT_BASE( void ) + FT_GlyphLoader_Reset( FT_GlyphLoader loader ); + + /* rewind a glyph loader */ + FT_BASE( void ) + FT_GlyphLoader_Rewind( FT_GlyphLoader loader ); + + /* check that there is enough space to add `n_points' and `n_contours' */ + /* to the glyph loader */ + FT_BASE( FT_Error ) + FT_GlyphLoader_CheckPoints( FT_GlyphLoader loader, + FT_UInt n_points, + FT_UInt n_contours ); + + +#define FT_GLYPHLOADER_CHECK_P( _loader, _count ) \ + ( (_count) == 0 || \ + ( (FT_UInt)(_loader)->base.outline.n_points + \ + (FT_UInt)(_loader)->current.outline.n_points + \ + (FT_UInt)(_count) ) <= (_loader)->max_points ) + +#define FT_GLYPHLOADER_CHECK_C( _loader, _count ) \ + ( (_count) == 0 || \ + ( (FT_UInt)(_loader)->base.outline.n_contours + \ + (FT_UInt)(_loader)->current.outline.n_contours + \ + (FT_UInt)(_count) ) <= (_loader)->max_contours ) + +#define FT_GLYPHLOADER_CHECK_POINTS( _loader, _points, _contours ) \ + ( ( FT_GLYPHLOADER_CHECK_P( _loader, _points ) && \ + FT_GLYPHLOADER_CHECK_C( _loader, _contours ) ) \ + ? 0 \ + : FT_GlyphLoader_CheckPoints( (_loader), \ + (FT_UInt)(_points), \ + (FT_UInt)(_contours) ) ) + + + /* check that there is enough space to add `n_subs' sub-glyphs to */ + /* a glyph loader */ + FT_BASE( FT_Error ) + FT_GlyphLoader_CheckSubGlyphs( FT_GlyphLoader loader, + FT_UInt n_subs ); + + /* prepare a glyph loader, i.e. empty the current glyph */ + FT_BASE( void ) + FT_GlyphLoader_Prepare( FT_GlyphLoader loader ); + + /* add the current glyph to the base glyph */ + FT_BASE( void ) + FT_GlyphLoader_Add( FT_GlyphLoader loader ); + + /* */ + + +FT_END_HEADER + +#endif /* FTGLOADR_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/fthash.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/fthash.h new file mode 100644 index 0000000..2491880 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/fthash.h @@ -0,0 +1,136 @@ +/**************************************************************************** + * + * fthash.h + * + * Hashing functions (specification). + * + */ + +/* + * Copyright 2000 Computing Research Labs, New Mexico State University + * Copyright 2001-2015 + * Francesco Zappa Nardelli + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY + * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT + * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR + * THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + + /************************************************************************** + * + * This file is based on code from bdf.c,v 1.22 2000/03/16 20:08:50 + * + * taken from Mark Leisher's xmbdfed package + * + */ + + +#ifndef FTHASH_H_ +#define FTHASH_H_ + + +#include +#include FT_FREETYPE_H + + +FT_BEGIN_HEADER + + + typedef union FT_Hashkey_ + { + FT_Int num; + const char* str; + + } FT_Hashkey; + + + typedef struct FT_HashnodeRec_ + { + FT_Hashkey key; + size_t data; + + } FT_HashnodeRec; + + typedef struct FT_HashnodeRec_ *FT_Hashnode; + + + typedef FT_ULong + (*FT_Hash_LookupFunc)( FT_Hashkey* key ); + + typedef FT_Bool + (*FT_Hash_CompareFunc)( FT_Hashkey* a, + FT_Hashkey* b ); + + + typedef struct FT_HashRec_ + { + FT_UInt limit; + FT_UInt size; + FT_UInt used; + + FT_Hash_LookupFunc lookup; + FT_Hash_CompareFunc compare; + + FT_Hashnode* table; + + } FT_HashRec; + + typedef struct FT_HashRec_ *FT_Hash; + + + FT_Error + ft_hash_str_init( FT_Hash hash, + FT_Memory memory ); + + FT_Error + ft_hash_num_init( FT_Hash hash, + FT_Memory memory ); + + void + ft_hash_str_free( FT_Hash hash, + FT_Memory memory ); + +#define ft_hash_num_free ft_hash_str_free + + FT_Error + ft_hash_str_insert( const char* key, + size_t data, + FT_Hash hash, + FT_Memory memory ); + + FT_Error + ft_hash_num_insert( FT_Int num, + size_t data, + FT_Hash hash, + FT_Memory memory ); + + size_t* + ft_hash_str_lookup( const char* key, + FT_Hash hash ); + + size_t* + ft_hash_num_lookup( FT_Int num, + FT_Hash hash ); + + +FT_END_HEADER + + +#endif /* FTHASH_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftmemory.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftmemory.h new file mode 100644 index 0000000..78bd3bc --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftmemory.h @@ -0,0 +1,392 @@ +/**************************************************************************** + * + * ftmemory.h + * + * The FreeType memory management macros (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTMEMORY_H_ +#define FTMEMORY_H_ + + +#include +#include FT_CONFIG_CONFIG_H +#include FT_TYPES_H + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @macro: + * FT_SET_ERROR + * + * @description: + * This macro is used to set an implicit 'error' variable to a given + * expression's value (usually a function call), and convert it to a + * boolean which is set whenever the value is != 0. + */ +#undef FT_SET_ERROR +#define FT_SET_ERROR( expression ) \ + ( ( error = (expression) ) != 0 ) + + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** M E M O R Y ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /* + * C++ refuses to handle statements like p = (void*)anything, with `p' a + * typed pointer. Since we don't have a `typeof' operator in standard C++, + * we have to use a template to emulate it. + */ + +#ifdef __cplusplus + +extern "C++" +{ + template inline T* + cplusplus_typeof( T*, + void *v ) + { + return static_cast ( v ); + } +} + +#define FT_ASSIGNP( p, val ) (p) = cplusplus_typeof( (p), (val) ) + +#else + +#define FT_ASSIGNP( p, val ) (p) = (val) + +#endif + + + +#ifdef FT_DEBUG_MEMORY + + FT_BASE( const char* ) _ft_debug_file; + FT_BASE( long ) _ft_debug_lineno; + +#define FT_DEBUG_INNER( exp ) ( _ft_debug_file = __FILE__, \ + _ft_debug_lineno = __LINE__, \ + (exp) ) + +#define FT_ASSIGNP_INNER( p, exp ) ( _ft_debug_file = __FILE__, \ + _ft_debug_lineno = __LINE__, \ + FT_ASSIGNP( p, exp ) ) + +#else /* !FT_DEBUG_MEMORY */ + +#define FT_DEBUG_INNER( exp ) (exp) +#define FT_ASSIGNP_INNER( p, exp ) FT_ASSIGNP( p, exp ) + +#endif /* !FT_DEBUG_MEMORY */ + + + /* + * The allocation functions return a pointer, and the error code is written + * to through the `p_error' parameter. + */ + + /* The `q' variants of the functions below (`q' for `quick') don't fill */ + /* the allocated or reallocated memory with zero bytes. */ + + FT_BASE( FT_Pointer ) + ft_mem_alloc( FT_Memory memory, + FT_Long size, + FT_Error *p_error ); + + FT_BASE( FT_Pointer ) + ft_mem_qalloc( FT_Memory memory, + FT_Long size, + FT_Error *p_error ); + + FT_BASE( FT_Pointer ) + ft_mem_realloc( FT_Memory memory, + FT_Long item_size, + FT_Long cur_count, + FT_Long new_count, + void* block, + FT_Error *p_error ); + + FT_BASE( FT_Pointer ) + ft_mem_qrealloc( FT_Memory memory, + FT_Long item_size, + FT_Long cur_count, + FT_Long new_count, + void* block, + FT_Error *p_error ); + + FT_BASE( void ) + ft_mem_free( FT_Memory memory, + const void* P ); + + + /* The `Q' variants of the macros below (`Q' for `quick') don't fill */ + /* the allocated or reallocated memory with zero bytes. */ + +#define FT_MEM_ALLOC( ptr, size ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_alloc( memory, \ + (FT_Long)(size), \ + &error ) ) + +#define FT_MEM_FREE( ptr ) \ + FT_BEGIN_STMNT \ + ft_mem_free( memory, (ptr) ); \ + (ptr) = NULL; \ + FT_END_STMNT + +#define FT_MEM_NEW( ptr ) \ + FT_MEM_ALLOC( ptr, sizeof ( *(ptr) ) ) + +#define FT_MEM_REALLOC( ptr, cursz, newsz ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_realloc( memory, \ + 1, \ + (FT_Long)(cursz), \ + (FT_Long)(newsz), \ + (ptr), \ + &error ) ) + +#define FT_MEM_QALLOC( ptr, size ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_qalloc( memory, \ + (FT_Long)(size), \ + &error ) ) + +#define FT_MEM_QNEW( ptr ) \ + FT_MEM_QALLOC( ptr, sizeof ( *(ptr) ) ) + +#define FT_MEM_QREALLOC( ptr, cursz, newsz ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_qrealloc( memory, \ + 1, \ + (FT_Long)(cursz), \ + (FT_Long)(newsz), \ + (ptr), \ + &error ) ) + +#define FT_MEM_ALLOC_MULT( ptr, count, item_size ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_realloc( memory, \ + (FT_Long)(item_size), \ + 0, \ + (FT_Long)(count), \ + NULL, \ + &error ) ) + +#define FT_MEM_REALLOC_MULT( ptr, oldcnt, newcnt, itmsz ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_realloc( memory, \ + (FT_Long)(itmsz), \ + (FT_Long)(oldcnt), \ + (FT_Long)(newcnt), \ + (ptr), \ + &error ) ) + +#define FT_MEM_QALLOC_MULT( ptr, count, item_size ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_qrealloc( memory, \ + (FT_Long)(item_size), \ + 0, \ + (FT_Long)(count), \ + NULL, \ + &error ) ) + +#define FT_MEM_QREALLOC_MULT( ptr, oldcnt, newcnt, itmsz ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_qrealloc( memory, \ + (FT_Long)(itmsz), \ + (FT_Long)(oldcnt), \ + (FT_Long)(newcnt), \ + (ptr), \ + &error ) ) + + +#define FT_MEM_SET_ERROR( cond ) ( (cond), error != 0 ) + + +#define FT_MEM_SET( dest, byte, count ) \ + ft_memset( dest, byte, (FT_Offset)(count) ) + +#define FT_MEM_COPY( dest, source, count ) \ + ft_memcpy( dest, source, (FT_Offset)(count) ) + +#define FT_MEM_MOVE( dest, source, count ) \ + ft_memmove( dest, source, (FT_Offset)(count) ) + + +#define FT_MEM_ZERO( dest, count ) FT_MEM_SET( dest, 0, count ) + +#define FT_ZERO( p ) FT_MEM_ZERO( p, sizeof ( *(p) ) ) + + +#define FT_ARRAY_ZERO( dest, count ) \ + FT_MEM_ZERO( dest, \ + (FT_Offset)(count) * sizeof ( *(dest) ) ) + +#define FT_ARRAY_COPY( dest, source, count ) \ + FT_MEM_COPY( dest, \ + source, \ + (FT_Offset)(count) * sizeof ( *(dest) ) ) + +#define FT_ARRAY_MOVE( dest, source, count ) \ + FT_MEM_MOVE( dest, \ + source, \ + (FT_Offset)(count) * sizeof ( *(dest) ) ) + + + /* + * Return the maximum number of addressable elements in an array. We limit + * ourselves to INT_MAX, rather than UINT_MAX, to avoid any problems. + */ +#define FT_ARRAY_MAX( ptr ) ( FT_INT_MAX / sizeof ( *(ptr) ) ) + +#define FT_ARRAY_CHECK( ptr, count ) ( (count) <= FT_ARRAY_MAX( ptr ) ) + + + /************************************************************************** + * + * The following functions macros expect that their pointer argument is + * _typed_ in order to automatically compute array element sizes. + */ + +#define FT_MEM_NEW_ARRAY( ptr, count ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_realloc( memory, \ + sizeof ( *(ptr) ), \ + 0, \ + (FT_Long)(count), \ + NULL, \ + &error ) ) + +#define FT_MEM_RENEW_ARRAY( ptr, cursz, newsz ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_realloc( memory, \ + sizeof ( *(ptr) ), \ + (FT_Long)(cursz), \ + (FT_Long)(newsz), \ + (ptr), \ + &error ) ) + +#define FT_MEM_QNEW_ARRAY( ptr, count ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_qrealloc( memory, \ + sizeof ( *(ptr) ), \ + 0, \ + (FT_Long)(count), \ + NULL, \ + &error ) ) + +#define FT_MEM_QRENEW_ARRAY( ptr, cursz, newsz ) \ + FT_ASSIGNP_INNER( ptr, ft_mem_qrealloc( memory, \ + sizeof ( *(ptr) ), \ + (FT_Long)(cursz), \ + (FT_Long)(newsz), \ + (ptr), \ + &error ) ) + +#define FT_ALLOC( ptr, size ) \ + FT_MEM_SET_ERROR( FT_MEM_ALLOC( ptr, size ) ) + +#define FT_REALLOC( ptr, cursz, newsz ) \ + FT_MEM_SET_ERROR( FT_MEM_REALLOC( ptr, cursz, newsz ) ) + +#define FT_ALLOC_MULT( ptr, count, item_size ) \ + FT_MEM_SET_ERROR( FT_MEM_ALLOC_MULT( ptr, count, item_size ) ) + +#define FT_REALLOC_MULT( ptr, oldcnt, newcnt, itmsz ) \ + FT_MEM_SET_ERROR( FT_MEM_REALLOC_MULT( ptr, oldcnt, \ + newcnt, itmsz ) ) + +#define FT_QALLOC( ptr, size ) \ + FT_MEM_SET_ERROR( FT_MEM_QALLOC( ptr, size ) ) + +#define FT_QREALLOC( ptr, cursz, newsz ) \ + FT_MEM_SET_ERROR( FT_MEM_QREALLOC( ptr, cursz, newsz ) ) + +#define FT_QALLOC_MULT( ptr, count, item_size ) \ + FT_MEM_SET_ERROR( FT_MEM_QALLOC_MULT( ptr, count, item_size ) ) + +#define FT_QREALLOC_MULT( ptr, oldcnt, newcnt, itmsz ) \ + FT_MEM_SET_ERROR( FT_MEM_QREALLOC_MULT( ptr, oldcnt, \ + newcnt, itmsz ) ) + +#define FT_FREE( ptr ) FT_MEM_FREE( ptr ) + +#define FT_NEW( ptr ) FT_MEM_SET_ERROR( FT_MEM_NEW( ptr ) ) + +#define FT_NEW_ARRAY( ptr, count ) \ + FT_MEM_SET_ERROR( FT_MEM_NEW_ARRAY( ptr, count ) ) + +#define FT_RENEW_ARRAY( ptr, curcnt, newcnt ) \ + FT_MEM_SET_ERROR( FT_MEM_RENEW_ARRAY( ptr, curcnt, newcnt ) ) + +#define FT_QNEW( ptr ) \ + FT_MEM_SET_ERROR( FT_MEM_QNEW( ptr ) ) + +#define FT_QNEW_ARRAY( ptr, count ) \ + FT_MEM_SET_ERROR( FT_MEM_NEW_ARRAY( ptr, count ) ) + +#define FT_QRENEW_ARRAY( ptr, curcnt, newcnt ) \ + FT_MEM_SET_ERROR( FT_MEM_RENEW_ARRAY( ptr, curcnt, newcnt ) ) + + + FT_BASE( FT_Pointer ) + ft_mem_strdup( FT_Memory memory, + const char* str, + FT_Error *p_error ); + + FT_BASE( FT_Pointer ) + ft_mem_dup( FT_Memory memory, + const void* address, + FT_ULong size, + FT_Error *p_error ); + + +#define FT_MEM_STRDUP( dst, str ) \ + (dst) = (char*)ft_mem_strdup( memory, (const char*)(str), &error ) + +#define FT_STRDUP( dst, str ) \ + FT_MEM_SET_ERROR( FT_MEM_STRDUP( dst, str ) ) + +#define FT_MEM_DUP( dst, address, size ) \ + (dst) = ft_mem_dup( memory, (address), (FT_ULong)(size), &error ) + +#define FT_DUP( dst, address, size ) \ + FT_MEM_SET_ERROR( FT_MEM_DUP( dst, address, size ) ) + + + /* Return >= 1 if a truncation occurs. */ + /* Return 0 if the source string fits the buffer. */ + /* This is *not* the same as strlcpy(). */ + FT_BASE( FT_Int ) + ft_mem_strcpyn( char* dst, + const char* src, + FT_ULong size ); + +#define FT_STRCPYN( dst, src, size ) \ + ft_mem_strcpyn( (char*)dst, (const char*)(src), (FT_ULong)(size) ) + + /* */ + + +FT_END_HEADER + +#endif /* FTMEMORY_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftobjs.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftobjs.h new file mode 100644 index 0000000..f3a41b3 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftobjs.h @@ -0,0 +1,1236 @@ +/**************************************************************************** + * + * ftobjs.h + * + * The FreeType private base classes (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * This file contains the definition of all internal FreeType classes. + * + */ + + +#ifndef FTOBJS_H_ +#define FTOBJS_H_ + +#include +#include FT_RENDER_H +#include FT_SIZES_H +#include FT_LCD_FILTER_H +#include FT_INTERNAL_MEMORY_H +#include FT_INTERNAL_GLYPH_LOADER_H +#include FT_INTERNAL_DRIVER_H +#include FT_INTERNAL_AUTOHINT_H +#include FT_INTERNAL_SERVICE_H +#include FT_INTERNAL_CALC_H + +#ifdef FT_CONFIG_OPTION_INCREMENTAL +#include FT_INCREMENTAL_H +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * Some generic definitions. + */ +#ifndef TRUE +#define TRUE 1 +#endif + +#ifndef FALSE +#define FALSE 0 +#endif + +#ifndef NULL +#define NULL (void*)0 +#endif + + + /************************************************************************** + * + * The min and max functions missing in C. As usual, be careful not to + * write things like FT_MIN( a++, b++ ) to avoid side effects. + */ +#define FT_MIN( a, b ) ( (a) < (b) ? (a) : (b) ) +#define FT_MAX( a, b ) ( (a) > (b) ? (a) : (b) ) + +#define FT_ABS( a ) ( (a) < 0 ? -(a) : (a) ) + + /* + * Approximate sqrt(x*x+y*y) using the `alpha max plus beta min' algorithm. + * We use alpha = 1, beta = 3/8, giving us results with a largest error + * less than 7% compared to the exact value. + */ +#define FT_HYPOT( x, y ) \ + ( x = FT_ABS( x ), \ + y = FT_ABS( y ), \ + x > y ? x + ( 3 * y >> 3 ) \ + : y + ( 3 * x >> 3 ) ) + + /* we use FT_TYPEOF to suppress signedness compilation warnings */ +#define FT_PAD_FLOOR( x, n ) ( (x) & ~FT_TYPEOF( x )( (n) - 1 ) ) +#define FT_PAD_ROUND( x, n ) FT_PAD_FLOOR( (x) + (n) / 2, n ) +#define FT_PAD_CEIL( x, n ) FT_PAD_FLOOR( (x) + (n) - 1, n ) + +#define FT_PIX_FLOOR( x ) ( (x) & ~FT_TYPEOF( x )63 ) +#define FT_PIX_ROUND( x ) FT_PIX_FLOOR( (x) + 32 ) +#define FT_PIX_CEIL( x ) FT_PIX_FLOOR( (x) + 63 ) + + /* specialized versions (for signed values) */ + /* that don't produce run-time errors due to integer overflow */ +#define FT_PAD_ROUND_LONG( x, n ) FT_PAD_FLOOR( ADD_LONG( (x), (n) / 2 ), \ + n ) +#define FT_PAD_CEIL_LONG( x, n ) FT_PAD_FLOOR( ADD_LONG( (x), (n) - 1 ), \ + n ) +#define FT_PIX_ROUND_LONG( x ) FT_PIX_FLOOR( ADD_LONG( (x), 32 ) ) +#define FT_PIX_CEIL_LONG( x ) FT_PIX_FLOOR( ADD_LONG( (x), 63 ) ) + +#define FT_PAD_ROUND_INT32( x, n ) FT_PAD_FLOOR( ADD_INT32( (x), (n) / 2 ), \ + n ) +#define FT_PAD_CEIL_INT32( x, n ) FT_PAD_FLOOR( ADD_INT32( (x), (n) - 1 ), \ + n ) +#define FT_PIX_ROUND_INT32( x ) FT_PIX_FLOOR( ADD_INT32( (x), 32 ) ) +#define FT_PIX_CEIL_INT32( x ) FT_PIX_FLOOR( ADD_INT32( (x), 63 ) ) + + + /* + * character classification functions -- since these are used to parse font + * files, we must not use those in which are locale-dependent + */ +#define ft_isdigit( x ) ( ( (unsigned)(x) - '0' ) < 10U ) + +#define ft_isxdigit( x ) ( ( (unsigned)(x) - '0' ) < 10U || \ + ( (unsigned)(x) - 'a' ) < 6U || \ + ( (unsigned)(x) - 'A' ) < 6U ) + + /* the next two macros assume ASCII representation */ +#define ft_isupper( x ) ( ( (unsigned)(x) - 'A' ) < 26U ) +#define ft_islower( x ) ( ( (unsigned)(x) - 'a' ) < 26U ) + +#define ft_isalpha( x ) ( ft_isupper( x ) || ft_islower( x ) ) +#define ft_isalnum( x ) ( ft_isdigit( x ) || ft_isalpha( x ) ) + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** C H A R M A P S ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + /* handle to internal charmap object */ + typedef struct FT_CMapRec_* FT_CMap; + + /* handle to charmap class structure */ + typedef const struct FT_CMap_ClassRec_* FT_CMap_Class; + + /* internal charmap object structure */ + typedef struct FT_CMapRec_ + { + FT_CharMapRec charmap; + FT_CMap_Class clazz; + + } FT_CMapRec; + + /* typecast any pointer to a charmap handle */ +#define FT_CMAP( x ) ( (FT_CMap)( x ) ) + + /* obvious macros */ +#define FT_CMAP_PLATFORM_ID( x ) FT_CMAP( x )->charmap.platform_id +#define FT_CMAP_ENCODING_ID( x ) FT_CMAP( x )->charmap.encoding_id +#define FT_CMAP_ENCODING( x ) FT_CMAP( x )->charmap.encoding +#define FT_CMAP_FACE( x ) FT_CMAP( x )->charmap.face + + + /* class method definitions */ + typedef FT_Error + (*FT_CMap_InitFunc)( FT_CMap cmap, + FT_Pointer init_data ); + + typedef void + (*FT_CMap_DoneFunc)( FT_CMap cmap ); + + typedef FT_UInt + (*FT_CMap_CharIndexFunc)( FT_CMap cmap, + FT_UInt32 char_code ); + + typedef FT_UInt + (*FT_CMap_CharNextFunc)( FT_CMap cmap, + FT_UInt32 *achar_code ); + + typedef FT_UInt + (*FT_CMap_CharVarIndexFunc)( FT_CMap cmap, + FT_CMap unicode_cmap, + FT_UInt32 char_code, + FT_UInt32 variant_selector ); + + typedef FT_Int + (*FT_CMap_CharVarIsDefaultFunc)( FT_CMap cmap, + FT_UInt32 char_code, + FT_UInt32 variant_selector ); + + typedef FT_UInt32 * + (*FT_CMap_VariantListFunc)( FT_CMap cmap, + FT_Memory mem ); + + typedef FT_UInt32 * + (*FT_CMap_CharVariantListFunc)( FT_CMap cmap, + FT_Memory mem, + FT_UInt32 char_code ); + + typedef FT_UInt32 * + (*FT_CMap_VariantCharListFunc)( FT_CMap cmap, + FT_Memory mem, + FT_UInt32 variant_selector ); + + + typedef struct FT_CMap_ClassRec_ + { + FT_ULong size; + + FT_CMap_InitFunc init; + FT_CMap_DoneFunc done; + FT_CMap_CharIndexFunc char_index; + FT_CMap_CharNextFunc char_next; + + /* Subsequent entries are special ones for format 14 -- the variant */ + /* selector subtable which behaves like no other */ + + FT_CMap_CharVarIndexFunc char_var_index; + FT_CMap_CharVarIsDefaultFunc char_var_default; + FT_CMap_VariantListFunc variant_list; + FT_CMap_CharVariantListFunc charvariant_list; + FT_CMap_VariantCharListFunc variantchar_list; + + } FT_CMap_ClassRec; + + +#define FT_DECLARE_CMAP_CLASS( class_ ) \ + FT_CALLBACK_TABLE const FT_CMap_ClassRec class_; + +#define FT_DEFINE_CMAP_CLASS( \ + class_, \ + size_, \ + init_, \ + done_, \ + char_index_, \ + char_next_, \ + char_var_index_, \ + char_var_default_, \ + variant_list_, \ + charvariant_list_, \ + variantchar_list_ ) \ + FT_CALLBACK_TABLE_DEF \ + const FT_CMap_ClassRec class_ = \ + { \ + size_, \ + init_, \ + done_, \ + char_index_, \ + char_next_, \ + char_var_index_, \ + char_var_default_, \ + variant_list_, \ + charvariant_list_, \ + variantchar_list_ \ + }; + + + /* create a new charmap and add it to charmap->face */ + FT_BASE( FT_Error ) + FT_CMap_New( FT_CMap_Class clazz, + FT_Pointer init_data, + FT_CharMap charmap, + FT_CMap *acmap ); + + /* destroy a charmap and remove it from face's list */ + FT_BASE( void ) + FT_CMap_Done( FT_CMap cmap ); + + + /* add LCD padding to CBox */ + FT_BASE( void ) + ft_lcd_padding( FT_BBox* cbox, + FT_GlyphSlot slot, + FT_Render_Mode mode ); + +#ifdef FT_CONFIG_OPTION_SUBPIXEL_RENDERING + + typedef void (*FT_Bitmap_LcdFilterFunc)( FT_Bitmap* bitmap, + FT_Render_Mode render_mode, + FT_Byte* weights ); + + + /* This is the default LCD filter, an in-place, 5-tap FIR filter. */ + FT_BASE( void ) + ft_lcd_filter_fir( FT_Bitmap* bitmap, + FT_Render_Mode mode, + FT_LcdFiveTapFilter weights ); + +#endif /* FT_CONFIG_OPTION_SUBPIXEL_RENDERING */ + + /************************************************************************** + * + * @struct: + * FT_Face_InternalRec + * + * @description: + * This structure contains the internal fields of each FT_Face object. + * These fields may change between different releases of FreeType. + * + * @fields: + * max_points :: + * The maximum number of points used to store the vectorial outline of + * any glyph in this face. If this value cannot be known in advance, + * or if the face isn't scalable, this should be set to 0. Only + * relevant for scalable formats. + * + * max_contours :: + * The maximum number of contours used to store the vectorial outline + * of any glyph in this face. If this value cannot be known in + * advance, or if the face isn't scalable, this should be set to 0. + * Only relevant for scalable formats. + * + * transform_matrix :: + * A 2x2 matrix of 16.16 coefficients used to transform glyph outlines + * after they are loaded from the font. Only used by the convenience + * functions. + * + * transform_delta :: + * A translation vector used to transform glyph outlines after they are + * loaded from the font. Only used by the convenience functions. + * + * transform_flags :: + * Some flags used to classify the transform. Only used by the + * convenience functions. + * + * services :: + * A cache for frequently used services. It should be only accessed + * with the macro `FT_FACE_LOOKUP_SERVICE`. + * + * incremental_interface :: + * If non-null, the interface through which glyph data and metrics are + * loaded incrementally for faces that do not provide all of this data + * when first opened. This field exists only if + * @FT_CONFIG_OPTION_INCREMENTAL is defined. + * + * no_stem_darkening :: + * Overrides the module-level default, see @stem-darkening[cff], for + * example. FALSE and TRUE toggle stem darkening on and off, + * respectively, value~-1 means to use the module/driver default. + * + * random_seed :: + * If positive, override the seed value for the CFF 'random' operator. + * Value~0 means to use the font's value. Value~-1 means to use the + * CFF driver's default. + * + * lcd_weights :: + * lcd_filter_func :: + * These fields specify the LCD filtering weights and callback function + * for ClearType-style subpixel rendering. + * + * refcount :: + * A counter initialized to~1 at the time an @FT_Face structure is + * created. @FT_Reference_Face increments this counter, and + * @FT_Done_Face only destroys a face if the counter is~1, otherwise it + * simply decrements it. + */ + typedef struct FT_Face_InternalRec_ + { + FT_Matrix transform_matrix; + FT_Vector transform_delta; + FT_Int transform_flags; + + FT_ServiceCacheRec services; + +#ifdef FT_CONFIG_OPTION_INCREMENTAL + FT_Incremental_InterfaceRec* incremental_interface; +#endif + + FT_Char no_stem_darkening; + FT_Int32 random_seed; + +#ifdef FT_CONFIG_OPTION_SUBPIXEL_RENDERING + FT_LcdFiveTapFilter lcd_weights; /* filter weights, if any */ + FT_Bitmap_LcdFilterFunc lcd_filter_func; /* filtering callback */ +#endif + + FT_Int refcount; + + } FT_Face_InternalRec; + + + /************************************************************************** + * + * @struct: + * FT_Slot_InternalRec + * + * @description: + * This structure contains the internal fields of each FT_GlyphSlot + * object. These fields may change between different releases of + * FreeType. + * + * @fields: + * loader :: + * The glyph loader object used to load outlines into the glyph slot. + * + * flags :: + * Possible values are zero or FT_GLYPH_OWN_BITMAP. The latter + * indicates that the FT_GlyphSlot structure owns the bitmap buffer. + * + * glyph_transformed :: + * Boolean. Set to TRUE when the loaded glyph must be transformed + * through a specific font transformation. This is _not_ the same as + * the face transform set through FT_Set_Transform(). + * + * glyph_matrix :: + * The 2x2 matrix corresponding to the glyph transformation, if + * necessary. + * + * glyph_delta :: + * The 2d translation vector corresponding to the glyph transformation, + * if necessary. + * + * glyph_hints :: + * Format-specific glyph hints management. + * + * load_flags :: + * The load flags passed as an argument to @FT_Load_Glyph while + * initializing the glyph slot. + */ + +#define FT_GLYPH_OWN_BITMAP 0x1U + + typedef struct FT_Slot_InternalRec_ + { + FT_GlyphLoader loader; + FT_UInt flags; + FT_Bool glyph_transformed; + FT_Matrix glyph_matrix; + FT_Vector glyph_delta; + void* glyph_hints; + + FT_Int32 load_flags; + + } FT_GlyphSlot_InternalRec; + + + /************************************************************************** + * + * @struct: + * FT_Size_InternalRec + * + * @description: + * This structure contains the internal fields of each FT_Size object. + * + * @fields: + * module_data :: + * Data specific to a driver module. + * + * autohint_mode :: + * The used auto-hinting mode. + * + * autohint_metrics :: + * Metrics used by the auto-hinter. + * + */ + + typedef struct FT_Size_InternalRec_ + { + void* module_data; + + FT_Render_Mode autohint_mode; + FT_Size_Metrics autohint_metrics; + + } FT_Size_InternalRec; + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** M O D U L E S ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @struct: + * FT_ModuleRec + * + * @description: + * A module object instance. + * + * @fields: + * clazz :: + * A pointer to the module's class. + * + * library :: + * A handle to the parent library object. + * + * memory :: + * A handle to the memory manager. + */ + typedef struct FT_ModuleRec_ + { + FT_Module_Class* clazz; + FT_Library library; + FT_Memory memory; + + } FT_ModuleRec; + + + /* typecast an object to an FT_Module */ +#define FT_MODULE( x ) ( (FT_Module)(x) ) + +#define FT_MODULE_CLASS( x ) FT_MODULE( x )->clazz +#define FT_MODULE_LIBRARY( x ) FT_MODULE( x )->library +#define FT_MODULE_MEMORY( x ) FT_MODULE( x )->memory + + +#define FT_MODULE_IS_DRIVER( x ) ( FT_MODULE_CLASS( x )->module_flags & \ + FT_MODULE_FONT_DRIVER ) + +#define FT_MODULE_IS_RENDERER( x ) ( FT_MODULE_CLASS( x )->module_flags & \ + FT_MODULE_RENDERER ) + +#define FT_MODULE_IS_HINTER( x ) ( FT_MODULE_CLASS( x )->module_flags & \ + FT_MODULE_HINTER ) + +#define FT_MODULE_IS_STYLER( x ) ( FT_MODULE_CLASS( x )->module_flags & \ + FT_MODULE_STYLER ) + +#define FT_DRIVER_IS_SCALABLE( x ) ( FT_MODULE_CLASS( x )->module_flags & \ + FT_MODULE_DRIVER_SCALABLE ) + +#define FT_DRIVER_USES_OUTLINES( x ) !( FT_MODULE_CLASS( x )->module_flags & \ + FT_MODULE_DRIVER_NO_OUTLINES ) + +#define FT_DRIVER_HAS_HINTER( x ) ( FT_MODULE_CLASS( x )->module_flags & \ + FT_MODULE_DRIVER_HAS_HINTER ) + +#define FT_DRIVER_HINTS_LIGHTLY( x ) ( FT_MODULE_CLASS( x )->module_flags & \ + FT_MODULE_DRIVER_HINTS_LIGHTLY ) + + + /************************************************************************** + * + * @function: + * FT_Get_Module_Interface + * + * @description: + * Finds a module and returns its specific interface as a typeless + * pointer. + * + * @input: + * library :: + * A handle to the library object. + * + * module_name :: + * The module's name (as an ASCII string). + * + * @return: + * A module-specific interface if available, 0 otherwise. + * + * @note: + * You should better be familiar with FreeType internals to know which + * module to look for, and what its interface is :-) + */ + FT_BASE( const void* ) + FT_Get_Module_Interface( FT_Library library, + const char* mod_name ); + + FT_BASE( FT_Pointer ) + ft_module_get_service( FT_Module module, + const char* service_id, + FT_Bool global ); + +#ifdef FT_CONFIG_OPTION_ENVIRONMENT_PROPERTIES + FT_BASE( FT_Error ) + ft_property_string_set( FT_Library library, + const FT_String* module_name, + const FT_String* property_name, + FT_String* value ); +#endif + + /* */ + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** F A C E, S I Z E & G L Y P H S L O T O B J E C T S ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + /* a few macros used to perform easy typecasts with minimal brain damage */ + +#define FT_FACE( x ) ( (FT_Face)(x) ) +#define FT_SIZE( x ) ( (FT_Size)(x) ) +#define FT_SLOT( x ) ( (FT_GlyphSlot)(x) ) + +#define FT_FACE_DRIVER( x ) FT_FACE( x )->driver +#define FT_FACE_LIBRARY( x ) FT_FACE_DRIVER( x )->root.library +#define FT_FACE_MEMORY( x ) FT_FACE( x )->memory +#define FT_FACE_STREAM( x ) FT_FACE( x )->stream + +#define FT_SIZE_FACE( x ) FT_SIZE( x )->face +#define FT_SLOT_FACE( x ) FT_SLOT( x )->face + +#define FT_FACE_SLOT( x ) FT_FACE( x )->glyph +#define FT_FACE_SIZE( x ) FT_FACE( x )->size + + + /************************************************************************** + * + * @function: + * FT_New_GlyphSlot + * + * @description: + * It is sometimes useful to have more than one glyph slot for a given + * face object. This function is used to create additional slots. All + * of them are automatically discarded when the face is destroyed. + * + * @input: + * face :: + * A handle to a parent face object. + * + * @output: + * aslot :: + * A handle to a new glyph slot object. + * + * @return: + * FreeType error code. 0 means success. + */ + FT_BASE( FT_Error ) + FT_New_GlyphSlot( FT_Face face, + FT_GlyphSlot *aslot ); + + + /************************************************************************** + * + * @function: + * FT_Done_GlyphSlot + * + * @description: + * Destroys a given glyph slot. Remember however that all slots are + * automatically destroyed with its parent. Using this function is not + * always mandatory. + * + * @input: + * slot :: + * A handle to a target glyph slot. + */ + FT_BASE( void ) + FT_Done_GlyphSlot( FT_GlyphSlot slot ); + + /* */ + +#define FT_REQUEST_WIDTH( req ) \ + ( (req)->horiResolution \ + ? ( (req)->width * (FT_Pos)(req)->horiResolution + 36 ) / 72 \ + : (req)->width ) + +#define FT_REQUEST_HEIGHT( req ) \ + ( (req)->vertResolution \ + ? ( (req)->height * (FT_Pos)(req)->vertResolution + 36 ) / 72 \ + : (req)->height ) + + + /* Set the metrics according to a bitmap strike. */ + FT_BASE( void ) + FT_Select_Metrics( FT_Face face, + FT_ULong strike_index ); + + + /* Set the metrics according to a size request. */ + FT_BASE( void ) + FT_Request_Metrics( FT_Face face, + FT_Size_Request req ); + + + /* Match a size request against `available_sizes'. */ + FT_BASE( FT_Error ) + FT_Match_Size( FT_Face face, + FT_Size_Request req, + FT_Bool ignore_width, + FT_ULong* size_index ); + + + /* Use the horizontal metrics to synthesize the vertical metrics. */ + /* If `advance' is zero, it is also synthesized. */ + FT_BASE( void ) + ft_synthesize_vertical_metrics( FT_Glyph_Metrics* metrics, + FT_Pos advance ); + + + /* Free the bitmap of a given glyphslot when needed (i.e., only when it */ + /* was allocated with ft_glyphslot_alloc_bitmap). */ + FT_BASE( void ) + ft_glyphslot_free_bitmap( FT_GlyphSlot slot ); + + + /* Preset bitmap metrics of an outline glyphslot prior to rendering */ + /* and check whether the truncated bbox is too large for rendering. */ + FT_BASE( FT_Bool ) + ft_glyphslot_preset_bitmap( FT_GlyphSlot slot, + FT_Render_Mode mode, + const FT_Vector* origin ); + + /* Allocate a new bitmap buffer in a glyph slot. */ + FT_BASE( FT_Error ) + ft_glyphslot_alloc_bitmap( FT_GlyphSlot slot, + FT_ULong size ); + + + /* Set the bitmap buffer in a glyph slot to a given pointer. The buffer */ + /* will not be freed by a later call to ft_glyphslot_free_bitmap. */ + FT_BASE( void ) + ft_glyphslot_set_bitmap( FT_GlyphSlot slot, + FT_Byte* buffer ); + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** R E N D E R E R S ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + +#define FT_RENDERER( x ) ( (FT_Renderer)(x) ) +#define FT_GLYPH( x ) ( (FT_Glyph)(x) ) +#define FT_BITMAP_GLYPH( x ) ( (FT_BitmapGlyph)(x) ) +#define FT_OUTLINE_GLYPH( x ) ( (FT_OutlineGlyph)(x) ) + + + typedef struct FT_RendererRec_ + { + FT_ModuleRec root; + FT_Renderer_Class* clazz; + FT_Glyph_Format glyph_format; + FT_Glyph_Class glyph_class; + + FT_Raster raster; + FT_Raster_Render_Func raster_render; + FT_Renderer_RenderFunc render; + + } FT_RendererRec; + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** F O N T D R I V E R S ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /* typecast a module into a driver easily */ +#define FT_DRIVER( x ) ( (FT_Driver)(x) ) + + /* typecast a module as a driver, and get its driver class */ +#define FT_DRIVER_CLASS( x ) FT_DRIVER( x )->clazz + + + /************************************************************************** + * + * @struct: + * FT_DriverRec + * + * @description: + * The root font driver class. A font driver is responsible for managing + * and loading font files of a given format. + * + * @fields: + * root :: + * Contains the fields of the root module class. + * + * clazz :: + * A pointer to the font driver's class. Note that this is NOT + * root.clazz. 'class' wasn't used as it is a reserved word in C++. + * + * faces_list :: + * The list of faces currently opened by this driver. + * + * glyph_loader :: + * Unused. Used to be glyph loader for all faces managed by this + * driver. + */ + typedef struct FT_DriverRec_ + { + FT_ModuleRec root; + FT_Driver_Class clazz; + FT_ListRec faces_list; + FT_GlyphLoader glyph_loader; + + } FT_DriverRec; + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** L I B R A R I E S ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @struct: + * FT_LibraryRec + * + * @description: + * The FreeType library class. This is the root of all FreeType data. + * Use FT_New_Library() to create a library object, and FT_Done_Library() + * to discard it and all child objects. + * + * @fields: + * memory :: + * The library's memory object. Manages memory allocation. + * + * version_major :: + * The major version number of the library. + * + * version_minor :: + * The minor version number of the library. + * + * version_patch :: + * The current patch level of the library. + * + * num_modules :: + * The number of modules currently registered within this library. + * This is set to 0 for new libraries. New modules are added through + * the FT_Add_Module() API function. + * + * modules :: + * A table used to store handles to the currently registered + * modules. Note that each font driver contains a list of its opened + * faces. + * + * renderers :: + * The list of renderers currently registered within the library. + * + * cur_renderer :: + * The current outline renderer. This is a shortcut used to avoid + * parsing the list on each call to FT_Outline_Render(). It is a + * handle to the current renderer for the FT_GLYPH_FORMAT_OUTLINE + * format. + * + * auto_hinter :: + * The auto-hinter module interface. + * + * debug_hooks :: + * An array of four function pointers that allow debuggers to hook into + * a font format's interpreter. Currently, only the TrueType bytecode + * debugger uses this. + * + * lcd_weights :: + * The LCD filter weights for ClearType-style subpixel rendering. + * + * lcd_filter_func :: + * The LCD filtering callback function for for ClearType-style subpixel + * rendering. + * + * lcd_geometry :: + * This array specifies LCD subpixel geometry and controls Harmony LCD + * rendering technique, alternative to ClearType. + * + * pic_container :: + * Contains global structs and tables, instead of defining them + * globally. + * + * refcount :: + * A counter initialized to~1 at the time an @FT_Library structure is + * created. @FT_Reference_Library increments this counter, and + * @FT_Done_Library only destroys a library if the counter is~1, + * otherwise it simply decrements it. + */ + typedef struct FT_LibraryRec_ + { + FT_Memory memory; /* library's memory manager */ + + FT_Int version_major; + FT_Int version_minor; + FT_Int version_patch; + + FT_UInt num_modules; + FT_Module modules[FT_MAX_MODULES]; /* module objects */ + + FT_ListRec renderers; /* list of renderers */ + FT_Renderer cur_renderer; /* current outline renderer */ + FT_Module auto_hinter; + + FT_DebugHook_Func debug_hooks[4]; + +#ifdef FT_CONFIG_OPTION_SUBPIXEL_RENDERING + FT_LcdFiveTapFilter lcd_weights; /* filter weights, if any */ + FT_Bitmap_LcdFilterFunc lcd_filter_func; /* filtering callback */ +#else + FT_Vector lcd_geometry[3]; /* RGB subpixel positions */ +#endif + + FT_Int refcount; + + } FT_LibraryRec; + + + FT_BASE( FT_Renderer ) + FT_Lookup_Renderer( FT_Library library, + FT_Glyph_Format format, + FT_ListNode* node ); + + FT_BASE( FT_Error ) + FT_Render_Glyph_Internal( FT_Library library, + FT_GlyphSlot slot, + FT_Render_Mode render_mode ); + + typedef const char* + (*FT_Face_GetPostscriptNameFunc)( FT_Face face ); + + typedef FT_Error + (*FT_Face_GetGlyphNameFunc)( FT_Face face, + FT_UInt glyph_index, + FT_Pointer buffer, + FT_UInt buffer_max ); + + typedef FT_UInt + (*FT_Face_GetGlyphNameIndexFunc)( FT_Face face, + FT_String* glyph_name ); + + +#ifndef FT_CONFIG_OPTION_NO_DEFAULT_SYSTEM + + /************************************************************************** + * + * @function: + * FT_New_Memory + * + * @description: + * Creates a new memory object. + * + * @return: + * A pointer to the new memory object. 0 in case of error. + */ + FT_BASE( FT_Memory ) + FT_New_Memory( void ); + + + /************************************************************************** + * + * @function: + * FT_Done_Memory + * + * @description: + * Discards memory manager. + * + * @input: + * memory :: + * A handle to the memory manager. + */ + FT_BASE( void ) + FT_Done_Memory( FT_Memory memory ); + +#endif /* !FT_CONFIG_OPTION_NO_DEFAULT_SYSTEM */ + + + /* Define default raster's interface. The default raster is located in */ + /* `src/base/ftraster.c'. */ + /* */ + /* Client applications can register new rasters through the */ + /* FT_Set_Raster() API. */ + +#ifndef FT_NO_DEFAULT_RASTER + FT_EXPORT_VAR( FT_Raster_Funcs ) ft_default_raster; +#endif + + + /************************************************************************** + * + * @macro: + * FT_DEFINE_OUTLINE_FUNCS + * + * @description: + * Used to initialize an instance of FT_Outline_Funcs struct. The struct + * will be allocated in the global scope (or the scope where the macro is + * used). + */ +#define FT_DEFINE_OUTLINE_FUNCS( \ + class_, \ + move_to_, \ + line_to_, \ + conic_to_, \ + cubic_to_, \ + shift_, \ + delta_ ) \ + static const FT_Outline_Funcs class_ = \ + { \ + move_to_, \ + line_to_, \ + conic_to_, \ + cubic_to_, \ + shift_, \ + delta_ \ + }; + + + /************************************************************************** + * + * @macro: + * FT_DEFINE_RASTER_FUNCS + * + * @description: + * Used to initialize an instance of FT_Raster_Funcs struct. The struct + * will be allocated in the global scope (or the scope where the macro is + * used). + */ +#define FT_DEFINE_RASTER_FUNCS( \ + class_, \ + glyph_format_, \ + raster_new_, \ + raster_reset_, \ + raster_set_mode_, \ + raster_render_, \ + raster_done_ ) \ + const FT_Raster_Funcs class_ = \ + { \ + glyph_format_, \ + raster_new_, \ + raster_reset_, \ + raster_set_mode_, \ + raster_render_, \ + raster_done_ \ + }; + + + + /************************************************************************** + * + * @macro: + * FT_DEFINE_GLYPH + * + * @description: + * The struct will be allocated in the global scope (or the scope where + * the macro is used). + */ +#define FT_DEFINE_GLYPH( \ + class_, \ + size_, \ + format_, \ + init_, \ + done_, \ + copy_, \ + transform_, \ + bbox_, \ + prepare_ ) \ + FT_CALLBACK_TABLE_DEF \ + const FT_Glyph_Class class_ = \ + { \ + size_, \ + format_, \ + init_, \ + done_, \ + copy_, \ + transform_, \ + bbox_, \ + prepare_ \ + }; + + + /************************************************************************** + * + * @macro: + * FT_DECLARE_RENDERER + * + * @description: + * Used to create a forward declaration of a FT_Renderer_Class struct + * instance. + * + * @macro: + * FT_DEFINE_RENDERER + * + * @description: + * Used to initialize an instance of FT_Renderer_Class struct. + * + * The struct will be allocated in the global scope (or the scope where + * the macro is used). + */ +#define FT_DECLARE_RENDERER( class_ ) \ + FT_EXPORT_VAR( const FT_Renderer_Class ) class_; + +#define FT_DEFINE_RENDERER( \ + class_, \ + flags_, \ + size_, \ + name_, \ + version_, \ + requires_, \ + interface_, \ + init_, \ + done_, \ + get_interface_, \ + glyph_format_, \ + render_glyph_, \ + transform_glyph_, \ + get_glyph_cbox_, \ + set_mode_, \ + raster_class_ ) \ + FT_CALLBACK_TABLE_DEF \ + const FT_Renderer_Class class_ = \ + { \ + FT_DEFINE_ROOT_MODULE( flags_, \ + size_, \ + name_, \ + version_, \ + requires_, \ + interface_, \ + init_, \ + done_, \ + get_interface_ ) \ + glyph_format_, \ + \ + render_glyph_, \ + transform_glyph_, \ + get_glyph_cbox_, \ + set_mode_, \ + \ + raster_class_ \ + }; + + + /************************************************************************** + * + * @macro: + * FT_DECLARE_MODULE + * + * @description: + * Used to create a forward declaration of a FT_Module_Class struct + * instance. + * + * @macro: + * FT_DEFINE_MODULE + * + * @description: + * Used to initialize an instance of an FT_Module_Class struct. + * + * The struct will be allocated in the global scope (or the scope where + * the macro is used). + * + * @macro: + * FT_DEFINE_ROOT_MODULE + * + * @description: + * Used to initialize an instance of an FT_Module_Class struct inside + * another struct that contains it or in a function that initializes that + * containing struct. + */ +#define FT_DECLARE_MODULE( class_ ) \ + FT_CALLBACK_TABLE \ + const FT_Module_Class class_; + +#define FT_DEFINE_ROOT_MODULE( \ + flags_, \ + size_, \ + name_, \ + version_, \ + requires_, \ + interface_, \ + init_, \ + done_, \ + get_interface_ ) \ + { \ + flags_, \ + size_, \ + \ + name_, \ + version_, \ + requires_, \ + \ + interface_, \ + \ + init_, \ + done_, \ + get_interface_, \ + }, + +#define FT_DEFINE_MODULE( \ + class_, \ + flags_, \ + size_, \ + name_, \ + version_, \ + requires_, \ + interface_, \ + init_, \ + done_, \ + get_interface_ ) \ + FT_CALLBACK_TABLE_DEF \ + const FT_Module_Class class_ = \ + { \ + flags_, \ + size_, \ + \ + name_, \ + version_, \ + requires_, \ + \ + interface_, \ + \ + init_, \ + done_, \ + get_interface_, \ + }; + + +FT_END_HEADER + +#endif /* FTOBJS_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftpsprop.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftpsprop.h new file mode 100644 index 0000000..574837f --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftpsprop.h @@ -0,0 +1,48 @@ +/**************************************************************************** + * + * ftpsprop.h + * + * Get and set properties of PostScript drivers (specification). + * + * Copyright (C) 2017-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTPSPROP_H_ +#define FTPSPROP_H_ + + +#include +#include FT_FREETYPE_H + + +FT_BEGIN_HEADER + + + FT_BASE_CALLBACK( FT_Error ) + ps_property_set( FT_Module module, /* PS_Driver */ + const char* property_name, + const void* value, + FT_Bool value_is_string ); + + FT_BASE_CALLBACK( FT_Error ) + ps_property_get( FT_Module module, /* PS_Driver */ + const char* property_name, + void* value ); + + +FT_END_HEADER + + +#endif /* FTPSPROP_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftrfork.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftrfork.h new file mode 100644 index 0000000..75b3e53 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftrfork.h @@ -0,0 +1,246 @@ +/**************************************************************************** + * + * ftrfork.h + * + * Embedded resource forks accessor (specification). + * + * Copyright (C) 2004-2019 by + * Masatake YAMATO and Redhat K.K. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + +/**************************************************************************** + * Development of the code in this file is support of + * Information-technology Promotion Agency, Japan. + */ + + +#ifndef FTRFORK_H_ +#define FTRFORK_H_ + + +#include +#include FT_INTERNAL_OBJECTS_H + + +FT_BEGIN_HEADER + + + /* Number of guessing rules supported in `FT_Raccess_Guess'. */ + /* Don't forget to increment the number if you add a new guessing rule. */ +#define FT_RACCESS_N_RULES 9 + + + /* A structure to describe a reference in a resource by its resource ID */ + /* and internal offset. The `POST' resource expects to be concatenated */ + /* by the order of resource IDs instead of its appearance in the file. */ + + typedef struct FT_RFork_Ref_ + { + FT_Short res_id; + FT_Long offset; + + } FT_RFork_Ref; + + +#ifdef FT_CONFIG_OPTION_GUESSING_EMBEDDED_RFORK + typedef FT_Error + (*ft_raccess_guess_func)( FT_Library library, + FT_Stream stream, + char *base_file_name, + char **result_file_name, + FT_Long *result_offset ); + + typedef enum FT_RFork_Rule_ { + FT_RFork_Rule_invalid = -2, + FT_RFork_Rule_uknown, /* -1 */ + FT_RFork_Rule_apple_double, + FT_RFork_Rule_apple_single, + FT_RFork_Rule_darwin_ufs_export, + FT_RFork_Rule_darwin_newvfs, + FT_RFork_Rule_darwin_hfsplus, + FT_RFork_Rule_vfat, + FT_RFork_Rule_linux_cap, + FT_RFork_Rule_linux_double, + FT_RFork_Rule_linux_netatalk + } FT_RFork_Rule; + + /* For fast translation between rule index and rule type, + * the macros FT_RFORK_xxx should be kept consistent with the + * raccess_guess_funcs table + */ + typedef struct ft_raccess_guess_rec_ { + ft_raccess_guess_func func; + FT_RFork_Rule type; + } ft_raccess_guess_rec; + + +#define CONST_FT_RFORK_RULE_ARRAY_BEGIN( name, type ) \ + static const type name[] = { +#define CONST_FT_RFORK_RULE_ARRAY_ENTRY( func_suffix, type_suffix ) \ + { raccess_guess_ ## func_suffix, \ + FT_RFork_Rule_ ## type_suffix }, + /* this array is a storage, thus a final `;' is needed */ +#define CONST_FT_RFORK_RULE_ARRAY_END }; + +#endif /* FT_CONFIG_OPTION_GUESSING_EMBEDDED_RFORK */ + + + /************************************************************************** + * + * @function: + * FT_Raccess_Guess + * + * @description: + * Guess a file name and offset where the actual resource fork is stored. + * The macro FT_RACCESS_N_RULES holds the number of guessing rules; the + * guessed result for the Nth rule is represented as a triplet: a new + * file name (new_names[N]), a file offset (offsets[N]), and an error + * code (errors[N]). + * + * @input: + * library :: + * A FreeType library instance. + * + * stream :: + * A file stream containing the resource fork. + * + * base_name :: + * The (base) file name of the resource fork used for some guessing + * rules. + * + * @output: + * new_names :: + * An array of guessed file names in which the resource forks may + * exist. If 'new_names[N]' is `NULL`, the guessed file name is equal + * to `base_name`. + * + * offsets :: + * An array of guessed file offsets. 'offsets[N]' holds the file + * offset of the possible start of the resource fork in file + * 'new_names[N]'. + * + * errors :: + * An array of FreeType error codes. 'errors[N]' is the error code of + * Nth guessing rule function. If 'errors[N]' is not FT_Err_Ok, + * 'new_names[N]' and 'offsets[N]' are meaningless. + */ + FT_BASE( void ) + FT_Raccess_Guess( FT_Library library, + FT_Stream stream, + char* base_name, + char** new_names, + FT_Long* offsets, + FT_Error* errors ); + + + /************************************************************************** + * + * @function: + * FT_Raccess_Get_HeaderInfo + * + * @description: + * Get the information from the header of resource fork. The information + * includes the file offset where the resource map starts, and the file + * offset where the resource data starts. `FT_Raccess_Get_DataOffsets` + * requires these two data. + * + * @input: + * library :: + * A FreeType library instance. + * + * stream :: + * A file stream containing the resource fork. + * + * rfork_offset :: + * The file offset where the resource fork starts. + * + * @output: + * map_offset :: + * The file offset where the resource map starts. + * + * rdata_pos :: + * The file offset where the resource data starts. + * + * @return: + * FreeType error code. FT_Err_Ok means success. + */ + FT_BASE( FT_Error ) + FT_Raccess_Get_HeaderInfo( FT_Library library, + FT_Stream stream, + FT_Long rfork_offset, + FT_Long *map_offset, + FT_Long *rdata_pos ); + + + /************************************************************************** + * + * @function: + * FT_Raccess_Get_DataOffsets + * + * @description: + * Get the data offsets for a tag in a resource fork. Offsets are stored + * in an array because, in some cases, resources in a resource fork have + * the same tag. + * + * @input: + * library :: + * A FreeType library instance. + * + * stream :: + * A file stream containing the resource fork. + * + * map_offset :: + * The file offset where the resource map starts. + * + * rdata_pos :: + * The file offset where the resource data starts. + * + * tag :: + * The resource tag. + * + * sort_by_res_id :: + * A Boolean to sort the fragmented resource by their ids. The + * fragmented resources for 'POST' resource should be sorted to restore + * Type1 font properly. For 'sfnt' resources, sorting may induce a + * different order of the faces in comparison to that by QuickDraw API. + * + * @output: + * offsets :: + * The stream offsets for the resource data specified by 'tag'. This + * array is allocated by the function, so you have to call @ft_mem_free + * after use. + * + * count :: + * The length of offsets array. + * + * @return: + * FreeType error code. FT_Err_Ok means success. + * + * @note: + * Normally you should use `FT_Raccess_Get_HeaderInfo` to get the value + * for `map_offset` and `rdata_pos`. + */ + FT_BASE( FT_Error ) + FT_Raccess_Get_DataOffsets( FT_Library library, + FT_Stream stream, + FT_Long map_offset, + FT_Long rdata_pos, + FT_Long tag, + FT_Bool sort_by_res_id, + FT_Long **offsets, + FT_Long *count ); + + +FT_END_HEADER + +#endif /* FTRFORK_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftserv.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftserv.h new file mode 100644 index 0000000..8836cf3 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftserv.h @@ -0,0 +1,521 @@ +/**************************************************************************** + * + * ftserv.h + * + * The FreeType services (specification only). + * + * Copyright (C) 2003-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + /************************************************************************** + * + * Each module can export one or more 'services'. Each service is + * identified by a constant string and modeled by a pointer; the latter + * generally corresponds to a structure containing function pointers. + * + * Note that a service's data cannot be a mere function pointer because in + * C it is possible that function pointers might be implemented differently + * than data pointers (e.g. 48 bits instead of 32). + * + */ + + +#ifndef FTSERV_H_ +#define FTSERV_H_ + + +FT_BEGIN_HEADER + + /************************************************************************** + * + * @macro: + * FT_FACE_FIND_SERVICE + * + * @description: + * This macro is used to look up a service from a face's driver module. + * + * @input: + * face :: + * The source face handle. + * + * id :: + * A string describing the service as defined in the service's header + * files (e.g. FT_SERVICE_ID_MULTI_MASTERS which expands to + * 'multi-masters'). It is automatically prefixed with + * `FT_SERVICE_ID_`. + * + * @output: + * ptr :: + * A variable that receives the service pointer. Will be `NULL` if not + * found. + */ +#ifdef __cplusplus + +#define FT_FACE_FIND_SERVICE( face, ptr, id ) \ + FT_BEGIN_STMNT \ + FT_Module module = FT_MODULE( FT_FACE( face )->driver ); \ + FT_Pointer _tmp_ = NULL; \ + FT_Pointer* _pptr_ = (FT_Pointer*)&(ptr); \ + \ + \ + if ( module->clazz->get_interface ) \ + _tmp_ = module->clazz->get_interface( module, FT_SERVICE_ID_ ## id ); \ + *_pptr_ = _tmp_; \ + FT_END_STMNT + +#else /* !C++ */ + +#define FT_FACE_FIND_SERVICE( face, ptr, id ) \ + FT_BEGIN_STMNT \ + FT_Module module = FT_MODULE( FT_FACE( face )->driver ); \ + FT_Pointer _tmp_ = NULL; \ + \ + if ( module->clazz->get_interface ) \ + _tmp_ = module->clazz->get_interface( module, FT_SERVICE_ID_ ## id ); \ + ptr = _tmp_; \ + FT_END_STMNT + +#endif /* !C++ */ + + + /************************************************************************** + * + * @macro: + * FT_FACE_FIND_GLOBAL_SERVICE + * + * @description: + * This macro is used to look up a service from all modules. + * + * @input: + * face :: + * The source face handle. + * + * id :: + * A string describing the service as defined in the service's header + * files (e.g. FT_SERVICE_ID_MULTI_MASTERS which expands to + * 'multi-masters'). It is automatically prefixed with + * `FT_SERVICE_ID_`. + * + * @output: + * ptr :: + * A variable that receives the service pointer. Will be `NULL` if not + * found. + */ +#ifdef __cplusplus + +#define FT_FACE_FIND_GLOBAL_SERVICE( face, ptr, id ) \ + FT_BEGIN_STMNT \ + FT_Module module = FT_MODULE( FT_FACE( face )->driver ); \ + FT_Pointer _tmp_; \ + FT_Pointer* _pptr_ = (FT_Pointer*)&(ptr); \ + \ + \ + _tmp_ = ft_module_get_service( module, FT_SERVICE_ID_ ## id, 1 ); \ + *_pptr_ = _tmp_; \ + FT_END_STMNT + +#else /* !C++ */ + +#define FT_FACE_FIND_GLOBAL_SERVICE( face, ptr, id ) \ + FT_BEGIN_STMNT \ + FT_Module module = FT_MODULE( FT_FACE( face )->driver ); \ + FT_Pointer _tmp_; \ + \ + \ + _tmp_ = ft_module_get_service( module, FT_SERVICE_ID_ ## id, 1 ); \ + ptr = _tmp_; \ + FT_END_STMNT + +#endif /* !C++ */ + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** S E R V I C E D E S C R I P T O R S *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + /* + * The following structure is used to _describe_ a given service to the + * library. This is useful to build simple static service lists. + */ + typedef struct FT_ServiceDescRec_ + { + const char* serv_id; /* service name */ + const void* serv_data; /* service pointer/data */ + + } FT_ServiceDescRec; + + typedef const FT_ServiceDescRec* FT_ServiceDesc; + + + /************************************************************************** + * + * @macro: + * FT_DEFINE_SERVICEDESCREC1 + * FT_DEFINE_SERVICEDESCREC2 + * FT_DEFINE_SERVICEDESCREC3 + * FT_DEFINE_SERVICEDESCREC4 + * FT_DEFINE_SERVICEDESCREC5 + * FT_DEFINE_SERVICEDESCREC6 + * FT_DEFINE_SERVICEDESCREC7 + * FT_DEFINE_SERVICEDESCREC8 + * FT_DEFINE_SERVICEDESCREC9 + * FT_DEFINE_SERVICEDESCREC10 + * + * @description: + * Used to initialize an array of FT_ServiceDescRec structures. + * + * The array will be allocated in the global scope (or the scope where + * the macro is used). + */ +#define FT_DEFINE_SERVICEDESCREC1( class_, \ + serv_id_1, serv_data_1 ) \ + static const FT_ServiceDescRec class_[] = \ + { \ + { serv_id_1, serv_data_1 }, \ + { NULL, NULL } \ + }; + +#define FT_DEFINE_SERVICEDESCREC2( class_, \ + serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2 ) \ + static const FT_ServiceDescRec class_[] = \ + { \ + { serv_id_1, serv_data_1 }, \ + { serv_id_2, serv_data_2 }, \ + { NULL, NULL } \ + }; + +#define FT_DEFINE_SERVICEDESCREC3( class_, \ + serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2, \ + serv_id_3, serv_data_3 ) \ + static const FT_ServiceDescRec class_[] = \ + { \ + { serv_id_1, serv_data_1 }, \ + { serv_id_2, serv_data_2 }, \ + { serv_id_3, serv_data_3 }, \ + { NULL, NULL } \ + }; + +#define FT_DEFINE_SERVICEDESCREC4( class_, \ + serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2, \ + serv_id_3, serv_data_3, \ + serv_id_4, serv_data_4 ) \ + static const FT_ServiceDescRec class_[] = \ + { \ + { serv_id_1, serv_data_1 }, \ + { serv_id_2, serv_data_2 }, \ + { serv_id_3, serv_data_3 }, \ + { serv_id_4, serv_data_4 }, \ + { NULL, NULL } \ + }; + +#define FT_DEFINE_SERVICEDESCREC5( class_, \ + serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2, \ + serv_id_3, serv_data_3, \ + serv_id_4, serv_data_4, \ + serv_id_5, serv_data_5 ) \ + static const FT_ServiceDescRec class_[] = \ + { \ + { serv_id_1, serv_data_1 }, \ + { serv_id_2, serv_data_2 }, \ + { serv_id_3, serv_data_3 }, \ + { serv_id_4, serv_data_4 }, \ + { serv_id_5, serv_data_5 }, \ + { NULL, NULL } \ + }; + +#define FT_DEFINE_SERVICEDESCREC6( class_, \ + serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2, \ + serv_id_3, serv_data_3, \ + serv_id_4, serv_data_4, \ + serv_id_5, serv_data_5, \ + serv_id_6, serv_data_6 ) \ + static const FT_ServiceDescRec class_[] = \ + { \ + { serv_id_1, serv_data_1 }, \ + { serv_id_2, serv_data_2 }, \ + { serv_id_3, serv_data_3 }, \ + { serv_id_4, serv_data_4 }, \ + { serv_id_5, serv_data_5 }, \ + { serv_id_6, serv_data_6 }, \ + { NULL, NULL } \ + }; + +#define FT_DEFINE_SERVICEDESCREC7( class_, \ + serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2, \ + serv_id_3, serv_data_3, \ + serv_id_4, serv_data_4, \ + serv_id_5, serv_data_5, \ + serv_id_6, serv_data_6, \ + serv_id_7, serv_data_7 ) \ + static const FT_ServiceDescRec class_[] = \ + { \ + { serv_id_1, serv_data_1 }, \ + { serv_id_2, serv_data_2 }, \ + { serv_id_3, serv_data_3 }, \ + { serv_id_4, serv_data_4 }, \ + { serv_id_5, serv_data_5 }, \ + { serv_id_6, serv_data_6 }, \ + { serv_id_7, serv_data_7 }, \ + { NULL, NULL } \ + }; + +#define FT_DEFINE_SERVICEDESCREC8( class_, \ + serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2, \ + serv_id_3, serv_data_3, \ + serv_id_4, serv_data_4, \ + serv_id_5, serv_data_5, \ + serv_id_6, serv_data_6, \ + serv_id_7, serv_data_7, \ + serv_id_8, serv_data_8 ) \ + static const FT_ServiceDescRec class_[] = \ + { \ + { serv_id_1, serv_data_1 }, \ + { serv_id_2, serv_data_2 }, \ + { serv_id_3, serv_data_3 }, \ + { serv_id_4, serv_data_4 }, \ + { serv_id_5, serv_data_5 }, \ + { serv_id_6, serv_data_6 }, \ + { serv_id_7, serv_data_7 }, \ + { serv_id_8, serv_data_8 }, \ + { NULL, NULL } \ + }; + +#define FT_DEFINE_SERVICEDESCREC9( class_, \ + serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2, \ + serv_id_3, serv_data_3, \ + serv_id_4, serv_data_4, \ + serv_id_5, serv_data_5, \ + serv_id_6, serv_data_6, \ + serv_id_7, serv_data_7, \ + serv_id_8, serv_data_8, \ + serv_id_9, serv_data_9 ) \ + static const FT_ServiceDescRec class_[] = \ + { \ + { serv_id_1, serv_data_1 }, \ + { serv_id_2, serv_data_2 }, \ + { serv_id_3, serv_data_3 }, \ + { serv_id_4, serv_data_4 }, \ + { serv_id_5, serv_data_5 }, \ + { serv_id_6, serv_data_6 }, \ + { serv_id_7, serv_data_7 }, \ + { serv_id_8, serv_data_8 }, \ + { serv_id_9, serv_data_9 }, \ + { NULL, NULL } \ + }; + +#define FT_DEFINE_SERVICEDESCREC10( class_, \ + serv_id_1, serv_data_1, \ + serv_id_2, serv_data_2, \ + serv_id_3, serv_data_3, \ + serv_id_4, serv_data_4, \ + serv_id_5, serv_data_5, \ + serv_id_6, serv_data_6, \ + serv_id_7, serv_data_7, \ + serv_id_8, serv_data_8, \ + serv_id_9, serv_data_9, \ + serv_id_10, serv_data_10 ) \ + static const FT_ServiceDescRec class_[] = \ + { \ + { serv_id_1, serv_data_1 }, \ + { serv_id_2, serv_data_2 }, \ + { serv_id_3, serv_data_3 }, \ + { serv_id_4, serv_data_4 }, \ + { serv_id_5, serv_data_5 }, \ + { serv_id_6, serv_data_6 }, \ + { serv_id_7, serv_data_7 }, \ + { serv_id_8, serv_data_8 }, \ + { serv_id_9, serv_data_9 }, \ + { serv_id_10, serv_data_10 }, \ + { NULL, NULL } \ + }; + + + /* + * Parse a list of FT_ServiceDescRec descriptors and look for a specific + * service by ID. Note that the last element in the array must be { NULL, + * NULL }, and that the function should return NULL if the service isn't + * available. + * + * This function can be used by modules to implement their `get_service' + * method. + */ + FT_BASE( FT_Pointer ) + ft_service_list_lookup( FT_ServiceDesc service_descriptors, + const char* service_id ); + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** S E R V I C E S C A C H E *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + /* + * This structure is used to store a cache for several frequently used + * services. It is the type of `face->internal->services'. You should + * only use FT_FACE_LOOKUP_SERVICE to access it. + * + * All fields should have the type FT_Pointer to relax compilation + * dependencies. We assume the developer isn't completely stupid. + * + * Each field must be named `service_XXXX' where `XXX' corresponds to the + * correct FT_SERVICE_ID_XXXX macro. See the definition of + * FT_FACE_LOOKUP_SERVICE below how this is implemented. + * + */ + typedef struct FT_ServiceCacheRec_ + { + FT_Pointer service_POSTSCRIPT_FONT_NAME; + FT_Pointer service_MULTI_MASTERS; + FT_Pointer service_METRICS_VARIATIONS; + FT_Pointer service_GLYPH_DICT; + FT_Pointer service_PFR_METRICS; + FT_Pointer service_WINFNT; + + } FT_ServiceCacheRec, *FT_ServiceCache; + + + /* + * A magic number used within the services cache. + */ + + /* ensure that value `1' has the same width as a pointer */ +#define FT_SERVICE_UNAVAILABLE ((FT_Pointer)~(FT_PtrDist)1) + + + /************************************************************************** + * + * @macro: + * FT_FACE_LOOKUP_SERVICE + * + * @description: + * This macro is used to look up a service from a face's driver module + * using its cache. + * + * @input: + * face :: + * The source face handle containing the cache. + * + * field :: + * The field name in the cache. + * + * id :: + * The service ID. + * + * @output: + * ptr :: + * A variable receiving the service data. `NULL` if not available. + */ +#ifdef __cplusplus + +#define FT_FACE_LOOKUP_SERVICE( face, ptr, id ) \ + FT_BEGIN_STMNT \ + FT_Pointer svc; \ + FT_Pointer* Pptr = (FT_Pointer*)&(ptr); \ + \ + \ + svc = FT_FACE( face )->internal->services. service_ ## id; \ + if ( svc == FT_SERVICE_UNAVAILABLE ) \ + svc = NULL; \ + else if ( svc == NULL ) \ + { \ + FT_FACE_FIND_SERVICE( face, svc, id ); \ + \ + FT_FACE( face )->internal->services. service_ ## id = \ + (FT_Pointer)( svc != NULL ? svc \ + : FT_SERVICE_UNAVAILABLE ); \ + } \ + *Pptr = svc; \ + FT_END_STMNT + +#else /* !C++ */ + +#define FT_FACE_LOOKUP_SERVICE( face, ptr, id ) \ + FT_BEGIN_STMNT \ + FT_Pointer svc; \ + \ + \ + svc = FT_FACE( face )->internal->services. service_ ## id; \ + if ( svc == FT_SERVICE_UNAVAILABLE ) \ + svc = NULL; \ + else if ( svc == NULL ) \ + { \ + FT_FACE_FIND_SERVICE( face, svc, id ); \ + \ + FT_FACE( face )->internal->services. service_ ## id = \ + (FT_Pointer)( svc != NULL ? svc \ + : FT_SERVICE_UNAVAILABLE ); \ + } \ + ptr = svc; \ + FT_END_STMNT + +#endif /* !C++ */ + + /* + * A macro used to define new service structure types. + */ + +#define FT_DEFINE_SERVICE( name ) \ + typedef struct FT_Service_ ## name ## Rec_ \ + FT_Service_ ## name ## Rec ; \ + typedef struct FT_Service_ ## name ## Rec_ \ + const * FT_Service_ ## name ; \ + struct FT_Service_ ## name ## Rec_ + + /* */ + + /* + * The header files containing the services. + */ + +#define FT_SERVICE_BDF_H +#define FT_SERVICE_CFF_TABLE_LOAD_H +#define FT_SERVICE_CID_H +#define FT_SERVICE_FONT_FORMAT_H +#define FT_SERVICE_GLYPH_DICT_H +#define FT_SERVICE_GX_VALIDATE_H +#define FT_SERVICE_KERNING_H +#define FT_SERVICE_METRICS_VARIATIONS_H +#define FT_SERVICE_MULTIPLE_MASTERS_H +#define FT_SERVICE_OPENTYPE_VALIDATE_H +#define FT_SERVICE_PFR_H +#define FT_SERVICE_POSTSCRIPT_CMAPS_H +#define FT_SERVICE_POSTSCRIPT_INFO_H +#define FT_SERVICE_POSTSCRIPT_NAME_H +#define FT_SERVICE_PROPERTIES_H +#define FT_SERVICE_SFNT_H +#define FT_SERVICE_TRUETYPE_ENGINE_H +#define FT_SERVICE_TRUETYPE_GLYF_H +#define FT_SERVICE_TT_CMAP_H +#define FT_SERVICE_WINFNT_H + + /* */ + +FT_END_HEADER + +#endif /* FTSERV_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftstream.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftstream.h new file mode 100644 index 0000000..e4dca0b --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftstream.h @@ -0,0 +1,561 @@ +/**************************************************************************** + * + * ftstream.h + * + * Stream handling (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTSTREAM_H_ +#define FTSTREAM_H_ + + +#include +#include FT_SYSTEM_H +#include FT_INTERNAL_OBJECTS_H + + +FT_BEGIN_HEADER + + + /* format of an 8-bit frame_op value: */ + /* */ + /* bit 76543210 */ + /* xxxxxxes */ + /* */ + /* s is set to 1 if the value is signed. */ + /* e is set to 1 if the value is little-endian. */ + /* xxx is a command. */ + +#define FT_FRAME_OP_SHIFT 2 +#define FT_FRAME_OP_SIGNED 1 +#define FT_FRAME_OP_LITTLE 2 +#define FT_FRAME_OP_COMMAND( x ) ( x >> FT_FRAME_OP_SHIFT ) + +#define FT_MAKE_FRAME_OP( command, little, sign ) \ + ( ( command << FT_FRAME_OP_SHIFT ) | ( little << 1 ) | sign ) + +#define FT_FRAME_OP_END 0 +#define FT_FRAME_OP_START 1 /* start a new frame */ +#define FT_FRAME_OP_BYTE 2 /* read 1-byte value */ +#define FT_FRAME_OP_SHORT 3 /* read 2-byte value */ +#define FT_FRAME_OP_LONG 4 /* read 4-byte value */ +#define FT_FRAME_OP_OFF3 5 /* read 3-byte value */ +#define FT_FRAME_OP_BYTES 6 /* read a bytes sequence */ + + + typedef enum FT_Frame_Op_ + { + ft_frame_end = 0, + ft_frame_start = FT_MAKE_FRAME_OP( FT_FRAME_OP_START, 0, 0 ), + + ft_frame_byte = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTE, 0, 0 ), + ft_frame_schar = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTE, 0, 1 ), + + ft_frame_ushort_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 0, 0 ), + ft_frame_short_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 0, 1 ), + ft_frame_ushort_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 1, 0 ), + ft_frame_short_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_SHORT, 1, 1 ), + + ft_frame_ulong_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 0, 0 ), + ft_frame_long_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 0, 1 ), + ft_frame_ulong_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 1, 0 ), + ft_frame_long_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_LONG, 1, 1 ), + + ft_frame_uoff3_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 0, 0 ), + ft_frame_off3_be = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 0, 1 ), + ft_frame_uoff3_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 1, 0 ), + ft_frame_off3_le = FT_MAKE_FRAME_OP( FT_FRAME_OP_OFF3, 1, 1 ), + + ft_frame_bytes = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTES, 0, 0 ), + ft_frame_skip = FT_MAKE_FRAME_OP( FT_FRAME_OP_BYTES, 0, 1 ) + + } FT_Frame_Op; + + + typedef struct FT_Frame_Field_ + { + FT_Byte value; + FT_Byte size; + FT_UShort offset; + + } FT_Frame_Field; + + + /* Construct an FT_Frame_Field out of a structure type and a field name. */ + /* The structure type must be set in the FT_STRUCTURE macro before */ + /* calling the FT_FRAME_START() macro. */ + /* */ +#define FT_FIELD_SIZE( f ) \ + (FT_Byte)sizeof ( ((FT_STRUCTURE*)0)->f ) + +#define FT_FIELD_SIZE_DELTA( f ) \ + (FT_Byte)sizeof ( ((FT_STRUCTURE*)0)->f[0] ) + +#define FT_FIELD_OFFSET( f ) \ + (FT_UShort)( offsetof( FT_STRUCTURE, f ) ) + +#define FT_FRAME_FIELD( frame_op, field ) \ + { \ + frame_op, \ + FT_FIELD_SIZE( field ), \ + FT_FIELD_OFFSET( field ) \ + } + +#define FT_MAKE_EMPTY_FIELD( frame_op ) { frame_op, 0, 0 } + +#define FT_FRAME_START( size ) { ft_frame_start, 0, size } +#define FT_FRAME_END { ft_frame_end, 0, 0 } + +#define FT_FRAME_LONG( f ) FT_FRAME_FIELD( ft_frame_long_be, f ) +#define FT_FRAME_ULONG( f ) FT_FRAME_FIELD( ft_frame_ulong_be, f ) +#define FT_FRAME_SHORT( f ) FT_FRAME_FIELD( ft_frame_short_be, f ) +#define FT_FRAME_USHORT( f ) FT_FRAME_FIELD( ft_frame_ushort_be, f ) +#define FT_FRAME_OFF3( f ) FT_FRAME_FIELD( ft_frame_off3_be, f ) +#define FT_FRAME_UOFF3( f ) FT_FRAME_FIELD( ft_frame_uoff3_be, f ) +#define FT_FRAME_BYTE( f ) FT_FRAME_FIELD( ft_frame_byte, f ) +#define FT_FRAME_CHAR( f ) FT_FRAME_FIELD( ft_frame_schar, f ) + +#define FT_FRAME_LONG_LE( f ) FT_FRAME_FIELD( ft_frame_long_le, f ) +#define FT_FRAME_ULONG_LE( f ) FT_FRAME_FIELD( ft_frame_ulong_le, f ) +#define FT_FRAME_SHORT_LE( f ) FT_FRAME_FIELD( ft_frame_short_le, f ) +#define FT_FRAME_USHORT_LE( f ) FT_FRAME_FIELD( ft_frame_ushort_le, f ) +#define FT_FRAME_OFF3_LE( f ) FT_FRAME_FIELD( ft_frame_off3_le, f ) +#define FT_FRAME_UOFF3_LE( f ) FT_FRAME_FIELD( ft_frame_uoff3_le, f ) + +#define FT_FRAME_SKIP_LONG { ft_frame_long_be, 0, 0 } +#define FT_FRAME_SKIP_SHORT { ft_frame_short_be, 0, 0 } +#define FT_FRAME_SKIP_BYTE { ft_frame_byte, 0, 0 } + +#define FT_FRAME_BYTES( field, count ) \ + { \ + ft_frame_bytes, \ + count, \ + FT_FIELD_OFFSET( field ) \ + } + +#define FT_FRAME_SKIP_BYTES( count ) { ft_frame_skip, count, 0 } + + + /************************************************************************** + * + * Integer extraction macros -- the 'buffer' parameter must ALWAYS be of + * type 'char*' or equivalent (1-byte elements). + */ + +#define FT_BYTE_( p, i ) ( ((const FT_Byte*)(p))[(i)] ) + +#define FT_INT16( x ) ( (FT_Int16)(x) ) +#define FT_UINT16( x ) ( (FT_UInt16)(x) ) +#define FT_INT32( x ) ( (FT_Int32)(x) ) +#define FT_UINT32( x ) ( (FT_UInt32)(x) ) + + +#define FT_BYTE_U16( p, i, s ) ( FT_UINT16( FT_BYTE_( p, i ) ) << (s) ) +#define FT_BYTE_U32( p, i, s ) ( FT_UINT32( FT_BYTE_( p, i ) ) << (s) ) + + + /* + * `FT_PEEK_XXX' are generic macros to get data from a buffer position. No + * safety checks are performed. + */ +#define FT_PEEK_SHORT( p ) FT_INT16( FT_BYTE_U16( p, 0, 8 ) | \ + FT_BYTE_U16( p, 1, 0 ) ) + +#define FT_PEEK_USHORT( p ) FT_UINT16( FT_BYTE_U16( p, 0, 8 ) | \ + FT_BYTE_U16( p, 1, 0 ) ) + +#define FT_PEEK_LONG( p ) FT_INT32( FT_BYTE_U32( p, 0, 24 ) | \ + FT_BYTE_U32( p, 1, 16 ) | \ + FT_BYTE_U32( p, 2, 8 ) | \ + FT_BYTE_U32( p, 3, 0 ) ) + +#define FT_PEEK_ULONG( p ) FT_UINT32( FT_BYTE_U32( p, 0, 24 ) | \ + FT_BYTE_U32( p, 1, 16 ) | \ + FT_BYTE_U32( p, 2, 8 ) | \ + FT_BYTE_U32( p, 3, 0 ) ) + +#define FT_PEEK_OFF3( p ) FT_INT32( FT_BYTE_U32( p, 0, 16 ) | \ + FT_BYTE_U32( p, 1, 8 ) | \ + FT_BYTE_U32( p, 2, 0 ) ) + +#define FT_PEEK_UOFF3( p ) FT_UINT32( FT_BYTE_U32( p, 0, 16 ) | \ + FT_BYTE_U32( p, 1, 8 ) | \ + FT_BYTE_U32( p, 2, 0 ) ) + +#define FT_PEEK_SHORT_LE( p ) FT_INT16( FT_BYTE_U16( p, 1, 8 ) | \ + FT_BYTE_U16( p, 0, 0 ) ) + +#define FT_PEEK_USHORT_LE( p ) FT_UINT16( FT_BYTE_U16( p, 1, 8 ) | \ + FT_BYTE_U16( p, 0, 0 ) ) + +#define FT_PEEK_LONG_LE( p ) FT_INT32( FT_BYTE_U32( p, 3, 24 ) | \ + FT_BYTE_U32( p, 2, 16 ) | \ + FT_BYTE_U32( p, 1, 8 ) | \ + FT_BYTE_U32( p, 0, 0 ) ) + +#define FT_PEEK_ULONG_LE( p ) FT_UINT32( FT_BYTE_U32( p, 3, 24 ) | \ + FT_BYTE_U32( p, 2, 16 ) | \ + FT_BYTE_U32( p, 1, 8 ) | \ + FT_BYTE_U32( p, 0, 0 ) ) + +#define FT_PEEK_OFF3_LE( p ) FT_INT32( FT_BYTE_U32( p, 2, 16 ) | \ + FT_BYTE_U32( p, 1, 8 ) | \ + FT_BYTE_U32( p, 0, 0 ) ) + +#define FT_PEEK_UOFF3_LE( p ) FT_UINT32( FT_BYTE_U32( p, 2, 16 ) | \ + FT_BYTE_U32( p, 1, 8 ) | \ + FT_BYTE_U32( p, 0, 0 ) ) + + /* + * `FT_NEXT_XXX' are generic macros to get data from a buffer position + * which is then increased appropriately. No safety checks are performed. + */ +#define FT_NEXT_CHAR( buffer ) \ + ( (signed char)*buffer++ ) + +#define FT_NEXT_BYTE( buffer ) \ + ( (unsigned char)*buffer++ ) + +#define FT_NEXT_SHORT( buffer ) \ + ( (short)( buffer += 2, FT_PEEK_SHORT( buffer - 2 ) ) ) + +#define FT_NEXT_USHORT( buffer ) \ + ( (unsigned short)( buffer += 2, FT_PEEK_USHORT( buffer - 2 ) ) ) + +#define FT_NEXT_OFF3( buffer ) \ + ( (long)( buffer += 3, FT_PEEK_OFF3( buffer - 3 ) ) ) + +#define FT_NEXT_UOFF3( buffer ) \ + ( (unsigned long)( buffer += 3, FT_PEEK_UOFF3( buffer - 3 ) ) ) + +#define FT_NEXT_LONG( buffer ) \ + ( (long)( buffer += 4, FT_PEEK_LONG( buffer - 4 ) ) ) + +#define FT_NEXT_ULONG( buffer ) \ + ( (unsigned long)( buffer += 4, FT_PEEK_ULONG( buffer - 4 ) ) ) + + +#define FT_NEXT_SHORT_LE( buffer ) \ + ( (short)( buffer += 2, FT_PEEK_SHORT_LE( buffer - 2 ) ) ) + +#define FT_NEXT_USHORT_LE( buffer ) \ + ( (unsigned short)( buffer += 2, FT_PEEK_USHORT_LE( buffer - 2 ) ) ) + +#define FT_NEXT_OFF3_LE( buffer ) \ + ( (long)( buffer += 3, FT_PEEK_OFF3_LE( buffer - 3 ) ) ) + +#define FT_NEXT_UOFF3_LE( buffer ) \ + ( (unsigned long)( buffer += 3, FT_PEEK_UOFF3_LE( buffer - 3 ) ) ) + +#define FT_NEXT_LONG_LE( buffer ) \ + ( (long)( buffer += 4, FT_PEEK_LONG_LE( buffer - 4 ) ) ) + +#define FT_NEXT_ULONG_LE( buffer ) \ + ( (unsigned long)( buffer += 4, FT_PEEK_ULONG_LE( buffer - 4 ) ) ) + + + /************************************************************************** + * + * The `FT_GET_XXX` macros use an implicit 'stream' variable. + * + * Note that a call to `FT_STREAM_SEEK` or `FT_STREAM_POS` has **no** + * effect on `FT_GET_XXX`! They operate on `stream->pos`, while + * `FT_GET_XXX` use `stream->cursor`. + */ +#if 0 +#define FT_GET_MACRO( type ) FT_NEXT_ ## type ( stream->cursor ) + +#define FT_GET_CHAR() FT_GET_MACRO( CHAR ) +#define FT_GET_BYTE() FT_GET_MACRO( BYTE ) +#define FT_GET_SHORT() FT_GET_MACRO( SHORT ) +#define FT_GET_USHORT() FT_GET_MACRO( USHORT ) +#define FT_GET_OFF3() FT_GET_MACRO( OFF3 ) +#define FT_GET_UOFF3() FT_GET_MACRO( UOFF3 ) +#define FT_GET_LONG() FT_GET_MACRO( LONG ) +#define FT_GET_ULONG() FT_GET_MACRO( ULONG ) +#define FT_GET_TAG4() FT_GET_MACRO( ULONG ) + +#define FT_GET_SHORT_LE() FT_GET_MACRO( SHORT_LE ) +#define FT_GET_USHORT_LE() FT_GET_MACRO( USHORT_LE ) +#define FT_GET_LONG_LE() FT_GET_MACRO( LONG_LE ) +#define FT_GET_ULONG_LE() FT_GET_MACRO( ULONG_LE ) + +#else +#define FT_GET_MACRO( func, type ) ( (type)func( stream ) ) + +#define FT_GET_CHAR() FT_GET_MACRO( FT_Stream_GetChar, FT_Char ) +#define FT_GET_BYTE() FT_GET_MACRO( FT_Stream_GetChar, FT_Byte ) +#define FT_GET_SHORT() FT_GET_MACRO( FT_Stream_GetUShort, FT_Short ) +#define FT_GET_USHORT() FT_GET_MACRO( FT_Stream_GetUShort, FT_UShort ) +#define FT_GET_OFF3() FT_GET_MACRO( FT_Stream_GetUOffset, FT_Long ) +#define FT_GET_UOFF3() FT_GET_MACRO( FT_Stream_GetUOffset, FT_ULong ) +#define FT_GET_LONG() FT_GET_MACRO( FT_Stream_GetULong, FT_Long ) +#define FT_GET_ULONG() FT_GET_MACRO( FT_Stream_GetULong, FT_ULong ) +#define FT_GET_TAG4() FT_GET_MACRO( FT_Stream_GetULong, FT_ULong ) + +#define FT_GET_SHORT_LE() FT_GET_MACRO( FT_Stream_GetUShortLE, FT_Short ) +#define FT_GET_USHORT_LE() FT_GET_MACRO( FT_Stream_GetUShortLE, FT_UShort ) +#define FT_GET_LONG_LE() FT_GET_MACRO( FT_Stream_GetULongLE, FT_Long ) +#define FT_GET_ULONG_LE() FT_GET_MACRO( FT_Stream_GetULongLE, FT_ULong ) +#endif + + +#define FT_READ_MACRO( func, type, var ) \ + ( var = (type)func( stream, &error ), \ + error != FT_Err_Ok ) + + /* + * The `FT_READ_XXX' macros use implicit `stream' and `error' variables. + * + * `FT_READ_XXX' can be controlled with `FT_STREAM_SEEK' and + * `FT_STREAM_POS'. They use the full machinery to check whether a read is + * valid. + */ +#define FT_READ_BYTE( var ) FT_READ_MACRO( FT_Stream_ReadChar, FT_Byte, var ) +#define FT_READ_CHAR( var ) FT_READ_MACRO( FT_Stream_ReadChar, FT_Char, var ) +#define FT_READ_SHORT( var ) FT_READ_MACRO( FT_Stream_ReadUShort, FT_Short, var ) +#define FT_READ_USHORT( var ) FT_READ_MACRO( FT_Stream_ReadUShort, FT_UShort, var ) +#define FT_READ_OFF3( var ) FT_READ_MACRO( FT_Stream_ReadUOffset, FT_Long, var ) +#define FT_READ_UOFF3( var ) FT_READ_MACRO( FT_Stream_ReadUOffset, FT_ULong, var ) +#define FT_READ_LONG( var ) FT_READ_MACRO( FT_Stream_ReadULong, FT_Long, var ) +#define FT_READ_ULONG( var ) FT_READ_MACRO( FT_Stream_ReadULong, FT_ULong, var ) + +#define FT_READ_SHORT_LE( var ) FT_READ_MACRO( FT_Stream_ReadUShortLE, FT_Short, var ) +#define FT_READ_USHORT_LE( var ) FT_READ_MACRO( FT_Stream_ReadUShortLE, FT_UShort, var ) +#define FT_READ_LONG_LE( var ) FT_READ_MACRO( FT_Stream_ReadULongLE, FT_Long, var ) +#define FT_READ_ULONG_LE( var ) FT_READ_MACRO( FT_Stream_ReadULongLE, FT_ULong, var ) + + +#ifndef FT_CONFIG_OPTION_NO_DEFAULT_SYSTEM + + /* initialize a stream for reading a regular system stream */ + FT_BASE( FT_Error ) + FT_Stream_Open( FT_Stream stream, + const char* filepathname ); + +#endif /* FT_CONFIG_OPTION_NO_DEFAULT_SYSTEM */ + + + /* create a new (input) stream from an FT_Open_Args structure */ + FT_BASE( FT_Error ) + FT_Stream_New( FT_Library library, + const FT_Open_Args* args, + FT_Stream *astream ); + + /* free a stream */ + FT_BASE( void ) + FT_Stream_Free( FT_Stream stream, + FT_Int external ); + + /* initialize a stream for reading in-memory data */ + FT_BASE( void ) + FT_Stream_OpenMemory( FT_Stream stream, + const FT_Byte* base, + FT_ULong size ); + + /* close a stream (does not destroy the stream structure) */ + FT_BASE( void ) + FT_Stream_Close( FT_Stream stream ); + + + /* seek within a stream. position is relative to start of stream */ + FT_BASE( FT_Error ) + FT_Stream_Seek( FT_Stream stream, + FT_ULong pos ); + + /* skip bytes in a stream */ + FT_BASE( FT_Error ) + FT_Stream_Skip( FT_Stream stream, + FT_Long distance ); + + /* return current stream position */ + FT_BASE( FT_ULong ) + FT_Stream_Pos( FT_Stream stream ); + + /* read bytes from a stream into a user-allocated buffer, returns an */ + /* error if not all bytes could be read. */ + FT_BASE( FT_Error ) + FT_Stream_Read( FT_Stream stream, + FT_Byte* buffer, + FT_ULong count ); + + /* read bytes from a stream at a given position */ + FT_BASE( FT_Error ) + FT_Stream_ReadAt( FT_Stream stream, + FT_ULong pos, + FT_Byte* buffer, + FT_ULong count ); + + /* try to read bytes at the end of a stream; return number of bytes */ + /* really available */ + FT_BASE( FT_ULong ) + FT_Stream_TryRead( FT_Stream stream, + FT_Byte* buffer, + FT_ULong count ); + + /* Enter a frame of `count' consecutive bytes in a stream. Returns an */ + /* error if the frame could not be read/accessed. The caller can use */ + /* the `FT_Stream_GetXXX' functions to retrieve frame data without */ + /* error checks. */ + /* */ + /* You must _always_ call `FT_Stream_ExitFrame' once you have entered */ + /* a stream frame! */ + /* */ + /* Nested frames are not permitted. */ + /* */ + FT_BASE( FT_Error ) + FT_Stream_EnterFrame( FT_Stream stream, + FT_ULong count ); + + /* exit a stream frame */ + FT_BASE( void ) + FT_Stream_ExitFrame( FT_Stream stream ); + + + /* Extract a stream frame. If the stream is disk-based, a heap block */ + /* is allocated and the frame bytes are read into it. If the stream */ + /* is memory-based, this function simply sets a pointer to the data. */ + /* */ + /* Useful to optimize access to memory-based streams transparently. */ + /* */ + /* `FT_Stream_GetXXX' functions can't be used. */ + /* */ + /* An extracted frame must be `freed' with a call to the function */ + /* `FT_Stream_ReleaseFrame'. */ + /* */ + FT_BASE( FT_Error ) + FT_Stream_ExtractFrame( FT_Stream stream, + FT_ULong count, + FT_Byte** pbytes ); + + /* release an extract frame (see `FT_Stream_ExtractFrame') */ + FT_BASE( void ) + FT_Stream_ReleaseFrame( FT_Stream stream, + FT_Byte** pbytes ); + + + /* read a byte from an entered frame */ + FT_BASE( FT_Char ) + FT_Stream_GetChar( FT_Stream stream ); + + /* read a 16-bit big-endian unsigned integer from an entered frame */ + FT_BASE( FT_UShort ) + FT_Stream_GetUShort( FT_Stream stream ); + + /* read a 24-bit big-endian unsigned integer from an entered frame */ + FT_BASE( FT_ULong ) + FT_Stream_GetUOffset( FT_Stream stream ); + + /* read a 32-bit big-endian unsigned integer from an entered frame */ + FT_BASE( FT_ULong ) + FT_Stream_GetULong( FT_Stream stream ); + + /* read a 16-bit little-endian unsigned integer from an entered frame */ + FT_BASE( FT_UShort ) + FT_Stream_GetUShortLE( FT_Stream stream ); + + /* read a 32-bit little-endian unsigned integer from an entered frame */ + FT_BASE( FT_ULong ) + FT_Stream_GetULongLE( FT_Stream stream ); + + + /* read a byte from a stream */ + FT_BASE( FT_Char ) + FT_Stream_ReadChar( FT_Stream stream, + FT_Error* error ); + + /* read a 16-bit big-endian unsigned integer from a stream */ + FT_BASE( FT_UShort ) + FT_Stream_ReadUShort( FT_Stream stream, + FT_Error* error ); + + /* read a 24-bit big-endian unsigned integer from a stream */ + FT_BASE( FT_ULong ) + FT_Stream_ReadUOffset( FT_Stream stream, + FT_Error* error ); + + /* read a 32-bit big-endian integer from a stream */ + FT_BASE( FT_ULong ) + FT_Stream_ReadULong( FT_Stream stream, + FT_Error* error ); + + /* read a 16-bit little-endian unsigned integer from a stream */ + FT_BASE( FT_UShort ) + FT_Stream_ReadUShortLE( FT_Stream stream, + FT_Error* error ); + + /* read a 32-bit little-endian unsigned integer from a stream */ + FT_BASE( FT_ULong ) + FT_Stream_ReadULongLE( FT_Stream stream, + FT_Error* error ); + + /* Read a structure from a stream. The structure must be described */ + /* by an array of FT_Frame_Field records. */ + FT_BASE( FT_Error ) + FT_Stream_ReadFields( FT_Stream stream, + const FT_Frame_Field* fields, + void* structure ); + + +#define FT_STREAM_POS() \ + FT_Stream_Pos( stream ) + +#define FT_STREAM_SEEK( position ) \ + FT_SET_ERROR( FT_Stream_Seek( stream, \ + (FT_ULong)(position) ) ) + +#define FT_STREAM_SKIP( distance ) \ + FT_SET_ERROR( FT_Stream_Skip( stream, \ + (FT_Long)(distance) ) ) + +#define FT_STREAM_READ( buffer, count ) \ + FT_SET_ERROR( FT_Stream_Read( stream, \ + (FT_Byte*)(buffer), \ + (FT_ULong)(count) ) ) + +#define FT_STREAM_READ_AT( position, buffer, count ) \ + FT_SET_ERROR( FT_Stream_ReadAt( stream, \ + (FT_ULong)(position), \ + (FT_Byte*)(buffer), \ + (FT_ULong)(count) ) ) + +#define FT_STREAM_READ_FIELDS( fields, object ) \ + FT_SET_ERROR( FT_Stream_ReadFields( stream, fields, object ) ) + + +#define FT_FRAME_ENTER( size ) \ + FT_SET_ERROR( \ + FT_DEBUG_INNER( FT_Stream_EnterFrame( stream, \ + (FT_ULong)(size) ) ) ) + +#define FT_FRAME_EXIT() \ + FT_DEBUG_INNER( FT_Stream_ExitFrame( stream ) ) + +#define FT_FRAME_EXTRACT( size, bytes ) \ + FT_SET_ERROR( \ + FT_DEBUG_INNER( FT_Stream_ExtractFrame( stream, \ + (FT_ULong)(size), \ + (FT_Byte**)&(bytes) ) ) ) + +#define FT_FRAME_RELEASE( bytes ) \ + FT_DEBUG_INNER( FT_Stream_ReleaseFrame( stream, \ + (FT_Byte**)&(bytes) ) ) + + +FT_END_HEADER + +#endif /* FTSTREAM_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/fttrace.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/fttrace.h new file mode 100644 index 0000000..8089bab --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/fttrace.h @@ -0,0 +1,156 @@ +/**************************************************************************** + * + * fttrace.h + * + * Tracing handling (specification only). + * + * Copyright (C) 2002-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /* definitions of trace levels for FreeType 2 */ + + /* the first level must always be `trace_any' */ +FT_TRACE_DEF( any ) + + /* base components */ +FT_TRACE_DEF( calc ) /* calculations (ftcalc.c) */ +FT_TRACE_DEF( gloader ) /* glyph loader (ftgloadr.c) */ +FT_TRACE_DEF( glyph ) /* glyph management (ftglyph.c) */ +FT_TRACE_DEF( memory ) /* memory manager (ftobjs.c) */ +FT_TRACE_DEF( init ) /* initialization (ftinit.c) */ +FT_TRACE_DEF( io ) /* i/o interface (ftsystem.c) */ +FT_TRACE_DEF( list ) /* list management (ftlist.c) */ +FT_TRACE_DEF( objs ) /* base objects (ftobjs.c) */ +FT_TRACE_DEF( outline ) /* outline management (ftoutln.c) */ +FT_TRACE_DEF( stream ) /* stream manager (ftstream.c) */ + +FT_TRACE_DEF( bitmap ) /* bitmap manipulation (ftbitmap.c) */ +FT_TRACE_DEF( checksum ) /* bitmap checksum (ftobjs.c) */ +FT_TRACE_DEF( mm ) /* MM interface (ftmm.c) */ +FT_TRACE_DEF( psprops ) /* PS driver properties (ftpsprop.c) */ +FT_TRACE_DEF( raccess ) /* resource fork accessor (ftrfork.c) */ +FT_TRACE_DEF( raster ) /* monochrome rasterizer (ftraster.c) */ +FT_TRACE_DEF( smooth ) /* anti-aliasing raster (ftgrays.c) */ +FT_TRACE_DEF( synth ) /* bold/slant synthesizer (ftsynth.c) */ + + /* Cache sub-system */ +FT_TRACE_DEF( cache ) /* cache sub-system (ftcache.c, etc.) */ + + /* SFNT driver components */ +FT_TRACE_DEF( sfdriver ) /* SFNT font driver (sfdriver.c) */ +FT_TRACE_DEF( sfobjs ) /* SFNT object handler (sfobjs.c) */ +FT_TRACE_DEF( ttbdf ) /* TrueType embedded BDF (ttbdf.c) */ +FT_TRACE_DEF( ttcmap ) /* charmap handler (ttcmap.c) */ +FT_TRACE_DEF( ttcolr ) /* glyph layer table (ttcolr.c) */ +FT_TRACE_DEF( ttcpal ) /* color palette table (ttcpal.c) */ +FT_TRACE_DEF( ttkern ) /* kerning handler (ttkern.c) */ +FT_TRACE_DEF( ttload ) /* basic TrueType tables (ttload.c) */ +FT_TRACE_DEF( ttmtx ) /* metrics-related tables (ttmtx.c) */ +FT_TRACE_DEF( ttpost ) /* PS table processing (ttpost.c) */ +FT_TRACE_DEF( ttsbit ) /* TrueType sbit handling (ttsbit.c) */ + + /* TrueType driver components */ +FT_TRACE_DEF( ttdriver ) /* TT font driver (ttdriver.c) */ +FT_TRACE_DEF( ttgload ) /* TT glyph loader (ttgload.c) */ +FT_TRACE_DEF( ttgxvar ) /* TrueType GX var handler (ttgxvar.c) */ +FT_TRACE_DEF( ttinterp ) /* bytecode interpreter (ttinterp.c) */ +FT_TRACE_DEF( ttobjs ) /* TT objects manager (ttobjs.c) */ +FT_TRACE_DEF( ttpload ) /* TT data/program loader (ttpload.c) */ + + /* Type 1 driver components */ +FT_TRACE_DEF( t1afm ) +FT_TRACE_DEF( t1driver ) +FT_TRACE_DEF( t1gload ) +FT_TRACE_DEF( t1load ) +FT_TRACE_DEF( t1objs ) +FT_TRACE_DEF( t1parse ) + + /* PostScript helper module `psaux' */ +FT_TRACE_DEF( cffdecode ) +FT_TRACE_DEF( psconv ) +FT_TRACE_DEF( psobjs ) +FT_TRACE_DEF( t1decode ) + + /* PostScript hinting module `pshinter' */ +FT_TRACE_DEF( pshalgo ) +FT_TRACE_DEF( pshrec ) + + /* Type 2 driver components */ +FT_TRACE_DEF( cffdriver ) +FT_TRACE_DEF( cffgload ) +FT_TRACE_DEF( cffload ) +FT_TRACE_DEF( cffobjs ) +FT_TRACE_DEF( cffparse ) + +FT_TRACE_DEF( cf2blues ) +FT_TRACE_DEF( cf2hints ) +FT_TRACE_DEF( cf2interp ) + + /* Type 42 driver component */ +FT_TRACE_DEF( t42 ) + + /* CID driver components */ +FT_TRACE_DEF( ciddriver ) +FT_TRACE_DEF( cidgload ) +FT_TRACE_DEF( cidload ) +FT_TRACE_DEF( cidobjs ) +FT_TRACE_DEF( cidparse ) + + /* Windows font component */ +FT_TRACE_DEF( winfnt ) + + /* PCF font components */ +FT_TRACE_DEF( pcfdriver ) +FT_TRACE_DEF( pcfread ) + + /* BDF font components */ +FT_TRACE_DEF( bdfdriver ) +FT_TRACE_DEF( bdflib ) + + /* PFR font component */ +FT_TRACE_DEF( pfr ) + + /* OpenType validation components */ +FT_TRACE_DEF( otvcommon ) +FT_TRACE_DEF( otvbase ) +FT_TRACE_DEF( otvgdef ) +FT_TRACE_DEF( otvgpos ) +FT_TRACE_DEF( otvgsub ) +FT_TRACE_DEF( otvjstf ) +FT_TRACE_DEF( otvmath ) +FT_TRACE_DEF( otvmodule ) + + /* TrueTypeGX/AAT validation components */ +FT_TRACE_DEF( gxvbsln ) +FT_TRACE_DEF( gxvcommon ) +FT_TRACE_DEF( gxvfeat ) +FT_TRACE_DEF( gxvjust ) +FT_TRACE_DEF( gxvkern ) +FT_TRACE_DEF( gxvmodule ) +FT_TRACE_DEF( gxvmort ) +FT_TRACE_DEF( gxvmorx ) +FT_TRACE_DEF( gxvlcar ) +FT_TRACE_DEF( gxvopbd ) +FT_TRACE_DEF( gxvprop ) +FT_TRACE_DEF( gxvtrak ) + + /* autofit components */ +FT_TRACE_DEF( afcjk ) +FT_TRACE_DEF( afglobal ) +FT_TRACE_DEF( afhints ) +FT_TRACE_DEF( afmodule ) +FT_TRACE_DEF( aflatin ) +FT_TRACE_DEF( aflatin2 ) +FT_TRACE_DEF( afshaper ) +FT_TRACE_DEF( afwarp ) + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftvalid.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftvalid.h new file mode 100644 index 0000000..38aa06c --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/ftvalid.h @@ -0,0 +1,159 @@ +/**************************************************************************** + * + * ftvalid.h + * + * FreeType validation support (specification). + * + * Copyright (C) 2004-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTVALID_H_ +#define FTVALID_H_ + +#include +#include FT_CONFIG_STANDARD_LIBRARY_H /* for ft_setjmp and ft_longjmp */ + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** ****/ + /**** V A L I D A T I O N ****/ + /**** ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + /* handle to a validation object */ + typedef struct FT_ValidatorRec_ volatile* FT_Validator; + + + /************************************************************************** + * + * There are three distinct validation levels defined here: + * + * FT_VALIDATE_DEFAULT :: + * A table that passes this validation level can be used reliably by + * FreeType. It generally means that all offsets have been checked to + * prevent out-of-bound reads, that array counts are correct, etc. + * + * FT_VALIDATE_TIGHT :: + * A table that passes this validation level can be used reliably and + * doesn't contain invalid data. For example, a charmap table that + * returns invalid glyph indices will not pass, even though it can be + * used with FreeType in default mode (the library will simply return an + * error later when trying to load the glyph). + * + * It also checks that fields which must be a multiple of 2, 4, or 8, + * don't have incorrect values, etc. + * + * FT_VALIDATE_PARANOID :: + * Only for font debugging. Checks that a table follows the + * specification by 100%. Very few fonts will be able to pass this level + * anyway but it can be useful for certain tools like font + * editors/converters. + */ + typedef enum FT_ValidationLevel_ + { + FT_VALIDATE_DEFAULT = 0, + FT_VALIDATE_TIGHT, + FT_VALIDATE_PARANOID + + } FT_ValidationLevel; + + +#if defined( _MSC_VER ) /* Visual C++ (and Intel C++) */ + /* We disable the warning `structure was padded due to */ + /* __declspec(align())' in order to compile cleanly with */ + /* the maximum level of warnings. */ +#pragma warning( push ) +#pragma warning( disable : 4324 ) +#endif /* _MSC_VER */ + + /* validator structure */ + typedef struct FT_ValidatorRec_ + { + ft_jmp_buf jump_buffer; /* used for exception handling */ + + const FT_Byte* base; /* address of table in memory */ + const FT_Byte* limit; /* `base' + sizeof(table) in memory */ + FT_ValidationLevel level; /* validation level */ + FT_Error error; /* error returned. 0 means success */ + + } FT_ValidatorRec; + +#if defined( _MSC_VER ) +#pragma warning( pop ) +#endif + +#define FT_VALIDATOR( x ) ( (FT_Validator)( x ) ) + + + FT_BASE( void ) + ft_validator_init( FT_Validator valid, + const FT_Byte* base, + const FT_Byte* limit, + FT_ValidationLevel level ); + + /* Do not use this. It's broken and will cause your validator to crash */ + /* if you run it on an invalid font. */ + FT_BASE( FT_Int ) + ft_validator_run( FT_Validator valid ); + + /* Sets the error field in a validator, then calls `longjmp' to return */ + /* to high-level caller. Using `setjmp/longjmp' avoids many stupid */ + /* error checks within the validation routines. */ + /* */ + FT_BASE( void ) + ft_validator_error( FT_Validator valid, + FT_Error error ); + + + /* Calls ft_validate_error. Assumes that the `valid' local variable */ + /* holds a pointer to the current validator object. */ + /* */ +#define FT_INVALID( _error ) FT_INVALID_( _error ) +#define FT_INVALID_( _error ) \ + ft_validator_error( valid, FT_THROW( _error ) ) + + /* called when a broken table is detected */ +#define FT_INVALID_TOO_SHORT \ + FT_INVALID( Invalid_Table ) + + /* called when an invalid offset is detected */ +#define FT_INVALID_OFFSET \ + FT_INVALID( Invalid_Offset ) + + /* called when an invalid format/value is detected */ +#define FT_INVALID_FORMAT \ + FT_INVALID( Invalid_Table ) + + /* called when an invalid glyph index is detected */ +#define FT_INVALID_GLYPH_ID \ + FT_INVALID( Invalid_Glyph_Index ) + + /* called when an invalid field value is detected */ +#define FT_INVALID_DATA \ + FT_INVALID( Invalid_Table ) + + +FT_END_HEADER + +#endif /* FTVALID_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/internal.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/internal.h new file mode 100644 index 0000000..173d8ad --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/internal.h @@ -0,0 +1,66 @@ +/**************************************************************************** + * + * internal.h + * + * Internal header files (specification only). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * This file is automatically included by `ft2build.h`. Do not include it + * manually! + * + */ + + +#define FT_INTERNAL_OBJECTS_H +#define FT_INTERNAL_STREAM_H +#define FT_INTERNAL_MEMORY_H +#define FT_INTERNAL_DEBUG_H +#define FT_INTERNAL_CALC_H +#define FT_INTERNAL_HASH_H +#define FT_INTERNAL_DRIVER_H +#define FT_INTERNAL_TRACE_H +#define FT_INTERNAL_GLYPH_LOADER_H +#define FT_INTERNAL_SFNT_H +#define FT_INTERNAL_SERVICE_H +#define FT_INTERNAL_RFORK_H +#define FT_INTERNAL_VALIDATE_H + +#define FT_INTERNAL_TRUETYPE_TYPES_H +#define FT_INTERNAL_TYPE1_TYPES_H + +#define FT_INTERNAL_POSTSCRIPT_AUX_H +#define FT_INTERNAL_POSTSCRIPT_HINTS_H +#define FT_INTERNAL_POSTSCRIPT_PROPS_H + +#define FT_INTERNAL_AUTOHINT_H + +#define FT_INTERNAL_CFF_TYPES_H +#define FT_INTERNAL_CFF_OBJECTS_TYPES_H + + +#if defined( _MSC_VER ) /* Visual C++ (and Intel C++) */ + + /* We disable the warning `conditional expression is constant' here */ + /* in order to compile cleanly with the maximum level of warnings. */ + /* In particular, the warning complains about stuff like `while(0)' */ + /* which is very useful in macro definitions. There is no benefit */ + /* in having it enabled. */ +#pragma warning( disable : 4127 ) + +#endif /* _MSC_VER */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/psaux.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/psaux.h new file mode 100644 index 0000000..3ab01c3 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/psaux.h @@ -0,0 +1,1439 @@ +/**************************************************************************** + * + * psaux.h + * + * Auxiliary functions and data structures related to PostScript fonts + * (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef PSAUX_H_ +#define PSAUX_H_ + + +#include +#include FT_INTERNAL_OBJECTS_H +#include FT_INTERNAL_TYPE1_TYPES_H +#include FT_INTERNAL_HASH_H +#include FT_INTERNAL_TRUETYPE_TYPES_H +#include FT_SERVICE_POSTSCRIPT_CMAPS_H +#include FT_INTERNAL_CFF_TYPES_H +#include FT_INTERNAL_CFF_OBJECTS_TYPES_H + + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * PostScript modules driver class. + */ + typedef struct PS_DriverRec_ + { + FT_DriverRec root; + + FT_UInt hinting_engine; + FT_Bool no_stem_darkening; + FT_Int darken_params[8]; + FT_Int32 random_seed; + + } PS_DriverRec, *PS_Driver; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** T1_TABLE *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + + typedef struct PS_TableRec_* PS_Table; + typedef const struct PS_Table_FuncsRec_* PS_Table_Funcs; + + + /************************************************************************** + * + * @struct: + * PS_Table_FuncsRec + * + * @description: + * A set of function pointers to manage PS_Table objects. + * + * @fields: + * table_init :: + * Used to initialize a table. + * + * table_done :: + * Finalizes resp. destroy a given table. + * + * table_add :: + * Adds a new object to a table. + * + * table_release :: + * Releases table data, then finalizes it. + */ + typedef struct PS_Table_FuncsRec_ + { + FT_Error + (*init)( PS_Table table, + FT_Int count, + FT_Memory memory ); + + void + (*done)( PS_Table table ); + + FT_Error + (*add)( PS_Table table, + FT_Int idx, + void* object, + FT_UInt length ); + + void + (*release)( PS_Table table ); + + } PS_Table_FuncsRec; + + + /************************************************************************** + * + * @struct: + * PS_TableRec + * + * @description: + * A PS_Table is a simple object used to store an array of objects in a + * single memory block. + * + * @fields: + * block :: + * The address in memory of the growheap's block. This can change + * between two object adds, due to reallocation. + * + * cursor :: + * The current top of the grow heap within its block. + * + * capacity :: + * The current size of the heap block. Increments by 1kByte chunks. + * + * init :: + * Set to 0xDEADBEEF if 'elements' and 'lengths' have been allocated. + * + * max_elems :: + * The maximum number of elements in table. + * + * num_elems :: + * The current number of elements in table. + * + * elements :: + * A table of element addresses within the block. + * + * lengths :: + * A table of element sizes within the block. + * + * memory :: + * The object used for memory operations (alloc/realloc). + * + * funcs :: + * A table of method pointers for this object. + */ + typedef struct PS_TableRec_ + { + FT_Byte* block; /* current memory block */ + FT_Offset cursor; /* current cursor in memory block */ + FT_Offset capacity; /* current size of memory block */ + FT_ULong init; + + FT_Int max_elems; + FT_Int num_elems; + FT_Byte** elements; /* addresses of table elements */ + FT_UInt* lengths; /* lengths of table elements */ + + FT_Memory memory; + PS_Table_FuncsRec funcs; + + } PS_TableRec; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** T1 FIELDS & TOKENS *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + typedef struct PS_ParserRec_* PS_Parser; + + typedef struct T1_TokenRec_* T1_Token; + + typedef struct T1_FieldRec_* T1_Field; + + + /* simple enumeration type used to identify token types */ + typedef enum T1_TokenType_ + { + T1_TOKEN_TYPE_NONE = 0, + T1_TOKEN_TYPE_ANY, + T1_TOKEN_TYPE_STRING, + T1_TOKEN_TYPE_ARRAY, + T1_TOKEN_TYPE_KEY, /* aka `name' */ + + /* do not remove */ + T1_TOKEN_TYPE_MAX + + } T1_TokenType; + + + /* a simple structure used to identify tokens */ + typedef struct T1_TokenRec_ + { + FT_Byte* start; /* first character of token in input stream */ + FT_Byte* limit; /* first character after the token */ + T1_TokenType type; /* type of token */ + + } T1_TokenRec; + + + /* enumeration type used to identify object fields */ + typedef enum T1_FieldType_ + { + T1_FIELD_TYPE_NONE = 0, + T1_FIELD_TYPE_BOOL, + T1_FIELD_TYPE_INTEGER, + T1_FIELD_TYPE_FIXED, + T1_FIELD_TYPE_FIXED_1000, + T1_FIELD_TYPE_STRING, + T1_FIELD_TYPE_KEY, + T1_FIELD_TYPE_BBOX, + T1_FIELD_TYPE_MM_BBOX, + T1_FIELD_TYPE_INTEGER_ARRAY, + T1_FIELD_TYPE_FIXED_ARRAY, + T1_FIELD_TYPE_CALLBACK, + + /* do not remove */ + T1_FIELD_TYPE_MAX + + } T1_FieldType; + + + typedef enum T1_FieldLocation_ + { + T1_FIELD_LOCATION_CID_INFO, + T1_FIELD_LOCATION_FONT_DICT, + T1_FIELD_LOCATION_FONT_EXTRA, + T1_FIELD_LOCATION_FONT_INFO, + T1_FIELD_LOCATION_PRIVATE, + T1_FIELD_LOCATION_BBOX, + T1_FIELD_LOCATION_LOADER, + T1_FIELD_LOCATION_FACE, + T1_FIELD_LOCATION_BLEND, + + /* do not remove */ + T1_FIELD_LOCATION_MAX + + } T1_FieldLocation; + + + typedef void + (*T1_Field_ParseFunc)( FT_Face face, + FT_Pointer parser ); + + + /* structure type used to model object fields */ + typedef struct T1_FieldRec_ + { + const char* ident; /* field identifier */ + T1_FieldLocation location; + T1_FieldType type; /* type of field */ + T1_Field_ParseFunc reader; + FT_UInt offset; /* offset of field in object */ + FT_Byte size; /* size of field in bytes */ + FT_UInt array_max; /* maximum number of elements for */ + /* array */ + FT_UInt count_offset; /* offset of element count for */ + /* arrays; must not be zero if in */ + /* use -- in other words, a */ + /* `num_FOO' element must not */ + /* start the used structure if we */ + /* parse a `FOO' array */ + FT_UInt dict; /* where we expect it */ + } T1_FieldRec; + +#define T1_FIELD_DICT_FONTDICT ( 1 << 0 ) /* also FontInfo and FDArray */ +#define T1_FIELD_DICT_PRIVATE ( 1 << 1 ) + + + +#define T1_NEW_SIMPLE_FIELD( _ident, _type, _fname, _dict ) \ + { \ + _ident, T1CODE, _type, \ + 0, \ + FT_FIELD_OFFSET( _fname ), \ + FT_FIELD_SIZE( _fname ), \ + 0, 0, \ + _dict \ + }, + +#define T1_NEW_CALLBACK_FIELD( _ident, _reader, _dict ) \ + { \ + _ident, T1CODE, T1_FIELD_TYPE_CALLBACK, \ + (T1_Field_ParseFunc)_reader, \ + 0, 0, \ + 0, 0, \ + _dict \ + }, + +#define T1_NEW_TABLE_FIELD( _ident, _type, _fname, _max, _dict ) \ + { \ + _ident, T1CODE, _type, \ + 0, \ + FT_FIELD_OFFSET( _fname ), \ + FT_FIELD_SIZE_DELTA( _fname ), \ + _max, \ + FT_FIELD_OFFSET( num_ ## _fname ), \ + _dict \ + }, + +#define T1_NEW_TABLE_FIELD2( _ident, _type, _fname, _max, _dict ) \ + { \ + _ident, T1CODE, _type, \ + 0, \ + FT_FIELD_OFFSET( _fname ), \ + FT_FIELD_SIZE_DELTA( _fname ), \ + _max, 0, \ + _dict \ + }, + + +#define T1_FIELD_BOOL( _ident, _fname, _dict ) \ + T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_BOOL, _fname, _dict ) + +#define T1_FIELD_NUM( _ident, _fname, _dict ) \ + T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_INTEGER, _fname, _dict ) + +#define T1_FIELD_FIXED( _ident, _fname, _dict ) \ + T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_FIXED, _fname, _dict ) + +#define T1_FIELD_FIXED_1000( _ident, _fname, _dict ) \ + T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_FIXED_1000, _fname, \ + _dict ) + +#define T1_FIELD_STRING( _ident, _fname, _dict ) \ + T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_STRING, _fname, _dict ) + +#define T1_FIELD_KEY( _ident, _fname, _dict ) \ + T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_KEY, _fname, _dict ) + +#define T1_FIELD_BBOX( _ident, _fname, _dict ) \ + T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_BBOX, _fname, _dict ) + + +#define T1_FIELD_NUM_TABLE( _ident, _fname, _fmax, _dict ) \ + T1_NEW_TABLE_FIELD( _ident, T1_FIELD_TYPE_INTEGER_ARRAY, \ + _fname, _fmax, _dict ) + +#define T1_FIELD_FIXED_TABLE( _ident, _fname, _fmax, _dict ) \ + T1_NEW_TABLE_FIELD( _ident, T1_FIELD_TYPE_FIXED_ARRAY, \ + _fname, _fmax, _dict ) + +#define T1_FIELD_NUM_TABLE2( _ident, _fname, _fmax, _dict ) \ + T1_NEW_TABLE_FIELD2( _ident, T1_FIELD_TYPE_INTEGER_ARRAY, \ + _fname, _fmax, _dict ) + +#define T1_FIELD_FIXED_TABLE2( _ident, _fname, _fmax, _dict ) \ + T1_NEW_TABLE_FIELD2( _ident, T1_FIELD_TYPE_FIXED_ARRAY, \ + _fname, _fmax, _dict ) + +#define T1_FIELD_CALLBACK( _ident, _name, _dict ) \ + T1_NEW_CALLBACK_FIELD( _ident, _name, _dict ) + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** T1 PARSER *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + typedef const struct PS_Parser_FuncsRec_* PS_Parser_Funcs; + + typedef struct PS_Parser_FuncsRec_ + { + void + (*init)( PS_Parser parser, + FT_Byte* base, + FT_Byte* limit, + FT_Memory memory ); + + void + (*done)( PS_Parser parser ); + + void + (*skip_spaces)( PS_Parser parser ); + void + (*skip_PS_token)( PS_Parser parser ); + + FT_Long + (*to_int)( PS_Parser parser ); + FT_Fixed + (*to_fixed)( PS_Parser parser, + FT_Int power_ten ); + + FT_Error + (*to_bytes)( PS_Parser parser, + FT_Byte* bytes, + FT_Offset max_bytes, + FT_ULong* pnum_bytes, + FT_Bool delimiters ); + + FT_Int + (*to_coord_array)( PS_Parser parser, + FT_Int max_coords, + FT_Short* coords ); + FT_Int + (*to_fixed_array)( PS_Parser parser, + FT_Int max_values, + FT_Fixed* values, + FT_Int power_ten ); + + void + (*to_token)( PS_Parser parser, + T1_Token token ); + void + (*to_token_array)( PS_Parser parser, + T1_Token tokens, + FT_UInt max_tokens, + FT_Int* pnum_tokens ); + + FT_Error + (*load_field)( PS_Parser parser, + const T1_Field field, + void** objects, + FT_UInt max_objects, + FT_ULong* pflags ); + + FT_Error + (*load_field_table)( PS_Parser parser, + const T1_Field field, + void** objects, + FT_UInt max_objects, + FT_ULong* pflags ); + + } PS_Parser_FuncsRec; + + + /************************************************************************** + * + * @struct: + * PS_ParserRec + * + * @description: + * A PS_Parser is an object used to parse a Type 1 font very quickly. + * + * @fields: + * cursor :: + * The current position in the text. + * + * base :: + * Start of the processed text. + * + * limit :: + * End of the processed text. + * + * error :: + * The last error returned. + * + * memory :: + * The object used for memory operations (alloc/realloc). + * + * funcs :: + * A table of functions for the parser. + */ + typedef struct PS_ParserRec_ + { + FT_Byte* cursor; + FT_Byte* base; + FT_Byte* limit; + FT_Error error; + FT_Memory memory; + + PS_Parser_FuncsRec funcs; + + } PS_ParserRec; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** PS BUILDER *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + + typedef struct PS_Builder_ PS_Builder; + typedef const struct PS_Builder_FuncsRec_* PS_Builder_Funcs; + + typedef struct PS_Builder_FuncsRec_ + { + void + (*init)( PS_Builder* ps_builder, + void* builder, + FT_Bool is_t1 ); + + void + (*done)( PS_Builder* builder ); + + } PS_Builder_FuncsRec; + + + /************************************************************************** + * + * @struct: + * PS_Builder + * + * @description: + * A structure used during glyph loading to store its outline. + * + * @fields: + * memory :: + * The current memory object. + * + * face :: + * The current face object. + * + * glyph :: + * The current glyph slot. + * + * loader :: + * XXX + * + * base :: + * The base glyph outline. + * + * current :: + * The current glyph outline. + * + * pos_x :: + * The horizontal translation (if composite glyph). + * + * pos_y :: + * The vertical translation (if composite glyph). + * + * left_bearing :: + * The left side bearing point. + * + * advance :: + * The horizontal advance vector. + * + * bbox :: + * Unused. + * + * path_begun :: + * A flag which indicates that a new path has begun. + * + * load_points :: + * If this flag is not set, no points are loaded. + * + * no_recurse :: + * Set but not used. + * + * metrics_only :: + * A boolean indicating that we only want to compute the metrics of a + * given glyph, not load all of its points. + * + * is_t1 :: + * Set if current font type is Type 1. + * + * funcs :: + * An array of function pointers for the builder. + */ + struct PS_Builder_ + { + FT_Memory memory; + FT_Face face; + CFF_GlyphSlot glyph; + FT_GlyphLoader loader; + FT_Outline* base; + FT_Outline* current; + + FT_Pos* pos_x; + FT_Pos* pos_y; + + FT_Vector* left_bearing; + FT_Vector* advance; + + FT_BBox* bbox; /* bounding box */ + FT_Bool path_begun; + FT_Bool load_points; + FT_Bool no_recurse; + + FT_Bool metrics_only; + FT_Bool is_t1; + + PS_Builder_FuncsRec funcs; + + }; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** PS DECODER *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + +#define PS_MAX_OPERANDS 48 +#define PS_MAX_SUBRS_CALLS 16 /* maximum subroutine nesting; */ + /* only 10 are allowed but there exist */ + /* fonts like `HiraKakuProN-W3.ttf' */ + /* (Hiragino Kaku Gothic ProN W3; */ + /* 8.2d6e1; 2014-12-19) that exceed */ + /* this limit */ + + /* execution context charstring zone */ + + typedef struct PS_Decoder_Zone_ + { + FT_Byte* base; + FT_Byte* limit; + FT_Byte* cursor; + + } PS_Decoder_Zone; + + + typedef FT_Error + (*CFF_Decoder_Get_Glyph_Callback)( TT_Face face, + FT_UInt glyph_index, + FT_Byte** pointer, + FT_ULong* length ); + + typedef void + (*CFF_Decoder_Free_Glyph_Callback)( TT_Face face, + FT_Byte** pointer, + FT_ULong length ); + + + typedef struct PS_Decoder_ + { + PS_Builder builder; + + FT_Fixed stack[PS_MAX_OPERANDS + 1]; + FT_Fixed* top; + + PS_Decoder_Zone zones[PS_MAX_SUBRS_CALLS + 1]; + PS_Decoder_Zone* zone; + + FT_Int flex_state; + FT_Int num_flex_vectors; + FT_Vector flex_vectors[7]; + + CFF_Font cff; + CFF_SubFont current_subfont; /* for current glyph_index */ + FT_Generic* cf2_instance; + + FT_Pos* glyph_width; + FT_Bool width_only; + FT_Int num_hints; + + FT_UInt num_locals; + FT_UInt num_globals; + + FT_Int locals_bias; + FT_Int globals_bias; + + FT_Byte** locals; + FT_Byte** globals; + + FT_Byte** glyph_names; /* for pure CFF fonts only */ + FT_UInt num_glyphs; /* number of glyphs in font */ + + FT_Render_Mode hint_mode; + + FT_Bool seac; + + CFF_Decoder_Get_Glyph_Callback get_glyph_callback; + CFF_Decoder_Free_Glyph_Callback free_glyph_callback; + + /* Type 1 stuff */ + FT_Service_PsCMaps psnames; /* for seac */ + + FT_Int lenIV; /* internal for sub routine calls */ + FT_UInt* locals_len; /* array of subrs length (optional) */ + FT_Hash locals_hash; /* used if `num_subrs' was massaged */ + + FT_Matrix font_matrix; + FT_Vector font_offset; + + PS_Blend blend; /* for multiple master support */ + + FT_Long* buildchar; + FT_UInt len_buildchar; + + } PS_Decoder; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** T1 BUILDER *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + + typedef struct T1_BuilderRec_* T1_Builder; + + + typedef FT_Error + (*T1_Builder_Check_Points_Func)( T1_Builder builder, + FT_Int count ); + + typedef void + (*T1_Builder_Add_Point_Func)( T1_Builder builder, + FT_Pos x, + FT_Pos y, + FT_Byte flag ); + + typedef FT_Error + (*T1_Builder_Add_Point1_Func)( T1_Builder builder, + FT_Pos x, + FT_Pos y ); + + typedef FT_Error + (*T1_Builder_Add_Contour_Func)( T1_Builder builder ); + + typedef FT_Error + (*T1_Builder_Start_Point_Func)( T1_Builder builder, + FT_Pos x, + FT_Pos y ); + + typedef void + (*T1_Builder_Close_Contour_Func)( T1_Builder builder ); + + + typedef const struct T1_Builder_FuncsRec_* T1_Builder_Funcs; + + typedef struct T1_Builder_FuncsRec_ + { + void + (*init)( T1_Builder builder, + FT_Face face, + FT_Size size, + FT_GlyphSlot slot, + FT_Bool hinting ); + + void + (*done)( T1_Builder builder ); + + T1_Builder_Check_Points_Func check_points; + T1_Builder_Add_Point_Func add_point; + T1_Builder_Add_Point1_Func add_point1; + T1_Builder_Add_Contour_Func add_contour; + T1_Builder_Start_Point_Func start_point; + T1_Builder_Close_Contour_Func close_contour; + + } T1_Builder_FuncsRec; + + + /* an enumeration type to handle charstring parsing states */ + typedef enum T1_ParseState_ + { + T1_Parse_Start, + T1_Parse_Have_Width, + T1_Parse_Have_Moveto, + T1_Parse_Have_Path + + } T1_ParseState; + + + /************************************************************************** + * + * @struct: + * T1_BuilderRec + * + * @description: + * A structure used during glyph loading to store its outline. + * + * @fields: + * memory :: + * The current memory object. + * + * face :: + * The current face object. + * + * glyph :: + * The current glyph slot. + * + * loader :: + * XXX + * + * base :: + * The base glyph outline. + * + * current :: + * The current glyph outline. + * + * max_points :: + * maximum points in builder outline + * + * max_contours :: + * Maximum number of contours in builder outline. + * + * pos_x :: + * The horizontal translation (if composite glyph). + * + * pos_y :: + * The vertical translation (if composite glyph). + * + * left_bearing :: + * The left side bearing point. + * + * advance :: + * The horizontal advance vector. + * + * bbox :: + * Unused. + * + * parse_state :: + * An enumeration which controls the charstring parsing state. + * + * load_points :: + * If this flag is not set, no points are loaded. + * + * no_recurse :: + * Set but not used. + * + * metrics_only :: + * A boolean indicating that we only want to compute the metrics of a + * given glyph, not load all of its points. + * + * funcs :: + * An array of function pointers for the builder. + */ + typedef struct T1_BuilderRec_ + { + FT_Memory memory; + FT_Face face; + FT_GlyphSlot glyph; + FT_GlyphLoader loader; + FT_Outline* base; + FT_Outline* current; + + FT_Pos pos_x; + FT_Pos pos_y; + + FT_Vector left_bearing; + FT_Vector advance; + + FT_BBox bbox; /* bounding box */ + T1_ParseState parse_state; + FT_Bool load_points; + FT_Bool no_recurse; + + FT_Bool metrics_only; + + void* hints_funcs; /* hinter-specific */ + void* hints_globals; /* hinter-specific */ + + T1_Builder_FuncsRec funcs; + + } T1_BuilderRec; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** T1 DECODER *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + +#if 0 + + /************************************************************************** + * + * T1_MAX_SUBRS_CALLS details the maximum number of nested sub-routine + * calls during glyph loading. + */ +#define T1_MAX_SUBRS_CALLS 8 + + + /************************************************************************** + * + * T1_MAX_CHARSTRING_OPERANDS is the charstring stack's capacity. A + * minimum of 16 is required. + */ +#define T1_MAX_CHARSTRINGS_OPERANDS 32 + +#endif /* 0 */ + + + typedef struct T1_Decoder_ZoneRec_ + { + FT_Byte* cursor; + FT_Byte* base; + FT_Byte* limit; + + } T1_Decoder_ZoneRec, *T1_Decoder_Zone; + + + typedef struct T1_DecoderRec_* T1_Decoder; + typedef const struct T1_Decoder_FuncsRec_* T1_Decoder_Funcs; + + + typedef FT_Error + (*T1_Decoder_Callback)( T1_Decoder decoder, + FT_UInt glyph_index ); + + + typedef struct T1_Decoder_FuncsRec_ + { + FT_Error + (*init)( T1_Decoder decoder, + FT_Face face, + FT_Size size, + FT_GlyphSlot slot, + FT_Byte** glyph_names, + PS_Blend blend, + FT_Bool hinting, + FT_Render_Mode hint_mode, + T1_Decoder_Callback callback ); + + void + (*done)( T1_Decoder decoder ); + +#ifdef T1_CONFIG_OPTION_OLD_ENGINE + FT_Error + (*parse_charstrings_old)( T1_Decoder decoder, + FT_Byte* base, + FT_UInt len ); +#else + FT_Error + (*parse_metrics)( T1_Decoder decoder, + FT_Byte* base, + FT_UInt len ); +#endif + + FT_Error + (*parse_charstrings)( PS_Decoder* decoder, + FT_Byte* charstring_base, + FT_ULong charstring_len ); + + + } T1_Decoder_FuncsRec; + + + typedef struct T1_DecoderRec_ + { + T1_BuilderRec builder; + + FT_Long stack[T1_MAX_CHARSTRINGS_OPERANDS]; + FT_Long* top; + + T1_Decoder_ZoneRec zones[T1_MAX_SUBRS_CALLS + 1]; + T1_Decoder_Zone zone; + + FT_Service_PsCMaps psnames; /* for seac */ + FT_UInt num_glyphs; + FT_Byte** glyph_names; + + FT_Int lenIV; /* internal for sub routine calls */ + FT_Int num_subrs; + FT_Byte** subrs; + FT_UInt* subrs_len; /* array of subrs length (optional) */ + FT_Hash subrs_hash; /* used if `num_subrs' was massaged */ + + FT_Matrix font_matrix; + FT_Vector font_offset; + + FT_Int flex_state; + FT_Int num_flex_vectors; + FT_Vector flex_vectors[7]; + + PS_Blend blend; /* for multiple master support */ + + FT_Render_Mode hint_mode; + + T1_Decoder_Callback parse_callback; + T1_Decoder_FuncsRec funcs; + + FT_Long* buildchar; + FT_UInt len_buildchar; + + FT_Bool seac; + + FT_Generic cf2_instance; + + } T1_DecoderRec; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** CFF BUILDER *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + + typedef struct CFF_Builder_ CFF_Builder; + + + typedef FT_Error + (*CFF_Builder_Check_Points_Func)( CFF_Builder* builder, + FT_Int count ); + + typedef void + (*CFF_Builder_Add_Point_Func)( CFF_Builder* builder, + FT_Pos x, + FT_Pos y, + FT_Byte flag ); + typedef FT_Error + (*CFF_Builder_Add_Point1_Func)( CFF_Builder* builder, + FT_Pos x, + FT_Pos y ); + typedef FT_Error + (*CFF_Builder_Start_Point_Func)( CFF_Builder* builder, + FT_Pos x, + FT_Pos y ); + typedef void + (*CFF_Builder_Close_Contour_Func)( CFF_Builder* builder ); + + typedef FT_Error + (*CFF_Builder_Add_Contour_Func)( CFF_Builder* builder ); + + typedef const struct CFF_Builder_FuncsRec_* CFF_Builder_Funcs; + + typedef struct CFF_Builder_FuncsRec_ + { + void + (*init)( CFF_Builder* builder, + TT_Face face, + CFF_Size size, + CFF_GlyphSlot glyph, + FT_Bool hinting ); + + void + (*done)( CFF_Builder* builder ); + + CFF_Builder_Check_Points_Func check_points; + CFF_Builder_Add_Point_Func add_point; + CFF_Builder_Add_Point1_Func add_point1; + CFF_Builder_Add_Contour_Func add_contour; + CFF_Builder_Start_Point_Func start_point; + CFF_Builder_Close_Contour_Func close_contour; + + } CFF_Builder_FuncsRec; + + + /************************************************************************** + * + * @struct: + * CFF_Builder + * + * @description: + * A structure used during glyph loading to store its outline. + * + * @fields: + * memory :: + * The current memory object. + * + * face :: + * The current face object. + * + * glyph :: + * The current glyph slot. + * + * loader :: + * The current glyph loader. + * + * base :: + * The base glyph outline. + * + * current :: + * The current glyph outline. + * + * pos_x :: + * The horizontal translation (if composite glyph). + * + * pos_y :: + * The vertical translation (if composite glyph). + * + * left_bearing :: + * The left side bearing point. + * + * advance :: + * The horizontal advance vector. + * + * bbox :: + * Unused. + * + * path_begun :: + * A flag which indicates that a new path has begun. + * + * load_points :: + * If this flag is not set, no points are loaded. + * + * no_recurse :: + * Set but not used. + * + * metrics_only :: + * A boolean indicating that we only want to compute the metrics of a + * given glyph, not load all of its points. + * + * hints_funcs :: + * Auxiliary pointer for hinting. + * + * hints_globals :: + * Auxiliary pointer for hinting. + * + * funcs :: + * A table of method pointers for this object. + */ + struct CFF_Builder_ + { + FT_Memory memory; + TT_Face face; + CFF_GlyphSlot glyph; + FT_GlyphLoader loader; + FT_Outline* base; + FT_Outline* current; + + FT_Pos pos_x; + FT_Pos pos_y; + + FT_Vector left_bearing; + FT_Vector advance; + + FT_BBox bbox; /* bounding box */ + + FT_Bool path_begun; + FT_Bool load_points; + FT_Bool no_recurse; + + FT_Bool metrics_only; + + void* hints_funcs; /* hinter-specific */ + void* hints_globals; /* hinter-specific */ + + CFF_Builder_FuncsRec funcs; + }; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** CFF DECODER *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + +#define CFF_MAX_OPERANDS 48 +#define CFF_MAX_SUBRS_CALLS 16 /* maximum subroutine nesting; */ + /* only 10 are allowed but there exist */ + /* fonts like `HiraKakuProN-W3.ttf' */ + /* (Hiragino Kaku Gothic ProN W3; */ + /* 8.2d6e1; 2014-12-19) that exceed */ + /* this limit */ +#define CFF_MAX_TRANS_ELEMENTS 32 + + /* execution context charstring zone */ + + typedef struct CFF_Decoder_Zone_ + { + FT_Byte* base; + FT_Byte* limit; + FT_Byte* cursor; + + } CFF_Decoder_Zone; + + + typedef struct CFF_Decoder_ + { + CFF_Builder builder; + CFF_Font cff; + + FT_Fixed stack[CFF_MAX_OPERANDS + 1]; + FT_Fixed* top; + + CFF_Decoder_Zone zones[CFF_MAX_SUBRS_CALLS + 1]; + CFF_Decoder_Zone* zone; + + FT_Int flex_state; + FT_Int num_flex_vectors; + FT_Vector flex_vectors[7]; + + FT_Pos glyph_width; + FT_Pos nominal_width; + + FT_Bool read_width; + FT_Bool width_only; + FT_Int num_hints; + FT_Fixed buildchar[CFF_MAX_TRANS_ELEMENTS]; + + FT_UInt num_locals; + FT_UInt num_globals; + + FT_Int locals_bias; + FT_Int globals_bias; + + FT_Byte** locals; + FT_Byte** globals; + + FT_Byte** glyph_names; /* for pure CFF fonts only */ + FT_UInt num_glyphs; /* number of glyphs in font */ + + FT_Render_Mode hint_mode; + + FT_Bool seac; + + CFF_SubFont current_subfont; /* for current glyph_index */ + + CFF_Decoder_Get_Glyph_Callback get_glyph_callback; + CFF_Decoder_Free_Glyph_Callback free_glyph_callback; + + } CFF_Decoder; + + + typedef const struct CFF_Decoder_FuncsRec_* CFF_Decoder_Funcs; + + typedef struct CFF_Decoder_FuncsRec_ + { + void + (*init)( CFF_Decoder* decoder, + TT_Face face, + CFF_Size size, + CFF_GlyphSlot slot, + FT_Bool hinting, + FT_Render_Mode hint_mode, + CFF_Decoder_Get_Glyph_Callback get_callback, + CFF_Decoder_Free_Glyph_Callback free_callback ); + + FT_Error + (*prepare)( CFF_Decoder* decoder, + CFF_Size size, + FT_UInt glyph_index ); + +#ifdef CFF_CONFIG_OPTION_OLD_ENGINE + FT_Error + (*parse_charstrings_old)( CFF_Decoder* decoder, + FT_Byte* charstring_base, + FT_ULong charstring_len, + FT_Bool in_dict ); +#endif + + FT_Error + (*parse_charstrings)( PS_Decoder* decoder, + FT_Byte* charstring_base, + FT_ULong charstring_len ); + + } CFF_Decoder_FuncsRec; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** AFM PARSER *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + typedef struct AFM_ParserRec_* AFM_Parser; + + typedef struct AFM_Parser_FuncsRec_ + { + FT_Error + (*init)( AFM_Parser parser, + FT_Memory memory, + FT_Byte* base, + FT_Byte* limit ); + + void + (*done)( AFM_Parser parser ); + + FT_Error + (*parse)( AFM_Parser parser ); + + } AFM_Parser_FuncsRec; + + + typedef struct AFM_StreamRec_* AFM_Stream; + + + /************************************************************************** + * + * @struct: + * AFM_ParserRec + * + * @description: + * An AFM_Parser is a parser for the AFM files. + * + * @fields: + * memory :: + * The object used for memory operations (alloc and realloc). + * + * stream :: + * This is an opaque object. + * + * FontInfo :: + * The result will be stored here. + * + * get_index :: + * A user provided function to get a glyph index by its name. + */ + typedef struct AFM_ParserRec_ + { + FT_Memory memory; + AFM_Stream stream; + + AFM_FontInfo FontInfo; + + FT_Int + (*get_index)( const char* name, + FT_Offset len, + void* user_data ); + + void* user_data; + + } AFM_ParserRec; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** TYPE1 CHARMAPS *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + typedef const struct T1_CMap_ClassesRec_* T1_CMap_Classes; + + typedef struct T1_CMap_ClassesRec_ + { + FT_CMap_Class standard; + FT_CMap_Class expert; + FT_CMap_Class custom; + FT_CMap_Class unicode; + + } T1_CMap_ClassesRec; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** PSAux Module Interface *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + typedef struct PSAux_ServiceRec_ + { + /* don't use `PS_Table_Funcs' and friends to avoid compiler warnings */ + const PS_Table_FuncsRec* ps_table_funcs; + const PS_Parser_FuncsRec* ps_parser_funcs; + const T1_Builder_FuncsRec* t1_builder_funcs; + const T1_Decoder_FuncsRec* t1_decoder_funcs; + + void + (*t1_decrypt)( FT_Byte* buffer, + FT_Offset length, + FT_UShort seed ); + + FT_UInt32 + (*cff_random)( FT_UInt32 r ); + + void + (*ps_decoder_init)( PS_Decoder* ps_decoder, + void* decoder, + FT_Bool is_t1 ); + + void + (*t1_make_subfont)( FT_Face face, + PS_Private priv, + CFF_SubFont subfont ); + + T1_CMap_Classes t1_cmap_classes; + + /* fields after this comment line were added after version 2.1.10 */ + const AFM_Parser_FuncsRec* afm_parser_funcs; + + const CFF_Decoder_FuncsRec* cff_decoder_funcs; + + } PSAux_ServiceRec, *PSAux_Service; + + /* backward compatible type definition */ + typedef PSAux_ServiceRec PSAux_Interface; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** Some convenience functions *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + +#define IS_PS_NEWLINE( ch ) \ + ( (ch) == '\r' || \ + (ch) == '\n' ) + +#define IS_PS_SPACE( ch ) \ + ( (ch) == ' ' || \ + IS_PS_NEWLINE( ch ) || \ + (ch) == '\t' || \ + (ch) == '\f' || \ + (ch) == '\0' ) + +#define IS_PS_SPECIAL( ch ) \ + ( (ch) == '/' || \ + (ch) == '(' || (ch) == ')' || \ + (ch) == '<' || (ch) == '>' || \ + (ch) == '[' || (ch) == ']' || \ + (ch) == '{' || (ch) == '}' || \ + (ch) == '%' ) + +#define IS_PS_DELIM( ch ) \ + ( IS_PS_SPACE( ch ) || \ + IS_PS_SPECIAL( ch ) ) + +#define IS_PS_DIGIT( ch ) \ + ( (ch) >= '0' && (ch) <= '9' ) + +#define IS_PS_XDIGIT( ch ) \ + ( IS_PS_DIGIT( ch ) || \ + ( (ch) >= 'A' && (ch) <= 'F' ) || \ + ( (ch) >= 'a' && (ch) <= 'f' ) ) + +#define IS_PS_BASE85( ch ) \ + ( (ch) >= '!' && (ch) <= 'u' ) + +#define IS_PS_TOKEN( cur, limit, token ) \ + ( (char)(cur)[0] == (token)[0] && \ + ( (cur) + sizeof ( (token) ) == (limit) || \ + ( (cur) + sizeof( (token) ) < (limit) && \ + IS_PS_DELIM( (cur)[sizeof ( (token) ) - 1] ) ) ) && \ + ft_strncmp( (char*)(cur), (token), sizeof ( (token) ) - 1 ) == 0 ) + + +FT_END_HEADER + +#endif /* PSAUX_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/pshints.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/pshints.h new file mode 100644 index 0000000..699acea --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/pshints.h @@ -0,0 +1,700 @@ +/**************************************************************************** + * + * pshints.h + * + * Interface to Postscript-specific (Type 1 and Type 2) hints + * recorders (specification only). These are used to support native + * T1/T2 hints in the 'type1', 'cid', and 'cff' font drivers. + * + * Copyright (C) 2001-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef PSHINTS_H_ +#define PSHINTS_H_ + + +#include +#include FT_FREETYPE_H +#include FT_TYPE1_TABLES_H + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** INTERNAL REPRESENTATION OF GLOBALS *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + typedef struct PSH_GlobalsRec_* PSH_Globals; + + typedef FT_Error + (*PSH_Globals_NewFunc)( FT_Memory memory, + T1_Private* private_dict, + PSH_Globals* aglobals ); + + typedef void + (*PSH_Globals_SetScaleFunc)( PSH_Globals globals, + FT_Fixed x_scale, + FT_Fixed y_scale, + FT_Fixed x_delta, + FT_Fixed y_delta ); + + typedef void + (*PSH_Globals_DestroyFunc)( PSH_Globals globals ); + + + typedef struct PSH_Globals_FuncsRec_ + { + PSH_Globals_NewFunc create; + PSH_Globals_SetScaleFunc set_scale; + PSH_Globals_DestroyFunc destroy; + + } PSH_Globals_FuncsRec, *PSH_Globals_Funcs; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** PUBLIC TYPE 1 HINTS RECORDER *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + /************************************************************************** + * + * @type: + * T1_Hints + * + * @description: + * This is a handle to an opaque structure used to record glyph hints + * from a Type 1 character glyph character string. + * + * The methods used to operate on this object are defined by the + * @T1_Hints_FuncsRec structure. Recording glyph hints is normally + * achieved through the following scheme: + * + * - Open a new hint recording session by calling the 'open' method. + * This rewinds the recorder and prepare it for new input. + * + * - For each hint found in the glyph charstring, call the corresponding + * method ('stem', 'stem3', or 'reset'). Note that these functions do + * not return an error code. + * + * - Close the recording session by calling the 'close' method. It + * returns an error code if the hints were invalid or something strange + * happened (e.g., memory shortage). + * + * The hints accumulated in the object can later be used by the + * PostScript hinter. + * + */ + typedef struct T1_HintsRec_* T1_Hints; + + + /************************************************************************** + * + * @type: + * T1_Hints_Funcs + * + * @description: + * A pointer to the @T1_Hints_FuncsRec structure that defines the API of + * a given @T1_Hints object. + * + */ + typedef const struct T1_Hints_FuncsRec_* T1_Hints_Funcs; + + + /************************************************************************** + * + * @functype: + * T1_Hints_OpenFunc + * + * @description: + * A method of the @T1_Hints class used to prepare it for a new Type 1 + * hints recording session. + * + * @input: + * hints :: + * A handle to the Type 1 hints recorder. + * + * @note: + * You should always call the @T1_Hints_CloseFunc method in order to + * close an opened recording session. + * + */ + typedef void + (*T1_Hints_OpenFunc)( T1_Hints hints ); + + + /************************************************************************** + * + * @functype: + * T1_Hints_SetStemFunc + * + * @description: + * A method of the @T1_Hints class used to record a new horizontal or + * vertical stem. This corresponds to the Type 1 'hstem' and 'vstem' + * operators. + * + * @input: + * hints :: + * A handle to the Type 1 hints recorder. + * + * dimension :: + * 0 for horizontal stems (hstem), 1 for vertical ones (vstem). + * + * coords :: + * Array of 2 coordinates in 16.16 format, used as (position,length) + * stem descriptor. + * + * @note: + * Use vertical coordinates (y) for horizontal stems (dim=0). Use + * horizontal coordinates (x) for vertical stems (dim=1). + * + * 'coords[0]' is the absolute stem position (lowest coordinate); + * 'coords[1]' is the length. + * + * The length can be negative, in which case it must be either -20 or + * -21. It is interpreted as a 'ghost' stem, according to the Type 1 + * specification. + * + * If the length is -21 (corresponding to a bottom ghost stem), then the + * real stem position is 'coords[0]+coords[1]'. + * + */ + typedef void + (*T1_Hints_SetStemFunc)( T1_Hints hints, + FT_UInt dimension, + FT_Fixed* coords ); + + + /************************************************************************** + * + * @functype: + * T1_Hints_SetStem3Func + * + * @description: + * A method of the @T1_Hints class used to record three + * counter-controlled horizontal or vertical stems at once. + * + * @input: + * hints :: + * A handle to the Type 1 hints recorder. + * + * dimension :: + * 0 for horizontal stems, 1 for vertical ones. + * + * coords :: + * An array of 6 values in 16.16 format, holding 3 (position,length) + * pairs for the counter-controlled stems. + * + * @note: + * Use vertical coordinates (y) for horizontal stems (dim=0). Use + * horizontal coordinates (x) for vertical stems (dim=1). + * + * The lengths cannot be negative (ghost stems are never + * counter-controlled). + * + */ + typedef void + (*T1_Hints_SetStem3Func)( T1_Hints hints, + FT_UInt dimension, + FT_Fixed* coords ); + + + /************************************************************************** + * + * @functype: + * T1_Hints_ResetFunc + * + * @description: + * A method of the @T1_Hints class used to reset the stems hints in a + * recording session. + * + * @input: + * hints :: + * A handle to the Type 1 hints recorder. + * + * end_point :: + * The index of the last point in the input glyph in which the + * previously defined hints apply. + * + */ + typedef void + (*T1_Hints_ResetFunc)( T1_Hints hints, + FT_UInt end_point ); + + + /************************************************************************** + * + * @functype: + * T1_Hints_CloseFunc + * + * @description: + * A method of the @T1_Hints class used to close a hint recording + * session. + * + * @input: + * hints :: + * A handle to the Type 1 hints recorder. + * + * end_point :: + * The index of the last point in the input glyph. + * + * @return: + * FreeType error code. 0 means success. + * + * @note: + * The error code is set to indicate that an error occurred during the + * recording session. + * + */ + typedef FT_Error + (*T1_Hints_CloseFunc)( T1_Hints hints, + FT_UInt end_point ); + + + /************************************************************************** + * + * @functype: + * T1_Hints_ApplyFunc + * + * @description: + * A method of the @T1_Hints class used to apply hints to the + * corresponding glyph outline. Must be called once all hints have been + * recorded. + * + * @input: + * hints :: + * A handle to the Type 1 hints recorder. + * + * outline :: + * A pointer to the target outline descriptor. + * + * globals :: + * The hinter globals for this font. + * + * hint_mode :: + * Hinting information. + * + * @return: + * FreeType error code. 0 means success. + * + * @note: + * On input, all points within the outline are in font coordinates. On + * output, they are in 1/64th of pixels. + * + * The scaling transformation is taken from the 'globals' object which + * must correspond to the same font as the glyph. + * + */ + typedef FT_Error + (*T1_Hints_ApplyFunc)( T1_Hints hints, + FT_Outline* outline, + PSH_Globals globals, + FT_Render_Mode hint_mode ); + + + /************************************************************************** + * + * @struct: + * T1_Hints_FuncsRec + * + * @description: + * The structure used to provide the API to @T1_Hints objects. + * + * @fields: + * hints :: + * A handle to the T1 Hints recorder. + * + * open :: + * The function to open a recording session. + * + * close :: + * The function to close a recording session. + * + * stem :: + * The function to set a simple stem. + * + * stem3 :: + * The function to set counter-controlled stems. + * + * reset :: + * The function to reset stem hints. + * + * apply :: + * The function to apply the hints to the corresponding glyph outline. + * + */ + typedef struct T1_Hints_FuncsRec_ + { + T1_Hints hints; + T1_Hints_OpenFunc open; + T1_Hints_CloseFunc close; + T1_Hints_SetStemFunc stem; + T1_Hints_SetStem3Func stem3; + T1_Hints_ResetFunc reset; + T1_Hints_ApplyFunc apply; + + } T1_Hints_FuncsRec; + + + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** PUBLIC TYPE 2 HINTS RECORDER *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + + /************************************************************************** + * + * @type: + * T2_Hints + * + * @description: + * This is a handle to an opaque structure used to record glyph hints + * from a Type 2 character glyph character string. + * + * The methods used to operate on this object are defined by the + * @T2_Hints_FuncsRec structure. Recording glyph hints is normally + * achieved through the following scheme: + * + * - Open a new hint recording session by calling the 'open' method. + * This rewinds the recorder and prepare it for new input. + * + * - For each hint found in the glyph charstring, call the corresponding + * method ('stems', 'hintmask', 'counters'). Note that these functions + * do not return an error code. + * + * - Close the recording session by calling the 'close' method. It + * returns an error code if the hints were invalid or something strange + * happened (e.g., memory shortage). + * + * The hints accumulated in the object can later be used by the + * Postscript hinter. + * + */ + typedef struct T2_HintsRec_* T2_Hints; + + + /************************************************************************** + * + * @type: + * T2_Hints_Funcs + * + * @description: + * A pointer to the @T2_Hints_FuncsRec structure that defines the API of + * a given @T2_Hints object. + * + */ + typedef const struct T2_Hints_FuncsRec_* T2_Hints_Funcs; + + + /************************************************************************** + * + * @functype: + * T2_Hints_OpenFunc + * + * @description: + * A method of the @T2_Hints class used to prepare it for a new Type 2 + * hints recording session. + * + * @input: + * hints :: + * A handle to the Type 2 hints recorder. + * + * @note: + * You should always call the @T2_Hints_CloseFunc method in order to + * close an opened recording session. + * + */ + typedef void + (*T2_Hints_OpenFunc)( T2_Hints hints ); + + + /************************************************************************** + * + * @functype: + * T2_Hints_StemsFunc + * + * @description: + * A method of the @T2_Hints class used to set the table of stems in + * either the vertical or horizontal dimension. Equivalent to the + * 'hstem', 'vstem', 'hstemhm', and 'vstemhm' Type 2 operators. + * + * @input: + * hints :: + * A handle to the Type 2 hints recorder. + * + * dimension :: + * 0 for horizontal stems (hstem), 1 for vertical ones (vstem). + * + * count :: + * The number of stems. + * + * coords :: + * An array of 'count' (position,length) pairs in 16.16 format. + * + * @note: + * Use vertical coordinates (y) for horizontal stems (dim=0). Use + * horizontal coordinates (x) for vertical stems (dim=1). + * + * There are '2*count' elements in the 'coords' array. Each even element + * is an absolute position in font units, each odd element is a length in + * font units. + * + * A length can be negative, in which case it must be either -20 or -21. + * It is interpreted as a 'ghost' stem, according to the Type 1 + * specification. + * + */ + typedef void + (*T2_Hints_StemsFunc)( T2_Hints hints, + FT_UInt dimension, + FT_Int count, + FT_Fixed* coordinates ); + + + /************************************************************************** + * + * @functype: + * T2_Hints_MaskFunc + * + * @description: + * A method of the @T2_Hints class used to set a given hintmask (this + * corresponds to the 'hintmask' Type 2 operator). + * + * @input: + * hints :: + * A handle to the Type 2 hints recorder. + * + * end_point :: + * The glyph index of the last point to which the previously defined or + * activated hints apply. + * + * bit_count :: + * The number of bits in the hint mask. + * + * bytes :: + * An array of bytes modelling the hint mask. + * + * @note: + * If the hintmask starts the charstring (before any glyph point + * definition), the value of `end_point` should be 0. + * + * `bit_count` is the number of meaningful bits in the 'bytes' array; it + * must be equal to the total number of hints defined so far (i.e., + * horizontal+verticals). + * + * The 'bytes' array can come directly from the Type 2 charstring and + * respects the same format. + * + */ + typedef void + (*T2_Hints_MaskFunc)( T2_Hints hints, + FT_UInt end_point, + FT_UInt bit_count, + const FT_Byte* bytes ); + + + /************************************************************************** + * + * @functype: + * T2_Hints_CounterFunc + * + * @description: + * A method of the @T2_Hints class used to set a given counter mask (this + * corresponds to the 'hintmask' Type 2 operator). + * + * @input: + * hints :: + * A handle to the Type 2 hints recorder. + * + * end_point :: + * A glyph index of the last point to which the previously defined or + * active hints apply. + * + * bit_count :: + * The number of bits in the hint mask. + * + * bytes :: + * An array of bytes modelling the hint mask. + * + * @note: + * If the hintmask starts the charstring (before any glyph point + * definition), the value of `end_point` should be 0. + * + * `bit_count` is the number of meaningful bits in the 'bytes' array; it + * must be equal to the total number of hints defined so far (i.e., + * horizontal+verticals). + * + * The 'bytes' array can come directly from the Type 2 charstring and + * respects the same format. + * + */ + typedef void + (*T2_Hints_CounterFunc)( T2_Hints hints, + FT_UInt bit_count, + const FT_Byte* bytes ); + + + /************************************************************************** + * + * @functype: + * T2_Hints_CloseFunc + * + * @description: + * A method of the @T2_Hints class used to close a hint recording + * session. + * + * @input: + * hints :: + * A handle to the Type 2 hints recorder. + * + * end_point :: + * The index of the last point in the input glyph. + * + * @return: + * FreeType error code. 0 means success. + * + * @note: + * The error code is set to indicate that an error occurred during the + * recording session. + * + */ + typedef FT_Error + (*T2_Hints_CloseFunc)( T2_Hints hints, + FT_UInt end_point ); + + + /************************************************************************** + * + * @functype: + * T2_Hints_ApplyFunc + * + * @description: + * A method of the @T2_Hints class used to apply hints to the + * corresponding glyph outline. Must be called after the 'close' method. + * + * @input: + * hints :: + * A handle to the Type 2 hints recorder. + * + * outline :: + * A pointer to the target outline descriptor. + * + * globals :: + * The hinter globals for this font. + * + * hint_mode :: + * Hinting information. + * + * @return: + * FreeType error code. 0 means success. + * + * @note: + * On input, all points within the outline are in font coordinates. On + * output, they are in 1/64th of pixels. + * + * The scaling transformation is taken from the 'globals' object which + * must correspond to the same font than the glyph. + * + */ + typedef FT_Error + (*T2_Hints_ApplyFunc)( T2_Hints hints, + FT_Outline* outline, + PSH_Globals globals, + FT_Render_Mode hint_mode ); + + + /************************************************************************** + * + * @struct: + * T2_Hints_FuncsRec + * + * @description: + * The structure used to provide the API to @T2_Hints objects. + * + * @fields: + * hints :: + * A handle to the T2 hints recorder object. + * + * open :: + * The function to open a recording session. + * + * close :: + * The function to close a recording session. + * + * stems :: + * The function to set the dimension's stems table. + * + * hintmask :: + * The function to set hint masks. + * + * counter :: + * The function to set counter masks. + * + * apply :: + * The function to apply the hints on the corresponding glyph outline. + * + */ + typedef struct T2_Hints_FuncsRec_ + { + T2_Hints hints; + T2_Hints_OpenFunc open; + T2_Hints_CloseFunc close; + T2_Hints_StemsFunc stems; + T2_Hints_MaskFunc hintmask; + T2_Hints_CounterFunc counter; + T2_Hints_ApplyFunc apply; + + } T2_Hints_FuncsRec; + + + /* */ + + + typedef struct PSHinter_Interface_ + { + PSH_Globals_Funcs (*get_globals_funcs)( FT_Module module ); + T1_Hints_Funcs (*get_t1_funcs) ( FT_Module module ); + T2_Hints_Funcs (*get_t2_funcs) ( FT_Module module ); + + } PSHinter_Interface; + + typedef PSHinter_Interface* PSHinter_Service; + + +#define FT_DEFINE_PSHINTER_INTERFACE( \ + class_, \ + get_globals_funcs_, \ + get_t1_funcs_, \ + get_t2_funcs_ ) \ + static const PSHinter_Interface class_ = \ + { \ + get_globals_funcs_, \ + get_t1_funcs_, \ + get_t2_funcs_ \ + }; + + +FT_END_HEADER + +#endif /* PSHINTS_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svbdf.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svbdf.h new file mode 100644 index 0000000..e4786ed --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svbdf.h @@ -0,0 +1,66 @@ +/**************************************************************************** + * + * svbdf.h + * + * The FreeType BDF services (specification). + * + * Copyright (C) 2003-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef SVBDF_H_ +#define SVBDF_H_ + +#include FT_BDF_H +#include FT_INTERNAL_SERVICE_H + + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_BDF "bdf" + + typedef FT_Error + (*FT_BDF_GetCharsetIdFunc)( FT_Face face, + const char* *acharset_encoding, + const char* *acharset_registry ); + + typedef FT_Error + (*FT_BDF_GetPropertyFunc)( FT_Face face, + const char* prop_name, + BDF_PropertyRec *aproperty ); + + + FT_DEFINE_SERVICE( BDF ) + { + FT_BDF_GetCharsetIdFunc get_charset_id; + FT_BDF_GetPropertyFunc get_property; + }; + + +#define FT_DEFINE_SERVICE_BDFRec( class_, \ + get_charset_id_, \ + get_property_ ) \ + static const FT_Service_BDFRec class_ = \ + { \ + get_charset_id_, get_property_ \ + }; + + /* */ + + +FT_END_HEADER + + +#endif /* SVBDF_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svcfftl.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svcfftl.h new file mode 100644 index 0000000..6c62173 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svcfftl.h @@ -0,0 +1,90 @@ +/**************************************************************************** + * + * svcfftl.h + * + * The FreeType CFF tables loader service (specification). + * + * Copyright (C) 2017-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef SVCFFTL_H_ +#define SVCFFTL_H_ + +#include FT_INTERNAL_SERVICE_H +#include FT_INTERNAL_CFF_TYPES_H + + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_CFF_LOAD "cff-load" + + + typedef FT_UShort + (*FT_Get_Standard_Encoding_Func)( FT_UInt charcode ); + + typedef FT_Error + (*FT_Load_Private_Dict_Func)( CFF_Font font, + CFF_SubFont subfont, + FT_UInt lenNDV, + FT_Fixed* NDV ); + + typedef FT_Byte + (*FT_FD_Select_Get_Func)( CFF_FDSelect fdselect, + FT_UInt glyph_index ); + + typedef FT_Bool + (*FT_Blend_Check_Vector_Func)( CFF_Blend blend, + FT_UInt vsindex, + FT_UInt lenNDV, + FT_Fixed* NDV ); + + typedef FT_Error + (*FT_Blend_Build_Vector_Func)( CFF_Blend blend, + FT_UInt vsindex, + FT_UInt lenNDV, + FT_Fixed* NDV ); + + + FT_DEFINE_SERVICE( CFFLoad ) + { + FT_Get_Standard_Encoding_Func get_standard_encoding; + FT_Load_Private_Dict_Func load_private_dict; + FT_FD_Select_Get_Func fd_select_get; + FT_Blend_Check_Vector_Func blend_check_vector; + FT_Blend_Build_Vector_Func blend_build_vector; + }; + + +#define FT_DEFINE_SERVICE_CFFLOADREC( class_, \ + get_standard_encoding_, \ + load_private_dict_, \ + fd_select_get_, \ + blend_check_vector_, \ + blend_build_vector_ ) \ + static const FT_Service_CFFLoadRec class_ = \ + { \ + get_standard_encoding_, \ + load_private_dict_, \ + fd_select_get_, \ + blend_check_vector_, \ + blend_build_vector_ \ + }; + + +FT_END_HEADER + + +#endif + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svcid.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svcid.h new file mode 100644 index 0000000..555a5af --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svcid.h @@ -0,0 +1,69 @@ +/**************************************************************************** + * + * svcid.h + * + * The FreeType CID font services (specification). + * + * Copyright (C) 2007-2019 by + * Derek Clegg and Michael Toftdal. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef SVCID_H_ +#define SVCID_H_ + +#include FT_INTERNAL_SERVICE_H + + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_CID "CID" + + typedef FT_Error + (*FT_CID_GetRegistryOrderingSupplementFunc)( FT_Face face, + const char* *registry, + const char* *ordering, + FT_Int *supplement ); + typedef FT_Error + (*FT_CID_GetIsInternallyCIDKeyedFunc)( FT_Face face, + FT_Bool *is_cid ); + typedef FT_Error + (*FT_CID_GetCIDFromGlyphIndexFunc)( FT_Face face, + FT_UInt glyph_index, + FT_UInt *cid ); + + FT_DEFINE_SERVICE( CID ) + { + FT_CID_GetRegistryOrderingSupplementFunc get_ros; + FT_CID_GetIsInternallyCIDKeyedFunc get_is_cid; + FT_CID_GetCIDFromGlyphIndexFunc get_cid_from_glyph_index; + }; + + +#define FT_DEFINE_SERVICE_CIDREC( class_, \ + get_ros_, \ + get_is_cid_, \ + get_cid_from_glyph_index_ ) \ + static const FT_Service_CIDRec class_ = \ + { \ + get_ros_, get_is_cid_, get_cid_from_glyph_index_ \ + }; + + /* */ + + +FT_END_HEADER + + +#endif /* SVCID_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svfntfmt.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svfntfmt.h new file mode 100644 index 0000000..6f4285e --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svfntfmt.h @@ -0,0 +1,55 @@ +/**************************************************************************** + * + * svfntfmt.h + * + * The FreeType font format service (specification only). + * + * Copyright (C) 2003-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef SVFNTFMT_H_ +#define SVFNTFMT_H_ + +#include FT_INTERNAL_SERVICE_H + + +FT_BEGIN_HEADER + + + /* + * A trivial service used to return the name of a face's font driver, + * according to the XFree86 nomenclature. Note that the service data is a + * simple constant string pointer. + */ + +#define FT_SERVICE_ID_FONT_FORMAT "font-format" + +#define FT_FONT_FORMAT_TRUETYPE "TrueType" +#define FT_FONT_FORMAT_TYPE_1 "Type 1" +#define FT_FONT_FORMAT_BDF "BDF" +#define FT_FONT_FORMAT_PCF "PCF" +#define FT_FONT_FORMAT_TYPE_42 "Type 42" +#define FT_FONT_FORMAT_CID "CID Type 1" +#define FT_FONT_FORMAT_CFF "CFF" +#define FT_FONT_FORMAT_PFR "PFR" +#define FT_FONT_FORMAT_WINFNT "Windows FNT" + + /* */ + + +FT_END_HEADER + + +#endif /* SVFNTFMT_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svgldict.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svgldict.h new file mode 100644 index 0000000..ca8edf0 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svgldict.h @@ -0,0 +1,72 @@ +/**************************************************************************** + * + * svgldict.h + * + * The FreeType glyph dictionary services (specification). + * + * Copyright (C) 2003-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef SVGLDICT_H_ +#define SVGLDICT_H_ + +#include FT_INTERNAL_SERVICE_H + + +FT_BEGIN_HEADER + + + /* + * A service used to retrieve glyph names, as well as to find the index of + * a given glyph name in a font. + * + */ + +#define FT_SERVICE_ID_GLYPH_DICT "glyph-dict" + + + typedef FT_Error + (*FT_GlyphDict_GetNameFunc)( FT_Face face, + FT_UInt glyph_index, + FT_Pointer buffer, + FT_UInt buffer_max ); + + typedef FT_UInt + (*FT_GlyphDict_NameIndexFunc)( FT_Face face, + FT_String* glyph_name ); + + + FT_DEFINE_SERVICE( GlyphDict ) + { + FT_GlyphDict_GetNameFunc get_name; + FT_GlyphDict_NameIndexFunc name_index; /* optional */ + }; + + +#define FT_DEFINE_SERVICE_GLYPHDICTREC( class_, \ + get_name_, \ + name_index_ ) \ + static const FT_Service_GlyphDictRec class_ = \ + { \ + get_name_, name_index_ \ + }; + + /* */ + + +FT_END_HEADER + + +#endif /* SVGLDICT_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svgxval.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svgxval.h new file mode 100644 index 0000000..0bb76f3 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svgxval.h @@ -0,0 +1,72 @@ +/**************************************************************************** + * + * svgxval.h + * + * FreeType API for validating TrueTypeGX/AAT tables (specification). + * + * Copyright (C) 2004-2019 by + * Masatake YAMATO, Red Hat K.K., + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + +/**************************************************************************** + * + * gxvalid is derived from both gxlayout module and otvalid module. + * Development of gxlayout is supported by the Information-technology + * Promotion Agency(IPA), Japan. + * + */ + + +#ifndef SVGXVAL_H_ +#define SVGXVAL_H_ + +#include FT_GX_VALIDATE_H +#include FT_INTERNAL_VALIDATE_H + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_GX_VALIDATE "truetypegx-validate" +#define FT_SERVICE_ID_CLASSICKERN_VALIDATE "classickern-validate" + + typedef FT_Error + (*gxv_validate_func)( FT_Face face, + FT_UInt gx_flags, + FT_Bytes tables[FT_VALIDATE_GX_LENGTH], + FT_UInt table_length ); + + + typedef FT_Error + (*ckern_validate_func)( FT_Face face, + FT_UInt ckern_flags, + FT_Bytes *ckern_table ); + + + FT_DEFINE_SERVICE( GXvalidate ) + { + gxv_validate_func validate; + }; + + FT_DEFINE_SERVICE( CKERNvalidate ) + { + ckern_validate_func validate; + }; + + /* */ + + +FT_END_HEADER + + +#endif /* SVGXVAL_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svkern.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svkern.h new file mode 100644 index 0000000..f992a32 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svkern.h @@ -0,0 +1,51 @@ +/**************************************************************************** + * + * svkern.h + * + * The FreeType Kerning service (specification). + * + * Copyright (C) 2006-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef SVKERN_H_ +#define SVKERN_H_ + +#include FT_INTERNAL_SERVICE_H +#include FT_TRUETYPE_TABLES_H + + +FT_BEGIN_HEADER + +#define FT_SERVICE_ID_KERNING "kerning" + + + typedef FT_Error + (*FT_Kerning_TrackGetFunc)( FT_Face face, + FT_Fixed point_size, + FT_Int degree, + FT_Fixed* akerning ); + + FT_DEFINE_SERVICE( Kerning ) + { + FT_Kerning_TrackGetFunc get_track; + }; + + /* */ + + +FT_END_HEADER + + +#endif /* SVKERN_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svmetric.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svmetric.h new file mode 100644 index 0000000..d688bc7 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svmetric.h @@ -0,0 +1,125 @@ +/**************************************************************************** + * + * svmetric.h + * + * The FreeType services for metrics variations (specification). + * + * Copyright (C) 2016-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef SVMETRIC_H_ +#define SVMETRIC_H_ + +#include FT_INTERNAL_SERVICE_H + + +FT_BEGIN_HEADER + + + /* + * A service to manage the `HVAR, `MVAR', and `VVAR' OpenType tables. + * + */ + +#define FT_SERVICE_ID_METRICS_VARIATIONS "metrics-variations" + + + /* HVAR */ + + typedef FT_Error + (*FT_HAdvance_Adjust_Func)( FT_Face face, + FT_UInt gindex, + FT_Int *avalue ); + + typedef FT_Error + (*FT_LSB_Adjust_Func)( FT_Face face, + FT_UInt gindex, + FT_Int *avalue ); + + typedef FT_Error + (*FT_RSB_Adjust_Func)( FT_Face face, + FT_UInt gindex, + FT_Int *avalue ); + + /* VVAR */ + + typedef FT_Error + (*FT_VAdvance_Adjust_Func)( FT_Face face, + FT_UInt gindex, + FT_Int *avalue ); + + typedef FT_Error + (*FT_TSB_Adjust_Func)( FT_Face face, + FT_UInt gindex, + FT_Int *avalue ); + + typedef FT_Error + (*FT_BSB_Adjust_Func)( FT_Face face, + FT_UInt gindex, + FT_Int *avalue ); + + typedef FT_Error + (*FT_VOrg_Adjust_Func)( FT_Face face, + FT_UInt gindex, + FT_Int *avalue ); + + /* MVAR */ + + typedef void + (*FT_Metrics_Adjust_Func)( FT_Face face ); + + + FT_DEFINE_SERVICE( MetricsVariations ) + { + FT_HAdvance_Adjust_Func hadvance_adjust; + FT_LSB_Adjust_Func lsb_adjust; + FT_RSB_Adjust_Func rsb_adjust; + + FT_VAdvance_Adjust_Func vadvance_adjust; + FT_TSB_Adjust_Func tsb_adjust; + FT_BSB_Adjust_Func bsb_adjust; + FT_VOrg_Adjust_Func vorg_adjust; + + FT_Metrics_Adjust_Func metrics_adjust; + }; + + +#define FT_DEFINE_SERVICE_METRICSVARIATIONSREC( class_, \ + hadvance_adjust_, \ + lsb_adjust_, \ + rsb_adjust_, \ + vadvance_adjust_, \ + tsb_adjust_, \ + bsb_adjust_, \ + vorg_adjust_, \ + metrics_adjust_ ) \ + static const FT_Service_MetricsVariationsRec class_ = \ + { \ + hadvance_adjust_, \ + lsb_adjust_, \ + rsb_adjust_, \ + vadvance_adjust_, \ + tsb_adjust_, \ + bsb_adjust_, \ + vorg_adjust_, \ + metrics_adjust_ \ + }; + + /* */ + + +FT_END_HEADER + +#endif /* SVMETRIC_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svmm.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svmm.h new file mode 100644 index 0000000..3652f20 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svmm.h @@ -0,0 +1,156 @@ +/**************************************************************************** + * + * svmm.h + * + * The FreeType Multiple Masters and GX var services (specification). + * + * Copyright (C) 2003-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef SVMM_H_ +#define SVMM_H_ + +#include FT_INTERNAL_SERVICE_H + + +FT_BEGIN_HEADER + + + /* + * A service used to manage multiple-masters data in a given face. + * + * See the related APIs in `ftmm.h' (FT_MULTIPLE_MASTERS_H). + * + */ + +#define FT_SERVICE_ID_MULTI_MASTERS "multi-masters" + + + typedef FT_Error + (*FT_Get_MM_Func)( FT_Face face, + FT_Multi_Master* master ); + + typedef FT_Error + (*FT_Get_MM_Var_Func)( FT_Face face, + FT_MM_Var* *master ); + + typedef FT_Error + (*FT_Set_MM_Design_Func)( FT_Face face, + FT_UInt num_coords, + FT_Long* coords ); + + /* use return value -1 to indicate that the new coordinates */ + /* are equal to the current ones; no changes are thus needed */ + typedef FT_Error + (*FT_Set_Var_Design_Func)( FT_Face face, + FT_UInt num_coords, + FT_Fixed* coords ); + + /* use return value -1 to indicate that the new coordinates */ + /* are equal to the current ones; no changes are thus needed */ + typedef FT_Error + (*FT_Set_MM_Blend_Func)( FT_Face face, + FT_UInt num_coords, + FT_Long* coords ); + + typedef FT_Error + (*FT_Get_Var_Design_Func)( FT_Face face, + FT_UInt num_coords, + FT_Fixed* coords ); + + typedef FT_Error + (*FT_Set_Instance_Func)( FT_Face face, + FT_UInt instance_index ); + + typedef FT_Error + (*FT_Get_MM_Blend_Func)( FT_Face face, + FT_UInt num_coords, + FT_Long* coords ); + + typedef FT_Error + (*FT_Get_Var_Blend_Func)( FT_Face face, + FT_UInt *num_coords, + FT_Fixed* *coords, + FT_Fixed* *normalizedcoords, + FT_MM_Var* *mm_var ); + + typedef void + (*FT_Done_Blend_Func)( FT_Face ); + + typedef FT_Error + (*FT_Set_MM_WeightVector_Func)( FT_Face face, + FT_UInt len, + FT_Fixed* weight_vector ); + + typedef FT_Error + (*FT_Get_MM_WeightVector_Func)( FT_Face face, + FT_UInt* len, + FT_Fixed* weight_vector ); + + + FT_DEFINE_SERVICE( MultiMasters ) + { + FT_Get_MM_Func get_mm; + FT_Set_MM_Design_Func set_mm_design; + FT_Set_MM_Blend_Func set_mm_blend; + FT_Get_MM_Blend_Func get_mm_blend; + FT_Get_MM_Var_Func get_mm_var; + FT_Set_Var_Design_Func set_var_design; + FT_Get_Var_Design_Func get_var_design; + FT_Set_Instance_Func set_instance; + FT_Set_MM_WeightVector_Func set_mm_weightvector; + FT_Get_MM_WeightVector_Func get_mm_weightvector; + + /* for internal use; only needed for code sharing between modules */ + FT_Get_Var_Blend_Func get_var_blend; + FT_Done_Blend_Func done_blend; + }; + + +#define FT_DEFINE_SERVICE_MULTIMASTERSREC( class_, \ + get_mm_, \ + set_mm_design_, \ + set_mm_blend_, \ + get_mm_blend_, \ + get_mm_var_, \ + set_var_design_, \ + get_var_design_, \ + set_instance_, \ + set_weightvector_, \ + get_weightvector_, \ + get_var_blend_, \ + done_blend_ ) \ + static const FT_Service_MultiMastersRec class_ = \ + { \ + get_mm_, \ + set_mm_design_, \ + set_mm_blend_, \ + get_mm_blend_, \ + get_mm_var_, \ + set_var_design_, \ + get_var_design_, \ + set_instance_, \ + set_weightvector_, \ + get_weightvector_, \ + get_var_blend_, \ + done_blend_ \ + }; + + /* */ + + +FT_END_HEADER + +#endif /* SVMM_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svotval.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svotval.h new file mode 100644 index 0000000..cab4c6e --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svotval.h @@ -0,0 +1,55 @@ +/**************************************************************************** + * + * svotval.h + * + * The FreeType OpenType validation service (specification). + * + * Copyright (C) 2004-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef SVOTVAL_H_ +#define SVOTVAL_H_ + +#include FT_OPENTYPE_VALIDATE_H +#include FT_INTERNAL_VALIDATE_H + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_OPENTYPE_VALIDATE "opentype-validate" + + + typedef FT_Error + (*otv_validate_func)( FT_Face volatile face, + FT_UInt ot_flags, + FT_Bytes *base, + FT_Bytes *gdef, + FT_Bytes *gpos, + FT_Bytes *gsub, + FT_Bytes *jstf ); + + + FT_DEFINE_SERVICE( OTvalidate ) + { + otv_validate_func validate; + }; + + /* */ + + +FT_END_HEADER + + +#endif /* SVOTVAL_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svpfr.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svpfr.h new file mode 100644 index 0000000..fd01d61 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svpfr.h @@ -0,0 +1,66 @@ +/**************************************************************************** + * + * svpfr.h + * + * Internal PFR service functions (specification). + * + * Copyright (C) 2003-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef SVPFR_H_ +#define SVPFR_H_ + +#include FT_PFR_H +#include FT_INTERNAL_SERVICE_H + + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_PFR_METRICS "pfr-metrics" + + + typedef FT_Error + (*FT_PFR_GetMetricsFunc)( FT_Face face, + FT_UInt *aoutline, + FT_UInt *ametrics, + FT_Fixed *ax_scale, + FT_Fixed *ay_scale ); + + typedef FT_Error + (*FT_PFR_GetKerningFunc)( FT_Face face, + FT_UInt left, + FT_UInt right, + FT_Vector *avector ); + + typedef FT_Error + (*FT_PFR_GetAdvanceFunc)( FT_Face face, + FT_UInt gindex, + FT_Pos *aadvance ); + + + FT_DEFINE_SERVICE( PfrMetrics ) + { + FT_PFR_GetMetricsFunc get_metrics; + FT_PFR_GetKerningFunc get_kerning; + FT_PFR_GetAdvanceFunc get_advance; + + }; + + /* */ + +FT_END_HEADER + +#endif /* SVPFR_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svpostnm.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svpostnm.h new file mode 100644 index 0000000..18e3843 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svpostnm.h @@ -0,0 +1,65 @@ +/**************************************************************************** + * + * svpostnm.h + * + * The FreeType PostScript name services (specification). + * + * Copyright (C) 2003-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef SVPOSTNM_H_ +#define SVPOSTNM_H_ + +#include FT_INTERNAL_SERVICE_H + + +FT_BEGIN_HEADER + + /* + * A trivial service used to retrieve the PostScript name of a given font + * when available. The `get_name' field should never be `NULL`. + * + * The corresponding function can return `NULL` to indicate that the + * PostScript name is not available. + * + * The name is owned by the face and will be destroyed with it. + */ + +#define FT_SERVICE_ID_POSTSCRIPT_FONT_NAME "postscript-font-name" + + + typedef const char* + (*FT_PsName_GetFunc)( FT_Face face ); + + + FT_DEFINE_SERVICE( PsFontName ) + { + FT_PsName_GetFunc get_ps_font_name; + }; + + +#define FT_DEFINE_SERVICE_PSFONTNAMEREC( class_, get_ps_font_name_ ) \ + static const FT_Service_PsFontNameRec class_ = \ + { \ + get_ps_font_name_ \ + }; + + /* */ + + +FT_END_HEADER + + +#endif /* SVPOSTNM_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svprop.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svprop.h new file mode 100644 index 0000000..e48d015 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svprop.h @@ -0,0 +1,66 @@ +/**************************************************************************** + * + * svprop.h + * + * The FreeType property service (specification). + * + * Copyright (C) 2012-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef SVPROP_H_ +#define SVPROP_H_ + + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_PROPERTIES "properties" + + + typedef FT_Error + (*FT_Properties_SetFunc)( FT_Module module, + const char* property_name, + const void* value, + FT_Bool value_is_string ); + + typedef FT_Error + (*FT_Properties_GetFunc)( FT_Module module, + const char* property_name, + void* value ); + + + FT_DEFINE_SERVICE( Properties ) + { + FT_Properties_SetFunc set_property; + FT_Properties_GetFunc get_property; + }; + + +#define FT_DEFINE_SERVICE_PROPERTIESREC( class_, \ + set_property_, \ + get_property_ ) \ + static const FT_Service_PropertiesRec class_ = \ + { \ + set_property_, \ + get_property_ \ + }; + + /* */ + + +FT_END_HEADER + + +#endif /* SVPROP_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svpscmap.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svpscmap.h new file mode 100644 index 0000000..dfac3ba --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svpscmap.h @@ -0,0 +1,145 @@ +/**************************************************************************** + * + * svpscmap.h + * + * The FreeType PostScript charmap service (specification). + * + * Copyright (C) 2003-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef SVPSCMAP_H_ +#define SVPSCMAP_H_ + +#include FT_INTERNAL_OBJECTS_H + + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_POSTSCRIPT_CMAPS "postscript-cmaps" + + + /* + * Adobe glyph name to unicode value. + */ + typedef FT_UInt32 + (*PS_Unicode_ValueFunc)( const char* glyph_name ); + + /* + * Macintosh name id to glyph name. `NULL` if invalid index. + */ + typedef const char* + (*PS_Macintosh_NameFunc)( FT_UInt name_index ); + + /* + * Adobe standard string ID to glyph name. `NULL` if invalid index. + */ + typedef const char* + (*PS_Adobe_Std_StringsFunc)( FT_UInt string_index ); + + + /* + * Simple unicode -> glyph index charmap built from font glyph names table. + */ + typedef struct PS_UniMap_ + { + FT_UInt32 unicode; /* bit 31 set: is glyph variant */ + FT_UInt glyph_index; + + } PS_UniMap; + + + typedef struct PS_UnicodesRec_* PS_Unicodes; + + typedef struct PS_UnicodesRec_ + { + FT_CMapRec cmap; + FT_UInt num_maps; + PS_UniMap* maps; + + } PS_UnicodesRec; + + + /* + * A function which returns a glyph name for a given index. Returns + * `NULL` if invalid index. + */ + typedef const char* + (*PS_GetGlyphNameFunc)( FT_Pointer data, + FT_UInt string_index ); + + /* + * A function used to release the glyph name returned by + * PS_GetGlyphNameFunc, when needed + */ + typedef void + (*PS_FreeGlyphNameFunc)( FT_Pointer data, + const char* name ); + + typedef FT_Error + (*PS_Unicodes_InitFunc)( FT_Memory memory, + PS_Unicodes unicodes, + FT_UInt num_glyphs, + PS_GetGlyphNameFunc get_glyph_name, + PS_FreeGlyphNameFunc free_glyph_name, + FT_Pointer glyph_data ); + + typedef FT_UInt + (*PS_Unicodes_CharIndexFunc)( PS_Unicodes unicodes, + FT_UInt32 unicode ); + + typedef FT_UInt32 + (*PS_Unicodes_CharNextFunc)( PS_Unicodes unicodes, + FT_UInt32 *unicode ); + + + FT_DEFINE_SERVICE( PsCMaps ) + { + PS_Unicode_ValueFunc unicode_value; + + PS_Unicodes_InitFunc unicodes_init; + PS_Unicodes_CharIndexFunc unicodes_char_index; + PS_Unicodes_CharNextFunc unicodes_char_next; + + PS_Macintosh_NameFunc macintosh_name; + PS_Adobe_Std_StringsFunc adobe_std_strings; + const unsigned short* adobe_std_encoding; + const unsigned short* adobe_expert_encoding; + }; + + +#define FT_DEFINE_SERVICE_PSCMAPSREC( class_, \ + unicode_value_, \ + unicodes_init_, \ + unicodes_char_index_, \ + unicodes_char_next_, \ + macintosh_name_, \ + adobe_std_strings_, \ + adobe_std_encoding_, \ + adobe_expert_encoding_ ) \ + static const FT_Service_PsCMapsRec class_ = \ + { \ + unicode_value_, unicodes_init_, \ + unicodes_char_index_, unicodes_char_next_, macintosh_name_, \ + adobe_std_strings_, adobe_std_encoding_, adobe_expert_encoding_ \ + }; + + /* */ + + +FT_END_HEADER + + +#endif /* SVPSCMAP_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svpsinfo.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svpsinfo.h new file mode 100644 index 0000000..fb4e0e3 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svpsinfo.h @@ -0,0 +1,86 @@ +/**************************************************************************** + * + * svpsinfo.h + * + * The FreeType PostScript info service (specification). + * + * Copyright (C) 2003-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef SVPSINFO_H_ +#define SVPSINFO_H_ + +#include FT_INTERNAL_SERVICE_H +#include FT_INTERNAL_TYPE1_TYPES_H + + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_POSTSCRIPT_INFO "postscript-info" + + + typedef FT_Error + (*PS_GetFontInfoFunc)( FT_Face face, + PS_FontInfoRec* afont_info ); + + typedef FT_Error + (*PS_GetFontExtraFunc)( FT_Face face, + PS_FontExtraRec* afont_extra ); + + typedef FT_Int + (*PS_HasGlyphNamesFunc)( FT_Face face ); + + typedef FT_Error + (*PS_GetFontPrivateFunc)( FT_Face face, + PS_PrivateRec* afont_private ); + + typedef FT_Long + (*PS_GetFontValueFunc)( FT_Face face, + PS_Dict_Keys key, + FT_UInt idx, + void *value, + FT_Long value_len ); + + + FT_DEFINE_SERVICE( PsInfo ) + { + PS_GetFontInfoFunc ps_get_font_info; + PS_GetFontExtraFunc ps_get_font_extra; + PS_HasGlyphNamesFunc ps_has_glyph_names; + PS_GetFontPrivateFunc ps_get_font_private; + PS_GetFontValueFunc ps_get_font_value; + }; + + +#define FT_DEFINE_SERVICE_PSINFOREC( class_, \ + get_font_info_, \ + ps_get_font_extra_, \ + has_glyph_names_, \ + get_font_private_, \ + get_font_value_ ) \ + static const FT_Service_PsInfoRec class_ = \ + { \ + get_font_info_, ps_get_font_extra_, has_glyph_names_, \ + get_font_private_, get_font_value_ \ + }; + + /* */ + + +FT_END_HEADER + + +#endif /* SVPSINFO_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svsfnt.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svsfnt.h new file mode 100644 index 0000000..464aa20 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svsfnt.h @@ -0,0 +1,88 @@ +/**************************************************************************** + * + * svsfnt.h + * + * The FreeType SFNT table loading service (specification). + * + * Copyright (C) 2003-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef SVSFNT_H_ +#define SVSFNT_H_ + +#include FT_INTERNAL_SERVICE_H +#include FT_TRUETYPE_TABLES_H + + +FT_BEGIN_HEADER + + + /* + * SFNT table loading service. + */ + +#define FT_SERVICE_ID_SFNT_TABLE "sfnt-table" + + + /* + * Used to implement FT_Load_Sfnt_Table(). + */ + typedef FT_Error + (*FT_SFNT_TableLoadFunc)( FT_Face face, + FT_ULong tag, + FT_Long offset, + FT_Byte* buffer, + FT_ULong* length ); + + /* + * Used to implement FT_Get_Sfnt_Table(). + */ + typedef void* + (*FT_SFNT_TableGetFunc)( FT_Face face, + FT_Sfnt_Tag tag ); + + + /* + * Used to implement FT_Sfnt_Table_Info(). + */ + typedef FT_Error + (*FT_SFNT_TableInfoFunc)( FT_Face face, + FT_UInt idx, + FT_ULong *tag, + FT_ULong *offset, + FT_ULong *length ); + + + FT_DEFINE_SERVICE( SFNT_Table ) + { + FT_SFNT_TableLoadFunc load_table; + FT_SFNT_TableGetFunc get_table; + FT_SFNT_TableInfoFunc table_info; + }; + + +#define FT_DEFINE_SERVICE_SFNT_TABLEREC( class_, load_, get_, info_ ) \ + static const FT_Service_SFNT_TableRec class_ = \ + { \ + load_, get_, info_ \ + }; + + /* */ + + +FT_END_HEADER + + +#endif /* SVSFNT_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svttcmap.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svttcmap.h new file mode 100644 index 0000000..0fcb813 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svttcmap.h @@ -0,0 +1,90 @@ +/**************************************************************************** + * + * svttcmap.h + * + * The FreeType TrueType/sfnt cmap extra information service. + * + * Copyright (C) 2003-2019 by + * Masatake YAMATO, Redhat K.K., + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + +/* Development of this service is support of + Information-technology Promotion Agency, Japan. */ + +#ifndef SVTTCMAP_H_ +#define SVTTCMAP_H_ + +#include FT_INTERNAL_SERVICE_H +#include FT_TRUETYPE_TABLES_H + + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_TT_CMAP "tt-cmaps" + + + /************************************************************************** + * + * @struct: + * TT_CMapInfo + * + * @description: + * A structure used to store TrueType/sfnt specific cmap information + * which is not covered by the generic @FT_CharMap structure. This + * structure can be accessed with the @FT_Get_TT_CMap_Info function. + * + * @fields: + * language :: + * The language ID used in Mac fonts. Definitions of values are in + * `ttnameid.h`. + * + * format :: + * The cmap format. OpenType 1.6 defines the formats 0 (byte encoding + * table), 2~(high-byte mapping through table), 4~(segment mapping to + * delta values), 6~(trimmed table mapping), 8~(mixed 16-bit and 32-bit + * coverage), 10~(trimmed array), 12~(segmented coverage), 13~(last + * resort font), and 14 (Unicode Variation Sequences). + */ + typedef struct TT_CMapInfo_ + { + FT_ULong language; + FT_Long format; + + } TT_CMapInfo; + + + typedef FT_Error + (*TT_CMap_Info_GetFunc)( FT_CharMap charmap, + TT_CMapInfo *cmap_info ); + + + FT_DEFINE_SERVICE( TTCMaps ) + { + TT_CMap_Info_GetFunc get_cmap_info; + }; + + +#define FT_DEFINE_SERVICE_TTCMAPSREC( class_, get_cmap_info_ ) \ + static const FT_Service_TTCMapsRec class_ = \ + { \ + get_cmap_info_ \ + }; + + /* */ + + +FT_END_HEADER + +#endif /* SVTTCMAP_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svtteng.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svtteng.h new file mode 100644 index 0000000..a852f5c --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svtteng.h @@ -0,0 +1,53 @@ +/**************************************************************************** + * + * svtteng.h + * + * The FreeType TrueType engine query service (specification). + * + * Copyright (C) 2006-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef SVTTENG_H_ +#define SVTTENG_H_ + +#include FT_INTERNAL_SERVICE_H +#include FT_MODULE_H + + +FT_BEGIN_HEADER + + + /* + * SFNT table loading service. + */ + +#define FT_SERVICE_ID_TRUETYPE_ENGINE "truetype-engine" + + /* + * Used to implement FT_Get_TrueType_Engine_Type + */ + + FT_DEFINE_SERVICE( TrueTypeEngine ) + { + FT_TrueTypeEngineType engine_type; + }; + + /* */ + + +FT_END_HEADER + + +#endif /* SVTTENG_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svttglyf.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svttglyf.h new file mode 100644 index 0000000..c879877 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svttglyf.h @@ -0,0 +1,56 @@ +/**************************************************************************** + * + * svttglyf.h + * + * The FreeType TrueType glyph service. + * + * Copyright (C) 2007-2019 by + * David Turner. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + +#ifndef SVTTGLYF_H_ +#define SVTTGLYF_H_ + +#include FT_INTERNAL_SERVICE_H +#include FT_TRUETYPE_TABLES_H + + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_TT_GLYF "tt-glyf" + + + typedef FT_ULong + (*TT_Glyf_GetLocationFunc)( FT_Face face, + FT_UInt gindex, + FT_ULong *psize ); + + FT_DEFINE_SERVICE( TTGlyf ) + { + TT_Glyf_GetLocationFunc get_location; + }; + + +#define FT_DEFINE_SERVICE_TTGLYFREC( class_, get_location_ ) \ + static const FT_Service_TTGlyfRec class_ = \ + { \ + get_location_ \ + }; + + /* */ + + +FT_END_HEADER + +#endif /* SVTTGLYF_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svwinfnt.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svwinfnt.h new file mode 100644 index 0000000..38ee020 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/services/svwinfnt.h @@ -0,0 +1,50 @@ +/**************************************************************************** + * + * svwinfnt.h + * + * The FreeType Windows FNT/FONT service (specification). + * + * Copyright (C) 2003-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef SVWINFNT_H_ +#define SVWINFNT_H_ + +#include FT_INTERNAL_SERVICE_H +#include FT_WINFONTS_H + + +FT_BEGIN_HEADER + + +#define FT_SERVICE_ID_WINFNT "winfonts" + + typedef FT_Error + (*FT_WinFnt_GetHeaderFunc)( FT_Face face, + FT_WinFNT_HeaderRec *aheader ); + + + FT_DEFINE_SERVICE( WinFnt ) + { + FT_WinFnt_GetHeaderFunc get_header; + }; + + /* */ + + +FT_END_HEADER + + +#endif /* SVWINFNT_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/sfnt.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/sfnt.h new file mode 100644 index 0000000..225f40d --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/sfnt.h @@ -0,0 +1,875 @@ +/**************************************************************************** + * + * sfnt.h + * + * High-level 'sfnt' driver interface (specification). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef SFNT_H_ +#define SFNT_H_ + + +#include +#include FT_INTERNAL_DRIVER_H +#include FT_INTERNAL_TRUETYPE_TYPES_H + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @functype: + * TT_Init_Face_Func + * + * @description: + * First part of the SFNT face object initialization. This finds the + * face in a SFNT file or collection, and load its format tag in + * face->format_tag. + * + * @input: + * stream :: + * The input stream. + * + * face :: + * A handle to the target face object. + * + * face_index :: + * The index of the TrueType font, if we are opening a collection, in + * bits 0-15. The numbered instance index~+~1 of a GX (sub)font, if + * applicable, in bits 16-30. + * + * num_params :: + * The number of additional parameters. + * + * params :: + * Optional additional parameters. + * + * @return: + * FreeType error code. 0 means success. + * + * @note: + * The stream cursor must be at the font file's origin. + * + * This function recognizes fonts embedded in a 'TrueType collection'. + * + * Once the format tag has been validated by the font driver, it should + * then call the TT_Load_Face_Func() callback to read the rest of the + * SFNT tables in the object. + */ + typedef FT_Error + (*TT_Init_Face_Func)( FT_Stream stream, + TT_Face face, + FT_Int face_index, + FT_Int num_params, + FT_Parameter* params ); + + + /************************************************************************** + * + * @functype: + * TT_Load_Face_Func + * + * @description: + * Second part of the SFNT face object initialization. This loads the + * common SFNT tables (head, OS/2, maxp, metrics, etc.) in the face + * object. + * + * @input: + * stream :: + * The input stream. + * + * face :: + * A handle to the target face object. + * + * face_index :: + * The index of the TrueType font, if we are opening a collection, in + * bits 0-15. The numbered instance index~+~1 of a GX (sub)font, if + * applicable, in bits 16-30. + * + * num_params :: + * The number of additional parameters. + * + * params :: + * Optional additional parameters. + * + * @return: + * FreeType error code. 0 means success. + * + * @note: + * This function must be called after TT_Init_Face_Func(). + */ + typedef FT_Error + (*TT_Load_Face_Func)( FT_Stream stream, + TT_Face face, + FT_Int face_index, + FT_Int num_params, + FT_Parameter* params ); + + + /************************************************************************** + * + * @functype: + * TT_Done_Face_Func + * + * @description: + * A callback used to delete the common SFNT data from a face. + * + * @input: + * face :: + * A handle to the target face object. + * + * @note: + * This function does NOT destroy the face object. + */ + typedef void + (*TT_Done_Face_Func)( TT_Face face ); + + + /************************************************************************** + * + * @functype: + * TT_Load_Any_Func + * + * @description: + * Load any font table into client memory. + * + * @input: + * face :: + * The face object to look for. + * + * tag :: + * The tag of table to load. Use the value 0 if you want to access the + * whole font file, else set this parameter to a valid TrueType table + * tag that you can forge with the MAKE_TT_TAG macro. + * + * offset :: + * The starting offset in the table (or the file if tag == 0). + * + * length :: + * The address of the decision variable: + * + * If `length == NULL`: Loads the whole table. Returns an error if + * 'offset' == 0! + * + * If `*length == 0`: Exits immediately; returning the length of the + * given table or of the font file, depending on the value of 'tag'. + * + * If `*length != 0`: Loads the next 'length' bytes of table or font, + * starting at offset 'offset' (in table or font too). + * + * @output: + * buffer :: + * The address of target buffer. + * + * @return: + * TrueType error code. 0 means success. + */ + typedef FT_Error + (*TT_Load_Any_Func)( TT_Face face, + FT_ULong tag, + FT_Long offset, + FT_Byte *buffer, + FT_ULong* length ); + + + /************************************************************************** + * + * @functype: + * TT_Find_SBit_Image_Func + * + * @description: + * Check whether an embedded bitmap (an 'sbit') exists for a given glyph, + * at a given strike. + * + * @input: + * face :: + * The target face object. + * + * glyph_index :: + * The glyph index. + * + * strike_index :: + * The current strike index. + * + * @output: + * arange :: + * The SBit range containing the glyph index. + * + * astrike :: + * The SBit strike containing the glyph index. + * + * aglyph_offset :: + * The offset of the glyph data in 'EBDT' table. + * + * @return: + * FreeType error code. 0 means success. Returns + * SFNT_Err_Invalid_Argument if no sbit exists for the requested glyph. + */ + typedef FT_Error + (*TT_Find_SBit_Image_Func)( TT_Face face, + FT_UInt glyph_index, + FT_ULong strike_index, + TT_SBit_Range *arange, + TT_SBit_Strike *astrike, + FT_ULong *aglyph_offset ); + + + /************************************************************************** + * + * @functype: + * TT_Load_SBit_Metrics_Func + * + * @description: + * Get the big metrics for a given embedded bitmap. + * + * @input: + * stream :: + * The input stream. + * + * range :: + * The SBit range containing the glyph. + * + * @output: + * big_metrics :: + * A big SBit metrics structure for the glyph. + * + * @return: + * FreeType error code. 0 means success. + * + * @note: + * The stream cursor must be positioned at the glyph's offset within the + * 'EBDT' table before the call. + * + * If the image format uses variable metrics, the stream cursor is + * positioned just after the metrics header in the 'EBDT' table on + * function exit. + */ + typedef FT_Error + (*TT_Load_SBit_Metrics_Func)( FT_Stream stream, + TT_SBit_Range range, + TT_SBit_Metrics metrics ); + + + /************************************************************************** + * + * @functype: + * TT_Load_SBit_Image_Func + * + * @description: + * Load a given glyph sbit image from the font resource. This also + * returns its metrics. + * + * @input: + * face :: + * The target face object. + * + * strike_index :: + * The strike index. + * + * glyph_index :: + * The current glyph index. + * + * load_flags :: + * The current load flags. + * + * stream :: + * The input stream. + * + * @output: + * amap :: + * The target pixmap. + * + * ametrics :: + * A big sbit metrics structure for the glyph image. + * + * @return: + * FreeType error code. 0 means success. Returns an error if no glyph + * sbit exists for the index. + * + * @note: + * The `map.buffer` field is always freed before the glyph is loaded. + */ + typedef FT_Error + (*TT_Load_SBit_Image_Func)( TT_Face face, + FT_ULong strike_index, + FT_UInt glyph_index, + FT_UInt load_flags, + FT_Stream stream, + FT_Bitmap *amap, + TT_SBit_MetricsRec *ametrics ); + + + /************************************************************************** + * + * @functype: + * TT_Set_SBit_Strike_Func + * + * @description: + * Select an sbit strike for a given size request. + * + * @input: + * face :: + * The target face object. + * + * req :: + * The size request. + * + * @output: + * astrike_index :: + * The index of the sbit strike. + * + * @return: + * FreeType error code. 0 means success. Returns an error if no sbit + * strike exists for the selected ppem values. + */ + typedef FT_Error + (*TT_Set_SBit_Strike_Func)( TT_Face face, + FT_Size_Request req, + FT_ULong* astrike_index ); + + + /************************************************************************** + * + * @functype: + * TT_Load_Strike_Metrics_Func + * + * @description: + * Load the metrics of a given strike. + * + * @input: + * face :: + * The target face object. + * + * strike_index :: + * The strike index. + * + * @output: + * metrics :: + * the metrics of the strike. + * + * @return: + * FreeType error code. 0 means success. Returns an error if no such + * sbit strike exists. + */ + typedef FT_Error + (*TT_Load_Strike_Metrics_Func)( TT_Face face, + FT_ULong strike_index, + FT_Size_Metrics* metrics ); + + + /************************************************************************** + * + * @functype: + * TT_Get_PS_Name_Func + * + * @description: + * Get the PostScript glyph name of a glyph. + * + * @input: + * idx :: + * The glyph index. + * + * PSname :: + * The address of a string pointer. Will be `NULL` in case of error, + * otherwise it is a pointer to the glyph name. + * + * You must not modify the returned string! + * + * @output: + * FreeType error code. 0 means success. + */ + typedef FT_Error + (*TT_Get_PS_Name_Func)( TT_Face face, + FT_UInt idx, + FT_String** PSname ); + + + /************************************************************************** + * + * @functype: + * TT_Load_Metrics_Func + * + * @description: + * Load a metrics table, which is a table with a horizontal and a + * vertical version. + * + * @input: + * face :: + * A handle to the target face object. + * + * stream :: + * The input stream. + * + * vertical :: + * A boolean flag. If set, load the vertical one. + * + * @return: + * FreeType error code. 0 means success. + */ + typedef FT_Error + (*TT_Load_Metrics_Func)( TT_Face face, + FT_Stream stream, + FT_Bool vertical ); + + + /************************************************************************** + * + * @functype: + * TT_Get_Metrics_Func + * + * @description: + * Load the horizontal or vertical header in a face object. + * + * @input: + * face :: + * A handle to the target face object. + * + * vertical :: + * A boolean flag. If set, load vertical metrics. + * + * gindex :: + * The glyph index. + * + * @output: + * abearing :: + * The horizontal (or vertical) bearing. Set to zero in case of error. + * + * aadvance :: + * The horizontal (or vertical) advance. Set to zero in case of error. + */ + typedef void + (*TT_Get_Metrics_Func)( TT_Face face, + FT_Bool vertical, + FT_UInt gindex, + FT_Short* abearing, + FT_UShort* aadvance ); + + + /************************************************************************** + * + * @functype: + * TT_Set_Palette_Func + * + * @description: + * Load the colors into `face->palette` for a given palette index. + * + * @input: + * face :: + * The target face object. + * + * idx :: + * The palette index. + * + * @return: + * FreeType error code. 0 means success. + */ + typedef FT_Error + (*TT_Set_Palette_Func)( TT_Face face, + FT_UInt idx ); + + + /************************************************************************** + * + * @functype: + * TT_Get_Colr_Layer_Func + * + * @description: + * Iteratively get the color layer data of a given glyph index. + * + * @input: + * face :: + * The target face object. + * + * base_glyph :: + * The glyph index the colored glyph layers are associated with. + * + * @inout: + * iterator :: + * An @FT_LayerIterator object. For the first call you should set + * `iterator->p` to `NULL`. For all following calls, simply use the + * same object again. + * + * @output: + * aglyph_index :: + * The glyph index of the current layer. + * + * acolor_index :: + * The color index into the font face's color palette of the current + * layer. The value 0xFFFF is special; it doesn't reference a palette + * entry but indicates that the text foreground color should be used + * instead (to be set up by the application outside of FreeType). + * + * @return: + * Value~1 if everything is OK. If there are no more layers (or if there + * are no layers at all), value~0 gets returned. In case of an error, + * value~0 is returned also. + */ + typedef FT_Bool + (*TT_Get_Colr_Layer_Func)( TT_Face face, + FT_UInt base_glyph, + FT_UInt *aglyph_index, + FT_UInt *acolor_index, + FT_LayerIterator* iterator ); + + + /************************************************************************** + * + * @functype: + * TT_Blend_Colr_Func + * + * @description: + * Blend the bitmap in `new_glyph` into `base_glyph` using the color + * specified by `color_index`. If `color_index` is 0xFFFF, use + * `face->foreground_color` if `face->have_foreground_color` is set. + * Otherwise check `face->palette_data.palette_flags`: If present and + * @FT_PALETTE_FOR_DARK_BACKGROUND is set, use BGRA value 0xFFFFFFFF + * (white opaque). Otherwise use BGRA value 0x000000FF (black opaque). + * + * @input: + * face :: + * The target face object. + * + * color_index :: + * Color index from the COLR table. + * + * base_glyph :: + * Slot for bitmap to be merged into. The underlying bitmap may get + * reallocated. + * + * new_glyph :: + * Slot to be incooperated into `base_glyph`. + * + * @return: + * FreeType error code. 0 means success. Returns an error if + * color_index is invalid or reallocation fails. + */ + typedef FT_Error + (*TT_Blend_Colr_Func)( TT_Face face, + FT_UInt color_index, + FT_GlyphSlot base_glyph, + FT_GlyphSlot new_glyph ); + + + /************************************************************************** + * + * @functype: + * TT_Get_Name_Func + * + * @description: + * From the 'name' table, return a given ENGLISH name record in ASCII. + * + * @input: + * face :: + * A handle to the source face object. + * + * nameid :: + * The name id of the name record to return. + * + * @inout: + * name :: + * The address of an allocated string pointer. `NULL` if no name is + * present. + * + * @return: + * FreeType error code. 0 means success. + */ + typedef FT_Error + (*TT_Get_Name_Func)( TT_Face face, + FT_UShort nameid, + FT_String** name ); + + + /************************************************************************** + * + * @functype: + * TT_Get_Name_ID_Func + * + * @description: + * Search whether an ENGLISH version for a given name ID is in the 'name' + * table. + * + * @input: + * face :: + * A handle to the source face object. + * + * nameid :: + * The name id of the name record to return. + * + * @output: + * win :: + * If non-negative, an index into the 'name' table with the + * corresponding (3,1) or (3,0) Windows entry. + * + * apple :: + * If non-negative, an index into the 'name' table with the + * corresponding (1,0) Apple entry. + * + * @return: + * 1 if there is either a win or apple entry (or both), 0 otheriwse. + */ + typedef FT_Bool + (*TT_Get_Name_ID_Func)( TT_Face face, + FT_UShort nameid, + FT_Int *win, + FT_Int *apple ); + + + /************************************************************************** + * + * @functype: + * TT_Load_Table_Func + * + * @description: + * Load a given TrueType table. + * + * @input: + * face :: + * A handle to the target face object. + * + * stream :: + * The input stream. + * + * @return: + * FreeType error code. 0 means success. + * + * @note: + * The function uses `face->goto_table` to seek the stream to the start + * of the table, except while loading the font directory. + */ + typedef FT_Error + (*TT_Load_Table_Func)( TT_Face face, + FT_Stream stream ); + + + /************************************************************************** + * + * @functype: + * TT_Free_Table_Func + * + * @description: + * Free a given TrueType table. + * + * @input: + * face :: + * A handle to the target face object. + */ + typedef void + (*TT_Free_Table_Func)( TT_Face face ); + + + /* + * @functype: + * TT_Face_GetKerningFunc + * + * @description: + * Return the horizontal kerning value between two glyphs. + * + * @input: + * face :: + * A handle to the source face object. + * + * left_glyph :: + * The left glyph index. + * + * right_glyph :: + * The right glyph index. + * + * @return: + * The kerning value in font units. + */ + typedef FT_Int + (*TT_Face_GetKerningFunc)( TT_Face face, + FT_UInt left_glyph, + FT_UInt right_glyph ); + + + /************************************************************************** + * + * @struct: + * SFNT_Interface + * + * @description: + * This structure holds pointers to the functions used to load and free + * the basic tables that are required in a 'sfnt' font file. + * + * @fields: + * Check the various xxx_Func() descriptions for details. + */ + typedef struct SFNT_Interface_ + { + TT_Loader_GotoTableFunc goto_table; + + TT_Init_Face_Func init_face; + TT_Load_Face_Func load_face; + TT_Done_Face_Func done_face; + FT_Module_Requester get_interface; + + TT_Load_Any_Func load_any; + + /* these functions are called by `load_face' but they can also */ + /* be called from external modules, if there is a need to do so */ + TT_Load_Table_Func load_head; + TT_Load_Metrics_Func load_hhea; + TT_Load_Table_Func load_cmap; + TT_Load_Table_Func load_maxp; + TT_Load_Table_Func load_os2; + TT_Load_Table_Func load_post; + + TT_Load_Table_Func load_name; + TT_Free_Table_Func free_name; + + /* this field was called `load_kerning' up to version 2.1.10 */ + TT_Load_Table_Func load_kern; + + TT_Load_Table_Func load_gasp; + TT_Load_Table_Func load_pclt; + + /* see `ttload.h'; this field was called `load_bitmap_header' up to */ + /* version 2.1.10 */ + TT_Load_Table_Func load_bhed; + + TT_Load_SBit_Image_Func load_sbit_image; + + /* see `ttpost.h' */ + TT_Get_PS_Name_Func get_psname; + TT_Free_Table_Func free_psnames; + + /* starting here, the structure differs from version 2.1.7 */ + + /* this field was introduced in version 2.1.8, named `get_psname' */ + TT_Face_GetKerningFunc get_kerning; + + /* new elements introduced after version 2.1.10 */ + + /* load the font directory, i.e., the offset table and */ + /* the table directory */ + TT_Load_Table_Func load_font_dir; + TT_Load_Metrics_Func load_hmtx; + + TT_Load_Table_Func load_eblc; + TT_Free_Table_Func free_eblc; + + TT_Set_SBit_Strike_Func set_sbit_strike; + TT_Load_Strike_Metrics_Func load_strike_metrics; + + TT_Load_Table_Func load_cpal; + TT_Load_Table_Func load_colr; + TT_Free_Table_Func free_cpal; + TT_Free_Table_Func free_colr; + TT_Set_Palette_Func set_palette; + TT_Get_Colr_Layer_Func get_colr_layer; + TT_Blend_Colr_Func colr_blend; + + TT_Get_Metrics_Func get_metrics; + + TT_Get_Name_Func get_name; + TT_Get_Name_ID_Func get_name_id; + + } SFNT_Interface; + + + /* transitional */ + typedef SFNT_Interface* SFNT_Service; + + +#define FT_DEFINE_SFNT_INTERFACE( \ + class_, \ + goto_table_, \ + init_face_, \ + load_face_, \ + done_face_, \ + get_interface_, \ + load_any_, \ + load_head_, \ + load_hhea_, \ + load_cmap_, \ + load_maxp_, \ + load_os2_, \ + load_post_, \ + load_name_, \ + free_name_, \ + load_kern_, \ + load_gasp_, \ + load_pclt_, \ + load_bhed_, \ + load_sbit_image_, \ + get_psname_, \ + free_psnames_, \ + get_kerning_, \ + load_font_dir_, \ + load_hmtx_, \ + load_eblc_, \ + free_eblc_, \ + set_sbit_strike_, \ + load_strike_metrics_, \ + load_cpal_, \ + load_colr_, \ + free_cpal_, \ + free_colr_, \ + set_palette_, \ + get_colr_layer_, \ + colr_blend_, \ + get_metrics_, \ + get_name_, \ + get_name_id_ ) \ + static const SFNT_Interface class_ = \ + { \ + goto_table_, \ + init_face_, \ + load_face_, \ + done_face_, \ + get_interface_, \ + load_any_, \ + load_head_, \ + load_hhea_, \ + load_cmap_, \ + load_maxp_, \ + load_os2_, \ + load_post_, \ + load_name_, \ + free_name_, \ + load_kern_, \ + load_gasp_, \ + load_pclt_, \ + load_bhed_, \ + load_sbit_image_, \ + get_psname_, \ + free_psnames_, \ + get_kerning_, \ + load_font_dir_, \ + load_hmtx_, \ + load_eblc_, \ + free_eblc_, \ + set_sbit_strike_, \ + load_strike_metrics_, \ + load_cpal_, \ + load_colr_, \ + free_cpal_, \ + free_colr_, \ + set_palette_, \ + get_colr_layer_, \ + colr_blend_, \ + get_metrics_, \ + get_name_, \ + get_name_id_ \ + }; + + +FT_END_HEADER + +#endif /* SFNT_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/t1types.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/t1types.h new file mode 100644 index 0000000..e197a1a --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/t1types.h @@ -0,0 +1,260 @@ +/**************************************************************************** + * + * t1types.h + * + * Basic Type1/Type2 type definitions and interface (specification + * only). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef T1TYPES_H_ +#define T1TYPES_H_ + + +#include +#include FT_TYPE1_TABLES_H +#include FT_INTERNAL_POSTSCRIPT_HINTS_H +#include FT_INTERNAL_SERVICE_H +#include FT_INTERNAL_HASH_H +#include FT_SERVICE_POSTSCRIPT_CMAPS_H + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** REQUIRED TYPE1/TYPE2 TABLES DEFINITIONS ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @struct: + * T1_EncodingRec + * + * @description: + * A structure modeling a custom encoding. + * + * @fields: + * num_chars :: + * The number of character codes in the encoding. Usually 256. + * + * code_first :: + * The lowest valid character code in the encoding. + * + * code_last :: + * The highest valid character code in the encoding + 1. When equal to + * code_first there are no valid character codes. + * + * char_index :: + * An array of corresponding glyph indices. + * + * char_name :: + * An array of corresponding glyph names. + */ + typedef struct T1_EncodingRecRec_ + { + FT_Int num_chars; + FT_Int code_first; + FT_Int code_last; + + FT_UShort* char_index; + FT_String** char_name; + + } T1_EncodingRec, *T1_Encoding; + + + /* used to hold extra data of PS_FontInfoRec that + * cannot be stored in the publicly defined structure. + * + * Note these can't be blended with multiple-masters. + */ + typedef struct PS_FontExtraRec_ + { + FT_UShort fs_type; + + } PS_FontExtraRec; + + + typedef struct T1_FontRec_ + { + PS_FontInfoRec font_info; /* font info dictionary */ + PS_FontExtraRec font_extra; /* font info extra fields */ + PS_PrivateRec private_dict; /* private dictionary */ + FT_String* font_name; /* top-level dictionary */ + + T1_EncodingType encoding_type; + T1_EncodingRec encoding; + + FT_Byte* subrs_block; + FT_Byte* charstrings_block; + FT_Byte* glyph_names_block; + + FT_Int num_subrs; + FT_Byte** subrs; + FT_UInt* subrs_len; + FT_Hash subrs_hash; + + FT_Int num_glyphs; + FT_String** glyph_names; /* array of glyph names */ + FT_Byte** charstrings; /* array of glyph charstrings */ + FT_UInt* charstrings_len; + + FT_Byte paint_type; + FT_Byte font_type; + FT_Matrix font_matrix; + FT_Vector font_offset; + FT_BBox font_bbox; + FT_Long font_id; + + FT_Fixed stroke_width; + + } T1_FontRec, *T1_Font; + + + typedef struct CID_SubrsRec_ + { + FT_Int num_subrs; + FT_Byte** code; + + } CID_SubrsRec, *CID_Subrs; + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** AFM FONT INFORMATION STRUCTURES ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + typedef struct AFM_TrackKernRec_ + { + FT_Int degree; + FT_Fixed min_ptsize; + FT_Fixed min_kern; + FT_Fixed max_ptsize; + FT_Fixed max_kern; + + } AFM_TrackKernRec, *AFM_TrackKern; + + typedef struct AFM_KernPairRec_ + { + FT_UInt index1; + FT_UInt index2; + FT_Int x; + FT_Int y; + + } AFM_KernPairRec, *AFM_KernPair; + + typedef struct AFM_FontInfoRec_ + { + FT_Bool IsCIDFont; + FT_BBox FontBBox; + FT_Fixed Ascender; + FT_Fixed Descender; + AFM_TrackKern TrackKerns; /* free if non-NULL */ + FT_UInt NumTrackKern; + AFM_KernPair KernPairs; /* free if non-NULL */ + FT_UInt NumKernPair; + + } AFM_FontInfoRec, *AFM_FontInfo; + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** ORIGINAL T1_FACE CLASS DEFINITION ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + typedef struct T1_FaceRec_* T1_Face; + typedef struct CID_FaceRec_* CID_Face; + + + typedef struct T1_FaceRec_ + { + FT_FaceRec root; + T1_FontRec type1; + const void* psnames; + const void* psaux; + const void* afm_data; + FT_CharMapRec charmaprecs[2]; + FT_CharMap charmaps[2]; + + /* support for Multiple Masters fonts */ + PS_Blend blend; + + /* undocumented, optional: indices of subroutines that express */ + /* the NormalizeDesignVector and the ConvertDesignVector procedure, */ + /* respectively, as Type 2 charstrings; -1 if keywords not present */ + FT_Int ndv_idx; + FT_Int cdv_idx; + + /* undocumented, optional: has the same meaning as len_buildchar */ + /* for Type 2 fonts; manipulated by othersubrs 19, 24, and 25 */ + FT_UInt len_buildchar; + FT_Long* buildchar; + + /* since version 2.1 - interface to PostScript hinter */ + const void* pshinter; + + } T1_FaceRec; + + + typedef struct CID_FaceRec_ + { + FT_FaceRec root; + void* psnames; + void* psaux; + CID_FaceInfoRec cid; + PS_FontExtraRec font_extra; +#if 0 + void* afm_data; +#endif + CID_Subrs subrs; + + /* since version 2.1 - interface to PostScript hinter */ + void* pshinter; + + /* since version 2.1.8, but was originally positioned after `afm_data' */ + FT_Byte* binary_data; /* used if hex data has been converted */ + FT_Stream cid_stream; + + } CID_FaceRec; + + +FT_END_HEADER + +#endif /* T1TYPES_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/tttypes.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/tttypes.h new file mode 100644 index 0000000..5e9f40e --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/internal/tttypes.h @@ -0,0 +1,1854 @@ +/**************************************************************************** + * + * tttypes.h + * + * Basic SFNT/TrueType type definitions and interface (specification + * only). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef TTTYPES_H_ +#define TTTYPES_H_ + + +#include +#include FT_TRUETYPE_TABLES_H +#include FT_INTERNAL_OBJECTS_H +#include FT_COLOR_H + +#ifdef TT_CONFIG_OPTION_GX_VAR_SUPPORT +#include FT_MULTIPLE_MASTERS_H +#endif + + +FT_BEGIN_HEADER + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** REQUIRED TRUETYPE/OPENTYPE TABLES DEFINITIONS ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @struct: + * TTC_HeaderRec + * + * @description: + * TrueType collection header. This table contains the offsets of the + * font headers of each distinct TrueType face in the file. + * + * @fields: + * tag :: + * Must be 'ttc~' to indicate a TrueType collection. + * + * version :: + * The version number. + * + * count :: + * The number of faces in the collection. The specification says this + * should be an unsigned long, but we use a signed long since we need + * the value -1 for specific purposes. + * + * offsets :: + * The offsets of the font headers, one per face. + */ + typedef struct TTC_HeaderRec_ + { + FT_ULong tag; + FT_Fixed version; + FT_Long count; + FT_ULong* offsets; + + } TTC_HeaderRec; + + + /************************************************************************** + * + * @struct: + * SFNT_HeaderRec + * + * @description: + * SFNT file format header. + * + * @fields: + * format_tag :: + * The font format tag. + * + * num_tables :: + * The number of tables in file. + * + * search_range :: + * Must be '16 * (max power of 2 <= num_tables)'. + * + * entry_selector :: + * Must be log2 of 'search_range / 16'. + * + * range_shift :: + * Must be 'num_tables * 16 - search_range'. + */ + typedef struct SFNT_HeaderRec_ + { + FT_ULong format_tag; + FT_UShort num_tables; + FT_UShort search_range; + FT_UShort entry_selector; + FT_UShort range_shift; + + FT_ULong offset; /* not in file */ + + } SFNT_HeaderRec, *SFNT_Header; + + + /************************************************************************** + * + * @struct: + * TT_TableRec + * + * @description: + * This structure describes a given table of a TrueType font. + * + * @fields: + * Tag :: + * A four-bytes tag describing the table. + * + * CheckSum :: + * The table checksum. This value can be ignored. + * + * Offset :: + * The offset of the table from the start of the TrueType font in its + * resource. + * + * Length :: + * The table length (in bytes). + */ + typedef struct TT_TableRec_ + { + FT_ULong Tag; /* table type */ + FT_ULong CheckSum; /* table checksum */ + FT_ULong Offset; /* table file offset */ + FT_ULong Length; /* table length */ + + } TT_TableRec, *TT_Table; + + + /************************************************************************** + * + * @struct: + * WOFF_HeaderRec + * + * @description: + * WOFF file format header. + * + * @fields: + * See + * + * https://www.w3.org/TR/WOFF/#WOFFHeader + */ + typedef struct WOFF_HeaderRec_ + { + FT_ULong signature; + FT_ULong flavor; + FT_ULong length; + FT_UShort num_tables; + FT_UShort reserved; + FT_ULong totalSfntSize; + FT_UShort majorVersion; + FT_UShort minorVersion; + FT_ULong metaOffset; + FT_ULong metaLength; + FT_ULong metaOrigLength; + FT_ULong privOffset; + FT_ULong privLength; + + } WOFF_HeaderRec, *WOFF_Header; + + + /************************************************************************** + * + * @struct: + * WOFF_TableRec + * + * @description: + * This structure describes a given table of a WOFF font. + * + * @fields: + * Tag :: + * A four-bytes tag describing the table. + * + * Offset :: + * The offset of the table from the start of the WOFF font in its + * resource. + * + * CompLength :: + * Compressed table length (in bytes). + * + * OrigLength :: + * Uncompressed table length (in bytes). + * + * CheckSum :: + * The table checksum. This value can be ignored. + * + * OrigOffset :: + * The uncompressed table file offset. This value gets computed while + * constructing the (uncompressed) SFNT header. It is not contained in + * the WOFF file. + */ + typedef struct WOFF_TableRec_ + { + FT_ULong Tag; /* table ID */ + FT_ULong Offset; /* table file offset */ + FT_ULong CompLength; /* compressed table length */ + FT_ULong OrigLength; /* uncompressed table length */ + FT_ULong CheckSum; /* uncompressed checksum */ + + FT_ULong OrigOffset; /* uncompressed table file offset */ + /* (not in the WOFF file) */ + } WOFF_TableRec, *WOFF_Table; + + + /************************************************************************** + * + * @struct: + * TT_LongMetricsRec + * + * @description: + * A structure modeling the long metrics of the 'hmtx' and 'vmtx' + * TrueType tables. The values are expressed in font units. + * + * @fields: + * advance :: + * The advance width or height for the glyph. + * + * bearing :: + * The left-side or top-side bearing for the glyph. + */ + typedef struct TT_LongMetricsRec_ + { + FT_UShort advance; + FT_Short bearing; + + } TT_LongMetricsRec, *TT_LongMetrics; + + + /************************************************************************** + * + * @type: + * TT_ShortMetrics + * + * @description: + * A simple type to model the short metrics of the 'hmtx' and 'vmtx' + * tables. + */ + typedef FT_Short TT_ShortMetrics; + + + /************************************************************************** + * + * @struct: + * TT_NameRec + * + * @description: + * A structure modeling TrueType name records. Name records are used to + * store important strings like family name, style name, copyright, + * etc. in _localized_ versions (i.e., language, encoding, etc). + * + * @fields: + * platformID :: + * The ID of the name's encoding platform. + * + * encodingID :: + * The platform-specific ID for the name's encoding. + * + * languageID :: + * The platform-specific ID for the name's language. + * + * nameID :: + * The ID specifying what kind of name this is. + * + * stringLength :: + * The length of the string in bytes. + * + * stringOffset :: + * The offset to the string in the 'name' table. + * + * string :: + * A pointer to the string's bytes. Note that these are usually UTF-16 + * encoded characters. + */ + typedef struct TT_NameRec_ + { + FT_UShort platformID; + FT_UShort encodingID; + FT_UShort languageID; + FT_UShort nameID; + FT_UShort stringLength; + FT_ULong stringOffset; + + /* this last field is not defined in the spec */ + /* but used by the FreeType engine */ + + FT_Byte* string; + + } TT_NameRec, *TT_Name; + + + /************************************************************************** + * + * @struct: + * TT_LangTagRec + * + * @description: + * A structure modeling language tag records in SFNT 'name' tables, + * introduced in OpenType version 1.6. + * + * @fields: + * stringLength :: + * The length of the string in bytes. + * + * stringOffset :: + * The offset to the string in the 'name' table. + * + * string :: + * A pointer to the string's bytes. Note that these are UTF-16BE + * encoded characters. + */ + typedef struct TT_LangTagRec_ + { + FT_UShort stringLength; + FT_ULong stringOffset; + + /* this last field is not defined in the spec */ + /* but used by the FreeType engine */ + + FT_Byte* string; + + } TT_LangTagRec, *TT_LangTag; + + + /************************************************************************** + * + * @struct: + * TT_NameTableRec + * + * @description: + * A structure modeling the TrueType name table. + * + * @fields: + * format :: + * The format of the name table. + * + * numNameRecords :: + * The number of names in table. + * + * storageOffset :: + * The offset of the name table in the 'name' TrueType table. + * + * names :: + * An array of name records. + * + * numLangTagRecords :: + * The number of language tags in table. + * + * langTags :: + * An array of language tag records. + * + * stream :: + * The file's input stream. + */ + typedef struct TT_NameTableRec_ + { + FT_UShort format; + FT_UInt numNameRecords; + FT_UInt storageOffset; + TT_NameRec* names; + FT_UInt numLangTagRecords; + TT_LangTagRec* langTags; + FT_Stream stream; + + } TT_NameTableRec, *TT_NameTable; + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** OPTIONAL TRUETYPE/OPENTYPE TABLES DEFINITIONS ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @struct: + * TT_GaspRangeRec + * + * @description: + * A tiny structure used to model a gasp range according to the TrueType + * specification. + * + * @fields: + * maxPPEM :: + * The maximum ppem value to which `gaspFlag` applies. + * + * gaspFlag :: + * A flag describing the grid-fitting and anti-aliasing modes to be + * used. + */ + typedef struct TT_GaspRangeRec_ + { + FT_UShort maxPPEM; + FT_UShort gaspFlag; + + } TT_GaspRangeRec, *TT_GaspRange; + + +#define TT_GASP_GRIDFIT 0x01 +#define TT_GASP_DOGRAY 0x02 + + + /************************************************************************** + * + * @struct: + * TT_GaspRec + * + * @description: + * A structure modeling the TrueType 'gasp' table used to specify + * grid-fitting and anti-aliasing behaviour. + * + * @fields: + * version :: + * The version number. + * + * numRanges :: + * The number of gasp ranges in table. + * + * gaspRanges :: + * An array of gasp ranges. + */ + typedef struct TT_Gasp_ + { + FT_UShort version; + FT_UShort numRanges; + TT_GaspRange gaspRanges; + + } TT_GaspRec; + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** EMBEDDED BITMAPS SUPPORT ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @struct: + * TT_SBit_MetricsRec + * + * @description: + * A structure used to hold the big metrics of a given glyph bitmap in a + * TrueType or OpenType font. These are usually found in the 'EBDT' + * (Microsoft) or 'bloc' (Apple) table. + * + * @fields: + * height :: + * The glyph height in pixels. + * + * width :: + * The glyph width in pixels. + * + * horiBearingX :: + * The horizontal left bearing. + * + * horiBearingY :: + * The horizontal top bearing. + * + * horiAdvance :: + * The horizontal advance. + * + * vertBearingX :: + * The vertical left bearing. + * + * vertBearingY :: + * The vertical top bearing. + * + * vertAdvance :: + * The vertical advance. + */ + typedef struct TT_SBit_MetricsRec_ + { + FT_UShort height; + FT_UShort width; + + FT_Short horiBearingX; + FT_Short horiBearingY; + FT_UShort horiAdvance; + + FT_Short vertBearingX; + FT_Short vertBearingY; + FT_UShort vertAdvance; + + } TT_SBit_MetricsRec, *TT_SBit_Metrics; + + + /************************************************************************** + * + * @struct: + * TT_SBit_SmallMetricsRec + * + * @description: + * A structure used to hold the small metrics of a given glyph bitmap in + * a TrueType or OpenType font. These are usually found in the 'EBDT' + * (Microsoft) or the 'bdat' (Apple) table. + * + * @fields: + * height :: + * The glyph height in pixels. + * + * width :: + * The glyph width in pixels. + * + * bearingX :: + * The left-side bearing. + * + * bearingY :: + * The top-side bearing. + * + * advance :: + * The advance width or height. + */ + typedef struct TT_SBit_Small_Metrics_ + { + FT_Byte height; + FT_Byte width; + + FT_Char bearingX; + FT_Char bearingY; + FT_Byte advance; + + } TT_SBit_SmallMetricsRec, *TT_SBit_SmallMetrics; + + + /************************************************************************** + * + * @struct: + * TT_SBit_LineMetricsRec + * + * @description: + * A structure used to describe the text line metrics of a given bitmap + * strike, for either a horizontal or vertical layout. + * + * @fields: + * ascender :: + * The ascender in pixels. + * + * descender :: + * The descender in pixels. + * + * max_width :: + * The maximum glyph width in pixels. + * + * caret_slope_enumerator :: + * Rise of the caret slope, typically set to 1 for non-italic fonts. + * + * caret_slope_denominator :: + * Rise of the caret slope, typically set to 0 for non-italic fonts. + * + * caret_offset :: + * Offset in pixels to move the caret for proper positioning. + * + * min_origin_SB :: + * Minimum of horiBearingX (resp. vertBearingY). + * min_advance_SB :: + * Minimum of + * + * horizontal advance - ( horiBearingX + width ) + * + * resp. + * + * vertical advance - ( vertBearingY + height ) + * + * max_before_BL :: + * Maximum of horiBearingY (resp. vertBearingY). + * + * min_after_BL :: + * Minimum of + * + * horiBearingY - height + * + * resp. + * + * vertBearingX - width + * + * pads :: + * Unused (to make the size of the record a multiple of 32 bits. + */ + typedef struct TT_SBit_LineMetricsRec_ + { + FT_Char ascender; + FT_Char descender; + FT_Byte max_width; + FT_Char caret_slope_numerator; + FT_Char caret_slope_denominator; + FT_Char caret_offset; + FT_Char min_origin_SB; + FT_Char min_advance_SB; + FT_Char max_before_BL; + FT_Char min_after_BL; + FT_Char pads[2]; + + } TT_SBit_LineMetricsRec, *TT_SBit_LineMetrics; + + + /************************************************************************** + * + * @struct: + * TT_SBit_RangeRec + * + * @description: + * A TrueType/OpenType subIndexTable as defined in the 'EBLC' (Microsoft) + * or 'bloc' (Apple) tables. + * + * @fields: + * first_glyph :: + * The first glyph index in the range. + * + * last_glyph :: + * The last glyph index in the range. + * + * index_format :: + * The format of index table. Valid values are 1 to 5. + * + * image_format :: + * The format of 'EBDT' image data. + * + * image_offset :: + * The offset to image data in 'EBDT'. + * + * image_size :: + * For index formats 2 and 5. This is the size in bytes of each glyph + * bitmap. + * + * big_metrics :: + * For index formats 2 and 5. This is the big metrics for each glyph + * bitmap. + * + * num_glyphs :: + * For index formats 4 and 5. This is the number of glyphs in the code + * array. + * + * glyph_offsets :: + * For index formats 1 and 3. + * + * glyph_codes :: + * For index formats 4 and 5. + * + * table_offset :: + * The offset of the index table in the 'EBLC' table. Only used during + * strike loading. + */ + typedef struct TT_SBit_RangeRec_ + { + FT_UShort first_glyph; + FT_UShort last_glyph; + + FT_UShort index_format; + FT_UShort image_format; + FT_ULong image_offset; + + FT_ULong image_size; + TT_SBit_MetricsRec metrics; + FT_ULong num_glyphs; + + FT_ULong* glyph_offsets; + FT_UShort* glyph_codes; + + FT_ULong table_offset; + + } TT_SBit_RangeRec, *TT_SBit_Range; + + + /************************************************************************** + * + * @struct: + * TT_SBit_StrikeRec + * + * @description: + * A structure used describe a given bitmap strike in the 'EBLC' + * (Microsoft) or 'bloc' (Apple) tables. + * + * @fields: + * num_index_ranges :: + * The number of index ranges. + * + * index_ranges :: + * An array of glyph index ranges. + * + * color_ref :: + * Unused. `color_ref` is put in for future enhancements, but these + * fields are already in use by other platforms (e.g. Newton). For + * details, please see + * + * https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6bloc.html + * + * hori :: + * The line metrics for horizontal layouts. + * + * vert :: + * The line metrics for vertical layouts. + * + * start_glyph :: + * The lowest glyph index for this strike. + * + * end_glyph :: + * The highest glyph index for this strike. + * + * x_ppem :: + * The number of horizontal pixels per EM. + * + * y_ppem :: + * The number of vertical pixels per EM. + * + * bit_depth :: + * The bit depth. Valid values are 1, 2, 4, and 8. + * + * flags :: + * Is this a vertical or horizontal strike? For details, please see + * + * https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6bloc.html + */ + typedef struct TT_SBit_StrikeRec_ + { + FT_Int num_ranges; + TT_SBit_Range sbit_ranges; + FT_ULong ranges_offset; + + FT_ULong color_ref; + + TT_SBit_LineMetricsRec hori; + TT_SBit_LineMetricsRec vert; + + FT_UShort start_glyph; + FT_UShort end_glyph; + + FT_Byte x_ppem; + FT_Byte y_ppem; + + FT_Byte bit_depth; + FT_Char flags; + + } TT_SBit_StrikeRec, *TT_SBit_Strike; + + + /************************************************************************** + * + * @struct: + * TT_SBit_ComponentRec + * + * @description: + * A simple structure to describe a compound sbit element. + * + * @fields: + * glyph_code :: + * The element's glyph index. + * + * x_offset :: + * The element's left bearing. + * + * y_offset :: + * The element's top bearing. + */ + typedef struct TT_SBit_ComponentRec_ + { + FT_UShort glyph_code; + FT_Char x_offset; + FT_Char y_offset; + + } TT_SBit_ComponentRec, *TT_SBit_Component; + + + /************************************************************************** + * + * @struct: + * TT_SBit_ScaleRec + * + * @description: + * A structure used describe a given bitmap scaling table, as defined in + * the 'EBSC' table. + * + * @fields: + * hori :: + * The horizontal line metrics. + * + * vert :: + * The vertical line metrics. + * + * x_ppem :: + * The number of horizontal pixels per EM. + * + * y_ppem :: + * The number of vertical pixels per EM. + * + * x_ppem_substitute :: + * Substitution x_ppem value. + * + * y_ppem_substitute :: + * Substitution y_ppem value. + */ + typedef struct TT_SBit_ScaleRec_ + { + TT_SBit_LineMetricsRec hori; + TT_SBit_LineMetricsRec vert; + + FT_Byte x_ppem; + FT_Byte y_ppem; + + FT_Byte x_ppem_substitute; + FT_Byte y_ppem_substitute; + + } TT_SBit_ScaleRec, *TT_SBit_Scale; + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** POSTSCRIPT GLYPH NAMES SUPPORT ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @struct: + * TT_Post_20Rec + * + * @description: + * Postscript names sub-table, format 2.0. Stores the PS name of each + * glyph in the font face. + * + * @fields: + * num_glyphs :: + * The number of named glyphs in the table. + * + * num_names :: + * The number of PS names stored in the table. + * + * glyph_indices :: + * The indices of the glyphs in the names arrays. + * + * glyph_names :: + * The PS names not in Mac Encoding. + */ + typedef struct TT_Post_20Rec_ + { + FT_UShort num_glyphs; + FT_UShort num_names; + FT_UShort* glyph_indices; + FT_Char** glyph_names; + + } TT_Post_20Rec, *TT_Post_20; + + + /************************************************************************** + * + * @struct: + * TT_Post_25Rec + * + * @description: + * Postscript names sub-table, format 2.5. Stores the PS name of each + * glyph in the font face. + * + * @fields: + * num_glyphs :: + * The number of glyphs in the table. + * + * offsets :: + * An array of signed offsets in a normal Mac Postscript name encoding. + */ + typedef struct TT_Post_25_ + { + FT_UShort num_glyphs; + FT_Char* offsets; + + } TT_Post_25Rec, *TT_Post_25; + + + /************************************************************************** + * + * @struct: + * TT_Post_NamesRec + * + * @description: + * Postscript names table, either format 2.0 or 2.5. + * + * @fields: + * loaded :: + * A flag to indicate whether the PS names are loaded. + * + * format_20 :: + * The sub-table used for format 2.0. + * + * format_25 :: + * The sub-table used for format 2.5. + */ + typedef struct TT_Post_NamesRec_ + { + FT_Bool loaded; + + union + { + TT_Post_20Rec format_20; + TT_Post_25Rec format_25; + + } names; + + } TT_Post_NamesRec, *TT_Post_Names; + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** GX VARIATION TABLE SUPPORT ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + +#ifdef TT_CONFIG_OPTION_GX_VAR_SUPPORT + typedef struct GX_BlendRec_ *GX_Blend; +#endif + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** EMBEDDED BDF PROPERTIES TABLE SUPPORT ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + /* + * These types are used to support a `BDF ' table that isn't part of the + * official TrueType specification. It is mainly used in SFNT-based bitmap + * fonts that were generated from a set of BDF fonts. + * + * The format of the table is as follows. + * + * USHORT version `BDF ' table version number, should be 0x0001. USHORT + * strikeCount Number of strikes (bitmap sizes) in this table. ULONG + * stringTable Offset (from start of BDF table) to string + * table. + * + * This is followed by an array of `strikeCount' descriptors, having the + * following format. + * + * USHORT ppem Vertical pixels per EM for this strike. USHORT numItems + * Number of items for this strike (properties and + * atoms). Maximum is 255. + * + * This array in turn is followed by `strikeCount' value sets. Each `value + * set' is an array of `numItems' items with the following format. + * + * ULONG item_name Offset in string table to item name. + * USHORT item_type The item type. Possible values are + * 0 => string (e.g., COMMENT) + * 1 => atom (e.g., FONT or even SIZE) + * 2 => int32 + * 3 => uint32 + * 0x10 => A flag to indicate a properties. This + * is ORed with the above values. + * ULONG item_value For strings => Offset into string table without + * the corresponding double quotes. + * For atoms => Offset into string table. + * For integers => Direct value. + * + * All strings in the string table consist of bytes and are + * zero-terminated. + * + */ + +#ifdef TT_CONFIG_OPTION_BDF + + typedef struct TT_BDFRec_ + { + FT_Byte* table; + FT_Byte* table_end; + FT_Byte* strings; + FT_ULong strings_size; + FT_UInt num_strikes; + FT_Bool loaded; + + } TT_BDFRec, *TT_BDF; + +#endif /* TT_CONFIG_OPTION_BDF */ + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*** ***/ + /*** ***/ + /*** ORIGINAL TT_FACE CLASS DEFINITION ***/ + /*** ***/ + /*** ***/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * This structure/class is defined here because it is common to the + * following formats: TTF, OpenType-TT, and OpenType-CFF. + * + * Note, however, that the classes TT_Size and TT_GlyphSlot are not shared + * between font drivers, and are thus defined in `ttobjs.h`. + * + */ + + + /************************************************************************** + * + * @type: + * TT_Face + * + * @description: + * A handle to a TrueType face/font object. A TT_Face encapsulates the + * resolution and scaling independent parts of a TrueType font resource. + * + * @note: + * The TT_Face structure is also used as a 'parent class' for the + * OpenType-CFF class (T2_Face). + */ + typedef struct TT_FaceRec_* TT_Face; + + + /* a function type used for the truetype bytecode interpreter hooks */ + typedef FT_Error + (*TT_Interpreter)( void* exec_context ); + + /* forward declaration */ + typedef struct TT_LoaderRec_* TT_Loader; + + + /************************************************************************** + * + * @functype: + * TT_Loader_GotoTableFunc + * + * @description: + * Seeks a stream to the start of a given TrueType table. + * + * @input: + * face :: + * A handle to the target face object. + * + * tag :: + * A 4-byte tag used to name the table. + * + * stream :: + * The input stream. + * + * @output: + * length :: + * The length of the table in bytes. Set to 0 if not needed. + * + * @return: + * FreeType error code. 0 means success. + * + * @note: + * The stream cursor must be at the font file's origin. + */ + typedef FT_Error + (*TT_Loader_GotoTableFunc)( TT_Face face, + FT_ULong tag, + FT_Stream stream, + FT_ULong* length ); + + + /************************************************************************** + * + * @functype: + * TT_Loader_StartGlyphFunc + * + * @description: + * Seeks a stream to the start of a given glyph element, and opens a + * frame for it. + * + * @input: + * loader :: + * The current TrueType glyph loader object. + * + * glyph index :: The index of the glyph to access. + * + * offset :: + * The offset of the glyph according to the 'locations' table. + * + * byte_count :: + * The size of the frame in bytes. + * + * @return: + * FreeType error code. 0 means success. + * + * @note: + * This function is normally equivalent to FT_STREAM_SEEK(offset) + * followed by FT_FRAME_ENTER(byte_count) with the loader's stream, but + * alternative formats (e.g. compressed ones) might use something + * different. + */ + typedef FT_Error + (*TT_Loader_StartGlyphFunc)( TT_Loader loader, + FT_UInt glyph_index, + FT_ULong offset, + FT_UInt byte_count ); + + + /************************************************************************** + * + * @functype: + * TT_Loader_ReadGlyphFunc + * + * @description: + * Reads one glyph element (its header, a simple glyph, or a composite) + * from the loader's current stream frame. + * + * @input: + * loader :: + * The current TrueType glyph loader object. + * + * @return: + * FreeType error code. 0 means success. + */ + typedef FT_Error + (*TT_Loader_ReadGlyphFunc)( TT_Loader loader ); + + + /************************************************************************** + * + * @functype: + * TT_Loader_EndGlyphFunc + * + * @description: + * Closes the current loader stream frame for the glyph. + * + * @input: + * loader :: + * The current TrueType glyph loader object. + */ + typedef void + (*TT_Loader_EndGlyphFunc)( TT_Loader loader ); + + + typedef enum TT_SbitTableType_ + { + TT_SBIT_TABLE_TYPE_NONE = 0, + TT_SBIT_TABLE_TYPE_EBLC, /* `EBLC' (Microsoft), */ + /* `bloc' (Apple) */ + TT_SBIT_TABLE_TYPE_CBLC, /* `CBLC' (Google) */ + TT_SBIT_TABLE_TYPE_SBIX, /* `sbix' (Apple) */ + + /* do not remove */ + TT_SBIT_TABLE_TYPE_MAX + + } TT_SbitTableType; + + + /* OpenType 1.8 brings new tables for variation font support; */ + /* to make the old MM and GX fonts still work we need to check */ + /* the presence (and validity) of the functionality provided */ + /* by those tables. The following flag macros are for the */ + /* field `variation_support'. */ + /* */ + /* Note that `fvar' gets checked immediately at font loading, */ + /* while the other features are only loaded if MM support is */ + /* actually requested. */ + + /* FVAR */ +#define TT_FACE_FLAG_VAR_FVAR ( 1 << 0 ) + + /* HVAR */ +#define TT_FACE_FLAG_VAR_HADVANCE ( 1 << 1 ) +#define TT_FACE_FLAG_VAR_LSB ( 1 << 2 ) +#define TT_FACE_FLAG_VAR_RSB ( 1 << 3 ) + + /* VVAR */ +#define TT_FACE_FLAG_VAR_VADVANCE ( 1 << 4 ) +#define TT_FACE_FLAG_VAR_TSB ( 1 << 5 ) +#define TT_FACE_FLAG_VAR_BSB ( 1 << 6 ) +#define TT_FACE_FLAG_VAR_VORG ( 1 << 7 ) + + /* MVAR */ +#define TT_FACE_FLAG_VAR_MVAR ( 1 << 8 ) + + + /************************************************************************** + * + * TrueType Face Type + * + * @struct: + * TT_Face + * + * @description: + * The TrueType face class. These objects model the resolution and + * point-size independent data found in a TrueType font file. + * + * @fields: + * root :: + * The base FT_Face structure, managed by the base layer. + * + * ttc_header :: + * The TrueType collection header, used when the file is a 'ttc' rather + * than a 'ttf'. For ordinary font files, the field `ttc_header.count` + * is set to 0. + * + * format_tag :: + * The font format tag. + * + * num_tables :: + * The number of TrueType tables in this font file. + * + * dir_tables :: + * The directory of TrueType tables for this font file. + * + * header :: + * The font's font header ('head' table). Read on font opening. + * + * horizontal :: + * The font's horizontal header ('hhea' table). This field also + * contains the associated horizontal metrics table ('hmtx'). + * + * max_profile :: + * The font's maximum profile table. Read on font opening. Note that + * some maximum values cannot be taken directly from this table. We + * thus define additional fields below to hold the computed maxima. + * + * vertical_info :: + * A boolean which is set when the font file contains vertical metrics. + * If not, the value of the 'vertical' field is undefined. + * + * vertical :: + * The font's vertical header ('vhea' table). This field also contains + * the associated vertical metrics table ('vmtx'), if found. + * IMPORTANT: The contents of this field is undefined if the + * `vertical_info` field is unset. + * + * num_names :: + * The number of name records within this TrueType font. + * + * name_table :: + * The table of name records ('name'). + * + * os2 :: + * The font's OS/2 table ('OS/2'). + * + * postscript :: + * The font's PostScript table ('post' table). The PostScript glyph + * names are not loaded by the driver on face opening. See the + * 'ttpost' module for more details. + * + * cmap_table :: + * Address of the face's 'cmap' SFNT table in memory (it's an extracted + * frame). + * + * cmap_size :: + * The size in bytes of the `cmap_table` described above. + * + * goto_table :: + * A function called by each TrueType table loader to position a + * stream's cursor to the start of a given table according to its tag. + * It defaults to TT_Goto_Face but can be different for strange formats + * (e.g. Type 42). + * + * access_glyph_frame :: + * A function used to access the frame of a given glyph within the + * face's font file. + * + * forget_glyph_frame :: + * A function used to forget the frame of a given glyph when all data + * has been loaded. + * + * read_glyph_header :: + * A function used to read a glyph header. It must be called between + * an 'access' and 'forget'. + * + * read_simple_glyph :: + * A function used to read a simple glyph. It must be called after the + * header was read, and before the 'forget'. + * + * read_composite_glyph :: + * A function used to read a composite glyph. It must be called after + * the header was read, and before the 'forget'. + * + * sfnt :: + * A pointer to the SFNT service. + * + * psnames :: + * A pointer to the PostScript names service. + * + * mm :: + * A pointer to the Multiple Masters service. + * + * var :: + * A pointer to the Metrics Variations service. + * + * hdmx :: + * The face's horizontal device metrics ('hdmx' table). This table is + * optional in TrueType/OpenType fonts. + * + * gasp :: + * The grid-fitting and scaling properties table ('gasp'). This table + * is optional in TrueType/OpenType fonts. + * + * pclt :: + * The 'pclt' SFNT table. + * + * num_sbit_scales :: + * The number of sbit scales for this font. + * + * sbit_scales :: + * Array of sbit scales embedded in this font. This table is optional + * in a TrueType/OpenType font. + * + * postscript_names :: + * A table used to store the Postscript names of the glyphs for this + * font. See the file `ttconfig.h` for comments on the + * TT_CONFIG_OPTION_POSTSCRIPT_NAMES option. + * + * palette_data :: + * Some fields from the 'CPAL' table that are directly indexed. + * + * palette_index :: + * The current palette index, as set by @FT_Palette_Select. + * + * palette :: + * An array containing the current palette's colors. + * + * have_foreground_color :: + * There was a call to @FT_Palette_Set_Foreground_Color. + * + * foreground_color :: + * The current foreground color corresponding to 'CPAL' color index + * 0xFFFF. Only valid if `have_foreground_color` is set. + * + * font_program_size :: + * Size in bytecodes of the face's font program. 0 if none defined. + * Ignored for Type 2 fonts. + * + * font_program :: + * The face's font program (bytecode stream) executed at load time, + * also used during glyph rendering. Comes from the 'fpgm' table. + * Ignored for Type 2 font fonts. + * + * cvt_program_size :: + * The size in bytecodes of the face's cvt program. Ignored for Type 2 + * fonts. + * + * cvt_program :: + * The face's cvt program (bytecode stream) executed each time an + * instance/size is changed/reset. Comes from the 'prep' table. + * Ignored for Type 2 fonts. + * + * cvt_size :: + * Size of the control value table (in entries). Ignored for Type 2 + * fonts. + * + * cvt :: + * The face's original control value table. Coordinates are expressed + * in unscaled font units. Comes from the 'cvt~' table. Ignored for + * Type 2 fonts. + * + * interpreter :: + * A pointer to the TrueType bytecode interpreters field is also used + * to hook the debugger in 'ttdebug'. + * + * extra :: + * Reserved for third-party font drivers. + * + * postscript_name :: + * The PS name of the font. Used by the postscript name service. + * + * glyf_len :: + * The length of the 'glyf' table. Needed for malformed 'loca' tables. + * + * glyf_offset :: + * The file offset of the 'glyf' table. + * + * is_cff2 :: + * Set if the font format is CFF2. + * + * doblend :: + * A boolean which is set if the font should be blended (this is for GX + * var). + * + * blend :: + * Contains the data needed to control GX variation tables (rather like + * Multiple Master data). + * + * variation_support :: + * Flags that indicate which OpenType functionality related to font + * variation support is present, valid, and usable. For example, + * TT_FACE_FLAG_VAR_FVAR is only set if we have at least one design + * axis. + * + * var_postscript_prefix :: + * The PostScript name prefix needed for constructing a variation font + * instance's PS name . + * + * var_postscript_prefix_len :: + * The length of the `var_postscript_prefix` string. + * + * horz_metrics_size :: + * The size of the 'hmtx' table. + * + * vert_metrics_size :: + * The size of the 'vmtx' table. + * + * num_locations :: + * The number of glyph locations in this TrueType file. This should be + * identical to the number of glyphs. Ignored for Type 2 fonts. + * + * glyph_locations :: + * An array of longs. These are offsets to glyph data within the + * 'glyf' table. Ignored for Type 2 font faces. + * + * hdmx_table :: + * A pointer to the 'hdmx' table. + * + * hdmx_table_size :: + * The size of the 'hdmx' table. + * + * hdmx_record_count :: + * The number of hdmx records. + * + * hdmx_record_size :: + * The size of a single hdmx record. + * + * hdmx_record_sizes :: + * An array holding the ppem sizes available in the 'hdmx' table. + * + * sbit_table :: + * A pointer to the font's embedded bitmap location table. + * + * sbit_table_size :: + * The size of `sbit_table`. + * + * sbit_table_type :: + * The sbit table type (CBLC, sbix, etc.). + * + * sbit_num_strikes :: + * The number of sbit strikes exposed by FreeType's API, omitting + * invalid strikes. + * + * sbit_strike_map :: + * A mapping between the strike indices exposed by the API and the + * indices used in the font's sbit table. + * + * cpal :: + * A pointer to data related to the 'CPAL' table. `NULL` if the table + * is not available. + * + * colr :: + * A pointer to data related to the 'COLR' table. `NULL` if the table + * is not available. + * + * kern_table :: + * A pointer to the 'kern' table. + * + * kern_table_size :: + * The size of the 'kern' table. + * + * num_kern_tables :: + * The number of supported kern subtables (up to 32; FreeType + * recognizes only horizontal ones with format 0). + * + * kern_avail_bits :: + * The availability status of kern subtables; if bit n is set, table n + * is available. + * + * kern_order_bits :: + * The sortedness status of kern subtables; if bit n is set, table n is + * sorted. + * + * bdf :: + * Data related to an SFNT font's 'bdf' table; see `tttypes.h`. + * + * horz_metrics_offset :: + * The file offset of the 'hmtx' table. + * + * vert_metrics_offset :: + * The file offset of the 'vmtx' table. + * + * sph_found_func_flags :: + * Flags identifying special bytecode functions (used by the v38 + * implementation of the bytecode interpreter). + * + * sph_compatibility_mode :: + * This flag is set if we are in ClearType backward compatibility mode + * (used by the v38 implementation of the bytecode interpreter). + * + * ebdt_start :: + * The file offset of the sbit data table (CBDT, bdat, etc.). + * + * ebdt_size :: + * The size of the sbit data table. + */ + typedef struct TT_FaceRec_ + { + FT_FaceRec root; + + TTC_HeaderRec ttc_header; + + FT_ULong format_tag; + FT_UShort num_tables; + TT_Table dir_tables; + + TT_Header header; /* TrueType header table */ + TT_HoriHeader horizontal; /* TrueType horizontal header */ + + TT_MaxProfile max_profile; + + FT_Bool vertical_info; + TT_VertHeader vertical; /* TT Vertical header, if present */ + + FT_UShort num_names; /* number of name records */ + TT_NameTableRec name_table; /* name table */ + + TT_OS2 os2; /* TrueType OS/2 table */ + TT_Postscript postscript; /* TrueType Postscript table */ + + FT_Byte* cmap_table; /* extracted `cmap' table */ + FT_ULong cmap_size; + + TT_Loader_GotoTableFunc goto_table; + + TT_Loader_StartGlyphFunc access_glyph_frame; + TT_Loader_EndGlyphFunc forget_glyph_frame; + TT_Loader_ReadGlyphFunc read_glyph_header; + TT_Loader_ReadGlyphFunc read_simple_glyph; + TT_Loader_ReadGlyphFunc read_composite_glyph; + + /* a typeless pointer to the SFNT_Interface table used to load */ + /* the basic TrueType tables in the face object */ + void* sfnt; + + /* a typeless pointer to the FT_Service_PsCMapsRec table used to */ + /* handle glyph names <-> unicode & Mac values */ + void* psnames; + +#ifdef TT_CONFIG_OPTION_GX_VAR_SUPPORT + /* a typeless pointer to the FT_Service_MultiMasters table used to */ + /* handle variation fonts */ + void* mm; + + /* a typeless pointer to the FT_Service_MetricsVariationsRec table */ + /* used to handle the HVAR, VVAR, and MVAR OpenType tables */ + void* var; +#endif + + /* a typeless pointer to the PostScript Aux service */ + void* psaux; + + + /************************************************************************ + * + * Optional TrueType/OpenType tables + * + */ + + /* grid-fitting and scaling table */ + TT_GaspRec gasp; /* the `gasp' table */ + + /* PCL 5 table */ + TT_PCLT pclt; + + /* embedded bitmaps support */ + FT_ULong num_sbit_scales; + TT_SBit_Scale sbit_scales; + + /* postscript names table */ + TT_Post_NamesRec postscript_names; + + /* glyph colors */ + FT_Palette_Data palette_data; /* since 2.10 */ + FT_UShort palette_index; + FT_Color* palette; + FT_Bool have_foreground_color; + FT_Color foreground_color; + + + /************************************************************************ + * + * TrueType-specific fields (ignored by the CFF driver) + * + */ + + /* the font program, if any */ + FT_ULong font_program_size; + FT_Byte* font_program; + + /* the cvt program, if any */ + FT_ULong cvt_program_size; + FT_Byte* cvt_program; + + /* the original, unscaled, control value table */ + FT_ULong cvt_size; + FT_Short* cvt; + + /* A pointer to the bytecode interpreter to use. This is also */ + /* used to hook the debugger for the `ttdebug' utility. */ + TT_Interpreter interpreter; + + + /************************************************************************ + * + * Other tables or fields. This is used by derivative formats like + * OpenType. + * + */ + + FT_Generic extra; + + const char* postscript_name; + + FT_ULong glyf_len; + FT_ULong glyf_offset; /* since 2.7.1 */ + + FT_Bool is_cff2; /* since 2.7.1 */ + +#ifdef TT_CONFIG_OPTION_GX_VAR_SUPPORT + FT_Bool doblend; + GX_Blend blend; + + FT_UInt32 variation_support; /* since 2.7.1 */ + + const char* var_postscript_prefix; /* since 2.7.2 */ + FT_UInt var_postscript_prefix_len; /* since 2.7.2 */ + +#endif + + /* since version 2.2 */ + + FT_ULong horz_metrics_size; + FT_ULong vert_metrics_size; + + FT_ULong num_locations; /* in broken TTF, gid > 0xFFFF */ + FT_Byte* glyph_locations; + + FT_Byte* hdmx_table; + FT_ULong hdmx_table_size; + FT_UInt hdmx_record_count; + FT_ULong hdmx_record_size; + FT_Byte* hdmx_record_sizes; + + FT_Byte* sbit_table; + FT_ULong sbit_table_size; + TT_SbitTableType sbit_table_type; + FT_UInt sbit_num_strikes; + FT_UInt* sbit_strike_map; + + FT_Byte* kern_table; + FT_ULong kern_table_size; + FT_UInt num_kern_tables; + FT_UInt32 kern_avail_bits; + FT_UInt32 kern_order_bits; + +#ifdef TT_CONFIG_OPTION_BDF + TT_BDFRec bdf; +#endif /* TT_CONFIG_OPTION_BDF */ + + /* since 2.3.0 */ + FT_ULong horz_metrics_offset; + FT_ULong vert_metrics_offset; + +#ifdef TT_SUPPORT_SUBPIXEL_HINTING_INFINALITY + /* since 2.4.12 */ + FT_ULong sph_found_func_flags; /* special functions found */ + /* for this face */ + FT_Bool sph_compatibility_mode; +#endif /* TT_SUPPORT_SUBPIXEL_HINTING_INFINALITY */ + +#ifdef TT_CONFIG_OPTION_EMBEDDED_BITMAPS + /* since 2.7 */ + FT_ULong ebdt_start; /* either `CBDT', `EBDT', or `bdat' */ + FT_ULong ebdt_size; +#endif + + /* since 2.10 */ + void* cpal; + void* colr; + + } TT_FaceRec; + + + /************************************************************************** + * + * @struct: + * TT_GlyphZoneRec + * + * @description: + * A glyph zone is used to load, scale and hint glyph outline + * coordinates. + * + * @fields: + * memory :: + * A handle to the memory manager. + * + * max_points :: + * The maximum size in points of the zone. + * + * max_contours :: + * Max size in links contours of the zone. + * + * n_points :: + * The current number of points in the zone. + * + * n_contours :: + * The current number of contours in the zone. + * + * org :: + * The original glyph coordinates (font units/scaled). + * + * cur :: + * The current glyph coordinates (scaled/hinted). + * + * tags :: + * The point control tags. + * + * contours :: + * The contours end points. + * + * first_point :: + * Offset of the current subglyph's first point. + */ + typedef struct TT_GlyphZoneRec_ + { + FT_Memory memory; + FT_UShort max_points; + FT_Short max_contours; + FT_UShort n_points; /* number of points in zone */ + FT_Short n_contours; /* number of contours */ + + FT_Vector* org; /* original point coordinates */ + FT_Vector* cur; /* current point coordinates */ + FT_Vector* orus; /* original (unscaled) point coordinates */ + + FT_Byte* tags; /* current touch flags */ + FT_UShort* contours; /* contour end points */ + + FT_UShort first_point; /* offset of first (#0) point */ + + } TT_GlyphZoneRec, *TT_GlyphZone; + + + /* handle to execution context */ + typedef struct TT_ExecContextRec_* TT_ExecContext; + + + /************************************************************************** + * + * @type: + * TT_Size + * + * @description: + * A handle to a TrueType size object. + */ + typedef struct TT_SizeRec_* TT_Size; + + + /* glyph loader structure */ + typedef struct TT_LoaderRec_ + { + TT_Face face; + TT_Size size; + FT_GlyphSlot glyph; + FT_GlyphLoader gloader; + + FT_ULong load_flags; + FT_UInt glyph_index; + + FT_Stream stream; + FT_Int byte_len; + + FT_Short n_contours; + FT_BBox bbox; + FT_Int left_bearing; + FT_Int advance; + FT_Int linear; + FT_Bool linear_def; + FT_Vector pp1; + FT_Vector pp2; + + /* the zone where we load our glyphs */ + TT_GlyphZoneRec base; + TT_GlyphZoneRec zone; + + TT_ExecContext exec; + FT_Byte* instructions; + FT_ULong ins_pos; + + /* for possible extensibility in other formats */ + void* other; + + /* since version 2.1.8 */ + FT_Int top_bearing; + FT_Int vadvance; + FT_Vector pp3; + FT_Vector pp4; + + /* since version 2.2.1 */ + FT_Byte* cursor; + FT_Byte* limit; + + /* since version 2.6.2 */ + FT_ListRec composites; + + } TT_LoaderRec; + + +FT_END_HEADER + +#endif /* TTTYPES_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/t1tables.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/t1tables.h new file mode 100644 index 0000000..645e645 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/t1tables.h @@ -0,0 +1,774 @@ +/**************************************************************************** + * + * t1tables.h + * + * Basic Type 1/Type 2 tables definitions and interface (specification + * only). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef T1TABLES_H_ +#define T1TABLES_H_ + + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * type1_tables + * + * @title: + * Type 1 Tables + * + * @abstract: + * Type~1-specific font tables. + * + * @description: + * This section contains the definition of Type~1-specific tables, + * including structures related to other PostScript font formats. + * + * @order: + * PS_FontInfoRec + * PS_FontInfo + * PS_PrivateRec + * PS_Private + * + * CID_FaceDictRec + * CID_FaceDict + * CID_FaceInfoRec + * CID_FaceInfo + * + * FT_Has_PS_Glyph_Names + * FT_Get_PS_Font_Info + * FT_Get_PS_Font_Private + * FT_Get_PS_Font_Value + * + * T1_Blend_Flags + * T1_EncodingType + * PS_Dict_Keys + * + */ + + + /* Note that we separate font data in PS_FontInfoRec and PS_PrivateRec */ + /* structures in order to support Multiple Master fonts. */ + + + /************************************************************************** + * + * @struct: + * PS_FontInfoRec + * + * @description: + * A structure used to model a Type~1 or Type~2 FontInfo dictionary. + * Note that for Multiple Master fonts, each instance has its own + * FontInfo dictionary. + */ + typedef struct PS_FontInfoRec_ + { + FT_String* version; + FT_String* notice; + FT_String* full_name; + FT_String* family_name; + FT_String* weight; + FT_Long italic_angle; + FT_Bool is_fixed_pitch; + FT_Short underline_position; + FT_UShort underline_thickness; + + } PS_FontInfoRec; + + + /************************************************************************** + * + * @struct: + * PS_FontInfo + * + * @description: + * A handle to a @PS_FontInfoRec structure. + */ + typedef struct PS_FontInfoRec_* PS_FontInfo; + + + /************************************************************************** + * + * @struct: + * T1_FontInfo + * + * @description: + * This type is equivalent to @PS_FontInfoRec. It is deprecated but kept + * to maintain source compatibility between various versions of FreeType. + */ + typedef PS_FontInfoRec T1_FontInfo; + + + /************************************************************************** + * + * @struct: + * PS_PrivateRec + * + * @description: + * A structure used to model a Type~1 or Type~2 private dictionary. Note + * that for Multiple Master fonts, each instance has its own Private + * dictionary. + */ + typedef struct PS_PrivateRec_ + { + FT_Int unique_id; + FT_Int lenIV; + + FT_Byte num_blue_values; + FT_Byte num_other_blues; + FT_Byte num_family_blues; + FT_Byte num_family_other_blues; + + FT_Short blue_values[14]; + FT_Short other_blues[10]; + + FT_Short family_blues [14]; + FT_Short family_other_blues[10]; + + FT_Fixed blue_scale; + FT_Int blue_shift; + FT_Int blue_fuzz; + + FT_UShort standard_width[1]; + FT_UShort standard_height[1]; + + FT_Byte num_snap_widths; + FT_Byte num_snap_heights; + FT_Bool force_bold; + FT_Bool round_stem_up; + + FT_Short snap_widths [13]; /* including std width */ + FT_Short snap_heights[13]; /* including std height */ + + FT_Fixed expansion_factor; + + FT_Long language_group; + FT_Long password; + + FT_Short min_feature[2]; + + } PS_PrivateRec; + + + /************************************************************************** + * + * @struct: + * PS_Private + * + * @description: + * A handle to a @PS_PrivateRec structure. + */ + typedef struct PS_PrivateRec_* PS_Private; + + + /************************************************************************** + * + * @struct: + * T1_Private + * + * @description: + * This type is equivalent to @PS_PrivateRec. It is deprecated but kept + * to maintain source compatibility between various versions of FreeType. + */ + typedef PS_PrivateRec T1_Private; + + + /************************************************************************** + * + * @enum: + * T1_Blend_Flags + * + * @description: + * A set of flags used to indicate which fields are present in a given + * blend dictionary (font info or private). Used to support Multiple + * Masters fonts. + * + * @values: + * T1_BLEND_UNDERLINE_POSITION :: + * T1_BLEND_UNDERLINE_THICKNESS :: + * T1_BLEND_ITALIC_ANGLE :: + * T1_BLEND_BLUE_VALUES :: + * T1_BLEND_OTHER_BLUES :: + * T1_BLEND_STANDARD_WIDTH :: + * T1_BLEND_STANDARD_HEIGHT :: + * T1_BLEND_STEM_SNAP_WIDTHS :: + * T1_BLEND_STEM_SNAP_HEIGHTS :: + * T1_BLEND_BLUE_SCALE :: + * T1_BLEND_BLUE_SHIFT :: + * T1_BLEND_FAMILY_BLUES :: + * T1_BLEND_FAMILY_OTHER_BLUES :: + * T1_BLEND_FORCE_BOLD :: + */ + typedef enum T1_Blend_Flags_ + { + /* required fields in a FontInfo blend dictionary */ + T1_BLEND_UNDERLINE_POSITION = 0, + T1_BLEND_UNDERLINE_THICKNESS, + T1_BLEND_ITALIC_ANGLE, + + /* required fields in a Private blend dictionary */ + T1_BLEND_BLUE_VALUES, + T1_BLEND_OTHER_BLUES, + T1_BLEND_STANDARD_WIDTH, + T1_BLEND_STANDARD_HEIGHT, + T1_BLEND_STEM_SNAP_WIDTHS, + T1_BLEND_STEM_SNAP_HEIGHTS, + T1_BLEND_BLUE_SCALE, + T1_BLEND_BLUE_SHIFT, + T1_BLEND_FAMILY_BLUES, + T1_BLEND_FAMILY_OTHER_BLUES, + T1_BLEND_FORCE_BOLD, + + T1_BLEND_MAX /* do not remove */ + + } T1_Blend_Flags; + + + /* these constants are deprecated; use the corresponding */ + /* `T1_Blend_Flags` values instead */ +#define t1_blend_underline_position T1_BLEND_UNDERLINE_POSITION +#define t1_blend_underline_thickness T1_BLEND_UNDERLINE_THICKNESS +#define t1_blend_italic_angle T1_BLEND_ITALIC_ANGLE +#define t1_blend_blue_values T1_BLEND_BLUE_VALUES +#define t1_blend_other_blues T1_BLEND_OTHER_BLUES +#define t1_blend_standard_widths T1_BLEND_STANDARD_WIDTH +#define t1_blend_standard_height T1_BLEND_STANDARD_HEIGHT +#define t1_blend_stem_snap_widths T1_BLEND_STEM_SNAP_WIDTHS +#define t1_blend_stem_snap_heights T1_BLEND_STEM_SNAP_HEIGHTS +#define t1_blend_blue_scale T1_BLEND_BLUE_SCALE +#define t1_blend_blue_shift T1_BLEND_BLUE_SHIFT +#define t1_blend_family_blues T1_BLEND_FAMILY_BLUES +#define t1_blend_family_other_blues T1_BLEND_FAMILY_OTHER_BLUES +#define t1_blend_force_bold T1_BLEND_FORCE_BOLD +#define t1_blend_max T1_BLEND_MAX + + /* */ + + + /* maximum number of Multiple Masters designs, as defined in the spec */ +#define T1_MAX_MM_DESIGNS 16 + + /* maximum number of Multiple Masters axes, as defined in the spec */ +#define T1_MAX_MM_AXIS 4 + + /* maximum number of elements in a design map */ +#define T1_MAX_MM_MAP_POINTS 20 + + + /* this structure is used to store the BlendDesignMap entry for an axis */ + typedef struct PS_DesignMap_ + { + FT_Byte num_points; + FT_Long* design_points; + FT_Fixed* blend_points; + + } PS_DesignMapRec, *PS_DesignMap; + + /* backward compatible definition */ + typedef PS_DesignMapRec T1_DesignMap; + + + typedef struct PS_BlendRec_ + { + FT_UInt num_designs; + FT_UInt num_axis; + + FT_String* axis_names[T1_MAX_MM_AXIS]; + FT_Fixed* design_pos[T1_MAX_MM_DESIGNS]; + PS_DesignMapRec design_map[T1_MAX_MM_AXIS]; + + FT_Fixed* weight_vector; + FT_Fixed* default_weight_vector; + + PS_FontInfo font_infos[T1_MAX_MM_DESIGNS + 1]; + PS_Private privates [T1_MAX_MM_DESIGNS + 1]; + + FT_ULong blend_bitflags; + + FT_BBox* bboxes [T1_MAX_MM_DESIGNS + 1]; + + /* since 2.3.0 */ + + /* undocumented, optional: the default design instance; */ + /* corresponds to default_weight_vector -- */ + /* num_default_design_vector == 0 means it is not present */ + /* in the font and associated metrics files */ + FT_UInt default_design_vector[T1_MAX_MM_DESIGNS]; + FT_UInt num_default_design_vector; + + } PS_BlendRec, *PS_Blend; + + + /* backward compatible definition */ + typedef PS_BlendRec T1_Blend; + + + /************************************************************************** + * + * @struct: + * CID_FaceDictRec + * + * @description: + * A structure used to represent data in a CID top-level dictionary. In + * most cases, they are part of the font's '/FDArray' array. Within a + * CID font file, such (internal) subfont dictionaries are enclosed by + * '%ADOBeginFontDict' and '%ADOEndFontDict' comments. + * + * Note that `CID_FaceDictRec` misses a field for the '/FontName' + * keyword, specifying the subfont's name (the top-level font name is + * given by the '/CIDFontName' keyword). This is an oversight, but it + * doesn't limit the 'cid' font module's functionality because FreeType + * neither needs this entry nor gives access to CID subfonts. + */ + typedef struct CID_FaceDictRec_ + { + PS_PrivateRec private_dict; + + FT_UInt len_buildchar; + FT_Fixed forcebold_threshold; + FT_Pos stroke_width; + FT_Fixed expansion_factor; /* this is a duplicate of */ + /* `private_dict->expansion_factor' */ + FT_Byte paint_type; + FT_Byte font_type; + FT_Matrix font_matrix; + FT_Vector font_offset; + + FT_UInt num_subrs; + FT_ULong subrmap_offset; + FT_Int sd_bytes; + + } CID_FaceDictRec; + + + /************************************************************************** + * + * @struct: + * CID_FaceDict + * + * @description: + * A handle to a @CID_FaceDictRec structure. + */ + typedef struct CID_FaceDictRec_* CID_FaceDict; + + + /************************************************************************** + * + * @struct: + * CID_FontDict + * + * @description: + * This type is equivalent to @CID_FaceDictRec. It is deprecated but + * kept to maintain source compatibility between various versions of + * FreeType. + */ + typedef CID_FaceDictRec CID_FontDict; + + + /************************************************************************** + * + * @struct: + * CID_FaceInfoRec + * + * @description: + * A structure used to represent CID Face information. + */ + typedef struct CID_FaceInfoRec_ + { + FT_String* cid_font_name; + FT_Fixed cid_version; + FT_Int cid_font_type; + + FT_String* registry; + FT_String* ordering; + FT_Int supplement; + + PS_FontInfoRec font_info; + FT_BBox font_bbox; + FT_ULong uid_base; + + FT_Int num_xuid; + FT_ULong xuid[16]; + + FT_ULong cidmap_offset; + FT_Int fd_bytes; + FT_Int gd_bytes; + FT_ULong cid_count; + + FT_Int num_dicts; + CID_FaceDict font_dicts; + + FT_ULong data_offset; + + } CID_FaceInfoRec; + + + /************************************************************************** + * + * @struct: + * CID_FaceInfo + * + * @description: + * A handle to a @CID_FaceInfoRec structure. + */ + typedef struct CID_FaceInfoRec_* CID_FaceInfo; + + + /************************************************************************** + * + * @struct: + * CID_Info + * + * @description: + * This type is equivalent to @CID_FaceInfoRec. It is deprecated but kept + * to maintain source compatibility between various versions of FreeType. + */ + typedef CID_FaceInfoRec CID_Info; + + + /************************************************************************** + * + * @function: + * FT_Has_PS_Glyph_Names + * + * @description: + * Return true if a given face provides reliable PostScript glyph names. + * This is similar to using the @FT_HAS_GLYPH_NAMES macro, except that + * certain fonts (mostly TrueType) contain incorrect glyph name tables. + * + * When this function returns true, the caller is sure that the glyph + * names returned by @FT_Get_Glyph_Name are reliable. + * + * @input: + * face :: + * face handle + * + * @return: + * Boolean. True if glyph names are reliable. + * + */ + FT_EXPORT( FT_Int ) + FT_Has_PS_Glyph_Names( FT_Face face ); + + + /************************************************************************** + * + * @function: + * FT_Get_PS_Font_Info + * + * @description: + * Retrieve the @PS_FontInfoRec structure corresponding to a given + * PostScript font. + * + * @input: + * face :: + * PostScript face handle. + * + * @output: + * afont_info :: + * Output font info structure pointer. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * String pointers within the @PS_FontInfoRec structure are owned by the + * face and don't need to be freed by the caller. Missing entries in + * the font's FontInfo dictionary are represented by `NULL` pointers. + * + * If the font's format is not PostScript-based, this function will + * return the `FT_Err_Invalid_Argument` error code. + * + */ + FT_EXPORT( FT_Error ) + FT_Get_PS_Font_Info( FT_Face face, + PS_FontInfo afont_info ); + + + /************************************************************************** + * + * @function: + * FT_Get_PS_Font_Private + * + * @description: + * Retrieve the @PS_PrivateRec structure corresponding to a given + * PostScript font. + * + * @input: + * face :: + * PostScript face handle. + * + * @output: + * afont_private :: + * Output private dictionary structure pointer. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The string pointers within the @PS_PrivateRec structure are owned by + * the face and don't need to be freed by the caller. + * + * If the font's format is not PostScript-based, this function returns + * the `FT_Err_Invalid_Argument` error code. + * + */ + FT_EXPORT( FT_Error ) + FT_Get_PS_Font_Private( FT_Face face, + PS_Private afont_private ); + + + /************************************************************************** + * + * @enum: + * T1_EncodingType + * + * @description: + * An enumeration describing the 'Encoding' entry in a Type 1 dictionary. + * + * @values: + * T1_ENCODING_TYPE_NONE :: + * T1_ENCODING_TYPE_ARRAY :: + * T1_ENCODING_TYPE_STANDARD :: + * T1_ENCODING_TYPE_ISOLATIN1 :: + * T1_ENCODING_TYPE_EXPERT :: + * + * @since: + * 2.4.8 + */ + typedef enum T1_EncodingType_ + { + T1_ENCODING_TYPE_NONE = 0, + T1_ENCODING_TYPE_ARRAY, + T1_ENCODING_TYPE_STANDARD, + T1_ENCODING_TYPE_ISOLATIN1, + T1_ENCODING_TYPE_EXPERT + + } T1_EncodingType; + + + /************************************************************************** + * + * @enum: + * PS_Dict_Keys + * + * @description: + * An enumeration used in calls to @FT_Get_PS_Font_Value to identify the + * Type~1 dictionary entry to retrieve. + * + * @values: + * PS_DICT_FONT_TYPE :: + * PS_DICT_FONT_MATRIX :: + * PS_DICT_FONT_BBOX :: + * PS_DICT_PAINT_TYPE :: + * PS_DICT_FONT_NAME :: + * PS_DICT_UNIQUE_ID :: + * PS_DICT_NUM_CHAR_STRINGS :: + * PS_DICT_CHAR_STRING_KEY :: + * PS_DICT_CHAR_STRING :: + * PS_DICT_ENCODING_TYPE :: + * PS_DICT_ENCODING_ENTRY :: + * PS_DICT_NUM_SUBRS :: + * PS_DICT_SUBR :: + * PS_DICT_STD_HW :: + * PS_DICT_STD_VW :: + * PS_DICT_NUM_BLUE_VALUES :: + * PS_DICT_BLUE_VALUE :: + * PS_DICT_BLUE_FUZZ :: + * PS_DICT_NUM_OTHER_BLUES :: + * PS_DICT_OTHER_BLUE :: + * PS_DICT_NUM_FAMILY_BLUES :: + * PS_DICT_FAMILY_BLUE :: + * PS_DICT_NUM_FAMILY_OTHER_BLUES :: + * PS_DICT_FAMILY_OTHER_BLUE :: + * PS_DICT_BLUE_SCALE :: + * PS_DICT_BLUE_SHIFT :: + * PS_DICT_NUM_STEM_SNAP_H :: + * PS_DICT_STEM_SNAP_H :: + * PS_DICT_NUM_STEM_SNAP_V :: + * PS_DICT_STEM_SNAP_V :: + * PS_DICT_FORCE_BOLD :: + * PS_DICT_RND_STEM_UP :: + * PS_DICT_MIN_FEATURE :: + * PS_DICT_LEN_IV :: + * PS_DICT_PASSWORD :: + * PS_DICT_LANGUAGE_GROUP :: + * PS_DICT_VERSION :: + * PS_DICT_NOTICE :: + * PS_DICT_FULL_NAME :: + * PS_DICT_FAMILY_NAME :: + * PS_DICT_WEIGHT :: + * PS_DICT_IS_FIXED_PITCH :: + * PS_DICT_UNDERLINE_POSITION :: + * PS_DICT_UNDERLINE_THICKNESS :: + * PS_DICT_FS_TYPE :: + * PS_DICT_ITALIC_ANGLE :: + * + * @since: + * 2.4.8 + */ + typedef enum PS_Dict_Keys_ + { + /* conventionally in the font dictionary */ + PS_DICT_FONT_TYPE, /* FT_Byte */ + PS_DICT_FONT_MATRIX, /* FT_Fixed */ + PS_DICT_FONT_BBOX, /* FT_Fixed */ + PS_DICT_PAINT_TYPE, /* FT_Byte */ + PS_DICT_FONT_NAME, /* FT_String* */ + PS_DICT_UNIQUE_ID, /* FT_Int */ + PS_DICT_NUM_CHAR_STRINGS, /* FT_Int */ + PS_DICT_CHAR_STRING_KEY, /* FT_String* */ + PS_DICT_CHAR_STRING, /* FT_String* */ + PS_DICT_ENCODING_TYPE, /* T1_EncodingType */ + PS_DICT_ENCODING_ENTRY, /* FT_String* */ + + /* conventionally in the font Private dictionary */ + PS_DICT_NUM_SUBRS, /* FT_Int */ + PS_DICT_SUBR, /* FT_String* */ + PS_DICT_STD_HW, /* FT_UShort */ + PS_DICT_STD_VW, /* FT_UShort */ + PS_DICT_NUM_BLUE_VALUES, /* FT_Byte */ + PS_DICT_BLUE_VALUE, /* FT_Short */ + PS_DICT_BLUE_FUZZ, /* FT_Int */ + PS_DICT_NUM_OTHER_BLUES, /* FT_Byte */ + PS_DICT_OTHER_BLUE, /* FT_Short */ + PS_DICT_NUM_FAMILY_BLUES, /* FT_Byte */ + PS_DICT_FAMILY_BLUE, /* FT_Short */ + PS_DICT_NUM_FAMILY_OTHER_BLUES, /* FT_Byte */ + PS_DICT_FAMILY_OTHER_BLUE, /* FT_Short */ + PS_DICT_BLUE_SCALE, /* FT_Fixed */ + PS_DICT_BLUE_SHIFT, /* FT_Int */ + PS_DICT_NUM_STEM_SNAP_H, /* FT_Byte */ + PS_DICT_STEM_SNAP_H, /* FT_Short */ + PS_DICT_NUM_STEM_SNAP_V, /* FT_Byte */ + PS_DICT_STEM_SNAP_V, /* FT_Short */ + PS_DICT_FORCE_BOLD, /* FT_Bool */ + PS_DICT_RND_STEM_UP, /* FT_Bool */ + PS_DICT_MIN_FEATURE, /* FT_Short */ + PS_DICT_LEN_IV, /* FT_Int */ + PS_DICT_PASSWORD, /* FT_Long */ + PS_DICT_LANGUAGE_GROUP, /* FT_Long */ + + /* conventionally in the font FontInfo dictionary */ + PS_DICT_VERSION, /* FT_String* */ + PS_DICT_NOTICE, /* FT_String* */ + PS_DICT_FULL_NAME, /* FT_String* */ + PS_DICT_FAMILY_NAME, /* FT_String* */ + PS_DICT_WEIGHT, /* FT_String* */ + PS_DICT_IS_FIXED_PITCH, /* FT_Bool */ + PS_DICT_UNDERLINE_POSITION, /* FT_Short */ + PS_DICT_UNDERLINE_THICKNESS, /* FT_UShort */ + PS_DICT_FS_TYPE, /* FT_UShort */ + PS_DICT_ITALIC_ANGLE, /* FT_Long */ + + PS_DICT_MAX = PS_DICT_ITALIC_ANGLE + + } PS_Dict_Keys; + + + /************************************************************************** + * + * @function: + * FT_Get_PS_Font_Value + * + * @description: + * Retrieve the value for the supplied key from a PostScript font. + * + * @input: + * face :: + * PostScript face handle. + * + * key :: + * An enumeration value representing the dictionary key to retrieve. + * + * idx :: + * For array values, this specifies the index to be returned. + * + * value :: + * A pointer to memory into which to write the value. + * + * valen_len :: + * The size, in bytes, of the memory supplied for the value. + * + * @output: + * value :: + * The value matching the above key, if it exists. + * + * @return: + * The amount of memory (in bytes) required to hold the requested value + * (if it exists, -1 otherwise). + * + * @note: + * The values returned are not pointers into the internal structures of + * the face, but are 'fresh' copies, so that the memory containing them + * belongs to the calling application. This also enforces the + * 'read-only' nature of these values, i.e., this function cannot be + * used to manipulate the face. + * + * `value` is a void pointer because the values returned can be of + * various types. + * + * If either `value` is `NULL` or `value_len` is too small, just the + * required memory size for the requested entry is returned. + * + * The `idx` parameter is used, not only to retrieve elements of, for + * example, the FontMatrix or FontBBox, but also to retrieve name keys + * from the CharStrings dictionary, and the charstrings themselves. It + * is ignored for atomic values. + * + * `PS_DICT_BLUE_SCALE` returns a value that is scaled up by 1000. To + * get the value as in the font stream, you need to divide by 65536000.0 + * (to remove the FT_Fixed scale, and the x1000 scale). + * + * IMPORTANT: Only key/value pairs read by the FreeType interpreter can + * be retrieved. So, for example, PostScript procedures such as NP, ND, + * and RD are not available. Arbitrary keys are, obviously, not be + * available either. + * + * If the font's format is not PostScript-based, this function returns + * the `FT_Err_Invalid_Argument` error code. + * + * @since: + * 2.4.8 + * + */ + FT_EXPORT( FT_Long ) + FT_Get_PS_Font_Value( FT_Face face, + PS_Dict_Keys key, + FT_UInt idx, + void *value, + FT_Long value_len ); + + /* */ + +FT_END_HEADER + +#endif /* T1TABLES_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ttnameid.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ttnameid.h new file mode 100644 index 0000000..cc677de --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/ttnameid.h @@ -0,0 +1,1236 @@ +/**************************************************************************** + * + * ttnameid.h + * + * TrueType name ID definitions (specification only). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef TTNAMEID_H_ +#define TTNAMEID_H_ + + +#include + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * truetype_tables + */ + + + /************************************************************************** + * + * Possible values for the 'platform' identifier code in the name records + * of an SFNT 'name' table. + * + */ + + + /************************************************************************** + * + * @enum: + * TT_PLATFORM_XXX + * + * @description: + * A list of valid values for the `platform_id` identifier code in + * @FT_CharMapRec and @FT_SfntName structures. + * + * @values: + * TT_PLATFORM_APPLE_UNICODE :: + * Used by Apple to indicate a Unicode character map and/or name entry. + * See @TT_APPLE_ID_XXX for corresponding `encoding_id` values. Note + * that name entries in this format are coded as big-endian UCS-2 + * character codes _only_. + * + * TT_PLATFORM_MACINTOSH :: + * Used by Apple to indicate a MacOS-specific charmap and/or name + * entry. See @TT_MAC_ID_XXX for corresponding `encoding_id` values. + * Note that most TrueType fonts contain an Apple roman charmap to be + * usable on MacOS systems (even if they contain a Microsoft charmap as + * well). + * + * TT_PLATFORM_ISO :: + * This value was used to specify ISO/IEC 10646 charmaps. It is + * however now deprecated. See @TT_ISO_ID_XXX for a list of + * corresponding `encoding_id` values. + * + * TT_PLATFORM_MICROSOFT :: + * Used by Microsoft to indicate Windows-specific charmaps. See + * @TT_MS_ID_XXX for a list of corresponding `encoding_id` values. + * Note that most fonts contain a Unicode charmap using + * (`TT_PLATFORM_MICROSOFT`, @TT_MS_ID_UNICODE_CS). + * + * TT_PLATFORM_CUSTOM :: + * Used to indicate application-specific charmaps. + * + * TT_PLATFORM_ADOBE :: + * This value isn't part of any font format specification, but is used + * by FreeType to report Adobe-specific charmaps in an @FT_CharMapRec + * structure. See @TT_ADOBE_ID_XXX. + */ + +#define TT_PLATFORM_APPLE_UNICODE 0 +#define TT_PLATFORM_MACINTOSH 1 +#define TT_PLATFORM_ISO 2 /* deprecated */ +#define TT_PLATFORM_MICROSOFT 3 +#define TT_PLATFORM_CUSTOM 4 +#define TT_PLATFORM_ADOBE 7 /* artificial */ + + + /************************************************************************** + * + * @enum: + * TT_APPLE_ID_XXX + * + * @description: + * A list of valid values for the `encoding_id` for + * @TT_PLATFORM_APPLE_UNICODE charmaps and name entries. + * + * @values: + * TT_APPLE_ID_DEFAULT :: + * Unicode version 1.0. + * + * TT_APPLE_ID_UNICODE_1_1 :: + * Unicode 1.1; specifies Hangul characters starting at U+34xx. + * + * TT_APPLE_ID_ISO_10646 :: + * Deprecated (identical to preceding). + * + * TT_APPLE_ID_UNICODE_2_0 :: + * Unicode 2.0 and beyond (UTF-16 BMP only). + * + * TT_APPLE_ID_UNICODE_32 :: + * Unicode 3.1 and beyond, using UTF-32. + * + * TT_APPLE_ID_VARIANT_SELECTOR :: + * From Adobe, not Apple. Not a normal cmap. Specifies variations on + * a real cmap. + * + * TT_APPLE_ID_FULL_UNICODE :: + * Used for fallback fonts that provide complete Unicode coverage with + * a type~13 cmap. + */ + +#define TT_APPLE_ID_DEFAULT 0 /* Unicode 1.0 */ +#define TT_APPLE_ID_UNICODE_1_1 1 /* specify Hangul at U+34xx */ +#define TT_APPLE_ID_ISO_10646 2 /* deprecated */ +#define TT_APPLE_ID_UNICODE_2_0 3 /* or later */ +#define TT_APPLE_ID_UNICODE_32 4 /* 2.0 or later, full repertoire */ +#define TT_APPLE_ID_VARIANT_SELECTOR 5 /* variation selector data */ +#define TT_APPLE_ID_FULL_UNICODE 6 /* used with type 13 cmaps */ + + + /************************************************************************** + * + * @enum: + * TT_MAC_ID_XXX + * + * @description: + * A list of valid values for the `encoding_id` for + * @TT_PLATFORM_MACINTOSH charmaps and name entries. + */ + +#define TT_MAC_ID_ROMAN 0 +#define TT_MAC_ID_JAPANESE 1 +#define TT_MAC_ID_TRADITIONAL_CHINESE 2 +#define TT_MAC_ID_KOREAN 3 +#define TT_MAC_ID_ARABIC 4 +#define TT_MAC_ID_HEBREW 5 +#define TT_MAC_ID_GREEK 6 +#define TT_MAC_ID_RUSSIAN 7 +#define TT_MAC_ID_RSYMBOL 8 +#define TT_MAC_ID_DEVANAGARI 9 +#define TT_MAC_ID_GURMUKHI 10 +#define TT_MAC_ID_GUJARATI 11 +#define TT_MAC_ID_ORIYA 12 +#define TT_MAC_ID_BENGALI 13 +#define TT_MAC_ID_TAMIL 14 +#define TT_MAC_ID_TELUGU 15 +#define TT_MAC_ID_KANNADA 16 +#define TT_MAC_ID_MALAYALAM 17 +#define TT_MAC_ID_SINHALESE 18 +#define TT_MAC_ID_BURMESE 19 +#define TT_MAC_ID_KHMER 20 +#define TT_MAC_ID_THAI 21 +#define TT_MAC_ID_LAOTIAN 22 +#define TT_MAC_ID_GEORGIAN 23 +#define TT_MAC_ID_ARMENIAN 24 +#define TT_MAC_ID_MALDIVIAN 25 +#define TT_MAC_ID_SIMPLIFIED_CHINESE 25 +#define TT_MAC_ID_TIBETAN 26 +#define TT_MAC_ID_MONGOLIAN 27 +#define TT_MAC_ID_GEEZ 28 +#define TT_MAC_ID_SLAVIC 29 +#define TT_MAC_ID_VIETNAMESE 30 +#define TT_MAC_ID_SINDHI 31 +#define TT_MAC_ID_UNINTERP 32 + + + /************************************************************************** + * + * @enum: + * TT_ISO_ID_XXX + * + * @description: + * A list of valid values for the `encoding_id` for @TT_PLATFORM_ISO + * charmaps and name entries. + * + * Their use is now deprecated. + * + * @values: + * TT_ISO_ID_7BIT_ASCII :: + * ASCII. + * TT_ISO_ID_10646 :: + * ISO/10646. + * TT_ISO_ID_8859_1 :: + * Also known as Latin-1. + */ + +#define TT_ISO_ID_7BIT_ASCII 0 +#define TT_ISO_ID_10646 1 +#define TT_ISO_ID_8859_1 2 + + + /************************************************************************** + * + * @enum: + * TT_MS_ID_XXX + * + * @description: + * A list of valid values for the `encoding_id` for + * @TT_PLATFORM_MICROSOFT charmaps and name entries. + * + * @values: + * TT_MS_ID_SYMBOL_CS :: + * Microsoft symbol encoding. See @FT_ENCODING_MS_SYMBOL. + * + * TT_MS_ID_UNICODE_CS :: + * Microsoft WGL4 charmap, matching Unicode. See @FT_ENCODING_UNICODE. + * + * TT_MS_ID_SJIS :: + * Shift JIS Japanese encoding. See @FT_ENCODING_SJIS. + * + * TT_MS_ID_PRC :: + * Chinese encodings as used in the People's Republic of China (PRC). + * This means the encodings GB~2312 and its supersets GBK and GB~18030. + * See @FT_ENCODING_PRC. + * + * TT_MS_ID_BIG_5 :: + * Traditional Chinese as used in Taiwan and Hong Kong. See + * @FT_ENCODING_BIG5. + * + * TT_MS_ID_WANSUNG :: + * Korean Extended Wansung encoding. See @FT_ENCODING_WANSUNG. + * + * TT_MS_ID_JOHAB :: + * Korean Johab encoding. See @FT_ENCODING_JOHAB. + * + * TT_MS_ID_UCS_4 :: + * UCS-4 or UTF-32 charmaps. This has been added to the OpenType + * specification version 1.4 (mid-2001). + */ + +#define TT_MS_ID_SYMBOL_CS 0 +#define TT_MS_ID_UNICODE_CS 1 +#define TT_MS_ID_SJIS 2 +#define TT_MS_ID_PRC 3 +#define TT_MS_ID_BIG_5 4 +#define TT_MS_ID_WANSUNG 5 +#define TT_MS_ID_JOHAB 6 +#define TT_MS_ID_UCS_4 10 + + /* this value is deprecated */ +#define TT_MS_ID_GB2312 TT_MS_ID_PRC + + + /************************************************************************** + * + * @enum: + * TT_ADOBE_ID_XXX + * + * @description: + * A list of valid values for the `encoding_id` for @TT_PLATFORM_ADOBE + * charmaps. This is a FreeType-specific extension! + * + * @values: + * TT_ADOBE_ID_STANDARD :: + * Adobe standard encoding. + * TT_ADOBE_ID_EXPERT :: + * Adobe expert encoding. + * TT_ADOBE_ID_CUSTOM :: + * Adobe custom encoding. + * TT_ADOBE_ID_LATIN_1 :: + * Adobe Latin~1 encoding. + */ + +#define TT_ADOBE_ID_STANDARD 0 +#define TT_ADOBE_ID_EXPERT 1 +#define TT_ADOBE_ID_CUSTOM 2 +#define TT_ADOBE_ID_LATIN_1 3 + + + /************************************************************************** + * + * @enum: + * TT_MAC_LANGID_XXX + * + * @description: + * Possible values of the language identifier field in the name records + * of the SFNT 'name' table if the 'platform' identifier code is + * @TT_PLATFORM_MACINTOSH. These values are also used as return values + * for function @FT_Get_CMap_Language_ID. + * + * The canonical source for Apple's IDs is + * + * https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6name.html + */ + +#define TT_MAC_LANGID_ENGLISH 0 +#define TT_MAC_LANGID_FRENCH 1 +#define TT_MAC_LANGID_GERMAN 2 +#define TT_MAC_LANGID_ITALIAN 3 +#define TT_MAC_LANGID_DUTCH 4 +#define TT_MAC_LANGID_SWEDISH 5 +#define TT_MAC_LANGID_SPANISH 6 +#define TT_MAC_LANGID_DANISH 7 +#define TT_MAC_LANGID_PORTUGUESE 8 +#define TT_MAC_LANGID_NORWEGIAN 9 +#define TT_MAC_LANGID_HEBREW 10 +#define TT_MAC_LANGID_JAPANESE 11 +#define TT_MAC_LANGID_ARABIC 12 +#define TT_MAC_LANGID_FINNISH 13 +#define TT_MAC_LANGID_GREEK 14 +#define TT_MAC_LANGID_ICELANDIC 15 +#define TT_MAC_LANGID_MALTESE 16 +#define TT_MAC_LANGID_TURKISH 17 +#define TT_MAC_LANGID_CROATIAN 18 +#define TT_MAC_LANGID_CHINESE_TRADITIONAL 19 +#define TT_MAC_LANGID_URDU 20 +#define TT_MAC_LANGID_HINDI 21 +#define TT_MAC_LANGID_THAI 22 +#define TT_MAC_LANGID_KOREAN 23 +#define TT_MAC_LANGID_LITHUANIAN 24 +#define TT_MAC_LANGID_POLISH 25 +#define TT_MAC_LANGID_HUNGARIAN 26 +#define TT_MAC_LANGID_ESTONIAN 27 +#define TT_MAC_LANGID_LETTISH 28 +#define TT_MAC_LANGID_SAAMISK 29 +#define TT_MAC_LANGID_FAEROESE 30 +#define TT_MAC_LANGID_FARSI 31 +#define TT_MAC_LANGID_RUSSIAN 32 +#define TT_MAC_LANGID_CHINESE_SIMPLIFIED 33 +#define TT_MAC_LANGID_FLEMISH 34 +#define TT_MAC_LANGID_IRISH 35 +#define TT_MAC_LANGID_ALBANIAN 36 +#define TT_MAC_LANGID_ROMANIAN 37 +#define TT_MAC_LANGID_CZECH 38 +#define TT_MAC_LANGID_SLOVAK 39 +#define TT_MAC_LANGID_SLOVENIAN 40 +#define TT_MAC_LANGID_YIDDISH 41 +#define TT_MAC_LANGID_SERBIAN 42 +#define TT_MAC_LANGID_MACEDONIAN 43 +#define TT_MAC_LANGID_BULGARIAN 44 +#define TT_MAC_LANGID_UKRAINIAN 45 +#define TT_MAC_LANGID_BYELORUSSIAN 46 +#define TT_MAC_LANGID_UZBEK 47 +#define TT_MAC_LANGID_KAZAKH 48 +#define TT_MAC_LANGID_AZERBAIJANI 49 +#define TT_MAC_LANGID_AZERBAIJANI_CYRILLIC_SCRIPT 49 +#define TT_MAC_LANGID_AZERBAIJANI_ARABIC_SCRIPT 50 +#define TT_MAC_LANGID_ARMENIAN 51 +#define TT_MAC_LANGID_GEORGIAN 52 +#define TT_MAC_LANGID_MOLDAVIAN 53 +#define TT_MAC_LANGID_KIRGHIZ 54 +#define TT_MAC_LANGID_TAJIKI 55 +#define TT_MAC_LANGID_TURKMEN 56 +#define TT_MAC_LANGID_MONGOLIAN 57 +#define TT_MAC_LANGID_MONGOLIAN_MONGOLIAN_SCRIPT 57 +#define TT_MAC_LANGID_MONGOLIAN_CYRILLIC_SCRIPT 58 +#define TT_MAC_LANGID_PASHTO 59 +#define TT_MAC_LANGID_KURDISH 60 +#define TT_MAC_LANGID_KASHMIRI 61 +#define TT_MAC_LANGID_SINDHI 62 +#define TT_MAC_LANGID_TIBETAN 63 +#define TT_MAC_LANGID_NEPALI 64 +#define TT_MAC_LANGID_SANSKRIT 65 +#define TT_MAC_LANGID_MARATHI 66 +#define TT_MAC_LANGID_BENGALI 67 +#define TT_MAC_LANGID_ASSAMESE 68 +#define TT_MAC_LANGID_GUJARATI 69 +#define TT_MAC_LANGID_PUNJABI 70 +#define TT_MAC_LANGID_ORIYA 71 +#define TT_MAC_LANGID_MALAYALAM 72 +#define TT_MAC_LANGID_KANNADA 73 +#define TT_MAC_LANGID_TAMIL 74 +#define TT_MAC_LANGID_TELUGU 75 +#define TT_MAC_LANGID_SINHALESE 76 +#define TT_MAC_LANGID_BURMESE 77 +#define TT_MAC_LANGID_KHMER 78 +#define TT_MAC_LANGID_LAO 79 +#define TT_MAC_LANGID_VIETNAMESE 80 +#define TT_MAC_LANGID_INDONESIAN 81 +#define TT_MAC_LANGID_TAGALOG 82 +#define TT_MAC_LANGID_MALAY_ROMAN_SCRIPT 83 +#define TT_MAC_LANGID_MALAY_ARABIC_SCRIPT 84 +#define TT_MAC_LANGID_AMHARIC 85 +#define TT_MAC_LANGID_TIGRINYA 86 +#define TT_MAC_LANGID_GALLA 87 +#define TT_MAC_LANGID_SOMALI 88 +#define TT_MAC_LANGID_SWAHILI 89 +#define TT_MAC_LANGID_RUANDA 90 +#define TT_MAC_LANGID_RUNDI 91 +#define TT_MAC_LANGID_CHEWA 92 +#define TT_MAC_LANGID_MALAGASY 93 +#define TT_MAC_LANGID_ESPERANTO 94 +#define TT_MAC_LANGID_WELSH 128 +#define TT_MAC_LANGID_BASQUE 129 +#define TT_MAC_LANGID_CATALAN 130 +#define TT_MAC_LANGID_LATIN 131 +#define TT_MAC_LANGID_QUECHUA 132 +#define TT_MAC_LANGID_GUARANI 133 +#define TT_MAC_LANGID_AYMARA 134 +#define TT_MAC_LANGID_TATAR 135 +#define TT_MAC_LANGID_UIGHUR 136 +#define TT_MAC_LANGID_DZONGKHA 137 +#define TT_MAC_LANGID_JAVANESE 138 +#define TT_MAC_LANGID_SUNDANESE 139 + + /* The following codes are new as of 2000-03-10 */ +#define TT_MAC_LANGID_GALICIAN 140 +#define TT_MAC_LANGID_AFRIKAANS 141 +#define TT_MAC_LANGID_BRETON 142 +#define TT_MAC_LANGID_INUKTITUT 143 +#define TT_MAC_LANGID_SCOTTISH_GAELIC 144 +#define TT_MAC_LANGID_MANX_GAELIC 145 +#define TT_MAC_LANGID_IRISH_GAELIC 146 +#define TT_MAC_LANGID_TONGAN 147 +#define TT_MAC_LANGID_GREEK_POLYTONIC 148 +#define TT_MAC_LANGID_GREELANDIC 149 +#define TT_MAC_LANGID_AZERBAIJANI_ROMAN_SCRIPT 150 + + + /************************************************************************** + * + * @enum: + * TT_MS_LANGID_XXX + * + * @description: + * Possible values of the language identifier field in the name records + * of the SFNT 'name' table if the 'platform' identifier code is + * @TT_PLATFORM_MICROSOFT. These values are also used as return values + * for function @FT_Get_CMap_Language_ID. + * + * The canonical source for Microsoft's IDs is + * + * https://docs.microsoft.com/en-us/windows/desktop/Intl/language-identifier-constants-and-strings , + * + * however, we only provide macros for language identifiers present in + * the OpenType specification: Microsoft has abandoned the concept of + * LCIDs (language code identifiers), and format~1 of the 'name' table + * provides a better mechanism for languages not covered here. + * + * More legacy values not listed in the reference can be found in the + * @FT_TRUETYPE_IDS_H header file. + */ + +#define TT_MS_LANGID_ARABIC_SAUDI_ARABIA 0x0401 +#define TT_MS_LANGID_ARABIC_IRAQ 0x0801 +#define TT_MS_LANGID_ARABIC_EGYPT 0x0C01 +#define TT_MS_LANGID_ARABIC_LIBYA 0x1001 +#define TT_MS_LANGID_ARABIC_ALGERIA 0x1401 +#define TT_MS_LANGID_ARABIC_MOROCCO 0x1801 +#define TT_MS_LANGID_ARABIC_TUNISIA 0x1C01 +#define TT_MS_LANGID_ARABIC_OMAN 0x2001 +#define TT_MS_LANGID_ARABIC_YEMEN 0x2401 +#define TT_MS_LANGID_ARABIC_SYRIA 0x2801 +#define TT_MS_LANGID_ARABIC_JORDAN 0x2C01 +#define TT_MS_LANGID_ARABIC_LEBANON 0x3001 +#define TT_MS_LANGID_ARABIC_KUWAIT 0x3401 +#define TT_MS_LANGID_ARABIC_UAE 0x3801 +#define TT_MS_LANGID_ARABIC_BAHRAIN 0x3C01 +#define TT_MS_LANGID_ARABIC_QATAR 0x4001 +#define TT_MS_LANGID_BULGARIAN_BULGARIA 0x0402 +#define TT_MS_LANGID_CATALAN_CATALAN 0x0403 +#define TT_MS_LANGID_CHINESE_TAIWAN 0x0404 +#define TT_MS_LANGID_CHINESE_PRC 0x0804 +#define TT_MS_LANGID_CHINESE_HONG_KONG 0x0C04 +#define TT_MS_LANGID_CHINESE_SINGAPORE 0x1004 +#define TT_MS_LANGID_CHINESE_MACAO 0x1404 +#define TT_MS_LANGID_CZECH_CZECH_REPUBLIC 0x0405 +#define TT_MS_LANGID_DANISH_DENMARK 0x0406 +#define TT_MS_LANGID_GERMAN_GERMANY 0x0407 +#define TT_MS_LANGID_GERMAN_SWITZERLAND 0x0807 +#define TT_MS_LANGID_GERMAN_AUSTRIA 0x0C07 +#define TT_MS_LANGID_GERMAN_LUXEMBOURG 0x1007 +#define TT_MS_LANGID_GERMAN_LIECHTENSTEIN 0x1407 +#define TT_MS_LANGID_GREEK_GREECE 0x0408 +#define TT_MS_LANGID_ENGLISH_UNITED_STATES 0x0409 +#define TT_MS_LANGID_ENGLISH_UNITED_KINGDOM 0x0809 +#define TT_MS_LANGID_ENGLISH_AUSTRALIA 0x0C09 +#define TT_MS_LANGID_ENGLISH_CANADA 0x1009 +#define TT_MS_LANGID_ENGLISH_NEW_ZEALAND 0x1409 +#define TT_MS_LANGID_ENGLISH_IRELAND 0x1809 +#define TT_MS_LANGID_ENGLISH_SOUTH_AFRICA 0x1C09 +#define TT_MS_LANGID_ENGLISH_JAMAICA 0x2009 +#define TT_MS_LANGID_ENGLISH_CARIBBEAN 0x2409 +#define TT_MS_LANGID_ENGLISH_BELIZE 0x2809 +#define TT_MS_LANGID_ENGLISH_TRINIDAD 0x2C09 +#define TT_MS_LANGID_ENGLISH_ZIMBABWE 0x3009 +#define TT_MS_LANGID_ENGLISH_PHILIPPINES 0x3409 +#define TT_MS_LANGID_ENGLISH_INDIA 0x4009 +#define TT_MS_LANGID_ENGLISH_MALAYSIA 0x4409 +#define TT_MS_LANGID_ENGLISH_SINGAPORE 0x4809 +#define TT_MS_LANGID_SPANISH_SPAIN_TRADITIONAL_SORT 0x040A +#define TT_MS_LANGID_SPANISH_MEXICO 0x080A +#define TT_MS_LANGID_SPANISH_SPAIN_MODERN_SORT 0x0C0A +#define TT_MS_LANGID_SPANISH_GUATEMALA 0x100A +#define TT_MS_LANGID_SPANISH_COSTA_RICA 0x140A +#define TT_MS_LANGID_SPANISH_PANAMA 0x180A +#define TT_MS_LANGID_SPANISH_DOMINICAN_REPUBLIC 0x1C0A +#define TT_MS_LANGID_SPANISH_VENEZUELA 0x200A +#define TT_MS_LANGID_SPANISH_COLOMBIA 0x240A +#define TT_MS_LANGID_SPANISH_PERU 0x280A +#define TT_MS_LANGID_SPANISH_ARGENTINA 0x2C0A +#define TT_MS_LANGID_SPANISH_ECUADOR 0x300A +#define TT_MS_LANGID_SPANISH_CHILE 0x340A +#define TT_MS_LANGID_SPANISH_URUGUAY 0x380A +#define TT_MS_LANGID_SPANISH_PARAGUAY 0x3C0A +#define TT_MS_LANGID_SPANISH_BOLIVIA 0x400A +#define TT_MS_LANGID_SPANISH_EL_SALVADOR 0x440A +#define TT_MS_LANGID_SPANISH_HONDURAS 0x480A +#define TT_MS_LANGID_SPANISH_NICARAGUA 0x4C0A +#define TT_MS_LANGID_SPANISH_PUERTO_RICO 0x500A +#define TT_MS_LANGID_SPANISH_UNITED_STATES 0x540A +#define TT_MS_LANGID_FINNISH_FINLAND 0x040B +#define TT_MS_LANGID_FRENCH_FRANCE 0x040C +#define TT_MS_LANGID_FRENCH_BELGIUM 0x080C +#define TT_MS_LANGID_FRENCH_CANADA 0x0C0C +#define TT_MS_LANGID_FRENCH_SWITZERLAND 0x100C +#define TT_MS_LANGID_FRENCH_LUXEMBOURG 0x140C +#define TT_MS_LANGID_FRENCH_MONACO 0x180C +#define TT_MS_LANGID_HEBREW_ISRAEL 0x040D +#define TT_MS_LANGID_HUNGARIAN_HUNGARY 0x040E +#define TT_MS_LANGID_ICELANDIC_ICELAND 0x040F +#define TT_MS_LANGID_ITALIAN_ITALY 0x0410 +#define TT_MS_LANGID_ITALIAN_SWITZERLAND 0x0810 +#define TT_MS_LANGID_JAPANESE_JAPAN 0x0411 +#define TT_MS_LANGID_KOREAN_KOREA 0x0412 +#define TT_MS_LANGID_DUTCH_NETHERLANDS 0x0413 +#define TT_MS_LANGID_DUTCH_BELGIUM 0x0813 +#define TT_MS_LANGID_NORWEGIAN_NORWAY_BOKMAL 0x0414 +#define TT_MS_LANGID_NORWEGIAN_NORWAY_NYNORSK 0x0814 +#define TT_MS_LANGID_POLISH_POLAND 0x0415 +#define TT_MS_LANGID_PORTUGUESE_BRAZIL 0x0416 +#define TT_MS_LANGID_PORTUGUESE_PORTUGAL 0x0816 +#define TT_MS_LANGID_ROMANSH_SWITZERLAND 0x0417 +#define TT_MS_LANGID_ROMANIAN_ROMANIA 0x0418 +#define TT_MS_LANGID_RUSSIAN_RUSSIA 0x0419 +#define TT_MS_LANGID_CROATIAN_CROATIA 0x041A +#define TT_MS_LANGID_SERBIAN_SERBIA_LATIN 0x081A +#define TT_MS_LANGID_SERBIAN_SERBIA_CYRILLIC 0x0C1A +#define TT_MS_LANGID_CROATIAN_BOSNIA_HERZEGOVINA 0x101A +#define TT_MS_LANGID_BOSNIAN_BOSNIA_HERZEGOVINA 0x141A +#define TT_MS_LANGID_SERBIAN_BOSNIA_HERZ_LATIN 0x181A +#define TT_MS_LANGID_SERBIAN_BOSNIA_HERZ_CYRILLIC 0x1C1A +#define TT_MS_LANGID_BOSNIAN_BOSNIA_HERZ_CYRILLIC 0x201A +#define TT_MS_LANGID_SLOVAK_SLOVAKIA 0x041B +#define TT_MS_LANGID_ALBANIAN_ALBANIA 0x041C +#define TT_MS_LANGID_SWEDISH_SWEDEN 0x041D +#define TT_MS_LANGID_SWEDISH_FINLAND 0x081D +#define TT_MS_LANGID_THAI_THAILAND 0x041E +#define TT_MS_LANGID_TURKISH_TURKEY 0x041F +#define TT_MS_LANGID_URDU_PAKISTAN 0x0420 +#define TT_MS_LANGID_INDONESIAN_INDONESIA 0x0421 +#define TT_MS_LANGID_UKRAINIAN_UKRAINE 0x0422 +#define TT_MS_LANGID_BELARUSIAN_BELARUS 0x0423 +#define TT_MS_LANGID_SLOVENIAN_SLOVENIA 0x0424 +#define TT_MS_LANGID_ESTONIAN_ESTONIA 0x0425 +#define TT_MS_LANGID_LATVIAN_LATVIA 0x0426 +#define TT_MS_LANGID_LITHUANIAN_LITHUANIA 0x0427 +#define TT_MS_LANGID_TAJIK_TAJIKISTAN 0x0428 +#define TT_MS_LANGID_VIETNAMESE_VIET_NAM 0x042A +#define TT_MS_LANGID_ARMENIAN_ARMENIA 0x042B +#define TT_MS_LANGID_AZERI_AZERBAIJAN_LATIN 0x042C +#define TT_MS_LANGID_AZERI_AZERBAIJAN_CYRILLIC 0x082C +#define TT_MS_LANGID_BASQUE_BASQUE 0x042D +#define TT_MS_LANGID_UPPER_SORBIAN_GERMANY 0x042E +#define TT_MS_LANGID_LOWER_SORBIAN_GERMANY 0x082E +#define TT_MS_LANGID_MACEDONIAN_MACEDONIA 0x042F +#define TT_MS_LANGID_SETSWANA_SOUTH_AFRICA 0x0432 +#define TT_MS_LANGID_ISIXHOSA_SOUTH_AFRICA 0x0434 +#define TT_MS_LANGID_ISIZULU_SOUTH_AFRICA 0x0435 +#define TT_MS_LANGID_AFRIKAANS_SOUTH_AFRICA 0x0436 +#define TT_MS_LANGID_GEORGIAN_GEORGIA 0x0437 +#define TT_MS_LANGID_FAEROESE_FAEROE_ISLANDS 0x0438 +#define TT_MS_LANGID_HINDI_INDIA 0x0439 +#define TT_MS_LANGID_MALTESE_MALTA 0x043A +#define TT_MS_LANGID_SAMI_NORTHERN_NORWAY 0x043B +#define TT_MS_LANGID_SAMI_NORTHERN_SWEDEN 0x083B +#define TT_MS_LANGID_SAMI_NORTHERN_FINLAND 0x0C3B +#define TT_MS_LANGID_SAMI_LULE_NORWAY 0x103B +#define TT_MS_LANGID_SAMI_LULE_SWEDEN 0x143B +#define TT_MS_LANGID_SAMI_SOUTHERN_NORWAY 0x183B +#define TT_MS_LANGID_SAMI_SOUTHERN_SWEDEN 0x1C3B +#define TT_MS_LANGID_SAMI_SKOLT_FINLAND 0x203B +#define TT_MS_LANGID_SAMI_INARI_FINLAND 0x243B +#define TT_MS_LANGID_IRISH_IRELAND 0x083C +#define TT_MS_LANGID_MALAY_MALAYSIA 0x043E +#define TT_MS_LANGID_MALAY_BRUNEI_DARUSSALAM 0x083E +#define TT_MS_LANGID_KAZAKH_KAZAKHSTAN 0x043F +#define TT_MS_LANGID_KYRGYZ_KYRGYZSTAN /* Cyrillic*/ 0x0440 +#define TT_MS_LANGID_KISWAHILI_KENYA 0x0441 +#define TT_MS_LANGID_TURKMEN_TURKMENISTAN 0x0442 +#define TT_MS_LANGID_UZBEK_UZBEKISTAN_LATIN 0x0443 +#define TT_MS_LANGID_UZBEK_UZBEKISTAN_CYRILLIC 0x0843 +#define TT_MS_LANGID_TATAR_RUSSIA 0x0444 +#define TT_MS_LANGID_BENGALI_INDIA 0x0445 +#define TT_MS_LANGID_BENGALI_BANGLADESH 0x0845 +#define TT_MS_LANGID_PUNJABI_INDIA 0x0446 +#define TT_MS_LANGID_GUJARATI_INDIA 0x0447 +#define TT_MS_LANGID_ODIA_INDIA 0x0448 +#define TT_MS_LANGID_TAMIL_INDIA 0x0449 +#define TT_MS_LANGID_TELUGU_INDIA 0x044A +#define TT_MS_LANGID_KANNADA_INDIA 0x044B +#define TT_MS_LANGID_MALAYALAM_INDIA 0x044C +#define TT_MS_LANGID_ASSAMESE_INDIA 0x044D +#define TT_MS_LANGID_MARATHI_INDIA 0x044E +#define TT_MS_LANGID_SANSKRIT_INDIA 0x044F +#define TT_MS_LANGID_MONGOLIAN_MONGOLIA /* Cyrillic */ 0x0450 +#define TT_MS_LANGID_MONGOLIAN_PRC 0x0850 +#define TT_MS_LANGID_TIBETAN_PRC 0x0451 +#define TT_MS_LANGID_WELSH_UNITED_KINGDOM 0x0452 +#define TT_MS_LANGID_KHMER_CAMBODIA 0x0453 +#define TT_MS_LANGID_LAO_LAOS 0x0454 +#define TT_MS_LANGID_GALICIAN_GALICIAN 0x0456 +#define TT_MS_LANGID_KONKANI_INDIA 0x0457 +#define TT_MS_LANGID_SYRIAC_SYRIA 0x045A +#define TT_MS_LANGID_SINHALA_SRI_LANKA 0x045B +#define TT_MS_LANGID_INUKTITUT_CANADA 0x045D +#define TT_MS_LANGID_INUKTITUT_CANADA_LATIN 0x085D +#define TT_MS_LANGID_AMHARIC_ETHIOPIA 0x045E +#define TT_MS_LANGID_TAMAZIGHT_ALGERIA 0x085F +#define TT_MS_LANGID_NEPALI_NEPAL 0x0461 +#define TT_MS_LANGID_FRISIAN_NETHERLANDS 0x0462 +#define TT_MS_LANGID_PASHTO_AFGHANISTAN 0x0463 +#define TT_MS_LANGID_FILIPINO_PHILIPPINES 0x0464 +#define TT_MS_LANGID_DHIVEHI_MALDIVES 0x0465 +#define TT_MS_LANGID_HAUSA_NIGERIA 0x0468 +#define TT_MS_LANGID_YORUBA_NIGERIA 0x046A +#define TT_MS_LANGID_QUECHUA_BOLIVIA 0x046B +#define TT_MS_LANGID_QUECHUA_ECUADOR 0x086B +#define TT_MS_LANGID_QUECHUA_PERU 0x0C6B +#define TT_MS_LANGID_SESOTHO_SA_LEBOA_SOUTH_AFRICA 0x046C +#define TT_MS_LANGID_BASHKIR_RUSSIA 0x046D +#define TT_MS_LANGID_LUXEMBOURGISH_LUXEMBOURG 0x046E +#define TT_MS_LANGID_GREENLANDIC_GREENLAND 0x046F +#define TT_MS_LANGID_IGBO_NIGERIA 0x0470 +#define TT_MS_LANGID_YI_PRC 0x0478 +#define TT_MS_LANGID_MAPUDUNGUN_CHILE 0x047A +#define TT_MS_LANGID_MOHAWK_MOHAWK 0x047C +#define TT_MS_LANGID_BRETON_FRANCE 0x047E +#define TT_MS_LANGID_UIGHUR_PRC 0x0480 +#define TT_MS_LANGID_MAORI_NEW_ZEALAND 0x0481 +#define TT_MS_LANGID_OCCITAN_FRANCE 0x0482 +#define TT_MS_LANGID_CORSICAN_FRANCE 0x0483 +#define TT_MS_LANGID_ALSATIAN_FRANCE 0x0484 +#define TT_MS_LANGID_YAKUT_RUSSIA 0x0485 +#define TT_MS_LANGID_KICHE_GUATEMALA 0x0486 +#define TT_MS_LANGID_KINYARWANDA_RWANDA 0x0487 +#define TT_MS_LANGID_WOLOF_SENEGAL 0x0488 +#define TT_MS_LANGID_DARI_AFGHANISTAN 0x048C + + /* */ + + + /* legacy macro definitions not present in OpenType 1.8.1 */ +#define TT_MS_LANGID_ARABIC_GENERAL 0x0001 +#define TT_MS_LANGID_CATALAN_SPAIN \ + TT_MS_LANGID_CATALAN_CATALAN +#define TT_MS_LANGID_CHINESE_GENERAL 0x0004 +#define TT_MS_LANGID_CHINESE_MACAU \ + TT_MS_LANGID_CHINESE_MACAO +#define TT_MS_LANGID_GERMAN_LIECHTENSTEI \ + TT_MS_LANGID_GERMAN_LIECHTENSTEIN +#define TT_MS_LANGID_ENGLISH_GENERAL 0x0009 +#define TT_MS_LANGID_ENGLISH_INDONESIA 0x3809 +#define TT_MS_LANGID_ENGLISH_HONG_KONG 0x3C09 +#define TT_MS_LANGID_SPANISH_SPAIN_INTERNATIONAL_SORT \ + TT_MS_LANGID_SPANISH_SPAIN_MODERN_SORT +#define TT_MS_LANGID_SPANISH_LATIN_AMERICA 0xE40AU +#define TT_MS_LANGID_FRENCH_WEST_INDIES 0x1C0C +#define TT_MS_LANGID_FRENCH_REUNION 0x200C +#define TT_MS_LANGID_FRENCH_CONGO 0x240C + /* which was formerly: */ +#define TT_MS_LANGID_FRENCH_ZAIRE \ + TT_MS_LANGID_FRENCH_CONGO +#define TT_MS_LANGID_FRENCH_SENEGAL 0x280C +#define TT_MS_LANGID_FRENCH_CAMEROON 0x2C0C +#define TT_MS_LANGID_FRENCH_COTE_D_IVOIRE 0x300C +#define TT_MS_LANGID_FRENCH_MALI 0x340C +#define TT_MS_LANGID_FRENCH_MOROCCO 0x380C +#define TT_MS_LANGID_FRENCH_HAITI 0x3C0C +#define TT_MS_LANGID_FRENCH_NORTH_AFRICA 0xE40CU +#define TT_MS_LANGID_KOREAN_EXTENDED_WANSUNG_KOREA \ + TT_MS_LANGID_KOREAN_KOREA +#define TT_MS_LANGID_KOREAN_JOHAB_KOREA 0x0812 +#define TT_MS_LANGID_RHAETO_ROMANIC_SWITZERLAND \ + TT_MS_LANGID_ROMANSH_SWITZERLAND +#define TT_MS_LANGID_MOLDAVIAN_MOLDAVIA 0x0818 +#define TT_MS_LANGID_RUSSIAN_MOLDAVIA 0x0819 +#define TT_MS_LANGID_URDU_INDIA 0x0820 +#define TT_MS_LANGID_CLASSIC_LITHUANIAN_LITHUANIA 0x0827 +#define TT_MS_LANGID_SLOVENE_SLOVENIA \ + TT_MS_LANGID_SLOVENIAN_SLOVENIA +#define TT_MS_LANGID_FARSI_IRAN 0x0429 +#define TT_MS_LANGID_BASQUE_SPAIN \ + TT_MS_LANGID_BASQUE_BASQUE +#define TT_MS_LANGID_SORBIAN_GERMANY \ + TT_MS_LANGID_UPPER_SORBIAN_GERMANY +#define TT_MS_LANGID_SUTU_SOUTH_AFRICA 0x0430 +#define TT_MS_LANGID_TSONGA_SOUTH_AFRICA 0x0431 +#define TT_MS_LANGID_TSWANA_SOUTH_AFRICA \ + TT_MS_LANGID_SETSWANA_SOUTH_AFRICA +#define TT_MS_LANGID_VENDA_SOUTH_AFRICA 0x0433 +#define TT_MS_LANGID_XHOSA_SOUTH_AFRICA \ + TT_MS_LANGID_ISIXHOSA_SOUTH_AFRICA +#define TT_MS_LANGID_ZULU_SOUTH_AFRICA \ + TT_MS_LANGID_ISIZULU_SOUTH_AFRICA +#define TT_MS_LANGID_SAAMI_LAPONIA 0x043B + /* the next two values are incorrectly inverted */ +#define TT_MS_LANGID_IRISH_GAELIC_IRELAND 0x043C +#define TT_MS_LANGID_SCOTTISH_GAELIC_UNITED_KINGDOM 0x083C +#define TT_MS_LANGID_YIDDISH_GERMANY 0x043D +#define TT_MS_LANGID_KAZAK_KAZAKSTAN \ + TT_MS_LANGID_KAZAKH_KAZAKHSTAN +#define TT_MS_LANGID_KIRGHIZ_KIRGHIZ_REPUBLIC \ + TT_MS_LANGID_KYRGYZ_KYRGYZSTAN +#define TT_MS_LANGID_KIRGHIZ_KIRGHIZSTAN \ + TT_MS_LANGID_KYRGYZ_KYRGYZSTAN +#define TT_MS_LANGID_SWAHILI_KENYA \ + TT_MS_LANGID_KISWAHILI_KENYA +#define TT_MS_LANGID_TATAR_TATARSTAN \ + TT_MS_LANGID_TATAR_RUSSIA +#define TT_MS_LANGID_PUNJABI_ARABIC_PAKISTAN 0x0846 +#define TT_MS_LANGID_ORIYA_INDIA \ + TT_MS_LANGID_ODIA_INDIA +#define TT_MS_LANGID_MONGOLIAN_MONGOLIA_MONGOLIAN \ + TT_MS_LANGID_MONGOLIAN_PRC +#define TT_MS_LANGID_TIBETAN_CHINA \ + TT_MS_LANGID_TIBETAN_PRC +#define TT_MS_LANGID_DZONGHKA_BHUTAN 0x0851 +#define TT_MS_LANGID_TIBETAN_BHUTAN \ + TT_MS_LANGID_DZONGHKA_BHUTAN +#define TT_MS_LANGID_WELSH_WALES \ + TT_MS_LANGID_WELSH_UNITED_KINGDOM +#define TT_MS_LANGID_BURMESE_MYANMAR 0x0455 +#define TT_MS_LANGID_GALICIAN_SPAIN \ + TT_MS_LANGID_GALICIAN_GALICIAN +#define TT_MS_LANGID_MANIPURI_INDIA /* Bengali */ 0x0458 +#define TT_MS_LANGID_SINDHI_INDIA /* Arabic */ 0x0459 +#define TT_MS_LANGID_SINDHI_PAKISTAN 0x0859 +#define TT_MS_LANGID_SINHALESE_SRI_LANKA \ + TT_MS_LANGID_SINHALA_SRI_LANKA +#define TT_MS_LANGID_CHEROKEE_UNITED_STATES 0x045C +#define TT_MS_LANGID_TAMAZIGHT_MOROCCO /* Arabic */ 0x045F +#define TT_MS_LANGID_TAMAZIGHT_MOROCCO_LATIN \ + TT_MS_LANGID_TAMAZIGHT_ALGERIA +#define TT_MS_LANGID_KASHMIRI_PAKISTAN /* Arabic */ 0x0460 +#define TT_MS_LANGID_KASHMIRI_SASIA 0x0860 +#define TT_MS_LANGID_KASHMIRI_INDIA \ + TT_MS_LANGID_KASHMIRI_SASIA +#define TT_MS_LANGID_NEPALI_INDIA 0x0861 +#define TT_MS_LANGID_DIVEHI_MALDIVES \ + TT_MS_LANGID_DHIVEHI_MALDIVES +#define TT_MS_LANGID_EDO_NIGERIA 0x0466 +#define TT_MS_LANGID_FULFULDE_NIGERIA 0x0467 +#define TT_MS_LANGID_IBIBIO_NIGERIA 0x0469 +#define TT_MS_LANGID_SEPEDI_SOUTH_AFRICA \ + TT_MS_LANGID_SESOTHO_SA_LEBOA_SOUTH_AFRICA +#define TT_MS_LANGID_SOTHO_SOUTHERN_SOUTH_AFRICA \ + TT_MS_LANGID_SESOTHO_SA_LEBOA_SOUTH_AFRICA +#define TT_MS_LANGID_KANURI_NIGERIA 0x0471 +#define TT_MS_LANGID_OROMO_ETHIOPIA 0x0472 +#define TT_MS_LANGID_TIGRIGNA_ETHIOPIA 0x0473 +#define TT_MS_LANGID_TIGRIGNA_ERYTHREA 0x0873 +#define TT_MS_LANGID_TIGRIGNA_ERYTREA \ + TT_MS_LANGID_TIGRIGNA_ERYTHREA +#define TT_MS_LANGID_GUARANI_PARAGUAY 0x0474 +#define TT_MS_LANGID_HAWAIIAN_UNITED_STATES 0x0475 +#define TT_MS_LANGID_LATIN 0x0476 +#define TT_MS_LANGID_SOMALI_SOMALIA 0x0477 +#define TT_MS_LANGID_YI_CHINA \ + TT_MS_LANGID_YI_PRC +#define TT_MS_LANGID_PAPIAMENTU_NETHERLANDS_ANTILLES 0x0479 +#define TT_MS_LANGID_UIGHUR_CHINA \ + TT_MS_LANGID_UIGHUR_PRC + + + /************************************************************************** + * + * @enum: + * TT_NAME_ID_XXX + * + * @description: + * Possible values of the 'name' identifier field in the name records of + * an SFNT 'name' table. These values are platform independent. + */ + +#define TT_NAME_ID_COPYRIGHT 0 +#define TT_NAME_ID_FONT_FAMILY 1 +#define TT_NAME_ID_FONT_SUBFAMILY 2 +#define TT_NAME_ID_UNIQUE_ID 3 +#define TT_NAME_ID_FULL_NAME 4 +#define TT_NAME_ID_VERSION_STRING 5 +#define TT_NAME_ID_PS_NAME 6 +#define TT_NAME_ID_TRADEMARK 7 + + /* the following values are from the OpenType spec */ +#define TT_NAME_ID_MANUFACTURER 8 +#define TT_NAME_ID_DESIGNER 9 +#define TT_NAME_ID_DESCRIPTION 10 +#define TT_NAME_ID_VENDOR_URL 11 +#define TT_NAME_ID_DESIGNER_URL 12 +#define TT_NAME_ID_LICENSE 13 +#define TT_NAME_ID_LICENSE_URL 14 + /* number 15 is reserved */ +#define TT_NAME_ID_TYPOGRAPHIC_FAMILY 16 +#define TT_NAME_ID_TYPOGRAPHIC_SUBFAMILY 17 +#define TT_NAME_ID_MAC_FULL_NAME 18 + + /* The following code is new as of 2000-01-21 */ +#define TT_NAME_ID_SAMPLE_TEXT 19 + + /* This is new in OpenType 1.3 */ +#define TT_NAME_ID_CID_FINDFONT_NAME 20 + + /* This is new in OpenType 1.5 */ +#define TT_NAME_ID_WWS_FAMILY 21 +#define TT_NAME_ID_WWS_SUBFAMILY 22 + + /* This is new in OpenType 1.7 */ +#define TT_NAME_ID_LIGHT_BACKGROUND 23 +#define TT_NAME_ID_DARK_BACKGROUND 24 + + /* This is new in OpenType 1.8 */ +#define TT_NAME_ID_VARIATIONS_PREFIX 25 + + /* these two values are deprecated */ +#define TT_NAME_ID_PREFERRED_FAMILY TT_NAME_ID_TYPOGRAPHIC_FAMILY +#define TT_NAME_ID_PREFERRED_SUBFAMILY TT_NAME_ID_TYPOGRAPHIC_SUBFAMILY + + + /************************************************************************** + * + * @enum: + * TT_UCR_XXX + * + * @description: + * Possible bit mask values for the `ulUnicodeRangeX` fields in an SFNT + * 'OS/2' table. + */ + + /* ulUnicodeRange1 */ + /* --------------- */ + + /* Bit 0 Basic Latin */ +#define TT_UCR_BASIC_LATIN (1L << 0) /* U+0020-U+007E */ + /* Bit 1 C1 Controls and Latin-1 Supplement */ +#define TT_UCR_LATIN1_SUPPLEMENT (1L << 1) /* U+0080-U+00FF */ + /* Bit 2 Latin Extended-A */ +#define TT_UCR_LATIN_EXTENDED_A (1L << 2) /* U+0100-U+017F */ + /* Bit 3 Latin Extended-B */ +#define TT_UCR_LATIN_EXTENDED_B (1L << 3) /* U+0180-U+024F */ + /* Bit 4 IPA Extensions */ + /* Phonetic Extensions */ + /* Phonetic Extensions Supplement */ +#define TT_UCR_IPA_EXTENSIONS (1L << 4) /* U+0250-U+02AF */ + /* U+1D00-U+1D7F */ + /* U+1D80-U+1DBF */ + /* Bit 5 Spacing Modifier Letters */ + /* Modifier Tone Letters */ +#define TT_UCR_SPACING_MODIFIER (1L << 5) /* U+02B0-U+02FF */ + /* U+A700-U+A71F */ + /* Bit 6 Combining Diacritical Marks */ + /* Combining Diacritical Marks Supplement */ +#define TT_UCR_COMBINING_DIACRITICAL_MARKS (1L << 6) /* U+0300-U+036F */ + /* U+1DC0-U+1DFF */ + /* Bit 7 Greek and Coptic */ +#define TT_UCR_GREEK (1L << 7) /* U+0370-U+03FF */ + /* Bit 8 Coptic */ +#define TT_UCR_COPTIC (1L << 8) /* U+2C80-U+2CFF */ + /* Bit 9 Cyrillic */ + /* Cyrillic Supplement */ + /* Cyrillic Extended-A */ + /* Cyrillic Extended-B */ +#define TT_UCR_CYRILLIC (1L << 9) /* U+0400-U+04FF */ + /* U+0500-U+052F */ + /* U+2DE0-U+2DFF */ + /* U+A640-U+A69F */ + /* Bit 10 Armenian */ +#define TT_UCR_ARMENIAN (1L << 10) /* U+0530-U+058F */ + /* Bit 11 Hebrew */ +#define TT_UCR_HEBREW (1L << 11) /* U+0590-U+05FF */ + /* Bit 12 Vai */ +#define TT_UCR_VAI (1L << 12) /* U+A500-U+A63F */ + /* Bit 13 Arabic */ + /* Arabic Supplement */ +#define TT_UCR_ARABIC (1L << 13) /* U+0600-U+06FF */ + /* U+0750-U+077F */ + /* Bit 14 NKo */ +#define TT_UCR_NKO (1L << 14) /* U+07C0-U+07FF */ + /* Bit 15 Devanagari */ +#define TT_UCR_DEVANAGARI (1L << 15) /* U+0900-U+097F */ + /* Bit 16 Bengali */ +#define TT_UCR_BENGALI (1L << 16) /* U+0980-U+09FF */ + /* Bit 17 Gurmukhi */ +#define TT_UCR_GURMUKHI (1L << 17) /* U+0A00-U+0A7F */ + /* Bit 18 Gujarati */ +#define TT_UCR_GUJARATI (1L << 18) /* U+0A80-U+0AFF */ + /* Bit 19 Oriya */ +#define TT_UCR_ORIYA (1L << 19) /* U+0B00-U+0B7F */ + /* Bit 20 Tamil */ +#define TT_UCR_TAMIL (1L << 20) /* U+0B80-U+0BFF */ + /* Bit 21 Telugu */ +#define TT_UCR_TELUGU (1L << 21) /* U+0C00-U+0C7F */ + /* Bit 22 Kannada */ +#define TT_UCR_KANNADA (1L << 22) /* U+0C80-U+0CFF */ + /* Bit 23 Malayalam */ +#define TT_UCR_MALAYALAM (1L << 23) /* U+0D00-U+0D7F */ + /* Bit 24 Thai */ +#define TT_UCR_THAI (1L << 24) /* U+0E00-U+0E7F */ + /* Bit 25 Lao */ +#define TT_UCR_LAO (1L << 25) /* U+0E80-U+0EFF */ + /* Bit 26 Georgian */ + /* Georgian Supplement */ +#define TT_UCR_GEORGIAN (1L << 26) /* U+10A0-U+10FF */ + /* U+2D00-U+2D2F */ + /* Bit 27 Balinese */ +#define TT_UCR_BALINESE (1L << 27) /* U+1B00-U+1B7F */ + /* Bit 28 Hangul Jamo */ +#define TT_UCR_HANGUL_JAMO (1L << 28) /* U+1100-U+11FF */ + /* Bit 29 Latin Extended Additional */ + /* Latin Extended-C */ + /* Latin Extended-D */ +#define TT_UCR_LATIN_EXTENDED_ADDITIONAL (1L << 29) /* U+1E00-U+1EFF */ + /* U+2C60-U+2C7F */ + /* U+A720-U+A7FF */ + /* Bit 30 Greek Extended */ +#define TT_UCR_GREEK_EXTENDED (1L << 30) /* U+1F00-U+1FFF */ + /* Bit 31 General Punctuation */ + /* Supplemental Punctuation */ +#define TT_UCR_GENERAL_PUNCTUATION (1L << 31) /* U+2000-U+206F */ + /* U+2E00-U+2E7F */ + + /* ulUnicodeRange2 */ + /* --------------- */ + + /* Bit 32 Superscripts And Subscripts */ +#define TT_UCR_SUPERSCRIPTS_SUBSCRIPTS (1L << 0) /* U+2070-U+209F */ + /* Bit 33 Currency Symbols */ +#define TT_UCR_CURRENCY_SYMBOLS (1L << 1) /* U+20A0-U+20CF */ + /* Bit 34 Combining Diacritical Marks For Symbols */ +#define TT_UCR_COMBINING_DIACRITICAL_MARKS_SYMB \ + (1L << 2) /* U+20D0-U+20FF */ + /* Bit 35 Letterlike Symbols */ +#define TT_UCR_LETTERLIKE_SYMBOLS (1L << 3) /* U+2100-U+214F */ + /* Bit 36 Number Forms */ +#define TT_UCR_NUMBER_FORMS (1L << 4) /* U+2150-U+218F */ + /* Bit 37 Arrows */ + /* Supplemental Arrows-A */ + /* Supplemental Arrows-B */ + /* Miscellaneous Symbols and Arrows */ +#define TT_UCR_ARROWS (1L << 5) /* U+2190-U+21FF */ + /* U+27F0-U+27FF */ + /* U+2900-U+297F */ + /* U+2B00-U+2BFF */ + /* Bit 38 Mathematical Operators */ + /* Supplemental Mathematical Operators */ + /* Miscellaneous Mathematical Symbols-A */ + /* Miscellaneous Mathematical Symbols-B */ +#define TT_UCR_MATHEMATICAL_OPERATORS (1L << 6) /* U+2200-U+22FF */ + /* U+2A00-U+2AFF */ + /* U+27C0-U+27EF */ + /* U+2980-U+29FF */ + /* Bit 39 Miscellaneous Technical */ +#define TT_UCR_MISCELLANEOUS_TECHNICAL (1L << 7) /* U+2300-U+23FF */ + /* Bit 40 Control Pictures */ +#define TT_UCR_CONTROL_PICTURES (1L << 8) /* U+2400-U+243F */ + /* Bit 41 Optical Character Recognition */ +#define TT_UCR_OCR (1L << 9) /* U+2440-U+245F */ + /* Bit 42 Enclosed Alphanumerics */ +#define TT_UCR_ENCLOSED_ALPHANUMERICS (1L << 10) /* U+2460-U+24FF */ + /* Bit 43 Box Drawing */ +#define TT_UCR_BOX_DRAWING (1L << 11) /* U+2500-U+257F */ + /* Bit 44 Block Elements */ +#define TT_UCR_BLOCK_ELEMENTS (1L << 12) /* U+2580-U+259F */ + /* Bit 45 Geometric Shapes */ +#define TT_UCR_GEOMETRIC_SHAPES (1L << 13) /* U+25A0-U+25FF */ + /* Bit 46 Miscellaneous Symbols */ +#define TT_UCR_MISCELLANEOUS_SYMBOLS (1L << 14) /* U+2600-U+26FF */ + /* Bit 47 Dingbats */ +#define TT_UCR_DINGBATS (1L << 15) /* U+2700-U+27BF */ + /* Bit 48 CJK Symbols and Punctuation */ +#define TT_UCR_CJK_SYMBOLS (1L << 16) /* U+3000-U+303F */ + /* Bit 49 Hiragana */ +#define TT_UCR_HIRAGANA (1L << 17) /* U+3040-U+309F */ + /* Bit 50 Katakana */ + /* Katakana Phonetic Extensions */ +#define TT_UCR_KATAKANA (1L << 18) /* U+30A0-U+30FF */ + /* U+31F0-U+31FF */ + /* Bit 51 Bopomofo */ + /* Bopomofo Extended */ +#define TT_UCR_BOPOMOFO (1L << 19) /* U+3100-U+312F */ + /* U+31A0-U+31BF */ + /* Bit 52 Hangul Compatibility Jamo */ +#define TT_UCR_HANGUL_COMPATIBILITY_JAMO (1L << 20) /* U+3130-U+318F */ + /* Bit 53 Phags-Pa */ +#define TT_UCR_CJK_MISC (1L << 21) /* U+A840-U+A87F */ +#define TT_UCR_KANBUN TT_UCR_CJK_MISC /* deprecated */ +#define TT_UCR_PHAGSPA + /* Bit 54 Enclosed CJK Letters and Months */ +#define TT_UCR_ENCLOSED_CJK_LETTERS_MONTHS (1L << 22) /* U+3200-U+32FF */ + /* Bit 55 CJK Compatibility */ +#define TT_UCR_CJK_COMPATIBILITY (1L << 23) /* U+3300-U+33FF */ + /* Bit 56 Hangul Syllables */ +#define TT_UCR_HANGUL (1L << 24) /* U+AC00-U+D7A3 */ + /* Bit 57 High Surrogates */ + /* High Private Use Surrogates */ + /* Low Surrogates */ + + /* According to OpenType specs v.1.3+, */ + /* setting bit 57 implies that there is */ + /* at least one codepoint beyond the */ + /* Basic Multilingual Plane that is */ + /* supported by this font. So it really */ + /* means >= U+10000. */ +#define TT_UCR_SURROGATES (1L << 25) /* U+D800-U+DB7F */ + /* U+DB80-U+DBFF */ + /* U+DC00-U+DFFF */ +#define TT_UCR_NON_PLANE_0 TT_UCR_SURROGATES + /* Bit 58 Phoenician */ +#define TT_UCR_PHOENICIAN (1L << 26) /*U+10900-U+1091F*/ + /* Bit 59 CJK Unified Ideographs */ + /* CJK Radicals Supplement */ + /* Kangxi Radicals */ + /* Ideographic Description Characters */ + /* CJK Unified Ideographs Extension A */ + /* CJK Unified Ideographs Extension B */ + /* Kanbun */ +#define TT_UCR_CJK_UNIFIED_IDEOGRAPHS (1L << 27) /* U+4E00-U+9FFF */ + /* U+2E80-U+2EFF */ + /* U+2F00-U+2FDF */ + /* U+2FF0-U+2FFF */ + /* U+3400-U+4DB5 */ + /*U+20000-U+2A6DF*/ + /* U+3190-U+319F */ + /* Bit 60 Private Use */ +#define TT_UCR_PRIVATE_USE (1L << 28) /* U+E000-U+F8FF */ + /* Bit 61 CJK Strokes */ + /* CJK Compatibility Ideographs */ + /* CJK Compatibility Ideographs Supplement */ +#define TT_UCR_CJK_COMPATIBILITY_IDEOGRAPHS (1L << 29) /* U+31C0-U+31EF */ + /* U+F900-U+FAFF */ + /*U+2F800-U+2FA1F*/ + /* Bit 62 Alphabetic Presentation Forms */ +#define TT_UCR_ALPHABETIC_PRESENTATION_FORMS (1L << 30) /* U+FB00-U+FB4F */ + /* Bit 63 Arabic Presentation Forms-A */ +#define TT_UCR_ARABIC_PRESENTATION_FORMS_A (1L << 31) /* U+FB50-U+FDFF */ + + /* ulUnicodeRange3 */ + /* --------------- */ + + /* Bit 64 Combining Half Marks */ +#define TT_UCR_COMBINING_HALF_MARKS (1L << 0) /* U+FE20-U+FE2F */ + /* Bit 65 Vertical forms */ + /* CJK Compatibility Forms */ +#define TT_UCR_CJK_COMPATIBILITY_FORMS (1L << 1) /* U+FE10-U+FE1F */ + /* U+FE30-U+FE4F */ + /* Bit 66 Small Form Variants */ +#define TT_UCR_SMALL_FORM_VARIANTS (1L << 2) /* U+FE50-U+FE6F */ + /* Bit 67 Arabic Presentation Forms-B */ +#define TT_UCR_ARABIC_PRESENTATION_FORMS_B (1L << 3) /* U+FE70-U+FEFE */ + /* Bit 68 Halfwidth and Fullwidth Forms */ +#define TT_UCR_HALFWIDTH_FULLWIDTH_FORMS (1L << 4) /* U+FF00-U+FFEF */ + /* Bit 69 Specials */ +#define TT_UCR_SPECIALS (1L << 5) /* U+FFF0-U+FFFD */ + /* Bit 70 Tibetan */ +#define TT_UCR_TIBETAN (1L << 6) /* U+0F00-U+0FFF */ + /* Bit 71 Syriac */ +#define TT_UCR_SYRIAC (1L << 7) /* U+0700-U+074F */ + /* Bit 72 Thaana */ +#define TT_UCR_THAANA (1L << 8) /* U+0780-U+07BF */ + /* Bit 73 Sinhala */ +#define TT_UCR_SINHALA (1L << 9) /* U+0D80-U+0DFF */ + /* Bit 74 Myanmar */ +#define TT_UCR_MYANMAR (1L << 10) /* U+1000-U+109F */ + /* Bit 75 Ethiopic */ + /* Ethiopic Supplement */ + /* Ethiopic Extended */ +#define TT_UCR_ETHIOPIC (1L << 11) /* U+1200-U+137F */ + /* U+1380-U+139F */ + /* U+2D80-U+2DDF */ + /* Bit 76 Cherokee */ +#define TT_UCR_CHEROKEE (1L << 12) /* U+13A0-U+13FF */ + /* Bit 77 Unified Canadian Aboriginal Syllabics */ +#define TT_UCR_CANADIAN_ABORIGINAL_SYLLABICS (1L << 13) /* U+1400-U+167F */ + /* Bit 78 Ogham */ +#define TT_UCR_OGHAM (1L << 14) /* U+1680-U+169F */ + /* Bit 79 Runic */ +#define TT_UCR_RUNIC (1L << 15) /* U+16A0-U+16FF */ + /* Bit 80 Khmer */ + /* Khmer Symbols */ +#define TT_UCR_KHMER (1L << 16) /* U+1780-U+17FF */ + /* U+19E0-U+19FF */ + /* Bit 81 Mongolian */ +#define TT_UCR_MONGOLIAN (1L << 17) /* U+1800-U+18AF */ + /* Bit 82 Braille Patterns */ +#define TT_UCR_BRAILLE (1L << 18) /* U+2800-U+28FF */ + /* Bit 83 Yi Syllables */ + /* Yi Radicals */ +#define TT_UCR_YI (1L << 19) /* U+A000-U+A48F */ + /* U+A490-U+A4CF */ + /* Bit 84 Tagalog */ + /* Hanunoo */ + /* Buhid */ + /* Tagbanwa */ +#define TT_UCR_PHILIPPINE (1L << 20) /* U+1700-U+171F */ + /* U+1720-U+173F */ + /* U+1740-U+175F */ + /* U+1760-U+177F */ + /* Bit 85 Old Italic */ +#define TT_UCR_OLD_ITALIC (1L << 21) /*U+10300-U+1032F*/ + /* Bit 86 Gothic */ +#define TT_UCR_GOTHIC (1L << 22) /*U+10330-U+1034F*/ + /* Bit 87 Deseret */ +#define TT_UCR_DESERET (1L << 23) /*U+10400-U+1044F*/ + /* Bit 88 Byzantine Musical Symbols */ + /* Musical Symbols */ + /* Ancient Greek Musical Notation */ +#define TT_UCR_MUSICAL_SYMBOLS (1L << 24) /*U+1D000-U+1D0FF*/ + /*U+1D100-U+1D1FF*/ + /*U+1D200-U+1D24F*/ + /* Bit 89 Mathematical Alphanumeric Symbols */ +#define TT_UCR_MATH_ALPHANUMERIC_SYMBOLS (1L << 25) /*U+1D400-U+1D7FF*/ + /* Bit 90 Private Use (plane 15) */ + /* Private Use (plane 16) */ +#define TT_UCR_PRIVATE_USE_SUPPLEMENTARY (1L << 26) /*U+F0000-U+FFFFD*/ + /*U+100000-U+10FFFD*/ + /* Bit 91 Variation Selectors */ + /* Variation Selectors Supplement */ +#define TT_UCR_VARIATION_SELECTORS (1L << 27) /* U+FE00-U+FE0F */ + /*U+E0100-U+E01EF*/ + /* Bit 92 Tags */ +#define TT_UCR_TAGS (1L << 28) /*U+E0000-U+E007F*/ + /* Bit 93 Limbu */ +#define TT_UCR_LIMBU (1L << 29) /* U+1900-U+194F */ + /* Bit 94 Tai Le */ +#define TT_UCR_TAI_LE (1L << 30) /* U+1950-U+197F */ + /* Bit 95 New Tai Lue */ +#define TT_UCR_NEW_TAI_LUE (1L << 31) /* U+1980-U+19DF */ + + /* ulUnicodeRange4 */ + /* --------------- */ + + /* Bit 96 Buginese */ +#define TT_UCR_BUGINESE (1L << 0) /* U+1A00-U+1A1F */ + /* Bit 97 Glagolitic */ +#define TT_UCR_GLAGOLITIC (1L << 1) /* U+2C00-U+2C5F */ + /* Bit 98 Tifinagh */ +#define TT_UCR_TIFINAGH (1L << 2) /* U+2D30-U+2D7F */ + /* Bit 99 Yijing Hexagram Symbols */ +#define TT_UCR_YIJING (1L << 3) /* U+4DC0-U+4DFF */ + /* Bit 100 Syloti Nagri */ +#define TT_UCR_SYLOTI_NAGRI (1L << 4) /* U+A800-U+A82F */ + /* Bit 101 Linear B Syllabary */ + /* Linear B Ideograms */ + /* Aegean Numbers */ +#define TT_UCR_LINEAR_B (1L << 5) /*U+10000-U+1007F*/ + /*U+10080-U+100FF*/ + /*U+10100-U+1013F*/ + /* Bit 102 Ancient Greek Numbers */ +#define TT_UCR_ANCIENT_GREEK_NUMBERS (1L << 6) /*U+10140-U+1018F*/ + /* Bit 103 Ugaritic */ +#define TT_UCR_UGARITIC (1L << 7) /*U+10380-U+1039F*/ + /* Bit 104 Old Persian */ +#define TT_UCR_OLD_PERSIAN (1L << 8) /*U+103A0-U+103DF*/ + /* Bit 105 Shavian */ +#define TT_UCR_SHAVIAN (1L << 9) /*U+10450-U+1047F*/ + /* Bit 106 Osmanya */ +#define TT_UCR_OSMANYA (1L << 10) /*U+10480-U+104AF*/ + /* Bit 107 Cypriot Syllabary */ +#define TT_UCR_CYPRIOT_SYLLABARY (1L << 11) /*U+10800-U+1083F*/ + /* Bit 108 Kharoshthi */ +#define TT_UCR_KHAROSHTHI (1L << 12) /*U+10A00-U+10A5F*/ + /* Bit 109 Tai Xuan Jing Symbols */ +#define TT_UCR_TAI_XUAN_JING (1L << 13) /*U+1D300-U+1D35F*/ + /* Bit 110 Cuneiform */ + /* Cuneiform Numbers and Punctuation */ +#define TT_UCR_CUNEIFORM (1L << 14) /*U+12000-U+123FF*/ + /*U+12400-U+1247F*/ + /* Bit 111 Counting Rod Numerals */ +#define TT_UCR_COUNTING_ROD_NUMERALS (1L << 15) /*U+1D360-U+1D37F*/ + /* Bit 112 Sundanese */ +#define TT_UCR_SUNDANESE (1L << 16) /* U+1B80-U+1BBF */ + /* Bit 113 Lepcha */ +#define TT_UCR_LEPCHA (1L << 17) /* U+1C00-U+1C4F */ + /* Bit 114 Ol Chiki */ +#define TT_UCR_OL_CHIKI (1L << 18) /* U+1C50-U+1C7F */ + /* Bit 115 Saurashtra */ +#define TT_UCR_SAURASHTRA (1L << 19) /* U+A880-U+A8DF */ + /* Bit 116 Kayah Li */ +#define TT_UCR_KAYAH_LI (1L << 20) /* U+A900-U+A92F */ + /* Bit 117 Rejang */ +#define TT_UCR_REJANG (1L << 21) /* U+A930-U+A95F */ + /* Bit 118 Cham */ +#define TT_UCR_CHAM (1L << 22) /* U+AA00-U+AA5F */ + /* Bit 119 Ancient Symbols */ +#define TT_UCR_ANCIENT_SYMBOLS (1L << 23) /*U+10190-U+101CF*/ + /* Bit 120 Phaistos Disc */ +#define TT_UCR_PHAISTOS_DISC (1L << 24) /*U+101D0-U+101FF*/ + /* Bit 121 Carian */ + /* Lycian */ + /* Lydian */ +#define TT_UCR_OLD_ANATOLIAN (1L << 25) /*U+102A0-U+102DF*/ + /*U+10280-U+1029F*/ + /*U+10920-U+1093F*/ + /* Bit 122 Domino Tiles */ + /* Mahjong Tiles */ +#define TT_UCR_GAME_TILES (1L << 26) /*U+1F030-U+1F09F*/ + /*U+1F000-U+1F02F*/ + /* Bit 123-127 Reserved for process-internal usage */ + + /* */ + + /* for backward compatibility with older FreeType versions */ +#define TT_UCR_ARABIC_PRESENTATION_A \ + TT_UCR_ARABIC_PRESENTATION_FORMS_A +#define TT_UCR_ARABIC_PRESENTATION_B \ + TT_UCR_ARABIC_PRESENTATION_FORMS_B + +#define TT_UCR_COMBINING_DIACRITICS \ + TT_UCR_COMBINING_DIACRITICAL_MARKS +#define TT_UCR_COMBINING_DIACRITICS_SYMB \ + TT_UCR_COMBINING_DIACRITICAL_MARKS_SYMB + + +FT_END_HEADER + +#endif /* TTNAMEID_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/tttables.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/tttables.h new file mode 100644 index 0000000..d04f810 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/tttables.h @@ -0,0 +1,856 @@ +/**************************************************************************** + * + * tttables.h + * + * Basic SFNT/TrueType tables definitions and interface + * (specification only). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef TTTABLES_H_ +#define TTTABLES_H_ + + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /************************************************************************** + * + * @section: + * truetype_tables + * + * @title: + * TrueType Tables + * + * @abstract: + * TrueType-specific table types and functions. + * + * @description: + * This section contains definitions of some basic tables specific to + * TrueType and OpenType as well as some routines used to access and + * process them. + * + * @order: + * TT_Header + * TT_HoriHeader + * TT_VertHeader + * TT_OS2 + * TT_Postscript + * TT_PCLT + * TT_MaxProfile + * + * FT_Sfnt_Tag + * FT_Get_Sfnt_Table + * FT_Load_Sfnt_Table + * FT_Sfnt_Table_Info + * + * FT_Get_CMap_Language_ID + * FT_Get_CMap_Format + * + * FT_PARAM_TAG_UNPATENTED_HINTING + * + */ + + + /************************************************************************** + * + * @struct: + * TT_Header + * + * @description: + * A structure to model a TrueType font header table. All fields follow + * the OpenType specification. The 64-bit timestamps are stored in + * two-element arrays `Created` and `Modified`, first the upper then + * the lower 32~bits. + */ + typedef struct TT_Header_ + { + FT_Fixed Table_Version; + FT_Fixed Font_Revision; + + FT_Long CheckSum_Adjust; + FT_Long Magic_Number; + + FT_UShort Flags; + FT_UShort Units_Per_EM; + + FT_ULong Created [2]; + FT_ULong Modified[2]; + + FT_Short xMin; + FT_Short yMin; + FT_Short xMax; + FT_Short yMax; + + FT_UShort Mac_Style; + FT_UShort Lowest_Rec_PPEM; + + FT_Short Font_Direction; + FT_Short Index_To_Loc_Format; + FT_Short Glyph_Data_Format; + + } TT_Header; + + + /************************************************************************** + * + * @struct: + * TT_HoriHeader + * + * @description: + * A structure to model a TrueType horizontal header, the 'hhea' table, + * as well as the corresponding horizontal metrics table, 'hmtx'. + * + * @fields: + * Version :: + * The table version. + * + * Ascender :: + * The font's ascender, i.e., the distance from the baseline to the + * top-most of all glyph points found in the font. + * + * This value is invalid in many fonts, as it is usually set by the + * font designer, and often reflects only a portion of the glyphs found + * in the font (maybe ASCII). + * + * You should use the `sTypoAscender` field of the 'OS/2' table instead + * if you want the correct one. + * + * Descender :: + * The font's descender, i.e., the distance from the baseline to the + * bottom-most of all glyph points found in the font. It is negative. + * + * This value is invalid in many fonts, as it is usually set by the + * font designer, and often reflects only a portion of the glyphs found + * in the font (maybe ASCII). + * + * You should use the `sTypoDescender` field of the 'OS/2' table + * instead if you want the correct one. + * + * Line_Gap :: + * The font's line gap, i.e., the distance to add to the ascender and + * descender to get the BTB, i.e., the baseline-to-baseline distance + * for the font. + * + * advance_Width_Max :: + * This field is the maximum of all advance widths found in the font. + * It can be used to compute the maximum width of an arbitrary string + * of text. + * + * min_Left_Side_Bearing :: + * The minimum left side bearing of all glyphs within the font. + * + * min_Right_Side_Bearing :: + * The minimum right side bearing of all glyphs within the font. + * + * xMax_Extent :: + * The maximum horizontal extent (i.e., the 'width' of a glyph's + * bounding box) for all glyphs in the font. + * + * caret_Slope_Rise :: + * The rise coefficient of the cursor's slope of the cursor + * (slope=rise/run). + * + * caret_Slope_Run :: + * The run coefficient of the cursor's slope. + * + * caret_Offset :: + * The cursor's offset for slanted fonts. + * + * Reserved :: + * 8~reserved bytes. + * + * metric_Data_Format :: + * Always~0. + * + * number_Of_HMetrics :: + * Number of HMetrics entries in the 'hmtx' table -- this value can be + * smaller than the total number of glyphs in the font. + * + * long_metrics :: + * A pointer into the 'hmtx' table. + * + * short_metrics :: + * A pointer into the 'hmtx' table. + * + * @note: + * For an OpenType variation font, the values of the following fields can + * change after a call to @FT_Set_Var_Design_Coordinates (and friends) if + * the font contains an 'MVAR' table: `caret_Slope_Rise`, + * `caret_Slope_Run`, and `caret_Offset`. + */ + typedef struct TT_HoriHeader_ + { + FT_Fixed Version; + FT_Short Ascender; + FT_Short Descender; + FT_Short Line_Gap; + + FT_UShort advance_Width_Max; /* advance width maximum */ + + FT_Short min_Left_Side_Bearing; /* minimum left-sb */ + FT_Short min_Right_Side_Bearing; /* minimum right-sb */ + FT_Short xMax_Extent; /* xmax extents */ + FT_Short caret_Slope_Rise; + FT_Short caret_Slope_Run; + FT_Short caret_Offset; + + FT_Short Reserved[4]; + + FT_Short metric_Data_Format; + FT_UShort number_Of_HMetrics; + + /* The following fields are not defined by the OpenType specification */ + /* but they are used to connect the metrics header to the relevant */ + /* 'hmtx' table. */ + + void* long_metrics; + void* short_metrics; + + } TT_HoriHeader; + + + /************************************************************************** + * + * @struct: + * TT_VertHeader + * + * @description: + * A structure used to model a TrueType vertical header, the 'vhea' + * table, as well as the corresponding vertical metrics table, 'vmtx'. + * + * @fields: + * Version :: + * The table version. + * + * Ascender :: + * The font's ascender, i.e., the distance from the baseline to the + * top-most of all glyph points found in the font. + * + * This value is invalid in many fonts, as it is usually set by the + * font designer, and often reflects only a portion of the glyphs found + * in the font (maybe ASCII). + * + * You should use the `sTypoAscender` field of the 'OS/2' table instead + * if you want the correct one. + * + * Descender :: + * The font's descender, i.e., the distance from the baseline to the + * bottom-most of all glyph points found in the font. It is negative. + * + * This value is invalid in many fonts, as it is usually set by the + * font designer, and often reflects only a portion of the glyphs found + * in the font (maybe ASCII). + * + * You should use the `sTypoDescender` field of the 'OS/2' table + * instead if you want the correct one. + * + * Line_Gap :: + * The font's line gap, i.e., the distance to add to the ascender and + * descender to get the BTB, i.e., the baseline-to-baseline distance + * for the font. + * + * advance_Height_Max :: + * This field is the maximum of all advance heights found in the font. + * It can be used to compute the maximum height of an arbitrary string + * of text. + * + * min_Top_Side_Bearing :: + * The minimum top side bearing of all glyphs within the font. + * + * min_Bottom_Side_Bearing :: + * The minimum bottom side bearing of all glyphs within the font. + * + * yMax_Extent :: + * The maximum vertical extent (i.e., the 'height' of a glyph's + * bounding box) for all glyphs in the font. + * + * caret_Slope_Rise :: + * The rise coefficient of the cursor's slope of the cursor + * (slope=rise/run). + * + * caret_Slope_Run :: + * The run coefficient of the cursor's slope. + * + * caret_Offset :: + * The cursor's offset for slanted fonts. + * + * Reserved :: + * 8~reserved bytes. + * + * metric_Data_Format :: + * Always~0. + * + * number_Of_VMetrics :: + * Number of VMetrics entries in the 'vmtx' table -- this value can be + * smaller than the total number of glyphs in the font. + * + * long_metrics :: + * A pointer into the 'vmtx' table. + * + * short_metrics :: + * A pointer into the 'vmtx' table. + * + * @note: + * For an OpenType variation font, the values of the following fields can + * change after a call to @FT_Set_Var_Design_Coordinates (and friends) if + * the font contains an 'MVAR' table: `Ascender`, `Descender`, + * `Line_Gap`, `caret_Slope_Rise`, `caret_Slope_Run`, and `caret_Offset`. + */ + typedef struct TT_VertHeader_ + { + FT_Fixed Version; + FT_Short Ascender; + FT_Short Descender; + FT_Short Line_Gap; + + FT_UShort advance_Height_Max; /* advance height maximum */ + + FT_Short min_Top_Side_Bearing; /* minimum top-sb */ + FT_Short min_Bottom_Side_Bearing; /* minimum bottom-sb */ + FT_Short yMax_Extent; /* ymax extents */ + FT_Short caret_Slope_Rise; + FT_Short caret_Slope_Run; + FT_Short caret_Offset; + + FT_Short Reserved[4]; + + FT_Short metric_Data_Format; + FT_UShort number_Of_VMetrics; + + /* The following fields are not defined by the OpenType specification */ + /* but they are used to connect the metrics header to the relevant */ + /* 'vmtx' table. */ + + void* long_metrics; + void* short_metrics; + + } TT_VertHeader; + + + /************************************************************************** + * + * @struct: + * TT_OS2 + * + * @description: + * A structure to model a TrueType 'OS/2' table. All fields comply to + * the OpenType specification. + * + * Note that we now support old Mac fonts that do not include an 'OS/2' + * table. In this case, the `version` field is always set to 0xFFFF. + * + * @note: + * For an OpenType variation font, the values of the following fields can + * change after a call to @FT_Set_Var_Design_Coordinates (and friends) if + * the font contains an 'MVAR' table: `sCapHeight`, `sTypoAscender`, + * `sTypoDescender`, `sTypoLineGap`, `sxHeight`, `usWinAscent`, + * `usWinDescent`, `yStrikeoutPosition`, `yStrikeoutSize`, + * `ySubscriptXOffset`, `ySubScriptXSize`, `ySubscriptYOffset`, + * `ySubscriptYSize`, `ySuperscriptXOffset`, `ySuperscriptXSize`, + * `ySuperscriptYOffset`, and `ySuperscriptYSize`. + * + * Possible values for bits in the `ulUnicodeRangeX` fields are given by + * the @TT_UCR_XXX macros. + */ + + typedef struct TT_OS2_ + { + FT_UShort version; /* 0x0001 - more or 0xFFFF */ + FT_Short xAvgCharWidth; + FT_UShort usWeightClass; + FT_UShort usWidthClass; + FT_UShort fsType; + FT_Short ySubscriptXSize; + FT_Short ySubscriptYSize; + FT_Short ySubscriptXOffset; + FT_Short ySubscriptYOffset; + FT_Short ySuperscriptXSize; + FT_Short ySuperscriptYSize; + FT_Short ySuperscriptXOffset; + FT_Short ySuperscriptYOffset; + FT_Short yStrikeoutSize; + FT_Short yStrikeoutPosition; + FT_Short sFamilyClass; + + FT_Byte panose[10]; + + FT_ULong ulUnicodeRange1; /* Bits 0-31 */ + FT_ULong ulUnicodeRange2; /* Bits 32-63 */ + FT_ULong ulUnicodeRange3; /* Bits 64-95 */ + FT_ULong ulUnicodeRange4; /* Bits 96-127 */ + + FT_Char achVendID[4]; + + FT_UShort fsSelection; + FT_UShort usFirstCharIndex; + FT_UShort usLastCharIndex; + FT_Short sTypoAscender; + FT_Short sTypoDescender; + FT_Short sTypoLineGap; + FT_UShort usWinAscent; + FT_UShort usWinDescent; + + /* only version 1 and higher: */ + + FT_ULong ulCodePageRange1; /* Bits 0-31 */ + FT_ULong ulCodePageRange2; /* Bits 32-63 */ + + /* only version 2 and higher: */ + + FT_Short sxHeight; + FT_Short sCapHeight; + FT_UShort usDefaultChar; + FT_UShort usBreakChar; + FT_UShort usMaxContext; + + /* only version 5 and higher: */ + + FT_UShort usLowerOpticalPointSize; /* in twips (1/20th points) */ + FT_UShort usUpperOpticalPointSize; /* in twips (1/20th points) */ + + } TT_OS2; + + + /************************************************************************** + * + * @struct: + * TT_Postscript + * + * @description: + * A structure to model a TrueType 'post' table. All fields comply to + * the OpenType specification. This structure does not reference a + * font's PostScript glyph names; use @FT_Get_Glyph_Name to retrieve + * them. + * + * @note: + * For an OpenType variation font, the values of the following fields can + * change after a call to @FT_Set_Var_Design_Coordinates (and friends) if + * the font contains an 'MVAR' table: `underlinePosition` and + * `underlineThickness`. + */ + typedef struct TT_Postscript_ + { + FT_Fixed FormatType; + FT_Fixed italicAngle; + FT_Short underlinePosition; + FT_Short underlineThickness; + FT_ULong isFixedPitch; + FT_ULong minMemType42; + FT_ULong maxMemType42; + FT_ULong minMemType1; + FT_ULong maxMemType1; + + /* Glyph names follow in the 'post' table, but we don't */ + /* load them by default. */ + + } TT_Postscript; + + + /************************************************************************** + * + * @struct: + * TT_PCLT + * + * @description: + * A structure to model a TrueType 'PCLT' table. All fields comply to + * the OpenType specification. + */ + typedef struct TT_PCLT_ + { + FT_Fixed Version; + FT_ULong FontNumber; + FT_UShort Pitch; + FT_UShort xHeight; + FT_UShort Style; + FT_UShort TypeFamily; + FT_UShort CapHeight; + FT_UShort SymbolSet; + FT_Char TypeFace[16]; + FT_Char CharacterComplement[8]; + FT_Char FileName[6]; + FT_Char StrokeWeight; + FT_Char WidthType; + FT_Byte SerifStyle; + FT_Byte Reserved; + + } TT_PCLT; + + + /************************************************************************** + * + * @struct: + * TT_MaxProfile + * + * @description: + * The maximum profile ('maxp') table contains many max values, which can + * be used to pre-allocate arrays for speeding up glyph loading and + * hinting. + * + * @fields: + * version :: + * The version number. + * + * numGlyphs :: + * The number of glyphs in this TrueType font. + * + * maxPoints :: + * The maximum number of points in a non-composite TrueType glyph. See + * also `maxCompositePoints`. + * + * maxContours :: + * The maximum number of contours in a non-composite TrueType glyph. + * See also `maxCompositeContours`. + * + * maxCompositePoints :: + * The maximum number of points in a composite TrueType glyph. See + * also `maxPoints`. + * + * maxCompositeContours :: + * The maximum number of contours in a composite TrueType glyph. See + * also `maxContours`. + * + * maxZones :: + * The maximum number of zones used for glyph hinting. + * + * maxTwilightPoints :: + * The maximum number of points in the twilight zone used for glyph + * hinting. + * + * maxStorage :: + * The maximum number of elements in the storage area used for glyph + * hinting. + * + * maxFunctionDefs :: + * The maximum number of function definitions in the TrueType bytecode + * for this font. + * + * maxInstructionDefs :: + * The maximum number of instruction definitions in the TrueType + * bytecode for this font. + * + * maxStackElements :: + * The maximum number of stack elements used during bytecode + * interpretation. + * + * maxSizeOfInstructions :: + * The maximum number of TrueType opcodes used for glyph hinting. + * + * maxComponentElements :: + * The maximum number of simple (i.e., non-composite) glyphs in a + * composite glyph. + * + * maxComponentDepth :: + * The maximum nesting depth of composite glyphs. + * + * @note: + * This structure is only used during font loading. + */ + typedef struct TT_MaxProfile_ + { + FT_Fixed version; + FT_UShort numGlyphs; + FT_UShort maxPoints; + FT_UShort maxContours; + FT_UShort maxCompositePoints; + FT_UShort maxCompositeContours; + FT_UShort maxZones; + FT_UShort maxTwilightPoints; + FT_UShort maxStorage; + FT_UShort maxFunctionDefs; + FT_UShort maxInstructionDefs; + FT_UShort maxStackElements; + FT_UShort maxSizeOfInstructions; + FT_UShort maxComponentElements; + FT_UShort maxComponentDepth; + + } TT_MaxProfile; + + + /************************************************************************** + * + * @enum: + * FT_Sfnt_Tag + * + * @description: + * An enumeration to specify indices of SFNT tables loaded and parsed by + * FreeType during initialization of an SFNT font. Used in the + * @FT_Get_Sfnt_Table API function. + * + * @values: + * FT_SFNT_HEAD :: + * To access the font's @TT_Header structure. + * + * FT_SFNT_MAXP :: + * To access the font's @TT_MaxProfile structure. + * + * FT_SFNT_OS2 :: + * To access the font's @TT_OS2 structure. + * + * FT_SFNT_HHEA :: + * To access the font's @TT_HoriHeader structure. + * + * FT_SFNT_VHEA :: + * To access the font's @TT_VertHeader structure. + * + * FT_SFNT_POST :: + * To access the font's @TT_Postscript structure. + * + * FT_SFNT_PCLT :: + * To access the font's @TT_PCLT structure. + */ + typedef enum FT_Sfnt_Tag_ + { + FT_SFNT_HEAD, + FT_SFNT_MAXP, + FT_SFNT_OS2, + FT_SFNT_HHEA, + FT_SFNT_VHEA, + FT_SFNT_POST, + FT_SFNT_PCLT, + + FT_SFNT_MAX + + } FT_Sfnt_Tag; + + /* these constants are deprecated; use the corresponding `FT_Sfnt_Tag` */ + /* values instead */ +#define ft_sfnt_head FT_SFNT_HEAD +#define ft_sfnt_maxp FT_SFNT_MAXP +#define ft_sfnt_os2 FT_SFNT_OS2 +#define ft_sfnt_hhea FT_SFNT_HHEA +#define ft_sfnt_vhea FT_SFNT_VHEA +#define ft_sfnt_post FT_SFNT_POST +#define ft_sfnt_pclt FT_SFNT_PCLT + + + /************************************************************************** + * + * @function: + * FT_Get_Sfnt_Table + * + * @description: + * Return a pointer to a given SFNT table stored within a face. + * + * @input: + * face :: + * A handle to the source. + * + * tag :: + * The index of the SFNT table. + * + * @return: + * A type-less pointer to the table. This will be `NULL` in case of + * error, or if the corresponding table was not found **OR** loaded from + * the file. + * + * Use a typecast according to `tag` to access the structure elements. + * + * @note: + * The table is owned by the face object and disappears with it. + * + * This function is only useful to access SFNT tables that are loaded by + * the sfnt, truetype, and opentype drivers. See @FT_Sfnt_Tag for a + * list. + * + * @example: + * Here is an example demonstrating access to the 'vhea' table. + * + * ``` + * TT_VertHeader* vert_header; + * + * + * vert_header = + * (TT_VertHeader*)FT_Get_Sfnt_Table( face, FT_SFNT_VHEA ); + * ``` + */ + FT_EXPORT( void* ) + FT_Get_Sfnt_Table( FT_Face face, + FT_Sfnt_Tag tag ); + + + /************************************************************************** + * + * @function: + * FT_Load_Sfnt_Table + * + * @description: + * Load any SFNT font table into client memory. + * + * @input: + * face :: + * A handle to the source face. + * + * tag :: + * The four-byte tag of the table to load. Use value~0 if you want to + * access the whole font file. Otherwise, you can use one of the + * definitions found in the @FT_TRUETYPE_TAGS_H file, or forge a new + * one with @FT_MAKE_TAG. + * + * offset :: + * The starting offset in the table (or file if tag~==~0). + * + * @output: + * buffer :: + * The target buffer address. The client must ensure that the memory + * array is big enough to hold the data. + * + * @inout: + * length :: + * If the `length` parameter is `NULL`, try to load the whole table. + * Return an error code if it fails. + * + * Else, if `*length` is~0, exit immediately while returning the + * table's (or file) full size in it. + * + * Else the number of bytes to read from the table or file, from the + * starting offset. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If you need to determine the table's length you should first call this + * function with `*length` set to~0, as in the following example: + * + * ``` + * FT_ULong length = 0; + * + * + * error = FT_Load_Sfnt_Table( face, tag, 0, NULL, &length ); + * if ( error ) { ... table does not exist ... } + * + * buffer = malloc( length ); + * if ( buffer == NULL ) { ... not enough memory ... } + * + * error = FT_Load_Sfnt_Table( face, tag, 0, buffer, &length ); + * if ( error ) { ... could not load table ... } + * ``` + * + * Note that structures like @TT_Header or @TT_OS2 can't be used with + * this function; they are limited to @FT_Get_Sfnt_Table. Reason is that + * those structures depend on the processor architecture, with varying + * size (e.g. 32bit vs. 64bit) or order (big endian vs. little endian). + * + */ + FT_EXPORT( FT_Error ) + FT_Load_Sfnt_Table( FT_Face face, + FT_ULong tag, + FT_Long offset, + FT_Byte* buffer, + FT_ULong* length ); + + + /************************************************************************** + * + * @function: + * FT_Sfnt_Table_Info + * + * @description: + * Return information on an SFNT table. + * + * @input: + * face :: + * A handle to the source face. + * + * table_index :: + * The index of an SFNT table. The function returns + * FT_Err_Table_Missing for an invalid value. + * + * @inout: + * tag :: + * The name tag of the SFNT table. If the value is `NULL`, + * `table_index` is ignored, and `length` returns the number of SFNT + * tables in the font. + * + * @output: + * length :: + * The length of the SFNT table (or the number of SFNT tables, + * depending on `tag`). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * While parsing fonts, FreeType handles SFNT tables with length zero as + * missing. + * + */ + FT_EXPORT( FT_Error ) + FT_Sfnt_Table_Info( FT_Face face, + FT_UInt table_index, + FT_ULong *tag, + FT_ULong *length ); + + + /************************************************************************** + * + * @function: + * FT_Get_CMap_Language_ID + * + * @description: + * Return cmap language ID as specified in the OpenType standard. + * Definitions of language ID values are in file @FT_TRUETYPE_IDS_H. + * + * @input: + * charmap :: + * The target charmap. + * + * @return: + * The language ID of `charmap`. If `charmap` doesn't belong to an SFNT + * face, just return~0 as the default value. + * + * For a format~14 cmap (to access Unicode IVS), the return value is + * 0xFFFFFFFF. + */ + FT_EXPORT( FT_ULong ) + FT_Get_CMap_Language_ID( FT_CharMap charmap ); + + + /************************************************************************** + * + * @function: + * FT_Get_CMap_Format + * + * @description: + * Return the format of an SFNT 'cmap' table. + * + * @input: + * charmap :: + * The target charmap. + * + * @return: + * The format of `charmap`. If `charmap` doesn't belong to an SFNT face, + * return -1. + */ + FT_EXPORT( FT_Long ) + FT_Get_CMap_Format( FT_CharMap charmap ); + + /* */ + + +FT_END_HEADER + +#endif /* TTTABLES_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/tttags.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/tttags.h new file mode 100644 index 0000000..bd0986e --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/freetype/tttags.h @@ -0,0 +1,123 @@ +/**************************************************************************** + * + * tttags.h + * + * Tags for TrueType and OpenType tables (specification only). + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef TTAGS_H_ +#define TTAGS_H_ + + +#include +#include FT_FREETYPE_H + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + +#define TTAG_avar FT_MAKE_TAG( 'a', 'v', 'a', 'r' ) +#define TTAG_BASE FT_MAKE_TAG( 'B', 'A', 'S', 'E' ) +#define TTAG_bdat FT_MAKE_TAG( 'b', 'd', 'a', 't' ) +#define TTAG_BDF FT_MAKE_TAG( 'B', 'D', 'F', ' ' ) +#define TTAG_bhed FT_MAKE_TAG( 'b', 'h', 'e', 'd' ) +#define TTAG_bloc FT_MAKE_TAG( 'b', 'l', 'o', 'c' ) +#define TTAG_bsln FT_MAKE_TAG( 'b', 's', 'l', 'n' ) +#define TTAG_CBDT FT_MAKE_TAG( 'C', 'B', 'D', 'T' ) +#define TTAG_CBLC FT_MAKE_TAG( 'C', 'B', 'L', 'C' ) +#define TTAG_CFF FT_MAKE_TAG( 'C', 'F', 'F', ' ' ) +#define TTAG_CFF2 FT_MAKE_TAG( 'C', 'F', 'F', '2' ) +#define TTAG_CID FT_MAKE_TAG( 'C', 'I', 'D', ' ' ) +#define TTAG_cmap FT_MAKE_TAG( 'c', 'm', 'a', 'p' ) +#define TTAG_COLR FT_MAKE_TAG( 'C', 'O', 'L', 'R' ) +#define TTAG_CPAL FT_MAKE_TAG( 'C', 'P', 'A', 'L' ) +#define TTAG_cvar FT_MAKE_TAG( 'c', 'v', 'a', 'r' ) +#define TTAG_cvt FT_MAKE_TAG( 'c', 'v', 't', ' ' ) +#define TTAG_DSIG FT_MAKE_TAG( 'D', 'S', 'I', 'G' ) +#define TTAG_EBDT FT_MAKE_TAG( 'E', 'B', 'D', 'T' ) +#define TTAG_EBLC FT_MAKE_TAG( 'E', 'B', 'L', 'C' ) +#define TTAG_EBSC FT_MAKE_TAG( 'E', 'B', 'S', 'C' ) +#define TTAG_feat FT_MAKE_TAG( 'f', 'e', 'a', 't' ) +#define TTAG_FOND FT_MAKE_TAG( 'F', 'O', 'N', 'D' ) +#define TTAG_fpgm FT_MAKE_TAG( 'f', 'p', 'g', 'm' ) +#define TTAG_fvar FT_MAKE_TAG( 'f', 'v', 'a', 'r' ) +#define TTAG_gasp FT_MAKE_TAG( 'g', 'a', 's', 'p' ) +#define TTAG_GDEF FT_MAKE_TAG( 'G', 'D', 'E', 'F' ) +#define TTAG_glyf FT_MAKE_TAG( 'g', 'l', 'y', 'f' ) +#define TTAG_GPOS FT_MAKE_TAG( 'G', 'P', 'O', 'S' ) +#define TTAG_GSUB FT_MAKE_TAG( 'G', 'S', 'U', 'B' ) +#define TTAG_gvar FT_MAKE_TAG( 'g', 'v', 'a', 'r' ) +#define TTAG_HVAR FT_MAKE_TAG( 'H', 'V', 'A', 'R' ) +#define TTAG_hdmx FT_MAKE_TAG( 'h', 'd', 'm', 'x' ) +#define TTAG_head FT_MAKE_TAG( 'h', 'e', 'a', 'd' ) +#define TTAG_hhea FT_MAKE_TAG( 'h', 'h', 'e', 'a' ) +#define TTAG_hmtx FT_MAKE_TAG( 'h', 'm', 't', 'x' ) +#define TTAG_JSTF FT_MAKE_TAG( 'J', 'S', 'T', 'F' ) +#define TTAG_just FT_MAKE_TAG( 'j', 'u', 's', 't' ) +#define TTAG_kern FT_MAKE_TAG( 'k', 'e', 'r', 'n' ) +#define TTAG_lcar FT_MAKE_TAG( 'l', 'c', 'a', 'r' ) +#define TTAG_loca FT_MAKE_TAG( 'l', 'o', 'c', 'a' ) +#define TTAG_LTSH FT_MAKE_TAG( 'L', 'T', 'S', 'H' ) +#define TTAG_LWFN FT_MAKE_TAG( 'L', 'W', 'F', 'N' ) +#define TTAG_MATH FT_MAKE_TAG( 'M', 'A', 'T', 'H' ) +#define TTAG_maxp FT_MAKE_TAG( 'm', 'a', 'x', 'p' ) +#define TTAG_META FT_MAKE_TAG( 'M', 'E', 'T', 'A' ) +#define TTAG_MMFX FT_MAKE_TAG( 'M', 'M', 'F', 'X' ) +#define TTAG_MMSD FT_MAKE_TAG( 'M', 'M', 'S', 'D' ) +#define TTAG_mort FT_MAKE_TAG( 'm', 'o', 'r', 't' ) +#define TTAG_morx FT_MAKE_TAG( 'm', 'o', 'r', 'x' ) +#define TTAG_MVAR FT_MAKE_TAG( 'M', 'V', 'A', 'R' ) +#define TTAG_name FT_MAKE_TAG( 'n', 'a', 'm', 'e' ) +#define TTAG_opbd FT_MAKE_TAG( 'o', 'p', 'b', 'd' ) +#define TTAG_OS2 FT_MAKE_TAG( 'O', 'S', '/', '2' ) +#define TTAG_OTTO FT_MAKE_TAG( 'O', 'T', 'T', 'O' ) +#define TTAG_PCLT FT_MAKE_TAG( 'P', 'C', 'L', 'T' ) +#define TTAG_POST FT_MAKE_TAG( 'P', 'O', 'S', 'T' ) +#define TTAG_post FT_MAKE_TAG( 'p', 'o', 's', 't' ) +#define TTAG_prep FT_MAKE_TAG( 'p', 'r', 'e', 'p' ) +#define TTAG_prop FT_MAKE_TAG( 'p', 'r', 'o', 'p' ) +#define TTAG_sbix FT_MAKE_TAG( 's', 'b', 'i', 'x' ) +#define TTAG_sfnt FT_MAKE_TAG( 's', 'f', 'n', 't' ) +#define TTAG_SING FT_MAKE_TAG( 'S', 'I', 'N', 'G' ) +#define TTAG_trak FT_MAKE_TAG( 't', 'r', 'a', 'k' ) +#define TTAG_true FT_MAKE_TAG( 't', 'r', 'u', 'e' ) +#define TTAG_ttc FT_MAKE_TAG( 't', 't', 'c', ' ' ) +#define TTAG_ttcf FT_MAKE_TAG( 't', 't', 'c', 'f' ) +#define TTAG_TYP1 FT_MAKE_TAG( 'T', 'Y', 'P', '1' ) +#define TTAG_typ1 FT_MAKE_TAG( 't', 'y', 'p', '1' ) +#define TTAG_VDMX FT_MAKE_TAG( 'V', 'D', 'M', 'X' ) +#define TTAG_vhea FT_MAKE_TAG( 'v', 'h', 'e', 'a' ) +#define TTAG_vmtx FT_MAKE_TAG( 'v', 'm', 't', 'x' ) +#define TTAG_VVAR FT_MAKE_TAG( 'V', 'V', 'A', 'R' ) +#define TTAG_wOFF FT_MAKE_TAG( 'w', 'O', 'F', 'F' ) + +/* used by "Keyboard.dfont" on legacy Mac OS X */ +#define TTAG_0xA5kbd FT_MAKE_TAG( 0xA5, 'k', 'b', 'd' ) + +/* used by "LastResort.dfont" on legacy Mac OS X */ +#define TTAG_0xA5lst FT_MAKE_TAG( 0xA5, 'l', 's', 't' ) + + +FT_END_HEADER + +#endif /* TTAGS_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/ft2build.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/ft2build.h new file mode 100644 index 0000000..e3f4887 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/freetype/include/ft2build.h @@ -0,0 +1,44 @@ +/**************************************************************************** + * + * ft2build.h + * + * FreeType 2 build and setup macros. + * + * Copyright (C) 1996-2019 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * This is the 'entry point' for FreeType header file inclusions. It is + * the only header file which should be included directly; all other + * FreeType header files should be accessed with macro names (after + * including `ft2build.h`). + * + * A typical example is + * + * ``` + * #include + * #include FT_FREETYPE_H + * ``` + * + */ + + +#ifndef FT2BUILD_H_ +#define FT2BUILD_H_ + +#include + +#endif /* FT2BUILD_H_ */ + + +/* END */ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imconfig.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imconfig.h new file mode 100644 index 0000000..daa8de3 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imconfig.h @@ -0,0 +1,154 @@ +//----------------------------------------------------------------------------- +// DEAR IMGUI COMPILE-TIME OPTIONS +// Runtime options (clipboard callbacks, enabling various features, etc.) can generally be set via the ImGuiIO structure. +// You can use ImGui::SetAllocatorFunctions() before calling ImGui::CreateContext() to rewire memory allocation functions. +//----------------------------------------------------------------------------- +// A) You may edit imconfig.h (and not overwrite it when updating Dear ImGui, or maintain a patch/rebased branch with your modifications to it) +// B) or '#define IMGUI_USER_CONFIG "my_imgui_config.h"' in your project and then add directives in your own file without touching this template. +//----------------------------------------------------------------------------- +// You need to make sure that configuration settings are defined consistently _everywhere_ Dear ImGui is used, which include the imgui*.cpp +// files but also _any_ of your code that uses Dear ImGui. This is because some compile-time options have an affect on data structures. +// Defining those options in imconfig.h will ensure every compilation unit gets to see the same data structure layouts. +// Call IMGUI_CHECKVERSION() from your .cpp file to verify that the data structures your files are using are matching the ones imgui.cpp is using. +//----------------------------------------------------------------------------- + +#pragma once + +//---- Define assertion handler. Defaults to calling assert(). +// If your macro uses multiple statements, make sure is enclosed in a 'do { .. } while (0)' block so it can be used as a single statement. +//#define IM_ASSERT(_EXPR) MyAssert(_EXPR) +//#define IM_ASSERT(_EXPR) ((void)(_EXPR)) // Disable asserts + +//---- Define attributes of all API symbols declarations, e.g. for DLL under Windows +// Using Dear ImGui via a shared library is not recommended, because of function call overhead and because we don't guarantee backward nor forward ABI compatibility. +// DLL users: heaps and globals are not shared across DLL boundaries! You will need to call SetCurrentContext() + SetAllocatorFunctions() +// for each static/DLL boundary you are calling from. Read "Context and Memory Allocators" section of imgui.cpp for more details. +//#define IMGUI_API __declspec( dllexport ) +//#define IMGUI_API __declspec( dllimport ) + +//---- Don't define obsolete functions/enums/behaviors. Consider enabling from time to time after updating to clean your code of obsolete function/names. +#define IMGUI_DISABLE_OBSOLETE_FUNCTIONS +//#define IMGUI_DISABLE_OBSOLETE_KEYIO // 1.87: disable legacy io.KeyMap[]+io.KeysDown[] in favor io.AddKeyEvent(). This will be folded into IMGUI_DISABLE_OBSOLETE_FUNCTIONS in a few versions. + +//---- Disable all of Dear ImGui or don't implement standard windows/tools. +// It is very strongly recommended to NOT disable the demo windows and debug tool during development. They are extremely useful in day to day work. Please read comments in imgui_demo.cpp. +//#define IMGUI_DISABLE // Disable everything: all headers and source files will be empty. +#define IMGUI_DISABLE_DEMO_WINDOWS // Disable demo windows: ShowDemoWindow()/ShowStyleEditor() will be empty. +#define IMGUI_DISABLE_DEBUG_TOOLS // Disable metrics/debugger and other debug tools: ShowMetricsWindow(), ShowDebugLogWindow() and ShowStackToolWindow() will be empty (this was called IMGUI_DISABLE_METRICS_WINDOW before 1.88). + +//---- Don't implement some functions to reduce linkage requirements. +//#define IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS // [Win32] Don't implement default clipboard handler. Won't use and link with OpenClipboard/GetClipboardData/CloseClipboard etc. (user32.lib/.a, kernel32.lib/.a) +//#define IMGUI_ENABLE_WIN32_DEFAULT_IME_FUNCTIONS // [Win32] [Default with Visual Studio] Implement default IME handler (require imm32.lib/.a, auto-link for Visual Studio, -limm32 on command-line for MinGW) +//#define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS // [Win32] [Default with non-Visual Studio compilers] Don't implement default IME handler (won't require imm32.lib/.a) +//#define IMGUI_DISABLE_WIN32_FUNCTIONS // [Win32] Won't use and link with any Win32 function (clipboard, IME). +//#define IMGUI_ENABLE_OSX_DEFAULT_CLIPBOARD_FUNCTIONS // [OSX] Implement default OSX clipboard handler (need to link with '-framework ApplicationServices', this is why this is not the default). +//#define IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS // Don't implement ImFormatString/ImFormatStringV so you can implement them yourself (e.g. if you don't want to link with vsnprintf) +//#define IMGUI_DISABLE_DEFAULT_MATH_FUNCTIONS // Don't implement ImFabs/ImSqrt/ImPow/ImFmod/ImCos/ImSin/ImAcos/ImAtan2 so you can implement them yourself. +//#define IMGUI_DISABLE_FILE_FUNCTIONS // Don't implement ImFileOpen/ImFileClose/ImFileRead/ImFileWrite and ImFileHandle at all (replace them with dummies) +//#define IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS // Don't implement ImFileOpen/ImFileClose/ImFileRead/ImFileWrite and ImFileHandle so you can implement them yourself if you don't want to link with fopen/fclose/fread/fwrite. This will also disable the LogToTTY() function. +#define IMGUI_DISABLE_DEFAULT_ALLOCATORS // Don't implement default allocators calling malloc()/free() to avoid linking with them. You will need to call ImGui::SetAllocatorFunctions(). +//#define IMGUI_DISABLE_SSE // Disable use of SSE intrinsics even if available + +//---- Include imgui_user.h at the end of imgui.h as a convenience +//#define IMGUI_INCLUDE_IMGUI_USER_H + +//---- Pack colors to BGRA8 instead of RGBA8 (to avoid converting from one to another) +//#define IMGUI_USE_BGRA_PACKED_COLOR + +//---- Use 32-bit for ImWchar (default is 16-bit) to support unicode planes 1-16. (e.g. point beyond 0xFFFF like emoticons, dingbats, symbols, shapes, ancient languages, etc...) +//#define IMGUI_USE_WCHAR32 + +//---- Avoid multiple STB libraries implementations, or redefine path/filenames to prioritize another version +// By default the embedded implementations are declared static and not available outside of Dear ImGui sources files. +//#define IMGUI_STB_TRUETYPE_FILENAME "my_folder/stb_truetype.h" +//#define IMGUI_STB_RECT_PACK_FILENAME "my_folder/stb_rect_pack.h" +#define IMGUI_STB_SPRINTF_FILENAME "../stb_sprintf.h" // only used if IMGUI_USE_STB_SPRINTF is defined. +//#define IMGUI_DISABLE_STB_TRUETYPE_IMPLEMENTATION +//#define IMGUI_DISABLE_STB_RECT_PACK_IMPLEMENTATION +//#define IMGUI_DISABLE_STB_SPRINTF_IMPLEMENTATION // only disabled if IMGUI_USE_STB_SPRINTF is defined. + +//---- Use stb_sprintf.h for a faster implementation of vsnprintf instead of the one from libc (unless IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS is defined) +// Compatibility checks of arguments and formats done by clang and GCC will be disabled in order to support the extra formats provided by stb_sprintf.h. +#define IMGUI_USE_STB_SPRINTF + +//---- Use FreeType to build and rasterize the font atlas (instead of stb_truetype which is embedded by default in Dear ImGui) +// Requires FreeType headers to be available in the include path. Requires program to be compiled with 'misc/freetype/imgui_freetype.cpp' (in this repository) + the FreeType library (not provided). +// On Windows you may use vcpkg with 'vcpkg install freetype --triplet=x64-windows' + 'vcpkg integrate install'. +#define IMGUI_ENABLE_FREETYPE + +//---- Use FreeType+lunasvg library to render OpenType SVG fonts (SVGinOT) +// Requires lunasvg headers to be available in the include path + program to be linked with the lunasvg library (not provided). +// Only works in combination with IMGUI_ENABLE_FREETYPE. +// (implementation is based on Freetype's rsvg-port.c which is licensed under CeCILL-C Free Software License Agreement) +//#define IMGUI_ENABLE_FREETYPE_LUNASVG + +//---- Use stb_truetype to build and rasterize the font atlas (default) +// The only purpose of this define is if you want force compilation of the stb_truetype backend ALONG with the FreeType backend. +//#define IMGUI_ENABLE_STB_TRUETYPE + +//---- Define constructor and implicit cast operators to convert back<>forth between your math types and ImVec2/ImVec4. +// This will be inlined as part of ImVec2 and ImVec4 class declarations. +/* +#define IM_VEC2_CLASS_EXTRA \ + constexpr ImVec2(const MyVec2& f) : x(f.x), y(f.y) {} \ + operator MyVec2() const { return MyVec2(x,y); } + +#define IM_VEC4_CLASS_EXTRA \ + constexpr ImVec4(const MyVec4& f) : x(f.x), y(f.y), z(f.z), w(f.w) {} \ + operator MyVec4() const { return MyVec4(x,y,z,w); } +*/ +//---- ...Or use Dear ImGui's own very basic math operators. +#define IM_VEC2_CLASS_EXTRA \ + ImVec2& operator+(const float flAdd) \ + { \ + x += flAdd; \ + y += flAdd; \ + return *this; \ + } \ + ImVec2& operator-(const float flSub) \ + { \ + x -= flSub; \ + y -= flSub; \ + return *this; \ + } + +#define IM_VEC4_CLASS_EXTRA \ + float operator[](size_t idx) const \ + { \ + IM_ASSERT(idx <= 3); \ + return (&x)[idx]; \ + } \ + float& operator[](size_t idx) \ + { \ + IM_ASSERT(idx <= 3); \ + return (&x)[idx]; \ + } +#define IMGUI_DEFINE_MATH_OPERATORS + +//---- Use 32-bit vertex indices (default is 16-bit) is one way to allow large meshes with more than 64K vertices. +// Your renderer backend will need to support it (most example renderer backends support both 16/32-bit indices). +// Another way to allow large meshes while keeping 16-bit indices is to handle ImDrawCmd::VtxOffset in your renderer. +// Read about ImGuiBackendFlags_RendererHasVtxOffset for details. +//#define ImDrawIdx unsigned int + +//---- Override ImDrawCallback signature (will need to modify renderer backends accordingly) +//struct ImDrawList; +//struct ImDrawCmd; +//typedef void (*MyImDrawCallback)(const ImDrawList* draw_list, const ImDrawCmd* cmd, void* my_renderer_user_data); +//#define ImDrawCallback MyImDrawCallback + +//---- Debug Tools: Macro to break in Debugger (we provide a default implementation of this in the codebase) +// (use 'Metrics->Tools->Item Picker' to pick widgets with the mouse and break into them for easy debugging.) +//#define IM_DEBUG_BREAK IM_ASSERT(0) +//#define IM_DEBUG_BREAK __debugbreak() + +//---- Debug Tools: Enable slower asserts +//#define IMGUI_DEBUG_PARANOID + +//---- Tip: You can add extra functions within the ImGui:: namespace from anywhere (e.g. your own sources/header files) +/* +namespace ImGui +{ + void MyFunction(const char* name, MyMatrix44* mtx); +} +*/ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui.cpp b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui.cpp new file mode 100644 index 0000000..256866e --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui.cpp @@ -0,0 +1,15066 @@ +// dear imgui, v1.89.9 +// (main code and documentation) + +// Help: +// - Read FAQ at http://dearimgui.com/faq +// - Newcomers, read 'Programmer guide' below for notes on how to setup Dear ImGui in your codebase. +// - Call and read ImGui::ShowDemoWindow() in imgui_demo.cpp. All applications in examples/ are doing that. +// Read imgui.cpp for details, links and comments. + +// Resources: +// - FAQ http://dearimgui.com/faq +// - Homepage https://github.com/ocornut/imgui +// - Releases & changelog https://github.com/ocornut/imgui/releases +// - Gallery https://github.com/ocornut/imgui/issues/6478 (please post your screenshots/video there!) +// - Wiki https://github.com/ocornut/imgui/wiki (lots of good stuff there) +// - Getting Started https://github.com/ocornut/imgui/wiki/Getting-Started +// - Glossary https://github.com/ocornut/imgui/wiki/Glossary +// - Issues & support https://github.com/ocornut/imgui/issues +// - Tests & Automation https://github.com/ocornut/imgui_test_engine + +// Getting Started? +// - Read https://github.com/ocornut/imgui/wiki/Getting-Started +// - For first-time users having issues compiling/linking/running/loading fonts: +// please post in https://github.com/ocornut/imgui/discussions if you cannot find a solution in resources above. + +// Developed by Omar Cornut and every direct or indirect contributors to the GitHub. +// See LICENSE.txt for copyright and licensing details (standard MIT License). +// This library is free but needs your support to sustain development and maintenance. +// Businesses: you can support continued development via B2B invoiced technical support, maintenance and sponsoring contracts. +// PLEASE reach out at contact AT dearimgui DOT com. See https://github.com/ocornut/imgui/wiki/Sponsors +// Businesses: you can also purchase licenses for the Dear ImGui Automation/Test Engine. + +// It is recommended that you don't modify imgui.cpp! It will become difficult for you to update the library. +// Note that 'ImGui::' being a namespace, you can add functions into the namespace from your own source files, without +// modifying imgui.h or imgui.cpp. You may include imgui_internal.h to access internal data structures, but it doesn't +// come with any guarantee of forward compatibility. Discussing your changes on the GitHub Issue Tracker may lead you +// to a better solution or official support for them. + +/* + +Index of this file: + +DOCUMENTATION + +- MISSION STATEMENT +- CONTROLS GUIDE +- PROGRAMMER GUIDE + - READ FIRST + - HOW TO UPDATE TO A NEWER VERSION OF DEAR IMGUI + - GETTING STARTED WITH INTEGRATING DEAR IMGUI IN YOUR CODE/ENGINE + - HOW A SIMPLE APPLICATION MAY LOOK LIKE + - HOW A SIMPLE RENDERING FUNCTION MAY LOOK LIKE +- API BREAKING CHANGES (read me when you update!) +- FREQUENTLY ASKED QUESTIONS (FAQ) + - Read all answers online: https://www.dearimgui.com/faq, or in docs/FAQ.md (with a Markdown viewer) + +CODE +(search for "[SECTION]" in the code to find them) + +// [SECTION] INCLUDES +// [SECTION] FORWARD DECLARATIONS +// [SECTION] CONTEXT AND MEMORY ALLOCATORS +// [SECTION] USER FACING STRUCTURES (ImGuiStyle, ImGuiIO) +// [SECTION] MISC HELPERS/UTILITIES (Geometry functions) +// [SECTION] MISC HELPERS/UTILITIES (String, Format, Hash functions) +// [SECTION] MISC HELPERS/UTILITIES (File functions) +// [SECTION] MISC HELPERS/UTILITIES (ImText* functions) +// [SECTION] MISC HELPERS/UTILITIES (Color functions) +// [SECTION] ImGuiStorage +// [SECTION] ImGuiTextFilter +// [SECTION] ImGuiTextBuffer, ImGuiTextIndex +// [SECTION] ImGuiListClipper +// [SECTION] STYLING +// [SECTION] RENDER HELPERS +// [SECTION] INITIALIZATION, SHUTDOWN +// [SECTION] MAIN CODE (most of the code! lots of stuff, needs tidying up!) +// [SECTION] INPUTS +// [SECTION] ERROR CHECKING +// [SECTION] LAYOUT +// [SECTION] SCROLLING +// [SECTION] TOOLTIPS +// [SECTION] POPUPS +// [SECTION] KEYBOARD/GAMEPAD NAVIGATION +// [SECTION] DRAG AND DROP +// [SECTION] LOGGING/CAPTURING +// [SECTION] SETTINGS +// [SECTION] LOCALIZATION +// [SECTION] VIEWPORTS, PLATFORM WINDOWS +// [SECTION] PLATFORM DEPENDENT HELPERS +// [SECTION] METRICS/DEBUGGER WINDOW +// [SECTION] DEBUG LOG WINDOW +// [SECTION] OTHER DEBUG TOOLS (ITEM PICKER, STACK TOOL) + +*/ + +//----------------------------------------------------------------------------- +// DOCUMENTATION +//----------------------------------------------------------------------------- + +/* + + MISSION STATEMENT + ================= + + - Easy to use to create code-driven and data-driven tools. + - Easy to use to create ad hoc short-lived tools and long-lived, more elaborate tools. + - Easy to hack and improve. + - Minimize setup and maintenance. + - Minimize state storage on user side. + - Minimize state synchronization. + - Portable, minimize dependencies, run on target (consoles, phones, etc.). + - Efficient runtime and memory consumption. + + Designed primarily for developers and content-creators, not the typical end-user! + Some of the current weaknesses (which we aim to address in the future) includes: + + - Doesn't look fancy. + - Limited layout features, intricate layouts are typically crafted in code. + + + CONTROLS GUIDE + ============== + + - MOUSE CONTROLS + - Mouse wheel: Scroll vertically. + - SHIFT+Mouse wheel: Scroll horizontally. + - Click [X]: Close a window, available when 'bool* p_open' is passed to ImGui::Begin(). + - Click ^, Double-Click title: Collapse window. + - Drag on corner/border: Resize window (double-click to auto fit window to its contents). + - Drag on any empty space: Move window (unless io.ConfigWindowsMoveFromTitleBarOnly = true). + - Left-click outside popup: Close popup stack (right-click over underlying popup: Partially close popup stack). + + - TEXT EDITOR + - Hold SHIFT or Drag Mouse: Select text. + - CTRL+Left/Right: Word jump. + - CTRL+Shift+Left/Right: Select words. + - CTRL+A or Double-Click: Select All. + - CTRL+X, CTRL+C, CTRL+V: Use OS clipboard. + - CTRL+Z, CTRL+Y: Undo, Redo. + - ESCAPE: Revert text to its original value. + - On OSX, controls are automatically adjusted to match standard OSX text editing shortcuts and behaviors. + + - KEYBOARD CONTROLS + - Basic: + - Tab, SHIFT+Tab Cycle through text editable fields. + - CTRL+Tab, CTRL+Shift+Tab Cycle through windows. + - CTRL+Click Input text into a Slider or Drag widget. + - Extended features with `io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard`: + - Tab, SHIFT+Tab: Cycle through every items. + - Arrow keys Move through items using directional navigation. Tweak value. + - Arrow keys + Alt, Shift Tweak slower, tweak faster (when using arrow keys). + - Enter Activate item (prefer text input when possible). + - Space Activate item (prefer tweaking with arrows when possible). + - Escape Deactivate item, leave child window, close popup. + - Page Up, Page Down Previous page, next page. + - Home, End Scroll to top, scroll to bottom. + - Alt Toggle between scrolling layer and menu layer. + - CTRL+Tab then Ctrl+Arrows Move window. Hold SHIFT to resize instead of moving. + - Output when ImGuiConfigFlags_NavEnableKeyboard set, + - io.WantCaptureKeyboard flag is set when keyboard is claimed. + - io.NavActive: true when a window is focused and it doesn't have the ImGuiWindowFlags_NoNavInputs flag set. + - io.NavVisible: true when the navigation cursor is visible (usually goes to back false when mouse is used). + + - GAMEPAD CONTROLS + - Enable with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'. + - Particularly useful to use Dear ImGui on a console system (e.g. PlayStation, Switch, Xbox) without a mouse! + - Download controller mapping PNG/PSD at http://dearimgui.com/controls_sheets + - Backend support: backend needs to: + - Set 'io.BackendFlags |= ImGuiBackendFlags_HasGamepad' + call io.AddKeyEvent/AddKeyAnalogEvent() with ImGuiKey_Gamepad_XXX keys. + - For analog values (0.0f to 1.0f), backend is responsible to handling a dead-zone and rescaling inputs accordingly. + Backend code will probably need to transform your raw inputs (such as e.g. remapping your 0.2..0.9 raw input range to 0.0..1.0 imgui range, etc.). + - BEFORE 1.87, BACKENDS USED TO WRITE TO io.NavInputs[]. This is now obsolete. Please call io functions instead! + - If you need to share inputs between your game and the Dear ImGui interface, the easiest approach is to go all-or-nothing, + with a buttons combo to toggle the target. Please reach out if you think the game vs navigation input sharing could be improved. + + - REMOTE INPUTS SHARING & MOUSE EMULATION + - PS4/PS5 users: Consider emulating a mouse cursor with DualShock touch pad or a spare analog stick as a mouse-emulation fallback. + - Consoles/Tablet/Phone users: Consider using a Synergy 1.x server (on your PC) + run examples/libs/synergy/uSynergy.c (on your console/tablet/phone app) + in order to share your PC mouse/keyboard. + - See https://github.com/ocornut/imgui/wiki/Useful-Extensions#remoting for other remoting solutions. + - On a TV/console system where readability may be lower or mouse inputs may be awkward, you may want to set the ImGuiConfigFlags_NavEnableSetMousePos flag. + Enabling ImGuiConfigFlags_NavEnableSetMousePos + ImGuiBackendFlags_HasSetMousePos instructs Dear ImGui to move your mouse cursor along with navigation movements. + When enabled, the NewFrame() function may alter 'io.MousePos' and set 'io.WantSetMousePos' to notify you that it wants the mouse cursor to be moved. + When that happens your backend NEEDS to move the OS or underlying mouse cursor on the next frame. Some of the backends in examples/ do that. + (If you set the NavEnableSetMousePos flag but don't honor 'io.WantSetMousePos' properly, Dear ImGui will misbehave as it will see your mouse moving back & forth!) + (In a setup when you may not have easy control over the mouse cursor, e.g. uSynergy.c doesn't expose moving remote mouse cursor, you may want + to set a boolean to ignore your other external mouse positions until the external source is moved again.) + + + PROGRAMMER GUIDE + ================ + + READ FIRST + ---------- + - Remember to check the wonderful Wiki (https://github.com/ocornut/imgui/wiki) + - Your code creates the UI every frame of your application loop, if your code doesn't run the UI is gone! + The UI can be highly dynamic, there are no construction or destruction steps, less superfluous + data retention on your side, less state duplication, less state synchronization, fewer bugs. + - Call and read ImGui::ShowDemoWindow() for demo code demonstrating most features. + Or browse https://pthom.github.io/imgui_manual_online/manual/imgui_manual.html for interactive web version. + - The library is designed to be built from sources. Avoid pre-compiled binaries and packaged versions. See imconfig.h to configure your build. + - Dear ImGui is an implementation of the IMGUI paradigm (immediate-mode graphical user interface, a term coined by Casey Muratori). + You can learn about IMGUI principles at http://www.johno.se/book/imgui.html, http://mollyrocket.com/861 & more links in Wiki. + - Dear ImGui is a "single pass" rasterizing implementation of the IMGUI paradigm, aimed at ease of use and high-performances. + For every application frame, your UI code will be called only once. This is in contrast to e.g. Unity's implementation of an IMGUI, + where the UI code is called multiple times ("multiple passes") from a single entry point. There are pros and cons to both approaches. + - Our origin is on the top-left. In axis aligned bounding boxes, Min = top-left, Max = bottom-right. + - Please make sure you have asserts enabled (IM_ASSERT redirects to assert() by default, but can be redirected). + If you get an assert, read the messages and comments around the assert. + - This codebase aims to be highly optimized: + - A typical idle frame should never call malloc/free. + - We rely on a maximum of constant-time or O(N) algorithms. Limiting searches/scans as much as possible. + - We put particular energy in making sure performances are decent with typical "Debug" build settings as well. + Which mean we tend to avoid over-relying on "zero-cost abstraction" as they aren't zero-cost at all. + - This codebase aims to be both highly opinionated and highly flexible: + - This code works because of the things it choose to solve or not solve. + - C++: this is a pragmatic C-ish codebase: we don't use fancy C++ features, we don't include C++ headers, + and ImGui:: is a namespace. We rarely use member functions (and when we did, I am mostly regretting it now). + This is to increase compatibility, increase maintainability and facilitate use from other languages. + - C++: ImVec2/ImVec4 do not expose math operators by default, because it is expected that you use your own math types. + See FAQ "How can I use my own math types instead of ImVec2/ImVec4?" for details about setting up imconfig.h for that. + We can can optionally export math operators for ImVec2/ImVec4 using IMGUI_DEFINE_MATH_OPERATORS, which we use internally. + - C++: pay attention that ImVector<> manipulates plain-old-data and does not honor construction/destruction + (so don't use ImVector in your code or at our own risk!). + - Building: We don't use nor mandate a build system for the main library. + This is in an effort to ensure that it works in the real world aka with any esoteric build setup. + This is also because providing a build system for the main library would be of little-value. + The build problems are almost never coming from the main library but from specific backends. + + + HOW TO UPDATE TO A NEWER VERSION OF DEAR IMGUI + ---------------------------------------------- + - Update submodule or copy/overwrite every file. + - About imconfig.h: + - You may modify your copy of imconfig.h, in this case don't overwrite it. + - or you may locally branch to modify imconfig.h and merge/rebase latest. + - or you may '#define IMGUI_USER_CONFIG "my_config_file.h"' globally from your build system to + specify a custom path for your imconfig.h file and instead not have to modify the default one. + + - Overwrite all the sources files except for imconfig.h (if you have modified your copy of imconfig.h) + - Or maintain your own branch where you have imconfig.h modified as a top-most commit which you can regularly rebase over "master". + - You can also use '#define IMGUI_USER_CONFIG "my_config_file.h" to redirect configuration to your own file. + - Read the "API BREAKING CHANGES" section (below). This is where we list occasional API breaking changes. + If a function/type has been renamed / or marked obsolete, try to fix the name in your code before it is permanently removed + from the public API. If you have a problem with a missing function/symbols, search for its name in the code, there will + likely be a comment about it. Please report any issue to the GitHub page! + - To find out usage of old API, you can add '#define IMGUI_DISABLE_OBSOLETE_FUNCTIONS' in your configuration file. + - Try to keep your copy of Dear ImGui reasonably up to date! + + + GETTING STARTED WITH INTEGRATING DEAR IMGUI IN YOUR CODE/ENGINE + --------------------------------------------------------------- + - See https://github.com/ocornut/imgui/wiki/Getting-Started. + - Run and study the examples and demo in imgui_demo.cpp to get acquainted with the library. + - In the majority of cases you should be able to use unmodified backends files available in the backends/ folder. + - Add the Dear ImGui source files + selected backend source files to your projects or using your preferred build system. + It is recommended you build and statically link the .cpp files as part of your project and NOT as a shared library (DLL). + - You can later customize the imconfig.h file to tweak some compile-time behavior, such as integrating Dear ImGui types with your own maths types. + - When using Dear ImGui, your programming IDE is your friend: follow the declaration of variables, functions and types to find comments about them. + - Dear ImGui never touches or knows about your GPU state. The only function that knows about GPU is the draw function that you provide. + Effectively it means you can create widgets at any time in your code, regardless of considerations of being in "update" vs "render" + phases of your own application. All rendering information is stored into command-lists that you will retrieve after calling ImGui::Render(). + - Refer to the backends and demo applications in the examples/ folder for instruction on how to setup your code. + - If you are running over a standard OS with a common graphics API, you should be able to use unmodified imgui_impl_*** files from the examples/ folder. + + + HOW A SIMPLE APPLICATION MAY LOOK LIKE + -------------------------------------- + EXHIBIT 1: USING THE EXAMPLE BACKENDS (= imgui_impl_XXX.cpp files from the backends/ folder). + The sub-folders in examples/ contain examples applications following this structure. + + // Application init: create a dear imgui context, setup some options, load fonts + ImGui::CreateContext(); + ImGuiIO& io = ImGui::GetIO(); + // TODO: Set optional io.ConfigFlags values, e.g. 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard' to enable keyboard controls. + // TODO: Fill optional fields of the io structure later. + // TODO: Load TTF/OTF fonts if you don't want to use the default font. + + // Initialize helper Platform and Renderer backends (here we are using imgui_impl_win32.cpp and imgui_impl_dx11.cpp) + ImGui_ImplWin32_Init(hwnd); + ImGui_ImplDX11_Init(g_pd3dDevice, g_pd3dDeviceContext); + + // Application main loop + while (true) + { + // Feed inputs to dear imgui, start new frame + ImGui_ImplDX11_NewFrame(); + ImGui_ImplWin32_NewFrame(); + ImGui::NewFrame(); + + // Any application code here + ImGui::Text("Hello, world!"); + + // Render dear imgui into screen + ImGui::Render(); + ImGui_ImplDX11_RenderDrawData(ImGui::GetDrawData()); + g_pSwapChain->Present(1, 0); + } + + // Shutdown + ImGui_ImplDX11_Shutdown(); + ImGui_ImplWin32_Shutdown(); + ImGui::DestroyContext(); + + EXHIBIT 2: IMPLEMENTING CUSTOM BACKEND / CUSTOM ENGINE + + // Application init: create a dear imgui context, setup some options, load fonts + ImGui::CreateContext(); + ImGuiIO& io = ImGui::GetIO(); + // TODO: Set optional io.ConfigFlags values, e.g. 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard' to enable keyboard controls. + // TODO: Fill optional fields of the io structure later. + // TODO: Load TTF/OTF fonts if you don't want to use the default font. + + // Build and load the texture atlas into a texture + // (In the examples/ app this is usually done within the ImGui_ImplXXX_Init() function from one of the demo Renderer) + int width, height; + unsigned char* pixels = nullptr; + io.Fonts->GetTexDataAsRGBA32(&pixels, &width, &height); + + // At this point you've got the texture data and you need to upload that to your graphic system: + // After we have created the texture, store its pointer/identifier (_in whichever format your engine uses_) in 'io.Fonts->TexID'. + // This will be passed back to your via the renderer. Basically ImTextureID == void*. Read FAQ for details about ImTextureID. + MyTexture* texture = MyEngine::CreateTextureFromMemoryPixels(pixels, width, height, TEXTURE_TYPE_RGBA32) + io.Fonts->SetTexID((void*)texture); + + // Application main loop + while (true) + { + // Setup low-level inputs, e.g. on Win32: calling GetKeyboardState(), or write to those fields from your Windows message handlers, etc. + // (In the examples/ app this is usually done within the ImGui_ImplXXX_NewFrame() function from one of the demo Platform Backends) + io.DeltaTime = 1.0f/60.0f; // set the time elapsed since the previous frame (in seconds) + io.DisplaySize.x = 1920.0f; // set the current display width + io.DisplaySize.y = 1280.0f; // set the current display height here + io.AddMousePosEvent(mouse_x, mouse_y); // update mouse position + io.AddMouseButtonEvent(0, mouse_b[0]); // update mouse button states + io.AddMouseButtonEvent(1, mouse_b[1]); // update mouse button states + + // Call NewFrame(), after this point you can use ImGui::* functions anytime + // (So you want to try calling NewFrame() as early as you can in your main loop to be able to use Dear ImGui everywhere) + ImGui::NewFrame(); + + // Most of your application code here + ImGui::Text("Hello, world!"); + MyGameUpdate(); // may use any Dear ImGui functions, e.g. ImGui::Begin("My window"); ImGui::Text("Hello, world!"); ImGui::End(); + MyGameRender(); // may use any Dear ImGui functions as well! + + // Render dear imgui, swap buffers + // (You want to try calling EndFrame/Render as late as you can, to be able to use Dear ImGui in your own game rendering code) + ImGui::EndFrame(); + ImGui::Render(); + ImDrawData* draw_data = ImGui::GetDrawData(); + MyImGuiRenderFunction(draw_data); + SwapBuffers(); + } + + // Shutdown + ImGui::DestroyContext(); + + To decide whether to dispatch mouse/keyboard inputs to Dear ImGui to the rest of your application, + you should read the 'io.WantCaptureMouse', 'io.WantCaptureKeyboard' and 'io.WantTextInput' flags! + Please read the FAQ and example applications for details about this! + + + HOW A SIMPLE RENDERING FUNCTION MAY LOOK LIKE + --------------------------------------------- + The backends in impl_impl_XXX.cpp files contain many working implementations of a rendering function. + + void MyImGuiRenderFunction(ImDrawData* draw_data) + { + // TODO: Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled + // TODO: Setup texture sampling state: sample with bilinear filtering (NOT point/nearest filtering). Use 'io.Fonts->Flags |= ImFontAtlasFlags_NoBakedLines;' to allow point/nearest filtering. + // TODO: Setup viewport covering draw_data->DisplayPos to draw_data->DisplayPos + draw_data->DisplaySize + // TODO: Setup orthographic projection matrix cover draw_data->DisplayPos to draw_data->DisplayPos + draw_data->DisplaySize + // TODO: Setup shader: vertex { float2 pos, float2 uv, u32 color }, fragment shader sample color from 1 texture, multiply by vertex color. + ImVec2 clip_off = draw_data->DisplayPos; + for (int n = 0; n < draw_data->CmdListsCount; n++) + { + const ImDrawList* cmd_list = draw_data->CmdLists[n]; + const ImDrawVert* vtx_buffer = cmd_list->VtxBuffer.Data; // vertex buffer generated by Dear ImGui + const ImDrawIdx* idx_buffer = cmd_list->IdxBuffer.Data; // index buffer generated by Dear ImGui + for (int cmd_i = 0; cmd_i < cmd_list->CmdBuffer.Size; cmd_i++) + { + const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; + if (pcmd->UserCallback) + { + pcmd->UserCallback(cmd_list, pcmd); + } + else + { + // Project scissor/clipping rectangles into framebuffer space + ImVec2 clip_min(pcmd->ClipRect.x - clip_off.x, pcmd->ClipRect.y - clip_off.y); + ImVec2 clip_max(pcmd->ClipRect.z - clip_off.x, pcmd->ClipRect.w - clip_off.y); + if (clip_max.x <= clip_min.x || clip_max.y <= clip_min.y) + continue; + + // We are using scissoring to clip some objects. All low-level graphics API should support it. + // - If your engine doesn't support scissoring yet, you may ignore this at first. You will get some small glitches + // (some elements visible outside their bounds) but you can fix that once everything else works! + // - Clipping coordinates are provided in imgui coordinates space: + // - For a given viewport, draw_data->DisplayPos == viewport->Pos and draw_data->DisplaySize == viewport->Size + // - In a single viewport application, draw_data->DisplayPos == (0,0) and draw_data->DisplaySize == io.DisplaySize, but always use GetMainViewport()->Pos/Size instead of hardcoding those values. + // - In the interest of supporting multi-viewport applications (see 'docking' branch on github), + // always subtract draw_data->DisplayPos from clipping bounds to convert them to your viewport space. + // - Note that pcmd->ClipRect contains Min+Max bounds. Some graphics API may use Min+Max, other may use Min+Size (size being Max-Min) + MyEngineSetScissor(clip_min.x, clip_min.y, clip_max.x, clip_max.y); + + // The texture for the draw call is specified by pcmd->GetTexID(). + // The vast majority of draw calls will use the Dear ImGui texture atlas, which value you have set yourself during initialization. + MyEngineBindTexture((MyTexture*)pcmd->GetTexID()); + + // Render 'pcmd->ElemCount/3' indexed triangles. + // By default the indices ImDrawIdx are 16-bit, you can change them to 32-bit in imconfig.h if your engine doesn't support 16-bit indices. + MyEngineDrawIndexedTriangles(pcmd->ElemCount, sizeof(ImDrawIdx) == 2 ? GL_UNSIGNED_SHORT : GL_UNSIGNED_INT, idx_buffer + pcmd->IdxOffset, vtx_buffer, pcmd->VtxOffset); + } + } + } + } + + + API BREAKING CHANGES + ==================== + + Occasionally introducing changes that are breaking the API. We try to make the breakage minor and easy to fix. + Below is a change-log of API breaking changes only. If you are using one of the functions listed, expect to have to fix some code. + When you are not sure about an old symbol or function name, try using the Search/Find function of your IDE to look for comments or references in all imgui files. + You can read releases logs https://github.com/ocornut/imgui/releases for more details. + + - 2023/08/25 (1.89.9) - Clipper: Renamed IncludeRangeByIndices() (also called ForceDisplayRangeByIndices() before 1.89.6) to IncludeItemsByIndex(). Kept inline redirection function. Sorry! + - 2023/07/12 (1.89.8) - ImDrawData: CmdLists now owned, changed from ImDrawList** to ImVector. Majority of users shouldn't be affected, but you cannot compare to NULL nor reassign manually anymore. Instead use AddDrawList(). (#6406, #4879, #1878) + - 2023/06/28 (1.89.7) - overlapping items: obsoleted 'SetItemAllowOverlap()' (called after item) in favor of calling 'SetNextItemAllowOverlap()' (called before item). 'SetItemAllowOverlap()' didn't and couldn't work reliably since 1.89 (2022-11-15). + - 2023/06/28 (1.89.7) - overlapping items: renamed 'ImGuiTreeNodeFlags_AllowItemOverlap' to 'ImGuiTreeNodeFlags_AllowOverlap', 'ImGuiSelectableFlags_AllowItemOverlap' to 'ImGuiSelectableFlags_AllowOverlap'. Kept redirecting enums (will obsolete). + - 2023/06/28 (1.89.7) - overlapping items: IsItemHovered() now by default return false when querying an item using AllowOverlap mode which is being overlapped. Use ImGuiHoveredFlags_AllowWhenOverlappedByItem to revert to old behavior. + - 2023/06/28 (1.89.7) - overlapping items: Selectable and TreeNode don't allow overlap when active so overlapping widgets won't appear as hovered. While this fixes a common small visual issue, it also means that calling IsItemHovered() after a non-reactive elements - e.g. Text() - overlapping an active one may fail if you don't use IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByActiveItem). (#6610) + - 2023/06/20 (1.89.7) - moved io.HoverDelayShort/io.HoverDelayNormal to style.HoverDelayShort/style.HoverDelayNormal. As the fields were added in 1.89 and expected to be left unchanged by most users, or only tweaked once during app initialization, we are exceptionally accepting the breakage. + - 2023/05/30 (1.89.6) - backends: renamed "imgui_impl_sdlrenderer.cpp" to "imgui_impl_sdlrenderer2.cpp" and "imgui_impl_sdlrenderer.h" to "imgui_impl_sdlrenderer2.h". This is in prevision for the future release of SDL3. + - 2023/05/22 (1.89.6) - listbox: commented out obsolete/redirecting functions that were marked obsolete more than two years ago: + - ListBoxHeader() -> use BeginListBox() (note how two variants of ListBoxHeader() existed. Check commented versions in imgui.h for reference) + - ListBoxFooter() -> use EndListBox() + - 2023/05/15 (1.89.6) - clipper: commented out obsolete redirection constructor 'ImGuiListClipper(int items_count, float items_height = -1.0f)' that was marked obsolete in 1.79. Use default constructor + clipper.Begin(). + - 2023/05/15 (1.89.6) - clipper: renamed ImGuiListClipper::ForceDisplayRangeByIndices() to ImGuiListClipper::IncludeRangeByIndices(). + - 2023/03/14 (1.89.4) - commented out redirecting enums/functions names that were marked obsolete two years ago: + - ImGuiSliderFlags_ClampOnInput -> use ImGuiSliderFlags_AlwaysClamp + - ImGuiInputTextFlags_AlwaysInsertMode -> use ImGuiInputTextFlags_AlwaysOverwrite + - ImDrawList::AddBezierCurve() -> use ImDrawList::AddBezierCubic() + - ImDrawList::PathBezierCurveTo() -> use ImDrawList::PathBezierCubicCurveTo() + - 2023/03/09 (1.89.4) - renamed PushAllowKeyboardFocus()/PopAllowKeyboardFocus() to PushTabStop()/PopTabStop(). Kept inline redirection functions (will obsolete). + - 2023/03/09 (1.89.4) - tooltips: Added 'bool' return value to BeginTooltip() for API consistency. Please only submit contents and call EndTooltip() if BeginTooltip() returns true. In reality the function will _currently_ always return true, but further changes down the line may change this, best to clarify API sooner. + - 2023/02/15 (1.89.4) - moved the optional "courtesy maths operators" implementation from imgui_internal.h in imgui.h. + Even though we encourage using your own maths types and operators by setting up IM_VEC2_CLASS_EXTRA, + it has been frequently requested by people to use our own. We had an opt-in define which was + previously fulfilled in imgui_internal.h. It is now fulfilled in imgui.h. (#6164) + - OK: #define IMGUI_DEFINE_MATH_OPERATORS / #include "imgui.h" / #include "imgui_internal.h" + - Error: #include "imgui.h" / #define IMGUI_DEFINE_MATH_OPERATORS / #include "imgui_internal.h" + - 2023/02/07 (1.89.3) - backends: renamed "imgui_impl_sdl.cpp" to "imgui_impl_sdl2.cpp" and "imgui_impl_sdl.h" to "imgui_impl_sdl2.h". (#6146) This is in prevision for the future release of SDL3. + - 2022/10/26 (1.89) - commented out redirecting OpenPopupContextItem() which was briefly the name of OpenPopupOnItemClick() from 1.77 to 1.79. + - 2022/10/12 (1.89) - removed runtime patching of invalid "%f"/"%0.f" format strings for DragInt()/SliderInt(). This was obsoleted in 1.61 (May 2018). See 1.61 changelog for details. + - 2022/09/26 (1.89) - renamed and merged keyboard modifiers key enums and flags into a same set. Kept inline redirection enums (will obsolete). + - ImGuiKey_ModCtrl and ImGuiModFlags_Ctrl -> ImGuiMod_Ctrl + - ImGuiKey_ModShift and ImGuiModFlags_Shift -> ImGuiMod_Shift + - ImGuiKey_ModAlt and ImGuiModFlags_Alt -> ImGuiMod_Alt + - ImGuiKey_ModSuper and ImGuiModFlags_Super -> ImGuiMod_Super + the ImGuiKey_ModXXX were introduced in 1.87 and mostly used by backends. + the ImGuiModFlags_XXX have been exposed in imgui.h but not really used by any public api only by third-party extensions. + exceptionally commenting out the older ImGuiKeyModFlags_XXX names ahead of obsolescence schedule to reduce confusion and because they were not meant to be used anyway. + - 2022/09/20 (1.89) - ImGuiKey is now a typed enum, allowing ImGuiKey_XXX symbols to be named in debuggers. + this will require uses of legacy backend-dependent indices to be casted, e.g. + - with imgui_impl_glfw: IsKeyPressed(GLFW_KEY_A) -> IsKeyPressed((ImGuiKey)GLFW_KEY_A); + - with imgui_impl_win32: IsKeyPressed('A') -> IsKeyPressed((ImGuiKey)'A') + - etc. However if you are upgrading code you might well use the better, backend-agnostic IsKeyPressed(ImGuiKey_A) now! + - 2022/09/12 (1.89) - removed the bizarre legacy default argument for 'TreePush(const void* ptr = NULL)', always pass a pointer value explicitly. NULL/nullptr is ok but require cast, e.g. TreePush((void*)nullptr); + - 2022/09/05 (1.89) - commented out redirecting functions/enums names that were marked obsolete in 1.77 and 1.78 (June 2020): + - DragScalar(), DragScalarN(), DragFloat(), DragFloat2(), DragFloat3(), DragFloat4(): For old signatures ending with (..., const char* format, float power = 1.0f) -> use (..., format ImGuiSliderFlags_Logarithmic) if power != 1.0f. + - SliderScalar(), SliderScalarN(), SliderFloat(), SliderFloat2(), SliderFloat3(), SliderFloat4(): For old signatures ending with (..., const char* format, float power = 1.0f) -> use (..., format ImGuiSliderFlags_Logarithmic) if power != 1.0f. + - BeginPopupContextWindow(const char*, ImGuiMouseButton, bool) -> use BeginPopupContextWindow(const char*, ImGuiPopupFlags) + - 2022/09/02 (1.89) - obsoleted using SetCursorPos()/SetCursorScreenPos() to extend parent window/cell boundaries. + this relates to when moving the cursor position beyond current boundaries WITHOUT submitting an item. + - previously this would make the window content size ~200x200: + Begin(...) + SetCursorScreenPos(GetCursorScreenPos() + ImVec2(200,200)) + End(); + - instead, please submit an item: + Begin(...) + SetCursorScreenPos(GetCursorScreenPos() + ImVec2(200,200)) + Dummy(ImVec2(0,0)) + End(); + - alternative: + Begin(...) + Dummy(ImVec2(200,200)) + End(); + - content size is now only extended when submitting an item! + - with '#define IMGUI_DISABLE_OBSOLETE_FUNCTIONS' this will now be detected and assert. + - without '#define IMGUI_DISABLE_OBSOLETE_FUNCTIONS' this will silently be fixed until we obsolete it. + - 2022/08/03 (1.89) - changed signature of ImageButton() function. Kept redirection function (will obsolete). + - added 'const char* str_id' parameter + removed 'int frame_padding = -1' parameter. + - old signature: bool ImageButton(ImTextureID tex_id, ImVec2 size, ImVec2 uv0 = ImVec2(0,0), ImVec2 uv1 = ImVec2(1,1), int frame_padding = -1, ImVec4 bg_col = ImVec4(0,0,0,0), ImVec4 tint_col = ImVec4(1,1,1,1)); + - used the ImTextureID value to create an ID. This was inconsistent with other functions, led to ID conflicts, and caused problems with engines using transient ImTextureID values. + - had a FramePadding override which was inconsistent with other functions and made the already-long signature even longer. + - new signature: bool ImageButton(const char* str_id, ImTextureID tex_id, ImVec2 size, ImVec2 uv0 = ImVec2(0,0), ImVec2 uv1 = ImVec2(1,1), ImVec4 bg_col = ImVec4(0,0,0,0), ImVec4 tint_col = ImVec4(1,1,1,1)); + - requires an explicit identifier. You may still use e.g. PushID() calls and then pass an empty identifier. + - always uses style.FramePadding for padding, to be consistent with other buttons. You may use PushStyleVar() to alter this. + - 2022/07/08 (1.89) - inputs: removed io.NavInputs[] and ImGuiNavInput enum (following 1.87 changes). + - Official backends from 1.87+ -> no issue. + - Official backends from 1.60 to 1.86 -> will build and convert gamepad inputs, unless IMGUI_DISABLE_OBSOLETE_KEYIO is defined. Need updating! + - Custom backends not writing to io.NavInputs[] -> no issue. + - Custom backends writing to io.NavInputs[] -> will build and convert gamepad inputs, unless IMGUI_DISABLE_OBSOLETE_KEYIO is defined. Need fixing! + - TL;DR: Backends should call io.AddKeyEvent()/io.AddKeyAnalogEvent() with ImGuiKey_GamepadXXX values instead of filling io.NavInput[]. + - 2022/06/15 (1.88) - renamed IMGUI_DISABLE_METRICS_WINDOW to IMGUI_DISABLE_DEBUG_TOOLS for correctness. kept support for old define (will obsolete). + - 2022/05/03 (1.88) - backends: osx: removed ImGui_ImplOSX_HandleEvent() from backend API in favor of backend automatically handling event capture. All ImGui_ImplOSX_HandleEvent() calls should be removed as they are now unnecessary. + - 2022/04/05 (1.88) - inputs: renamed ImGuiKeyModFlags to ImGuiModFlags. Kept inline redirection enums (will obsolete). This was never used in public API functions but technically present in imgui.h and ImGuiIO. + - 2022/01/20 (1.87) - inputs: reworded gamepad IO. + - Backend writing to io.NavInputs[] -> backend should call io.AddKeyEvent()/io.AddKeyAnalogEvent() with ImGuiKey_GamepadXXX values. + - 2022/01/19 (1.87) - sliders, drags: removed support for legacy arithmetic operators (+,+-,*,/) when inputing text. This doesn't break any api/code but a feature that used to be accessible by end-users (which seemingly no one used). + - 2022/01/17 (1.87) - inputs: reworked mouse IO. + - Backend writing to io.MousePos -> backend should call io.AddMousePosEvent() + - Backend writing to io.MouseDown[] -> backend should call io.AddMouseButtonEvent() + - Backend writing to io.MouseWheel -> backend should call io.AddMouseWheelEvent() + - Backend writing to io.MouseHoveredViewport -> backend should call io.AddMouseViewportEvent() [Docking branch w/ multi-viewports only] + note: for all calls to IO new functions, the Dear ImGui context should be bound/current. + read https://github.com/ocornut/imgui/issues/4921 for details. + - 2022/01/10 (1.87) - inputs: reworked keyboard IO. Removed io.KeyMap[], io.KeysDown[] in favor of calling io.AddKeyEvent(). Removed GetKeyIndex(), now unecessary. All IsKeyXXX() functions now take ImGuiKey values. All features are still functional until IMGUI_DISABLE_OBSOLETE_KEYIO is defined. Read Changelog and Release Notes for details. + - IsKeyPressed(MY_NATIVE_KEY_XXX) -> use IsKeyPressed(ImGuiKey_XXX) + - IsKeyPressed(GetKeyIndex(ImGuiKey_XXX)) -> use IsKeyPressed(ImGuiKey_XXX) + - Backend writing to io.KeyMap[],io.KeysDown[] -> backend should call io.AddKeyEvent() (+ call io.SetKeyEventNativeData() if you want legacy user code to stil function with legacy key codes). + - Backend writing to io.KeyCtrl, io.KeyShift.. -> backend should call io.AddKeyEvent() with ImGuiMod_XXX values. *IF YOU PULLED CODE BETWEEN 2021/01/10 and 2021/01/27: We used to have a io.AddKeyModsEvent() function which was now replaced by io.AddKeyEvent() with ImGuiMod_XXX values.* + - one case won't work with backward compatibility: if your custom backend used ImGuiKey as mock native indices (e.g. "io.KeyMap[ImGuiKey_A] = ImGuiKey_A") because those values are now larger than the legacy KeyDown[] array. Will assert. + - inputs: added ImGuiKey_ModCtrl/ImGuiKey_ModShift/ImGuiKey_ModAlt/ImGuiKey_ModSuper values to submit keyboard modifiers using io.AddKeyEvent(), instead of writing directly to io.KeyCtrl, io.KeyShift, io.KeyAlt, io.KeySuper. + - 2022/01/05 (1.87) - inputs: renamed ImGuiKey_KeyPadEnter to ImGuiKey_KeypadEnter to align with new symbols. Kept redirection enum. + - 2022/01/05 (1.87) - removed io.ImeSetInputScreenPosFn() in favor of more flexible io.SetPlatformImeDataFn(). Removed 'void* io.ImeWindowHandle' in favor of writing to 'void* ImGuiViewport::PlatformHandleRaw'. + - 2022/01/01 (1.87) - commented out redirecting functions/enums names that were marked obsolete in 1.69, 1.70, 1.71, 1.72 (March-July 2019) + - ImGui::SetNextTreeNodeOpen() -> use ImGui::SetNextItemOpen() + - ImGui::GetContentRegionAvailWidth() -> use ImGui::GetContentRegionAvail().x + - ImGui::TreeAdvanceToLabelPos() -> use ImGui::SetCursorPosX(ImGui::GetCursorPosX() + ImGui::GetTreeNodeToLabelSpacing()); + - ImFontAtlas::CustomRect -> use ImFontAtlasCustomRect + - ImGuiColorEditFlags_RGB/HSV/HEX -> use ImGuiColorEditFlags_DisplayRGB/HSV/Hex + - 2021/12/20 (1.86) - backends: removed obsolete Marmalade backend (imgui_impl_marmalade.cpp) + example. Find last supported version at https://github.com/ocornut/imgui/wiki/Bindings + - 2021/11/04 (1.86) - removed CalcListClipping() function. Prefer using ImGuiListClipper which can return non-contiguous ranges. Please open an issue if you think you really need this function. + - 2021/08/23 (1.85) - removed GetWindowContentRegionWidth() function. keep inline redirection helper. can use 'GetWindowContentRegionMax().x - GetWindowContentRegionMin().x' instead for generally 'GetContentRegionAvail().x' is more useful. + - 2021/07/26 (1.84) - commented out redirecting functions/enums names that were marked obsolete in 1.67 and 1.69 (March 2019): + - ImGui::GetOverlayDrawList() -> use ImGui::GetForegroundDrawList() + - ImFont::GlyphRangesBuilder -> use ImFontGlyphRangesBuilder + - 2021/05/19 (1.83) - backends: obsoleted direct access to ImDrawCmd::TextureId in favor of calling ImDrawCmd::GetTexID(). + - if you are using official backends from the source tree: you have nothing to do. + - if you have copied old backend code or using your own: change access to draw_cmd->TextureId to draw_cmd->GetTexID(). + - 2021/03/12 (1.82) - upgraded ImDrawList::AddRect(), AddRectFilled(), PathRect() to use ImDrawFlags instead of ImDrawCornersFlags. + - ImDrawCornerFlags_TopLeft -> use ImDrawFlags_RoundCornersTopLeft + - ImDrawCornerFlags_BotRight -> use ImDrawFlags_RoundCornersBottomRight + - ImDrawCornerFlags_None -> use ImDrawFlags_RoundCornersNone etc. + flags now sanely defaults to 0 instead of 0x0F, consistent with all other flags in the API. + breaking: the default with rounding > 0.0f is now "round all corners" vs old implicit "round no corners": + - rounding == 0.0f + flags == 0 --> meant no rounding --> unchanged (common use) + - rounding > 0.0f + flags != 0 --> meant rounding --> unchanged (common use) + - rounding == 0.0f + flags != 0 --> meant no rounding --> unchanged (unlikely use) + - rounding > 0.0f + flags == 0 --> meant no rounding --> BREAKING (unlikely use): will now round all corners --> use ImDrawFlags_RoundCornersNone or rounding == 0.0f. + this ONLY matters for hard coded use of 0 + rounding > 0.0f. Use of named ImDrawFlags_RoundCornersNone (new) or ImDrawCornerFlags_None (old) are ok. + the old ImDrawCornersFlags used awkward default values of ~0 or 0xF (4 lower bits set) to signify "round all corners" and we sometimes encouraged using them as shortcuts. + legacy path still support use of hard coded ~0 or any value from 0x1 or 0xF. They will behave the same with legacy paths enabled (will assert otherwise). + - 2021/03/11 (1.82) - removed redirecting functions/enums names that were marked obsolete in 1.66 (September 2018): + - ImGui::SetScrollHere() -> use ImGui::SetScrollHereY() + - 2021/03/11 (1.82) - clarified that ImDrawList::PathArcTo(), ImDrawList::PathArcToFast() won't render with radius < 0.0f. Previously it sorts of accidentally worked but would generally lead to counter-clockwise paths and have an effect on anti-aliasing. + - 2021/03/10 (1.82) - upgraded ImDrawList::AddPolyline() and PathStroke() "bool closed" parameter to "ImDrawFlags flags". The matching ImDrawFlags_Closed value is guaranteed to always stay == 1 in the future. + - 2021/02/22 (1.82) - (*undone in 1.84*) win32+mingw: Re-enabled IME functions by default even under MinGW. In July 2016, issue #738 had me incorrectly disable those default functions for MinGW. MinGW users should: either link with -limm32, either set their imconfig file with '#define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS'. + - 2021/02/17 (1.82) - renamed rarely used style.CircleSegmentMaxError (old default = 1.60f) to style.CircleTessellationMaxError (new default = 0.30f) as the meaning of the value changed. + - 2021/02/03 (1.81) - renamed ListBoxHeader(const char* label, ImVec2 size) to BeginListBox(). Kept inline redirection function (will obsolete). + - removed ListBoxHeader(const char* label, int items_count, int height_in_items = -1) in favor of specifying size. Kept inline redirection function (will obsolete). + - renamed ListBoxFooter() to EndListBox(). Kept inline redirection function (will obsolete). + - 2021/01/26 (1.81) - removed ImGuiFreeType::BuildFontAtlas(). Kept inline redirection function. Prefer using '#define IMGUI_ENABLE_FREETYPE', but there's a runtime selection path available too. The shared extra flags parameters (very rarely used) are now stored in ImFontAtlas::FontBuilderFlags. + - renamed ImFontConfig::RasterizerFlags (used by FreeType) to ImFontConfig::FontBuilderFlags. + - renamed ImGuiFreeType::XXX flags to ImGuiFreeTypeBuilderFlags_XXX for consistency with other API. + - 2020/10/12 (1.80) - removed redirecting functions/enums that were marked obsolete in 1.63 (August 2018): + - ImGui::IsItemDeactivatedAfterChange() -> use ImGui::IsItemDeactivatedAfterEdit(). + - ImGuiCol_ModalWindowDarkening -> use ImGuiCol_ModalWindowDimBg + - ImGuiInputTextCallback -> use ImGuiTextEditCallback + - ImGuiInputTextCallbackData -> use ImGuiTextEditCallbackData + - 2020/12/21 (1.80) - renamed ImDrawList::AddBezierCurve() to AddBezierCubic(), and PathBezierCurveTo() to PathBezierCubicCurveTo(). Kept inline redirection function (will obsolete). + - 2020/12/04 (1.80) - added imgui_tables.cpp file! Manually constructed project files will need the new file added! + - 2020/11/18 (1.80) - renamed undocumented/internals ImGuiColumnsFlags_* to ImGuiOldColumnFlags_* in prevision of incoming Tables API. + - 2020/11/03 (1.80) - renamed io.ConfigWindowsMemoryCompactTimer to io.ConfigMemoryCompactTimer as the feature will apply to other data structures + - 2020/10/14 (1.80) - backends: moved all backends files (imgui_impl_XXXX.cpp, imgui_impl_XXXX.h) from examples/ to backends/. + - 2020/10/12 (1.80) - removed redirecting functions/enums that were marked obsolete in 1.60 (April 2018): + - io.RenderDrawListsFn pointer -> use ImGui::GetDrawData() value and call the render function of your backend + - ImGui::IsAnyWindowFocused() -> use ImGui::IsWindowFocused(ImGuiFocusedFlags_AnyWindow) + - ImGui::IsAnyWindowHovered() -> use ImGui::IsWindowHovered(ImGuiHoveredFlags_AnyWindow) + - ImGuiStyleVar_Count_ -> use ImGuiStyleVar_COUNT + - ImGuiMouseCursor_Count_ -> use ImGuiMouseCursor_COUNT + - removed redirecting functions names that were marked obsolete in 1.61 (May 2018): + - InputFloat (... int decimal_precision ...) -> use InputFloat (... const char* format ...) with format = "%.Xf" where X is your value for decimal_precision. + - same for InputFloat2()/InputFloat3()/InputFloat4() variants taking a `int decimal_precision` parameter. + - 2020/10/05 (1.79) - removed ImGuiListClipper: Renamed constructor parameters which created an ambiguous alternative to using the ImGuiListClipper::Begin() function, with misleading edge cases (note: imgui_memory_editor <0.40 from imgui_club/ used this old clipper API. Update your copy if needed). + - 2020/09/25 (1.79) - renamed ImGuiSliderFlags_ClampOnInput to ImGuiSliderFlags_AlwaysClamp. Kept redirection enum (will obsolete sooner because previous name was added recently). + - 2020/09/25 (1.79) - renamed style.TabMinWidthForUnselectedCloseButton to style.TabMinWidthForCloseButton. + - 2020/09/21 (1.79) - renamed OpenPopupContextItem() back to OpenPopupOnItemClick(), reverting the change from 1.77. For varieties of reason this is more self-explanatory. + - 2020/09/21 (1.79) - removed return value from OpenPopupOnItemClick() - returned true on mouse release on an item - because it is inconsistent with other popup APIs and makes others misleading. It's also and unnecessary: you can use IsWindowAppearing() after BeginPopup() for a similar result. + - 2020/09/17 (1.79) - removed ImFont::DisplayOffset in favor of ImFontConfig::GlyphOffset. DisplayOffset was applied after scaling and not very meaningful/useful outside of being needed by the default ProggyClean font. If you scaled this value after calling AddFontDefault(), this is now done automatically. It was also getting in the way of better font scaling, so let's get rid of it now! + - 2020/08/17 (1.78) - obsoleted use of the trailing 'float power=1.0f' parameter for DragFloat(), DragFloat2(), DragFloat3(), DragFloat4(), DragFloatRange2(), DragScalar(), DragScalarN(), SliderFloat(), SliderFloat2(), SliderFloat3(), SliderFloat4(), SliderScalar(), SliderScalarN(), VSliderFloat() and VSliderScalar(). + replaced the 'float power=1.0f' argument with integer-based flags defaulting to 0 (as with all our flags). + worked out a backward-compatibility scheme so hopefully most C++ codebase should not be affected. in short, when calling those functions: + - if you omitted the 'power' parameter (likely!), you are not affected. + - if you set the 'power' parameter to 1.0f (same as previous default value): 1/ your compiler may warn on float>int conversion, 2/ everything else will work. 3/ you can replace the 1.0f value with 0 to fix the warning, and be technically correct. + - if you set the 'power' parameter to >1.0f (to enable non-linear editing): 1/ your compiler may warn on float>int conversion, 2/ code will assert at runtime, 3/ in case asserts are disabled, the code will not crash and enable the _Logarithmic flag. 4/ you can replace the >1.0f value with ImGuiSliderFlags_Logarithmic to fix the warning/assert and get a _similar_ effect as previous uses of power >1.0f. + see https://github.com/ocornut/imgui/issues/3361 for all details. + kept inline redirection functions (will obsolete) apart for: DragFloatRange2(), VSliderFloat(), VSliderScalar(). For those three the 'float power=1.0f' version was removed directly as they were most unlikely ever used. + for shared code, you can version check at compile-time with `#if IMGUI_VERSION_NUM >= 17704`. + - obsoleted use of v_min > v_max in DragInt, DragFloat, DragScalar to lock edits (introduced in 1.73, was not demoed nor documented very), will be replaced by a more generic ReadOnly feature. You may use the ImGuiSliderFlags_ReadOnly internal flag in the meantime. + - 2020/06/23 (1.77) - removed BeginPopupContextWindow(const char*, int mouse_button, bool also_over_items) in favor of BeginPopupContextWindow(const char*, ImGuiPopupFlags flags) with ImGuiPopupFlags_NoOverItems. + - 2020/06/15 (1.77) - renamed OpenPopupOnItemClick() to OpenPopupContextItem(). Kept inline redirection function (will obsolete). [NOTE: THIS WAS REVERTED IN 1.79] + - 2020/06/15 (1.77) - removed CalcItemRectClosestPoint() entry point which was made obsolete and asserting in December 2017. + - 2020/04/23 (1.77) - removed unnecessary ID (first arg) of ImFontAtlas::AddCustomRectRegular(). + - 2020/01/22 (1.75) - ImDrawList::AddCircle()/AddCircleFilled() functions don't accept negative radius any more. + - 2019/12/17 (1.75) - [undid this change in 1.76] made Columns() limited to 64 columns by asserting above that limit. While the current code technically supports it, future code may not so we're putting the restriction ahead. + - 2019/12/13 (1.75) - [imgui_internal.h] changed ImRect() default constructor initializes all fields to 0.0f instead of (FLT_MAX,FLT_MAX,-FLT_MAX,-FLT_MAX). If you used ImRect::Add() to create bounding boxes by adding multiple points into it, you may need to fix your initial value. + - 2019/12/08 (1.75) - removed redirecting functions/enums that were marked obsolete in 1.53 (December 2017): + - ShowTestWindow() -> use ShowDemoWindow() + - IsRootWindowFocused() -> use IsWindowFocused(ImGuiFocusedFlags_RootWindow) + - IsRootWindowOrAnyChildFocused() -> use IsWindowFocused(ImGuiFocusedFlags_RootAndChildWindows) + - SetNextWindowContentWidth(w) -> use SetNextWindowContentSize(ImVec2(w, 0.0f) + - GetItemsLineHeightWithSpacing() -> use GetFrameHeightWithSpacing() + - ImGuiCol_ChildWindowBg -> use ImGuiCol_ChildBg + - ImGuiStyleVar_ChildWindowRounding -> use ImGuiStyleVar_ChildRounding + - ImGuiTreeNodeFlags_AllowOverlapMode -> use ImGuiTreeNodeFlags_AllowItemOverlap + - IMGUI_DISABLE_TEST_WINDOWS -> use IMGUI_DISABLE_DEMO_WINDOWS + - 2019/12/08 (1.75) - obsoleted calling ImDrawList::PrimReserve() with a negative count (which was vaguely documented and rarely if ever used). Instead, we added an explicit PrimUnreserve() API. + - 2019/12/06 (1.75) - removed implicit default parameter to IsMouseDragging(int button = 0) to be consistent with other mouse functions (none of the other functions have it). + - 2019/11/21 (1.74) - ImFontAtlas::AddCustomRectRegular() now requires an ID larger than 0x110000 (instead of 0x10000) to conform with supporting Unicode planes 1-16 in a future update. ID below 0x110000 will now assert. + - 2019/11/19 (1.74) - renamed IMGUI_DISABLE_FORMAT_STRING_FUNCTIONS to IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS for consistency. + - 2019/11/19 (1.74) - renamed IMGUI_DISABLE_MATH_FUNCTIONS to IMGUI_DISABLE_DEFAULT_MATH_FUNCTIONS for consistency. + - 2019/10/22 (1.74) - removed redirecting functions/enums that were marked obsolete in 1.52 (October 2017): + - Begin() [old 5 args version] -> use Begin() [3 args], use SetNextWindowSize() SetNextWindowBgAlpha() if needed + - IsRootWindowOrAnyChildHovered() -> use IsWindowHovered(ImGuiHoveredFlags_RootAndChildWindows) + - AlignFirstTextHeightToWidgets() -> use AlignTextToFramePadding() + - SetNextWindowPosCenter() -> use SetNextWindowPos() with a pivot of (0.5f, 0.5f) + - ImFont::Glyph -> use ImFontGlyph + - 2019/10/14 (1.74) - inputs: Fixed a miscalculation in the keyboard/mouse "typematic" repeat delay/rate calculation, used by keys and e.g. repeating mouse buttons as well as the GetKeyPressedAmount() function. + if you were using a non-default value for io.KeyRepeatRate (previous default was 0.250), you can add +io.KeyRepeatDelay to it to compensate for the fix. + The function was triggering on: 0.0 and (delay+rate*N) where (N>=1). Fixed formula responds to (N>=0). Effectively it made io.KeyRepeatRate behave like it was set to (io.KeyRepeatRate + io.KeyRepeatDelay). + If you never altered io.KeyRepeatRate nor used GetKeyPressedAmount() this won't affect you. + - 2019/07/15 (1.72) - removed TreeAdvanceToLabelPos() which is rarely used and only does SetCursorPosX(GetCursorPosX() + GetTreeNodeToLabelSpacing()). Kept redirection function (will obsolete). + - 2019/07/12 (1.72) - renamed ImFontAtlas::CustomRect to ImFontAtlasCustomRect. Kept redirection typedef (will obsolete). + - 2019/06/14 (1.72) - removed redirecting functions/enums names that were marked obsolete in 1.51 (June 2017): ImGuiCol_Column*, ImGuiSetCond_*, IsItemHoveredRect(), IsPosHoveringAnyWindow(), IsMouseHoveringAnyWindow(), IsMouseHoveringWindow(), IMGUI_ONCE_UPON_A_FRAME. Grep this log for details and new names, or see how they were implemented until 1.71. + - 2019/06/07 (1.71) - rendering of child window outer decorations (bg color, border, scrollbars) is now performed as part of the parent window. If you have + overlapping child windows in a same parent, and relied on their relative z-order to be mapped to their submission order, this will affect your rendering. + This optimization is disabled if the parent window has no visual output, because it appears to be the most common situation leading to the creation of overlapping child windows. + Please reach out if you are affected. + - 2019/05/13 (1.71) - renamed SetNextTreeNodeOpen() to SetNextItemOpen(). Kept inline redirection function (will obsolete). + - 2019/05/11 (1.71) - changed io.AddInputCharacter(unsigned short c) signature to io.AddInputCharacter(unsigned int c). + - 2019/04/29 (1.70) - improved ImDrawList thick strokes (>1.0f) preserving correct thickness up to 90 degrees angles (e.g. rectangles). If you have custom rendering using thick lines, they will appear thicker now. + - 2019/04/29 (1.70) - removed GetContentRegionAvailWidth(), use GetContentRegionAvail().x instead. Kept inline redirection function (will obsolete). + - 2019/03/04 (1.69) - renamed GetOverlayDrawList() to GetForegroundDrawList(). Kept redirection function (will obsolete). + - 2019/02/26 (1.69) - renamed ImGuiColorEditFlags_RGB/ImGuiColorEditFlags_HSV/ImGuiColorEditFlags_HEX to ImGuiColorEditFlags_DisplayRGB/ImGuiColorEditFlags_DisplayHSV/ImGuiColorEditFlags_DisplayHex. Kept redirection enums (will obsolete). + - 2019/02/14 (1.68) - made it illegal/assert when io.DisplayTime == 0.0f (with an exception for the first frame). If for some reason your time step calculation gives you a zero value, replace it with an arbitrarily small value! + - 2019/02/01 (1.68) - removed io.DisplayVisibleMin/DisplayVisibleMax (which were marked obsolete and removed from viewport/docking branch already). + - 2019/01/06 (1.67) - renamed io.InputCharacters[], marked internal as was always intended. Please don't access directly, and use AddInputCharacter() instead! + - 2019/01/06 (1.67) - renamed ImFontAtlas::GlyphRangesBuilder to ImFontGlyphRangesBuilder. Kept redirection typedef (will obsolete). + - 2018/12/20 (1.67) - made it illegal to call Begin("") with an empty string. This somehow half-worked before but had various undesirable side-effects. + - 2018/12/10 (1.67) - renamed io.ConfigResizeWindowsFromEdges to io.ConfigWindowsResizeFromEdges as we are doing a large pass on configuration flags. + - 2018/10/12 (1.66) - renamed misc/stl/imgui_stl.* to misc/cpp/imgui_stdlib.* in prevision for other C++ helper files. + - 2018/09/28 (1.66) - renamed SetScrollHere() to SetScrollHereY(). Kept redirection function (will obsolete). + - 2018/09/06 (1.65) - renamed stb_truetype.h to imstb_truetype.h, stb_textedit.h to imstb_textedit.h, and stb_rect_pack.h to imstb_rectpack.h. + If you were conveniently using the imgui copy of those STB headers in your project you will have to update your include paths. + - 2018/09/05 (1.65) - renamed io.OptCursorBlink/io.ConfigCursorBlink to io.ConfigInputTextCursorBlink. (#1427) + - 2018/08/31 (1.64) - added imgui_widgets.cpp file, extracted and moved widgets code out of imgui.cpp into imgui_widgets.cpp. Re-ordered some of the code remaining in imgui.cpp. + NONE OF THE FUNCTIONS HAVE CHANGED. THE CODE IS SEMANTICALLY 100% IDENTICAL, BUT _EVERY_ FUNCTION HAS BEEN MOVED. + Because of this, any local modifications to imgui.cpp will likely conflict when you update. Read docs/CHANGELOG.txt for suggestions. + - 2018/08/22 (1.63) - renamed IsItemDeactivatedAfterChange() to IsItemDeactivatedAfterEdit() for consistency with new IsItemEdited() API. Kept redirection function (will obsolete soonish as IsItemDeactivatedAfterChange() is very recent). + - 2018/08/21 (1.63) - renamed ImGuiTextEditCallback to ImGuiInputTextCallback, ImGuiTextEditCallbackData to ImGuiInputTextCallbackData for consistency. Kept redirection types (will obsolete). + - 2018/08/21 (1.63) - removed ImGuiInputTextCallbackData::ReadOnly since it is a duplication of (ImGuiInputTextCallbackData::Flags & ImGuiInputTextFlags_ReadOnly). + - 2018/08/01 (1.63) - removed per-window ImGuiWindowFlags_ResizeFromAnySide beta flag in favor of a global io.ConfigResizeWindowsFromEdges [update 1.67 renamed to ConfigWindowsResizeFromEdges] to enable the feature. + - 2018/08/01 (1.63) - renamed io.OptCursorBlink to io.ConfigCursorBlink [-> io.ConfigInputTextCursorBlink in 1.65], io.OptMacOSXBehaviors to ConfigMacOSXBehaviors for consistency. + - 2018/07/22 (1.63) - changed ImGui::GetTime() return value from float to double to avoid accumulating floating point imprecisions over time. + - 2018/07/08 (1.63) - style: renamed ImGuiCol_ModalWindowDarkening to ImGuiCol_ModalWindowDimBg for consistency with other features. Kept redirection enum (will obsolete). + - 2018/06/08 (1.62) - examples: the imgui_impl_XXX files have been split to separate platform (Win32, GLFW, SDL2, etc.) from renderer (DX11, OpenGL, Vulkan, etc.). + old backends will still work as is, however prefer using the separated backends as they will be updated to support multi-viewports. + when adopting new backends follow the main.cpp code of your preferred examples/ folder to know which functions to call. + in particular, note that old backends called ImGui::NewFrame() at the end of their ImGui_ImplXXXX_NewFrame() function. + - 2018/06/06 (1.62) - renamed GetGlyphRangesChinese() to GetGlyphRangesChineseFull() to distinguish other variants and discourage using the full set. + - 2018/06/06 (1.62) - TreeNodeEx()/TreeNodeBehavior(): the ImGuiTreeNodeFlags_CollapsingHeader helper now include the ImGuiTreeNodeFlags_NoTreePushOnOpen flag. See Changelog for details. + - 2018/05/03 (1.61) - DragInt(): the default compile-time format string has been changed from "%.0f" to "%d", as we are not using integers internally any more. + If you used DragInt() with custom format strings, make sure you change them to use %d or an integer-compatible format. + To honor backward-compatibility, the DragInt() code will currently parse and modify format strings to replace %*f with %d, giving time to users to upgrade their code. + If you have IMGUI_DISABLE_OBSOLETE_FUNCTIONS enabled, the code will instead assert! You may run a reg-exp search on your codebase for e.g. "DragInt.*%f" to help you find them. + - 2018/04/28 (1.61) - obsoleted InputFloat() functions taking an optional "int decimal_precision" in favor of an equivalent and more flexible "const char* format", + consistent with other functions. Kept redirection functions (will obsolete). + - 2018/04/09 (1.61) - IM_DELETE() helper function added in 1.60 doesn't clear the input _pointer_ reference, more consistent with expectation and allows passing r-value. + - 2018/03/20 (1.60) - renamed io.WantMoveMouse to io.WantSetMousePos for consistency and ease of understanding (was added in 1.52, _not_ used by core and only honored by some backend ahead of merging the Nav branch). + - 2018/03/12 (1.60) - removed ImGuiCol_CloseButton, ImGuiCol_CloseButtonActive, ImGuiCol_CloseButtonHovered as the closing cross uses regular button colors now. + - 2018/03/08 (1.60) - changed ImFont::DisplayOffset.y to default to 0 instead of +1. Fixed rounding of Ascent/Descent to match TrueType renderer. If you were adding or subtracting to ImFont::DisplayOffset check if your fonts are correctly aligned vertically. + - 2018/03/03 (1.60) - renamed ImGuiStyleVar_Count_ to ImGuiStyleVar_COUNT and ImGuiMouseCursor_Count_ to ImGuiMouseCursor_COUNT for consistency with other public enums. + - 2018/02/18 (1.60) - BeginDragDropSource(): temporarily removed the optional mouse_button=0 parameter because it is not really usable in many situations at the moment. + - 2018/02/16 (1.60) - obsoleted the io.RenderDrawListsFn callback, you can call your graphics engine render function after ImGui::Render(). Use ImGui::GetDrawData() to retrieve the ImDrawData* to display. + - 2018/02/07 (1.60) - reorganized context handling to be more explicit, + - YOU NOW NEED TO CALL ImGui::CreateContext() AT THE BEGINNING OF YOUR APP, AND CALL ImGui::DestroyContext() AT THE END. + - removed Shutdown() function, as DestroyContext() serve this purpose. + - you may pass a ImFontAtlas* pointer to CreateContext() to share a font atlas between contexts. Otherwise CreateContext() will create its own font atlas instance. + - removed allocator parameters from CreateContext(), they are now setup with SetAllocatorFunctions(), and shared by all contexts. + - removed the default global context and font atlas instance, which were confusing for users of DLL reloading and users of multiple contexts. + - 2018/01/31 (1.60) - moved sample TTF files from extra_fonts/ to misc/fonts/. If you loaded files directly from the imgui repo you may need to update your paths. + - 2018/01/11 (1.60) - obsoleted IsAnyWindowHovered() in favor of IsWindowHovered(ImGuiHoveredFlags_AnyWindow). Kept redirection function (will obsolete). + - 2018/01/11 (1.60) - obsoleted IsAnyWindowFocused() in favor of IsWindowFocused(ImGuiFocusedFlags_AnyWindow). Kept redirection function (will obsolete). + - 2018/01/03 (1.60) - renamed ImGunSizeConstraintCallback to ImGunSizeCallback, ImGunSizeConstraintCallbackData to ImGunSizeCallbackData. + - 2017/12/29 (1.60) - removed CalcItemRectClosestPoint() which was weird and not really used by anyone except demo code. If you need it it's easy to replicate on your side. + - 2017/12/24 (1.53) - renamed the emblematic ShowTestWindow() function to ShowDemoWindow(). Kept redirection function (will obsolete). + - 2017/12/21 (1.53) - ImDrawList: renamed style.AntiAliasedShapes to style.AntiAliasedFill for consistency and as a way to explicitly break code that manipulate those flag at runtime. You can now manipulate ImDrawList::Flags + - 2017/12/21 (1.53) - ImDrawList: removed 'bool anti_aliased = true' final parameter of ImDrawList::AddPolyline() and ImDrawList::AddConvexPolyFilled(). Prefer manipulating ImDrawList::Flags if you need to toggle them during the frame. + - 2017/12/14 (1.53) - using the ImGuiWindowFlags_NoScrollWithMouse flag on a child window forwards the mouse wheel event to the parent window, unless either ImGuiWindowFlags_NoInputs or ImGuiWindowFlags_NoScrollbar are also set. + - 2017/12/13 (1.53) - renamed GetItemsLineHeightWithSpacing() to GetFrameHeightWithSpacing(). Kept redirection function (will obsolete). + - 2017/12/13 (1.53) - obsoleted IsRootWindowFocused() in favor of using IsWindowFocused(ImGuiFocusedFlags_RootWindow). Kept redirection function (will obsolete). + - obsoleted IsRootWindowOrAnyChildFocused() in favor of using IsWindowFocused(ImGuiFocusedFlags_RootAndChildWindows). Kept redirection function (will obsolete). + - 2017/12/12 (1.53) - renamed ImGuiTreeNodeFlags_AllowOverlapMode to ImGuiTreeNodeFlags_AllowItemOverlap. Kept redirection enum (will obsolete). + - 2017/12/10 (1.53) - removed SetNextWindowContentWidth(), prefer using SetNextWindowContentSize(). Kept redirection function (will obsolete). + - 2017/11/27 (1.53) - renamed ImGuiTextBuffer::append() helper to appendf(), appendv() to appendfv(). If you copied the 'Log' demo in your code, it uses appendv() so that needs to be renamed. + - 2017/11/18 (1.53) - Style, Begin: removed ImGuiWindowFlags_ShowBorders window flag. Borders are now fully set up in the ImGuiStyle structure (see e.g. style.FrameBorderSize, style.WindowBorderSize). Use ImGui::ShowStyleEditor() to look them up. + Please note that the style system will keep evolving (hopefully stabilizing in Q1 2018), and so custom styles will probably subtly break over time. It is recommended you use the StyleColorsClassic(), StyleColorsDark(), StyleColorsLight() functions. + - 2017/11/18 (1.53) - Style: removed ImGuiCol_ComboBg in favor of combo boxes using ImGuiCol_PopupBg for consistency. + - 2017/11/18 (1.53) - Style: renamed ImGuiCol_ChildWindowBg to ImGuiCol_ChildBg. + - 2017/11/18 (1.53) - Style: renamed style.ChildWindowRounding to style.ChildRounding, ImGuiStyleVar_ChildWindowRounding to ImGuiStyleVar_ChildRounding. + - 2017/11/02 (1.53) - obsoleted IsRootWindowOrAnyChildHovered() in favor of using IsWindowHovered(ImGuiHoveredFlags_RootAndChildWindows); + - 2017/10/24 (1.52) - renamed IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCS/IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCS to IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS/IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS for consistency. + - 2017/10/20 (1.52) - changed IsWindowHovered() default parameters behavior to return false if an item is active in another window (e.g. click-dragging item from another window to this window). You can use the newly introduced IsWindowHovered() flags to requests this specific behavior if you need it. + - 2017/10/20 (1.52) - marked IsItemHoveredRect()/IsMouseHoveringWindow() as obsolete, in favor of using the newly introduced flags for IsItemHovered() and IsWindowHovered(). See https://github.com/ocornut/imgui/issues/1382 for details. + removed the IsItemRectHovered()/IsWindowRectHovered() names introduced in 1.51 since they were merely more consistent names for the two functions we are now obsoleting. + IsItemHoveredRect() --> IsItemHovered(ImGuiHoveredFlags_RectOnly) + IsMouseHoveringAnyWindow() --> IsWindowHovered(ImGuiHoveredFlags_AnyWindow) + IsMouseHoveringWindow() --> IsWindowHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem) [weird, old behavior] + - 2017/10/17 (1.52) - marked the old 5-parameters version of Begin() as obsolete (still available). Use SetNextWindowSize()+Begin() instead! + - 2017/10/11 (1.52) - renamed AlignFirstTextHeightToWidgets() to AlignTextToFramePadding(). Kept inline redirection function (will obsolete). + - 2017/09/26 (1.52) - renamed ImFont::Glyph to ImFontGlyph. Kept redirection typedef (will obsolete). + - 2017/09/25 (1.52) - removed SetNextWindowPosCenter() because SetNextWindowPos() now has the optional pivot information to do the same and more. Kept redirection function (will obsolete). + - 2017/08/25 (1.52) - io.MousePos needs to be set to ImVec2(-FLT_MAX,-FLT_MAX) when mouse is unavailable/missing. Previously ImVec2(-1,-1) was enough but we now accept negative mouse coordinates. In your backend if you need to support unavailable mouse, make sure to replace "io.MousePos = ImVec2(-1,-1)" with "io.MousePos = ImVec2(-FLT_MAX,-FLT_MAX)". + - 2017/08/22 (1.51) - renamed IsItemHoveredRect() to IsItemRectHovered(). Kept inline redirection function (will obsolete). -> (1.52) use IsItemHovered(ImGuiHoveredFlags_RectOnly)! + - renamed IsMouseHoveringAnyWindow() to IsAnyWindowHovered() for consistency. Kept inline redirection function (will obsolete). + - renamed IsMouseHoveringWindow() to IsWindowRectHovered() for consistency. Kept inline redirection function (will obsolete). + - 2017/08/20 (1.51) - renamed GetStyleColName() to GetStyleColorName() for consistency. + - 2017/08/20 (1.51) - added PushStyleColor(ImGuiCol idx, ImU32 col) overload, which _might_ cause an "ambiguous call" compilation error if you are using ImColor() with implicit cast. Cast to ImU32 or ImVec4 explicily to fix. + - 2017/08/15 (1.51) - marked the weird IMGUI_ONCE_UPON_A_FRAME helper macro as obsolete. prefer using the more explicit ImGuiOnceUponAFrame type. + - 2017/08/15 (1.51) - changed parameter order for BeginPopupContextWindow() from (const char*,int buttons,bool also_over_items) to (const char*,int buttons,bool also_over_items). Note that most calls relied on default parameters completely. + - 2017/08/13 (1.51) - renamed ImGuiCol_Column to ImGuiCol_Separator, ImGuiCol_ColumnHovered to ImGuiCol_SeparatorHovered, ImGuiCol_ColumnActive to ImGuiCol_SeparatorActive. Kept redirection enums (will obsolete). + - 2017/08/11 (1.51) - renamed ImGuiSetCond_Always to ImGuiCond_Always, ImGuiSetCond_Once to ImGuiCond_Once, ImGuiSetCond_FirstUseEver to ImGuiCond_FirstUseEver, ImGuiSetCond_Appearing to ImGuiCond_Appearing. Kept redirection enums (will obsolete). + - 2017/08/09 (1.51) - removed ValueColor() helpers, they are equivalent to calling Text(label) + SameLine() + ColorButton(). + - 2017/08/08 (1.51) - removed ColorEditMode() and ImGuiColorEditMode in favor of ImGuiColorEditFlags and parameters to the various Color*() functions. The SetColorEditOptions() allows to initialize default but the user can still change them with right-click context menu. + - changed prototype of 'ColorEdit4(const char* label, float col[4], bool show_alpha = true)' to 'ColorEdit4(const char* label, float col[4], ImGuiColorEditFlags flags = 0)', where passing flags = 0x01 is a safe no-op (hello dodgy backward compatibility!). - check and run the demo window, under "Color/Picker Widgets", to understand the various new options. + - changed prototype of rarely used 'ColorButton(ImVec4 col, bool small_height = false, bool outline_border = true)' to 'ColorButton(const char* desc_id, ImVec4 col, ImGuiColorEditFlags flags = 0, ImVec2 size = ImVec2(0, 0))' + - 2017/07/20 (1.51) - removed IsPosHoveringAnyWindow(ImVec2), which was partly broken and misleading. ASSERT + redirect user to io.WantCaptureMouse + - 2017/05/26 (1.50) - removed ImFontConfig::MergeGlyphCenterV in favor of a more multipurpose ImFontConfig::GlyphOffset. + - 2017/05/01 (1.50) - renamed ImDrawList::PathFill() (rarely used directly) to ImDrawList::PathFillConvex() for clarity. + - 2016/11/06 (1.50) - BeginChild(const char*) now applies the stack id to the provided label, consistently with other functions as it should always have been. It shouldn't affect you unless (extremely unlikely) you were appending multiple times to a same child from different locations of the stack id. If that's the case, generate an id with GetID() and use it instead of passing string to BeginChild(). + - 2016/10/15 (1.50) - avoid 'void* user_data' parameter to io.SetClipboardTextFn/io.GetClipboardTextFn pointers. We pass io.ClipboardUserData to it. + - 2016/09/25 (1.50) - style.WindowTitleAlign is now a ImVec2 (ImGuiAlign enum was removed). set to (0.5f,0.5f) for horizontal+vertical centering, (0.0f,0.0f) for upper-left, etc. + - 2016/07/30 (1.50) - SameLine(x) with x>0.0f is now relative to left of column/group if any, and not always to left of window. This was sort of always the intent and hopefully, breakage should be minimal. + - 2016/05/12 (1.49) - title bar (using ImGuiCol_TitleBg/ImGuiCol_TitleBgActive colors) isn't rendered over a window background (ImGuiCol_WindowBg color) anymore. + If your TitleBg/TitleBgActive alpha was 1.0f or you are using the default theme it will not affect you, otherwise if <1.0f you need to tweak your custom theme to readjust for the fact that we don't draw a WindowBg background behind the title bar. + This helper function will convert an old TitleBg/TitleBgActive color into a new one with the same visual output, given the OLD color and the OLD WindowBg color: + ImVec4 ConvertTitleBgCol(const ImVec4& win_bg_col, const ImVec4& title_bg_col) { float new_a = 1.0f - ((1.0f - win_bg_col.w) * (1.0f - title_bg_col.w)), k = title_bg_col.w / new_a; return ImVec4((win_bg_col.x * win_bg_col.w + title_bg_col.x) * k, (win_bg_col.y * win_bg_col.w + title_bg_col.y) * k, (win_bg_col.z * win_bg_col.w + title_bg_col.z) * k, new_a); } + If this is confusing, pick the RGB value from title bar from an old screenshot and apply this as TitleBg/TitleBgActive. Or you may just create TitleBgActive from a tweaked TitleBg color. + - 2016/05/07 (1.49) - removed confusing set of GetInternalState(), GetInternalStateSize(), SetInternalState() functions. Now using CreateContext(), DestroyContext(), GetCurrentContext(), SetCurrentContext(). + - 2016/05/02 (1.49) - renamed SetNextTreeNodeOpened() to SetNextTreeNodeOpen(), no redirection. + - 2016/05/01 (1.49) - obsoleted old signature of CollapsingHeader(const char* label, const char* str_id = NULL, bool display_frame = true, bool default_open = false) as extra parameters were badly designed and rarely used. You can replace the "default_open = true" flag in new API with CollapsingHeader(label, ImGuiTreeNodeFlags_DefaultOpen). + - 2016/04/26 (1.49) - changed ImDrawList::PushClipRect(ImVec4 rect) to ImDrawList::PushClipRect(Imvec2 min,ImVec2 max,bool intersect_with_current_clip_rect=false). Note that higher-level ImGui::PushClipRect() is preferable because it will clip at logic/widget level, whereas ImDrawList::PushClipRect() only affect your renderer. + - 2016/04/03 (1.48) - removed style.WindowFillAlphaDefault setting which was redundant. Bake default BG alpha inside style.Colors[ImGuiCol_WindowBg] and all other Bg color values. (ref GitHub issue #337). + - 2016/04/03 (1.48) - renamed ImGuiCol_TooltipBg to ImGuiCol_PopupBg, used by popups/menus and tooltips. popups/menus were previously using ImGuiCol_WindowBg. (ref github issue #337) + - 2016/03/21 (1.48) - renamed GetWindowFont() to GetFont(), GetWindowFontSize() to GetFontSize(). Kept inline redirection function (will obsolete). + - 2016/03/02 (1.48) - InputText() completion/history/always callbacks: if you modify the text buffer manually (without using DeleteChars()/InsertChars() helper) you need to maintain the BufTextLen field. added an assert. + - 2016/01/23 (1.48) - fixed not honoring exact width passed to PushItemWidth(), previously it would add extra FramePadding.x*2 over that width. if you had manual pixel-perfect alignment in place it might affect you. + - 2015/12/27 (1.48) - fixed ImDrawList::AddRect() which used to render a rectangle 1 px too large on each axis. + - 2015/12/04 (1.47) - renamed Color() helpers to ValueColor() - dangerously named, rarely used and probably to be made obsolete. + - 2015/08/29 (1.45) - with the addition of horizontal scrollbar we made various fixes to inconsistencies with dealing with cursor position. + GetCursorPos()/SetCursorPos() functions now include the scrolled amount. It shouldn't affect the majority of users, but take note that SetCursorPosX(100.0f) puts you at +100 from the starting x position which may include scrolling, not at +100 from the window left side. + GetContentRegionMax()/GetWindowContentRegionMin()/GetWindowContentRegionMax() functions allow include the scrolled amount. Typically those were used in cases where no scrolling would happen so it may not be a problem, but watch out! + - 2015/08/29 (1.45) - renamed style.ScrollbarWidth to style.ScrollbarSize + - 2015/08/05 (1.44) - split imgui.cpp into extra files: imgui_demo.cpp imgui_draw.cpp imgui_internal.h that you need to add to your project. + - 2015/07/18 (1.44) - fixed angles in ImDrawList::PathArcTo(), PathArcToFast() (introduced in 1.43) being off by an extra PI for no justifiable reason + - 2015/07/14 (1.43) - add new ImFontAtlas::AddFont() API. For the old AddFont***, moved the 'font_no' parameter of ImFontAtlas::AddFont** functions to the ImFontConfig structure. + you need to render your textured triangles with bilinear filtering to benefit from sub-pixel positioning of text. + - 2015/07/08 (1.43) - switched rendering data to use indexed rendering. this is saving a fair amount of CPU/GPU and enables us to get anti-aliasing for a marginal cost. + this necessary change will break your rendering function! the fix should be very easy. sorry for that :( + - if you are using a vanilla copy of one of the imgui_impl_XXX.cpp provided in the example, you just need to update your copy and you can ignore the rest. + - the signature of the io.RenderDrawListsFn handler has changed! + old: ImGui_XXXX_RenderDrawLists(ImDrawList** const cmd_lists, int cmd_lists_count) + new: ImGui_XXXX_RenderDrawLists(ImDrawData* draw_data). + parameters: 'cmd_lists' becomes 'draw_data->CmdLists', 'cmd_lists_count' becomes 'draw_data->CmdListsCount' + ImDrawList: 'commands' becomes 'CmdBuffer', 'vtx_buffer' becomes 'VtxBuffer', 'IdxBuffer' is new. + ImDrawCmd: 'vtx_count' becomes 'ElemCount', 'clip_rect' becomes 'ClipRect', 'user_callback' becomes 'UserCallback', 'texture_id' becomes 'TextureId'. + - each ImDrawList now contains both a vertex buffer and an index buffer. For each command, render ElemCount/3 triangles using indices from the index buffer. + - if you REALLY cannot render indexed primitives, you can call the draw_data->DeIndexAllBuffers() method to de-index the buffers. This is slow and a waste of CPU/GPU. Prefer using indexed rendering! + - refer to code in the examples/ folder or ask on the GitHub if you are unsure of how to upgrade. please upgrade! + - 2015/07/10 (1.43) - changed SameLine() parameters from int to float. + - 2015/07/02 (1.42) - renamed SetScrollPosHere() to SetScrollFromCursorPos(). Kept inline redirection function (will obsolete). + - 2015/07/02 (1.42) - renamed GetScrollPosY() to GetScrollY(). Necessary to reduce confusion along with other scrolling functions, because positions (e.g. cursor position) are not equivalent to scrolling amount. + - 2015/06/14 (1.41) - changed ImageButton() default bg_col parameter from (0,0,0,1) (black) to (0,0,0,0) (transparent) - makes a difference when texture have transparence + - 2015/06/14 (1.41) - changed Selectable() API from (label, selected, size) to (label, selected, flags, size). Size override should have been rarely used. Sorry! + - 2015/05/31 (1.40) - renamed GetWindowCollapsed() to IsWindowCollapsed() for consistency. Kept inline redirection function (will obsolete). + - 2015/05/31 (1.40) - renamed IsRectClipped() to IsRectVisible() for consistency. Note that return value is opposite! Kept inline redirection function (will obsolete). + - 2015/05/27 (1.40) - removed the third 'repeat_if_held' parameter from Button() - sorry! it was rarely used and inconsistent. Use PushButtonRepeat(true) / PopButtonRepeat() to enable repeat on desired buttons. + - 2015/05/11 (1.40) - changed BeginPopup() API, takes a string identifier instead of a bool. ImGui needs to manage the open/closed state of popups. Call OpenPopup() to actually set the "open" state of a popup. BeginPopup() returns true if the popup is opened. + - 2015/05/03 (1.40) - removed style.AutoFitPadding, using style.WindowPadding makes more sense (the default values were already the same). + - 2015/04/13 (1.38) - renamed IsClipped() to IsRectClipped(). Kept inline redirection function until 1.50. + - 2015/04/09 (1.38) - renamed ImDrawList::AddArc() to ImDrawList::AddArcFast() for compatibility with future API + - 2015/04/03 (1.38) - removed ImGuiCol_CheckHovered, ImGuiCol_CheckActive, replaced with the more general ImGuiCol_FrameBgHovered, ImGuiCol_FrameBgActive. + - 2014/04/03 (1.38) - removed support for passing -FLT_MAX..+FLT_MAX as the range for a SliderFloat(). Use DragFloat() or Inputfloat() instead. + - 2015/03/17 (1.36) - renamed GetItemBoxMin()/GetItemBoxMax()/IsMouseHoveringBox() to GetItemRectMin()/GetItemRectMax()/IsMouseHoveringRect(). Kept inline redirection function until 1.50. + - 2015/03/15 (1.36) - renamed style.TreeNodeSpacing to style.IndentSpacing, ImGuiStyleVar_TreeNodeSpacing to ImGuiStyleVar_IndentSpacing + - 2015/03/13 (1.36) - renamed GetWindowIsFocused() to IsWindowFocused(). Kept inline redirection function until 1.50. + - 2015/03/08 (1.35) - renamed style.ScrollBarWidth to style.ScrollbarWidth (casing) + - 2015/02/27 (1.34) - renamed OpenNextNode(bool) to SetNextTreeNodeOpened(bool, ImGuiSetCond). Kept inline redirection function until 1.50. + - 2015/02/27 (1.34) - renamed ImGuiSetCondition_*** to ImGuiSetCond_***, and _FirstUseThisSession becomes _Once. + - 2015/02/11 (1.32) - changed text input callback ImGuiTextEditCallback return type from void-->int. reserved for future use, return 0 for now. + - 2015/02/10 (1.32) - renamed GetItemWidth() to CalcItemWidth() to clarify its evolving behavior + - 2015/02/08 (1.31) - renamed GetTextLineSpacing() to GetTextLineHeightWithSpacing() + - 2015/02/01 (1.31) - removed IO.MemReallocFn (unused) + - 2015/01/19 (1.30) - renamed ImGuiStorage::GetIntPtr()/GetFloatPtr() to GetIntRef()/GetIntRef() because Ptr was conflicting with actual pointer storage functions. + - 2015/01/11 (1.30) - big font/image API change! now loads TTF file. allow for multiple fonts. no need for a PNG loader. + - 2015/01/11 (1.30) - removed GetDefaultFontData(). uses io.Fonts->GetTextureData*() API to retrieve uncompressed pixels. + - old: const void* png_data; unsigned int png_size; ImGui::GetDefaultFontData(NULL, NULL, &png_data, &png_size); [..Upload texture to GPU..]; + - new: unsigned char* pixels; int width, height; io.Fonts->GetTexDataAsRGBA32(&pixels, &width, &height); [..Upload texture to GPU..]; io.Fonts->SetTexID(YourTexIdentifier); + you now have more flexibility to load multiple TTF fonts and manage the texture buffer for internal needs. It is now recommended that you sample the font texture with bilinear interpolation. + - 2015/01/11 (1.30) - added texture identifier in ImDrawCmd passed to your render function (we can now render images). make sure to call io.Fonts->SetTexID() + - 2015/01/11 (1.30) - removed IO.PixelCenterOffset (unnecessary, can be handled in user projection matrix) + - 2015/01/11 (1.30) - removed ImGui::IsItemFocused() in favor of ImGui::IsItemActive() which handles all widgets + - 2014/12/10 (1.18) - removed SetNewWindowDefaultPos() in favor of new generic API SetNextWindowPos(pos, ImGuiSetCondition_FirstUseEver) + - 2014/11/28 (1.17) - moved IO.Font*** options to inside the IO.Font-> structure (FontYOffset, FontTexUvForWhite, FontBaseScale, FontFallbackGlyph) + - 2014/11/26 (1.17) - reworked syntax of IMGUI_ONCE_UPON_A_FRAME helper macro to increase compiler compatibility + - 2014/11/07 (1.15) - renamed IsHovered() to IsItemHovered() + - 2014/10/02 (1.14) - renamed IMGUI_INCLUDE_IMGUI_USER_CPP to IMGUI_INCLUDE_IMGUI_USER_INL and imgui_user.cpp to imgui_user.inl (more IDE friendly) + - 2014/09/25 (1.13) - removed 'text_end' parameter from IO.SetClipboardTextFn (the string is now always zero-terminated for simplicity) + - 2014/09/24 (1.12) - renamed SetFontScale() to SetWindowFontScale() + - 2014/09/24 (1.12) - moved IM_MALLOC/IM_REALLOC/IM_FREE preprocessor defines to IO.MemAllocFn/IO.MemReallocFn/IO.MemFreeFn + - 2014/08/30 (1.09) - removed IO.FontHeight (now computed automatically) + - 2014/08/30 (1.09) - moved IMGUI_FONT_TEX_UV_FOR_WHITE preprocessor define to IO.FontTexUvForWhite + - 2014/08/28 (1.09) - changed the behavior of IO.PixelCenterOffset following various rendering fixes + + + FREQUENTLY ASKED QUESTIONS (FAQ) + ================================ + + Read all answers online: + https://www.dearimgui.com/faq or https://github.com/ocornut/imgui/blob/master/docs/FAQ.md (same url) + Read all answers locally (with a text editor or ideally a Markdown viewer): + docs/FAQ.md + Some answers are copied down here to facilitate searching in code. + + Q&A: Basics + =========== + + Q: Where is the documentation? + A: This library is poorly documented at the moment and expects the user to be acquainted with C/C++. + - Run the examples/ applications and explore them. + - Read Getting Started (https://github.com/ocornut/imgui/wiki/Getting-Started) guide. + - See demo code in imgui_demo.cpp and particularly the ImGui::ShowDemoWindow() function. + - The demo covers most features of Dear ImGui, so you can read the code and see its output. + - See documentation and comments at the top of imgui.cpp + effectively imgui.h. + - 20+ standalone example applications using e.g. OpenGL/DirectX are provided in the + examples/ folder to explain how to integrate Dear ImGui with your own engine/application. + - The Wiki (https://github.com/ocornut/imgui/wiki) has many resources and links. + - The Glossary (https://github.com/ocornut/imgui/wiki/Glossary) page also may be useful. + - Your programming IDE is your friend, find the type or function declaration to find comments + associated with it. + + Q: What is this library called? + Q: Which version should I get? + >> This library is called "Dear ImGui", please don't call it "ImGui" :) + >> See https://www.dearimgui.com/faq for details. + + Q&A: Integration + ================ + + Q: How to get started? + A: Read https://github.com/ocornut/imgui/wiki/Getting-Started. Read 'PROGRAMMER GUIDE' above. Read examples/README.txt. + + Q: How can I tell whether to dispatch mouse/keyboard to Dear ImGui or my application? + A: You should read the 'io.WantCaptureMouse', 'io.WantCaptureKeyboard' and 'io.WantTextInput' flags! + >> See https://www.dearimgui.com/faq for a fully detailed answer. You really want to read this. + + Q. How can I enable keyboard or gamepad controls? + Q: How can I use this on a machine without mouse, keyboard or screen? (input share, remote display) + Q: I integrated Dear ImGui in my engine and little squares are showing instead of text... + Q: I integrated Dear ImGui in my engine and some elements are clipping or disappearing when I move windows around... + Q: I integrated Dear ImGui in my engine and some elements are displaying outside their expected windows boundaries... + >> See https://www.dearimgui.com/faq + + Q&A: Usage + ---------- + + Q: About the ID Stack system.. + - Why is my widget not reacting when I click on it? + - How can I have widgets with an empty label? + - How can I have multiple widgets with the same label? + - How can I have multiple windows with the same label? + Q: How can I display an image? What is ImTextureID, how does it work? + Q: How can I use my own math types instead of ImVec2? + Q: How can I interact with standard C++ types (such as std::string and std::vector)? + Q: How can I display custom shapes? (using low-level ImDrawList API) + >> See https://www.dearimgui.com/faq + + Q&A: Fonts, Text + ================ + + Q: How should I handle DPI in my application? + Q: How can I load a different font than the default? + Q: How can I easily use icons in my application? + Q: How can I load multiple fonts? + Q: How can I display and input non-Latin characters such as Chinese, Japanese, Korean, Cyrillic? + >> See https://www.dearimgui.com/faq and https://github.com/ocornut/imgui/edit/master/docs/FONTS.md + + Q&A: Concerns + ============= + + Q: Who uses Dear ImGui? + Q: Can you create elaborate/serious tools with Dear ImGui? + Q: Can you reskin the look of Dear ImGui? + Q: Why using C++ (as opposed to C)? + >> See https://www.dearimgui.com/faq + + Q&A: Community + ============== + + Q: How can I help? + A: - Businesses: please reach out to "contact AT dearimgui.com" if you work in a place using Dear ImGui! + We can discuss ways for your company to fund development via invoiced technical support, maintenance or sponsoring contacts. + This is among the most useful thing you can do for Dear ImGui. With increased funding, we sustain and grow work on this project. + Also see https://github.com/ocornut/imgui/wiki/Sponsors + - Businesses: you can also purchase licenses for the Dear ImGui Automation/Test Engine. + - If you are experienced with Dear ImGui and C++, look at the GitHub issues, look at the Wiki, and see how you want to help and can help! + - Disclose your usage of Dear ImGui via a dev blog post, a tweet, a screenshot, a mention somewhere etc. + You may post screenshot or links in the gallery threads. Visuals are ideal as they inspire other programmers. + But even without visuals, disclosing your use of dear imgui helps the library grow credibility, and help other teams and programmers with taking decisions. + - If you have issues or if you need to hack into the library, even if you don't expect any support it is useful that you share your issues (on GitHub or privately). + +*/ + +//------------------------------------------------------------------------- +// [SECTION] INCLUDES +//------------------------------------------------------------------------- + +#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) +#define _CRT_SECURE_NO_WARNINGS +#endif + +#ifndef IMGUI_DEFINE_MATH_OPERATORS +#define IMGUI_DEFINE_MATH_OPERATORS +#endif + +#include "imgui.h" +#ifndef IMGUI_DISABLE +#include "imgui_internal.h" + +// System includes +#include // vsnprintf, sscanf, printf +#include // intptr_t + +// [Windows] On non-Visual Studio compilers, we default to IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS unless explicitly enabled +#if defined(_WIN32) && !defined(_MSC_VER) && !defined(IMGUI_ENABLE_WIN32_DEFAULT_IME_FUNCTIONS) && !defined(IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS) +#define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS +#endif + +// [Windows] OS specific includes (optional) +#if defined(_WIN32) && defined(IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS) && defined(IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS) && defined(IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS) +#define IMGUI_DISABLE_WIN32_FUNCTIONS +#endif +#if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS) +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#ifndef NOMINMAX +#define NOMINMAX +#endif +#ifndef __MINGW32__ +#include // _wfopen, OpenClipboard +#else +#include +#endif +#if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_APP) // UWP doesn't have all Win32 functions +#define IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS +#define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS +#endif +#endif + +// [Apple] OS specific includes +#if defined(__APPLE__) +#include +#endif + +// Visual Studio warnings +#ifdef _MSC_VER +#pragma warning (disable: 4127) // condition expression is constant +#pragma warning (disable: 4996) // 'This function or variable may be unsafe': strcpy, strdup, sprintf, vsnprintf, sscanf, fopen +#if defined(_MSC_VER) && _MSC_VER >= 1922 // MSVC 2019 16.2 or later +#pragma warning (disable: 5054) // operator '|': deprecated between enumerations of different types +#endif +#pragma warning (disable: 26451) // [Static Analyzer] Arithmetic overflow : Using operator 'xxx' on a 4 byte value and then casting the result to an 8 byte value. Cast the value to the wider type before calling operator 'xxx' to avoid overflow(io.2). +#pragma warning (disable: 26495) // [Static Analyzer] Variable 'XXX' is uninitialized. Always initialize a member variable (type.6). +#pragma warning (disable: 26812) // [Static Analyzer] The enum type 'xxx' is unscoped. Prefer 'enum class' over 'enum' (Enum.3). +#endif + +// Clang/GCC warnings with -Weverything +#if defined(__clang__) +#if __has_warning("-Wunknown-warning-option") +#pragma clang diagnostic ignored "-Wunknown-warning-option" // warning: unknown warning group 'xxx' // not all warnings are known by all Clang versions and they tend to be rename-happy.. so ignoring warnings triggers new warnings on some configuration. Great! +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" // warning: unknown warning group 'xxx' +#pragma clang diagnostic ignored "-Wold-style-cast" // warning: use of old-style cast // yes, they are more terse. +#pragma clang diagnostic ignored "-Wfloat-equal" // warning: comparing floating point with == or != is unsafe // storing and comparing against same constants (typically 0.0f) is ok. +#pragma clang diagnostic ignored "-Wformat-nonliteral" // warning: format string is not a string literal // passing non-literal to vsnformat(). yes, user passing incorrect format strings can crash the code. +#pragma clang diagnostic ignored "-Wexit-time-destructors" // warning: declaration requires an exit-time destructor // exit-time destruction order is undefined. if MemFree() leads to users code that has been disabled before exit it might cause problems. ImGui coding style welcomes static/globals. +#pragma clang diagnostic ignored "-Wglobal-constructors" // warning: declaration requires a global destructor // similar to above, not sure what the exact difference is. +#pragma clang diagnostic ignored "-Wsign-conversion" // warning: implicit conversion changes signedness +#pragma clang diagnostic ignored "-Wformat-pedantic" // warning: format specifies type 'void *' but the argument has type 'xxxx *' // unreasonable, would lead to casting every %p arg to void*. probably enabled by -pedantic. +#pragma clang diagnostic ignored "-Wint-to-void-pointer-cast" // warning: cast to 'void *' from smaller integer type 'int' +#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" // warning: zero as null pointer constant // some standard header variations use #define NULL 0 +#pragma clang diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function // using printf() is a misery with this as C++ va_arg ellipsis changes float to double. +#pragma clang diagnostic ignored "-Wimplicit-int-float-conversion" // warning: implicit conversion from 'xxx' to 'float' may lose precision +#elif defined(__GNUC__) +// We disable -Wpragmas because GCC doesn't provide a has_warning equivalent and some forks/patches may not follow the warning/version association. +#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind +#pragma GCC diagnostic ignored "-Wunused-function" // warning: 'xxxx' defined but not used +#pragma GCC diagnostic ignored "-Wint-to-pointer-cast" // warning: cast to pointer from integer of different size +#pragma GCC diagnostic ignored "-Wformat" // warning: format '%p' expects argument of type 'void*', but argument 6 has type 'ImGuiWindow*' +#pragma GCC diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function +#pragma GCC diagnostic ignored "-Wconversion" // warning: conversion to 'xxxx' from 'xxxx' may alter its value +#pragma GCC diagnostic ignored "-Wformat-nonliteral" // warning: format not a string literal, format string not checked +#pragma GCC diagnostic ignored "-Wstrict-overflow" // warning: assuming signed overflow does not occur when assuming that (X - c) > X is always false +#pragma GCC diagnostic ignored "-Wclass-memaccess" // [__GNUC__ >= 8] warning: 'memset/memcpy' clearing/writing an object of type 'xxxx' with no trivial copy-assignment; use assignment or value-initialization instead +#endif + +// Debug options +#define IMGUI_DEBUG_NAV_SCORING 0 // Display navigation scoring preview when hovering items. Display last moving direction matches when holding CTRL +#define IMGUI_DEBUG_NAV_RECTS 0 // Display the reference navigation rectangle for each window + +// When using CTRL+TAB (or Gamepad Square+L/R) we delay the visual a little in order to reduce visual noise doing a fast switch. +static const float NAV_WINDOWING_HIGHLIGHT_DELAY = 0.20f; // Time before the highlight and screen dimming starts fading in +static const float NAV_WINDOWING_LIST_APPEAR_DELAY = 0.15f; // Time before the window list starts to appear + +// Window resizing from edges (when io.ConfigWindowsResizeFromEdges = true and ImGuiBackendFlags_HasMouseCursors is set in io.BackendFlags by backend) +static const float WINDOWS_HOVER_PADDING = 4.0f; // Extend outside window for hovering/resizing (maxxed with TouchPadding) and inside windows for borders. Affect FindHoveredWindow(). +static const float WINDOWS_RESIZE_FROM_EDGES_FEEDBACK_TIMER = 0.04f; // Reduce visual noise by only highlighting the border after a certain time. +static const float WINDOWS_MOUSE_WHEEL_SCROLL_LOCK_TIMER = 0.70f; // Lock scrolled window (so it doesn't pick child windows that are scrolling through) for a certain time, unless mouse moved. + +// Tooltip offset +static const ImVec2 TOOLTIP_DEFAULT_OFFSET = ImVec2(16, 10); // Multiplied by g.Style.MouseCursorScale + +//------------------------------------------------------------------------- +// [SECTION] FORWARD DECLARATIONS +//------------------------------------------------------------------------- + +static void SetCurrentWindow(ImGuiWindow* window); +static void FindHoveredWindow(); +static ImGuiWindow* CreateNewWindow(const char* name, ImGuiWindowFlags flags); +static ImVec2 CalcNextScrollFromScrollTargetAndClamp(ImGuiWindow* window); + +static void AddWindowToSortBuffer(ImVector* out_sorted_windows, ImGuiWindow* window); + +// Settings +static void WindowSettingsHandler_ClearAll(ImGuiContext*, ImGuiSettingsHandler*); +static void* WindowSettingsHandler_ReadOpen(ImGuiContext*, ImGuiSettingsHandler*, const char* name); +static void WindowSettingsHandler_ReadLine(ImGuiContext*, ImGuiSettingsHandler*, void* entry, const char* line); +static void WindowSettingsHandler_ApplyAll(ImGuiContext*, ImGuiSettingsHandler*); +static void WindowSettingsHandler_WriteAll(ImGuiContext*, ImGuiSettingsHandler*, ImGuiTextBuffer* buf); + +// Platform Dependents default implementation for IO functions +static const char* GetClipboardTextFn_DefaultImpl(void* user_data_ctx); +static void SetClipboardTextFn_DefaultImpl(void* user_data_ctx, const char* text); +static void SetPlatformImeDataFn_DefaultImpl(ImGuiViewport* viewport, ImGuiPlatformImeData* data); + +namespace ImGui +{ +// Navigation +static void NavUpdate(); +static void NavUpdateWindowing(); +static void NavUpdateWindowingOverlay(); +static void NavUpdateCancelRequest(); +static void NavUpdateCreateMoveRequest(); +static void NavUpdateCreateTabbingRequest(); +static float NavUpdatePageUpPageDown(); +static inline void NavUpdateAnyRequestFlag(); +static void NavUpdateCreateWrappingRequest(); +static void NavEndFrame(); +static bool NavScoreItem(ImGuiNavItemData* result); +static void NavApplyItemToResult(ImGuiNavItemData* result); +static void NavProcessItem(); +static void NavProcessItemForTabbingRequest(ImGuiID id, ImGuiItemFlags item_flags, ImGuiNavMoveFlags move_flags); +static ImVec2 NavCalcPreferredRefPos(); +static void NavSaveLastChildNavWindowIntoParent(ImGuiWindow* nav_window); +static ImGuiWindow* NavRestoreLastChildNavWindow(ImGuiWindow* window); +static void NavRestoreLayer(ImGuiNavLayer layer); +static void NavRestoreHighlightAfterMove(); +static int FindWindowFocusIndex(ImGuiWindow* window); + +// Error Checking and Debug Tools +static void ErrorCheckNewFrameSanityChecks(); +static void ErrorCheckEndFrameSanityChecks(); +static void UpdateDebugToolItemPicker(); +static void UpdateDebugToolStackQueries(); + +// Inputs +static void UpdateKeyboardInputs(); +static void UpdateMouseInputs(); +static void UpdateMouseWheel(); +static void UpdateKeyRoutingTable(ImGuiKeyRoutingTable* rt); + +// Misc +static void UpdateSettings(); +static bool UpdateWindowManualResize(ImGuiWindow* window, const ImVec2& size_auto_fit, int* border_held, int resize_grip_count, ImU32 resize_grip_col[4], const ImRect& visibility_rect); +static void RenderWindowShadow(ImGuiWindow* window); +static void RenderWindowOuterBorders(ImGuiWindow* window); +static void RenderWindowDecorations(ImGuiWindow* window, const ImRect& title_bar_rect, bool title_bar_is_highlight, bool handle_borders_and_resize_grips, int resize_grip_count, const ImU32 resize_grip_col[4], float resize_grip_draw_size); +static void RenderWindowTitleBarContents(ImGuiWindow* window, const ImRect& title_bar_rect, const char* name, bool* p_open); +static void RenderDimmedBackgroundBehindWindow(ImGuiWindow* window, ImU32 col); +static void RenderDimmedBackgrounds(); + +// Viewports +static void UpdateViewportsNewFrame(); + +} + +//----------------------------------------------------------------------------- +// [SECTION] CONTEXT AND MEMORY ALLOCATORS +//----------------------------------------------------------------------------- + +// DLL users: +// - Heaps and globals are not shared across DLL boundaries! +// - You will need to call SetCurrentContext() + SetAllocatorFunctions() for each static/DLL boundary you are calling from. +// - Same applies for hot-reloading mechanisms that are reliant on reloading DLL (note that many hot-reloading mechanisms work without DLL). +// - Using Dear ImGui via a shared library is not recommended, because of function call overhead and because we don't guarantee backward nor forward ABI compatibility. +// - Confused? In a debugger: add GImGui to your watch window and notice how its value changes depending on your current location (which DLL boundary you are in). + +// Current context pointer. Implicitly used by all Dear ImGui functions. Always assumed to be != NULL. +// - ImGui::CreateContext() will automatically set this pointer if it is NULL. +// Change to a different context by calling ImGui::SetCurrentContext(). +// - Important: Dear ImGui functions are not thread-safe because of this pointer. +// If you want thread-safety to allow N threads to access N different contexts: +// - Change this variable to use thread local storage so each thread can refer to a different context, in your imconfig.h: +// struct ImGuiContext; +// extern thread_local ImGuiContext* MyImGuiTLS; +// #define GImGui MyImGuiTLS +// And then define MyImGuiTLS in one of your cpp files. Note that thread_local is a C++11 keyword, earlier C++ uses compiler-specific keyword. +// - Future development aims to make this context pointer explicit to all calls. Also read https://github.com/ocornut/imgui/issues/586 +// - If you need a finite number of contexts, you may compile and use multiple instances of the ImGui code from a different namespace. +// - DLL users: read comments above. +#ifndef GImGui +ImGuiContext* GImGui = NULL; +#endif + +// Memory Allocator functions. Use SetAllocatorFunctions() to change them. +// - You probably don't want to modify that mid-program, and if you use global/static e.g. ImVector<> instances you may need to keep them accessible during program destruction. +// - DLL users: read comments above. +#ifndef IMGUI_DISABLE_DEFAULT_ALLOCATORS +static void* MallocWrapper(size_t size, void* user_data) { IM_UNUSED(user_data); return malloc(size); } +static void FreeWrapper(void* ptr, void* user_data) { IM_UNUSED(user_data); free(ptr); } +#else +static void* MallocWrapper(size_t size, void* user_data) { IM_UNUSED(user_data); IM_UNUSED(size); IM_ASSERT(0); return NULL; } +static void FreeWrapper(void* ptr, void* user_data) { IM_UNUSED(user_data); IM_UNUSED(ptr); IM_ASSERT(0); } +#endif +static ImGuiMemAllocFunc GImAllocatorAllocFunc = MallocWrapper; +static ImGuiMemFreeFunc GImAllocatorFreeFunc = FreeWrapper; +static void* GImAllocatorUserData = NULL; + +//----------------------------------------------------------------------------- +// [SECTION] USER FACING STRUCTURES (ImGuiStyle, ImGuiIO) +//----------------------------------------------------------------------------- + +ImGuiStyle::ImGuiStyle() +{ + Alpha = 1.0f; // Global alpha applies to everything in Dear ImGui. + DisabledAlpha = 0.60f; // Additional alpha multiplier applied by BeginDisabled(). Multiply over current value of Alpha. + WindowPadding = ImVec2(8,8); // Padding within a window + WindowRounding = 0.0f; // Radius of window corners rounding. Set to 0.0f to have rectangular windows. Large values tend to lead to variety of artifacts and are not recommended. + WindowBorderSize = 1.0f; // Thickness of border around windows. Generally set to 0.0f or 1.0f. Other values not well tested. + WindowMinSize = ImVec2(32,32); // Minimum window size + WindowTitleAlign = ImVec2(0.0f,0.5f);// Alignment for title bar text + WindowMenuButtonPosition= ImGuiDir_Left; // Position of the collapsing/docking button in the title bar (left/right). Defaults to ImGuiDir_Left. + ChildRounding = 0.0f; // Radius of child window corners rounding. Set to 0.0f to have rectangular child windows + ChildBorderSize = 1.0f; // Thickness of border around child windows. Generally set to 0.0f or 1.0f. Other values not well tested. + PopupRounding = 0.0f; // Radius of popup window corners rounding. Set to 0.0f to have rectangular child windows + PopupBorderSize = 1.0f; // Thickness of border around popup or tooltip windows. Generally set to 0.0f or 1.0f. Other values not well tested. + FramePadding = ImVec2(4,3); // Padding within a framed rectangle (used by most widgets) + FrameRounding = 0.0f; // Radius of frame corners rounding. Set to 0.0f to have rectangular frames (used by most widgets). + FrameBorderSize = 0.0f; // Thickness of border around frames. Generally set to 0.0f or 1.0f. Other values not well tested. + ItemSpacing = ImVec2(8,4); // Horizontal and vertical spacing between widgets/lines + ItemInnerSpacing = ImVec2(4,4); // Horizontal and vertical spacing between within elements of a composed widget (e.g. a slider and its label) + CellPadding = ImVec2(4,2); // Padding within a table cell. CellPadding.y may be altered between different rows. + TouchExtraPadding = ImVec2(0,0); // Expand reactive bounding box for touch-based system where touch position is not accurate enough. Unfortunately we don't sort widgets so priority on overlap will always be given to the first widget. So don't grow this too much! + IndentSpacing = 21.0f; // Horizontal spacing when e.g. entering a tree node. Generally == (FontSize + FramePadding.x*2). + ColumnsMinSpacing = 6.0f; // Minimum horizontal spacing between two columns. Preferably > (FramePadding.x + 1). + ScrollbarSize = 14.0f; // Width of the vertical scrollbar, Height of the horizontal scrollbar + ScrollbarRounding = 9.0f; // Radius of grab corners rounding for scrollbar + GrabMinSize = 12.0f; // Minimum width/height of a grab box for slider/scrollbar + GrabRounding = 0.0f; // Radius of grabs corners rounding. Set to 0.0f to have rectangular slider grabs. + LogSliderDeadzone = 4.0f; // The size in pixels of the dead-zone around zero on logarithmic sliders that cross zero. + TabRounding = 4.0f; // Radius of upper corners of a tab. Set to 0.0f to have rectangular tabs. + TabBorderSize = 0.0f; // Thickness of border around tabs. + TabMinWidthForCloseButton = 0.0f; // Minimum width for close button to appear on an unselected tab when hovered. Set to 0.0f to always show when hovering, set to FLT_MAX to never show close button unless selected. + ColorButtonPosition = ImGuiDir_Right; // Side of the color button in the ColorEdit4 widget (left/right). Defaults to ImGuiDir_Right. + ButtonTextAlign = ImVec2(0.5f,0.5f);// Alignment of button text when button is larger than text. + SelectableTextAlign = ImVec2(0.0f,0.0f);// Alignment of selectable text. Defaults to (0.0f, 0.0f) (top-left aligned). It's generally important to keep this left-aligned if you want to lay multiple items on a same line. + SeparatorTextBorderSize = 3.0f; // Thickkness of border in SeparatorText() + SeparatorTextAlign = ImVec2(0.0f,0.5f);// Alignment of text within the separator. Defaults to (0.0f, 0.5f) (left aligned, center). + SeparatorTextPadding = ImVec2(20.0f,3.f);// Horizontal offset of text from each edge of the separator + spacing on other axis. Generally small values. .y is recommended to be == FramePadding.y. + DisplayWindowPadding = ImVec2(19,19); // Window position are clamped to be visible within the display area or monitors by at least this amount. Only applies to regular windows. + DisplaySafeAreaPadding = ImVec2(3,3); // If you cannot see the edge of your screen (e.g. on a TV) increase the safe area padding. Covers popups/tooltips as well regular windows. + MouseCursorScale = 1.0f; // Scale software rendered mouse cursor (when io.MouseDrawCursor is enabled). May be removed later. + AntiAliasedLines = true; // Enable anti-aliased lines/borders. Disable if you are really tight on CPU/GPU. + AntiAliasedLinesUseTex = true; // Enable anti-aliased lines/borders using textures where possible. Require backend to render with bilinear filtering (NOT point/nearest filtering). + AntiAliasedFill = true; // Enable anti-aliased filled shapes (rounded rectangles, circles, etc.). + CurveTessellationTol = 1.25f; // Tessellation tolerance when using PathBezierCurveTo() without a specific number of segments. Decrease for highly tessellated curves (higher quality, more polygons), increase to reduce quality. + CircleTessellationMaxError = 0.30f; // Maximum error (in pixels) allowed when using AddCircle()/AddCircleFilled() or drawing rounded corner rectangles with no explicit segment count specified. Decrease for higher quality but more geometry. + WindowShadowSize = 100.0f; // Size (in pixels) of window shadows. + WindowShadowOffsetDist = 0.0f; // Offset distance (in pixels) of window shadows from casting window. + WindowShadowOffsetAngle = IM_PI * 0.25f; // Offset angle of window shadows from casting window (0.0f = left, 0.5f*PI = bottom, 1.0f*PI = right, 1.5f*PI = top). + + // Behaviors + HoverStationaryDelay = 0.15f; // Delay for IsItemHovered(ImGuiHoveredFlags_Stationary). Time required to consider mouse stationary. + HoverDelayShort = 0.15f; // Delay for IsItemHovered(ImGuiHoveredFlags_DelayShort). Usually used along with HoverStationaryDelay. + HoverDelayNormal = 0.40f; // Delay for IsItemHovered(ImGuiHoveredFlags_DelayNormal). " + HoverFlagsForTooltipMouse = ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayShort; // Default flags when using IsItemHovered(ImGuiHoveredFlags_ForTooltip) or BeginItemTooltip()/SetItemTooltip() while using mouse. + HoverFlagsForTooltipNav = ImGuiHoveredFlags_NoSharedDelay | ImGuiHoveredFlags_DelayNormal; // Default flags when using IsItemHovered(ImGuiHoveredFlags_ForTooltip) or BeginItemTooltip()/SetItemTooltip() while using keyboard/gamepad. + + // Default theme + ImGui::StyleColorsDark(this); +} + +// To scale your entire UI (e.g. if you want your app to use High DPI or generally be DPI aware) you may use this helper function. Scaling the fonts is done separately and is up to you. +// Important: This operation is lossy because we round all sizes to integer. If you need to change your scale multiples, call this over a freshly initialized ImGuiStyle structure rather than scaling multiple times. +void ImGuiStyle::ScaleAllSizes(float scale_factor) +{ + WindowPadding = ImFloor(WindowPadding * scale_factor); + WindowRounding = ImFloor(WindowRounding * scale_factor); + WindowMinSize = ImFloor(WindowMinSize * scale_factor); + ChildRounding = ImFloor(ChildRounding * scale_factor); + PopupRounding = ImFloor(PopupRounding * scale_factor); + FramePadding = ImFloor(FramePadding * scale_factor); + FrameRounding = ImFloor(FrameRounding * scale_factor); + ItemSpacing = ImFloor(ItemSpacing * scale_factor); + ItemInnerSpacing = ImFloor(ItemInnerSpacing * scale_factor); + CellPadding = ImFloor(CellPadding * scale_factor); + TouchExtraPadding = ImFloor(TouchExtraPadding * scale_factor); + IndentSpacing = ImFloor(IndentSpacing * scale_factor); + ColumnsMinSpacing = ImFloor(ColumnsMinSpacing * scale_factor); + ScrollbarSize = ImFloor(ScrollbarSize * scale_factor); + ScrollbarRounding = ImFloor(ScrollbarRounding * scale_factor); + GrabMinSize = ImFloor(GrabMinSize * scale_factor); + GrabRounding = ImFloor(GrabRounding * scale_factor); + LogSliderDeadzone = ImFloor(LogSliderDeadzone * scale_factor); + TabRounding = ImFloor(TabRounding * scale_factor); + TabMinWidthForCloseButton = (TabMinWidthForCloseButton != FLT_MAX) ? ImFloor(TabMinWidthForCloseButton * scale_factor) : FLT_MAX; + SeparatorTextPadding = ImFloor(SeparatorTextPadding * scale_factor); + DisplayWindowPadding = ImFloor(DisplayWindowPadding * scale_factor); + DisplaySafeAreaPadding = ImFloor(DisplaySafeAreaPadding * scale_factor); + MouseCursorScale = ImFloor(MouseCursorScale * scale_factor); +} + +ImGuiIO::ImGuiIO() +{ + // Most fields are initialized with zero + memset(this, 0, sizeof(*this)); + IM_STATIC_ASSERT(IM_ARRAYSIZE(ImGuiIO::MouseDown) == ImGuiMouseButton_COUNT && IM_ARRAYSIZE(ImGuiIO::MouseClicked) == ImGuiMouseButton_COUNT); + + // Settings + ConfigFlags = ImGuiConfigFlags_None; + BackendFlags = ImGuiBackendFlags_None; + DisplaySize = ImVec2(-1.0f, -1.0f); + DeltaTime = 1.0f / 60.0f; + IniSavingRate = 5.0f; + IniFilename = "imgui.ini"; // Important: "imgui.ini" is relative to current working dir, most apps will want to lock this to an absolute path (e.g. same path as executables). + LogFilename = "imgui_log.txt"; +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + for (int i = 0; i < ImGuiKey_COUNT; i++) + KeyMap[i] = -1; +#endif + UserData = NULL; + + Fonts = NULL; + FontGlobalScale = 1.0f; + FontDefault = NULL; + FontAllowUserScaling = false; + DisplayFramebufferScale = ImVec2(1.0f, 1.0f); + + MouseDoubleClickTime = 0.30f; + MouseDoubleClickMaxDist = 6.0f; + MouseDragThreshold = 6.0f; + KeyRepeatDelay = 0.275f; + KeyRepeatRate = 0.050f; + + // Miscellaneous options + MouseDrawCursor = false; +#ifdef __APPLE__ + ConfigMacOSXBehaviors = true; // Set Mac OS X style defaults based on __APPLE__ compile time flag +#else + ConfigMacOSXBehaviors = false; +#endif + ConfigInputTrickleEventQueue = true; + ConfigInputTextCursorBlink = true; + ConfigInputTextEnterKeepActive = false; + ConfigDragClickToInputText = false; + ConfigWindowsResizeFromEdges = true; + ConfigWindowsMoveFromTitleBarOnly = false; + ConfigMemoryCompactTimer = 60.0f; + ConfigDebugBeginReturnValueOnce = false; + ConfigDebugBeginReturnValueLoop = false; + + // Platform Functions + // Note: Initialize() will setup default clipboard/ime handlers. + BackendPlatformName = BackendRendererName = NULL; + BackendPlatformUserData = BackendRendererUserData = BackendLanguageUserData = NULL; + PlatformLocaleDecimalPoint = '.'; + + // Input (NB: we already have memset zero the entire structure!) + MousePos = ImVec2(-FLT_MAX, -FLT_MAX); + MousePosPrev = ImVec2(-FLT_MAX, -FLT_MAX); + MouseSource = ImGuiMouseSource_Mouse; + for (int i = 0; i < IM_ARRAYSIZE(MouseDownDuration); i++) MouseDownDuration[i] = MouseDownDurationPrev[i] = -1.0f; + for (int i = 0; i < IM_ARRAYSIZE(KeysData); i++) { KeysData[i].DownDuration = KeysData[i].DownDurationPrev = -1.0f; } + AppAcceptingEvents = true; + BackendUsingLegacyKeyArrays = (ImS8)-1; + BackendUsingLegacyNavInputArray = true; // assume using legacy array until proven wrong +} + +// Pass in translated ASCII characters for text input. +// - with glfw you can get those from the callback set in glfwSetCharCallback() +// - on Windows you can get those using ToAscii+keyboard state, or via the WM_CHAR message +// FIXME: Should in theory be called "AddCharacterEvent()" to be consistent with new API +void ImGuiIO::AddInputCharacter(unsigned int c) +{ + IM_ASSERT(Ctx != NULL); + ImGuiContext& g = *Ctx; + if (c == 0 || !AppAcceptingEvents) + return; + + ImGuiInputEvent e; + e.Type = ImGuiInputEventType_Text; + e.Source = ImGuiInputSource_Keyboard; + e.EventId = g.InputEventsNextEventId++; + e.Text.Char = c; + g.InputEventsQueue.push_back(e); +} + +// UTF16 strings use surrogate pairs to encode codepoints >= 0x10000, so +// we should save the high surrogate. +void ImGuiIO::AddInputCharacterUTF16(ImWchar16 c) +{ + if ((c == 0 && InputQueueSurrogate == 0) || !AppAcceptingEvents) + return; + + if ((c & 0xFC00) == 0xD800) // High surrogate, must save + { + if (InputQueueSurrogate != 0) + AddInputCharacter(IM_UNICODE_CODEPOINT_INVALID); + InputQueueSurrogate = c; + return; + } + + ImWchar cp = c; + if (InputQueueSurrogate != 0) + { + if ((c & 0xFC00) != 0xDC00) // Invalid low surrogate + { + AddInputCharacter(IM_UNICODE_CODEPOINT_INVALID); + } + else + { +#if IM_UNICODE_CODEPOINT_MAX == 0xFFFF + cp = IM_UNICODE_CODEPOINT_INVALID; // Codepoint will not fit in ImWchar +#else + cp = (ImWchar)(((InputQueueSurrogate - 0xD800) << 10) + (c - 0xDC00) + 0x10000); +#endif + } + + InputQueueSurrogate = 0; + } + AddInputCharacter((unsigned)cp); +} + +void ImGuiIO::AddInputCharactersUTF8(const char* utf8_chars) +{ + if (!AppAcceptingEvents) + return; + while (*utf8_chars != 0) + { + unsigned int c = 0; + utf8_chars += ImTextCharFromUtf8(&c, utf8_chars, NULL); + AddInputCharacter(c); + } +} + +// Clear all incoming events. +void ImGuiIO::ClearEventsQueue() +{ + IM_ASSERT(Ctx != NULL); + ImGuiContext& g = *Ctx; + g.InputEventsQueue.clear(); +} + +// Clear current keyboard/mouse/gamepad state + current frame text input buffer. Equivalent to releasing all keys/buttons. +void ImGuiIO::ClearInputKeys() +{ +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + memset(KeysDown, 0, sizeof(KeysDown)); +#endif + for (int n = 0; n < IM_ARRAYSIZE(KeysData); n++) + { + KeysData[n].Down = false; + KeysData[n].DownDuration = -1.0f; + KeysData[n].DownDurationPrev = -1.0f; + } + KeyCtrl = KeyShift = KeyAlt = KeySuper = false; + KeyMods = ImGuiMod_None; + MousePos = ImVec2(-FLT_MAX, -FLT_MAX); + for (int n = 0; n < IM_ARRAYSIZE(MouseDown); n++) + { + MouseDown[n] = false; + MouseDownDuration[n] = MouseDownDurationPrev[n] = -1.0f; + } + MouseWheel = MouseWheelH = 0.0f; + InputQueueCharacters.resize(0); // Behavior of old ClearInputCharacters(). +} + +// Removed this as it is ambiguous/misleading and generally incorrect to use with the existence of a higher-level input queue. +// Current frame character buffer is now also cleared by ClearInputKeys(). +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS +void ImGuiIO::ClearInputCharacters() +{ + InputQueueCharacters.resize(0); +} +#endif + +static ImGuiInputEvent* FindLatestInputEvent(ImGuiContext* ctx, ImGuiInputEventType type, int arg = -1) +{ + ImGuiContext& g = *ctx; + for (int n = g.InputEventsQueue.Size - 1; n >= 0; n--) + { + ImGuiInputEvent* e = &g.InputEventsQueue[n]; + if (e->Type != type) + continue; + if (type == ImGuiInputEventType_Key && e->Key.Key != arg) + continue; + if (type == ImGuiInputEventType_MouseButton && e->MouseButton.Button != arg) + continue; + return e; + } + return NULL; +} + +// Queue a new key down/up event. +// - ImGuiKey key: Translated key (as in, generally ImGuiKey_A matches the key end-user would use to emit an 'A' character) +// - bool down: Is the key down? use false to signify a key release. +// - float analog_value: 0.0f..1.0f +// IMPORTANT: THIS FUNCTION AND OTHER "ADD" GRABS THE CONTEXT FROM OUR INSTANCE. +// WE NEED TO ENSURE THAT ALL FUNCTION CALLS ARE FULLFILLING THIS, WHICH IS WHY GetKeyData() HAS AN EXPLICIT CONTEXT. +void ImGuiIO::AddKeyAnalogEvent(ImGuiKey key, bool down, float analog_value) +{ + //if (e->Down) { IMGUI_DEBUG_LOG_IO("AddKeyEvent() Key='%s' %d, NativeKeycode = %d, NativeScancode = %d\n", ImGui::GetKeyName(e->Key), e->Down, e->NativeKeycode, e->NativeScancode); } + IM_ASSERT(Ctx != NULL); + if (key == ImGuiKey_None || !AppAcceptingEvents) + return; + ImGuiContext& g = *Ctx; + IM_ASSERT(ImGui::IsNamedKeyOrModKey(key)); // Backend needs to pass a valid ImGuiKey_ constant. 0..511 values are legacy native key codes which are not accepted by this API. + IM_ASSERT(ImGui::IsAliasKey(key) == false); // Backend cannot submit ImGuiKey_MouseXXX values they are automatically inferred from AddMouseXXX() events. + IM_ASSERT(key != ImGuiMod_Shortcut); // We could easily support the translation here but it seems saner to not accept it (TestEngine perform a translation itself) + + // Verify that backend isn't mixing up using new io.AddKeyEvent() api and old io.KeysDown[] + io.KeyMap[] data. +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + IM_ASSERT((BackendUsingLegacyKeyArrays == -1 || BackendUsingLegacyKeyArrays == 0) && "Backend needs to either only use io.AddKeyEvent(), either only fill legacy io.KeysDown[] + io.KeyMap[]. Not both!"); + if (BackendUsingLegacyKeyArrays == -1) + for (int n = ImGuiKey_NamedKey_BEGIN; n < ImGuiKey_NamedKey_END; n++) + IM_ASSERT(KeyMap[n] == -1 && "Backend needs to either only use io.AddKeyEvent(), either only fill legacy io.KeysDown[] + io.KeyMap[]. Not both!"); + BackendUsingLegacyKeyArrays = 0; +#endif + if (ImGui::IsGamepadKey(key)) + BackendUsingLegacyNavInputArray = false; + + // Filter duplicate (in particular: key mods and gamepad analog values are commonly spammed) + const ImGuiInputEvent* latest_event = FindLatestInputEvent(&g, ImGuiInputEventType_Key, (int)key); + const ImGuiKeyData* key_data = ImGui::GetKeyData(&g, key); + const bool latest_key_down = latest_event ? latest_event->Key.Down : key_data->Down; + const float latest_key_analog = latest_event ? latest_event->Key.AnalogValue : key_data->AnalogValue; + if (latest_key_down == down && latest_key_analog == analog_value) + return; + + // Add event + ImGuiInputEvent e; + e.Type = ImGuiInputEventType_Key; + e.Source = ImGui::IsGamepadKey(key) ? ImGuiInputSource_Gamepad : ImGuiInputSource_Keyboard; + e.EventId = g.InputEventsNextEventId++; + e.Key.Key = key; + e.Key.Down = down; + e.Key.AnalogValue = analog_value; + g.InputEventsQueue.push_back(e); +} + +void ImGuiIO::AddKeyEvent(ImGuiKey key, bool down) +{ + if (!AppAcceptingEvents) + return; + AddKeyAnalogEvent(key, down, down ? 1.0f : 0.0f); +} + +// [Optional] Call after AddKeyEvent(). +// Specify native keycode, scancode + Specify index for legacy <1.87 IsKeyXXX() functions with native indices. +// If you are writing a backend in 2022 or don't use IsKeyXXX() with native values that are not ImGuiKey values, you can avoid calling this. +void ImGuiIO::SetKeyEventNativeData(ImGuiKey key, int native_keycode, int native_scancode, int native_legacy_index) +{ + if (key == ImGuiKey_None) + return; + IM_ASSERT(ImGui::IsNamedKey(key)); // >= 512 + IM_ASSERT(native_legacy_index == -1 || ImGui::IsLegacyKey((ImGuiKey)native_legacy_index)); // >= 0 && <= 511 + IM_UNUSED(native_keycode); // Yet unused + IM_UNUSED(native_scancode); // Yet unused + + // Build native->imgui map so old user code can still call key functions with native 0..511 values. +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + const int legacy_key = (native_legacy_index != -1) ? native_legacy_index : native_keycode; + if (!ImGui::IsLegacyKey((ImGuiKey)legacy_key)) + return; + KeyMap[legacy_key] = key; + KeyMap[key] = legacy_key; +#else + IM_UNUSED(key); + IM_UNUSED(native_legacy_index); +#endif +} + +// Set master flag for accepting key/mouse/text events (default to true). Useful if you have native dialog boxes that are interrupting your application loop/refresh, and you want to disable events being queued while your app is frozen. +void ImGuiIO::SetAppAcceptingEvents(bool accepting_events) +{ + AppAcceptingEvents = accepting_events; +} + +// Queue a mouse move event +void ImGuiIO::AddMousePosEvent(float x, float y) +{ + IM_ASSERT(Ctx != NULL); + ImGuiContext& g = *Ctx; + if (!AppAcceptingEvents) + return; + + // Apply same flooring as UpdateMouseInputs() + ImVec2 pos((x > -FLT_MAX) ? ImFloorSigned(x) : x, (y > -FLT_MAX) ? ImFloorSigned(y) : y); + + // Filter duplicate + const ImGuiInputEvent* latest_event = FindLatestInputEvent(&g, ImGuiInputEventType_MousePos); + const ImVec2 latest_pos = latest_event ? ImVec2(latest_event->MousePos.PosX, latest_event->MousePos.PosY) : g.IO.MousePos; + if (latest_pos.x == pos.x && latest_pos.y == pos.y) + return; + + ImGuiInputEvent e; + e.Type = ImGuiInputEventType_MousePos; + e.Source = ImGuiInputSource_Mouse; + e.EventId = g.InputEventsNextEventId++; + e.MousePos.PosX = pos.x; + e.MousePos.PosY = pos.y; + e.MousePos.MouseSource = g.InputEventsNextMouseSource; + g.InputEventsQueue.push_back(e); +} + +void ImGuiIO::AddMouseButtonEvent(int mouse_button, bool down) +{ + IM_ASSERT(Ctx != NULL); + ImGuiContext& g = *Ctx; + IM_ASSERT(mouse_button >= 0 && mouse_button < ImGuiMouseButton_COUNT); + if (!AppAcceptingEvents) + return; + + // Filter duplicate + const ImGuiInputEvent* latest_event = FindLatestInputEvent(&g, ImGuiInputEventType_MouseButton, (int)mouse_button); + const bool latest_button_down = latest_event ? latest_event->MouseButton.Down : g.IO.MouseDown[mouse_button]; + if (latest_button_down == down) + return; + + ImGuiInputEvent e; + e.Type = ImGuiInputEventType_MouseButton; + e.Source = ImGuiInputSource_Mouse; + e.EventId = g.InputEventsNextEventId++; + e.MouseButton.Button = mouse_button; + e.MouseButton.Down = down; + e.MouseButton.MouseSource = g.InputEventsNextMouseSource; + g.InputEventsQueue.push_back(e); +} + +// Queue a mouse wheel event (some mouse/API may only have a Y component) +void ImGuiIO::AddMouseWheelEvent(float wheel_x, float wheel_y) +{ + IM_ASSERT(Ctx != NULL); + ImGuiContext& g = *Ctx; + + // Filter duplicate (unlike most events, wheel values are relative and easy to filter) + if (!AppAcceptingEvents || (wheel_x == 0.0f && wheel_y == 0.0f)) + return; + + ImGuiInputEvent e; + e.Type = ImGuiInputEventType_MouseWheel; + e.Source = ImGuiInputSource_Mouse; + e.EventId = g.InputEventsNextEventId++; + e.MouseWheel.WheelX = wheel_x; + e.MouseWheel.WheelY = wheel_y; + e.MouseWheel.MouseSource = g.InputEventsNextMouseSource; + g.InputEventsQueue.push_back(e); +} + +// This is not a real event, the data is latched in order to be stored in actual Mouse events. +// This is so that duplicate events (e.g. Windows sending extraneous WM_MOUSEMOVE) gets filtered and are not leading to actual source changes. +void ImGuiIO::AddMouseSourceEvent(ImGuiMouseSource source) +{ + IM_ASSERT(Ctx != NULL); + ImGuiContext& g = *Ctx; + g.InputEventsNextMouseSource = source; +} + +void ImGuiIO::AddFocusEvent(bool focused) +{ + IM_ASSERT(Ctx != NULL); + ImGuiContext& g = *Ctx; + + // Filter duplicate + const ImGuiInputEvent* latest_event = FindLatestInputEvent(&g, ImGuiInputEventType_Focus); + const bool latest_focused = latest_event ? latest_event->AppFocused.Focused : !g.IO.AppFocusLost; + if (latest_focused == focused || (ConfigDebugIgnoreFocusLoss && !focused)) + return; + + ImGuiInputEvent e; + e.Type = ImGuiInputEventType_Focus; + e.EventId = g.InputEventsNextEventId++; + e.AppFocused.Focused = focused; + g.InputEventsQueue.push_back(e); +} + +//----------------------------------------------------------------------------- +// [SECTION] MISC HELPERS/UTILITIES (Geometry functions) +//----------------------------------------------------------------------------- + +ImVec2 ImBezierCubicClosestPoint(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, const ImVec2& p, int num_segments) +{ + IM_ASSERT(num_segments > 0); // Use ImBezierCubicClosestPointCasteljau() + ImVec2 p_last = p1; + ImVec2 p_closest; + float p_closest_dist2 = FLT_MAX; + float t_step = 1.0f / (float)num_segments; + for (int i_step = 1; i_step <= num_segments; i_step++) + { + ImVec2 p_current = ImBezierCubicCalc(p1, p2, p3, p4, t_step * i_step); + ImVec2 p_line = ImLineClosestPoint(p_last, p_current, p); + float dist2 = ImLengthSqr(p - p_line); + if (dist2 < p_closest_dist2) + { + p_closest = p_line; + p_closest_dist2 = dist2; + } + p_last = p_current; + } + return p_closest; +} + +// Closely mimics PathBezierToCasteljau() in imgui_draw.cpp +static void ImBezierCubicClosestPointCasteljauStep(const ImVec2& p, ImVec2& p_closest, ImVec2& p_last, float& p_closest_dist2, float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4, float tess_tol, int level) +{ + float dx = x4 - x1; + float dy = y4 - y1; + float d2 = ((x2 - x4) * dy - (y2 - y4) * dx); + float d3 = ((x3 - x4) * dy - (y3 - y4) * dx); + d2 = (d2 >= 0) ? d2 : -d2; + d3 = (d3 >= 0) ? d3 : -d3; + if ((d2 + d3) * (d2 + d3) < tess_tol * (dx * dx + dy * dy)) + { + ImVec2 p_current(x4, y4); + ImVec2 p_line = ImLineClosestPoint(p_last, p_current, p); + float dist2 = ImLengthSqr(p - p_line); + if (dist2 < p_closest_dist2) + { + p_closest = p_line; + p_closest_dist2 = dist2; + } + p_last = p_current; + } + else if (level < 10) + { + float x12 = (x1 + x2)*0.5f, y12 = (y1 + y2)*0.5f; + float x23 = (x2 + x3)*0.5f, y23 = (y2 + y3)*0.5f; + float x34 = (x3 + x4)*0.5f, y34 = (y3 + y4)*0.5f; + float x123 = (x12 + x23)*0.5f, y123 = (y12 + y23)*0.5f; + float x234 = (x23 + x34)*0.5f, y234 = (y23 + y34)*0.5f; + float x1234 = (x123 + x234)*0.5f, y1234 = (y123 + y234)*0.5f; + ImBezierCubicClosestPointCasteljauStep(p, p_closest, p_last, p_closest_dist2, x1, y1, x12, y12, x123, y123, x1234, y1234, tess_tol, level + 1); + ImBezierCubicClosestPointCasteljauStep(p, p_closest, p_last, p_closest_dist2, x1234, y1234, x234, y234, x34, y34, x4, y4, tess_tol, level + 1); + } +} + +// tess_tol is generally the same value you would find in ImGui::GetStyle().CurveTessellationTol +// Because those ImXXX functions are lower-level than ImGui:: we cannot access this value automatically. +ImVec2 ImBezierCubicClosestPointCasteljau(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, const ImVec2& p, float tess_tol) +{ + IM_ASSERT(tess_tol > 0.0f); + ImVec2 p_last = p1; + ImVec2 p_closest; + float p_closest_dist2 = FLT_MAX; + ImBezierCubicClosestPointCasteljauStep(p, p_closest, p_last, p_closest_dist2, p1.x, p1.y, p2.x, p2.y, p3.x, p3.y, p4.x, p4.y, tess_tol, 0); + return p_closest; +} + +ImVec2 ImLineClosestPoint(const ImVec2& a, const ImVec2& b, const ImVec2& p) +{ + ImVec2 ap = p - a; + ImVec2 ab_dir = b - a; + float dot = ap.x * ab_dir.x + ap.y * ab_dir.y; + if (dot < 0.0f) + return a; + float ab_len_sqr = ab_dir.x * ab_dir.x + ab_dir.y * ab_dir.y; + if (dot > ab_len_sqr) + return b; + return a + ab_dir * dot / ab_len_sqr; +} + +bool ImTriangleContainsPoint(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p) +{ + bool b1 = ((p.x - b.x) * (a.y - b.y) - (p.y - b.y) * (a.x - b.x)) < 0.0f; + bool b2 = ((p.x - c.x) * (b.y - c.y) - (p.y - c.y) * (b.x - c.x)) < 0.0f; + bool b3 = ((p.x - a.x) * (c.y - a.y) - (p.y - a.y) * (c.x - a.x)) < 0.0f; + return ((b1 == b2) && (b2 == b3)); +} + +void ImTriangleBarycentricCoords(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p, float& out_u, float& out_v, float& out_w) +{ + ImVec2 v0 = b - a; + ImVec2 v1 = c - a; + ImVec2 v2 = p - a; + const float denom = v0.x * v1.y - v1.x * v0.y; + out_v = (v2.x * v1.y - v1.x * v2.y) / denom; + out_w = (v0.x * v2.y - v2.x * v0.y) / denom; + out_u = 1.0f - out_v - out_w; +} + +ImVec2 ImTriangleClosestPoint(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p) +{ + ImVec2 proj_ab = ImLineClosestPoint(a, b, p); + ImVec2 proj_bc = ImLineClosestPoint(b, c, p); + ImVec2 proj_ca = ImLineClosestPoint(c, a, p); + float dist2_ab = ImLengthSqr(p - proj_ab); + float dist2_bc = ImLengthSqr(p - proj_bc); + float dist2_ca = ImLengthSqr(p - proj_ca); + float m = ImMin(dist2_ab, ImMin(dist2_bc, dist2_ca)); + if (m == dist2_ab) + return proj_ab; + if (m == dist2_bc) + return proj_bc; + return proj_ca; +} + +//----------------------------------------------------------------------------- +// [SECTION] MISC HELPERS/UTILITIES (String, Format, Hash functions) +//----------------------------------------------------------------------------- + +// Consider using _stricmp/_strnicmp under Windows or strcasecmp/strncasecmp. We don't actually use either ImStricmp/ImStrnicmp in the codebase any more. +int ImStricmp(const char* str1, const char* str2) +{ + int d; + while ((d = ImToUpper(*str2) - ImToUpper(*str1)) == 0 && *str1) { str1++; str2++; } + return d; +} + +int ImStrnicmp(const char* str1, const char* str2, size_t count) +{ + int d = 0; + while (count > 0 && (d = ImToUpper(*str2) - ImToUpper(*str1)) == 0 && *str1) { str1++; str2++; count--; } + return d; +} + +void ImStrncpy(char* dst, const char* src, size_t count) +{ + if (count < 1) + return; + if (count > 1) + strncpy(dst, src, count - 1); + dst[count - 1] = 0; +} + +char* ImStrdup(const char* str) +{ + size_t len = strlen(str); + void* buf = IM_ALLOC(len + 1); + return (char*)memcpy(buf, (const void*)str, len + 1); +} + +char* ImStrdupcpy(char* dst, size_t* p_dst_size, const char* src) +{ + size_t dst_buf_size = p_dst_size ? *p_dst_size : strlen(dst) + 1; + size_t src_size = strlen(src) + 1; + if (dst_buf_size < src_size) + { + IM_FREE(dst); + dst = (char*)IM_ALLOC(src_size); + if (p_dst_size) + *p_dst_size = src_size; + } + return (char*)memcpy(dst, (const void*)src, src_size); +} + +const char* ImStrchrRange(const char* str, const char* str_end, char c) +{ + const char* p = (const char*)memchr(str, (int)c, str_end - str); + return p; +} + +int ImStrlenW(const ImWchar* str) +{ + //return (int)wcslen((const wchar_t*)str); // FIXME-OPT: Could use this when wchar_t are 16-bit + int n = 0; + while (*str++) n++; + return n; +} + +// Find end-of-line. Return pointer will point to either first \n, either str_end. +const char* ImStreolRange(const char* str, const char* str_end) +{ + const char* p = (const char*)memchr(str, '\n', str_end - str); + return p ? p : str_end; +} + +const ImWchar* ImStrbolW(const ImWchar* buf_mid_line, const ImWchar* buf_begin) // find beginning-of-line +{ + while (buf_mid_line > buf_begin && buf_mid_line[-1] != '\n') + buf_mid_line--; + return buf_mid_line; +} + +const char* ImStristr(const char* haystack, const char* haystack_end, const char* needle, const char* needle_end) +{ + if (!needle_end) + needle_end = needle + strlen(needle); + + const char un0 = (char)ImToUpper(*needle); + while ((!haystack_end && *haystack) || (haystack_end && haystack < haystack_end)) + { + if (ImToUpper(*haystack) == un0) + { + const char* b = needle + 1; + for (const char* a = haystack + 1; b < needle_end; a++, b++) + if (ImToUpper(*a) != ImToUpper(*b)) + break; + if (b == needle_end) + return haystack; + } + haystack++; + } + return NULL; +} + +// Trim str by offsetting contents when there's leading data + writing a \0 at the trailing position. We use this in situation where the cost is negligible. +void ImStrTrimBlanks(char* buf) +{ + char* p = buf; + while (p[0] == ' ' || p[0] == '\t') // Leading blanks + p++; + char* p_start = p; + while (*p != 0) // Find end of string + p++; + while (p > p_start && (p[-1] == ' ' || p[-1] == '\t')) // Trailing blanks + p--; + if (p_start != buf) // Copy memory if we had leading blanks + memmove(buf, p_start, p - p_start); + buf[p - p_start] = 0; // Zero terminate +} + +const char* ImStrSkipBlank(const char* str) +{ + while (str[0] == ' ' || str[0] == '\t') + str++; + return str; +} + +// A) MSVC version appears to return -1 on overflow, whereas glibc appears to return total count (which may be >= buf_size). +// Ideally we would test for only one of those limits at runtime depending on the behavior the vsnprintf(), but trying to deduct it at compile time sounds like a pandora can of worm. +// B) When buf==NULL vsnprintf() will return the output size. +#ifndef IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS + +// We support stb_sprintf which is much faster (see: https://github.com/nothings/stb/blob/master/stb_sprintf.h) +// You may set IMGUI_USE_STB_SPRINTF to use our default wrapper, or set IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS +// and setup the wrapper yourself. (FIXME-OPT: Some of our high-level operations such as ImGuiTextBuffer::appendfv() are +// designed using two-passes worst case, which probably could be improved using the stbsp_vsprintfcb() function.) +#ifdef IMGUI_USE_STB_SPRINTF +#ifndef IMGUI_DISABLE_STB_SPRINTF_IMPLEMENTATION +#define STB_SPRINTF_IMPLEMENTATION +#endif +#ifdef IMGUI_STB_SPRINTF_FILENAME +#include IMGUI_STB_SPRINTF_FILENAME +#else +#include "stb_sprintf.h" +#endif +#endif // #ifdef IMGUI_USE_STB_SPRINTF + +#if defined(_MSC_VER) && !defined(vsnprintf) +#define vsnprintf _vsnprintf +#endif + +int ImFormatString(char* buf, size_t buf_size, const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); +#ifdef IMGUI_USE_STB_SPRINTF + int w = stbsp_vsnprintf(buf, (int)buf_size, fmt, args); +#else + int w = vsnprintf(buf, buf_size, fmt, args); +#endif + va_end(args); + if (buf == NULL) + return w; + if (w == -1 || w >= (int)buf_size) + w = (int)buf_size - 1; + buf[w] = 0; + return w; +} + +int ImFormatStringV(char* buf, size_t buf_size, const char* fmt, va_list args) +{ +#ifdef IMGUI_USE_STB_SPRINTF + int w = stbsp_vsnprintf(buf, (int)buf_size, fmt, args); +#else + int w = vsnprintf(buf, buf_size, fmt, args); +#endif + if (buf == NULL) + return w; + if (w == -1 || w >= (int)buf_size) + w = (int)buf_size - 1; + buf[w] = 0; + return w; +} +#endif // #ifdef IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS + +void ImFormatStringToTempBuffer(const char** out_buf, const char** out_buf_end, const char* fmt, ...) +{ + ImGuiContext& g = *GImGui; + va_list args; + va_start(args, fmt); + if (fmt[0] == '%' && fmt[1] == 's' && fmt[2] == 0) + { + const char* buf = va_arg(args, const char*); // Skip formatting when using "%s" + *out_buf = buf; + if (out_buf_end) { *out_buf_end = buf + strlen(buf); } + } + else + { + int buf_len = ImFormatStringV(g.TempBuffer.Data, g.TempBuffer.Size, fmt, args); + *out_buf = g.TempBuffer.Data; + if (out_buf_end) { *out_buf_end = g.TempBuffer.Data + buf_len; } + } + va_end(args); +} + +void ImFormatStringToTempBufferV(const char** out_buf, const char** out_buf_end, const char* fmt, va_list args) +{ + ImGuiContext& g = *GImGui; + if (fmt[0] == '%' && fmt[1] == 's' && fmt[2] == 0) + { + const char* buf = va_arg(args, const char*); // Skip formatting when using "%s" + *out_buf = buf; + if (out_buf_end) { *out_buf_end = buf + strlen(buf); } + } + else + { + int buf_len = ImFormatStringV(g.TempBuffer.Data, g.TempBuffer.Size, fmt, args); + *out_buf = g.TempBuffer.Data; + if (out_buf_end) { *out_buf_end = g.TempBuffer.Data + buf_len; } + } +} + +// CRC32 needs a 1KB lookup table (not cache friendly) +// Although the code to generate the table is simple and shorter than the table itself, using a const table allows us to easily: +// - avoid an unnecessary branch/memory tap, - keep the ImHashXXX functions usable by static constructors, - make it thread-safe. +static const ImU32 GCrc32LookupTable[256] = +{ + 0x00000000,0x77073096,0xEE0E612C,0x990951BA,0x076DC419,0x706AF48F,0xE963A535,0x9E6495A3,0x0EDB8832,0x79DCB8A4,0xE0D5E91E,0x97D2D988,0x09B64C2B,0x7EB17CBD,0xE7B82D07,0x90BF1D91, + 0x1DB71064,0x6AB020F2,0xF3B97148,0x84BE41DE,0x1ADAD47D,0x6DDDE4EB,0xF4D4B551,0x83D385C7,0x136C9856,0x646BA8C0,0xFD62F97A,0x8A65C9EC,0x14015C4F,0x63066CD9,0xFA0F3D63,0x8D080DF5, + 0x3B6E20C8,0x4C69105E,0xD56041E4,0xA2677172,0x3C03E4D1,0x4B04D447,0xD20D85FD,0xA50AB56B,0x35B5A8FA,0x42B2986C,0xDBBBC9D6,0xACBCF940,0x32D86CE3,0x45DF5C75,0xDCD60DCF,0xABD13D59, + 0x26D930AC,0x51DE003A,0xC8D75180,0xBFD06116,0x21B4F4B5,0x56B3C423,0xCFBA9599,0xB8BDA50F,0x2802B89E,0x5F058808,0xC60CD9B2,0xB10BE924,0x2F6F7C87,0x58684C11,0xC1611DAB,0xB6662D3D, + 0x76DC4190,0x01DB7106,0x98D220BC,0xEFD5102A,0x71B18589,0x06B6B51F,0x9FBFE4A5,0xE8B8D433,0x7807C9A2,0x0F00F934,0x9609A88E,0xE10E9818,0x7F6A0DBB,0x086D3D2D,0x91646C97,0xE6635C01, + 0x6B6B51F4,0x1C6C6162,0x856530D8,0xF262004E,0x6C0695ED,0x1B01A57B,0x8208F4C1,0xF50FC457,0x65B0D9C6,0x12B7E950,0x8BBEB8EA,0xFCB9887C,0x62DD1DDF,0x15DA2D49,0x8CD37CF3,0xFBD44C65, + 0x4DB26158,0x3AB551CE,0xA3BC0074,0xD4BB30E2,0x4ADFA541,0x3DD895D7,0xA4D1C46D,0xD3D6F4FB,0x4369E96A,0x346ED9FC,0xAD678846,0xDA60B8D0,0x44042D73,0x33031DE5,0xAA0A4C5F,0xDD0D7CC9, + 0x5005713C,0x270241AA,0xBE0B1010,0xC90C2086,0x5768B525,0x206F85B3,0xB966D409,0xCE61E49F,0x5EDEF90E,0x29D9C998,0xB0D09822,0xC7D7A8B4,0x59B33D17,0x2EB40D81,0xB7BD5C3B,0xC0BA6CAD, + 0xEDB88320,0x9ABFB3B6,0x03B6E20C,0x74B1D29A,0xEAD54739,0x9DD277AF,0x04DB2615,0x73DC1683,0xE3630B12,0x94643B84,0x0D6D6A3E,0x7A6A5AA8,0xE40ECF0B,0x9309FF9D,0x0A00AE27,0x7D079EB1, + 0xF00F9344,0x8708A3D2,0x1E01F268,0x6906C2FE,0xF762575D,0x806567CB,0x196C3671,0x6E6B06E7,0xFED41B76,0x89D32BE0,0x10DA7A5A,0x67DD4ACC,0xF9B9DF6F,0x8EBEEFF9,0x17B7BE43,0x60B08ED5, + 0xD6D6A3E8,0xA1D1937E,0x38D8C2C4,0x4FDFF252,0xD1BB67F1,0xA6BC5767,0x3FB506DD,0x48B2364B,0xD80D2BDA,0xAF0A1B4C,0x36034AF6,0x41047A60,0xDF60EFC3,0xA867DF55,0x316E8EEF,0x4669BE79, + 0xCB61B38C,0xBC66831A,0x256FD2A0,0x5268E236,0xCC0C7795,0xBB0B4703,0x220216B9,0x5505262F,0xC5BA3BBE,0xB2BD0B28,0x2BB45A92,0x5CB36A04,0xC2D7FFA7,0xB5D0CF31,0x2CD99E8B,0x5BDEAE1D, + 0x9B64C2B0,0xEC63F226,0x756AA39C,0x026D930A,0x9C0906A9,0xEB0E363F,0x72076785,0x05005713,0x95BF4A82,0xE2B87A14,0x7BB12BAE,0x0CB61B38,0x92D28E9B,0xE5D5BE0D,0x7CDCEFB7,0x0BDBDF21, + 0x86D3D2D4,0xF1D4E242,0x68DDB3F8,0x1FDA836E,0x81BE16CD,0xF6B9265B,0x6FB077E1,0x18B74777,0x88085AE6,0xFF0F6A70,0x66063BCA,0x11010B5C,0x8F659EFF,0xF862AE69,0x616BFFD3,0x166CCF45, + 0xA00AE278,0xD70DD2EE,0x4E048354,0x3903B3C2,0xA7672661,0xD06016F7,0x4969474D,0x3E6E77DB,0xAED16A4A,0xD9D65ADC,0x40DF0B66,0x37D83BF0,0xA9BCAE53,0xDEBB9EC5,0x47B2CF7F,0x30B5FFE9, + 0xBDBDF21C,0xCABAC28A,0x53B39330,0x24B4A3A6,0xBAD03605,0xCDD70693,0x54DE5729,0x23D967BF,0xB3667A2E,0xC4614AB8,0x5D681B02,0x2A6F2B94,0xB40BBE37,0xC30C8EA1,0x5A05DF1B,0x2D02EF8D, +}; + +// Known size hash +// It is ok to call ImHashData on a string with known length but the ### operator won't be supported. +// FIXME-OPT: Replace with e.g. FNV1a hash? CRC32 pretty much randomly access 1KB. Need to do proper measurements. +ImGuiID ImHashData(const void* data_p, size_t data_size, ImGuiID seed) +{ + ImU32 crc = ~seed; + const unsigned char* data = (const unsigned char*)data_p; + const ImU32* crc32_lut = GCrc32LookupTable; + while (data_size-- != 0) + crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ *data++]; + return ~crc; +} + +// Zero-terminated string hash, with support for ### to reset back to seed value +// We support a syntax of "label###id" where only "###id" is included in the hash, and only "label" gets displayed. +// Because this syntax is rarely used we are optimizing for the common case. +// - If we reach ### in the string we discard the hash so far and reset to the seed. +// - We don't do 'current += 2; continue;' after handling ### to keep the code smaller/faster (measured ~10% diff in Debug build) +// FIXME-OPT: Replace with e.g. FNV1a hash? CRC32 pretty much randomly access 1KB. Need to do proper measurements. +ImGuiID ImHashStr(const char* data_p, size_t data_size, ImGuiID seed) +{ + seed = ~seed; + ImU32 crc = seed; + const unsigned char* data = (const unsigned char*)data_p; + const ImU32* crc32_lut = GCrc32LookupTable; + if (data_size != 0) + { + while (data_size-- != 0) + { + unsigned char c = *data++; + if (c == '#' && data_size >= 2 && data[0] == '#' && data[1] == '#') + crc = seed; + crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ c]; + } + } + else + { + while (unsigned char c = *data++) + { + if (c == '#' && data[0] == '#' && data[1] == '#') + crc = seed; + crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ c]; + } + } + return ~crc; +} + +//----------------------------------------------------------------------------- +// [SECTION] MISC HELPERS/UTILITIES (File functions) +//----------------------------------------------------------------------------- + +// Default file functions +#ifndef IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS + +ImFileHandle ImFileOpen(const char* filename, const char* mode) +{ +#if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS) && !defined(__CYGWIN__) && !defined(__GNUC__) + // We need a fopen() wrapper because MSVC/Windows fopen doesn't handle UTF-8 filenames. + // Previously we used ImTextCountCharsFromUtf8/ImTextStrFromUtf8 here but we now need to support ImWchar16 and ImWchar32! + const int filename_wsize = ::MultiByteToWideChar(CP_UTF8, 0, filename, -1, NULL, 0); + const int mode_wsize = ::MultiByteToWideChar(CP_UTF8, 0, mode, -1, NULL, 0); + ImVector buf; + buf.resize(filename_wsize + mode_wsize); + ::MultiByteToWideChar(CP_UTF8, 0, filename, -1, (wchar_t*)&buf[0], filename_wsize); + ::MultiByteToWideChar(CP_UTF8, 0, mode, -1, (wchar_t*)&buf[filename_wsize], mode_wsize); + return ::_wfopen((const wchar_t*)&buf[0], (const wchar_t*)&buf[filename_wsize]); +#else + return fopen(filename, mode); +#endif +} + +// We should in theory be using fseeko()/ftello() with off_t and _fseeki64()/_ftelli64() with __int64, waiting for the PR that does that in a very portable pre-C++11 zero-warnings way. +bool ImFileClose(ImFileHandle f) { return fclose(f) == 0; } +ImU64 ImFileGetSize(ImFileHandle f) { long off = 0, sz = 0; return ((off = ftell(f)) != -1 && !fseek(f, 0, SEEK_END) && (sz = ftell(f)) != -1 && !fseek(f, off, SEEK_SET)) ? (ImU64)sz : (ImU64)-1; } +ImU64 ImFileRead(void* data, ImU64 sz, ImU64 count, ImFileHandle f) { return fread(data, (size_t)sz, (size_t)count, f); } +ImU64 ImFileWrite(const void* data, ImU64 sz, ImU64 count, ImFileHandle f) { return fwrite(data, (size_t)sz, (size_t)count, f); } +#endif // #ifndef IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS + +// Helper: Load file content into memory +// Memory allocated with IM_ALLOC(), must be freed by user using IM_FREE() == ImGui::MemFree() +// This can't really be used with "rt" because fseek size won't match read size. +void* ImFileLoadToMemory(const char* filename, const char* mode, size_t* out_file_size, int padding_bytes) +{ + IM_ASSERT(filename && mode); + if (out_file_size) + *out_file_size = 0; + + ImFileHandle f; + if ((f = ImFileOpen(filename, mode)) == NULL) + return NULL; + + size_t file_size = (size_t)ImFileGetSize(f); + if (file_size == (size_t)-1) + { + ImFileClose(f); + return NULL; + } + + void* file_data = IM_ALLOC(file_size + padding_bytes); + if (file_data == NULL) + { + ImFileClose(f); + return NULL; + } + if (ImFileRead(file_data, 1, file_size, f) != file_size) + { + ImFileClose(f); + IM_FREE(file_data); + return NULL; + } + if (padding_bytes > 0) + memset((void*)(((char*)file_data) + file_size), 0, (size_t)padding_bytes); + + ImFileClose(f); + if (out_file_size) + *out_file_size = file_size; + + return file_data; +} + +//----------------------------------------------------------------------------- +// [SECTION] MISC HELPERS/UTILITIES (ImText* functions) +//----------------------------------------------------------------------------- + +IM_MSVC_RUNTIME_CHECKS_OFF + +// Convert UTF-8 to 32-bit character, process single character input. +// A nearly-branchless UTF-8 decoder, based on work of Christopher Wellons (https://github.com/skeeto/branchless-utf8). +// We handle UTF-8 decoding error by skipping forward. +int ImTextCharFromUtf8(unsigned int* out_char, const char* in_text, const char* in_text_end) +{ + static const char lengths[32] = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 3, 3, 4, 0 }; + static const int masks[] = { 0x00, 0x7f, 0x1f, 0x0f, 0x07 }; + static const uint32_t mins[] = { 0x400000, 0, 0x80, 0x800, 0x10000 }; + static const int shiftc[] = { 0, 18, 12, 6, 0 }; + static const int shifte[] = { 0, 6, 4, 2, 0 }; + int len = lengths[*(const unsigned char*)in_text >> 3]; + int wanted = len + (len ? 0 : 1); + + if (in_text_end == NULL) + in_text_end = in_text + wanted; // Max length, nulls will be taken into account. + + // Copy at most 'len' bytes, stop copying at 0 or past in_text_end. Branch predictor does a good job here, + // so it is fast even with excessive branching. + unsigned char s[4]; + s[0] = in_text + 0 < in_text_end ? in_text[0] : 0; + s[1] = in_text + 1 < in_text_end ? in_text[1] : 0; + s[2] = in_text + 2 < in_text_end ? in_text[2] : 0; + s[3] = in_text + 3 < in_text_end ? in_text[3] : 0; + + // Assume a four-byte character and load four bytes. Unused bits are shifted out. + *out_char = (uint32_t)(s[0] & masks[len]) << 18; + *out_char |= (uint32_t)(s[1] & 0x3f) << 12; + *out_char |= (uint32_t)(s[2] & 0x3f) << 6; + *out_char |= (uint32_t)(s[3] & 0x3f) << 0; + *out_char >>= shiftc[len]; + + // Accumulate the various error conditions. + int e = 0; + e = (*out_char < mins[len]) << 6; // non-canonical encoding + e |= ((*out_char >> 11) == 0x1b) << 7; // surrogate half? + e |= (*out_char > IM_UNICODE_CODEPOINT_MAX) << 8; // out of range? + e |= (s[1] & 0xc0) >> 2; + e |= (s[2] & 0xc0) >> 4; + e |= (s[3] ) >> 6; + e ^= 0x2a; // top two bits of each tail byte correct? + e >>= shifte[len]; + + if (e) + { + // No bytes are consumed when *in_text == 0 || in_text == in_text_end. + // One byte is consumed in case of invalid first byte of in_text. + // All available bytes (at most `len` bytes) are consumed on incomplete/invalid second to last bytes. + // Invalid or incomplete input may consume less bytes than wanted, therefore every byte has to be inspected in s. + wanted = ImMin(wanted, !!s[0] + !!s[1] + !!s[2] + !!s[3]); + *out_char = IM_UNICODE_CODEPOINT_INVALID; + } + + return wanted; +} + +int ImTextStrFromUtf8(ImWchar* buf, int buf_size, const char* in_text, const char* in_text_end, const char** in_text_remaining) +{ + ImWchar* buf_out = buf; + ImWchar* buf_end = buf + buf_size; + while (buf_out < buf_end - 1 && (!in_text_end || in_text < in_text_end) && *in_text) + { + unsigned int c; + in_text += ImTextCharFromUtf8(&c, in_text, in_text_end); + *buf_out++ = (ImWchar)c; + } + *buf_out = 0; + if (in_text_remaining) + *in_text_remaining = in_text; + return (int)(buf_out - buf); +} + +int ImTextCountCharsFromUtf8(const char* in_text, const char* in_text_end) +{ + int char_count = 0; + while ((!in_text_end || in_text < in_text_end) && *in_text) + { + unsigned int c; + in_text += ImTextCharFromUtf8(&c, in_text, in_text_end); + char_count++; + } + return char_count; +} + +// Based on stb_to_utf8() from github.com/nothings/stb/ +static inline int ImTextCharToUtf8_inline(char* buf, int buf_size, unsigned int c) +{ + if (c < 0x80) + { + buf[0] = (char)c; + return 1; + } + if (c < 0x800) + { + if (buf_size < 2) return 0; + buf[0] = (char)(0xc0 + (c >> 6)); + buf[1] = (char)(0x80 + (c & 0x3f)); + return 2; + } + if (c < 0x10000) + { + if (buf_size < 3) return 0; + buf[0] = (char)(0xe0 + (c >> 12)); + buf[1] = (char)(0x80 + ((c >> 6) & 0x3f)); + buf[2] = (char)(0x80 + ((c ) & 0x3f)); + return 3; + } + if (c <= 0x10FFFF) + { + if (buf_size < 4) return 0; + buf[0] = (char)(0xf0 + (c >> 18)); + buf[1] = (char)(0x80 + ((c >> 12) & 0x3f)); + buf[2] = (char)(0x80 + ((c >> 6) & 0x3f)); + buf[3] = (char)(0x80 + ((c ) & 0x3f)); + return 4; + } + // Invalid code point, the max unicode is 0x10FFFF + return 0; +} + +const char* ImTextCharToUtf8(char out_buf[5], unsigned int c) +{ + int count = ImTextCharToUtf8_inline(out_buf, 5, c); + out_buf[count] = 0; + return out_buf; +} + +// Not optimal but we very rarely use this function. +int ImTextCountUtf8BytesFromChar(const char* in_text, const char* in_text_end) +{ + unsigned int unused = 0; + return ImTextCharFromUtf8(&unused, in_text, in_text_end); +} + +static inline int ImTextCountUtf8BytesFromChar(unsigned int c) +{ + if (c < 0x80) return 1; + if (c < 0x800) return 2; + if (c < 0x10000) return 3; + if (c <= 0x10FFFF) return 4; + return 3; +} + +int ImTextStrToUtf8(char* out_buf, int out_buf_size, const ImWchar* in_text, const ImWchar* in_text_end) +{ + char* buf_p = out_buf; + const char* buf_end = out_buf + out_buf_size; + while (buf_p < buf_end - 1 && (!in_text_end || in_text < in_text_end) && *in_text) + { + unsigned int c = (unsigned int)(*in_text++); + if (c < 0x80) + *buf_p++ = (char)c; + else + buf_p += ImTextCharToUtf8_inline(buf_p, (int)(buf_end - buf_p - 1), c); + } + *buf_p = 0; + return (int)(buf_p - out_buf); +} + +int ImTextCountUtf8BytesFromStr(const ImWchar* in_text, const ImWchar* in_text_end) +{ + int bytes_count = 0; + while ((!in_text_end || in_text < in_text_end) && *in_text) + { + unsigned int c = (unsigned int)(*in_text++); + if (c < 0x80) + bytes_count++; + else + bytes_count += ImTextCountUtf8BytesFromChar(c); + } + return bytes_count; +} +IM_MSVC_RUNTIME_CHECKS_RESTORE + +//----------------------------------------------------------------------------- +// [SECTION] MISC HELPERS/UTILITIES (Color functions) +// Note: The Convert functions are early design which are not consistent with other API. +//----------------------------------------------------------------------------- + +IMGUI_API ImU32 ImAlphaBlendColors(ImU32 col_a, ImU32 col_b) +{ + float t = ((col_b >> IM_COL32_A_SHIFT) & 0xFF) / 255.f; + int r = ImLerp((int)(col_a >> IM_COL32_R_SHIFT) & 0xFF, (int)(col_b >> IM_COL32_R_SHIFT) & 0xFF, t); + int g = ImLerp((int)(col_a >> IM_COL32_G_SHIFT) & 0xFF, (int)(col_b >> IM_COL32_G_SHIFT) & 0xFF, t); + int b = ImLerp((int)(col_a >> IM_COL32_B_SHIFT) & 0xFF, (int)(col_b >> IM_COL32_B_SHIFT) & 0xFF, t); + return IM_COL32(r, g, b, 0xFF); +} + +ImVec4 ImGui::ColorConvertU32ToFloat4(ImU32 in) +{ + float s = 1.0f / 255.0f; + return ImVec4( + ((in >> IM_COL32_R_SHIFT) & 0xFF) * s, + ((in >> IM_COL32_G_SHIFT) & 0xFF) * s, + ((in >> IM_COL32_B_SHIFT) & 0xFF) * s, + ((in >> IM_COL32_A_SHIFT) & 0xFF) * s); +} + +ImU32 ImGui::ColorConvertFloat4ToU32(const ImVec4& in) +{ + ImU32 out; + out = ((ImU32)IM_F32_TO_INT8_SAT(in.x)) << IM_COL32_R_SHIFT; + out |= ((ImU32)IM_F32_TO_INT8_SAT(in.y)) << IM_COL32_G_SHIFT; + out |= ((ImU32)IM_F32_TO_INT8_SAT(in.z)) << IM_COL32_B_SHIFT; + out |= ((ImU32)IM_F32_TO_INT8_SAT(in.w)) << IM_COL32_A_SHIFT; + return out; +} + +// Convert rgb floats ([0-1],[0-1],[0-1]) to hsv floats ([0-1],[0-1],[0-1]), from Foley & van Dam p592 +// Optimized http://lolengine.net/blog/2013/01/13/fast-rgb-to-hsv +void ImGui::ColorConvertRGBtoHSV(float r, float g, float b, float& out_h, float& out_s, float& out_v) +{ + float K = 0.f; + if (g < b) + { + ImSwap(g, b); + K = -1.f; + } + if (r < g) + { + ImSwap(r, g); + K = -2.f / 6.f - K; + } + + const float chroma = r - (g < b ? g : b); + out_h = ImFabs(K + (g - b) / (6.f * chroma + 1e-20f)); + out_s = chroma / (r + 1e-20f); + out_v = r; +} + +// Convert hsv floats ([0-1],[0-1],[0-1]) to rgb floats ([0-1],[0-1],[0-1]), from Foley & van Dam p593 +// also http://en.wikipedia.org/wiki/HSL_and_HSV +void ImGui::ColorConvertHSVtoRGB(float h, float s, float v, float& out_r, float& out_g, float& out_b) +{ + if (s == 0.0f) + { + // gray + out_r = out_g = out_b = v; + return; + } + + h = ImFmod(h, 1.0f) / (60.0f / 360.0f); + int i = (int)h; + float f = h - (float)i; + float p = v * (1.0f - s); + float q = v * (1.0f - s * f); + float t = v * (1.0f - s * (1.0f - f)); + + switch (i) + { + case 0: out_r = v; out_g = t; out_b = p; break; + case 1: out_r = q; out_g = v; out_b = p; break; + case 2: out_r = p; out_g = v; out_b = t; break; + case 3: out_r = p; out_g = q; out_b = v; break; + case 4: out_r = t; out_g = p; out_b = v; break; + case 5: default: out_r = v; out_g = p; out_b = q; break; + } +} + +//----------------------------------------------------------------------------- +// [SECTION] ImGuiStorage +// Helper: Key->value storage +//----------------------------------------------------------------------------- + +// std::lower_bound but without the bullshit +static ImGuiStorage::ImGuiStoragePair* LowerBound(ImVector& data, ImGuiID key) +{ + ImGuiStorage::ImGuiStoragePair* first = data.Data; + ImGuiStorage::ImGuiStoragePair* last = data.Data + data.Size; + size_t count = (size_t)(last - first); + while (count > 0) + { + size_t count2 = count >> 1; + ImGuiStorage::ImGuiStoragePair* mid = first + count2; + if (mid->key < key) + { + first = ++mid; + count -= count2 + 1; + } + else + { + count = count2; + } + } + return first; +} + +// For quicker full rebuild of a storage (instead of an incremental one), you may add all your contents and then sort once. +void ImGuiStorage::BuildSortByKey() +{ + struct StaticFunc + { + static int IMGUI_CDECL PairComparerByID(const void* lhs, const void* rhs) + { + // We can't just do a subtraction because qsort uses signed integers and subtracting our ID doesn't play well with that. + if (((const ImGuiStoragePair*)lhs)->key > ((const ImGuiStoragePair*)rhs)->key) return +1; + if (((const ImGuiStoragePair*)lhs)->key < ((const ImGuiStoragePair*)rhs)->key) return -1; + return 0; + } + }; + ImQsort(Data.Data, (size_t)Data.Size, sizeof(ImGuiStoragePair), StaticFunc::PairComparerByID); +} + +int ImGuiStorage::GetInt(ImGuiID key, int default_val) const +{ + ImGuiStoragePair* it = LowerBound(const_cast&>(Data), key); + if (it == Data.end() || it->key != key) + return default_val; + return it->val_i; +} + +bool ImGuiStorage::GetBool(ImGuiID key, bool default_val) const +{ + return GetInt(key, default_val ? 1 : 0) != 0; +} + +float ImGuiStorage::GetFloat(ImGuiID key, float default_val) const +{ + ImGuiStoragePair* it = LowerBound(const_cast&>(Data), key); + if (it == Data.end() || it->key != key) + return default_val; + return it->val_f; +} + +void* ImGuiStorage::GetVoidPtr(ImGuiID key) const +{ + ImGuiStoragePair* it = LowerBound(const_cast&>(Data), key); + if (it == Data.end() || it->key != key) + return NULL; + return it->val_p; +} + +// References are only valid until a new value is added to the storage. Calling a Set***() function or a Get***Ref() function invalidates the pointer. +int* ImGuiStorage::GetIntRef(ImGuiID key, int default_val) +{ + ImGuiStoragePair* it = LowerBound(Data, key); + if (it == Data.end() || it->key != key) + it = Data.insert(it, ImGuiStoragePair(key, default_val)); + return &it->val_i; +} + +bool* ImGuiStorage::GetBoolRef(ImGuiID key, bool default_val) +{ + return (bool*)GetIntRef(key, default_val ? 1 : 0); +} + +float* ImGuiStorage::GetFloatRef(ImGuiID key, float default_val) +{ + ImGuiStoragePair* it = LowerBound(Data, key); + if (it == Data.end() || it->key != key) + it = Data.insert(it, ImGuiStoragePair(key, default_val)); + return &it->val_f; +} + +void** ImGuiStorage::GetVoidPtrRef(ImGuiID key, void* default_val) +{ + ImGuiStoragePair* it = LowerBound(Data, key); + if (it == Data.end() || it->key != key) + it = Data.insert(it, ImGuiStoragePair(key, default_val)); + return &it->val_p; +} + +// FIXME-OPT: Need a way to reuse the result of lower_bound when doing GetInt()/SetInt() - not too bad because it only happens on explicit interaction (maximum one a frame) +void ImGuiStorage::SetInt(ImGuiID key, int val) +{ + ImGuiStoragePair* it = LowerBound(Data, key); + if (it == Data.end() || it->key != key) + { + Data.insert(it, ImGuiStoragePair(key, val)); + return; + } + it->val_i = val; +} + +void ImGuiStorage::SetBool(ImGuiID key, bool val) +{ + SetInt(key, val ? 1 : 0); +} + +void ImGuiStorage::SetFloat(ImGuiID key, float val) +{ + ImGuiStoragePair* it = LowerBound(Data, key); + if (it == Data.end() || it->key != key) + { + Data.insert(it, ImGuiStoragePair(key, val)); + return; + } + it->val_f = val; +} + +void ImGuiStorage::SetVoidPtr(ImGuiID key, void* val) +{ + ImGuiStoragePair* it = LowerBound(Data, key); + if (it == Data.end() || it->key != key) + { + Data.insert(it, ImGuiStoragePair(key, val)); + return; + } + it->val_p = val; +} + +void ImGuiStorage::SetAllInt(int v) +{ + for (int i = 0; i < Data.Size; i++) + Data[i].val_i = v; +} + +//----------------------------------------------------------------------------- +// [SECTION] ImGuiTextFilter +//----------------------------------------------------------------------------- + +// Helper: Parse and apply text filters. In format "aaaaa[,bbbb][,ccccc]" +ImGuiTextFilter::ImGuiTextFilter(const char* default_filter) //-V1077 +{ + InputBuf[0] = 0; + CountGrep = 0; + if (default_filter) + { + ImStrncpy(InputBuf, default_filter, IM_ARRAYSIZE(InputBuf)); + Build(); + } +} + +bool ImGuiTextFilter::Draw(const char* label, float width) +{ + if (width != 0.0f) + ImGui::SetNextItemWidth(width); + + bool value_changed = ImGui::InputTextEx(label, label, InputBuf, IM_ARRAYSIZE(InputBuf), ImVec2(120, 30), NULL); + if (value_changed) + Build(); + return value_changed; +} + +void ImGuiTextFilter::ImGuiTextRange::split(char separator, ImVector* out) const +{ + out->resize(0); + const char* wb = b; + const char* we = wb; + while (we < e) + { + if (*we == separator) + { + out->push_back(ImGuiTextRange(wb, we)); + wb = we + 1; + } + we++; + } + if (wb != we) + out->push_back(ImGuiTextRange(wb, we)); +} + +void ImGuiTextFilter::Build() +{ + Filters.resize(0); + ImGuiTextRange input_range(InputBuf, InputBuf + strlen(InputBuf)); + input_range.split(',', &Filters); + + CountGrep = 0; + for (ImGuiTextRange& f : Filters) + { + while (f.b < f.e && ImCharIsBlankA(f.b[0])) + f.b++; + while (f.e > f.b && ImCharIsBlankA(f.e[-1])) + f.e--; + if (f.empty()) + continue; + if (f.b[0] != '-') + CountGrep += 1; + } +} + +bool ImGuiTextFilter::PassFilter(const char* text, const char* text_end) const +{ + if (Filters.empty()) + return true; + + if (text == NULL) + text = ""; + + for (const ImGuiTextRange& f : Filters) + { + if (f.empty()) + continue; + if (f.b[0] == '-') + { + // Subtract + if (ImStristr(text, text_end, f.b + 1, f.e) != NULL) + return false; + } + else + { + // Grep + if (ImStristr(text, text_end, f.b, f.e) != NULL) + return true; + } + } + + // Implicit * grep + if (CountGrep == 0) + return true; + + return false; +} + +//----------------------------------------------------------------------------- +// [SECTION] ImGuiTextBuffer, ImGuiTextIndex +//----------------------------------------------------------------------------- + +// On some platform vsnprintf() takes va_list by reference and modifies it. +// va_copy is the 'correct' way to copy a va_list but Visual Studio prior to 2013 doesn't have it. +#ifndef va_copy +#if defined(__GNUC__) || defined(__clang__) +#define va_copy(dest, src) __builtin_va_copy(dest, src) +#else +#define va_copy(dest, src) (dest = src) +#endif +#endif + +char ImGuiTextBuffer::EmptyString[1] = { 0 }; + +void ImGuiTextBuffer::append(const char* str, const char* str_end) +{ + int len = str_end ? (int)(str_end - str) : (int)strlen(str); + + // Add zero-terminator the first time + const int write_off = (Buf.Size != 0) ? Buf.Size : 1; + const int needed_sz = write_off + len; + if (write_off + len >= Buf.Capacity) + { + int new_capacity = Buf.Capacity * 2; + Buf.reserve(needed_sz > new_capacity ? needed_sz : new_capacity); + } + + Buf.resize(needed_sz); + memcpy(&Buf[write_off - 1], str, (size_t)len); + Buf[write_off - 1 + len] = 0; +} + +void ImGuiTextBuffer::appendf(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + appendfv(fmt, args); + va_end(args); +} + +// Helper: Text buffer for logging/accumulating text +void ImGuiTextBuffer::appendfv(const char* fmt, va_list args) +{ + va_list args_copy; + va_copy(args_copy, args); + + int len = ImFormatStringV(NULL, 0, fmt, args); // FIXME-OPT: could do a first pass write attempt, likely successful on first pass. + if (len <= 0) + { + va_end(args_copy); + return; + } + + // Add zero-terminator the first time + const int write_off = (Buf.Size != 0) ? Buf.Size : 1; + const int needed_sz = write_off + len; + if (write_off + len >= Buf.Capacity) + { + int new_capacity = Buf.Capacity * 2; + Buf.reserve(needed_sz > new_capacity ? needed_sz : new_capacity); + } + + Buf.resize(needed_sz); + ImFormatStringV(&Buf[write_off - 1], (size_t)len + 1, fmt, args_copy); + va_end(args_copy); +} + +void ImGuiTextIndex::append(const char* base, int old_size, int new_size) +{ + IM_ASSERT(old_size >= 0 && new_size >= old_size && new_size >= EndOffset); + if (old_size == new_size) + return; + if (EndOffset == 0 || base[EndOffset - 1] == '\n') + LineOffsets.push_back(EndOffset); + const char* base_end = base + new_size; + for (const char* p = base + old_size; (p = (const char*)memchr(p, '\n', base_end - p)) != 0; ) + if (++p < base_end) // Don't push a trailing offset on last \n + LineOffsets.push_back((int)(intptr_t)(p - base)); + EndOffset = ImMax(EndOffset, new_size); +} + +//----------------------------------------------------------------------------- +// [SECTION] ImGuiListClipper +// This is currently not as flexible/powerful as it should be and really confusing/spaghetti, mostly because we changed +// the API mid-way through development and support two ways to using the clipper, needs some rework (see TODO) +//----------------------------------------------------------------------------- + +// FIXME-TABLE: This prevents us from using ImGuiListClipper _inside_ a table cell. +// The problem we have is that without a Begin/End scheme for rows using the clipper is ambiguous. +static bool GetSkipItemForListClipping() +{ + ImGuiContext& g = *GImGui; + return (g.CurrentTable ? g.CurrentTable->HostSkipItems : g.CurrentWindow->SkipItems); +} + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS +// Legacy helper to calculate coarse clipping of large list of evenly sized items. +// This legacy API is not ideal because it assumes we will return a single contiguous rectangle. +// Prefer using ImGuiListClipper which can returns non-contiguous ranges. +void ImGui::CalcListClipping(int items_count, float items_height, int* out_items_display_start, int* out_items_display_end) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (g.LogEnabled) + { + // If logging is active, do not perform any clipping + *out_items_display_start = 0; + *out_items_display_end = items_count; + return; + } + if (GetSkipItemForListClipping()) + { + *out_items_display_start = *out_items_display_end = 0; + return; + } + + // We create the union of the ClipRect and the scoring rect which at worst should be 1 page away from ClipRect + // We don't include g.NavId's rectangle in there (unless g.NavJustMovedToId is set) because the rectangle enlargement can get costly. + ImRect rect = window->ClipRect; + if (g.NavMoveScoringItems) + rect.Add(g.NavScoringNoClipRect); + if (g.NavJustMovedToId && window->NavLastIds[0] == g.NavJustMovedToId) + rect.Add(WindowRectRelToAbs(window, window->NavRectRel[0])); // Could store and use NavJustMovedToRectRel + + const ImVec2 pos = window->DC.CursorPos; + int start = (int)((rect.Min.y - pos.y) / items_height); + int end = (int)((rect.Max.y - pos.y) / items_height); + + // When performing a navigation request, ensure we have one item extra in the direction we are moving to + // FIXME: Verify this works with tabbing + const bool is_nav_request = (g.NavMoveScoringItems && g.NavWindow && g.NavWindow->RootWindowForNav == window->RootWindowForNav); + if (is_nav_request && g.NavMoveClipDir == ImGuiDir_Up) + start--; + if (is_nav_request && g.NavMoveClipDir == ImGuiDir_Down) + end++; + + start = ImClamp(start, 0, items_count); + end = ImClamp(end + 1, start, items_count); + *out_items_display_start = start; + *out_items_display_end = end; +} +#endif + +static void ImGuiListClipper_SortAndFuseRanges(ImVector& ranges, int offset = 0) +{ + if (ranges.Size - offset <= 1) + return; + + // Helper to order ranges and fuse them together if possible (bubble sort is fine as we are only sorting 2-3 entries) + for (int sort_end = ranges.Size - offset - 1; sort_end > 0; --sort_end) + for (int i = offset; i < sort_end + offset; ++i) + if (ranges[i].Min > ranges[i + 1].Min) + ImSwap(ranges[i], ranges[i + 1]); + + // Now fuse ranges together as much as possible. + for (int i = 1 + offset; i < ranges.Size; i++) + { + IM_ASSERT(!ranges[i].PosToIndexConvert && !ranges[i - 1].PosToIndexConvert); + if (ranges[i - 1].Max < ranges[i].Min) + continue; + ranges[i - 1].Min = ImMin(ranges[i - 1].Min, ranges[i].Min); + ranges[i - 1].Max = ImMax(ranges[i - 1].Max, ranges[i].Max); + ranges.erase(ranges.Data + i); + i--; + } +} + +static void ImGuiListClipper_SeekCursorAndSetupPrevLine(float pos_y, float line_height) +{ + // Set cursor position and a few other things so that SetScrollHereY() and Columns() can work when seeking cursor. + // FIXME: It is problematic that we have to do that here, because custom/equivalent end-user code would stumble on the same issue. + // The clipper should probably have a final step to display the last item in a regular manner, maybe with an opt-out flag for data sets which may have costly seek? + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + float off_y = pos_y - window->DC.CursorPos.y; + window->DC.CursorPos.y = pos_y; + window->DC.CursorMaxPos.y = ImMax(window->DC.CursorMaxPos.y, pos_y - g.Style.ItemSpacing.y); + window->DC.CursorPosPrevLine.y = window->DC.CursorPos.y - line_height; // Setting those fields so that SetScrollHereY() can properly function after the end of our clipper usage. + window->DC.PrevLineSize.y = (line_height - g.Style.ItemSpacing.y); // If we end up needing more accurate data (to e.g. use SameLine) we may as well make the clipper have a fourth step to let user process and display the last item in their list. + if (ImGuiOldColumns* columns = window->DC.CurrentColumns) + columns->LineMinY = window->DC.CursorPos.y; // Setting this so that cell Y position are set properly + if (ImGuiTable* table = g.CurrentTable) + { + if (table->IsInsideRow) + ImGui::TableEndRow(table); + table->RowPosY2 = window->DC.CursorPos.y; + const int row_increase = (int)((off_y / line_height) + 0.5f); + //table->CurrentRow += row_increase; // Can't do without fixing TableEndRow() + table->RowBgColorCounter += row_increase; + } +} + +static void ImGuiListClipper_SeekCursorForItem(ImGuiListClipper* clipper, int item_n) +{ + // StartPosY starts from ItemsFrozen hence the subtraction + // Perform the add and multiply with double to allow seeking through larger ranges + ImGuiListClipperData* data = (ImGuiListClipperData*)clipper->TempData; + float pos_y = (float)((double)clipper->StartPosY + data->LossynessOffset + (double)(item_n - data->ItemsFrozen) * clipper->ItemsHeight); + ImGuiListClipper_SeekCursorAndSetupPrevLine(pos_y, clipper->ItemsHeight); +} + +ImGuiListClipper::ImGuiListClipper() +{ + memset(this, 0, sizeof(*this)); +} + +ImGuiListClipper::~ImGuiListClipper() +{ + End(); +} + +void ImGuiListClipper::Begin(int items_count, float items_height) +{ + if (Ctx == NULL) + Ctx = ImGui::GetCurrentContext(); + + ImGuiContext& g = *Ctx; + ImGuiWindow* window = g.CurrentWindow; + IMGUI_DEBUG_LOG_CLIPPER("Clipper: Begin(%d,%.2f) in '%s'\n", items_count, items_height, window->Name); + + if (ImGuiTable* table = g.CurrentTable) + if (table->IsInsideRow) + ImGui::TableEndRow(table); + + StartPosY = window->DC.CursorPos.y; + ItemsHeight = items_height; + ItemsCount = items_count; + DisplayStart = -1; + DisplayEnd = 0; + + // Acquire temporary buffer + if (++g.ClipperTempDataStacked > g.ClipperTempData.Size) + g.ClipperTempData.resize(g.ClipperTempDataStacked, ImGuiListClipperData()); + ImGuiListClipperData* data = &g.ClipperTempData[g.ClipperTempDataStacked - 1]; + data->Reset(this); + data->LossynessOffset = window->DC.CursorStartPosLossyness.y; + TempData = data; +} + +void ImGuiListClipper::End() +{ + if (ImGuiListClipperData* data = (ImGuiListClipperData*)TempData) + { + // In theory here we should assert that we are already at the right position, but it seems saner to just seek at the end and not assert/crash the user. + ImGuiContext& g = *Ctx; + IMGUI_DEBUG_LOG_CLIPPER("Clipper: End() in '%s'\n", g.CurrentWindow->Name); + if (ItemsCount >= 0 && ItemsCount < INT_MAX && DisplayStart >= 0) + ImGuiListClipper_SeekCursorForItem(this, ItemsCount); + + // Restore temporary buffer and fix back pointers which may be invalidated when nesting + IM_ASSERT(data->ListClipper == this); + data->StepNo = data->Ranges.Size; + if (--g.ClipperTempDataStacked > 0) + { + data = &g.ClipperTempData[g.ClipperTempDataStacked - 1]; + data->ListClipper->TempData = data; + } + TempData = NULL; + } + ItemsCount = -1; +} + +void ImGuiListClipper::IncludeItemsByIndex(int item_begin, int item_end) +{ + ImGuiListClipperData* data = (ImGuiListClipperData*)TempData; + IM_ASSERT(DisplayStart < 0); // Only allowed after Begin() and if there has not been a specified range yet. + IM_ASSERT(item_begin <= item_end); + if (item_begin < item_end) + data->Ranges.push_back(ImGuiListClipperRange::FromIndices(item_begin, item_end)); +} + +static bool ImGuiListClipper_StepInternal(ImGuiListClipper* clipper) +{ + ImGuiContext& g = *clipper->Ctx; + ImGuiWindow* window = g.CurrentWindow; + ImGuiListClipperData* data = (ImGuiListClipperData*)clipper->TempData; + IM_ASSERT(data != NULL && "Called ImGuiListClipper::Step() too many times, or before ImGuiListClipper::Begin() ?"); + + ImGuiTable* table = g.CurrentTable; + if (table && table->IsInsideRow) + ImGui::TableEndRow(table); + + // No items + if (clipper->ItemsCount == 0 || GetSkipItemForListClipping()) + return false; + + // While we are in frozen row state, keep displaying items one by one, unclipped + // FIXME: Could be stored as a table-agnostic state. + if (data->StepNo == 0 && table != NULL && !table->IsUnfrozenRows) + { + clipper->DisplayStart = data->ItemsFrozen; + clipper->DisplayEnd = ImMin(data->ItemsFrozen + 1, clipper->ItemsCount); + if (clipper->DisplayStart < clipper->DisplayEnd) + data->ItemsFrozen++; + return true; + } + + // Step 0: Let you process the first element (regardless of it being visible or not, so we can measure the element height) + bool calc_clipping = false; + if (data->StepNo == 0) + { + clipper->StartPosY = window->DC.CursorPos.y; + if (clipper->ItemsHeight <= 0.0f) + { + // Submit the first item (or range) so we can measure its height (generally the first range is 0..1) + data->Ranges.push_front(ImGuiListClipperRange::FromIndices(data->ItemsFrozen, data->ItemsFrozen + 1)); + clipper->DisplayStart = ImMax(data->Ranges[0].Min, data->ItemsFrozen); + clipper->DisplayEnd = ImMin(data->Ranges[0].Max, clipper->ItemsCount); + data->StepNo = 1; + return true; + } + calc_clipping = true; // If on the first step with known item height, calculate clipping. + } + + // Step 1: Let the clipper infer height from first range + if (clipper->ItemsHeight <= 0.0f) + { + IM_ASSERT(data->StepNo == 1); + if (table) + IM_ASSERT(table->RowPosY1 == clipper->StartPosY && table->RowPosY2 == window->DC.CursorPos.y); + + clipper->ItemsHeight = (window->DC.CursorPos.y - clipper->StartPosY) / (float)(clipper->DisplayEnd - clipper->DisplayStart); + bool affected_by_floating_point_precision = ImIsFloatAboveGuaranteedIntegerPrecision(clipper->StartPosY) || ImIsFloatAboveGuaranteedIntegerPrecision(window->DC.CursorPos.y); + if (affected_by_floating_point_precision) + clipper->ItemsHeight = window->DC.PrevLineSize.y + g.Style.ItemSpacing.y; // FIXME: Technically wouldn't allow multi-line entries. + + IM_ASSERT(clipper->ItemsHeight > 0.0f && "Unable to calculate item height! First item hasn't moved the cursor vertically!"); + calc_clipping = true; // If item height had to be calculated, calculate clipping afterwards. + } + + // Step 0 or 1: Calculate the actual ranges of visible elements. + const int already_submitted = clipper->DisplayEnd; + if (calc_clipping) + { + if (g.LogEnabled) + { + // If logging is active, do not perform any clipping + data->Ranges.push_back(ImGuiListClipperRange::FromIndices(0, clipper->ItemsCount)); + } + else + { + // Add range selected to be included for navigation + const bool is_nav_request = (g.NavMoveScoringItems && g.NavWindow && g.NavWindow->RootWindowForNav == window->RootWindowForNav); + if (is_nav_request) + data->Ranges.push_back(ImGuiListClipperRange::FromPositions(g.NavScoringNoClipRect.Min.y, g.NavScoringNoClipRect.Max.y, 0, 0)); + if (is_nav_request && (g.NavMoveFlags & ImGuiNavMoveFlags_IsTabbing) && g.NavTabbingDir == -1) + data->Ranges.push_back(ImGuiListClipperRange::FromIndices(clipper->ItemsCount - 1, clipper->ItemsCount)); + + // Add focused/active item + ImRect nav_rect_abs = ImGui::WindowRectRelToAbs(window, window->NavRectRel[0]); + if (g.NavId != 0 && window->NavLastIds[0] == g.NavId) + data->Ranges.push_back(ImGuiListClipperRange::FromPositions(nav_rect_abs.Min.y, nav_rect_abs.Max.y, 0, 0)); + + // Add visible range + const int off_min = (is_nav_request && g.NavMoveClipDir == ImGuiDir_Up) ? -1 : 0; + const int off_max = (is_nav_request && g.NavMoveClipDir == ImGuiDir_Down) ? 1 : 0; + data->Ranges.push_back(ImGuiListClipperRange::FromPositions(window->ClipRect.Min.y, window->ClipRect.Max.y, off_min, off_max)); + } + + // Convert position ranges to item index ranges + // - Very important: when a starting position is after our maximum item, we set Min to (ItemsCount - 1). This allows us to handle most forms of wrapping. + // - Due to how Selectable extra padding they tend to be "unaligned" with exact unit in the item list, + // which with the flooring/ceiling tend to lead to 2 items instead of one being submitted. + for (ImGuiListClipperRange& range : data->Ranges) + if (range.PosToIndexConvert) + { + int m1 = (int)(((double)range.Min - window->DC.CursorPos.y - data->LossynessOffset) / clipper->ItemsHeight); + int m2 = (int)((((double)range.Max - window->DC.CursorPos.y - data->LossynessOffset) / clipper->ItemsHeight) + 0.999999f); + range.Min = ImClamp(already_submitted + m1 + range.PosToIndexOffsetMin, already_submitted, clipper->ItemsCount - 1); + range.Max = ImClamp(already_submitted + m2 + range.PosToIndexOffsetMax, range.Min + 1, clipper->ItemsCount); + range.PosToIndexConvert = false; + } + ImGuiListClipper_SortAndFuseRanges(data->Ranges, data->StepNo); + } + + // Step 0+ (if item height is given in advance) or 1+: Display the next range in line. + while (data->StepNo < data->Ranges.Size) + { + clipper->DisplayStart = ImMax(data->Ranges[data->StepNo].Min, already_submitted); + clipper->DisplayEnd = ImMin(data->Ranges[data->StepNo].Max, clipper->ItemsCount); + if (clipper->DisplayStart > already_submitted) //-V1051 + ImGuiListClipper_SeekCursorForItem(clipper, clipper->DisplayStart); + data->StepNo++; + if (clipper->DisplayStart == clipper->DisplayEnd && data->StepNo < data->Ranges.Size) + continue; + return true; + } + + // After the last step: Let the clipper validate that we have reached the expected Y position (corresponding to element DisplayEnd), + // Advance the cursor to the end of the list and then returns 'false' to end the loop. + if (clipper->ItemsCount < INT_MAX) + ImGuiListClipper_SeekCursorForItem(clipper, clipper->ItemsCount); + + return false; +} + +bool ImGuiListClipper::Step() +{ + ImGuiContext& g = *Ctx; + bool need_items_height = (ItemsHeight <= 0.0f); + bool ret = ImGuiListClipper_StepInternal(this); + if (ret && (DisplayStart == DisplayEnd)) + ret = false; + if (g.CurrentTable && g.CurrentTable->IsUnfrozenRows == false) + IMGUI_DEBUG_LOG_CLIPPER("Clipper: Step(): inside frozen table row.\n"); + if (need_items_height && ItemsHeight > 0.0f) + IMGUI_DEBUG_LOG_CLIPPER("Clipper: Step(): computed ItemsHeight: %.2f.\n", ItemsHeight); + if (ret) + { + IMGUI_DEBUG_LOG_CLIPPER("Clipper: Step(): display %d to %d.\n", DisplayStart, DisplayEnd); + } + else + { + IMGUI_DEBUG_LOG_CLIPPER("Clipper: Step(): End.\n"); + End(); + } + return ret; +} + +//----------------------------------------------------------------------------- +// [SECTION] STYLING +//----------------------------------------------------------------------------- + +ImGuiStyle& ImGui::GetStyle() +{ + IM_ASSERT(GImGui != NULL && "No current context. Did you call ImGui::CreateContext() and ImGui::SetCurrentContext() ?"); + return GImGui->Style; +} + +ImU32 ImGui::GetColorU32(ImGuiCol idx, float alpha_mul) +{ + ImGuiStyle& style = GImGui->Style; + ImVec4 c = style.Colors[idx]; + c.w *= style.Alpha * alpha_mul; + return ColorConvertFloat4ToU32(c); +} +ImU32 ImGui::VGetColorU32(const ImVec4& col, float alpha_mul ) +{ + ImGuiStyle& style = GImGui->Style; + ImVec4 c = col; + c.w *= style.Alpha * alpha_mul; + return ColorConvertFloat4ToU32(c); +} +ImU32 ImGui::GetColorU32(const ImVec4& col) +{ + ImGuiStyle& style = GImGui->Style; + ImVec4 c = col; + c.w *= style.Alpha; + return ColorConvertFloat4ToU32(c); +} + +const ImVec4& ImGui::GetStyleColorVec4(ImGuiCol idx) +{ + ImGuiStyle& style = GImGui->Style; + return style.Colors[idx]; +} + +ImU32 ImGui::GetColorU32(ImU32 col) +{ + ImGuiStyle& style = GImGui->Style; + if (style.Alpha >= 1.0f) + return col; + ImU32 a = (col & IM_COL32_A_MASK) >> IM_COL32_A_SHIFT; + a = (ImU32)(a * style.Alpha); // We don't need to clamp 0..255 because Style.Alpha is in 0..1 range. + return (col & ~IM_COL32_A_MASK) | (a << IM_COL32_A_SHIFT); +} + +// FIXME: This may incur a round-trip (if the end user got their data from a float4) but eventually we aim to store the in-flight colors as ImU32 +void ImGui::PushStyleColor(ImGuiCol idx, ImU32 col) +{ + ImGuiContext& g = *GImGui; + ImGuiColorMod backup; + backup.Col = idx; + backup.BackupValue = g.Style.Colors[idx]; + g.ColorStack.push_back(backup); + g.Style.Colors[idx] = ColorConvertU32ToFloat4(col); +} + +void ImGui::PushStyleColor(ImGuiCol idx, const ImVec4& col) +{ + ImGuiContext& g = *GImGui; + ImGuiColorMod backup; + backup.Col = idx; + backup.BackupValue = g.Style.Colors[idx]; + g.ColorStack.push_back(backup); + g.Style.Colors[idx] = col; +} + +void ImGui::PopStyleColor(int count) +{ + ImGuiContext& g = *GImGui; + if (g.ColorStack.Size < count) + { + IM_ASSERT_USER_ERROR(g.ColorStack.Size > count, "Calling PopStyleColor() too many times: stack underflow."); + count = g.ColorStack.Size; + } + while (count > 0) + { + ImGuiColorMod& backup = g.ColorStack.back(); + g.Style.Colors[backup.Col] = backup.BackupValue; + g.ColorStack.pop_back(); + count--; + } +} + +static const ImGuiDataVarInfo GStyleVarInfo[] = +{ + { ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, Alpha) }, // ImGuiStyleVar_Alpha + { ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, DisabledAlpha) }, // ImGuiStyleVar_DisabledAlpha + { ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, WindowPadding) }, // ImGuiStyleVar_WindowPadding + { ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, WindowRounding) }, // ImGuiStyleVar_WindowRounding + { ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, WindowBorderSize) }, // ImGuiStyleVar_WindowBorderSize + { ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, WindowMinSize) }, // ImGuiStyleVar_WindowMinSize + { ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, WindowTitleAlign) }, // ImGuiStyleVar_WindowTitleAlign + { ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, ChildRounding) }, // ImGuiStyleVar_ChildRounding + { ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, ChildBorderSize) }, // ImGuiStyleVar_ChildBorderSize + { ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, PopupRounding) }, // ImGuiStyleVar_PopupRounding + { ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, PopupBorderSize) }, // ImGuiStyleVar_PopupBorderSize + { ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, FramePadding) }, // ImGuiStyleVar_FramePadding + { ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, FrameRounding) }, // ImGuiStyleVar_FrameRounding + { ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, FrameBorderSize) }, // ImGuiStyleVar_FrameBorderSize + { ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, ItemSpacing) }, // ImGuiStyleVar_ItemSpacing + { ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, ItemInnerSpacing) }, // ImGuiStyleVar_ItemInnerSpacing + { ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, IndentSpacing) }, // ImGuiStyleVar_IndentSpacing + { ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, CellPadding) }, // ImGuiStyleVar_CellPadding + { ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, ScrollbarSize) }, // ImGuiStyleVar_ScrollbarSize + { ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, ScrollbarRounding) }, // ImGuiStyleVar_ScrollbarRounding + { ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, GrabMinSize) }, // ImGuiStyleVar_GrabMinSize + { ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, GrabRounding) }, // ImGuiStyleVar_GrabRounding + { ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, TabRounding) }, // ImGuiStyleVar_TabRounding + { ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, ButtonTextAlign) }, // ImGuiStyleVar_ButtonTextAlign + { ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, SelectableTextAlign) }, // ImGuiStyleVar_SelectableTextAlign + { ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, SeparatorTextBorderSize) },// ImGuiStyleVar_SeparatorTextBorderSize + { ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, SeparatorTextAlign) }, // ImGuiStyleVar_SeparatorTextAlign + { ImGuiDataType_Float, 2, (ImU32)IM_OFFSETOF(ImGuiStyle, SeparatorTextPadding) }, // ImGuiStyleVar_SeparatorTextPadding +}; + +const ImGuiDataVarInfo* ImGui::GetStyleVarInfo(ImGuiStyleVar idx) +{ + IM_ASSERT(idx >= 0 && idx < ImGuiStyleVar_COUNT); + IM_STATIC_ASSERT(IM_ARRAYSIZE(GStyleVarInfo) == ImGuiStyleVar_COUNT); + return &GStyleVarInfo[idx]; +} + +void ImGui::PushStyleVar(ImGuiStyleVar idx, float val) +{ + ImGuiContext& g = *GImGui; + const ImGuiDataVarInfo* var_info = GetStyleVarInfo(idx); + if (var_info->Type == ImGuiDataType_Float && var_info->Count == 1) + { + float* pvar = (float*)var_info->GetVarPtr(&g.Style); + g.StyleVarStack.push_back(ImGuiStyleMod(idx, *pvar)); + *pvar = val; + return; + } + IM_ASSERT_USER_ERROR(0, "Called PushStyleVar() variant with wrong type!"); +} + +void ImGui::PushStyleVar(ImGuiStyleVar idx, const ImVec2& val) +{ + ImGuiContext& g = *GImGui; + const ImGuiDataVarInfo* var_info = GetStyleVarInfo(idx); + if (var_info->Type == ImGuiDataType_Float && var_info->Count == 2) + { + ImVec2* pvar = (ImVec2*)var_info->GetVarPtr(&g.Style); + g.StyleVarStack.push_back(ImGuiStyleMod(idx, *pvar)); + *pvar = val; + return; + } + IM_ASSERT_USER_ERROR(0, "Called PushStyleVar() variant with wrong type!"); +} + +void ImGui::PopStyleVar(int count) +{ + ImGuiContext& g = *GImGui; + if (g.StyleVarStack.Size < count) + { + IM_ASSERT_USER_ERROR(g.StyleVarStack.Size > count, "Calling PopStyleVar() too many times: stack underflow."); + count = g.StyleVarStack.Size; + } + while (count > 0) + { + // We avoid a generic memcpy(data, &backup.Backup.., GDataTypeSize[info->Type] * info->Count), the overhead in Debug is not worth it. + ImGuiStyleMod& backup = g.StyleVarStack.back(); + const ImGuiDataVarInfo* info = GetStyleVarInfo(backup.VarIdx); + void* data = info->GetVarPtr(&g.Style); + if (info->Type == ImGuiDataType_Float && info->Count == 1) { ((float*)data)[0] = backup.BackupFloat[0]; } + else if (info->Type == ImGuiDataType_Float && info->Count == 2) { ((float*)data)[0] = backup.BackupFloat[0]; ((float*)data)[1] = backup.BackupFloat[1]; } + g.StyleVarStack.pop_back(); + count--; + } +} + +const char* ImGui::GetStyleColorName(ImGuiCol idx) +{ + // Create switch-case from enum with regexp: ImGuiCol_{.*}, --> case ImGuiCol_\1: return "\1"; + switch (idx) + { + case ImGuiCol_Text: return "Text"; + case ImGuiCol_TextDisabled: return "TextDisabled"; + case ImGuiCol_WindowBg: return "WindowBg"; + case ImGuiCol_ChildBg: return "ChildBg"; + case ImGuiCol_PopupBg: return "PopupBg"; + case ImGuiCol_Border: return "Border"; + case ImGuiCol_BorderShadow: return "BorderShadow"; + case ImGuiCol_FrameBg: return "FrameBg"; + case ImGuiCol_FrameBgHovered: return "FrameBgHovered"; + case ImGuiCol_FrameBgActive: return "FrameBgActive"; + case ImGuiCol_TitleBg: return "TitleBg"; + case ImGuiCol_TitleBgActive: return "TitleBgActive"; + case ImGuiCol_TitleBgCollapsed: return "TitleBgCollapsed"; + case ImGuiCol_MenuBarBg: return "MenuBarBg"; + case ImGuiCol_ScrollbarBg: return "ScrollbarBg"; + case ImGuiCol_ScrollbarGrab: return "ScrollbarGrab"; + case ImGuiCol_ScrollbarGrabHovered: return "ScrollbarGrabHovered"; + case ImGuiCol_ScrollbarGrabActive: return "ScrollbarGrabActive"; + case ImGuiCol_CheckMark: return "CheckMark"; + case ImGuiCol_SliderGrab: return "SliderGrab"; + case ImGuiCol_SliderGrabActive: return "SliderGrabActive"; + case ImGuiCol_Button: return "Button"; + case ImGuiCol_ButtonHovered: return "ButtonHovered"; + case ImGuiCol_ButtonActive: return "ButtonActive"; + case ImGuiCol_Header: return "Header"; + case ImGuiCol_HeaderHovered: return "HeaderHovered"; + case ImGuiCol_HeaderActive: return "HeaderActive"; + case ImGuiCol_Separator: return "Separator"; + case ImGuiCol_SeparatorHovered: return "SeparatorHovered"; + case ImGuiCol_SeparatorActive: return "SeparatorActive"; + case ImGuiCol_ResizeGrip: return "ResizeGrip"; + case ImGuiCol_ResizeGripHovered: return "ResizeGripHovered"; + case ImGuiCol_ResizeGripActive: return "ResizeGripActive"; + case ImGuiCol_Tab: return "Tab"; + case ImGuiCol_TabHovered: return "TabHovered"; + case ImGuiCol_TabActive: return "TabActive"; + case ImGuiCol_TabUnfocused: return "TabUnfocused"; + case ImGuiCol_TabUnfocusedActive: return "TabUnfocusedActive"; + case ImGuiCol_PlotLines: return "PlotLines"; + case ImGuiCol_PlotLinesHovered: return "PlotLinesHovered"; + case ImGuiCol_PlotHistogram: return "PlotHistogram"; + case ImGuiCol_PlotHistogramHovered: return "PlotHistogramHovered"; + case ImGuiCol_TableHeaderBg: return "TableHeaderBg"; + case ImGuiCol_TableBorderStrong: return "TableBorderStrong"; + case ImGuiCol_TableBorderLight: return "TableBorderLight"; + case ImGuiCol_TableRowBg: return "TableRowBg"; + case ImGuiCol_TableRowBgAlt: return "TableRowBgAlt"; + case ImGuiCol_TextSelectedBg: return "TextSelectedBg"; + case ImGuiCol_DragDropTarget: return "DragDropTarget"; + case ImGuiCol_NavHighlight: return "NavHighlight"; + case ImGuiCol_NavWindowingHighlight: return "NavWindowingHighlight"; + case ImGuiCol_NavWindowingDimBg: return "NavWindowingDimBg"; + case ImGuiCol_ModalWindowDimBg: return "ModalWindowDimBg"; + case ImGuiCol_WindowShadow: return "WindowShadow"; + } + IM_ASSERT(0); + return "Unknown"; +} + + +//----------------------------------------------------------------------------- +// [SECTION] RENDER HELPERS +// Some of those (internal) functions are currently quite a legacy mess - their signature and behavior will change, +// we need a nicer separation between low-level functions and high-level functions relying on the ImGui context. +// Also see imgui_draw.cpp for some more which have been reworked to not rely on ImGui:: context. +//----------------------------------------------------------------------------- + +const char* ImGui::FindRenderedTextEnd(const char* text, const char* text_end) +{ + const char* text_display_end = text; + if (!text_end) + text_end = (const char*)-1; + + while (text_display_end < text_end && *text_display_end != '\0' && (text_display_end[0] != '#' || text_display_end[1] != '#')) + text_display_end++; + return text_display_end; +} + +// Internal ImGui functions to render text +// RenderText***() functions calls ImDrawList::AddText() calls ImBitmapFont::RenderText() +void ImGui::RenderText(ImVec2 pos, const char* text, const char* text_end, bool hide_text_after_hash) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + // Hide anything after a '##' string + const char* text_display_end; + if (hide_text_after_hash) + { + text_display_end = FindRenderedTextEnd(text, text_end); + } + else + { + if (!text_end) + text_end = text + strlen(text); // FIXME-OPT + text_display_end = text_end; + } + + if (text != text_display_end) + { + window->DrawList->AddText(g.Font, g.FontSize, pos, GetColorU32(ImGuiCol_Text), text, text_display_end); + if (g.LogEnabled) + LogRenderedText(&pos, text, text_display_end); + } +} + +void ImGui::RenderTextWrapped(ImVec2 pos, const char* text, const char* text_end, float wrap_width) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + if (!text_end) + text_end = text + strlen(text); // FIXME-OPT + + if (text != text_end) + { + window->DrawList->AddText(g.Font, g.FontSize, pos, GetColorU32(ImGuiCol_Text), text, text_end, wrap_width); + if (g.LogEnabled) + LogRenderedText(&pos, text, text_end); + } +} + +// Default clip_rect uses (pos_min,pos_max) +// Handle clipping on CPU immediately (vs typically let the GPU clip the triangles that are overlapping the clipping rectangle edges) +// FIXME-OPT: Since we have or calculate text_size we could coarse clip whole block immediately, especally for text above draw_list->DrawList. +// Effectively as this is called from widget doing their own coarse clipping it's not very valuable presently. Next time function will take +// better advantage of the render function taking size into account for coarse clipping. +void ImGui::RenderTextClippedEx(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_display_end, const ImVec2* text_size_if_known, const ImVec2& align, const ImRect* clip_rect) +{ + // Perform CPU side clipping for single clipped element to avoid using scissor state + ImVec2 pos = pos_min; + const ImVec2 text_size = text_size_if_known ? *text_size_if_known : CalcTextSize(text, text_display_end, false, 0.0f); + + const ImVec2* clip_min = clip_rect ? &clip_rect->Min : &pos_min; + const ImVec2* clip_max = clip_rect ? &clip_rect->Max : &pos_max; + bool need_clipping = (pos.x + text_size.x >= clip_max->x) || (pos.y + text_size.y >= clip_max->y); + if (clip_rect) // If we had no explicit clipping rectangle then pos==clip_min + need_clipping |= (pos.x < clip_min->x) || (pos.y < clip_min->y); + + // Align whole block. We should defer that to the better rendering function when we'll have support for individual line alignment. + if (align.x > 0.0f) pos.x = ImMax(pos.x, pos.x + (pos_max.x - pos.x - text_size.x) * align.x); + if (align.y > 0.0f) pos.y = ImMax(pos.y, pos.y + (pos_max.y - pos.y - text_size.y) * align.y); + + // Render + if (need_clipping) + { + ImVec4 fine_clip_rect(clip_min->x, clip_min->y, clip_max->x, clip_max->y); + draw_list->AddText(NULL, 0.0f, pos, GetColorU32(ImGuiCol_Text), text, text_display_end, 0.0f, &fine_clip_rect); + } + else + { + draw_list->AddText(NULL, 0.0f, pos, GetColorU32(ImGuiCol_Text), text, text_display_end, 0.0f, NULL); + } +} + +void ImGui::RenderTextClipped(const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align, const ImRect* clip_rect) +{ + // Hide anything after a '##' string + const char* text_display_end = FindRenderedTextEnd(text, text_end); + const int text_len = (int)(text_display_end - text); + if (text_len == 0) + return; + + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + RenderTextClippedEx(window->DrawList, pos_min, pos_max, text, text_display_end, text_size_if_known, align, clip_rect); + if (g.LogEnabled) + LogRenderedText(&pos_min, text, text_display_end); +} + +// Another overly complex function until we reorganize everything into a nice all-in-one helper. +// This is made more complex because we have dissociated the layout rectangle (pos_min..pos_max) which define _where_ the ellipsis is, from actual clipping of text and limit of the ellipsis display. +// This is because in the context of tabs we selectively hide part of the text when the Close Button appears, but we don't want the ellipsis to move. +void ImGui::RenderTextEllipsis(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, float clip_max_x, float ellipsis_max_x, const char* text, const char* text_end_full, const ImVec2* text_size_if_known) +{ + ImGuiContext& g = *GImGui; + if (text_end_full == NULL) + text_end_full = FindRenderedTextEnd(text); + const ImVec2 text_size = text_size_if_known ? *text_size_if_known : CalcTextSize(text, text_end_full, false, 0.0f); + + //draw_list->AddLine(ImVec2(pos_max.x, pos_min.y - 4), ImVec2(pos_max.x, pos_max.y + 4), IM_COL32(0, 0, 255, 255)); + //draw_list->AddLine(ImVec2(ellipsis_max_x, pos_min.y-2), ImVec2(ellipsis_max_x, pos_max.y+2), IM_COL32(0, 255, 0, 255)); + //draw_list->AddLine(ImVec2(clip_max_x, pos_min.y), ImVec2(clip_max_x, pos_max.y), IM_COL32(255, 0, 0, 255)); + // FIXME: We could technically remove (last_glyph->AdvanceX - last_glyph->X1) from text_size.x here and save a few pixels. + if (text_size.x > pos_max.x - pos_min.x) + { + // Hello wo... + // | | | + // min max ellipsis_max + // <-> this is generally some padding value + + const ImFont* font = draw_list->_Data->Font; + const float font_size = draw_list->_Data->FontSize; + const float font_scale = font_size / font->FontSize; + const char* text_end_ellipsis = NULL; + const float ellipsis_width = font->EllipsisWidth * font_scale; + + // We can now claim the space between pos_max.x and ellipsis_max.x + const float text_avail_width = ImMax((ImMax(pos_max.x, ellipsis_max_x) - ellipsis_width) - pos_min.x, 1.0f); + float text_size_clipped_x = font->CalcTextSizeA(font_size, text_avail_width, 0.0f, text, text_end_full, &text_end_ellipsis).x; + if (text == text_end_ellipsis && text_end_ellipsis < text_end_full) + { + // Always display at least 1 character if there's no room for character + ellipsis + text_end_ellipsis = text + ImTextCountUtf8BytesFromChar(text, text_end_full); + text_size_clipped_x = font->CalcTextSizeA(font_size, FLT_MAX, 0.0f, text, text_end_ellipsis).x; + } + while (text_end_ellipsis > text && ImCharIsBlankA(text_end_ellipsis[-1])) + { + // Trim trailing space before ellipsis (FIXME: Supporting non-ascii blanks would be nice, for this we need a function to backtrack in UTF-8 text) + text_end_ellipsis--; + text_size_clipped_x -= font->CalcTextSizeA(font_size, FLT_MAX, 0.0f, text_end_ellipsis, text_end_ellipsis + 1).x; // Ascii blanks are always 1 byte + } + + // Render text, render ellipsis + RenderTextClippedEx(draw_list, pos_min, ImVec2(clip_max_x, pos_max.y), text, text_end_ellipsis, &text_size, ImVec2(0.0f, 0.0f)); + ImVec2 ellipsis_pos = ImFloor(ImVec2(pos_min.x + text_size_clipped_x, pos_min.y)); + if (ellipsis_pos.x + ellipsis_width <= ellipsis_max_x) + for (int i = 0; i < font->EllipsisCharCount; i++, ellipsis_pos.x += font->EllipsisCharStep * font_scale) + font->RenderChar(draw_list, font_size, ellipsis_pos, GetColorU32(ImGuiCol_Text), font->EllipsisChar); + } + else + { + RenderTextClippedEx(draw_list, pos_min, ImVec2(clip_max_x, pos_max.y), text, text_end_full, &text_size, ImVec2(0.0f, 0.0f)); + } + + if (g.LogEnabled) + LogRenderedText(&pos_min, text, text_end_full); +} + +// Render a rectangle shaped with optional rounding and borders +void ImGui::RenderFrame(ImVec2 p_min, ImVec2 p_max, ImU32 fill_col, bool border, float rounding) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + window->DrawList->AddRectFilled(p_min, p_max, fill_col, rounding); + const float border_size = g.Style.FrameBorderSize; + if (border && border_size > 0.0f) + { + window->DrawList->AddShadowRect(p_min + ImVec2(1, 1), p_max + ImVec2(1, 1), GetColorU32(ImVec4{ ImColor(15, 15, 15, 55) }), 16.f, ImVec2(0, 0), 0, rounding); + window->DrawList->AddShadowRect(p_min, p_max, GetColorU32(ImVec4{ ImColor(15, 15, 15, 55) }), 16.f, ImVec2(0, 0), 0, rounding); + + + } +} +void ImGui::RenderFrameBorder(ImVec2 p_min, ImVec2 p_max, float rounding) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + const float border_size = g.Style.FrameBorderSize; + if (border_size > 0.0f) + { + //window->DrawList->AddRect(p_min + ImVec2(1, 1), p_max + ImVec2(1, 1), GetColorU32(ImVec4{ ImColor(15, 15, 15, 55) }), rounding, 0, border_size); + // window->DrawList->AddRect(p_min, p_max, GetColorU32(ImVec4{ImColor(15, 15, 15, 55)}), rounding, 0, border_size); + window->DrawList->AddShadowRect(p_min + ImVec2(1, 1), p_max + ImVec2(1, 1), GetColorU32(ImVec4{ ImColor(0, 0, 0, 55) }), 8.f, ImVec2(0,0) , 0, rounding); + window->DrawList->AddShadowRect(p_min , p_max, GetColorU32(ImVec4{ ImColor(0, 0, 0, 55) }), 8.f, ImVec2(0, 0), 0, rounding); + + + } +} + +void ImGui::RenderNavHighlight(const ImRect& bb, ImGuiID id, ImGuiNavHighlightFlags flags) +{ + ImGuiContext& g = *GImGui; + if (id != g.NavId) + return; + if (g.NavDisableHighlight && !(flags & ImGuiNavHighlightFlags_AlwaysDraw)) + return; + ImGuiWindow* window = g.CurrentWindow; + if (window->DC.NavHideHighlightOneFrame) + return; + + float rounding = (flags & ImGuiNavHighlightFlags_NoRounding) ? 0.0f : g.Style.FrameRounding; + ImRect display_rect = bb; + display_rect.ClipWith(window->ClipRect); + if (flags & ImGuiNavHighlightFlags_TypeDefault) + { + const float THICKNESS = 2.0f; + const float DISTANCE = 3.0f + THICKNESS * 0.5f; + display_rect.Expand(ImVec2(DISTANCE, DISTANCE)); + bool fully_visible = window->ClipRect.Contains(display_rect); + if (!fully_visible) + window->DrawList->PushClipRect(display_rect.Min, display_rect.Max); + window->DrawList->AddRect(display_rect.Min + ImVec2(THICKNESS * 0.5f, THICKNESS * 0.5f), display_rect.Max - ImVec2(THICKNESS * 0.5f, THICKNESS * 0.5f), GetColorU32(ImGuiCol_NavHighlight), rounding, 0, THICKNESS); + if (!fully_visible) + window->DrawList->PopClipRect(); + } + if (flags & ImGuiNavHighlightFlags_TypeThin) + { + window->DrawList->AddRect(display_rect.Min, display_rect.Max, GetColorU32(ImGuiCol_NavHighlight), rounding, 0, 1.0f); + } +} + +void ImGui::RenderMouseCursor(ImVec2 base_pos, float base_scale, ImGuiMouseCursor mouse_cursor, ImU32 col_fill, ImU32 col_border, ImU32 col_shadow) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(mouse_cursor > ImGuiMouseCursor_None && mouse_cursor < ImGuiMouseCursor_COUNT); + ImFontAtlas* font_atlas = g.DrawListSharedData.Font->ContainerAtlas; + for (ImGuiViewportP* viewport : g.Viewports) + { + // We scale cursor with current viewport/monitor, however Windows 10 for its own hardware cursor seems to be using a different scale factor. + ImVec2 offset, size, uv[4]; + if (!font_atlas->GetMouseCursorTexData(mouse_cursor, &offset, &size, &uv[0], &uv[2])) + continue; + const ImVec2 pos = base_pos - offset; + const float scale = base_scale; + if (!viewport->GetMainRect().Overlaps(ImRect(pos, pos + ImVec2(size.x + 2, size.y + 2) * scale))) + continue; + ImDrawList* draw_list = GetForegroundDrawList(viewport); + ImTextureID tex_id = font_atlas->TexID; + draw_list->PushTextureID(tex_id); + draw_list->AddImage(tex_id, pos + ImVec2(1, 0) * scale, pos + (ImVec2(1, 0) + size) * scale, uv[2], uv[3], col_shadow); + draw_list->AddImage(tex_id, pos + ImVec2(2, 0) * scale, pos + (ImVec2(2, 0) + size) * scale, uv[2], uv[3], col_shadow); + draw_list->AddImage(tex_id, pos, pos + size * scale, uv[2], uv[3], col_border); + draw_list->AddImage(tex_id, pos, pos + size * scale, uv[0], uv[1], col_fill); + draw_list->PopTextureID(); + } +} + +//----------------------------------------------------------------------------- +// [SECTION] INITIALIZATION, SHUTDOWN +//----------------------------------------------------------------------------- + +// Internal state access - if you want to share Dear ImGui state between modules (e.g. DLL) or allocate it yourself +// Note that we still point to some static data and members (such as GFontAtlas), so the state instance you end up using will point to the static data within its module +ImGuiContext* ImGui::GetCurrentContext() +{ + return GImGui; +} + +void ImGui::SetCurrentContext(ImGuiContext* ctx) +{ +#ifdef IMGUI_SET_CURRENT_CONTEXT_FUNC + IMGUI_SET_CURRENT_CONTEXT_FUNC(ctx); // For custom thread-based hackery you may want to have control over this. +#else + GImGui = ctx; +#endif +} + +void ImGui::SetAllocatorFunctions(ImGuiMemAllocFunc alloc_func, ImGuiMemFreeFunc free_func, void* user_data) +{ + GImAllocatorAllocFunc = alloc_func; + GImAllocatorFreeFunc = free_func; + GImAllocatorUserData = user_data; +} + +// This is provided to facilitate copying allocators from one static/DLL boundary to another (e.g. retrieve default allocator of your executable address space) +void ImGui::GetAllocatorFunctions(ImGuiMemAllocFunc* p_alloc_func, ImGuiMemFreeFunc* p_free_func, void** p_user_data) +{ + *p_alloc_func = GImAllocatorAllocFunc; + *p_free_func = GImAllocatorFreeFunc; + *p_user_data = GImAllocatorUserData; +} + +ImGuiContext* ImGui::CreateContext(ImFontAtlas* shared_font_atlas) +{ + ImGuiContext* prev_ctx = GetCurrentContext(); + ImGuiContext* ctx = IM_NEW(ImGuiContext)(shared_font_atlas); + SetCurrentContext(ctx); + Initialize(); + if (prev_ctx != NULL) + SetCurrentContext(prev_ctx); // Restore previous context if any, else keep new one. + return ctx; +} + +void ImGui::DestroyContext(ImGuiContext* ctx) +{ + ImGuiContext* prev_ctx = GetCurrentContext(); + if (ctx == NULL) //-V1051 + ctx = prev_ctx; + SetCurrentContext(ctx); + Shutdown(); + SetCurrentContext((prev_ctx != ctx) ? prev_ctx : NULL); + IM_DELETE(ctx); +} + +// IMPORTANT: ###xxx suffixes must be same in ALL languages +static const ImGuiLocEntry GLocalizationEntriesEnUS[] = +{ + { ImGuiLocKey_VersionStr, "Dear ImGui " IMGUI_VERSION " (" IM_STRINGIFY(IMGUI_VERSION_NUM) ")" }, + { ImGuiLocKey_TableSizeOne, "Size column to fit###SizeOne" }, + { ImGuiLocKey_TableSizeAllFit, "Size all columns to fit###SizeAll" }, + { ImGuiLocKey_TableSizeAllDefault, "Size all columns to default###SizeAll" }, + { ImGuiLocKey_TableResetOrder, "Reset order###ResetOrder" }, + { ImGuiLocKey_WindowingMainMenuBar, "(Main menu bar)" }, + { ImGuiLocKey_WindowingPopup, "(Popup)" }, + { ImGuiLocKey_WindowingUntitled, "(Untitled)" }, +}; + +void ImGui::Initialize() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(!g.Initialized && !g.SettingsLoaded); + + // Add .ini handle for ImGuiWindow and ImGuiTable types + { + ImGuiSettingsHandler ini_handler; + ini_handler.TypeName = "Window"; + ini_handler.TypeHash = ImHashStr("Window"); + ini_handler.ClearAllFn = WindowSettingsHandler_ClearAll; + ini_handler.ReadOpenFn = WindowSettingsHandler_ReadOpen; + ini_handler.ReadLineFn = WindowSettingsHandler_ReadLine; + ini_handler.ApplyAllFn = WindowSettingsHandler_ApplyAll; + ini_handler.WriteAllFn = WindowSettingsHandler_WriteAll; + AddSettingsHandler(&ini_handler); + } + TableSettingsAddSettingsHandler(); + + // Setup default localization table + LocalizeRegisterEntries(GLocalizationEntriesEnUS, IM_ARRAYSIZE(GLocalizationEntriesEnUS)); + + // Setup default platform clipboard/IME handlers. + g.IO.GetClipboardTextFn = GetClipboardTextFn_DefaultImpl; // Platform dependent default implementations + g.IO.SetClipboardTextFn = SetClipboardTextFn_DefaultImpl; + g.IO.ClipboardUserData = (void*)&g; // Default implementation use the ImGuiContext as user data (ideally those would be arguments to the function) + g.IO.SetPlatformImeDataFn = SetPlatformImeDataFn_DefaultImpl; + + // Create default viewport + ImGuiViewportP* viewport = IM_NEW(ImGuiViewportP)(); + g.Viewports.push_back(viewport); + g.TempBuffer.resize(1024 * 3 + 1, 0); + +#ifdef IMGUI_HAS_DOCK +#endif + + g.Initialized = true; +} + +// This function is merely here to free heap allocations. +void ImGui::Shutdown() +{ + // The fonts atlas can be used prior to calling NewFrame(), so we clear it even if g.Initialized is FALSE (which would happen if we never called NewFrame) + ImGuiContext& g = *GImGui; + if (g.IO.Fonts && g.FontAtlasOwnedByContext) + { + g.IO.Fonts->Locked = false; + IM_DELETE(g.IO.Fonts); + } + + g.IO.Fonts->Clear(); + g.IO.Fonts = NULL; + g.DrawListSharedData.TempBuffer.clear(); + + // Cleanup of other data are conditional on actually having initialized Dear ImGui. + if (!g.Initialized) + return; + + // Save settings (unless we haven't attempted to load them: CreateContext/DestroyContext without a call to NewFrame shouldn't save an empty file) + if (g.SettingsLoaded && g.IO.IniFilename != NULL) + SaveIniSettingsToDisk(g.IO.IniFilename); + + CallContextHooks(&g, ImGuiContextHookType_Shutdown); + + // Clear everything else + g.Windows.clear_delete(); + g.WindowsFocusOrder.clear(); + g.WindowsTempSortBuffer.clear(); + g.CurrentWindow = NULL; + g.CurrentWindowStack.clear(); + g.WindowsById.Clear(); + g.NavWindow = NULL; + g.HoveredWindow = g.HoveredWindowUnderMovingWindow = NULL; + g.ActiveIdWindow = g.ActiveIdPreviousFrameWindow = NULL; + g.MovingWindow = NULL; + + g.KeysRoutingTable.Clear(); + + g.ColorStack.clear(); + g.StyleVarStack.clear(); + g.FontStack.clear(); + g.OpenPopupStack.clear(); + g.BeginPopupStack.clear(); + g.NavTreeNodeStack.clear(); + + g.Viewports.clear_delete(); + + g.TabBars.Clear(); + g.CurrentTabBarStack.clear(); + g.ShrinkWidthBuffer.clear(); + + g.ClipperTempData.clear_destruct(); + + g.Tables.Clear(); + g.TablesTempData.clear_destruct(); + g.DrawChannelsTempMergeBuffer.clear(); + + g.ClipboardHandlerData.clear(); + g.MenusIdSubmittedThisFrame.clear(); + g.InputTextState.ClearFreeMemory(); + g.InputTextDeactivatedState.ClearFreeMemory(); + + g.SettingsWindows.clear(); + g.SettingsHandlers.clear(); + + if (g.LogFile) + { +#ifndef IMGUI_DISABLE_TTY_FUNCTIONS + if (g.LogFile != stdout) +#endif + ImFileClose(g.LogFile); + g.LogFile = NULL; + } + g.LogBuffer.clear(); + g.DebugLogBuf.clear(); + g.DebugLogIndex.clear(); + + g.Initialized = false; +} + +// No specific ordering/dependency support, will see as needed +ImGuiID ImGui::AddContextHook(ImGuiContext* ctx, const ImGuiContextHook* hook) +{ + ImGuiContext& g = *ctx; + IM_ASSERT(hook->Callback != NULL && hook->HookId == 0 && hook->Type != ImGuiContextHookType_PendingRemoval_); + g.Hooks.push_back(*hook); + g.Hooks.back().HookId = ++g.HookIdNext; + return g.HookIdNext; +} + +// Deferred removal, avoiding issue with changing vector while iterating it +void ImGui::RemoveContextHook(ImGuiContext* ctx, ImGuiID hook_id) +{ + ImGuiContext& g = *ctx; + IM_ASSERT(hook_id != 0); + for (ImGuiContextHook& hook : g.Hooks) + if (hook.HookId == hook_id) + hook.Type = ImGuiContextHookType_PendingRemoval_; +} + +// Call context hooks (used by e.g. test engine) +// We assume a small number of hooks so all stored in same array +void ImGui::CallContextHooks(ImGuiContext* ctx, ImGuiContextHookType hook_type) +{ + ImGuiContext& g = *ctx; + for (ImGuiContextHook& hook : g.Hooks) + if (hook.Type == hook_type) + hook.Callback(&g, &hook); +} + + +//----------------------------------------------------------------------------- +// [SECTION] MAIN CODE (most of the code! lots of stuff, needs tidying up!) +//----------------------------------------------------------------------------- + +// ImGuiWindow is mostly a dumb struct. It merely has a constructor and a few helper methods +ImGuiWindow::ImGuiWindow(ImGuiContext* ctx, const char* name) : DrawListInst(NULL) +{ + memset(this, 0, sizeof(*this)); + Ctx = ctx; + Name = ImStrdup(name); + NameBufLen = (int)strlen(name) + 1; + ID = ImHashStr(name); + IDStack.push_back(ID); + MoveId = GetID("#MOVE"); + ScrollTarget = ImVec2(FLT_MAX, FLT_MAX); + ScrollTargetCenterRatio = ImVec2(0.5f, 0.5f); + AutoFitFramesX = AutoFitFramesY = -1; + AutoPosLastDirection = ImGuiDir_None; + SetWindowPosAllowFlags = SetWindowSizeAllowFlags = SetWindowCollapsedAllowFlags = 0; + SetWindowPosVal = SetWindowPosPivot = ImVec2(FLT_MAX, FLT_MAX); + LastFrameActive = -1; + LastTimeActive = -1.0f; + FontWindowScale = 1.0f; + SettingsOffset = -1; + DrawList = &DrawListInst; + DrawList->_Data = &Ctx->DrawListSharedData; + DrawList->_OwnerName = Name; + NavPreferredScoringPosRel[0] = NavPreferredScoringPosRel[1] = ImVec2(FLT_MAX, FLT_MAX); +} + +ImGuiWindow::~ImGuiWindow() +{ + IM_ASSERT(DrawList == &DrawListInst); + IM_DELETE(Name); + ColumnsStorage.clear_destruct(); +} + +ImGuiID ImGuiWindow::GetID(const char* str, const char* str_end) +{ + ImGuiID seed = IDStack.back(); + ImGuiID id = ImHashStr(str, str_end ? (str_end - str) : 0, seed); + ImGuiContext& g = *Ctx; + if (g.DebugHookIdInfo == id) + ImGui::DebugHookIdInfo(id, ImGuiDataType_String, str, str_end); + return id; +} + +ImGuiID ImGuiWindow::GetID(const void* ptr) +{ + ImGuiID seed = IDStack.back(); + ImGuiID id = ImHashData(&ptr, sizeof(void*), seed); + ImGuiContext& g = *Ctx; + if (g.DebugHookIdInfo == id) + ImGui::DebugHookIdInfo(id, ImGuiDataType_Pointer, ptr, NULL); + return id; +} + +ImGuiID ImGuiWindow::GetID(int n) +{ + ImGuiID seed = IDStack.back(); + ImGuiID id = ImHashData(&n, sizeof(n), seed); + ImGuiContext& g = *Ctx; + if (g.DebugHookIdInfo == id) + ImGui::DebugHookIdInfo(id, ImGuiDataType_S32, (void*)(intptr_t)n, NULL); + return id; +} + +// This is only used in rare/specific situations to manufacture an ID out of nowhere. +ImGuiID ImGuiWindow::GetIDFromRectangle(const ImRect& r_abs) +{ + ImGuiID seed = IDStack.back(); + ImRect r_rel = ImGui::WindowRectAbsToRel(this, r_abs); + ImGuiID id = ImHashData(&r_rel, sizeof(r_rel), seed); + return id; +} + +static void SetCurrentWindow(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + g.CurrentWindow = window; + g.CurrentTable = window && window->DC.CurrentTableIdx != -1 ? g.Tables.GetByIndex(window->DC.CurrentTableIdx) : NULL; + if (window) + { + g.FontSize = g.DrawListSharedData.FontSize = window->CalcFontSize(); + ImGui::NavUpdateCurrentWindowIsScrollPushableX(); + } +} + +void ImGui::GcCompactTransientMiscBuffers() +{ + ImGuiContext& g = *GImGui; + g.ItemFlagsStack.clear(); + g.GroupStack.clear(); + TableGcCompactSettings(); +} + +// Free up/compact internal window buffers, we can use this when a window becomes unused. +// Not freed: +// - ImGuiWindow, ImGuiWindowSettings, Name, StateStorage, ColumnsStorage (may hold useful data) +// This should have no noticeable visual effect. When the window reappear however, expect new allocation/buffer growth/copy cost. +void ImGui::GcCompactTransientWindowBuffers(ImGuiWindow* window) +{ + window->MemoryCompacted = true; + window->MemoryDrawListIdxCapacity = window->DrawList->IdxBuffer.Capacity; + window->MemoryDrawListVtxCapacity = window->DrawList->VtxBuffer.Capacity; + window->IDStack.clear(); + window->DrawList->_ClearFreeMemory(); + window->DC.ChildWindows.clear(); + window->DC.ItemWidthStack.clear(); + window->DC.TextWrapPosStack.clear(); +} + +void ImGui::GcAwakeTransientWindowBuffers(ImGuiWindow* window) +{ + // We stored capacity of the ImDrawList buffer to reduce growth-caused allocation/copy when awakening. + // The other buffers tends to amortize much faster. + window->MemoryCompacted = false; + window->DrawList->IdxBuffer.reserve(window->MemoryDrawListIdxCapacity); + window->DrawList->VtxBuffer.reserve(window->MemoryDrawListVtxCapacity); + window->MemoryDrawListIdxCapacity = window->MemoryDrawListVtxCapacity = 0; +} + +void ImGui::SetActiveID(ImGuiID id, ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + + // Clear previous active id + if (g.ActiveId != 0) + { + // While most behaved code would make an effort to not steal active id during window move/drag operations, + // we at least need to be resilient to it. Canceling the move is rather aggressive and users of 'master' branch + // may prefer the weird ill-defined half working situation ('docking' did assert), so may need to rework that. + if (g.MovingWindow != NULL && g.ActiveId == g.MovingWindow->MoveId) + { + IMGUI_DEBUG_LOG_ACTIVEID("SetActiveID() cancel MovingWindow\n"); + g.MovingWindow = NULL; + } + + // This could be written in a more general way (e.g associate a hook to ActiveId), + // but since this is currently quite an exception we'll leave it as is. + // One common scenario leading to this is: pressing Key ->NavMoveRequestApplyResult() -> ClearActiveId() + if (g.InputTextState.ID == g.ActiveId) + InputTextDeactivateHook(g.ActiveId); + } + + // Set active id + g.ActiveIdIsJustActivated = (g.ActiveId != id); + if (g.ActiveIdIsJustActivated) + { + IMGUI_DEBUG_LOG_ACTIVEID("SetActiveID() old:0x%08X (window \"%s\") -> new:0x%08X (window \"%s\")\n", g.ActiveId, g.ActiveIdWindow ? g.ActiveIdWindow->Name : "", id, window ? window->Name : ""); + g.ActiveIdTimer = 0.0f; + g.ActiveIdHasBeenPressedBefore = false; + g.ActiveIdHasBeenEditedBefore = false; + g.ActiveIdMouseButton = -1; + if (id != 0) + { + g.LastActiveId = id; + g.LastActiveIdTimer = 0.0f; + } + } + g.ActiveId = id; + g.ActiveIdAllowOverlap = false; + g.ActiveIdNoClearOnFocusLoss = false; + g.ActiveIdWindow = window; + g.ActiveIdHasBeenEditedThisFrame = false; + if (id) + { + g.ActiveIdIsAlive = id; + g.ActiveIdSource = (g.NavActivateId == id || g.NavJustMovedToId == id) ? g.NavInputSource : ImGuiInputSource_Mouse; + IM_ASSERT(g.ActiveIdSource != ImGuiInputSource_None); + } + + // Clear declaration of inputs claimed by the widget + // (Please note that this is WIP and not all keys/inputs are thoroughly declared by all widgets yet) + g.ActiveIdUsingNavDirMask = 0x00; + g.ActiveIdUsingAllKeyboardKeys = false; +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + g.ActiveIdUsingNavInputMask = 0x00; +#endif +} + +void ImGui::ClearActiveID() +{ + SetActiveID(0, NULL); // g.ActiveId = 0; +} + +void ImGui::SetHoveredID(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + g.HoveredId = id; + g.HoveredIdAllowOverlap = false; + if (id != 0 && g.HoveredIdPreviousFrame != id) + g.HoveredIdTimer = g.HoveredIdNotActiveTimer = 0.0f; +} + +ImGuiID ImGui::GetHoveredID() +{ + ImGuiContext& g = *GImGui; + return g.HoveredId ? g.HoveredId : g.HoveredIdPreviousFrame; +} + +// This is called by ItemAdd(). +// Code not using ItemAdd() may need to call this manually otherwise ActiveId will be cleared. In IMGUI_VERSION_NUM < 18717 this was called by GetID(). +void ImGui::KeepAliveID(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + if (g.ActiveId == id) + g.ActiveIdIsAlive = id; + if (g.ActiveIdPreviousFrame == id) + g.ActiveIdPreviousFrameIsAlive = true; +} + +void ImGui::MarkItemEdited(ImGuiID id) +{ + // This marking is solely to be able to provide info for IsItemDeactivatedAfterEdit(). + // ActiveId might have been released by the time we call this (as in the typical press/release button behavior) but still need to fill the data. + ImGuiContext& g = *GImGui; + if (g.LockMarkEdited > 0) + return; + if (g.ActiveId == id || g.ActiveId == 0) + { + g.ActiveIdHasBeenEditedThisFrame = true; + g.ActiveIdHasBeenEditedBefore = true; + } + + // We accept a MarkItemEdited() on drag and drop targets (see https://github.com/ocornut/imgui/issues/1875#issuecomment-978243343) + // We accept 'ActiveIdPreviousFrame == id' for InputText() returning an edit after it has been taken ActiveId away (#4714) + IM_ASSERT(g.DragDropActive || g.ActiveId == id || g.ActiveId == 0 || g.ActiveIdPreviousFrame == id); + + //IM_ASSERT(g.CurrentWindow->DC.LastItemId == id); + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_Edited; +} + +bool ImGui::IsWindowContentHoverable(ImGuiWindow* window, ImGuiHoveredFlags flags) +{ + // An active popup disable hovering on other windows (apart from its own children) + // FIXME-OPT: This could be cached/stored within the window. + ImGuiContext& g = *GImGui; + if (g.NavWindow) + if (ImGuiWindow* focused_root_window = g.NavWindow->RootWindow) + if (focused_root_window->WasActive && focused_root_window != window->RootWindow) + { + // For the purpose of those flags we differentiate "standard popup" from "modal popup" + // NB: The 'else' is important because Modal windows are also Popups. + bool want_inhibit = false; + if (focused_root_window->Flags & ImGuiWindowFlags_Modal) + want_inhibit = true; + else if ((focused_root_window->Flags & ImGuiWindowFlags_Popup) && !(flags & ImGuiHoveredFlags_AllowWhenBlockedByPopup)) + want_inhibit = true; + + // Inhibit hover unless the window is within the stack of our modal/popup + if (want_inhibit) + if (!IsWindowWithinBeginStackOf(window->RootWindow, focused_root_window)) + return false; + } + return true; +} + +static inline float CalcDelayFromHoveredFlags(ImGuiHoveredFlags flags) +{ + ImGuiContext& g = *GImGui; + if (flags & ImGuiHoveredFlags_DelayShort) + return g.Style.HoverDelayShort; + if (flags & ImGuiHoveredFlags_DelayNormal) + return g.Style.HoverDelayNormal; + return 0.0f; +} + +// This is roughly matching the behavior of internal-facing ItemHoverable() +// - we allow hovering to be true when ActiveId==window->MoveID, so that clicking on non-interactive items such as a Text() item still returns true with IsItemHovered() +// - this should work even for non-interactive items that have no ID, so we cannot use LastItemId +bool ImGui::IsItemHovered(ImGuiHoveredFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT((flags & ~ImGuiHoveredFlags_AllowedMaskForIsItemHovered) == 0 && "Invalid flags for IsItemHovered()!"); + + if (g.NavDisableMouseHover && !g.NavDisableHighlight && !(flags & ImGuiHoveredFlags_NoNavOverride)) + { + if ((g.LastItemData.InFlags & ImGuiItemFlags_Disabled) && !(flags & ImGuiHoveredFlags_AllowWhenDisabled)) + return false; + if (!IsItemFocused()) + return false; + + if (flags & ImGuiHoveredFlags_ForTooltip) + flags |= g.Style.HoverFlagsForTooltipNav; + } + else + { + // Test for bounding box overlap, as updated as ItemAdd() + ImGuiItemStatusFlags status_flags = g.LastItemData.StatusFlags; + if (!(status_flags & ImGuiItemStatusFlags_HoveredRect)) + return false; + + if (flags & ImGuiHoveredFlags_ForTooltip) + flags |= g.Style.HoverFlagsForTooltipMouse; + + IM_ASSERT((flags & (ImGuiHoveredFlags_AnyWindow | ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows | ImGuiHoveredFlags_NoPopupHierarchy)) == 0); // Flags not supported by this function + + // Done with rectangle culling so we can perform heavier checks now + // Test if we are hovering the right window (our window could be behind another window) + // [2021/03/02] Reworked / reverted the revert, finally. Note we want e.g. BeginGroup/ItemAdd/EndGroup to work as well. (#3851) + // [2017/10/16] Reverted commit 344d48be3 and testing RootWindow instead. I believe it is correct to NOT test for RootWindow but this leaves us unable + // to use IsItemHovered() after EndChild() itself. Until a solution is found I believe reverting to the test from 2017/09/27 is safe since this was + // the test that has been running for a long while. + if (g.HoveredWindow != window && (status_flags & ImGuiItemStatusFlags_HoveredWindow) == 0) + if ((flags & ImGuiHoveredFlags_AllowWhenOverlappedByWindow) == 0) + return false; + + // Test if another item is active (e.g. being dragged) + const ImGuiID id = g.LastItemData.ID; + if ((flags & ImGuiHoveredFlags_AllowWhenBlockedByActiveItem) == 0) + if (g.ActiveId != 0 && g.ActiveId != id && !g.ActiveIdAllowOverlap && g.ActiveId != window->MoveId) + return false; + + // Test if interactions on this window are blocked by an active popup or modal. + // The ImGuiHoveredFlags_AllowWhenBlockedByPopup flag will be tested here. + if (!IsWindowContentHoverable(window, flags) && !(g.LastItemData.InFlags & ImGuiItemFlags_NoWindowHoverableCheck)) + return false; + + // Test if the item is disabled + if ((g.LastItemData.InFlags & ImGuiItemFlags_Disabled) && !(flags & ImGuiHoveredFlags_AllowWhenDisabled)) + return false; + + // Special handling for calling after Begin() which represent the title bar or tab. + // When the window is skipped/collapsed (SkipItems==true) that last item will never be overwritten so we need to detect the case. + if (id == window->MoveId && window->WriteAccessed) + return false; + + // Test if using AllowOverlap and overlapped + if ((g.LastItemData.InFlags & ImGuiItemFlags_AllowOverlap) && id != 0) + if ((flags & ImGuiHoveredFlags_AllowWhenOverlappedByItem) == 0) + if (g.HoveredIdPreviousFrame != g.LastItemData.ID) + return false; + } + + // Handle hover delay + // (some ideas: https://www.nngroup.com/articles/timing-exposing-content) + const float delay = CalcDelayFromHoveredFlags(flags); + if (delay > 0.0f || (flags & ImGuiHoveredFlags_Stationary)) + { + ImGuiID hover_delay_id = (g.LastItemData.ID != 0) ? g.LastItemData.ID : window->GetIDFromRectangle(g.LastItemData.Rect); + if ((flags & ImGuiHoveredFlags_NoSharedDelay) && (g.HoverItemDelayIdPreviousFrame != hover_delay_id)) + g.HoverItemDelayTimer = 0.0f; + g.HoverItemDelayId = hover_delay_id; + + // When changing hovered item we requires a bit of stationary delay before activating hover timer, + // but once unlocked on a given item we also moving. + //if (g.HoverDelayTimer >= delay && (g.HoverDelayTimer - g.IO.DeltaTime < delay || g.MouseStationaryTimer - g.IO.DeltaTime < g.Style.HoverStationaryDelay)) { IMGUI_DEBUG_LOG("HoverDelayTimer = %f/%f, MouseStationaryTimer = %f\n", g.HoverDelayTimer, delay, g.MouseStationaryTimer); } + if ((flags & ImGuiHoveredFlags_Stationary) != 0 && g.HoverItemUnlockedStationaryId != hover_delay_id) + return false; + + if (g.HoverItemDelayTimer < delay) + return false; + } + + return true; +} + +// Internal facing ItemHoverable() used when submitting widgets. Differs slightly from IsItemHovered(). +// (this does not rely on LastItemData it can be called from a ButtonBehavior() call not following an ItemAdd() call) +// FIXME-LEGACY: the 'ImGuiItemFlags item_flags' parameter was added on 2023-06-28. +// If you used this in your legacy/custom widgets code: +// - Commonly: if your ItemHoverable() call comes after an ItemAdd() call: pass 'item_flags = g.LastItemData.InFlags'. +// - Rare: otherwise you may pass 'item_flags = 0' (ImGuiItemFlags_None) unless you want to benefit from special behavior handled by ItemHoverable. +bool ImGui::ItemHoverable(const ImRect& bb, ImGuiID id, ImGuiItemFlags item_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (g.HoveredWindow != window) + return false; + if (!IsMouseHoveringRect(bb.Min, bb.Max)) + return false; + + if (g.HoveredId != 0 && g.HoveredId != id && !g.HoveredIdAllowOverlap) + return false; + if (g.ActiveId != 0 && g.ActiveId != id && !g.ActiveIdAllowOverlap) + return false; + + // Done with rectangle culling so we can perform heavier checks now. + if (!(item_flags & ImGuiItemFlags_NoWindowHoverableCheck) && !IsWindowContentHoverable(window, ImGuiHoveredFlags_None)) + { + g.HoveredIdDisabled = true; + return false; + } + + // We exceptionally allow this function to be called with id==0 to allow using it for easy high-level + // hover test in widgets code. We could also decide to split this function is two. + if (id != 0) + { + // Drag source doesn't report as hovered + if (g.DragDropActive && g.DragDropPayload.SourceId == id && !(g.DragDropSourceFlags & ImGuiDragDropFlags_SourceNoDisableHover)) + return false; + + SetHoveredID(id); + + // AllowOverlap mode (rarely used) requires previous frame HoveredId to be null or to match. + // This allows using patterns where a later submitted widget overlaps a previous one. Generally perceived as a front-to-back hit-test. + if (item_flags & ImGuiItemFlags_AllowOverlap) + { + g.HoveredIdAllowOverlap = true; + if (g.HoveredIdPreviousFrame != id) + return false; + } + } + + // When disabled we'll return false but still set HoveredId + if (item_flags & ImGuiItemFlags_Disabled) + { + // Release active id if turning disabled + if (g.ActiveId == id && id != 0) + ClearActiveID(); + g.HoveredIdDisabled = true; + return false; + } + + if (id != 0) + { + // [DEBUG] Item Picker tool! + // We perform the check here because SetHoveredID() is not frequently called (1~ time a frame), making + // the cost of this tool near-zero. We can get slightly better call-stack and support picking non-hovered + // items if we performed the test in ItemAdd(), but that would incur a small runtime cost. + if (g.DebugItemPickerActive && g.HoveredIdPreviousFrame == id) + GetForegroundDrawList()->AddRect(bb.Min, bb.Max, IM_COL32(255, 255, 0, 255)); + if (g.DebugItemPickerBreakId == id) + IM_DEBUG_BREAK(); + } + + if (g.NavDisableMouseHover) + return false; + + return true; +} + +// FIXME: This is inlined/duplicated in ItemAdd() +bool ImGui::IsClippedEx(const ImRect& bb, ImGuiID id) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (!bb.Overlaps(window->ClipRect)) + if (id == 0 || (id != g.ActiveId && id != g.NavId)) + if (!g.LogEnabled) + return true; + return false; +} + +// This is also inlined in ItemAdd() +// Note: if ImGuiItemStatusFlags_HasDisplayRect is set, user needs to set g.LastItemData.DisplayRect. +void ImGui::SetLastItemData(ImGuiID item_id, ImGuiItemFlags in_flags, ImGuiItemStatusFlags item_flags, const ImRect& item_rect) +{ + ImGuiContext& g = *GImGui; + g.LastItemData.ID = item_id; + g.LastItemData.InFlags = in_flags; + g.LastItemData.StatusFlags = item_flags; + g.LastItemData.Rect = g.LastItemData.NavRect = item_rect; +} + +float ImGui::CalcWrapWidthForPos(const ImVec2& pos, float wrap_pos_x) +{ + if (wrap_pos_x < 0.0f) + return 0.0f; + + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (wrap_pos_x == 0.0f) + { + // We could decide to setup a default wrapping max point for auto-resizing windows, + // or have auto-wrap (with unspecified wrapping pos) behave as a ContentSize extending function? + //if (window->Hidden && (window->Flags & ImGuiWindowFlags_AlwaysAutoResize)) + // wrap_pos_x = ImMax(window->WorkRect.Min.x + g.FontSize * 10.0f, window->WorkRect.Max.x); + //else + wrap_pos_x = window->WorkRect.Max.x; + } + else if (wrap_pos_x > 0.0f) + { + wrap_pos_x += window->Pos.x - window->Scroll.x; // wrap_pos_x is provided is window local space + } + + return ImMax(wrap_pos_x - pos.x, 1.0f); +} + +// IM_ALLOC() == ImGui::MemAlloc() +void* ImGui::MemAlloc(size_t size) +{ + if (ImGuiContext* ctx = GImGui) + ctx->IO.MetricsActiveAllocations++; + return (*GImAllocatorAllocFunc)(size, GImAllocatorUserData); +} + +// IM_FREE() == ImGui::MemFree() +void ImGui::MemFree(void* ptr) +{ + if (ptr) + if (ImGuiContext* ctx = GImGui) + ctx->IO.MetricsActiveAllocations--; + return (*GImAllocatorFreeFunc)(ptr, GImAllocatorUserData); +} + +const char* ImGui::GetClipboardText() +{ + ImGuiContext& g = *GImGui; + return g.IO.GetClipboardTextFn ? g.IO.GetClipboardTextFn(g.IO.ClipboardUserData) : ""; +} + +void ImGui::SetClipboardText(const char* text) +{ + ImGuiContext& g = *GImGui; + if (g.IO.SetClipboardTextFn) + g.IO.SetClipboardTextFn(g.IO.ClipboardUserData, text); +} + +const char* ImGui::GetVersion() +{ + return IMGUI_VERSION; +} + +ImGuiIO& ImGui::GetIO() +{ + IM_ASSERT(GImGui != NULL && "No current context. Did you call ImGui::CreateContext() and ImGui::SetCurrentContext() ?"); + return GImGui->IO; +} + +// Pass this to your backend rendering function! Valid after Render() and until the next call to NewFrame() +ImDrawData* ImGui::GetDrawData() +{ + ImGuiContext& g = *GImGui; + ImGuiViewportP* viewport = g.Viewports[0]; + return viewport->DrawDataP.Valid ? &viewport->DrawDataP : NULL; +} + +double ImGui::GetTime() +{ + return GImGui->Time; +} + +int ImGui::GetFrameCount() +{ + return GImGui->FrameCount; +} + +static ImDrawList* GetViewportBgFgDrawList(ImGuiViewportP* viewport, size_t drawlist_no, const char* drawlist_name) +{ + // Create the draw list on demand, because they are not frequently used for all viewports + ImGuiContext& g = *GImGui; + IM_ASSERT(drawlist_no < IM_ARRAYSIZE(viewport->BgFgDrawLists)); + ImDrawList* draw_list = viewport->BgFgDrawLists[drawlist_no]; + if (draw_list == NULL) + { + draw_list = IM_NEW(ImDrawList)(&g.DrawListSharedData); + draw_list->_OwnerName = drawlist_name; + viewport->BgFgDrawLists[drawlist_no] = draw_list; + } + + // Our ImDrawList system requires that there is always a command + if (viewport->BgFgDrawListsLastFrame[drawlist_no] != g.FrameCount) + { + draw_list->_ResetForNewFrame(); + draw_list->PushTextureID(g.IO.Fonts->TexID); + draw_list->PushClipRect(viewport->Pos, viewport->Pos + viewport->Size, false); + viewport->BgFgDrawListsLastFrame[drawlist_no] = g.FrameCount; + } + return draw_list; +} + +ImDrawList* ImGui::GetBackgroundDrawList(ImGuiViewport* viewport) +{ + return GetViewportBgFgDrawList((ImGuiViewportP*)viewport, 0, "##Background"); +} + +ImDrawList* ImGui::GetBackgroundDrawList() +{ + ImGuiContext& g = *GImGui; + return GetBackgroundDrawList(g.Viewports[0]); +} + +ImDrawList* ImGui::GetForegroundDrawList(ImGuiViewport* viewport) +{ + return GetViewportBgFgDrawList((ImGuiViewportP*)viewport, 1, "##Foreground"); +} + +ImDrawList* ImGui::GetForegroundDrawList() +{ + ImGuiContext& g = *GImGui; + return GetForegroundDrawList(g.Viewports[0]); +} + +ImDrawListSharedData* ImGui::GetDrawListSharedData() +{ + return &GImGui->DrawListSharedData; +} + +void ImGui::StartMouseMovingWindow(ImGuiWindow* window) +{ + // Set ActiveId even if the _NoMove flag is set. Without it, dragging away from a window with _NoMove would activate hover on other windows. + // We _also_ call this when clicking in a window empty space when io.ConfigWindowsMoveFromTitleBarOnly is set, but clear g.MovingWindow afterward. + // This is because we want ActiveId to be set even when the window is not permitted to move. + ImGuiContext& g = *GImGui; + FocusWindow(window); + SetActiveID(window->MoveId, window); + g.NavDisableHighlight = true; + g.ActiveIdClickOffset = g.IO.MouseClickedPos[0] - window->RootWindow->Pos; + g.ActiveIdNoClearOnFocusLoss = true; + SetActiveIdUsingAllKeyboardKeys(); + + bool can_move_window = true; + if ((window->Flags & ImGuiWindowFlags_NoMove) || (window->RootWindow->Flags & ImGuiWindowFlags_NoMove)) + can_move_window = false; + if (can_move_window) + g.MovingWindow = window; +} + +// Handle mouse moving window +// Note: moving window with the navigation keys (Square + d-pad / CTRL+TAB + Arrows) are processed in NavUpdateWindowing() +// FIXME: We don't have strong guarantee that g.MovingWindow stay synched with g.ActiveId == g.MovingWindow->MoveId. +// This is currently enforced by the fact that BeginDragDropSource() is setting all g.ActiveIdUsingXXXX flags to inhibit navigation inputs, +// but if we should more thoroughly test cases where g.ActiveId or g.MovingWindow gets changed and not the other. +void ImGui::UpdateMouseMovingWindowNewFrame() +{ + ImGuiContext& g = *GImGui; + if (g.MovingWindow != NULL) + { + // We actually want to move the root window. g.MovingWindow == window we clicked on (could be a child window). + // We track it to preserve Focus and so that generally ActiveIdWindow == MovingWindow and ActiveId == MovingWindow->MoveId for consistency. + KeepAliveID(g.ActiveId); + IM_ASSERT(g.MovingWindow && g.MovingWindow->RootWindow); + ImGuiWindow* moving_window = g.MovingWindow->RootWindow; + if (g.IO.MouseDown[0] && IsMousePosValid(&g.IO.MousePos)) + { + ImVec2 pos = g.IO.MousePos - g.ActiveIdClickOffset; + SetWindowPos(moving_window, pos, ImGuiCond_Always); + FocusWindow(g.MovingWindow); + } + else + { + g.MovingWindow = NULL; + ClearActiveID(); + } + } + else + { + // When clicking/dragging from a window that has the _NoMove flag, we still set the ActiveId in order to prevent hovering others. + if (g.ActiveIdWindow && g.ActiveIdWindow->MoveId == g.ActiveId) + { + KeepAliveID(g.ActiveId); + if (!g.IO.MouseDown[0]) + ClearActiveID(); + } + } +} + +// Initiate moving window when clicking on empty space or title bar. +// Handle left-click and right-click focus. +void ImGui::UpdateMouseMovingWindowEndFrame() +{ + ImGuiContext& g = *GImGui; + if (g.ActiveId != 0 || g.HoveredId != 0) + return; + + // Unless we just made a window/popup appear + if (g.NavWindow && g.NavWindow->Appearing) + return; + + // Click on empty space to focus window and start moving + // (after we're done with all our widgets) + if (g.IO.MouseClicked[0]) + { + // Handle the edge case of a popup being closed while clicking in its empty space. + // If we try to focus it, FocusWindow() > ClosePopupsOverWindow() will accidentally close any parent popups because they are not linked together any more. + ImGuiWindow* root_window = g.HoveredWindow ? g.HoveredWindow->RootWindow : NULL; + const bool is_closed_popup = root_window && (root_window->Flags & ImGuiWindowFlags_Popup) && !IsPopupOpen(root_window->PopupId, ImGuiPopupFlags_AnyPopupLevel); + + if (root_window != NULL && !is_closed_popup) + { + StartMouseMovingWindow(g.HoveredWindow); //-V595 + + // Cancel moving if clicked outside of title bar + if (g.IO.ConfigWindowsMoveFromTitleBarOnly && !(root_window->Flags & ImGuiWindowFlags_NoTitleBar)) + if (!root_window->TitleBarRect().Contains(g.IO.MouseClickedPos[0])) + g.MovingWindow = NULL; + + // Cancel moving if clicked over an item which was disabled or inhibited by popups (note that we know HoveredId == 0 already) + if (g.HoveredIdDisabled) + g.MovingWindow = NULL; + } + else if (root_window == NULL && g.NavWindow != NULL) + { + // Clicking on void disable focus + FocusWindow(NULL, ImGuiFocusRequestFlags_UnlessBelowModal); + } + } + + // With right mouse button we close popups without changing focus based on where the mouse is aimed + // Instead, focus will be restored to the window under the bottom-most closed popup. + // (The left mouse button path calls FocusWindow on the hovered window, which will lead NewFrame->ClosePopupsOverWindow to trigger) + if (g.IO.MouseClicked[1]) + { + // Find the top-most window between HoveredWindow and the top-most Modal Window. + // This is where we can trim the popup stack. + ImGuiWindow* modal = GetTopMostPopupModal(); + bool hovered_window_above_modal = g.HoveredWindow && (modal == NULL || IsWindowAbove(g.HoveredWindow, modal)); + ClosePopupsOverWindow(hovered_window_above_modal ? g.HoveredWindow : modal, true); + } +} + +static bool IsWindowActiveAndVisible(ImGuiWindow* window) +{ + return (window->Active) && (!window->Hidden); +} + +// The reason this is exposed in imgui_internal.h is: on touch-based system that don't have hovering, we want to dispatch inputs to the right target (imgui vs imgui+app) +void ImGui::UpdateHoveredWindowAndCaptureFlags() +{ + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + g.WindowsHoverPadding = ImMax(g.Style.TouchExtraPadding, ImVec2(WINDOWS_HOVER_PADDING, WINDOWS_HOVER_PADDING)); + + // Find the window hovered by mouse: + // - Child windows can extend beyond the limit of their parent so we need to derive HoveredRootWindow from HoveredWindow. + // - When moving a window we can skip the search, which also conveniently bypasses the fact that window->WindowRectClipped is lagging as this point of the frame. + // - We also support the moved window toggling the NoInputs flag after moving has started in order to be able to detect windows below it, which is useful for e.g. docking mechanisms. + bool clear_hovered_windows = false; + FindHoveredWindow(); + + // Modal windows prevents mouse from hovering behind them. + ImGuiWindow* modal_window = GetTopMostPopupModal(); + if (modal_window && g.HoveredWindow && !IsWindowWithinBeginStackOf(g.HoveredWindow->RootWindow, modal_window)) + clear_hovered_windows = true; + + // Disabled mouse? + if (io.ConfigFlags & ImGuiConfigFlags_NoMouse) + clear_hovered_windows = true; + + // We track click ownership. When clicked outside of a window the click is owned by the application and + // won't report hovering nor request capture even while dragging over our windows afterward. + const bool has_open_popup = (g.OpenPopupStack.Size > 0); + const bool has_open_modal = (modal_window != NULL); + int mouse_earliest_down = -1; + bool mouse_any_down = false; + for (int i = 0; i < IM_ARRAYSIZE(io.MouseDown); i++) + { + if (io.MouseClicked[i]) + { + io.MouseDownOwned[i] = (g.HoveredWindow != NULL) || has_open_popup; + io.MouseDownOwnedUnlessPopupClose[i] = (g.HoveredWindow != NULL) || has_open_modal; + } + mouse_any_down |= io.MouseDown[i]; + if (io.MouseDown[i]) + if (mouse_earliest_down == -1 || io.MouseClickedTime[i] < io.MouseClickedTime[mouse_earliest_down]) + mouse_earliest_down = i; + } + const bool mouse_avail = (mouse_earliest_down == -1) || io.MouseDownOwned[mouse_earliest_down]; + const bool mouse_avail_unless_popup_close = (mouse_earliest_down == -1) || io.MouseDownOwnedUnlessPopupClose[mouse_earliest_down]; + + // If mouse was first clicked outside of ImGui bounds we also cancel out hovering. + // FIXME: For patterns of drag and drop across OS windows, we may need to rework/remove this test (first committed 311c0ca9 on 2015/02) + const bool mouse_dragging_extern_payload = g.DragDropActive && (g.DragDropSourceFlags & ImGuiDragDropFlags_SourceExtern) != 0; + if (!mouse_avail && !mouse_dragging_extern_payload) + clear_hovered_windows = true; + + if (clear_hovered_windows) + g.HoveredWindow = g.HoveredWindowUnderMovingWindow = NULL; + + // Update io.WantCaptureMouse for the user application (true = dispatch mouse info to Dear ImGui only, false = dispatch mouse to Dear ImGui + underlying app) + // Update io.WantCaptureMouseAllowPopupClose (experimental) to give a chance for app to react to popup closure with a drag + if (g.WantCaptureMouseNextFrame != -1) + { + io.WantCaptureMouse = io.WantCaptureMouseUnlessPopupClose = (g.WantCaptureMouseNextFrame != 0); + } + else + { + io.WantCaptureMouse = (mouse_avail && (g.HoveredWindow != NULL || mouse_any_down)) || has_open_popup; + io.WantCaptureMouseUnlessPopupClose = (mouse_avail_unless_popup_close && (g.HoveredWindow != NULL || mouse_any_down)) || has_open_modal; + } + + // Update io.WantCaptureKeyboard for the user application (true = dispatch keyboard info to Dear ImGui only, false = dispatch keyboard info to Dear ImGui + underlying app) + if (g.WantCaptureKeyboardNextFrame != -1) + io.WantCaptureKeyboard = (g.WantCaptureKeyboardNextFrame != 0); + else + io.WantCaptureKeyboard = (g.ActiveId != 0) || (modal_window != NULL); + if (io.NavActive && (io.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) && !(io.ConfigFlags & ImGuiConfigFlags_NavNoCaptureKeyboard)) + io.WantCaptureKeyboard = true; + + // Update io.WantTextInput flag, this is to allow systems without a keyboard (e.g. mobile, hand-held) to show a software keyboard if possible + io.WantTextInput = (g.WantTextInputNextFrame != -1) ? (g.WantTextInputNextFrame != 0) : false; +} + +void ImGui::NewFrame() +{ + ImGuiContext& g = *GImGui; + + // Remove pending delete hooks before frame start. + // This deferred removal avoid issues of removal while iterating the hook vector + for (int n = g.Hooks.Size - 1; n >= 0; n--) + if (g.Hooks[n].Type == ImGuiContextHookType_PendingRemoval_) + g.Hooks.erase(&g.Hooks[n]); + + CallContextHooks(&g, ImGuiContextHookType_NewFramePre); + + // Check and assert for various common IO and Configuration mistakes + ErrorCheckNewFrameSanityChecks(); + + // Load settings on first frame, save settings when modified (after a delay) + UpdateSettings(); + + g.Time += g.IO.DeltaTime; + g.WithinFrameScope = true; + g.FrameCount += 1; + g.TooltipOverrideCount = 0; + g.WindowsActiveCount = 0; + g.MenusIdSubmittedThisFrame.resize(0); + + // Calculate frame-rate for the user, as a purely luxurious feature + g.FramerateSecPerFrameAccum += g.IO.DeltaTime - g.FramerateSecPerFrame[g.FramerateSecPerFrameIdx]; + g.FramerateSecPerFrame[g.FramerateSecPerFrameIdx] = g.IO.DeltaTime; + g.FramerateSecPerFrameIdx = (g.FramerateSecPerFrameIdx + 1) % IM_ARRAYSIZE(g.FramerateSecPerFrame); + g.FramerateSecPerFrameCount = ImMin(g.FramerateSecPerFrameCount + 1, IM_ARRAYSIZE(g.FramerateSecPerFrame)); + g.IO.Framerate = (g.FramerateSecPerFrameAccum > 0.0f) ? (1.0f / (g.FramerateSecPerFrameAccum / (float)g.FramerateSecPerFrameCount)) : FLT_MAX; + + // Process input queue (trickle as many events as possible), turn events into writes to IO structure + g.InputEventsTrail.resize(0); + UpdateInputEvents(g.IO.ConfigInputTrickleEventQueue); + + // Update viewports (after processing input queue, so io.MouseHoveredViewport is set) + UpdateViewportsNewFrame(); + + // Setup current font and draw list shared data + g.IO.Fonts->Locked = true; + SetCurrentFont(GetDefaultFont()); + IM_ASSERT(g.Font->IsLoaded()); + ImRect virtual_space(FLT_MAX, FLT_MAX, -FLT_MAX, -FLT_MAX); + for (ImGuiViewportP* viewport : g.Viewports) + virtual_space.Add(viewport->GetMainRect()); + g.DrawListSharedData.ClipRectFullscreen = virtual_space.ToVec4(); + g.DrawListSharedData.CurveTessellationTol = g.Style.CurveTessellationTol; + g.DrawListSharedData.SetCircleTessellationMaxError(g.Style.CircleTessellationMaxError); + g.DrawListSharedData.InitialFlags = ImDrawListFlags_None; + if (g.Style.AntiAliasedLines) + g.DrawListSharedData.InitialFlags |= ImDrawListFlags_AntiAliasedLines; + if (g.Style.AntiAliasedLinesUseTex && !(g.Font->ContainerAtlas->Flags & ImFontAtlasFlags_NoBakedLines)) + g.DrawListSharedData.InitialFlags |= ImDrawListFlags_AntiAliasedLinesUseTex; + if (g.Style.AntiAliasedFill) + g.DrawListSharedData.InitialFlags |= ImDrawListFlags_AntiAliasedFill; + if (g.IO.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset) + g.DrawListSharedData.InitialFlags |= ImDrawListFlags_AllowVtxOffset; + + // Mark rendering data as invalid to prevent user who may have a handle on it to use it. + for (ImGuiViewportP* viewport : g.Viewports) + viewport->DrawDataP.Valid = false; + + // Drag and drop keep the source ID alive so even if the source disappear our state is consistent + if (g.DragDropActive && g.DragDropPayload.SourceId == g.ActiveId) + KeepAliveID(g.DragDropPayload.SourceId); + + // Update HoveredId data + if (!g.HoveredIdPreviousFrame) + g.HoveredIdTimer = 0.0f; + if (!g.HoveredIdPreviousFrame || (g.HoveredId && g.ActiveId == g.HoveredId)) + g.HoveredIdNotActiveTimer = 0.0f; + if (g.HoveredId) + g.HoveredIdTimer += g.IO.DeltaTime; + if (g.HoveredId && g.ActiveId != g.HoveredId) + g.HoveredIdNotActiveTimer += g.IO.DeltaTime; + g.HoveredIdPreviousFrame = g.HoveredId; + g.HoveredId = 0; + g.HoveredIdAllowOverlap = false; + g.HoveredIdDisabled = false; + + // Clear ActiveID if the item is not alive anymore. + // In 1.87, the common most call to KeepAliveID() was moved from GetID() to ItemAdd(). + // As a result, custom widget using ButtonBehavior() _without_ ItemAdd() need to call KeepAliveID() themselves. + if (g.ActiveId != 0 && g.ActiveIdIsAlive != g.ActiveId && g.ActiveIdPreviousFrame == g.ActiveId) + { + IMGUI_DEBUG_LOG_ACTIVEID("NewFrame(): ClearActiveID() because it isn't marked alive anymore!\n"); + ClearActiveID(); + } + + // Update ActiveId data (clear reference to active widget if the widget isn't alive anymore) + if (g.ActiveId) + g.ActiveIdTimer += g.IO.DeltaTime; + g.LastActiveIdTimer += g.IO.DeltaTime; + g.ActiveIdPreviousFrame = g.ActiveId; + g.ActiveIdPreviousFrameWindow = g.ActiveIdWindow; + g.ActiveIdPreviousFrameHasBeenEditedBefore = g.ActiveIdHasBeenEditedBefore; + g.ActiveIdIsAlive = 0; + g.ActiveIdHasBeenEditedThisFrame = false; + g.ActiveIdPreviousFrameIsAlive = false; + g.ActiveIdIsJustActivated = false; + if (g.TempInputId != 0 && g.ActiveId != g.TempInputId) + g.TempInputId = 0; + if (g.ActiveId == 0) + { + g.ActiveIdUsingNavDirMask = 0x00; + g.ActiveIdUsingAllKeyboardKeys = false; +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + g.ActiveIdUsingNavInputMask = 0x00; +#endif + } + +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + if (g.ActiveId == 0) + g.ActiveIdUsingNavInputMask = 0; + else if (g.ActiveIdUsingNavInputMask != 0) + { + // If your custom widget code used: { g.ActiveIdUsingNavInputMask |= (1 << ImGuiNavInput_Cancel); } + // Since IMGUI_VERSION_NUM >= 18804 it should be: { SetKeyOwner(ImGuiKey_Escape, g.ActiveId); SetKeyOwner(ImGuiKey_NavGamepadCancel, g.ActiveId); } + if (g.ActiveIdUsingNavInputMask & (1 << ImGuiNavInput_Cancel)) + SetKeyOwner(ImGuiKey_Escape, g.ActiveId); + if (g.ActiveIdUsingNavInputMask & ~(1 << ImGuiNavInput_Cancel)) + IM_ASSERT(0); // Other values unsupported + } +#endif + + // Record when we have been stationary as this state is preserved while over same item. + // FIXME: The way this is expressed means user cannot alter HoverStationaryDelay during the frame to use varying values. + // To allow this we should store HoverItemMaxStationaryTime+ID and perform the >= check in IsItemHovered() function. + if (g.HoverItemDelayId != 0 && g.MouseStationaryTimer >= g.Style.HoverStationaryDelay) + g.HoverItemUnlockedStationaryId = g.HoverItemDelayId; + else if (g.HoverItemDelayId == 0) + g.HoverItemUnlockedStationaryId = 0; + if (g.HoveredWindow != NULL && g.MouseStationaryTimer >= g.Style.HoverStationaryDelay) + g.HoverWindowUnlockedStationaryId = g.HoveredWindow->ID; + else if (g.HoveredWindow == NULL) + g.HoverWindowUnlockedStationaryId = 0; + + // Update hover delay for IsItemHovered() with delays and tooltips + g.HoverItemDelayIdPreviousFrame = g.HoverItemDelayId; + if (g.HoverItemDelayId != 0) + { + g.HoverItemDelayTimer += g.IO.DeltaTime; + g.HoverItemDelayClearTimer = 0.0f; + g.HoverItemDelayId = 0; + } + else if (g.HoverItemDelayTimer > 0.0f) + { + // This gives a little bit of leeway before clearing the hover timer, allowing mouse to cross gaps + // We could expose 0.25f as style.HoverClearDelay but I am not sure of the logic yet, this is particularly subtle. + g.HoverItemDelayClearTimer += g.IO.DeltaTime; + if (g.HoverItemDelayClearTimer >= ImMax(0.25f, g.IO.DeltaTime * 2.0f)) // ~7 frames at 30 Hz + allow for low framerate + g.HoverItemDelayTimer = g.HoverItemDelayClearTimer = 0.0f; // May want a decaying timer, in which case need to clamp at max first, based on max of caller last requested timer. + } + + // Drag and drop + g.DragDropAcceptIdPrev = g.DragDropAcceptIdCurr; + g.DragDropAcceptIdCurr = 0; + g.DragDropAcceptIdCurrRectSurface = FLT_MAX; + g.DragDropWithinSource = false; + g.DragDropWithinTarget = false; + g.DragDropHoldJustPressedId = 0; + + // Close popups on focus lost (currently wip/opt-in) + //if (g.IO.AppFocusLost) + // ClosePopupsExceptModals(); + + // Update keyboard input state + UpdateKeyboardInputs(); + + //IM_ASSERT(g.IO.KeyCtrl == IsKeyDown(ImGuiKey_LeftCtrl) || IsKeyDown(ImGuiKey_RightCtrl)); + //IM_ASSERT(g.IO.KeyShift == IsKeyDown(ImGuiKey_LeftShift) || IsKeyDown(ImGuiKey_RightShift)); + //IM_ASSERT(g.IO.KeyAlt == IsKeyDown(ImGuiKey_LeftAlt) || IsKeyDown(ImGuiKey_RightAlt)); + //IM_ASSERT(g.IO.KeySuper == IsKeyDown(ImGuiKey_LeftSuper) || IsKeyDown(ImGuiKey_RightSuper)); + + // Update gamepad/keyboard navigation + NavUpdate(); + + // Update mouse input state + UpdateMouseInputs(); + + // Find hovered window + // (needs to be before UpdateMouseMovingWindowNewFrame so we fill g.HoveredWindowUnderMovingWindow on the mouse release frame) + UpdateHoveredWindowAndCaptureFlags(); + + // Handle user moving window with mouse (at the beginning of the frame to avoid input lag or sheering) + UpdateMouseMovingWindowNewFrame(); + + // Background darkening/whitening + if (GetTopMostPopupModal() != NULL || (g.NavWindowingTarget != NULL && g.NavWindowingHighlightAlpha > 0.0f)) + g.DimBgRatio = ImMin(g.DimBgRatio + g.IO.DeltaTime * 6.0f, 1.0f); + else + g.DimBgRatio = ImMax(g.DimBgRatio - g.IO.DeltaTime * 10.0f, 0.0f); + + g.MouseCursor = ImGuiMouseCursor_Arrow; + g.WantCaptureMouseNextFrame = g.WantCaptureKeyboardNextFrame = g.WantTextInputNextFrame = -1; + + // Platform IME data: reset for the frame + g.PlatformImeDataPrev = g.PlatformImeData; + g.PlatformImeData.WantVisible = false; + + // Mouse wheel scrolling, scale + UpdateMouseWheel(); + + // Mark all windows as not visible and compact unused memory. + IM_ASSERT(g.WindowsFocusOrder.Size <= g.Windows.Size); + const float memory_compact_start_time = (g.GcCompactAll || g.IO.ConfigMemoryCompactTimer < 0.0f) ? FLT_MAX : (float)g.Time - g.IO.ConfigMemoryCompactTimer; + for (ImGuiWindow* window : g.Windows) + { + window->WasActive = window->Active; + window->Active = false; + window->WriteAccessed = false; + window->BeginCountPreviousFrame = window->BeginCount; + window->BeginCount = 0; + + // Garbage collect transient buffers of recently unused windows + if (!window->WasActive && !window->MemoryCompacted && window->LastTimeActive < memory_compact_start_time) + GcCompactTransientWindowBuffers(window); + } + + // Garbage collect transient buffers of recently unused tables + for (int i = 0; i < g.TablesLastTimeActive.Size; i++) + if (g.TablesLastTimeActive[i] >= 0.0f && g.TablesLastTimeActive[i] < memory_compact_start_time) + TableGcCompactTransientBuffers(g.Tables.GetByIndex(i)); + for (ImGuiTableTempData& table_temp_data : g.TablesTempData) + if (table_temp_data.LastTimeActive >= 0.0f && table_temp_data.LastTimeActive < memory_compact_start_time) + TableGcCompactTransientBuffers(&table_temp_data); + if (g.GcCompactAll) + GcCompactTransientMiscBuffers(); + g.GcCompactAll = false; + + // Closing the focused window restore focus to the first active root window in descending z-order + if (g.NavWindow && !g.NavWindow->WasActive) + FocusTopMostWindowUnderOne(NULL, NULL, NULL, ImGuiFocusRequestFlags_RestoreFocusedChild); + + // No window should be open at the beginning of the frame. + // But in order to allow the user to call NewFrame() multiple times without calling Render(), we are doing an explicit clear. + g.CurrentWindowStack.resize(0); + g.BeginPopupStack.resize(0); + g.ItemFlagsStack.resize(0); + g.ItemFlagsStack.push_back(ImGuiItemFlags_None); + g.GroupStack.resize(0); + + // [DEBUG] Update debug features + UpdateDebugToolItemPicker(); + UpdateDebugToolStackQueries(); + if (g.DebugLocateFrames > 0 && --g.DebugLocateFrames == 0) + g.DebugLocateId = 0; + if (g.DebugLogClipperAutoDisableFrames > 0 && --g.DebugLogClipperAutoDisableFrames == 0) + { + DebugLog("(Auto-disabled ImGuiDebugLogFlags_EventClipper to avoid spamming)\n"); + g.DebugLogFlags &= ~ImGuiDebugLogFlags_EventClipper; + } + + // Create implicit/fallback window - which we will only render it if the user has added something to it. + // We don't use "Debug" to avoid colliding with user trying to create a "Debug" window with custom flags. + // This fallback is particularly important as it prevents ImGui:: calls from crashing. + g.WithinFrameScopeWithImplicitWindow = true; + SetNextWindowSize(ImVec2(400, 400), ImGuiCond_FirstUseEver); + Begin("Debug##Default"); + IM_ASSERT(g.CurrentWindow->IsFallbackWindow == true); + + // [DEBUG] When io.ConfigDebugBeginReturnValue is set, we make Begin()/BeginChild() return false at different level of the window-stack, + // allowing to validate correct Begin/End behavior in user code. + if (g.IO.ConfigDebugBeginReturnValueLoop) + g.DebugBeginReturnValueCullDepth = (g.DebugBeginReturnValueCullDepth == -1) ? 0 : ((g.DebugBeginReturnValueCullDepth + ((g.FrameCount % 4) == 0 ? 1 : 0)) % 10); + else + g.DebugBeginReturnValueCullDepth = -1; + + CallContextHooks(&g, ImGuiContextHookType_NewFramePost); +} + +// FIXME: Add a more explicit sort order in the window structure. +static int IMGUI_CDECL ChildWindowComparer(const void* lhs, const void* rhs) +{ + const ImGuiWindow* const a = *(const ImGuiWindow* const *)lhs; + const ImGuiWindow* const b = *(const ImGuiWindow* const *)rhs; + if (int d = (a->Flags & ImGuiWindowFlags_Popup) - (b->Flags & ImGuiWindowFlags_Popup)) + return d; + if (int d = (a->Flags & ImGuiWindowFlags_Tooltip) - (b->Flags & ImGuiWindowFlags_Tooltip)) + return d; + return (a->BeginOrderWithinParent - b->BeginOrderWithinParent); +} + +static void AddWindowToSortBuffer(ImVector* out_sorted_windows, ImGuiWindow* window) +{ + out_sorted_windows->push_back(window); + if (window->Active) + { + int count = window->DC.ChildWindows.Size; + ImQsort(window->DC.ChildWindows.Data, (size_t)count, sizeof(ImGuiWindow*), ChildWindowComparer); + for (int i = 0; i < count; i++) + { + ImGuiWindow* child = window->DC.ChildWindows[i]; + if (child->Active) + AddWindowToSortBuffer(out_sorted_windows, child); + } + } +} + +static void AddWindowToDrawData(ImGuiWindow* window, int layer) +{ + ImGuiContext& g = *GImGui; + ImGuiViewportP* viewport = g.Viewports[0]; + g.IO.MetricsRenderWindows++; + if (window->DrawList->_Splitter._Count > 1) + window->DrawList->ChannelsMerge(); // Merge if user forgot to merge back. Also required in Docking branch for ImGuiWindowFlags_DockNodeHost windows. + ImGui::AddDrawListToDrawDataEx(&viewport->DrawDataP, viewport->DrawDataBuilder.Layers[layer], window->DrawList); + for (ImGuiWindow* child : window->DC.ChildWindows) + if (IsWindowActiveAndVisible(child)) // Clipped children may have been marked not active + AddWindowToDrawData(child, layer); +} + +static inline int GetWindowDisplayLayer(ImGuiWindow* window) +{ + return (window->Flags & ImGuiWindowFlags_Tooltip) ? 1 : 0; +} + +// Layer is locked for the root window, however child windows may use a different viewport (e.g. extruding menu) +static inline void AddRootWindowToDrawData(ImGuiWindow* window) +{ + AddWindowToDrawData(window, GetWindowDisplayLayer(window)); +} + +static void FlattenDrawDataIntoSingleLayer(ImDrawDataBuilder* builder) +{ + int n = builder->Layers[0]->Size; + int full_size = n; + for (int i = 1; i < IM_ARRAYSIZE(builder->Layers); i++) + full_size += builder->Layers[i]->Size; + builder->Layers[0]->resize(full_size); + for (int layer_n = 1; layer_n < IM_ARRAYSIZE(builder->Layers); layer_n++) + { + ImVector* layer = builder->Layers[layer_n]; + if (layer->empty()) + continue; + memcpy(builder->Layers[0]->Data + n, layer->Data, layer->Size * sizeof(ImDrawList*)); + n += layer->Size; + layer->resize(0); + } +} + +static void InitViewportDrawData(ImGuiViewportP* viewport) +{ + ImGuiIO& io = ImGui::GetIO(); + ImDrawData* draw_data = &viewport->DrawDataP; + + viewport->DrawDataBuilder.Layers[0] = &draw_data->CmdLists; + viewport->DrawDataBuilder.Layers[1] = &viewport->DrawDataBuilder.LayerData1; + viewport->DrawDataBuilder.Layers[0]->resize(0); + viewport->DrawDataBuilder.Layers[1]->resize(0); + + draw_data->Valid = true; + draw_data->CmdListsCount = 0; + draw_data->TotalVtxCount = draw_data->TotalIdxCount = 0; + draw_data->DisplayPos = viewport->Pos; + draw_data->DisplaySize = viewport->Size; + draw_data->FramebufferScale = io.DisplayFramebufferScale; + draw_data->OwnerViewport = viewport; +} + +// Push a clipping rectangle for both ImGui logic (hit-testing etc.) and low-level ImDrawList rendering. +// - When using this function it is sane to ensure that float are perfectly rounded to integer values, +// so that e.g. (int)(max.x-min.x) in user's render produce correct result. +// - If the code here changes, may need to update code of functions like NextColumn() and PushColumnClipRect(): +// some frequently called functions which to modify both channels and clipping simultaneously tend to use the +// more specialized SetWindowClipRectBeforeSetChannel() to avoid extraneous updates of underlying ImDrawCmds. +void ImGui::PushClipRect(const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersect_with_current_clip_rect) +{ + ImGuiWindow* window = GetCurrentWindow(); + window->DrawList->PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect); + window->ClipRect = window->DrawList->_ClipRectStack.back(); +} + +void ImGui::PopClipRect() +{ + ImGuiWindow* window = GetCurrentWindow(); + window->DrawList->PopClipRect(); + window->ClipRect = window->DrawList->_ClipRectStack.back(); +} + +static void ImGui::RenderDimmedBackgroundBehindWindow(ImGuiWindow* window, ImU32 col) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + ImGuiViewportP* viewport = (ImGuiViewportP*)GetMainViewport(); + ImRect viewport_rect = viewport->GetMainRect(); + + // Draw behind window by moving the draw command at the FRONT of the draw list + { + // We've already called AddWindowToDrawData() which called DrawList->ChannelsMerge() on DockNodeHost windows, + // and draw list have been trimmed already, hence the explicit recreation of a draw command if missing. + // FIXME: This is creating complication, might be simpler if we could inject a drawlist in drawdata at a given position and not attempt to manipulate ImDrawCmd order. + ImDrawList* draw_list = window->RootWindow->DrawList; + if (draw_list->CmdBuffer.Size == 0) + draw_list->AddDrawCmd(); + draw_list->PushClipRect(viewport_rect.Min - ImVec2(1, 1), viewport_rect.Max + ImVec2(1, 1), false); // FIXME: Need to stricty ensure ImDrawCmd are not merged (ElemCount==6 checks below will verify that) + draw_list->AddRectFilled(viewport_rect.Min, viewport_rect.Max, col); + ImDrawCmd cmd = draw_list->CmdBuffer.back(); + IM_ASSERT(cmd.ElemCount == 6); + draw_list->CmdBuffer.pop_back(); + draw_list->CmdBuffer.push_front(cmd); + draw_list->AddDrawCmd(); // We need to create a command as CmdBuffer.back().IdxOffset won't be correct if we append to same command. + draw_list->PopClipRect(); + } +} + +ImGuiWindow* ImGui::FindBottomMostVisibleWindowWithinBeginStack(ImGuiWindow* parent_window) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* bottom_most_visible_window = parent_window; + for (int i = FindWindowDisplayIndex(parent_window); i >= 0; i--) + { + ImGuiWindow* window = g.Windows[i]; + if (window->Flags & ImGuiWindowFlags_ChildWindow) + continue; + if (!IsWindowWithinBeginStackOf(window, parent_window)) + break; + if (IsWindowActiveAndVisible(window) && GetWindowDisplayLayer(window) <= GetWindowDisplayLayer(parent_window)) + bottom_most_visible_window = window; + } + return bottom_most_visible_window; +} + +static void ImGui::RenderDimmedBackgrounds() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* modal_window = GetTopMostAndVisiblePopupModal(); + if (g.DimBgRatio <= 0.0f && g.NavWindowingHighlightAlpha <= 0.0f) + return; + const bool dim_bg_for_modal = (modal_window != NULL); + const bool dim_bg_for_window_list = (g.NavWindowingTargetAnim != NULL && g.NavWindowingTargetAnim->Active); + if (!dim_bg_for_modal && !dim_bg_for_window_list) + return; + + if (dim_bg_for_modal) + { + // Draw dimming behind modal or a begin stack child, whichever comes first in draw order. + ImGuiWindow* dim_behind_window = FindBottomMostVisibleWindowWithinBeginStack(modal_window); + RenderDimmedBackgroundBehindWindow(dim_behind_window, GetColorU32(ImGuiCol_ModalWindowDimBg, g.DimBgRatio)); + } + else if (dim_bg_for_window_list) + { + // Draw dimming behind CTRL+Tab target window + RenderDimmedBackgroundBehindWindow(g.NavWindowingTargetAnim, GetColorU32(ImGuiCol_NavWindowingDimBg, g.DimBgRatio)); + + // Draw border around CTRL+Tab target window + ImGuiWindow* window = g.NavWindowingTargetAnim; + ImGuiViewport* viewport = GetMainViewport(); + float distance = g.FontSize; + ImRect bb = window->Rect(); + bb.Expand(distance); + if (bb.GetWidth() >= viewport->Size.x && bb.GetHeight() >= viewport->Size.y) + bb.Expand(-distance - 1.0f); // If a window fits the entire viewport, adjust its highlight inward + if (window->DrawList->CmdBuffer.Size == 0) + window->DrawList->AddDrawCmd(); + window->DrawList->PushClipRect(viewport->Pos, viewport->Pos + viewport->Size); + window->DrawList->AddRect(bb.Min, bb.Max, GetColorU32(ImGuiCol_NavWindowingHighlight, g.NavWindowingHighlightAlpha), window->WindowRounding, 0, 3.0f); + window->DrawList->PopClipRect(); + } +} + +// This is normally called by Render(). You may want to call it directly if you want to avoid calling Render() but the gain will be very minimal. +void ImGui::EndFrame() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.Initialized); + + // Don't process EndFrame() multiple times. + if (g.FrameCountEnded == g.FrameCount) + return; + IM_ASSERT(g.WithinFrameScope && "Forgot to call ImGui::NewFrame()?"); + + CallContextHooks(&g, ImGuiContextHookType_EndFramePre); + + ErrorCheckEndFrameSanityChecks(); + + // Notify Platform/OS when our Input Method Editor cursor has moved (e.g. CJK inputs using Microsoft IME) + ImGuiPlatformImeData* ime_data = &g.PlatformImeData; + if (g.IO.SetPlatformImeDataFn && memcmp(ime_data, &g.PlatformImeDataPrev, sizeof(ImGuiPlatformImeData)) != 0) + { + IMGUI_DEBUG_LOG_IO("[io] Calling io.SetPlatformImeDataFn(): WantVisible: %d, InputPos (%.2f,%.2f)\n", ime_data->WantVisible, ime_data->InputPos.x, ime_data->InputPos.y); + ImGuiViewport* viewport = GetMainViewport(); +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + if (viewport->PlatformHandleRaw == NULL && g.IO.ImeWindowHandle != NULL) + { + viewport->PlatformHandleRaw = g.IO.ImeWindowHandle; + g.IO.SetPlatformImeDataFn(viewport, ime_data); + viewport->PlatformHandleRaw = NULL; + } + else +#endif + { + g.IO.SetPlatformImeDataFn(viewport, ime_data); + } + } + + // Hide implicit/fallback "Debug" window if it hasn't been used + g.WithinFrameScopeWithImplicitWindow = false; + if (g.CurrentWindow && !g.CurrentWindow->WriteAccessed) + g.CurrentWindow->Active = false; + End(); + + // Update navigation: CTRL+Tab, wrap-around requests + NavEndFrame(); + + // Drag and Drop: Elapse payload (if delivered, or if source stops being submitted) + if (g.DragDropActive) + { + bool is_delivered = g.DragDropPayload.Delivery; + bool is_elapsed = (g.DragDropPayload.DataFrameCount + 1 < g.FrameCount) && ((g.DragDropSourceFlags & ImGuiDragDropFlags_SourceAutoExpirePayload) || !IsMouseDown(g.DragDropMouseButton)); + if (is_delivered || is_elapsed) + ClearDragDrop(); + } + + // Drag and Drop: Fallback for source tooltip. This is not ideal but better than nothing. + if (g.DragDropActive && g.DragDropSourceFrameCount < g.FrameCount && !(g.DragDropSourceFlags & ImGuiDragDropFlags_SourceNoPreviewTooltip)) + { + g.DragDropWithinSource = true; + SetTooltip("..."); + g.DragDropWithinSource = false; + } + + // End frame + g.WithinFrameScope = false; + g.FrameCountEnded = g.FrameCount; + + // Initiate moving window + handle left-click and right-click focus + UpdateMouseMovingWindowEndFrame(); + + // Sort the window list so that all child windows are after their parent + // We cannot do that on FocusWindow() because children may not exist yet + g.WindowsTempSortBuffer.resize(0); + g.WindowsTempSortBuffer.reserve(g.Windows.Size); + for (ImGuiWindow* window : g.Windows) + { + if (window->Active && (window->Flags & ImGuiWindowFlags_ChildWindow)) // if a child is active its parent will add it + continue; + AddWindowToSortBuffer(&g.WindowsTempSortBuffer, window); + } + + // This usually assert if there is a mismatch between the ImGuiWindowFlags_ChildWindow / ParentWindow values and DC.ChildWindows[] in parents, aka we've done something wrong. + IM_ASSERT(g.Windows.Size == g.WindowsTempSortBuffer.Size); + g.Windows.swap(g.WindowsTempSortBuffer); + g.IO.MetricsActiveWindows = g.WindowsActiveCount; + + // Unlock font atlas + g.IO.Fonts->Locked = false; + + // Clear Input data for next frame + g.IO.AppFocusLost = false; + g.IO.MouseWheel = g.IO.MouseWheelH = 0.0f; + g.IO.InputQueueCharacters.resize(0); + + CallContextHooks(&g, ImGuiContextHookType_EndFramePost); +} + +// Prepare the data for rendering so you can call GetDrawData() +// (As with anything within the ImGui:: namspace this doesn't touch your GPU or graphics API at all: +// it is the role of the ImGui_ImplXXXX_RenderDrawData() function provided by the renderer backend) +void ImGui::Render() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.Initialized); + + if (g.FrameCountEnded != g.FrameCount) + EndFrame(); + if (g.FrameCountRendered == g.FrameCount) + return; + g.FrameCountRendered = g.FrameCount; + + g.IO.MetricsRenderWindows = 0; + CallContextHooks(&g, ImGuiContextHookType_RenderPre); + + // Draw modal/window whitening backgrounds + RenderDimmedBackgrounds(); + + // Add background ImDrawList (for each active viewport) + for (ImGuiViewportP* viewport : g.Viewports) + { + InitViewportDrawData(viewport); + if (viewport->BgFgDrawLists[0] != NULL) + AddDrawListToDrawDataEx(&viewport->DrawDataP, viewport->DrawDataBuilder.Layers[0], GetBackgroundDrawList(viewport)); + } + + // Add ImDrawList to render + ImGuiWindow* windows_to_render_top_most[2]; + windows_to_render_top_most[0] = (g.NavWindowingTarget && !(g.NavWindowingTarget->Flags & ImGuiWindowFlags_NoBringToFrontOnFocus)) ? g.NavWindowingTarget->RootWindow : NULL; + windows_to_render_top_most[1] = (g.NavWindowingTarget ? g.NavWindowingListWindow : NULL); + for (ImGuiWindow* window : g.Windows) + { + IM_MSVC_WARNING_SUPPRESS(6011); // Static Analysis false positive "warning C6011: Dereferencing NULL pointer 'window'" + if (IsWindowActiveAndVisible(window) && (window->Flags & ImGuiWindowFlags_ChildWindow) == 0 && window != windows_to_render_top_most[0] && window != windows_to_render_top_most[1]) + AddRootWindowToDrawData(window); + } + for (int n = 0; n < IM_ARRAYSIZE(windows_to_render_top_most); n++) + if (windows_to_render_top_most[n] && IsWindowActiveAndVisible(windows_to_render_top_most[n])) // NavWindowingTarget is always temporarily displayed as the top-most window + AddRootWindowToDrawData(windows_to_render_top_most[n]); + + // Draw software mouse cursor if requested by io.MouseDrawCursor flag + if (g.IO.MouseDrawCursor && g.MouseCursor != ImGuiMouseCursor_None) + RenderMouseCursor(g.IO.MousePos, g.Style.MouseCursorScale, g.MouseCursor, IM_COL32_WHITE, IM_COL32_BLACK, IM_COL32(0, 0, 0, 48)); + + // Setup ImDrawData structures for end-user + g.IO.MetricsRenderVertices = g.IO.MetricsRenderIndices = 0; + for (ImGuiViewportP* viewport : g.Viewports) + { + FlattenDrawDataIntoSingleLayer(&viewport->DrawDataBuilder); + + // Add foreground ImDrawList (for each active viewport) + if (viewport->BgFgDrawLists[1] != NULL) + AddDrawListToDrawDataEx(&viewport->DrawDataP, viewport->DrawDataBuilder.Layers[0], GetForegroundDrawList(viewport)); + + // We call _PopUnusedDrawCmd() last thing, as RenderDimmedBackgrounds() rely on a valid command being there (especially in docking branch). + ImDrawData* draw_data = &viewport->DrawDataP; + IM_ASSERT(draw_data->CmdLists.Size == draw_data->CmdListsCount); + for (ImDrawList* draw_list : draw_data->CmdLists) + draw_list->_PopUnusedDrawCmd(); + + g.IO.MetricsRenderVertices += draw_data->TotalVtxCount; + g.IO.MetricsRenderIndices += draw_data->TotalIdxCount; + } + + CallContextHooks(&g, ImGuiContextHookType_RenderPost); +} + +// Calculate text size. Text can be multi-line. Optionally ignore text after a ## marker. +// CalcTextSize("") should return ImVec2(0.0f, g.FontSize) +ImVec2 ImGui::CalcTextSize(const char* text, const char* text_end, bool hide_text_after_double_hash, float wrap_width) +{ + ImGuiContext& g = *GImGui; + + const char* text_display_end; + if (hide_text_after_double_hash) + text_display_end = FindRenderedTextEnd(text, text_end); // Hide anything after a '##' string + else + text_display_end = text_end; + + ImFont* font = g.Font; + const float font_size = g.FontSize; + if (text == text_display_end) + return ImVec2(0.0f, font_size); + ImVec2 text_size = font->CalcTextSizeA(font_size, FLT_MAX, wrap_width, text, text_display_end, NULL); + + // Round + // FIXME: This has been here since Dec 2015 (7b0bf230) but down the line we want this out. + // FIXME: Investigate using ceilf or e.g. + // - https://git.musl-libc.org/cgit/musl/tree/src/math/ceilf.c + // - https://embarkstudios.github.io/rust-gpu/api/src/libm/math/ceilf.rs.html + text_size.x = IM_FLOOR(text_size.x + 0.99999f); + + return text_size; +} + +// Find window given position, search front-to-back +// FIXME: Note that we have an inconsequential lag here: OuterRectClipped is updated in Begin(), so windows moved programmatically +// with SetWindowPos() and not SetNextWindowPos() will have that rectangle lagging by a frame at the time FindHoveredWindow() is +// called, aka before the next Begin(). Moving window isn't affected. +static void FindHoveredWindow() +{ + ImGuiContext& g = *GImGui; + + ImGuiWindow* hovered_window = NULL; + ImGuiWindow* hovered_window_ignoring_moving_window = NULL; + if (g.MovingWindow && !(g.MovingWindow->Flags & ImGuiWindowFlags_NoMouseInputs)) + hovered_window = g.MovingWindow; + + ImVec2 padding_regular = g.Style.TouchExtraPadding; + ImVec2 padding_for_resize = g.IO.ConfigWindowsResizeFromEdges ? g.WindowsHoverPadding : padding_regular; + for (int i = g.Windows.Size - 1; i >= 0; i--) + { + ImGuiWindow* window = g.Windows[i]; + IM_MSVC_WARNING_SUPPRESS(28182); // [Static Analyzer] Dereferencing NULL pointer. + if (!window->Active || window->Hidden) + continue; + if (window->Flags & ImGuiWindowFlags_NoMouseInputs) + continue; + + // Using the clipped AABB, a child window will typically be clipped by its parent (not always) + ImRect bb(window->OuterRectClipped); + if (window->Flags & (ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_AlwaysAutoResize)) + bb.Expand(padding_regular); + else + bb.Expand(padding_for_resize); + if (!bb.Contains(g.IO.MousePos)) + continue; + + // Support for one rectangular hole in any given window + // FIXME: Consider generalizing hit-testing override (with more generic data, callback, etc.) (#1512) + if (window->HitTestHoleSize.x != 0) + { + ImVec2 hole_pos(window->Pos.x + (float)window->HitTestHoleOffset.x, window->Pos.y + (float)window->HitTestHoleOffset.y); + ImVec2 hole_size((float)window->HitTestHoleSize.x, (float)window->HitTestHoleSize.y); + if (ImRect(hole_pos, hole_pos + hole_size).Contains(g.IO.MousePos)) + continue; + } + + if (hovered_window == NULL) + hovered_window = window; + IM_MSVC_WARNING_SUPPRESS(28182); // [Static Analyzer] Dereferencing NULL pointer. + if (hovered_window_ignoring_moving_window == NULL && (!g.MovingWindow || window->RootWindow != g.MovingWindow->RootWindow)) + hovered_window_ignoring_moving_window = window; + if (hovered_window && hovered_window_ignoring_moving_window) + break; + } + + g.HoveredWindow = hovered_window; + g.HoveredWindowUnderMovingWindow = hovered_window_ignoring_moving_window; +} + +bool ImGui::IsItemActive() +{ + ImGuiContext& g = *GImGui; + if (g.ActiveId) + return g.ActiveId == g.LastItemData.ID; + return false; +} + +bool ImGui::IsItemActivated() +{ + ImGuiContext& g = *GImGui; + if (g.ActiveId) + if (g.ActiveId == g.LastItemData.ID && g.ActiveIdPreviousFrame != g.LastItemData.ID) + return true; + return false; +} + +bool ImGui::IsItemDeactivated() +{ + ImGuiContext& g = *GImGui; + if (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HasDeactivated) + return (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_Deactivated) != 0; + return (g.ActiveIdPreviousFrame == g.LastItemData.ID && g.ActiveIdPreviousFrame != 0 && g.ActiveId != g.LastItemData.ID); +} + +bool ImGui::IsItemDeactivatedAfterEdit() +{ + ImGuiContext& g = *GImGui; + return IsItemDeactivated() && (g.ActiveIdPreviousFrameHasBeenEditedBefore || (g.ActiveId == 0 && g.ActiveIdHasBeenEditedBefore)); +} + +// == GetItemID() == GetFocusID() +bool ImGui::IsItemFocused() +{ + ImGuiContext& g = *GImGui; + if (g.NavId != g.LastItemData.ID || g.NavId == 0) + return false; + return true; +} + +// Important: this can be useful but it is NOT equivalent to the behavior of e.g.Button()! +// Most widgets have specific reactions based on mouse-up/down state, mouse position etc. +bool ImGui::IsItemClicked(ImGuiMouseButton mouse_button) +{ + return IsMouseClicked(mouse_button) && IsItemHovered(ImGuiHoveredFlags_None); +} + +bool ImGui::IsItemToggledOpen() +{ + ImGuiContext& g = *GImGui; + return (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_ToggledOpen) ? true : false; +} + +bool ImGui::IsItemToggledSelection() +{ + ImGuiContext& g = *GImGui; + return (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_ToggledSelection) ? true : false; +} + +bool ImGui::IsAnyItemHovered() +{ + ImGuiContext& g = *GImGui; + return g.HoveredId != 0 || g.HoveredIdPreviousFrame != 0; +} + +bool ImGui::IsAnyItemActive() +{ + ImGuiContext& g = *GImGui; + return g.ActiveId != 0; +} + +bool ImGui::IsAnyItemFocused() +{ + ImGuiContext& g = *GImGui; + return g.NavId != 0 && !g.NavDisableHighlight; +} + +bool ImGui::IsItemVisible() +{ + ImGuiContext& g = *GImGui; + return (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_Visible) != 0; +} + +bool ImGui::IsItemEdited() +{ + ImGuiContext& g = *GImGui; + return (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_Edited) != 0; +} + +// Allow next item to be overlapped by subsequent items. +// This works by requiring HoveredId to match for two subsequent frames, +// so if a following items overwrite it our interactions will naturally be disabled. +void ImGui::SetNextItemAllowOverlap() +{ + ImGuiContext& g = *GImGui; + g.NextItemData.ItemFlags |= ImGuiItemFlags_AllowOverlap; +} + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS +// Allow last item to be overlapped by a subsequent item. Both may be activated during the same frame before the later one takes priority. +// FIXME-LEGACY: Use SetNextItemAllowOverlap() *before* your item instead. +void ImGui::SetItemAllowOverlap() +{ + ImGuiContext& g = *GImGui; + ImGuiID id = g.LastItemData.ID; + if (g.HoveredId == id) + g.HoveredIdAllowOverlap = true; + if (g.ActiveId == id) // Before we made this obsolete, most calls to SetItemAllowOverlap() used to avoid this path by testing g.ActiveId != id. + g.ActiveIdAllowOverlap = true; +} +#endif + +// FIXME: It might be undesirable that this will likely disable KeyOwner-aware shortcuts systems. Consider a more fine-tuned version for the two users of this function. +void ImGui::SetActiveIdUsingAllKeyboardKeys() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.ActiveId != 0); + g.ActiveIdUsingNavDirMask = (1 << ImGuiDir_COUNT) - 1; + g.ActiveIdUsingAllKeyboardKeys = true; + NavMoveRequestCancel(); +} + +ImGuiID ImGui::GetItemID() +{ + ImGuiContext& g = *GImGui; + return g.LastItemData.ID; +} + +ImVec2 ImGui::GetItemRectMin() +{ + ImGuiContext& g = *GImGui; + return g.LastItemData.Rect.Min; +} + +ImVec2 ImGui::GetItemRectMax() +{ + ImGuiContext& g = *GImGui; + return g.LastItemData.Rect.Max; +} + +ImVec2 ImGui::GetItemRectSize() +{ + ImGuiContext& g = *GImGui; + return g.LastItemData.Rect.GetSize(); +} + +// Prior to v1.90 2023/10/16, the BeginChild() function took a 'bool border = false' parameter instead of 'ImGuiChildFlags child_flags = 0'. +// ImGuiChildFlags_Border is defined as always == 1 in order to allow old code passing 'true'. +bool ImGui::BeginChild(const char* str_id, const ImVec2& size_arg, ImGuiChildFlags child_flags, ImGuiWindowFlags window_flags) +{ + ImGuiID id = GetCurrentWindow()->GetID(str_id); + return BeginChildEx(str_id, id, size_arg, child_flags, window_flags); +} + +bool ImGui::BeginChild(ImGuiID id, const ImVec2& size_arg, ImGuiChildFlags child_flags, ImGuiWindowFlags window_flags) +{ + return BeginChildEx(NULL, id, size_arg, child_flags, window_flags); +} + +bool ImGui::BeginChildEx(const char* name, ImGuiID id, const ImVec2& size_arg, ImGuiChildFlags child_flags, ImGuiWindowFlags window_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* parent_window = g.CurrentWindow; + IM_ASSERT(id != 0); + + // Sanity check as it is likely that some user will accidentally pass ImGuiWindowFlags into the ImGuiChildFlags argument. + const ImGuiChildFlags ImGuiChildFlags_SupportedMask_ = ImGuiChildFlags_Border | ImGuiChildFlags_AlwaysUseWindowPadding | ImGuiChildFlags_ResizeX | ImGuiChildFlags_ResizeY | ImGuiChildFlags_AutoResizeX | ImGuiChildFlags_AutoResizeY | ImGuiChildFlags_AlwaysAutoResize | ImGuiChildFlags_FrameStyle; + IM_UNUSED(ImGuiChildFlags_SupportedMask_); + IM_ASSERT((child_flags & ~ImGuiChildFlags_SupportedMask_) == 0 && "Illegal ImGuiChildFlags value. Did you pass ImGuiWindowFlags values instead of ImGuiChildFlags?"); + IM_ASSERT((window_flags & ImGuiWindowFlags_AlwaysAutoResize) == 0 && "Cannot specify ImGuiWindowFlags_AlwaysAutoResize for BeginChild(). Use ImGuiChildFlags_AlwaysAutoResize!"); + if (child_flags & ImGuiChildFlags_AlwaysAutoResize) + { + IM_ASSERT((child_flags & (ImGuiChildFlags_ResizeX | ImGuiChildFlags_ResizeY)) == 0 && "Cannot use ImGuiChildFlags_ResizeX or ImGuiChildFlags_ResizeY with ImGuiChildFlags_AlwaysAutoResize!"); + IM_ASSERT((child_flags & (ImGuiChildFlags_AutoResizeX | ImGuiChildFlags_AutoResizeY)) != 0 && "Must use ImGuiChildFlags_AutoResizeX or ImGuiChildFlags_AutoResizeY with ImGuiChildFlags_AlwaysAutoResize!"); + } +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + if (window_flags & ImGuiWindowFlags_AlwaysUseWindowPadding) + child_flags |= ImGuiChildFlags_AlwaysUseWindowPadding; +#endif + if (child_flags & ImGuiChildFlags_AutoResizeX) + child_flags &= ~ImGuiChildFlags_ResizeX; + if (child_flags & ImGuiChildFlags_AutoResizeY) + child_flags &= ~ImGuiChildFlags_ResizeY; + + // Set window flags + window_flags |= ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_NoTitleBar; + window_flags |= (parent_window->Flags & ImGuiWindowFlags_NoMove); // Inherit the NoMove flag + if (child_flags & (ImGuiChildFlags_AutoResizeX | ImGuiChildFlags_AutoResizeY | ImGuiChildFlags_AlwaysAutoResize)) + window_flags |= ImGuiWindowFlags_AlwaysAutoResize; + if ((child_flags & (ImGuiChildFlags_ResizeX | ImGuiChildFlags_ResizeY)) == 0) + window_flags |= ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoSavedSettings; + + // Special framed style + if (child_flags & ImGuiChildFlags_FrameStyle) + { + PushStyleColor(ImGuiCol_ChildBg, g.Style.Colors[ImGuiCol_FrameBg]); + PushStyleVar(ImGuiStyleVar_ChildRounding, g.Style.FrameRounding); + PushStyleVar(ImGuiStyleVar_ChildBorderSize, g.Style.FrameBorderSize); + PushStyleVar(ImGuiStyleVar_WindowPadding, g.Style.FramePadding); + child_flags |= ImGuiChildFlags_Border | ImGuiChildFlags_AlwaysUseWindowPadding; + window_flags |= ImGuiWindowFlags_NoMove; + } + + // Forward child flags + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasChildFlags; + g.NextWindowData.ChildFlags = child_flags; + + // Forward size + // Important: Begin() has special processing to switch condition to ImGuiCond_FirstUseEver for a given axis when ImGuiChildFlags_ResizeXXX is set. + // (the alternative would to store conditional flags per axis, which is possible but more code) + const ImVec2 size_avail = GetContentRegionAvail(); + const ImVec2 size_default((child_flags & ImGuiChildFlags_AutoResizeX) ? 0.0f : size_avail.x, (child_flags & ImGuiChildFlags_AutoResizeY) ? 0.0f : size_avail.y); + const ImVec2 size = CalcItemSize(size_arg, size_default.x, size_default.y); + SetNextWindowSize(size); + + // Build up name. If you need to append to a same child from multiple location in the ID stack, use BeginChild(ImGuiID id) with a stable value. + // FIXME: 2023/11/14: commented out shorted version. We had an issue with multiple ### in child window path names, which the trailing hash helped workaround. + // e.g. "ParentName###ParentIdentifier/ChildName###ChildIdentifier" would get hashed incorrectly by ImHashStr(), trailing _%08X somehow fixes it. + const char* temp_window_name; + /*if (name && parent_window->IDStack.back() == parent_window->ID) + ImFormatStringToTempBuffer(&temp_window_name, NULL, "%s/%s", parent_window->Name, name); // May omit ID if in root of ID stack + else*/ + if (name) + ImFormatStringToTempBuffer(&temp_window_name, NULL, "%s/%s_%08X", parent_window->Name, name, id); + else + ImFormatStringToTempBuffer(&temp_window_name, NULL, "%s/%08X", parent_window->Name, id); + + // Set style + const float backup_border_size = g.Style.ChildBorderSize; + if ((child_flags & ImGuiChildFlags_Border) == 0) + g.Style.ChildBorderSize = 0.0f; + + // Begin into window + const bool ret = Begin(temp_window_name, NULL, window_flags); + + // Restore style + g.Style.ChildBorderSize = backup_border_size; + if (child_flags & ImGuiChildFlags_FrameStyle) + { + PopStyleVar(3); + PopStyleColor(); + } + + ImGuiWindow* child_window = g.CurrentWindow; + child_window->ChildId = id; + + // Set the cursor to handle case where the user called SetNextWindowPos()+BeginChild() manually. + // While this is not really documented/defined, it seems that the expected thing to do. + if (child_window->BeginCount == 1) + parent_window->DC.CursorPos = child_window->Pos; + + // Process navigation-in immediately so NavInit can run on first frame + // Can enter a child if (A) it has navigable items or (B) it can be scrolled. + const ImGuiID temp_id_for_activation = ImHashStr("##Child", 0, id); + if (g.ActiveId == temp_id_for_activation) + ClearActiveID(); + if (g.NavActivateId == id && !(window_flags & ImGuiWindowFlags_NavFlattened) && (child_window->DC.NavLayersActiveMask != 0 || child_window->DC.NavWindowHasScrollY)) + { + FocusWindow(child_window); + NavInitWindow(child_window, false); + SetActiveID(temp_id_for_activation, child_window); // Steal ActiveId with another arbitrary id so that key-press won't activate child item + g.ActiveIdSource = g.NavInputSource; + } + return ret; +} + +void ImGui::EndChild() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* child_window = g.CurrentWindow; + + IM_ASSERT(g.WithinEndChild == false); + IM_ASSERT(child_window->Flags & ImGuiWindowFlags_ChildWindow); // Mismatched BeginChild()/EndChild() calls + + g.WithinEndChild = true; + ImVec2 child_size = child_window->Size; + End(); + if (child_window->BeginCount == 1) + { + ImGuiWindow* parent_window = g.CurrentWindow; + ImRect bb(parent_window->DC.CursorPos, parent_window->DC.CursorPos + child_size); + ItemSize(child_size); + if ((child_window->DC.NavLayersActiveMask != 0 || child_window->DC.NavWindowHasScrollY) && !(child_window->Flags & ImGuiWindowFlags_NavFlattened)) + { + ItemAdd(bb, child_window->ChildId); + RenderNavHighlight(bb, child_window->ChildId); + + // When browsing a window that has no activable items (scroll only) we keep a highlight on the child (pass g.NavId to trick into always displaying) + if (child_window->DC.NavLayersActiveMask == 0 && child_window == g.NavWindow) + RenderNavHighlight(ImRect(bb.Min - ImVec2(2, 2), bb.Max + ImVec2(2, 2)), g.NavId, ImGuiNavHighlightFlags_TypeThin); + } + else + { + // Not navigable into + ItemAdd(bb, 0); + + // But when flattened we directly reach items, adjust active layer mask accordingly + if (child_window->Flags & ImGuiWindowFlags_NavFlattened) + parent_window->DC.NavLayersActiveMaskNext |= child_window->DC.NavLayersActiveMaskNext; + } + if (g.HoveredWindow == child_window) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HoveredWindow; + } + g.WithinEndChild = false; + g.LogLinePosY = -FLT_MAX; // To enforce a carriage return +} + +// Helper to create a child window / scrolling region that looks like a normal widget frame. +bool ImGui::BeginChildFrame(ImGuiID id, const ImVec2& size, ImGuiWindowFlags extra_flags) +{ + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + PushStyleColor(ImGuiCol_ChildBg, style.Colors[ImGuiCol_ChildBg]); + PushStyleVar(ImGuiStyleVar_ChildRounding, style.FrameRounding); + PushStyleVar(ImGuiStyleVar_ChildBorderSize, style.FrameBorderSize); + PushStyleVar(ImGuiStyleVar_WindowPadding, style.FramePadding); + bool ret = BeginChild(id, size, true, ImGuiWindowFlags_NoMove | ImGuiWindowFlags_AlwaysUseWindowPadding | extra_flags); + PopStyleVar(3); + PopStyleColor(); + return ret; +} + +void ImGui::EndChildFrame() +{ + EndChild(); +} + +static void SetWindowConditionAllowFlags(ImGuiWindow* window, ImGuiCond flags, bool enabled) +{ + window->SetWindowPosAllowFlags = enabled ? (window->SetWindowPosAllowFlags | flags) : (window->SetWindowPosAllowFlags & ~flags); + window->SetWindowSizeAllowFlags = enabled ? (window->SetWindowSizeAllowFlags | flags) : (window->SetWindowSizeAllowFlags & ~flags); + window->SetWindowCollapsedAllowFlags = enabled ? (window->SetWindowCollapsedAllowFlags | flags) : (window->SetWindowCollapsedAllowFlags & ~flags); +} + +ImGuiWindow* ImGui::FindWindowByID(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + return (ImGuiWindow*)g.WindowsById.GetVoidPtr(id); +} + +ImGuiWindow* ImGui::FindWindowByName(const char* name) +{ + ImGuiID id = ImHashStr(name); + return FindWindowByID(id); +} + +static void ApplyWindowSettings(ImGuiWindow* window, ImGuiWindowSettings* settings) +{ + window->Pos = ImFloor(ImVec2(settings->Pos.x, settings->Pos.y)); + if (settings->Size.x > 0 && settings->Size.y > 0) + window->Size = window->SizeFull = ImFloor(ImVec2(settings->Size.x, settings->Size.y)); + window->Collapsed = settings->Collapsed; +} + +static void UpdateWindowInFocusOrderList(ImGuiWindow* window, bool just_created, ImGuiWindowFlags new_flags) +{ + ImGuiContext& g = *GImGui; + + const bool new_is_explicit_child = (new_flags & ImGuiWindowFlags_ChildWindow) != 0 && ((new_flags & ImGuiWindowFlags_Popup) == 0 || (new_flags & ImGuiWindowFlags_ChildMenu) != 0); + const bool child_flag_changed = new_is_explicit_child != window->IsExplicitChild; + if ((just_created || child_flag_changed) && !new_is_explicit_child) + { + IM_ASSERT(!g.WindowsFocusOrder.contains(window)); + g.WindowsFocusOrder.push_back(window); + window->FocusOrder = (short)(g.WindowsFocusOrder.Size - 1); + } + else if (!just_created && child_flag_changed && new_is_explicit_child) + { + IM_ASSERT(g.WindowsFocusOrder[window->FocusOrder] == window); + for (int n = window->FocusOrder + 1; n < g.WindowsFocusOrder.Size; n++) + g.WindowsFocusOrder[n]->FocusOrder--; + g.WindowsFocusOrder.erase(g.WindowsFocusOrder.Data + window->FocusOrder); + window->FocusOrder = -1; + } + window->IsExplicitChild = new_is_explicit_child; +} + +static void InitOrLoadWindowSettings(ImGuiWindow* window, ImGuiWindowSettings* settings) +{ + // Initial window state with e.g. default/arbitrary window position + // Use SetNextWindowPos() with the appropriate condition flag to change the initial position of a window. + const ImGuiViewport* main_viewport = ImGui::GetMainViewport(); + window->Pos = main_viewport->Pos + ImVec2(60, 60); + window->SetWindowPosAllowFlags = window->SetWindowSizeAllowFlags = window->SetWindowCollapsedAllowFlags = ImGuiCond_Always | ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing; + + if (settings != NULL) + { + SetWindowConditionAllowFlags(window, ImGuiCond_FirstUseEver, false); + ApplyWindowSettings(window, settings); + } + window->DC.CursorStartPos = window->DC.CursorMaxPos = window->DC.IdealMaxPos = window->Pos; // So first call to CalcWindowContentSizes() doesn't return crazy values + + if ((window->Flags & ImGuiWindowFlags_AlwaysAutoResize) != 0) + { + window->AutoFitFramesX = window->AutoFitFramesY = 2; + window->AutoFitOnlyGrows = false; + } + else + { + if (window->Size.x <= 0.0f) + window->AutoFitFramesX = 2; + if (window->Size.y <= 0.0f) + window->AutoFitFramesY = 2; + window->AutoFitOnlyGrows = (window->AutoFitFramesX > 0) || (window->AutoFitFramesY > 0); + } +} + +static ImGuiWindow* CreateNewWindow(const char* name, ImGuiWindowFlags flags) +{ + // Create window the first time + //IMGUI_DEBUG_LOG("CreateNewWindow '%s', flags = 0x%08X\n", name, flags); + ImGuiContext& g = *GImGui; + ImGuiWindow* window = IM_NEW(ImGuiWindow)(&g, name); + window->Flags = flags; + g.WindowsById.SetVoidPtr(window->ID, window); + + ImGuiWindowSettings* settings = NULL; + if (!(flags & ImGuiWindowFlags_NoSavedSettings)) + if ((settings = ImGui::FindWindowSettingsByWindow(window)) != 0) + window->SettingsOffset = g.SettingsWindows.offset_from_ptr(settings); + + InitOrLoadWindowSettings(window, settings); + + if (flags & ImGuiWindowFlags_NoBringToFrontOnFocus) + g.Windows.push_front(window); // Quite slow but rare and only once + else + g.Windows.push_back(window); + + return window; +} + +static ImVec2 CalcWindowSizeAfterConstraint(ImGuiWindow* window, const ImVec2& size_desired) +{ + ImGuiContext& g = *GImGui; + ImVec2 new_size = size_desired; + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSizeConstraint) + { + // Using -1,-1 on either X/Y axis to preserve the current size. + ImRect cr = g.NextWindowData.SizeConstraintRect; + new_size.x = (cr.Min.x >= 0 && cr.Max.x >= 0) ? ImClamp(new_size.x, cr.Min.x, cr.Max.x) : window->SizeFull.x; + new_size.y = (cr.Min.y >= 0 && cr.Max.y >= 0) ? ImClamp(new_size.y, cr.Min.y, cr.Max.y) : window->SizeFull.y; + if (g.NextWindowData.SizeCallback) + { + ImGunSizeCallbackData data; + data.UserData = g.NextWindowData.SizeCallbackUserData; + data.Pos = window->Pos; + data.CurrentSize = window->SizeFull; + data.DesiredSize = new_size; + g.NextWindowData.SizeCallback(&data); + new_size = data.DesiredSize; + } + new_size.x = IM_FLOOR(new_size.x); + new_size.y = IM_FLOOR(new_size.y); + } + + // Minimum size + if (!(window->Flags & (ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_AlwaysAutoResize))) + { + ImGuiWindow* window_for_height = window; + new_size = ImMax(new_size, g.Style.WindowMinSize); + const float minimum_height = window_for_height->TitleBarHeight() + window_for_height->MenuBarHeight() + ImMax(0.0f, g.Style.WindowRounding - 1.0f); + new_size.y = ImMax(new_size.y, minimum_height); // Reduce artifacts with very small windows + } + return new_size; +} + +static void CalcWindowContentSizes(ImGuiWindow* window, ImVec2* content_size_current, ImVec2* content_size_ideal) +{ + bool preserve_old_content_sizes = false; + if (window->Collapsed && window->AutoFitFramesX <= 0 && window->AutoFitFramesY <= 0) + preserve_old_content_sizes = true; + else if (window->Hidden && window->HiddenFramesCannotSkipItems == 0 && window->HiddenFramesCanSkipItems > 0) + preserve_old_content_sizes = true; + if (preserve_old_content_sizes) + { + *content_size_current = window->ContentSize; + *content_size_ideal = window->ContentSizeIdeal; + return; + } + + content_size_current->x = (window->ContentSizeExplicit.x != 0.0f) ? window->ContentSizeExplicit.x : IM_FLOOR(window->DC.CursorMaxPos.x - window->DC.CursorStartPos.x); + content_size_current->y = (window->ContentSizeExplicit.y != 0.0f) ? window->ContentSizeExplicit.y : IM_FLOOR(window->DC.CursorMaxPos.y - window->DC.CursorStartPos.y); + content_size_ideal->x = (window->ContentSizeExplicit.x != 0.0f) ? window->ContentSizeExplicit.x : IM_FLOOR(ImMax(window->DC.CursorMaxPos.x, window->DC.IdealMaxPos.x) - window->DC.CursorStartPos.x); + content_size_ideal->y = (window->ContentSizeExplicit.y != 0.0f) ? window->ContentSizeExplicit.y : IM_FLOOR(ImMax(window->DC.CursorMaxPos.y, window->DC.IdealMaxPos.y) - window->DC.CursorStartPos.y); +} + +static ImVec2 CalcWindowAutoFitSize(ImGuiWindow* window, const ImVec2& size_contents) +{ + ImGuiContext& g = *GImGui; + ImGuiStyle& style = g.Style; + const float decoration_w_without_scrollbars = window->DecoOuterSizeX1 + window->DecoOuterSizeX2 - window->ScrollbarSizes.x; + const float decoration_h_without_scrollbars = window->DecoOuterSizeY1 + window->DecoOuterSizeY2 - window->ScrollbarSizes.y; + ImVec2 size_pad = window->WindowPadding * 2.0f; + ImVec2 size_desired = size_contents + size_pad + ImVec2(decoration_w_without_scrollbars, decoration_h_without_scrollbars); + if (window->Flags & ImGuiWindowFlags_Tooltip) + { + // Tooltip always resize + return size_desired; + } + else + { + // Maximum window size is determined by the viewport size or monitor size + const bool is_popup = (window->Flags & ImGuiWindowFlags_Popup) != 0; + const bool is_menu = (window->Flags & ImGuiWindowFlags_ChildMenu) != 0; + ImVec2 size_min = style.WindowMinSize; + if (is_popup || is_menu) // Popups and menus bypass style.WindowMinSize by default, but we give then a non-zero minimum size to facilitate understanding problematic cases (e.g. empty popups) + size_min = ImMin(size_min, ImVec2(4.0f, 4.0f)); + + ImVec2 avail_size = ImGui::GetMainViewport()->WorkSize; + ImVec2 size_auto_fit = ImClamp(size_desired, size_min, ImMax(size_min, avail_size - style.DisplaySafeAreaPadding * 2.0f)); + + // When the window cannot fit all contents (either because of constraints, either because screen is too small), + // we are growing the size on the other axis to compensate for expected scrollbar. FIXME: Might turn bigger than ViewportSize-WindowPadding. + ImVec2 size_auto_fit_after_constraint = CalcWindowSizeAfterConstraint(window, size_auto_fit); + bool will_have_scrollbar_x = (size_auto_fit_after_constraint.x - size_pad.x - decoration_w_without_scrollbars < size_contents.x && !(window->Flags & ImGuiWindowFlags_NoScrollbar) && (window->Flags & ImGuiWindowFlags_HorizontalScrollbar)) || (window->Flags & ImGuiWindowFlags_AlwaysHorizontalScrollbar); + bool will_have_scrollbar_y = (size_auto_fit_after_constraint.y - size_pad.y - decoration_h_without_scrollbars < size_contents.y && !(window->Flags & ImGuiWindowFlags_NoScrollbar)) || (window->Flags & ImGuiWindowFlags_AlwaysVerticalScrollbar); + if (will_have_scrollbar_x) + size_auto_fit.y += style.ScrollbarSize; + if (will_have_scrollbar_y) + size_auto_fit.x += style.ScrollbarSize; + return size_auto_fit; + } +} + +ImVec2 ImGui::CalcWindowNextAutoFitSize(ImGuiWindow* window) +{ + ImVec2 size_contents_current; + ImVec2 size_contents_ideal; + CalcWindowContentSizes(window, &size_contents_current, &size_contents_ideal); + ImVec2 size_auto_fit = CalcWindowAutoFitSize(window, size_contents_ideal); + ImVec2 size_final = CalcWindowSizeAfterConstraint(window, size_auto_fit); + return size_final; +} + +static ImGuiCol GetWindowBgColorIdx(ImGuiWindow* window) +{ + if (window->Flags & (ImGuiWindowFlags_Tooltip | ImGuiWindowFlags_Popup)) + return ImGuiCol_PopupBg; + if (window->Flags & ImGuiWindowFlags_ChildWindow) + return ImGuiCol_ChildBg; + return ImGuiCol_WindowBg; +} + +static void CalcResizePosSizeFromAnyCorner(ImGuiWindow* window, const ImVec2& corner_target, const ImVec2& corner_norm, ImVec2* out_pos, ImVec2* out_size) +{ + ImVec2 pos_min = ImLerp(corner_target, window->Pos, corner_norm); // Expected window upper-left + ImVec2 pos_max = ImLerp(window->Pos + window->Size, corner_target, corner_norm); // Expected window lower-right + ImVec2 size_expected = pos_max - pos_min; + ImVec2 size_constrained = CalcWindowSizeAfterConstraint(window, size_expected); + *out_pos = pos_min; + if (corner_norm.x == 0.0f) + out_pos->x -= (size_constrained.x - size_expected.x); + if (corner_norm.y == 0.0f) + out_pos->y -= (size_constrained.y - size_expected.y); + *out_size = size_constrained; +} + +// Data for resizing from corner +struct ImGuiResizeGripDef +{ + ImVec2 CornerPosN; + ImVec2 InnerDir; + int AngleMin12, AngleMax12; +}; +static const ImGuiResizeGripDef resize_grip_def[4] = +{ + { ImVec2(1, 1), ImVec2(-1, -1), 0, 3 }, // Lower-right + { ImVec2(0, 1), ImVec2(+1, -1), 3, 6 }, // Lower-left + { ImVec2(0, 0), ImVec2(+1, +1), 6, 9 }, // Upper-left (Unused) + { ImVec2(1, 0), ImVec2(-1, +1), 9, 12 } // Upper-right (Unused) +}; + +// Data for resizing from borders +struct ImGuiResizeBorderDef +{ + ImVec2 InnerDir; + ImVec2 SegmentN1, SegmentN2; + float OuterAngle; +}; +static const ImGuiResizeBorderDef resize_border_def[4] = +{ + { ImVec2(+1, 0), ImVec2(0, 1), ImVec2(0, 0), IM_PI * 1.00f }, // Left + { ImVec2(-1, 0), ImVec2(1, 0), ImVec2(1, 1), IM_PI * 0.00f }, // Right + { ImVec2(0, +1), ImVec2(0, 0), ImVec2(1, 0), IM_PI * 1.50f }, // Up + { ImVec2(0, -1), ImVec2(1, 1), ImVec2(0, 1), IM_PI * 0.50f } // Down +}; + +static ImRect GetResizeBorderRect(ImGuiWindow* window, int border_n, float perp_padding, float thickness) +{ + ImRect rect = window->Rect(); + if (thickness == 0.0f) + rect.Max -= ImVec2(1, 1); + if (border_n == ImGuiDir_Left) { return ImRect(rect.Min.x - thickness, rect.Min.y + perp_padding, rect.Min.x + thickness, rect.Max.y - perp_padding); } + if (border_n == ImGuiDir_Right) { return ImRect(rect.Max.x - thickness, rect.Min.y + perp_padding, rect.Max.x + thickness, rect.Max.y - perp_padding); } + if (border_n == ImGuiDir_Up) { return ImRect(rect.Min.x + perp_padding, rect.Min.y - thickness, rect.Max.x - perp_padding, rect.Min.y + thickness); } + if (border_n == ImGuiDir_Down) { return ImRect(rect.Min.x + perp_padding, rect.Max.y - thickness, rect.Max.x - perp_padding, rect.Max.y + thickness); } + IM_ASSERT(0); + return ImRect(); +} + +// 0..3: corners (Lower-right, Lower-left, Unused, Unused) +ImGuiID ImGui::GetWindowResizeCornerID(ImGuiWindow* window, int n) +{ + IM_ASSERT(n >= 0 && n < 4); + ImGuiID id = window->ID; + id = ImHashStr("#RESIZE", 0, id); + id = ImHashData(&n, sizeof(int), id); + return id; +} + +// Borders (Left, Right, Up, Down) +ImGuiID ImGui::GetWindowResizeBorderID(ImGuiWindow* window, ImGuiDir dir) +{ + IM_ASSERT(dir >= 0 && dir < 4); + int n = (int)dir + 4; + ImGuiID id = window->ID; + id = ImHashStr("#RESIZE", 0, id); + id = ImHashData(&n, sizeof(int), id); + return id; +} + +// Handle resize for: Resize Grips, Borders, Gamepad +// Return true when using auto-fit (double-click on resize grip) +static bool ImGui::UpdateWindowManualResize(ImGuiWindow* window, const ImVec2& size_auto_fit, int* border_held, int resize_grip_count, ImU32 resize_grip_col[4], const ImRect& visibility_rect) +{ + ImGuiContext& g = *GImGui; + ImGuiWindowFlags flags = window->Flags; + + if ((flags & ImGuiWindowFlags_NoResize) || (flags & ImGuiWindowFlags_AlwaysAutoResize) || window->AutoFitFramesX > 0 || window->AutoFitFramesY > 0) + return false; + if (window->WasActive == false) // Early out to avoid running this code for e.g. a hidden implicit/fallback Debug window. + return false; + + bool ret_auto_fit = false; + const int resize_border_count = g.IO.ConfigWindowsResizeFromEdges ? 4 : 0; + const float grip_draw_size = IM_FLOOR(ImMax(g.FontSize * 1.35f, window->WindowRounding + 1.0f + g.FontSize * 0.2f)); + const float grip_hover_inner_size = IM_FLOOR(grip_draw_size * 0.75f); + const float grip_hover_outer_size = g.IO.ConfigWindowsResizeFromEdges ? WINDOWS_HOVER_PADDING : 0.0f; + + ImRect clamp_rect = visibility_rect; + const bool window_move_from_title_bar = g.IO.ConfigWindowsMoveFromTitleBarOnly && !(window->Flags & ImGuiWindowFlags_NoTitleBar); + if (window_move_from_title_bar) + clamp_rect.Min.y -= window->TitleBarHeight(); + + ImVec2 pos_target(FLT_MAX, FLT_MAX); + ImVec2 size_target(FLT_MAX, FLT_MAX); + + // Resize grips and borders are on layer 1 + window->DC.NavLayerCurrent = ImGuiNavLayer_Menu; + + // Manual resize grips + PushID("#RESIZE"); + for (int resize_grip_n = 0; resize_grip_n < resize_grip_count; resize_grip_n++) + { + const ImGuiResizeGripDef& def = resize_grip_def[resize_grip_n]; + const ImVec2 corner = ImLerp(window->Pos, window->Pos + window->Size, def.CornerPosN); + + // Using the FlattenChilds button flag we make the resize button accessible even if we are hovering over a child window + bool hovered, held; + ImRect resize_rect(corner - def.InnerDir * grip_hover_outer_size, corner + def.InnerDir * grip_hover_inner_size); + if (resize_rect.Min.x > resize_rect.Max.x) ImSwap(resize_rect.Min.x, resize_rect.Max.x); + if (resize_rect.Min.y > resize_rect.Max.y) ImSwap(resize_rect.Min.y, resize_rect.Max.y); + ImGuiID resize_grip_id = window->GetID(resize_grip_n); // == GetWindowResizeCornerID() + ItemAdd(resize_rect, resize_grip_id, NULL, ImGuiItemFlags_NoNav); + ButtonBehavior(resize_rect, resize_grip_id, &hovered, &held, ImGuiButtonFlags_FlattenChildren | ImGuiButtonFlags_NoNavFocus); + //GetForegroundDrawList(window)->AddRect(resize_rect.Min, resize_rect.Max, IM_COL32(255, 255, 0, 255)); + if (hovered || held) + g.MouseCursor = (resize_grip_n & 1) ? ImGuiMouseCursor_ResizeNESW : ImGuiMouseCursor_ResizeNWSE; + + if (held && g.IO.MouseClickedCount[0] == 2 && resize_grip_n == 0) + { + // Manual auto-fit when double-clicking + size_target = CalcWindowSizeAfterConstraint(window, size_auto_fit); + ret_auto_fit = true; + ClearActiveID(); + } + else if (held) + { + // Resize from any of the four corners + // We don't use an incremental MouseDelta but rather compute an absolute target size based on mouse position + ImVec2 clamp_min = ImVec2(def.CornerPosN.x == 1.0f ? clamp_rect.Min.x : -FLT_MAX, (def.CornerPosN.y == 1.0f || (def.CornerPosN.y == 0.0f && window_move_from_title_bar)) ? clamp_rect.Min.y : -FLT_MAX); + ImVec2 clamp_max = ImVec2(def.CornerPosN.x == 0.0f ? clamp_rect.Max.x : +FLT_MAX, def.CornerPosN.y == 0.0f ? clamp_rect.Max.y : +FLT_MAX); + ImVec2 corner_target = g.IO.MousePos - g.ActiveIdClickOffset + ImLerp(def.InnerDir * grip_hover_outer_size, def.InnerDir * -grip_hover_inner_size, def.CornerPosN); // Corner of the window corresponding to our corner grip + corner_target = ImClamp(corner_target, clamp_min, clamp_max); + CalcResizePosSizeFromAnyCorner(window, corner_target, def.CornerPosN, &pos_target, &size_target); + } + + // Only lower-left grip is visible before hovering/activating + if (resize_grip_n == 0 || held || hovered) + resize_grip_col[resize_grip_n] = GetColorU32(held ? ImGuiCol_ResizeGripActive : hovered ? ImGuiCol_ResizeGripHovered : ImGuiCol_ResizeGrip); + } + for (int border_n = 0; border_n < resize_border_count; border_n++) + { + const ImGuiResizeBorderDef& def = resize_border_def[border_n]; + const ImGuiAxis axis = (border_n == ImGuiDir_Left || border_n == ImGuiDir_Right) ? ImGuiAxis_X : ImGuiAxis_Y; + + bool hovered, held; + ImRect border_rect = GetResizeBorderRect(window, border_n, grip_hover_inner_size, WINDOWS_HOVER_PADDING); + ImGuiID border_id = window->GetID(border_n + 4); // == GetWindowResizeBorderID() + ItemAdd(border_rect, border_id, NULL, ImGuiItemFlags_NoNav); + ButtonBehavior(border_rect, border_id, &hovered, &held, ImGuiButtonFlags_FlattenChildren | ImGuiButtonFlags_NoNavFocus); + //GetForegroundDrawLists(window)->AddRect(border_rect.Min, border_rect.Max, IM_COL32(255, 255, 0, 255)); + if ((hovered && g.HoveredIdTimer > WINDOWS_RESIZE_FROM_EDGES_FEEDBACK_TIMER) || held) + { + g.MouseCursor = (axis == ImGuiAxis_X) ? ImGuiMouseCursor_ResizeEW : ImGuiMouseCursor_ResizeNS; + if (held) + *border_held = border_n; + } + if (held) + { + ImVec2 clamp_min(border_n == ImGuiDir_Right ? clamp_rect.Min.x : -FLT_MAX, border_n == ImGuiDir_Down || (border_n == ImGuiDir_Up && window_move_from_title_bar) ? clamp_rect.Min.y : -FLT_MAX); + ImVec2 clamp_max(border_n == ImGuiDir_Left ? clamp_rect.Max.x : +FLT_MAX, border_n == ImGuiDir_Up ? clamp_rect.Max.y : +FLT_MAX); + ImVec2 border_target = window->Pos; + border_target[axis] = g.IO.MousePos[axis] - g.ActiveIdClickOffset[axis] + WINDOWS_HOVER_PADDING; + border_target = ImClamp(border_target, clamp_min, clamp_max); + CalcResizePosSizeFromAnyCorner(window, border_target, ImMin(def.SegmentN1, def.SegmentN2), &pos_target, &size_target); + } + } + PopID(); + + // Restore nav layer + window->DC.NavLayerCurrent = ImGuiNavLayer_Main; + + // Navigation resize (keyboard/gamepad) + // FIXME: This cannot be moved to NavUpdateWindowing() because CalcWindowSizeAfterConstraint() need to callback into user. + // Not even sure the callback works here. + if (g.NavWindowingTarget && g.NavWindowingTarget->RootWindow == window) + { + ImVec2 nav_resize_dir; + if (g.NavInputSource == ImGuiInputSource_Keyboard && g.IO.KeyShift) + nav_resize_dir = GetKeyMagnitude2d(ImGuiKey_LeftArrow, ImGuiKey_RightArrow, ImGuiKey_UpArrow, ImGuiKey_DownArrow); + if (g.NavInputSource == ImGuiInputSource_Gamepad) + nav_resize_dir = GetKeyMagnitude2d(ImGuiKey_GamepadDpadLeft, ImGuiKey_GamepadDpadRight, ImGuiKey_GamepadDpadUp, ImGuiKey_GamepadDpadDown); + if (nav_resize_dir.x != 0.0f || nav_resize_dir.y != 0.0f) + { + const float NAV_RESIZE_SPEED = 600.0f; + const float resize_step = NAV_RESIZE_SPEED * g.IO.DeltaTime * ImMin(g.IO.DisplayFramebufferScale.x, g.IO.DisplayFramebufferScale.y); + g.NavWindowingAccumDeltaSize += nav_resize_dir * resize_step; + g.NavWindowingAccumDeltaSize = ImMax(g.NavWindowingAccumDeltaSize, clamp_rect.Min - window->Pos - window->Size); // We need Pos+Size >= clmap_rect.Min, so Size >= clmap_rect.Min - Pos, so size_delta >= clmap_rect.Min - window->Pos - window->Size + g.NavWindowingToggleLayer = false; + g.NavDisableMouseHover = true; + resize_grip_col[0] = GetColorU32(ImGuiCol_ResizeGripActive); + ImVec2 accum_floored = ImFloor(g.NavWindowingAccumDeltaSize); + if (accum_floored.x != 0.0f || accum_floored.y != 0.0f) + { + // FIXME-NAV: Should store and accumulate into a separate size buffer to handle sizing constraints properly, right now a constraint will make us stuck. + size_target = CalcWindowSizeAfterConstraint(window, window->SizeFull + accum_floored); + g.NavWindowingAccumDeltaSize -= accum_floored; + } + } + } + + // Apply back modified position/size to window + if (size_target.x != FLT_MAX) + { + window->SizeFull = size_target; + MarkIniSettingsDirty(window); + } + if (pos_target.x != FLT_MAX) + { + window->Pos = ImFloor(pos_target); + MarkIniSettingsDirty(window); + } + + window->Size = window->SizeFull; + return ret_auto_fit; +} + +static inline void ClampWindowPos(ImGuiWindow* window, const ImRect& visibility_rect) +{ + ImGuiContext& g = *GImGui; + ImVec2 size_for_clamping = window->Size; + if (g.IO.ConfigWindowsMoveFromTitleBarOnly && !(window->Flags & ImGuiWindowFlags_NoTitleBar)) + size_for_clamping.y = window->TitleBarHeight(); + window->Pos = ImClamp(window->Pos, visibility_rect.Min - size_for_clamping, visibility_rect.Max); +} + +static void ImGui::RenderWindowOuterBorders(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + float rounding = window->WindowRounding; + float border_size = window->WindowBorderSize; + if (border_size > 0.0f && !(window->Flags & ImGuiWindowFlags_NoBackground)) + window->DrawList->AddRect(window->Pos, window->Pos + window->Size, GetColorU32(ImGuiCol_Border), rounding, 0, border_size); + + int border_held = window->ResizeBorderHeld; + if (border_held != -1) + { + const ImGuiResizeBorderDef& def = resize_border_def[border_held]; + ImRect border_r = GetResizeBorderRect(window, border_held, rounding, 0.0f); + window->DrawList->PathArcTo(ImLerp(border_r.Min, border_r.Max, def.SegmentN1) + ImVec2(0.5f, 0.5f) + def.InnerDir * rounding, rounding, def.OuterAngle - IM_PI * 0.25f, def.OuterAngle); + window->DrawList->PathArcTo(ImLerp(border_r.Min, border_r.Max, def.SegmentN2) + ImVec2(0.5f, 0.5f) + def.InnerDir * rounding, rounding, def.OuterAngle, def.OuterAngle + IM_PI * 0.25f); + window->DrawList->PathStroke(GetColorU32(ImGuiCol_SeparatorActive), 0, ImMax(2.0f, border_size)); // Thicker than usual + } + if (g.Style.FrameBorderSize > 0 && !(window->Flags & ImGuiWindowFlags_NoTitleBar)) + { + float y = window->Pos.y + window->TitleBarHeight() - 1; + window->DrawList->AddLine(ImVec2(window->Pos.x + border_size, y), ImVec2(window->Pos.x + window->Size.x - border_size, y), GetColorU32(ImGuiCol_Border), g.Style.FrameBorderSize); + } +} + +// Draw background and borders +// Draw and handle scrollbars +void ImGui::RenderWindowDecorations(ImGuiWindow* window, const ImRect& title_bar_rect, bool title_bar_is_highlight, bool handle_borders_and_resize_grips, int resize_grip_count, const ImU32 resize_grip_col[4], float resize_grip_draw_size) +{ + ImGuiContext& g = *GImGui; + ImGuiStyle& style = g.Style; + ImGuiWindowFlags flags = window->Flags; + + // Ensure that ScrollBar doesn't read last frame's SkipItems + IM_ASSERT(window->BeginCount == 0); + window->SkipItems = false; + + // Draw window + handle manual resize + // As we highlight the title bar when want_focus is set, multiple reappearing windows will have their title bar highlighted on their reappearing frame. + const float window_rounding = window->WindowRounding; + const float window_border_size = window->WindowBorderSize; + if (window->Collapsed) + { + // Title bar only + const float backup_border_size = style.FrameBorderSize; + g.Style.FrameBorderSize = window->WindowBorderSize; + ImU32 title_bar_col = GetColorU32((title_bar_is_highlight && !g.NavDisableHighlight) ? ImGuiCol_TitleBgActive : ImGuiCol_TitleBgCollapsed); + RenderFrame(title_bar_rect.Min, title_bar_rect.Max, title_bar_col, true, window_rounding); + g.Style.FrameBorderSize = backup_border_size; + } + else + { + // Window background + if (!(flags & ImGuiWindowFlags_NoBackground)) + { + ImU32 bg_col = GetColorU32(GetWindowBgColorIdx(window)); + bool override_alpha = false; + float alpha = 1.0f; + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasBgAlpha) + { + alpha = g.NextWindowData.BgAlphaVal; + override_alpha = true; + } + if (override_alpha) + bg_col = (bg_col & ~IM_COL32_A_MASK) | (IM_F32_TO_INT8_SAT(alpha) << IM_COL32_A_SHIFT); + window->DrawList->AddRectFilled(window->Pos + ImVec2(0, window->TitleBarHeight()), window->Pos + window->Size, bg_col, window_rounding, (flags & ImGuiWindowFlags_NoTitleBar) ? 0 : ImDrawFlags_RoundCornersBottom); + } + + // Draw window shadow + if (style.WindowShadowSize > 0.0f && (!(flags & ImGuiWindowFlags_ChildWindow) || (flags & ImGuiWindowFlags_Popup))) + if (style.Colors[ImGuiCol_WindowShadow].w > 0.0f) + RenderWindowShadow(window); + + // Title bar + if (!(flags & ImGuiWindowFlags_NoTitleBar)) + { + ImU32 title_bar_col = GetColorU32(title_bar_is_highlight ? ImGuiCol_TitleBgActive : ImGuiCol_TitleBg); + window->DrawList->AddRectFilled(title_bar_rect.Min, title_bar_rect.Max, title_bar_col, window_rounding, ImDrawFlags_RoundCornersTop); + } + + // Menu bar + if (flags & ImGuiWindowFlags_MenuBar) + { + ImRect menu_bar_rect = window->MenuBarRect(); + menu_bar_rect.ClipWith(window->Rect()); // Soft clipping, in particular child window don't have minimum size covering the menu bar so this is useful for them. + window->DrawList->AddRectFilled(menu_bar_rect.Min + ImVec2(window_border_size, 0), menu_bar_rect.Max - ImVec2(window_border_size, 0), GetColorU32(ImGuiCol_MenuBarBg), (flags & ImGuiWindowFlags_NoTitleBar) ? window_rounding : 0.0f, ImDrawFlags_RoundCornersTop); + if (style.FrameBorderSize > 0.0f && menu_bar_rect.Max.y < window->Pos.y + window->Size.y) + window->DrawList->AddLine(menu_bar_rect.GetBL(), menu_bar_rect.GetBR(), GetColorU32(ImGuiCol_Border), style.FrameBorderSize); + } + + // Scrollbars + if (window->ScrollbarX) + Scrollbar(ImGuiAxis_X); + if (window->ScrollbarY) + Scrollbar(ImGuiAxis_Y); + + // Render resize grips (after their input handling so we don't have a frame of latency) + if (handle_borders_and_resize_grips && !(flags & ImGuiWindowFlags_NoResize)) + { + for (int resize_grip_n = 0; resize_grip_n < resize_grip_count; resize_grip_n++) + { + const ImU32 col = resize_grip_col[resize_grip_n]; + if ((col & IM_COL32_A_MASK) == 0) + continue; + const ImGuiResizeGripDef& grip = resize_grip_def[resize_grip_n]; + const ImVec2 corner = ImLerp(window->Pos, window->Pos + window->Size, grip.CornerPosN); + window->DrawList->PathLineTo(corner + grip.InnerDir * ((resize_grip_n & 1) ? ImVec2(window_border_size, resize_grip_draw_size) : ImVec2(resize_grip_draw_size, window_border_size))); + window->DrawList->PathLineTo(corner + grip.InnerDir * ((resize_grip_n & 1) ? ImVec2(resize_grip_draw_size, window_border_size) : ImVec2(window_border_size, resize_grip_draw_size))); + window->DrawList->PathArcToFast(ImVec2(corner.x + grip.InnerDir.x * (window_rounding + window_border_size), corner.y + grip.InnerDir.y * (window_rounding + window_border_size)), window_rounding, grip.AngleMin12, grip.AngleMax12); + window->DrawList->PathFillConvex(col); + } + } + + // Borders + if (handle_borders_and_resize_grips) + RenderWindowOuterBorders(window); + } +} + +void ImGui::RenderWindowShadow(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + ImGuiStyle& style = g.Style; + float shadow_size = style.WindowShadowSize; + ImU32 shadow_col = GetColorU32(ImGuiCol_WindowShadow); + ImVec2 shadow_offset = ImVec2(ImCos(style.WindowShadowOffsetAngle), ImSin(style.WindowShadowOffsetAngle)) * style.WindowShadowOffsetDist; + window->DrawList->AddShadowRect(window->Pos, window->Pos + window->Size, shadow_col, shadow_size, shadow_offset, ImDrawFlags_ShadowCutOutShapeBackground, window->WindowRounding); +} + +// Render title text, collapse button, close button +void ImGui::RenderWindowTitleBarContents(ImGuiWindow* window, const ImRect& title_bar_rect, const char* name, bool* p_open) +{ + ImGuiContext& g = *GImGui; + ImGuiStyle& style = g.Style; + ImGuiWindowFlags flags = window->Flags; + + const bool has_close_button = (p_open != NULL); + const bool has_collapse_button = !(flags & ImGuiWindowFlags_NoCollapse) && (style.WindowMenuButtonPosition != ImGuiDir_None); + + // Close & Collapse button are on the Menu NavLayer and don't default focus (unless there's nothing else on that layer) + // FIXME-NAV: Might want (or not?) to set the equivalent of ImGuiButtonFlags_NoNavFocus so that mouse clicks on standard title bar items don't necessarily set nav/keyboard ref? + const ImGuiItemFlags item_flags_backup = g.CurrentItemFlags; + g.CurrentItemFlags |= ImGuiItemFlags_NoNavDefaultFocus; + window->DC.NavLayerCurrent = ImGuiNavLayer_Menu; + + // Layout buttons + // FIXME: Would be nice to generalize the subtleties expressed here into reusable code. + float pad_l = style.FramePadding.x; + float pad_r = style.FramePadding.x; + float button_sz = g.FontSize; + ImVec2 close_button_pos; + ImVec2 collapse_button_pos; + if (has_close_button) + { + close_button_pos = ImVec2(title_bar_rect.Max.x - pad_r - button_sz, title_bar_rect.Min.y + style.FramePadding.y); + pad_r += button_sz + style.ItemInnerSpacing.x; + } + if (has_collapse_button && style.WindowMenuButtonPosition == ImGuiDir_Right) + { + collapse_button_pos = ImVec2(title_bar_rect.Max.x - pad_r - button_sz, title_bar_rect.Min.y + style.FramePadding.y); + pad_r += button_sz + style.ItemInnerSpacing.x; + } + if (has_collapse_button && style.WindowMenuButtonPosition == ImGuiDir_Left) + { + collapse_button_pos = ImVec2(title_bar_rect.Min.x + pad_l, title_bar_rect.Min.y + style.FramePadding.y); + pad_l += button_sz + style.ItemInnerSpacing.x; + } + + // Collapse button (submitting first so it gets priority when choosing a navigation init fallback) + if (has_collapse_button) + if (CollapseButton(window->GetID("#COLLAPSE"), collapse_button_pos)) + window->WantCollapseToggle = true; // Defer actual collapsing to next frame as we are too far in the Begin() function + + // Close button + if (has_close_button) + if (CloseButton(window->GetID("#CLOSE"), close_button_pos)) + *p_open = false; + + window->DC.NavLayerCurrent = ImGuiNavLayer_Main; + g.CurrentItemFlags = item_flags_backup; + + // Title bar text (with: horizontal alignment, avoiding collapse/close button, optional "unsaved document" marker) + // FIXME: Refactor text alignment facilities along with RenderText helpers, this is WAY too much messy code.. + const float marker_size_x = (flags & ImGuiWindowFlags_UnsavedDocument) ? button_sz * 0.80f : 0.0f; + const ImVec2 text_size = CalcTextSize(name, NULL, true) + ImVec2(marker_size_x, 0.0f); + + // As a nice touch we try to ensure that centered title text doesn't get affected by visibility of Close/Collapse button, + // while uncentered title text will still reach edges correctly. + if (pad_l > style.FramePadding.x) + pad_l += g.Style.ItemInnerSpacing.x; + if (pad_r > style.FramePadding.x) + pad_r += g.Style.ItemInnerSpacing.x; + if (style.WindowTitleAlign.x > 0.0f && style.WindowTitleAlign.x < 1.0f) + { + float centerness = ImSaturate(1.0f - ImFabs(style.WindowTitleAlign.x - 0.5f) * 2.0f); // 0.0f on either edges, 1.0f on center + float pad_extend = ImMin(ImMax(pad_l, pad_r), title_bar_rect.GetWidth() - pad_l - pad_r - text_size.x); + pad_l = ImMax(pad_l, pad_extend * centerness); + pad_r = ImMax(pad_r, pad_extend * centerness); + } + + ImRect layout_r(title_bar_rect.Min.x + pad_l, title_bar_rect.Min.y, title_bar_rect.Max.x - pad_r, title_bar_rect.Max.y); + ImRect clip_r(layout_r.Min.x, layout_r.Min.y, ImMin(layout_r.Max.x + g.Style.ItemInnerSpacing.x, title_bar_rect.Max.x), layout_r.Max.y); + if (flags & ImGuiWindowFlags_UnsavedDocument) + { + ImVec2 marker_pos; + marker_pos.x = ImClamp(layout_r.Min.x + (layout_r.GetWidth() - text_size.x) * style.WindowTitleAlign.x + text_size.x, layout_r.Min.x, layout_r.Max.x); + marker_pos.y = (layout_r.Min.y + layout_r.Max.y) * 0.5f; + if (marker_pos.x > layout_r.Min.x) + { + RenderBullet(window->DrawList, marker_pos, GetColorU32(ImGuiCol_Text)); + clip_r.Max.x = ImMin(clip_r.Max.x, marker_pos.x - (int)(marker_size_x * 0.5f)); + } + } + //if (g.IO.KeyShift) window->DrawList->AddRect(layout_r.Min, layout_r.Max, IM_COL32(255, 128, 0, 255)); // [DEBUG] + //if (g.IO.KeyCtrl) window->DrawList->AddRect(clip_r.Min, clip_r.Max, IM_COL32(255, 128, 0, 255)); // [DEBUG] + RenderTextClipped(layout_r.Min, layout_r.Max, name, NULL, &text_size, style.WindowTitleAlign, &clip_r); +} + +void ImGui::UpdateWindowParentAndRootLinks(ImGuiWindow* window, ImGuiWindowFlags flags, ImGuiWindow* parent_window) +{ + window->ParentWindow = parent_window; + window->RootWindow = window->RootWindowPopupTree = window->RootWindowForTitleBarHighlight = window->RootWindowForNav = window; + if (parent_window && (flags & ImGuiWindowFlags_ChildWindow) && !(flags & ImGuiWindowFlags_Tooltip)) + window->RootWindow = parent_window->RootWindow; + if (parent_window && (flags & ImGuiWindowFlags_Popup)) + window->RootWindowPopupTree = parent_window->RootWindowPopupTree; + if (parent_window && !(flags & ImGuiWindowFlags_Modal) && (flags & (ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_Popup))) + window->RootWindowForTitleBarHighlight = parent_window->RootWindowForTitleBarHighlight; + while (window->RootWindowForNav->Flags & ImGuiWindowFlags_NavFlattened) + { + IM_ASSERT(window->RootWindowForNav->ParentWindow != NULL); + window->RootWindowForNav = window->RootWindowForNav->ParentWindow; + } +} + +// When a modal popup is open, newly created windows that want focus (i.e. are not popups and do not specify ImGuiWindowFlags_NoFocusOnAppearing) +// should be positioned behind that modal window, unless the window was created inside the modal begin-stack. +// In case of multiple stacked modals newly created window honors begin stack order and does not go below its own modal parent. +// - WindowA // FindBlockingModal() returns Modal1 +// - WindowB // .. returns Modal1 +// - Modal1 // .. returns Modal2 +// - WindowC // .. returns Modal2 +// - WindowD // .. returns Modal2 +// - Modal2 // .. returns Modal2 +// - WindowE // .. returns NULL +// Notes: +// - FindBlockingModal(NULL) == NULL is generally equivalent to GetTopMostPopupModal() == NULL. +// Only difference is here we check for ->Active/WasActive but it may be unecessary. +ImGuiWindow* ImGui::FindBlockingModal(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + if (g.OpenPopupStack.Size <= 0) + return NULL; + + // Find a modal that has common parent with specified window. Specified window should be positioned behind that modal. + for (ImGuiPopupData& popup_data : g.OpenPopupStack) + { + ImGuiWindow* popup_window = popup_data.Window; + if (popup_window == NULL || !(popup_window->Flags & ImGuiWindowFlags_Modal)) + continue; + if (!popup_window->Active && !popup_window->WasActive) // Check WasActive, because this code may run before popup renders on current frame, also check Active to handle newly created windows. + continue; + if (window == NULL) // FindBlockingModal(NULL) test for if FocusWindow(NULL) is naturally possible via a mouse click. + return popup_window; + if (IsWindowWithinBeginStackOf(window, popup_window)) // Window may be over modal + continue; + return popup_window; // Place window right below first block modal + } + return NULL; +} + +// Push a new Dear ImGui window to add widgets to. +// - A default window called "Debug" is automatically stacked at the beginning of every frame so you can use widgets without explicitly calling a Begin/End pair. +// - Begin/End can be called multiple times during the frame with the same window name to append content. +// - The window name is used as a unique identifier to preserve window information across frames (and save rudimentary information to the .ini file). +// You can use the "##" or "###" markers to use the same label with different id, or same id with different label. See documentation at the top of this file. +// - Return false when window is collapsed, so you can early out in your code. You always need to call ImGui::End() even if false is returned. +// - Passing 'bool* p_open' displays a Close button on the upper-right corner of the window, the pointed value will be set to false when the button is pressed. +bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags) +{ + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + IM_ASSERT(name != NULL && name[0] != '\0'); // Window name required + IM_ASSERT(g.WithinFrameScope); // Forgot to call ImGui::NewFrame() + IM_ASSERT(g.FrameCountEnded != g.FrameCount); // Called ImGui::Render() or ImGui::EndFrame() and haven't called ImGui::NewFrame() again yet + + // Find or create + ImGuiWindow* window = FindWindowByName(name); + const bool window_just_created = (window == NULL); + if (window_just_created) + window = CreateNewWindow(name, flags); + + // Automatically disable manual moving/resizing when NoInputs is set + if ((flags & ImGuiWindowFlags_NoInputs) == ImGuiWindowFlags_NoInputs) + flags |= ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoResize; + + if (flags & ImGuiWindowFlags_NavFlattened) + IM_ASSERT(flags & ImGuiWindowFlags_ChildWindow); + + const int current_frame = g.FrameCount; + const bool first_begin_of_the_frame = (window->LastFrameActive != current_frame); + window->IsFallbackWindow = (g.CurrentWindowStack.Size == 0 && g.WithinFrameScopeWithImplicitWindow); + + // Update the Appearing flag + bool window_just_activated_by_user = (window->LastFrameActive < current_frame - 1); // Not using !WasActive because the implicit "Debug" window would always toggle off->on + if (flags & ImGuiWindowFlags_Popup) + { + ImGuiPopupData& popup_ref = g.OpenPopupStack[g.BeginPopupStack.Size]; + window_just_activated_by_user |= (window->PopupId != popup_ref.PopupId); // We recycle popups so treat window as activated if popup id changed + window_just_activated_by_user |= (window != popup_ref.Window); + } + window->Appearing = window_just_activated_by_user; + if (window->Appearing) + SetWindowConditionAllowFlags(window, ImGuiCond_Appearing, true); + + // Update Flags, LastFrameActive, BeginOrderXXX fields + if (first_begin_of_the_frame) + { + UpdateWindowInFocusOrderList(window, window_just_created, flags); + window->Flags = (ImGuiWindowFlags)flags; + window->LastFrameActive = current_frame; + window->LastTimeActive = (float)g.Time; + window->BeginOrderWithinParent = 0; + window->BeginOrderWithinContext = (short)(g.WindowsActiveCount++); + } + else + { + flags = window->Flags; + } + + // Parent window is latched only on the first call to Begin() of the frame, so further append-calls can be done from a different window stack + ImGuiWindow* parent_window_in_stack = g.CurrentWindowStack.empty() ? NULL : g.CurrentWindowStack.back().Window; + ImGuiWindow* parent_window = first_begin_of_the_frame ? ((flags & (ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_Popup)) ? parent_window_in_stack : NULL) : window->ParentWindow; + IM_ASSERT(parent_window != NULL || !(flags & ImGuiWindowFlags_ChildWindow)); + + // We allow window memory to be compacted so recreate the base stack when needed. + if (window->IDStack.Size == 0) + window->IDStack.push_back(window->ID); + + // Add to stack + // We intentionally set g.CurrentWindow to NULL to prevent usage until when the viewport is set, then will call SetCurrentWindow() + g.CurrentWindow = window; + ImGuiWindowStackData window_stack_data; + window_stack_data.Window = window; + window_stack_data.ParentLastItemDataBackup = g.LastItemData; + window_stack_data.StackSizesOnBegin.SetToContextState(&g); + g.CurrentWindowStack.push_back(window_stack_data); + if (flags & ImGuiWindowFlags_ChildMenu) + g.BeginMenuCount++; + + // Update ->RootWindow and others pointers (before any possible call to FocusWindow) + if (first_begin_of_the_frame) + { + UpdateWindowParentAndRootLinks(window, flags, parent_window); + window->ParentWindowInBeginStack = parent_window_in_stack; + } + + // Add to focus scope stack + PushFocusScope(window->ID); + window->NavRootFocusScopeId = g.CurrentFocusScopeId; + g.CurrentWindow = NULL; + + // Add to popup stack + if (flags & ImGuiWindowFlags_Popup) + { + ImGuiPopupData& popup_ref = g.OpenPopupStack[g.BeginPopupStack.Size]; + popup_ref.Window = window; + popup_ref.ParentNavLayer = parent_window_in_stack->DC.NavLayerCurrent; + g.BeginPopupStack.push_back(popup_ref); + window->PopupId = popup_ref.PopupId; + } + + // Process SetNextWindow***() calls + // (FIXME: Consider splitting the HasXXX flags into X/Y components + bool window_pos_set_by_api = false; + bool window_size_x_set_by_api = false, window_size_y_set_by_api = false; + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasPos) + { + window_pos_set_by_api = (window->SetWindowPosAllowFlags & g.NextWindowData.PosCond) != 0; + if (window_pos_set_by_api && ImLengthSqr(g.NextWindowData.PosPivotVal) > 0.00001f) + { + // May be processed on the next frame if this is our first frame and we are measuring size + // FIXME: Look into removing the branch so everything can go through this same code path for consistency. + window->SetWindowPosVal = g.NextWindowData.PosVal; + window->SetWindowPosPivot = g.NextWindowData.PosPivotVal; + window->SetWindowPosAllowFlags &= ~(ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing); + } + else + { + SetWindowPos(window, g.NextWindowData.PosVal, g.NextWindowData.PosCond); + } + } + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSize) + { + window_size_x_set_by_api = (window->SetWindowSizeAllowFlags & g.NextWindowData.SizeCond) != 0 && (g.NextWindowData.SizeVal.x > 0.0f); + window_size_y_set_by_api = (window->SetWindowSizeAllowFlags & g.NextWindowData.SizeCond) != 0 && (g.NextWindowData.SizeVal.y > 0.0f); + SetWindowSize(window, g.NextWindowData.SizeVal, g.NextWindowData.SizeCond); + } + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasScroll) + { + if (g.NextWindowData.ScrollVal.x >= 0.0f) + { + window->ScrollTarget.x = g.NextWindowData.ScrollVal.x; + window->ScrollTargetCenterRatio.x = 0.0f; + } + if (g.NextWindowData.ScrollVal.y >= 0.0f) + { + window->ScrollTarget.y = g.NextWindowData.ScrollVal.y; + window->ScrollTargetCenterRatio.y = 0.0f; + } + } + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasContentSize) + window->ContentSizeExplicit = g.NextWindowData.ContentSizeVal; + else if (first_begin_of_the_frame) + window->ContentSizeExplicit = ImVec2(0.0f, 0.0f); + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasCollapsed) + SetWindowCollapsed(window, g.NextWindowData.CollapsedVal, g.NextWindowData.CollapsedCond); + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasFocus) + FocusWindow(window); + if (window->Appearing) + SetWindowConditionAllowFlags(window, ImGuiCond_Appearing, false); + + // When reusing window again multiple times a frame, just append content (don't need to setup again) + if (first_begin_of_the_frame) + { + // Initialize + const bool window_is_child_tooltip = (flags & ImGuiWindowFlags_ChildWindow) && (flags & ImGuiWindowFlags_Tooltip); // FIXME-WIP: Undocumented behavior of Child+Tooltip for pinned tooltip (#1345) + const bool window_just_appearing_after_hidden_for_resize = (window->HiddenFramesCannotSkipItems > 0); + window->Active = true; + window->HasCloseButton = (p_open != NULL); + window->ClipRect = ImVec4(-FLT_MAX, -FLT_MAX, +FLT_MAX, +FLT_MAX); + window->IDStack.resize(1); + window->DrawList->_ResetForNewFrame(); + window->DC.CurrentTableIdx = -1; + + // Restore buffer capacity when woken from a compacted state, to avoid + if (window->MemoryCompacted) + GcAwakeTransientWindowBuffers(window); + + // Update stored window name when it changes (which can _only_ happen with the "###" operator, so the ID would stay unchanged). + // The title bar always display the 'name' parameter, so we only update the string storage if it needs to be visible to the end-user elsewhere. + bool window_title_visible_elsewhere = false; + if (g.NavWindowingListWindow != NULL && (window->Flags & ImGuiWindowFlags_NoNavFocus) == 0) // Window titles visible when using CTRL+TAB + window_title_visible_elsewhere = true; + if (window_title_visible_elsewhere && !window_just_created && strcmp(name, window->Name) != 0) + { + size_t buf_len = (size_t)window->NameBufLen; + window->Name = ImStrdupcpy(window->Name, &buf_len, name); + window->NameBufLen = (int)buf_len; + } + + // UPDATE CONTENTS SIZE, UPDATE HIDDEN STATUS + + // Update contents size from last frame for auto-fitting (or use explicit size) + CalcWindowContentSizes(window, &window->ContentSize, &window->ContentSizeIdeal); + if (window->HiddenFramesCanSkipItems > 0) + window->HiddenFramesCanSkipItems--; + if (window->HiddenFramesCannotSkipItems > 0) + window->HiddenFramesCannotSkipItems--; + if (window->HiddenFramesForRenderOnly > 0) + window->HiddenFramesForRenderOnly--; + + // Hide new windows for one frame until they calculate their size + if (window_just_created && (!window_size_x_set_by_api || !window_size_y_set_by_api)) + window->HiddenFramesCannotSkipItems = 1; + + // Hide popup/tooltip window when re-opening while we measure size (because we recycle the windows) + // We reset Size/ContentSize for reappearing popups/tooltips early in this function, so further code won't be tempted to use the old size. + if (window_just_activated_by_user && (flags & (ImGuiWindowFlags_Popup | ImGuiWindowFlags_Tooltip)) != 0) + { + window->HiddenFramesCannotSkipItems = 1; + if (flags & ImGuiWindowFlags_AlwaysAutoResize) + { + if (!window_size_x_set_by_api) + window->Size.x = window->SizeFull.x = 0.f; + if (!window_size_y_set_by_api) + window->Size.y = window->SizeFull.y = 0.f; + window->ContentSize = window->ContentSizeIdeal = ImVec2(0.f, 0.f); + } + } + + // SELECT VIEWPORT + // FIXME-VIEWPORT: In the docking/viewport branch, this is the point where we select the current viewport (which may affect the style) + + ImGuiViewportP* viewport = (ImGuiViewportP*)(void*)GetMainViewport(); + SetWindowViewport(window, viewport); + SetCurrentWindow(window); + + // LOCK BORDER SIZE AND PADDING FOR THE FRAME (so that altering them doesn't cause inconsistencies) + + if (flags & ImGuiWindowFlags_ChildWindow) + window->WindowBorderSize = style.ChildBorderSize; + else + window->WindowBorderSize = ((flags & (ImGuiWindowFlags_Popup | ImGuiWindowFlags_Tooltip)) && !(flags & ImGuiWindowFlags_Modal)) ? style.PopupBorderSize : style.WindowBorderSize; + window->WindowPadding = style.WindowPadding; + if ((flags & ImGuiWindowFlags_ChildWindow) && !(flags & (ImGuiWindowFlags_AlwaysUseWindowPadding | ImGuiWindowFlags_Popup)) && window->WindowBorderSize == 0.0f) + window->WindowPadding = ImVec2(0.0f, (flags & ImGuiWindowFlags_MenuBar) ? style.WindowPadding.y : 0.0f); + + // Lock menu offset so size calculation can use it as menu-bar windows need a minimum size. + window->DC.MenuBarOffset.x = ImMax(ImMax(window->WindowPadding.x, style.ItemSpacing.x), g.NextWindowData.MenuBarOffsetMinVal.x); + window->DC.MenuBarOffset.y = g.NextWindowData.MenuBarOffsetMinVal.y; + + bool use_current_size_for_scrollbar_x = window_just_created; + bool use_current_size_for_scrollbar_y = window_just_created; + + // Collapse window by double-clicking on title bar + // At this point we don't have a clipping rectangle setup yet, so we can use the title bar area for hit detection and drawing + if (!(flags & ImGuiWindowFlags_NoTitleBar) && !(flags & ImGuiWindowFlags_NoCollapse)) + { + // We don't use a regular button+id to test for double-click on title bar (mostly due to legacy reason, could be fixed), so verify that we don't have items over the title bar. + ImRect title_bar_rect = window->TitleBarRect(); + if (g.HoveredWindow == window && g.HoveredId == 0 && g.HoveredIdPreviousFrame == 0 && IsMouseHoveringRect(title_bar_rect.Min, title_bar_rect.Max) && g.IO.MouseClickedCount[0] == 2) + window->WantCollapseToggle = true; + if (window->WantCollapseToggle) + { + window->Collapsed = !window->Collapsed; + if (!window->Collapsed) + use_current_size_for_scrollbar_y = true; + MarkIniSettingsDirty(window); + } + } + else + { + window->Collapsed = false; + } + window->WantCollapseToggle = false; + + // SIZE + + // Outer Decoration Sizes + // (we need to clear ScrollbarSize immediatly as CalcWindowAutoFitSize() needs it and can be called from other locations). + const ImVec2 scrollbar_sizes_from_last_frame = window->ScrollbarSizes; + window->DecoOuterSizeX1 = 0.0f; + window->DecoOuterSizeX2 = 0.0f; + window->DecoOuterSizeY1 = window->TitleBarHeight() + window->MenuBarHeight(); + window->DecoOuterSizeY2 = 0.0f; + window->ScrollbarSizes = ImVec2(0.0f, 0.0f); + + // Calculate auto-fit size, handle automatic resize + const ImVec2 size_auto_fit = CalcWindowAutoFitSize(window, window->ContentSizeIdeal); + if ((flags & ImGuiWindowFlags_AlwaysAutoResize) && !window->Collapsed) + { + // Using SetNextWindowSize() overrides ImGuiWindowFlags_AlwaysAutoResize, so it can be used on tooltips/popups, etc. + if (!window_size_x_set_by_api) + { + window->SizeFull.x = size_auto_fit.x; + use_current_size_for_scrollbar_x = true; + } + if (!window_size_y_set_by_api) + { + window->SizeFull.y = size_auto_fit.y; + use_current_size_for_scrollbar_y = true; + } + } + else if (window->AutoFitFramesX > 0 || window->AutoFitFramesY > 0) + { + // Auto-fit may only grow window during the first few frames + // We still process initial auto-fit on collapsed windows to get a window width, but otherwise don't honor ImGuiWindowFlags_AlwaysAutoResize when collapsed. + if (!window_size_x_set_by_api && window->AutoFitFramesX > 0) + { + window->SizeFull.x = window->AutoFitOnlyGrows ? ImMax(window->SizeFull.x, size_auto_fit.x) : size_auto_fit.x; + use_current_size_for_scrollbar_x = true; + } + if (!window_size_y_set_by_api && window->AutoFitFramesY > 0) + { + window->SizeFull.y = window->AutoFitOnlyGrows ? ImMax(window->SizeFull.y, size_auto_fit.y) : size_auto_fit.y; + use_current_size_for_scrollbar_y = true; + } + if (!window->Collapsed) + MarkIniSettingsDirty(window); + } + + // Apply minimum/maximum window size constraints and final size + window->SizeFull = CalcWindowSizeAfterConstraint(window, window->SizeFull); + window->Size = window->Collapsed && !(flags & ImGuiWindowFlags_ChildWindow) ? window->TitleBarRect().GetSize() : window->SizeFull; + + // POSITION + + // Popup latch its initial position, will position itself when it appears next frame + if (window_just_activated_by_user) + { + window->AutoPosLastDirection = ImGuiDir_None; + if ((flags & ImGuiWindowFlags_Popup) != 0 && !(flags & ImGuiWindowFlags_Modal) && !window_pos_set_by_api) // FIXME: BeginPopup() could use SetNextWindowPos() + window->Pos = g.BeginPopupStack.back().OpenPopupPos; + } + + // Position child window + if (flags & ImGuiWindowFlags_ChildWindow) + { + IM_ASSERT(parent_window && parent_window->Active); + window->BeginOrderWithinParent = (short)parent_window->DC.ChildWindows.Size; + parent_window->DC.ChildWindows.push_back(window); + if (!(flags & ImGuiWindowFlags_Popup) && !window_pos_set_by_api && !window_is_child_tooltip) + window->Pos = parent_window->DC.CursorPos; + } + + const bool window_pos_with_pivot = (window->SetWindowPosVal.x != FLT_MAX && window->HiddenFramesCannotSkipItems == 0); + if (window_pos_with_pivot) + SetWindowPos(window, window->SetWindowPosVal - window->Size * window->SetWindowPosPivot, 0); // Position given a pivot (e.g. for centering) + else if ((flags & ImGuiWindowFlags_ChildMenu) != 0) + window->Pos = FindBestWindowPosForPopup(window); + else if ((flags & ImGuiWindowFlags_Popup) != 0 && !window_pos_set_by_api && window_just_appearing_after_hidden_for_resize) + window->Pos = FindBestWindowPosForPopup(window); + else if ((flags & ImGuiWindowFlags_Tooltip) != 0 && !window_pos_set_by_api && !window_is_child_tooltip) + window->Pos = FindBestWindowPosForPopup(window); + + // Calculate the range of allowed position for that window (to be movable and visible past safe area padding) + // When clamping to stay visible, we will enforce that window->Pos stays inside of visibility_rect. + ImRect viewport_rect(viewport->GetMainRect()); + ImRect viewport_work_rect(viewport->GetWorkRect()); + ImVec2 visibility_padding = ImMax(style.DisplayWindowPadding, style.DisplaySafeAreaPadding); + ImRect visibility_rect(viewport_work_rect.Min + visibility_padding, viewport_work_rect.Max - visibility_padding); + + // Clamp position/size so window stays visible within its viewport or monitor + // Ignore zero-sized display explicitly to avoid losing positions if a window manager reports zero-sized window when initializing or minimizing. + if (!window_pos_set_by_api && !(flags & ImGuiWindowFlags_ChildWindow)) + if (viewport_rect.GetWidth() > 0.0f && viewport_rect.GetHeight() > 0.0f) + ClampWindowPos(window, visibility_rect); + window->Pos = ImFloor(window->Pos); + + // Lock window rounding for the frame (so that altering them doesn't cause inconsistencies) + // Large values tend to lead to variety of artifacts and are not recommended. + window->WindowRounding = (flags & ImGuiWindowFlags_ChildWindow) ? style.ChildRounding : ((flags & ImGuiWindowFlags_Popup) && !(flags & ImGuiWindowFlags_Modal)) ? style.PopupRounding : style.WindowRounding; + + // For windows with title bar or menu bar, we clamp to FrameHeight(FontSize + FramePadding.y * 2.0f) to completely hide artifacts. + //if ((window->Flags & ImGuiWindowFlags_MenuBar) || !(window->Flags & ImGuiWindowFlags_NoTitleBar)) + // window->WindowRounding = ImMin(window->WindowRounding, g.FontSize + style.FramePadding.y * 2.0f); + + // Apply window focus (new and reactivated windows are moved to front) + bool want_focus = false; + if (window_just_activated_by_user && !(flags & ImGuiWindowFlags_NoFocusOnAppearing)) + { + if (flags & ImGuiWindowFlags_Popup) + want_focus = true; + else if ((flags & (ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_Tooltip)) == 0) + want_focus = true; + } + + // [Test Engine] Register whole window in the item system (before submitting further decorations) +#ifdef IMGUI_ENABLE_TEST_ENGINE + if (g.TestEngineHookItems) + { + IM_ASSERT(window->IDStack.Size == 1); + window->IDStack.Size = 0; // As window->IDStack[0] == window->ID here, make sure TestEngine doesn't erroneously see window as parent of itself. + IMGUI_TEST_ENGINE_ITEM_ADD(window->ID, window->Rect(), NULL); + IMGUI_TEST_ENGINE_ITEM_INFO(window->ID, window->Name, (g.HoveredWindow == window) ? ImGuiItemStatusFlags_HoveredRect : 0); + window->IDStack.Size = 1; + } +#endif + + // Handle manual resize: Resize Grips, Borders, Gamepad + int border_held = -1; + ImU32 resize_grip_col[4] = {}; + const int resize_grip_count = g.IO.ConfigWindowsResizeFromEdges ? 2 : 1; // Allow resize from lower-left if we have the mouse cursor feedback for it. + const float resize_grip_draw_size = IM_FLOOR(ImMax(g.FontSize * 1.10f, window->WindowRounding + 1.0f + g.FontSize * 0.2f)); + if (!window->Collapsed) + if (UpdateWindowManualResize(window, size_auto_fit, &border_held, resize_grip_count, &resize_grip_col[0], visibility_rect)) + use_current_size_for_scrollbar_x = use_current_size_for_scrollbar_y = true; + window->ResizeBorderHeld = (signed char)border_held; + + // SCROLLBAR VISIBILITY + + // Update scrollbar visibility (based on the Size that was effective during last frame or the auto-resized Size). + if (!window->Collapsed) + { + // When reading the current size we need to read it after size constraints have been applied. + // Intentionally use previous frame values for InnerRect and ScrollbarSizes. + // And when we use window->DecorationUp here it doesn't have ScrollbarSizes.y applied yet. + ImVec2 avail_size_from_current_frame = ImVec2(window->SizeFull.x, window->SizeFull.y - (window->DecoOuterSizeY1 + window->DecoOuterSizeY2)); + ImVec2 avail_size_from_last_frame = window->InnerRect.GetSize() + scrollbar_sizes_from_last_frame; + ImVec2 needed_size_from_last_frame = window_just_created ? ImVec2(0, 0) : window->ContentSize + window->WindowPadding * 2.0f; + float size_x_for_scrollbars = use_current_size_for_scrollbar_x ? avail_size_from_current_frame.x : avail_size_from_last_frame.x; + float size_y_for_scrollbars = use_current_size_for_scrollbar_y ? avail_size_from_current_frame.y : avail_size_from_last_frame.y; + //bool scrollbar_y_from_last_frame = window->ScrollbarY; // FIXME: May want to use that in the ScrollbarX expression? How many pros vs cons? + window->ScrollbarY = (flags & ImGuiWindowFlags_AlwaysVerticalScrollbar) || ((needed_size_from_last_frame.y > size_y_for_scrollbars) && !(flags & ImGuiWindowFlags_NoScrollbar)); + window->ScrollbarX = (flags & ImGuiWindowFlags_AlwaysHorizontalScrollbar) || ((needed_size_from_last_frame.x > size_x_for_scrollbars - (window->ScrollbarY ? style.ScrollbarSize : 0.0f)) && !(flags & ImGuiWindowFlags_NoScrollbar) && (flags & ImGuiWindowFlags_HorizontalScrollbar)); + if (window->ScrollbarX && !window->ScrollbarY) + window->ScrollbarY = (needed_size_from_last_frame.y > size_y_for_scrollbars) && !(flags & ImGuiWindowFlags_NoScrollbar); + window->ScrollbarSizes = ImVec2(window->ScrollbarY ? style.ScrollbarSize : 0.0f, window->ScrollbarX ? style.ScrollbarSize : 0.0f); + + // Amend the partially filled window->DecorationXXX values. + window->DecoOuterSizeX2 += window->ScrollbarSizes.x; + window->DecoOuterSizeY2 += window->ScrollbarSizes.y; + } + + // UPDATE RECTANGLES (1- THOSE NOT AFFECTED BY SCROLLING) + // Update various regions. Variables they depend on should be set above in this function. + // We set this up after processing the resize grip so that our rectangles doesn't lag by a frame. + + // Outer rectangle + // Not affected by window border size. Used by: + // - FindHoveredWindow() (w/ extra padding when border resize is enabled) + // - Begin() initial clipping rect for drawing window background and borders. + // - Begin() clipping whole child + const ImRect host_rect = ((flags & ImGuiWindowFlags_ChildWindow) && !(flags & ImGuiWindowFlags_Popup) && !window_is_child_tooltip) ? parent_window->ClipRect : viewport_rect; + const ImRect outer_rect = window->Rect(); + const ImRect title_bar_rect = window->TitleBarRect(); + window->OuterRectClipped = outer_rect; + window->OuterRectClipped.ClipWith(host_rect); + + // Inner rectangle + // Not affected by window border size. Used by: + // - InnerClipRect + // - ScrollToRectEx() + // - NavUpdatePageUpPageDown() + // - Scrollbar() + window->InnerRect.Min.x = window->Pos.x + window->DecoOuterSizeX1; + window->InnerRect.Min.y = window->Pos.y + window->DecoOuterSizeY1; + window->InnerRect.Max.x = window->Pos.x + window->Size.x - window->DecoOuterSizeX2; + window->InnerRect.Max.y = window->Pos.y + window->Size.y - window->DecoOuterSizeY2; + + // Inner clipping rectangle. + // Will extend a little bit outside the normal work region. + // This is to allow e.g. Selectable or CollapsingHeader or some separators to cover that space. + // Force round operator last to ensure that e.g. (int)(max.x-min.x) in user's render code produce correct result. + // Note that if our window is collapsed we will end up with an inverted (~null) clipping rectangle which is the correct behavior. + // Affected by window/frame border size. Used by: + // - Begin() initial clip rect + float top_border_size = (((flags & ImGuiWindowFlags_MenuBar) || !(flags & ImGuiWindowFlags_NoTitleBar)) ? style.FrameBorderSize : window->WindowBorderSize); + window->InnerClipRect.Min.x = ImFloor(0.5f + window->InnerRect.Min.x + ImMax(ImFloor(window->WindowPadding.x * 0.5f), window->WindowBorderSize)); + window->InnerClipRect.Min.y = ImFloor(0.5f + window->InnerRect.Min.y + top_border_size); + window->InnerClipRect.Max.x = ImFloor(0.5f + window->InnerRect.Max.x - ImMax(ImFloor(window->WindowPadding.x * 0.5f), window->WindowBorderSize)); + window->InnerClipRect.Max.y = ImFloor(0.5f + window->InnerRect.Max.y - window->WindowBorderSize); + window->InnerClipRect.ClipWithFull(host_rect); + + // Default item width. Make it proportional to window size if window manually resizes + if (window->Size.x > 0.0f && !(flags & ImGuiWindowFlags_Tooltip) && !(flags & ImGuiWindowFlags_AlwaysAutoResize)) + window->ItemWidthDefault = ImFloor(window->Size.x * 0.65f); + else + window->ItemWidthDefault = ImFloor(g.FontSize * 16.0f); + + // SCROLLING + + // Lock down maximum scrolling + // The value of ScrollMax are ahead from ScrollbarX/ScrollbarY which is intentionally using InnerRect from previous rect in order to accommodate + // for right/bottom aligned items without creating a scrollbar. + window->ScrollMax.x = ImMax(0.0f, window->ContentSize.x + window->WindowPadding.x * 2.0f - window->InnerRect.GetWidth()); + window->ScrollMax.y = ImMax(0.0f, window->ContentSize.y + window->WindowPadding.y * 2.0f - window->InnerRect.GetHeight()); + + // Apply scrolling + window->Scroll = CalcNextScrollFromScrollTargetAndClamp(window); + window->ScrollTarget = ImVec2(FLT_MAX, FLT_MAX); + window->DecoInnerSizeX1 = window->DecoInnerSizeY1 = 0.0f; + + // DRAWING + + // Setup draw list and outer clipping rectangle + IM_ASSERT(window->DrawList->CmdBuffer.Size == 1 && window->DrawList->CmdBuffer[0].ElemCount == 0); + window->DrawList->PushTextureID(g.Font->ContainerAtlas->TexID); + PushClipRect(host_rect.Min, host_rect.Max, false); + + // Child windows can render their decoration (bg color, border, scrollbars, etc.) within their parent to save a draw call (since 1.71) + // When using overlapping child windows, this will break the assumption that child z-order is mapped to submission order. + // FIXME: User code may rely on explicit sorting of overlapping child window and would need to disable this somehow. Please get in contact if you are affected (github #4493) + { + bool render_decorations_in_parent = false; + if ((flags & ImGuiWindowFlags_ChildWindow) && !(flags & ImGuiWindowFlags_Popup) && !window_is_child_tooltip) + { + // - We test overlap with the previous child window only (testing all would end up being O(log N) not a good investment here) + // - We disable this when the parent window has zero vertices, which is a common pattern leading to laying out multiple overlapping childs + ImGuiWindow* previous_child = parent_window->DC.ChildWindows.Size >= 2 ? parent_window->DC.ChildWindows[parent_window->DC.ChildWindows.Size - 2] : NULL; + bool previous_child_overlapping = previous_child ? previous_child->Rect().Overlaps(window->Rect()) : false; + bool parent_is_empty = (parent_window->DrawList->VtxBuffer.Size == 0); + if (window->DrawList->CmdBuffer.back().ElemCount == 0 && !parent_is_empty && !previous_child_overlapping) + render_decorations_in_parent = true; + } + if (render_decorations_in_parent) + window->DrawList = parent_window->DrawList; + + // Handle title bar, scrollbar, resize grips and resize borders + const ImGuiWindow* window_to_highlight = g.NavWindowingTarget ? g.NavWindowingTarget : g.NavWindow; + const bool title_bar_is_highlight = want_focus || (window_to_highlight && window->RootWindowForTitleBarHighlight == window_to_highlight->RootWindowForTitleBarHighlight); + const bool handle_borders_and_resize_grips = true; // This exists to facilitate merge with 'docking' branch. + RenderWindowDecorations(window, title_bar_rect, title_bar_is_highlight, handle_borders_and_resize_grips, resize_grip_count, resize_grip_col, resize_grip_draw_size); + + if (render_decorations_in_parent) + window->DrawList = &window->DrawListInst; + } + + // UPDATE RECTANGLES (2- THOSE AFFECTED BY SCROLLING) + + // Work rectangle. + // Affected by window padding and border size. Used by: + // - Columns() for right-most edge + // - TreeNode(), CollapsingHeader() for right-most edge + // - BeginTabBar() for right-most edge + const bool allow_scrollbar_x = !(flags & ImGuiWindowFlags_NoScrollbar) && (flags & ImGuiWindowFlags_HorizontalScrollbar); + const bool allow_scrollbar_y = !(flags & ImGuiWindowFlags_NoScrollbar); + const float work_rect_size_x = (window->ContentSizeExplicit.x != 0.0f ? window->ContentSizeExplicit.x : ImMax(allow_scrollbar_x ? window->ContentSize.x : 0.0f, window->Size.x - window->WindowPadding.x * 2.0f - (window->DecoOuterSizeX1 + window->DecoOuterSizeX2))); + const float work_rect_size_y = (window->ContentSizeExplicit.y != 0.0f ? window->ContentSizeExplicit.y : ImMax(allow_scrollbar_y ? window->ContentSize.y : 0.0f, window->Size.y - window->WindowPadding.y * 2.0f - (window->DecoOuterSizeY1 + window->DecoOuterSizeY2))); + window->WorkRect.Min.x = ImFloor(window->InnerRect.Min.x - window->Scroll.x + ImMax(window->WindowPadding.x, window->WindowBorderSize)); + window->WorkRect.Min.y = ImFloor(window->InnerRect.Min.y - window->Scroll.y + ImMax(window->WindowPadding.y, window->WindowBorderSize)); + window->WorkRect.Max.x = window->WorkRect.Min.x + work_rect_size_x; + window->WorkRect.Max.y = window->WorkRect.Min.y + work_rect_size_y; + window->ParentWorkRect = window->WorkRect; + + // [LEGACY] Content Region + // FIXME-OBSOLETE: window->ContentRegionRect.Max is currently very misleading / partly faulty, but some BeginChild() patterns relies on it. + // Unless explicit content size is specified by user, this currently represent the region leading to no scrolling. + // Used by: + // - Mouse wheel scrolling + many other things + window->ContentRegionRect.Min.x = window->Pos.x - window->Scroll.x + window->WindowPadding.x + window->DecoOuterSizeX1; + window->ContentRegionRect.Min.y = window->Pos.y - window->Scroll.y + window->WindowPadding.y + window->DecoOuterSizeY1; + window->ContentRegionRect.Max.x = window->ContentRegionRect.Min.x + (window->ContentSizeExplicit.x != 0.0f ? window->ContentSizeExplicit.x : (window->Size.x - window->WindowPadding.x * 2.0f - (window->DecoOuterSizeX1 + window->DecoOuterSizeX2))); + window->ContentRegionRect.Max.y = window->ContentRegionRect.Min.y + (window->ContentSizeExplicit.y != 0.0f ? window->ContentSizeExplicit.y : (window->Size.y - window->WindowPadding.y * 2.0f - (window->DecoOuterSizeY1 + window->DecoOuterSizeY2))); + + // Setup drawing context + // (NB: That term "drawing context / DC" lost its meaning a long time ago. Initially was meant to hold transient data only. Nowadays difference between window-> and window->DC-> is dubious.) + window->DC.Indent.x = window->DecoOuterSizeX1 + window->WindowPadding.x - window->Scroll.x; + window->DC.GroupOffset.x = 0.0f; + window->DC.ColumnsOffset.x = 0.0f; + + // Record the loss of precision of CursorStartPos which can happen due to really large scrolling amount. + // This is used by clipper to compensate and fix the most common use case of large scroll area. Easy and cheap, next best thing compared to switching everything to double or ImU64. + double start_pos_highp_x = (double)window->Pos.x + window->WindowPadding.x - (double)window->Scroll.x + window->DecoOuterSizeX1 + window->DC.ColumnsOffset.x; + double start_pos_highp_y = (double)window->Pos.y + window->WindowPadding.y - (double)window->Scroll.y + window->DecoOuterSizeY1; + window->DC.CursorStartPos = ImVec2((float)start_pos_highp_x, (float)start_pos_highp_y); + window->DC.CursorStartPosLossyness = ImVec2((float)(start_pos_highp_x - window->DC.CursorStartPos.x), (float)(start_pos_highp_y - window->DC.CursorStartPos.y)); + window->DC.CursorPos = window->DC.CursorStartPos; + window->DC.CursorPosPrevLine = window->DC.CursorPos; + window->DC.CursorMaxPos = window->DC.CursorStartPos; + window->DC.IdealMaxPos = window->DC.CursorStartPos; + window->DC.CurrLineSize = window->DC.PrevLineSize = ImVec2(0.0f, 0.0f); + window->DC.CurrLineTextBaseOffset = window->DC.PrevLineTextBaseOffset = 0.0f; + window->DC.IsSameLine = window->DC.IsSetPos = false; + + window->DC.NavLayerCurrent = ImGuiNavLayer_Main; + window->DC.NavLayersActiveMask = window->DC.NavLayersActiveMaskNext; + window->DC.NavLayersActiveMaskNext = 0x00; + window->DC.NavIsScrollPushableX = true; + window->DC.NavHideHighlightOneFrame = false; + window->DC.NavWindowHasScrollY = (window->ScrollMax.y > 0.0f); + + window->DC.MenuBarAppending = false; + window->DC.MenuColumns.Update(style.ItemSpacing.x, window_just_activated_by_user); + window->DC.TreeDepth = 0; + window->DC.TreeJumpToParentOnPopMask = 0x00; + window->DC.ChildWindows.resize(0); + window->DC.StateStorage = &window->StateStorage; + window->DC.CurrentColumns = NULL; + window->DC.LayoutType = ImGuiLayoutType_Vertical; + window->DC.ParentLayoutType = parent_window ? parent_window->DC.LayoutType : ImGuiLayoutType_Vertical; + + window->DC.ItemWidth = window->ItemWidthDefault; + window->DC.TextWrapPos = -1.0f; // disabled + window->DC.ItemWidthStack.resize(0); + window->DC.TextWrapPosStack.resize(0); + + if (window->AutoFitFramesX > 0) + window->AutoFitFramesX--; + if (window->AutoFitFramesY > 0) + window->AutoFitFramesY--; + + // Apply focus (we need to call FocusWindow() AFTER setting DC.CursorStartPos so our initial navigation reference rectangle can start around there) + // We ImGuiFocusRequestFlags_UnlessBelowModal to: + // - Avoid focusing a window that is created outside of a modal. This will prevent active modal from being closed. + // - Position window behind the modal that is not a begin-parent of this window. + if (want_focus) + FocusWindow(window, ImGuiFocusRequestFlags_UnlessBelowModal); + if (want_focus && window == g.NavWindow) + NavInitWindow(window, false); // <-- this is in the way for us to be able to defer and sort reappearing FocusWindow() calls + + // Title bar + if (!(flags & ImGuiWindowFlags_NoTitleBar)) + RenderWindowTitleBarContents(window, ImRect(title_bar_rect.Min.x + window->WindowBorderSize, title_bar_rect.Min.y, title_bar_rect.Max.x - window->WindowBorderSize, title_bar_rect.Max.y), name, p_open); + + // Clear hit test shape every frame + window->HitTestHoleSize.x = window->HitTestHoleSize.y = 0; + + // Pressing CTRL+C while holding on a window copy its content to the clipboard + // This works but 1. doesn't handle multiple Begin/End pairs, 2. recursing into another Begin/End pair - so we need to work that out and add better logging scope. + // Maybe we can support CTRL+C on every element? + /* + //if (g.NavWindow == window && g.ActiveId == 0) + if (g.ActiveId == window->MoveId) + if (g.IO.KeyCtrl && IsKeyPressed(ImGuiKey_C)) + LogToClipboard(); + */ + + // We fill last item data based on Title Bar/Tab, in order for IsItemHovered() and IsItemActive() to be usable after Begin(). + // This is useful to allow creating context menus on title bar only, etc. + SetLastItemData(window->MoveId, g.CurrentItemFlags, IsMouseHoveringRect(title_bar_rect.Min, title_bar_rect.Max, false) ? ImGuiItemStatusFlags_HoveredRect : 0, title_bar_rect); + + // [DEBUG] +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + if (g.DebugLocateId != 0 && (window->ID == g.DebugLocateId || window->MoveId == g.DebugLocateId)) + DebugLocateItemResolveWithLastItem(); +#endif + + // [Test Engine] Register title bar / tab with MoveId. +#ifdef IMGUI_ENABLE_TEST_ENGINE + if (!(window->Flags & ImGuiWindowFlags_NoTitleBar)) + IMGUI_TEST_ENGINE_ITEM_ADD(g.LastItemData.ID, g.LastItemData.Rect, &g.LastItemData); +#endif + } + else + { + // Append + SetCurrentWindow(window); + } + + PushClipRect(window->InnerClipRect.Min, window->InnerClipRect.Max, true); + + // Clear 'accessed' flag last thing (After PushClipRect which will set the flag. We want the flag to stay false when the default "Debug" window is unused) + window->WriteAccessed = false; + window->BeginCount++; + g.NextWindowData.ClearFlags(); + + // Update visibility + if (first_begin_of_the_frame) + { + if (flags & ImGuiWindowFlags_ChildWindow) + { + // Child window can be out of sight and have "negative" clip windows. + // Mark them as collapsed so commands are skipped earlier (we can't manually collapse them because they have no title bar). + IM_ASSERT((flags & ImGuiWindowFlags_NoTitleBar) != 0); + if (!(flags & ImGuiWindowFlags_AlwaysAutoResize) && window->AutoFitFramesX <= 0 && window->AutoFitFramesY <= 0) // FIXME: Doesn't make sense for ChildWindow?? + { + const bool nav_request = (flags & ImGuiWindowFlags_NavFlattened) && (g.NavAnyRequest && g.NavWindow && g.NavWindow->RootWindowForNav == window->RootWindowForNav); + if (!g.LogEnabled && !nav_request) + if (window->OuterRectClipped.Min.x >= window->OuterRectClipped.Max.x || window->OuterRectClipped.Min.y >= window->OuterRectClipped.Max.y) + window->HiddenFramesCanSkipItems = 1; + } + + // Hide along with parent or if parent is collapsed + if (parent_window && (parent_window->Collapsed || parent_window->HiddenFramesCanSkipItems > 0)) + window->HiddenFramesCanSkipItems = 1; + if (parent_window && (parent_window->Collapsed || parent_window->HiddenFramesCannotSkipItems > 0)) + window->HiddenFramesCannotSkipItems = 1; + } + + // Don't render if style alpha is 0.0 at the time of Begin(). This is arbitrary and inconsistent but has been there for a long while (may remove at some point) + if (style.Alpha <= 0.0f) + window->HiddenFramesCanSkipItems = 1; + + // Update the Hidden flag + bool hidden_regular = (window->HiddenFramesCanSkipItems > 0) || (window->HiddenFramesCannotSkipItems > 0); + window->Hidden = hidden_regular || (window->HiddenFramesForRenderOnly > 0); + + // Disable inputs for requested number of frames + if (window->DisableInputsFrames > 0) + { + window->DisableInputsFrames--; + window->Flags |= ImGuiWindowFlags_NoInputs; + } + + // Update the SkipItems flag, used to early out of all items functions (no layout required) + bool skip_items = false; + if (window->Collapsed || !window->Active || hidden_regular) + if (window->AutoFitFramesX <= 0 && window->AutoFitFramesY <= 0 && window->HiddenFramesCannotSkipItems <= 0) + skip_items = true; + window->SkipItems = skip_items; + } + + // [DEBUG] io.ConfigDebugBeginReturnValue override return value to test Begin/End and BeginChild/EndChild behaviors. + // (The implicit fallback window is NOT automatically ended allowing it to always be able to receive commands without crashing) + if (!window->IsFallbackWindow && ((g.IO.ConfigDebugBeginReturnValueOnce && window_just_created) || (g.IO.ConfigDebugBeginReturnValueLoop && g.DebugBeginReturnValueCullDepth == g.CurrentWindowStack.Size))) + { + if (window->AutoFitFramesX > 0) { window->AutoFitFramesX++; } + if (window->AutoFitFramesY > 0) { window->AutoFitFramesY++; } + return false; + } + + return !window->SkipItems; +} + +void ImGui::End() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + // Error checking: verify that user hasn't called End() too many times! + if (g.CurrentWindowStack.Size <= 1 && g.WithinFrameScopeWithImplicitWindow) + { + IM_ASSERT_USER_ERROR(g.CurrentWindowStack.Size > 1, "Calling End() too many times!"); + return; + } + IM_ASSERT(g.CurrentWindowStack.Size > 0); + + // Error checking: verify that user doesn't directly call End() on a child window. + if (window->Flags & ImGuiWindowFlags_ChildWindow) + IM_ASSERT_USER_ERROR(g.WithinEndChild, "Must call EndChild() and not End()!"); + + // Close anything that is open + if (window->DC.CurrentColumns) + EndColumns(); + PopClipRect(); // Inner window clip rectangle + PopFocusScope(); + + // Stop logging + if (!(window->Flags & ImGuiWindowFlags_ChildWindow)) // FIXME: add more options for scope of logging + LogFinish(); + + if (window->DC.IsSetPos) + ErrorCheckUsingSetCursorPosToExtendParentBoundaries(); + + // Pop from window stack + g.LastItemData = g.CurrentWindowStack.back().ParentLastItemDataBackup; + if (window->Flags & ImGuiWindowFlags_ChildMenu) + g.BeginMenuCount--; + if (window->Flags & ImGuiWindowFlags_Popup) + g.BeginPopupStack.pop_back(); + g.CurrentWindowStack.back().StackSizesOnBegin.CompareWithContextState(&g); + g.CurrentWindowStack.pop_back(); + SetCurrentWindow(g.CurrentWindowStack.Size == 0 ? NULL : g.CurrentWindowStack.back().Window); +} + +void ImGui::BringWindowToFocusFront(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(window == window->RootWindow); + + const int cur_order = window->FocusOrder; + IM_ASSERT(g.WindowsFocusOrder[cur_order] == window); + if (g.WindowsFocusOrder.back() == window) + return; + + const int new_order = g.WindowsFocusOrder.Size - 1; + for (int n = cur_order; n < new_order; n++) + { + g.WindowsFocusOrder[n] = g.WindowsFocusOrder[n + 1]; + g.WindowsFocusOrder[n]->FocusOrder--; + IM_ASSERT(g.WindowsFocusOrder[n]->FocusOrder == n); + } + g.WindowsFocusOrder[new_order] = window; + window->FocusOrder = (short)new_order; +} + +void ImGui::BringWindowToDisplayFront(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* current_front_window = g.Windows.back(); + if (current_front_window == window || current_front_window->RootWindow == window) // Cheap early out (could be better) + return; + for (int i = g.Windows.Size - 2; i >= 0; i--) // We can ignore the top-most window + if (g.Windows[i] == window) + { + memmove(&g.Windows[i], &g.Windows[i + 1], (size_t)(g.Windows.Size - i - 1) * sizeof(ImGuiWindow*)); + g.Windows[g.Windows.Size - 1] = window; + break; + } +} + +void ImGui::BringWindowToDisplayBack(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + if (g.Windows[0] == window) + return; + for (int i = 0; i < g.Windows.Size; i++) + if (g.Windows[i] == window) + { + memmove(&g.Windows[1], &g.Windows[0], (size_t)i * sizeof(ImGuiWindow*)); + g.Windows[0] = window; + break; + } +} + +void ImGui::BringWindowToDisplayBehind(ImGuiWindow* window, ImGuiWindow* behind_window) +{ + IM_ASSERT(window != NULL && behind_window != NULL); + ImGuiContext& g = *GImGui; + window = window->RootWindow; + behind_window = behind_window->RootWindow; + int pos_wnd = FindWindowDisplayIndex(window); + int pos_beh = FindWindowDisplayIndex(behind_window); + if (pos_wnd < pos_beh) + { + size_t copy_bytes = (pos_beh - pos_wnd - 1) * sizeof(ImGuiWindow*); + memmove(&g.Windows.Data[pos_wnd], &g.Windows.Data[pos_wnd + 1], copy_bytes); + g.Windows[pos_beh - 1] = window; + } + else + { + size_t copy_bytes = (pos_wnd - pos_beh) * sizeof(ImGuiWindow*); + memmove(&g.Windows.Data[pos_beh + 1], &g.Windows.Data[pos_beh], copy_bytes); + g.Windows[pos_beh] = window; + } +} + +int ImGui::FindWindowDisplayIndex(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + return g.Windows.index_from_ptr(g.Windows.find(window)); +} + +// Moving window to front of display and set focus (which happens to be back of our sorted list) +void ImGui::FocusWindow(ImGuiWindow* window, ImGuiFocusRequestFlags flags) +{ + ImGuiContext& g = *GImGui; + + // Modal check? + if ((flags & ImGuiFocusRequestFlags_UnlessBelowModal) && (g.NavWindow != window)) // Early out in common case. + if (ImGuiWindow* blocking_modal = FindBlockingModal(window)) + { + IMGUI_DEBUG_LOG_FOCUS("[focus] FocusWindow(\"%s\", UnlessBelowModal): prevented by \"%s\".\n", window ? window->Name : "", blocking_modal->Name); + if (window && window == window->RootWindow && (window->Flags & ImGuiWindowFlags_NoBringToFrontOnFocus) == 0) + BringWindowToDisplayBehind(window, blocking_modal); // Still bring to right below modal. + return; + } + + // Find last focused child (if any) and focus it instead. + if ((flags & ImGuiFocusRequestFlags_RestoreFocusedChild) && window != NULL) + window = NavRestoreLastChildNavWindow(window); + + // Apply focus + if (g.NavWindow != window) + { + SetNavWindow(window); + if (window && g.NavDisableMouseHover) + g.NavMousePosDirty = true; + g.NavId = window ? window->NavLastIds[0] : 0; // Restore NavId + g.NavLayer = ImGuiNavLayer_Main; + g.NavFocusScopeId = window ? window->NavRootFocusScopeId : 0; + g.NavIdIsAlive = false; + + // Close popups if any + ClosePopupsOverWindow(window, false); + } + + // Move the root window to the top of the pile + IM_ASSERT(window == NULL || window->RootWindow != NULL); + ImGuiWindow* focus_front_window = window ? window->RootWindow : NULL; // NB: In docking branch this is window->RootWindowDockStop + ImGuiWindow* display_front_window = window ? window->RootWindow : NULL; + + // Steal active widgets. Some of the cases it triggers includes: + // - Focus a window while an InputText in another window is active, if focus happens before the old InputText can run. + // - When using Nav to activate menu items (due to timing of activating on press->new window appears->losing ActiveId) + if (g.ActiveId != 0 && g.ActiveIdWindow && g.ActiveIdWindow->RootWindow != focus_front_window) + if (!g.ActiveIdNoClearOnFocusLoss) + ClearActiveID(); + + // Passing NULL allow to disable keyboard focus + if (!window) + return; + + // Bring to front + BringWindowToFocusFront(focus_front_window); + if (((window->Flags | display_front_window->Flags) & ImGuiWindowFlags_NoBringToFrontOnFocus) == 0) + BringWindowToDisplayFront(display_front_window); +} + +void ImGui::FocusTopMostWindowUnderOne(ImGuiWindow* under_this_window, ImGuiWindow* ignore_window, ImGuiViewport* filter_viewport, ImGuiFocusRequestFlags flags) +{ + ImGuiContext& g = *GImGui; + IM_UNUSED(filter_viewport); // Unused in master branch. + int start_idx = g.WindowsFocusOrder.Size - 1; + if (under_this_window != NULL) + { + // Aim at root window behind us, if we are in a child window that's our own root (see #4640) + int offset = -1; + while (under_this_window->Flags & ImGuiWindowFlags_ChildWindow) + { + under_this_window = under_this_window->ParentWindow; + offset = 0; + } + start_idx = FindWindowFocusIndex(under_this_window) + offset; + } + for (int i = start_idx; i >= 0; i--) + { + // We may later decide to test for different NoXXXInputs based on the active navigation input (mouse vs nav) but that may feel more confusing to the user. + ImGuiWindow* window = g.WindowsFocusOrder[i]; + IM_ASSERT(window == window->RootWindow); + if (window == ignore_window || !window->WasActive) + continue; + if ((window->Flags & (ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs)) != (ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs)) + { + FocusWindow(window, flags); + return; + } + } + FocusWindow(NULL, flags); +} + +// Important: this alone doesn't alter current ImDrawList state. This is called by PushFont/PopFont only. +void ImGui::SetCurrentFont(ImFont* font) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(font && font->IsLoaded()); // Font Atlas not created. Did you call io.Fonts->GetTexDataAsRGBA32 / GetTexDataAsAlpha8 ? + IM_ASSERT(font->Scale > 0.0f); + g.Font = font; + g.FontBaseSize = ImMax(1.0f, g.IO.FontGlobalScale * g.Font->FontSize * g.Font->Scale); + g.FontSize = g.CurrentWindow ? g.CurrentWindow->CalcFontSize() : 0.0f; + + ImFontAtlas* atlas = g.Font->ContainerAtlas; + g.DrawListSharedData.TexUvWhitePixel = atlas->TexUvWhitePixel; + g.DrawListSharedData.TexUvLines = atlas->TexUvLines; + g.DrawListSharedData.Font = g.Font; + g.DrawListSharedData.FontSize = g.FontSize; + g.DrawListSharedData.ShadowRectIds = &atlas->ShadowRectIds[0]; + g.DrawListSharedData.ShadowRectUvs = &atlas->ShadowRectUvs[0]; +} + +void ImGui::PushFont(ImFont* font) +{ + ImGuiContext& g = *GImGui; + if (!font) + font = GetDefaultFont(); + SetCurrentFont(font); + g.FontStack.push_back(font); + g.CurrentWindow->DrawList->PushTextureID(font->ContainerAtlas->TexID); +} + +void ImGui::PopFont() +{ + ImGuiContext& g = *GImGui; + g.CurrentWindow->DrawList->PopTextureID(); + g.FontStack.pop_back(); + SetCurrentFont(g.FontStack.empty() ? GetDefaultFont() : g.FontStack.back()); +} + +void ImGui::PushItemFlag(ImGuiItemFlags option, bool enabled) +{ + ImGuiContext& g = *GImGui; + ImGuiItemFlags item_flags = g.CurrentItemFlags; + IM_ASSERT(item_flags == g.ItemFlagsStack.back()); + if (enabled) + item_flags |= option; + else + item_flags &= ~option; + g.CurrentItemFlags = item_flags; + g.ItemFlagsStack.push_back(item_flags); +} + +void ImGui::PopItemFlag() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.ItemFlagsStack.Size > 1); // Too many calls to PopItemFlag() - we always leave a 0 at the bottom of the stack. + g.ItemFlagsStack.pop_back(); + g.CurrentItemFlags = g.ItemFlagsStack.back(); +} + +// BeginDisabled()/EndDisabled() +// - Those can be nested but it cannot be used to enable an already disabled section (a single BeginDisabled(true) in the stack is enough to keep everything disabled) +// - Visually this is currently altering alpha, but it is expected that in a future styling system this would work differently. +// - Feedback welcome at https://github.com/ocornut/imgui/issues/211 +// - BeginDisabled(false) essentially does nothing useful but is provided to facilitate use of boolean expressions. If you can avoid calling BeginDisabled(False)/EndDisabled() best to avoid it. +// - Optimized shortcuts instead of PushStyleVar() + PushItemFlag() +void ImGui::BeginDisabled(bool disabled) +{ + ImGuiContext& g = *GImGui; + bool was_disabled = (g.CurrentItemFlags & ImGuiItemFlags_Disabled) != 0; + if (!was_disabled && disabled) + { + g.DisabledAlphaBackup = g.Style.Alpha; + g.Style.Alpha *= g.Style.DisabledAlpha; // PushStyleVar(ImGuiStyleVar_Alpha, g.Style.Alpha * g.Style.DisabledAlpha); + } + if (was_disabled || disabled) + g.CurrentItemFlags |= ImGuiItemFlags_Disabled; + g.ItemFlagsStack.push_back(g.CurrentItemFlags); + g.DisabledStackSize++; +} + +void ImGui::EndDisabled() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.DisabledStackSize > 0); + g.DisabledStackSize--; + bool was_disabled = (g.CurrentItemFlags & ImGuiItemFlags_Disabled) != 0; + //PopItemFlag(); + g.ItemFlagsStack.pop_back(); + g.CurrentItemFlags = g.ItemFlagsStack.back(); + if (was_disabled && (g.CurrentItemFlags & ImGuiItemFlags_Disabled) == 0) + g.Style.Alpha = g.DisabledAlphaBackup; //PopStyleVar(); +} + +void ImGui::PushTabStop(bool tab_stop) +{ + PushItemFlag(ImGuiItemFlags_NoTabStop, !tab_stop); +} + +void ImGui::PopTabStop() +{ + PopItemFlag(); +} + +void ImGui::PushButtonRepeat(bool repeat) +{ + PushItemFlag(ImGuiItemFlags_ButtonRepeat, repeat); +} + +void ImGui::PopButtonRepeat() +{ + PopItemFlag(); +} + +void ImGui::PushTextWrapPos(float wrap_pos_x) +{ + ImGuiWindow* window = GetCurrentWindow(); + window->DC.TextWrapPosStack.push_back(window->DC.TextWrapPos); + window->DC.TextWrapPos = wrap_pos_x; +} + +void ImGui::PopTextWrapPos() +{ + ImGuiWindow* window = GetCurrentWindow(); + window->DC.TextWrapPos = window->DC.TextWrapPosStack.back(); + window->DC.TextWrapPosStack.pop_back(); +} + +static ImGuiWindow* GetCombinedRootWindow(ImGuiWindow* window, bool popup_hierarchy) +{ + ImGuiWindow* last_window = NULL; + while (last_window != window) + { + last_window = window; + window = window->RootWindow; + if (popup_hierarchy) + window = window->RootWindowPopupTree; + } + return window; +} + +bool ImGui::IsWindowChildOf(ImGuiWindow* window, ImGuiWindow* potential_parent, bool popup_hierarchy) +{ + ImGuiWindow* window_root = GetCombinedRootWindow(window, popup_hierarchy); + if (window_root == potential_parent) + return true; + while (window != NULL) + { + if (window == potential_parent) + return true; + if (window == window_root) // end of chain + return false; + window = window->ParentWindow; + } + return false; +} + +bool ImGui::IsWindowWithinBeginStackOf(ImGuiWindow* window, ImGuiWindow* potential_parent) +{ + if (window->RootWindow == potential_parent) + return true; + while (window != NULL) + { + if (window == potential_parent) + return true; + window = window->ParentWindowInBeginStack; + } + return false; +} + +bool ImGui::IsWindowAbove(ImGuiWindow* potential_above, ImGuiWindow* potential_below) +{ + ImGuiContext& g = *GImGui; + + // It would be saner to ensure that display layer is always reflected in the g.Windows[] order, which would likely requires altering all manipulations of that array + const int display_layer_delta = GetWindowDisplayLayer(potential_above) - GetWindowDisplayLayer(potential_below); + if (display_layer_delta != 0) + return display_layer_delta > 0; + + for (int i = g.Windows.Size - 1; i >= 0; i--) + { + ImGuiWindow* candidate_window = g.Windows[i]; + if (candidate_window == potential_above) + return true; + if (candidate_window == potential_below) + return false; + } + return false; +} + +bool ImGui::IsWindowHovered(ImGuiHoveredFlags flags) +{ + IM_ASSERT((flags & ~ImGuiHoveredFlags_AllowedMaskForIsWindowHovered) == 0 && "Invalid flags for IsWindowHovered()!"); + + ImGuiContext& g = *GImGui; + ImGuiWindow* ref_window = g.HoveredWindow; + ImGuiWindow* cur_window = g.CurrentWindow; + if (ref_window == NULL) + return false; + + if ((flags & ImGuiHoveredFlags_AnyWindow) == 0) + { + IM_ASSERT(cur_window); // Not inside a Begin()/End() + const bool popup_hierarchy = (flags & ImGuiHoveredFlags_NoPopupHierarchy) == 0; + if (flags & ImGuiHoveredFlags_RootWindow) + cur_window = GetCombinedRootWindow(cur_window, popup_hierarchy); + + bool result; + if (flags & ImGuiHoveredFlags_ChildWindows) + result = IsWindowChildOf(ref_window, cur_window, popup_hierarchy); + else + result = (ref_window == cur_window); + if (!result) + return false; + } + + if (!IsWindowContentHoverable(ref_window, flags)) + return false; + if (!(flags & ImGuiHoveredFlags_AllowWhenBlockedByActiveItem)) + if (g.ActiveId != 0 && !g.ActiveIdAllowOverlap && g.ActiveId != ref_window->MoveId) + return false; + + // When changing hovered window we requires a bit of stationary delay before activating hover timer. + // FIXME: We don't support delay other than stationary one for now, other delay would need a way + // to fullfill the possibility that multiple IsWindowHovered() with varying flag could return true + // for different windows of the hierarchy. Possibly need a Hash(Current+Flags) ==> (Timer) cache. + // We can implement this for _Stationary because the data is linked to HoveredWindow rather than CurrentWindow. + if (flags & ImGuiHoveredFlags_ForTooltip) + flags |= g.Style.HoverFlagsForTooltipMouse; + if ((flags & ImGuiHoveredFlags_Stationary) != 0 && g.HoverWindowUnlockedStationaryId != ref_window->ID) + return false; + + return true; +} + +bool ImGui::IsWindowFocused(ImGuiFocusedFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* ref_window = g.NavWindow; + ImGuiWindow* cur_window = g.CurrentWindow; + + if (ref_window == NULL) + return false; + if (flags & ImGuiFocusedFlags_AnyWindow) + return true; + + IM_ASSERT(cur_window); // Not inside a Begin()/End() + const bool popup_hierarchy = (flags & ImGuiFocusedFlags_NoPopupHierarchy) == 0; + if (flags & ImGuiHoveredFlags_RootWindow) + cur_window = GetCombinedRootWindow(cur_window, popup_hierarchy); + + if (flags & ImGuiHoveredFlags_ChildWindows) + return IsWindowChildOf(ref_window, cur_window, popup_hierarchy); + else + return (ref_window == cur_window); +} + +// Can we focus this window with CTRL+TAB (or PadMenu + PadFocusPrev/PadFocusNext) +// Note that NoNavFocus makes the window not reachable with CTRL+TAB but it can still be focused with mouse or programmatically. +// If you want a window to never be focused, you may use the e.g. NoInputs flag. +bool ImGui::IsWindowNavFocusable(ImGuiWindow* window) +{ + return window->WasActive && window == window->RootWindow && !(window->Flags & ImGuiWindowFlags_NoNavFocus); +} + +float ImGui::GetWindowWidth() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->Size.x; +} + +float ImGui::GetWindowHeight() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->Size.y; +} + +ImVec2 ImGui::GetWindowPos() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + return window->Pos; +} + +void ImGui::SetWindowPos(ImGuiWindow* window, const ImVec2& pos, ImGuiCond cond) +{ + // Test condition (NB: bit 0 is always true) and clear flags for next time + if (cond && (window->SetWindowPosAllowFlags & cond) == 0) + return; + + IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); // Make sure the user doesn't attempt to combine multiple condition flags. + window->SetWindowPosAllowFlags &= ~(ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing); + window->SetWindowPosVal = ImVec2(FLT_MAX, FLT_MAX); + + // Set + const ImVec2 old_pos = window->Pos; + window->Pos = ImFloor(pos); + ImVec2 offset = window->Pos - old_pos; + if (offset.x == 0.0f && offset.y == 0.0f) + return; + MarkIniSettingsDirty(window); + window->DC.CursorPos += offset; // As we happen to move the window while it is being appended to (which is a bad idea - will smear) let's at least offset the cursor + window->DC.CursorMaxPos += offset; // And more importantly we need to offset CursorMaxPos/CursorStartPos this so ContentSize calculation doesn't get affected. + window->DC.IdealMaxPos += offset; + window->DC.CursorStartPos += offset; +} + +void ImGui::SetWindowPos(const ImVec2& pos, ImGuiCond cond) +{ + ImGuiWindow* window = GetCurrentWindowRead(); + SetWindowPos(window, pos, cond); +} + +void ImGui::SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond) +{ + if (ImGuiWindow* window = FindWindowByName(name)) + SetWindowPos(window, pos, cond); +} + +ImVec2 ImGui::GetWindowSize() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->Size; +} + +void ImGui::SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond) +{ + // Test condition (NB: bit 0 is always true) and clear flags for next time + if (cond && (window->SetWindowSizeAllowFlags & cond) == 0) + return; + + IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); // Make sure the user doesn't attempt to combine multiple condition flags. + window->SetWindowSizeAllowFlags &= ~(ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing); + + // Set + ImVec2 old_size = window->SizeFull; + window->AutoFitFramesX = (size.x <= 0.0f) ? 2 : 0; + window->AutoFitFramesY = (size.y <= 0.0f) ? 2 : 0; + if (size.x <= 0.0f) + window->AutoFitOnlyGrows = false; + else + window->SizeFull.x = IM_FLOOR(size.x); + if (size.y <= 0.0f) + window->AutoFitOnlyGrows = false; + else + window->SizeFull.y = IM_FLOOR(size.y); + if (old_size.x != window->SizeFull.x || old_size.y != window->SizeFull.y) + MarkIniSettingsDirty(window); +} + +void ImGui::SetWindowSize(const ImVec2& size, ImGuiCond cond) +{ + SetWindowSize(GImGui->CurrentWindow, size, cond); +} + +void ImGui::SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond) +{ + if (ImGuiWindow* window = FindWindowByName(name)) + SetWindowSize(window, size, cond); +} + +void ImGui::SetWindowCollapsed(ImGuiWindow* window, bool collapsed, ImGuiCond cond) +{ + // Test condition (NB: bit 0 is always true) and clear flags for next time + if (cond && (window->SetWindowCollapsedAllowFlags & cond) == 0) + return; + window->SetWindowCollapsedAllowFlags &= ~(ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing); + + // Set + window->Collapsed = collapsed; +} + +void ImGui::SetWindowHitTestHole(ImGuiWindow* window, const ImVec2& pos, const ImVec2& size) +{ + IM_ASSERT(window->HitTestHoleSize.x == 0); // We don't support multiple holes/hit test filters + window->HitTestHoleSize = ImVec2ih(size); + window->HitTestHoleOffset = ImVec2ih(pos - window->Pos); +} + +void ImGui::SetWindowHiddendAndSkipItemsForCurrentFrame(ImGuiWindow* window) +{ + window->Hidden = window->SkipItems = true; + window->HiddenFramesCanSkipItems = 1; +} + +void ImGui::SetWindowCollapsed(bool collapsed, ImGuiCond cond) +{ + SetWindowCollapsed(GImGui->CurrentWindow, collapsed, cond); +} + +bool ImGui::IsWindowCollapsed() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->Collapsed; +} + +bool ImGui::IsWindowAppearing() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->Appearing; +} + +void ImGui::SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond cond) +{ + if (ImGuiWindow* window = FindWindowByName(name)) + SetWindowCollapsed(window, collapsed, cond); +} + +void ImGui::SetWindowFocus() +{ + FocusWindow(GImGui->CurrentWindow); +} + +void ImGui::SetWindowFocus(const char* name) +{ + if (name) + { + if (ImGuiWindow* window = FindWindowByName(name)) + FocusWindow(window); + } + else + { + FocusWindow(NULL); + } +} + +void ImGui::SetNextWindowPos(const ImVec2& pos, ImGuiCond cond, const ImVec2& pivot) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); // Make sure the user doesn't attempt to combine multiple condition flags. + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasPos; + g.NextWindowData.PosVal = pos; + g.NextWindowData.PosPivotVal = pivot; + g.NextWindowData.PosCond = cond ? cond : ImGuiCond_Always; +} + +void ImGui::SetNextWindowSize(const ImVec2& size, ImGuiCond cond) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); // Make sure the user doesn't attempt to combine multiple condition flags. + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasSize; + g.NextWindowData.SizeVal = size; + g.NextWindowData.SizeCond = cond ? cond : ImGuiCond_Always; +} + +void ImGui::SetNextWindowSizeConstraints(const ImVec2& size_min, const ImVec2& size_max, ImGunSizeCallback custom_callback, void* custom_callback_user_data) +{ + ImGuiContext& g = *GImGui; + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasSizeConstraint; + g.NextWindowData.SizeConstraintRect = ImRect(size_min, size_max); + g.NextWindowData.SizeCallback = custom_callback; + g.NextWindowData.SizeCallbackUserData = custom_callback_user_data; +} + +// Content size = inner scrollable rectangle, padded with WindowPadding. +// SetNextWindowContentSize(ImVec2(100,100) + ImGuiWindowFlags_AlwaysAutoResize will always allow submitting a 100x100 item. +void ImGui::SetNextWindowContentSize(const ImVec2& size) +{ + ImGuiContext& g = *GImGui; + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasContentSize; + g.NextWindowData.ContentSizeVal = ImFloor(size); +} + +void ImGui::SetNextWindowScroll(const ImVec2& scroll) +{ + ImGuiContext& g = *GImGui; + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasScroll; + g.NextWindowData.ScrollVal = scroll; +} + +void ImGui::SetNextWindowCollapsed(bool collapsed, ImGuiCond cond) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); // Make sure the user doesn't attempt to combine multiple condition flags. + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasCollapsed; + g.NextWindowData.CollapsedVal = collapsed; + g.NextWindowData.CollapsedCond = cond ? cond : ImGuiCond_Always; +} + +void ImGui::SetNextWindowFocus() +{ + ImGuiContext& g = *GImGui; + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasFocus; +} + +void ImGui::SetNextWindowBgAlpha(float alpha) +{ + ImGuiContext& g = *GImGui; + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasBgAlpha; + g.NextWindowData.BgAlphaVal = alpha; +} + +ImDrawList* ImGui::GetWindowDrawList() +{ + ImGuiWindow* window = GetCurrentWindow(); + return window->DrawList; +} + +ImFont* ImGui::GetFont() +{ + return GImGui->Font; +} + +float ImGui::GetFontSize() +{ + return GImGui->FontSize; +} + +ImVec2 ImGui::GetFontTexUvWhitePixel() +{ + return GImGui->DrawListSharedData.TexUvWhitePixel; +} + +void ImGui::SetWindowFontScale(float scale) +{ + IM_ASSERT(scale > 0.0f); + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + window->FontWindowScale = scale; + g.FontSize = g.DrawListSharedData.FontSize = window->CalcFontSize(); +} + +void ImGui::PushFocusScope(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + g.FocusScopeStack.push_back(id); + g.CurrentFocusScopeId = id; +} + +void ImGui::PopFocusScope() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.FocusScopeStack.Size > 0); // Too many PopFocusScope() ? + g.FocusScopeStack.pop_back(); + g.CurrentFocusScopeId = g.FocusScopeStack.Size ? g.FocusScopeStack.back() : 0; +} + +// Focus = move navigation cursor, set scrolling, set focus window. +void ImGui::FocusItem() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IMGUI_DEBUG_LOG_FOCUS("FocusItem(0x%08x) in window \"%s\"\n", g.LastItemData.ID, window->Name); + if (g.DragDropActive || g.MovingWindow != NULL) // FIXME: Opt-in flags for this? + { + IMGUI_DEBUG_LOG_FOCUS("FocusItem() ignored while DragDropActive!\n"); + return; + } + + ImGuiNavMoveFlags move_flags = ImGuiNavMoveFlags_IsTabbing | ImGuiNavMoveFlags_FocusApi | ImGuiNavMoveFlags_NoSelect; + ImGuiScrollFlags scroll_flags = window->Appearing ? ImGuiScrollFlags_KeepVisibleEdgeX | ImGuiScrollFlags_AlwaysCenterY : ImGuiScrollFlags_KeepVisibleEdgeX | ImGuiScrollFlags_KeepVisibleEdgeY; + SetNavWindow(window); + NavMoveRequestSubmit(ImGuiDir_None, ImGuiDir_Up, move_flags, scroll_flags); + NavMoveRequestResolveWithLastItem(&g.NavMoveResultLocal); +} + +void ImGui::ActivateItemByID(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + g.NavNextActivateId = id; + g.NavNextActivateFlags = ImGuiActivateFlags_None; +} + +// Note: this will likely be called ActivateItem() once we rework our Focus/Activation system! +// But ActivateItem() should function without altering scroll/focus? +void ImGui::SetKeyboardFocusHere(int offset) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(offset >= -1); // -1 is allowed but not below + IMGUI_DEBUG_LOG_FOCUS("SetKeyboardFocusHere(%d) in window \"%s\"\n", offset, window->Name); + + // It makes sense in the vast majority of cases to never interrupt a drag and drop. + // When we refactor this function into ActivateItem() we may want to make this an option. + // MovingWindow is protected from most user inputs using SetActiveIdUsingNavAndKeys(), but + // is also automatically dropped in the event g.ActiveId is stolen. + if (g.DragDropActive || g.MovingWindow != NULL) + { + IMGUI_DEBUG_LOG_FOCUS("SetKeyboardFocusHere() ignored while DragDropActive!\n"); + return; + } + + SetNavWindow(window); + + ImGuiNavMoveFlags move_flags = ImGuiNavMoveFlags_IsTabbing | ImGuiNavMoveFlags_Activate | ImGuiNavMoveFlags_FocusApi; + ImGuiScrollFlags scroll_flags = window->Appearing ? ImGuiScrollFlags_KeepVisibleEdgeX | ImGuiScrollFlags_AlwaysCenterY : ImGuiScrollFlags_KeepVisibleEdgeX | ImGuiScrollFlags_KeepVisibleEdgeY; + NavMoveRequestSubmit(ImGuiDir_None, offset < 0 ? ImGuiDir_Up : ImGuiDir_Down, move_flags, scroll_flags); // FIXME-NAV: Once we refactor tabbing, add LegacyApi flag to not activate non-inputable. + if (offset == -1) + { + NavMoveRequestResolveWithLastItem(&g.NavMoveResultLocal); + } + else + { + g.NavTabbingDir = 1; + g.NavTabbingCounter = offset + 1; + } +} + +void ImGui::SetItemDefaultFocus() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (!window->Appearing) + return; + if (g.NavWindow != window->RootWindowForNav || (!g.NavInitRequest && g.NavInitResult.ID == 0) || g.NavLayer != window->DC.NavLayerCurrent) + return; + + g.NavInitRequest = false; + NavApplyItemToResult(&g.NavInitResult); + NavUpdateAnyRequestFlag(); + + // Scroll could be done in NavInitRequestApplyResult() via an opt-in flag (we however don't want regular init requests to scroll) + if (!window->ClipRect.Contains(g.LastItemData.Rect)) + ScrollToRectEx(window, g.LastItemData.Rect, ImGuiScrollFlags_None); +} + +void ImGui::SetStateStorage(ImGuiStorage* tree) +{ + ImGuiWindow* window = GImGui->CurrentWindow; + window->DC.StateStorage = tree ? tree : &window->StateStorage; +} + +ImGuiStorage* ImGui::GetStateStorage() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->DC.StateStorage; +} + +void ImGui::PushID(const char* str_id) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiID id = window->GetID(str_id); + window->IDStack.push_back(id); +} + +void ImGui::PushID(const char* str_id_begin, const char* str_id_end) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiID id = window->GetID(str_id_begin, str_id_end); + window->IDStack.push_back(id); +} + +void ImGui::PushID(const void* ptr_id) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiID id = window->GetID(ptr_id); + window->IDStack.push_back(id); +} + +void ImGui::PushID(int int_id) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiID id = window->GetID(int_id); + window->IDStack.push_back(id); +} + +// Push a given id value ignoring the ID stack as a seed. +void ImGui::PushOverrideID(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (g.DebugHookIdInfo == id) + DebugHookIdInfo(id, ImGuiDataType_ID, NULL, NULL); + window->IDStack.push_back(id); +} + +// Helper to avoid a common series of PushOverrideID -> GetID() -> PopID() call +// (note that when using this pattern, TestEngine's "Stack Tool" will tend to not display the intermediate stack level. +// for that to work we would need to do PushOverrideID() -> ItemAdd() -> PopID() which would alter widget code a little more) +ImGuiID ImGui::GetIDWithSeed(const char* str, const char* str_end, ImGuiID seed) +{ + ImGuiID id = ImHashStr(str, str_end ? (str_end - str) : 0, seed); + ImGuiContext& g = *GImGui; + if (g.DebugHookIdInfo == id) + DebugHookIdInfo(id, ImGuiDataType_String, str, str_end); + return id; +} + +ImGuiID ImGui::GetIDWithSeed(int n, ImGuiID seed) +{ + ImGuiID id = ImHashData(&n, sizeof(n), seed); + ImGuiContext& g = *GImGui; + if (g.DebugHookIdInfo == id) + DebugHookIdInfo(id, ImGuiDataType_S32, (void*)(intptr_t)n, NULL); + return id; +} + +void ImGui::PopID() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + IM_ASSERT(window->IDStack.Size > 1); // Too many PopID(), or could be popping in a wrong/different window? + window->IDStack.pop_back(); +} + +ImGuiID ImGui::GetID(const char* str_id) +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->GetID(str_id); +} + +ImGuiID ImGui::GetID(const char* str_id_begin, const char* str_id_end) +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->GetID(str_id_begin, str_id_end); +} + +ImGuiID ImGui::GetID(const void* ptr_id) +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->GetID(ptr_id); +} + +bool ImGui::IsRectVisible(const ImVec2& size) +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->ClipRect.Overlaps(ImRect(window->DC.CursorPos, window->DC.CursorPos + size)); +} + +bool ImGui::IsRectVisible(const ImVec2& rect_min, const ImVec2& rect_max) +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->ClipRect.Overlaps(ImRect(rect_min, rect_max)); +} + + +//----------------------------------------------------------------------------- +// [SECTION] INPUTS +//----------------------------------------------------------------------------- +// - GetKeyData() [Internal] +// - GetKeyIndex() [Internal] +// - GetKeyName() +// - GetKeyChordName() [Internal] +// - CalcTypematicRepeatAmount() [Internal] +// - GetTypematicRepeatRate() [Internal] +// - GetKeyPressedAmount() [Internal] +// - GetKeyMagnitude2d() [Internal] +//----------------------------------------------------------------------------- +// - UpdateKeyRoutingTable() [Internal] +// - GetRoutingIdFromOwnerId() [Internal] +// - GetShortcutRoutingData() [Internal] +// - CalcRoutingScore() [Internal] +// - SetShortcutRouting() [Internal] +// - TestShortcutRouting() [Internal] +//----------------------------------------------------------------------------- +// - IsKeyDown() +// - IsKeyPressed() +// - IsKeyReleased() +//----------------------------------------------------------------------------- +// - IsMouseDown() +// - IsMouseClicked() +// - IsMouseReleased() +// - IsMouseDoubleClicked() +// - GetMouseClickedCount() +// - IsMouseHoveringRect() [Internal] +// - IsMouseDragPastThreshold() [Internal] +// - IsMouseDragging() +// - GetMousePos() +// - GetMousePosOnOpeningCurrentPopup() +// - IsMousePosValid() +// - IsAnyMouseDown() +// - GetMouseDragDelta() +// - ResetMouseDragDelta() +// - GetMouseCursor() +// - SetMouseCursor() +//----------------------------------------------------------------------------- +// - UpdateAliasKey() +// - GetMergedModsFromKeys() +// - UpdateKeyboardInputs() +// - UpdateMouseInputs() +//----------------------------------------------------------------------------- +// - LockWheelingWindow [Internal] +// - FindBestWheelingWindow [Internal] +// - UpdateMouseWheel() [Internal] +//----------------------------------------------------------------------------- +// - SetNextFrameWantCaptureKeyboard() +// - SetNextFrameWantCaptureMouse() +//----------------------------------------------------------------------------- +// - GetInputSourceName() [Internal] +// - DebugPrintInputEvent() [Internal] +// - UpdateInputEvents() [Internal] +//----------------------------------------------------------------------------- +// - GetKeyOwner() [Internal] +// - TestKeyOwner() [Internal] +// - SetKeyOwner() [Internal] +// - SetItemKeyOwner() [Internal] +// - Shortcut() [Internal] +//----------------------------------------------------------------------------- + +ImGuiKeyData* ImGui::GetKeyData(ImGuiContext* ctx, ImGuiKey key) +{ + ImGuiContext& g = *ctx; + + // Special storage location for mods + if (key & ImGuiMod_Mask_) + key = ConvertSingleModFlagToKey(ctx, key); + +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + IM_ASSERT(key >= ImGuiKey_LegacyNativeKey_BEGIN && key < ImGuiKey_NamedKey_END); + if (IsLegacyKey(key) && g.IO.KeyMap[key] != -1) + key = (ImGuiKey)g.IO.KeyMap[key]; // Remap native->imgui or imgui->native +#else + IM_ASSERT(IsNamedKey(key) && "Support for user key indices was dropped in favor of ImGuiKey. Please update backend & user code."); +#endif + return &g.IO.KeysData[key - ImGuiKey_KeysData_OFFSET]; +} + +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO +ImGuiKey ImGui::GetKeyIndex(ImGuiKey key) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(IsNamedKey(key)); + const ImGuiKeyData* key_data = GetKeyData(key); + return (ImGuiKey)(key_data - g.IO.KeysData); +} +#endif + +// Those names a provided for debugging purpose and are not meant to be saved persistently not compared. +static const char* const GKeyNames[] = +{ + "Tab", "LeftArrow", "RightArrow", "UpArrow", "DownArrow", "PageUp", "PageDown", + "Home", "End", "Insert", "Delete", "Backspace", "Space", "Enter", "Escape", + "LeftCtrl", "LeftShift", "LeftAlt", "LeftSuper", "RightCtrl", "RightShift", "RightAlt", "RightSuper", "Menu", + "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", + "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", + "F1", "F2", "F3", "F4", "F5", "F6", "F7", "F8", "F9", "F10", "F11", "F12", + "Apostrophe", "Comma", "Minus", "Period", "Slash", "Semicolon", "Equal", "LeftBracket", + "Backslash", "RightBracket", "GraveAccent", "CapsLock", "ScrollLock", "NumLock", "PrintScreen", + "Pause", "Keypad0", "Keypad1", "Keypad2", "Keypad3", "Keypad4", "Keypad5", "Keypad6", + "Keypad7", "Keypad8", "Keypad9", "KeypadDecimal", "KeypadDivide", "KeypadMultiply", + "KeypadSubtract", "KeypadAdd", "KeypadEnter", "KeypadEqual", + "GamepadStart", "GamepadBack", + "GamepadFaceLeft", "GamepadFaceRight", "GamepadFaceUp", "GamepadFaceDown", + "GamepadDpadLeft", "GamepadDpadRight", "GamepadDpadUp", "GamepadDpadDown", + "GamepadL1", "GamepadR1", "GamepadL2", "GamepadR2", "GamepadL3", "GamepadR3", + "GamepadLStickLeft", "GamepadLStickRight", "GamepadLStickUp", "GamepadLStickDown", + "GamepadRStickLeft", "GamepadRStickRight", "GamepadRStickUp", "GamepadRStickDown", + "MouseLeft", "MouseRight", "MouseMiddle", "MouseX1", "MouseX2", "MouseWheelX", "MouseWheelY", + "ModCtrl", "ModShift", "ModAlt", "ModSuper", // ReservedForModXXX are showing the ModXXX names. +}; +IM_STATIC_ASSERT(ImGuiKey_NamedKey_COUNT == IM_ARRAYSIZE(GKeyNames)); + +const char* ImGui::GetKeyName(ImGuiKey key) +{ + ImGuiContext& g = *GImGui; +#ifdef IMGUI_DISABLE_OBSOLETE_KEYIO + IM_ASSERT((IsNamedKeyOrModKey(key) || key == ImGuiKey_None) && "Support for user key indices was dropped in favor of ImGuiKey. Please update backend and user code."); +#else + if (IsLegacyKey(key)) + { + if (g.IO.KeyMap[key] == -1) + return "N/A"; + IM_ASSERT(IsNamedKey((ImGuiKey)g.IO.KeyMap[key])); + key = (ImGuiKey)g.IO.KeyMap[key]; + } +#endif + if (key == ImGuiKey_None) + return "None"; + if (key & ImGuiMod_Mask_) + key = ConvertSingleModFlagToKey(&g, key); + if (!IsNamedKey(key)) + return "Unknown"; + + return GKeyNames[key - ImGuiKey_NamedKey_BEGIN]; +} + +// ImGuiMod_Shortcut is translated to either Ctrl or Super. +void ImGui::GetKeyChordName(ImGuiKeyChord key_chord, char* out_buf, int out_buf_size) +{ + ImGuiContext& g = *GImGui; + if (key_chord & ImGuiMod_Shortcut) + key_chord = ConvertShortcutMod(key_chord); + ImFormatString(out_buf, (size_t)out_buf_size, "%s%s%s%s%s", + (key_chord & ImGuiMod_Ctrl) ? "Ctrl+" : "", + (key_chord & ImGuiMod_Shift) ? "Shift+" : "", + (key_chord & ImGuiMod_Alt) ? "Alt+" : "", + (key_chord & ImGuiMod_Super) ? (g.IO.ConfigMacOSXBehaviors ? "Cmd+" : "Super+") : "", + GetKeyName((ImGuiKey)(key_chord & ~ImGuiMod_Mask_))); +} + +// t0 = previous time (e.g.: g.Time - g.IO.DeltaTime) +// t1 = current time (e.g.: g.Time) +// An event is triggered at: +// t = 0.0f t = repeat_delay, t = repeat_delay + repeat_rate*N +int ImGui::CalcTypematicRepeatAmount(float t0, float t1, float repeat_delay, float repeat_rate) +{ + if (t1 == 0.0f) + return 1; + if (t0 >= t1) + return 0; + if (repeat_rate <= 0.0f) + return (t0 < repeat_delay) && (t1 >= repeat_delay); + const int count_t0 = (t0 < repeat_delay) ? -1 : (int)((t0 - repeat_delay) / repeat_rate); + const int count_t1 = (t1 < repeat_delay) ? -1 : (int)((t1 - repeat_delay) / repeat_rate); + const int count = count_t1 - count_t0; + return count; +} + +void ImGui::GetTypematicRepeatRate(ImGuiInputFlags flags, float* repeat_delay, float* repeat_rate) +{ + ImGuiContext& g = *GImGui; + switch (flags & ImGuiInputFlags_RepeatRateMask_) + { + case ImGuiInputFlags_RepeatRateNavMove: *repeat_delay = g.IO.KeyRepeatDelay * 0.72f; *repeat_rate = g.IO.KeyRepeatRate * 0.80f; return; + case ImGuiInputFlags_RepeatRateNavTweak: *repeat_delay = g.IO.KeyRepeatDelay * 0.72f; *repeat_rate = g.IO.KeyRepeatRate * 0.30f; return; + case ImGuiInputFlags_RepeatRateDefault: default: *repeat_delay = g.IO.KeyRepeatDelay * 1.00f; *repeat_rate = g.IO.KeyRepeatRate * 1.00f; return; + } +} + +// Return value representing the number of presses in the last time period, for the given repeat rate +// (most often returns 0 or 1. The result is generally only >1 when RepeatRate is smaller than DeltaTime, aka large DeltaTime or fast RepeatRate) +int ImGui::GetKeyPressedAmount(ImGuiKey key, float repeat_delay, float repeat_rate) +{ + ImGuiContext& g = *GImGui; + const ImGuiKeyData* key_data = GetKeyData(key); + if (!key_data->Down) // In theory this should already be encoded as (DownDuration < 0.0f), but testing this facilitates eating mechanism (until we finish work on key ownership) + return 0; + const float t = key_data->DownDuration; + return CalcTypematicRepeatAmount(t - g.IO.DeltaTime, t, repeat_delay, repeat_rate); +} + +// Return 2D vector representing the combination of four cardinal direction, with analog value support (for e.g. ImGuiKey_GamepadLStick* values). +ImVec2 ImGui::GetKeyMagnitude2d(ImGuiKey key_left, ImGuiKey key_right, ImGuiKey key_up, ImGuiKey key_down) +{ + return ImVec2( + GetKeyData(key_right)->AnalogValue - GetKeyData(key_left)->AnalogValue, + GetKeyData(key_down)->AnalogValue - GetKeyData(key_up)->AnalogValue); +} + +// Rewrite routing data buffers to strip old entries + sort by key to make queries not touch scattered data. +// Entries D,A,B,B,A,C,B --> A,A,B,B,B,C,D +// Index A:1 B:2 C:5 D:0 --> A:0 B:2 C:5 D:6 +// See 'Metrics->Key Owners & Shortcut Routing' to visualize the result of that operation. +static void ImGui::UpdateKeyRoutingTable(ImGuiKeyRoutingTable* rt) +{ + ImGuiContext& g = *GImGui; + rt->EntriesNext.resize(0); + for (ImGuiKey key = ImGuiKey_NamedKey_BEGIN; key < ImGuiKey_NamedKey_END; key = (ImGuiKey)(key + 1)) + { + const int new_routing_start_idx = rt->EntriesNext.Size; + ImGuiKeyRoutingData* routing_entry; + for (int old_routing_idx = rt->Index[key - ImGuiKey_NamedKey_BEGIN]; old_routing_idx != -1; old_routing_idx = routing_entry->NextEntryIndex) + { + routing_entry = &rt->Entries[old_routing_idx]; + routing_entry->RoutingCurr = routing_entry->RoutingNext; // Update entry + routing_entry->RoutingNext = ImGuiKeyOwner_None; + routing_entry->RoutingNextScore = 255; + if (routing_entry->RoutingCurr == ImGuiKeyOwner_None) + continue; + rt->EntriesNext.push_back(*routing_entry); // Write alive ones into new buffer + + // Apply routing to owner if there's no owner already (RoutingCurr == None at this point) + if (routing_entry->Mods == g.IO.KeyMods) + { + ImGuiKeyOwnerData* owner_data = GetKeyOwnerData(&g, key); + if (owner_data->OwnerCurr == ImGuiKeyOwner_None) + owner_data->OwnerCurr = routing_entry->RoutingCurr; + } + } + + // Rewrite linked-list + rt->Index[key - ImGuiKey_NamedKey_BEGIN] = (ImGuiKeyRoutingIndex)(new_routing_start_idx < rt->EntriesNext.Size ? new_routing_start_idx : -1); + for (int n = new_routing_start_idx; n < rt->EntriesNext.Size; n++) + rt->EntriesNext[n].NextEntryIndex = (ImGuiKeyRoutingIndex)((n + 1 < rt->EntriesNext.Size) ? n + 1 : -1); + } + rt->Entries.swap(rt->EntriesNext); // Swap new and old indexes +} + +// owner_id may be None/Any, but routing_id needs to be always be set, so we default to GetCurrentFocusScope(). +static inline ImGuiID GetRoutingIdFromOwnerId(ImGuiID owner_id) +{ + ImGuiContext& g = *GImGui; + return (owner_id != ImGuiKeyOwner_None && owner_id != ImGuiKeyOwner_Any) ? owner_id : g.CurrentFocusScopeId; +} + +ImGuiKeyRoutingData* ImGui::GetShortcutRoutingData(ImGuiKeyChord key_chord) +{ + // Majority of shortcuts will be Key + any number of Mods + // We accept _Single_ mod with ImGuiKey_None. + // - Shortcut(ImGuiKey_S | ImGuiMod_Ctrl); // Legal + // - Shortcut(ImGuiKey_S | ImGuiMod_Ctrl | ImGuiMod_Shift); // Legal + // - Shortcut(ImGuiMod_Ctrl); // Legal + // - Shortcut(ImGuiMod_Ctrl | ImGuiMod_Shift); // Not legal + ImGuiContext& g = *GImGui; + ImGuiKeyRoutingTable* rt = &g.KeysRoutingTable; + ImGuiKeyRoutingData* routing_data; + if (key_chord & ImGuiMod_Shortcut) + key_chord = ConvertShortcutMod(key_chord); + ImGuiKey key = (ImGuiKey)(key_chord & ~ImGuiMod_Mask_); + ImGuiKey mods = (ImGuiKey)(key_chord & ImGuiMod_Mask_); + if (key == ImGuiKey_None) + key = ConvertSingleModFlagToKey(&g, mods); + IM_ASSERT(IsNamedKey(key)); + + // Get (in the majority of case, the linked list will have one element so this should be 2 reads. + // Subsequent elements will be contiguous in memory as list is sorted/rebuilt in NewFrame). + for (ImGuiKeyRoutingIndex idx = rt->Index[key - ImGuiKey_NamedKey_BEGIN]; idx != -1; idx = routing_data->NextEntryIndex) + { + routing_data = &rt->Entries[idx]; + if (routing_data->Mods == mods) + return routing_data; + } + + // Add to linked-list + ImGuiKeyRoutingIndex routing_data_idx = (ImGuiKeyRoutingIndex)rt->Entries.Size; + rt->Entries.push_back(ImGuiKeyRoutingData()); + routing_data = &rt->Entries[routing_data_idx]; + routing_data->Mods = (ImU16)mods; + routing_data->NextEntryIndex = rt->Index[key - ImGuiKey_NamedKey_BEGIN]; // Setup linked list + rt->Index[key - ImGuiKey_NamedKey_BEGIN] = routing_data_idx; + return routing_data; +} + +// Current score encoding (lower is highest priority): +// - 0: ImGuiInputFlags_RouteGlobalHigh +// - 1: ImGuiInputFlags_RouteFocused (if item active) +// - 2: ImGuiInputFlags_RouteGlobal +// - 3+: ImGuiInputFlags_RouteFocused (if window in focus-stack) +// - 254: ImGuiInputFlags_RouteGlobalLow +// - 255: never route +// 'flags' should include an explicit routing policy +static int CalcRoutingScore(ImGuiWindow* location, ImGuiID owner_id, ImGuiInputFlags flags) +{ + if (flags & ImGuiInputFlags_RouteFocused) + { + ImGuiContext& g = *GImGui; + ImGuiWindow* focused = g.NavWindow; + + // ActiveID gets top priority + // (we don't check g.ActiveIdUsingAllKeys here. Routing is applied but if input ownership is tested later it may discard it) + if (owner_id != 0 && g.ActiveId == owner_id) + return 1; + + // Score based on distance to focused window (lower is better) + // Assuming both windows are submitting a routing request, + // - When Window....... is focused -> Window scores 3 (best), Window/ChildB scores 255 (no match) + // - When Window/ChildB is focused -> Window scores 4, Window/ChildB scores 3 (best) + // Assuming only WindowA is submitting a routing request, + // - When Window/ChildB is focused -> Window scores 4 (best), Window/ChildB doesn't have a score. + if (focused != NULL && focused->RootWindow == location->RootWindow) + for (int next_score = 3; focused != NULL; next_score++) + { + if (focused == location) + { + IM_ASSERT(next_score < 255); + return next_score; + } + focused = (focused->RootWindow != focused) ? focused->ParentWindow : NULL; // FIXME: This could be later abstracted as a focus path + } + return 255; + } + + // ImGuiInputFlags_RouteGlobalHigh is default, so calls without flags are not conditional + if (flags & ImGuiInputFlags_RouteGlobal) + return 2; + if (flags & ImGuiInputFlags_RouteGlobalLow) + return 254; + return 0; +} + +// Request a desired route for an input chord (key + mods). +// Return true if the route is available this frame. +// - Routes and key ownership are attributed at the beginning of next frame based on best score and mod state. +// (Conceptually this does a "Submit for next frame" + "Test for current frame". +// As such, it could be called TrySetXXX or SubmitXXX, or the Submit and Test operations should be separate.) +// - Using 'owner_id == ImGuiKeyOwner_Any/0': auto-assign an owner based on current focus scope (each window has its focus scope by default) +// - Using 'owner_id == ImGuiKeyOwner_None': allows disabling/locking a shortcut. +bool ImGui::SetShortcutRouting(ImGuiKeyChord key_chord, ImGuiID owner_id, ImGuiInputFlags flags) +{ + ImGuiContext& g = *GImGui; + if ((flags & ImGuiInputFlags_RouteMask_) == 0) + flags |= ImGuiInputFlags_RouteGlobalHigh; // IMPORTANT: This is the default for SetShortcutRouting() but NOT Shortcut() + else + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiInputFlags_RouteMask_)); // Check that only 1 routing flag is used + + if (flags & ImGuiInputFlags_RouteUnlessBgFocused) + if (g.NavWindow == NULL) + return false; + if (flags & ImGuiInputFlags_RouteAlways) + return true; + + const int score = CalcRoutingScore(g.CurrentWindow, owner_id, flags); + if (score == 255) + return false; + + // Submit routing for NEXT frame (assuming score is sufficient) + // FIXME: Could expose a way to use a "serve last" policy for same score resolution (using <= instead of <). + ImGuiKeyRoutingData* routing_data = GetShortcutRoutingData(key_chord); + const ImGuiID routing_id = GetRoutingIdFromOwnerId(owner_id); + //const bool set_route = (flags & ImGuiInputFlags_ServeLast) ? (score <= routing_data->RoutingNextScore) : (score < routing_data->RoutingNextScore); + if (score < routing_data->RoutingNextScore) + { + routing_data->RoutingNext = routing_id; + routing_data->RoutingNextScore = (ImU8)score; + } + + // Return routing state for CURRENT frame + return routing_data->RoutingCurr == routing_id; +} + +// Currently unused by core (but used by tests) +// Note: this cannot be turned into GetShortcutRouting() because we do the owner_id->routing_id translation, name would be more misleading. +bool ImGui::TestShortcutRouting(ImGuiKeyChord key_chord, ImGuiID owner_id) +{ + const ImGuiID routing_id = GetRoutingIdFromOwnerId(owner_id); + ImGuiKeyRoutingData* routing_data = GetShortcutRoutingData(key_chord); // FIXME: Could avoid creating entry. + return routing_data->RoutingCurr == routing_id; +} + +// Note that Dear ImGui doesn't know the meaning/semantic of ImGuiKey from 0..511: they are legacy native keycodes. +// Consider transitioning from 'IsKeyDown(MY_ENGINE_KEY_A)' (<1.87) to IsKeyDown(ImGuiKey_A) (>= 1.87) +bool ImGui::IsKeyDown(ImGuiKey key) +{ + return IsKeyDown(key, ImGuiKeyOwner_Any); +} + +bool ImGui::IsKeyDown(ImGuiKey key, ImGuiID owner_id) +{ + const ImGuiKeyData* key_data = GetKeyData(key); + if (!key_data->Down) + return false; + if (!TestKeyOwner(key, owner_id)) + return false; + return true; +} + +bool ImGui::IsKeyPressed(ImGuiKey key, bool repeat) +{ + return IsKeyPressed(key, ImGuiKeyOwner_Any, repeat ? ImGuiInputFlags_Repeat : ImGuiInputFlags_None); +} + +// Important: unless legacy IsKeyPressed(ImGuiKey, bool repeat=true) which DEFAULT to repeat, this requires EXPLICIT repeat. +bool ImGui::IsKeyPressed(ImGuiKey key, ImGuiID owner_id, ImGuiInputFlags flags) +{ + const ImGuiKeyData* key_data = GetKeyData(key); + if (!key_data->Down) // In theory this should already be encoded as (DownDuration < 0.0f), but testing this facilitates eating mechanism (until we finish work on key ownership) + return false; + const float t = key_data->DownDuration; + if (t < 0.0f) + return false; + IM_ASSERT((flags & ~ImGuiInputFlags_SupportedByIsKeyPressed) == 0); // Passing flags not supported by this function! + + bool pressed = (t == 0.0f); + if (!pressed && ((flags & ImGuiInputFlags_Repeat) != 0)) + { + float repeat_delay, repeat_rate; + GetTypematicRepeatRate(flags, &repeat_delay, &repeat_rate); + pressed = (t > repeat_delay) && GetKeyPressedAmount(key, repeat_delay, repeat_rate) > 0; + } + if (!pressed) + return false; + if (!TestKeyOwner(key, owner_id)) + return false; + return true; +} + +bool ImGui::IsKeyReleased(ImGuiKey key) +{ + return IsKeyReleased(key, ImGuiKeyOwner_Any); +} + +bool ImGui::IsKeyReleased(ImGuiKey key, ImGuiID owner_id) +{ + const ImGuiKeyData* key_data = GetKeyData(key); + if (key_data->DownDurationPrev < 0.0f || key_data->Down) + return false; + if (!TestKeyOwner(key, owner_id)) + return false; + return true; +} + +bool ImGui::IsMouseDown(ImGuiMouseButton button) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + return g.IO.MouseDown[button] && TestKeyOwner(MouseButtonToKey(button), ImGuiKeyOwner_Any); // should be same as IsKeyDown(MouseButtonToKey(button), ImGuiKeyOwner_Any), but this allows legacy code hijacking the io.Mousedown[] array. +} + +bool ImGui::IsMouseDown(ImGuiMouseButton button, ImGuiID owner_id) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + return g.IO.MouseDown[button] && TestKeyOwner(MouseButtonToKey(button), owner_id); // Should be same as IsKeyDown(MouseButtonToKey(button), owner_id), but this allows legacy code hijacking the io.Mousedown[] array. +} + +bool ImGui::IsMouseClicked(ImGuiMouseButton button, bool repeat) +{ + return IsMouseClicked(button, ImGuiKeyOwner_Any, repeat ? ImGuiInputFlags_Repeat : ImGuiInputFlags_None); +} + +bool ImGui::IsMouseClicked(ImGuiMouseButton button, ImGuiID owner_id, ImGuiInputFlags flags) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + if (!g.IO.MouseDown[button]) // In theory this should already be encoded as (DownDuration < 0.0f), but testing this facilitates eating mechanism (until we finish work on key ownership) + return false; + const float t = g.IO.MouseDownDuration[button]; + if (t < 0.0f) + return false; + IM_ASSERT((flags & ~ImGuiInputFlags_SupportedByIsKeyPressed) == 0); // Passing flags not supported by this function! + + const bool repeat = (flags & ImGuiInputFlags_Repeat) != 0; + const bool pressed = (t == 0.0f) || (repeat && t > g.IO.KeyRepeatDelay && CalcTypematicRepeatAmount(t - g.IO.DeltaTime, t, g.IO.KeyRepeatDelay, g.IO.KeyRepeatRate) > 0); + if (!pressed) + return false; + + if (!TestKeyOwner(MouseButtonToKey(button), owner_id)) + return false; + + return true; +} + +bool ImGui::IsMouseReleased(ImGuiMouseButton button) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + return g.IO.MouseReleased[button] && TestKeyOwner(MouseButtonToKey(button), ImGuiKeyOwner_Any); // Should be same as IsKeyReleased(MouseButtonToKey(button), ImGuiKeyOwner_Any) +} + +bool ImGui::IsMouseReleased(ImGuiMouseButton button, ImGuiID owner_id) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + return g.IO.MouseReleased[button] && TestKeyOwner(MouseButtonToKey(button), owner_id); // Should be same as IsKeyReleased(MouseButtonToKey(button), owner_id) +} + +bool ImGui::IsMouseDoubleClicked(ImGuiMouseButton button) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + return g.IO.MouseClickedCount[button] == 2 && TestKeyOwner(MouseButtonToKey(button), ImGuiKeyOwner_Any); +} + +int ImGui::GetMouseClickedCount(ImGuiMouseButton button) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + return g.IO.MouseClickedCount[button]; +} + +// Test if mouse cursor is hovering given rectangle +// NB- Rectangle is clipped by our current clip setting +// NB- Expand the rectangle to be generous on imprecise inputs systems (g.Style.TouchExtraPadding) +bool ImGui::IsMouseHoveringRect(const ImVec2& r_min, const ImVec2& r_max, bool clip) +{ + ImGuiContext& g = *GImGui; + + // Clip + ImRect rect_clipped(r_min, r_max); + if (clip) + rect_clipped.ClipWith(g.CurrentWindow->ClipRect); + + // Expand for touch input + const ImRect rect_for_touch(rect_clipped.Min - g.Style.TouchExtraPadding, rect_clipped.Max + g.Style.TouchExtraPadding); + if (!rect_for_touch.Contains(g.IO.MousePos)) + return false; + return true; +} + +// Return if a mouse click/drag went past the given threshold. Valid to call during the MouseReleased frame. +// [Internal] This doesn't test if the button is pressed +bool ImGui::IsMouseDragPastThreshold(ImGuiMouseButton button, float lock_threshold) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + if (lock_threshold < 0.0f) + lock_threshold = g.IO.MouseDragThreshold; + return g.IO.MouseDragMaxDistanceSqr[button] >= lock_threshold * lock_threshold; +} + +bool ImGui::IsMouseDragging(ImGuiMouseButton button, float lock_threshold) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + if (!g.IO.MouseDown[button]) + return false; + return IsMouseDragPastThreshold(button, lock_threshold); +} + +ImVec2 ImGui::GetMousePos() +{ + ImGuiContext& g = *GImGui; + return g.IO.MousePos; +} + +// NB: prefer to call right after BeginPopup(). At the time Selectable/MenuItem is activated, the popup is already closed! +ImVec2 ImGui::GetMousePosOnOpeningCurrentPopup() +{ + ImGuiContext& g = *GImGui; + if (g.BeginPopupStack.Size > 0) + return g.OpenPopupStack[g.BeginPopupStack.Size - 1].OpenMousePos; + return g.IO.MousePos; +} + +// We typically use ImVec2(-FLT_MAX,-FLT_MAX) to denote an invalid mouse position. +bool ImGui::IsMousePosValid(const ImVec2* mouse_pos) +{ + // The assert is only to silence a false-positive in XCode Static Analysis. + // Because GImGui is not dereferenced in every code path, the static analyzer assume that it may be NULL (which it doesn't for other functions). + IM_ASSERT(GImGui != NULL); + const float MOUSE_INVALID = -256000.0f; + ImVec2 p = mouse_pos ? *mouse_pos : GImGui->IO.MousePos; + return p.x >= MOUSE_INVALID && p.y >= MOUSE_INVALID; +} + +// [WILL OBSOLETE] This was designed for backends, but prefer having backend maintain a mask of held mouse buttons, because upcoming input queue system will make this invalid. +bool ImGui::IsAnyMouseDown() +{ + ImGuiContext& g = *GImGui; + for (int n = 0; n < IM_ARRAYSIZE(g.IO.MouseDown); n++) + if (g.IO.MouseDown[n]) + return true; + return false; +} + +// Return the delta from the initial clicking position while the mouse button is clicked or was just released. +// This is locked and return 0.0f until the mouse moves past a distance threshold at least once. +// NB: This is only valid if IsMousePosValid(). backends in theory should always keep mouse position valid when dragging even outside the client window. +ImVec2 ImGui::GetMouseDragDelta(ImGuiMouseButton button, float lock_threshold) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + if (lock_threshold < 0.0f) + lock_threshold = g.IO.MouseDragThreshold; + if (g.IO.MouseDown[button] || g.IO.MouseReleased[button]) + if (g.IO.MouseDragMaxDistanceSqr[button] >= lock_threshold * lock_threshold) + if (IsMousePosValid(&g.IO.MousePos) && IsMousePosValid(&g.IO.MouseClickedPos[button])) + return g.IO.MousePos - g.IO.MouseClickedPos[button]; + return ImVec2(0.0f, 0.0f); +} + +void ImGui::ResetMouseDragDelta(ImGuiMouseButton button) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + // NB: We don't need to reset g.IO.MouseDragMaxDistanceSqr + g.IO.MouseClickedPos[button] = g.IO.MousePos; +} + +// Get desired mouse cursor shape. +// Important: this is meant to be used by a platform backend, it is reset in ImGui::NewFrame(), +// updated during the frame, and locked in EndFrame()/Render(). +// If you use software rendering by setting io.MouseDrawCursor then Dear ImGui will render those for you +ImGuiMouseCursor ImGui::GetMouseCursor() +{ + ImGuiContext& g = *GImGui; + return g.MouseCursor; +} + +void ImGui::SetMouseCursor(ImGuiMouseCursor cursor_type) +{ + ImGuiContext& g = *GImGui; + g.MouseCursor = cursor_type; +} + +static void UpdateAliasKey(ImGuiKey key, bool v, float analog_value) +{ + IM_ASSERT(ImGui::IsAliasKey(key)); + ImGuiKeyData* key_data = ImGui::GetKeyData(key); + key_data->Down = v; + key_data->AnalogValue = analog_value; +} + +// [Internal] Do not use directly +static ImGuiKeyChord GetMergedModsFromKeys() +{ + ImGuiKeyChord mods = 0; + if (ImGui::IsKeyDown(ImGuiMod_Ctrl)) { mods |= ImGuiMod_Ctrl; } + if (ImGui::IsKeyDown(ImGuiMod_Shift)) { mods |= ImGuiMod_Shift; } + if (ImGui::IsKeyDown(ImGuiMod_Alt)) { mods |= ImGuiMod_Alt; } + if (ImGui::IsKeyDown(ImGuiMod_Super)) { mods |= ImGuiMod_Super; } + return mods; +} + +static void ImGui::UpdateKeyboardInputs() +{ + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + + // Import legacy keys or verify they are not used +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + if (io.BackendUsingLegacyKeyArrays == 0) + { + // Backend used new io.AddKeyEvent() API: Good! Verify that old arrays are never written to externally. + for (int n = 0; n < ImGuiKey_LegacyNativeKey_END; n++) + IM_ASSERT((io.KeysDown[n] == false || IsKeyDown((ImGuiKey)n)) && "Backend needs to either only use io.AddKeyEvent(), either only fill legacy io.KeysDown[] + io.KeyMap[]. Not both!"); + } + else + { + if (g.FrameCount == 0) + for (int n = ImGuiKey_LegacyNativeKey_BEGIN; n < ImGuiKey_LegacyNativeKey_END; n++) + IM_ASSERT(g.IO.KeyMap[n] == -1 && "Backend is not allowed to write to io.KeyMap[0..511]!"); + + // Build reverse KeyMap (Named -> Legacy) + for (int n = ImGuiKey_NamedKey_BEGIN; n < ImGuiKey_NamedKey_END; n++) + if (io.KeyMap[n] != -1) + { + IM_ASSERT(IsLegacyKey((ImGuiKey)io.KeyMap[n])); + io.KeyMap[io.KeyMap[n]] = n; + } + + // Import legacy keys into new ones + for (int n = ImGuiKey_LegacyNativeKey_BEGIN; n < ImGuiKey_LegacyNativeKey_END; n++) + if (io.KeysDown[n] || io.BackendUsingLegacyKeyArrays == 1) + { + const ImGuiKey key = (ImGuiKey)(io.KeyMap[n] != -1 ? io.KeyMap[n] : n); + IM_ASSERT(io.KeyMap[n] == -1 || IsNamedKey(key)); + io.KeysData[key].Down = io.KeysDown[n]; + if (key != n) + io.KeysDown[key] = io.KeysDown[n]; // Allow legacy code using io.KeysDown[GetKeyIndex()] with old backends + io.BackendUsingLegacyKeyArrays = 1; + } + if (io.BackendUsingLegacyKeyArrays == 1) + { + GetKeyData(ImGuiMod_Ctrl)->Down = io.KeyCtrl; + GetKeyData(ImGuiMod_Shift)->Down = io.KeyShift; + GetKeyData(ImGuiMod_Alt)->Down = io.KeyAlt; + GetKeyData(ImGuiMod_Super)->Down = io.KeySuper; + } + } + +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + const bool nav_gamepad_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) != 0 && (io.BackendFlags & ImGuiBackendFlags_HasGamepad) != 0; + if (io.BackendUsingLegacyNavInputArray && nav_gamepad_active) + { + #define MAP_LEGACY_NAV_INPUT_TO_KEY1(_KEY, _NAV1) do { io.KeysData[_KEY].Down = (io.NavInputs[_NAV1] > 0.0f); io.KeysData[_KEY].AnalogValue = io.NavInputs[_NAV1]; } while (0) + #define MAP_LEGACY_NAV_INPUT_TO_KEY2(_KEY, _NAV1, _NAV2) do { io.KeysData[_KEY].Down = (io.NavInputs[_NAV1] > 0.0f) || (io.NavInputs[_NAV2] > 0.0f); io.KeysData[_KEY].AnalogValue = ImMax(io.NavInputs[_NAV1], io.NavInputs[_NAV2]); } while (0) + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadFaceDown, ImGuiNavInput_Activate); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadFaceRight, ImGuiNavInput_Cancel); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadFaceLeft, ImGuiNavInput_Menu); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadFaceUp, ImGuiNavInput_Input); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadDpadLeft, ImGuiNavInput_DpadLeft); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadDpadRight, ImGuiNavInput_DpadRight); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadDpadUp, ImGuiNavInput_DpadUp); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadDpadDown, ImGuiNavInput_DpadDown); + MAP_LEGACY_NAV_INPUT_TO_KEY2(ImGuiKey_GamepadL1, ImGuiNavInput_FocusPrev, ImGuiNavInput_TweakSlow); + MAP_LEGACY_NAV_INPUT_TO_KEY2(ImGuiKey_GamepadR1, ImGuiNavInput_FocusNext, ImGuiNavInput_TweakFast); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadLStickLeft, ImGuiNavInput_LStickLeft); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadLStickRight, ImGuiNavInput_LStickRight); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadLStickUp, ImGuiNavInput_LStickUp); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadLStickDown, ImGuiNavInput_LStickDown); + #undef NAV_MAP_KEY + } +#endif +#endif + + // Update aliases + for (int n = 0; n < ImGuiMouseButton_COUNT; n++) + UpdateAliasKey(MouseButtonToKey(n), io.MouseDown[n], io.MouseDown[n] ? 1.0f : 0.0f); + UpdateAliasKey(ImGuiKey_MouseWheelX, io.MouseWheelH != 0.0f, io.MouseWheelH); + UpdateAliasKey(ImGuiKey_MouseWheelY, io.MouseWheel != 0.0f, io.MouseWheel); + + // Synchronize io.KeyMods and io.KeyXXX values. + // - New backends (1.87+): send io.AddKeyEvent(ImGuiMod_XXX) -> -> (here) deriving io.KeyMods + io.KeyXXX from key array. + // - Legacy backends: set io.KeyXXX bools -> (above) set key array from io.KeyXXX -> (here) deriving io.KeyMods + io.KeyXXX from key array. + // So with legacy backends the 4 values will do a unnecessary back-and-forth but it makes the code simpler and future facing. + io.KeyMods = GetMergedModsFromKeys(); + io.KeyCtrl = (io.KeyMods & ImGuiMod_Ctrl) != 0; + io.KeyShift = (io.KeyMods & ImGuiMod_Shift) != 0; + io.KeyAlt = (io.KeyMods & ImGuiMod_Alt) != 0; + io.KeySuper = (io.KeyMods & ImGuiMod_Super) != 0; + + // Clear gamepad data if disabled + if ((io.BackendFlags & ImGuiBackendFlags_HasGamepad) == 0) + for (int i = ImGuiKey_Gamepad_BEGIN; i < ImGuiKey_Gamepad_END; i++) + { + io.KeysData[i - ImGuiKey_KeysData_OFFSET].Down = false; + io.KeysData[i - ImGuiKey_KeysData_OFFSET].AnalogValue = 0.0f; + } + + // Update keys + for (int i = 0; i < ImGuiKey_KeysData_SIZE; i++) + { + ImGuiKeyData* key_data = &io.KeysData[i]; + key_data->DownDurationPrev = key_data->DownDuration; + key_data->DownDuration = key_data->Down ? (key_data->DownDuration < 0.0f ? 0.0f : key_data->DownDuration + io.DeltaTime) : -1.0f; + } + + // Update keys/input owner (named keys only): one entry per key + for (ImGuiKey key = ImGuiKey_NamedKey_BEGIN; key < ImGuiKey_NamedKey_END; key = (ImGuiKey)(key + 1)) + { + ImGuiKeyData* key_data = &io.KeysData[key - ImGuiKey_KeysData_OFFSET]; + ImGuiKeyOwnerData* owner_data = &g.KeysOwnerData[key - ImGuiKey_NamedKey_BEGIN]; + owner_data->OwnerCurr = owner_data->OwnerNext; + if (!key_data->Down) // Important: ownership is released on the frame after a release. Ensure a 'MouseDown -> CloseWindow -> MouseUp' chain doesn't lead to someone else seeing the MouseUp. + owner_data->OwnerNext = ImGuiKeyOwner_None; + owner_data->LockThisFrame = owner_data->LockUntilRelease = owner_data->LockUntilRelease && key_data->Down; // Clear LockUntilRelease when key is not Down anymore + } + + UpdateKeyRoutingTable(&g.KeysRoutingTable); +} + +static void ImGui::UpdateMouseInputs() +{ + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + + // Mouse Wheel swapping flag + // As a standard behavior holding SHIFT while using Vertical Mouse Wheel triggers Horizontal scroll instead + // - We avoid doing it on OSX as it the OS input layer handles this already. + // - FIXME: However this means when running on OSX over Emscripten, Shift+WheelY will incur two swapping (1 in OS, 1 here), canceling the feature. + // - FIXME: When we can distinguish e.g. touchpad scroll events from mouse ones, we'll set this accordingly based on input source. + io.MouseWheelRequestAxisSwap = io.KeyShift && !io.ConfigMacOSXBehaviors; + + // Round mouse position to avoid spreading non-rounded position (e.g. UpdateManualResize doesn't support them well) + if (IsMousePosValid(&io.MousePos)) + io.MousePos = g.MouseLastValidPos = ImFloorSigned(io.MousePos); + + // If mouse just appeared or disappeared (usually denoted by -FLT_MAX components) we cancel out movement in MouseDelta + if (IsMousePosValid(&io.MousePos) && IsMousePosValid(&io.MousePosPrev)) + io.MouseDelta = io.MousePos - io.MousePosPrev; + else + io.MouseDelta = ImVec2(0.0f, 0.0f); + + // Update stationary timer. + // FIXME: May need to rework again to have some tolerance for occasional small movement, while being functional on high-framerates. + const float mouse_stationary_threshold = (io.MouseSource == ImGuiMouseSource_Mouse) ? 2.0f : 3.0f; // Slightly higher threshold for ImGuiMouseSource_TouchScreen/ImGuiMouseSource_Pen, may need rework. + const bool mouse_stationary = (ImLengthSqr(io.MouseDelta) <= mouse_stationary_threshold * mouse_stationary_threshold); + g.MouseStationaryTimer = mouse_stationary ? (g.MouseStationaryTimer + io.DeltaTime) : 0.0f; + //IMGUI_DEBUG_LOG("%.4f\n", g.MouseStationaryTimer); + + // If mouse moved we re-enable mouse hovering in case it was disabled by gamepad/keyboard. In theory should use a >0.0f threshold but would need to reset in everywhere we set this to true. + if (io.MouseDelta.x != 0.0f || io.MouseDelta.y != 0.0f) + g.NavDisableMouseHover = false; + + io.MousePosPrev = io.MousePos; + for (int i = 0; i < IM_ARRAYSIZE(io.MouseDown); i++) + { + io.MouseClicked[i] = io.MouseDown[i] && io.MouseDownDuration[i] < 0.0f; + io.MouseClickedCount[i] = 0; // Will be filled below + io.MouseReleased[i] = !io.MouseDown[i] && io.MouseDownDuration[i] >= 0.0f; + io.MouseDownDurationPrev[i] = io.MouseDownDuration[i]; + io.MouseDownDuration[i] = io.MouseDown[i] ? (io.MouseDownDuration[i] < 0.0f ? 0.0f : io.MouseDownDuration[i] + io.DeltaTime) : -1.0f; + if (io.MouseClicked[i]) + { + bool is_repeated_click = false; + if ((float)(g.Time - io.MouseClickedTime[i]) < io.MouseDoubleClickTime) + { + ImVec2 delta_from_click_pos = IsMousePosValid(&io.MousePos) ? (io.MousePos - io.MouseClickedPos[i]) : ImVec2(0.0f, 0.0f); + if (ImLengthSqr(delta_from_click_pos) < io.MouseDoubleClickMaxDist * io.MouseDoubleClickMaxDist) + is_repeated_click = true; + } + if (is_repeated_click) + io.MouseClickedLastCount[i]++; + else + io.MouseClickedLastCount[i] = 1; + io.MouseClickedTime[i] = g.Time; + io.MouseClickedPos[i] = io.MousePos; + io.MouseClickedCount[i] = io.MouseClickedLastCount[i]; + io.MouseDragMaxDistanceSqr[i] = 0.0f; + } + else if (io.MouseDown[i]) + { + // Maintain the maximum distance we reaching from the initial click position, which is used with dragging threshold + float delta_sqr_click_pos = IsMousePosValid(&io.MousePos) ? ImLengthSqr(io.MousePos - io.MouseClickedPos[i]) : 0.0f; + io.MouseDragMaxDistanceSqr[i] = ImMax(io.MouseDragMaxDistanceSqr[i], delta_sqr_click_pos); + } + + // We provide io.MouseDoubleClicked[] as a legacy service + io.MouseDoubleClicked[i] = (io.MouseClickedCount[i] == 2); + + // Clicking any mouse button reactivate mouse hovering which may have been deactivated by gamepad/keyboard navigation + if (io.MouseClicked[i]) + g.NavDisableMouseHover = false; + } +} + +static void LockWheelingWindow(ImGuiWindow* window, float wheel_amount) +{ + ImGuiContext& g = *GImGui; + if (window) + g.WheelingWindowReleaseTimer = ImMin(g.WheelingWindowReleaseTimer + ImAbs(wheel_amount) * WINDOWS_MOUSE_WHEEL_SCROLL_LOCK_TIMER, WINDOWS_MOUSE_WHEEL_SCROLL_LOCK_TIMER); + else + g.WheelingWindowReleaseTimer = 0.0f; + if (g.WheelingWindow == window) + return; + IMGUI_DEBUG_LOG_IO("[io] LockWheelingWindow() \"%s\"\n", window ? window->Name : "NULL"); + g.WheelingWindow = window; + g.WheelingWindowRefMousePos = g.IO.MousePos; + if (window == NULL) + { + g.WheelingWindowStartFrame = -1; + g.WheelingAxisAvg = ImVec2(0.0f, 0.0f); + } +} + +static ImGuiWindow* FindBestWheelingWindow(const ImVec2& wheel) +{ + // For each axis, find window in the hierarchy that may want to use scrolling + ImGuiContext& g = *GImGui; + ImGuiWindow* windows[2] = { NULL, NULL }; + for (int axis = 0; axis < 2; axis++) + if (wheel[axis] != 0.0f) + for (ImGuiWindow* window = windows[axis] = g.HoveredWindow; window->Flags & ImGuiWindowFlags_ChildWindow; window = windows[axis] = window->ParentWindow) + { + // Bubble up into parent window if: + // - a child window doesn't allow any scrolling. + // - a child window has the ImGuiWindowFlags_NoScrollWithMouse flag. + //// - a child window doesn't need scrolling because it is already at the edge for the direction we are going in (FIXME-WIP) + const bool has_scrolling = (window->ScrollMax[axis] != 0.0f); + const bool inputs_disabled = (window->Flags & ImGuiWindowFlags_NoScrollWithMouse) && !(window->Flags & ImGuiWindowFlags_NoMouseInputs); + //const bool scrolling_past_limits = (wheel_v < 0.0f) ? (window->Scroll[axis] <= 0.0f) : (window->Scroll[axis] >= window->ScrollMax[axis]); + if (has_scrolling && !inputs_disabled) // && !scrolling_past_limits) + break; // select this window + } + if (windows[0] == NULL && windows[1] == NULL) + return NULL; + + // If there's only one window or only one axis then there's no ambiguity + if (windows[0] == windows[1] || windows[0] == NULL || windows[1] == NULL) + return windows[1] ? windows[1] : windows[0]; + + // If candidate are different windows we need to decide which one to prioritize + // - First frame: only find a winner if one axis is zero. + // - Subsequent frames: only find a winner when one is more than the other. + if (g.WheelingWindowStartFrame == -1) + g.WheelingWindowStartFrame = g.FrameCount; + if ((g.WheelingWindowStartFrame == g.FrameCount && wheel.x != 0.0f && wheel.y != 0.0f) || (g.WheelingAxisAvg.x == g.WheelingAxisAvg.y)) + { + g.WheelingWindowWheelRemainder = wheel; + return NULL; + } + return (g.WheelingAxisAvg.x > g.WheelingAxisAvg.y) ? windows[0] : windows[1]; +} + +// Called by NewFrame() +void ImGui::UpdateMouseWheel() +{ + // Reset the locked window if we move the mouse or after the timer elapses. + // FIXME: Ideally we could refactor to have one timer for "changing window w/ same axis" and a shorter timer for "changing window or axis w/ other axis" (#3795) + ImGuiContext& g = *GImGui; + if (g.WheelingWindow != NULL) + { + g.WheelingWindowReleaseTimer -= g.IO.DeltaTime; + if (IsMousePosValid() && ImLengthSqr(g.IO.MousePos - g.WheelingWindowRefMousePos) > g.IO.MouseDragThreshold * g.IO.MouseDragThreshold) + g.WheelingWindowReleaseTimer = 0.0f; + if (g.WheelingWindowReleaseTimer <= 0.0f) + LockWheelingWindow(NULL, 0.0f); + } + + ImVec2 wheel; + wheel.x = TestKeyOwner(ImGuiKey_MouseWheelX, ImGuiKeyOwner_None) ? g.IO.MouseWheelH : 0.0f; + wheel.y = TestKeyOwner(ImGuiKey_MouseWheelY, ImGuiKeyOwner_None) ? g.IO.MouseWheel : 0.0f; + + //IMGUI_DEBUG_LOG("MouseWheel X:%.3f Y:%.3f\n", wheel_x, wheel_y); + ImGuiWindow* mouse_window = g.WheelingWindow ? g.WheelingWindow : g.HoveredWindow; + if (!mouse_window || mouse_window->Collapsed) + return; + + // Zoom / Scale window + // FIXME-OBSOLETE: This is an old feature, it still works but pretty much nobody is using it and may be best redesigned. + if (wheel.y != 0.0f && g.IO.KeyCtrl && g.IO.FontAllowUserScaling) + { + LockWheelingWindow(mouse_window, wheel.y); + ImGuiWindow* window = mouse_window; + const float new_font_scale = ImClamp(window->FontWindowScale + g.IO.MouseWheel * 0.10f, 0.50f, 2.50f); + const float scale = new_font_scale / window->FontWindowScale; + window->FontWindowScale = new_font_scale; + if (window == window->RootWindow) + { + const ImVec2 offset = window->Size * (1.0f - scale) * (g.IO.MousePos - window->Pos) / window->Size; + SetWindowPos(window, window->Pos + offset, 0); + window->Size = ImFloor(window->Size * scale); + window->SizeFull = ImFloor(window->SizeFull * scale); + } + return; + } + if (g.IO.KeyCtrl) + return; + + // Mouse wheel scrolling + // Read about io.MouseWheelRequestAxisSwap and its issue on Mac+Emscripten in UpdateMouseInputs() + if (g.IO.MouseWheelRequestAxisSwap) + wheel = ImVec2(wheel.y, 0.0f); + + // Maintain a rough average of moving magnitude on both axises + // FIXME: should by based on wall clock time rather than frame-counter + g.WheelingAxisAvg.x = ImExponentialMovingAverage(g.WheelingAxisAvg.x, ImAbs(wheel.x), 30); + g.WheelingAxisAvg.y = ImExponentialMovingAverage(g.WheelingAxisAvg.y, ImAbs(wheel.y), 30); + + // In the rare situation where FindBestWheelingWindow() had to defer first frame of wheeling due to ambiguous main axis, reinject it now. + wheel += g.WheelingWindowWheelRemainder; + g.WheelingWindowWheelRemainder = ImVec2(0.0f, 0.0f); + if (wheel.x == 0.0f && wheel.y == 0.0f) + return; + + // Mouse wheel scrolling: find target and apply + // - don't renew lock if axis doesn't apply on the window. + // - select a main axis when both axises are being moved. + if (ImGuiWindow* window = (g.WheelingWindow ? g.WheelingWindow : FindBestWheelingWindow(wheel))) + if (!(window->Flags & ImGuiWindowFlags_NoScrollWithMouse) && !(window->Flags & ImGuiWindowFlags_NoMouseInputs)) + { + bool do_scroll[2] = { wheel.x != 0.0f && window->ScrollMax.x != 0.0f, wheel.y != 0.0f && window->ScrollMax.y != 0.0f }; + if (do_scroll[ImGuiAxis_X] && do_scroll[ImGuiAxis_Y]) + do_scroll[(g.WheelingAxisAvg.x > g.WheelingAxisAvg.y) ? ImGuiAxis_Y : ImGuiAxis_X] = false; + if (do_scroll[ImGuiAxis_X]) + { + LockWheelingWindow(window, wheel.x); + float max_step = window->InnerRect.GetWidth() * 0.67f; + float scroll_step = ImFloor(ImMin(2 * window->CalcFontSize(), max_step)); + SetScrollX(window, window->Scroll.x - wheel.x * scroll_step); + } + if (do_scroll[ImGuiAxis_Y]) + { + LockWheelingWindow(window, wheel.y); + float max_step = window->InnerRect.GetHeight() * 0.67f; + float scroll_step = ImFloor(ImMin(5 * window->CalcFontSize(), max_step)); + SetScrollY(window, window->Scroll.y - wheel.y * scroll_step); + } + } +} + +void ImGui::SetNextFrameWantCaptureKeyboard(bool want_capture_keyboard) +{ + ImGuiContext& g = *GImGui; + g.WantCaptureKeyboardNextFrame = want_capture_keyboard ? 1 : 0; +} + +void ImGui::SetNextFrameWantCaptureMouse(bool want_capture_mouse) +{ + ImGuiContext& g = *GImGui; + g.WantCaptureMouseNextFrame = want_capture_mouse ? 1 : 0; +} + +#ifndef IMGUI_DISABLE_DEBUG_TOOLS +static const char* GetInputSourceName(ImGuiInputSource source) +{ + const char* input_source_names[] = { "None", "Mouse", "Keyboard", "Gamepad", "Clipboard" }; + IM_ASSERT(IM_ARRAYSIZE(input_source_names) == ImGuiInputSource_COUNT && source >= 0 && source < ImGuiInputSource_COUNT); + return input_source_names[source]; +} +static const char* GetMouseSourceName(ImGuiMouseSource source) +{ + const char* mouse_source_names[] = { "Mouse", "TouchScreen", "Pen" }; + IM_ASSERT(IM_ARRAYSIZE(mouse_source_names) == ImGuiMouseSource_COUNT && source >= 0 && source < ImGuiMouseSource_COUNT); + return mouse_source_names[source]; +} +static void DebugPrintInputEvent(const char* prefix, const ImGuiInputEvent* e) +{ + ImGuiContext& g = *GImGui; + if (e->Type == ImGuiInputEventType_MousePos) { if (e->MousePos.PosX == -FLT_MAX && e->MousePos.PosY == -FLT_MAX) IMGUI_DEBUG_LOG_IO("[io] %s: MousePos (-FLT_MAX, -FLT_MAX)\n", prefix); else IMGUI_DEBUG_LOG_IO("[io] %s: MousePos (%.1f, %.1f) (%s)\n", prefix, e->MousePos.PosX, e->MousePos.PosY, GetMouseSourceName(e->MousePos.MouseSource)); return; } + if (e->Type == ImGuiInputEventType_MouseButton) { IMGUI_DEBUG_LOG_IO("[io] %s: MouseButton %d %s (%s)\n", prefix, e->MouseButton.Button, e->MouseButton.Down ? "Down" : "Up", GetMouseSourceName(e->MouseButton.MouseSource)); return; } + if (e->Type == ImGuiInputEventType_MouseWheel) { IMGUI_DEBUG_LOG_IO("[io] %s: MouseWheel (%.3f, %.3f) (%s)\n", prefix, e->MouseWheel.WheelX, e->MouseWheel.WheelY, GetMouseSourceName(e->MouseWheel.MouseSource)); return; } + if (e->Type == ImGuiInputEventType_Key) { IMGUI_DEBUG_LOG_IO("[io] %s: Key \"%s\" %s\n", prefix, ImGui::GetKeyName(e->Key.Key), e->Key.Down ? "Down" : "Up"); return; } + if (e->Type == ImGuiInputEventType_Text) { IMGUI_DEBUG_LOG_IO("[io] %s: Text: %c (U+%08X)\n", prefix, e->Text.Char, e->Text.Char); return; } + if (e->Type == ImGuiInputEventType_Focus) { IMGUI_DEBUG_LOG_IO("[io] %s: AppFocused %d\n", prefix, e->AppFocused.Focused); return; } +} +#endif + +// Process input queue +// We always call this with the value of 'bool g.IO.ConfigInputTrickleEventQueue'. +// - trickle_fast_inputs = false : process all events, turn into flattened input state (e.g. successive down/up/down/up will be lost) +// - trickle_fast_inputs = true : process as many events as possible (successive down/up/down/up will be trickled over several frames so nothing is lost) (new feature in 1.87) +void ImGui::UpdateInputEvents(bool trickle_fast_inputs) +{ + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + + // Only trickle chars<>key when working with InputText() + // FIXME: InputText() could parse event trail? + // FIXME: Could specialize chars<>keys trickling rules for control keys (those not typically associated to characters) + const bool trickle_interleaved_keys_and_text = (trickle_fast_inputs && g.WantTextInputNextFrame == 1); + + bool mouse_moved = false, mouse_wheeled = false, key_changed = false, text_inputted = false; + int mouse_button_changed = 0x00; + ImBitArray key_changed_mask; + + int event_n = 0; + for (; event_n < g.InputEventsQueue.Size; event_n++) + { + ImGuiInputEvent* e = &g.InputEventsQueue[event_n]; + if (e->Type == ImGuiInputEventType_MousePos) + { + // Trickling Rule: Stop processing queued events if we already handled a mouse button change + ImVec2 event_pos(e->MousePos.PosX, e->MousePos.PosY); + if (trickle_fast_inputs && (mouse_button_changed != 0 || mouse_wheeled || key_changed || text_inputted)) + break; + io.MousePos = event_pos; + io.MouseSource = e->MousePos.MouseSource; + mouse_moved = true; + } + else if (e->Type == ImGuiInputEventType_MouseButton) + { + // Trickling Rule: Stop processing queued events if we got multiple action on the same button + const ImGuiMouseButton button = e->MouseButton.Button; + IM_ASSERT(button >= 0 && button < ImGuiMouseButton_COUNT); + if (trickle_fast_inputs && ((mouse_button_changed & (1 << button)) || mouse_wheeled)) + break; + if (trickle_fast_inputs && e->MouseButton.MouseSource == ImGuiMouseSource_TouchScreen && mouse_moved) // #2702: TouchScreen have no initial hover. + break; + io.MouseDown[button] = e->MouseButton.Down; + io.MouseSource = e->MouseButton.MouseSource; + mouse_button_changed |= (1 << button); + } + else if (e->Type == ImGuiInputEventType_MouseWheel) + { + // Trickling Rule: Stop processing queued events if we got multiple action on the event + if (trickle_fast_inputs && (mouse_moved || mouse_button_changed != 0)) + break; + io.MouseWheelH += e->MouseWheel.WheelX; + io.MouseWheel += e->MouseWheel.WheelY; + io.MouseSource = e->MouseWheel.MouseSource; + mouse_wheeled = true; + } + else if (e->Type == ImGuiInputEventType_Key) + { + // Trickling Rule: Stop processing queued events if we got multiple action on the same button + ImGuiKey key = e->Key.Key; + IM_ASSERT(key != ImGuiKey_None); + ImGuiKeyData* key_data = GetKeyData(key); + const int key_data_index = (int)(key_data - g.IO.KeysData); + if (trickle_fast_inputs && key_data->Down != e->Key.Down && (key_changed_mask.TestBit(key_data_index) || text_inputted || mouse_button_changed != 0)) + break; + key_data->Down = e->Key.Down; + key_data->AnalogValue = e->Key.AnalogValue; + key_changed = true; + key_changed_mask.SetBit(key_data_index); + + // Allow legacy code using io.KeysDown[GetKeyIndex()] with new backends +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + io.KeysDown[key_data_index] = key_data->Down; + if (io.KeyMap[key_data_index] != -1) + io.KeysDown[io.KeyMap[key_data_index]] = key_data->Down; +#endif + } + else if (e->Type == ImGuiInputEventType_Text) + { + // Trickling Rule: Stop processing queued events if keys/mouse have been interacted with + if (trickle_fast_inputs && ((key_changed && trickle_interleaved_keys_and_text) || mouse_button_changed != 0 || mouse_moved || mouse_wheeled)) + break; + unsigned int c = e->Text.Char; + io.InputQueueCharacters.push_back(c <= IM_UNICODE_CODEPOINT_MAX ? (ImWchar)c : IM_UNICODE_CODEPOINT_INVALID); + if (trickle_interleaved_keys_and_text) + text_inputted = true; + } + else if (e->Type == ImGuiInputEventType_Focus) + { + // We intentionally overwrite this and process in NewFrame(), in order to give a chance + // to multi-viewports backends to queue AddFocusEvent(false) + AddFocusEvent(true) in same frame. + const bool focus_lost = !e->AppFocused.Focused; + io.AppFocusLost = focus_lost; + } + else + { + IM_ASSERT(0 && "Unknown event!"); + } + } + + // Record trail (for domain-specific applications wanting to access a precise trail) + //if (event_n != 0) IMGUI_DEBUG_LOG_IO("Processed: %d / Remaining: %d\n", event_n, g.InputEventsQueue.Size - event_n); + for (int n = 0; n < event_n; n++) + g.InputEventsTrail.push_back(g.InputEventsQueue[n]); + + // [DEBUG] +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + if (event_n != 0 && (g.DebugLogFlags & ImGuiDebugLogFlags_EventIO)) + for (int n = 0; n < g.InputEventsQueue.Size; n++) + DebugPrintInputEvent(n < event_n ? "Processed" : "Remaining", &g.InputEventsQueue[n]); +#endif + + // Remaining events will be processed on the next frame + if (event_n == g.InputEventsQueue.Size) + g.InputEventsQueue.resize(0); + else + g.InputEventsQueue.erase(g.InputEventsQueue.Data, g.InputEventsQueue.Data + event_n); + + // Clear buttons state when focus is lost + // - this is useful so e.g. releasing Alt after focus loss on Alt-Tab doesn't trigger the Alt menu toggle. + // - we clear in EndFrame() and not now in order allow application/user code polling this flag + // (e.g. custom backend may want to clear additional data, custom widgets may want to react with a "canceling" event). + if (g.IO.AppFocusLost) + g.IO.ClearInputKeys(); +} + +ImGuiID ImGui::GetKeyOwner(ImGuiKey key) +{ + if (!IsNamedKeyOrModKey(key)) + return ImGuiKeyOwner_None; + + ImGuiContext& g = *GImGui; + ImGuiKeyOwnerData* owner_data = GetKeyOwnerData(&g, key); + ImGuiID owner_id = owner_data->OwnerCurr; + + if (g.ActiveIdUsingAllKeyboardKeys && owner_id != g.ActiveId && owner_id != ImGuiKeyOwner_Any) + if (key >= ImGuiKey_Keyboard_BEGIN && key < ImGuiKey_Keyboard_END) + return ImGuiKeyOwner_None; + + return owner_id; +} + +// TestKeyOwner(..., ID) : (owner == None || owner == ID) +// TestKeyOwner(..., None) : (owner == None) +// TestKeyOwner(..., Any) : no owner test +// All paths are also testing for key not being locked, for the rare cases that key have been locked with using ImGuiInputFlags_LockXXX flags. +bool ImGui::TestKeyOwner(ImGuiKey key, ImGuiID owner_id) +{ + if (!IsNamedKeyOrModKey(key)) + return true; + + ImGuiContext& g = *GImGui; + if (g.ActiveIdUsingAllKeyboardKeys && owner_id != g.ActiveId && owner_id != ImGuiKeyOwner_Any) + if (key >= ImGuiKey_Keyboard_BEGIN && key < ImGuiKey_Keyboard_END) + return false; + + ImGuiKeyOwnerData* owner_data = GetKeyOwnerData(&g, key); + if (owner_id == ImGuiKeyOwner_Any) + return (owner_data->LockThisFrame == false); + + // Note: SetKeyOwner() sets OwnerCurr. It is not strictly required for most mouse routing overlap (because of ActiveId/HoveredId + // are acting as filter before this has a chance to filter), but sane as soon as user tries to look into things. + // Setting OwnerCurr in SetKeyOwner() is more consistent than testing OwnerNext here: would be inconsistent with getter and other functions. + if (owner_data->OwnerCurr != owner_id) + { + if (owner_data->LockThisFrame) + return false; + if (owner_data->OwnerCurr != ImGuiKeyOwner_None) + return false; + } + + return true; +} + +// _LockXXX flags are useful to lock keys away from code which is not input-owner aware. +// When using _LockXXX flags, you can use ImGuiKeyOwner_Any to lock keys from everyone. +// - SetKeyOwner(..., None) : clears owner +// - SetKeyOwner(..., Any, !Lock) : illegal (assert) +// - SetKeyOwner(..., Any or None, Lock) : set lock +void ImGui::SetKeyOwner(ImGuiKey key, ImGuiID owner_id, ImGuiInputFlags flags) +{ + IM_ASSERT(IsNamedKeyOrModKey(key) && (owner_id != ImGuiKeyOwner_Any || (flags & (ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease)))); // Can only use _Any with _LockXXX flags (to eat a key away without an ID to retrieve it) + IM_ASSERT((flags & ~ImGuiInputFlags_SupportedBySetKeyOwner) == 0); // Passing flags not supported by this function! + + ImGuiContext& g = *GImGui; + ImGuiKeyOwnerData* owner_data = GetKeyOwnerData(&g, key); + owner_data->OwnerCurr = owner_data->OwnerNext = owner_id; + + // We cannot lock by default as it would likely break lots of legacy code. + // In the case of using LockUntilRelease while key is not down we still lock during the frame (no key_data->Down test) + owner_data->LockUntilRelease = (flags & ImGuiInputFlags_LockUntilRelease) != 0; + owner_data->LockThisFrame = (flags & ImGuiInputFlags_LockThisFrame) != 0 || (owner_data->LockUntilRelease); +} + +// Rarely used helper +void ImGui::SetKeyOwnersForKeyChord(ImGuiKeyChord key_chord, ImGuiID owner_id, ImGuiInputFlags flags) +{ + if (key_chord & ImGuiMod_Ctrl) { SetKeyOwner(ImGuiMod_Ctrl, owner_id, flags); } + if (key_chord & ImGuiMod_Shift) { SetKeyOwner(ImGuiMod_Shift, owner_id, flags); } + if (key_chord & ImGuiMod_Alt) { SetKeyOwner(ImGuiMod_Alt, owner_id, flags); } + if (key_chord & ImGuiMod_Super) { SetKeyOwner(ImGuiMod_Super, owner_id, flags); } + if (key_chord & ImGuiMod_Shortcut) { SetKeyOwner(ImGuiMod_Shortcut, owner_id, flags); } + if (key_chord & ~ImGuiMod_Mask_) { SetKeyOwner((ImGuiKey)(key_chord & ~ImGuiMod_Mask_), owner_id, flags); } +} + +// This is more or less equivalent to: +// if (IsItemHovered() || IsItemActive()) +// SetKeyOwner(key, GetItemID()); +// Extensive uses of that (e.g. many calls for a single item) may want to manually perform the tests once and then call SetKeyOwner() multiple times. +// More advanced usage scenarios may want to call SetKeyOwner() manually based on different condition. +// Worth noting is that only one item can be hovered and only one item can be active, therefore this usage pattern doesn't need to bother with routing and priority. +void ImGui::SetItemKeyOwner(ImGuiKey key, ImGuiInputFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiID id = g.LastItemData.ID; + if (id == 0 || (g.HoveredId != id && g.ActiveId != id)) + return; + if ((flags & ImGuiInputFlags_CondMask_) == 0) + flags |= ImGuiInputFlags_CondDefault_; + if ((g.HoveredId == id && (flags & ImGuiInputFlags_CondHovered)) || (g.ActiveId == id && (flags & ImGuiInputFlags_CondActive))) + { + IM_ASSERT((flags & ~ImGuiInputFlags_SupportedBySetItemKeyOwner) == 0); // Passing flags not supported by this function! + SetKeyOwner(key, id, flags & ~ImGuiInputFlags_CondMask_); + } +} + +bool ImGui::Shortcut(ImGuiKeyChord key_chord, ImGuiID owner_id, ImGuiInputFlags flags) +{ + ImGuiContext& g = *GImGui; + + // When using (owner_id == 0/Any): SetShortcutRouting() will use CurrentFocusScopeId and filter with this, so IsKeyPressed() is fine with he 0/Any. + if ((flags & ImGuiInputFlags_RouteMask_) == 0) + flags |= ImGuiInputFlags_RouteFocused; + if (!SetShortcutRouting(key_chord, owner_id, flags)) + return false; + + if (key_chord & ImGuiMod_Shortcut) + key_chord = ConvertShortcutMod(key_chord); + ImGuiKey mods = (ImGuiKey)(key_chord & ImGuiMod_Mask_); + if (g.IO.KeyMods != mods) + return false; + + // Special storage location for mods + ImGuiKey key = (ImGuiKey)(key_chord & ~ImGuiMod_Mask_); + if (key == ImGuiKey_None) + key = ConvertSingleModFlagToKey(&g, mods); + + if (!IsKeyPressed(key, owner_id, (flags & (ImGuiInputFlags_Repeat | (ImGuiInputFlags)ImGuiInputFlags_RepeatRateMask_)))) + return false; + IM_ASSERT((flags & ~ImGuiInputFlags_SupportedByShortcut) == 0); // Passing flags not supported by this function! + + return true; +} + + +//----------------------------------------------------------------------------- +// [SECTION] ERROR CHECKING +//----------------------------------------------------------------------------- + +// Helper function to verify ABI compatibility between caller code and compiled version of Dear ImGui. +// Verify that the type sizes are matching between the calling file's compilation unit and imgui.cpp's compilation unit +// If this triggers you have an issue: +// - Most commonly: mismatched headers and compiled code version. +// - Or: mismatched configuration #define, compilation settings, packing pragma etc. +// The configuration settings mentioned in imconfig.h must be set for all compilation units involved with Dear ImGui, +// which is way it is required you put them in your imconfig file (and not just before including imgui.h). +// Otherwise it is possible that different compilation units would see different structure layout +bool ImGui::DebugCheckVersionAndDataLayout(const char* version, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_vert, size_t sz_idx) +{ + bool error = false; + if (strcmp(version, IMGUI_VERSION) != 0) { error = true; IM_ASSERT(strcmp(version, IMGUI_VERSION) == 0 && "Mismatched version string!"); } + if (sz_io != sizeof(ImGuiIO)) { error = true; IM_ASSERT(sz_io == sizeof(ImGuiIO) && "Mismatched struct layout!"); } + if (sz_style != sizeof(ImGuiStyle)) { error = true; IM_ASSERT(sz_style == sizeof(ImGuiStyle) && "Mismatched struct layout!"); } + if (sz_vec2 != sizeof(ImVec2)) { error = true; IM_ASSERT(sz_vec2 == sizeof(ImVec2) && "Mismatched struct layout!"); } + if (sz_vec4 != sizeof(ImVec4)) { error = true; IM_ASSERT(sz_vec4 == sizeof(ImVec4) && "Mismatched struct layout!"); } + if (sz_vert != sizeof(ImDrawVert)) { error = true; IM_ASSERT(sz_vert == sizeof(ImDrawVert) && "Mismatched struct layout!"); } + if (sz_idx != sizeof(ImDrawIdx)) { error = true; IM_ASSERT(sz_idx == sizeof(ImDrawIdx) && "Mismatched struct layout!"); } + return !error; +} + +// Until 1.89 (IMGUI_VERSION_NUM < 18814) it was legal to use SetCursorPos() to extend the boundary of a parent (e.g. window or table cell) +// This is causing issues and ambiguity and we need to retire that. +// See https://github.com/ocornut/imgui/issues/5548 for more details. +// [Scenario 1] +// Previously this would make the window content size ~200x200: +// Begin(...) + SetCursorScreenPos(GetCursorScreenPos() + ImVec2(200,200)) + End(); // NOT OK +// Instead, please submit an item: +// Begin(...) + SetCursorScreenPos(GetCursorScreenPos() + ImVec2(200,200)) + Dummy(ImVec2(0,0)) + End(); // OK +// Alternative: +// Begin(...) + Dummy(ImVec2(200,200)) + End(); // OK +// [Scenario 2] +// For reference this is one of the issue what we aim to fix with this change: +// BeginGroup() + SomeItem("foobar") + SetCursorScreenPos(GetCursorScreenPos()) + EndGroup() +// The previous logic made SetCursorScreenPos(GetCursorScreenPos()) have a side-effect! It would erroneously incorporate ItemSpacing.y after the item into content size, making the group taller! +// While this code is a little twisted, no-one would expect SetXXX(GetXXX()) to have a side-effect. Using vertical alignment patterns could trigger this issue. +void ImGui::ErrorCheckUsingSetCursorPosToExtendParentBoundaries() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(window->DC.IsSetPos); + window->DC.IsSetPos = false; +#ifdef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + window->DC.CursorMaxPos = ImMax(window->DC.CursorMaxPos, window->DC.CursorPos); + + // if (window->DC.CursorPos.x <= window->DC.CursorMaxPos.x && window->DC.CursorPos.y <= window->DC.CursorMaxPos.y) + // return; + //if (window->SkipItems) + // return; + + // IM_ASSERT(0 && "Code uses SetCursorPos()/SetCursorScreenPos() to extend window/parent boundaries. Please submit an item e.g. Dummy() to validate extent."); +#else + window->DC.CursorMaxPos = ImMax(window->DC.CursorMaxPos, window->DC.CursorPos); +#endif +} + +static void ImGui::ErrorCheckNewFrameSanityChecks() +{ + ImGuiContext& g = *GImGui; + + // Check user IM_ASSERT macro + // (IF YOU GET A WARNING OR COMPILE ERROR HERE: it means your assert macro is incorrectly defined! + // If your macro uses multiple statements, it NEEDS to be surrounded by a 'do { ... } while (0)' block. + // This is a common C/C++ idiom to allow multiple statements macros to be used in control flow blocks.) + // #define IM_ASSERT(EXPR) if (SomeCode(EXPR)) SomeMoreCode(); // Wrong! + // #define IM_ASSERT(EXPR) do { if (SomeCode(EXPR)) SomeMoreCode(); } while (0) // Correct! + if (true) IM_ASSERT(1); else IM_ASSERT(0); + + // Emscripten backends are often imprecise in their submission of DeltaTime. (#6114, #3644) + // Ideally the Emscripten app/backend should aim to fix or smooth this value and avoid feeding zero, but we tolerate it. +#ifdef __EMSCRIPTEN__ + if (g.IO.DeltaTime <= 0.0f && g.FrameCount > 0) + g.IO.DeltaTime = 0.00001f; +#endif + + // Check user data + // (We pass an error message in the assert expression to make it visible to programmers who are not using a debugger, as most assert handlers display their argument) + IM_ASSERT(g.Initialized); + IM_ASSERT((g.IO.DeltaTime > 0.0f || g.FrameCount == 0) && "Need a positive DeltaTime!"); + IM_ASSERT((g.FrameCount == 0 || g.FrameCountEnded == g.FrameCount) && "Forgot to call Render() or EndFrame() at the end of the previous frame?"); + IM_ASSERT(g.IO.DisplaySize.x >= 0.0f && g.IO.DisplaySize.y >= 0.0f && "Invalid DisplaySize value!"); + IM_ASSERT(g.IO.Fonts->IsBuilt() && "Font Atlas not built! Make sure you called ImGui_ImplXXXX_NewFrame() function for renderer backend, which should call io.Fonts->GetTexDataAsRGBA32() / GetTexDataAsAlpha8()"); + IM_ASSERT(g.Style.CurveTessellationTol > 0.0f && "Invalid style setting!"); + IM_ASSERT(g.Style.CircleTessellationMaxError > 0.0f && "Invalid style setting!"); + IM_ASSERT(g.Style.Alpha >= 0.0f && g.Style.Alpha <= 1.0f && "Invalid style setting!"); // Allows us to avoid a few clamps in color computations + IM_ASSERT(g.Style.WindowMinSize.x >= 1.0f && g.Style.WindowMinSize.y >= 1.0f && "Invalid style setting."); + IM_ASSERT(g.Style.WindowMenuButtonPosition == ImGuiDir_None || g.Style.WindowMenuButtonPosition == ImGuiDir_Left || g.Style.WindowMenuButtonPosition == ImGuiDir_Right); + IM_ASSERT(g.Style.ColorButtonPosition == ImGuiDir_Left || g.Style.ColorButtonPosition == ImGuiDir_Right); +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + for (int n = ImGuiKey_NamedKey_BEGIN; n < ImGuiKey_COUNT; n++) + IM_ASSERT(g.IO.KeyMap[n] >= -1 && g.IO.KeyMap[n] < ImGuiKey_LegacyNativeKey_END && "io.KeyMap[] contains an out of bound value (need to be 0..511, or -1 for unmapped key)"); + + // Check: required key mapping (we intentionally do NOT check all keys to not pressure user into setting up everything, but Space is required and was only added in 1.60 WIP) + if ((g.IO.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) && g.IO.BackendUsingLegacyKeyArrays == 1) + IM_ASSERT(g.IO.KeyMap[ImGuiKey_Space] != -1 && "ImGuiKey_Space is not mapped, required for keyboard navigation."); +#endif + + // Check: the io.ConfigWindowsResizeFromEdges option requires backend to honor mouse cursor changes and set the ImGuiBackendFlags_HasMouseCursors flag accordingly. + if (g.IO.ConfigWindowsResizeFromEdges && !(g.IO.BackendFlags & ImGuiBackendFlags_HasMouseCursors)) + g.IO.ConfigWindowsResizeFromEdges = false; +} + +static void ImGui::ErrorCheckEndFrameSanityChecks() +{ + ImGuiContext& g = *GImGui; + + // Verify that io.KeyXXX fields haven't been tampered with. Key mods should not be modified between NewFrame() and EndFrame() + // One possible reason leading to this assert is that your backends update inputs _AFTER_ NewFrame(). + // It is known that when some modal native windows called mid-frame takes focus away, some backends such as GLFW will + // send key release events mid-frame. This would normally trigger this assertion and lead to sheared inputs. + // We silently accommodate for this case by ignoring the case where all io.KeyXXX modifiers were released (aka key_mod_flags == 0), + // while still correctly asserting on mid-frame key press events. + const ImGuiKeyChord key_mods = GetMergedModsFromKeys(); + IM_ASSERT((key_mods == 0 || g.IO.KeyMods == key_mods) && "Mismatching io.KeyCtrl/io.KeyShift/io.KeyAlt/io.KeySuper vs io.KeyMods"); + IM_UNUSED(key_mods); + + // [EXPERIMENTAL] Recover from errors: You may call this yourself before EndFrame(). + //ErrorCheckEndFrameRecover(); + + // Report when there is a mismatch of Begin/BeginChild vs End/EndChild calls. Important: Remember that the Begin/BeginChild API requires you + // to always call End/EndChild even if Begin/BeginChild returns false! (this is unfortunately inconsistent with most other Begin* API). + if (g.CurrentWindowStack.Size != 1) + { + if (g.CurrentWindowStack.Size > 1) + { + ImGuiWindow* window = g.CurrentWindowStack.back().Window; // <-- This window was not Ended! + IM_ASSERT_USER_ERROR(g.CurrentWindowStack.Size == 1, "Mismatched Begin/BeginChild vs End/EndChild calls: did you forget to call End/EndChild?"); + IM_UNUSED(window); + while (g.CurrentWindowStack.Size > 1) + End(); + } + else + { + IM_ASSERT_USER_ERROR(g.CurrentWindowStack.Size == 1, "Mismatched Begin/BeginChild vs End/EndChild calls: did you call End/EndChild too much?"); + } + } + + IM_ASSERT_USER_ERROR(g.GroupStack.Size == 0, "Missing EndGroup call!"); +} + +// Experimental recovery from incorrect usage of BeginXXX/EndXXX/PushXXX/PopXXX calls. +// Must be called during or before EndFrame(). +// This is generally flawed as we are not necessarily End/Popping things in the right order. +// FIXME: Can't recover from inside BeginTabItem/EndTabItem yet. +// FIXME: Can't recover from interleaved BeginTabBar/Begin +void ImGui::ErrorCheckEndFrameRecover(ImGuiErrorLogCallback log_callback, void* user_data) +{ + // PVS-Studio V1044 is "Loop break conditions do not depend on the number of iterations" + ImGuiContext& g = *GImGui; + while (g.CurrentWindowStack.Size > 0) //-V1044 + { + ErrorCheckEndWindowRecover(log_callback, user_data); + ImGuiWindow* window = g.CurrentWindow; + if (g.CurrentWindowStack.Size == 1) + { + IM_ASSERT(window->IsFallbackWindow); + break; + } + if (window->Flags & ImGuiWindowFlags_ChildWindow) + { + if (log_callback) log_callback(user_data, "Recovered from missing EndChild() for '%s'", window->Name); + EndChild(); + } + else + { + if (log_callback) log_callback(user_data, "Recovered from missing End() for '%s'", window->Name); + End(); + } + } +} + +// Must be called before End()/EndChild() +void ImGui::ErrorCheckEndWindowRecover(ImGuiErrorLogCallback log_callback, void* user_data) +{ + ImGuiContext& g = *GImGui; + while (g.CurrentTable && (g.CurrentTable->OuterWindow == g.CurrentWindow || g.CurrentTable->InnerWindow == g.CurrentWindow)) + { + if (log_callback) log_callback(user_data, "Recovered from missing EndTable() in '%s'", g.CurrentTable->OuterWindow->Name); + EndTable(); + } + + ImGuiWindow* window = g.CurrentWindow; + ImGuiStackSizes* stack_sizes = &g.CurrentWindowStack.back().StackSizesOnBegin; + IM_ASSERT(window != NULL); + while (g.CurrentTabBar != NULL) //-V1044 + { + if (log_callback) log_callback(user_data, "Recovered from missing EndTabBar() in '%s'", window->Name); + EndTabBar(); + } + while (window->DC.TreeDepth > 0) + { + if (log_callback) log_callback(user_data, "Recovered from missing TreePop() in '%s'", window->Name); + TreePop(); + } + while (g.GroupStack.Size > stack_sizes->SizeOfGroupStack) //-V1044 + { + if (log_callback) log_callback(user_data, "Recovered from missing EndGroup() in '%s'", window->Name); + EndGroup(); + } + while (window->IDStack.Size > 1) + { + if (log_callback) log_callback(user_data, "Recovered from missing PopID() in '%s'", window->Name); + PopID(); + } + while (g.DisabledStackSize > stack_sizes->SizeOfDisabledStack) //-V1044 + { + if (log_callback) log_callback(user_data, "Recovered from missing EndDisabled() in '%s'", window->Name); + EndDisabled(); + } + while (g.ColorStack.Size > stack_sizes->SizeOfColorStack) + { + if (log_callback) log_callback(user_data, "Recovered from missing PopStyleColor() in '%s' for ImGuiCol_%s", window->Name, GetStyleColorName(g.ColorStack.back().Col)); + PopStyleColor(); + } + while (g.ItemFlagsStack.Size > stack_sizes->SizeOfItemFlagsStack) //-V1044 + { + if (log_callback) log_callback(user_data, "Recovered from missing PopItemFlag() in '%s'", window->Name); + PopItemFlag(); + } + while (g.StyleVarStack.Size > stack_sizes->SizeOfStyleVarStack) //-V1044 + { + if (log_callback) log_callback(user_data, "Recovered from missing PopStyleVar() in '%s'", window->Name); + PopStyleVar(); + } + while (g.FontStack.Size > stack_sizes->SizeOfFontStack) //-V1044 + { + if (log_callback) log_callback(user_data, "Recovered from missing PopFont() in '%s'", window->Name); + PopFont(); + } + while (g.FocusScopeStack.Size > stack_sizes->SizeOfFocusScopeStack + 1) //-V1044 + { + if (log_callback) log_callback(user_data, "Recovered from missing PopFocusScope() in '%s'", window->Name); + PopFocusScope(); + } +} + +// Save current stack sizes for later compare +void ImGuiStackSizes::SetToContextState(ImGuiContext* ctx) +{ + ImGuiContext& g = *ctx; + ImGuiWindow* window = g.CurrentWindow; + SizeOfIDStack = (short)window->IDStack.Size; + SizeOfColorStack = (short)g.ColorStack.Size; + SizeOfStyleVarStack = (short)g.StyleVarStack.Size; + SizeOfFontStack = (short)g.FontStack.Size; + SizeOfFocusScopeStack = (short)g.FocusScopeStack.Size; + SizeOfGroupStack = (short)g.GroupStack.Size; + SizeOfItemFlagsStack = (short)g.ItemFlagsStack.Size; + SizeOfBeginPopupStack = (short)g.BeginPopupStack.Size; + SizeOfDisabledStack = (short)g.DisabledStackSize; +} + +// Compare to detect usage errors +void ImGuiStackSizes::CompareWithContextState(ImGuiContext* ctx) +{ + ImGuiContext& g = *ctx; + ImGuiWindow* window = g.CurrentWindow; + IM_UNUSED(window); + + // Window stacks + // NOT checking: DC.ItemWidth, DC.TextWrapPos (per window) to allow user to conveniently push once and not pop (they are cleared on Begin) + IM_ASSERT(SizeOfIDStack == window->IDStack.Size && "PushID/PopID or TreeNode/TreePop Mismatch!"); + + // Global stacks + // For color, style and font stacks there is an incentive to use Push/Begin/Pop/.../End patterns, so we relax our checks a little to allow them. + IM_ASSERT(SizeOfGroupStack == g.GroupStack.Size && "BeginGroup/EndGroup Mismatch!"); + IM_ASSERT(SizeOfBeginPopupStack == g.BeginPopupStack.Size && "BeginPopup/EndPopup or BeginMenu/EndMenu Mismatch!"); + IM_ASSERT(SizeOfDisabledStack == g.DisabledStackSize && "BeginDisabled/EndDisabled Mismatch!"); + IM_ASSERT(SizeOfItemFlagsStack >= g.ItemFlagsStack.Size && "PushItemFlag/PopItemFlag Mismatch!"); + IM_ASSERT(SizeOfColorStack >= g.ColorStack.Size && "PushStyleColor/PopStyleColor Mismatch!"); + IM_ASSERT(SizeOfStyleVarStack >= g.StyleVarStack.Size && "PushStyleVar/PopStyleVar Mismatch!"); + IM_ASSERT(SizeOfFontStack >= g.FontStack.Size && "PushFont/PopFont Mismatch!"); + IM_ASSERT(SizeOfFocusScopeStack == g.FocusScopeStack.Size && "PushFocusScope/PopFocusScope Mismatch!"); +} + + +//----------------------------------------------------------------------------- +// [SECTION] LAYOUT +//----------------------------------------------------------------------------- +// - ItemSize() +// - ItemAdd() +// - SameLine() +// - GetCursorScreenPos() +// - SetCursorScreenPos() +// - GetCursorPos(), GetCursorPosX(), GetCursorPosY() +// - SetCursorPos(), SetCursorPosX(), SetCursorPosY() +// - GetCursorStartPos() +// - Indent() +// - Unindent() +// - SetNextItemWidth() +// - PushItemWidth() +// - PushMultiItemsWidths() +// - PopItemWidth() +// - CalcItemWidth() +// - CalcItemSize() +// - GetTextLineHeight() +// - GetTextLineHeightWithSpacing() +// - GetFrameHeight() +// - GetFrameHeightWithSpacing() +// - GetContentRegionMax() +// - GetContentRegionMaxAbs() [Internal] +// - GetContentRegionAvail(), +// - GetWindowContentRegionMin(), GetWindowContentRegionMax() +// - BeginGroup() +// - EndGroup() +// Also see in imgui_widgets: tab bars, and in imgui_tables: tables, columns. +//----------------------------------------------------------------------------- + +// Advance cursor given item size for layout. +// Register minimum needed size so it can extend the bounding box used for auto-fit calculation. +// See comments in ItemAdd() about how/why the size provided to ItemSize() vs ItemAdd() may often different. +void ImGui::ItemSize(const ImVec2& size, float text_baseline_y) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return; + + // We increase the height in this function to accommodate for baseline offset. + // In theory we should be offsetting the starting position (window->DC.CursorPos), that will be the topic of a larger refactor, + // but since ItemSize() is not yet an API that moves the cursor (to handle e.g. wrapping) enlarging the height has the same effect. + const float offset_to_match_baseline_y = (text_baseline_y >= 0) ? ImMax(0.0f, window->DC.CurrLineTextBaseOffset - text_baseline_y) : 0.0f; + + const float line_y1 = window->DC.IsSameLine ? window->DC.CursorPosPrevLine.y : window->DC.CursorPos.y; + const float line_height = ImMax(window->DC.CurrLineSize.y, /*ImMax(*/window->DC.CursorPos.y - line_y1/*, 0.0f)*/ + size.y + offset_to_match_baseline_y); + + // Always align ourselves on pixel boundaries + //if (g.IO.KeyAlt) window->DrawList->AddRect(window->DC.CursorPos, window->DC.CursorPos + ImVec2(size.x, line_height), IM_COL32(255,0,0,200)); // [DEBUG] + window->DC.CursorPosPrevLine.x = window->DC.CursorPos.x + size.x; + window->DC.CursorPosPrevLine.y = line_y1; + window->DC.CursorPos.x = IM_FLOOR(window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x); // Next line + window->DC.CursorPos.y = IM_FLOOR(line_y1 + line_height + g.Style.ItemSpacing.y); // Next line + window->DC.CursorMaxPos.x = ImMax(window->DC.CursorMaxPos.x, window->DC.CursorPosPrevLine.x); + window->DC.CursorMaxPos.y = ImMax(window->DC.CursorMaxPos.y, window->DC.CursorPos.y - g.Style.ItemSpacing.y); + //if (g.IO.KeyAlt) window->DrawList->AddCircle(window->DC.CursorMaxPos, 3.0f, IM_COL32(255,0,0,255), 4); // [DEBUG] + + window->DC.PrevLineSize.y = line_height; + window->DC.CurrLineSize.y = 0.0f; + window->DC.PrevLineTextBaseOffset = ImMax(window->DC.CurrLineTextBaseOffset, text_baseline_y); + window->DC.CurrLineTextBaseOffset = 0.0f; + window->DC.IsSameLine = window->DC.IsSetPos = false; + + // Horizontal layout mode + if (window->DC.LayoutType == ImGuiLayoutType_Horizontal) + SameLine(); +} + +// Declare item bounding box for clipping and interaction. +// Note that the size can be different than the one provided to ItemSize(). Typically, widgets that spread over available surface +// declare their minimum size requirement to ItemSize() and provide a larger region to ItemAdd() which is used drawing/interaction. +bool ImGui::ItemAdd(const ImRect& bb, ImGuiID id, const ImRect* nav_bb_arg, ImGuiItemFlags extra_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + // Set item data + // (DisplayRect is left untouched, made valid when ImGuiItemStatusFlags_HasDisplayRect is set) + g.LastItemData.ID = id; + g.LastItemData.Rect = bb; + g.LastItemData.NavRect = nav_bb_arg ? *nav_bb_arg : bb; + g.LastItemData.InFlags = g.CurrentItemFlags | g.NextItemData.ItemFlags | extra_flags; + g.LastItemData.StatusFlags = ImGuiItemStatusFlags_None; + + // Directional navigation processing + if (id != 0) + { + KeepAliveID(id); + + // Runs prior to clipping early-out + // (a) So that NavInitRequest can be honored, for newly opened windows to select a default widget + // (b) So that we can scroll up/down past clipped items. This adds a small O(N) cost to regular navigation requests + // unfortunately, but it is still limited to one window. It may not scale very well for windows with ten of + // thousands of item, but at least NavMoveRequest is only set on user interaction, aka maximum once a frame. + // We could early out with "if (is_clipped && !g.NavInitRequest) return false;" but when we wouldn't be able + // to reach unclipped widgets. This would work if user had explicit scrolling control (e.g. mapped on a stick). + // We intentionally don't check if g.NavWindow != NULL because g.NavAnyRequest should only be set when it is non null. + // If we crash on a NULL g.NavWindow we need to fix the bug elsewhere. + if (!(g.LastItemData.InFlags & ImGuiItemFlags_NoNav)) + { + window->DC.NavLayersActiveMaskNext |= (1 << window->DC.NavLayerCurrent); + if (g.NavId == id || g.NavAnyRequest) + if (g.NavWindow->RootWindowForNav == window->RootWindowForNav) + if (window == g.NavWindow || ((window->Flags | g.NavWindow->Flags) & ImGuiWindowFlags_NavFlattened)) + NavProcessItem(); + } + + // [DEBUG] People keep stumbling on this problem and using "" as identifier in the root of a window instead of "##something". + // Empty identifier are valid and useful in a small amount of cases, but 99.9% of the time you want to use "##something". + // READ THE FAQ: https://dearimgui.com/faq + IM_ASSERT(id != window->ID && "Cannot have an empty ID at the root of a window. If you need an empty label, use ## and read the FAQ about how the ID Stack works!"); + } + g.NextItemData.Flags = ImGuiNextItemDataFlags_None; + g.NextItemData.ItemFlags = ImGuiItemFlags_None; + +#ifdef IMGUI_ENABLE_TEST_ENGINE + if (id != 0) + IMGUI_TEST_ENGINE_ITEM_ADD(id, g.LastItemData.NavRect, &g.LastItemData); +#endif + + // Clipping test + // (FIXME: This is a modified copy of IsClippedEx() so we can reuse the is_rect_visible value) + //const bool is_clipped = IsClippedEx(bb, id); + //if (is_clipped) + // return false; + const bool is_rect_visible = bb.Overlaps(window->ClipRect); + if (!is_rect_visible) + if (id == 0 || (id != g.ActiveId && id != g.ActiveIdPreviousFrame && id != g.NavId)) + if (!g.LogEnabled) + return false; + + // [DEBUG] +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + if (id != 0 && id == g.DebugLocateId) + DebugLocateItemResolveWithLastItem(); +#endif + //if (g.IO.KeyAlt) window->DrawList->AddRect(bb.Min, bb.Max, IM_COL32(255,255,0,120)); // [DEBUG] + //if ((g.LastItemData.InFlags & ImGuiItemFlags_NoNav) == 0) + // window->DrawList->AddRect(g.LastItemData.NavRect.Min, g.LastItemData.NavRect.Max, IM_COL32(255,255,0,255)); // [DEBUG] + + // We need to calculate this now to take account of the current clipping rectangle (as items like Selectable may change them) + if (is_rect_visible) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_Visible; + if (IsMouseHoveringRect(bb.Min, bb.Max)) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HoveredRect; + return true; +} + +// Gets back to previous line and continue with horizontal layout +// offset_from_start_x == 0 : follow right after previous item +// offset_from_start_x != 0 : align to specified x position (relative to window/group left) +// spacing_w < 0 : use default spacing if offset_from_start_x == 0, no spacing if offset_from_start_x != 0 +// spacing_w >= 0 : enforce spacing amount +void ImGui::SameLine(float offset_from_start_x, float spacing_w) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return; + + if (offset_from_start_x != 0.0f) + { + if (spacing_w < 0.0f) + spacing_w = 0.0f; + window->DC.CursorPos.x = window->Pos.x - window->Scroll.x + offset_from_start_x + spacing_w + window->DC.GroupOffset.x + window->DC.ColumnsOffset.x; + window->DC.CursorPos.y = window->DC.CursorPosPrevLine.y; + } + else + { + if (spacing_w < 0.0f) + spacing_w = g.Style.ItemSpacing.x; + window->DC.CursorPos.x = window->DC.CursorPosPrevLine.x + spacing_w; + window->DC.CursorPos.y = window->DC.CursorPosPrevLine.y; + } + window->DC.CurrLineSize = window->DC.PrevLineSize; + window->DC.CurrLineTextBaseOffset = window->DC.PrevLineTextBaseOffset; + window->DC.IsSameLine = true; +} + +ImVec2 ImGui::GetCursorScreenPos() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->DC.CursorPos; +} + +void ImGui::SetCursorScreenPos(const ImVec2& pos) +{ + ImGuiWindow* window = GetCurrentWindow(); + window->DC.CursorPos = pos; + //window->DC.CursorMaxPos = ImMax(window->DC.CursorMaxPos, window->DC.CursorPos); + window->DC.IsSetPos = true; +} + +// User generally sees positions in window coordinates. Internally we store CursorPos in absolute screen coordinates because it is more convenient. +// Conversion happens as we pass the value to user, but it makes our naming convention confusing because GetCursorPos() == (DC.CursorPos - window.Pos). May want to rename 'DC.CursorPos'. +ImVec2 ImGui::GetCursorPos() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->DC.CursorPos - window->Pos + window->Scroll; +} + +float ImGui::GetCursorPosX() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->DC.CursorPos.x - window->Pos.x + window->Scroll.x; +} + +float ImGui::GetCursorPosY() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->DC.CursorPos.y - window->Pos.y + window->Scroll.y; +} + +void ImGui::SetCursorPos(const ImVec2& local_pos) +{ + ImGuiWindow* window = GetCurrentWindow(); + window->DC.CursorPos = window->Pos - window->Scroll + local_pos; + //window->DC.CursorMaxPos = ImMax(window->DC.CursorMaxPos, window->DC.CursorPos); + window->DC.IsSetPos = true; +} + +void ImGui::SetCursorPosX(float x) +{ + ImGuiWindow* window = GetCurrentWindow(); + window->DC.CursorPos.x = window->Pos.x - window->Scroll.x + x; + //window->DC.CursorMaxPos.x = ImMax(window->DC.CursorMaxPos.x, window->DC.CursorPos.x); + window->DC.IsSetPos = true; +} + +void ImGui::SetCursorPosY(float y) +{ + ImGuiWindow* window = GetCurrentWindow(); + window->DC.CursorPos.y = window->Pos.y - window->Scroll.y + y; + //window->DC.CursorMaxPos.y = ImMax(window->DC.CursorMaxPos.y, window->DC.CursorPos.y); + window->DC.IsSetPos = true; +} + +ImVec2 ImGui::GetCursorStartPos() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->DC.CursorStartPos - window->Pos; +} + +void ImGui::Indent(float indent_w) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + window->DC.Indent.x += (indent_w != 0.0f) ? indent_w : g.Style.IndentSpacing; + window->DC.CursorPos.x = window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x; +} + +void ImGui::Unindent(float indent_w) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + window->DC.Indent.x -= (indent_w != 0.0f) ? indent_w : g.Style.IndentSpacing; + window->DC.CursorPos.x = window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x; +} + +// Affect large frame+labels widgets only. +void ImGui::SetNextItemWidth(float item_width) +{ + ImGuiContext& g = *GImGui; + g.NextItemData.Flags |= ImGuiNextItemDataFlags_HasWidth; + g.NextItemData.Width = item_width; +} + +// FIXME: Remove the == 0.0f behavior? +void ImGui::PushItemWidth(float item_width) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + window->DC.ItemWidthStack.push_back(window->DC.ItemWidth); // Backup current width + window->DC.ItemWidth = (item_width == 0.0f ? window->ItemWidthDefault : item_width); + g.NextItemData.Flags &= ~ImGuiNextItemDataFlags_HasWidth; +} + +void ImGui::PushMultiItemsWidths(int components, float w_full) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + const ImGuiStyle& style = g.Style; + const float w_item_one = ImMax(1.0f, IM_FLOOR((w_full - (style.ItemInnerSpacing.x) * (components - 1)) / (float)components)); + const float w_item_last = ImMax(1.0f, IM_FLOOR(w_full - (w_item_one + style.ItemInnerSpacing.x) * (components - 1))); + window->DC.ItemWidthStack.push_back(window->DC.ItemWidth); // Backup current width + window->DC.ItemWidthStack.push_back(w_item_last); + for (int i = 0; i < components - 2; i++) + window->DC.ItemWidthStack.push_back(w_item_one); + window->DC.ItemWidth = (components == 1) ? w_item_last : w_item_one; + g.NextItemData.Flags &= ~ImGuiNextItemDataFlags_HasWidth; +} + +void ImGui::PopItemWidth() +{ + ImGuiWindow* window = GetCurrentWindow(); + window->DC.ItemWidth = window->DC.ItemWidthStack.back(); + window->DC.ItemWidthStack.pop_back(); +} + +// Calculate default item width given value passed to PushItemWidth() or SetNextItemWidth(). +// The SetNextItemWidth() data is generally cleared/consumed by ItemAdd() or NextItemData.ClearFlags() +float ImGui::CalcItemWidth() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + float w; + if (g.NextItemData.Flags & ImGuiNextItemDataFlags_HasWidth) + w = g.NextItemData.Width; + else + w = window->DC.ItemWidth; + if (w < 0.0f) + { + float region_max_x = GetContentRegionMaxAbs().x; + w = ImMax(1.0f, region_max_x - window->DC.CursorPos.x + w); + } + w = IM_FLOOR(w); + return w; +} + +// [Internal] Calculate full item size given user provided 'size' parameter and default width/height. Default width is often == CalcItemWidth(). +// Those two functions CalcItemWidth vs CalcItemSize are awkwardly named because they are not fully symmetrical. +// Note that only CalcItemWidth() is publicly exposed. +// The 4.0f here may be changed to match CalcItemWidth() and/or BeginChild() (right now we have a mismatch which is harmless but undesirable) +ImVec2 ImGui::CalcItemSize(ImVec2 size, float default_w, float default_h) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + ImVec2 region_max; + if (size.x < 0.0f || size.y < 0.0f) + region_max = GetContentRegionMaxAbs(); + + if (size.x == 0.0f) + size.x = default_w; + else if (size.x < 0.0f) + size.x = ImMax(4.0f, region_max.x - window->DC.CursorPos.x + size.x); + + if (size.y == 0.0f) + size.y = default_h; + else if (size.y < 0.0f) + size.y = ImMax(4.0f, region_max.y - window->DC.CursorPos.y + size.y); + + return size; +} + +float ImGui::GetTextLineHeight() +{ + ImGuiContext& g = *GImGui; + return g.FontSize; +} + +float ImGui::GetTextLineHeightWithSpacing() +{ + ImGuiContext& g = *GImGui; + return g.FontSize + g.Style.ItemSpacing.y; +} + +float ImGui::GetFrameHeight() +{ + ImGuiContext& g = *GImGui; + return g.FontSize + g.Style.FramePadding.y * 2.0f; +} + +float ImGui::GetFrameHeightWithSpacing() +{ + ImGuiContext& g = *GImGui; + return g.FontSize + g.Style.FramePadding.y * 2.0f + g.Style.ItemSpacing.y; +} + +// FIXME: All the Contents Region function are messy or misleading. WE WILL AIM TO OBSOLETE ALL OF THEM WITH A NEW "WORK RECT" API. Thanks for your patience! + +// FIXME: This is in window space (not screen space!). +ImVec2 ImGui::GetContentRegionMax() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImVec2 mx = (window->DC.CurrentColumns || g.CurrentTable) ? window->WorkRect.Max : window->ContentRegionRect.Max; + return mx - window->Pos; +} + +// [Internal] Absolute coordinate. Saner. This is not exposed until we finishing refactoring work rect features. +ImVec2 ImGui::GetContentRegionMaxAbs() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImVec2 mx = (window->DC.CurrentColumns || g.CurrentTable) ? window->WorkRect.Max : window->ContentRegionRect.Max; + return mx; +} + +ImVec2 ImGui::GetContentRegionAvail() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return GetContentRegionMaxAbs() - window->DC.CursorPos; +} + +// In window space (not screen space!) +ImVec2 ImGui::GetWindowContentRegionMin() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->ContentRegionRect.Min - window->Pos; +} + +ImVec2 ImGui::GetWindowContentRegionMax() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->ContentRegionRect.Max - window->Pos; +} + +// Lock horizontal starting position + capture group bounding box into one "item" (so you can use IsItemHovered() or layout primitives such as SameLine() on whole group, etc.) +// Groups are currently a mishmash of functionalities which should perhaps be clarified and separated. +// FIXME-OPT: Could we safely early out on ->SkipItems? +void ImGui::BeginGroup() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + g.GroupStack.resize(g.GroupStack.Size + 1); + ImGuiGroupData& group_data = g.GroupStack.back(); + group_data.WindowID = window->ID; + group_data.BackupCursorPos = window->DC.CursorPos; + group_data.BackupCursorMaxPos = window->DC.CursorMaxPos; + group_data.BackupIndent = window->DC.Indent; + group_data.BackupGroupOffset = window->DC.GroupOffset; + group_data.BackupCurrLineSize = window->DC.CurrLineSize; + group_data.BackupCurrLineTextBaseOffset = window->DC.CurrLineTextBaseOffset; + group_data.BackupActiveIdIsAlive = g.ActiveIdIsAlive; + group_data.BackupHoveredIdIsAlive = g.HoveredId != 0; + group_data.BackupActiveIdPreviousFrameIsAlive = g.ActiveIdPreviousFrameIsAlive; + group_data.EmitItem = true; + + window->DC.GroupOffset.x = window->DC.CursorPos.x - window->Pos.x - window->DC.ColumnsOffset.x; + window->DC.Indent = window->DC.GroupOffset; + window->DC.CursorMaxPos = window->DC.CursorPos; + window->DC.CurrLineSize = ImVec2(0.0f, 0.0f); + if (g.LogEnabled) + g.LogLinePosY = -FLT_MAX; // To enforce a carriage return +} + +void ImGui::EndGroup() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(g.GroupStack.Size > 0); // Mismatched BeginGroup()/EndGroup() calls + + ImGuiGroupData& group_data = g.GroupStack.back(); + IM_ASSERT(group_data.WindowID == window->ID); // EndGroup() in wrong window? + + if (window->DC.IsSetPos) + ErrorCheckUsingSetCursorPosToExtendParentBoundaries(); + + ImRect group_bb(group_data.BackupCursorPos, ImMax(window->DC.CursorMaxPos, group_data.BackupCursorPos)); + + window->DC.CursorPos = group_data.BackupCursorPos; + window->DC.CursorMaxPos = ImMax(group_data.BackupCursorMaxPos, window->DC.CursorMaxPos); + window->DC.Indent = group_data.BackupIndent; + window->DC.GroupOffset = group_data.BackupGroupOffset; + window->DC.CurrLineSize = group_data.BackupCurrLineSize; + window->DC.CurrLineTextBaseOffset = group_data.BackupCurrLineTextBaseOffset; + if (g.LogEnabled) + g.LogLinePosY = -FLT_MAX; // To enforce a carriage return + + if (!group_data.EmitItem) + { + g.GroupStack.pop_back(); + return; + } + + window->DC.CurrLineTextBaseOffset = ImMax(window->DC.PrevLineTextBaseOffset, group_data.BackupCurrLineTextBaseOffset); // FIXME: Incorrect, we should grab the base offset from the *first line* of the group but it is hard to obtain now. + ItemSize(group_bb.GetSize()); + ItemAdd(group_bb, 0, NULL, ImGuiItemFlags_NoTabStop); + + // If the current ActiveId was declared within the boundary of our group, we copy it to LastItemId so IsItemActive(), IsItemDeactivated() etc. will be functional on the entire group. + // It would be neater if we replaced window.DC.LastItemId by e.g. 'bool LastItemIsActive', but would put a little more burden on individual widgets. + // Also if you grep for LastItemId you'll notice it is only used in that context. + // (The two tests not the same because ActiveIdIsAlive is an ID itself, in order to be able to handle ActiveId being overwritten during the frame.) + const bool group_contains_curr_active_id = (group_data.BackupActiveIdIsAlive != g.ActiveId) && (g.ActiveIdIsAlive == g.ActiveId) && g.ActiveId; + const bool group_contains_prev_active_id = (group_data.BackupActiveIdPreviousFrameIsAlive == false) && (g.ActiveIdPreviousFrameIsAlive == true); + if (group_contains_curr_active_id) + g.LastItemData.ID = g.ActiveId; + else if (group_contains_prev_active_id) + g.LastItemData.ID = g.ActiveIdPreviousFrame; + g.LastItemData.Rect = group_bb; + + // Forward Hovered flag + const bool group_contains_curr_hovered_id = (group_data.BackupHoveredIdIsAlive == false) && g.HoveredId != 0; + if (group_contains_curr_hovered_id) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HoveredWindow; + + // Forward Edited flag + if (group_contains_curr_active_id && g.ActiveIdHasBeenEditedThisFrame) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_Edited; + + // Forward Deactivated flag + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HasDeactivated; + if (group_contains_prev_active_id && g.ActiveId != g.ActiveIdPreviousFrame) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_Deactivated; + + g.GroupStack.pop_back(); + //window->DrawList->AddRect(group_bb.Min, group_bb.Max, IM_COL32(255,0,255,255)); // [Debug] +} + + +//----------------------------------------------------------------------------- +// [SECTION] SCROLLING +//----------------------------------------------------------------------------- + +// Helper to snap on edges when aiming at an item very close to the edge, +// So the difference between WindowPadding and ItemSpacing will be in the visible area after scrolling. +// When we refactor the scrolling API this may be configurable with a flag? +// Note that the effect for this won't be visible on X axis with default Style settings as WindowPadding.x == ItemSpacing.x by default. +static float CalcScrollEdgeSnap(float target, float snap_min, float snap_max, float snap_threshold, float center_ratio) +{ + if (target <= snap_min + snap_threshold) + return ImLerp(snap_min, target, center_ratio); + if (target >= snap_max - snap_threshold) + return ImLerp(target, snap_max, center_ratio); + return target; +} + +static ImVec2 CalcNextScrollFromScrollTargetAndClamp(ImGuiWindow* window) +{ + ImVec2 scroll = window->Scroll; + ImVec2 decoration_size(window->DecoOuterSizeX1 + window->DecoInnerSizeX1 + window->DecoOuterSizeX2, window->DecoOuterSizeY1 + window->DecoInnerSizeY1 + window->DecoOuterSizeY2); + for (int axis = 0; axis < 2; axis++) + { + if (window->ScrollTarget[axis] < FLT_MAX) + { + float center_ratio = window->ScrollTargetCenterRatio[axis]; + float scroll_target = window->ScrollTarget[axis]; + if (window->ScrollTargetEdgeSnapDist[axis] > 0.0f) + { + float snap_min = 0.0f; + float snap_max = window->ScrollMax[axis] + window->SizeFull[axis] - decoration_size[axis]; + scroll_target = CalcScrollEdgeSnap(scroll_target, snap_min, snap_max, window->ScrollTargetEdgeSnapDist[axis], center_ratio); + } + scroll[axis] = scroll_target - center_ratio * (window->SizeFull[axis] - decoration_size[axis]); + } + scroll[axis] = IM_FLOOR(ImMax(scroll[axis], 0.0f)); + if (!window->Collapsed && !window->SkipItems) + scroll[axis] = ImMin(scroll[axis], window->ScrollMax[axis]); + } + return scroll; +} + +void ImGui::ScrollToItem(ImGuiScrollFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ScrollToRectEx(window, g.LastItemData.NavRect, flags); +} + +void ImGui::ScrollToRect(ImGuiWindow* window, const ImRect& item_rect, ImGuiScrollFlags flags) +{ + ScrollToRectEx(window, item_rect, flags); +} + +// Scroll to keep newly navigated item fully into view +ImVec2 ImGui::ScrollToRectEx(ImGuiWindow* window, const ImRect& item_rect, ImGuiScrollFlags flags) +{ + ImGuiContext& g = *GImGui; + ImRect scroll_rect(window->InnerRect.Min - ImVec2(1, 1), window->InnerRect.Max + ImVec2(1, 1)); + scroll_rect.Min.x = ImMin(scroll_rect.Min.x + window->DecoInnerSizeX1, scroll_rect.Max.x); + scroll_rect.Min.y = ImMin(scroll_rect.Min.y + window->DecoInnerSizeY1, scroll_rect.Max.y); + //GetForegroundDrawList(window)->AddRect(item_rect.Min, item_rect.Max, IM_COL32(255,0,0,255), 0.0f, 0, 5.0f); // [DEBUG] + //GetForegroundDrawList(window)->AddRect(scroll_rect.Min, scroll_rect.Max, IM_COL32_WHITE); // [DEBUG] + + // Check that only one behavior is selected per axis + IM_ASSERT((flags & ImGuiScrollFlags_MaskX_) == 0 || ImIsPowerOfTwo(flags & ImGuiScrollFlags_MaskX_)); + IM_ASSERT((flags & ImGuiScrollFlags_MaskY_) == 0 || ImIsPowerOfTwo(flags & ImGuiScrollFlags_MaskY_)); + + // Defaults + ImGuiScrollFlags in_flags = flags; + if ((flags & ImGuiScrollFlags_MaskX_) == 0 && window->ScrollbarX) + flags |= ImGuiScrollFlags_KeepVisibleEdgeX; + if ((flags & ImGuiScrollFlags_MaskY_) == 0) + flags |= window->Appearing ? ImGuiScrollFlags_AlwaysCenterY : ImGuiScrollFlags_KeepVisibleEdgeY; + + const bool fully_visible_x = item_rect.Min.x >= scroll_rect.Min.x && item_rect.Max.x <= scroll_rect.Max.x; + const bool fully_visible_y = item_rect.Min.y >= scroll_rect.Min.y && item_rect.Max.y <= scroll_rect.Max.y; + const bool can_be_fully_visible_x = (item_rect.GetWidth() + g.Style.ItemSpacing.x * 2.0f) <= scroll_rect.GetWidth() || (window->AutoFitFramesX > 0) || (window->Flags & ImGuiWindowFlags_AlwaysAutoResize) != 0; + const bool can_be_fully_visible_y = (item_rect.GetHeight() + g.Style.ItemSpacing.y * 2.0f) <= scroll_rect.GetHeight() || (window->AutoFitFramesY > 0) || (window->Flags & ImGuiWindowFlags_AlwaysAutoResize) != 0; + + if ((flags & ImGuiScrollFlags_KeepVisibleEdgeX) && !fully_visible_x) + { + if (item_rect.Min.x < scroll_rect.Min.x || !can_be_fully_visible_x) + SetScrollFromPosX(window, item_rect.Min.x - g.Style.ItemSpacing.x - window->Pos.x, 0.0f); + else if (item_rect.Max.x >= scroll_rect.Max.x) + SetScrollFromPosX(window, item_rect.Max.x + g.Style.ItemSpacing.x - window->Pos.x, 1.0f); + } + else if (((flags & ImGuiScrollFlags_KeepVisibleCenterX) && !fully_visible_x) || (flags & ImGuiScrollFlags_AlwaysCenterX)) + { + if (can_be_fully_visible_x) + SetScrollFromPosX(window, ImFloor((item_rect.Min.x + item_rect.Max.x) * 0.5f) - window->Pos.x, 0.5f); + else + SetScrollFromPosX(window, item_rect.Min.x - window->Pos.x, 0.0f); + } + + if ((flags & ImGuiScrollFlags_KeepVisibleEdgeY) && !fully_visible_y) + { + if (item_rect.Min.y < scroll_rect.Min.y || !can_be_fully_visible_y) + SetScrollFromPosY(window, item_rect.Min.y - g.Style.ItemSpacing.y - window->Pos.y, 0.0f); + else if (item_rect.Max.y >= scroll_rect.Max.y) + SetScrollFromPosY(window, item_rect.Max.y + g.Style.ItemSpacing.y - window->Pos.y, 1.0f); + } + else if (((flags & ImGuiScrollFlags_KeepVisibleCenterY) && !fully_visible_y) || (flags & ImGuiScrollFlags_AlwaysCenterY)) + { + if (can_be_fully_visible_y) + SetScrollFromPosY(window, ImFloor((item_rect.Min.y + item_rect.Max.y) * 0.5f) - window->Pos.y, 0.5f); + else + SetScrollFromPosY(window, item_rect.Min.y - window->Pos.y, 0.0f); + } + + ImVec2 next_scroll = CalcNextScrollFromScrollTargetAndClamp(window); + ImVec2 delta_scroll = next_scroll - window->Scroll; + + // Also scroll parent window to keep us into view if necessary + if (!(flags & ImGuiScrollFlags_NoScrollParent) && (window->Flags & ImGuiWindowFlags_ChildWindow)) + { + // FIXME-SCROLL: May be an option? + if ((in_flags & (ImGuiScrollFlags_AlwaysCenterX | ImGuiScrollFlags_KeepVisibleCenterX)) != 0) + in_flags = (in_flags & ~ImGuiScrollFlags_MaskX_) | ImGuiScrollFlags_KeepVisibleEdgeX; + if ((in_flags & (ImGuiScrollFlags_AlwaysCenterY | ImGuiScrollFlags_KeepVisibleCenterY)) != 0) + in_flags = (in_flags & ~ImGuiScrollFlags_MaskY_) | ImGuiScrollFlags_KeepVisibleEdgeY; + delta_scroll += ScrollToRectEx(window->ParentWindow, ImRect(item_rect.Min - delta_scroll, item_rect.Max - delta_scroll), in_flags); + } + + return delta_scroll; +} + +float ImGui::GetScrollX() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->Scroll.x; +} + +float ImGui::GetScrollY() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->Scroll.y; +} + +float ImGui::GetScrollMaxX() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->ScrollMax.x; +} + +float ImGui::GetScrollMaxY() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->ScrollMax.y; +} + +void ImGui::SetScrollX(ImGuiWindow* window, float scroll_x) +{ + window->ScrollTarget.x = scroll_x; + window->ScrollTargetCenterRatio.x = 0.0f; + window->ScrollTargetEdgeSnapDist.x = 0.0f; +} + +void ImGui::SetScrollY(ImGuiWindow* window, float scroll_y) +{ + window->ScrollTarget.y = scroll_y; + window->ScrollTargetCenterRatio.y = 0.0f; + window->ScrollTargetEdgeSnapDist.y = 0.0f; +} + +void ImGui::SetScrollX(float scroll_x) +{ + ImGuiContext& g = *GImGui; + SetScrollX(g.CurrentWindow, scroll_x); +} + +void ImGui::SetScrollY(float scroll_y) +{ + ImGuiContext& g = *GImGui; + SetScrollY(g.CurrentWindow, scroll_y); +} + +// Note that a local position will vary depending on initial scroll value, +// This is a little bit confusing so bear with us: +// - local_pos = (absolution_pos - window->Pos) +// - So local_x/local_y are 0.0f for a position at the upper-left corner of a window, +// and generally local_x/local_y are >(padding+decoration) && <(size-padding-decoration) when in the visible area. +// - They mostly exist because of legacy API. +// Following the rules above, when trying to work with scrolling code, consider that: +// - SetScrollFromPosY(0.0f) == SetScrollY(0.0f + scroll.y) == has no effect! +// - SetScrollFromPosY(-scroll.y) == SetScrollY(-scroll.y + scroll.y) == SetScrollY(0.0f) == reset scroll. Of course writing SetScrollY(0.0f) directly then makes more sense +// We store a target position so centering and clamping can occur on the next frame when we are guaranteed to have a known window size +void ImGui::SetScrollFromPosX(ImGuiWindow* window, float local_x, float center_x_ratio) +{ + IM_ASSERT(center_x_ratio >= 0.0f && center_x_ratio <= 1.0f); + window->ScrollTarget.x = IM_FLOOR(local_x - window->DecoOuterSizeX1 - window->DecoInnerSizeX1 + window->Scroll.x); // Convert local position to scroll offset + window->ScrollTargetCenterRatio.x = center_x_ratio; + window->ScrollTargetEdgeSnapDist.x = 0.0f; +} + +void ImGui::SetScrollFromPosY(ImGuiWindow* window, float local_y, float center_y_ratio) +{ + IM_ASSERT(center_y_ratio >= 0.0f && center_y_ratio <= 1.0f); + window->ScrollTarget.y = IM_FLOOR(local_y - window->DecoOuterSizeY1 - window->DecoInnerSizeY1 + window->Scroll.y); // Convert local position to scroll offset + window->ScrollTargetCenterRatio.y = center_y_ratio; + window->ScrollTargetEdgeSnapDist.y = 0.0f; +} + +void ImGui::SetScrollFromPosX(float local_x, float center_x_ratio) +{ + ImGuiContext& g = *GImGui; + SetScrollFromPosX(g.CurrentWindow, local_x, center_x_ratio); +} + +void ImGui::SetScrollFromPosY(float local_y, float center_y_ratio) +{ + ImGuiContext& g = *GImGui; + SetScrollFromPosY(g.CurrentWindow, local_y, center_y_ratio); +} + +// center_x_ratio: 0.0f left of last item, 0.5f horizontal center of last item, 1.0f right of last item. +void ImGui::SetScrollHereX(float center_x_ratio) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + float spacing_x = ImMax(window->WindowPadding.x, g.Style.ItemSpacing.x); + float target_pos_x = ImLerp(g.LastItemData.Rect.Min.x - spacing_x, g.LastItemData.Rect.Max.x + spacing_x, center_x_ratio); + SetScrollFromPosX(window, target_pos_x - window->Pos.x, center_x_ratio); // Convert from absolute to local pos + + // Tweak: snap on edges when aiming at an item very close to the edge + window->ScrollTargetEdgeSnapDist.x = ImMax(0.0f, window->WindowPadding.x - spacing_x); +} + +// center_y_ratio: 0.0f top of last item, 0.5f vertical center of last item, 1.0f bottom of last item. +void ImGui::SetScrollHereY(float center_y_ratio) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + float spacing_y = ImMax(window->WindowPadding.y, g.Style.ItemSpacing.y); + float target_pos_y = ImLerp(window->DC.CursorPosPrevLine.y - spacing_y, window->DC.CursorPosPrevLine.y + window->DC.PrevLineSize.y + spacing_y, center_y_ratio); + SetScrollFromPosY(window, target_pos_y - window->Pos.y, center_y_ratio); // Convert from absolute to local pos + + // Tweak: snap on edges when aiming at an item very close to the edge + window->ScrollTargetEdgeSnapDist.y = ImMax(0.0f, window->WindowPadding.y - spacing_y); +} + +//----------------------------------------------------------------------------- +// [SECTION] TOOLTIPS +//----------------------------------------------------------------------------- + +bool ImGui::BeginTooltip() +{ + return BeginTooltipEx(ImGuiTooltipFlags_None, ImGuiWindowFlags_None); +} + +bool ImGui::BeginItemTooltip() +{ + if (!IsItemHovered(ImGuiHoveredFlags_ForTooltip)) + return false; + return BeginTooltipEx(ImGuiTooltipFlags_None, ImGuiWindowFlags_None); +} + +bool ImGui::BeginTooltipEx(ImGuiTooltipFlags tooltip_flags, ImGuiWindowFlags extra_window_flags) +{ + ImGuiContext& g = *GImGui; + + if (g.DragDropWithinSource || g.DragDropWithinTarget) + { + // Drag and Drop tooltips are positioning differently than other tooltips: + // - offset visibility to increase visibility around mouse. + // - never clamp within outer viewport boundary. + // We call SetNextWindowPos() to enforce position and disable clamping. + // See FindBestWindowPosForPopup() for positionning logic of other tooltips (not drag and drop ones). + //ImVec2 tooltip_pos = g.IO.MousePos - g.ActiveIdClickOffset - g.Style.WindowPadding; + ImVec2 tooltip_pos = g.IO.MousePos + TOOLTIP_DEFAULT_OFFSET * g.Style.MouseCursorScale; + SetNextWindowPos(tooltip_pos); + SetNextWindowBgAlpha(g.Style.Colors[ImGuiCol_PopupBg].w * 0.60f); + //PushStyleVar(ImGuiStyleVar_Alpha, g.Style.Alpha * 0.60f); // This would be nice but e.g ColorButton with checkboard has issue with transparent colors :( + tooltip_flags |= ImGuiTooltipFlags_OverridePrevious; + } + + char window_name[16]; + ImFormatString(window_name, IM_ARRAYSIZE(window_name), "##Tooltip_%02d", g.TooltipOverrideCount); + if (tooltip_flags & ImGuiTooltipFlags_OverridePrevious) + if (ImGuiWindow* window = FindWindowByName(window_name)) + if (window->Active) + { + // Hide previous tooltip from being displayed. We can't easily "reset" the content of a window so we create a new one. + SetWindowHiddendAndSkipItemsForCurrentFrame(window); + ImFormatString(window_name, IM_ARRAYSIZE(window_name), "##Tooltip_%02d", ++g.TooltipOverrideCount); + } + ImGuiWindowFlags flags = ImGuiWindowFlags_Tooltip | ImGuiWindowFlags_NoInputs | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_AlwaysAutoResize; + Begin(window_name, NULL, flags | extra_window_flags); + // 2023-03-09: Added bool return value to the API, but currently always returning true. + // If this ever returns false we need to update BeginDragDropSource() accordingly. + //if (!ret) + // End(); + //return ret; + return true; +} + +void ImGui::EndTooltip() +{ + IM_ASSERT(GetCurrentWindowRead()->Flags & ImGuiWindowFlags_Tooltip); // Mismatched BeginTooltip()/EndTooltip() calls + End(); +} + +void ImGui::SetTooltip(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + SetTooltipV(fmt, args); + va_end(args); +} + +void ImGui::SetTooltipV(const char* fmt, va_list args) +{ + if (!BeginTooltipEx(ImGuiTooltipFlags_OverridePrevious, ImGuiWindowFlags_None)) + return; + TextV(fmt, args); + EndTooltip(); +} + +// Shortcut to use 'style.HoverFlagsForTooltipMouse' or 'style.HoverFlagsForTooltipNav'. +// Defaults to == ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayShort when using the mouse. +void ImGui::SetItemTooltip(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + if (IsItemHovered(ImGuiHoveredFlags_ForTooltip)) + SetTooltipV(fmt, args); + va_end(args); +} + +void ImGui::SetItemTooltipV(const char* fmt, va_list args) +{ + if (IsItemHovered(ImGuiHoveredFlags_ForTooltip)) + SetTooltipV(fmt, args); +} + + +//----------------------------------------------------------------------------- +// [SECTION] POPUPS +//----------------------------------------------------------------------------- + +// Supported flags: ImGuiPopupFlags_AnyPopupId, ImGuiPopupFlags_AnyPopupLevel +bool ImGui::IsPopupOpen(ImGuiID id, ImGuiPopupFlags popup_flags) +{ + ImGuiContext& g = *GImGui; + if (popup_flags & ImGuiPopupFlags_AnyPopupId) + { + // Return true if any popup is open at the current BeginPopup() level of the popup stack + // This may be used to e.g. test for another popups already opened to handle popups priorities at the same level. + IM_ASSERT(id == 0); + if (popup_flags & ImGuiPopupFlags_AnyPopupLevel) + return g.OpenPopupStack.Size > 0; + else + return g.OpenPopupStack.Size > g.BeginPopupStack.Size; + } + else + { + if (popup_flags & ImGuiPopupFlags_AnyPopupLevel) + { + // Return true if the popup is open anywhere in the popup stack + for (int n = 0; n < g.OpenPopupStack.Size; n++) + if (g.OpenPopupStack[n].PopupId == id) + return true; + return false; + } + else + { + // Return true if the popup is open at the current BeginPopup() level of the popup stack (this is the most-common query) + return g.OpenPopupStack.Size > g.BeginPopupStack.Size && g.OpenPopupStack[g.BeginPopupStack.Size].PopupId == id; + } + } +} + +bool ImGui::IsPopupOpen(const char* str_id, ImGuiPopupFlags popup_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiID id = (popup_flags & ImGuiPopupFlags_AnyPopupId) ? 0 : g.CurrentWindow->GetID(str_id); + if ((popup_flags & ImGuiPopupFlags_AnyPopupLevel) && id != 0) + IM_ASSERT(0 && "Cannot use IsPopupOpen() with a string id and ImGuiPopupFlags_AnyPopupLevel."); // But non-string version is legal and used internally + return IsPopupOpen(id, popup_flags); +} + +// Also see FindBlockingModal(NULL) +ImGuiWindow* ImGui::GetTopMostPopupModal() +{ + ImGuiContext& g = *GImGui; + for (int n = g.OpenPopupStack.Size - 1; n >= 0; n--) + if (ImGuiWindow* popup = g.OpenPopupStack.Data[n].Window) + if (popup->Flags & ImGuiWindowFlags_Modal) + return popup; + return NULL; +} + +// See Demo->Stacked Modal to confirm what this is for. +ImGuiWindow* ImGui::GetTopMostAndVisiblePopupModal() +{ + ImGuiContext& g = *GImGui; + for (int n = g.OpenPopupStack.Size - 1; n >= 0; n--) + if (ImGuiWindow* popup = g.OpenPopupStack.Data[n].Window) + if ((popup->Flags & ImGuiWindowFlags_Modal) && IsWindowActiveAndVisible(popup)) + return popup; + return NULL; +} + +void ImGui::OpenPopup(const char* str_id, ImGuiPopupFlags popup_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiID id = g.CurrentWindow->GetID(str_id); + IMGUI_DEBUG_LOG_POPUP("[popup] OpenPopup(\"%s\" -> 0x%08X)\n", str_id, id); + OpenPopupEx(id, popup_flags); +} + +void ImGui::OpenPopup(ImGuiID id, ImGuiPopupFlags popup_flags) +{ + OpenPopupEx(id, popup_flags); +} + +// Mark popup as open (toggle toward open state). +// Popups are closed when user click outside, or activate a pressable item, or CloseCurrentPopup() is called within a BeginPopup()/EndPopup() block. +// Popup identifiers are relative to the current ID-stack (so OpenPopup and BeginPopup needs to be at the same level). +// One open popup per level of the popup hierarchy (NB: when assigning we reset the Window member of ImGuiPopupRef to NULL) +void ImGui::OpenPopupEx(ImGuiID id, ImGuiPopupFlags popup_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* parent_window = g.CurrentWindow; + const int current_stack_size = g.BeginPopupStack.Size; + + if (popup_flags & ImGuiPopupFlags_NoOpenOverExistingPopup) + if (IsPopupOpen((ImGuiID)0, ImGuiPopupFlags_AnyPopupId)) + return; + + ImGuiPopupData popup_ref; // Tagged as new ref as Window will be set back to NULL if we write this into OpenPopupStack. + popup_ref.PopupId = id; + popup_ref.Window = NULL; + popup_ref.BackupNavWindow = g.NavWindow; // When popup closes focus may be restored to NavWindow (depend on window type). + popup_ref.OpenFrameCount = g.FrameCount; + popup_ref.OpenParentId = parent_window->IDStack.back(); + popup_ref.OpenPopupPos = NavCalcPreferredRefPos(); + popup_ref.OpenMousePos = IsMousePosValid(&g.IO.MousePos) ? g.IO.MousePos : popup_ref.OpenPopupPos; + + IMGUI_DEBUG_LOG_POPUP("[popup] OpenPopupEx(0x%08X)\n", id); + if (g.OpenPopupStack.Size < current_stack_size + 1) + { + g.OpenPopupStack.push_back(popup_ref); + } + else + { + // Gently handle the user mistakenly calling OpenPopup() every frame. It is a programming mistake! However, if we were to run the regular code path, the ui + // would become completely unusable because the popup will always be in hidden-while-calculating-size state _while_ claiming focus. Which would be a very confusing + // situation for the programmer. Instead, we silently allow the popup to proceed, it will keep reappearing and the programming error will be more obvious to understand. + if (g.OpenPopupStack[current_stack_size].PopupId == id && g.OpenPopupStack[current_stack_size].OpenFrameCount == g.FrameCount - 1) + { + g.OpenPopupStack[current_stack_size].OpenFrameCount = popup_ref.OpenFrameCount; + } + else + { + // Close child popups if any, then flag popup for open/reopen + ClosePopupToLevel(current_stack_size, false); + g.OpenPopupStack.push_back(popup_ref); + } + + // When reopening a popup we first refocus its parent, otherwise if its parent is itself a popup it would get closed by ClosePopupsOverWindow(). + // This is equivalent to what ClosePopupToLevel() does. + //if (g.OpenPopupStack[current_stack_size].PopupId == id) + // FocusWindow(parent_window); + } +} + +// When popups are stacked, clicking on a lower level popups puts focus back to it and close popups above it. +// This function closes any popups that are over 'ref_window'. +void ImGui::ClosePopupsOverWindow(ImGuiWindow* ref_window, bool restore_focus_to_window_under_popup) +{ + ImGuiContext& g = *GImGui; + if (g.OpenPopupStack.Size == 0) + return; + + // Don't close our own child popup windows. + int popup_count_to_keep = 0; + if (ref_window) + { + // Find the highest popup which is a descendant of the reference window (generally reference window = NavWindow) + for (; popup_count_to_keep < g.OpenPopupStack.Size; popup_count_to_keep++) + { + ImGuiPopupData& popup = g.OpenPopupStack[popup_count_to_keep]; + if (!popup.Window) + continue; + IM_ASSERT((popup.Window->Flags & ImGuiWindowFlags_Popup) != 0); + if (popup.Window->Flags & ImGuiWindowFlags_ChildWindow) + continue; + + // Trim the stack unless the popup is a direct parent of the reference window (the reference window is often the NavWindow) + // - With this stack of window, clicking/focusing Popup1 will close Popup2 and Popup3: + // Window -> Popup1 -> Popup2 -> Popup3 + // - Each popups may contain child windows, which is why we compare ->RootWindow! + // Window -> Popup1 -> Popup1_Child -> Popup2 -> Popup2_Child + bool ref_window_is_descendent_of_popup = false; + for (int n = popup_count_to_keep; n < g.OpenPopupStack.Size; n++) + if (ImGuiWindow* popup_window = g.OpenPopupStack[n].Window) + if (IsWindowWithinBeginStackOf(ref_window, popup_window)) + { + ref_window_is_descendent_of_popup = true; + break; + } + if (!ref_window_is_descendent_of_popup) + break; + } + } + if (popup_count_to_keep < g.OpenPopupStack.Size) // This test is not required but it allows to set a convenient breakpoint on the statement below + { + IMGUI_DEBUG_LOG_POPUP("[popup] ClosePopupsOverWindow(\"%s\")\n", ref_window ? ref_window->Name : ""); + ClosePopupToLevel(popup_count_to_keep, restore_focus_to_window_under_popup); + } +} + +void ImGui::ClosePopupsExceptModals() +{ + ImGuiContext& g = *GImGui; + + int popup_count_to_keep; + for (popup_count_to_keep = g.OpenPopupStack.Size; popup_count_to_keep > 0; popup_count_to_keep--) + { + ImGuiWindow* window = g.OpenPopupStack[popup_count_to_keep - 1].Window; + if (!window || (window->Flags & ImGuiWindowFlags_Modal)) + break; + } + if (popup_count_to_keep < g.OpenPopupStack.Size) // This test is not required but it allows to set a convenient breakpoint on the statement below + ClosePopupToLevel(popup_count_to_keep, true); +} + +void ImGui::ClosePopupToLevel(int remaining, bool restore_focus_to_window_under_popup) +{ + ImGuiContext& g = *GImGui; + IMGUI_DEBUG_LOG_POPUP("[popup] ClosePopupToLevel(%d), restore_focus_to_window_under_popup=%d\n", remaining, restore_focus_to_window_under_popup); + IM_ASSERT(remaining >= 0 && remaining < g.OpenPopupStack.Size); + + // Trim open popup stack + ImGuiWindow* popup_window = g.OpenPopupStack[remaining].Window; + ImGuiWindow* popup_backup_nav_window = g.OpenPopupStack[remaining].BackupNavWindow; + g.OpenPopupStack.resize(remaining); + + if (restore_focus_to_window_under_popup) + { + ImGuiWindow* focus_window = (popup_window && popup_window->Flags & ImGuiWindowFlags_ChildMenu) ? popup_window->ParentWindow : popup_backup_nav_window; + if (focus_window && !focus_window->WasActive && popup_window) + FocusTopMostWindowUnderOne(popup_window, NULL, NULL, ImGuiFocusRequestFlags_RestoreFocusedChild); // Fallback + else + FocusWindow(focus_window, (g.NavLayer == ImGuiNavLayer_Main) ? ImGuiFocusRequestFlags_RestoreFocusedChild : ImGuiFocusRequestFlags_None); + } +} + +// Close the popup we have begin-ed into. +void ImGui::CloseCurrentPopup() +{ + ImGuiContext& g = *GImGui; + int popup_idx = g.BeginPopupStack.Size - 1; + if (popup_idx < 0 || popup_idx >= g.OpenPopupStack.Size || g.BeginPopupStack[popup_idx].PopupId != g.OpenPopupStack[popup_idx].PopupId) + return; + + // Closing a menu closes its top-most parent popup (unless a modal) + while (popup_idx > 0) + { + ImGuiWindow* popup_window = g.OpenPopupStack[popup_idx].Window; + ImGuiWindow* parent_popup_window = g.OpenPopupStack[popup_idx - 1].Window; + bool close_parent = false; + if (popup_window && (popup_window->Flags & ImGuiWindowFlags_ChildMenu)) + if (parent_popup_window && !(parent_popup_window->Flags & ImGuiWindowFlags_MenuBar)) + close_parent = true; + if (!close_parent) + break; + popup_idx--; + } + IMGUI_DEBUG_LOG_POPUP("[popup] CloseCurrentPopup %d -> %d\n", g.BeginPopupStack.Size - 1, popup_idx); + ClosePopupToLevel(popup_idx, true); + + // A common pattern is to close a popup when selecting a menu item/selectable that will open another window. + // To improve this usage pattern, we avoid nav highlight for a single frame in the parent window. + // Similarly, we could avoid mouse hover highlight in this window but it is less visually problematic. + if (ImGuiWindow* window = g.NavWindow) + window->DC.NavHideHighlightOneFrame = true; +} + +// Attention! BeginPopup() adds default flags which BeginPopupEx()! +bool ImGui::BeginPopupEx(ImGuiID id, ImGuiWindowFlags flags) +{ + ImGuiContext& g = *GImGui; + if (!IsPopupOpen(id, ImGuiPopupFlags_None)) + { + g.NextWindowData.ClearFlags(); // We behave like Begin() and need to consume those values + return false; + } + + char name[20]; + if (flags & ImGuiWindowFlags_ChildMenu) + ImFormatString(name, IM_ARRAYSIZE(name), "##Menu_%02d", g.BeginMenuCount); // Recycle windows based on depth + else + ImFormatString(name, IM_ARRAYSIZE(name), "##Popup_%08x", id); // Not recycling, so we can close/open during the same frame + + flags |= ImGuiWindowFlags_Popup; + bool is_open = Begin(name, NULL, flags); + if (!is_open) // NB: Begin can return false when the popup is completely clipped (e.g. zero size display) + EndPopup(); + + return is_open; +} + +bool ImGui::BeginPopup(const char* str_id, ImGuiWindowFlags flags) +{ + ImGuiContext& g = *GImGui; + if (g.OpenPopupStack.Size <= g.BeginPopupStack.Size) // Early out for performance + { + g.NextWindowData.ClearFlags(); // We behave like Begin() and need to consume those values + return false; + } + flags |= ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoSavedSettings; + ImGuiID id = g.CurrentWindow->GetID(str_id); + return BeginPopupEx(id, flags); +} + +// If 'p_open' is specified for a modal popup window, the popup will have a regular close button which will close the popup. +// Note that popup visibility status is owned by Dear ImGui (and manipulated with e.g. OpenPopup) so the actual value of *p_open is meaningless here. +bool ImGui::BeginPopupModal(const char* name, bool* p_open, ImGuiWindowFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + const ImGuiID id = window->GetID(name); + if (!IsPopupOpen(id, ImGuiPopupFlags_None)) + { + g.NextWindowData.ClearFlags(); // We behave like Begin() and need to consume those values + return false; + } + + // Center modal windows by default for increased visibility + // (this won't really last as settings will kick in, and is mostly for backward compatibility. user may do the same themselves) + // FIXME: Should test for (PosCond & window->SetWindowPosAllowFlags) with the upcoming window. + if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasPos) == 0) + { + const ImGuiViewport* viewport = GetMainViewport(); + SetNextWindowPos(viewport->GetCenter(), ImGuiCond_FirstUseEver, ImVec2(0.5f, 0.5f)); + } + + flags |= ImGuiWindowFlags_Popup | ImGuiWindowFlags_Modal | ImGuiWindowFlags_NoCollapse; + const bool is_open = Begin(name, p_open, flags); + if (!is_open || (p_open && !*p_open)) // NB: is_open can be 'false' when the popup is completely clipped (e.g. zero size display) + { + EndPopup(); + if (is_open) + ClosePopupToLevel(g.BeginPopupStack.Size, true); + return false; + } + return is_open; +} + +void ImGui::EndPopup() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(window->Flags & ImGuiWindowFlags_Popup); // Mismatched BeginPopup()/EndPopup() calls + IM_ASSERT(g.BeginPopupStack.Size > 0); + + // Make all menus and popups wrap around for now, may need to expose that policy (e.g. focus scope could include wrap/loop policy flags used by new move requests) + if (g.NavWindow == window) + NavMoveRequestTryWrapping(window, ImGuiNavMoveFlags_LoopY); + + // Child-popups don't need to be laid out + IM_ASSERT(g.WithinEndChild == false); + if (window->Flags & ImGuiWindowFlags_ChildWindow) + g.WithinEndChild = true; + End(); + g.WithinEndChild = false; +} + +// Helper to open a popup if mouse button is released over the item +// - This is essentially the same as BeginPopupContextItem() but without the trailing BeginPopup() +void ImGui::OpenPopupOnItemClick(const char* str_id, ImGuiPopupFlags popup_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + int mouse_button = (popup_flags & ImGuiPopupFlags_MouseButtonMask_); + if (IsMouseReleased(mouse_button) && IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup)) + { + ImGuiID id = str_id ? window->GetID(str_id) : g.LastItemData.ID; // If user hasn't passed an ID, we can use the LastItemID. Using LastItemID as a Popup ID won't conflict! + IM_ASSERT(id != 0); // You cannot pass a NULL str_id if the last item has no identifier (e.g. a Text() item) + OpenPopupEx(id, popup_flags); + } +} + +// This is a helper to handle the simplest case of associating one named popup to one given widget. +// - To create a popup associated to the last item, you generally want to pass a NULL value to str_id. +// - To create a popup with a specific identifier, pass it in str_id. +// - This is useful when using using BeginPopupContextItem() on an item which doesn't have an identifier, e.g. a Text() call. +// - This is useful when multiple code locations may want to manipulate/open the same popup, given an explicit id. +// - You may want to handle the whole on user side if you have specific needs (e.g. tweaking IsItemHovered() parameters). +// This is essentially the same as: +// id = str_id ? GetID(str_id) : GetItemID(); +// OpenPopupOnItemClick(str_id, ImGuiPopupFlags_MouseButtonRight); +// return BeginPopup(id); +// Which is essentially the same as: +// id = str_id ? GetID(str_id) : GetItemID(); +// if (IsItemHovered() && IsMouseReleased(ImGuiMouseButton_Right)) +// OpenPopup(id); +// return BeginPopup(id); +// The main difference being that this is tweaked to avoid computing the ID twice. +bool ImGui::BeginPopupContextItem(const char* str_id, ImGuiPopupFlags popup_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return false; + ImGuiID id = str_id ? window->GetID(str_id) : g.LastItemData.ID; // If user hasn't passed an ID, we can use the LastItemID. Using LastItemID as a Popup ID won't conflict! + IM_ASSERT(id != 0); // You cannot pass a NULL str_id if the last item has no identifier (e.g. a Text() item) + int mouse_button = (popup_flags & ImGuiPopupFlags_MouseButtonMask_); + if (IsMouseReleased(mouse_button) && IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup)) + OpenPopupEx(id, popup_flags); + return BeginPopupEx(id, ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoSavedSettings); +} + +bool ImGui::BeginPopupContextWindow(const char* str_id, ImGuiPopupFlags popup_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (!str_id) + str_id = "window_context"; + ImGuiID id = window->GetID(str_id); + int mouse_button = (popup_flags & ImGuiPopupFlags_MouseButtonMask_); + if (IsMouseReleased(mouse_button) && IsWindowHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup)) + if (!(popup_flags & ImGuiPopupFlags_NoOpenOverItems) || !IsAnyItemHovered()) + OpenPopupEx(id, popup_flags); + return BeginPopupEx(id, ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoSavedSettings); +} + +bool ImGui::BeginPopupContextVoid(const char* str_id, ImGuiPopupFlags popup_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (!str_id) + str_id = "void_context"; + ImGuiID id = window->GetID(str_id); + int mouse_button = (popup_flags & ImGuiPopupFlags_MouseButtonMask_); + if (IsMouseReleased(mouse_button) && !IsWindowHovered(ImGuiHoveredFlags_AnyWindow)) + if (GetTopMostPopupModal() == NULL) + OpenPopupEx(id, popup_flags); + return BeginPopupEx(id, ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoSavedSettings); +} + +// r_avoid = the rectangle to avoid (e.g. for tooltip it is a rectangle around the mouse cursor which we want to avoid. for popups it's a small point around the cursor.) +// r_outer = the visible area rectangle, minus safe area padding. If our popup size won't fit because of safe area padding we ignore it. +// (r_outer is usually equivalent to the viewport rectangle minus padding, but when multi-viewports are enabled and monitor +// information are available, it may represent the entire platform monitor from the frame of reference of the current viewport. +// this allows us to have tooltips/popups displayed out of the parent viewport.) +ImVec2 ImGui::FindBestWindowPosForPopupEx(const ImVec2& ref_pos, const ImVec2& size, ImGuiDir* last_dir, const ImRect& r_outer, const ImRect& r_avoid, ImGuiPopupPositionPolicy policy) +{ + ImVec2 base_pos_clamped = ImClamp(ref_pos, r_outer.Min, r_outer.Max - size); + //GetForegroundDrawList()->AddRect(r_avoid.Min, r_avoid.Max, IM_COL32(255,0,0,255)); + //GetForegroundDrawList()->AddRect(r_outer.Min, r_outer.Max, IM_COL32(0,255,0,255)); + + // Combo Box policy (we want a connecting edge) + if (policy == ImGuiPopupPositionPolicy_ComboBox) + { + const ImGuiDir dir_prefered_order[ImGuiDir_COUNT] = { ImGuiDir_Down, ImGuiDir_Right, ImGuiDir_Left, ImGuiDir_Up }; + for (int n = (*last_dir != ImGuiDir_None) ? -1 : 0; n < ImGuiDir_COUNT; n++) + { + const ImGuiDir dir = (n == -1) ? *last_dir : dir_prefered_order[n]; + if (n != -1 && dir == *last_dir) // Already tried this direction? + continue; + ImVec2 pos; + if (dir == ImGuiDir_Down) pos = ImVec2(r_avoid.Min.x, r_avoid.Max.y); // Below, Toward Right (default) + if (dir == ImGuiDir_Right) pos = ImVec2(r_avoid.Min.x, r_avoid.Min.y - size.y); // Above, Toward Right + if (dir == ImGuiDir_Left) pos = ImVec2(r_avoid.Max.x - size.x, r_avoid.Max.y); // Below, Toward Left + if (dir == ImGuiDir_Up) pos = ImVec2(r_avoid.Max.x - size.x, r_avoid.Min.y - size.y); // Above, Toward Left + if (!r_outer.Contains(ImRect(pos, pos + size))) + continue; + *last_dir = dir; + return pos; + } + } + + // Tooltip and Default popup policy + // (Always first try the direction we used on the last frame, if any) + if (policy == ImGuiPopupPositionPolicy_Tooltip || policy == ImGuiPopupPositionPolicy_Default) + { + const ImGuiDir dir_prefered_order[ImGuiDir_COUNT] = { ImGuiDir_Right, ImGuiDir_Down, ImGuiDir_Up, ImGuiDir_Left }; + for (int n = (*last_dir != ImGuiDir_None) ? -1 : 0; n < ImGuiDir_COUNT; n++) + { + const ImGuiDir dir = (n == -1) ? *last_dir : dir_prefered_order[n]; + if (n != -1 && dir == *last_dir) // Already tried this direction? + continue; + + const float avail_w = (dir == ImGuiDir_Left ? r_avoid.Min.x : r_outer.Max.x) - (dir == ImGuiDir_Right ? r_avoid.Max.x : r_outer.Min.x); + const float avail_h = (dir == ImGuiDir_Up ? r_avoid.Min.y : r_outer.Max.y) - (dir == ImGuiDir_Down ? r_avoid.Max.y : r_outer.Min.y); + + // If there's not enough room on one axis, there's no point in positioning on a side on this axis (e.g. when not enough width, use a top/bottom position to maximize available width) + if (avail_w < size.x && (dir == ImGuiDir_Left || dir == ImGuiDir_Right)) + continue; + if (avail_h < size.y && (dir == ImGuiDir_Up || dir == ImGuiDir_Down)) + continue; + + ImVec2 pos; + pos.x = (dir == ImGuiDir_Left) ? r_avoid.Min.x - size.x : (dir == ImGuiDir_Right) ? r_avoid.Max.x : base_pos_clamped.x; + pos.y = (dir == ImGuiDir_Up) ? r_avoid.Min.y - size.y : (dir == ImGuiDir_Down) ? r_avoid.Max.y : base_pos_clamped.y; + + // Clamp top-left corner of popup + pos.x = ImMax(pos.x, r_outer.Min.x); + pos.y = ImMax(pos.y, r_outer.Min.y); + + *last_dir = dir; + return pos; + } + } + + // Fallback when not enough room: + *last_dir = ImGuiDir_None; + + // For tooltip we prefer avoiding the cursor at all cost even if it means that part of the tooltip won't be visible. + if (policy == ImGuiPopupPositionPolicy_Tooltip) + return ref_pos + ImVec2(2, 2); + + // Otherwise try to keep within display + ImVec2 pos = ref_pos; + pos.x = ImMax(ImMin(pos.x + size.x, r_outer.Max.x) - size.x, r_outer.Min.x); + pos.y = ImMax(ImMin(pos.y + size.y, r_outer.Max.y) - size.y, r_outer.Min.y); + return pos; +} + +// Note that this is used for popups, which can overlap the non work-area of individual viewports. +ImRect ImGui::GetPopupAllowedExtentRect(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + IM_UNUSED(window); + ImRect r_screen = ((ImGuiViewportP*)(void*)GetMainViewport())->GetMainRect(); + ImVec2 padding = g.Style.DisplaySafeAreaPadding; + r_screen.Expand(ImVec2((r_screen.GetWidth() > padding.x * 2) ? -padding.x : 0.0f, (r_screen.GetHeight() > padding.y * 2) ? -padding.y : 0.0f)); + return r_screen; +} + +ImVec2 ImGui::FindBestWindowPosForPopup(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + + ImRect r_outer = GetPopupAllowedExtentRect(window); + if (window->Flags & ImGuiWindowFlags_ChildMenu) + { + // Child menus typically request _any_ position within the parent menu item, and then we move the new menu outside the parent bounds. + // This is how we end up with child menus appearing (most-commonly) on the right of the parent menu. + IM_ASSERT(g.CurrentWindow == window); + ImGuiWindow* parent_window = g.CurrentWindowStack[g.CurrentWindowStack.Size - 2].Window; + float horizontal_overlap = g.Style.ItemInnerSpacing.x; // We want some overlap to convey the relative depth of each menu (currently the amount of overlap is hard-coded to style.ItemSpacing.x). + ImRect r_avoid; + if (parent_window->DC.MenuBarAppending) + r_avoid = ImRect(-FLT_MAX, parent_window->ClipRect.Min.y, FLT_MAX, parent_window->ClipRect.Max.y); // Avoid parent menu-bar. If we wanted multi-line menu-bar, we may instead want to have the calling window setup e.g. a NextWindowData.PosConstraintAvoidRect field + else + r_avoid = ImRect(parent_window->Pos.x + horizontal_overlap, -FLT_MAX, parent_window->Pos.x + parent_window->Size.x - horizontal_overlap - parent_window->ScrollbarSizes.x, FLT_MAX); + return FindBestWindowPosForPopupEx(window->Pos, window->Size, &window->AutoPosLastDirection, r_outer, r_avoid, ImGuiPopupPositionPolicy_Default); + } + if (window->Flags & ImGuiWindowFlags_Popup) + { + return FindBestWindowPosForPopupEx(window->Pos, window->Size, &window->AutoPosLastDirection, r_outer, ImRect(window->Pos, window->Pos), ImGuiPopupPositionPolicy_Default); // Ideally we'd disable r_avoid here + } + if (window->Flags & ImGuiWindowFlags_Tooltip) + { + // Position tooltip (always follows mouse + clamp within outer boundaries) + // Note that drag and drop tooltips are NOT using this path: BeginTooltipEx() manually sets their position. + // In theory we could handle both cases in same location, but requires a bit of shuffling as drag and drop tooltips are calling SetWindowPos() leading to 'window_pos_set_by_api' being set in Begin() + IM_ASSERT(g.CurrentWindow == window); + const float scale = g.Style.MouseCursorScale; + const ImVec2 ref_pos = NavCalcPreferredRefPos(); + const ImVec2 tooltip_pos = ref_pos + TOOLTIP_DEFAULT_OFFSET * scale; + ImRect r_avoid; + if (!g.NavDisableHighlight && g.NavDisableMouseHover && !(g.IO.ConfigFlags & ImGuiConfigFlags_NavEnableSetMousePos)) + r_avoid = ImRect(ref_pos.x - 16, ref_pos.y - 8, ref_pos.x + 16, ref_pos.y + 8); + else + r_avoid = ImRect(ref_pos.x - 16, ref_pos.y - 8, ref_pos.x + 24 * scale, ref_pos.y + 24 * scale); // FIXME: Hard-coded based on mouse cursor shape expectation. Exact dimension not very important. + //GetForegroundDrawList()->AddRect(r_avoid.Min, r_avoid.Max, IM_COL32(255, 0, 255, 255)); + return FindBestWindowPosForPopupEx(tooltip_pos, window->Size, &window->AutoPosLastDirection, r_outer, r_avoid, ImGuiPopupPositionPolicy_Tooltip); + } + IM_ASSERT(0); + return window->Pos; +} + +//----------------------------------------------------------------------------- +// [SECTION] KEYBOARD/GAMEPAD NAVIGATION +//----------------------------------------------------------------------------- + +// FIXME-NAV: The existence of SetNavID vs SetFocusID vs FocusWindow() needs to be clarified/reworked. +// In our terminology those should be interchangeable, yet right now this is super confusing. +// Those two functions are merely a legacy artifact, so at minimum naming should be clarified. + +void ImGui::SetNavWindow(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + if (g.NavWindow != window) + { + IMGUI_DEBUG_LOG_FOCUS("[focus] SetNavWindow(\"%s\")\n", window ? window->Name : ""); + g.NavWindow = window; + } + g.NavInitRequest = g.NavMoveSubmitted = g.NavMoveScoringItems = false; + NavUpdateAnyRequestFlag(); +} + +void ImGui::NavClearPreferredPosForAxis(ImGuiAxis axis) +{ + ImGuiContext& g = *GImGui; + g.NavWindow->RootWindowForNav->NavPreferredScoringPosRel[g.NavLayer][axis] = FLT_MAX; +} + +void ImGui::SetNavID(ImGuiID id, ImGuiNavLayer nav_layer, ImGuiID focus_scope_id, const ImRect& rect_rel) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.NavWindow != NULL); + IM_ASSERT(nav_layer == ImGuiNavLayer_Main || nav_layer == ImGuiNavLayer_Menu); + g.NavId = id; + g.NavLayer = nav_layer; + g.NavFocusScopeId = focus_scope_id; + g.NavWindow->NavLastIds[nav_layer] = id; + // g.NavWindow->NavRectRel[nav_layer] = rect_rel; + + // Clear preferred scoring position (NavMoveRequestApplyResult() will tend to restore it) + // NavClearPreferredPosForAxis(ImGuiAxis_X); + // NavClearPreferredPosForAxis(ImGuiAxis_Y); +} + +void ImGui::SetFocusID(ImGuiID id, ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(id != 0); + + if (g.NavWindow != window) + SetNavWindow(window); + + // Assume that SetFocusID() is called in the context where its window->DC.NavLayerCurrent and g.CurrentFocusScopeId are valid. + // Note that window may be != g.CurrentWindow (e.g. SetFocusID call in InputTextEx for multi-line text) + const ImGuiNavLayer nav_layer = window->DC.NavLayerCurrent; + g.NavId = id; + g.NavLayer = nav_layer; + g.NavFocusScopeId = g.CurrentFocusScopeId; + window->NavLastIds[nav_layer] = id; + if (g.LastItemData.ID == id) + window->NavRectRel[nav_layer] = WindowRectAbsToRel(window, g.LastItemData.NavRect); + + if (g.ActiveIdSource == ImGuiInputSource_Keyboard || g.ActiveIdSource == ImGuiInputSource_Gamepad) + g.NavDisableMouseHover = true; + else + g.NavDisableHighlight = true; + + // Clear preferred scoring position (NavMoveRequestApplyResult() will tend to restore it) + NavClearPreferredPosForAxis(ImGuiAxis_X); + NavClearPreferredPosForAxis(ImGuiAxis_Y); +} + +static ImGuiDir ImGetDirQuadrantFromDelta(float dx, float dy) +{ + if (ImFabs(dx) > ImFabs(dy)) + return (dx > 0.0f) ? ImGuiDir_Right : ImGuiDir_Left; + return (dy > 0.0f) ? ImGuiDir_Down : ImGuiDir_Up; +} + +static float inline NavScoreItemDistInterval(float cand_min, float cand_max, float curr_min, float curr_max) +{ + if (cand_max < curr_min) + return cand_max - curr_min; + if (curr_max < cand_min) + return cand_min - curr_max; + return 0.0f; +} + +// Scoring function for gamepad/keyboard directional navigation. Based on https://gist.github.com/rygorous/6981057 +static bool ImGui::NavScoreItem(ImGuiNavItemData* result) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (g.NavLayer != window->DC.NavLayerCurrent) + return false; + + // FIXME: Those are not good variables names + ImRect cand = g.LastItemData.NavRect; // Current item nav rectangle + const ImRect curr = g.NavScoringRect; // Current modified source rect (NB: we've applied Max.x = Min.x in NavUpdate() to inhibit the effect of having varied item width) + g.NavScoringDebugCount++; + + // When entering through a NavFlattened border, we consider child window items as fully clipped for scoring + if (window->ParentWindow == g.NavWindow) + { + IM_ASSERT((window->Flags | g.NavWindow->Flags) & ImGuiWindowFlags_NavFlattened); + if (!window->ClipRect.Overlaps(cand)) + return false; + cand.ClipWithFull(window->ClipRect); // This allows the scored item to not overlap other candidates in the parent window + } + + // Compute distance between boxes + // FIXME-NAV: Introducing biases for vertical navigation, needs to be removed. + float dbx = NavScoreItemDistInterval(cand.Min.x, cand.Max.x, curr.Min.x, curr.Max.x); + float dby = NavScoreItemDistInterval(ImLerp(cand.Min.y, cand.Max.y, 0.2f), ImLerp(cand.Min.y, cand.Max.y, 0.8f), ImLerp(curr.Min.y, curr.Max.y, 0.2f), ImLerp(curr.Min.y, curr.Max.y, 0.8f)); // Scale down on Y to keep using box-distance for vertically touching items + if (dby != 0.0f && dbx != 0.0f) + dbx = (dbx / 1000.0f) + ((dbx > 0.0f) ? +1.0f : -1.0f); + float dist_box = ImFabs(dbx) + ImFabs(dby); + + // Compute distance between centers (this is off by a factor of 2, but we only compare center distances with each other so it doesn't matter) + float dcx = (cand.Min.x + cand.Max.x) - (curr.Min.x + curr.Max.x); + float dcy = (cand.Min.y + cand.Max.y) - (curr.Min.y + curr.Max.y); + float dist_center = ImFabs(dcx) + ImFabs(dcy); // L1 metric (need this for our connectedness guarantee) + + // Determine which quadrant of 'curr' our candidate item 'cand' lies in based on distance + ImGuiDir quadrant; + float dax = 0.0f, day = 0.0f, dist_axial = 0.0f; + if (dbx != 0.0f || dby != 0.0f) + { + // For non-overlapping boxes, use distance between boxes + dax = dbx; + day = dby; + dist_axial = dist_box; + quadrant = ImGetDirQuadrantFromDelta(dbx, dby); + } + else if (dcx != 0.0f || dcy != 0.0f) + { + // For overlapping boxes with different centers, use distance between centers + dax = dcx; + day = dcy; + dist_axial = dist_center; + quadrant = ImGetDirQuadrantFromDelta(dcx, dcy); + } + else + { + // Degenerate case: two overlapping buttons with same center, break ties arbitrarily (note that LastItemId here is really the _previous_ item order, but it doesn't matter) + quadrant = (g.LastItemData.ID < g.NavId) ? ImGuiDir_Left : ImGuiDir_Right; + } + + const ImGuiDir move_dir = g.NavMoveDir; +#if IMGUI_DEBUG_NAV_SCORING + char buf[200]; + if (g.IO.KeyCtrl) // Hold CTRL to preview score in matching quadrant. CTRL+Arrow to rotate. + { + if (quadrant == move_dir) + { + ImFormatString(buf, IM_ARRAYSIZE(buf), "%.0f/%.0f", dist_box, dist_center); + ImDrawList* draw_list = GetForegroundDrawList(window); + draw_list->AddRectFilled(cand.Min, cand.Max, IM_COL32(255, 0, 0, 80)); + draw_list->AddRectFilled(cand.Min, cand.Min + CalcTextSize(buf), IM_COL32(255, 0, 0, 200)); + draw_list->AddText(cand.Min, IM_COL32(255, 255, 255, 255), buf); + } + } + const bool debug_hovering = IsMouseHoveringRect(cand.Min, cand.Max); + const bool debug_tty = (g.IO.KeyCtrl && IsKeyPressed(ImGuiKey_Space)); + if (debug_hovering || debug_tty) + { + ImFormatString(buf, IM_ARRAYSIZE(buf), + "d-box (%7.3f,%7.3f) -> %7.3f\nd-center (%7.3f,%7.3f) -> %7.3f\nd-axial (%7.3f,%7.3f) -> %7.3f\nnav %c, quadrant %c", + dbx, dby, dist_box, dcx, dcy, dist_center, dax, day, dist_axial, "-WENS"[move_dir+1], "-WENS"[quadrant+1]); + if (debug_hovering) + { + ImDrawList* draw_list = GetForegroundDrawList(window); + draw_list->AddRect(curr.Min, curr.Max, IM_COL32(255, 200, 0, 100)); + draw_list->AddRect(cand.Min, cand.Max, IM_COL32(255, 255, 0, 200)); + draw_list->AddRectFilled(cand.Max - ImVec2(4, 4), cand.Max + CalcTextSize(buf) + ImVec2(4, 4), IM_COL32(40, 0, 0, 200)); + draw_list->AddText(cand.Max, ~0U, buf); + } + if (debug_tty) { IMGUI_DEBUG_LOG_NAV("id 0x%08X\n%s\n", g.LastItemData.ID, buf); } + } +#endif + + // Is it in the quadrant we're interested in moving to? + bool new_best = false; + if (quadrant == move_dir) + { + // Does it beat the current best candidate? + if (dist_box < result->DistBox) + { + result->DistBox = dist_box; + result->DistCenter = dist_center; + return true; + } + if (dist_box == result->DistBox) + { + // Try using distance between center points to break ties + if (dist_center < result->DistCenter) + { + result->DistCenter = dist_center; + new_best = true; + } + else if (dist_center == result->DistCenter) + { + // Still tied! we need to be extra-careful to make sure everything gets linked properly. We consistently break ties by symbolically moving "later" items + // (with higher index) to the right/downwards by an infinitesimal amount since we the current "best" button already (so it must have a lower index), + // this is fairly easy. This rule ensures that all buttons with dx==dy==0 will end up being linked in order of appearance along the x axis. + if (((move_dir == ImGuiDir_Up || move_dir == ImGuiDir_Down) ? dby : dbx) < 0.0f) // moving bj to the right/down decreases distance + new_best = true; + } + } + } + + // Axial check: if 'curr' has no link at all in some direction and 'cand' lies roughly in that direction, add a tentative link. This will only be kept if no "real" matches + // are found, so it only augments the graph produced by the above method using extra links. (important, since it doesn't guarantee strong connectedness) + // This is just to avoid buttons having no links in a particular direction when there's a suitable neighbor. you get good graphs without this too. + // 2017/09/29: FIXME: This now currently only enabled inside menu bars, ideally we'd disable it everywhere. Menus in particular need to catch failure. For general navigation it feels awkward. + // Disabling it may lead to disconnected graphs when nodes are very spaced out on different axis. Perhaps consider offering this as an option? + if (result->DistBox == FLT_MAX && dist_axial < result->DistAxial) // Check axial match + if (g.NavLayer == ImGuiNavLayer_Menu && !(g.NavWindow->Flags & ImGuiWindowFlags_ChildMenu)) + if ((move_dir == ImGuiDir_Left && dax < 0.0f) || (move_dir == ImGuiDir_Right && dax > 0.0f) || (move_dir == ImGuiDir_Up && day < 0.0f) || (move_dir == ImGuiDir_Down && day > 0.0f)) + { + result->DistAxial = dist_axial; + new_best = true; + } + + return new_best; +} + +static void ImGui::NavApplyItemToResult(ImGuiNavItemData* result) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + result->Window = window; + result->ID = g.LastItemData.ID; + result->FocusScopeId = g.CurrentFocusScopeId; + result->InFlags = g.LastItemData.InFlags; + result->RectRel = WindowRectAbsToRel(window, g.LastItemData.NavRect); +} + +// True when current work location may be scrolled horizontally when moving left / right. +// This is generally always true UNLESS within a column. We don't have a vertical equivalent. +void ImGui::NavUpdateCurrentWindowIsScrollPushableX() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + window->DC.NavIsScrollPushableX = (g.CurrentTable == NULL && window->DC.CurrentColumns == NULL); +} + +// We get there when either NavId == id, or when g.NavAnyRequest is set (which is updated by NavUpdateAnyRequestFlag above) +// This is called after LastItemData is set. +static void ImGui::NavProcessItem() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + const ImGuiID id = g.LastItemData.ID; + const ImGuiItemFlags item_flags = g.LastItemData.InFlags; + + // When inside a container that isn't scrollable with Left<>Right, clip NavRect accordingly (#2221) + if (window->DC.NavIsScrollPushableX == false) + { + g.LastItemData.NavRect.Min.x = ImClamp(g.LastItemData.NavRect.Min.x, window->ClipRect.Min.x, window->ClipRect.Max.x); + g.LastItemData.NavRect.Max.x = ImClamp(g.LastItemData.NavRect.Max.x, window->ClipRect.Min.x, window->ClipRect.Max.x); + } + const ImRect nav_bb = g.LastItemData.NavRect; + + // Process Init Request + if (g.NavInitRequest && g.NavLayer == window->DC.NavLayerCurrent && (item_flags & ImGuiItemFlags_Disabled) == 0) + { + // Even if 'ImGuiItemFlags_NoNavDefaultFocus' is on (typically collapse/close button) we record the first ResultId so they can be used as a fallback + const bool candidate_for_nav_default_focus = (item_flags & ImGuiItemFlags_NoNavDefaultFocus) == 0; + if (candidate_for_nav_default_focus || g.NavInitResult.ID == 0) + { + NavApplyItemToResult(&g.NavInitResult); + } + if (candidate_for_nav_default_focus) + { + g.NavInitRequest = false; // Found a match, clear request + NavUpdateAnyRequestFlag(); + } + } + + // Process Move Request (scoring for navigation) + // FIXME-NAV: Consider policy for double scoring (scoring from NavScoringRect + scoring from a rect wrapped according to current wrapping policy) + if (g.NavMoveScoringItems && (item_flags & ImGuiItemFlags_Disabled) == 0) + { + const bool is_tabbing = (g.NavMoveFlags & ImGuiNavMoveFlags_IsTabbing) != 0; + if (is_tabbing) + { + NavProcessItemForTabbingRequest(id, item_flags, g.NavMoveFlags); + } + else if (g.NavId != id || (g.NavMoveFlags & ImGuiNavMoveFlags_AllowCurrentNavId)) + { + ImGuiNavItemData* result = (window == g.NavWindow) ? &g.NavMoveResultLocal : &g.NavMoveResultOther; + if (NavScoreItem(result)) + NavApplyItemToResult(result); + + // Features like PageUp/PageDown need to maintain a separate score for the visible set of items. + const float VISIBLE_RATIO = 0.70f; + if ((g.NavMoveFlags & ImGuiNavMoveFlags_AlsoScoreVisibleSet) && window->ClipRect.Overlaps(nav_bb)) + if (ImClamp(nav_bb.Max.y, window->ClipRect.Min.y, window->ClipRect.Max.y) - ImClamp(nav_bb.Min.y, window->ClipRect.Min.y, window->ClipRect.Max.y) >= (nav_bb.Max.y - nav_bb.Min.y) * VISIBLE_RATIO) + if (NavScoreItem(&g.NavMoveResultLocalVisible)) + NavApplyItemToResult(&g.NavMoveResultLocalVisible); + } + } + + // Update information for currently focused/navigated item + if (g.NavId == id) + { + if (g.NavWindow != window) + SetNavWindow(window); // Always refresh g.NavWindow, because some operations such as FocusItem() may not have a window. + g.NavLayer = window->DC.NavLayerCurrent; + g.NavFocusScopeId = g.CurrentFocusScopeId; + g.NavIdIsAlive = true; + window->NavRectRel[window->DC.NavLayerCurrent] = WindowRectAbsToRel(window, nav_bb); // Store item bounding box (relative to window position) + } +} + +// Handle "scoring" of an item for a tabbing/focusing request initiated by NavUpdateCreateTabbingRequest(). +// Note that SetKeyboardFocusHere() API calls are considered tabbing requests! +// - Case 1: no nav/active id: set result to first eligible item, stop storing. +// - Case 2: tab forward: on ref id set counter, on counter elapse store result +// - Case 3: tab forward wrap: set result to first eligible item (preemptively), on ref id set counter, on next frame if counter hasn't elapsed store result. // FIXME-TABBING: Could be done as a next-frame forwarded request +// - Case 4: tab backward: store all results, on ref id pick prev, stop storing +// - Case 5: tab backward wrap: store all results, on ref id if no result keep storing until last // FIXME-TABBING: Could be done as next-frame forwarded requested +void ImGui::NavProcessItemForTabbingRequest(ImGuiID id, ImGuiItemFlags item_flags, ImGuiNavMoveFlags move_flags) +{ + ImGuiContext& g = *GImGui; + + if ((move_flags & ImGuiNavMoveFlags_FocusApi) == 0) + if (g.NavLayer != g.CurrentWindow->DC.NavLayerCurrent) + return; + + // - Can always land on an item when using API call. + // - Tabbing with _NavEnableKeyboard (space/enter/arrows): goes through every item. + // - Tabbing without _NavEnableKeyboard: goes through inputable items only. + bool can_stop; + if (move_flags & ImGuiNavMoveFlags_FocusApi) + can_stop = true; + else + can_stop = (item_flags & ImGuiItemFlags_NoTabStop) == 0 && ((g.IO.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) || (item_flags & ImGuiItemFlags_Inputable)); + + // Always store in NavMoveResultLocal (unlike directional request which uses NavMoveResultOther on sibling/flattened windows) + ImGuiNavItemData* result = &g.NavMoveResultLocal; + if (g.NavTabbingDir == +1) + { + // Tab Forward or SetKeyboardFocusHere() with >= 0 + if (can_stop && g.NavTabbingResultFirst.ID == 0) + NavApplyItemToResult(&g.NavTabbingResultFirst); + if (can_stop && g.NavTabbingCounter > 0 && --g.NavTabbingCounter == 0) + NavMoveRequestResolveWithLastItem(result); + else if (g.NavId == id) + g.NavTabbingCounter = 1; + } + else if (g.NavTabbingDir == -1) + { + // Tab Backward + if (g.NavId == id) + { + if (result->ID) + { + g.NavMoveScoringItems = false; + NavUpdateAnyRequestFlag(); + } + } + else if (can_stop) + { + // Keep applying until reaching NavId + NavApplyItemToResult(result); + } + } + else if (g.NavTabbingDir == 0) + { + if (can_stop && g.NavId == id) + NavMoveRequestResolveWithLastItem(result); + if (can_stop && g.NavTabbingResultFirst.ID == 0) // Tab init + NavApplyItemToResult(&g.NavTabbingResultFirst); + } +} + +bool ImGui::NavMoveRequestButNoResultYet() +{ + ImGuiContext& g = *GImGui; + return g.NavMoveScoringItems && g.NavMoveResultLocal.ID == 0 && g.NavMoveResultOther.ID == 0; +} + +// FIXME: ScoringRect is not set +void ImGui::NavMoveRequestSubmit(ImGuiDir move_dir, ImGuiDir clip_dir, ImGuiNavMoveFlags move_flags, ImGuiScrollFlags scroll_flags) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.NavWindow != NULL); + + if (move_flags & ImGuiNavMoveFlags_IsTabbing) + move_flags |= ImGuiNavMoveFlags_AllowCurrentNavId; + + g.NavMoveSubmitted = g.NavMoveScoringItems = true; + g.NavMoveDir = move_dir; + g.NavMoveDirForDebug = move_dir; + g.NavMoveClipDir = clip_dir; + g.NavMoveFlags = move_flags; + g.NavMoveScrollFlags = scroll_flags; + g.NavMoveForwardToNextFrame = false; + g.NavMoveKeyMods = g.IO.KeyMods; + g.NavMoveResultLocal.Clear(); + g.NavMoveResultLocalVisible.Clear(); + g.NavMoveResultOther.Clear(); + g.NavTabbingCounter = 0; + g.NavTabbingResultFirst.Clear(); + NavUpdateAnyRequestFlag(); +} + +void ImGui::NavMoveRequestResolveWithLastItem(ImGuiNavItemData* result) +{ + ImGuiContext& g = *GImGui; + g.NavMoveScoringItems = false; // Ensure request doesn't need more processing + NavApplyItemToResult(result); + NavUpdateAnyRequestFlag(); +} + +// Called by TreePop() to implement ImGuiTreeNodeFlags_NavLeftJumpsBackHere +void ImGui::NavMoveRequestResolveWithPastTreeNode(ImGuiNavItemData* result, ImGuiNavTreeNodeData* tree_node_data) +{ + ImGuiContext& g = *GImGui; + g.NavMoveScoringItems = false; + g.LastItemData.ID = tree_node_data->ID; + g.LastItemData.InFlags = tree_node_data->InFlags; + g.LastItemData.NavRect = tree_node_data->NavRect; + NavApplyItemToResult(result); // Result this instead of implementing a NavApplyPastTreeNodeToResult() + NavClearPreferredPosForAxis(ImGuiAxis_Y); + NavUpdateAnyRequestFlag(); +} + +void ImGui::NavMoveRequestCancel() +{ + ImGuiContext& g = *GImGui; + g.NavMoveSubmitted = g.NavMoveScoringItems = false; + NavUpdateAnyRequestFlag(); +} + +// Forward will reuse the move request again on the next frame (generally with modifications done to it) +void ImGui::NavMoveRequestForward(ImGuiDir move_dir, ImGuiDir clip_dir, ImGuiNavMoveFlags move_flags, ImGuiScrollFlags scroll_flags) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.NavMoveForwardToNextFrame == false); + NavMoveRequestCancel(); + g.NavMoveForwardToNextFrame = true; + g.NavMoveDir = move_dir; + g.NavMoveClipDir = clip_dir; + g.NavMoveFlags = move_flags | ImGuiNavMoveFlags_Forwarded; + g.NavMoveScrollFlags = scroll_flags; +} + +// Navigation wrap-around logic is delayed to the end of the frame because this operation is only valid after entire +// popup is assembled and in case of appended popups it is not clear which EndPopup() call is final. +void ImGui::NavMoveRequestTryWrapping(ImGuiWindow* window, ImGuiNavMoveFlags wrap_flags) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT((wrap_flags & ImGuiNavMoveFlags_WrapMask_ ) != 0 && (wrap_flags & ~ImGuiNavMoveFlags_WrapMask_) == 0); // Call with _WrapX, _WrapY, _LoopX, _LoopY + + // In theory we should test for NavMoveRequestButNoResultYet() but there's no point doing it: + // as NavEndFrame() will do the same test. It will end up calling NavUpdateCreateWrappingRequest(). + if (g.NavWindow == window && g.NavMoveScoringItems && g.NavLayer == ImGuiNavLayer_Main) + g.NavMoveFlags = (g.NavMoveFlags & ~ImGuiNavMoveFlags_WrapMask_) | wrap_flags; +} + +// FIXME: This could be replaced by updating a frame number in each window when (window == NavWindow) and (NavLayer == 0). +// This way we could find the last focused window among our children. It would be much less confusing this way? +static void ImGui::NavSaveLastChildNavWindowIntoParent(ImGuiWindow* nav_window) +{ + ImGuiWindow* parent = nav_window; + while (parent && parent->RootWindow != parent && (parent->Flags & (ImGuiWindowFlags_Popup | ImGuiWindowFlags_ChildMenu)) == 0) + parent = parent->ParentWindow; + if (parent && parent != nav_window) + parent->NavLastChildNavWindow = nav_window; +} + +// Restore the last focused child. +// Call when we are expected to land on the Main Layer (0) after FocusWindow() +static ImGuiWindow* ImGui::NavRestoreLastChildNavWindow(ImGuiWindow* window) +{ + if (window->NavLastChildNavWindow && window->NavLastChildNavWindow->WasActive) + return window->NavLastChildNavWindow; + return window; +} + +void ImGui::NavRestoreLayer(ImGuiNavLayer layer) +{ + ImGuiContext& g = *GImGui; + if (layer == ImGuiNavLayer_Main) + { + ImGuiWindow* prev_nav_window = g.NavWindow; + g.NavWindow = NavRestoreLastChildNavWindow(g.NavWindow); // FIXME-NAV: Should clear ongoing nav requests? + if (prev_nav_window) + IMGUI_DEBUG_LOG_FOCUS("[focus] NavRestoreLayer: from \"%s\" to SetNavWindow(\"%s\")\n", prev_nav_window->Name, g.NavWindow->Name); + } + ImGuiWindow* window = g.NavWindow; + if (window->NavLastIds[layer] != 0) + { + SetNavID(window->NavLastIds[layer], layer, 0, window->NavRectRel[layer]); + } + else + { + g.NavLayer = layer; + NavInitWindow(window, true); + } +} + +void ImGui::NavRestoreHighlightAfterMove() +{ + ImGuiContext& g = *GImGui; + g.NavDisableHighlight = false; + g.NavDisableMouseHover = g.NavMousePosDirty = true; +} + +static inline void ImGui::NavUpdateAnyRequestFlag() +{ + ImGuiContext& g = *GImGui; + g.NavAnyRequest = g.NavMoveScoringItems || g.NavInitRequest || (IMGUI_DEBUG_NAV_SCORING && g.NavWindow != NULL); + if (g.NavAnyRequest) + IM_ASSERT(g.NavWindow != NULL); +} + +// This needs to be called before we submit any widget (aka in or before Begin) +void ImGui::NavInitWindow(ImGuiWindow* window, bool force_reinit) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(window == g.NavWindow); + + if (window->Flags & ImGuiWindowFlags_NoNavInputs) + { + g.NavId = 0; + g.NavFocusScopeId = window->NavRootFocusScopeId; + return; + } + + bool init_for_nav = false; + if (window == window->RootWindow || (window->Flags & ImGuiWindowFlags_Popup) || (window->NavLastIds[0] == 0) || force_reinit) + init_for_nav = true; + IMGUI_DEBUG_LOG_NAV("[nav] NavInitRequest: from NavInitWindow(), init_for_nav=%d, window=\"%s\", layer=%d\n", init_for_nav, window->Name, g.NavLayer); + if (init_for_nav) + { + SetNavID(0, g.NavLayer, window->NavRootFocusScopeId, ImRect()); + g.NavInitRequest = true; + g.NavInitRequestFromMove = false; + g.NavInitResult.ID = 0; + NavUpdateAnyRequestFlag(); + } + else + { + g.NavId = window->NavLastIds[0]; + g.NavFocusScopeId = window->NavRootFocusScopeId; + } +} + +static ImVec2 ImGui::NavCalcPreferredRefPos() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.NavWindow; + if (g.NavDisableHighlight || !g.NavDisableMouseHover || !window) + { + // Mouse (we need a fallback in case the mouse becomes invalid after being used) + // The +1.0f offset when stored by OpenPopupEx() allows reopening this or another popup (same or another mouse button) while not moving the mouse, it is pretty standard. + // In theory we could move that +1.0f offset in OpenPopupEx() + ImVec2 p = IsMousePosValid(&g.IO.MousePos) ? g.IO.MousePos : g.MouseLastValidPos; + return ImVec2(p.x + 1.0f, p.y); + } + else + { + // When navigation is active and mouse is disabled, pick a position around the bottom left of the currently navigated item + // Take account of upcoming scrolling (maybe set mouse pos should be done in EndFrame?) + ImRect rect_rel = WindowRectRelToAbs(window, window->NavRectRel[g.NavLayer]); + if (window->LastFrameActive != g.FrameCount && (window->ScrollTarget.x != FLT_MAX || window->ScrollTarget.y != FLT_MAX)) + { + ImVec2 next_scroll = CalcNextScrollFromScrollTargetAndClamp(window); + rect_rel.Translate(window->Scroll - next_scroll); + } + ImVec2 pos = ImVec2(rect_rel.Min.x + ImMin(g.Style.FramePadding.x * 4, rect_rel.GetWidth()), rect_rel.Max.y - ImMin(g.Style.FramePadding.y, rect_rel.GetHeight())); + ImGuiViewport* viewport = GetMainViewport(); + return ImFloor(ImClamp(pos, viewport->Pos, viewport->Pos + viewport->Size)); // ImFloor() is important because non-integer mouse position application in backend might be lossy and result in undesirable non-zero delta. + } +} + +float ImGui::GetNavTweakPressedAmount(ImGuiAxis axis) +{ + ImGuiContext& g = *GImGui; + float repeat_delay, repeat_rate; + GetTypematicRepeatRate(ImGuiInputFlags_RepeatRateNavTweak, &repeat_delay, &repeat_rate); + + ImGuiKey key_less, key_more; + if (g.NavInputSource == ImGuiInputSource_Gamepad) + { + key_less = (axis == ImGuiAxis_X) ? ImGuiKey_GamepadDpadLeft : ImGuiKey_GamepadDpadUp; + key_more = (axis == ImGuiAxis_X) ? ImGuiKey_GamepadDpadRight : ImGuiKey_GamepadDpadDown; + } + else + { + key_less = (axis == ImGuiAxis_X) ? ImGuiKey_LeftArrow : ImGuiKey_UpArrow; + key_more = (axis == ImGuiAxis_X) ? ImGuiKey_RightArrow : ImGuiKey_DownArrow; + } + float amount = (float)GetKeyPressedAmount(key_more, repeat_delay, repeat_rate) - (float)GetKeyPressedAmount(key_less, repeat_delay, repeat_rate); + if (amount != 0.0f && IsKeyDown(key_less) && IsKeyDown(key_more)) // Cancel when opposite directions are held, regardless of repeat phase + amount = 0.0f; + return amount; +} + +static void ImGui::NavUpdate() +{ + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + + io.WantSetMousePos = false; + //if (g.NavScoringDebugCount > 0) IMGUI_DEBUG_LOG_NAV("[nav] NavScoringDebugCount %d for '%s' layer %d (Init:%d, Move:%d)\n", g.NavScoringDebugCount, g.NavWindow ? g.NavWindow->Name : "NULL", g.NavLayer, g.NavInitRequest || g.NavInitResultId != 0, g.NavMoveRequest); + + // Set input source based on which keys are last pressed (as some features differs when used with Gamepad vs Keyboard) + // FIXME-NAV: Now that keys are separated maybe we can get rid of NavInputSource? + const bool nav_gamepad_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) != 0 && (io.BackendFlags & ImGuiBackendFlags_HasGamepad) != 0; + const ImGuiKey nav_gamepad_keys_to_change_source[] = { ImGuiKey_GamepadFaceRight, ImGuiKey_GamepadFaceLeft, ImGuiKey_GamepadFaceUp, ImGuiKey_GamepadFaceDown, ImGuiKey_GamepadDpadRight, ImGuiKey_GamepadDpadLeft, ImGuiKey_GamepadDpadUp, ImGuiKey_GamepadDpadDown }; + if (nav_gamepad_active) + for (ImGuiKey key : nav_gamepad_keys_to_change_source) + if (IsKeyDown(key)) + g.NavInputSource = ImGuiInputSource_Gamepad; + const bool nav_keyboard_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) != 0; + const ImGuiKey nav_keyboard_keys_to_change_source[] = { ImGuiKey_Space, ImGuiKey_Enter, ImGuiKey_Escape, ImGuiKey_RightArrow, ImGuiKey_LeftArrow, ImGuiKey_UpArrow, ImGuiKey_DownArrow }; + if (nav_keyboard_active) + for (ImGuiKey key : nav_keyboard_keys_to_change_source) + if (IsKeyDown(key)) + g.NavInputSource = ImGuiInputSource_Keyboard; + + // Process navigation init request (select first/default focus) + g.NavJustMovedToId = 0; + if (g.NavInitResult.ID != 0) + NavInitRequestApplyResult(); + g.NavInitRequest = false; + g.NavInitRequestFromMove = false; + g.NavInitResult.ID = 0; + + // Process navigation move request + if (g.NavMoveSubmitted) + NavMoveRequestApplyResult(); + g.NavTabbingCounter = 0; + g.NavMoveSubmitted = g.NavMoveScoringItems = false; + + // Schedule mouse position update (will be done at the bottom of this function, after 1) processing all move requests and 2) updating scrolling) + bool set_mouse_pos = false; + if (g.NavMousePosDirty && g.NavIdIsAlive) + if (!g.NavDisableHighlight && g.NavDisableMouseHover && g.NavWindow) + set_mouse_pos = true; + g.NavMousePosDirty = false; + IM_ASSERT(g.NavLayer == ImGuiNavLayer_Main || g.NavLayer == ImGuiNavLayer_Menu); + + // Store our return window (for returning from Menu Layer to Main Layer) and clear it as soon as we step back in our own Layer 0 + if (g.NavWindow) + NavSaveLastChildNavWindowIntoParent(g.NavWindow); + if (g.NavWindow && g.NavWindow->NavLastChildNavWindow != NULL && g.NavLayer == ImGuiNavLayer_Main) + g.NavWindow->NavLastChildNavWindow = NULL; + + // Update CTRL+TAB and Windowing features (hold Square to move/resize/etc.) + NavUpdateWindowing(); + + // Set output flags for user application + io.NavActive = (nav_keyboard_active || nav_gamepad_active) && g.NavWindow && !(g.NavWindow->Flags & ImGuiWindowFlags_NoNavInputs); + io.NavVisible = (io.NavActive && g.NavId != 0 && !g.NavDisableHighlight) || (g.NavWindowingTarget != NULL); + + // Process NavCancel input (to close a popup, get back to parent, clear focus) + NavUpdateCancelRequest(); + + // Process manual activation request + g.NavActivateId = g.NavActivateDownId = g.NavActivatePressedId = 0; + g.NavActivateFlags = ImGuiActivateFlags_None; + if (g.NavId != 0 && !g.NavDisableHighlight && !g.NavWindowingTarget && g.NavWindow && !(g.NavWindow->Flags & ImGuiWindowFlags_NoNavInputs)) + { + const bool activate_down = (nav_keyboard_active && IsKeyDown(ImGuiKey_Space)) || (nav_gamepad_active && IsKeyDown(ImGuiKey_NavGamepadActivate)); + const bool activate_pressed = activate_down && ((nav_keyboard_active && IsKeyPressed(ImGuiKey_Space, false)) || (nav_gamepad_active && IsKeyPressed(ImGuiKey_NavGamepadActivate, false))); + const bool input_down = (nav_keyboard_active && IsKeyDown(ImGuiKey_Enter)) || (nav_gamepad_active && IsKeyDown(ImGuiKey_NavGamepadInput)); + const bool input_pressed = input_down && ((nav_keyboard_active && IsKeyPressed(ImGuiKey_Enter, false)) || (nav_gamepad_active && IsKeyPressed(ImGuiKey_NavGamepadInput, false))); + if (g.ActiveId == 0 && activate_pressed) + { + g.NavActivateId = g.NavId; + g.NavActivateFlags = ImGuiActivateFlags_PreferTweak; + } + if ((g.ActiveId == 0 || g.ActiveId == g.NavId) && input_pressed) + { + g.NavActivateId = g.NavId; + g.NavActivateFlags = ImGuiActivateFlags_PreferInput; + } + if ((g.ActiveId == 0 || g.ActiveId == g.NavId) && (activate_down || input_down)) + g.NavActivateDownId = g.NavId; + if ((g.ActiveId == 0 || g.ActiveId == g.NavId) && (activate_pressed || input_pressed)) + g.NavActivatePressedId = g.NavId; + } + if (g.NavWindow && (g.NavWindow->Flags & ImGuiWindowFlags_NoNavInputs)) + g.NavDisableHighlight = true; + if (g.NavActivateId != 0) + IM_ASSERT(g.NavActivateDownId == g.NavActivateId); + + // Process programmatic activation request + // FIXME-NAV: Those should eventually be queued (unlike focus they don't cancel each others) + if (g.NavNextActivateId != 0) + { + g.NavActivateId = g.NavActivateDownId = g.NavActivatePressedId = g.NavNextActivateId; + g.NavActivateFlags = g.NavNextActivateFlags; + } + g.NavNextActivateId = 0; + + // Process move requests + NavUpdateCreateMoveRequest(); + if (g.NavMoveDir == ImGuiDir_None) + NavUpdateCreateTabbingRequest(); + NavUpdateAnyRequestFlag(); + g.NavIdIsAlive = false; + + // Scrolling + if (g.NavWindow && !(g.NavWindow->Flags & ImGuiWindowFlags_NoNavInputs) && !g.NavWindowingTarget) + { + // *Fallback* manual-scroll with Nav directional keys when window has no navigable item + ImGuiWindow* window = g.NavWindow; + const float scroll_speed = IM_ROUND(window->CalcFontSize() * 100 * io.DeltaTime); // We need round the scrolling speed because sub-pixel scroll isn't reliably supported. + const ImGuiDir move_dir = g.NavMoveDir; + if (window->DC.NavLayersActiveMask == 0x00 && window->DC.NavWindowHasScrollY && move_dir != ImGuiDir_None) + { + if (move_dir == ImGuiDir_Left || move_dir == ImGuiDir_Right) + SetScrollX(window, ImFloor(window->Scroll.x + ((move_dir == ImGuiDir_Left) ? -1.0f : +1.0f) * scroll_speed)); + if (move_dir == ImGuiDir_Up || move_dir == ImGuiDir_Down) + SetScrollY(window, ImFloor(window->Scroll.y + ((move_dir == ImGuiDir_Up) ? -1.0f : +1.0f) * scroll_speed)); + } + + // *Normal* Manual scroll with LStick + // Next movement request will clamp the NavId reference rectangle to the visible area, so navigation will resume within those bounds. + if (nav_gamepad_active) + { + const ImVec2 scroll_dir = GetKeyMagnitude2d(ImGuiKey_GamepadLStickLeft, ImGuiKey_GamepadLStickRight, ImGuiKey_GamepadLStickUp, ImGuiKey_GamepadLStickDown); + const float tweak_factor = IsKeyDown(ImGuiKey_NavGamepadTweakSlow) ? 1.0f / 10.0f : IsKeyDown(ImGuiKey_NavGamepadTweakFast) ? 10.0f : 1.0f; + if (scroll_dir.x != 0.0f && window->ScrollbarX) + SetScrollX(window, ImFloor(window->Scroll.x + scroll_dir.x * scroll_speed * tweak_factor)); + if (scroll_dir.y != 0.0f) + SetScrollY(window, ImFloor(window->Scroll.y + scroll_dir.y * scroll_speed * tweak_factor)); + } + } + + // Always prioritize mouse highlight if navigation is disabled + if (!nav_keyboard_active && !nav_gamepad_active) + { + g.NavDisableHighlight = true; + g.NavDisableMouseHover = set_mouse_pos = false; + } + + // Update mouse position if requested + // (This will take into account the possibility that a Scroll was queued in the window to offset our absolute mouse position before scroll has been applied) + if (set_mouse_pos && (io.ConfigFlags & ImGuiConfigFlags_NavEnableSetMousePos) && (io.BackendFlags & ImGuiBackendFlags_HasSetMousePos)) + { + io.MousePos = io.MousePosPrev = NavCalcPreferredRefPos(); + io.WantSetMousePos = true; + //IMGUI_DEBUG_LOG_IO("SetMousePos: (%.1f,%.1f)\n", io.MousePos.x, io.MousePos.y); + } + + // [DEBUG] + g.NavScoringDebugCount = 0; +#if IMGUI_DEBUG_NAV_RECTS + if (ImGuiWindow* debug_window = g.NavWindow) + { + ImDrawList* draw_list = GetForegroundDrawList(debug_window); + int layer = g.NavLayer; /* for (int layer = 0; layer < 2; layer++)*/ { ImRect r = WindowRectRelToAbs(debug_window, debug_window->NavRectRel[layer]); draw_list->AddRect(r.Min, r.Max, IM_COL32(255, 200, 0, 255)); } + //if (1) { ImU32 col = (!debug_window->Hidden) ? IM_COL32(255,0,255,255) : IM_COL32(255,0,0,255); ImVec2 p = NavCalcPreferredRefPos(); char buf[32]; ImFormatString(buf, 32, "%d", g.NavLayer); draw_list->AddCircleFilled(p, 3.0f, col); draw_list->AddText(NULL, 13.0f, p + ImVec2(8,-4), col, buf); } + } +#endif +} + +void ImGui::NavInitRequestApplyResult() +{ + // In very rare cases g.NavWindow may be null (e.g. clearing focus after requesting an init request, which does happen when releasing Alt while clicking on void) + ImGuiContext& g = *GImGui; + if (!g.NavWindow) + return; + + ImGuiNavItemData* result = &g.NavInitResult; + if (g.NavId != result->ID) + { + g.NavJustMovedToId = result->ID; + g.NavJustMovedToFocusScopeId = result->FocusScopeId; + g.NavJustMovedToKeyMods = 0; + } + + // Apply result from previous navigation init request (will typically select the first item, unless SetItemDefaultFocus() has been called) + // FIXME-NAV: On _NavFlattened windows, g.NavWindow will only be updated during subsequent frame. Not a problem currently. + IMGUI_DEBUG_LOG_NAV("[nav] NavInitRequest: ApplyResult: NavID 0x%08X in Layer %d Window \"%s\"\n", result->ID, g.NavLayer, g.NavWindow->Name); + SetNavID(result->ID, g.NavLayer, result->FocusScopeId, result->RectRel); + g.NavIdIsAlive = true; // Mark as alive from previous frame as we got a result + if (g.NavInitRequestFromMove) + NavRestoreHighlightAfterMove(); +} + +// Bias scoring rect ahead of scoring + update preferred pos (if missing) using source position +static void NavBiasScoringRect(ImRect& r, ImVec2& preferred_pos_rel, ImGuiDir move_dir, ImGuiNavMoveFlags move_flags) +{ + // Bias initial rect + ImGuiContext& g = *GImGui; + const ImVec2 rel_to_abs_offset = g.NavWindow->DC.CursorStartPos; + + // Initialize bias on departure if we don't have any. So mouse-click + arrow will record bias. + // - We default to L/U bias, so moving down from a large source item into several columns will land on left-most column. + // - But each successful move sets new bias on one axis, only cleared when using mouse. + if ((move_flags & ImGuiNavMoveFlags_Forwarded) == 0) + { + if (preferred_pos_rel.x == FLT_MAX) + preferred_pos_rel.x = ImMin(r.Min.x + 1.0f, r.Max.x) - rel_to_abs_offset.x; + if (preferred_pos_rel.y == FLT_MAX) + preferred_pos_rel.y = r.GetCenter().y - rel_to_abs_offset.y; + } + + // Apply general bias on the other axis + if ((move_dir == ImGuiDir_Up || move_dir == ImGuiDir_Down) && preferred_pos_rel.x != FLT_MAX) + r.Min.x = r.Max.x = preferred_pos_rel.x + rel_to_abs_offset.x; + else if ((move_dir == ImGuiDir_Left || move_dir == ImGuiDir_Right) && preferred_pos_rel.y != FLT_MAX) + r.Min.y = r.Max.y = preferred_pos_rel.y + rel_to_abs_offset.y; +} + +void ImGui::NavUpdateCreateMoveRequest() +{ + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + ImGuiWindow* window = g.NavWindow; + const bool nav_gamepad_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) != 0 && (io.BackendFlags & ImGuiBackendFlags_HasGamepad) != 0; + const bool nav_keyboard_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) != 0; + + if (g.NavMoveForwardToNextFrame && window != NULL) + { + // Forwarding previous request (which has been modified, e.g. wrap around menus rewrite the requests with a starting rectangle at the other side of the window) + // (preserve most state, which were already set by the NavMoveRequestForward() function) + IM_ASSERT(g.NavMoveDir != ImGuiDir_None && g.NavMoveClipDir != ImGuiDir_None); + IM_ASSERT(g.NavMoveFlags & ImGuiNavMoveFlags_Forwarded); + IMGUI_DEBUG_LOG_NAV("[nav] NavMoveRequestForward %d\n", g.NavMoveDir); + } + else + { + // Initiate directional inputs request + g.NavMoveDir = ImGuiDir_None; + g.NavMoveFlags = ImGuiNavMoveFlags_None; + g.NavMoveScrollFlags = ImGuiScrollFlags_None; + if (window && !g.NavWindowingTarget && !(window->Flags & ImGuiWindowFlags_NoNavInputs)) + { + const ImGuiInputFlags repeat_mode = ImGuiInputFlags_Repeat | (ImGuiInputFlags)ImGuiInputFlags_RepeatRateNavMove; + if (!IsActiveIdUsingNavDir(ImGuiDir_Left) && ((nav_gamepad_active && IsKeyPressed(ImGuiKey_GamepadDpadLeft, ImGuiKeyOwner_None, repeat_mode)) || (nav_keyboard_active && IsKeyPressed(ImGuiKey_LeftArrow, ImGuiKeyOwner_None, repeat_mode)))) { g.NavMoveDir = ImGuiDir_Left; } + if (!IsActiveIdUsingNavDir(ImGuiDir_Right) && ((nav_gamepad_active && IsKeyPressed(ImGuiKey_GamepadDpadRight, ImGuiKeyOwner_None, repeat_mode)) || (nav_keyboard_active && IsKeyPressed(ImGuiKey_RightArrow, ImGuiKeyOwner_None, repeat_mode)))) { g.NavMoveDir = ImGuiDir_Right; } + if (!IsActiveIdUsingNavDir(ImGuiDir_Up) && ((nav_gamepad_active && IsKeyPressed(ImGuiKey_GamepadDpadUp, ImGuiKeyOwner_None, repeat_mode)) || (nav_keyboard_active && IsKeyPressed(ImGuiKey_UpArrow, ImGuiKeyOwner_None, repeat_mode)))) { g.NavMoveDir = ImGuiDir_Up; } + if (!IsActiveIdUsingNavDir(ImGuiDir_Down) && ((nav_gamepad_active && IsKeyPressed(ImGuiKey_GamepadDpadDown, ImGuiKeyOwner_None, repeat_mode)) || (nav_keyboard_active && IsKeyPressed(ImGuiKey_DownArrow, ImGuiKeyOwner_None, repeat_mode)))) { g.NavMoveDir = ImGuiDir_Down; } + } + g.NavMoveClipDir = g.NavMoveDir; + g.NavScoringNoClipRect = ImRect(+FLT_MAX, +FLT_MAX, -FLT_MAX, -FLT_MAX); + } + + // Update PageUp/PageDown/Home/End scroll + // FIXME-NAV: Consider enabling those keys even without the master ImGuiConfigFlags_NavEnableKeyboard flag? + float scoring_rect_offset_y = 0.0f; + if (window && g.NavMoveDir == ImGuiDir_None && nav_keyboard_active) + scoring_rect_offset_y = NavUpdatePageUpPageDown(); + if (scoring_rect_offset_y != 0.0f) + { + g.NavScoringNoClipRect = window->InnerRect; + g.NavScoringNoClipRect.TranslateY(scoring_rect_offset_y); + } + + // [DEBUG] Always send a request when holding CTRL. Hold CTRL + Arrow change the direction. +#if IMGUI_DEBUG_NAV_SCORING + //if (io.KeyCtrl && IsKeyPressed(ImGuiKey_C)) + // g.NavMoveDirForDebug = (ImGuiDir)((g.NavMoveDirForDebug + 1) & 3); + if (io.KeyCtrl) + { + if (g.NavMoveDir == ImGuiDir_None) + g.NavMoveDir = g.NavMoveDirForDebug; + g.NavMoveClipDir = g.NavMoveDir; + g.NavMoveFlags |= ImGuiNavMoveFlags_DebugNoResult; + } +#endif + + // Submit + g.NavMoveForwardToNextFrame = false; + if (g.NavMoveDir != ImGuiDir_None) + NavMoveRequestSubmit(g.NavMoveDir, g.NavMoveClipDir, g.NavMoveFlags, g.NavMoveScrollFlags); + + // Moving with no reference triggers an init request (will be used as a fallback if the direction fails to find a match) + if (g.NavMoveSubmitted && g.NavId == 0) + { + IMGUI_DEBUG_LOG_NAV("[nav] NavInitRequest: from move, window \"%s\", layer=%d\n", window ? window->Name : "", g.NavLayer); + g.NavInitRequest = g.NavInitRequestFromMove = true; + g.NavInitResult.ID = 0; + g.NavDisableHighlight = false; + } + + // When using gamepad, we project the reference nav bounding box into window visible area. + // This is to allow resuming navigation inside the visible area after doing a large amount of scrolling, + // since with gamepad all movements are relative (can't focus a visible object like we can with the mouse). + if (g.NavMoveSubmitted && g.NavInputSource == ImGuiInputSource_Gamepad && g.NavLayer == ImGuiNavLayer_Main && window != NULL)// && (g.NavMoveFlags & ImGuiNavMoveFlags_Forwarded)) + { + bool clamp_x = (g.NavMoveFlags & (ImGuiNavMoveFlags_LoopX | ImGuiNavMoveFlags_WrapX)) == 0; + bool clamp_y = (g.NavMoveFlags & (ImGuiNavMoveFlags_LoopY | ImGuiNavMoveFlags_WrapY)) == 0; + ImRect inner_rect_rel = WindowRectAbsToRel(window, ImRect(window->InnerRect.Min - ImVec2(1, 1), window->InnerRect.Max + ImVec2(1, 1))); + + // Take account of changing scroll to handle triggering a new move request on a scrolling frame. (#6171) + // Otherwise 'inner_rect_rel' would be off on the move result frame. + inner_rect_rel.Translate(CalcNextScrollFromScrollTargetAndClamp(window) - window->Scroll); + + if ((clamp_x || clamp_y) && !inner_rect_rel.Contains(window->NavRectRel[g.NavLayer])) + { + IMGUI_DEBUG_LOG_NAV("[nav] NavMoveRequest: clamp NavRectRel for gamepad move\n"); + float pad_x = ImMin(inner_rect_rel.GetWidth(), window->CalcFontSize() * 0.5f); + float pad_y = ImMin(inner_rect_rel.GetHeight(), window->CalcFontSize() * 0.5f); // Terrible approximation for the intent of starting navigation from first fully visible item + inner_rect_rel.Min.x = clamp_x ? (inner_rect_rel.Min.x + pad_x) : -FLT_MAX; + inner_rect_rel.Max.x = clamp_x ? (inner_rect_rel.Max.x - pad_x) : +FLT_MAX; + inner_rect_rel.Min.y = clamp_y ? (inner_rect_rel.Min.y + pad_y) : -FLT_MAX; + inner_rect_rel.Max.y = clamp_y ? (inner_rect_rel.Max.y - pad_y) : +FLT_MAX; + window->NavRectRel[g.NavLayer].ClipWithFull(inner_rect_rel); + g.NavId = 0; + } + } + + // For scoring we use a single segment on the left side our current item bounding box (not touching the edge to avoid box overlap with zero-spaced items) + ImRect scoring_rect; + if (window != NULL) + { + ImRect nav_rect_rel = !window->NavRectRel[g.NavLayer].IsInverted() ? window->NavRectRel[g.NavLayer] : ImRect(0, 0, 0, 0); + scoring_rect = WindowRectRelToAbs(window, nav_rect_rel); + scoring_rect.TranslateY(scoring_rect_offset_y); + if (g.NavMoveSubmitted) + NavBiasScoringRect(scoring_rect, window->RootWindowForNav->NavPreferredScoringPosRel[g.NavLayer], g.NavMoveDir, g.NavMoveFlags); + IM_ASSERT(!scoring_rect.IsInverted()); // Ensure we have a non-inverted bounding box here will allow us to remove extraneous ImFabs() calls in NavScoreItem(). + //GetForegroundDrawList()->AddRect(scoring_rect.Min, scoring_rect.Max, IM_COL32(255,200,0,255)); // [DEBUG] + //if (!g.NavScoringNoClipRect.IsInverted()) { GetForegroundDrawList()->AddRect(g.NavScoringNoClipRect.Min, g.NavScoringNoClipRect.Max, IM_COL32(255, 200, 0, 255)); } // [DEBUG] + } + g.NavScoringRect = scoring_rect; + g.NavScoringNoClipRect.Add(scoring_rect); +} + +void ImGui::NavUpdateCreateTabbingRequest() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.NavWindow; + IM_ASSERT(g.NavMoveDir == ImGuiDir_None); + if (window == NULL || g.NavWindowingTarget != NULL || (window->Flags & ImGuiWindowFlags_NoNavInputs)) + return; + + const bool tab_pressed = IsKeyPressed(ImGuiKey_Tab, ImGuiKeyOwner_None, ImGuiInputFlags_Repeat) && !g.IO.KeyCtrl && !g.IO.KeyAlt; + if (!tab_pressed) + return; + + // Initiate tabbing request + // (this is ALWAYS ENABLED, regardless of ImGuiConfigFlags_NavEnableKeyboard flag!) + // Initially this was designed to use counters and modulo arithmetic, but that could not work with unsubmitted items (list clipper). Instead we use a strategy close to other move requests. + // See NavProcessItemForTabbingRequest() for a description of the various forward/backward tabbing cases with and without wrapping. + const bool nav_keyboard_active = (g.IO.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) != 0; + if (nav_keyboard_active) + g.NavTabbingDir = g.IO.KeyShift ? -1 : (g.NavDisableHighlight == true && g.ActiveId == 0) ? 0 : +1; + else + g.NavTabbingDir = g.IO.KeyShift ? -1 : (g.ActiveId == 0) ? 0 : +1; + ImGuiNavMoveFlags move_flags = ImGuiNavMoveFlags_IsTabbing | ImGuiNavMoveFlags_Activate; + ImGuiScrollFlags scroll_flags = window->Appearing ? ImGuiScrollFlags_KeepVisibleEdgeX | ImGuiScrollFlags_AlwaysCenterY : ImGuiScrollFlags_KeepVisibleEdgeX | ImGuiScrollFlags_KeepVisibleEdgeY; + ImGuiDir clip_dir = (g.NavTabbingDir < 0) ? ImGuiDir_Up : ImGuiDir_Down; + NavMoveRequestSubmit(ImGuiDir_None, clip_dir, move_flags, scroll_flags); // FIXME-NAV: Once we refactor tabbing, add LegacyApi flag to not activate non-inputable. + g.NavTabbingCounter = -1; +} + +// Apply result from previous frame navigation directional move request. Always called from NavUpdate() +void ImGui::NavMoveRequestApplyResult() +{ + ImGuiContext& g = *GImGui; +#if IMGUI_DEBUG_NAV_SCORING + if (g.NavMoveFlags & ImGuiNavMoveFlags_DebugNoResult) // [DEBUG] Scoring all items in NavWindow at all times + return; +#endif + + // Select which result to use + ImGuiNavItemData* result = (g.NavMoveResultLocal.ID != 0) ? &g.NavMoveResultLocal : (g.NavMoveResultOther.ID != 0) ? &g.NavMoveResultOther : NULL; + + // Tabbing forward wrap + if ((g.NavMoveFlags & ImGuiNavMoveFlags_IsTabbing) && result == NULL) + if ((g.NavTabbingCounter == 1 || g.NavTabbingDir == 0) && g.NavTabbingResultFirst.ID) + result = &g.NavTabbingResultFirst; + + // In a situation when there are no results but NavId != 0, re-enable the Navigation highlight (because g.NavId is not considered as a possible result) + const ImGuiAxis axis = (g.NavMoveDir == ImGuiDir_Up || g.NavMoveDir == ImGuiDir_Down) ? ImGuiAxis_Y : ImGuiAxis_X; + if (result == NULL) + { + if (g.NavMoveFlags & ImGuiNavMoveFlags_IsTabbing) + g.NavMoveFlags |= ImGuiNavMoveFlags_NoSetNavHighlight; + if (g.NavId != 0 && (g.NavMoveFlags & ImGuiNavMoveFlags_NoSetNavHighlight) == 0) + NavRestoreHighlightAfterMove(); + NavClearPreferredPosForAxis(axis); // On a failed move, clear preferred pos for this axis. + IMGUI_DEBUG_LOG_NAV("[nav] NavMoveSubmitted but not led to a result!\n"); + return; + } + + // PageUp/PageDown behavior first jumps to the bottom/top mostly visible item, _otherwise_ use the result from the previous/next page. + if (g.NavMoveFlags & ImGuiNavMoveFlags_AlsoScoreVisibleSet) + if (g.NavMoveResultLocalVisible.ID != 0 && g.NavMoveResultLocalVisible.ID != g.NavId) + result = &g.NavMoveResultLocalVisible; + + // Maybe entering a flattened child from the outside? In this case solve the tie using the regular scoring rules. + if (result != &g.NavMoveResultOther && g.NavMoveResultOther.ID != 0 && g.NavMoveResultOther.Window->ParentWindow == g.NavWindow) + if ((g.NavMoveResultOther.DistBox < result->DistBox) || (g.NavMoveResultOther.DistBox == result->DistBox && g.NavMoveResultOther.DistCenter < result->DistCenter)) + result = &g.NavMoveResultOther; + IM_ASSERT(g.NavWindow && result->Window); + + // Scroll to keep newly navigated item fully into view. + if (g.NavLayer == ImGuiNavLayer_Main) + { + ImRect rect_abs = WindowRectRelToAbs(result->Window, result->RectRel); + ScrollToRectEx(result->Window, rect_abs, g.NavMoveScrollFlags); + + if (g.NavMoveFlags & ImGuiNavMoveFlags_ScrollToEdgeY) + { + // FIXME: Should remove this? Or make more precise: use ScrollToRectEx() with edge? + float scroll_target = (g.NavMoveDir == ImGuiDir_Up) ? result->Window->ScrollMax.y : 0.0f; + SetScrollY(result->Window, scroll_target); + } + } + + if (g.NavWindow != result->Window) + { + IMGUI_DEBUG_LOG_FOCUS("[focus] NavMoveRequest: SetNavWindow(\"%s\")\n", result->Window->Name); + g.NavWindow = result->Window; + } + if (g.ActiveId != result->ID) + ClearActiveID(); + + // Don't set NavJustMovedToId if just landed on the same spot (which may happen with ImGuiNavMoveFlags_AllowCurrentNavId) + // PageUp/PageDown however sets always set NavJustMovedTo (vs Home/End which doesn't) mimicking Windows behavior. + if ((g.NavId != result->ID || (g.NavMoveFlags & ImGuiNavMoveFlags_IsPageMove)) && (g.NavMoveFlags & ImGuiNavMoveFlags_NoSelect) == 0) + { + g.NavJustMovedToId = result->ID; + g.NavJustMovedToFocusScopeId = result->FocusScopeId; + g.NavJustMovedToKeyMods = g.NavMoveKeyMods; + } + + // Apply new NavID/Focus + IMGUI_DEBUG_LOG_NAV("[nav] NavMoveRequest: result NavID 0x%08X in Layer %d Window \"%s\"\n", result->ID, g.NavLayer, g.NavWindow->Name); + ImVec2 preferred_scoring_pos_rel = g.NavWindow->RootWindowForNav->NavPreferredScoringPosRel[g.NavLayer]; + SetNavID(result->ID, g.NavLayer, result->FocusScopeId, result->RectRel); + + // Restore last preferred position for current axis + // (storing in RootWindowForNav-> as the info is desirable at the beginning of a Move Request. In theory all storage should use RootWindowForNav..) + if ((g.NavMoveFlags & ImGuiNavMoveFlags_IsTabbing) == 0) + { + preferred_scoring_pos_rel[axis] = result->RectRel.GetCenter()[axis]; + g.NavWindow->RootWindowForNav->NavPreferredScoringPosRel[g.NavLayer] = preferred_scoring_pos_rel; + } + + // Tabbing: Activates Inputable, otherwise only Focus + if ((g.NavMoveFlags & ImGuiNavMoveFlags_IsTabbing) && (result->InFlags & ImGuiItemFlags_Inputable) == 0) + g.NavMoveFlags &= ~ImGuiNavMoveFlags_Activate; + + // Activate + if (g.NavMoveFlags & ImGuiNavMoveFlags_Activate) + { + g.NavNextActivateId = result->ID; + g.NavNextActivateFlags = ImGuiActivateFlags_None; + g.NavMoveFlags |= ImGuiNavMoveFlags_NoSetNavHighlight; + if (g.NavMoveFlags & ImGuiNavMoveFlags_IsTabbing) + g.NavNextActivateFlags |= ImGuiActivateFlags_PreferInput | ImGuiActivateFlags_TryToPreserveState; + } + + // Enable nav highlight + if ((g.NavMoveFlags & ImGuiNavMoveFlags_NoSetNavHighlight) == 0) + NavRestoreHighlightAfterMove(); +} + +// Process NavCancel input (to close a popup, get back to parent, clear focus) +// FIXME: In order to support e.g. Escape to clear a selection we'll need: +// - either to store the equivalent of ActiveIdUsingKeyInputMask for a FocusScope and test for it. +// - either to move most/all of those tests to the epilogue/end functions of the scope they are dealing with (e.g. exit child window in EndChild()) or in EndFrame(), to allow an earlier intercept +static void ImGui::NavUpdateCancelRequest() +{ + ImGuiContext& g = *GImGui; + const bool nav_gamepad_active = (g.IO.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) != 0 && (g.IO.BackendFlags & ImGuiBackendFlags_HasGamepad) != 0; + const bool nav_keyboard_active = (g.IO.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) != 0; + if (!(nav_keyboard_active && IsKeyPressed(ImGuiKey_Escape, ImGuiKeyOwner_None)) && !(nav_gamepad_active && IsKeyPressed(ImGuiKey_NavGamepadCancel, ImGuiKeyOwner_None))) + return; + + IMGUI_DEBUG_LOG_NAV("[nav] NavUpdateCancelRequest()\n"); + if (g.ActiveId != 0) + { + ClearActiveID(); + } + else if (g.NavLayer != ImGuiNavLayer_Main) + { + // Leave the "menu" layer + NavRestoreLayer(ImGuiNavLayer_Main); + NavRestoreHighlightAfterMove(); + } + else if (g.NavWindow && g.NavWindow != g.NavWindow->RootWindow && !(g.NavWindow->Flags & ImGuiWindowFlags_Popup) && g.NavWindow->ParentWindow) + { + // Exit child window + ImGuiWindow* child_window = g.NavWindow; + ImGuiWindow* parent_window = g.NavWindow->ParentWindow; + IM_ASSERT(child_window->ChildId != 0); + ImRect child_rect = child_window->Rect(); + FocusWindow(parent_window); + SetNavID(child_window->ChildId, ImGuiNavLayer_Main, 0, WindowRectAbsToRel(parent_window, child_rect)); + NavRestoreHighlightAfterMove(); + } + else if (g.OpenPopupStack.Size > 0 && g.OpenPopupStack.back().Window != NULL && !(g.OpenPopupStack.back().Window->Flags & ImGuiWindowFlags_Modal)) + { + // Close open popup/menu + ClosePopupToLevel(g.OpenPopupStack.Size - 1, true); + } + else + { + // Clear NavLastId for popups but keep it for regular child window so we can leave one and come back where we were + if (g.NavWindow && ((g.NavWindow->Flags & ImGuiWindowFlags_Popup) || !(g.NavWindow->Flags & ImGuiWindowFlags_ChildWindow))) + g.NavWindow->NavLastIds[0] = 0; + g.NavId = 0; + } +} + +// Handle PageUp/PageDown/Home/End keys +// Called from NavUpdateCreateMoveRequest() which will use our output to create a move request +// FIXME-NAV: This doesn't work properly with NavFlattened siblings as we use NavWindow rectangle for reference +// FIXME-NAV: how to get Home/End to aim at the beginning/end of a 2D grid? +static float ImGui::NavUpdatePageUpPageDown() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.NavWindow; + if ((window->Flags & ImGuiWindowFlags_NoNavInputs) || g.NavWindowingTarget != NULL) + return 0.0f; + + const bool page_up_held = IsKeyDown(ImGuiKey_PageUp, ImGuiKeyOwner_None); + const bool page_down_held = IsKeyDown(ImGuiKey_PageDown, ImGuiKeyOwner_None); + const bool home_pressed = IsKeyPressed(ImGuiKey_Home, ImGuiKeyOwner_None, ImGuiInputFlags_Repeat); + const bool end_pressed = IsKeyPressed(ImGuiKey_End, ImGuiKeyOwner_None, ImGuiInputFlags_Repeat); + if (page_up_held == page_down_held && home_pressed == end_pressed) // Proceed if either (not both) are pressed, otherwise early out + return 0.0f; + + if (g.NavLayer != ImGuiNavLayer_Main) + NavRestoreLayer(ImGuiNavLayer_Main); + + if (window->DC.NavLayersActiveMask == 0x00 && window->DC.NavWindowHasScrollY) + { + // Fallback manual-scroll when window has no navigable item + if (IsKeyPressed(ImGuiKey_PageUp, ImGuiKeyOwner_None, ImGuiInputFlags_Repeat)) + SetScrollY(window, window->Scroll.y - window->InnerRect.GetHeight()); + else if (IsKeyPressed(ImGuiKey_PageDown, ImGuiKeyOwner_None, ImGuiInputFlags_Repeat)) + SetScrollY(window, window->Scroll.y + window->InnerRect.GetHeight()); + else if (home_pressed) + SetScrollY(window, 0.0f); + else if (end_pressed) + SetScrollY(window, window->ScrollMax.y); + } + else + { + ImRect& nav_rect_rel = window->NavRectRel[g.NavLayer]; + const float page_offset_y = ImMax(0.0f, window->InnerRect.GetHeight() - window->CalcFontSize() * 1.0f + nav_rect_rel.GetHeight()); + float nav_scoring_rect_offset_y = 0.0f; + if (IsKeyPressed(ImGuiKey_PageUp, true)) + { + nav_scoring_rect_offset_y = -page_offset_y; + g.NavMoveDir = ImGuiDir_Down; // Because our scoring rect is offset up, we request the down direction (so we can always land on the last item) + g.NavMoveClipDir = ImGuiDir_Up; + g.NavMoveFlags = ImGuiNavMoveFlags_AllowCurrentNavId | ImGuiNavMoveFlags_AlsoScoreVisibleSet | ImGuiNavMoveFlags_IsPageMove; + } + else if (IsKeyPressed(ImGuiKey_PageDown, true)) + { + nav_scoring_rect_offset_y = +page_offset_y; + g.NavMoveDir = ImGuiDir_Up; // Because our scoring rect is offset down, we request the up direction (so we can always land on the last item) + g.NavMoveClipDir = ImGuiDir_Down; + g.NavMoveFlags = ImGuiNavMoveFlags_AllowCurrentNavId | ImGuiNavMoveFlags_AlsoScoreVisibleSet | ImGuiNavMoveFlags_IsPageMove; + } + else if (home_pressed) + { + // FIXME-NAV: handling of Home/End is assuming that the top/bottom most item will be visible with Scroll.y == 0/ScrollMax.y + // Scrolling will be handled via the ImGuiNavMoveFlags_ScrollToEdgeY flag, we don't scroll immediately to avoid scrolling happening before nav result. + // Preserve current horizontal position if we have any. + nav_rect_rel.Min.y = nav_rect_rel.Max.y = 0.0f; + if (nav_rect_rel.IsInverted()) + nav_rect_rel.Min.x = nav_rect_rel.Max.x = 0.0f; + g.NavMoveDir = ImGuiDir_Down; + g.NavMoveFlags = ImGuiNavMoveFlags_AllowCurrentNavId | ImGuiNavMoveFlags_ScrollToEdgeY; + // FIXME-NAV: MoveClipDir left to _None, intentional? + } + else if (end_pressed) + { + nav_rect_rel.Min.y = nav_rect_rel.Max.y = window->ContentSize.y; + if (nav_rect_rel.IsInverted()) + nav_rect_rel.Min.x = nav_rect_rel.Max.x = 0.0f; + g.NavMoveDir = ImGuiDir_Up; + g.NavMoveFlags = ImGuiNavMoveFlags_AllowCurrentNavId | ImGuiNavMoveFlags_ScrollToEdgeY; + // FIXME-NAV: MoveClipDir left to _None, intentional? + } + return nav_scoring_rect_offset_y; + } + return 0.0f; +} + +static void ImGui::NavEndFrame() +{ + ImGuiContext& g = *GImGui; + + // Show CTRL+TAB list window + if (g.NavWindowingTarget != NULL) + NavUpdateWindowingOverlay(); + + // Perform wrap-around in menus + // FIXME-NAV: Wrap may need to apply a weight bias on the other axis. e.g. 4x4 grid with 2 last items missing on last item won't handle LoopY/WrapY correctly. + // FIXME-NAV: Wrap (not Loop) support could be handled by the scoring function and then WrapX would function without an extra frame. + if (g.NavWindow && NavMoveRequestButNoResultYet() && (g.NavMoveFlags & ImGuiNavMoveFlags_WrapMask_) && (g.NavMoveFlags & ImGuiNavMoveFlags_Forwarded) == 0) + NavUpdateCreateWrappingRequest(); +} + +static void ImGui::NavUpdateCreateWrappingRequest() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.NavWindow; + + bool do_forward = false; + ImRect bb_rel = window->NavRectRel[g.NavLayer]; + ImGuiDir clip_dir = g.NavMoveDir; + + const ImGuiNavMoveFlags move_flags = g.NavMoveFlags; + //const ImGuiAxis move_axis = (g.NavMoveDir == ImGuiDir_Up || g.NavMoveDir == ImGuiDir_Down) ? ImGuiAxis_Y : ImGuiAxis_X; + if (g.NavMoveDir == ImGuiDir_Left && (move_flags & (ImGuiNavMoveFlags_WrapX | ImGuiNavMoveFlags_LoopX))) + { + bb_rel.Min.x = bb_rel.Max.x = window->ContentSize.x + window->WindowPadding.x; + if (move_flags & ImGuiNavMoveFlags_WrapX) + { + bb_rel.TranslateY(-bb_rel.GetHeight()); // Previous row + clip_dir = ImGuiDir_Up; + } + do_forward = true; + } + if (g.NavMoveDir == ImGuiDir_Right && (move_flags & (ImGuiNavMoveFlags_WrapX | ImGuiNavMoveFlags_LoopX))) + { + bb_rel.Min.x = bb_rel.Max.x = -window->WindowPadding.x; + if (move_flags & ImGuiNavMoveFlags_WrapX) + { + bb_rel.TranslateY(+bb_rel.GetHeight()); // Next row + clip_dir = ImGuiDir_Down; + } + do_forward = true; + } + if (g.NavMoveDir == ImGuiDir_Up && (move_flags & (ImGuiNavMoveFlags_WrapY | ImGuiNavMoveFlags_LoopY))) + { + bb_rel.Min.y = bb_rel.Max.y = window->ContentSize.y + window->WindowPadding.y; + if (move_flags & ImGuiNavMoveFlags_WrapY) + { + bb_rel.TranslateX(-bb_rel.GetWidth()); // Previous column + clip_dir = ImGuiDir_Left; + } + do_forward = true; + } + if (g.NavMoveDir == ImGuiDir_Down && (move_flags & (ImGuiNavMoveFlags_WrapY | ImGuiNavMoveFlags_LoopY))) + { + bb_rel.Min.y = bb_rel.Max.y = -window->WindowPadding.y; + if (move_flags & ImGuiNavMoveFlags_WrapY) + { + bb_rel.TranslateX(+bb_rel.GetWidth()); // Next column + clip_dir = ImGuiDir_Right; + } + do_forward = true; + } + if (!do_forward) + return; + window->NavRectRel[g.NavLayer] = bb_rel; + NavClearPreferredPosForAxis(ImGuiAxis_X); + NavClearPreferredPosForAxis(ImGuiAxis_Y); + NavMoveRequestForward(g.NavMoveDir, clip_dir, move_flags, g.NavMoveScrollFlags); +} + +static int ImGui::FindWindowFocusIndex(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + IM_UNUSED(g); + int order = window->FocusOrder; + IM_ASSERT(window->RootWindow == window); // No child window (not testing _ChildWindow because of docking) + IM_ASSERT(g.WindowsFocusOrder[order] == window); + return order; +} + +static ImGuiWindow* FindWindowNavFocusable(int i_start, int i_stop, int dir) // FIXME-OPT O(N) +{ + ImGuiContext& g = *GImGui; + for (int i = i_start; i >= 0 && i < g.WindowsFocusOrder.Size && i != i_stop; i += dir) + if (ImGui::IsWindowNavFocusable(g.WindowsFocusOrder[i])) + return g.WindowsFocusOrder[i]; + return NULL; +} + +static void NavUpdateWindowingHighlightWindow(int focus_change_dir) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.NavWindowingTarget); + if (g.NavWindowingTarget->Flags & ImGuiWindowFlags_Modal) + return; + + const int i_current = ImGui::FindWindowFocusIndex(g.NavWindowingTarget); + ImGuiWindow* window_target = FindWindowNavFocusable(i_current + focus_change_dir, -INT_MAX, focus_change_dir); + if (!window_target) + window_target = FindWindowNavFocusable((focus_change_dir < 0) ? (g.WindowsFocusOrder.Size - 1) : 0, i_current, focus_change_dir); + if (window_target) // Don't reset windowing target if there's a single window in the list + { + g.NavWindowingTarget = g.NavWindowingTargetAnim = window_target; + g.NavWindowingAccumDeltaPos = g.NavWindowingAccumDeltaSize = ImVec2(0.0f, 0.0f); + } + g.NavWindowingToggleLayer = false; +} + +// Windowing management mode +// Keyboard: CTRL+Tab (change focus/move/resize), Alt (toggle menu layer) +// Gamepad: Hold Menu/Square (change focus/move/resize), Tap Menu/Square (toggle menu layer) +static void ImGui::NavUpdateWindowing() +{ + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + + ImGuiWindow* apply_focus_window = NULL; + bool apply_toggle_layer = false; + + ImGuiWindow* modal_window = GetTopMostPopupModal(); + bool allow_windowing = (modal_window == NULL); // FIXME: This prevent CTRL+TAB from being usable with windows that are inside the Begin-stack of that modal. + if (!allow_windowing) + g.NavWindowingTarget = NULL; + + // Fade out + if (g.NavWindowingTargetAnim && g.NavWindowingTarget == NULL) + { + g.NavWindowingHighlightAlpha = ImMax(g.NavWindowingHighlightAlpha - io.DeltaTime * 10.0f, 0.0f); + if (g.DimBgRatio <= 0.0f && g.NavWindowingHighlightAlpha <= 0.0f) + g.NavWindowingTargetAnim = NULL; + } + + // Start CTRL+Tab or Square+L/R window selection + const ImGuiID owner_id = ImHashStr("###NavUpdateWindowing"); + const bool nav_gamepad_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) != 0 && (io.BackendFlags & ImGuiBackendFlags_HasGamepad) != 0; + const bool nav_keyboard_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) != 0; + const bool keyboard_next_window = allow_windowing && g.ConfigNavWindowingKeyNext && Shortcut(g.ConfigNavWindowingKeyNext, owner_id, ImGuiInputFlags_Repeat | ImGuiInputFlags_RouteAlways); + const bool keyboard_prev_window = allow_windowing && g.ConfigNavWindowingKeyPrev && Shortcut(g.ConfigNavWindowingKeyPrev, owner_id, ImGuiInputFlags_Repeat | ImGuiInputFlags_RouteAlways); + const bool start_windowing_with_gamepad = allow_windowing && nav_gamepad_active && !g.NavWindowingTarget && IsKeyPressed(ImGuiKey_NavGamepadMenu, 0, ImGuiInputFlags_None); + const bool start_windowing_with_keyboard = allow_windowing && !g.NavWindowingTarget && (keyboard_next_window || keyboard_prev_window); // Note: enabled even without NavEnableKeyboard! + if (start_windowing_with_gamepad || start_windowing_with_keyboard) + if (ImGuiWindow* window = g.NavWindow ? g.NavWindow : FindWindowNavFocusable(g.WindowsFocusOrder.Size - 1, -INT_MAX, -1)) + { + g.NavWindowingTarget = g.NavWindowingTargetAnim = window->RootWindow; + g.NavWindowingTimer = g.NavWindowingHighlightAlpha = 0.0f; + g.NavWindowingAccumDeltaPos = g.NavWindowingAccumDeltaSize = ImVec2(0.0f, 0.0f); + g.NavWindowingToggleLayer = start_windowing_with_gamepad ? true : false; // Gamepad starts toggling layer + g.NavInputSource = start_windowing_with_keyboard ? ImGuiInputSource_Keyboard : ImGuiInputSource_Gamepad; + + // Register ownership of our mods. Using ImGuiInputFlags_RouteGlobalHigh in the Shortcut() calls instead would probably be correct but may have more side-effects. + if (keyboard_next_window || keyboard_prev_window) + SetKeyOwnersForKeyChord((g.ConfigNavWindowingKeyNext | g.ConfigNavWindowingKeyPrev) & ImGuiMod_Mask_, owner_id); + } + + // Gamepad update + g.NavWindowingTimer += io.DeltaTime; + if (g.NavWindowingTarget && g.NavInputSource == ImGuiInputSource_Gamepad) + { + // Highlight only appears after a brief time holding the button, so that a fast tap on PadMenu (to toggle NavLayer) doesn't add visual noise + g.NavWindowingHighlightAlpha = ImMax(g.NavWindowingHighlightAlpha, ImSaturate((g.NavWindowingTimer - NAV_WINDOWING_HIGHLIGHT_DELAY) / 0.05f)); + + // Select window to focus + const int focus_change_dir = (int)IsKeyPressed(ImGuiKey_GamepadL1) - (int)IsKeyPressed(ImGuiKey_GamepadR1); + if (focus_change_dir != 0) + { + NavUpdateWindowingHighlightWindow(focus_change_dir); + g.NavWindowingHighlightAlpha = 1.0f; + } + + // Single press toggles NavLayer, long press with L/R apply actual focus on release (until then the window was merely rendered top-most) + if (!IsKeyDown(ImGuiKey_NavGamepadMenu)) + { + g.NavWindowingToggleLayer &= (g.NavWindowingHighlightAlpha < 1.0f); // Once button was held long enough we don't consider it a tap-to-toggle-layer press anymore. + if (g.NavWindowingToggleLayer && g.NavWindow) + apply_toggle_layer = true; + else if (!g.NavWindowingToggleLayer) + apply_focus_window = g.NavWindowingTarget; + g.NavWindowingTarget = NULL; + } + } + + // Keyboard: Focus + if (g.NavWindowingTarget && g.NavInputSource == ImGuiInputSource_Keyboard) + { + // Visuals only appears after a brief time after pressing TAB the first time, so that a fast CTRL+TAB doesn't add visual noise + ImGuiKeyChord shared_mods = ((g.ConfigNavWindowingKeyNext ? g.ConfigNavWindowingKeyNext : ImGuiMod_Mask_) & (g.ConfigNavWindowingKeyPrev ? g.ConfigNavWindowingKeyPrev : ImGuiMod_Mask_)) & ImGuiMod_Mask_; + IM_ASSERT(shared_mods != 0); // Next/Prev shortcut currently needs a shared modifier to "hold", otherwise Prev actions would keep cycling between two windows. + g.NavWindowingHighlightAlpha = ImMax(g.NavWindowingHighlightAlpha, ImSaturate((g.NavWindowingTimer - NAV_WINDOWING_HIGHLIGHT_DELAY) / 0.05f)); // 1.0f + if (keyboard_next_window || keyboard_prev_window) + NavUpdateWindowingHighlightWindow(keyboard_next_window ? -1 : +1); + else if ((io.KeyMods & shared_mods) != shared_mods) + apply_focus_window = g.NavWindowingTarget; + } + + // Keyboard: Press and Release ALT to toggle menu layer + // - Testing that only Alt is tested prevents Alt+Shift or AltGR from toggling menu layer. + // - AltGR is normally Alt+Ctrl but we can't reliably detect it (not all backends/systems/layout emit it as Alt+Ctrl). But even on keyboards without AltGR we don't want Alt+Ctrl to open menu anyway. + if (nav_keyboard_active && IsKeyPressed(ImGuiMod_Alt, ImGuiKeyOwner_None)) + { + g.NavWindowingToggleLayer = true; + g.NavInputSource = ImGuiInputSource_Keyboard; + } + if (g.NavWindowingToggleLayer && g.NavInputSource == ImGuiInputSource_Keyboard) + { + // We cancel toggling nav layer when any text has been typed (generally while holding Alt). (See #370) + // We cancel toggling nav layer when other modifiers are pressed. (See #4439) + // We cancel toggling nav layer if an owner has claimed the key. + if (io.InputQueueCharacters.Size > 0 || io.KeyCtrl || io.KeyShift || io.KeySuper || TestKeyOwner(ImGuiMod_Alt, ImGuiKeyOwner_None) == false) + g.NavWindowingToggleLayer = false; + + // Apply layer toggle on release + // Important: as before version <18314 we lacked an explicit IO event for focus gain/loss, we also compare mouse validity to detect old backends clearing mouse pos on focus loss. + if (IsKeyReleased(ImGuiMod_Alt) && g.NavWindowingToggleLayer) + if (g.ActiveId == 0 || g.ActiveIdAllowOverlap) + if (IsMousePosValid(&io.MousePos) == IsMousePosValid(&io.MousePosPrev)) + apply_toggle_layer = true; + if (!IsKeyDown(ImGuiMod_Alt)) + g.NavWindowingToggleLayer = false; + } + + // Move window + if (g.NavWindowingTarget && !(g.NavWindowingTarget->Flags & ImGuiWindowFlags_NoMove)) + { + ImVec2 nav_move_dir; + if (g.NavInputSource == ImGuiInputSource_Keyboard && !io.KeyShift) + nav_move_dir = GetKeyMagnitude2d(ImGuiKey_LeftArrow, ImGuiKey_RightArrow, ImGuiKey_UpArrow, ImGuiKey_DownArrow); + if (g.NavInputSource == ImGuiInputSource_Gamepad) + nav_move_dir = GetKeyMagnitude2d(ImGuiKey_GamepadLStickLeft, ImGuiKey_GamepadLStickRight, ImGuiKey_GamepadLStickUp, ImGuiKey_GamepadLStickDown); + if (nav_move_dir.x != 0.0f || nav_move_dir.y != 0.0f) + { + const float NAV_MOVE_SPEED = 800.0f; + const float move_step = NAV_MOVE_SPEED * io.DeltaTime * ImMin(io.DisplayFramebufferScale.x, io.DisplayFramebufferScale.y); + g.NavWindowingAccumDeltaPos += nav_move_dir * move_step; + g.NavDisableMouseHover = true; + ImVec2 accum_floored = ImFloor(g.NavWindowingAccumDeltaPos); + if (accum_floored.x != 0.0f || accum_floored.y != 0.0f) + { + ImGuiWindow* moving_window = g.NavWindowingTarget->RootWindow; + SetWindowPos(moving_window, moving_window->Pos + accum_floored, ImGuiCond_Always); + g.NavWindowingAccumDeltaPos -= accum_floored; + } + } + } + + // Apply final focus + if (apply_focus_window && (g.NavWindow == NULL || apply_focus_window != g.NavWindow->RootWindow)) + { + ClearActiveID(); + NavRestoreHighlightAfterMove(); + ClosePopupsOverWindow(apply_focus_window, false); + FocusWindow(apply_focus_window, ImGuiFocusRequestFlags_RestoreFocusedChild); + apply_focus_window = g.NavWindow; + if (apply_focus_window->NavLastIds[0] == 0) + NavInitWindow(apply_focus_window, false); + + // If the window has ONLY a menu layer (no main layer), select it directly + // Use NavLayersActiveMaskNext since windows didn't have a chance to be Begin()-ed on this frame, + // so CTRL+Tab where the keys are only held for 1 frame will be able to use correct layers mask since + // the target window as already been previewed once. + // FIXME-NAV: This should be done in NavInit.. or in FocusWindow... However in both of those cases, + // we won't have a guarantee that windows has been visible before and therefore NavLayersActiveMask* + // won't be valid. + if (apply_focus_window->DC.NavLayersActiveMaskNext == (1 << ImGuiNavLayer_Menu)) + g.NavLayer = ImGuiNavLayer_Menu; + } + if (apply_focus_window) + g.NavWindowingTarget = NULL; + + // Apply menu/layer toggle + if (apply_toggle_layer && g.NavWindow) + { + ClearActiveID(); + + // Move to parent menu if necessary + ImGuiWindow* new_nav_window = g.NavWindow; + while (new_nav_window->ParentWindow + && (new_nav_window->DC.NavLayersActiveMask & (1 << ImGuiNavLayer_Menu)) == 0 + && (new_nav_window->Flags & ImGuiWindowFlags_ChildWindow) != 0 + && (new_nav_window->Flags & (ImGuiWindowFlags_Popup | ImGuiWindowFlags_ChildMenu)) == 0) + new_nav_window = new_nav_window->ParentWindow; + if (new_nav_window != g.NavWindow) + { + ImGuiWindow* old_nav_window = g.NavWindow; + FocusWindow(new_nav_window); + new_nav_window->NavLastChildNavWindow = old_nav_window; + } + + // Toggle layer + const ImGuiNavLayer new_nav_layer = (g.NavWindow->DC.NavLayersActiveMask & (1 << ImGuiNavLayer_Menu)) ? (ImGuiNavLayer)((int)g.NavLayer ^ 1) : ImGuiNavLayer_Main; + if (new_nav_layer != g.NavLayer) + { + // Reinitialize navigation when entering menu bar with the Alt key (FIXME: could be a properly of the layer?) + if (new_nav_layer == ImGuiNavLayer_Menu) + g.NavWindow->NavLastIds[new_nav_layer] = 0; + NavRestoreLayer(new_nav_layer); + NavRestoreHighlightAfterMove(); + } + } +} + +// Window has already passed the IsWindowNavFocusable() +static const char* GetFallbackWindowNameForWindowingList(ImGuiWindow* window) +{ + if (window->Flags & ImGuiWindowFlags_Popup) + return ImGui::LocalizeGetMsg(ImGuiLocKey_WindowingPopup); + if ((window->Flags & ImGuiWindowFlags_MenuBar) && strcmp(window->Name, "##MainMenuBar") == 0) + return ImGui::LocalizeGetMsg(ImGuiLocKey_WindowingMainMenuBar); + return ImGui::LocalizeGetMsg(ImGuiLocKey_WindowingUntitled); +} + +// Overlay displayed when using CTRL+TAB. Called by EndFrame(). +void ImGui::NavUpdateWindowingOverlay() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.NavWindowingTarget != NULL); + + if (g.NavWindowingTimer < NAV_WINDOWING_LIST_APPEAR_DELAY) + return; + + if (g.NavWindowingListWindow == NULL) + g.NavWindowingListWindow = FindWindowByName("###NavWindowingList"); + const ImGuiViewport* viewport = GetMainViewport(); + SetNextWindowSizeConstraints(ImVec2(viewport->Size.x * 0.20f, viewport->Size.y * 0.20f), ImVec2(FLT_MAX, FLT_MAX)); + SetNextWindowPos(viewport->GetCenter(), ImGuiCond_Always, ImVec2(0.5f, 0.5f)); + PushStyleVar(ImGuiStyleVar_WindowPadding, g.Style.WindowPadding * 2.0f); + Begin("###NavWindowingList", NULL, ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoFocusOnAppearing | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoInputs | ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoSavedSettings); + for (int n = g.WindowsFocusOrder.Size - 1; n >= 0; n--) + { + ImGuiWindow* window = g.WindowsFocusOrder[n]; + IM_ASSERT(window != NULL); // Fix static analyzers + if (!IsWindowNavFocusable(window)) + continue; + const char* label = window->Name; + if (label == FindRenderedTextEnd(label)) + label = GetFallbackWindowNameForWindowingList(window); + Selectable(label, g.NavWindowingTarget == window); + } + End(); + PopStyleVar(); +} + + +//----------------------------------------------------------------------------- +// [SECTION] DRAG AND DROP +//----------------------------------------------------------------------------- + +bool ImGui::IsDragDropActive() +{ + ImGuiContext& g = *GImGui; + return g.DragDropActive; +} + +void ImGui::ClearDragDrop() +{ + ImGuiContext& g = *GImGui; + g.DragDropActive = false; + g.DragDropPayload.Clear(); + g.DragDropAcceptFlags = ImGuiDragDropFlags_None; + g.DragDropAcceptIdCurr = g.DragDropAcceptIdPrev = 0; + g.DragDropAcceptIdCurrRectSurface = FLT_MAX; + g.DragDropAcceptFrameCount = -1; + + g.DragDropPayloadBufHeap.clear(); + memset(&g.DragDropPayloadBufLocal, 0, sizeof(g.DragDropPayloadBufLocal)); +} + +// When this returns true you need to: a) call SetDragDropPayload() exactly once, b) you may render the payload visual/description, c) call EndDragDropSource() +// If the item has an identifier: +// - This assume/require the item to be activated (typically via ButtonBehavior). +// - Therefore if you want to use this with a mouse button other than left mouse button, it is up to the item itself to activate with another button. +// - We then pull and use the mouse button that was used to activate the item and use it to carry on the drag. +// If the item has no identifier: +// - Currently always assume left mouse button. +bool ImGui::BeginDragDropSource(ImGuiDragDropFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + // FIXME-DRAGDROP: While in the common-most "drag from non-zero active id" case we can tell the mouse button, + // in both SourceExtern and id==0 cases we may requires something else (explicit flags or some heuristic). + ImGuiMouseButton mouse_button = ImGuiMouseButton_Left; + + bool source_drag_active = false; + ImGuiID source_id = 0; + ImGuiID source_parent_id = 0; + if (!(flags & ImGuiDragDropFlags_SourceExtern)) + { + source_id = g.LastItemData.ID; + if (source_id != 0) + { + // Common path: items with ID + if (g.ActiveId != source_id) + return false; + if (g.ActiveIdMouseButton != -1) + mouse_button = g.ActiveIdMouseButton; + if (g.IO.MouseDown[mouse_button] == false || window->SkipItems) + return false; + g.ActiveIdAllowOverlap = false; + } + else + { + // Uncommon path: items without ID + if (g.IO.MouseDown[mouse_button] == false || window->SkipItems) + return false; + if ((g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HoveredRect) == 0 && (g.ActiveId == 0 || g.ActiveIdWindow != window)) + return false; + + // If you want to use BeginDragDropSource() on an item with no unique identifier for interaction, such as Text() or Image(), you need to: + // A) Read the explanation below, B) Use the ImGuiDragDropFlags_SourceAllowNullID flag. + if (!(flags & ImGuiDragDropFlags_SourceAllowNullID)) + { + IM_ASSERT(0); + return false; + } + + // Magic fallback to handle items with no assigned ID, e.g. Text(), Image() + // We build a throwaway ID based on current ID stack + relative AABB of items in window. + // THE IDENTIFIER WON'T SURVIVE ANY REPOSITIONING/RESIZINGG OF THE WIDGET, so if your widget moves your dragging operation will be canceled. + // We don't need to maintain/call ClearActiveID() as releasing the button will early out this function and trigger !ActiveIdIsAlive. + // Rely on keeping other window->LastItemXXX fields intact. + source_id = g.LastItemData.ID = window->GetIDFromRectangle(g.LastItemData.Rect); + KeepAliveID(source_id); + bool is_hovered = ItemHoverable(g.LastItemData.Rect, source_id, g.LastItemData.InFlags); + if (is_hovered && g.IO.MouseClicked[mouse_button]) + { + SetActiveID(source_id, window); + FocusWindow(window); + } + if (g.ActiveId == source_id) // Allow the underlying widget to display/return hovered during the mouse release frame, else we would get a flicker. + g.ActiveIdAllowOverlap = is_hovered; + } + if (g.ActiveId != source_id) + return false; + source_parent_id = window->IDStack.back(); + source_drag_active = IsMouseDragging(mouse_button); + + // Disable navigation and key inputs while dragging + cancel existing request if any + SetActiveIdUsingAllKeyboardKeys(); + } + else + { + window = NULL; + source_id = ImHashStr("#SourceExtern"); + source_drag_active = true; + } + + if (source_drag_active) + { + if (!g.DragDropActive) + { + IM_ASSERT(source_id != 0); + ClearDragDrop(); + ImGuiPayload& payload = g.DragDropPayload; + payload.SourceId = source_id; + payload.SourceParentId = source_parent_id; + g.DragDropActive = true; + g.DragDropSourceFlags = flags; + g.DragDropMouseButton = mouse_button; + if (payload.SourceId == g.ActiveId) + g.ActiveIdNoClearOnFocusLoss = true; + } + g.DragDropSourceFrameCount = g.FrameCount; + g.DragDropWithinSource = true; + + if (!(flags & ImGuiDragDropFlags_SourceNoPreviewTooltip)) + { + // Target can request the Source to not display its tooltip (we use a dedicated flag to make this request explicit) + // We unfortunately can't just modify the source flags and skip the call to BeginTooltip, as caller may be emitting contents. + bool ret = BeginTooltip(); + IM_ASSERT(ret); // FIXME-NEWBEGIN: If this ever becomes false, we need to Begin("##Hidden", NULL, ImGuiWindowFlags_NoSavedSettings) + SetWindowHiddendAndSkipItemsForCurrentFrame(). + IM_UNUSED(ret); + + if (g.DragDropAcceptIdPrev && (g.DragDropAcceptFlags & ImGuiDragDropFlags_AcceptNoPreviewTooltip)) + SetWindowHiddendAndSkipItemsForCurrentFrame(g.CurrentWindow); + } + + if (!(flags & ImGuiDragDropFlags_SourceNoDisableHover) && !(flags & ImGuiDragDropFlags_SourceExtern)) + g.LastItemData.StatusFlags &= ~ImGuiItemStatusFlags_HoveredRect; + + return true; + } + return false; +} + +void ImGui::EndDragDropSource() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.DragDropActive); + IM_ASSERT(g.DragDropWithinSource && "Not after a BeginDragDropSource()?"); + + if (!(g.DragDropSourceFlags & ImGuiDragDropFlags_SourceNoPreviewTooltip)) + EndTooltip(); + + // Discard the drag if have not called SetDragDropPayload() + if (g.DragDropPayload.DataFrameCount == -1) + ClearDragDrop(); + g.DragDropWithinSource = false; +} + +// Use 'cond' to choose to submit payload on drag start or every frame +bool ImGui::SetDragDropPayload(const char* type, const void* data, size_t data_size, ImGuiCond cond) +{ + ImGuiContext& g = *GImGui; + ImGuiPayload& payload = g.DragDropPayload; + if (cond == 0) + cond = ImGuiCond_Always; + + IM_ASSERT(type != NULL); + IM_ASSERT(strlen(type) < IM_ARRAYSIZE(payload.DataType) && "Payload type can be at most 32 characters long"); + IM_ASSERT((data != NULL && data_size > 0) || (data == NULL && data_size == 0)); + IM_ASSERT(cond == ImGuiCond_Always || cond == ImGuiCond_Once); + IM_ASSERT(payload.SourceId != 0); // Not called between BeginDragDropSource() and EndDragDropSource() + + if (cond == ImGuiCond_Always || payload.DataFrameCount == -1) + { + // Copy payload + ImStrncpy(payload.DataType, type, IM_ARRAYSIZE(payload.DataType)); + g.DragDropPayloadBufHeap.resize(0); + if (data_size > sizeof(g.DragDropPayloadBufLocal)) + { + // Store in heap + g.DragDropPayloadBufHeap.resize((int)data_size); + payload.Data = g.DragDropPayloadBufHeap.Data; + memcpy(payload.Data, data, data_size); + } + else if (data_size > 0) + { + // Store locally + memset(&g.DragDropPayloadBufLocal, 0, sizeof(g.DragDropPayloadBufLocal)); + payload.Data = g.DragDropPayloadBufLocal; + memcpy(payload.Data, data, data_size); + } + else + { + payload.Data = NULL; + } + payload.DataSize = (int)data_size; + } + payload.DataFrameCount = g.FrameCount; + + // Return whether the payload has been accepted + return (g.DragDropAcceptFrameCount == g.FrameCount) || (g.DragDropAcceptFrameCount == g.FrameCount - 1); +} + +bool ImGui::BeginDragDropTargetCustom(const ImRect& bb, ImGuiID id) +{ + ImGuiContext& g = *GImGui; + if (!g.DragDropActive) + return false; + + ImGuiWindow* window = g.CurrentWindow; + ImGuiWindow* hovered_window = g.HoveredWindowUnderMovingWindow; + if (hovered_window == NULL || window->RootWindow != hovered_window->RootWindow) + return false; + IM_ASSERT(id != 0); + if (!IsMouseHoveringRect(bb.Min, bb.Max) || (id == g.DragDropPayload.SourceId)) + return false; + if (window->SkipItems) + return false; + + IM_ASSERT(g.DragDropWithinTarget == false); + g.DragDropTargetRect = bb; + g.DragDropTargetId = id; + g.DragDropWithinTarget = true; + return true; +} + +// We don't use BeginDragDropTargetCustom() and duplicate its code because: +// 1) we use LastItemRectHoveredRect which handles items that push a temporarily clip rectangle in their code. Calling BeginDragDropTargetCustom(LastItemRect) would not handle them. +// 2) and it's faster. as this code may be very frequently called, we want to early out as fast as we can. +// Also note how the HoveredWindow test is positioned differently in both functions (in both functions we optimize for the cheapest early out case) +bool ImGui::BeginDragDropTarget() +{ + ImGuiContext& g = *GImGui; + if (!g.DragDropActive) + return false; + + ImGuiWindow* window = g.CurrentWindow; + if (!(g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HoveredRect)) + return false; + ImGuiWindow* hovered_window = g.HoveredWindowUnderMovingWindow; + if (hovered_window == NULL || window->RootWindow != hovered_window->RootWindow || window->SkipItems) + return false; + + const ImRect& display_rect = (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HasDisplayRect) ? g.LastItemData.DisplayRect : g.LastItemData.Rect; + ImGuiID id = g.LastItemData.ID; + if (id == 0) + { + id = window->GetIDFromRectangle(display_rect); + KeepAliveID(id); + } + if (g.DragDropPayload.SourceId == id) + return false; + + IM_ASSERT(g.DragDropWithinTarget == false); + g.DragDropTargetRect = display_rect; + g.DragDropTargetId = id; + g.DragDropWithinTarget = true; + return true; +} + +bool ImGui::IsDragDropPayloadBeingAccepted() +{ + ImGuiContext& g = *GImGui; + return g.DragDropActive && g.DragDropAcceptIdPrev != 0; +} + +const ImGuiPayload* ImGui::AcceptDragDropPayload(const char* type, ImGuiDragDropFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiPayload& payload = g.DragDropPayload; + IM_ASSERT(g.DragDropActive); // Not called between BeginDragDropTarget() and EndDragDropTarget() ? + IM_ASSERT(payload.DataFrameCount != -1); // Forgot to call EndDragDropTarget() ? + if (type != NULL && !payload.IsDataType(type)) + return NULL; + + // Accept smallest drag target bounding box, this allows us to nest drag targets conveniently without ordering constraints. + // NB: We currently accept NULL id as target. However, overlapping targets requires a unique ID to function! + const bool was_accepted_previously = (g.DragDropAcceptIdPrev == g.DragDropTargetId); + ImRect r = g.DragDropTargetRect; + float r_surface = r.GetWidth() * r.GetHeight(); + if (r_surface > g.DragDropAcceptIdCurrRectSurface) + return NULL; + + g.DragDropAcceptFlags = flags; + g.DragDropAcceptIdCurr = g.DragDropTargetId; + g.DragDropAcceptIdCurrRectSurface = r_surface; + //IMGUI_DEBUG_LOG("AcceptDragDropPayload(): %08X: accept\n", g.DragDropTargetId); + + // Render default drop visuals + payload.Preview = was_accepted_previously; + flags |= (g.DragDropSourceFlags & ImGuiDragDropFlags_AcceptNoDrawDefaultRect); // Source can also inhibit the preview (useful for external sources that live for 1 frame) + if (!(flags & ImGuiDragDropFlags_AcceptNoDrawDefaultRect) && payload.Preview) + window->DrawList->AddRect(r.Min - ImVec2(3.5f,3.5f), r.Max + ImVec2(3.5f, 3.5f), GetColorU32(ImGuiCol_DragDropTarget), 0.0f, 0, 2.0f); + + g.DragDropAcceptFrameCount = g.FrameCount; + payload.Delivery = was_accepted_previously && !IsMouseDown(g.DragDropMouseButton); // For extern drag sources affecting OS window focus, it's easier to just test !IsMouseDown() instead of IsMouseReleased() + if (!payload.Delivery && !(flags & ImGuiDragDropFlags_AcceptBeforeDelivery)) + return NULL; + + //IMGUI_DEBUG_LOG("AcceptDragDropPayload(): %08X: return payload\n", g.DragDropTargetId); + return &payload; +} + +// FIXME-DRAGDROP: Settle on a proper default visuals for drop target. +void ImGui::RenderDragDropTargetRect(const ImRect& bb) +{ + GetWindowDrawList()->AddRect(bb.Min - ImVec2(3.5f, 3.5f), bb.Max + ImVec2(3.5f, 3.5f), GetColorU32(ImGuiCol_DragDropTarget), 0.0f, 0, 2.0f); +} + +const ImGuiPayload* ImGui::GetDragDropPayload() +{ + ImGuiContext& g = *GImGui; + return (g.DragDropActive && g.DragDropPayload.DataFrameCount != -1) ? &g.DragDropPayload : NULL; +} + +void ImGui::EndDragDropTarget() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.DragDropActive); + IM_ASSERT(g.DragDropWithinTarget); + g.DragDropWithinTarget = false; + + // Clear drag and drop state payload right after delivery + if (g.DragDropPayload.Delivery) + ClearDragDrop(); +} + +//----------------------------------------------------------------------------- +// [SECTION] LOGGING/CAPTURING +//----------------------------------------------------------------------------- +// All text output from the interface can be captured into tty/file/clipboard. +// By default, tree nodes are automatically opened during logging. +//----------------------------------------------------------------------------- + +// Pass text data straight to log (without being displayed) +static inline void LogTextV(ImGuiContext& g, const char* fmt, va_list args) +{ + if (g.LogFile) + { + g.LogBuffer.Buf.resize(0); + g.LogBuffer.appendfv(fmt, args); + ImFileWrite(g.LogBuffer.c_str(), sizeof(char), (ImU64)g.LogBuffer.size(), g.LogFile); + } + else + { + g.LogBuffer.appendfv(fmt, args); + } +} + +void ImGui::LogText(const char* fmt, ...) +{ + ImGuiContext& g = *GImGui; + if (!g.LogEnabled) + return; + + va_list args; + va_start(args, fmt); + LogTextV(g, fmt, args); + va_end(args); +} + +void ImGui::LogTextV(const char* fmt, va_list args) +{ + ImGuiContext& g = *GImGui; + if (!g.LogEnabled) + return; + + LogTextV(g, fmt, args); +} + +// Internal version that takes a position to decide on newline placement and pad items according to their depth. +// We split text into individual lines to add current tree level padding +// FIXME: This code is a little complicated perhaps, considering simplifying the whole system. +void ImGui::LogRenderedText(const ImVec2* ref_pos, const char* text, const char* text_end) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + const char* prefix = g.LogNextPrefix; + const char* suffix = g.LogNextSuffix; + g.LogNextPrefix = g.LogNextSuffix = NULL; + + if (!text_end) + text_end = FindRenderedTextEnd(text, text_end); + + const bool log_new_line = ref_pos && (ref_pos->y > g.LogLinePosY + g.Style.FramePadding.y + 1); + if (ref_pos) + g.LogLinePosY = ref_pos->y; + if (log_new_line) + { + LogText(IM_NEWLINE); + g.LogLineFirstItem = true; + } + + if (prefix) + LogRenderedText(ref_pos, prefix, prefix + strlen(prefix)); // Calculate end ourself to ensure "##" are included here. + + // Re-adjust padding if we have popped out of our starting depth + if (g.LogDepthRef > window->DC.TreeDepth) + g.LogDepthRef = window->DC.TreeDepth; + const int tree_depth = (window->DC.TreeDepth - g.LogDepthRef); + + const char* text_remaining = text; + for (;;) + { + // Split the string. Each new line (after a '\n') is followed by indentation corresponding to the current depth of our log entry. + // We don't add a trailing \n yet to allow a subsequent item on the same line to be captured. + const char* line_start = text_remaining; + const char* line_end = ImStreolRange(line_start, text_end); + const bool is_last_line = (line_end == text_end); + if (line_start != line_end || !is_last_line) + { + const int line_length = (int)(line_end - line_start); + const int indentation = g.LogLineFirstItem ? tree_depth * 4 : 1; + LogText("%*s%.*s", indentation, "", line_length, line_start); + g.LogLineFirstItem = false; + if (*line_end == '\n') + { + LogText(IM_NEWLINE); + g.LogLineFirstItem = true; + } + } + if (is_last_line) + break; + text_remaining = line_end + 1; + } + + if (suffix) + LogRenderedText(ref_pos, suffix, suffix + strlen(suffix)); +} + +// Start logging/capturing text output +void ImGui::LogBegin(ImGuiLogType type, int auto_open_depth) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(g.LogEnabled == false); + IM_ASSERT(g.LogFile == NULL); + IM_ASSERT(g.LogBuffer.empty()); + g.LogEnabled = true; + g.LogType = type; + g.LogNextPrefix = g.LogNextSuffix = NULL; + g.LogDepthRef = window->DC.TreeDepth; + g.LogDepthToExpand = ((auto_open_depth >= 0) ? auto_open_depth : g.LogDepthToExpandDefault); + g.LogLinePosY = FLT_MAX; + g.LogLineFirstItem = true; +} + +// Important: doesn't copy underlying data, use carefully (prefix/suffix must be in scope at the time of the next LogRenderedText) +void ImGui::LogSetNextTextDecoration(const char* prefix, const char* suffix) +{ + ImGuiContext& g = *GImGui; + g.LogNextPrefix = prefix; + g.LogNextSuffix = suffix; +} + +void ImGui::LogToTTY(int auto_open_depth) +{ + ImGuiContext& g = *GImGui; + if (g.LogEnabled) + return; + IM_UNUSED(auto_open_depth); +#ifndef IMGUI_DISABLE_TTY_FUNCTIONS + LogBegin(ImGuiLogType_TTY, auto_open_depth); + g.LogFile = stdout; +#endif +} + +// Start logging/capturing text output to given file +void ImGui::LogToFile(int auto_open_depth, const char* filename) +{ + ImGuiContext& g = *GImGui; + if (g.LogEnabled) + return; + + // FIXME: We could probably open the file in text mode "at", however note that clipboard/buffer logging will still + // be subject to outputting OS-incompatible carriage return if within strings the user doesn't use IM_NEWLINE. + // By opening the file in binary mode "ab" we have consistent output everywhere. + if (!filename) + filename = g.IO.LogFilename; + if (!filename || !filename[0]) + return; + ImFileHandle f = ImFileOpen(filename, "ab"); + if (!f) + { + IM_ASSERT(0); + return; + } + + LogBegin(ImGuiLogType_File, auto_open_depth); + g.LogFile = f; +} + +// Start logging/capturing text output to clipboard +void ImGui::LogToClipboard(int auto_open_depth) +{ + ImGuiContext& g = *GImGui; + if (g.LogEnabled) + return; + LogBegin(ImGuiLogType_Clipboard, auto_open_depth); +} + +void ImGui::LogToBuffer(int auto_open_depth) +{ + ImGuiContext& g = *GImGui; + if (g.LogEnabled) + return; + LogBegin(ImGuiLogType_Buffer, auto_open_depth); +} + +void ImGui::LogFinish() +{ + ImGuiContext& g = *GImGui; + if (!g.LogEnabled) + return; + + LogText(IM_NEWLINE); + switch (g.LogType) + { + case ImGuiLogType_TTY: +#ifndef IMGUI_DISABLE_TTY_FUNCTIONS + fflush(g.LogFile); +#endif + break; + case ImGuiLogType_File: + ImFileClose(g.LogFile); + break; + case ImGuiLogType_Buffer: + break; + case ImGuiLogType_Clipboard: + if (!g.LogBuffer.empty()) + SetClipboardText(g.LogBuffer.begin()); + break; + case ImGuiLogType_None: + IM_ASSERT(0); + break; + } + + g.LogEnabled = false; + g.LogType = ImGuiLogType_None; + g.LogFile = NULL; + g.LogBuffer.clear(); +} + +// Helper to display logging buttons +// FIXME-OBSOLETE: We should probably obsolete this and let the user have their own helper (this is one of the oldest function alive!) +void ImGui::LogButtons() +{ + ImGuiContext& g = *GImGui; + + PushID("LogButtons"); +#ifndef IMGUI_DISABLE_TTY_FUNCTIONS + const bool log_to_tty = Button("Log To TTY"); SameLine(); +#else + const bool log_to_tty = false; +#endif + const bool log_to_file = Button("Log To File"); SameLine(); + const bool log_to_clipboard = Button("Log To Clipboard"); SameLine(); + PushTabStop(false); + SetNextItemWidth(80.0f); + SliderInt("Default Depth", &g.LogDepthToExpandDefault, 0, 9, NULL); + PopTabStop(); + PopID(); + + // Start logging at the end of the function so that the buttons don't appear in the log + if (log_to_tty) + LogToTTY(); + if (log_to_file) + LogToFile(); + if (log_to_clipboard) + LogToClipboard(); +} + + +//----------------------------------------------------------------------------- +// [SECTION] SETTINGS +//----------------------------------------------------------------------------- +// - UpdateSettings() [Internal] +// - MarkIniSettingsDirty() [Internal] +// - FindSettingsHandler() [Internal] +// - ClearIniSettings() [Internal] +// - LoadIniSettingsFromDisk() +// - LoadIniSettingsFromMemory() +// - SaveIniSettingsToDisk() +// - SaveIniSettingsToMemory() +//----------------------------------------------------------------------------- +// - CreateNewWindowSettings() [Internal] +// - FindWindowSettingsByID() [Internal] +// - FindWindowSettingsByWindow() [Internal] +// - ClearWindowSettings() [Internal] +// - WindowSettingsHandler_***() [Internal] +//----------------------------------------------------------------------------- + +// Called by NewFrame() +void ImGui::UpdateSettings() +{ + // Load settings on first frame (if not explicitly loaded manually before) + ImGuiContext& g = *GImGui; + if (!g.SettingsLoaded) + { + IM_ASSERT(g.SettingsWindows.empty()); + if (g.IO.IniFilename) + LoadIniSettingsFromDisk(g.IO.IniFilename); + g.SettingsLoaded = true; + } + + // Save settings (with a delay after the last modification, so we don't spam disk too much) + if (g.SettingsDirtyTimer > 0.0f) + { + g.SettingsDirtyTimer -= g.IO.DeltaTime; + if (g.SettingsDirtyTimer <= 0.0f) + { + if (g.IO.IniFilename != NULL) + SaveIniSettingsToDisk(g.IO.IniFilename); + else + g.IO.WantSaveIniSettings = true; // Let user know they can call SaveIniSettingsToMemory(). user will need to clear io.WantSaveIniSettings themselves. + g.SettingsDirtyTimer = 0.0f; + } + } +} + +void ImGui::MarkIniSettingsDirty() +{ + ImGuiContext& g = *GImGui; + if (g.SettingsDirtyTimer <= 0.0f) + g.SettingsDirtyTimer = g.IO.IniSavingRate; +} + +void ImGui::MarkIniSettingsDirty(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + if (!(window->Flags & ImGuiWindowFlags_NoSavedSettings)) + if (g.SettingsDirtyTimer <= 0.0f) + g.SettingsDirtyTimer = g.IO.IniSavingRate; +} + +void ImGui::AddSettingsHandler(const ImGuiSettingsHandler* handler) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(FindSettingsHandler(handler->TypeName) == NULL); + g.SettingsHandlers.push_back(*handler); +} + +void ImGui::RemoveSettingsHandler(const char* type_name) +{ + ImGuiContext& g = *GImGui; + if (ImGuiSettingsHandler* handler = FindSettingsHandler(type_name)) + g.SettingsHandlers.erase(handler); +} + +ImGuiSettingsHandler* ImGui::FindSettingsHandler(const char* type_name) +{ + ImGuiContext& g = *GImGui; + const ImGuiID type_hash = ImHashStr(type_name); + for (ImGuiSettingsHandler& handler : g.SettingsHandlers) + if (handler.TypeHash == type_hash) + return &handler; + return NULL; +} + +// Clear all settings (windows, tables, docking etc.) +void ImGui::ClearIniSettings() +{ + ImGuiContext& g = *GImGui; + g.SettingsIniData.clear(); + for (ImGuiSettingsHandler& handler : g.SettingsHandlers) + if (handler.ClearAllFn != NULL) + handler.ClearAllFn(&g, &handler); +} + +void ImGui::LoadIniSettingsFromDisk(const char* ini_filename) +{ + size_t file_data_size = 0; + char* file_data = (char*)ImFileLoadToMemory(ini_filename, "rb", &file_data_size); + if (!file_data) + return; + if (file_data_size > 0) + LoadIniSettingsFromMemory(file_data, (size_t)file_data_size); + IM_FREE(file_data); +} + +// Zero-tolerance, no error reporting, cheap .ini parsing +// Set ini_size==0 to let us use strlen(ini_data). Do not call this function with a 0 if your buffer is actually empty! +void ImGui::LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.Initialized); + //IM_ASSERT(!g.WithinFrameScope && "Cannot be called between NewFrame() and EndFrame()"); + //IM_ASSERT(g.SettingsLoaded == false && g.FrameCount == 0); + + // For user convenience, we allow passing a non zero-terminated string (hence the ini_size parameter). + // For our convenience and to make the code simpler, we'll also write zero-terminators within the buffer. So let's create a writable copy.. + if (ini_size == 0) + ini_size = strlen(ini_data); + g.SettingsIniData.Buf.resize((int)ini_size + 1); + char* const buf = g.SettingsIniData.Buf.Data; + char* const buf_end = buf + ini_size; + memcpy(buf, ini_data, ini_size); + buf_end[0] = 0; + + // Call pre-read handlers + // Some types will clear their data (e.g. dock information) some types will allow merge/override (window) + for (ImGuiSettingsHandler& handler : g.SettingsHandlers) + if (handler.ReadInitFn != NULL) + handler.ReadInitFn(&g, &handler); + + void* entry_data = NULL; + ImGuiSettingsHandler* entry_handler = NULL; + + char* line_end = NULL; + for (char* line = buf; line < buf_end; line = line_end + 1) + { + // Skip new lines markers, then find end of the line + while (*line == '\n' || *line == '\r') + line++; + line_end = line; + while (line_end < buf_end && *line_end != '\n' && *line_end != '\r') + line_end++; + line_end[0] = 0; + if (line[0] == ';') + continue; + if (line[0] == '[' && line_end > line && line_end[-1] == ']') + { + // Parse "[Type][Name]". Note that 'Name' can itself contains [] characters, which is acceptable with the current format and parsing code. + line_end[-1] = 0; + const char* name_end = line_end - 1; + const char* type_start = line + 1; + char* type_end = (char*)(void*)ImStrchrRange(type_start, name_end, ']'); + const char* name_start = type_end ? ImStrchrRange(type_end + 1, name_end, '[') : NULL; + if (!type_end || !name_start) + continue; + *type_end = 0; // Overwrite first ']' + name_start++; // Skip second '[' + entry_handler = FindSettingsHandler(type_start); + entry_data = entry_handler ? entry_handler->ReadOpenFn(&g, entry_handler, name_start) : NULL; + } + else if (entry_handler != NULL && entry_data != NULL) + { + // Let type handler parse the line + entry_handler->ReadLineFn(&g, entry_handler, entry_data, line); + } + } + g.SettingsLoaded = true; + + // [DEBUG] Restore untouched copy so it can be browsed in Metrics (not strictly necessary) + memcpy(buf, ini_data, ini_size); + + // Call post-read handlers + for (ImGuiSettingsHandler& handler : g.SettingsHandlers) + if (handler.ApplyAllFn != NULL) + handler.ApplyAllFn(&g, &handler); +} + +void ImGui::SaveIniSettingsToDisk(const char* ini_filename) +{ + ImGuiContext& g = *GImGui; + g.SettingsDirtyTimer = 0.0f; + if (!ini_filename) + return; + + size_t ini_data_size = 0; + const char* ini_data = SaveIniSettingsToMemory(&ini_data_size); + ImFileHandle f = ImFileOpen(ini_filename, "wt"); + if (!f) + return; + ImFileWrite(ini_data, sizeof(char), ini_data_size, f); + ImFileClose(f); +} + +// Call registered handlers (e.g. SettingsHandlerWindow_WriteAll() + custom handlers) to write their stuff into a text buffer +const char* ImGui::SaveIniSettingsToMemory(size_t* out_size) +{ + ImGuiContext& g = *GImGui; + g.SettingsDirtyTimer = 0.0f; + g.SettingsIniData.Buf.resize(0); + g.SettingsIniData.Buf.push_back(0); + for (ImGuiSettingsHandler& handler : g.SettingsHandlers) + handler.WriteAllFn(&g, &handler, &g.SettingsIniData); + if (out_size) + *out_size = (size_t)g.SettingsIniData.size(); + return g.SettingsIniData.c_str(); +} + +ImGuiWindowSettings* ImGui::CreateNewWindowSettings(const char* name) +{ + ImGuiContext& g = *GImGui; + + if (g.IO.ConfigDebugIniSettings == false) + { + // Skip to the "###" marker if any. We don't skip past to match the behavior of GetID() + // Preserve the full string when ConfigDebugVerboseIniSettings is set to make .ini inspection easier. + if (const char* p = strstr(name, "###")) + name = p; + } + const size_t name_len = strlen(name); + + // Allocate chunk + const size_t chunk_size = sizeof(ImGuiWindowSettings) + name_len + 1; + ImGuiWindowSettings* settings = g.SettingsWindows.alloc_chunk(chunk_size); + IM_PLACEMENT_NEW(settings) ImGuiWindowSettings(); + settings->ID = ImHashStr(name, name_len); + memcpy(settings->GetName(), name, name_len + 1); // Store with zero terminator + + return settings; +} + +// We don't provide a FindWindowSettingsByName() because Docking system doesn't always hold on names. +// This is called once per window .ini entry + once per newly instantiated window. +ImGuiWindowSettings* ImGui::FindWindowSettingsByID(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + for (ImGuiWindowSettings* settings = g.SettingsWindows.begin(); settings != NULL; settings = g.SettingsWindows.next_chunk(settings)) + if (settings->ID == id && !settings->WantDelete) + return settings; + return NULL; +} + +// This is faster if you are holding on a Window already as we don't need to perform a search. +ImGuiWindowSettings* ImGui::FindWindowSettingsByWindow(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + if (window->SettingsOffset != -1) + return g.SettingsWindows.ptr_from_offset(window->SettingsOffset); + return FindWindowSettingsByID(window->ID); +} + +// This will revert window to its initial state, including enabling the ImGuiCond_FirstUseEver/ImGuiCond_Once conditions once more. +void ImGui::ClearWindowSettings(const char* name) +{ + //IMGUI_DEBUG_LOG("ClearWindowSettings('%s')\n", name); + ImGuiWindow* window = FindWindowByName(name); + if (window != NULL) + { + window->Flags |= ImGuiWindowFlags_NoSavedSettings; + InitOrLoadWindowSettings(window, NULL); + } + if (ImGuiWindowSettings* settings = window ? FindWindowSettingsByWindow(window) : FindWindowSettingsByID(ImHashStr(name))) + settings->WantDelete = true; +} + +static void WindowSettingsHandler_ClearAll(ImGuiContext* ctx, ImGuiSettingsHandler*) +{ + ImGuiContext& g = *ctx; + for (ImGuiWindow* window : g.Windows) + window->SettingsOffset = -1; + g.SettingsWindows.clear(); +} + +static void* WindowSettingsHandler_ReadOpen(ImGuiContext*, ImGuiSettingsHandler*, const char* name) +{ + ImGuiID id = ImHashStr(name); + ImGuiWindowSettings* settings = ImGui::FindWindowSettingsByID(id); + if (settings) + *settings = ImGuiWindowSettings(); // Clear existing if recycling previous entry + else + settings = ImGui::CreateNewWindowSettings(name); + settings->ID = id; + settings->WantApply = true; + return (void*)settings; +} + +static void WindowSettingsHandler_ReadLine(ImGuiContext*, ImGuiSettingsHandler*, void* entry, const char* line) +{ + ImGuiWindowSettings* settings = (ImGuiWindowSettings*)entry; + int x, y; + int i; + if (sscanf(line, "Pos=%i,%i", &x, &y) == 2) { settings->Pos = ImVec2ih((short)x, (short)y); } + else if (sscanf(line, "Size=%i,%i", &x, &y) == 2) { settings->Size = ImVec2ih((short)x, (short)y); } + else if (sscanf(line, "Collapsed=%d", &i) == 1) { settings->Collapsed = (i != 0); } +} + +// Apply to existing windows (if any) +static void WindowSettingsHandler_ApplyAll(ImGuiContext* ctx, ImGuiSettingsHandler*) +{ + ImGuiContext& g = *ctx; + for (ImGuiWindowSettings* settings = g.SettingsWindows.begin(); settings != NULL; settings = g.SettingsWindows.next_chunk(settings)) + if (settings->WantApply) + { + if (ImGuiWindow* window = ImGui::FindWindowByID(settings->ID)) + ApplyWindowSettings(window, settings); + settings->WantApply = false; + } +} + +static void WindowSettingsHandler_WriteAll(ImGuiContext* ctx, ImGuiSettingsHandler* handler, ImGuiTextBuffer* buf) +{ + // Gather data from windows that were active during this session + // (if a window wasn't opened in this session we preserve its settings) + ImGuiContext& g = *ctx; + for (ImGuiWindow* window : g.Windows) + { + if (window->Flags & ImGuiWindowFlags_NoSavedSettings) + continue; + + ImGuiWindowSettings* settings = ImGui::FindWindowSettingsByWindow(window); + if (!settings) + { + settings = ImGui::CreateNewWindowSettings(window->Name); + window->SettingsOffset = g.SettingsWindows.offset_from_ptr(settings); + } + IM_ASSERT(settings->ID == window->ID); + settings->Pos = ImVec2ih(window->Pos); + settings->Size = ImVec2ih(window->SizeFull); + + settings->Collapsed = window->Collapsed; + settings->WantDelete = false; + } + + // Write to text buffer + buf->reserve(buf->size() + g.SettingsWindows.size() * 6); // ballpark reserve + for (ImGuiWindowSettings* settings = g.SettingsWindows.begin(); settings != NULL; settings = g.SettingsWindows.next_chunk(settings)) + { + if (settings->WantDelete) + continue; + const char* settings_name = settings->GetName(); + buf->appendf("[%s][%s]\n", handler->TypeName, settings_name); + buf->appendf("Pos=%d,%d\n", settings->Pos.x, settings->Pos.y); + buf->appendf("Size=%d,%d\n", settings->Size.x, settings->Size.y); + buf->appendf("Collapsed=%d\n", settings->Collapsed); + buf->append("\n"); + } +} + + +//----------------------------------------------------------------------------- +// [SECTION] LOCALIZATION +//----------------------------------------------------------------------------- + +void ImGui::LocalizeRegisterEntries(const ImGuiLocEntry* entries, int count) +{ + ImGuiContext& g = *GImGui; + for (int n = 0; n < count; n++) + g.LocalizationTable[entries[n].Key] = entries[n].Text; +} + + +//----------------------------------------------------------------------------- +// [SECTION] VIEWPORTS, PLATFORM WINDOWS +//----------------------------------------------------------------------------- +// - GetMainViewport() +// - SetWindowViewport() [Internal] +// - UpdateViewportsNewFrame() [Internal] +// (this section is more complete in the 'docking' branch) +//----------------------------------------------------------------------------- + +ImGuiViewport* ImGui::GetMainViewport() +{ + ImGuiContext& g = *GImGui; + return g.Viewports[0]; +} + +void ImGui::SetWindowViewport(ImGuiWindow* window, ImGuiViewportP* viewport) +{ + window->Viewport = viewport; +} + +// Update viewports and monitor infos +static void ImGui::UpdateViewportsNewFrame() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.Viewports.Size == 1); + + // Update main viewport with current platform position. + // FIXME-VIEWPORT: Size is driven by backend/user code for backward-compatibility but we should aim to make this more consistent. + ImGuiViewportP* main_viewport = g.Viewports[0]; + main_viewport->Flags = ImGuiViewportFlags_IsPlatformWindow | ImGuiViewportFlags_OwnedByApp; + main_viewport->Pos = ImVec2(0.0f, 0.0f); + main_viewport->Size = g.IO.DisplaySize; + + for (ImGuiViewportP* viewport : g.Viewports) + { + // Lock down space taken by menu bars and status bars, reset the offset for fucntions like BeginMainMenuBar() to alter them again. + viewport->WorkOffsetMin = viewport->BuildWorkOffsetMin; + viewport->WorkOffsetMax = viewport->BuildWorkOffsetMax; + viewport->BuildWorkOffsetMin = viewport->BuildWorkOffsetMax = ImVec2(0.0f, 0.0f); + viewport->UpdateWorkRect(); + } +} + +//----------------------------------------------------------------------------- +// [SECTION] DOCKING +//----------------------------------------------------------------------------- + +// (this section is filled in the 'docking' branch) + + +//----------------------------------------------------------------------------- +// [SECTION] PLATFORM DEPENDENT HELPERS +//----------------------------------------------------------------------------- + +#if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS) && !defined(IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS) + +#ifdef _MSC_VER +#pragma comment(lib, "user32") +#pragma comment(lib, "kernel32") +#endif + +// Win32 clipboard implementation +// We use g.ClipboardHandlerData for temporary storage to ensure it is freed on Shutdown() +static const char* GetClipboardTextFn_DefaultImpl(void* user_data_ctx) +{ + ImGuiContext& g = *(ImGuiContext*)user_data_ctx; + g.ClipboardHandlerData.clear(); + if (!::OpenClipboard(NULL)) + return NULL; + HANDLE wbuf_handle = ::GetClipboardData(CF_UNICODETEXT); + if (wbuf_handle == NULL) + { + ::CloseClipboard(); + return NULL; + } + if (const WCHAR* wbuf_global = (const WCHAR*)::GlobalLock(wbuf_handle)) + { + int buf_len = ::WideCharToMultiByte(CP_UTF8, 0, wbuf_global, -1, NULL, 0, NULL, NULL); + g.ClipboardHandlerData.resize(buf_len); + ::WideCharToMultiByte(CP_UTF8, 0, wbuf_global, -1, g.ClipboardHandlerData.Data, buf_len, NULL, NULL); + } + ::GlobalUnlock(wbuf_handle); + ::CloseClipboard(); + return g.ClipboardHandlerData.Data; +} + +static void SetClipboardTextFn_DefaultImpl(void*, const char* text) +{ + if (!::OpenClipboard(NULL)) + return; + const int wbuf_length = ::MultiByteToWideChar(CP_UTF8, 0, text, -1, NULL, 0); + HGLOBAL wbuf_handle = ::GlobalAlloc(GMEM_MOVEABLE, (SIZE_T)wbuf_length * sizeof(WCHAR)); + if (wbuf_handle == NULL) + { + ::CloseClipboard(); + return; + } + WCHAR* wbuf_global = (WCHAR*)::GlobalLock(wbuf_handle); + ::MultiByteToWideChar(CP_UTF8, 0, text, -1, wbuf_global, wbuf_length); + ::GlobalUnlock(wbuf_handle); + ::EmptyClipboard(); + if (::SetClipboardData(CF_UNICODETEXT, wbuf_handle) == NULL) + ::GlobalFree(wbuf_handle); + ::CloseClipboard(); +} + +#elif defined(__APPLE__) && TARGET_OS_OSX && defined(IMGUI_ENABLE_OSX_DEFAULT_CLIPBOARD_FUNCTIONS) + +#include // Use old API to avoid need for separate .mm file +static PasteboardRef main_clipboard = 0; + +// OSX clipboard implementation +// If you enable this you will need to add '-framework ApplicationServices' to your linker command-line! +static void SetClipboardTextFn_DefaultImpl(void*, const char* text) +{ + if (!main_clipboard) + PasteboardCreate(kPasteboardClipboard, &main_clipboard); + PasteboardClear(main_clipboard); + CFDataRef cf_data = CFDataCreate(kCFAllocatorDefault, (const UInt8*)text, strlen(text)); + if (cf_data) + { + PasteboardPutItemFlavor(main_clipboard, (PasteboardItemID)1, CFSTR("public.utf8-plain-text"), cf_data, 0); + CFRelease(cf_data); + } +} + +static const char* GetClipboardTextFn_DefaultImpl(void* user_data_ctx) +{ + ImGuiContext& g = *(ImGuiContext*)user_data_ctx; + if (!main_clipboard) + PasteboardCreate(kPasteboardClipboard, &main_clipboard); + PasteboardSynchronize(main_clipboard); + + ItemCount item_count = 0; + PasteboardGetItemCount(main_clipboard, &item_count); + for (ItemCount i = 0; i < item_count; i++) + { + PasteboardItemID item_id = 0; + PasteboardGetItemIdentifier(main_clipboard, i + 1, &item_id); + CFArrayRef flavor_type_array = 0; + PasteboardCopyItemFlavors(main_clipboard, item_id, &flavor_type_array); + for (CFIndex j = 0, nj = CFArrayGetCount(flavor_type_array); j < nj; j++) + { + CFDataRef cf_data; + if (PasteboardCopyItemFlavorData(main_clipboard, item_id, CFSTR("public.utf8-plain-text"), &cf_data) == noErr) + { + g.ClipboardHandlerData.clear(); + int length = (int)CFDataGetLength(cf_data); + g.ClipboardHandlerData.resize(length + 1); + CFDataGetBytes(cf_data, CFRangeMake(0, length), (UInt8*)g.ClipboardHandlerData.Data); + g.ClipboardHandlerData[length] = 0; + CFRelease(cf_data); + return g.ClipboardHandlerData.Data; + } + } + } + return NULL; +} + +#else + +// Local Dear ImGui-only clipboard implementation, if user hasn't defined better clipboard handlers. +static const char* GetClipboardTextFn_DefaultImpl(void* user_data_ctx) +{ + ImGuiContext& g = *(ImGuiContext*)user_data_ctx; + return g.ClipboardHandlerData.empty() ? NULL : g.ClipboardHandlerData.begin(); +} + +static void SetClipboardTextFn_DefaultImpl(void* user_data_ctx, const char* text) +{ + ImGuiContext& g = *(ImGuiContext*)user_data_ctx; + g.ClipboardHandlerData.clear(); + const char* text_end = text + strlen(text); + g.ClipboardHandlerData.resize((int)(text_end - text) + 1); + memcpy(&g.ClipboardHandlerData[0], text, (size_t)(text_end - text)); + g.ClipboardHandlerData[(int)(text_end - text)] = 0; +} + +#endif + +// Win32 API IME support (for Asian languages, etc.) +#if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS) && !defined(IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS) + +#include +#ifdef _MSC_VER +#pragma comment(lib, "imm32") +#endif + +static void SetPlatformImeDataFn_DefaultImpl(ImGuiViewport* viewport, ImGuiPlatformImeData* data) +{ + // Notify OS Input Method Editor of text input position + HWND hwnd = (HWND)viewport->PlatformHandleRaw; + if (hwnd == 0) + return; + + //::ImmAssociateContextEx(hwnd, NULL, data->WantVisible ? IACE_DEFAULT : 0); + if (HIMC himc = ::ImmGetContext(hwnd)) + { + COMPOSITIONFORM composition_form = {}; + composition_form.ptCurrentPos.x = (LONG)data->InputPos.x; + composition_form.ptCurrentPos.y = (LONG)data->InputPos.y; + composition_form.dwStyle = CFS_FORCE_POSITION; + ::ImmSetCompositionWindow(himc, &composition_form); + CANDIDATEFORM candidate_form = {}; + candidate_form.dwStyle = CFS_CANDIDATEPOS; + candidate_form.ptCurrentPos.x = (LONG)data->InputPos.x; + candidate_form.ptCurrentPos.y = (LONG)data->InputPos.y; + ::ImmSetCandidateWindow(himc, &candidate_form); + ::ImmReleaseContext(hwnd, himc); + } +} + +#else + +static void SetPlatformImeDataFn_DefaultImpl(ImGuiViewport*, ImGuiPlatformImeData*) {} + +#endif + +//----------------------------------------------------------------------------- +// [SECTION] METRICS/DEBUGGER WINDOW +//----------------------------------------------------------------------------- +// - RenderViewportThumbnail() [Internal] +// - RenderViewportsThumbnails() [Internal] +// - DebugTextEncoding() +// - MetricsHelpMarker() [Internal] +// - ShowFontAtlas() [Internal] +// - ShowMetricsWindow() +// - DebugNodeColumns() [Internal] +// - DebugNodeDrawList() [Internal] +// - DebugNodeDrawCmdShowMeshAndBoundingBox() [Internal] +// - DebugNodeFont() [Internal] +// - DebugNodeFontGlyph() [Internal] +// - DebugNodeStorage() [Internal] +// - DebugNodeTabBar() [Internal] +// - DebugNodeViewport() [Internal] +// - DebugNodeWindow() [Internal] +// - DebugNodeWindowSettings() [Internal] +// - DebugNodeWindowsList() [Internal] +// - DebugNodeWindowsListByBeginStackParent() [Internal] +//----------------------------------------------------------------------------- + +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + +void ImGui::DebugRenderViewportThumbnail(ImDrawList* draw_list, ImGuiViewportP* viewport, const ImRect& bb) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + ImVec2 scale = bb.GetSize() / viewport->Size; + ImVec2 off = bb.Min - viewport->Pos * scale; + float alpha_mul = 1.0f; + window->DrawList->AddRectFilled(bb.Min, bb.Max, GetColorU32(ImGuiCol_Border, alpha_mul * 0.40f)); + for (ImGuiWindow* thumb_window : g.Windows) + { + if (!thumb_window->WasActive || (thumb_window->Flags & ImGuiWindowFlags_ChildWindow)) + continue; + + ImRect thumb_r = thumb_window->Rect(); + ImRect title_r = thumb_window->TitleBarRect(); + thumb_r = ImRect(ImFloor(off + thumb_r.Min * scale), ImFloor(off + thumb_r.Max * scale)); + title_r = ImRect(ImFloor(off + title_r.Min * scale), ImFloor(off + ImVec2(title_r.Max.x, title_r.Min.y) * scale) + ImVec2(0,5)); // Exaggerate title bar height + thumb_r.ClipWithFull(bb); + title_r.ClipWithFull(bb); + const bool window_is_focused = (g.NavWindow && thumb_window->RootWindowForTitleBarHighlight == g.NavWindow->RootWindowForTitleBarHighlight); + window->DrawList->AddRectFilled(thumb_r.Min, thumb_r.Max, GetColorU32(ImGuiCol_WindowBg, alpha_mul)); + window->DrawList->AddRectFilled(title_r.Min, title_r.Max, GetColorU32(window_is_focused ? ImGuiCol_TitleBgActive : ImGuiCol_TitleBg, alpha_mul)); + window->DrawList->AddRect(thumb_r.Min, thumb_r.Max, GetColorU32(ImGuiCol_Border, alpha_mul)); + window->DrawList->AddText(g.Font, g.FontSize * 1.0f, title_r.Min, GetColorU32(ImGuiCol_Text, alpha_mul), thumb_window->Name, FindRenderedTextEnd(thumb_window->Name)); + } + draw_list->AddRect(bb.Min, bb.Max, GetColorU32(ImGuiCol_Border, alpha_mul)); +} + +static void RenderViewportsThumbnails() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + // We don't display full monitor bounds (we could, but it often looks awkward), instead we display just enough to cover all of our viewports. + float SCALE = 1.0f / 8.0f; + ImRect bb_full(FLT_MAX, FLT_MAX, -FLT_MAX, -FLT_MAX); + for (ImGuiViewportP* viewport : g.Viewports) + bb_full.Add(viewport->GetMainRect()); + ImVec2 p = window->DC.CursorPos; + ImVec2 off = p - bb_full.Min * SCALE; + for (ImGuiViewportP* viewport : g.Viewports) + { + ImRect viewport_draw_bb(off + (viewport->Pos) * SCALE, off + (viewport->Pos + viewport->Size) * SCALE); + ImGui::DebugRenderViewportThumbnail(window->DrawList, viewport, viewport_draw_bb); + } + ImGui::Dummy(bb_full.GetSize() * SCALE); +} + +// Draw an arbitrary US keyboard layout to visualize translated keys +void ImGui::DebugRenderKeyboardPreview(ImDrawList* draw_list) +{ + const ImVec2 key_size = ImVec2(35.0f, 35.0f); + const float key_rounding = 3.0f; + const ImVec2 key_face_size = ImVec2(25.0f, 25.0f); + const ImVec2 key_face_pos = ImVec2(5.0f, 3.0f); + const float key_face_rounding = 2.0f; + const ImVec2 key_label_pos = ImVec2(7.0f, 4.0f); + const ImVec2 key_step = ImVec2(key_size.x - 1.0f, key_size.y - 1.0f); + const float key_row_offset = 9.0f; + + ImVec2 board_min = GetCursorScreenPos(); + ImVec2 board_max = ImVec2(board_min.x + 3 * key_step.x + 2 * key_row_offset + 10.0f, board_min.y + 3 * key_step.y + 10.0f); + ImVec2 start_pos = ImVec2(board_min.x + 5.0f - key_step.x, board_min.y); + + struct KeyLayoutData { int Row, Col; const char* Label; ImGuiKey Key; }; + const KeyLayoutData keys_to_display[] = + { + { 0, 0, "", ImGuiKey_Tab }, { 0, 1, "Q", ImGuiKey_Q }, { 0, 2, "W", ImGuiKey_W }, { 0, 3, "E", ImGuiKey_E }, { 0, 4, "R", ImGuiKey_R }, + { 1, 0, "", ImGuiKey_CapsLock }, { 1, 1, "A", ImGuiKey_A }, { 1, 2, "S", ImGuiKey_S }, { 1, 3, "D", ImGuiKey_D }, { 1, 4, "F", ImGuiKey_F }, + { 2, 0, "", ImGuiKey_LeftShift },{ 2, 1, "Z", ImGuiKey_Z }, { 2, 2, "X", ImGuiKey_X }, { 2, 3, "C", ImGuiKey_C }, { 2, 4, "V", ImGuiKey_V } + }; + + // Elements rendered manually via ImDrawList API are not clipped automatically. + // While not strictly necessary, here IsItemVisible() is used to avoid rendering these shapes when they are out of view. + Dummy(board_max - board_min); + if (!IsItemVisible()) + return; + draw_list->PushClipRect(board_min, board_max, true); + for (int n = 0; n < IM_ARRAYSIZE(keys_to_display); n++) + { + const KeyLayoutData* key_data = &keys_to_display[n]; + ImVec2 key_min = ImVec2(start_pos.x + key_data->Col * key_step.x + key_data->Row * key_row_offset, start_pos.y + key_data->Row * key_step.y); + ImVec2 key_max = key_min + key_size; + draw_list->AddRectFilled(key_min, key_max, IM_COL32(204, 204, 204, 255), key_rounding); + draw_list->AddRect(key_min, key_max, IM_COL32(24, 24, 24, 255), key_rounding); + ImVec2 face_min = ImVec2(key_min.x + key_face_pos.x, key_min.y + key_face_pos.y); + ImVec2 face_max = ImVec2(face_min.x + key_face_size.x, face_min.y + key_face_size.y); + draw_list->AddRect(face_min, face_max, IM_COL32(193, 193, 193, 255), key_face_rounding, ImDrawFlags_None, 2.0f); + draw_list->AddRectFilled(face_min, face_max, IM_COL32(252, 252, 252, 255), key_face_rounding); + ImVec2 label_min = ImVec2(key_min.x + key_label_pos.x, key_min.y + key_label_pos.y); + draw_list->AddText(label_min, IM_COL32(64, 64, 64, 255), key_data->Label); + if (IsKeyDown(key_data->Key)) + draw_list->AddRectFilled(key_min, key_max, IM_COL32(255, 0, 0, 128), key_rounding); + } + draw_list->PopClipRect(); +} + +// Helper tool to diagnose between text encoding issues and font loading issues. Pass your UTF-8 string and verify that there are correct. +void ImGui::DebugTextEncoding(const char* str) +{ + Text("Text: \"%s\"", str); + if (!BeginTable("##DebugTextEncoding", 4, ImGuiTableFlags_Borders | ImGuiTableFlags_RowBg | ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_Resizable)) + return; + TableSetupColumn("Offset"); + TableSetupColumn("UTF-8"); + TableSetupColumn("Glyph"); + TableSetupColumn("Codepoint"); + TableHeadersRow(); + for (const char* p = str; *p != 0; ) + { + unsigned int c; + const int c_utf8_len = ImTextCharFromUtf8(&c, p, NULL); + TableNextColumn(); + Text("%d", (int)(p - str)); + TableNextColumn(); + for (int byte_index = 0; byte_index < c_utf8_len; byte_index++) + { + if (byte_index > 0) + SameLine(); + Text("0x%02X", (int)(unsigned char)p[byte_index]); + } + TableNextColumn(); + if (GetFont()->FindGlyphNoFallback((ImWchar)c)) + TextUnformatted(p, p + c_utf8_len); + else + TextUnformatted((c == IM_UNICODE_CODEPOINT_INVALID) ? "[invalid]" : "[missing]"); + TableNextColumn(); + Text("U+%04X", (int)c); + p += c_utf8_len; + } + EndTable(); +} + +// Avoid naming collision with imgui_demo.cpp's HelpMarker() for unity builds. +static void MetricsHelpMarker(const char* desc) +{ + ImGui::TextDisabled("(?)"); + if (ImGui::BeginItemTooltip()) + { + ImGui::PushTextWrapPos(ImGui::GetFontSize() * 35.0f); + ImGui::TextUnformatted(desc); + ImGui::PopTextWrapPos(); + ImGui::EndTooltip(); + } +} + +// [DEBUG] List fonts in a font atlas and display its texture +void ImGui::ShowFontAtlas(ImFontAtlas* atlas) +{ + for (ImFont* font : atlas->Fonts) + { + PushID(font); + DebugNodeFont(font); + PopID(); + } + if (TreeNode("Font Atlas", "Font Atlas (%dx%d pixels)", atlas->TexWidth, atlas->TexHeight)) + { + ImGuiContext& g = *GImGui; + ImGuiMetricsConfig* cfg = &g.DebugMetricsConfig; + Checkbox("Tint with Text Color", &cfg->ShowAtlasTintedWithTextColor); // Using text color ensure visibility of core atlas data, but will alter custom colored icons + ImVec4 tint_col = cfg->ShowAtlasTintedWithTextColor ? GetStyleColorVec4(ImGuiCol_Text) : ImVec4(1.0f, 1.0f, 1.0f, 1.0f); + ImVec4 border_col = GetStyleColorVec4(ImGuiCol_Border); + Image(atlas->TexID, ImVec2((float)atlas->TexWidth, (float)atlas->TexHeight), ImVec2(0.0f, 0.0f), ImVec2(1.0f, 1.0f), tint_col, border_col); + TreePop(); + } +} + +void ImGui::ShowMetricsWindow(bool* p_open) +{ + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + ImGuiMetricsConfig* cfg = &g.DebugMetricsConfig; + if (cfg->ShowDebugLog) + ShowDebugLogWindow(&cfg->ShowDebugLog); + if (cfg->ShowStackTool) + ShowStackToolWindow(&cfg->ShowStackTool); + + if (!Begin("Dear ImGui Metrics/Debugger", p_open) || GetCurrentWindow()->BeginCount > 1) + { + End(); + return; + } + + // Basic info + Text("Dear ImGui %s", GetVersion()); + Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / io.Framerate, io.Framerate); + Text("%d vertices, %d indices (%d triangles)", io.MetricsRenderVertices, io.MetricsRenderIndices, io.MetricsRenderIndices / 3); + Text("%d visible windows, %d active allocations", io.MetricsRenderWindows, io.MetricsActiveAllocations); + //SameLine(); if (SmallButton("GC")) { g.GcCompactAll = true; } + + Separator(); + + // Debugging enums + enum { WRT_OuterRect, WRT_OuterRectClipped, WRT_InnerRect, WRT_InnerClipRect, WRT_WorkRect, WRT_Content, WRT_ContentIdeal, WRT_ContentRegionRect, WRT_Count }; // Windows Rect Type + const char* wrt_rects_names[WRT_Count] = { "OuterRect", "OuterRectClipped", "InnerRect", "InnerClipRect", "WorkRect", "Content", "ContentIdeal", "ContentRegionRect" }; + enum { TRT_OuterRect, TRT_InnerRect, TRT_WorkRect, TRT_HostClipRect, TRT_InnerClipRect, TRT_BackgroundClipRect, TRT_ColumnsRect, TRT_ColumnsWorkRect, TRT_ColumnsClipRect, TRT_ColumnsContentHeadersUsed, TRT_ColumnsContentHeadersIdeal, TRT_ColumnsContentFrozen, TRT_ColumnsContentUnfrozen, TRT_Count }; // Tables Rect Type + const char* trt_rects_names[TRT_Count] = { "OuterRect", "InnerRect", "WorkRect", "HostClipRect", "InnerClipRect", "BackgroundClipRect", "ColumnsRect", "ColumnsWorkRect", "ColumnsClipRect", "ColumnsContentHeadersUsed", "ColumnsContentHeadersIdeal", "ColumnsContentFrozen", "ColumnsContentUnfrozen" }; + if (cfg->ShowWindowsRectsType < 0) + cfg->ShowWindowsRectsType = WRT_WorkRect; + if (cfg->ShowTablesRectsType < 0) + cfg->ShowTablesRectsType = TRT_WorkRect; + + struct Funcs + { + static ImRect GetTableRect(ImGuiTable* table, int rect_type, int n) + { + ImGuiTableInstanceData* table_instance = TableGetInstanceData(table, table->InstanceCurrent); // Always using last submitted instance + if (rect_type == TRT_OuterRect) { return table->OuterRect; } + else if (rect_type == TRT_InnerRect) { return table->InnerRect; } + else if (rect_type == TRT_WorkRect) { return table->WorkRect; } + else if (rect_type == TRT_HostClipRect) { return table->HostClipRect; } + else if (rect_type == TRT_InnerClipRect) { return table->InnerClipRect; } + else if (rect_type == TRT_BackgroundClipRect) { return table->BgClipRect; } + else if (rect_type == TRT_ColumnsRect) { ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->MinX, table->InnerClipRect.Min.y, c->MaxX, table->InnerClipRect.Min.y + table_instance->LastOuterHeight); } + else if (rect_type == TRT_ColumnsWorkRect) { ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->WorkRect.Min.y, c->WorkMaxX, table->WorkRect.Max.y); } + else if (rect_type == TRT_ColumnsClipRect) { ImGuiTableColumn* c = &table->Columns[n]; return c->ClipRect; } + else if (rect_type == TRT_ColumnsContentHeadersUsed){ ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->InnerClipRect.Min.y, c->ContentMaxXHeadersUsed, table->InnerClipRect.Min.y + table_instance->LastFirstRowHeight); } // Note: y1/y2 not always accurate + else if (rect_type == TRT_ColumnsContentHeadersIdeal){ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->InnerClipRect.Min.y, c->ContentMaxXHeadersIdeal, table->InnerClipRect.Min.y + table_instance->LastFirstRowHeight); } + else if (rect_type == TRT_ColumnsContentFrozen) { ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->InnerClipRect.Min.y, c->ContentMaxXFrozen, table->InnerClipRect.Min.y + table_instance->LastFrozenHeight); } + else if (rect_type == TRT_ColumnsContentUnfrozen) { ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->InnerClipRect.Min.y + table_instance->LastFrozenHeight, c->ContentMaxXUnfrozen, table->InnerClipRect.Max.y); } + IM_ASSERT(0); + return ImRect(); + } + + static ImRect GetWindowRect(ImGuiWindow* window, int rect_type) + { + if (rect_type == WRT_OuterRect) { return window->Rect(); } + else if (rect_type == WRT_OuterRectClipped) { return window->OuterRectClipped; } + else if (rect_type == WRT_InnerRect) { return window->InnerRect; } + else if (rect_type == WRT_InnerClipRect) { return window->InnerClipRect; } + else if (rect_type == WRT_WorkRect) { return window->WorkRect; } + else if (rect_type == WRT_Content) { ImVec2 min = window->InnerRect.Min - window->Scroll + window->WindowPadding; return ImRect(min, min + window->ContentSize); } + else if (rect_type == WRT_ContentIdeal) { ImVec2 min = window->InnerRect.Min - window->Scroll + window->WindowPadding; return ImRect(min, min + window->ContentSizeIdeal); } + else if (rect_type == WRT_ContentRegionRect) { return window->ContentRegionRect; } + IM_ASSERT(0); + return ImRect(); + } + }; + + // Tools + if (TreeNode("Tools")) + { + bool show_encoding_viewer = TreeNode("UTF-8 Encoding viewer"); + SameLine(); + MetricsHelpMarker("You can also call ImGui::DebugTextEncoding() from your code with a given string to test that your UTF-8 encoding settings are correct."); + if (show_encoding_viewer) + { + static char buf[100] = ""; + SetNextItemWidth(-FLT_MIN); + InputText("##Text", buf, IM_ARRAYSIZE(buf)); + if (buf[0] != 0) + DebugTextEncoding(buf); + TreePop(); + } + + // The Item Picker tool is super useful to visually select an item and break into the call-stack of where it was submitted. + if (Checkbox("Show Item Picker", &g.DebugItemPickerActive) && g.DebugItemPickerActive) + DebugStartItemPicker(); + SameLine(); + MetricsHelpMarker("Will call the IM_DEBUG_BREAK() macro to break in debugger.\nWarning: If you don't have a debugger attached, this will probably crash."); + + // Stack Tool is your best friend! + Checkbox("Show Debug Log", &cfg->ShowDebugLog); + SameLine(); + MetricsHelpMarker("You can also call ImGui::ShowDebugLogWindow() from your code."); + + // Stack Tool is your best friend! + Checkbox("Show Stack Tool", &cfg->ShowStackTool); + SameLine(); + MetricsHelpMarker("You can also call ImGui::ShowStackToolWindow() from your code."); + + Checkbox("Show windows begin order", &cfg->ShowWindowsBeginOrder); + Checkbox("Show windows rectangles", &cfg->ShowWindowsRects); + SameLine(); + SetNextItemWidth(GetFontSize() * 12); + cfg->ShowWindowsRects |= Combo("##show_windows_rect_type", &cfg->ShowWindowsRectsType, wrt_rects_names, WRT_Count, WRT_Count); + if (cfg->ShowWindowsRects && g.NavWindow != NULL) + { + BulletText("'%s':", g.NavWindow->Name); + Indent(); + for (int rect_n = 0; rect_n < WRT_Count; rect_n++) + { + ImRect r = Funcs::GetWindowRect(g.NavWindow, rect_n); + Text("(%6.1f,%6.1f) (%6.1f,%6.1f) Size (%6.1f,%6.1f) %s", r.Min.x, r.Min.y, r.Max.x, r.Max.y, r.GetWidth(), r.GetHeight(), wrt_rects_names[rect_n]); + } + Unindent(); + } + + Checkbox("Show tables rectangles", &cfg->ShowTablesRects); + SameLine(); + SetNextItemWidth(GetFontSize() * 12); + cfg->ShowTablesRects |= Combo("##show_table_rects_type", &cfg->ShowTablesRectsType, trt_rects_names, TRT_Count, TRT_Count); + if (cfg->ShowTablesRects && g.NavWindow != NULL) + { + for (int table_n = 0; table_n < g.Tables.GetMapSize(); table_n++) + { + ImGuiTable* table = g.Tables.TryGetMapData(table_n); + if (table == NULL || table->LastFrameActive < g.FrameCount - 1 || (table->OuterWindow != g.NavWindow && table->InnerWindow != g.NavWindow)) + continue; + + BulletText("Table 0x%08X (%d columns, in '%s')", table->ID, table->ColumnsCount, table->OuterWindow->Name); + if (IsItemHovered()) + GetForegroundDrawList()->AddRect(table->OuterRect.Min - ImVec2(1, 1), table->OuterRect.Max + ImVec2(1, 1), IM_COL32(255, 255, 0, 255), 0.0f, 0, 2.0f); + Indent(); + char buf[128]; + for (int rect_n = 0; rect_n < TRT_Count; rect_n++) + { + if (rect_n >= TRT_ColumnsRect) + { + if (rect_n != TRT_ColumnsRect && rect_n != TRT_ColumnsClipRect) + continue; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImRect r = Funcs::GetTableRect(table, rect_n, column_n); + ImFormatString(buf, IM_ARRAYSIZE(buf), "(%6.1f,%6.1f) (%6.1f,%6.1f) Size (%6.1f,%6.1f) Col %d %s", r.Min.x, r.Min.y, r.Max.x, r.Max.y, r.GetWidth(), r.GetHeight(), column_n, trt_rects_names[rect_n]); + Selectable(buf); + if (IsItemHovered()) + GetForegroundDrawList()->AddRect(r.Min - ImVec2(1, 1), r.Max + ImVec2(1, 1), IM_COL32(255, 255, 0, 255), 0.0f, 0, 2.0f); + } + } + else + { + ImRect r = Funcs::GetTableRect(table, rect_n, -1); + ImFormatString(buf, IM_ARRAYSIZE(buf), "(%6.1f,%6.1f) (%6.1f,%6.1f) Size (%6.1f,%6.1f) %s", r.Min.x, r.Min.y, r.Max.x, r.Max.y, r.GetWidth(), r.GetHeight(), trt_rects_names[rect_n]); + Selectable(buf); + if (IsItemHovered()) + GetForegroundDrawList()->AddRect(r.Min - ImVec2(1, 1), r.Max + ImVec2(1, 1), IM_COL32(255, 255, 0, 255), 0.0f, 0, 2.0f); + } + } + Unindent(); + } + } + + Checkbox("Debug Begin/BeginChild return value", &io.ConfigDebugBeginReturnValueLoop); + SameLine(); + MetricsHelpMarker("Some calls to Begin()/BeginChild() will return false.\n\nWill cycle through window depths then repeat. Windows should be flickering while running."); + + TreePop(); + } + + // Windows + if (TreeNode("Windows", "Windows (%d)", g.Windows.Size)) + { + //SetNextItemOpen(true, ImGuiCond_Once); + DebugNodeWindowsList(&g.Windows, "By display order"); + DebugNodeWindowsList(&g.WindowsFocusOrder, "By focus order (root windows)"); + if (TreeNode("By submission order (begin stack)")) + { + // Here we display windows in their submitted order/hierarchy, however note that the Begin stack doesn't constitute a Parent<>Child relationship! + ImVector& temp_buffer = g.WindowsTempSortBuffer; + temp_buffer.resize(0); + for (ImGuiWindow* window : g.Windows) + if (window->LastFrameActive + 1 >= g.FrameCount) + temp_buffer.push_back(window); + struct Func { static int IMGUI_CDECL WindowComparerByBeginOrder(const void* lhs, const void* rhs) { return ((int)(*(const ImGuiWindow* const *)lhs)->BeginOrderWithinContext - (*(const ImGuiWindow* const*)rhs)->BeginOrderWithinContext); } }; + ImQsort(temp_buffer.Data, (size_t)temp_buffer.Size, sizeof(ImGuiWindow*), Func::WindowComparerByBeginOrder); + DebugNodeWindowsListByBeginStackParent(temp_buffer.Data, temp_buffer.Size, NULL); + TreePop(); + } + + TreePop(); + } + + // DrawLists + int drawlist_count = 0; + for (ImGuiViewportP* viewport : g.Viewports) + drawlist_count += viewport->DrawDataP.CmdLists.Size; + if (TreeNode("DrawLists", "DrawLists (%d)", drawlist_count)) + { + Checkbox("Show ImDrawCmd mesh when hovering", &cfg->ShowDrawCmdMesh); + Checkbox("Show ImDrawCmd bounding boxes when hovering", &cfg->ShowDrawCmdBoundingBoxes); + for (ImGuiViewportP* viewport : g.Viewports) + for (ImDrawList* draw_list : viewport->DrawDataP.CmdLists) + DebugNodeDrawList(NULL, viewport, draw_list, "DrawList"); + TreePop(); + } + + // Viewports + if (TreeNode("Viewports", "Viewports (%d)", g.Viewports.Size)) + { + Indent(GetTreeNodeToLabelSpacing()); + RenderViewportsThumbnails(); + Unindent(GetTreeNodeToLabelSpacing()); + for (ImGuiViewportP* viewport : g.Viewports) + DebugNodeViewport(viewport); + TreePop(); + } + + // Details for Popups + if (TreeNode("Popups", "Popups (%d)", g.OpenPopupStack.Size)) + { + for (const ImGuiPopupData& popup_data : g.OpenPopupStack) + { + // As it's difficult to interact with tree nodes while popups are open, we display everything inline. + ImGuiWindow* window = popup_data.Window; + BulletText("PopupID: %08x, Window: '%s' (%s%s), BackupNavWindow '%s', ParentWindow '%s'", + popup_data.PopupId, window ? window->Name : "NULL", window && (window->Flags & ImGuiWindowFlags_ChildWindow) ? "Child;" : "", window && (window->Flags & ImGuiWindowFlags_ChildMenu) ? "Menu;" : "", + popup_data.BackupNavWindow ? popup_data.BackupNavWindow->Name : "NULL", window && window->ParentWindow ? window->ParentWindow->Name : "NULL"); + } + TreePop(); + } + + // Details for TabBars + if (TreeNode("TabBars", "Tab Bars (%d)", g.TabBars.GetAliveCount())) + { + for (int n = 0; n < g.TabBars.GetMapSize(); n++) + if (ImGuiTabBar* tab_bar = g.TabBars.TryGetMapData(n)) + { + PushID(tab_bar); + DebugNodeTabBar(tab_bar, "TabBar"); + PopID(); + } + TreePop(); + } + + // Details for Tables + if (TreeNode("Tables", "Tables (%d)", g.Tables.GetAliveCount())) + { + for (int n = 0; n < g.Tables.GetMapSize(); n++) + if (ImGuiTable* table = g.Tables.TryGetMapData(n)) + DebugNodeTable(table); + TreePop(); + } + + // Details for Fonts + ImFontAtlas* atlas = g.IO.Fonts; + if (TreeNode("Fonts", "Fonts (%d)", atlas->Fonts.Size)) + { + ShowFontAtlas(atlas); + TreePop(); + } + + // Details for InputText + if (TreeNode("InputText")) + { + DebugNodeInputTextState(&g.InputTextState); + TreePop(); + } + + // Details for Docking +#ifdef IMGUI_HAS_DOCK + if (TreeNode("Docking")) + { + TreePop(); + } +#endif // #ifdef IMGUI_HAS_DOCK + + // Settings + if (TreeNode("Settings")) + { + if (SmallButton("Clear")) + ClearIniSettings(); + SameLine(); + if (SmallButton("Save to memory")) + SaveIniSettingsToMemory(); + SameLine(); + if (SmallButton("Save to disk")) + SaveIniSettingsToDisk(g.IO.IniFilename); + SameLine(); + if (g.IO.IniFilename) + Text("\"%s\"", g.IO.IniFilename); + else + TextUnformatted(""); + Checkbox("io.ConfigDebugIniSettings", &io.ConfigDebugIniSettings); + Text("SettingsDirtyTimer %.2f", g.SettingsDirtyTimer); + if (TreeNode("SettingsHandlers", "Settings handlers: (%d)", g.SettingsHandlers.Size)) + { + for (ImGuiSettingsHandler& handler : g.SettingsHandlers) + BulletText("\"%s\"", handler.TypeName); + TreePop(); + } + if (TreeNode("SettingsWindows", "Settings packed data: Windows: %d bytes", g.SettingsWindows.size())) + { + for (ImGuiWindowSettings* settings = g.SettingsWindows.begin(); settings != NULL; settings = g.SettingsWindows.next_chunk(settings)) + DebugNodeWindowSettings(settings); + TreePop(); + } + + if (TreeNode("SettingsTables", "Settings packed data: Tables: %d bytes", g.SettingsTables.size())) + { + for (ImGuiTableSettings* settings = g.SettingsTables.begin(); settings != NULL; settings = g.SettingsTables.next_chunk(settings)) + DebugNodeTableSettings(settings); + TreePop(); + } + +#ifdef IMGUI_HAS_DOCK +#endif // #ifdef IMGUI_HAS_DOCK + + if (TreeNode("SettingsIniData", "Settings unpacked data (.ini): %d bytes", g.SettingsIniData.size())) + { + InputTextMultiline("##Ini", (char*)(void*)g.SettingsIniData.c_str(), g.SettingsIniData.Buf.Size, ImVec2(-FLT_MIN, GetTextLineHeight() * 20), ImGuiInputTextFlags_ReadOnly); + TreePop(); + } + TreePop(); + } + + if (TreeNode("Inputs")) + { + Text("KEYBOARD/GAMEPAD/MOUSE KEYS"); + { + // We iterate both legacy native range and named ImGuiKey ranges, which is a little odd but this allows displaying the data for old/new backends. + // User code should never have to go through such hoops! You can generally iterate between ImGuiKey_NamedKey_BEGIN and ImGuiKey_NamedKey_END. + Indent(); +#ifdef IMGUI_DISABLE_OBSOLETE_KEYIO + struct funcs { static bool IsLegacyNativeDupe(ImGuiKey) { return false; } }; +#else + struct funcs { static bool IsLegacyNativeDupe(ImGuiKey key) { return key < 512 && GetIO().KeyMap[key] != -1; } }; // Hide Native<>ImGuiKey duplicates when both exists in the array + //Text("Legacy raw:"); for (ImGuiKey key = ImGuiKey_KeysData_OFFSET; key < ImGuiKey_COUNT; key++) { if (io.KeysDown[key]) { SameLine(); Text("\"%s\" %d", GetKeyName(key), key); } } +#endif + Text("Keys down:"); for (ImGuiKey key = ImGuiKey_KeysData_OFFSET; key < ImGuiKey_COUNT; key = (ImGuiKey)(key + 1)) { if (funcs::IsLegacyNativeDupe(key) || !IsKeyDown(key)) continue; SameLine(); Text(IsNamedKey(key) ? "\"%s\"" : "\"%s\" %d", GetKeyName(key), key); SameLine(); Text("(%.02f)", GetKeyData(key)->DownDuration); } + Text("Keys pressed:"); for (ImGuiKey key = ImGuiKey_KeysData_OFFSET; key < ImGuiKey_COUNT; key = (ImGuiKey)(key + 1)) { if (funcs::IsLegacyNativeDupe(key) || !IsKeyPressed(key)) continue; SameLine(); Text(IsNamedKey(key) ? "\"%s\"" : "\"%s\" %d", GetKeyName(key), key); } + Text("Keys released:"); for (ImGuiKey key = ImGuiKey_KeysData_OFFSET; key < ImGuiKey_COUNT; key = (ImGuiKey)(key + 1)) { if (funcs::IsLegacyNativeDupe(key) || !IsKeyReleased(key)) continue; SameLine(); Text(IsNamedKey(key) ? "\"%s\"" : "\"%s\" %d", GetKeyName(key), key); } + Text("Keys mods: %s%s%s%s", io.KeyCtrl ? "CTRL " : "", io.KeyShift ? "SHIFT " : "", io.KeyAlt ? "ALT " : "", io.KeySuper ? "SUPER " : ""); + Text("Chars queue:"); for (int i = 0; i < io.InputQueueCharacters.Size; i++) { ImWchar c = io.InputQueueCharacters[i]; SameLine(); Text("\'%c\' (0x%04X)", (c > ' ' && c <= 255) ? (char)c : '?', c); } // FIXME: We should convert 'c' to UTF-8 here but the functions are not public. + DebugRenderKeyboardPreview(GetWindowDrawList()); + Unindent(); + } + + Text("MOUSE STATE"); + { + Indent(); + if (IsMousePosValid()) + Text("Mouse pos: (%g, %g)", io.MousePos.x, io.MousePos.y); + else + Text("Mouse pos: "); + Text("Mouse delta: (%g, %g)", io.MouseDelta.x, io.MouseDelta.y); + int count = IM_ARRAYSIZE(io.MouseDown); + Text("Mouse down:"); for (int i = 0; i < count; i++) if (IsMouseDown(i)) { SameLine(); Text("b%d (%.02f secs)", i, io.MouseDownDuration[i]); } + Text("Mouse clicked:"); for (int i = 0; i < count; i++) if (IsMouseClicked(i)) { SameLine(); Text("b%d (%d)", i, io.MouseClickedCount[i]); } + Text("Mouse released:"); for (int i = 0; i < count; i++) if (IsMouseReleased(i)) { SameLine(); Text("b%d", i); } + Text("Mouse wheel: %.1f", io.MouseWheel); + Text("MouseStationaryTimer: %.2f", g.MouseStationaryTimer); + Text("Mouse source: %s", GetMouseSourceName(io.MouseSource)); + Text("Pen Pressure: %.1f", io.PenPressure); // Note: currently unused + Unindent(); + } + + Text("MOUSE WHEELING"); + { + Indent(); + Text("WheelingWindow: '%s'", g.WheelingWindow ? g.WheelingWindow->Name : "NULL"); + Text("WheelingWindowReleaseTimer: %.2f", g.WheelingWindowReleaseTimer); + Text("WheelingAxisAvg[] = { %.3f, %.3f }, Main Axis: %s", g.WheelingAxisAvg.x, g.WheelingAxisAvg.y, (g.WheelingAxisAvg.x > g.WheelingAxisAvg.y) ? "X" : (g.WheelingAxisAvg.x < g.WheelingAxisAvg.y) ? "Y" : ""); + Unindent(); + } + + Text("KEY OWNERS"); + { + Indent(); + if (BeginListBox("##owners", ImVec2(-FLT_MIN, GetTextLineHeightWithSpacing() * 6))) + { + for (ImGuiKey key = ImGuiKey_NamedKey_BEGIN; key < ImGuiKey_NamedKey_END; key = (ImGuiKey)(key + 1)) + { + ImGuiKeyOwnerData* owner_data = GetKeyOwnerData(&g, key); + if (owner_data->OwnerCurr == ImGuiKeyOwner_None) + continue; + Text("%s: 0x%08X%s", GetKeyName(key), owner_data->OwnerCurr, + owner_data->LockUntilRelease ? " LockUntilRelease" : owner_data->LockThisFrame ? " LockThisFrame" : ""); + DebugLocateItemOnHover(owner_data->OwnerCurr); + } + EndListBox(); + } + Unindent(); + } + Text("SHORTCUT ROUTING"); + { + Indent(); + if (BeginListBox("##routes", ImVec2(-FLT_MIN, GetTextLineHeightWithSpacing() * 6))) + { + for (ImGuiKey key = ImGuiKey_NamedKey_BEGIN; key < ImGuiKey_NamedKey_END; key = (ImGuiKey)(key + 1)) + { + ImGuiKeyRoutingTable* rt = &g.KeysRoutingTable; + for (ImGuiKeyRoutingIndex idx = rt->Index[key - ImGuiKey_NamedKey_BEGIN]; idx != -1; ) + { + char key_chord_name[64]; + ImGuiKeyRoutingData* routing_data = &rt->Entries[idx]; + GetKeyChordName(key | routing_data->Mods, key_chord_name, IM_ARRAYSIZE(key_chord_name)); + Text("%s: 0x%08X", key_chord_name, routing_data->RoutingCurr); + DebugLocateItemOnHover(routing_data->RoutingCurr); + idx = routing_data->NextEntryIndex; + } + } + EndListBox(); + } + Text("(ActiveIdUsing: AllKeyboardKeys: %d, NavDirMask: 0x%X)", g.ActiveIdUsingAllKeyboardKeys, g.ActiveIdUsingNavDirMask); + Unindent(); + } + TreePop(); + } + + if (TreeNode("Internal state")) + { + Text("WINDOWING"); + Indent(); + Text("HoveredWindow: '%s'", g.HoveredWindow ? g.HoveredWindow->Name : "NULL"); + Text("HoveredWindow->Root: '%s'", g.HoveredWindow ? g.HoveredWindow->RootWindow->Name : "NULL"); + Text("HoveredWindowUnderMovingWindow: '%s'", g.HoveredWindowUnderMovingWindow ? g.HoveredWindowUnderMovingWindow->Name : "NULL"); + Text("MovingWindow: '%s'", g.MovingWindow ? g.MovingWindow->Name : "NULL"); + Unindent(); + + Text("ITEMS"); + Indent(); + Text("ActiveId: 0x%08X/0x%08X (%.2f sec), AllowOverlap: %d, Source: %s", g.ActiveId, g.ActiveIdPreviousFrame, g.ActiveIdTimer, g.ActiveIdAllowOverlap, GetInputSourceName(g.ActiveIdSource)); + DebugLocateItemOnHover(g.ActiveId); + Text("ActiveIdWindow: '%s'", g.ActiveIdWindow ? g.ActiveIdWindow->Name : "NULL"); + Text("ActiveIdUsing: AllKeyboardKeys: %d, NavDirMask: %X", g.ActiveIdUsingAllKeyboardKeys, g.ActiveIdUsingNavDirMask); + Text("HoveredId: 0x%08X (%.2f sec), AllowOverlap: %d", g.HoveredIdPreviousFrame, g.HoveredIdTimer, g.HoveredIdAllowOverlap); // Not displaying g.HoveredId as it is update mid-frame + Text("HoverItemDelayId: 0x%08X, Timer: %.2f, ClearTimer: %.2f", g.HoverItemDelayId, g.HoverItemDelayTimer, g.HoverItemDelayClearTimer); + Text("DragDrop: %d, SourceId = 0x%08X, Payload \"%s\" (%d bytes)", g.DragDropActive, g.DragDropPayload.SourceId, g.DragDropPayload.DataType, g.DragDropPayload.DataSize); + DebugLocateItemOnHover(g.DragDropPayload.SourceId); + Unindent(); + + Text("NAV,FOCUS"); + Indent(); + Text("NavWindow: '%s'", g.NavWindow ? g.NavWindow->Name : "NULL"); + Text("NavId: 0x%08X, NavLayer: %d", g.NavId, g.NavLayer); + DebugLocateItemOnHover(g.NavId); + Text("NavInputSource: %s", GetInputSourceName(g.NavInputSource)); + Text("NavActive: %d, NavVisible: %d", g.IO.NavActive, g.IO.NavVisible); + Text("NavActivateId/DownId/PressedId: %08X/%08X/%08X", g.NavActivateId, g.NavActivateDownId, g.NavActivatePressedId); + Text("NavActivateFlags: %04X", g.NavActivateFlags); + Text("NavDisableHighlight: %d, NavDisableMouseHover: %d", g.NavDisableHighlight, g.NavDisableMouseHover); + Text("NavFocusScopeId = 0x%08X", g.NavFocusScopeId); + Text("NavWindowingTarget: '%s'", g.NavWindowingTarget ? g.NavWindowingTarget->Name : "NULL"); + Unindent(); + + TreePop(); + } + + // Overlay: Display windows Rectangles and Begin Order + if (cfg->ShowWindowsRects || cfg->ShowWindowsBeginOrder) + { + for (ImGuiWindow* window : g.Windows) + { + if (!window->WasActive) + continue; + ImDrawList* draw_list = GetForegroundDrawList(window); + if (cfg->ShowWindowsRects) + { + ImRect r = Funcs::GetWindowRect(window, cfg->ShowWindowsRectsType); + draw_list->AddRect(r.Min, r.Max, IM_COL32(255, 0, 128, 255)); + } + if (cfg->ShowWindowsBeginOrder && !(window->Flags & ImGuiWindowFlags_ChildWindow)) + { + char buf[32]; + ImFormatString(buf, IM_ARRAYSIZE(buf), "%d", window->BeginOrderWithinContext); + float font_size = GetFontSize(); + draw_list->AddRectFilled(window->Pos, window->Pos + ImVec2(font_size, font_size), IM_COL32(200, 100, 100, 255)); + draw_list->AddText(window->Pos, IM_COL32(255, 255, 255, 255), buf); + } + } + } + + // Overlay: Display Tables Rectangles + if (cfg->ShowTablesRects) + { + for (int table_n = 0; table_n < g.Tables.GetMapSize(); table_n++) + { + ImGuiTable* table = g.Tables.TryGetMapData(table_n); + if (table == NULL || table->LastFrameActive < g.FrameCount - 1) + continue; + ImDrawList* draw_list = GetForegroundDrawList(table->OuterWindow); + if (cfg->ShowTablesRectsType >= TRT_ColumnsRect) + { + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImRect r = Funcs::GetTableRect(table, cfg->ShowTablesRectsType, column_n); + ImU32 col = (table->HoveredColumnBody == column_n) ? IM_COL32(255, 255, 128, 255) : IM_COL32(255, 0, 128, 255); + float thickness = (table->HoveredColumnBody == column_n) ? 3.0f : 1.0f; + draw_list->AddRect(r.Min, r.Max, col, 0.0f, 0, thickness); + } + } + else + { + ImRect r = Funcs::GetTableRect(table, cfg->ShowTablesRectsType, -1); + draw_list->AddRect(r.Min, r.Max, IM_COL32(255, 0, 128, 255)); + } + } + } + +#ifdef IMGUI_HAS_DOCK + // Overlay: Display Docking info + if (show_docking_nodes && g.IO.KeyCtrl) + { + } +#endif // #ifdef IMGUI_HAS_DOCK + + End(); +} + +// [DEBUG] Display contents of Columns +void ImGui::DebugNodeColumns(ImGuiOldColumns* columns) +{ + if (!TreeNode((void*)(uintptr_t)columns->ID, "Columns Id: 0x%08X, Count: %d, Flags: 0x%04X", columns->ID, columns->Count, columns->Flags)) + return; + BulletText("Width: %.1f (MinX: %.1f, MaxX: %.1f)", columns->OffMaxX - columns->OffMinX, columns->OffMinX, columns->OffMaxX); + for (ImGuiOldColumnData& column : columns->Columns) + BulletText("Column %02d: OffsetNorm %.3f (= %.1f px)", (int)columns->Columns.index_from_ptr(&column), column.OffsetNorm, GetColumnOffsetFromNorm(columns, column.OffsetNorm)); + TreePop(); +} + +// [DEBUG] Display contents of ImDrawList +void ImGui::DebugNodeDrawList(ImGuiWindow* window, ImGuiViewportP* viewport, const ImDrawList* draw_list, const char* label) +{ + ImGuiContext& g = *GImGui; + IM_UNUSED(viewport); // Used in docking branch + ImGuiMetricsConfig* cfg = &g.DebugMetricsConfig; + int cmd_count = draw_list->CmdBuffer.Size; + if (cmd_count > 0 && draw_list->CmdBuffer.back().ElemCount == 0 && draw_list->CmdBuffer.back().UserCallback == NULL) + cmd_count--; + bool node_open = TreeNode(draw_list, "%s: '%s' %d vtx, %d indices, %d cmds", label, draw_list->_OwnerName ? draw_list->_OwnerName : "", draw_list->VtxBuffer.Size, draw_list->IdxBuffer.Size, cmd_count); + if (draw_list == GetWindowDrawList()) + { + SameLine(); + TextColored(ImVec4(1.0f, 0.4f, 0.4f, 1.0f), "CURRENTLY APPENDING"); // Can't display stats for active draw list! (we don't have the data double-buffered) + if (node_open) + TreePop(); + return; + } + + ImDrawList* fg_draw_list = GetForegroundDrawList(window); // Render additional visuals into the top-most draw list + if (window && IsItemHovered() && fg_draw_list) + fg_draw_list->AddRect(window->Pos, window->Pos + window->Size, IM_COL32(255, 255, 0, 255)); + if (!node_open) + return; + + if (window && !window->WasActive) + TextDisabled("Warning: owning Window is inactive. This DrawList is not being rendered!"); + + for (const ImDrawCmd* pcmd = draw_list->CmdBuffer.Data; pcmd < draw_list->CmdBuffer.Data + cmd_count; pcmd++) + { + if (pcmd->UserCallback) + { + BulletText("Callback %p, user_data %p", pcmd->UserCallback, pcmd->UserCallbackData); + continue; + } + + char buf[300]; + ImFormatString(buf, IM_ARRAYSIZE(buf), "DrawCmd:%5d tris, Tex 0x%p, ClipRect (%4.0f,%4.0f)-(%4.0f,%4.0f)", + pcmd->ElemCount / 3, (void*)(intptr_t)pcmd->TextureId, + pcmd->ClipRect.x, pcmd->ClipRect.y, pcmd->ClipRect.z, pcmd->ClipRect.w); + bool pcmd_node_open = TreeNode((void*)(pcmd - draw_list->CmdBuffer.begin()), "%s", buf); + if (IsItemHovered() && (cfg->ShowDrawCmdMesh || cfg->ShowDrawCmdBoundingBoxes) && fg_draw_list) + DebugNodeDrawCmdShowMeshAndBoundingBox(fg_draw_list, draw_list, pcmd, cfg->ShowDrawCmdMesh, cfg->ShowDrawCmdBoundingBoxes); + if (!pcmd_node_open) + continue; + + // Calculate approximate coverage area (touched pixel count) + // This will be in pixels squared as long there's no post-scaling happening to the renderer output. + const ImDrawIdx* idx_buffer = (draw_list->IdxBuffer.Size > 0) ? draw_list->IdxBuffer.Data : NULL; + const ImDrawVert* vtx_buffer = draw_list->VtxBuffer.Data + pcmd->VtxOffset; + float total_area = 0.0f; + for (unsigned int idx_n = pcmd->IdxOffset; idx_n < pcmd->IdxOffset + pcmd->ElemCount; ) + { + ImVec2 triangle[3]; + for (int n = 0; n < 3; n++, idx_n++) + triangle[n] = vtx_buffer[idx_buffer ? idx_buffer[idx_n] : idx_n].pos; + total_area += ImTriangleArea(triangle[0], triangle[1], triangle[2]); + } + + // Display vertex information summary. Hover to get all triangles drawn in wire-frame + ImFormatString(buf, IM_ARRAYSIZE(buf), "Mesh: ElemCount: %d, VtxOffset: +%d, IdxOffset: +%d, Area: ~%0.f px", pcmd->ElemCount, pcmd->VtxOffset, pcmd->IdxOffset, total_area); + Selectable(buf); + if (IsItemHovered() && fg_draw_list) + DebugNodeDrawCmdShowMeshAndBoundingBox(fg_draw_list, draw_list, pcmd, true, false); + + // Display individual triangles/vertices. Hover on to get the corresponding triangle highlighted. + ImGuiListClipper clipper; + clipper.Begin(pcmd->ElemCount / 3); // Manually coarse clip our print out of individual vertices to save CPU, only items that may be visible. + while (clipper.Step()) + for (int prim = clipper.DisplayStart, idx_i = pcmd->IdxOffset + clipper.DisplayStart * 3; prim < clipper.DisplayEnd; prim++) + { + char* buf_p = buf, * buf_end = buf + IM_ARRAYSIZE(buf); + ImVec2 triangle[3]; + for (int n = 0; n < 3; n++, idx_i++) + { + const ImDrawVert& v = vtx_buffer[idx_buffer ? idx_buffer[idx_i] : idx_i]; + triangle[n] = v.pos; + buf_p += ImFormatString(buf_p, buf_end - buf_p, "%s %04d: pos (%8.2f,%8.2f), uv (%.6f,%.6f), col %08X\n", + (n == 0) ? "Vert:" : " ", idx_i, v.pos.x, v.pos.y, v.uv.x, v.uv.y, v.col); + } + + Selectable(buf, false); + if (fg_draw_list && IsItemHovered()) + { + ImDrawListFlags backup_flags = fg_draw_list->Flags; + fg_draw_list->Flags &= ~ImDrawListFlags_AntiAliasedLines; // Disable AA on triangle outlines is more readable for very large and thin triangles. + fg_draw_list->AddPolyline(triangle, 3, IM_COL32(255, 255, 0, 255), ImDrawFlags_Closed, 1.0f); + fg_draw_list->Flags = backup_flags; + } + } + TreePop(); + } + TreePop(); +} + +// [DEBUG] Display mesh/aabb of a ImDrawCmd +void ImGui::DebugNodeDrawCmdShowMeshAndBoundingBox(ImDrawList* out_draw_list, const ImDrawList* draw_list, const ImDrawCmd* draw_cmd, bool show_mesh, bool show_aabb) +{ + IM_ASSERT(show_mesh || show_aabb); + + // Draw wire-frame version of all triangles + ImRect clip_rect = draw_cmd->ClipRect; + ImRect vtxs_rect(FLT_MAX, FLT_MAX, -FLT_MAX, -FLT_MAX); + ImDrawListFlags backup_flags = out_draw_list->Flags; + out_draw_list->Flags &= ~ImDrawListFlags_AntiAliasedLines; // Disable AA on triangle outlines is more readable for very large and thin triangles. + for (unsigned int idx_n = draw_cmd->IdxOffset, idx_end = draw_cmd->IdxOffset + draw_cmd->ElemCount; idx_n < idx_end; ) + { + ImDrawIdx* idx_buffer = (draw_list->IdxBuffer.Size > 0) ? draw_list->IdxBuffer.Data : NULL; // We don't hold on those pointers past iterations as ->AddPolyline() may invalidate them if out_draw_list==draw_list + ImDrawVert* vtx_buffer = draw_list->VtxBuffer.Data + draw_cmd->VtxOffset; + + ImVec2 triangle[3]; + for (int n = 0; n < 3; n++, idx_n++) + vtxs_rect.Add((triangle[n] = vtx_buffer[idx_buffer ? idx_buffer[idx_n] : idx_n].pos)); + if (show_mesh) + out_draw_list->AddPolyline(triangle, 3, IM_COL32(255, 255, 0, 255), ImDrawFlags_Closed, 1.0f); // In yellow: mesh triangles + } + // Draw bounding boxes + if (show_aabb) + { + out_draw_list->AddRect(ImFloor(clip_rect.Min), ImFloor(clip_rect.Max), IM_COL32(255, 0, 255, 255)); // In pink: clipping rectangle submitted to GPU + out_draw_list->AddRect(ImFloor(vtxs_rect.Min), ImFloor(vtxs_rect.Max), IM_COL32(0, 255, 255, 255)); // In cyan: bounding box of triangles + } + out_draw_list->Flags = backup_flags; +} + +// [DEBUG] Display details for a single font, called by ShowStyleEditor(). +void ImGui::DebugNodeFont(ImFont* font) +{ + bool opened = TreeNode(font, "Font: \"%s\"\n%.2f px, %d glyphs, %d file(s)", + font->ConfigData ? font->ConfigData[0].Name : "", font->FontSize, font->Glyphs.Size, font->ConfigDataCount); + SameLine(); + if (SmallButton("Set as default")) + GetIO().FontDefault = font; + if (!opened) + return; + + // Display preview text + PushFont(font); + Text("The quick brown fox jumps over the lazy dog"); + PopFont(); + + // Display details + SetNextItemWidth(GetFontSize() * 8); + DragFloat("Font scale", &font->Scale, 0.005f, 0.3f, 2.0f, "%.1f"); + SameLine(); MetricsHelpMarker( + "Note than the default embedded font is NOT meant to be scaled.\n\n" + "Font are currently rendered into bitmaps at a given size at the time of building the atlas. " + "You may oversample them to get some flexibility with scaling. " + "You can also render at multiple sizes and select which one to use at runtime.\n\n" + "(Glimmer of hope: the atlas system will be rewritten in the future to make scaling more flexible.)"); + Text("Ascent: %f, Descent: %f, Height: %f", font->Ascent, font->Descent, font->Ascent - font->Descent); + char c_str[5]; + Text("Fallback character: '%s' (U+%04X)", ImTextCharToUtf8(c_str, font->FallbackChar), font->FallbackChar); + Text("Ellipsis character: '%s' (U+%04X)", ImTextCharToUtf8(c_str, font->EllipsisChar), font->EllipsisChar); + const int surface_sqrt = (int)ImSqrt((float)font->MetricsTotalSurface); + Text("Texture Area: about %d px ~%dx%d px", font->MetricsTotalSurface, surface_sqrt, surface_sqrt); + for (int config_i = 0; config_i < font->ConfigDataCount; config_i++) + if (font->ConfigData) + if (const ImFontConfig* cfg = &font->ConfigData[config_i]) + BulletText("Input %d: \'%s\', Oversample: (%d,%d), PixelSnapH: %d, Offset: (%.1f,%.1f)", + config_i, cfg->Name, cfg->OversampleH, cfg->OversampleV, cfg->PixelSnapH, cfg->GlyphOffset.x, cfg->GlyphOffset.y); + + // Display all glyphs of the fonts in separate pages of 256 characters + if (TreeNode("Glyphs", "Glyphs (%d)", font->Glyphs.Size)) + { + ImDrawList* draw_list = GetWindowDrawList(); + const ImU32 glyph_col = GetColorU32(ImGuiCol_Text); + const float cell_size = font->FontSize * 1; + const float cell_spacing = GetStyle().ItemSpacing.y; + for (unsigned int base = 0; base <= IM_UNICODE_CODEPOINT_MAX; base += 256) + { + // Skip ahead if a large bunch of glyphs are not present in the font (test in chunks of 4k) + // This is only a small optimization to reduce the number of iterations when IM_UNICODE_MAX_CODEPOINT + // is large // (if ImWchar==ImWchar32 we will do at least about 272 queries here) + if (!(base & 4095) && font->IsGlyphRangeUnused(base, base + 4095)) + { + base += 4096 - 256; + continue; + } + + int count = 0; + for (unsigned int n = 0; n < 256; n++) + if (font->FindGlyphNoFallback((ImWchar)(base + n))) + count++; + if (count <= 0) + continue; + if (!TreeNode((void*)(intptr_t)base, "U+%04X..U+%04X (%d %s)", base, base + 255, count, count > 1 ? "glyphs" : "glyph")) + continue; + + // Draw a 16x16 grid of glyphs + ImVec2 base_pos = GetCursorScreenPos(); + for (unsigned int n = 0; n < 256; n++) + { + // We use ImFont::RenderChar as a shortcut because we don't have UTF-8 conversion functions + // available here and thus cannot easily generate a zero-terminated UTF-8 encoded string. + ImVec2 cell_p1(base_pos.x + (n % 16) * (cell_size + cell_spacing), base_pos.y + (n / 16) * (cell_size + cell_spacing)); + ImVec2 cell_p2(cell_p1.x + cell_size, cell_p1.y + cell_size); + const ImFontGlyph* glyph = font->FindGlyphNoFallback((ImWchar)(base + n)); + draw_list->AddRect(cell_p1, cell_p2, glyph ? IM_COL32(255, 255, 255, 100) : IM_COL32(255, 255, 255, 50)); + if (!glyph) + continue; + font->RenderChar(draw_list, cell_size, cell_p1, glyph_col, (ImWchar)(base + n)); + if (IsMouseHoveringRect(cell_p1, cell_p2) && BeginTooltip()) + { + DebugNodeFontGlyph(font, glyph); + EndTooltip(); + } + } + Dummy(ImVec2((cell_size + cell_spacing) * 16, (cell_size + cell_spacing) * 16)); + TreePop(); + } + TreePop(); + } + TreePop(); +} + +void ImGui::DebugNodeFontGlyph(ImFont*, const ImFontGlyph* glyph) +{ + Text("Codepoint: U+%04X", glyph->Codepoint); + Separator(); + Text("Visible: %d", glyph->Visible); + Text("AdvanceX: %.1f", glyph->AdvanceX); + Text("Pos: (%.2f,%.2f)->(%.2f,%.2f)", glyph->X0, glyph->Y0, glyph->X1, glyph->Y1); + Text("UV: (%.3f,%.3f)->(%.3f,%.3f)", glyph->U0, glyph->V0, glyph->U1, glyph->V1); +} + +// [DEBUG] Display contents of ImGuiStorage +void ImGui::DebugNodeStorage(ImGuiStorage* storage, const char* label) +{ + if (!TreeNode(label, "%s: %d entries, %d bytes", label, storage->Data.Size, storage->Data.size_in_bytes())) + return; + for (const ImGuiStorage::ImGuiStoragePair& p : storage->Data) + BulletText("Key 0x%08X Value { i: %d }", p.key, p.val_i); // Important: we currently don't store a type, real value may not be integer. + TreePop(); +} + +// [DEBUG] Display contents of ImGuiTabBar +void ImGui::DebugNodeTabBar(ImGuiTabBar* tab_bar, const char* label) +{ + // Standalone tab bars (not associated to docking/windows functionality) currently hold no discernible strings. + char buf[256]; + char* p = buf; + const char* buf_end = buf + IM_ARRAYSIZE(buf); + const bool is_active = (tab_bar->PrevFrameVisible >= GetFrameCount() - 2); + p += ImFormatString(p, buf_end - p, "%s 0x%08X (%d tabs)%s {", label, tab_bar->ID, tab_bar->Tabs.Size, is_active ? "" : " *Inactive*"); + for (int tab_n = 0; tab_n < ImMin(tab_bar->Tabs.Size, 3); tab_n++) + { + ImGuiTabItem* tab = &tab_bar->Tabs[tab_n]; + p += ImFormatString(p, buf_end - p, "%s'%s'", tab_n > 0 ? ", " : "", TabBarGetTabName(tab_bar, tab)); + } + p += ImFormatString(p, buf_end - p, (tab_bar->Tabs.Size > 3) ? " ... }" : " } "); + if (!is_active) { PushStyleColor(ImGuiCol_Text, GetStyleColorVec4(ImGuiCol_TextDisabled)); } + bool open = TreeNode(label, "%s", buf); + if (!is_active) { PopStyleColor(); } + if (is_active && IsItemHovered()) + { + ImDrawList* draw_list = GetForegroundDrawList(); + draw_list->AddRect(tab_bar->BarRect.Min, tab_bar->BarRect.Max, IM_COL32(255, 255, 0, 255)); + draw_list->AddLine(ImVec2(tab_bar->ScrollingRectMinX, tab_bar->BarRect.Min.y), ImVec2(tab_bar->ScrollingRectMinX, tab_bar->BarRect.Max.y), IM_COL32(0, 255, 0, 255)); + draw_list->AddLine(ImVec2(tab_bar->ScrollingRectMaxX, tab_bar->BarRect.Min.y), ImVec2(tab_bar->ScrollingRectMaxX, tab_bar->BarRect.Max.y), IM_COL32(0, 255, 0, 255)); + } + if (open) + { + for (int tab_n = 0; tab_n < tab_bar->Tabs.Size; tab_n++) + { + ImGuiTabItem* tab = &tab_bar->Tabs[tab_n]; + PushID(tab); + if (SmallButton("<")) { TabBarQueueReorder(tab_bar, tab, -1); } SameLine(0, 2); + if (SmallButton(">")) { TabBarQueueReorder(tab_bar, tab, +1); } SameLine(); + Text("%02d%c Tab 0x%08X '%s' Offset: %.2f, Width: %.2f/%.2f", + tab_n, (tab->ID == tab_bar->SelectedTabId) ? '*' : ' ', tab->ID, TabBarGetTabName(tab_bar, tab), tab->Offset, tab->Width, tab->ContentWidth); + PopID(); + } + TreePop(); + } +} + +void ImGui::DebugNodeViewport(ImGuiViewportP* viewport) +{ + SetNextItemOpen(true, ImGuiCond_Once); + if (TreeNode("viewport0", "Viewport #%d", 0)) + { + ImGuiWindowFlags flags = viewport->Flags; + BulletText("Main Pos: (%.0f,%.0f), Size: (%.0f,%.0f)\nWorkArea Offset Left: %.0f Top: %.0f, Right: %.0f, Bottom: %.0f", + viewport->Pos.x, viewport->Pos.y, viewport->Size.x, viewport->Size.y, + viewport->WorkOffsetMin.x, viewport->WorkOffsetMin.y, viewport->WorkOffsetMax.x, viewport->WorkOffsetMax.y); + BulletText("Flags: 0x%04X =%s%s%s", viewport->Flags, + (flags & ImGuiViewportFlags_IsPlatformWindow) ? " IsPlatformWindow" : "", + (flags & ImGuiViewportFlags_IsPlatformMonitor) ? " IsPlatformMonitor" : "", + (flags & ImGuiViewportFlags_OwnedByApp) ? " OwnedByApp" : ""); + for (ImDrawList* draw_list : viewport->DrawDataP.CmdLists) + DebugNodeDrawList(NULL, viewport, draw_list, "DrawList"); + TreePop(); + } +} + +void ImGui::DebugNodeWindow(ImGuiWindow* window, const char* label) +{ + if (window == NULL) + { + BulletText("%s: NULL", label); + return; + } + + ImGuiContext& g = *GImGui; + const bool is_active = window->WasActive; + ImGuiTreeNodeFlags tree_node_flags = (window == g.NavWindow) ? ImGuiTreeNodeFlags_Selected : ImGuiTreeNodeFlags_None; + if (!is_active) { PushStyleColor(ImGuiCol_Text, GetStyleColorVec4(ImGuiCol_TextDisabled)); } + const bool open = TreeNodeEx(label, tree_node_flags, "%s '%s'%s", label, window->Name, is_active ? "" : " *Inactive*"); + if (!is_active) { PopStyleColor(); } + if (IsItemHovered() && is_active) + GetForegroundDrawList(window)->AddRect(window->Pos, window->Pos + window->Size, IM_COL32(255, 255, 0, 255)); + if (!open) + return; + + if (window->MemoryCompacted) + TextDisabled("Note: some memory buffers have been compacted/freed."); + + ImGuiWindowFlags flags = window->Flags; + DebugNodeDrawList(window, window->Viewport, window->DrawList, "DrawList"); + BulletText("Pos: (%.1f,%.1f), Size: (%.1f,%.1f), ContentSize (%.1f,%.1f) Ideal (%.1f,%.1f)", window->Pos.x, window->Pos.y, window->Size.x, window->Size.y, window->ContentSize.x, window->ContentSize.y, window->ContentSizeIdeal.x, window->ContentSizeIdeal.y); + BulletText("Flags: 0x%08X (%s%s%s%s%s%s%s%s%s..)", flags, + (flags & ImGuiWindowFlags_ChildWindow) ? "Child " : "", (flags & ImGuiWindowFlags_Tooltip) ? "Tooltip " : "", (flags & ImGuiWindowFlags_Popup) ? "Popup " : "", + (flags & ImGuiWindowFlags_Modal) ? "Modal " : "", (flags & ImGuiWindowFlags_ChildMenu) ? "ChildMenu " : "", (flags & ImGuiWindowFlags_NoSavedSettings) ? "NoSavedSettings " : "", + (flags & ImGuiWindowFlags_NoMouseInputs)? "NoMouseInputs":"", (flags & ImGuiWindowFlags_NoNavInputs) ? "NoNavInputs" : "", (flags & ImGuiWindowFlags_AlwaysAutoResize) ? "AlwaysAutoResize" : ""); + BulletText("Scroll: (%.2f/%.2f,%.2f/%.2f) Scrollbar:%s%s", window->Scroll.x, window->ScrollMax.x, window->Scroll.y, window->ScrollMax.y, window->ScrollbarX ? "X" : "", window->ScrollbarY ? "Y" : ""); + BulletText("Active: %d/%d, WriteAccessed: %d, BeginOrderWithinContext: %d", window->Active, window->WasActive, window->WriteAccessed, (window->Active || window->WasActive) ? window->BeginOrderWithinContext : -1); + BulletText("Appearing: %d, Hidden: %d (CanSkip %d Cannot %d), SkipItems: %d", window->Appearing, window->Hidden, window->HiddenFramesCanSkipItems, window->HiddenFramesCannotSkipItems, window->SkipItems); + for (int layer = 0; layer < ImGuiNavLayer_COUNT; layer++) + { + ImRect r = window->NavRectRel[layer]; + if (r.Min.x >= r.Max.y && r.Min.y >= r.Max.y) + BulletText("NavLastIds[%d]: 0x%08X", layer, window->NavLastIds[layer]); + else + BulletText("NavLastIds[%d]: 0x%08X at +(%.1f,%.1f)(%.1f,%.1f)", layer, window->NavLastIds[layer], r.Min.x, r.Min.y, r.Max.x, r.Max.y); + DebugLocateItemOnHover(window->NavLastIds[layer]); + } + const ImVec2* pr = window->NavPreferredScoringPosRel; + for (int layer = 0; layer < ImGuiNavLayer_COUNT; layer++) + BulletText("NavPreferredScoringPosRel[%d] = {%.1f,%.1f)", layer, (pr[layer].x == FLT_MAX ? -99999.0f : pr[layer].x), (pr[layer].y == FLT_MAX ? -99999.0f : pr[layer].y)); // Display as 99999.0f so it looks neater. + BulletText("NavLayersActiveMask: %X, NavLastChildNavWindow: %s", window->DC.NavLayersActiveMask, window->NavLastChildNavWindow ? window->NavLastChildNavWindow->Name : "NULL"); + if (window->RootWindow != window) { DebugNodeWindow(window->RootWindow, "RootWindow"); } + if (window->ParentWindow != NULL) { DebugNodeWindow(window->ParentWindow, "ParentWindow"); } + if (window->DC.ChildWindows.Size > 0) { DebugNodeWindowsList(&window->DC.ChildWindows, "ChildWindows"); } + if (window->ColumnsStorage.Size > 0 && TreeNode("Columns", "Columns sets (%d)", window->ColumnsStorage.Size)) + { + for (ImGuiOldColumns& columns : window->ColumnsStorage) + DebugNodeColumns(&columns); + TreePop(); + } + DebugNodeStorage(&window->StateStorage, "Storage"); + TreePop(); +} + +void ImGui::DebugNodeWindowSettings(ImGuiWindowSettings* settings) +{ + if (settings->WantDelete) + BeginDisabled(); + Text("0x%08X \"%s\" Pos (%d,%d) Size (%d,%d) Collapsed=%d", + settings->ID, settings->GetName(), settings->Pos.x, settings->Pos.y, settings->Size.x, settings->Size.y, settings->Collapsed); + if (settings->WantDelete) + EndDisabled(); +} + +void ImGui::DebugNodeWindowsList(ImVector* windows, const char* label) +{ + if (!TreeNode(label, "%s (%d)", label, windows->Size)) + return; + for (int i = windows->Size - 1; i >= 0; i--) // Iterate front to back + { + PushID((*windows)[i]); + DebugNodeWindow((*windows)[i], "Window"); + PopID(); + } + TreePop(); +} + +// FIXME-OPT: This is technically suboptimal, but it is simpler this way. +void ImGui::DebugNodeWindowsListByBeginStackParent(ImGuiWindow** windows, int windows_size, ImGuiWindow* parent_in_begin_stack) +{ + for (int i = 0; i < windows_size; i++) + { + ImGuiWindow* window = windows[i]; + if (window->ParentWindowInBeginStack != parent_in_begin_stack) + continue; + char buf[20]; + ImFormatString(buf, IM_ARRAYSIZE(buf), "[%04d] Window", window->BeginOrderWithinContext); + //BulletText("[%04d] Window '%s'", window->BeginOrderWithinContext, window->Name); + DebugNodeWindow(window, buf); + Indent(); + DebugNodeWindowsListByBeginStackParent(windows + i + 1, windows_size - i - 1, window); + Unindent(); + } +} + +//----------------------------------------------------------------------------- +// [SECTION] DEBUG LOG WINDOW +//----------------------------------------------------------------------------- + +void ImGui::DebugLog(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + DebugLogV(fmt, args); + va_end(args); +} + +void ImGui::DebugLogV(const char* fmt, va_list args) +{ + ImGuiContext& g = *GImGui; + const int old_size = g.DebugLogBuf.size(); + g.DebugLogBuf.appendf("[%05d] ", g.FrameCount); + g.DebugLogBuf.appendfv(fmt, args); + if (g.DebugLogFlags & ImGuiDebugLogFlags_OutputToTTY) + IMGUI_DEBUG_PRINTF("%s", g.DebugLogBuf.begin() + old_size); + g.DebugLogIndex.append(g.DebugLogBuf.c_str(), old_size, g.DebugLogBuf.size()); +} + +void ImGui::ShowDebugLogWindow(bool* p_open) +{ + ImGuiContext& g = *GImGui; + if (!(g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSize)) + SetNextWindowSize(ImVec2(0.0f, GetFontSize() * 12.0f), ImGuiCond_FirstUseEver); + if (!Begin("Dear ImGui Debug Log", p_open) || GetCurrentWindow()->BeginCount > 1) + { + End(); + return; + } + + CheckboxFlags("All", &g.DebugLogFlags, ImGuiDebugLogFlags_EventMask_); + SameLine(); CheckboxFlags("ActiveId", &g.DebugLogFlags, ImGuiDebugLogFlags_EventActiveId); + SameLine(); CheckboxFlags("Focus", &g.DebugLogFlags, ImGuiDebugLogFlags_EventFocus); + SameLine(); CheckboxFlags("Popup", &g.DebugLogFlags, ImGuiDebugLogFlags_EventPopup); + SameLine(); CheckboxFlags("Nav", &g.DebugLogFlags, ImGuiDebugLogFlags_EventNav); + SameLine(); if (CheckboxFlags("Clipper", &g.DebugLogFlags, ImGuiDebugLogFlags_EventClipper)) { g.DebugLogClipperAutoDisableFrames = 2; } if (IsItemHovered()) SetTooltip("Clipper log auto-disabled after 2 frames"); + //SameLine(); CheckboxFlags("Selection", &g.DebugLogFlags, ImGuiDebugLogFlags_EventSelection); + SameLine(); CheckboxFlags("IO", &g.DebugLogFlags, ImGuiDebugLogFlags_EventIO); + + if (SmallButton("Clear")) + { + g.DebugLogBuf.clear(); + g.DebugLogIndex.clear(); + } + SameLine(); + if (SmallButton("Copy")) + SetClipboardText(g.DebugLogBuf.c_str()); + BeginChild("##log", ImVec2(0.0f, 0.0f), true, ImGuiWindowFlags_AlwaysVerticalScrollbar | ImGuiWindowFlags_AlwaysHorizontalScrollbar); + + ImGuiListClipper clipper; + clipper.Begin(g.DebugLogIndex.size()); + while (clipper.Step()) + for (int line_no = clipper.DisplayStart; line_no < clipper.DisplayEnd; line_no++) + { + const char* line_begin = g.DebugLogIndex.get_line_begin(g.DebugLogBuf.c_str(), line_no); + const char* line_end = g.DebugLogIndex.get_line_end(g.DebugLogBuf.c_str(), line_no); + TextUnformatted(line_begin, line_end); + ImRect text_rect = g.LastItemData.Rect; + if (IsItemHovered()) + for (const char* p = line_begin; p <= line_end - 10; p++) + { + ImGuiID id = 0; + if (p[0] != '0' || (p[1] != 'x' && p[1] != 'X') || sscanf(p + 2, "%X", &id) != 1) + continue; + ImVec2 p0 = CalcTextSize(line_begin, p); + ImVec2 p1 = CalcTextSize(p, p + 10); + g.LastItemData.Rect = ImRect(text_rect.Min + ImVec2(p0.x, 0.0f), text_rect.Min + ImVec2(p0.x + p1.x, p1.y)); + if (IsMouseHoveringRect(g.LastItemData.Rect.Min, g.LastItemData.Rect.Max, true)) + DebugLocateItemOnHover(id); + p += 10; + } + } + if (GetScrollY() >= GetScrollMaxY()) + SetScrollHereY(1.0f); + EndChild(); + + End(); +} + +//----------------------------------------------------------------------------- +// [SECTION] OTHER DEBUG TOOLS (ITEM PICKER, STACK TOOL) +//----------------------------------------------------------------------------- + +// Draw a small cross at current CursorPos in current window's DrawList +void ImGui::DebugDrawCursorPos(ImU32 col) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImVec2 pos = window->DC.CursorPos; + window->DrawList->AddLine(ImVec2(pos.x, pos.y - 3.0f), ImVec2(pos.x, pos.y + 4.0f), col, 1.0f); + window->DrawList->AddLine(ImVec2(pos.x - 3.0f, pos.y), ImVec2(pos.x + 4.0f, pos.y), col, 1.0f); +} + +// Draw a 10px wide rectangle around CurposPos.x using Line Y1/Y2 in current window's DrawList +void ImGui::DebugDrawLineExtents(ImU32 col) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + float curr_x = window->DC.CursorPos.x; + float line_y1 = (window->DC.IsSameLine ? window->DC.CursorPosPrevLine.y : window->DC.CursorPos.y); + float line_y2 = line_y1 + (window->DC.IsSameLine ? window->DC.PrevLineSize.y : window->DC.CurrLineSize.y); + window->DrawList->AddLine(ImVec2(curr_x - 5.0f, line_y1), ImVec2(curr_x + 5.0f, line_y1), col, 1.0f); + window->DrawList->AddLine(ImVec2(curr_x - 0.5f, line_y1), ImVec2(curr_x - 0.5f, line_y2), col, 1.0f); + window->DrawList->AddLine(ImVec2(curr_x - 5.0f, line_y2), ImVec2(curr_x + 5.0f, line_y2), col, 1.0f); +} + +// Draw last item rect in ForegroundDrawList (so it is always visible) +void ImGui::DebugDrawItemRect(ImU32 col) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + GetForegroundDrawList(window)->AddRect(g.LastItemData.Rect.Min, g.LastItemData.Rect.Max, col); +} + +// [DEBUG] Locate item position/rectangle given an ID. +static const ImU32 DEBUG_LOCATE_ITEM_COLOR = IM_COL32(0, 255, 0, 255); // Green + +void ImGui::DebugLocateItem(ImGuiID target_id) +{ + ImGuiContext& g = *GImGui; + g.DebugLocateId = target_id; + g.DebugLocateFrames = 2; +} + +void ImGui::DebugLocateItemOnHover(ImGuiID target_id) +{ + if (target_id == 0 || !IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenBlockedByPopup)) + return; + ImGuiContext& g = *GImGui; + DebugLocateItem(target_id); + GetForegroundDrawList(g.CurrentWindow)->AddRect(g.LastItemData.Rect.Min - ImVec2(3.0f, 3.0f), g.LastItemData.Rect.Max + ImVec2(3.0f, 3.0f), DEBUG_LOCATE_ITEM_COLOR); +} + +void ImGui::DebugLocateItemResolveWithLastItem() +{ + ImGuiContext& g = *GImGui; + ImGuiLastItemData item_data = g.LastItemData; + g.DebugLocateId = 0; + ImDrawList* draw_list = GetForegroundDrawList(g.CurrentWindow); + ImRect r = item_data.Rect; + r.Expand(3.0f); + ImVec2 p1 = g.IO.MousePos; + ImVec2 p2 = ImVec2((p1.x < r.Min.x) ? r.Min.x : (p1.x > r.Max.x) ? r.Max.x : p1.x, (p1.y < r.Min.y) ? r.Min.y : (p1.y > r.Max.y) ? r.Max.y : p1.y); + draw_list->AddRect(r.Min, r.Max, DEBUG_LOCATE_ITEM_COLOR); + draw_list->AddLine(p1, p2, DEBUG_LOCATE_ITEM_COLOR); +} + +// [DEBUG] Item picker tool - start with DebugStartItemPicker() - useful to visually select an item and break into its call-stack. +void ImGui::UpdateDebugToolItemPicker() +{ + ImGuiContext& g = *GImGui; + g.DebugItemPickerBreakId = 0; + if (!g.DebugItemPickerActive) + return; + + const ImGuiID hovered_id = g.HoveredIdPreviousFrame; + SetMouseCursor(ImGuiMouseCursor_Hand); + if (IsKeyPressed(ImGuiKey_Escape)) + g.DebugItemPickerActive = false; + const bool change_mapping = g.IO.KeyMods == (ImGuiMod_Ctrl | ImGuiMod_Shift); + if (!change_mapping && IsMouseClicked(g.DebugItemPickerMouseButton) && hovered_id) + { + g.DebugItemPickerBreakId = hovered_id; + g.DebugItemPickerActive = false; + } + for (int mouse_button = 0; mouse_button < 3; mouse_button++) + if (change_mapping && IsMouseClicked(mouse_button)) + g.DebugItemPickerMouseButton = (ImU8)mouse_button; + SetNextWindowBgAlpha(0.70f); + if (!BeginTooltip()) + return; + Text("HoveredId: 0x%08X", hovered_id); + Text("Press ESC to abort picking."); + const char* mouse_button_names[] = { "Left", "Right", "Middle" }; + if (change_mapping) + Text("Remap w/ Ctrl+Shift: click anywhere to select new mouse button."); + else + TextColored(GetStyleColorVec4(hovered_id ? ImGuiCol_Text : ImGuiCol_TextDisabled), "Click %s Button to break in debugger! (remap w/ Ctrl+Shift)", mouse_button_names[g.DebugItemPickerMouseButton]); + EndTooltip(); +} + +// [DEBUG] Stack Tool: update queries. Called by NewFrame() +void ImGui::UpdateDebugToolStackQueries() +{ + ImGuiContext& g = *GImGui; + ImGuiStackTool* tool = &g.DebugStackTool; + + // Clear hook when stack tool is not visible + g.DebugHookIdInfo = 0; + if (g.FrameCount != tool->LastActiveFrame + 1) + return; + + // Update queries. The steps are: -1: query Stack, >= 0: query each stack item + // We can only perform 1 ID Info query every frame. This is designed so the GetID() tests are cheap and constant-time + const ImGuiID query_id = g.HoveredIdPreviousFrame ? g.HoveredIdPreviousFrame : g.ActiveId; + if (tool->QueryId != query_id) + { + tool->QueryId = query_id; + tool->StackLevel = -1; + tool->Results.resize(0); + } + if (query_id == 0) + return; + + // Advance to next stack level when we got our result, or after 2 frames (in case we never get a result) + int stack_level = tool->StackLevel; + if (stack_level >= 0 && stack_level < tool->Results.Size) + if (tool->Results[stack_level].QuerySuccess || tool->Results[stack_level].QueryFrameCount > 2) + tool->StackLevel++; + + // Update hook + stack_level = tool->StackLevel; + if (stack_level == -1) + g.DebugHookIdInfo = query_id; + if (stack_level >= 0 && stack_level < tool->Results.Size) + { + g.DebugHookIdInfo = tool->Results[stack_level].ID; + tool->Results[stack_level].QueryFrameCount++; + } +} + +// [DEBUG] Stack tool: hooks called by GetID() family functions +void ImGui::DebugHookIdInfo(ImGuiID id, ImGuiDataType data_type, const void* data_id, const void* data_id_end) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiStackTool* tool = &g.DebugStackTool; + + // Step 0: stack query + // This assumes that the ID was computed with the current ID stack, which tends to be the case for our widget. + if (tool->StackLevel == -1) + { + tool->StackLevel++; + tool->Results.resize(window->IDStack.Size + 1, ImGuiStackLevelInfo()); + for (int n = 0; n < window->IDStack.Size + 1; n++) + tool->Results[n].ID = (n < window->IDStack.Size) ? window->IDStack[n] : id; + return; + } + + // Step 1+: query for individual level + IM_ASSERT(tool->StackLevel >= 0); + if (tool->StackLevel != window->IDStack.Size) + return; + ImGuiStackLevelInfo* info = &tool->Results[tool->StackLevel]; + IM_ASSERT(info->ID == id && info->QueryFrameCount > 0); + + switch (data_type) + { + case ImGuiDataType_S32: + ImFormatString(info->Desc, IM_ARRAYSIZE(info->Desc), "%d", (int)(intptr_t)data_id); + break; + case ImGuiDataType_String: + ImFormatString(info->Desc, IM_ARRAYSIZE(info->Desc), "%.*s", data_id_end ? (int)((const char*)data_id_end - (const char*)data_id) : (int)strlen((const char*)data_id), (const char*)data_id); + break; + case ImGuiDataType_Pointer: + ImFormatString(info->Desc, IM_ARRAYSIZE(info->Desc), "(void*)0x%p", data_id); + break; + case ImGuiDataType_ID: + if (info->Desc[0] != 0) // PushOverrideID() is often used to avoid hashing twice, which would lead to 2 calls to DebugHookIdInfo(). We prioritize the first one. + return; + ImFormatString(info->Desc, IM_ARRAYSIZE(info->Desc), "0x%08X [override]", id); + break; + default: + IM_ASSERT(0); + } + info->QuerySuccess = true; + info->DataType = data_type; +} + +static int StackToolFormatLevelInfo(ImGuiStackTool* tool, int n, bool format_for_ui, char* buf, size_t buf_size) +{ + ImGuiStackLevelInfo* info = &tool->Results[n]; + ImGuiWindow* window = (info->Desc[0] == 0 && n == 0) ? ImGui::FindWindowByID(info->ID) : NULL; + if (window) // Source: window name (because the root ID don't call GetID() and so doesn't get hooked) + return ImFormatString(buf, buf_size, format_for_ui ? "\"%s\" [window]" : "%s", window->Name); + if (info->QuerySuccess) // Source: GetID() hooks (prioritize over ItemInfo() because we frequently use patterns like: PushID(str), Button("") where they both have same id) + return ImFormatString(buf, buf_size, (format_for_ui && info->DataType == ImGuiDataType_String) ? "\"%s\"" : "%s", info->Desc); + if (tool->StackLevel < tool->Results.Size) // Only start using fallback below when all queries are done, so during queries we don't flickering ??? markers. + return (*buf = 0); +#ifdef IMGUI_ENABLE_TEST_ENGINE + if (const char* label = ImGuiTestEngine_FindItemDebugLabel(GImGui, info->ID)) // Source: ImGuiTestEngine's ItemInfo() + return ImFormatString(buf, buf_size, format_for_ui ? "??? \"%s\"" : "%s", label); +#endif + return ImFormatString(buf, buf_size, "???"); +} + +// Stack Tool: Display UI +void ImGui::ShowStackToolWindow(bool* p_open) +{ + ImGuiContext& g = *GImGui; + if (!(g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSize)) + SetNextWindowSize(ImVec2(0.0f, GetFontSize() * 8.0f), ImGuiCond_FirstUseEver); + if (!Begin("Dear ImGui Stack Tool", p_open) || GetCurrentWindow()->BeginCount > 1) + { + End(); + return; + } + + // Display hovered/active status + ImGuiStackTool* tool = &g.DebugStackTool; + const ImGuiID hovered_id = g.HoveredIdPreviousFrame; + const ImGuiID active_id = g.ActiveId; +#ifdef IMGUI_ENABLE_TEST_ENGINE + Text("HoveredId: 0x%08X (\"%s\"), ActiveId: 0x%08X (\"%s\")", hovered_id, hovered_id ? ImGuiTestEngine_FindItemDebugLabel(&g, hovered_id) : "", active_id, active_id ? ImGuiTestEngine_FindItemDebugLabel(&g, active_id) : ""); +#else + Text("HoveredId: 0x%08X, ActiveId: 0x%08X", hovered_id, active_id); +#endif + SameLine(); + MetricsHelpMarker("Hover an item with the mouse to display elements of the ID Stack leading to the item's final ID.\nEach level of the stack correspond to a PushID() call.\nAll levels of the stack are hashed together to make the final ID of a widget (ID displayed at the bottom level of the stack).\nRead FAQ entry about the ID stack for details."); + + // CTRL+C to copy path + const float time_since_copy = (float)g.Time - tool->CopyToClipboardLastTime; + Checkbox("Ctrl+C: copy path to clipboard", &tool->CopyToClipboardOnCtrlC); + SameLine(); + TextColored((time_since_copy >= 0.0f && time_since_copy < 0.75f && ImFmod(time_since_copy, 0.25f) < 0.25f * 0.5f) ? ImVec4(1.f, 1.f, 0.3f, 1.f) : ImVec4(), "*COPIED*"); + if (tool->CopyToClipboardOnCtrlC && IsKeyDown(ImGuiMod_Ctrl) && IsKeyPressed(ImGuiKey_C)) + { + tool->CopyToClipboardLastTime = (float)g.Time; + char* p = g.TempBuffer.Data; + char* p_end = p + g.TempBuffer.Size; + for (int stack_n = 0; stack_n < tool->Results.Size && p + 3 < p_end; stack_n++) + { + *p++ = '/'; + char level_desc[256]; + StackToolFormatLevelInfo(tool, stack_n, false, level_desc, IM_ARRAYSIZE(level_desc)); + for (int n = 0; level_desc[n] && p + 2 < p_end; n++) + { + if (level_desc[n] == '/') + *p++ = '\\'; + *p++ = level_desc[n]; + } + } + *p = '\0'; + SetClipboardText(g.TempBuffer.Data); + } + + // Display decorated stack + tool->LastActiveFrame = g.FrameCount; + if (tool->Results.Size > 0 && BeginTable("##table", 3, ImGuiTableFlags_Borders)) + { + const float id_width = CalcTextSize("0xDDDDDDDD").x; + TableSetupColumn("Seed", ImGuiTableColumnFlags_WidthFixed, id_width); + TableSetupColumn("PushID", ImGuiTableColumnFlags_WidthStretch); + TableSetupColumn("Result", ImGuiTableColumnFlags_WidthFixed, id_width); + TableHeadersRow(); + for (int n = 0; n < tool->Results.Size; n++) + { + ImGuiStackLevelInfo* info = &tool->Results[n]; + TableNextColumn(); + Text("0x%08X", (n > 0) ? tool->Results[n - 1].ID : 0); + TableNextColumn(); + StackToolFormatLevelInfo(tool, n, true, g.TempBuffer.Data, g.TempBuffer.Size); + TextUnformatted(g.TempBuffer.Data); + TableNextColumn(); + Text("0x%08X", info->ID); + if (n == tool->Results.Size - 1) + TableSetBgColor(ImGuiTableBgTarget_CellBg, GetColorU32(ImGuiCol_Header)); + } + EndTable(); + } + End(); +} + +#else + +void ImGui::ShowMetricsWindow(bool*) {} +void ImGui::ShowFontAtlas(ImFontAtlas*) {} +void ImGui::DebugNodeColumns(ImGuiOldColumns*) {} +void ImGui::DebugNodeDrawList(ImGuiWindow*, ImGuiViewportP*, const ImDrawList*, const char*) {} +void ImGui::DebugNodeDrawCmdShowMeshAndBoundingBox(ImDrawList*, const ImDrawList*, const ImDrawCmd*, bool, bool) {} +void ImGui::DebugNodeFont(ImFont*) {} +void ImGui::DebugNodeStorage(ImGuiStorage*, const char*) {} +void ImGui::DebugNodeTabBar(ImGuiTabBar*, const char*) {} +void ImGui::DebugNodeWindow(ImGuiWindow*, const char*) {} +void ImGui::DebugNodeWindowSettings(ImGuiWindowSettings*) {} +void ImGui::DebugNodeWindowsList(ImVector*, const char*) {} +void ImGui::DebugNodeViewport(ImGuiViewportP*) {} + +void ImGui::DebugLog(const char*, ...) {} +void ImGui::DebugLogV(const char*, va_list) {} +void ImGui::ShowDebugLogWindow(bool*) {} +void ImGui::ShowStackToolWindow(bool*) {} +void ImGui::DebugHookIdInfo(ImGuiID, ImGuiDataType, const void*, const void*) {} +void ImGui::UpdateDebugToolItemPicker() {} +void ImGui::UpdateDebugToolStackQueries() {} + +#endif // #ifndef IMGUI_DISABLE_DEBUG_TOOLS + +//----------------------------------------------------------------------------- + +// Include imgui_user.inl at the end of imgui.cpp to access private data/functions that aren't exposed. +// Prefer just including imgui_internal.h from your code rather than using this define. If a declaration is missing from imgui_internal.h add it or request it on the github. +#ifdef IMGUI_INCLUDE_IMGUI_USER_INL +#include "imgui_user.inl" +#endif + +//----------------------------------------------------------------------------- + +#endif // #ifndef IMGUI_DISABLE diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui.h new file mode 100644 index 0000000..784a495 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui.h @@ -0,0 +1,3318 @@ +// dear imgui, v1.89.9 +// (headers) + +// Help: +// - Read FAQ at http://dearimgui.com/faq +// - Newcomers, read 'Programmer guide' in imgui.cpp for notes on how to setup Dear ImGui in your codebase. +// - Call and read ImGui::ShowDemoWindow() in imgui_demo.cpp. All applications in examples/ are doing that. +// Read imgui.cpp for details, links and comments. + +// Resources: +// - FAQ http://dearimgui.com/faq +// - Homepage https://github.com/ocornut/imgui +// - Releases & changelog https://github.com/ocornut/imgui/releases +// - Gallery https://github.com/ocornut/imgui/issues/6478 (please post your screenshots/video there!) +// - Wiki https://github.com/ocornut/imgui/wiki (lots of good stuff there) +// - Getting Started https://github.com/ocornut/imgui/wiki/Getting-Started +// - Glossary https://github.com/ocornut/imgui/wiki/Glossary +// - Issues & support https://github.com/ocornut/imgui/issues +// - Tests & Automation https://github.com/ocornut/imgui_test_engine + +// Getting Started? +// - Read https://github.com/ocornut/imgui/wiki/Getting-Started +// - For first-time users having issues compiling/linking/running/loading fonts: +// please post in https://github.com/ocornut/imgui/discussions if you cannot find a solution in resources above. + +// Library Version +// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345') +#define IMGUI_VERSION "1.89.9" +#define IMGUI_VERSION_NUM 18990 +#define IMGUI_HAS_TABLE + +/* + +Index of this file: +// [SECTION] Header mess +// [SECTION] Forward declarations and basic types +// [SECTION] Dear ImGui end-user API functions +// [SECTION] Flags & Enumerations +// [SECTION] Helpers: Memory allocations macros, ImVector<> +// [SECTION] ImGuiStyle +// [SECTION] ImGuiIO +// [SECTION] Misc data structures (ImGuiInputTextCallbackData, ImGunSizeCallbackData, ImGuiPayload, ImGuiTableSortSpecs, ImGuiTableColumnSortSpecs) +// [SECTION] Helpers (ImGuiOnceUponAFrame, ImGuiTextFilter, ImGuiTextBuffer, ImGuiStorage, ImGuiListClipper, Math Operators, ImColor) +// [SECTION] Drawing API (ImDrawCallback, ImDrawCmd, ImDrawIdx, ImDrawVert, ImDrawChannel, ImDrawListSplitter, ImDrawFlags, ImDrawListFlags, ImDrawList, ImDrawData) +// [SECTION] Font API (ImFontConfig, ImFontGlyph, ImFontGlyphRangesBuilder, ImFontAtlasFlags, ImFontAtlas, ImFont) +// [SECTION] Viewports (ImGuiViewportFlags, ImGuiViewport) +// [SECTION] Platform Dependent Interfaces (ImGuiPlatformImeData) +// [SECTION] Obsolete functions and types + +*/ + +#pragma once + +// Configuration file with compile-time options +// (edit imconfig.h or '#define IMGUI_USER_CONFIG "myfilename.h" from your build system') +#ifdef IMGUI_USER_CONFIG +#include IMGUI_USER_CONFIG +#endif +#include "imconfig.h" + +#ifndef IMGUI_DISABLE + +//----------------------------------------------------------------------------- +// [SECTION] Header mess +//----------------------------------------------------------------------------- + +// Includes +#include // FLT_MIN, FLT_MAX +#include // va_list, va_start, va_end +#include // ptrdiff_t, NULL +#include // memset, memmove, memcpy, strlen, strchr, strcpy, strcmp + +// Define attributes of all API symbols declarations (e.g. for DLL under Windows) +// IMGUI_API is used for core imgui functions, IMGUI_IMPL_API is used for the default backends files (imgui_impl_xxx.h) +// Using dear imgui via a shared library is not recommended, because we don't guarantee backward nor forward ABI compatibility (also function call overhead, as dear imgui is a call-heavy API) +#ifndef IMGUI_API +#define IMGUI_API +#endif +#ifndef IMGUI_IMPL_API +#define IMGUI_IMPL_API IMGUI_API +#endif + +// Helper Macros +#ifndef IM_ASSERT +#include +#define IM_ASSERT(_EXPR) assert(_EXPR) // You can override the default assert handler by editing imconfig.h +#endif +#define IM_ARRAYSIZE(_ARR) ((int)(sizeof(_ARR) / sizeof(*(_ARR)))) // Size of a static C-style array. Don't use on pointers! +#define IM_UNUSED(_VAR) ((void)(_VAR)) // Used to silence "unused variable warnings". Often useful as asserts may be stripped out from final builds. +#define IM_OFFSETOF(_TYPE,_MEMBER) offsetof(_TYPE, _MEMBER) // Offset of _MEMBER within _TYPE. Standardized as offsetof() in C++11 +#define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert), sizeof(ImDrawIdx)) + +// Helper Macros - IM_FMTARGS, IM_FMTLIST: Apply printf-style warnings to our formatting functions. +#if !defined(IMGUI_USE_STB_SPRINTF) && defined(__MINGW32__) && !defined(__clang__) +#define IM_FMTARGS(FMT) __attribute__((format(gnu_printf, FMT, FMT+1))) +#define IM_FMTLIST(FMT) __attribute__((format(gnu_printf, FMT, 0))) +#elif !defined(IMGUI_USE_STB_SPRINTF) && (defined(__clang__) || defined(__GNUC__)) +#define IM_FMTARGS(FMT) __attribute__((format(printf, FMT, FMT+1))) +#define IM_FMTLIST(FMT) __attribute__((format(printf, FMT, 0))) +#else +#define IM_FMTARGS(FMT) +#define IM_FMTLIST(FMT) +#endif + +// Disable some of MSVC most aggressive Debug runtime checks in function header/footer (used in some simple/low-level functions) +#if defined(_MSC_VER) && !defined(__clang__) && !defined(__INTEL_COMPILER) && !defined(IMGUI_DEBUG_PARANOID) +#define IM_MSVC_RUNTIME_CHECKS_OFF __pragma(runtime_checks("",off)) __pragma(check_stack(off)) __pragma(strict_gs_check(push,off)) +#define IM_MSVC_RUNTIME_CHECKS_RESTORE __pragma(runtime_checks("",restore)) __pragma(check_stack()) __pragma(strict_gs_check(pop)) +#else +#define IM_MSVC_RUNTIME_CHECKS_OFF +#define IM_MSVC_RUNTIME_CHECKS_RESTORE +#endif + +// Warnings +#ifdef _MSC_VER +#pragma warning (push) +#pragma warning (disable: 26495) // [Static Analyzer] Variable 'XXX' is uninitialized. Always initialize a member variable (type.6). +#endif +#if defined(__clang__) +#pragma clang diagnostic push +#if __has_warning("-Wunknown-warning-option") +#pragma clang diagnostic ignored "-Wunknown-warning-option" // warning: unknown warning group 'xxx' +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" // warning: unknown warning group 'xxx' +#pragma clang diagnostic ignored "-Wold-style-cast" +#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" +#pragma clang diagnostic ignored "-Wreserved-identifier" // warning: identifier '_Xxx' is reserved because it starts with '_' followed by a capital letter +#elif defined(__GNUC__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind +#pragma GCC diagnostic ignored "-Wclass-memaccess" // [__GNUC__ >= 8] warning: 'memset/memcpy' clearing/writing an object of type 'xxxx' with no trivial copy-assignment; use assignment or value-initialization instead +#endif + +//----------------------------------------------------------------------------- +// [SECTION] Forward declarations and basic types +//----------------------------------------------------------------------------- + +// Forward declarations +struct ImDrawChannel; // Temporary storage to output draw commands out of order, used by ImDrawListSplitter and ImDrawList::ChannelsSplit() +struct ImDrawCmd; // A single draw command within a parent ImDrawList (generally maps to 1 GPU draw call, unless it is a callback) +struct ImDrawData; // All draw command lists required to render the frame + pos/size coordinates to use for the projection matrix. +struct ImDrawList; // A single draw command list (generally one per window, conceptually you may see this as a dynamic "mesh" builder) +struct ImDrawListSharedData; // Data shared among multiple draw lists (typically owned by parent ImGui context, but you may create one yourself) +struct ImDrawListSplitter; // Helper to split a draw list into different layers which can be drawn into out of order, then flattened back. +struct ImDrawVert; // A single vertex (pos + uv + col = 20 bytes by default. Override layout with IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT) +struct ImFont; // Runtime data for a single font within a parent ImFontAtlas +struct ImFontAtlas; // Runtime data for multiple fonts, bake multiple fonts into a single texture, TTF/OTF font loader +struct ImFontBuilderIO; // Opaque interface to a font builder (stb_truetype or FreeType). +struct ImFontConfig; // Configuration data when adding a font or merging fonts +struct ImFontGlyph; // A single font glyph (code point + coordinates within in ImFontAtlas + offset) +struct ImFontGlyphRangesBuilder; // Helper to build glyph ranges from text/string data +struct ImColor; // Helper functions to create a color that can be converted to either u32 or float4 (*OBSOLETE* please avoid using) +struct ImGuiContext; // Dear ImGui context (opaque structure, unless including imgui_internal.h) +struct ImGuiIO; // Main configuration and I/O between your application and ImGui +struct ImGuiInputTextCallbackData; // Shared state of InputText() when using custom ImGuiInputTextCallback (rare/advanced use) +struct ImGuiKeyData; // Storage for ImGuiIO and IsKeyDown(), IsKeyPressed() etc functions. +struct ImGuiListClipper; // Helper to manually clip large list of items +struct ImGuiOnceUponAFrame; // Helper for running a block of code not more than once a frame +struct ImGuiPayload; // User data payload for drag and drop operations +struct ImGuiPlatformImeData; // Platform IME data for io.SetPlatformImeDataFn() function. +struct ImGunSizeCallbackData; // Callback data when using SetNextWindowSizeConstraints() (rare/advanced use) +struct ImGuiStorage; // Helper for key->value storage +struct ImGuiStyle; // Runtime data for styling/colors +struct ImGuiTableSortSpecs; // Sorting specifications for a table (often handling sort specs for a single column, occasionally more) +struct ImGuiTableColumnSortSpecs; // Sorting specification for one column of a table +struct ImGuiTextBuffer; // Helper to hold and append into a text buffer (~string builder) +struct ImGuiTextFilter; // Helper to parse and apply text filters (e.g. "aaaaa[,bbbbb][,ccccc]") +struct ImGuiViewport; // A Platform Window (always only one in 'master' branch), in the future may represent Platform Monitor + +// Enumerations +// - We don't use strongly typed enums much because they add constraints (can't extend in private code, can't store typed in bit fields, extra casting on iteration) +// - Tip: Use your programming IDE navigation facilities on the names in the _central column_ below to find the actual flags/enum lists! +// In Visual Studio IDE: CTRL+comma ("Edit.GoToAll") can follow symbols in comments, whereas CTRL+F12 ("Edit.GoToImplementation") cannot. +// With Visual Assist installed: ALT+G ("VAssistX.GoToImplementation") can also follow symbols in comments. +enum ImGuiKey : int; // -> enum ImGuiKey // Enum: A key identifier (ImGuiKey_XXX or ImGuiMod_XXX value) +enum ImGuiMouseSource : int; // -> enum ImGuiMouseSource // Enum; A mouse input source identifier (Mouse, TouchScreen, Pen) +typedef int ImGuiCol; // -> enum ImGuiCol_ // Enum: A color identifier for styling +typedef int ImGuiCond; // -> enum ImGuiCond_ // Enum: A condition for many Set*() functions +typedef int ImGuiDataType; // -> enum ImGuiDataType_ // Enum: A primary data type +typedef int ImGuiDir; // -> enum ImGuiDir_ // Enum: A cardinal direction +typedef int ImGuiMouseButton; // -> enum ImGuiMouseButton_ // Enum: A mouse button identifier (0=left, 1=right, 2=middle) +typedef int ImGuiMouseCursor; // -> enum ImGuiMouseCursor_ // Enum: A mouse cursor shape +typedef int ImGuiSortDirection; // -> enum ImGuiSortDirection_ // Enum: A sorting direction (ascending or descending) +typedef int ImGuiStyleVar; // -> enum ImGuiStyleVar_ // Enum: A variable identifier for styling +typedef int ImGuiTableBgTarget; // -> enum ImGuiTableBgTarget_ // Enum: A color target for TableSetBgColor() + +// Flags (declared as int for compatibility with old C++, to allow using as flags without overhead, and to not pollute the top of this file) +// - Tip: Use your programming IDE navigation facilities on the names in the _central column_ below to find the actual flags/enum lists! +// In Visual Studio IDE: CTRL+comma ("Edit.GoToAll") can follow symbols in comments, whereas CTRL+F12 ("Edit.GoToImplementation") cannot. +// With Visual Assist installed: ALT+G ("VAssistX.GoToImplementation") can also follow symbols in comments. +typedef int ImDrawFlags; // -> enum ImDrawFlags_ // Flags: for ImDrawList functions +typedef int ImDrawListFlags; // -> enum ImDrawListFlags_ // Flags: for ImDrawList instance +typedef int ImFontAtlasFlags; // -> enum ImFontAtlasFlags_ // Flags: for ImFontAtlas build +typedef int ImGuiBackendFlags; // -> enum ImGuiBackendFlags_ // Flags: for io.BackendFlags +typedef int ImGuiButtonFlags; // -> enum ImGuiButtonFlags_ // Flags: for InvisibleButton() +typedef int ImGuiChildFlags; +typedef int ImGuiColorEditFlags; // -> enum ImGuiColorEditFlags_ // Flags: for ColorEdit4(), ColorPicker4() etc. +typedef int ImGuiConfigFlags; // -> enum ImGuiConfigFlags_ // Flags: for io.ConfigFlags +typedef int ImGuiComboFlags; // -> enum ImGuiComboFlags_ // Flags: for BeginCombo() +typedef int ImGuiDragDropFlags; // -> enum ImGuiDragDropFlags_ // Flags: for BeginDragDropSource(), AcceptDragDropPayload() +typedef int ImGuiFocusedFlags; // -> enum ImGuiFocusedFlags_ // Flags: for IsWindowFocused() +typedef int ImGuiHoveredFlags; // -> enum ImGuiHoveredFlags_ // Flags: for IsItemHovered(), IsWindowHovered() etc. +typedef int ImGuiInputTextFlags; // -> enum ImGuiInputTextFlags_ // Flags: for InputText(), InputTextMultiline() +typedef int ImGuiKeyChord; // -> ImGuiKey | ImGuiMod_XXX // Flags: for storage only for now: an ImGuiKey optionally OR-ed with one or more ImGuiMod_XXX values. +typedef int ImGuiPopupFlags; // -> enum ImGuiPopupFlags_ // Flags: for OpenPopup*(), BeginPopupContext*(), IsPopupOpen() +typedef int ImGuiSelectableFlags; // -> enum ImGuiSelectableFlags_ // Flags: for Selectable() +typedef int ImGuiSliderFlags; // -> enum ImGuiSliderFlags_ // Flags: for DragFloat(), DragInt(), SliderFloat(), SliderInt() etc. +typedef int ImGuiTabBarFlags; // -> enum ImGuiTabBarFlags_ // Flags: for BeginTabBar() +typedef int ImGuiTabItemFlags; // -> enum ImGuiTabItemFlags_ // Flags: for BeginTabItem() +typedef int ImGuiTableFlags; // -> enum ImGuiTableFlags_ // Flags: For BeginTable() +typedef int ImGuiTableColumnFlags; // -> enum ImGuiTableColumnFlags_// Flags: For TableSetupColumn() +typedef int ImGuiTableRowFlags; // -> enum ImGuiTableRowFlags_ // Flags: For TableNextRow() +typedef int ImGuiTreeNodeFlags; // -> enum ImGuiTreeNodeFlags_ // Flags: for TreeNode(), TreeNodeEx(), CollapsingHeader() +typedef int ImGuiViewportFlags; // -> enum ImGuiViewportFlags_ // Flags: for ImGuiViewport +typedef int ImGuiWindowFlags; // -> enum ImGuiWindowFlags_ // Flags: for Begin(), BeginChild() + +// ImTexture: user data for renderer backend to identify a texture [Compile-time configurable type] +// - To use something else than an opaque void* pointer: override with e.g. '#define ImTextureID MyTextureType*' in your imconfig.h file. +// - This can be whatever to you want it to be! read the FAQ about ImTextureID for details. +#ifndef ImTextureID +typedef void* ImTextureID; // Default: store a pointer or an integer fitting in a pointer (most renderer backends are ok with that) +#endif + +// ImDrawIdx: vertex index. [Compile-time configurable type] +// - To use 16-bit indices + allow large meshes: backend need to set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset' and handle ImDrawCmd::VtxOffset (recommended). +// - To use 32-bit indices: override with '#define ImDrawIdx unsigned int' in your imconfig.h file. +#ifndef ImDrawIdx +typedef unsigned short ImDrawIdx; // Default: 16-bit (for maximum compatibility with renderer backends) +#endif + +// Scalar data types +typedef unsigned int ImGuiID;// A unique ID used by widgets (typically the result of hashing a stack of string) +typedef signed char ImS8; // 8-bit signed integer +typedef unsigned char ImU8; // 8-bit unsigned integer +typedef signed short ImS16; // 16-bit signed integer +typedef unsigned short ImU16; // 16-bit unsigned integer +typedef signed int ImS32; // 32-bit signed integer == int +typedef unsigned int ImU32; // 32-bit unsigned integer (often used to store packed colors) +typedef signed long long ImS64; // 64-bit signed integer +typedef unsigned long long ImU64; // 64-bit unsigned integer + +// Character types +// (we generally use UTF-8 encoded string in the API. This is storage specifically for a decoded character used for keyboard input and display) +typedef unsigned short ImWchar16; // A single decoded U16 character/code point. We encode them as multi bytes UTF-8 when used in strings. +typedef unsigned int ImWchar32; // A single decoded U32 character/code point. We encode them as multi bytes UTF-8 when used in strings. +#ifdef IMGUI_USE_WCHAR32 // ImWchar [configurable type: override in imconfig.h with '#define IMGUI_USE_WCHAR32' to support Unicode planes 1-16] +typedef ImWchar32 ImWchar; +#else +typedef ImWchar16 ImWchar; +#endif + +// Callback and functions types +typedef int (*ImGuiInputTextCallback)(ImGuiInputTextCallbackData* data); // Callback function for ImGui::InputText() +typedef void (*ImGunSizeCallback)(ImGunSizeCallbackData* data); // Callback function for ImGui::SetNextWindowSizeConstraints() +typedef void* (*ImGuiMemAllocFunc)(size_t sz, void* user_data); // Function signature for ImGui::SetAllocatorFunctions() +typedef void (*ImGuiMemFreeFunc)(void* ptr, void* user_data); // Function signature for ImGui::SetAllocatorFunctions() + + // GUI ANIMATIONS STRUCT +struct animation_data_t { + float hover_fraction_inner = 0.0f; + float hover_fraction_outer = 0.0f; + float main_fraction = 0.0f; +}; +// ImVec2: 2D vector used to store positions, sizes etc. [Compile-time configurable type] +// This is a frequently used type in the API. Consider using IM_VEC2_CLASS_EXTRA to create implicit cast from/to our preferred type. +IM_MSVC_RUNTIME_CHECKS_OFF +struct ImVec2 +{ + float x, y; + constexpr ImVec2() : x(0.0f), y(0.0f) { } + constexpr ImVec2(float _x, float _y) : x(_x), y(_y) { } + float& operator[] (size_t idx) { IM_ASSERT(idx == 0 || idx == 1); return ((float*)(void*)(char*)this)[idx]; } // We very rarely use this [] operator, so the assert overhead is fine. + float operator[] (size_t idx) const { IM_ASSERT(idx == 0 || idx == 1); return ((const float*)(const void*)(const char*)this)[idx]; } +#ifdef IM_VEC2_CLASS_EXTRA + IM_VEC2_CLASS_EXTRA // Define additional constructors and implicit cast operators in imconfig.h to convert back and forth between your math types and ImVec2. +#endif +}; + +// ImVec4: 4D vector used to store clipping rectangles, colors etc. [Compile-time configurable type] +struct ImVec4 +{ + float x, y, z, w; + constexpr ImVec4() : x(0.0f), y(0.0f), z(0.0f), w(0.0f) { } + constexpr ImVec4(float _x, float _y, float _z, float _w) : x(_x), y(_y), z(_z), w(_w) { } +#ifdef IM_VEC4_CLASS_EXTRA + IM_VEC4_CLASS_EXTRA // Define additional constructors and implicit cast operators in imconfig.h to convert back and forth between your math types and ImVec4. +#endif +}; +IM_MSVC_RUNTIME_CHECKS_RESTORE + +//----------------------------------------------------------------------------- +// [SECTION] Dear ImGui end-user API functions +// (Note that ImGui:: being a namespace, you can add extra ImGui:: functions in your own separate file. Please don't modify imgui source files!) +//----------------------------------------------------------------------------- + +namespace ImGui +{ + // Context creation and access + // - Each context create its own ImFontAtlas by default. You may instance one yourself and pass it to CreateContext() to share a font atlas between contexts. + // - DLL users: heaps and globals are not shared across DLL boundaries! You will need to call SetCurrentContext() + SetAllocatorFunctions() + // for each static/DLL boundary you are calling from. Read "Context and Memory Allocators" section of imgui.cpp for details. + IMGUI_API ImGuiContext* CreateContext(ImFontAtlas* shared_font_atlas = NULL); + IMGUI_API void DestroyContext(ImGuiContext* ctx = NULL); // NULL = destroy current context + IMGUI_API ImGuiContext* GetCurrentContext(); + IMGUI_API void SetCurrentContext(ImGuiContext* ctx); + + // Main + IMGUI_API ImGuiIO& GetIO(); // access the IO structure (mouse/keyboard/gamepad inputs, time, various configuration options/flags) + IMGUI_API ImGuiStyle& GetStyle(); // access the Style structure (colors, sizes). Always use PushStyleCol(), PushStyleVar() to modify style mid-frame! + IMGUI_API void NewFrame(); // start a new Dear ImGui frame, you can submit any command from this point until Render()/EndFrame(). + IMGUI_API void EndFrame(); // ends the Dear ImGui frame. automatically called by Render(). If you don't need to render data (skipping rendering) you may call EndFrame() without Render()... but you'll have wasted CPU already! If you don't need to render, better to not create any windows and not call NewFrame() at all! + IMGUI_API void Render(); // ends the Dear ImGui frame, finalize the draw data. You can then get call GetDrawData(). + IMGUI_API ImDrawData* GetDrawData(); // valid after Render() and until the next call to NewFrame(). this is what you have to render. + + // Demo, Debug, Information + IMGUI_API void ShowDemoWindow(bool* p_open = NULL); // create Demo window. demonstrate most ImGui features. call this to learn about the library! try to make it always available in your application! + IMGUI_API void ShowMetricsWindow(bool* p_open = NULL); // create Metrics/Debugger window. display Dear ImGui internals: windows, draw commands, various internal state, etc. + IMGUI_API void ShowDebugLogWindow(bool* p_open = NULL); // create Debug Log window. display a simplified log of important dear imgui events. + IMGUI_API void ShowStackToolWindow(bool* p_open = NULL); // create Stack Tool window. hover items with mouse to query information about the source of their unique ID. + IMGUI_API void ShowAboutWindow(bool* p_open = NULL); // create About window. display Dear ImGui version, credits and build/system information. + IMGUI_API void ShowStyleEditor(ImGuiStyle* ref = NULL); // add style editor block (not a window). you can pass in a reference ImGuiStyle structure to compare to, revert to and save to (else it uses the default style) + IMGUI_API bool ShowStyleSelector(const char* label); // add style selector block (not a window), essentially a combo listing the default styles. + IMGUI_API void ShowFontSelector(const char* label); // add font selector block (not a window), essentially a combo listing the loaded fonts. + IMGUI_API void ShowUserGuide(); // add basic help/info block (not a window): how to manipulate ImGui as an end-user (mouse/keyboard controls). + IMGUI_API const char* GetVersion(); // get the compiled version string e.g. "1.80 WIP" (essentially the value for IMGUI_VERSION from the compiled version of imgui.cpp) + + // Styles + IMGUI_API void StyleColorsDark(ImGuiStyle* dst = NULL); // new, recommended style (default) + IMGUI_API void StyleColorsLight(ImGuiStyle* dst = NULL); // best used with borders and a custom, thicker font + IMGUI_API void StyleColorsClassic(ImGuiStyle* dst = NULL); // classic imgui style + + // Windows + // - Begin() = push window to the stack and start appending to it. End() = pop window from the stack. + // - Passing 'bool* p_open != NULL' shows a window-closing widget in the upper-right corner of the window, + // which clicking will set the boolean to false when clicked. + // - You may append multiple times to the same window during the same frame by calling Begin()/End() pairs multiple times. + // Some information such as 'flags' or 'p_open' will only be considered by the first call to Begin(). + // - Begin() return false to indicate the window is collapsed or fully clipped, so you may early out and omit submitting + // anything to the window. Always call a matching End() for each Begin() call, regardless of its return value! + // [Important: due to legacy reason, this is inconsistent with most other functions such as BeginMenu/EndMenu, + // BeginPopup/EndPopup, etc. where the EndXXX call should only be called if the corresponding BeginXXX function + // returned true. Begin and BeginChild are the only odd ones out. Will be fixed in a future update.] + // - Note that the bottom of window stack always contains a window called "Debug". + IMGUI_API bool Begin(const char* name, bool* p_open = NULL, ImGuiWindowFlags flags = 0); + IMGUI_API void End(); + + // Child Windows + // - Use child windows to begin into a self-contained independent scrolling/clipping regions within a host window. Child windows can embed their own child. + // - Before 1.90 (November 2023), the "ImGuiChildFlags child_flags = 0" parameter was "bool border = false". + // This API is backward compatible with old code, as we guarantee that ImGuiChildFlags_Border == true. + // Consider updating your old call sites: + // BeginChild("Name", size, false) -> Begin("Name", size, 0); or Begin("Name", size, ImGuiChildFlags_None); + // BeginChild("Name", size, true) -> Begin("Name", size, ImGuiChildFlags_Border); + // - Manual sizing (each axis can use a different setting e.g. ImVec2(0.0f, 400.0f)): + // == 0.0f: use remaining parent window size for this axis. + // > 0.0f: use specified size for this axis. + // < 0.0f: right/bottom-align to specified distance from available content boundaries. + // - Specifying ImGuiChildFlags_AutoResizeX or ImGuiChildFlags_AutoResizeY makes the sizing automatic based on child contents. + // Combining both ImGuiChildFlags_AutoResizeX _and_ ImGuiChildFlags_AutoResizeY defeats purpose of a scrolling region and is NOT recommended. + // - BeginChild() returns false to indicate the window is collapsed or fully clipped, so you may early out and omit submitting + // anything to the window. Always call a matching EndChild() for each BeginChild() call, regardless of its return value. + // [Important: due to legacy reason, Begin/End and BeginChild/EndChild are inconsistent with all other functions + // such as BeginMenu/EndMenu, BeginPopup/EndPopup, etc. where the EndXXX call should only be called if the corresponding + // BeginXXX function returned true. Begin and BeginChild are the only odd ones out. Will be fixed in a future update.] + IMGUI_API bool BeginChild(const char* str_id, const ImVec2& size = ImVec2(0, 0), ImGuiChildFlags child_flags = 0, ImGuiWindowFlags window_flags = 0); + IMGUI_API bool BeginChild(ImGuiID id, const ImVec2& size = ImVec2(0, 0), ImGuiChildFlags child_flags = 0, ImGuiWindowFlags window_flags = 0); + IMGUI_API void EndChild(); + + // Windows Utilities + // - 'current window' = the window we are appending into while inside a Begin()/End() block. 'next window' = next window we will Begin() into. + IMGUI_API bool IsWindowAppearing(); + IMGUI_API bool IsWindowCollapsed(); + IMGUI_API bool IsWindowFocused(ImGuiFocusedFlags flags=0); // is current window focused? or its root/child, depending on flags. see flags for options. + IMGUI_API bool IsWindowHovered(ImGuiHoveredFlags flags=0); // is current window hovered (and typically: not blocked by a popup/modal)? see flags for options. NB: If you are trying to check whether your mouse should be dispatched to imgui or to your app, you should use the 'io.WantCaptureMouse' boolean for that! Please read the FAQ! + IMGUI_API ImDrawList* GetWindowDrawList(); // get draw list associated to the current window, to append your own drawing primitives + IMGUI_API ImVec2 GetWindowPos(); // get current window position in screen space (note: it is unlikely you need to use this. Consider using current layout pos instead, GetScreenCursorPos()) + IMGUI_API ImVec2 GetWindowSize(); // get current window size (note: it is unlikely you need to use this. Consider using GetScreenCursorPos() and e.g. GetContentRegionAvail() instead) + IMGUI_API float GetWindowWidth(); // get current window width (shortcut for GetWindowSize().x) + IMGUI_API float GetWindowHeight(); // get current window height (shortcut for GetWindowSize().y) + + // Window manipulation + // - Prefer using SetNextXXX functions (before Begin) rather that SetXXX functions (after Begin). + IMGUI_API void SetNextWindowPos(const ImVec2& pos, ImGuiCond cond = 0, const ImVec2& pivot = ImVec2(0, 0)); // set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc. + IMGUI_API void SetNextWindowSize(const ImVec2& size, ImGuiCond cond = 0); // set next window size. set axis to 0.0f to force an auto-fit on this axis. call before Begin() + IMGUI_API void SetNextWindowSizeConstraints(const ImVec2& size_min, const ImVec2& size_max, ImGunSizeCallback custom_callback = NULL, void* custom_callback_data = NULL); // set next window size limits. use -1,-1 on either X/Y axis to preserve the current size. Sizes will be rounded down. Use callback to apply non-trivial programmatic constraints. + IMGUI_API void SetNextWindowContentSize(const ImVec2& size); // set next window content size (~ scrollable client area, which enforce the range of scrollbars). Not including window decorations (title bar, menu bar, etc.) nor WindowPadding. set an axis to 0.0f to leave it automatic. call before Begin() + IMGUI_API void SetNextWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // set next window collapsed state. call before Begin() + IMGUI_API void SetNextWindowFocus(); // set next window to be focused / top-most. call before Begin() + IMGUI_API void SetNextWindowScroll(const ImVec2& scroll); // set next window scrolling value (use < 0.0f to not affect a given axis). + IMGUI_API void SetNextWindowBgAlpha(float alpha); // set next window background color alpha. helper to easily override the Alpha component of ImGuiCol_WindowBg/ChildBg/PopupBg. you may also use ImGuiWindowFlags_NoBackground. + IMGUI_API void SetWindowPos(const ImVec2& pos, ImGuiCond cond = 0); // (not recommended) set current window position - call within Begin()/End(). prefer using SetNextWindowPos(), as this may incur tearing and side-effects. + IMGUI_API void SetWindowSize(const ImVec2& size, ImGuiCond cond = 0); // (not recommended) set current window size - call within Begin()/End(). set to ImVec2(0, 0) to force an auto-fit. prefer using SetNextWindowSize(), as this may incur tearing and minor side-effects. + IMGUI_API void SetWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // (not recommended) set current window collapsed state. prefer using SetNextWindowCollapsed(). + IMGUI_API void SetWindowFocus(); // (not recommended) set current window to be focused / top-most. prefer using SetNextWindowFocus(). + IMGUI_API void SetWindowFontScale(float scale); // [OBSOLETE] set font scale. Adjust IO.FontGlobalScale if you want to scale all windows. This is an old API! For correct scaling, prefer to reload font + rebuild ImFontAtlas + call style.ScaleAllSizes(). + IMGUI_API void SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond = 0); // set named window position. + IMGUI_API void SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond = 0); // set named window size. set axis to 0.0f to force an auto-fit on this axis. + IMGUI_API void SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond cond = 0); // set named window collapsed state + IMGUI_API void SetWindowFocus(const char* name); // set named window to be focused / top-most. use NULL to remove focus. + + // Content region + // - Retrieve available space from a given point. GetContentRegionAvail() is frequently useful. + // - Those functions are bound to be redesigned (they are confusing, incomplete and the Min/Max return values are in local window coordinates which increases confusion) + IMGUI_API ImVec2 GetContentRegionAvail(); // == GetContentRegionMax() - GetCursorPos() + IMGUI_API ImVec2 GetContentRegionMax(); // current content boundaries (typically window boundaries including scrolling, or current column boundaries), in windows coordinates + IMGUI_API ImVec2 GetWindowContentRegionMin(); // content boundaries min for the full window (roughly (0,0)-Scroll), in window coordinates + IMGUI_API ImVec2 GetWindowContentRegionMax(); // content boundaries max for the full window (roughly (0,0)+Size-Scroll) where Size can be overridden with SetNextWindowContentSize(), in window coordinates + + // Windows Scrolling + // - Any change of Scroll will be applied at the beginning of next frame in the first call to Begin(). + // - You may instead use SetNextWindowScroll() prior to calling Begin() to avoid this delay, as an alternative to using SetScrollX()/SetScrollY(). + IMGUI_API float GetScrollX(); // get scrolling amount [0 .. GetScrollMaxX()] + IMGUI_API float GetScrollY(); // get scrolling amount [0 .. GetScrollMaxY()] + IMGUI_API void SetScrollX(float scroll_x); // set scrolling amount [0 .. GetScrollMaxX()] + IMGUI_API void SetScrollY(float scroll_y); // set scrolling amount [0 .. GetScrollMaxY()] + IMGUI_API float GetScrollMaxX(); // get maximum scrolling amount ~~ ContentSize.x - WindowSize.x - DecorationsSize.x + IMGUI_API float GetScrollMaxY(); // get maximum scrolling amount ~~ ContentSize.y - WindowSize.y - DecorationsSize.y + IMGUI_API void SetScrollHereX(float center_x_ratio = 0.5f); // adjust scrolling amount to make current cursor position visible. center_x_ratio=0.0: left, 0.5: center, 1.0: right. When using to make a "default/current item" visible, consider using SetItemDefaultFocus() instead. + IMGUI_API void SetScrollHereY(float center_y_ratio = 0.5f); // adjust scrolling amount to make current cursor position visible. center_y_ratio=0.0: top, 0.5: center, 1.0: bottom. When using to make a "default/current item" visible, consider using SetItemDefaultFocus() instead. + IMGUI_API void SetScrollFromPosX(float local_x, float center_x_ratio = 0.5f); // adjust scrolling amount to make given position visible. Generally GetCursorStartPos() + offset to compute a valid position. + IMGUI_API void SetScrollFromPosY(float local_y, float center_y_ratio = 0.5f); // adjust scrolling amount to make given position visible. Generally GetCursorStartPos() + offset to compute a valid position. + + // Parameters stacks (shared) + IMGUI_API void PushFont(ImFont* font); // use NULL as a shortcut to push default font + IMGUI_API void PopFont(); + IMGUI_API void PushStyleColor(ImGuiCol idx, ImU32 col); // modify a style color. always use this if you modify the style after NewFrame(). + IMGUI_API void PushStyleColor(ImGuiCol idx, const ImVec4& col); + IMGUI_API void PopStyleColor(int count = 1); + IMGUI_API void PushStyleVar(ImGuiStyleVar idx, float val); // modify a style float variable. always use this if you modify the style after NewFrame(). + IMGUI_API void PushStyleVar(ImGuiStyleVar idx, const ImVec2& val); // modify a style ImVec2 variable. always use this if you modify the style after NewFrame(). + IMGUI_API void PopStyleVar(int count = 1); + IMGUI_API void PushTabStop(bool tab_stop); // == tab stop enable. Allow focusing using TAB/Shift-TAB, enabled by default but you can disable it for certain widgets + IMGUI_API void PopTabStop(); + IMGUI_API void PushButtonRepeat(bool repeat); // in 'repeat' mode, Button*() functions return repeated true in a typematic manner (using io.KeyRepeatDelay/io.KeyRepeatRate setting). Note that you can call IsItemActive() after any Button() to tell if the button is held in the current frame. + IMGUI_API void PopButtonRepeat(); + + // Parameters stacks (current window) + IMGUI_API void PushItemWidth(float item_width); // push width of items for common large "item+label" widgets. >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -FLT_MIN always align width to the right side). + IMGUI_API void PopItemWidth(); + IMGUI_API void SetNextItemWidth(float item_width); // set width of the _next_ common large "item+label" widget. >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -FLT_MIN always align width to the right side) + IMGUI_API float CalcItemWidth(); // width of item given pushed settings and current cursor position. NOT necessarily the width of last item unlike most 'Item' functions. + IMGUI_API void PushTextWrapPos(float wrap_local_pos_x = 0.0f); // push word-wrapping position for Text*() commands. < 0.0f: no wrapping; 0.0f: wrap to end of window (or column); > 0.0f: wrap at 'wrap_pos_x' position in window local space + IMGUI_API void PopTextWrapPos(); + + // Style read access + // - Use the ShowStyleEditor() function to interactively see/edit the colors. + IMGUI_API ImFont* GetFont(); // get current font + IMGUI_API float GetFontSize(); // get current font size (= height in pixels) of current font with current scale applied + IMGUI_API ImVec2 GetFontTexUvWhitePixel(); // get UV coordinate for a while pixel, useful to draw custom shapes via the ImDrawList API + IMGUI_API ImU32 GetColorU32(ImGuiCol idx, float alpha_mul = 1.0f); // retrieve given style color with style alpha applied and optional extra alpha multiplier, packed as a 32-bit value suitable for ImDrawList + IMGUI_API ImU32 VGetColorU32(const ImVec4& col, float alpha_mul = 1.f); + IMGUI_API ImU32 GetColorU32(const ImVec4& col); // retrieve given color with style alpha applied, packed as a 32-bit value suitable for ImDrawList + IMGUI_API ImU32 GetColorU32(ImU32 col); // retrieve given color with style alpha applied, packed as a 32-bit value suitable for ImDrawList + IMGUI_API const ImVec4& GetStyleColorVec4(ImGuiCol idx); // retrieve style color as stored in ImGuiStyle structure. use to feed back into PushStyleColor(), otherwise use GetColorU32() to get style color with style alpha baked in. + + // Cursor / Layout + // - By "cursor" we mean the current output position. + // - The typical widget behavior is to output themselves at the current cursor position, then move the cursor one line down. + // - You can call SameLine() between widgets to undo the last carriage return and output at the right of the preceding widget. + // - Attention! We currently have inconsistencies between window-local and absolute positions we will aim to fix with future API: + // Window-local coordinates: SameLine(), GetCursorPos(), SetCursorPos(), GetCursorStartPos(), GetContentRegionMax(), GetWindowContentRegion*(), PushTextWrapPos() + // Absolute coordinate: GetCursorScreenPos(), SetCursorScreenPos(), all ImDrawList:: functions. + IMGUI_API void Separator(); // separator, generally horizontal. inside a menu bar or in horizontal layout mode, this becomes a vertical separator. + IMGUI_API void SameLine(float offset_from_start_x=0.0f, float spacing=-1.0f); // call between widgets or groups to layout them horizontally. X position given in window coordinates. + IMGUI_API void NewLine(); // undo a SameLine() or force a new line when in a horizontal-layout context. + IMGUI_API void Spacing(); // add vertical spacing. + IMGUI_API void Dummy(const ImVec2& size); // add a dummy item of given size. unlike InvisibleButton(), Dummy() won't take the mouse click or be navigable into. + IMGUI_API void Indent(float indent_w = 0.0f); // move content position toward the right, by indent_w, or style.IndentSpacing if indent_w <= 0 + IMGUI_API void Unindent(float indent_w = 0.0f); // move content position back to the left, by indent_w, or style.IndentSpacing if indent_w <= 0 + IMGUI_API void BeginGroup(); // lock horizontal starting position + IMGUI_API void EndGroup(); // unlock horizontal starting position + capture the whole group bounding box into one "item" (so you can use IsItemHovered() or layout primitives such as SameLine() on whole group, etc.) + IMGUI_API ImVec2 GetCursorPos(); // cursor position in window coordinates (relative to window position) + IMGUI_API float GetCursorPosX(); // (some functions are using window-relative coordinates, such as: GetCursorPos, GetCursorStartPos, GetContentRegionMax, GetWindowContentRegion* etc. + IMGUI_API float GetCursorPosY(); // other functions such as GetCursorScreenPos or everything in ImDrawList:: + IMGUI_API void SetCursorPos(const ImVec2& local_pos); // are using the main, absolute coordinate system. + IMGUI_API void SetCursorPosX(float local_x); // GetWindowPos() + GetCursorPos() == GetCursorScreenPos() etc.) + IMGUI_API void SetCursorPosY(float local_y); // + IMGUI_API ImVec2 GetCursorStartPos(); // initial cursor position in window coordinates + IMGUI_API ImVec2 GetCursorScreenPos(); // cursor position in absolute coordinates (useful to work with ImDrawList API). generally top-left == GetMainViewport()->Pos == (0,0) in single viewport mode, and bottom-right == GetMainViewport()->Pos+Size == io.DisplaySize in single-viewport mode. + IMGUI_API void SetCursorScreenPos(const ImVec2& pos); // cursor position in absolute coordinates + IMGUI_API void AlignTextToFramePadding(); // vertically align upcoming text baseline to FramePadding.y so that it will align properly to regularly framed items (call if you have text on a line before a framed item) + IMGUI_API float GetTextLineHeight(); // ~ FontSize + IMGUI_API float GetTextLineHeightWithSpacing(); // ~ FontSize + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of text) + IMGUI_API float GetFrameHeight(); // ~ FontSize + style.FramePadding.y * 2 + IMGUI_API float GetFrameHeightWithSpacing(); // ~ FontSize + style.FramePadding.y * 2 + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of framed widgets) + + // ID stack/scopes + // Read the FAQ (docs/FAQ.md or http://dearimgui.com/faq) for more details about how ID are handled in dear imgui. + // - Those questions are answered and impacted by understanding of the ID stack system: + // - "Q: Why is my widget not reacting when I click on it?" + // - "Q: How can I have widgets with an empty label?" + // - "Q: How can I have multiple widgets with the same label?" + // - Short version: ID are hashes of the entire ID stack. If you are creating widgets in a loop you most likely + // want to push a unique identifier (e.g. object pointer, loop index) to uniquely differentiate them. + // - You can also use the "Label##foobar" syntax within widget label to distinguish them from each others. + // - In this header file we use the "label"/"name" terminology to denote a string that will be displayed + used as an ID, + // whereas "str_id" denote a string that is only used as an ID and not normally displayed. + IMGUI_API void PushID(const char* str_id); // push string into the ID stack (will hash string). + IMGUI_API void PushID(const char* str_id_begin, const char* str_id_end); // push string into the ID stack (will hash string). + IMGUI_API void PushID(const void* ptr_id); // push pointer into the ID stack (will hash pointer). + IMGUI_API void PushID(int int_id); // push integer into the ID stack (will hash integer). + IMGUI_API void PopID(); // pop from the ID stack. + IMGUI_API ImGuiID GetID(const char* str_id); // calculate unique ID (hash of whole ID stack + given parameter). e.g. if you want to query into ImGuiStorage yourself + IMGUI_API ImGuiID GetID(const char* str_id_begin, const char* str_id_end); + IMGUI_API ImGuiID GetID(const void* ptr_id); + + // Widgets: Text + IMGUI_API void TextUnformatted(const char* text, const char* text_end = NULL); // raw text without formatting. Roughly equivalent to Text("%s", text) but: A) doesn't require null terminated string if 'text_end' is specified, B) it's faster, no memory copy is done, no buffer size limits, recommended for long chunks of text. + IMGUI_API void Text(const char* fmt, ...) IM_FMTARGS(1); // formatted text + IMGUI_API void TextV(const char* fmt, va_list args) IM_FMTLIST(1); + IMGUI_API void TextColored(const ImVec4& col, const char* fmt, ...) IM_FMTARGS(2); // shortcut for PushStyleColor(ImGuiCol_Text, col); Text(fmt, ...); PopStyleColor(); + IMGUI_API void TextColoredV(const ImVec4& col, const char* fmt, va_list args) IM_FMTLIST(2); + IMGUI_API void TextDisabled(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushStyleColor(ImGuiCol_Text, style.Colors[ImGuiCol_TextDisabled]); Text(fmt, ...); PopStyleColor(); + IMGUI_API void TextDisabledV(const char* fmt, va_list args) IM_FMTLIST(1); + IMGUI_API void TextWrapped(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushTextWrapPos(0.0f); Text(fmt, ...); PopTextWrapPos();. Note that this won't work on an auto-resizing window if there's no other widgets to extend the window width, yoy may need to set a size using SetNextWindowSize(). + IMGUI_API void TextWrappedV(const char* fmt, va_list args) IM_FMTLIST(1); + IMGUI_API void LabelText(const char* label, const char* fmt, ...) IM_FMTARGS(2); // display text+label aligned the same way as value+label widgets + IMGUI_API void LabelTextV(const char* label, const char* fmt, va_list args) IM_FMTLIST(2); + IMGUI_API void BulletText(const char* fmt, ...) IM_FMTARGS(1); // shortcut for Bullet()+Text() + IMGUI_API void BulletTextV(const char* fmt, va_list args) IM_FMTLIST(1); + IMGUI_API void SeparatorText(const char* label); // currently: formatted text with an horizontal line + + // Widgets: Main + // - Most widgets return true when the value has been changed or when pressed/selected + // - You may also use one of the many IsItemXXX functions (e.g. IsItemActive, IsItemHovered, etc.) to query widget state. + IMGUI_API bool Button(const char* label, const ImVec2& size = ImVec2(0, 0)); // button + IMGUI_API bool SmallButton(const char* label); // button with FramePadding=(0,0) to easily embed within text + IMGUI_API bool InvisibleButton(const char* str_id, const ImVec2& size, ImGuiButtonFlags flags = 0); // flexible button behavior without the visuals, frequently useful to build custom behaviors using the public api (along with IsItemActive, IsItemHovered, etc.) + IMGUI_API bool ArrowButton(const char* str_id, ImGuiDir dir); + // square button with an arrow shape + IMGUI_API bool Checkbox(const char* label, bool* v); + IMGUI_API bool CheckboxFlags(const char* label, int* flags, int flags_value); + IMGUI_API bool CheckboxFlags(const char* label, unsigned int* flags, unsigned int flags_value); + IMGUI_API bool RadioButton(const char* label, bool active); // use with e.g. if (RadioButton("one", my_value==1)) { my_value = 1; } + IMGUI_API bool RadioButton(const char* label, int* v, int v_button); // shortcut to handle the above pattern when value is an integer + IMGUI_API void ProgressBar(float fraction, const ImVec2& size_arg = ImVec2(-FLT_MIN, 0), const char* overlay = NULL); + IMGUI_API void Bullet(); // draw a small circle + keep the cursor on the same line. advance cursor x position by GetTreeNodeToLabelSpacing(), same distance that TreeNode() uses + + // Widgets: Images + // - Read about ImTextureID here: https://github.com/ocornut/imgui/wiki/Image-Loading-and-Displaying-Examples + IMGUI_API void Image(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0, 0), const ImVec2& uv1 = ImVec2(1, 1), const ImVec4& tint_col = ImVec4(1, 1, 1, 1), const ImVec4& border_col = ImVec4(0, 0, 0, 0)); + IMGUI_API bool ImageButton(const char* str_id, ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0, 0), const ImVec2& uv1 = ImVec2(1, 1), const ImVec4& bg_col = ImVec4(0, 0, 0, 0), const ImVec4& tint_col = ImVec4(1, 1, 1, 1)); + + // Widgets: Combo Box (Dropdown) + // - The BeginCombo()/EndCombo() api allows you to manage your contents and selection state however you want it, by creating e.g. Selectable() items. + // - The old Combo() api are helpers over BeginCombo()/EndCombo() which are kept available for convenience purpose. This is analogous to how ListBox are created. + IMGUI_API bool BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags = 0); + IMGUI_API void EndCombo(); // only call EndCombo() if BeginCombo() returns true! + IMGUI_API bool Combo(const char* label, int* current_item, const char* const items[], int items_count, int popup_max_height_in_items = -1); + IMGUI_API bool Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int popup_max_height_in_items = -1); // Separate items with \0 within a string, end item-list with \0\0. e.g. "One\0Two\0Three\0" + IMGUI_API bool Combo(const char* label, int* current_item, bool(*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int popup_max_height_in_items = -1); + + // Widgets: Drag Sliders + // - CTRL+Click on any drag box to turn them into an input box. Manually input values aren't clamped by default and can go off-bounds. Use ImGuiSliderFlags_AlwaysClamp to always clamp. + // - For all the Float2/Float3/Float4/Int2/Int3/Int4 versions of every function, note that a 'float v[X]' function argument is the same as 'float* v', + // the array syntax is just a way to document the number of elements that are expected to be accessible. You can pass address of your first element out of a contiguous set, e.g. &myvector.x + // - Adjust format string to decorate the value with a prefix, a suffix, or adapt the editing and display precision e.g. "%.3f" -> 1.234; "%5.2f secs" -> 01.23 secs; "Biscuit: %.0f" -> Biscuit: 1; etc. + // - Format string may also be set to NULL or use the default format ("%f" or "%d"). + // - Speed are per-pixel of mouse movement (v_speed=0.2f: mouse needs to move by 5 pixels to increase value by 1). For gamepad/keyboard navigation, minimum speed is Max(v_speed, minimum_step_at_given_precision). + // - Use v_min < v_max to clamp edits to given limits. Note that CTRL+Click manual input can override those limits if ImGuiSliderFlags_AlwaysClamp is not used. + // - Use v_max = FLT_MAX / INT_MAX etc to avoid clamping to a maximum, same with v_min = -FLT_MAX / INT_MIN to avoid clamping to a minimum. + // - We use the same sets of flags for DragXXX() and SliderXXX() functions as the features are the same and it makes it easier to swap them. + // - Legacy: Pre-1.78 there are DragXXX() function signatures that take a final `float power=1.0f' argument instead of the `ImGuiSliderFlags flags=0' argument. + // If you get a warning converting a float to ImGuiSliderFlags, read https://github.com/ocornut/imgui/issues/3361 + IMGUI_API bool DragFloat(const char* label, float* v, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* format = "%.3f", ImGuiSliderFlags flags = 0); // If v_min >= v_max we have no bound + IMGUI_API bool DragFloat2(const char* label, float v[2], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* format = "%.3f", ImGuiSliderFlags flags = 0); + IMGUI_API bool DragFloat3(const char* label, float v[3], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* format = "%.3f", ImGuiSliderFlags flags = 0); + IMGUI_API bool DragFloat4(const char* label, float v[4], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* format = "%.3f", ImGuiSliderFlags flags = 0); + IMGUI_API bool DragFloatRange2(const char* label, float* v_current_min, float* v_current_max, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* format = "%.3f", const char* format_max = NULL, ImGuiSliderFlags flags = 0); + IMGUI_API bool DragInt(const char* label, int* v, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = "%d", ImGuiSliderFlags flags = 0); // If v_min >= v_max we have no bound + IMGUI_API bool DragInt2(const char* label, int v[2], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = "%d", ImGuiSliderFlags flags = 0); + IMGUI_API bool DragInt3(const char* label, int v[3], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = "%d", ImGuiSliderFlags flags = 0); + IMGUI_API bool DragInt4(const char* label, int v[4], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = "%d", ImGuiSliderFlags flags = 0); + IMGUI_API bool DragIntRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = "%d", const char* format_max = NULL, ImGuiSliderFlags flags = 0); + IMGUI_API bool DragScalar(const char* label, ImGuiDataType data_type, void* p_data, float v_speed = 1.0f, const void* p_min = NULL, const void* p_max = NULL, const char* format = NULL, ImGuiSliderFlags flags = 0); + IMGUI_API bool DragScalarN(const char* label, ImGuiDataType data_type, void* p_data, int components, float v_speed = 1.0f, const void* p_min = NULL, const void* p_max = NULL, const char* format = NULL, ImGuiSliderFlags flags = 0); + + // Widgets: Regular Sliders + // - CTRL+Click on any slider to turn them into an input box. Manually input values aren't clamped by default and can go off-bounds. Use ImGuiSliderFlags_AlwaysClamp to always clamp. + // - Adjust format string to decorate the value with a prefix, a suffix, or adapt the editing and display precision e.g. "%.3f" -> 1.234; "%5.2f secs" -> 01.23 secs; "Biscuit: %.0f" -> Biscuit: 1; etc. + // - Format string may also be set to NULL or use the default format ("%f" or "%d"). + // - Legacy: Pre-1.78 there are SliderXXX() function signatures that take a final `float power=1.0f' argument instead of the `ImGuiSliderFlags flags=0' argument. + // If you get a warning converting a float to ImGuiSliderFlags, read https://github.com/ocornut/imgui/issues/3361 + IMGUI_API bool SliderFloat(const char* label, float* v, float v_min, float v_max, const char* format = "%.3f", ImGuiSliderFlags flags = 0); // adjust format to decorate the value with a prefix or a suffix for in-slider labels or unit display. + IMGUI_API bool SliderFloat2(const char* label, float v[2], float v_min, float v_max, const char* format = "%.3f", ImGuiSliderFlags flags = 0); + IMGUI_API bool SliderFloat3(const char* label, float v[3], float v_min, float v_max, const char* format = "%.3f", ImGuiSliderFlags flags = 0); + IMGUI_API bool SliderFloat4(const char* label, float v[4], float v_min, float v_max, const char* format = "%.3f", ImGuiSliderFlags flags = 0); + IMGUI_API bool SliderAngle(const char* label, float* v_rad, float v_degrees_min = -360.0f, float v_degrees_max = +360.0f, const char* format = "%.0f deg", ImGuiSliderFlags flags = 0); + IMGUI_API bool SliderInt(const char* label, int* v, int v_min, int v_max, const char* format = "%d", ImGuiSliderFlags flags = 0); + IMGUI_API bool SliderInt2(const char* label, int v[2], int v_min, int v_max, const char* format = "%d", ImGuiSliderFlags flags = 0); + IMGUI_API bool SliderInt3(const char* label, int v[3], int v_min, int v_max, const char* format = "%d", ImGuiSliderFlags flags = 0); + IMGUI_API bool SliderInt4(const char* label, int v[4], int v_min, int v_max, const char* format = "%d", ImGuiSliderFlags flags = 0); + IMGUI_API bool SliderScalar(const char* label, ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max, const char* format = NULL, ImGuiSliderFlags flags = 0); + IMGUI_API bool SliderScalarN(const char* label, ImGuiDataType data_type, void* p_data, int components, const void* p_min, const void* p_max, const char* format = NULL, ImGuiSliderFlags flags = 0); + IMGUI_API bool VSliderFloat(const char* label, const ImVec2& size, float* v, float v_min, float v_max, const char* format = "%.3f", ImGuiSliderFlags flags = 0); + IMGUI_API bool VSliderInt(const char* label, const ImVec2& size, int* v, int v_min, int v_max, const char* format = "%d", ImGuiSliderFlags flags = 0); + IMGUI_API bool VSliderScalar(const char* label, const ImVec2& size, ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max, const char* format = NULL, ImGuiSliderFlags flags = 0); + + // Widgets: Input with Keyboard + // - If you want to use InputText() with std::string or any custom dynamic string type, see misc/cpp/imgui_stdlib.h and comments in imgui_demo.cpp. + // - Most of the ImGuiInputTextFlags flags are only useful for InputText() and not for InputFloatX, InputIntX, InputDouble etc. + IMGUI_API bool InputText(const char* label, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL); + IMGUI_API bool InputTextMultiline(const char* label, char* buf, size_t buf_size, const ImVec2& size = ImVec2(0, 0), ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL); + IMGUI_API bool InputTextWithHint(const char* label, const char* hint, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL); + IMGUI_API bool InputFloat(const char* label, float* v, float step = 0.0f, float step_fast = 0.0f, const char* format = "%.3f", ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputFloat2(const char* label, float v[2], const char* format = "%.3f", ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputFloat3(const char* label, float v[3], const char* format = "%.3f", ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputFloat4(const char* label, float v[4], const char* format = "%.3f", ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputInt(const char* label, int* v, int step = 1, int step_fast = 100, ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputInt2(const char* label, int v[2], ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputInt3(const char* label, int v[3], ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputInt4(const char* label, int v[4], ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputDouble(const char* label, double* v, double step = 0.0, double step_fast = 0.0, const char* format = "%.6f", ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputScalar(const char* label, ImGuiDataType data_type, void* p_data, const void* p_step = NULL, const void* p_step_fast = NULL, const char* format = NULL, ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputScalarN(const char* label, ImGuiDataType data_type, void* p_data, int components, const void* p_step = NULL, const void* p_step_fast = NULL, const char* format = NULL, ImGuiInputTextFlags flags = 0); + + // Widgets: Color Editor/Picker (tip: the ColorEdit* functions have a little color square that can be left-clicked to open a picker, and right-clicked to open an option menu.) + // - Note that in C++ a 'float v[X]' function argument is the _same_ as 'float* v', the array syntax is just a way to document the number of elements that are expected to be accessible. + // - You can pass the address of a first float element out of a contiguous structure, e.g. &myvector.x + IMGUI_API bool ColorEdit3(const char* label, float col[3], ImGuiColorEditFlags flags = 0); + IMGUI_API bool ColorEdit4(const char* label, float col[4], ImGuiColorEditFlags flags = 0); + IMGUI_API bool ColorPicker3(const char* label, float col[3], ImGuiColorEditFlags flags = 0); + IMGUI_API bool ColorPicker4(const char* label, float col[4], ImGuiColorEditFlags flags = 0, const float* ref_col = NULL); + IMGUI_API bool ColorButton(const char* desc_id, const ImVec4& col, ImGuiColorEditFlags flags = 0, const ImVec2& size = ImVec2(0, 0)); // display a color square/button, hover for details, return true when pressed. + IMGUI_API void SetColorEditOptions(ImGuiColorEditFlags flags); // initialize current options (generally on application startup) if you want to select a default format, picker type, etc. User will be able to change many settings, unless you pass the _NoOptions flag to your calls. + + // Widgets: Trees + // - TreeNode functions return true when the node is open, in which case you need to also call TreePop() when you are finished displaying the tree node contents. + IMGUI_API bool TreeNode(const char* label); + IMGUI_API bool TreeNode(const char* str_id, const char* fmt, ...) IM_FMTARGS(2); // helper variation to easily decorelate the id from the displayed string. Read the FAQ about why and how to use ID. to align arbitrary text at the same level as a TreeNode() you can use Bullet(). + IMGUI_API bool TreeNode(const void* ptr_id, const char* fmt, ...) IM_FMTARGS(2); // " + IMGUI_API bool TreeNodeV(const char* str_id, const char* fmt, va_list args) IM_FMTLIST(2); + IMGUI_API bool TreeNodeV(const void* ptr_id, const char* fmt, va_list args) IM_FMTLIST(2); + IMGUI_API bool TreeNodeEx(const char* label, ImGuiTreeNodeFlags flags = 0); + IMGUI_API bool TreeNodeEx(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) IM_FMTARGS(3); + IMGUI_API bool TreeNodeEx(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) IM_FMTARGS(3); + IMGUI_API bool TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) IM_FMTLIST(3); + IMGUI_API bool TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) IM_FMTLIST(3); + IMGUI_API void TreePush(const char* str_id); // ~ Indent()+PushId(). Already called by TreeNode() when returning true, but you can call TreePush/TreePop yourself if desired. + IMGUI_API void TreePush(const void* ptr_id); // " + IMGUI_API void TreePop(); // ~ Unindent()+PopId() + IMGUI_API float GetTreeNodeToLabelSpacing(); // horizontal distance preceding label when using TreeNode*() or Bullet() == (g.FontSize + style.FramePadding.x*2) for a regular unframed TreeNode + IMGUI_API bool CollapsingHeader(const char* label, ImGuiTreeNodeFlags flags = 0); // if returning 'true' the header is open. doesn't indent nor push on ID stack. user doesn't have to call TreePop(). + IMGUI_API bool CollapsingHeader(const char* label, bool* p_visible, ImGuiTreeNodeFlags flags = 0); // when 'p_visible != NULL': if '*p_visible==true' display an additional small close button on upper right of the header which will set the bool to false when clicked, if '*p_visible==false' don't display the header. + IMGUI_API void SetNextItemOpen(bool is_open, ImGuiCond cond = 0); // set next TreeNode/CollapsingHeader open state. + + // Widgets: Selectables + // - A selectable highlights when hovered, and can display another color when selected. + // - Neighbors selectable extend their highlight bounds in order to leave no gap between them. This is so a series of selected Selectable appear contiguous. + IMGUI_API bool Selectable(const char* label, bool selected = false, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0, 0)); // "bool selected" carry the selection state (read-only). Selectable() is clicked is returns true so you can modify your selection state. size.x==0.0: use remaining width, size.x>0.0: specify width. size.y==0.0: use label height, size.y>0.0: specify height + IMGUI_API bool Selectable(const char* label, bool* p_selected, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0, 0)); // "bool* p_selected" point to the selection state (read-write), as a convenient helper. + + // Widgets: List Boxes + // - This is essentially a thin wrapper to using BeginChild/EndChild with some stylistic changes. + // - The BeginListBox()/EndListBox() api allows you to manage your contents and selection state however you want it, by creating e.g. Selectable() or any items. + // - The simplified/old ListBox() api are helpers over BeginListBox()/EndListBox() which are kept available for convenience purpose. This is analoguous to how Combos are created. + // - Choose frame width: size.x > 0.0f: custom / size.x < 0.0f or -FLT_MIN: right-align / size.x = 0.0f (default): use current ItemWidth + // - Choose frame height: size.y > 0.0f: custom / size.y < 0.0f or -FLT_MIN: bottom-align / size.y = 0.0f (default): arbitrary default height which can fit ~7 items + IMGUI_API bool BeginListBox(const char* label, const ImVec2& size = ImVec2(0, 0)); // open a framed scrolling region + IMGUI_API void EndListBox(); // only call EndListBox() if BeginListBox() returned true! + IMGUI_API bool ListBox(const char* label, int* current_item, const char* const items[], int items_count, int height_in_items = -1); + IMGUI_API bool ListBox(const char* label, int* current_item, bool (*items_getter)(void* data, int idx, const char** out_text), void* data, int items_count, int height_in_items = -1); + + // Widgets: Data Plotting + // - Consider using ImPlot (https://github.com/epezent/implot) which is much better! + IMGUI_API void PlotLines(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0, 0), int stride = sizeof(float)); + IMGUI_API void PlotLines(const char* label, float(*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0, 0)); + IMGUI_API void PlotHistogram(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0, 0), int stride = sizeof(float)); + IMGUI_API void PlotHistogram(const char* label, float(*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0, 0)); + + // Widgets: Value() Helpers. + // - Those are merely shortcut to calling Text() with a format string. Output single value in "name: value" format (tip: freely declare more in your code to handle your types. you can add functions to the ImGui namespace) + IMGUI_API void Value(const char* prefix, bool b); + IMGUI_API void Value(const char* prefix, int v); + IMGUI_API void Value(const char* prefix, unsigned int v); + IMGUI_API void Value(const char* prefix, float v, const char* float_format = NULL); + + // Widgets: Menus + // - Use BeginMenuBar() on a window ImGuiWindowFlags_MenuBar to append to its menu bar. + // - Use BeginMainMenuBar() to create a menu bar at the top of the screen and append to it. + // - Use BeginMenu() to create a menu. You can call BeginMenu() multiple time with the same identifier to append more items to it. + // - Not that MenuItem() keyboardshortcuts are displayed as a convenience but _not processed_ by Dear ImGui at the moment. + IMGUI_API bool BeginMenuBar(); // append to menu-bar of current window (requires ImGuiWindowFlags_MenuBar flag set on parent window). + IMGUI_API void EndMenuBar(); // only call EndMenuBar() if BeginMenuBar() returns true! + IMGUI_API bool BeginMainMenuBar(); // create and append to a full screen menu-bar. + IMGUI_API void EndMainMenuBar(); // only call EndMainMenuBar() if BeginMainMenuBar() returns true! + IMGUI_API bool BeginMenu(const char* label, bool enabled = true); // create a sub-menu entry. only call EndMenu() if this returns true! + IMGUI_API void EndMenu(); // only call EndMenu() if BeginMenu() returns true! + IMGUI_API bool MenuItem(const char* label, const char* shortcut = NULL, bool selected = false, bool enabled = true); // return true when activated. + IMGUI_API bool MenuItem(const char* label, const char* shortcut, bool* p_selected, bool enabled = true); // return true when activated + toggle (*p_selected) if p_selected != NULL + + // Tooltips + // - Tooltips are windows following the mouse. They do not take focus away. + // - A tooltip window can contain items of any types. SetTooltip() is a shortcut for the 'if (BeginTooltip()) { Text(...); EndTooltip(); }' idiom. + IMGUI_API bool BeginTooltip(); // begin/append a tooltip window. + IMGUI_API void EndTooltip(); // only call EndTooltip() if BeginTooltip()/BeginItemTooltip() returns true! + IMGUI_API void SetTooltip(const char* fmt, ...) IM_FMTARGS(1); // set a text-only tooltip. Often used after a ImGui::IsItemHovered() check. Override any previous call to SetTooltip(). + IMGUI_API void SetTooltipV(const char* fmt, va_list args) IM_FMTLIST(1); + + // Tooltips: helpers for showing a tooltip when hovering an item + // - BeginItemTooltip() is a shortcut for the 'if (IsItemHovered(ImGuiHoveredFlags_Tooltip) && BeginTooltip())' idiom. + // - SetItemTooltip() is a shortcut for the 'if (IsItemHovered(ImGuiHoveredFlags_Tooltip)) { SetTooltip(...); }' idiom. + // - Where 'ImGuiHoveredFlags_Tooltip' itself is a shortcut to use 'style.HoverFlagsForTooltipMouse' or 'style.HoverFlagsForTooltipNav' depending on active input type. For mouse it defaults to 'ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayShort'. + IMGUI_API bool BeginItemTooltip(); // begin/append a tooltip window if preceding item was hovered. + IMGUI_API void SetItemTooltip(const char* fmt, ...) IM_FMTARGS(1); // set a text-only tooltip if preceeding item was hovered. override any previous call to SetTooltip(). + IMGUI_API void SetItemTooltipV(const char* fmt, va_list args) IM_FMTLIST(1); + + // Popups, Modals + // - They block normal mouse hovering detection (and therefore most mouse interactions) behind them. + // - If not modal: they can be closed by clicking anywhere outside them, or by pressing ESCAPE. + // - Their visibility state (~bool) is held internally instead of being held by the programmer as we are used to with regular Begin*() calls. + // - The 3 properties above are related: we need to retain popup visibility state in the library because popups may be closed as any time. + // - You can bypass the hovering restriction by using ImGuiHoveredFlags_AllowWhenBlockedByPopup when calling IsItemHovered() or IsWindowHovered(). + // - IMPORTANT: Popup identifiers are relative to the current ID stack, so OpenPopup and BeginPopup generally needs to be at the same level of the stack. + // This is sometimes leading to confusing mistakes. May rework this in the future. + + // Popups: begin/end functions + // - BeginPopup(): query popup state, if open start appending into the window. Call EndPopup() afterwards. ImGuiWindowFlags are forwarded to the window. + // - BeginPopupModal(): block every interaction behind the window, cannot be closed by user, add a dimming background, has a title bar. + IMGUI_API bool BeginPopup(const char* str_id, ImGuiWindowFlags flags = 0); // return true if the popup is open, and you can start outputting to it. + IMGUI_API bool BeginPopupModal(const char* name, bool* p_open = NULL, ImGuiWindowFlags flags = 0); // return true if the modal is open, and you can start outputting to it. + IMGUI_API void EndPopup(); // only call EndPopup() if BeginPopupXXX() returns true! + + // Popups: open/close functions + // - OpenPopup(): set popup state to open. ImGuiPopupFlags are available for opening options. + // - If not modal: they can be closed by clicking anywhere outside them, or by pressing ESCAPE. + // - CloseCurrentPopup(): use inside the BeginPopup()/EndPopup() scope to close manually. + // - CloseCurrentPopup() is called by default by Selectable()/MenuItem() when activated (FIXME: need some options). + // - Use ImGuiPopupFlags_NoOpenOverExistingPopup to avoid opening a popup if there's already one at the same level. This is equivalent to e.g. testing for !IsAnyPopupOpen() prior to OpenPopup(). + // - Use IsWindowAppearing() after BeginPopup() to tell if a window just opened. + // - IMPORTANT: Notice that for OpenPopupOnItemClick() we exceptionally default flags to 1 (== ImGuiPopupFlags_MouseButtonRight) for backward compatibility with older API taking 'int mouse_button = 1' parameter + IMGUI_API void OpenPopup(const char* str_id, ImGuiPopupFlags popup_flags = 0); // call to mark popup as open (don't call every frame!). + IMGUI_API void OpenPopup(ImGuiID id, ImGuiPopupFlags popup_flags = 0); // id overload to facilitate calling from nested stacks + IMGUI_API void OpenPopupOnItemClick(const char* str_id = NULL, ImGuiPopupFlags popup_flags = 1); // helper to open popup when clicked on last item. Default to ImGuiPopupFlags_MouseButtonRight == 1. (note: actually triggers on the mouse _released_ event to be consistent with popup behaviors) + IMGUI_API void CloseCurrentPopup(); // manually close the popup we have begin-ed into. + + // Popups: open+begin combined functions helpers + // - Helpers to do OpenPopup+BeginPopup where the Open action is triggered by e.g. hovering an item and right-clicking. + // - They are convenient to easily create context menus, hence the name. + // - IMPORTANT: Notice that BeginPopupContextXXX takes ImGuiPopupFlags just like OpenPopup() and unlike BeginPopup(). For full consistency, we may add ImGuiWindowFlags to the BeginPopupContextXXX functions in the future. + // - IMPORTANT: Notice that we exceptionally default their flags to 1 (== ImGuiPopupFlags_MouseButtonRight) for backward compatibility with older API taking 'int mouse_button = 1' parameter, so if you add other flags remember to re-add the ImGuiPopupFlags_MouseButtonRight. + IMGUI_API bool BeginPopupContextItem(const char* str_id = NULL, ImGuiPopupFlags popup_flags = 1); // open+begin popup when clicked on last item. Use str_id==NULL to associate the popup to previous item. If you want to use that on a non-interactive item such as Text() you need to pass in an explicit ID here. read comments in .cpp! + IMGUI_API bool BeginPopupContextWindow(const char* str_id = NULL, ImGuiPopupFlags popup_flags = 1);// open+begin popup when clicked on current window. + IMGUI_API bool BeginPopupContextVoid(const char* str_id = NULL, ImGuiPopupFlags popup_flags = 1); // open+begin popup when clicked in void (where there are no windows). + + // Popups: query functions + // - IsPopupOpen(): return true if the popup is open at the current BeginPopup() level of the popup stack. + // - IsPopupOpen() with ImGuiPopupFlags_AnyPopupId: return true if any popup is open at the current BeginPopup() level of the popup stack. + // - IsPopupOpen() with ImGuiPopupFlags_AnyPopupId + ImGuiPopupFlags_AnyPopupLevel: return true if any popup is open. + IMGUI_API bool IsPopupOpen(const char* str_id, ImGuiPopupFlags flags = 0); // return true if the popup is open. + + // Tables + // - Full-featured replacement for old Columns API. + // - See Demo->Tables for demo code. See top of imgui_tables.cpp for general commentary. + // - See ImGuiTableFlags_ and ImGuiTableColumnFlags_ enums for a description of available flags. + // The typical call flow is: + // - 1. Call BeginTable(), early out if returning false. + // - 2. Optionally call TableSetupColumn() to submit column name/flags/defaults. + // - 3. Optionally call TableSetupScrollFreeze() to request scroll freezing of columns/rows. + // - 4. Optionally call TableHeadersRow() to submit a header row. Names are pulled from TableSetupColumn() data. + // - 5. Populate contents: + // - In most situations you can use TableNextRow() + TableSetColumnIndex(N) to start appending into a column. + // - If you are using tables as a sort of grid, where every column is holding the same type of contents, + // you may prefer using TableNextColumn() instead of TableNextRow() + TableSetColumnIndex(). + // TableNextColumn() will automatically wrap-around into the next row if needed. + // - IMPORTANT: Comparatively to the old Columns() API, we need to call TableNextColumn() for the first column! + // - Summary of possible call flow: + // -------------------------------------------------------------------------------------------------------- + // TableNextRow() -> TableSetColumnIndex(0) -> Text("Hello 0") -> TableSetColumnIndex(1) -> Text("Hello 1") // OK + // TableNextRow() -> TableNextColumn() -> Text("Hello 0") -> TableNextColumn() -> Text("Hello 1") // OK + // TableNextColumn() -> Text("Hello 0") -> TableNextColumn() -> Text("Hello 1") // OK: TableNextColumn() automatically gets to next row! + // TableNextRow() -> Text("Hello 0") // Not OK! Missing TableSetColumnIndex() or TableNextColumn()! Text will not appear! + // -------------------------------------------------------------------------------------------------------- + // - 5. Call EndTable() + IMGUI_API bool BeginTable(const char* str_id, int column, ImGuiTableFlags flags = 0, const ImVec2& outer_size = ImVec2(0.0f, 0.0f), float inner_width = 0.0f); + IMGUI_API void EndTable(); // only call EndTable() if BeginTable() returns true! + IMGUI_API void TableNextRow(ImGuiTableRowFlags row_flags = 0, float min_row_height = 0.0f); // append into the first cell of a new row. + IMGUI_API bool TableNextColumn(); // append into the next column (or first column of next row if currently in last column). Return true when column is visible. + IMGUI_API bool TableSetColumnIndex(int column_n); // append into the specified column. Return true when column is visible. + + // Tables: Headers & Columns declaration + // - Use TableSetupColumn() to specify label, resizing policy, default width/weight, id, various other flags etc. + // - Use TableHeadersRow() to create a header row and automatically submit a TableHeader() for each column. + // Headers are required to perform: reordering, sorting, and opening the context menu. + // The context menu can also be made available in columns body using ImGuiTableFlags_ContextMenuInBody. + // - You may manually submit headers using TableNextRow() + TableHeader() calls, but this is only useful in + // some advanced use cases (e.g. adding custom widgets in header row). + // - Use TableSetupScrollFreeze() to lock columns/rows so they stay visible when scrolled. + IMGUI_API void TableSetupColumn(const char* label, ImGuiTableColumnFlags flags = 0, float init_width_or_weight = 0.0f, ImGuiID user_id = 0); + IMGUI_API void TableSetupScrollFreeze(int cols, int rows); // lock columns/rows so they stay visible when scrolled. + IMGUI_API void TableHeadersRow(); // submit all headers cells based on data provided to TableSetupColumn() + submit context menu + IMGUI_API void TableHeader(const char* label); // submit one header cell manually (rarely used) + + // Tables: Sorting & Miscellaneous functions + // - Sorting: call TableGetSortSpecs() to retrieve latest sort specs for the table. NULL when not sorting. + // When 'sort_specs->SpecsDirty == true' you should sort your data. It will be true when sorting specs have + // changed since last call, or the first time. Make sure to set 'SpecsDirty = false' after sorting, + // else you may wastefully sort your data every frame! + // - Functions args 'int column_n' treat the default value of -1 as the same as passing the current column index. + IMGUI_API ImGuiTableSortSpecs* TableGetSortSpecs(); // get latest sort specs for the table (NULL if not sorting). Lifetime: don't hold on this pointer over multiple frames or past any subsequent call to BeginTable(). + IMGUI_API int TableGetColumnCount(); // return number of columns (value passed to BeginTable) + IMGUI_API int TableGetColumnIndex(); // return current column index. + IMGUI_API int TableGetRowIndex(); // return current row index. + IMGUI_API const char* TableGetColumnName(int column_n = -1); // return "" if column didn't have a name declared by TableSetupColumn(). Pass -1 to use current column. + IMGUI_API ImGuiTableColumnFlags TableGetColumnFlags(int column_n = -1); // return column flags so you can query their Enabled/Visible/Sorted/Hovered status flags. Pass -1 to use current column. + IMGUI_API void TableSetColumnEnabled(int column_n, bool v);// change user accessible enabled/disabled state of a column. Set to false to hide the column. User can use the context menu to change this themselves (right-click in headers, or right-click in columns body with ImGuiTableFlags_ContextMenuInBody) + IMGUI_API void TableSetBgColor(ImGuiTableBgTarget target, ImU32 color, int column_n = -1); // change the color of a cell, row, or column. See ImGuiTableBgTarget_ flags for details. + + // Legacy Columns API (prefer using Tables!) + // - You can also use SameLine(pos_x) to mimic simplified columns. + IMGUI_API void Columns(int count = 1, const char* id = NULL, bool border = true); + IMGUI_API void NextColumn(); // next column, defaults to current row or next row if the current row is finished + IMGUI_API int GetColumnIndex(); // get current column index + IMGUI_API float GetColumnWidth(int column_index = -1); // get column width (in pixels). pass -1 to use current column + IMGUI_API void SetColumnWidth(int column_index, float width); // set column width (in pixels). pass -1 to use current column + IMGUI_API float GetColumnOffset(int column_index = -1); // get position of column line (in pixels, from the left side of the contents region). pass -1 to use current column, otherwise 0..GetColumnsCount() inclusive. column 0 is typically 0.0f + IMGUI_API void SetColumnOffset(int column_index, float offset_x); // set position of column line (in pixels, from the left side of the contents region). pass -1 to use current column + IMGUI_API int GetColumnsCount(); + + // Tab Bars, Tabs + // - Note: Tabs are automatically created by the docking system (when in 'docking' branch). Use this to create tab bars/tabs yourself. + IMGUI_API bool BeginTabBar(const char* str_id, ImGuiTabBarFlags flags = 0); // create and append into a TabBar + IMGUI_API void EndTabBar(); // only call EndTabBar() if BeginTabBar() returns true! + IMGUI_API bool BeginTabItem(const char* label, bool* p_open = NULL, ImGuiTabItemFlags flags = 0); // create a Tab. Returns true if the Tab is selected. + IMGUI_API void EndTabItem(); // only call EndTabItem() if BeginTabItem() returns true! + IMGUI_API bool TabItemButton(const char* label, ImGuiTabItemFlags flags = 0); // create a Tab behaving like a button. return true when clicked. cannot be selected in the tab bar. + IMGUI_API void SetTabItemClosed(const char* tab_or_docked_window_label); // notify TabBar or Docking system of a closed tab/window ahead (useful to reduce visual flicker on reorderable tab bars). For tab-bar: call after BeginTabBar() and before Tab submissions. Otherwise call with a window name. + + // Logging/Capture + // - All text output from the interface can be captured into tty/file/clipboard. By default, tree nodes are automatically opened during logging. + IMGUI_API void LogToTTY(int auto_open_depth = -1); // start logging to tty (stdout) + IMGUI_API void LogToFile(int auto_open_depth = -1, const char* filename = NULL); // start logging to file + IMGUI_API void LogToClipboard(int auto_open_depth = -1); // start logging to OS clipboard + IMGUI_API void LogFinish(); // stop logging (close file, etc.) + IMGUI_API void LogButtons(); // helper to display buttons for logging to tty/file/clipboard + IMGUI_API void LogText(const char* fmt, ...) IM_FMTARGS(1); // pass text data straight to log (without being displayed) + IMGUI_API void LogTextV(const char* fmt, va_list args) IM_FMTLIST(1); + + // Drag and Drop + // - On source items, call BeginDragDropSource(), if it returns true also call SetDragDropPayload() + EndDragDropSource(). + // - On target candidates, call BeginDragDropTarget(), if it returns true also call AcceptDragDropPayload() + EndDragDropTarget(). + // - If you stop calling BeginDragDropSource() the payload is preserved however it won't have a preview tooltip (we currently display a fallback "..." tooltip, see #1725) + // - An item can be both drag source and drop target. + IMGUI_API bool BeginDragDropSource(ImGuiDragDropFlags flags = 0); // call after submitting an item which may be dragged. when this return true, you can call SetDragDropPayload() + EndDragDropSource() + IMGUI_API bool SetDragDropPayload(const char* type, const void* data, size_t sz, ImGuiCond cond = 0); // type is a user defined string of maximum 32 characters. Strings starting with '_' are reserved for dear imgui internal types. Data is copied and held by imgui. Return true when payload has been accepted. + IMGUI_API void EndDragDropSource(); // only call EndDragDropSource() if BeginDragDropSource() returns true! + IMGUI_API bool BeginDragDropTarget(); // call after submitting an item that may receive a payload. If this returns true, you can call AcceptDragDropPayload() + EndDragDropTarget() + IMGUI_API const ImGuiPayload* AcceptDragDropPayload(const char* type, ImGuiDragDropFlags flags = 0); // accept contents of a given type. If ImGuiDragDropFlags_AcceptBeforeDelivery is set you can peek into the payload before the mouse button is released. + IMGUI_API void EndDragDropTarget(); // only call EndDragDropTarget() if BeginDragDropTarget() returns true! + IMGUI_API const ImGuiPayload* GetDragDropPayload(); // peek directly into the current payload from anywhere. may return NULL. use ImGuiPayload::IsDataType() to test for the payload type. + + // Disabling [BETA API] + // - Disable all user interactions and dim items visuals (applying style.DisabledAlpha over current colors) + // - Those can be nested but it cannot be used to enable an already disabled section (a single BeginDisabled(true) in the stack is enough to keep everything disabled) + // - BeginDisabled(false) essentially does nothing useful but is provided to facilitate use of boolean expressions. If you can avoid calling BeginDisabled(False)/EndDisabled() best to avoid it. + IMGUI_API void BeginDisabled(bool disabled = true); + IMGUI_API void EndDisabled(); + + // Clipping + // - Mouse hovering is affected by ImGui::PushClipRect() calls, unlike direct calls to ImDrawList::PushClipRect() which are render only. + IMGUI_API void PushClipRect(const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersect_with_current_clip_rect); + IMGUI_API void PopClipRect(); + + // Focus, Activation + // - Prefer using "SetItemDefaultFocus()" over "if (IsWindowAppearing()) SetScrollHereY()" when applicable to signify "this is the default item" + IMGUI_API void SetItemDefaultFocus(); // make last item the default focused item of a window. + IMGUI_API void SetKeyboardFocusHere(int offset = 0); // focus keyboard on the next widget. Use positive 'offset' to access sub components of a multiple component widget. Use -1 to access previous widget. + + // Overlapping mode + IMGUI_API void SetNextItemAllowOverlap(); // allow next item to be overlapped by a subsequent item. Useful with invisible buttons, selectable, treenode covering an area where subsequent items may need to be added. Note that both Selectable() and TreeNode() have dedicated flags doing this. + + // Item/Widgets Utilities and Query Functions + // - Most of the functions are referring to the previous Item that has been submitted. + // - See Demo Window under "Widgets->Querying Status" for an interactive visualization of most of those functions. + IMGUI_API bool IsItemHovered(ImGuiHoveredFlags flags = 0); // is the last item hovered? (and usable, aka not blocked by a popup, etc.). See ImGuiHoveredFlags for more options. + IMGUI_API bool IsItemActive(); // is the last item active? (e.g. button being held, text field being edited. This will continuously return true while holding mouse button on an item. Items that don't interact will always return false) + IMGUI_API bool IsItemFocused(); // is the last item focused for keyboard/gamepad navigation? + IMGUI_API bool IsItemClicked(ImGuiMouseButton mouse_button = 0); // is the last item hovered and mouse clicked on? (**) == IsMouseClicked(mouse_button) && IsItemHovered()Important. (**) this is NOT equivalent to the behavior of e.g. Button(). Read comments in function definition. + IMGUI_API bool IsItemVisible(); // is the last item visible? (items may be out of sight because of clipping/scrolling) + IMGUI_API bool IsItemEdited(); // did the last item modify its underlying value this frame? or was pressed? This is generally the same as the "bool" return value of many widgets. + IMGUI_API bool IsItemActivated(); // was the last item just made active (item was previously inactive). + IMGUI_API bool IsItemDeactivated(); // was the last item just made inactive (item was previously active). Useful for Undo/Redo patterns with widgets that require continuous editing. + IMGUI_API bool IsItemDeactivatedAfterEdit(); // was the last item just made inactive and made a value change when it was active? (e.g. Slider/Drag moved). Useful for Undo/Redo patterns with widgets that require continuous editing. Note that you may get false positives (some widgets such as Combo()/ListBox()/Selectable() will return true even when clicking an already selected item). + IMGUI_API bool IsItemToggledOpen(); // was the last item open state toggled? set by TreeNode(). + IMGUI_API bool IsAnyItemHovered(); // is any item hovered? + IMGUI_API bool IsAnyItemActive(); // is any item active? + IMGUI_API bool IsAnyItemFocused(); // is any item focused? + IMGUI_API ImGuiID GetItemID(); // get ID of last item (~~ often same ImGui::GetID(label) beforehand) + IMGUI_API ImVec2 GetItemRectMin(); // get upper-left bounding rectangle of the last item (screen space) + IMGUI_API ImVec2 GetItemRectMax(); // get lower-right bounding rectangle of the last item (screen space) + IMGUI_API ImVec2 GetItemRectSize(); // get size of last item + + // Viewports + // - Currently represents the Platform Window created by the application which is hosting our Dear ImGui windows. + // - In 'docking' branch with multi-viewport enabled, we extend this concept to have multiple active viewports. + // - In the future we will extend this concept further to also represent Platform Monitor and support a "no main platform window" operation mode. + IMGUI_API ImGuiViewport* GetMainViewport(); // return primary/default viewport. This can never be NULL. + + // Background/Foreground Draw Lists + IMGUI_API ImDrawList* GetBackgroundDrawList(); // this draw list will be the first rendered one. Useful to quickly draw shapes/text behind dear imgui contents. + IMGUI_API ImDrawList* GetForegroundDrawList(); // this draw list will be the last rendered one. Useful to quickly draw shapes/text over dear imgui contents. + + // Miscellaneous Utilities + IMGUI_API bool IsRectVisible(const ImVec2& size); // test if rectangle (of given size, starting from cursor position) is visible / not clipped. + IMGUI_API bool IsRectVisible(const ImVec2& rect_min, const ImVec2& rect_max); // test if rectangle (in screen space) is visible / not clipped. to perform coarse clipping on user's side. + IMGUI_API double GetTime(); // get global imgui time. incremented by io.DeltaTime every frame. + IMGUI_API int GetFrameCount(); // get global imgui frame count. incremented by 1 every frame. + IMGUI_API ImDrawListSharedData* GetDrawListSharedData(); // you may use this when creating your own ImDrawList instances. + IMGUI_API const char* GetStyleColorName(ImGuiCol idx); // get a string corresponding to the enum value (for display, saving, etc.). + IMGUI_API void SetStateStorage(ImGuiStorage* storage); // replace current window storage with our own (if you want to manipulate it yourself, typically clear subsection of it) + IMGUI_API ImGuiStorage* GetStateStorage(); + IMGUI_API bool BeginChildFrame(ImGuiID id, const ImVec2& size, ImGuiWindowFlags flags = 0); // helper to create a child window / scrolling region that looks like a normal widget frame + IMGUI_API void EndChildFrame(); // always call EndChildFrame() regardless of BeginChildFrame() return values (which indicates a collapsed/clipped window) + + // Text Utilities + IMGUI_API ImVec2 CalcTextSize(const char* text, const char* text_end = NULL, bool hide_text_after_double_hash = false, float wrap_width = -1.0f); + + // Color Utilities + IMGUI_API ImVec4 ColorConvertU32ToFloat4(ImU32 in); + IMGUI_API ImU32 ColorConvertFloat4ToU32(const ImVec4& in); + IMGUI_API void ColorConvertRGBtoHSV(float r, float g, float b, float& out_h, float& out_s, float& out_v); + IMGUI_API void ColorConvertHSVtoRGB(float h, float s, float v, float& out_r, float& out_g, float& out_b); + + // Inputs Utilities: Keyboard/Mouse/Gamepad + // - the ImGuiKey enum contains all possible keyboard, mouse and gamepad inputs (e.g. ImGuiKey_A, ImGuiKey_MouseLeft, ImGuiKey_GamepadDpadUp...). + // - before v1.87, we used ImGuiKey to carry native/user indices as defined by each backends. About use of those legacy ImGuiKey values: + // - without IMGUI_DISABLE_OBSOLETE_KEYIO (legacy support): you can still use your legacy native/user indices (< 512) according to how your backend/engine stored them in io.KeysDown[], but need to cast them to ImGuiKey. + // - with IMGUI_DISABLE_OBSOLETE_KEYIO (this is the way forward): any use of ImGuiKey will assert with key < 512. GetKeyIndex() is pass-through and therefore deprecated (gone if IMGUI_DISABLE_OBSOLETE_KEYIO is defined). + IMGUI_API bool IsKeyDown(ImGuiKey key); // is key being held. + IMGUI_API bool IsKeyPressed(ImGuiKey key, bool repeat = true); // was key pressed (went from !Down to Down)? if repeat=true, uses io.KeyRepeatDelay / KeyRepeatRate + IMGUI_API bool IsKeyReleased(ImGuiKey key); // was key released (went from Down to !Down)? + IMGUI_API int GetKeyPressedAmount(ImGuiKey key, float repeat_delay, float rate); // uses provided repeat rate/delay. return a count, most often 0 or 1 but might be >1 if RepeatRate is small enough that DeltaTime > RepeatRate + IMGUI_API const char* GetKeyName(ImGuiKey key); // [DEBUG] returns English name of the key. Those names a provided for debugging purpose and are not meant to be saved persistently not compared. + IMGUI_API void SetNextFrameWantCaptureKeyboard(bool want_capture_keyboard); // Override io.WantCaptureKeyboard flag next frame (said flag is left for your application to handle, typically when true it instructs your app to ignore inputs). e.g. force capture keyboard when your widget is being hovered. This is equivalent to setting "io.WantCaptureKeyboard = want_capture_keyboard"; after the next NewFrame() call. + + // Inputs Utilities: Mouse specific + // - To refer to a mouse button, you may use named enums in your code e.g. ImGuiMouseButton_Left, ImGuiMouseButton_Right. + // - You can also use regular integer: it is forever guaranteed that 0=Left, 1=Right, 2=Middle. + // - Dragging operations are only reported after mouse has moved a certain distance away from the initial clicking position (see 'lock_threshold' and 'io.MouseDraggingThreshold') + IMGUI_API bool IsMouseDown(ImGuiMouseButton button); // is mouse button held? + IMGUI_API bool IsMouseClicked(ImGuiMouseButton button, bool repeat = false); // did mouse button clicked? (went from !Down to Down). Same as GetMouseClickedCount() == 1. + IMGUI_API bool IsMouseReleased(ImGuiMouseButton button); // did mouse button released? (went from Down to !Down) + IMGUI_API bool IsMouseDoubleClicked(ImGuiMouseButton button); // did mouse button double-clicked? Same as GetMouseClickedCount() == 2. (note that a double-click will also report IsMouseClicked() == true) + IMGUI_API int GetMouseClickedCount(ImGuiMouseButton button); // return the number of successive mouse-clicks at the time where a click happen (otherwise 0). + IMGUI_API bool IsMouseHoveringRect(const ImVec2& r_min, const ImVec2& r_max, bool clip = true);// is mouse hovering given bounding rect (in screen space). clipped by current clipping settings, but disregarding of other consideration of focus/window ordering/popup-block. + IMGUI_API bool IsMousePosValid(const ImVec2* mouse_pos = NULL); // by convention we use (-FLT_MAX,-FLT_MAX) to denote that there is no mouse available + IMGUI_API bool IsAnyMouseDown(); // [WILL OBSOLETE] is any mouse button held? This was designed for backends, but prefer having backend maintain a mask of held mouse buttons, because upcoming input queue system will make this invalid. + IMGUI_API ImVec2 GetMousePos(); // shortcut to ImGui::GetIO().MousePos provided by user, to be consistent with other calls + IMGUI_API ImVec2 GetMousePosOnOpeningCurrentPopup(); // retrieve mouse position at the time of opening popup we have BeginPopup() into (helper to avoid user backing that value themselves) + IMGUI_API bool IsMouseDragging(ImGuiMouseButton button, float lock_threshold = -1.0f); // is mouse dragging? (if lock_threshold < -1.0f, uses io.MouseDraggingThreshold) + IMGUI_API ImVec2 GetMouseDragDelta(ImGuiMouseButton button = 0, float lock_threshold = -1.0f); // return the delta from the initial clicking position while the mouse button is pressed or was just released. This is locked and return 0.0f until the mouse moves past a distance threshold at least once (if lock_threshold < -1.0f, uses io.MouseDraggingThreshold) + IMGUI_API void ResetMouseDragDelta(ImGuiMouseButton button = 0); // + IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired mouse cursor shape. Important: reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you + IMGUI_API void SetMouseCursor(ImGuiMouseCursor cursor_type); // set desired mouse cursor shape + IMGUI_API void SetNextFrameWantCaptureMouse(bool want_capture_mouse); // Override io.WantCaptureMouse flag next frame (said flag is left for your application to handle, typical when true it instucts your app to ignore inputs). This is equivalent to setting "io.WantCaptureMouse = want_capture_mouse;" after the next NewFrame() call. + + // Clipboard Utilities + // - Also see the LogToClipboard() function to capture GUI into clipboard, or easily output text data to the clipboard. + IMGUI_API const char* GetClipboardText(); + IMGUI_API void SetClipboardText(const char* text); + + // Settings/.Ini Utilities + // - The disk functions are automatically called if io.IniFilename != NULL (default is "imgui.ini"). + // - Set io.IniFilename to NULL to load/save manually. Read io.WantSaveIniSettings description about handling .ini saving manually. + // - Important: default value "imgui.ini" is relative to current working dir! Most apps will want to lock this to an absolute path (e.g. same path as executables). + IMGUI_API void LoadIniSettingsFromDisk(const char* ini_filename); // call after CreateContext() and before the first call to NewFrame(). NewFrame() automatically calls LoadIniSettingsFromDisk(io.IniFilename). + IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source. + IMGUI_API void SaveIniSettingsToDisk(const char* ini_filename); // this is automatically called (if io.IniFilename is not empty) a few seconds after any modification that should be reflected in the .ini file (and also by DestroyContext). + IMGUI_API const char* SaveIniSettingsToMemory(size_t* out_ini_size = NULL); // return a zero-terminated string with the .ini data which you can save by your own mean. call when io.WantSaveIniSettings is set, then save data by your own mean and clear io.WantSaveIniSettings. + + // Debug Utilities + IMGUI_API void DebugTextEncoding(const char* text); + IMGUI_API bool DebugCheckVersionAndDataLayout(const char* version_str, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_drawvert, size_t sz_drawidx); // This is called by IMGUI_CHECKVERSION() macro. + + // Memory Allocators + // - Those functions are not reliant on the current context. + // - DLL users: heaps and globals are not shared across DLL boundaries! You will need to call SetCurrentContext() + SetAllocatorFunctions() + // for each static/DLL boundary you are calling from. Read "Context and Memory Allocators" section of imgui.cpp for more details. + IMGUI_API void SetAllocatorFunctions(ImGuiMemAllocFunc alloc_func, ImGuiMemFreeFunc free_func, void* user_data = NULL); + IMGUI_API void GetAllocatorFunctions(ImGuiMemAllocFunc* p_alloc_func, ImGuiMemFreeFunc* p_free_func, void** p_user_data); + IMGUI_API void* MemAlloc(size_t size); + IMGUI_API void MemFree(void* ptr); + +} // namespace ImGui + +//----------------------------------------------------------------------------- +// [SECTION] Flags & Enumerations +//----------------------------------------------------------------------------- + +// Flags for ImGui::Begin() +// (Those are per-window flags. There are shared flags in ImGuiIO: io.ConfigWindowsResizeFromEdges and io.ConfigWindowsMoveFromTitleBarOnly) +enum ImGuiWindowFlags_ +{ + ImGuiWindowFlags_None = 0, + ImGuiWindowFlags_NoTitleBar = 1 << 0, // Disable title-bar + ImGuiWindowFlags_NoResize = 1 << 1, // Disable user resizing with the lower-right grip + ImGuiWindowFlags_NoMove = 1 << 2, // Disable user moving the window + ImGuiWindowFlags_NoScrollbar = 1 << 3, // Disable scrollbars (window can still scroll with mouse or programmatically) + ImGuiWindowFlags_NoScrollWithMouse = 1 << 4, // Disable user vertically scrolling with mouse wheel. On child window, mouse wheel will be forwarded to the parent unless NoScrollbar is also set. + ImGuiWindowFlags_NoCollapse = 1 << 5, // Disable user collapsing window by double-clicking on it. Also referred to as Window Menu Button (e.g. within a docking node). + ImGuiWindowFlags_AlwaysAutoResize = 1 << 6, // Resize every window to its content every frame + ImGuiWindowFlags_NoBackground = 1 << 7, // Disable drawing background color (WindowBg, etc.) and outside border. Similar as using SetNextWindowBgAlpha(0.0f). + ImGuiWindowFlags_NoSavedSettings = 1 << 8, // Never load/save settings in .ini file + ImGuiWindowFlags_NoMouseInputs = 1 << 9, // Disable catching mouse, hovering test with pass through. + ImGuiWindowFlags_MenuBar = 1 << 10, // Has a menu-bar + ImGuiWindowFlags_HorizontalScrollbar = 1 << 11, // Allow horizontal scrollbar to appear (off by default). You may use SetNextWindowContentSize(ImVec2(width,0.0f)); prior to calling Begin() to specify width. Read code in imgui_demo in the "Horizontal Scrolling" section. + ImGuiWindowFlags_NoFocusOnAppearing = 1 << 12, // Disable taking focus when transitioning from hidden to visible state + ImGuiWindowFlags_NoBringToFrontOnFocus = 1 << 13, // Disable bringing window to front when taking focus (e.g. clicking on it or programmatically giving it focus) + ImGuiWindowFlags_AlwaysVerticalScrollbar= 1 << 14, // Always show vertical scrollbar (even if ContentSize.y < Size.y) + ImGuiWindowFlags_AlwaysHorizontalScrollbar=1<< 15, // Always show horizontal scrollbar (even if ContentSize.x < Size.x) + ImGuiWindowFlags_AlwaysUseWindowPadding = 1 << 16, // Ensure child windows without border uses style.WindowPadding (ignored by default for non-bordered child windows, because more convenient) + ImGuiWindowFlags_NoNavInputs = 1 << 18, // No gamepad/keyboard navigation within the window + ImGuiWindowFlags_NoNavFocus = 1 << 19, // No focusing toward this window with gamepad/keyboard navigation (e.g. skipped by CTRL+TAB) + ImGuiWindowFlags_UnsavedDocument = 1 << 20, // Display a dot next to the title. When used in a tab/docking context, tab is selected when clicking the X + closure is not assumed (will wait for user to stop submitting the tab). Otherwise closure is assumed when pressing the X, so if you keep submitting the tab may reappear at end of tab bar. + ImGuiWindowFlags_NoNav = ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus, + ImGuiWindowFlags_NoDecoration = ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse, + ImGuiWindowFlags_NoInputs = ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus, + + // [Internal] + ImGuiWindowFlags_NavFlattened = 1 << 23, // [BETA] On child window: allow gamepad/keyboard navigation to cross over parent border to this child or between sibling child windows. + ImGuiWindowFlags_ChildWindow = 1 << 24, // Don't use! For internal use by BeginChild() + ImGuiWindowFlags_Tooltip = 1 << 25, // Don't use! For internal use by BeginTooltip() + ImGuiWindowFlags_Popup = 1 << 26, // Don't use! For internal use by BeginPopup() + ImGuiWindowFlags_Modal = 1 << 27, // Don't use! For internal use by BeginPopupModal() + ImGuiWindowFlags_ChildMenu = 1 << 28, // Don't use! For internal use by BeginMenu() + + // Obsolete names +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + ImGuiWindowFlags_AlwaysUseWindowPadding = 1 << 30, // Obsoleted in 1.90: Use ImGuiChildFlags_AlwaysUseWindowPadding in BeginChild() call. +#endif +}; + + +// Flags for ImGui::BeginChild() +// (Legacy: bot 0 must always correspond to ImGuiChildFlags_Border to be backward compatible with old API using 'bool border = false'. +// About using AutoResizeX/AutoResizeY flags: +// - May be combined with SetNextWindowSizeConstraints() to set a min/max size for each axis (see "Demo->Child->Auto-resize with Constraints"). +// - Size measurement for a given axis is only performed when the child window is within visible boundaries, or is just appearing. +// - This allows BeginChild() to return false when not within boundaries (e.g. when scrolling), which is more optimal. BUT it won't update its auto-size while clipped. +// While not perfect, it is a better default behavior as the always-on performance gain is more valuable than the occasional "resizing after becoming visible again" glitch. +// - You may also use ImGuiChildFlags_AlwaysAutoResize to force an update even when child window is not in view. +// HOWEVER PLEASE UNDERSTAND THAT DOING SO WILL PREVENT BeginChild() FROM EVER RETURNING FALSE, disabling benefits of coarse clipping. +enum ImGuiChildFlags_ +{ + ImGuiChildFlags_None = 0, + ImGuiChildFlags_Border = 1 << 0, // Show an outer border and enable WindowPadding. (Important: this is always == 1 == true for legacy reason) + ImGuiChildFlags_AlwaysUseWindowPadding = 1 << 1, // Pad with style.WindowPadding even if no border are drawn (no padding by default for non-bordered child windows because it makes more sense) + ImGuiChildFlags_ResizeX = 1 << 2, // Allow resize from right border (layout direction). Enable .ini saving (unless ImGuiWindowFlags_NoSavedSettings passed to window flags) + ImGuiChildFlags_ResizeY = 1 << 3, // Allow resize from bottom border (layout direction). " + ImGuiChildFlags_AutoResizeX = 1 << 4, // Enable auto-resizing width. Read "IMPORTANT: Size measurement" details above. + ImGuiChildFlags_AutoResizeY = 1 << 5, // Enable auto-resizing height. Read "IMPORTANT: Size measurement" details above. + ImGuiChildFlags_AlwaysAutoResize = 1 << 6, // Combined with AutoResizeX/AutoResizeY. Always measure size even when child is hidden, always return true, always disable clipping optimization! NOT RECOMMENDED. + ImGuiChildFlags_FrameStyle = 1 << 7, // Style the child window like a framed item: use FrameBg, FrameRounding, FrameBorderSize, FramePadding instead of ChildBg, ChildRounding, ChildBorderSize, WindowPadding. +}; +// Flags for ImGui::InputText() +// (Those are per-item flags. There are shared flags in ImGuiIO: io.ConfigInputTextCursorBlink and io.ConfigInputTextEnterKeepActive) +enum ImGuiInputTextFlags_ +{ + ImGuiInputTextFlags_None = 0, + ImGuiInputTextFlags_CharsDecimal = 1 << 0, // Allow 0123456789.+-*/ + ImGuiInputTextFlags_CharsHexadecimal = 1 << 1, // Allow 0123456789ABCDEFabcdef + ImGuiInputTextFlags_CharsUppercase = 1 << 2, // Turn a..z into A..Z + ImGuiInputTextFlags_CharsNoBlank = 1 << 3, // Filter out spaces, tabs + ImGuiInputTextFlags_AutoSelectAll = 1 << 4, // Select entire text when first taking mouse focus + ImGuiInputTextFlags_EnterReturnsTrue = 1 << 5, // Return 'true' when Enter is pressed (as opposed to every time the value was modified). Consider looking at the IsItemDeactivatedAfterEdit() function. + ImGuiInputTextFlags_CallbackCompletion = 1 << 6, // Callback on pressing TAB (for completion handling) + ImGuiInputTextFlags_CallbackHistory = 1 << 7, // Callback on pressing Up/Down arrows (for history handling) + ImGuiInputTextFlags_CallbackAlways = 1 << 8, // Callback on each iteration. User code may query cursor position, modify text buffer. + ImGuiInputTextFlags_CallbackCharFilter = 1 << 9, // Callback on character inputs to replace or discard them. Modify 'EventChar' to replace or discard, or return 1 in callback to discard. + ImGuiInputTextFlags_AllowTabInput = 1 << 10, // Pressing TAB input a '\t' character into the text field + ImGuiInputTextFlags_CtrlEnterForNewLine = 1 << 11, // In multi-line mode, unfocus with Enter, add new line with Ctrl+Enter (default is opposite: unfocus with Ctrl+Enter, add line with Enter). + ImGuiInputTextFlags_NoHorizontalScroll = 1 << 12, // Disable following the cursor horizontally + ImGuiInputTextFlags_AlwaysOverwrite = 1 << 13, // Overwrite mode + ImGuiInputTextFlags_ReadOnly = 1 << 14, // Read-only mode + ImGuiInputTextFlags_Password = 1 << 15, // Password mode, display all characters as '*' + ImGuiInputTextFlags_NoUndoRedo = 1 << 16, // Disable undo/redo. Note that input text owns the text data while active, if you want to provide your own undo/redo stack you need e.g. to call ClearActiveID(). + ImGuiInputTextFlags_CharsScientific = 1 << 17, // Allow 0123456789.+-*/eE (Scientific notation input) + ImGuiInputTextFlags_CallbackResize = 1 << 18, // Callback on buffer capacity changes request (beyond 'buf_size' parameter value), allowing the string to grow. Notify when the string wants to be resized (for string types which hold a cache of their Size). You will be provided a new BufSize in the callback and NEED to honor it. (see misc/cpp/imgui_stdlib.h for an example of using this) + ImGuiInputTextFlags_CallbackEdit = 1 << 19, // Callback on any edit (note that InputText() already returns true on edit, the callback is useful mainly to manipulate the underlying buffer while focus is active) + ImGuiInputTextFlags_EscapeClearsAll = 1 << 20, // Escape key clears content if not empty, and deactivate otherwise (contrast to default behavior of Escape to revert) + + // Obsolete names + //ImGuiInputTextFlags_AlwaysInsertMode = ImGuiInputTextFlags_AlwaysOverwrite // [renamed in 1.82] name was not matching behavior +}; + +// Flags for ImGui::TreeNodeEx(), ImGui::CollapsingHeader*() +enum ImGuiTreeNodeFlags_ +{ + ImGuiTreeNodeFlags_None = 0, + ImGuiTreeNodeFlags_Selected = 1 << 0, // Draw as selected + ImGuiTreeNodeFlags_Framed = 1 << 1, // Draw frame with background (e.g. for CollapsingHeader) + ImGuiTreeNodeFlags_AllowOverlap = 1 << 2, // Hit testing to allow subsequent widgets to overlap this one + ImGuiTreeNodeFlags_NoTreePushOnOpen = 1 << 3, // Don't do a TreePush() when open (e.g. for CollapsingHeader) = no extra indent nor pushing on ID stack + ImGuiTreeNodeFlags_NoAutoOpenOnLog = 1 << 4, // Don't automatically and temporarily open node when Logging is active (by default logging will automatically open tree nodes) + ImGuiTreeNodeFlags_DefaultOpen = 1 << 5, // Default node to be open + ImGuiTreeNodeFlags_OpenOnDoubleClick = 1 << 6, // Need double-click to open node + ImGuiTreeNodeFlags_OpenOnArrow = 1 << 7, // Only open when clicking on the arrow part. If ImGuiTreeNodeFlags_OpenOnDoubleClick is also set, single-click arrow or double-click all box to open. + ImGuiTreeNodeFlags_Leaf = 1 << 8, // No collapsing, no arrow (use as a convenience for leaf nodes). + ImGuiTreeNodeFlags_Bullet = 1 << 9, // Display a bullet instead of arrow. IMPORTANT: node can still be marked open/close if you don't set the _Leaf flag! + ImGuiTreeNodeFlags_FramePadding = 1 << 10, // Use FramePadding (even for an unframed text node) to vertically align text baseline to regular widget height. Equivalent to calling AlignTextToFramePadding(). + ImGuiTreeNodeFlags_SpanAvailWidth = 1 << 11, // Extend hit box to the right-most edge, even if not framed. This is not the default in order to allow adding other items on the same line. In the future we may refactor the hit system to be front-to-back, allowing natural overlaps and then this can become the default. + ImGuiTreeNodeFlags_SpanFullWidth = 1 << 12, // Extend hit box to the left-most and right-most edges (bypass the indented area). + ImGuiTreeNodeFlags_NavLeftJumpsBackHere = 1 << 13, // (WIP) Nav: left direction may move to this TreeNode() from any of its child (items submitted between TreeNode and TreePop) + //ImGuiTreeNodeFlags_NoScrollOnOpen = 1 << 14, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible + ImGuiTreeNodeFlags_CollapsingHeader = ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog, + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + ImGuiTreeNodeFlags_AllowItemOverlap = ImGuiTreeNodeFlags_AllowOverlap, // Renamed in 1.89.7 +#endif +}; + +// Flags for OpenPopup*(), BeginPopupContext*(), IsPopupOpen() functions. +// - To be backward compatible with older API which took an 'int mouse_button = 1' argument, we need to treat +// small flags values as a mouse button index, so we encode the mouse button in the first few bits of the flags. +// It is therefore guaranteed to be legal to pass a mouse button index in ImGuiPopupFlags. +// - For the same reason, we exceptionally default the ImGuiPopupFlags argument of BeginPopupContextXXX functions to 1 instead of 0. +// IMPORTANT: because the default parameter is 1 (==ImGuiPopupFlags_MouseButtonRight), if you rely on the default parameter +// and want to use another flag, you need to pass in the ImGuiPopupFlags_MouseButtonRight flag explicitly. +// - Multiple buttons currently cannot be combined/or-ed in those functions (we could allow it later). +enum ImGuiPopupFlags_ +{ + ImGuiPopupFlags_None = 0, + ImGuiPopupFlags_MouseButtonLeft = 0, // For BeginPopupContext*(): open on Left Mouse release. Guaranteed to always be == 0 (same as ImGuiMouseButton_Left) + ImGuiPopupFlags_MouseButtonRight = 1, // For BeginPopupContext*(): open on Right Mouse release. Guaranteed to always be == 1 (same as ImGuiMouseButton_Right) + ImGuiPopupFlags_MouseButtonMiddle = 2, // For BeginPopupContext*(): open on Middle Mouse release. Guaranteed to always be == 2 (same as ImGuiMouseButton_Middle) + ImGuiPopupFlags_MouseButtonMask_ = 0x1F, + ImGuiPopupFlags_MouseButtonDefault_ = 1, + ImGuiPopupFlags_NoOpenOverExistingPopup = 1 << 5, // For OpenPopup*(), BeginPopupContext*(): don't open if there's already a popup at the same level of the popup stack + ImGuiPopupFlags_NoOpenOverItems = 1 << 6, // For BeginPopupContextWindow(): don't return true when hovering items, only when hovering empty space + ImGuiPopupFlags_AnyPopupId = 1 << 7, // For IsPopupOpen(): ignore the ImGuiID parameter and test for any popup. + ImGuiPopupFlags_AnyPopupLevel = 1 << 8, // For IsPopupOpen(): search/test at any level of the popup stack (default test in the current level) + ImGuiPopupFlags_AnyPopup = ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel, +}; + +// Flags for ImGui::Selectable() +enum ImGuiSelectableFlags_ +{ + ImGuiSelectableFlags_None = 0, + ImGuiSelectableFlags_DontClosePopups = 1 << 0, // Clicking this doesn't close parent popup window + ImGuiSelectableFlags_SpanAllColumns = 1 << 1, // Selectable frame can span all columns (text will still fit in current column) + ImGuiSelectableFlags_AllowDoubleClick = 1 << 2, // Generate press events on double clicks too + ImGuiSelectableFlags_Disabled = 1 << 3, // Cannot be selected, display grayed out text + ImGuiSelectableFlags_AllowOverlap = 1 << 4, // (WIP) Hit testing to allow subsequent widgets to overlap this one + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + ImGuiSelectableFlags_AllowItemOverlap = ImGuiSelectableFlags_AllowOverlap, // Renamed in 1.89.7 +#endif +}; + +// Flags for ImGui::BeginCombo() +enum ImGuiComboFlags_ +{ + ImGuiComboFlags_None = 0, + ImGuiComboFlags_PopupAlignLeft = 1 << 0, // Align the popup toward the left by default + ImGuiComboFlags_HeightSmall = 1 << 1, // Max ~4 items visible. Tip: If you want your combo popup to be a specific size you can use SetNextWindowSizeConstraints() prior to calling BeginCombo() + ImGuiComboFlags_HeightRegular = 1 << 2, // Max ~8 items visible (default) + ImGuiComboFlags_HeightLarge = 1 << 3, // Max ~20 items visible + ImGuiComboFlags_HeightLargest = 1 << 4, // As many fitting items as possible + ImGuiComboFlags_NoArrowButton = 1 << 5, // Display on the preview box without the square arrow button + ImGuiComboFlags_NoPreview = 1 << 6, // Display only a square arrow button + ImGuiComboFlags_HeightMask_ = ImGuiComboFlags_HeightSmall | ImGuiComboFlags_HeightRegular | ImGuiComboFlags_HeightLarge | ImGuiComboFlags_HeightLargest, +}; + +// Flags for ImGui::BeginTabBar() +enum ImGuiTabBarFlags_ +{ + ImGuiTabBarFlags_None = 0, + ImGuiTabBarFlags_Reorderable = 1 << 0, // Allow manually dragging tabs to re-order them + New tabs are appended at the end of list + ImGuiTabBarFlags_AutoSelectNewTabs = 1 << 1, // Automatically select new tabs when they appear + ImGuiTabBarFlags_TabListPopupButton = 1 << 2, // Disable buttons to open the tab list popup + ImGuiTabBarFlags_NoCloseWithMiddleMouseButton = 1 << 3, // Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You can still repro this behavior on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false. + ImGuiTabBarFlags_NoTabListScrollingButtons = 1 << 4, // Disable scrolling buttons (apply when fitting policy is ImGuiTabBarFlags_FittingPolicyScroll) + ImGuiTabBarFlags_NoTooltip = 1 << 5, // Disable tooltips when hovering a tab + ImGuiTabBarFlags_FittingPolicyResizeDown = 1 << 6, // Resize tabs when they don't fit + ImGuiTabBarFlags_FittingPolicyScroll = 1 << 7, // Add scroll buttons when tabs don't fit + ImGuiTabBarFlags_FittingPolicyMask_ = ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll, + ImGuiTabBarFlags_FittingPolicyDefault_ = ImGuiTabBarFlags_FittingPolicyResizeDown, +}; + +// Flags for ImGui::BeginTabItem() +enum ImGuiTabItemFlags_ +{ + ImGuiTabItemFlags_None = 0, + ImGuiTabItemFlags_UnsavedDocument = 1 << 0, // Display a dot next to the title + tab is selected when clicking the X + closure is not assumed (will wait for user to stop submitting the tab). Otherwise closure is assumed when pressing the X, so if you keep submitting the tab may reappear at end of tab bar. + ImGuiTabItemFlags_SetSelected = 1 << 1, // Trigger flag to programmatically make the tab selected when calling BeginTabItem() + ImGuiTabItemFlags_NoCloseWithMiddleMouseButton = 1 << 2, // Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You can still repro this behavior on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false. + ImGuiTabItemFlags_NoPushId = 1 << 3, // Don't call PushID(tab->ID)/PopID() on BeginTabItem()/EndTabItem() + ImGuiTabItemFlags_NoTooltip = 1 << 4, // Disable tooltip for the given tab + ImGuiTabItemFlags_NoReorder = 1 << 5, // Disable reordering this tab or having another tab cross over this tab + ImGuiTabItemFlags_Leading = 1 << 6, // Enforce the tab position to the left of the tab bar (after the tab list popup button) + ImGuiTabItemFlags_Trailing = 1 << 7, // Enforce the tab position to the right of the tab bar (before the scrolling buttons) +}; + +// Flags for ImGui::BeginTable() +// - Important! Sizing policies have complex and subtle side effects, much more so than you would expect. +// Read comments/demos carefully + experiment with live demos to get acquainted with them. +// - The DEFAULT sizing policies are: +// - Default to ImGuiTableFlags_SizingFixedFit if ScrollX is on, or if host window has ImGuiWindowFlags_AlwaysAutoResize. +// - Default to ImGuiTableFlags_SizingStretchSame if ScrollX is off. +// - When ScrollX is off: +// - Table defaults to ImGuiTableFlags_SizingStretchSame -> all Columns defaults to ImGuiTableColumnFlags_WidthStretch with same weight. +// - Columns sizing policy allowed: Stretch (default), Fixed/Auto. +// - Fixed Columns (if any) will generally obtain their requested width (unless the table cannot fit them all). +// - Stretch Columns will share the remaining width according to their respective weight. +// - Mixed Fixed/Stretch columns is possible but has various side-effects on resizing behaviors. +// The typical use of mixing sizing policies is: any number of LEADING Fixed columns, followed by one or two TRAILING Stretch columns. +// (this is because the visible order of columns have subtle but necessary effects on how they react to manual resizing). +// - When ScrollX is on: +// - Table defaults to ImGuiTableFlags_SizingFixedFit -> all Columns defaults to ImGuiTableColumnFlags_WidthFixed +// - Columns sizing policy allowed: Fixed/Auto mostly. +// - Fixed Columns can be enlarged as needed. Table will show a horizontal scrollbar if needed. +// - When using auto-resizing (non-resizable) fixed columns, querying the content width to use item right-alignment e.g. SetNextItemWidth(-FLT_MIN) doesn't make sense, would create a feedback loop. +// - Using Stretch columns OFTEN DOES NOT MAKE SENSE if ScrollX is on, UNLESS you have specified a value for 'inner_width' in BeginTable(). +// If you specify a value for 'inner_width' then effectively the scrolling space is known and Stretch or mixed Fixed/Stretch columns become meaningful again. +// - Read on documentation at the top of imgui_tables.cpp for details. +enum ImGuiTableFlags_ +{ + // Features + ImGuiTableFlags_None = 0, + ImGuiTableFlags_Resizable = 1 << 0, // Enable resizing columns. + ImGuiTableFlags_Reorderable = 1 << 1, // Enable reordering columns in header row (need calling TableSetupColumn() + TableHeadersRow() to display headers) + ImGuiTableFlags_Hideable = 1 << 2, // Enable hiding/disabling columns in context menu. + ImGuiTableFlags_Sortable = 1 << 3, // Enable sorting. Call TableGetSortSpecs() to obtain sort specs. Also see ImGuiTableFlags_SortMulti and ImGuiTableFlags_SortTristate. + ImGuiTableFlags_NoSavedSettings = 1 << 4, // Disable persisting columns order, width and sort settings in the .ini file. + ImGuiTableFlags_ContextMenuInBody = 1 << 5, // Right-click on columns body/contents will display table context menu. By default it is available in TableHeadersRow(). + // Decorations + ImGuiTableFlags_RowBg = 1 << 6, // Set each RowBg color with ImGuiCol_TableRowBg or ImGuiCol_TableRowBgAlt (equivalent of calling TableSetBgColor with ImGuiTableBgFlags_RowBg0 on each row manually) + ImGuiTableFlags_BordersInnerH = 1 << 7, // Draw horizontal borders between rows. + ImGuiTableFlags_BordersOuterH = 1 << 8, // Draw horizontal borders at the top and bottom. + ImGuiTableFlags_BordersInnerV = 1 << 9, // Draw vertical borders between columns. + ImGuiTableFlags_BordersOuterV = 1 << 10, // Draw vertical borders on the left and right sides. + ImGuiTableFlags_BordersH = ImGuiTableFlags_BordersInnerH | ImGuiTableFlags_BordersOuterH, // Draw horizontal borders. + ImGuiTableFlags_BordersV = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersOuterV, // Draw vertical borders. + ImGuiTableFlags_BordersInner = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersInnerH, // Draw inner borders. + ImGuiTableFlags_BordersOuter = ImGuiTableFlags_BordersOuterV | ImGuiTableFlags_BordersOuterH, // Draw outer borders. + ImGuiTableFlags_Borders = ImGuiTableFlags_BordersInner | ImGuiTableFlags_BordersOuter, // Draw all borders. + ImGuiTableFlags_NoBordersInBody = 1 << 11, // [ALPHA] Disable vertical borders in columns Body (borders will always appear in Headers). -> May move to style + ImGuiTableFlags_NoBordersInBodyUntilResize = 1 << 12, // [ALPHA] Disable vertical borders in columns Body until hovered for resize (borders will always appear in Headers). -> May move to style + // Sizing Policy (read above for defaults) + ImGuiTableFlags_SizingFixedFit = 1 << 13, // Columns default to _WidthFixed or _WidthAuto (if resizable or not resizable), matching contents width. + ImGuiTableFlags_SizingFixedSame = 2 << 13, // Columns default to _WidthFixed or _WidthAuto (if resizable or not resizable), matching the maximum contents width of all columns. Implicitly enable ImGuiTableFlags_NoKeepColumnsVisible. + ImGuiTableFlags_SizingStretchProp = 3 << 13, // Columns default to _WidthStretch with default weights proportional to each columns contents widths. + ImGuiTableFlags_SizingStretchSame = 4 << 13, // Columns default to _WidthStretch with default weights all equal, unless overridden by TableSetupColumn(). + // Sizing Extra Options + ImGuiTableFlags_NoHostExtendX = 1 << 16, // Make outer width auto-fit to columns, overriding outer_size.x value. Only available when ScrollX/ScrollY are disabled and Stretch columns are not used. + ImGuiTableFlags_NoHostExtendY = 1 << 17, // Make outer height stop exactly at outer_size.y (prevent auto-extending table past the limit). Only available when ScrollX/ScrollY are disabled. Data below the limit will be clipped and not visible. + ImGuiTableFlags_NoKeepColumnsVisible = 1 << 18, // Disable keeping column always minimally visible when ScrollX is off and table gets too small. Not recommended if columns are resizable. + ImGuiTableFlags_PreciseWidths = 1 << 19, // Disable distributing remainder width to stretched columns (width allocation on a 100-wide table with 3 columns: Without this flag: 33,33,34. With this flag: 33,33,33). With larger number of columns, resizing will appear to be less smooth. + // Clipping + ImGuiTableFlags_NoClip = 1 << 20, // Disable clipping rectangle for every individual columns (reduce draw command count, items will be able to overflow into other columns). Generally incompatible with TableSetupScrollFreeze(). + // Padding + ImGuiTableFlags_PadOuterX = 1 << 21, // Default if BordersOuterV is on. Enable outermost padding. Generally desirable if you have headers. + ImGuiTableFlags_NoPadOuterX = 1 << 22, // Default if BordersOuterV is off. Disable outermost padding. + ImGuiTableFlags_NoPadInnerX = 1 << 23, // Disable inner padding between columns (double inner padding if BordersOuterV is on, single inner padding if BordersOuterV is off). + // Scrolling + ImGuiTableFlags_ScrollX = 1 << 24, // Enable horizontal scrolling. Require 'outer_size' parameter of BeginTable() to specify the container size. Changes default sizing policy. Because this creates a child window, ScrollY is currently generally recommended when using ScrollX. + ImGuiTableFlags_ScrollY = 1 << 25, // Enable vertical scrolling. Require 'outer_size' parameter of BeginTable() to specify the container size. + // Sorting + ImGuiTableFlags_SortMulti = 1 << 26, // Hold shift when clicking headers to sort on multiple column. TableGetSortSpecs() may return specs where (SpecsCount > 1). + ImGuiTableFlags_SortTristate = 1 << 27, // Allow no sorting, disable default sorting. TableGetSortSpecs() may return specs where (SpecsCount == 0). + + // [Internal] Combinations and masks + ImGuiTableFlags_SizingMask_ = ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame, +}; + +// Flags for ImGui::TableSetupColumn() +enum ImGuiTableColumnFlags_ +{ + // Input configuration flags + ImGuiTableColumnFlags_None = 0, + ImGuiTableColumnFlags_Disabled = 1 << 0, // Overriding/master disable flag: hide column, won't show in context menu (unlike calling TableSetColumnEnabled() which manipulates the user accessible state) + ImGuiTableColumnFlags_DefaultHide = 1 << 1, // Default as a hidden/disabled column. + ImGuiTableColumnFlags_DefaultSort = 1 << 2, // Default as a sorting column. + ImGuiTableColumnFlags_WidthStretch = 1 << 3, // Column will stretch. Preferable with horizontal scrolling disabled (default if table sizing policy is _SizingStretchSame or _SizingStretchProp). + ImGuiTableColumnFlags_WidthFixed = 1 << 4, // Column will not stretch. Preferable with horizontal scrolling enabled (default if table sizing policy is _SizingFixedFit and table is resizable). + ImGuiTableColumnFlags_NoResize = 1 << 5, // Disable manual resizing. + ImGuiTableColumnFlags_NoReorder = 1 << 6, // Disable manual reordering this column, this will also prevent other columns from crossing over this column. + ImGuiTableColumnFlags_NoHide = 1 << 7, // Disable ability to hide/disable this column. + ImGuiTableColumnFlags_NoClip = 1 << 8, // Disable clipping for this column (all NoClip columns will render in a same draw command). + ImGuiTableColumnFlags_NoSort = 1 << 9, // Disable ability to sort on this field (even if ImGuiTableFlags_Sortable is set on the table). + ImGuiTableColumnFlags_NoSortAscending = 1 << 10, // Disable ability to sort in the ascending direction. + ImGuiTableColumnFlags_NoSortDescending = 1 << 11, // Disable ability to sort in the descending direction. + ImGuiTableColumnFlags_NoHeaderLabel = 1 << 12, // TableHeadersRow() will not submit label for this column. Convenient for some small columns. Name will still appear in context menu. + ImGuiTableColumnFlags_NoHeaderWidth = 1 << 13, // Disable header text width contribution to automatic column width. + ImGuiTableColumnFlags_PreferSortAscending = 1 << 14, // Make the initial sort direction Ascending when first sorting on this column (default). + ImGuiTableColumnFlags_PreferSortDescending = 1 << 15, // Make the initial sort direction Descending when first sorting on this column. + ImGuiTableColumnFlags_IndentEnable = 1 << 16, // Use current Indent value when entering cell (default for column 0). + ImGuiTableColumnFlags_IndentDisable = 1 << 17, // Ignore current Indent value when entering cell (default for columns > 0). Indentation changes _within_ the cell will still be honored. + + // Output status flags, read-only via TableGetColumnFlags() + ImGuiTableColumnFlags_IsEnabled = 1 << 24, // Status: is enabled == not hidden by user/api (referred to as "Hide" in _DefaultHide and _NoHide) flags. + ImGuiTableColumnFlags_IsVisible = 1 << 25, // Status: is visible == is enabled AND not clipped by scrolling. + ImGuiTableColumnFlags_IsSorted = 1 << 26, // Status: is currently part of the sort specs + ImGuiTableColumnFlags_IsHovered = 1 << 27, // Status: is hovered by mouse + + // [Internal] Combinations and masks + ImGuiTableColumnFlags_WidthMask_ = ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed, + ImGuiTableColumnFlags_IndentMask_ = ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable, + ImGuiTableColumnFlags_StatusMask_ = ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered, + ImGuiTableColumnFlags_NoDirectResize_ = 1 << 30, // [Internal] Disable user resizing this column directly (it may however we resized indirectly from its left edge) +}; + +// Flags for ImGui::TableNextRow() +enum ImGuiTableRowFlags_ +{ + ImGuiTableRowFlags_None = 0, + ImGuiTableRowFlags_Headers = 1 << 0, // Identify header row (set default background color + width of its contents accounted differently for auto column width) +}; + +// Enum for ImGui::TableSetBgColor() +// Background colors are rendering in 3 layers: +// - Layer 0: draw with RowBg0 color if set, otherwise draw with ColumnBg0 if set. +// - Layer 1: draw with RowBg1 color if set, otherwise draw with ColumnBg1 if set. +// - Layer 2: draw with CellBg color if set. +// The purpose of the two row/columns layers is to let you decide if a background color change should override or blend with the existing color. +// When using ImGuiTableFlags_RowBg on the table, each row has the RowBg0 color automatically set for odd/even rows. +// If you set the color of RowBg0 target, your color will override the existing RowBg0 color. +// If you set the color of RowBg1 or ColumnBg1 target, your color will blend over the RowBg0 color. +enum ImGuiTableBgTarget_ +{ + ImGuiTableBgTarget_None = 0, + ImGuiTableBgTarget_RowBg0 = 1, // Set row background color 0 (generally used for background, automatically set when ImGuiTableFlags_RowBg is used) + ImGuiTableBgTarget_RowBg1 = 2, // Set row background color 1 (generally used for selection marking) + ImGuiTableBgTarget_CellBg = 3, // Set cell background color (top-most color) +}; + +// Flags for ImGui::IsWindowFocused() +enum ImGuiFocusedFlags_ +{ + ImGuiFocusedFlags_None = 0, + ImGuiFocusedFlags_ChildWindows = 1 << 0, // Return true if any children of the window is focused + ImGuiFocusedFlags_RootWindow = 1 << 1, // Test from root window (top most parent of the current hierarchy) + ImGuiFocusedFlags_AnyWindow = 1 << 2, // Return true if any window is focused. Important: If you are trying to tell how to dispatch your low-level inputs, do NOT use this. Use 'io.WantCaptureMouse' instead! Please read the FAQ! + ImGuiFocusedFlags_NoPopupHierarchy = 1 << 3, // Do not consider popup hierarchy (do not treat popup emitter as parent of popup) (when used with _ChildWindows or _RootWindow) + //ImGuiFocusedFlags_DockHierarchy = 1 << 4, // Consider docking hierarchy (treat dockspace host as parent of docked window) (when used with _ChildWindows or _RootWindow) + ImGuiFocusedFlags_RootAndChildWindows = ImGuiFocusedFlags_RootWindow | ImGuiFocusedFlags_ChildWindows, +}; + +// Flags for ImGui::IsItemHovered(), ImGui::IsWindowHovered() +// Note: if you are trying to check whether your mouse should be dispatched to Dear ImGui or to your app, you should use 'io.WantCaptureMouse' instead! Please read the FAQ! +// Note: windows with the ImGuiWindowFlags_NoInputs flag are ignored by IsWindowHovered() calls. +enum ImGuiHoveredFlags_ +{ + ImGuiHoveredFlags_None = 0, // Return true if directly over the item/window, not obstructed by another window, not obstructed by an active popup or modal blocking inputs under them. + ImGuiHoveredFlags_ChildWindows = 1 << 0, // IsWindowHovered() only: Return true if any children of the window is hovered + ImGuiHoveredFlags_RootWindow = 1 << 1, // IsWindowHovered() only: Test from root window (top most parent of the current hierarchy) + ImGuiHoveredFlags_AnyWindow = 1 << 2, // IsWindowHovered() only: Return true if any window is hovered + ImGuiHoveredFlags_NoPopupHierarchy = 1 << 3, // IsWindowHovered() only: Do not consider popup hierarchy (do not treat popup emitter as parent of popup) (when used with _ChildWindows or _RootWindow) + //ImGuiHoveredFlags_DockHierarchy = 1 << 4, // IsWindowHovered() only: Consider docking hierarchy (treat dockspace host as parent of docked window) (when used with _ChildWindows or _RootWindow) + ImGuiHoveredFlags_AllowWhenBlockedByPopup = 1 << 5, // Return true even if a popup window is normally blocking access to this item/window + //ImGuiHoveredFlags_AllowWhenBlockedByModal = 1 << 6, // Return true even if a modal popup window is normally blocking access to this item/window. FIXME-TODO: Unavailable yet. + ImGuiHoveredFlags_AllowWhenBlockedByActiveItem = 1 << 7, // Return true even if an active item is blocking access to this item/window. Useful for Drag and Drop patterns. + ImGuiHoveredFlags_AllowWhenOverlappedByItem = 1 << 8, // IsItemHovered() only: Return true even if the item uses AllowOverlap mode and is overlapped by another hoverable item. + ImGuiHoveredFlags_AllowWhenOverlappedByWindow = 1 << 9, // IsItemHovered() only: Return true even if the position is obstructed or overlapped by another window. + ImGuiHoveredFlags_AllowWhenDisabled = 1 << 10, // IsItemHovered() only: Return true even if the item is disabled + ImGuiHoveredFlags_NoNavOverride = 1 << 11, // IsItemHovered() only: Disable using gamepad/keyboard navigation state when active, always query mouse + ImGuiHoveredFlags_AllowWhenOverlapped = ImGuiHoveredFlags_AllowWhenOverlappedByItem | ImGuiHoveredFlags_AllowWhenOverlappedByWindow, + ImGuiHoveredFlags_RectOnly = ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped, + ImGuiHoveredFlags_RootAndChildWindows = ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows, + + // Tooltips mode + // - typically used in IsItemHovered() + SetTooltip() sequence. + // - this is a shortcut to pull flags from 'style.HoverFlagsForTooltipMouse' or 'style.HoverFlagsForTooltipNav' where you can reconfigure desired behavior. + // e.g. 'TooltipHoveredFlagsForMouse' defaults to 'ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayShort'. + // - for frequently actioned or hovered items providing a tooltip, you want may to use ImGuiHoveredFlags_ForTooltip (stationary + delay) so the tooltip doesn't show too often. + // - for items which main purpose is to be hovered, or items with low affordance, or in less consistent apps, prefer no delay or shorter delay. + ImGuiHoveredFlags_ForTooltip = 1 << 12, // Shortcut for standard flags when using IsItemHovered() + SetTooltip() sequence. + + // (Advanced) Mouse Hovering delays. + // - generally you can use ImGuiHoveredFlags_ForTooltip to use application-standardized flags. + // - use those if you need specific overrides. + ImGuiHoveredFlags_Stationary = 1 << 13, // Require mouse to be stationary for style.HoverStationaryDelay (~0.15 sec) _at least one time_. After this, can move on same item/window. Using the stationary test tends to reduces the need for a long delay. + ImGuiHoveredFlags_DelayNone = 1 << 14, // IsItemHovered() only: Return true immediately (default). As this is the default you generally ignore this. + ImGuiHoveredFlags_DelayShort = 1 << 15, // IsItemHovered() only: Return true after style.HoverDelayShort elapsed (~0.15 sec) (shared between items) + requires mouse to be stationary for style.HoverStationaryDelay (once per item). + ImGuiHoveredFlags_DelayNormal = 1 << 16, // IsItemHovered() only: Return true after style.HoverDelayNormal elapsed (~0.40 sec) (shared between items) + requires mouse to be stationary for style.HoverStationaryDelay (once per item). + ImGuiHoveredFlags_NoSharedDelay = 1 << 17, // IsItemHovered() only: Disable shared delay system where moving from one item to the next keeps the previous timer for a short time (standard for tooltips with long delays) +}; + +// Flags for ImGui::BeginDragDropSource(), ImGui::AcceptDragDropPayload() +enum ImGuiDragDropFlags_ +{ + ImGuiDragDropFlags_None = 0, + // BeginDragDropSource() flags + ImGuiDragDropFlags_SourceNoPreviewTooltip = 1 << 0, // Disable preview tooltip. By default, a successful call to BeginDragDropSource opens a tooltip so you can display a preview or description of the source contents. This flag disables this behavior. + ImGuiDragDropFlags_SourceNoDisableHover = 1 << 1, // By default, when dragging we clear data so that IsItemHovered() will return false, to avoid subsequent user code submitting tooltips. This flag disables this behavior so you can still call IsItemHovered() on the source item. + ImGuiDragDropFlags_SourceNoHoldToOpenOthers = 1 << 2, // Disable the behavior that allows to open tree nodes and collapsing header by holding over them while dragging a source item. + ImGuiDragDropFlags_SourceAllowNullID = 1 << 3, // Allow items such as Text(), Image() that have no unique identifier to be used as drag source, by manufacturing a temporary identifier based on their window-relative position. This is extremely unusual within the dear imgui ecosystem and so we made it explicit. + ImGuiDragDropFlags_SourceExtern = 1 << 4, // External source (from outside of dear imgui), won't attempt to read current item/window info. Will always return true. Only one Extern source can be active simultaneously. + ImGuiDragDropFlags_SourceAutoExpirePayload = 1 << 5, // Automatically expire the payload if the source cease to be submitted (otherwise payloads are persisting while being dragged) + // AcceptDragDropPayload() flags + ImGuiDragDropFlags_AcceptBeforeDelivery = 1 << 10, // AcceptDragDropPayload() will returns true even before the mouse button is released. You can then call IsDelivery() to test if the payload needs to be delivered. + ImGuiDragDropFlags_AcceptNoDrawDefaultRect = 1 << 11, // Do not draw the default highlight rectangle when hovering over target. + ImGuiDragDropFlags_AcceptNoPreviewTooltip = 1 << 12, // Request hiding the BeginDragDropSource tooltip from the BeginDragDropTarget site. + ImGuiDragDropFlags_AcceptPeekOnly = ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect, // For peeking ahead and inspecting the payload before delivery. +}; + +// Standard Drag and Drop payload types. You can define you own payload types using short strings. Types starting with '_' are defined by Dear ImGui. +#define IMGUI_PAYLOAD_TYPE_COLOR_3F "_COL3F" // float[3]: Standard type for colors, without alpha. User code may use this type. +#define IMGUI_PAYLOAD_TYPE_COLOR_4F "_COL4F" // float[4]: Standard type for colors. User code may use this type. + +// A primary data type +enum ImGuiDataType_ +{ + ImGuiDataType_S8, // signed char / char (with sensible compilers) + ImGuiDataType_U8, // unsigned char + ImGuiDataType_S16, // short + ImGuiDataType_U16, // unsigned short + ImGuiDataType_S32, // int + ImGuiDataType_U32, // unsigned int + ImGuiDataType_S64, // long long / __int64 + ImGuiDataType_U64, // unsigned long long / unsigned __int64 + ImGuiDataType_Float, // float + ImGuiDataType_Double, // double + ImGuiDataType_COUNT +}; + +// A cardinal direction +enum ImGuiDir_ +{ + ImGuiDir_None = -1, + ImGuiDir_Left = 0, + ImGuiDir_Right = 1, + ImGuiDir_Up = 2, + ImGuiDir_Down = 3, + ImGuiDir_COUNT +}; + +// A sorting direction +enum ImGuiSortDirection_ +{ + ImGuiSortDirection_None = 0, + ImGuiSortDirection_Ascending = 1, // Ascending = 0->9, A->Z etc. + ImGuiSortDirection_Descending = 2 // Descending = 9->0, Z->A etc. +}; + +// A key identifier (ImGuiKey_XXX or ImGuiMod_XXX value): can represent Keyboard, Mouse and Gamepad values. +// All our named keys are >= 512. Keys value 0 to 511 are left unused as legacy native/opaque key values (< 1.87). +// Since >= 1.89 we increased typing (went from int to enum), some legacy code may need a cast to ImGuiKey. +// Read details about the 1.87 and 1.89 transition : https://github.com/ocornut/imgui/issues/4921 +// Note that "Keys" related to physical keys and are not the same concept as input "Characters", the later are submitted via io.AddInputCharacter(). +enum ImGuiKey : int +{ + // Keyboard + ImGuiKey_None = 0, + ImGuiKey_Tab = 512, // == ImGuiKey_NamedKey_BEGIN + ImGuiKey_LeftArrow, + ImGuiKey_RightArrow, + ImGuiKey_UpArrow, + ImGuiKey_DownArrow, + ImGuiKey_PageUp, + ImGuiKey_PageDown, + ImGuiKey_Home, + ImGuiKey_End, + ImGuiKey_Insert, + ImGuiKey_Delete, + ImGuiKey_Backspace, + ImGuiKey_Space, + ImGuiKey_Enter, + ImGuiKey_Escape, + ImGuiKey_LeftCtrl, ImGuiKey_LeftShift, ImGuiKey_LeftAlt, ImGuiKey_LeftSuper, + ImGuiKey_RightCtrl, ImGuiKey_RightShift, ImGuiKey_RightAlt, ImGuiKey_RightSuper, + ImGuiKey_Menu, + ImGuiKey_0, ImGuiKey_1, ImGuiKey_2, ImGuiKey_3, ImGuiKey_4, ImGuiKey_5, ImGuiKey_6, ImGuiKey_7, ImGuiKey_8, ImGuiKey_9, + ImGuiKey_A, ImGuiKey_B, ImGuiKey_C, ImGuiKey_D, ImGuiKey_E, ImGuiKey_F, ImGuiKey_G, ImGuiKey_H, ImGuiKey_I, ImGuiKey_J, + ImGuiKey_K, ImGuiKey_L, ImGuiKey_M, ImGuiKey_N, ImGuiKey_O, ImGuiKey_P, ImGuiKey_Q, ImGuiKey_R, ImGuiKey_S, ImGuiKey_T, + ImGuiKey_U, ImGuiKey_V, ImGuiKey_W, ImGuiKey_X, ImGuiKey_Y, ImGuiKey_Z, + ImGuiKey_F1, ImGuiKey_F2, ImGuiKey_F3, ImGuiKey_F4, ImGuiKey_F5, ImGuiKey_F6, + ImGuiKey_F7, ImGuiKey_F8, ImGuiKey_F9, ImGuiKey_F10, ImGuiKey_F11, ImGuiKey_F12, + ImGuiKey_Apostrophe, // ' + ImGuiKey_Comma, // , + ImGuiKey_Minus, // - + ImGuiKey_Period, // . + ImGuiKey_Slash, // / + ImGuiKey_Semicolon, // ; + ImGuiKey_Equal, // = + ImGuiKey_LeftBracket, // [ + ImGuiKey_Backslash, // \ (this text inhibit multiline comment caused by backslash) + ImGuiKey_RightBracket, // ] + ImGuiKey_GraveAccent, // ` + ImGuiKey_CapsLock, + ImGuiKey_ScrollLock, + ImGuiKey_NumLock, + ImGuiKey_PrintScreen, + ImGuiKey_Pause, + ImGuiKey_Keypad0, ImGuiKey_Keypad1, ImGuiKey_Keypad2, ImGuiKey_Keypad3, ImGuiKey_Keypad4, + ImGuiKey_Keypad5, ImGuiKey_Keypad6, ImGuiKey_Keypad7, ImGuiKey_Keypad8, ImGuiKey_Keypad9, + ImGuiKey_KeypadDecimal, + ImGuiKey_KeypadDivide, + ImGuiKey_KeypadMultiply, + ImGuiKey_KeypadSubtract, + ImGuiKey_KeypadAdd, + ImGuiKey_KeypadEnter, + ImGuiKey_KeypadEqual, + + // Gamepad (some of those are analog values, 0.0f to 1.0f) // NAVIGATION ACTION + // (download controller mapping PNG/PSD at http://dearimgui.com/controls_sheets) + ImGuiKey_GamepadStart, // Menu (Xbox) + (Switch) Start/Options (PS) + ImGuiKey_GamepadBack, // View (Xbox) - (Switch) Share (PS) + ImGuiKey_GamepadFaceLeft, // X (Xbox) Y (Switch) Square (PS) // Tap: Toggle Menu. Hold: Windowing mode (Focus/Move/Resize windows) + ImGuiKey_GamepadFaceRight, // B (Xbox) A (Switch) Circle (PS) // Cancel / Close / Exit + ImGuiKey_GamepadFaceUp, // Y (Xbox) X (Switch) Triangle (PS) // Text Input / On-screen Keyboard + ImGuiKey_GamepadFaceDown, // A (Xbox) B (Switch) Cross (PS) // Activate / Open / Toggle / Tweak + ImGuiKey_GamepadDpadLeft, // D-pad Left // Move / Tweak / Resize Window (in Windowing mode) + ImGuiKey_GamepadDpadRight, // D-pad Right // Move / Tweak / Resize Window (in Windowing mode) + ImGuiKey_GamepadDpadUp, // D-pad Up // Move / Tweak / Resize Window (in Windowing mode) + ImGuiKey_GamepadDpadDown, // D-pad Down // Move / Tweak / Resize Window (in Windowing mode) + ImGuiKey_GamepadL1, // L Bumper (Xbox) L (Switch) L1 (PS) // Tweak Slower / Focus Previous (in Windowing mode) + ImGuiKey_GamepadR1, // R Bumper (Xbox) R (Switch) R1 (PS) // Tweak Faster / Focus Next (in Windowing mode) + ImGuiKey_GamepadL2, // L Trig. (Xbox) ZL (Switch) L2 (PS) [Analog] + ImGuiKey_GamepadR2, // R Trig. (Xbox) ZR (Switch) R2 (PS) [Analog] + ImGuiKey_GamepadL3, // L Stick (Xbox) L3 (Switch) L3 (PS) + ImGuiKey_GamepadR3, // R Stick (Xbox) R3 (Switch) R3 (PS) + ImGuiKey_GamepadLStickLeft, // [Analog] // Move Window (in Windowing mode) + ImGuiKey_GamepadLStickRight, // [Analog] // Move Window (in Windowing mode) + ImGuiKey_GamepadLStickUp, // [Analog] // Move Window (in Windowing mode) + ImGuiKey_GamepadLStickDown, // [Analog] // Move Window (in Windowing mode) + ImGuiKey_GamepadRStickLeft, // [Analog] + ImGuiKey_GamepadRStickRight, // [Analog] + ImGuiKey_GamepadRStickUp, // [Analog] + ImGuiKey_GamepadRStickDown, // [Analog] + + // Aliases: Mouse Buttons (auto-submitted from AddMouseButtonEvent() calls) + // - This is mirroring the data also written to io.MouseDown[], io.MouseWheel, in a format allowing them to be accessed via standard key API. + ImGuiKey_MouseLeft, ImGuiKey_MouseRight, ImGuiKey_MouseMiddle, ImGuiKey_MouseX1, ImGuiKey_MouseX2, ImGuiKey_MouseWheelX, ImGuiKey_MouseWheelY, + + // [Internal] Reserved for mod storage + ImGuiKey_ReservedForModCtrl, ImGuiKey_ReservedForModShift, ImGuiKey_ReservedForModAlt, ImGuiKey_ReservedForModSuper, + ImGuiKey_COUNT, + + // Keyboard Modifiers (explicitly submitted by backend via AddKeyEvent() calls) + // - This is mirroring the data also written to io.KeyCtrl, io.KeyShift, io.KeyAlt, io.KeySuper, in a format allowing + // them to be accessed via standard key API, allowing calls such as IsKeyPressed(), IsKeyReleased(), querying duration etc. + // - Code polling every key (e.g. an interface to detect a key press for input mapping) might want to ignore those + // and prefer using the real keys (e.g. ImGuiKey_LeftCtrl, ImGuiKey_RightCtrl instead of ImGuiMod_Ctrl). + // - In theory the value of keyboard modifiers should be roughly equivalent to a logical or of the equivalent left/right keys. + // In practice: it's complicated; mods are often provided from different sources. Keyboard layout, IME, sticky keys and + // backends tend to interfere and break that equivalence. The safer decision is to relay that ambiguity down to the end-user... + ImGuiMod_None = 0, + ImGuiMod_Ctrl = 1 << 12, // Ctrl + ImGuiMod_Shift = 1 << 13, // Shift + ImGuiMod_Alt = 1 << 14, // Option/Menu + ImGuiMod_Super = 1 << 15, // Cmd/Super/Windows + ImGuiMod_Shortcut = 1 << 11, // Alias for Ctrl (non-macOS) _or_ Super (macOS). + ImGuiMod_Mask_ = 0xF800, // 5-bits + + // [Internal] Prior to 1.87 we required user to fill io.KeysDown[512] using their own native index + the io.KeyMap[] array. + // We are ditching this method but keeping a legacy path for user code doing e.g. IsKeyPressed(MY_NATIVE_KEY_CODE) + // If you need to iterate all keys (for e.g. an input mapper) you may use ImGuiKey_NamedKey_BEGIN..ImGuiKey_NamedKey_END. + ImGuiKey_NamedKey_BEGIN = 512, + ImGuiKey_NamedKey_END = ImGuiKey_COUNT, + ImGuiKey_NamedKey_COUNT = ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN, +#ifdef IMGUI_DISABLE_OBSOLETE_KEYIO + ImGuiKey_KeysData_SIZE = ImGuiKey_NamedKey_COUNT, // Size of KeysData[]: only hold named keys + ImGuiKey_KeysData_OFFSET = ImGuiKey_NamedKey_BEGIN, // Accesses to io.KeysData[] must use (key - ImGuiKey_KeysData_OFFSET) index. +#else + ImGuiKey_KeysData_SIZE = ImGuiKey_COUNT, // Size of KeysData[]: hold legacy 0..512 keycodes + named keys + ImGuiKey_KeysData_OFFSET = 0, // Accesses to io.KeysData[] must use (key - ImGuiKey_KeysData_OFFSET) index. +#endif + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + ImGuiKey_ModCtrl = ImGuiMod_Ctrl, ImGuiKey_ModShift = ImGuiMod_Shift, ImGuiKey_ModAlt = ImGuiMod_Alt, ImGuiKey_ModSuper = ImGuiMod_Super, // Renamed in 1.89 + ImGuiKey_KeyPadEnter = ImGuiKey_KeypadEnter, // Renamed in 1.87 +#endif +}; + +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO +// OBSOLETED in 1.88 (from July 2022): ImGuiNavInput and io.NavInputs[]. +// Official backends between 1.60 and 1.86: will keep working and feed gamepad inputs as long as IMGUI_DISABLE_OBSOLETE_KEYIO is not set. +// Custom backends: feed gamepad inputs via io.AddKeyEvent() and ImGuiKey_GamepadXXX enums. +enum ImGuiNavInput +{ + ImGuiNavInput_Activate, ImGuiNavInput_Cancel, ImGuiNavInput_Input, ImGuiNavInput_Menu, ImGuiNavInput_DpadLeft, ImGuiNavInput_DpadRight, ImGuiNavInput_DpadUp, ImGuiNavInput_DpadDown, + ImGuiNavInput_LStickLeft, ImGuiNavInput_LStickRight, ImGuiNavInput_LStickUp, ImGuiNavInput_LStickDown, ImGuiNavInput_FocusPrev, ImGuiNavInput_FocusNext, ImGuiNavInput_TweakSlow, ImGuiNavInput_TweakFast, + ImGuiNavInput_COUNT, +}; +#endif + +// Configuration flags stored in io.ConfigFlags. Set by user/application. +enum ImGuiConfigFlags_ +{ + ImGuiConfigFlags_None = 0, + ImGuiConfigFlags_NavEnableKeyboard = 1 << 0, // Master keyboard navigation enable flag. Enable full Tabbing + directional arrows + space/enter to activate. + ImGuiConfigFlags_NavEnableGamepad = 1 << 1, // Master gamepad navigation enable flag. Backend also needs to set ImGuiBackendFlags_HasGamepad. + ImGuiConfigFlags_NavEnableSetMousePos = 1 << 2, // Instruct navigation to move the mouse cursor. May be useful on TV/console systems where moving a virtual mouse is awkward. Will update io.MousePos and set io.WantSetMousePos=true. If enabled you MUST honor io.WantSetMousePos requests in your backend, otherwise ImGui will react as if the mouse is jumping around back and forth. + ImGuiConfigFlags_NavNoCaptureKeyboard = 1 << 3, // Instruct navigation to not set the io.WantCaptureKeyboard flag when io.NavActive is set. + ImGuiConfigFlags_NoMouse = 1 << 4, // Instruct imgui to clear mouse position/buttons in NewFrame(). This allows ignoring the mouse information set by the backend. + ImGuiConfigFlags_NoMouseCursorChange = 1 << 5, // Instruct backend to not alter mouse cursor shape and visibility. Use if the backend cursor changes are interfering with yours and you don't want to use SetMouseCursor() to change mouse cursor. You may want to honor requests from imgui by reading GetMouseCursor() yourself instead. + + // User storage (to allow your backend/engine to communicate to code that may be shared between multiple projects. Those flags are NOT used by core Dear ImGui) + ImGuiConfigFlags_IsSRGB = 1 << 20, // Application is SRGB-aware. + ImGuiConfigFlags_IsTouchScreen = 1 << 21, // Application is using a touch screen instead of a mouse. +}; + +// Backend capabilities flags stored in io.BackendFlags. Set by imgui_impl_xxx or custom backend. +enum ImGuiBackendFlags_ +{ + ImGuiBackendFlags_None = 0, + ImGuiBackendFlags_HasGamepad = 1 << 0, // Backend Platform supports gamepad and currently has one connected. + ImGuiBackendFlags_HasMouseCursors = 1 << 1, // Backend Platform supports honoring GetMouseCursor() value to change the OS cursor shape. + ImGuiBackendFlags_HasSetMousePos = 1 << 2, // Backend Platform supports io.WantSetMousePos requests to reposition the OS mouse position (only used if ImGuiConfigFlags_NavEnableSetMousePos is set). + ImGuiBackendFlags_RendererHasVtxOffset = 1 << 3, // Backend Renderer supports ImDrawCmd::VtxOffset. This enables output of large meshes (64K+ vertices) while still using 16-bit indices. +}; + +// Enumeration for PushStyleColor() / PopStyleColor() +enum ImGuiCol_ +{ + ImGuiCol_Text, + ImGuiCol_TextDisabled, + ImGuiCol_WindowBg, // Background of normal windows + ImGuiCol_ChildBg, // Background of child windows + ImGuiCol_PopupBg, // Background of popups, menus, tooltips windows + ImGuiCol_Border, + ImGuiCol_BorderShadow, + ImGuiCol_FrameBg, // Background of checkbox, radio button, plot, slider, text input + ImGuiCol_FrameBgHovered, + ImGuiCol_FrameBgActive, + ImGuiCol_TitleBg, + ImGuiCol_TitleBgActive, + ImGuiCol_TitleBgCollapsed, + ImGuiCol_MenuBarBg, + ImGuiCol_ScrollbarBg, + ImGuiCol_ScrollbarGrab, + ImGuiCol_ScrollbarGrabHovered, + ImGuiCol_ScrollbarGrabActive, + ImGuiCol_CheckMark, + ImGuiCol_SliderGrab, + ImGuiCol_SliderGrabActive, + ImGuiCol_Button, + ImGuiCol_ButtonHovered, + ImGuiCol_ButtonActive, + ImGuiCol_Header, // Header* colors are used for CollapsingHeader, TreeNode, Selectable, MenuItem + ImGuiCol_HeaderHovered, + ImGuiCol_HeaderActive, + ImGuiCol_Separator, + ImGuiCol_SeparatorHovered, + ImGuiCol_SeparatorActive, + ImGuiCol_ResizeGrip, // Resize grip in lower-right and lower-left corners of windows. + ImGuiCol_ResizeGripHovered, + ImGuiCol_ResizeGripActive, + ImGuiCol_Tab, // TabItem in a TabBar + ImGuiCol_TabHovered, + ImGuiCol_TabActive, + ImGuiCol_TabUnfocused, + ImGuiCol_TabUnfocusedActive, + ImGuiCol_PlotLines, + ImGuiCol_PlotLinesHovered, + ImGuiCol_PlotHistogram, + ImGuiCol_PlotHistogramHovered, + ImGuiCol_TableHeaderBg, // Table header background + ImGuiCol_TableBorderStrong, // Table outer and header borders (prefer using Alpha=1.0 here) + ImGuiCol_TableBorderLight, // Table inner borders (prefer using Alpha=1.0 here) + ImGuiCol_TableRowBg, // Table row background (even rows) + ImGuiCol_TableRowBgAlt, // Table row background (odd rows) + ImGuiCol_TextSelectedBg, + ImGuiCol_DragDropTarget, // Rectangle highlighting a drop target + ImGuiCol_NavHighlight, // Gamepad/keyboard: current highlighted item + ImGuiCol_NavWindowingHighlight, // Highlight window when using CTRL+TAB + ImGuiCol_NavWindowingDimBg, // Darken/colorize entire screen behind the CTRL+TAB window list, when active + ImGuiCol_ModalWindowDimBg, // Darken/colorize entire screen behind a modal window, when one is active + ImGuiCol_WindowShadow, // Window shadows + // modified by asphyxia + ImGuiCol_ControlBg, + ImGuiCol_ControlBgActive, + ImGuiCol_ControlBgHovered, + ImGuiCol_Triangle, + ImGuiCol_COUNT +}; + +// Enumeration for PushStyleVar() / PopStyleVar() to temporarily modify the ImGuiStyle structure. +// - The enum only refers to fields of ImGuiStyle which makes sense to be pushed/popped inside UI code. +// During initialization or between frames, feel free to just poke into ImGuiStyle directly. +// - Tip: Use your programming IDE navigation facilities on the names in the _second column_ below to find the actual members and their description. +// In Visual Studio IDE: CTRL+comma ("Edit.GoToAll") can follow symbols in comments, whereas CTRL+F12 ("Edit.GoToImplementation") cannot. +// With Visual Assist installed: ALT+G ("VAssistX.GoToImplementation") can also follow symbols in comments. +// - When changing this enum, you need to update the associated internal table GStyleVarInfo[] accordingly. This is where we link enum values to members offset/type. +enum ImGuiStyleVar_ +{ + // Enum name --------------------- // Member in ImGuiStyle structure (see ImGuiStyle for descriptions) + ImGuiStyleVar_Alpha, // float Alpha + ImGuiStyleVar_DisabledAlpha, // float DisabledAlpha + ImGuiStyleVar_WindowPadding, // ImVec2 WindowPadding + ImGuiStyleVar_WindowRounding, // float WindowRounding + ImGuiStyleVar_WindowBorderSize, // float WindowBorderSize + ImGuiStyleVar_WindowMinSize, // ImVec2 WindowMinSize + ImGuiStyleVar_WindowTitleAlign, // ImVec2 WindowTitleAlign + ImGuiStyleVar_ChildRounding, // float ChildRounding + ImGuiStyleVar_ChildBorderSize, // float ChildBorderSize + ImGuiStyleVar_PopupRounding, // float PopupRounding + ImGuiStyleVar_PopupBorderSize, // float PopupBorderSize + ImGuiStyleVar_FramePadding, // ImVec2 FramePadding + ImGuiStyleVar_FrameRounding, // float FrameRounding + ImGuiStyleVar_FrameBorderSize, // float FrameBorderSize + ImGuiStyleVar_ItemSpacing, // ImVec2 ItemSpacing + ImGuiStyleVar_ItemInnerSpacing, // ImVec2 ItemInnerSpacing + ImGuiStyleVar_IndentSpacing, // float IndentSpacing + ImGuiStyleVar_CellPadding, // ImVec2 CellPadding + ImGuiStyleVar_ScrollbarSize, // float ScrollbarSize + ImGuiStyleVar_ScrollbarRounding, // float ScrollbarRounding + ImGuiStyleVar_GrabMinSize, // float GrabMinSize + ImGuiStyleVar_GrabRounding, // float GrabRounding + ImGuiStyleVar_TabRounding, // float TabRounding + ImGuiStyleVar_ButtonTextAlign, // ImVec2 ButtonTextAlign + ImGuiStyleVar_SelectableTextAlign, // ImVec2 SelectableTextAlign + ImGuiStyleVar_SeparatorTextBorderSize,// float SeparatorTextBorderSize + ImGuiStyleVar_SeparatorTextAlign, // ImVec2 SeparatorTextAlign + ImGuiStyleVar_SeparatorTextPadding,// ImVec2 SeparatorTextPadding + ImGuiStyleVar_COUNT +}; + +// Flags for InvisibleButton() [extended in imgui_internal.h] +enum ImGuiButtonFlags_ +{ + ImGuiButtonFlags_None = 0, + ImGuiButtonFlags_MouseButtonLeft = 1 << 0, // React on left mouse button (default) + ImGuiButtonFlags_MouseButtonRight = 1 << 1, // React on right mouse button + ImGuiButtonFlags_MouseButtonMiddle = 1 << 2, // React on center mouse button + + // [Internal] + ImGuiButtonFlags_MouseButtonMask_ = ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle, + ImGuiButtonFlags_MouseButtonDefault_ = ImGuiButtonFlags_MouseButtonLeft, +}; + +// Flags for ColorEdit3() / ColorEdit4() / ColorPicker3() / ColorPicker4() / ColorButton() +enum ImGuiColorEditFlags_ +{ + ImGuiColorEditFlags_None = 0, + ImGuiColorEditFlags_NoAlpha = 1 << 1, // // ColorEdit, ColorPicker, ColorButton: ignore Alpha component (will only read 3 components from the input pointer). + ImGuiColorEditFlags_NoPicker = 1 << 2, // // ColorEdit: disable picker when clicking on color square. + ImGuiColorEditFlags_NoOptions = 1 << 3, // // ColorEdit: disable toggling options menu when right-clicking on inputs/small preview. + ImGuiColorEditFlags_NoSmallPreview = 1 << 4, // // ColorEdit, ColorPicker: disable color square preview next to the inputs. (e.g. to show only the inputs) + ImGuiColorEditFlags_NoInputs = 1 << 5, // // ColorEdit, ColorPicker: disable inputs sliders/text widgets (e.g. to show only the small preview color square). + ImGuiColorEditFlags_NoTooltip = 1 << 6, // // ColorEdit, ColorPicker, ColorButton: disable tooltip when hovering the preview. + ImGuiColorEditFlags_NoLabel = 1 << 7, // // ColorEdit, ColorPicker: disable display of inline text label (the label is still forwarded to the tooltip and picker). + ImGuiColorEditFlags_NoSidePreview = 1 << 8, // // ColorPicker: disable bigger color preview on right side of the picker, use small color square preview instead. + ImGuiColorEditFlags_NoDragDrop = 1 << 9, // // ColorEdit: disable drag and drop target. ColorButton: disable drag and drop source. + ImGuiColorEditFlags_NoBorder = 1 << 10, // // ColorButton: disable border (which is enforced by default) + + // User Options (right-click on widget to change some of them). + ImGuiColorEditFlags_AlphaBar = 1 << 16, // // ColorEdit, ColorPicker: show vertical alpha bar/gradient in picker. + ImGuiColorEditFlags_AlphaPreview = 1 << 17, // // ColorEdit, ColorPicker, ColorButton: display preview as a transparent color over a checkerboard, instead of opaque. + ImGuiColorEditFlags_AlphaPreviewHalf= 1 << 18, // // ColorEdit, ColorPicker, ColorButton: display half opaque / half checkerboard, instead of opaque. + ImGuiColorEditFlags_HDR = 1 << 19, // // (WIP) ColorEdit: Currently only disable 0.0f..1.0f limits in RGBA edition (note: you probably want to use ImGuiColorEditFlags_Float flag as well). + ImGuiColorEditFlags_DisplayRGB = 1 << 20, // [Display] // ColorEdit: override _display_ type among RGB/HSV/Hex. ColorPicker: select any combination using one or more of RGB/HSV/Hex. + ImGuiColorEditFlags_DisplayHSV = 1 << 21, // [Display] // " + ImGuiColorEditFlags_DisplayHex = 1 << 22, // [Display] // " + ImGuiColorEditFlags_Uint8 = 1 << 23, // [DataType] // ColorEdit, ColorPicker, ColorButton: _display_ values formatted as 0..255. + ImGuiColorEditFlags_Float = 1 << 24, // [DataType] // ColorEdit, ColorPicker, ColorButton: _display_ values formatted as 0.0f..1.0f floats instead of 0..255 integers. No round-trip of value via integers. + ImGuiColorEditFlags_PickerHueBar = 1 << 25, // [Picker] // ColorPicker: bar for Hue, rectangle for Sat/Value. + ImGuiColorEditFlags_PickerHueWheel = 1 << 26, // [Picker] // ColorPicker: wheel for Hue, triangle for Sat/Value. + ImGuiColorEditFlags_InputRGB = 1 << 27, // [Input] // ColorEdit, ColorPicker: input and output data in RGB format. + ImGuiColorEditFlags_InputHSV = 1 << 28, // [Input] // ColorEdit, ColorPicker: input and output data in HSV format. + + // Defaults Options. You can set application defaults using SetColorEditOptions(). The intent is that you probably don't want to + // override them in most of your calls. Let the user choose via the option menu and/or call SetColorEditOptions() once during startup. + ImGuiColorEditFlags_DefaultOptions_ = ImGuiColorEditFlags_Uint8 | ImGuiColorEditFlags_DisplayRGB | ImGuiColorEditFlags_InputRGB | ImGuiColorEditFlags_PickerHueBar, + + // [Internal] Masks + ImGuiColorEditFlags_DisplayMask_ = ImGuiColorEditFlags_DisplayRGB | ImGuiColorEditFlags_DisplayHSV | ImGuiColorEditFlags_DisplayHex, + ImGuiColorEditFlags_DataTypeMask_ = ImGuiColorEditFlags_Uint8 | ImGuiColorEditFlags_Float, + ImGuiColorEditFlags_PickerMask_ = ImGuiColorEditFlags_PickerHueWheel | ImGuiColorEditFlags_PickerHueBar, + ImGuiColorEditFlags_InputMask_ = ImGuiColorEditFlags_InputRGB | ImGuiColorEditFlags_InputHSV, + + // Obsolete names + //ImGuiColorEditFlags_RGB = ImGuiColorEditFlags_DisplayRGB, ImGuiColorEditFlags_HSV = ImGuiColorEditFlags_DisplayHSV, ImGuiColorEditFlags_HEX = ImGuiColorEditFlags_DisplayHex // [renamed in 1.69] +}; + +// Flags for DragFloat(), DragInt(), SliderFloat(), SliderInt() etc. +// We use the same sets of flags for DragXXX() and SliderXXX() functions as the features are the same and it makes it easier to swap them. +// (Those are per-item flags. There are shared flags in ImGuiIO: io.ConfigDragClickToInputText) +enum ImGuiSliderFlags_ +{ + ImGuiSliderFlags_None = 0, + ImGuiSliderFlags_AlwaysClamp = 1 << 4, // Clamp value to min/max bounds when input manually with CTRL+Click. By default CTRL+Click allows going out of bounds. + ImGuiSliderFlags_Logarithmic = 1 << 5, // Make the widget logarithmic (linear otherwise). Consider using ImGuiSliderFlags_NoRoundToFormat with this if using a format-string with small amount of digits. + ImGuiSliderFlags_NoRoundToFormat = 1 << 6, // Disable rounding underlying value to match precision of the display format string (e.g. %.3f values are rounded to those 3 digits) + ImGuiSliderFlags_NoInput = 1 << 7, // Disable CTRL+Click or Enter key allowing to input text directly into the widget + ImGuiSliderFlags_InvalidMask_ = 0x7000000F, // [Internal] We treat using those bits as being potentially a 'float power' argument from the previous API that has got miscast to this enum, and will trigger an assert if needed. + + // Obsolete names + //ImGuiSliderFlags_ClampOnInput = ImGuiSliderFlags_AlwaysClamp, // [renamed in 1.79] +}; + +// Identify a mouse button. +// Those values are guaranteed to be stable and we frequently use 0/1 directly. Named enums provided for convenience. +enum ImGuiMouseButton_ +{ + ImGuiMouseButton_Left = 0, + ImGuiMouseButton_Right = 1, + ImGuiMouseButton_Middle = 2, + ImGuiMouseButton_COUNT = 5 +}; + +// Enumeration for GetMouseCursor() +// User code may request backend to display given cursor by calling SetMouseCursor(), which is why we have some cursors that are marked unused here +enum ImGuiMouseCursor_ +{ + ImGuiMouseCursor_None = -1, + ImGuiMouseCursor_Arrow = 0, + ImGuiMouseCursor_TextInput, // When hovering over InputText, etc. + ImGuiMouseCursor_ResizeAll, // (Unused by Dear ImGui functions) + ImGuiMouseCursor_ResizeNS, // When hovering over a horizontal border + ImGuiMouseCursor_ResizeEW, // When hovering over a vertical border or a column + ImGuiMouseCursor_ResizeNESW, // When hovering over the bottom-left corner of a window + ImGuiMouseCursor_ResizeNWSE, // When hovering over the bottom-right corner of a window + ImGuiMouseCursor_Hand, // (Unused by Dear ImGui functions. Use for e.g. hyperlinks) + ImGuiMouseCursor_NotAllowed, // When hovering something with disallowed interaction. Usually a crossed circle. + ImGuiMouseCursor_COUNT +}; + +// Enumeration for AddMouseSourceEvent() actual source of Mouse Input data. +// Historically we use "Mouse" terminology everywhere to indicate pointer data, e.g. MousePos, IsMousePressed(), io.AddMousePosEvent() +// But that "Mouse" data can come from different source which occasionally may be useful for application to know about. +// You can submit a change of pointer type using io.AddMouseSourceEvent(). +enum ImGuiMouseSource : int +{ + ImGuiMouseSource_Mouse = 0, // Input is coming from an actual mouse. + ImGuiMouseSource_TouchScreen, // Input is coming from a touch screen (no hovering prior to initial press, less precise initial press aiming, dual-axis wheeling possible). + ImGuiMouseSource_Pen, // Input is coming from a pressure/magnetic pen (often used in conjunction with high-sampling rates). + ImGuiMouseSource_COUNT +}; + +// Enumeration for ImGui::SetWindow***(), SetNextWindow***(), SetNextItem***() functions +// Represent a condition. +// Important: Treat as a regular enum! Do NOT combine multiple values using binary operators! All the functions above treat 0 as a shortcut to ImGuiCond_Always. +enum ImGuiCond_ +{ + ImGuiCond_None = 0, // No condition (always set the variable), same as _Always + ImGuiCond_Always = 1 << 0, // No condition (always set the variable), same as _None + ImGuiCond_Once = 1 << 1, // Set the variable once per runtime session (only the first call will succeed) + ImGuiCond_FirstUseEver = 1 << 2, // Set the variable if the object/window has no persistently saved data (no entry in .ini file) + ImGuiCond_Appearing = 1 << 3, // Set the variable if the object/window is appearing after being hidden/inactive (or the first time) +}; + +//----------------------------------------------------------------------------- +// [SECTION] Helpers: Memory allocations macros, ImVector<> +//----------------------------------------------------------------------------- + +//----------------------------------------------------------------------------- +// IM_MALLOC(), IM_FREE(), IM_NEW(), IM_PLACEMENT_NEW(), IM_DELETE() +// We call C++ constructor on own allocated memory via the placement "new(ptr) Type()" syntax. +// Defining a custom placement new() with a custom parameter allows us to bypass including which on some platforms complains when user has disabled exceptions. +//----------------------------------------------------------------------------- + +struct ImNewWrapper {}; +inline void* operator new(size_t, ImNewWrapper, void* ptr) { return ptr; } +inline void operator delete(void*, ImNewWrapper, void*) {} // This is only required so we can use the symmetrical new() +#define IM_ALLOC(_SIZE) ImGui::MemAlloc(_SIZE) +#define IM_FREE(_PTR) ImGui::MemFree(_PTR) +#define IM_PLACEMENT_NEW(_PTR) new(ImNewWrapper(), _PTR) +#define IM_NEW(_TYPE) new(ImNewWrapper(), ImGui::MemAlloc(sizeof(_TYPE))) _TYPE +template void IM_DELETE(T* p) { if (p) { p->~T(); ImGui::MemFree(p); } } + +//----------------------------------------------------------------------------- +// ImVector<> +// Lightweight std::vector<>-like class to avoid dragging dependencies (also, some implementations of STL with debug enabled are absurdly slow, we bypass it so our code runs fast in debug). +//----------------------------------------------------------------------------- +// - You generally do NOT need to care or use this ever. But we need to make it available in imgui.h because some of our public structures are relying on it. +// - We use std-like naming convention here, which is a little unusual for this codebase. +// - Important: clear() frees memory, resize(0) keep the allocated buffer. We use resize(0) a lot to intentionally recycle allocated buffers across frames and amortize our costs. +// - Important: our implementation does NOT call C++ constructors/destructors, we treat everything as raw data! This is intentional but be extra mindful of that, +// Do NOT use this class as a std::vector replacement in your own code! Many of the structures used by dear imgui can be safely initialized by a zero-memset. +//----------------------------------------------------------------------------- + +IM_MSVC_RUNTIME_CHECKS_OFF +template +struct ImVector +{ + int Size; + int Capacity; + T* Data; + + // Provide standard typedefs but we don't use them ourselves. + typedef T value_type; + typedef value_type* iterator; + typedef const value_type* const_iterator; + + // Constructors, destructor + inline ImVector() { Size = Capacity = 0; Data = NULL; } + inline ImVector(const ImVector& src) { Size = Capacity = 0; Data = NULL; operator=(src); } + inline ImVector& operator=(const ImVector& src) { clear(); resize(src.Size); if (src.Data) memcpy(Data, src.Data, (size_t)Size * sizeof(T)); return *this; } + inline ~ImVector() { if (Data) IM_FREE(Data); } // Important: does not destruct anything + + inline void clear() { if (Data) { Size = Capacity = 0; IM_FREE(Data); Data = NULL; } } // Important: does not destruct anything + inline void clear_delete() { for (int n = 0; n < Size; n++) IM_DELETE(Data[n]); clear(); } // Important: never called automatically! always explicit. + inline void clear_destruct() { for (int n = 0; n < Size; n++) Data[n].~T(); clear(); } // Important: never called automatically! always explicit. + + inline bool empty() const { return Size == 0; } + inline int size() const { return Size; } + inline int size_in_bytes() const { return Size * (int)sizeof(T); } + inline int max_size() const { return 0x7FFFFFFF / (int)sizeof(T); } + inline int capacity() const { return Capacity; } + inline T& operator[](int i) { IM_ASSERT(i >= 0 && i < Size); return Data[i]; } + inline const T& operator[](int i) const { IM_ASSERT(i >= 0 && i < Size); return Data[i]; } + + inline T* begin() { return Data; } + inline const T* begin() const { return Data; } + inline T* end() { return Data + Size; } + inline const T* end() const { return Data + Size; } + inline T& front() { IM_ASSERT(Size > 0); return Data[0]; } + inline const T& front() const { IM_ASSERT(Size > 0); return Data[0]; } + inline T& back() { IM_ASSERT(Size > 0); return Data[Size - 1]; } + inline const T& back() const { IM_ASSERT(Size > 0); return Data[Size - 1]; } + inline void swap(ImVector& rhs) { int rhs_size = rhs.Size; rhs.Size = Size; Size = rhs_size; int rhs_cap = rhs.Capacity; rhs.Capacity = Capacity; Capacity = rhs_cap; T* rhs_data = rhs.Data; rhs.Data = Data; Data = rhs_data; } + + inline int _grow_capacity(int sz) const { int new_capacity = Capacity ? (Capacity + Capacity / 2) : 8; return new_capacity > sz ? new_capacity : sz; } + inline void resize(int new_size) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); Size = new_size; } + inline void resize(int new_size, const T& v) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); if (new_size > Size) for (int n = Size; n < new_size; n++) memcpy(&Data[n], &v, sizeof(v)); Size = new_size; } + inline void shrink(int new_size) { IM_ASSERT(new_size <= Size); Size = new_size; } // Resize a vector to a smaller size, guaranteed not to cause a reallocation + inline void reserve(int new_capacity) { if (new_capacity <= Capacity) return; T* new_data = (T*)IM_ALLOC((size_t)new_capacity * sizeof(T)); if (Data) { memcpy(new_data, Data, (size_t)Size * sizeof(T)); IM_FREE(Data); } Data = new_data; Capacity = new_capacity; } + inline void reserve_discard(int new_capacity) { if (new_capacity <= Capacity) return; if (Data) IM_FREE(Data); Data = (T*)IM_ALLOC((size_t)new_capacity * sizeof(T)); Capacity = new_capacity; } + + // NB: It is illegal to call push_back/push_front/insert with a reference pointing inside the ImVector data itself! e.g. v.push_back(v[10]) is forbidden. + inline void push_back(const T& v) { if (Size == Capacity) reserve(_grow_capacity(Size + 1)); memcpy(&Data[Size], &v, sizeof(v)); Size++; } + inline void pop_back() { IM_ASSERT(Size > 0); Size--; } + inline void push_front(const T& v) { if (Size == 0) push_back(v); else insert(Data, v); } + inline T* erase(const T* it) { IM_ASSERT(it >= Data && it < Data + Size); const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + 1, ((size_t)Size - (size_t)off - 1) * sizeof(T)); Size--; return Data + off; } + inline T* erase(const T* it, const T* it_last){ IM_ASSERT(it >= Data && it < Data + Size && it_last >= it && it_last <= Data + Size); const ptrdiff_t count = it_last - it; const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + count, ((size_t)Size - (size_t)off - (size_t)count) * sizeof(T)); Size -= (int)count; return Data + off; } + inline T* erase_unsorted(const T* it) { IM_ASSERT(it >= Data && it < Data + Size); const ptrdiff_t off = it - Data; if (it < Data + Size - 1) memcpy(Data + off, Data + Size - 1, sizeof(T)); Size--; return Data + off; } + inline T* insert(const T* it, const T& v) { IM_ASSERT(it >= Data && it <= Data + Size); const ptrdiff_t off = it - Data; if (Size == Capacity) reserve(_grow_capacity(Size + 1)); if (off < (int)Size) memmove(Data + off + 1, Data + off, ((size_t)Size - (size_t)off) * sizeof(T)); memcpy(&Data[off], &v, sizeof(v)); Size++; return Data + off; } + inline bool contains(const T& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data++ == v) return true; return false; } + inline T* find(const T& v) { T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data == v) break; else ++data; return data; } + inline const T* find(const T& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data == v) break; else ++data; return data; } + inline bool find_erase(const T& v) { const T* it = find(v); if (it < Data + Size) { erase(it); return true; } return false; } + inline bool find_erase_unsorted(const T& v) { const T* it = find(v); if (it < Data + Size) { erase_unsorted(it); return true; } return false; } + inline int index_from_ptr(const T* it) const { IM_ASSERT(it >= Data && it < Data + Size); const ptrdiff_t off = it - Data; return (int)off; } +}; +IM_MSVC_RUNTIME_CHECKS_RESTORE + +//----------------------------------------------------------------------------- +// [SECTION] ImGuiStyle +//----------------------------------------------------------------------------- +// You may modify the ImGui::GetStyle() main instance during initialization and before NewFrame(). +// During the frame, use ImGui::PushStyleVar(ImGuiStyleVar_XXXX)/PopStyleVar() to alter the main style values, +// and ImGui::PushStyleColor(ImGuiCol_XXX)/PopStyleColor() for colors. +//----------------------------------------------------------------------------- + +struct ImGuiStyle +{ + float Alpha; // Global alpha applies to everything in Dear ImGui. + float DisabledAlpha; // Additional alpha multiplier applied by BeginDisabled(). Multiply over current value of Alpha. + ImVec2 WindowPadding; // Padding within a window. + float WindowRounding; // Radius of window corners rounding. Set to 0.0f to have rectangular windows. Large values tend to lead to variety of artifacts and are not recommended. + float WindowBorderSize; // Thickness of border around windows. Generally set to 0.0f or 1.0f. (Other values are not well tested and more CPU/GPU costly). + ImVec2 WindowMinSize; // Minimum window size. This is a global setting. If you want to constrain individual windows, use SetNextWindowSizeConstraints(). + ImVec2 WindowTitleAlign; // Alignment for title bar text. Defaults to (0.0f,0.5f) for left-aligned,vertically centered. + ImGuiDir WindowMenuButtonPosition; // Side of the collapsing/docking button in the title bar (None/Left/Right). Defaults to ImGuiDir_Left. + float ChildRounding; // Radius of child window corners rounding. Set to 0.0f to have rectangular windows. + float ChildBorderSize; // Thickness of border around child windows. Generally set to 0.0f or 1.0f. (Other values are not well tested and more CPU/GPU costly). + float PopupRounding; // Radius of popup window corners rounding. (Note that tooltip windows use WindowRounding) + float PopupBorderSize; // Thickness of border around popup/tooltip windows. Generally set to 0.0f or 1.0f. (Other values are not well tested and more CPU/GPU costly). + ImVec2 FramePadding; // Padding within a framed rectangle (used by most widgets). + float FrameRounding; // Radius of frame corners rounding. Set to 0.0f to have rectangular frame (used by most widgets). + float FrameBorderSize; // Thickness of border around frames. Generally set to 0.0f or 1.0f. (Other values are not well tested and more CPU/GPU costly). + ImVec2 ItemSpacing; // Horizontal and vertical spacing between widgets/lines. + ImVec2 ItemInnerSpacing; // Horizontal and vertical spacing between within elements of a composed widget (e.g. a slider and its label). + ImVec2 CellPadding; // Padding within a table cell. CellPadding.y may be altered between different rows. + ImVec2 TouchExtraPadding; // Expand reactive bounding box for touch-based system where touch position is not accurate enough. Unfortunately we don't sort widgets so priority on overlap will always be given to the first widget. So don't grow this too much! + float IndentSpacing; // Horizontal indentation when e.g. entering a tree node. Generally == (FontSize + FramePadding.x*2). + float ColumnsMinSpacing; // Minimum horizontal spacing between two columns. Preferably > (FramePadding.x + 1). + float ScrollbarSize; // Width of the vertical scrollbar, Height of the horizontal scrollbar. + float ScrollbarRounding; // Radius of grab corners for scrollbar. + float GrabMinSize; // Minimum width/height of a grab box for slider/scrollbar. + float GrabRounding; // Radius of grabs corners rounding. Set to 0.0f to have rectangular slider grabs. + float LogSliderDeadzone; // The size in pixels of the dead-zone around zero on logarithmic sliders that cross zero. + float TabRounding; // Radius of upper corners of a tab. Set to 0.0f to have rectangular tabs. + float TabBorderSize; // Thickness of border around tabs. + float TabMinWidthForCloseButton; // Minimum width for close button to appear on an unselected tab when hovered. Set to 0.0f to always show when hovering, set to FLT_MAX to never show close button unless selected. + ImGuiDir ColorButtonPosition; // Side of the color button in the ColorEdit4 widget (left/right). Defaults to ImGuiDir_Right. + ImVec2 ButtonTextAlign; // Alignment of button text when button is larger than text. Defaults to (0.5f, 0.5f) (centered). + ImVec2 SelectableTextAlign; // Alignment of selectable text. Defaults to (0.0f, 0.0f) (top-left aligned). It's generally important to keep this left-aligned if you want to lay multiple items on a same line. + float SeparatorTextBorderSize; // Thickkness of border in SeparatorText() + ImVec2 SeparatorTextAlign; // Alignment of text within the separator. Defaults to (0.0f, 0.5f) (left aligned, center). + ImVec2 SeparatorTextPadding; // Horizontal offset of text from each edge of the separator + spacing on other axis. Generally small values. .y is recommended to be == FramePadding.y. + ImVec2 DisplayWindowPadding; // Window position are clamped to be visible within the display area or monitors by at least this amount. Only applies to regular windows. + ImVec2 DisplaySafeAreaPadding; // If you cannot see the edges of your screen (e.g. on a TV) increase the safe area padding. Apply to popups/tooltips as well regular windows. NB: Prefer configuring your TV sets correctly! + float MouseCursorScale; // Scale software rendered mouse cursor (when io.MouseDrawCursor is enabled). May be removed later. + bool AntiAliasedLines; // Enable anti-aliased lines/borders. Disable if you are really tight on CPU/GPU. Latched at the beginning of the frame (copied to ImDrawList). + bool AntiAliasedLinesUseTex; // Enable anti-aliased lines/borders using textures where possible. Require backend to render with bilinear filtering (NOT point/nearest filtering). Latched at the beginning of the frame (copied to ImDrawList). + bool AntiAliasedFill; // Enable anti-aliased edges around filled shapes (rounded rectangles, circles, etc.). Disable if you are really tight on CPU/GPU. Latched at the beginning of the frame (copied to ImDrawList). + float CurveTessellationTol; // Tessellation tolerance when using PathBezierCurveTo() without a specific number of segments. Decrease for highly tessellated curves (higher quality, more polygons), increase to reduce quality. + float CircleTessellationMaxError; // Maximum error (in pixels) allowed when using AddCircle()/AddCircleFilled() or drawing rounded corner rectangles with no explicit segment count specified. Decrease for higher quality but more geometry. + float WindowShadowSize; // Size (in pixels) of window shadows. Set this to zero to disable shadows. + float WindowShadowOffsetDist; // Offset distance (in pixels) of window shadows from casting window. + float WindowShadowOffsetAngle; // Offset angle of window shadows from casting window (0.0f = left, 0.5f*PI = bottom, 1.0f*PI = right, 1.5f*PI = top). + ImVec4 Colors[ImGuiCol_COUNT]; + + // Behaviors + // (It is possible to modify those fields mid-frame if specific behavior need it, unlike e.g. configuration fields in ImGuiIO) + float HoverStationaryDelay; // Delay for IsItemHovered(ImGuiHoveredFlags_Stationary). Time required to consider mouse stationary. + float HoverDelayShort; // Delay for IsItemHovered(ImGuiHoveredFlags_DelayShort). Usually used along with HoverStationaryDelay. + float HoverDelayNormal; // Delay for IsItemHovered(ImGuiHoveredFlags_DelayNormal). " + ImGuiHoveredFlags HoverFlagsForTooltipMouse;// Default flags when using IsItemHovered(ImGuiHoveredFlags_ForTooltip) or BeginItemTooltip()/SetItemTooltip() while using mouse. + ImGuiHoveredFlags HoverFlagsForTooltipNav; // Default flags when using IsItemHovered(ImGuiHoveredFlags_ForTooltip) or BeginItemTooltip()/SetItemTooltip() while using keyboard/gamepad. + + // modified by asphyxia + float AnimationSpeed = 1.f; // default animation duration = 1.f + + IMGUI_API ImGuiStyle(); + IMGUI_API void ScaleAllSizes(float scale_factor); +}; + +//----------------------------------------------------------------------------- +// [SECTION] ImGuiIO +//----------------------------------------------------------------------------- +// Communicate most settings and inputs/outputs to Dear ImGui using this structure. +// Access via ImGui::GetIO(). Read 'Programmer guide' section in .cpp file for general usage. +//----------------------------------------------------------------------------- + +// [Internal] Storage used by IsKeyDown(), IsKeyPressed() etc functions. +// If prior to 1.87 you used io.KeysDownDuration[] (which was marked as internal), you should use GetKeyData(key)->DownDuration and *NOT* io.KeysData[key]->DownDuration. +struct ImGuiKeyData +{ + bool Down; // True for if key is down + float DownDuration; // Duration the key has been down (<0.0f: not pressed, 0.0f: just pressed, >0.0f: time held) + float DownDurationPrev; // Last frame duration the key has been down + float AnalogValue; // 0.0f..1.0f for gamepad values +}; + +struct ImGuiIO +{ + + //------------------------------------------------------------------ + // Configuration // Default value + //------------------------------------------------------------------ + + ImGuiConfigFlags ConfigFlags; // = 0 // See ImGuiConfigFlags_ enum. Set by user/application. Gamepad/keyboard navigation options, etc. + ImGuiBackendFlags BackendFlags; // = 0 // See ImGuiBackendFlags_ enum. Set by backend (imgui_impl_xxx files or custom backend) to communicate features supported by the backend. + ImVec2 DisplaySize; // // Main display size, in pixels (generally == GetMainViewport()->Size). May change every frame. + float DeltaTime; // = 1.0f/60.0f // Time elapsed since last frame, in seconds. May change every frame. + float IniSavingRate; // = 5.0f // Minimum time between saving positions/sizes to .ini file, in seconds. + const char* IniFilename; // = "imgui.ini" // Path to .ini file (important: default "imgui.ini" is relative to current working dir!). Set NULL to disable automatic .ini loading/saving or if you want to manually call LoadIniSettingsXXX() / SaveIniSettingsXXX() functions. + const char* LogFilename; // = "imgui_log.txt"// Path to .log file (default parameter to ImGui::LogToFile when no file is specified). + void* UserData; // = NULL // Store your own data. + + ImFontAtlas*Fonts; // // Font atlas: load, rasterize and pack one or more fonts into a single texture. + float FontGlobalScale; // = 1.0f // Global scale all fonts + bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with CTRL+Wheel. + ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use NULL to uses Fonts->Fonts[0]. + ImVec2 DisplayFramebufferScale; // = (1, 1) // For retina display or other situations where window coordinates are different from framebuffer coordinates. This generally ends up in ImDrawData::FramebufferScale. + + // Miscellaneous options + bool MouseDrawCursor; // = false // Request ImGui to draw a mouse cursor for you (if you are on a platform without a mouse cursor). Cannot be easily renamed to 'io.ConfigXXX' because this is frequently used by backend implementations. + bool ConfigMacOSXBehaviors; // = defined(__APPLE__) // OS X style: Text editing cursor movement using Alt instead of Ctrl, Shortcuts using Cmd/Super instead of Ctrl, Line/Text Start and End using Cmd+Arrows instead of Home/End, Double click selects by word instead of selecting whole text, Multi-selection in lists uses Cmd/Super instead of Ctrl. + bool ConfigInputTrickleEventQueue; // = true // Enable input queue trickling: some types of events submitted during the same frame (e.g. button down + up) will be spread over multiple frames, improving interactions with low framerates. + bool ConfigInputTextCursorBlink; // = true // Enable blinking cursor (optional as some users consider it to be distracting). + bool ConfigInputTextEnterKeepActive; // = false // [BETA] Pressing Enter will keep item active and select contents (single-line only). + bool ConfigDragClickToInputText; // = false // [BETA] Enable turning DragXXX widgets into text input with a simple mouse click-release (without moving). Not desirable on devices without a keyboard. + bool ConfigWindowsResizeFromEdges; // = true // Enable resizing of windows from their edges and from the lower-left corner. This requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback. (This used to be a per-window ImGuiWindowFlags_ResizeFromAnySide flag) + bool ConfigWindowsMoveFromTitleBarOnly; // = false // Enable allowing to move windows only when clicking on their title bar. Does not apply to windows without a title bar. + float ConfigMemoryCompactTimer; // = 60.0f // Timer (in seconds) to free transient windows/tables memory buffers when unused. Set to -1.0f to disable. + + // Inputs Behaviors + // (other variables, ones which are expected to be tweaked within UI code, are exposed in ImGuiStyle) + float MouseDoubleClickTime; // = 0.30f // Time for a double-click, in seconds. + float MouseDoubleClickMaxDist; // = 6.0f // Distance threshold to stay in to validate a double-click, in pixels. + float MouseDragThreshold; // = 6.0f // Distance threshold before considering we are dragging. + float KeyRepeatDelay; // = 0.275f // When holding a key/button, time before it starts repeating, in seconds (for buttons in Repeat mode, etc.). + float KeyRepeatRate; // = 0.050f // When holding a key/button, rate at which it repeats, in seconds. + + //------------------------------------------------------------------ + // Debug options + //------------------------------------------------------------------ + + // Tools to test correct Begin/End and BeginChild/EndChild behaviors. + // Presently Begin()/End() and BeginChild()/EndChild() needs to ALWAYS be called in tandem, regardless of return value of BeginXXX() + // This is inconsistent with other BeginXXX functions and create confusion for many users. + // We expect to update the API eventually. In the meanwhile we provide tools to facilitate checking user-code behavior. + bool ConfigDebugBeginReturnValueOnce;// = false // First-time calls to Begin()/BeginChild() will return false. NEEDS TO BE SET AT APPLICATION BOOT TIME if you don't want to miss windows. + bool ConfigDebugBeginReturnValueLoop;// = false // Some calls to Begin()/BeginChild() will return false. Will cycle through window depths then repeat. Suggested use: add "io.ConfigDebugBeginReturnValue = io.KeyShift" in your main loop then occasionally press SHIFT. Windows should be flickering while running. + + // Option to deactivate io.AddFocusEvent(false) handling. May facilitate interactions with a debugger when focus loss leads to clearing inputs data. + // Backends may have other side-effects on focus loss, so this will reduce side-effects but not necessary remove all of them. + // Consider using e.g. Win32's IsDebuggerPresent() as an additional filter (or see ImOsIsDebuggerPresent() in imgui_test_engine/imgui_te_utils.cpp for a Unix compatible version). + bool ConfigDebugIgnoreFocusLoss; // = false // Ignore io.AddFocusEvent(false), consequently not calling io.ClearInputKeys() in input processing. + + // Options to audit .ini data + bool ConfigDebugIniSettings; // = false // Save .ini data with extra comments (particularly helpful for Docking, but makes saving slower) + + //------------------------------------------------------------------ + // Platform Functions + // (the imgui_impl_xxxx backend files are setting those up for you) + //------------------------------------------------------------------ + + // Optional: Platform/Renderer backend name (informational only! will be displayed in About Window) + User data for backend/wrappers to store their own stuff. + const char* BackendPlatformName; // = NULL + const char* BackendRendererName; // = NULL + void* BackendPlatformUserData; // = NULL // User data for platform backend + void* BackendRendererUserData; // = NULL // User data for renderer backend + void* BackendLanguageUserData; // = NULL // User data for non C++ programming language backend + + // Optional: Access OS clipboard + // (default to use native Win32 clipboard on Windows, otherwise uses a private clipboard. Override to access OS clipboard on other architectures) + const char* (*GetClipboardTextFn)(void* user_data); + void (*SetClipboardTextFn)(void* user_data, const char* text); + void* ClipboardUserData; + + // Optional: Notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese IME on Windows) + // (default to use native imm32 api on Windows) + void (*SetPlatformImeDataFn)(ImGuiViewport* viewport, ImGuiPlatformImeData* data); +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + void* ImeWindowHandle; // = NULL // [Obsolete] Set ImGuiViewport::PlatformHandleRaw instead. Set this to your HWND to get automatic IME cursor positioning. +#else + void* _UnusedPadding; // Unused field to keep data structure the same size. +#endif + + // Optional: Platform locale + ImWchar PlatformLocaleDecimalPoint; // '.' // [Experimental] Configure decimal point e.g. '.' or ',' useful for some languages (e.g. German), generally pulled from *localeconv()->decimal_point + + //------------------------------------------------------------------ + // Input - Call before calling NewFrame() + //------------------------------------------------------------------ + + // Input Functions + IMGUI_API void AddKeyEvent(ImGuiKey key, bool down); // Queue a new key down/up event. Key should be "translated" (as in, generally ImGuiKey_A matches the key end-user would use to emit an 'A' character) + IMGUI_API void AddKeyAnalogEvent(ImGuiKey key, bool down, float v); // Queue a new key down/up event for analog values (e.g. ImGuiKey_Gamepad_ values). Dead-zones should be handled by the backend. + IMGUI_API void AddMousePosEvent(float x, float y); // Queue a mouse position update. Use -FLT_MAX,-FLT_MAX to signify no mouse (e.g. app not focused and not hovered) + IMGUI_API void AddMouseButtonEvent(int button, bool down); // Queue a mouse button change + IMGUI_API void AddMouseWheelEvent(float wheel_x, float wheel_y); // Queue a mouse wheel update. wheel_y<0: scroll down, wheel_y>0: scroll up, wheel_x<0: scroll right, wheel_x>0: scroll left. + IMGUI_API void AddMouseSourceEvent(ImGuiMouseSource source); // Queue a mouse source change (Mouse/TouchScreen/Pen) + IMGUI_API void AddFocusEvent(bool focused); // Queue a gain/loss of focus for the application (generally based on OS/platform focus of your window) + IMGUI_API void AddInputCharacter(unsigned int c); // Queue a new character input + IMGUI_API void AddInputCharacterUTF16(ImWchar16 c); // Queue a new character input from a UTF-16 character, it can be a surrogate + IMGUI_API void AddInputCharactersUTF8(const char* str); // Queue a new characters input from a UTF-8 string + + IMGUI_API void SetKeyEventNativeData(ImGuiKey key, int native_keycode, int native_scancode, int native_legacy_index = -1); // [Optional] Specify index for legacy <1.87 IsKeyXXX() functions with native indices + specify native keycode, scancode. + IMGUI_API void SetAppAcceptingEvents(bool accepting_events); // Set master flag for accepting key/mouse/text events (default to true). Useful if you have native dialog boxes that are interrupting your application loop/refresh, and you want to disable events being queued while your app is frozen. + IMGUI_API void ClearEventsQueue(); // Clear all incoming events. + IMGUI_API void ClearInputKeys(); // Clear current keyboard/mouse/gamepad state + current frame text input buffer. Equivalent to releasing all keys/buttons. +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + IMGUI_API void ClearInputCharacters(); // [Obsolete] Clear the current frame text input buffer. Now included within ClearInputKeys(). +#endif + + //------------------------------------------------------------------ + // Output - Updated by NewFrame() or EndFrame()/Render() + // (when reading from the io.WantCaptureMouse, io.WantCaptureKeyboard flags to dispatch your inputs, it is + // generally easier and more correct to use their state BEFORE calling NewFrame(). See FAQ for details!) + //------------------------------------------------------------------ + + bool WantCaptureMouse; // Set when Dear ImGui will use mouse inputs, in this case do not dispatch them to your main game/application (either way, always pass on mouse inputs to imgui). (e.g. unclicked mouse is hovering over an imgui window, widget is active, mouse was clicked over an imgui window, etc.). + bool WantCaptureKeyboard; // Set when Dear ImGui will use keyboard inputs, in this case do not dispatch them to your main game/application (either way, always pass keyboard inputs to imgui). (e.g. InputText active, or an imgui window is focused and navigation is enabled, etc.). + bool WantTextInput; // Mobile/console: when set, you may display an on-screen keyboard. This is set by Dear ImGui when it wants textual keyboard input to happen (e.g. when a InputText widget is active). + bool WantSetMousePos; // MousePos has been altered, backend should reposition mouse on next frame. Rarely used! Set only when ImGuiConfigFlags_NavEnableSetMousePos flag is enabled. + bool WantSaveIniSettings; // When manual .ini load/save is active (io.IniFilename == NULL), this will be set to notify your application that you can call SaveIniSettingsToMemory() and save yourself. Important: clear io.WantSaveIniSettings yourself after saving! + bool NavActive; // Keyboard/Gamepad navigation is currently allowed (will handle ImGuiKey_NavXXX events) = a window is focused and it doesn't use the ImGuiWindowFlags_NoNavInputs flag. + bool NavVisible; // Keyboard/Gamepad navigation is visible and allowed (will handle ImGuiKey_NavXXX events). + float Framerate; // Estimate of application framerate (rolling average over 60 frames, based on io.DeltaTime), in frame per second. Solely for convenience. Slow applications may not want to use a moving average or may want to reset underlying buffers occasionally. + int MetricsRenderVertices; // Vertices output during last call to Render() + int MetricsRenderIndices; // Indices output during last call to Render() = number of triangles * 3 + int MetricsRenderWindows; // Number of visible windows + int MetricsActiveWindows; // Number of active windows + int MetricsActiveAllocations; // Number of active allocations, updated by MemAlloc/MemFree based on current context. May be off if you have multiple imgui contexts. + ImVec2 MouseDelta; // Mouse delta. Note that this is zero if either current or previous position are invalid (-FLT_MAX,-FLT_MAX), so a disappearing/reappearing mouse won't have a huge delta. + + // Legacy: before 1.87, we required backend to fill io.KeyMap[] (imgui->native map) during initialization and io.KeysDown[] (native indices) every frame. + // This is still temporarily supported as a legacy feature. However the new preferred scheme is for backend to call io.AddKeyEvent(). + // Old (<1.87): ImGui::IsKeyPressed(ImGui::GetIO().KeyMap[ImGuiKey_Space]) --> New (1.87+) ImGui::IsKeyPressed(ImGuiKey_Space) +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + int KeyMap[ImGuiKey_COUNT]; // [LEGACY] Input: map of indices into the KeysDown[512] entries array which represent your "native" keyboard state. The first 512 are now unused and should be kept zero. Legacy backend will write into KeyMap[] using ImGuiKey_ indices which are always >512. + bool KeysDown[ImGuiKey_COUNT]; // [LEGACY] Input: Keyboard keys that are pressed (ideally left in the "native" order your engine has access to keyboard keys, so you can use your own defines/enums for keys). This used to be [512] sized. It is now ImGuiKey_COUNT to allow legacy io.KeysDown[GetKeyIndex(...)] to work without an overflow. + float NavInputs[ImGuiNavInput_COUNT]; // [LEGACY] Since 1.88, NavInputs[] was removed. Backends from 1.60 to 1.86 won't build. Feed gamepad inputs via io.AddKeyEvent() and ImGuiKey_GamepadXXX enums. +#endif + + //------------------------------------------------------------------ + // [Internal] Dear ImGui will maintain those fields. Forward compatibility not guaranteed! + //------------------------------------------------------------------ + + ImGuiContext* Ctx; // Parent UI context (needs to be set explicitly by parent). + + // Main Input State + // (this block used to be written by backend, since 1.87 it is best to NOT write to those directly, call the AddXXX functions above instead) + // (reading from those variables is fair game, as they are extremely unlikely to be moving anywhere) + ImVec2 MousePos; // Mouse position, in pixels. Set to ImVec2(-FLT_MAX, -FLT_MAX) if mouse is unavailable (on another screen, etc.) + bool MouseDown[5]; // Mouse buttons: 0=left, 1=right, 2=middle + extras (ImGuiMouseButton_COUNT == 5). Dear ImGui mostly uses left and right buttons. Other buttons allow us to track if the mouse is being used by your application + available to user as a convenience via IsMouse** API. + float MouseWheel; // Mouse wheel Vertical: 1 unit scrolls about 5 lines text. >0 scrolls Up, <0 scrolls Down. Hold SHIFT to turn vertical scroll into horizontal scroll. + float MouseWheelH; // Mouse wheel Horizontal. >0 scrolls Left, <0 scrolls Right. Most users don't have a mouse with a horizontal wheel, may not be filled by all backends. + ImGuiMouseSource MouseSource; // Mouse actual input peripheral (Mouse/TouchScreen/Pen). + bool KeyCtrl; // Keyboard modifier down: Control + bool KeyShift; // Keyboard modifier down: Shift + bool KeyAlt; // Keyboard modifier down: Alt + bool KeySuper; // Keyboard modifier down: Cmd/Super/Windows + + // Other state maintained from data above + IO function calls + ImGuiKeyChord KeyMods; // Key mods flags (any of ImGuiMod_Ctrl/ImGuiMod_Shift/ImGuiMod_Alt/ImGuiMod_Super flags, same as io.KeyCtrl/KeyShift/KeyAlt/KeySuper but merged into flags. DOES NOT CONTAINS ImGuiMod_Shortcut which is pretranslated). Read-only, updated by NewFrame() + ImGuiKeyData KeysData[ImGuiKey_KeysData_SIZE]; // Key state for all known keys. Use IsKeyXXX() functions to access this. + bool WantCaptureMouseUnlessPopupClose; // Alternative to WantCaptureMouse: (WantCaptureMouse == true && WantCaptureMouseUnlessPopupClose == false) when a click over void is expected to close a popup. + ImVec2 MousePosPrev; // Previous mouse position (note that MouseDelta is not necessary == MousePos-MousePosPrev, in case either position is invalid) + ImVec2 MouseClickedPos[5]; // Position at time of clicking + double MouseClickedTime[5]; // Time of last click (used to figure out double-click) + bool MouseClicked[5]; // Mouse button went from !Down to Down (same as MouseClickedCount[x] != 0) + bool MouseDoubleClicked[5]; // Has mouse button been double-clicked? (same as MouseClickedCount[x] == 2) + ImU16 MouseClickedCount[5]; // == 0 (not clicked), == 1 (same as MouseClicked[]), == 2 (double-clicked), == 3 (triple-clicked) etc. when going from !Down to Down + ImU16 MouseClickedLastCount[5]; // Count successive number of clicks. Stays valid after mouse release. Reset after another click is done. + bool MouseReleased[5]; // Mouse button went from Down to !Down + bool MouseDownOwned[5]; // Track if button was clicked inside a dear imgui window or over void blocked by a popup. We don't request mouse capture from the application if click started outside ImGui bounds. + bool MouseDownOwnedUnlessPopupClose[5]; // Track if button was clicked inside a dear imgui window. + bool MouseWheelRequestAxisSwap; // On a non-Mac system, holding SHIFT requests WheelY to perform the equivalent of a WheelX event. On a Mac system this is already enforced by the system. + float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked) + float MouseDownDurationPrev[5]; // Previous time the mouse button has been down + float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point (used for moving thresholds) + float PenPressure; // Touch/Pen pressure (0.0f to 1.0f, should be >0.0f only when MouseDown[0] == true). Helper storage currently unused by Dear ImGui. + bool AppFocusLost; // Only modify via AddFocusEvent() + bool AppAcceptingEvents; // Only modify via SetAppAcceptingEvents() + ImS8 BackendUsingLegacyKeyArrays; // -1: unknown, 0: using AddKeyEvent(), 1: using legacy io.KeysDown[] + bool BackendUsingLegacyNavInputArray; // 0: using AddKeyAnalogEvent(), 1: writing to legacy io.NavInputs[] directly + ImWchar16 InputQueueSurrogate; // For AddInputCharacterUTF16() + ImVector InputQueueCharacters; // Queue of _characters_ input (obtained by platform backend). Fill using AddInputCharacter() helper. + + IMGUI_API ImGuiIO(); +}; + +//----------------------------------------------------------------------------- +// [SECTION] Misc data structures +//----------------------------------------------------------------------------- + +// Shared state of InputText(), passed as an argument to your callback when a ImGuiInputTextFlags_Callback* flag is used. +// The callback function should return 0 by default. +// Callbacks (follow a flag name and see comments in ImGuiInputTextFlags_ declarations for more details) +// - ImGuiInputTextFlags_CallbackEdit: Callback on buffer edit (note that InputText() already returns true on edit, the callback is useful mainly to manipulate the underlying buffer while focus is active) +// - ImGuiInputTextFlags_CallbackAlways: Callback on each iteration +// - ImGuiInputTextFlags_CallbackCompletion: Callback on pressing TAB +// - ImGuiInputTextFlags_CallbackHistory: Callback on pressing Up/Down arrows +// - ImGuiInputTextFlags_CallbackCharFilter: Callback on character inputs to replace or discard them. Modify 'EventChar' to replace or discard, or return 1 in callback to discard. +// - ImGuiInputTextFlags_CallbackResize: Callback on buffer capacity changes request (beyond 'buf_size' parameter value), allowing the string to grow. +struct ImGuiInputTextCallbackData +{ + ImGuiContext* Ctx; // Parent UI context + ImGuiInputTextFlags EventFlag; // One ImGuiInputTextFlags_Callback* // Read-only + ImGuiInputTextFlags Flags; // What user passed to InputText() // Read-only + void* UserData; // What user passed to InputText() // Read-only + + // Arguments for the different callback events + // - To modify the text buffer in a callback, prefer using the InsertChars() / DeleteChars() function. InsertChars() will take care of calling the resize callback if necessary. + // - If you know your edits are not going to resize the underlying buffer allocation, you may modify the contents of 'Buf[]' directly. You need to update 'BufTextLen' accordingly (0 <= BufTextLen < BufSize) and set 'BufDirty'' to true so InputText can update its internal state. + ImWchar EventChar; // Character input // Read-write // [CharFilter] Replace character with another one, or set to zero to drop. return 1 is equivalent to setting EventChar=0; + ImGuiKey EventKey; // Key pressed (Up/Down/TAB) // Read-only // [Completion,History] + char* Buf; // Text buffer // Read-write // [Resize] Can replace pointer / [Completion,History,Always] Only write to pointed data, don't replace the actual pointer! + int BufTextLen; // Text length (in bytes) // Read-write // [Resize,Completion,History,Always] Exclude zero-terminator storage. In C land: == strlen(some_text), in C++ land: string.length() + int BufSize; // Buffer size (in bytes) = capacity+1 // Read-only // [Resize,Completion,History,Always] Include zero-terminator storage. In C land == ARRAYSIZE(my_char_array), in C++ land: string.capacity()+1 + bool BufDirty; // Set if you modify Buf/BufTextLen! // Write // [Completion,History,Always] + int CursorPos; // // Read-write // [Completion,History,Always] + int SelectionStart; // // Read-write // [Completion,History,Always] == to SelectionEnd when no selection) + int SelectionEnd; // // Read-write // [Completion,History,Always] + + // Helper functions for text manipulation. + // Use those function to benefit from the CallbackResize behaviors. Calling those function reset the selection. + IMGUI_API ImGuiInputTextCallbackData(); + IMGUI_API void DeleteChars(int pos, int bytes_count); + IMGUI_API void InsertChars(int pos, const char* text, const char* text_end = NULL); + void SelectAll() { SelectionStart = 0; SelectionEnd = BufTextLen; } + void ClearSelection() { SelectionStart = SelectionEnd = BufTextLen; } + bool HasSelection() const { return SelectionStart != SelectionEnd; } +}; + +// Resizing callback data to apply custom constraint. As enabled by SetNextWindowSizeConstraints(). Callback is called during the next Begin(). +// NB: For basic min/max size constraint on each axis you don't need to use the callback! The SetNextWindowSizeConstraints() parameters are enough. +struct ImGunSizeCallbackData +{ + void* UserData; // Read-only. What user passed to SetNextWindowSizeConstraints(). Generally store an integer or float in here (need reinterpret_cast<>). + ImVec2 Pos; // Read-only. Window position, for reference. + ImVec2 CurrentSize; // Read-only. Current window size. + ImVec2 DesiredSize; // Read-write. Desired size, based on user's mouse position. Write to this field to restrain resizing. +}; + +// Data payload for Drag and Drop operations: AcceptDragDropPayload(), GetDragDropPayload() +struct ImGuiPayload +{ + // Members + void* Data; // Data (copied and owned by dear imgui) + int DataSize; // Data size + + // [Internal] + ImGuiID SourceId; // Source item id + ImGuiID SourceParentId; // Source parent id (if available) + int DataFrameCount; // Data timestamp + char DataType[32 + 1]; // Data type tag (short user-supplied string, 32 characters max) + bool Preview; // Set when AcceptDragDropPayload() was called and mouse has been hovering the target item (nb: handle overlapping drag targets) + bool Delivery; // Set when AcceptDragDropPayload() was called and mouse button is released over the target item. + + ImGuiPayload() { Clear(); } + void Clear() { SourceId = SourceParentId = 0; Data = NULL; DataSize = 0; memset(DataType, 0, sizeof(DataType)); DataFrameCount = -1; Preview = Delivery = false; } + bool IsDataType(const char* type) const { return DataFrameCount != -1 && strcmp(type, DataType) == 0; } + bool IsPreview() const { return Preview; } + bool IsDelivery() const { return Delivery; } +}; + +// Sorting specification for one column of a table (sizeof == 12 bytes) +struct ImGuiTableColumnSortSpecs +{ + ImGuiID ColumnUserID; // User id of the column (if specified by a TableSetupColumn() call) + ImS16 ColumnIndex; // Index of the column + ImS16 SortOrder; // Index within parent ImGuiTableSortSpecs (always stored in order starting from 0, tables sorted on a single criteria will always have a 0 here) + ImGuiSortDirection SortDirection : 8; // ImGuiSortDirection_Ascending or ImGuiSortDirection_Descending (you can use this or SortSign, whichever is more convenient for your sort function) + + ImGuiTableColumnSortSpecs() { memset(this, 0, sizeof(*this)); } +}; + +// Sorting specifications for a table (often handling sort specs for a single column, occasionally more) +// Obtained by calling TableGetSortSpecs(). +// When 'SpecsDirty == true' you can sort your data. It will be true with sorting specs have changed since last call, or the first time. +// Make sure to set 'SpecsDirty = false' after sorting, else you may wastefully sort your data every frame! +struct ImGuiTableSortSpecs +{ + const ImGuiTableColumnSortSpecs* Specs; // Pointer to sort spec array. + int SpecsCount; // Sort spec count. Most often 1. May be > 1 when ImGuiTableFlags_SortMulti is enabled. May be == 0 when ImGuiTableFlags_SortTristate is enabled. + bool SpecsDirty; // Set to true when specs have changed since last time! Use this to sort again, then clear the flag. + + ImGuiTableSortSpecs() { memset(this, 0, sizeof(*this)); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Helpers (ImGuiOnceUponAFrame, ImGuiTextFilter, ImGuiTextBuffer, ImGuiStorage, ImGuiListClipper, Math Operators, ImColor) +//----------------------------------------------------------------------------- + +// Helper: Unicode defines +#define IM_UNICODE_CODEPOINT_INVALID 0xFFFD // Invalid Unicode code point (standard value). +#ifdef IMGUI_USE_WCHAR32 +#define IM_UNICODE_CODEPOINT_MAX 0x10FFFF // Maximum Unicode code point supported by this build. +#else +#define IM_UNICODE_CODEPOINT_MAX 0xFFFF // Maximum Unicode code point supported by this build. +#endif + +// Helper: Execute a block of code at maximum once a frame. Convenient if you want to quickly create a UI within deep-nested code that runs multiple times every frame. +// Usage: static ImGuiOnceUponAFrame oaf; if (oaf) ImGui::Text("This will be called only once per frame"); +struct ImGuiOnceUponAFrame +{ + ImGuiOnceUponAFrame() { RefFrame = -1; } + mutable int RefFrame; + operator bool() const { int current_frame = ImGui::GetFrameCount(); if (RefFrame == current_frame) return false; RefFrame = current_frame; return true; } +}; + +// Helper: Parse and apply text filters. In format "aaaaa[,bbbb][,ccccc]" +struct ImGuiTextFilter +{ + IMGUI_API ImGuiTextFilter(const char* default_filter = ""); + IMGUI_API bool Draw(const char* label = "Filter (inc,-exc)", float width = 0.0f); // Helper calling InputText+Build + IMGUI_API bool PassFilter(const char* text, const char* text_end = NULL) const; + IMGUI_API void Build(); + void Clear() { InputBuf[0] = 0; Build(); } + bool IsActive() const { return !Filters.empty(); } + + // [Internal] + struct ImGuiTextRange + { + const char* b; + const char* e; + + ImGuiTextRange() { b = e = NULL; } + ImGuiTextRange(const char* _b, const char* _e) { b = _b; e = _e; } + bool empty() const { return b == e; } + IMGUI_API void split(char separator, ImVector* out) const; + }; + char InputBuf[256]; + ImVectorFilters; + int CountGrep; +}; + +// Helper: Growable text buffer for logging/accumulating text +// (this could be called 'ImGuiTextBuilder' / 'ImGuiStringBuilder') +struct ImGuiTextBuffer +{ + ImVector Buf; + IMGUI_API static char EmptyString[1]; + + ImGuiTextBuffer() { } + inline char operator[](int i) const { IM_ASSERT(Buf.Data != NULL); return Buf.Data[i]; } + const char* begin() const { return Buf.Data ? &Buf.front() : EmptyString; } + const char* end() const { return Buf.Data ? &Buf.back() : EmptyString; } // Buf is zero-terminated, so end() will point on the zero-terminator + int size() const { return Buf.Size ? Buf.Size - 1 : 0; } + bool empty() const { return Buf.Size <= 1; } + void clear() { Buf.clear(); } + void reserve(int capacity) { Buf.reserve(capacity); } + const char* c_str() const { return Buf.Data ? Buf.Data : EmptyString; } + IMGUI_API void append(const char* str, const char* str_end = NULL); + IMGUI_API void appendf(const char* fmt, ...) IM_FMTARGS(2); + IMGUI_API void appendfv(const char* fmt, va_list args) IM_FMTLIST(2); +}; + +// Helper: Key->Value storage +// Typically you don't have to worry about this since a storage is held within each Window. +// We use it to e.g. store collapse state for a tree (Int 0/1) +// This is optimized for efficient lookup (dichotomy into a contiguous buffer) and rare insertion (typically tied to user interactions aka max once a frame) +// You can use it as custom user storage for temporary values. Declare your own storage if, for example: +// - You want to manipulate the open/close state of a particular sub-tree in your interface (tree node uses Int 0/1 to store their state). +// - You want to store custom debug data easily without adding or editing structures in your code (probably not efficient, but convenient) +// Types are NOT stored, so it is up to you to make sure your Key don't collide with different types. +struct ImGuiStorage +{ + // [Internal] + struct ImGuiStoragePair + { + ImGuiID key; + union { int val_i; float val_f; void* val_p; }; + ImGuiStoragePair(ImGuiID _key, int _val_i) { key = _key; val_i = _val_i; } + ImGuiStoragePair(ImGuiID _key, float _val_f) { key = _key; val_f = _val_f; } + ImGuiStoragePair(ImGuiID _key, void* _val_p) { key = _key; val_p = _val_p; } + }; + + ImVector Data; + + // - Get***() functions find pair, never add/allocate. Pairs are sorted so a query is O(log N) + // - Set***() functions find pair, insertion on demand if missing. + // - Sorted insertion is costly, paid once. A typical frame shouldn't need to insert any new pair. + void Clear() { Data.clear(); } + IMGUI_API int GetInt(ImGuiID key, int default_val = 0) const; + IMGUI_API void SetInt(ImGuiID key, int val); + IMGUI_API bool GetBool(ImGuiID key, bool default_val = false) const; + IMGUI_API void SetBool(ImGuiID key, bool val); + IMGUI_API float GetFloat(ImGuiID key, float default_val = 0.0f) const; + IMGUI_API void SetFloat(ImGuiID key, float val); + IMGUI_API void* GetVoidPtr(ImGuiID key) const; // default_val is NULL + IMGUI_API void SetVoidPtr(ImGuiID key, void* val); + + // - Get***Ref() functions finds pair, insert on demand if missing, return pointer. Useful if you intend to do Get+Set. + // - References are only valid until a new value is added to the storage. Calling a Set***() function or a Get***Ref() function invalidates the pointer. + // - A typical use case where this is convenient for quick hacking (e.g. add storage during a live Edit&Continue session if you can't modify existing struct) + // float* pvar = ImGui::GetFloatRef(key); ImGui::SliderFloat("var", pvar, 0, 100.0f); some_var += *pvar; + IMGUI_API int* GetIntRef(ImGuiID key, int default_val = 0); + IMGUI_API bool* GetBoolRef(ImGuiID key, bool default_val = false); + IMGUI_API float* GetFloatRef(ImGuiID key, float default_val = 0.0f); + IMGUI_API void** GetVoidPtrRef(ImGuiID key, void* default_val = NULL); + + // Use on your own storage if you know only integer are being stored (open/close all tree nodes) + IMGUI_API void SetAllInt(int val); + + // For quicker full rebuild of a storage (instead of an incremental one), you may add all your contents and then sort once. + IMGUI_API void BuildSortByKey(); +}; + +// Helper: Manually clip large list of items. +// If you have lots evenly spaced items and you have random access to the list, you can perform coarse +// clipping based on visibility to only submit items that are in view. +// The clipper calculates the range of visible items and advance the cursor to compensate for the non-visible items we have skipped. +// (Dear ImGui already clip items based on their bounds but: it needs to first layout the item to do so, and generally +// fetching/submitting your own data incurs additional cost. Coarse clipping using ImGuiListClipper allows you to easily +// scale using lists with tens of thousands of items without a problem) +// Usage: +// ImGuiListClipper clipper; +// clipper.Begin(1000); // We have 1000 elements, evenly spaced. +// while (clipper.Step()) +// for (int i = clipper.DisplayStart; i < clipper.DisplayEnd; i++) +// ImGui::Text("line number %d", i); +// Generally what happens is: +// - Clipper lets you process the first element (DisplayStart = 0, DisplayEnd = 1) regardless of it being visible or not. +// - User code submit that one element. +// - Clipper can measure the height of the first element +// - Clipper calculate the actual range of elements to display based on the current clipping rectangle, position the cursor before the first visible element. +// - User code submit visible elements. +// - The clipper also handles various subtleties related to keyboard/gamepad navigation, wrapping etc. +struct ImGuiListClipper +{ + ImGuiContext* Ctx; // Parent UI context + int DisplayStart; // First item to display, updated by each call to Step() + int DisplayEnd; // End of items to display (exclusive) + int ItemsCount; // [Internal] Number of items + float ItemsHeight; // [Internal] Height of item after a first step and item submission can calculate it + float StartPosY; // [Internal] Cursor position at the time of Begin() or after table frozen rows are all processed + void* TempData; // [Internal] Internal data + + // items_count: Use INT_MAX if you don't know how many items you have (in which case the cursor won't be advanced in the final step) + // items_height: Use -1.0f to be calculated automatically on first step. Otherwise pass in the distance between your items, typically GetTextLineHeightWithSpacing() or GetFrameHeightWithSpacing(). + IMGUI_API ImGuiListClipper(); + IMGUI_API ~ImGuiListClipper(); + IMGUI_API void Begin(int items_count, float items_height = -1.0f); + IMGUI_API void End(); // Automatically called on the last call of Step() that returns false. + IMGUI_API bool Step(); // Call until it returns false. The DisplayStart/DisplayEnd fields will be set and you can process/draw those items. + + // Call IncludeItemByIndex() or IncludeItemsByIndex() *BEFORE* first call to Step() if you need a range of items to not be clipped, regardless of their visibility. + // (Due to alignment / padding of certain items it is possible that an extra item may be included on either end of the display range). + inline void IncludeItemByIndex(int item_index) { IncludeItemsByIndex(item_index, item_index + 1); } + IMGUI_API void IncludeItemsByIndex(int item_begin, int item_end); // item_end is exclusive e.g. use (42, 42+1) to make item 42 never clipped. + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + inline void IncludeRangeByIndices(int item_begin, int item_end) { IncludeItemsByIndex(item_begin, item_end); } // [renamed in 1.89.9] + inline void ForceDisplayRangeByIndices(int item_begin, int item_end) { IncludeItemsByIndex(item_begin, item_end); } // [renamed in 1.89.6] + //inline ImGuiListClipper(int items_count, float items_height = -1.0f) { memset(this, 0, sizeof(*this)); ItemsCount = -1; Begin(items_count, items_height); } // [removed in 1.79] +#endif +}; + +// Helpers: ImVec2/ImVec4 operators +// - It is important that we are keeping those disabled by default so they don't leak in user space. +// - This is in order to allow user enabling implicit cast operators between ImVec2/ImVec4 and their own types (using IM_VEC2_CLASS_EXTRA in imconfig.h) +// - You can use '#define IMGUI_DEFINE_MATH_OPERATORS' to import our operators, provided as a courtesy. +#ifdef IMGUI_DEFINE_MATH_OPERATORS +#define IMGUI_DEFINE_MATH_OPERATORS_IMPLEMENTED +IM_MSVC_RUNTIME_CHECKS_OFF +static inline ImVec2 operator*(const ImVec2& lhs, const float rhs) { return ImVec2(lhs.x * rhs, lhs.y * rhs); } +static inline ImVec2 operator/(const ImVec2& lhs, const float rhs) { return ImVec2(lhs.x / rhs, lhs.y / rhs); } +static inline ImVec2 operator+(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x + rhs.x, lhs.y + rhs.y); } +static inline ImVec2 operator-(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x - rhs.x, lhs.y - rhs.y); } +static inline ImVec2 operator*(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x * rhs.x, lhs.y * rhs.y); } +static inline ImVec2 operator/(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x / rhs.x, lhs.y / rhs.y); } +static inline ImVec2 operator-(const ImVec2& lhs) { return ImVec2(-lhs.x, -lhs.y); } +static inline ImVec2& operator*=(ImVec2& lhs, const float rhs) { lhs.x *= rhs; lhs.y *= rhs; return lhs; } +static inline ImVec2& operator/=(ImVec2& lhs, const float rhs) { lhs.x /= rhs; lhs.y /= rhs; return lhs; } +static inline ImVec2& operator+=(ImVec2& lhs, const ImVec2& rhs) { lhs.x += rhs.x; lhs.y += rhs.y; return lhs; } +static inline ImVec2& operator-=(ImVec2& lhs, const ImVec2& rhs) { lhs.x -= rhs.x; lhs.y -= rhs.y; return lhs; } +static inline ImVec2& operator*=(ImVec2& lhs, const ImVec2& rhs) { lhs.x *= rhs.x; lhs.y *= rhs.y; return lhs; } +static inline ImVec2& operator/=(ImVec2& lhs, const ImVec2& rhs) { lhs.x /= rhs.x; lhs.y /= rhs.y; return lhs; } +static inline ImVec4 operator+(const ImVec4& lhs, const ImVec4& rhs) { return ImVec4(lhs.x + rhs.x, lhs.y + rhs.y, lhs.z + rhs.z, lhs.w + rhs.w); } +static inline ImVec4 operator-(const ImVec4& lhs, const ImVec4& rhs) { return ImVec4(lhs.x - rhs.x, lhs.y - rhs.y, lhs.z - rhs.z, lhs.w - rhs.w); } +static inline ImVec4 operator*(const ImVec4& lhs, const ImVec4& rhs) { return ImVec4(lhs.x * rhs.x, lhs.y * rhs.y, lhs.z * rhs.z, lhs.w * rhs.w); } +IM_MSVC_RUNTIME_CHECKS_RESTORE +#endif + +// Helpers macros to generate 32-bit encoded colors +// User can declare their own format by #defining the 5 _SHIFT/_MASK macros in their imconfig file. +#ifndef IM_COL32_R_SHIFT +#ifdef IMGUI_USE_BGRA_PACKED_COLOR +#define IM_COL32_R_SHIFT 16 +#define IM_COL32_G_SHIFT 8 +#define IM_COL32_B_SHIFT 0 +#define IM_COL32_A_SHIFT 24 +#define IM_COL32_A_MASK 0xFF000000 +#else +#define IM_COL32_R_SHIFT 0 +#define IM_COL32_G_SHIFT 8 +#define IM_COL32_B_SHIFT 16 +#define IM_COL32_A_SHIFT 24 +#define IM_COL32_A_MASK 0xFF000000 +#endif +#endif +#define IM_COL32(R,G,B,A) (((ImU32)(A)<> IM_COL32_R_SHIFT) & 0xFF) * (1.0f / 255.0f), (float)((rgba >> IM_COL32_G_SHIFT) & 0xFF) * (1.0f / 255.0f), (float)((rgba >> IM_COL32_B_SHIFT) & 0xFF) * (1.0f / 255.0f), (float)((rgba >> IM_COL32_A_SHIFT) & 0xFF) * (1.0f / 255.0f)) {} + inline operator ImU32() const { return ImGui::ColorConvertFloat4ToU32(Value); } + inline operator ImVec4() const { return Value; } + + // FIXME-OBSOLETE: May need to obsolete/cleanup those helpers. + inline void SetHSV(float h, float s, float v, float a = 1.0f){ ImGui::ColorConvertHSVtoRGB(h, s, v, Value.x, Value.y, Value.z); Value.w = a; } + static ImColor HSV(float h, float s, float v, float a = 1.0f) { float r, g, b; ImGui::ColorConvertHSVtoRGB(h, s, v, r, g, b); return ImColor(r, g, b, a); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Drawing API (ImDrawCmd, ImDrawIdx, ImDrawVert, ImDrawChannel, ImDrawListSplitter, ImDrawListFlags, ImDrawList, ImDrawData) +// Hold a series of drawing commands. The user provides a renderer for ImDrawData which essentially contains an array of ImDrawList. +//----------------------------------------------------------------------------- + +// The maximum line width to bake anti-aliased textures for. Build atlas with ImFontAtlasFlags_NoBakedLines to disable baking. +#ifndef IM_DRAWLIST_TEX_LINES_WIDTH_MAX +#define IM_DRAWLIST_TEX_LINES_WIDTH_MAX (63) +#endif + +// ImDrawCallback: Draw callbacks for advanced uses [configurable type: override in imconfig.h] +// NB: You most likely do NOT need to use draw callbacks just to create your own widget or customized UI rendering, +// you can poke into the draw list for that! Draw callback may be useful for example to: +// A) Change your GPU render state, +// B) render a complex 3D scene inside a UI element without an intermediate texture/render target, etc. +// The expected behavior from your rendering function is 'if (cmd.UserCallback != NULL) { cmd.UserCallback(parent_list, cmd); } else { RenderTriangles() }' +// If you want to override the signature of ImDrawCallback, you can simply use e.g. '#define ImDrawCallback MyDrawCallback' (in imconfig.h) + update rendering backend accordingly. +#ifndef ImDrawCallback +typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); +#endif + +// Special Draw callback value to request renderer backend to reset the graphics/render state. +// The renderer backend needs to handle this special value, otherwise it will crash trying to call a function at this address. +// This is useful for example if you submitted callbacks which you know have altered the render state and you want it to be restored. +// It is not done by default because they are many perfectly useful way of altering render state for imgui contents (e.g. changing shader/blending settings before an Image call). +#define ImDrawCallback_ResetRenderState (ImDrawCallback)(-1) + +// Typically, 1 command = 1 GPU draw call (unless command is a callback) +// - VtxOffset: When 'io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset' is enabled, +// this fields allow us to render meshes larger than 64K vertices while keeping 16-bit indices. +// Backends made for <1.71. will typically ignore the VtxOffset fields. +// - The ClipRect/TextureId/VtxOffset fields must be contiguous as we memcmp() them together (this is asserted for). +struct ImDrawCmd +{ + ImVec4 ClipRect; // 4*4 // Clipping rectangle (x1, y1, x2, y2). Subtract ImDrawData->DisplayPos to get clipping rectangle in "viewport" coordinates + ImTextureID TextureId; // 4-8 // User-provided texture ID. Set by user in ImfontAtlas::SetTexID() for fonts or passed to Image*() functions. Ignore if never using images or multiple fonts atlas. + unsigned int VtxOffset; // 4 // Start offset in vertex buffer. ImGuiBackendFlags_RendererHasVtxOffset: always 0, otherwise may be >0 to support meshes larger than 64K vertices with 16-bit indices. + unsigned int IdxOffset; // 4 // Start offset in index buffer. + unsigned int ElemCount; // 4 // Number of indices (multiple of 3) to be rendered as triangles. Vertices are stored in the callee ImDrawList's vtx_buffer[] array, indices in idx_buffer[]. + ImDrawCallback UserCallback; // 4-8 // If != NULL, call the function instead of rendering the vertices. clip_rect and texture_id will be set normally. + void* UserCallbackData; // 4-8 // The draw callback code can access this. + + ImDrawCmd() { memset(this, 0, sizeof(*this)); } // Also ensure our padding fields are zeroed + + // Since 1.83: returns ImTextureID associated with this draw call. Warning: DO NOT assume this is always same as 'TextureId' (we will change this function for an upcoming feature) + inline ImTextureID GetTexID() const { return TextureId; } +}; + +// Vertex layout +#ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT +struct ImDrawVert +{ + ImVec2 pos; + ImVec2 uv; + ImU32 col; +}; +#else +// You can override the vertex format layout by defining IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT in imconfig.h +// The code expect ImVec2 pos (8 bytes), ImVec2 uv (8 bytes), ImU32 col (4 bytes), but you can re-order them or add other fields as needed to simplify integration in your engine. +// The type has to be described within the macro (you can either declare the struct or use a typedef). This is because ImVec2/ImU32 are likely not declared at the time you'd want to set your type up. +// NOTE: IMGUI DOESN'T CLEAR THE STRUCTURE AND DOESN'T CALL A CONSTRUCTOR SO ANY CUSTOM FIELD WILL BE UNINITIALIZED. IF YOU ADD EXTRA FIELDS (SUCH AS A 'Z' COORDINATES) YOU WILL NEED TO CLEAR THEM DURING RENDER OR TO IGNORE THEM. +IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT; +#endif + +// [Internal] For use by ImDrawList +struct ImDrawCmdHeader +{ + ImVec4 ClipRect; + ImTextureID TextureId; + unsigned int VtxOffset; +}; + +// [Internal] For use by ImDrawListSplitter +struct ImDrawChannel +{ + ImVector _CmdBuffer; + ImVector _IdxBuffer; +}; + + +// Split/Merge functions are used to split the draw list into different layers which can be drawn into out of order. +// This is used by the Columns/Tables API, so items of each column can be batched together in a same draw call. +struct ImDrawListSplitter +{ + int _Current; // Current channel number (0) + int _Count; // Number of active channels (1+) + ImVector _Channels; // Draw channels (not resized down so _Count might be < Channels.Size) + + inline ImDrawListSplitter() { memset(this, 0, sizeof(*this)); } + inline ~ImDrawListSplitter() { ClearFreeMemory(); } + inline void Clear() { _Current = 0; _Count = 1; } // Do not clear Channels[] so our allocations are reused next frame + IMGUI_API void ClearFreeMemory(); + IMGUI_API void Split(ImDrawList* draw_list, int count); + IMGUI_API void Merge(ImDrawList* draw_list); + IMGUI_API void SetCurrentChannel(ImDrawList* draw_list, int channel_idx); +}; + +// Flags for ImDrawList functions +// (Legacy: bit 0 must always correspond to ImDrawFlags_Closed to be backward compatible with old API using a bool. Bits 1..3 must be unused) +enum ImDrawFlags_ +{ + ImDrawFlags_None = 0, + ImDrawFlags_Closed = 1 << 0, // PathStroke(), AddPolyline(): specify that shape should be closed (Important: this is always == 1 for legacy reason) + ImDrawFlags_RoundCornersTopLeft = 1 << 4, // AddRect(), AddRectFilled(), PathRect(): enable rounding top-left corner only (when rounding > 0.0f, we default to all corners). Was 0x01. + ImDrawFlags_RoundCornersTopRight = 1 << 5, // AddRect(), AddRectFilled(), PathRect(): enable rounding top-right corner only (when rounding > 0.0f, we default to all corners). Was 0x02. + ImDrawFlags_RoundCornersBottomLeft = 1 << 6, // AddRect(), AddRectFilled(), PathRect(): enable rounding bottom-left corner only (when rounding > 0.0f, we default to all corners). Was 0x04. + ImDrawFlags_RoundCornersBottomRight = 1 << 7, // AddRect(), AddRectFilled(), PathRect(): enable rounding bottom-right corner only (when rounding > 0.0f, we default to all corners). Wax 0x08. + ImDrawFlags_RoundCornersNone = 1 << 8, // AddRect(), AddRectFilled(), PathRect(): disable rounding on all corners (when rounding > 0.0f). This is NOT zero, NOT an implicit flag! + ImDrawFlags_RoundCornersTop = ImDrawFlags_RoundCornersTopLeft | ImDrawFlags_RoundCornersTopRight, + ImDrawFlags_RoundCornersBottom = ImDrawFlags_RoundCornersBottomLeft | ImDrawFlags_RoundCornersBottomRight, + ImDrawFlags_RoundCornersLeft = ImDrawFlags_RoundCornersBottomLeft | ImDrawFlags_RoundCornersTopLeft, + ImDrawFlags_RoundCornersRight = ImDrawFlags_RoundCornersBottomRight | ImDrawFlags_RoundCornersTopRight, + ImDrawFlags_RoundCornersAll = ImDrawFlags_RoundCornersTopLeft | ImDrawFlags_RoundCornersTopRight | ImDrawFlags_RoundCornersBottomLeft | ImDrawFlags_RoundCornersBottomRight, + ImDrawFlags_RoundCornersDefault_ = ImDrawFlags_RoundCornersAll, // Default to ALL corners if none of the _RoundCornersXX flags are specified. + ImDrawFlags_RoundCornersMask_ = ImDrawFlags_RoundCornersAll | ImDrawFlags_RoundCornersNone, + ImDrawFlags_ShadowCutOutShapeBackground = 1 << 9, // Do not render the shadow shape under the objects to be shadowed to save on fill-rate or facilitate blending. Slower on CPU. +}; + +// Flags for ImDrawList instance. Those are set automatically by ImGui:: functions from ImGuiIO settings, and generally not manipulated directly. +// It is however possible to temporarily alter flags between calls to ImDrawList:: functions. +enum ImDrawListFlags_ +{ + ImDrawListFlags_None = 0, + ImDrawListFlags_AntiAliasedLines = 1 << 0, // Enable anti-aliased lines/borders (*2 the number of triangles for 1.0f wide line or lines thin enough to be drawn using textures, otherwise *3 the number of triangles) + ImDrawListFlags_AntiAliasedLinesUseTex = 1 << 1, // Enable anti-aliased lines/borders using textures when possible. Require backend to render with bilinear filtering (NOT point/nearest filtering). + ImDrawListFlags_AntiAliasedFill = 1 << 2, // Enable anti-aliased edge around filled shapes (rounded rectangles, circles). + ImDrawListFlags_AllowVtxOffset = 1 << 3, // Can emit 'VtxOffset > 0' to allow large meshes. Set when 'ImGuiBackendFlags_RendererHasVtxOffset' is enabled. +}; + +// Draw command list +// This is the low-level list of polygons that ImGui:: functions are filling. At the end of the frame, +// all command lists are passed to your ImGuiIO::RenderDrawListFn function for rendering. +// Each dear imgui window contains its own ImDrawList. You can use ImGui::GetWindowDrawList() to +// access the current window draw list and draw custom primitives. +// You can interleave normal ImGui:: calls and adding primitives to the current draw list. +// In single viewport mode, top-left is == GetMainViewport()->Pos (generally 0,0), bottom-right is == GetMainViewport()->Pos+Size (generally io.DisplaySize). +// You are totally free to apply whatever transformation matrix to want to the data (depending on the use of the transformation you may want to apply it to ClipRect as well!) +// Important: Primitives are always added to the list and not culled (culling is done at higher-level by ImGui:: functions), if you use this API a lot consider coarse culling your drawn objects. +struct ImDrawList +{ + // This is what you have to render + ImVector CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw call, unless the command is a callback. + ImVector IdxBuffer; // Index buffer. Each command consume ImDrawCmd::ElemCount of those + ImVector VtxBuffer; // Vertex buffer. + ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-aliasing settings per-primitive. + + // [Internal, used while building lists] + unsigned int _VtxCurrentIdx; // [Internal] generally == VtxBuffer.Size unless we are past 64K vertices, in which case this gets reset to 0. + ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::GetDrawListSharedData() to get the one from current ImGui context) + const char* _OwnerName; // Pointer to owner window's name for debugging + ImDrawVert* _VtxWritePtr; // [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + ImDrawIdx* _IdxWritePtr; // [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + ImVector _ClipRectStack; // [Internal] + ImVector _TextureIdStack; // [Internal] + ImVector _Path; // [Internal] current path building + ImDrawCmdHeader _CmdHeader; // [Internal] template of active commands. Fields should match those of CmdBuffer.back(). + ImDrawListSplitter _Splitter; // [Internal] for channels api (note: prefer using your own persistent instance of ImDrawListSplitter!) + float _FringeScale; // [Internal] anti-alias fringe is scaled by this value, this helps to keep things sharp while zooming at vertex buffer content + + // If you want to create ImDrawList instances, pass them ImGui::GetDrawListSharedData() or create and use your own ImDrawListSharedData (so you can use ImDrawList without ImGui) + ImDrawList(ImDrawListSharedData* shared_data) { memset(this, 0, sizeof(*this)); _Data = shared_data; } + + ~ImDrawList() { _ClearFreeMemory(); } + IMGUI_API void PushClipRect(const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersect_with_current_clip_rect = false); // Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling) + IMGUI_API void PushClipRectFullScreen(); + IMGUI_API void PopClipRect(); + IMGUI_API void PushTextureID(ImTextureID texture_id); + IMGUI_API void PopTextureID(); + inline ImVec2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.x, cr.y); } + inline ImVec2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.z, cr.w); } + + // Primitives + // - Filled shapes must always use clockwise winding order. The anti-aliasing fringe depends on it. Counter-clockwise shapes will have "inward" anti-aliasing. + // - For rectangular primitives, "p_min" and "p_max" represent the upper-left and lower-right corners. + // - For circle primitives, use "num_segments == 0" to automatically calculate tessellation (preferred). + // In older versions (until Dear ImGui 1.77) the AddCircle functions defaulted to num_segments == 12. + // In future versions we will use textures to provide cheaper and higher-quality circles. + // Use AddNgon() and AddNgonFilled() functions if you need to guarantee a specific number of sides. + IMGUI_API void AddLine(const ImVec2& p1, const ImVec2& p2, ImU32 col, float thickness = 1.0f); + IMGUI_API void AddRect(const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding = 0.0f, ImDrawFlags flags = 0, float thickness = 1.0f); // a: upper-left, b: lower-right (== upper-left + size) + IMGUI_API void AddRectFilled(const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding = 0.0f, ImDrawFlags flags = 0); // a: upper-left, b: lower-right (== upper-left + size) + IMGUI_API void AddRectFilledMultiColor(const ImVec2& p_min, const ImVec2& p_max, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left); + // modified by asphyxia + IMGUI_API void AddRectFilledMultiColorRounded(const ImVec2& p_min, const ImVec2& p_max, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left, float rounding, ImDrawFlags flags); + IMGUI_API void AddQuad(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, ImU32 col, float thickness = 1.0f); + IMGUI_API void AddQuadFilled(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, ImU32 col); + IMGUI_API void AddTriangle(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col, float thickness = 1.0f); + IMGUI_API void AddTriangleFilled(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col); + IMGUI_API void AddCircle(const ImVec2& center, float radius, ImU32 col, int num_segments = 0, float thickness = 1.0f); + IMGUI_API void AddCircleFilled(const ImVec2& center, float radius, ImU32 col, int num_segments = 0); + IMGUI_API void AddNgon(const ImVec2& center, float radius, ImU32 col, int num_segments, float thickness = 1.0f); + IMGUI_API void AddNgonFilled(const ImVec2& center, float radius, ImU32 col, int num_segments); + IMGUI_API void AddText(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL); + IMGUI_API void AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL, float wrap_width = 0.0f, const ImVec4* cpu_fine_clip_rect = NULL); + // modified by asphyxia + IMGUI_API void AddMultiColorText(const ImFont* pFont, const float flFontSize, const ImVec2& vecPosition, const char* szText, const ImU32 colRight, const ImU32 colLeft); + IMGUI_API void AddPolyline(const ImVec2* points, int num_points, ImU32 col, ImDrawFlags flags, float thickness); + IMGUI_API void AddConvexPolyFilled(const ImVec2* points, int num_points, ImU32 col); + IMGUI_API void AddBezierCubic(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, ImU32 col, float thickness, int num_segments = 0); // Cubic Bezier (4 control points) + IMGUI_API void AddBezierQuadratic(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col, float thickness, int num_segments = 0); // Quadratic Bezier (3 control points) + + // Image primitives + // - Read FAQ to understand what ImTextureID is. + // - "p_min" and "p_max" represent the upper-left and lower-right corners of the rectangle. + // - "uv_min" and "uv_max" represent the normalized texture coordinates to use for those corners. Using (0,0)->(1,1) texture coordinates will generally display the entire texture. + IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2& p_max, const ImVec2& uv_min = ImVec2(0, 0), const ImVec2& uv_max = ImVec2(1, 1), ImU32 col = IM_COL32_WHITE); + IMGUI_API void AddImageQuad(ImTextureID user_texture_id, const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, const ImVec2& uv1 = ImVec2(0, 0), const ImVec2& uv2 = ImVec2(1, 0), const ImVec2& uv3 = ImVec2(1, 1), const ImVec2& uv4 = ImVec2(0, 1), ImU32 col = IM_COL32_WHITE); + IMGUI_API void AddImageRounded(ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2& p_max, const ImVec2& uv_min, const ImVec2& uv_max, ImU32 col, float rounding, ImDrawFlags flags = 0); + + // Shadows primitives + // [BETA] API + // - Add shadow for a object, with min/max or center/radius describing the object extents, and offset shifting the shadow. + // - Rounding parameters refer to the object itself, not the shadow! + // - By default, the area under the object is filled, because this is simpler to process. + // Using the ImDrawFlags_ShadowCutOutShapeBackground flag makes the function not render this area and leave a hole under the object. + // - Shadows w/ fill under the object: a bit faster for CPU, more pixels rendered, visible/darkening if used behind a transparent shape. + // Typically used by: small, frequent objects, opaque objects, transparent objects if shadow darkening isn't an issue. + // - Shadows w/ hole under the object: a bit slower for CPU, less pixels rendered, no difference if used behind a transparent shape. + // Typically used by: large, infrequent objects, transparent objects if exact blending/color matter. + // - FIXME-SHADOWS: 'offset' + ImDrawFlags_ShadowCutOutShapeBackground are not currently supported together with AddShadowCircle(), AddShadowConvexPoly(), AddShadowNGon(). + #define IMGUI_HAS_SHADOWS 1 + IMGUI_API void AddShadowRect(const ImVec2& obj_min, const ImVec2& obj_max, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, ImDrawFlags flags = 0, float obj_rounding = 0.0f); + IMGUI_API void AddShadowCircle(const ImVec2& obj_center, float obj_radius, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, ImDrawFlags flags = 0, int obj_num_segments = 12); + IMGUI_API void AddShadowConvexPoly(const ImVec2* points, int points_count, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, ImDrawFlags flags = 0); + IMGUI_API void AddShadowNGon(const ImVec2& obj_center, float obj_radius, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, ImDrawFlags flags, int obj_num_segments); + + // Stateful path API, add points then finish with PathFillConvex() or PathStroke() + // - Filled shapes must always use clockwise winding order. The anti-aliasing fringe depends on it. Counter-clockwise shapes will have "inward" anti-aliasing. + inline void PathClear() { _Path.Size = 0; } + inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos); } + inline void PathLineToMergeDuplicate(const ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path.Data[_Path.Size - 1], &pos, 8) != 0) _Path.push_back(pos); } + inline void PathFillConvex(ImU32 col) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); _Path.Size = 0; } + inline void PathStroke(ImU32 col, ImDrawFlags flags = 0, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, flags, thickness); _Path.Size = 0; } + IMGUI_API void PathArcTo(const ImVec2& center, float radius, float a_min, float a_max, int num_segments = 0); + IMGUI_API void PathArcToFast(const ImVec2& center, float radius, int a_min_of_12, int a_max_of_12); // Use precomputed angles for a 12 steps circle + IMGUI_API void PathBezierCubicCurveTo(const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, int num_segments = 0); // Cubic Bezier (4 control points) + IMGUI_API void PathBezierQuadraticCurveTo(const ImVec2& p2, const ImVec2& p3, int num_segments = 0); // Quadratic Bezier (3 control points) + IMGUI_API void PathRect(const ImVec2& rect_min, const ImVec2& rect_max, float rounding = 0.0f, ImDrawFlags flags = 0); + + // Advanced + IMGUI_API void AddCallback(ImDrawCallback callback, void* callback_data); // Your rendering function must check for 'UserCallback' in ImDrawCmd and call the function instead of rendering triangles. + IMGUI_API void AddDrawCmd(); // This is useful if you need to forcefully create a new draw call (to allow for dependent rendering / blending). Otherwise primitives are merged into the same draw-call as much as possible + IMGUI_API ImDrawList* CloneOutput() const; // Create a clone of the CmdBuffer/IdxBuffer/VtxBuffer. + + // Advanced: Channels + // - Use to split render into layers. By switching channels to can render out-of-order (e.g. submit FG primitives before BG primitives) + // - Use to minimize draw calls (e.g. if going back-and-forth between multiple clipping rectangles, prefer to append into separate channels then merge at the end) + // - This API shouldn't have been in ImDrawList in the first place! + // Prefer using your own persistent instance of ImDrawListSplitter as you can stack them. + // Using the ImDrawList::ChannelsXXXX you cannot stack a split over another. + inline void ChannelsSplit(int count) { _Splitter.Split(this, count); } + inline void ChannelsMerge() { _Splitter.Merge(this); } + inline void ChannelsSetCurrent(int n) { _Splitter.SetCurrentChannel(this, n); } + + // Advanced: Primitives allocations + // - We render triangles (three vertices) + // - All primitives needs to be reserved via PrimReserve() beforehand. + IMGUI_API void PrimReserve(int idx_count, int vtx_count); + IMGUI_API void PrimUnreserve(int idx_count, int vtx_count); + IMGUI_API void PrimRect(const ImVec2& a, const ImVec2& b, ImU32 col); // Axis aligned rectangle (composed of two triangles) + IMGUI_API void PrimRectUV(const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col); + IMGUI_API void PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col); + inline void PrimWriteVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { _VtxWritePtr->pos = pos; _VtxWritePtr->uv = uv; _VtxWritePtr->col = col; _VtxWritePtr++; _VtxCurrentIdx++; } + inline void PrimWriteIdx(ImDrawIdx idx) { *_IdxWritePtr = idx; _IdxWritePtr++; } + inline void PrimVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { PrimWriteIdx((ImDrawIdx)_VtxCurrentIdx); PrimWriteVtx(pos, uv, col); } // Write vertex with unique index + + // Obsolete names + //inline void AddBezierCurve(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, ImU32 col, float thickness, int num_segments = 0) { AddBezierCubic(p1, p2, p3, p4, col, thickness, num_segments); } // OBSOLETED in 1.80 (Jan 2021) + //inline void PathBezierCurveTo(const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, int num_segments = 0) { PathBezierCubicCurveTo(p2, p3, p4, num_segments); } // OBSOLETED in 1.80 (Jan 2021) + + // [Internal helpers] + IMGUI_API void _ResetForNewFrame(); + IMGUI_API void _ClearFreeMemory(); + IMGUI_API void _PopUnusedDrawCmd(); + IMGUI_API void _TryMergeDrawCmds(); + IMGUI_API void _OnChangedClipRect(); + IMGUI_API void _OnChangedTextureID(); + IMGUI_API void _OnChangedVtxOffset(); + IMGUI_API int _CalcCircleAutoSegmentCount(float radius) const; + IMGUI_API void _PathArcToFastEx(const ImVec2& center, float radius, int a_min_sample, int a_max_sample, int a_step); + IMGUI_API void _PathArcToN(const ImVec2& center, float radius, float a_min, float a_max, int num_segments); +}; + +// All draw data to render a Dear ImGui frame +// (NB: the style and the naming convention here is a little inconsistent, we currently preserve them for backward compatibility purpose, +// as this is one of the oldest structure exposed by the library! Basically, ImDrawList == CmdList) +struct ImDrawData +{ + bool Valid; // Only valid after Render() is called and before the next NewFrame() is called. + int CmdListsCount; // Number of ImDrawList* to render (should always be == CmdLists.size) + int TotalIdxCount; // For convenience, sum of all ImDrawList's IdxBuffer.Size + int TotalVtxCount; // For convenience, sum of all ImDrawList's VtxBuffer.Size + ImVector CmdLists; // Array of ImDrawList* to render. The ImDrawLists are owned by ImGuiContext and only pointed to from here. + ImVec2 DisplayPos; // Top-left position of the viewport to render (== top-left of the orthogonal projection matrix to use) (== GetMainViewport()->Pos for the main viewport, == (0.0) in most single-viewport applications) + ImVec2 DisplaySize; // Size of the viewport to render (== GetMainViewport()->Size for the main viewport, == io.DisplaySize in most single-viewport applications) + ImVec2 FramebufferScale; // Amount of pixels for each unit of DisplaySize. Based on io.DisplayFramebufferScale. Generally (1,1) on normal display, (2,2) on OSX with Retina display. + ImGuiViewport* OwnerViewport; // Viewport carrying the ImDrawData instance, might be of use to the renderer (generally not). + + // Functions + ImDrawData() { Clear(); } + IMGUI_API void Clear(); + IMGUI_API void AddDrawList(ImDrawList* draw_list); // Helper to add an external draw list into an existing ImDrawData. + IMGUI_API void DeIndexAllBuffers(); // Helper to convert all buffers from indexed to non-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering! + IMGUI_API void ScaleClipRects(const ImVec2& fb_scale); // Helper to scale the ClipRect field of each ImDrawCmd. Use if your final output buffer is at a different scale than Dear ImGui expects, or if there is a difference between your window resolution and framebuffer resolution. +}; + +//----------------------------------------------------------------------------- +// [SECTION] Font API (ImFontConfig, ImFontGlyph, ImFontAtlasFlags, ImFontAtlas, ImFontGlyphRangesBuilder, ImFont) +//----------------------------------------------------------------------------- + +// [Internal] Shadow texture baking config +struct ImFontAtlasShadowTexConfig +{ + int TexCornerSize; // Size of the corner areas. + int TexEdgeSize; // Size of the edge areas (and by extension the center). Changing this is normally unnecessary. + float TexFalloffPower; // The power factor for the shadow falloff curve. + float TexDistanceFieldOffset; // How much to offset the distance field by (allows over/under-shadowing, potentially useful for accommodating rounded corners on the "casting" shape). + bool TexBlur; // Do we want to Gaussian blur the shadow texture? + + inline ImFontAtlasShadowTexConfig() { memset(this, 0, sizeof(*this)); } + IMGUI_API void SetupDefaults(); + int GetRectTexPadding() const { return 2; } // Number of pixels of padding to add to the rectangular texture to avoid sampling artifacts at the edges. + int CalcRectTexSize() const { return TexCornerSize + TexEdgeSize + GetRectTexPadding(); } // The size of the texture area required for the actual 2x2 rectangle shadow texture (after the redundant corners have been removed). Padding is required here to avoid sampling artifacts at the edge adjoining the removed corners. int CalcConvexTexWidth() const; // The width of the texture area required for the convex shape shadow texture. + int GetConvexTexPadding() const { return 8; } // Number of pixels of padding to add to the convex shape texture to avoid sampling artifacts at the edges. This also acts as padding for the expanded corner triangles. + int CalcConvexTexWidth() const; // The width of the texture area required for the convex shape shadow texture. + int CalcConvexTexHeight() const; // The height of the texture area required for the convex shape shadow texture. +}; + +struct ImFontConfig +{ + void* FontData; // // TTF/OTF data + int FontDataSize; // // TTF/OTF data size + bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + int FontNo; // 0 // Index of font within TTF/OTF file + float SizePixels; // // Size in pixels for rasterizer (more or less maps to the resulting font height). + int OversampleH; // 2 // Rasterize at higher quality for sub-pixel positioning. Note the difference between 2 and 3 is minimal. You can reduce this to 1 for large glyphs save memory. Read https://github.com/nothings/stb/blob/master/tests/oversample/README.md for details. + int OversampleV; // 1 // Rasterize at higher quality for sub-pixel positioning. This is not really useful as we don't use sub-pixel positions on the Y axis. + bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1. + ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now. + ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. + const ImWchar* GlyphRanges; // NULL // THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE. Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). + float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font + float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs + bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. + unsigned int FontBuilderFlags; // 0 // Settings for custom font builder. THIS IS BUILDER IMPLEMENTATION DEPENDENT. Leave as zero if unsure. + float RasterizerMultiply; // 1.0f // Brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable. + ImWchar EllipsisChar; // -1 // Explicitly specify unicode codepoint of ellipsis character. When fonts are being merged first specified ellipsis will be used. + + // [Internal] + char Name[40]; // Name (strictly to ease debugging) + ImFont* DstFont; + + IMGUI_API ImFontConfig(); +}; + +// Hold rendering data for one glyph. +// (Note: some language parsers may fail to convert the 31+1 bitfield members, in this case maybe drop store a single u32 or we can rework this) +struct ImFontGlyph +{ + unsigned int Colored : 1; // Flag to indicate glyph is colored and should generally ignore tinting (make it usable with no shift on little-endian as this is used in loops) + unsigned int Visible : 1; // Flag to indicate glyph has no visible pixels (e.g. space). Allow early out when rendering. + unsigned int Codepoint : 30; // 0x0000..0x10FFFF + float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in) + float X0, Y0, X1, Y1; // Glyph corners + float U0, V0, U1, V1; // Texture coordinates +}; + +// Helper to build glyph ranges from text/string data. Feed your application strings/characters to it then call BuildRanges(). +// This is essentially a tightly packed of vector of 64k booleans = 8KB storage. +struct ImFontGlyphRangesBuilder +{ + ImVector UsedChars; // Store 1-bit per Unicode code point (0=unused, 1=used) + + ImFontGlyphRangesBuilder() { Clear(); } + inline void Clear() { int size_in_bytes = (IM_UNICODE_CODEPOINT_MAX + 1) / 8; UsedChars.resize(size_in_bytes / (int)sizeof(ImU32)); memset(UsedChars.Data, 0, (size_t)size_in_bytes); } + inline bool GetBit(size_t n) const { int off = (int)(n >> 5); ImU32 mask = 1u << (n & 31); return (UsedChars[off] & mask) != 0; } // Get bit n in the array + inline void SetBit(size_t n) { int off = (int)(n >> 5); ImU32 mask = 1u << (n & 31); UsedChars[off] |= mask; } // Set bit n in the array + inline void AddChar(ImWchar c) { SetBit(c); } // Add character + IMGUI_API void AddText(const char* text, const char* text_end = NULL); // Add string (each character of the UTF-8 string are added) + IMGUI_API void AddRanges(const ImWchar* ranges); // Add ranges, e.g. builder.AddRanges(ImFontAtlas::GetGlyphRangesDefault()) to force add all of ASCII/Latin+Ext + IMGUI_API void BuildRanges(ImVector* out_ranges); // Output new ranges +}; + +// See ImFontAtlas::AddCustomRectXXX functions. +struct ImFontAtlasCustomRect +{ + unsigned short Width, Height; // Input // Desired rectangle dimension + unsigned short X, Y; // Output // Packed position in Atlas + unsigned int GlyphID; // Input // For custom font glyphs only (ID < 0x110000) + float GlyphAdvanceX; // Input // For custom font glyphs only: glyph xadvance + ImVec2 GlyphOffset; // Input // For custom font glyphs only: glyph display offset + ImFont* Font; // Input // For custom font glyphs only: target font + ImFontAtlasCustomRect() { Width = Height = 0; X = Y = 0xFFFF; GlyphID = 0; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0, 0); Font = NULL; } + bool IsPacked() const { return X != 0xFFFF; } +}; + +// Flags for ImFontAtlas build +enum ImFontAtlasFlags_ +{ + ImFontAtlasFlags_None = 0, + ImFontAtlasFlags_NoPowerOfTwoHeight = 1 << 0, // Don't round the height to next power of two + ImFontAtlasFlags_NoMouseCursors = 1 << 1, // Don't build software mouse cursors into the atlas (save a little texture memory) + ImFontAtlasFlags_NoBakedLines = 1 << 2, // Don't build thick line textures into the atlas (save a little texture memory, allow support for point/nearest filtering). The AntiAliasedLinesUseTex features uses them, otherwise they will be rendered using polygons (more expensive for CPU/GPU). +}; + +// Load and rasterize multiple TTF/OTF fonts into a same texture. The font atlas will build a single texture holding: +// - One or more fonts. +// - Custom graphics data needed to render the shapes needed by Dear ImGui. +// - Mouse cursor shapes for software cursor rendering (unless setting 'Flags |= ImFontAtlasFlags_NoMouseCursors' in the font atlas). +// It is the user-code responsibility to setup/build the atlas, then upload the pixel data into a texture accessible by your graphics api. +// - Optionally, call any of the AddFont*** functions. If you don't call any, the default font embedded in the code will be loaded for you. +// - Call GetTexDataAsAlpha8() or GetTexDataAsRGBA32() to build and retrieve pixels data. +// - Upload the pixels data into a texture within your graphics system (see imgui_impl_xxxx.cpp examples) +// - Call SetTexID(my_tex_id); and pass the pointer/identifier to your texture in a format natural to your graphics API. +// This value will be passed back to you during rendering to identify the texture. Read FAQ entry about ImTextureID for more details. +// Common pitfalls: +// - If you pass a 'glyph_ranges' array to AddFont*** functions, you need to make sure that your array persist up until the +// atlas is build (when calling GetTexData*** or Build()). We only copy the pointer, not the data. +// - Important: By default, AddFontFromMemoryTTF() takes ownership of the data. Even though we are not writing to it, we will free the pointer on destruction. +// You can set font_cfg->FontDataOwnedByAtlas=false to keep ownership of your data and it won't be freed, +// - Even though many functions are suffixed with "TTF", OTF data is supported just as well. +// - This is an old API and it is currently awkward for those and various other reasons! We will address them in the future! +struct ImFontAtlas +{ + IMGUI_API ImFontAtlas(); + IMGUI_API ~ImFontAtlas(); + IMGUI_API ImFont* AddFont(const ImFontConfig* font_cfg); + IMGUI_API ImFont* AddFontDefault(const ImFontConfig* font_cfg = NULL); + IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); + IMGUI_API ImFont* AddFontFromMemoryTTF(void* font_data, int font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // Note: Transfer ownership of 'ttf_data' to ImFontAtlas! Will be deleted after destruction of the atlas. Set font_cfg->FontDataOwnedByAtlas=false to keep ownership of your data and it won't be freed. + IMGUI_API ImFont* AddFontFromMemoryCompressedTTF(const void* compressed_font_data, int compressed_font_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp. + IMGUI_API ImFont* AddFontFromMemoryCompressedBase85TTF(const char* compressed_font_data_base85, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter. + IMGUI_API void ClearInputData(); // Clear input data (all ImFontConfig structures including sizes, TTF data, glyph ranges, etc.) = all the data used to build the texture and fonts. + IMGUI_API void ClearTexData(); // Clear output texture data (CPU side). Saves RAM once the texture has been copied to graphics memory. + IMGUI_API void ClearFonts(); // Clear output font data (glyphs storage, UV coordinates). + IMGUI_API void Clear(); // Clear all input and output. + + // Build atlas, retrieve pixel data. + // User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID(). + // The pitch is always = Width * BytesPerPixels (1 or 4) + // Building in RGBA32 format is provided for convenience and compatibility, but note that unless you manually manipulate or copy color data into + // the texture (e.g. when using the AddCustomRect*** api), then the RGB pixels emitted will always be white (~75% of memory/bandwidth waste. + IMGUI_API bool Build(); // Build pixels data. This is called automatically for you by the GetTexData*** functions. + IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel + IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel + bool IsBuilt() const { return Fonts.Size > 0 && TexReady; } // Bit ambiguous: used to detect when user didn't build texture but effectively we should check TexID != 0 except that would be backend dependent... + void SetTexID(ImTextureID id) { TexID = id; } + + //------------------------------------------- + // Glyph Ranges + //------------------------------------------- + + // Helpers to retrieve list of common Unicode ranges (2 value per range, values are inclusive, zero-terminated list) + // NB: Make sure that your string are UTF-8 and NOT in your local code page. + // Read https://github.com/ocornut/imgui/blob/master/docs/FONTS.md/#about-utf-8-encoding for details. + // NB: Consider using ImFontGlyphRangesBuilder to build glyph ranges from textual data. + IMGUI_API const ImWchar* GetGlyphRangesDefault(); // Basic Latin, Extended Latin + IMGUI_API const ImWchar* GetGlyphRangesGreek(); // Default + Greek and Coptic + IMGUI_API const ImWchar* GetGlyphRangesKorean(); // Default + Korean characters + IMGUI_API const ImWchar* GetGlyphRangesJapanese(); // Default + Hiragana, Katakana, Half-Width, Selection of 2999 Ideographs + IMGUI_API const ImWchar* GetGlyphRangesChineseFull(); // Default + Half-Width + Japanese Hiragana/Katakana + full set of about 21000 CJK Unified Ideographs + IMGUI_API const ImWchar* GetGlyphRangesChineseSimplifiedCommon();// Default + Half-Width + Japanese Hiragana/Katakana + set of 2500 CJK Unified Ideographs for common simplified Chinese + IMGUI_API const ImWchar* GetGlyphRangesCyrillic(); // Default + about 400 Cyrillic characters + IMGUI_API const ImWchar* GetGlyphRangesThai(); // Default + Thai characters + IMGUI_API const ImWchar* GetGlyphRangesVietnamese(); // Default + Vietnamese characters + + //------------------------------------------- + // [BETA] Custom Rectangles/Glyphs API + //------------------------------------------- + + // You can request arbitrary rectangles to be packed into the atlas, for your own purposes. + // - After calling Build(), you can query the rectangle position and render your pixels. + // - If you render colored output, set 'atlas->TexPixelsUseColors = true' as this may help some backends decide of prefered texture format. + // - You can also request your rectangles to be mapped as font glyph (given a font + Unicode point), + // so you can render e.g. custom colorful icons and use them as regular glyphs. + // - Read docs/FONTS.md for more details about using colorful icons. + // - Note: this API may be redesigned later in order to support multi-monitor varying DPI settings. + IMGUI_API int AddCustomRectRegular(int width, int height); + IMGUI_API int AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset = ImVec2(0, 0)); + ImFontAtlasCustomRect* GetCustomRectByIndex(int index) { IM_ASSERT(index >= 0); return &CustomRects[index]; } + + // [Internal] + IMGUI_API void CalcCustomRectUV(const ImFontAtlasCustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max) const; + IMGUI_API bool GetMouseCursorTexData(ImGuiMouseCursor cursor, ImVec2* out_offset, ImVec2* out_size, ImVec2 out_uv_border[2], ImVec2 out_uv_fill[2]); + + //------------------------------------------- + // Members + //------------------------------------------- + + ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_) + ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure. + int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height. + int TexGlyphPadding; // Padding between glyphs within texture in pixels. Defaults to 1. If your rendering method doesn't rely on bilinear filtering you may set this to 0 (will also need to set AntiAliasedLinesUseTex = false). + bool Locked; // Marked as Locked by ImGui::NewFrame() so attempt to modify the atlas will assert. + void* UserData; // Store your own atlas related user-data (if e.g. you have multiple font atlas). + + // [Internal] + // NB: Access texture data via GetTexData*() calls! Which will setup a default font for you. + bool TexReady; // Set when texture was built matching current font input + bool TexPixelsUseColors; // Tell whether our texture data is known to use colors (rather than just alpha channel), in order to help backend select a format. + unsigned char* TexPixelsAlpha8; // 1 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight + unsigned int* TexPixelsRGBA32; // 4 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight * 4 + int TexWidth; // Texture width calculated during Build(). + int TexHeight; // Texture height calculated during Build(). + ImVec2 TexUvScale; // = (1.0f/TexWidth, 1.0f/TexHeight) + ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel + ImVector Fonts; // Hold all the fonts returned by AddFont*. Fonts[0] is the default font upon calling ImGui::NewFrame(), use ImGui::PushFont()/PopFont() to change the current font. + ImVector CustomRects; // Rectangles for packing custom texture data into the atlas. + ImVector ConfigData; // Configuration data + ImVec4 TexUvLines[IM_DRAWLIST_TEX_LINES_WIDTH_MAX + 1]; // UVs for baked anti-aliased lines + + // [Internal] Font builder + const ImFontBuilderIO* FontBuilderIO; // Opaque interface to a font builder (default to stb_truetype, can be changed to use FreeType by defining IMGUI_ENABLE_FREETYPE). + unsigned int FontBuilderFlags; // Shared flags (for all fonts) for custom font builder. THIS IS BUILD IMPLEMENTATION DEPENDENT. Per-font override is also available in ImFontConfig. + + // [Internal] Packing data + int PackIdMouseCursors; // Custom texture rectangle ID for white pixel and mouse cursors + int PackIdLines; // Custom texture rectangle ID for baked anti-aliased lines + + // [Internal] Shadow data + int ShadowRectIds[2]; // IDs of rect for shadow textures + ImVec4 ShadowRectUvs[10]; // UV coordinates for shadow textures, 9 for the rectangle shadows and the final entry for the convex shape shadows + ImFontAtlasShadowTexConfig ShadowTexConfig; // Shadow texture baking config + + // [Obsolete] + //typedef ImFontAtlasCustomRect CustomRect; // OBSOLETED in 1.72+ + //typedef ImFontGlyphRangesBuilder GlyphRangesBuilder; // OBSOLETED in 1.67+ +}; + +// Font runtime data and rendering +// ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32(). +struct ImFont +{ + // Members: Hot ~20/24 bytes (for CalcTextSize) + ImVector IndexAdvanceX; // 12-16 // out // // Sparse. Glyphs->AdvanceX in a directly indexable way (cache-friendly for CalcTextSize functions which only this this info, and are often bottleneck in large UI). + float FallbackAdvanceX; // 4 // out // = FallbackGlyph->AdvanceX + float FontSize; // 4 // in // // Height of characters/line, set during loading (don't change after loading) + + // Members: Hot ~28/40 bytes (for CalcTextSize + render loop) + ImVector IndexLookup; // 12-16 // out // // Sparse. Index glyphs by Unicode code-point. + ImVector Glyphs; // 12-16 // out // // All glyphs. + const ImFontGlyph* FallbackGlyph; // 4-8 // out // = FindGlyph(FontFallbackChar) + + // Members: Cold ~32/40 bytes + ImFontAtlas* ContainerAtlas; // 4-8 // out // // What we has been loaded into + const ImFontConfig* ConfigData; // 4-8 // in // // Pointer within ContainerAtlas->ConfigData + short ConfigDataCount; // 2 // in // ~ 1 // Number of ImFontConfig involved in creating this font. Bigger than 1 when merging multiple font sources into one ImFont. + ImWchar FallbackChar; // 2 // out // = FFFD/'?' // Character used if a glyph isn't found. + ImWchar EllipsisChar; // 2 // out // = '...'/'.'// Character used for ellipsis rendering. + short EllipsisCharCount; // 1 // out // 1 or 3 + float EllipsisWidth; // 4 // out // Width + float EllipsisCharStep; // 4 // out // Step between characters when EllipsisCount > 0 + bool DirtyLookupTables; // 1 // out // + float Scale; // 4 // in // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetWindowFontScale() + float Ascent, Descent; // 4+4 // out // // Ascent: distance from top to bottom of e.g. 'A' [0..FontSize] + int MetricsTotalSurface;// 4 // out // // Total surface in pixels to get an idea of the font rasterization/texture cost (not exact, we approximate the cost of padding between glyphs) + ImU8 Used4kPagesMap[(IM_UNICODE_CODEPOINT_MAX+1)/4096/8]; // 2 bytes if ImWchar=ImWchar16, 34 bytes if ImWchar==ImWchar32. Store 1-bit for each block of 4K codepoints that has one active glyph. This is mainly used to facilitate iterations across all used codepoints. + + // Methods + IMGUI_API ImFont(); + IMGUI_API ~ImFont(); + IMGUI_API const ImFontGlyph*FindGlyph(ImWchar c) const; + IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c) const; + float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; } + bool IsLoaded() const { return ContainerAtlas != NULL; } + const char* GetDebugName() const { return ConfigData ? ConfigData->Name : ""; } + + // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable. + // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable. + IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8 + IMGUI_API const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const; + IMGUI_API void RenderChar(ImDrawList* draw_list, float size, const ImVec2& pos, ImU32 col, ImWchar c) const; + IMGUI_API void RenderText(ImDrawList* draw_list, float size, const ImVec2& pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const; + + // [Internal] Don't use! + IMGUI_API void BuildLookupTable(); + IMGUI_API void ClearOutputData(); + IMGUI_API void GrowIndex(int new_size); + IMGUI_API void AddGlyph(const ImFontConfig* src_cfg, ImWchar c, float x0, float y0, float x1, float y1, float u0, float v0, float u1, float v1, float advance_x); + IMGUI_API void AddRemapChar(ImWchar dst, ImWchar src, bool overwrite_dst = true); // Makes 'dst' character/glyph points to 'src' character/glyph. Currently needs to be called AFTER fonts have been built. + IMGUI_API void SetGlyphVisible(ImWchar c, bool visible); + IMGUI_API bool IsGlyphRangeUnused(unsigned int c_begin, unsigned int c_last); +}; + +//----------------------------------------------------------------------------- +// [SECTION] Viewports +//----------------------------------------------------------------------------- + +// Flags stored in ImGuiViewport::Flags, giving indications to the platform backends. +enum ImGuiViewportFlags_ +{ + ImGuiViewportFlags_None = 0, + ImGuiViewportFlags_IsPlatformWindow = 1 << 0, // Represent a Platform Window + ImGuiViewportFlags_IsPlatformMonitor = 1 << 1, // Represent a Platform Monitor (unused yet) + ImGuiViewportFlags_OwnedByApp = 1 << 2, // Platform Window: is created/managed by the application (rather than a dear imgui backend) +}; + +// - Currently represents the Platform Window created by the application which is hosting our Dear ImGui windows. +// - In 'docking' branch with multi-viewport enabled, we extend this concept to have multiple active viewports. +// - In the future we will extend this concept further to also represent Platform Monitor and support a "no main platform window" operation mode. +// - About Main Area vs Work Area: +// - Main Area = entire viewport. +// - Work Area = entire viewport minus sections used by main menu bars (for platform windows), or by task bar (for platform monitor). +// - Windows are generally trying to stay within the Work Area of their host viewport. +struct ImGuiViewport +{ + ImGuiViewportFlags Flags; // See ImGuiViewportFlags_ + ImVec2 Pos; // Main Area: Position of the viewport (Dear ImGui coordinates are the same as OS desktop/native coordinates) + ImVec2 Size; // Main Area: Size of the viewport. + ImVec2 WorkPos; // Work Area: Position of the viewport minus task bars, menus bars, status bars (>= Pos) + ImVec2 WorkSize; // Work Area: Size of the viewport minus task bars, menu bars, status bars (<= Size) + + // Platform/Backend Dependent Data + void* PlatformHandleRaw; // void* to hold lower-level, platform-native window handle (under Win32 this is expected to be a HWND, unused for other platforms) + + ImGuiViewport() { memset(this, 0, sizeof(*this)); } + + // Helpers + ImVec2 GetCenter() const { return ImVec2(Pos.x + Size.x * 0.5f, Pos.y + Size.y * 0.5f); } + ImVec2 GetWorkCenter() const { return ImVec2(WorkPos.x + WorkSize.x * 0.5f, WorkPos.y + WorkSize.y * 0.5f); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Platform Dependent Interfaces +//----------------------------------------------------------------------------- + +// (Optional) Support for IME (Input Method Editor) via the io.SetPlatformImeDataFn() function. +struct ImGuiPlatformImeData +{ + bool WantVisible; // A widget wants the IME to be visible + ImVec2 InputPos; // Position of the input cursor + float InputLineHeight; // Line height + + ImGuiPlatformImeData() { memset(this, 0, sizeof(*this)); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Obsolete functions and types +// (Will be removed! Read 'API BREAKING CHANGES' section in imgui.cpp for details) +// Please keep your copy of dear imgui up to date! Occasionally set '#define IMGUI_DISABLE_OBSOLETE_FUNCTIONS' in imconfig.h to stay ahead. +//----------------------------------------------------------------------------- + +namespace ImGui +{ +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + IMGUI_API ImGuiKey GetKeyIndex(ImGuiKey key); // map ImGuiKey_* values into legacy native key index. == io.KeyMap[key] +#else + static inline ImGuiKey GetKeyIndex(ImGuiKey key) { IM_ASSERT(key >= ImGuiKey_NamedKey_BEGIN && key < ImGuiKey_NamedKey_END && "ImGuiKey and native_index was merged together and native_index is disabled by IMGUI_DISABLE_OBSOLETE_KEYIO. Please switch to ImGuiKey."); return key; } +#endif +} + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS +namespace ImGui +{ + // OBSOLETED in 1.89.7 (from June 2023) + IMGUI_API void SetItemAllowOverlap(); // Use SetNextItemAllowOverlap() before item. + // OBSOLETED in 1.89.4 (from March 2023) + static inline void PushAllowKeyboardFocus(bool tab_stop) { PushTabStop(tab_stop); } + static inline void PopAllowKeyboardFocus() { PopTabStop(); } + // OBSOLETED in 1.89 (from August 2022) + IMGUI_API bool ImageButton(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0, 0), const ImVec2& uv1 = ImVec2(1, 1), int frame_padding = -1, const ImVec4& bg_col = ImVec4(0, 0, 0, 0), const ImVec4& tint_col = ImVec4(1, 1, 1, 1)); // Use new ImageButton() signature (explicit item id, regular FramePadding) + // OBSOLETED in 1.88 (from May 2022) + static inline void CaptureKeyboardFromApp(bool want_capture_keyboard = true) { SetNextFrameWantCaptureKeyboard(want_capture_keyboard); } // Renamed as name was misleading + removed default value. + static inline void CaptureMouseFromApp(bool want_capture_mouse = true) { SetNextFrameWantCaptureMouse(want_capture_mouse); } // Renamed as name was misleading + removed default value. + // OBSOLETED in 1.86 (from November 2021) + IMGUI_API void CalcListClipping(int items_count, float items_height, int* out_items_display_start, int* out_items_display_end); // Calculate coarse clipping for large list of evenly sized items. Prefer using ImGuiListClipper. + // OBSOLETED in 1.85 (from August 2021) + static inline float GetWindowContentRegionWidth() { return GetWindowContentRegionMax().x - GetWindowContentRegionMin().x; } + + // Some of the older obsolete names along with their replacement (commented out so they are not reported in IDE) + //-- OBSOLETED in 1.81 (from February 2021) + //static inline bool ListBoxHeader(const char* label, const ImVec2& size = ImVec2(0, 0)) { return BeginListBox(label, size); } + //static inline bool ListBoxHeader(const char* label, int items_count, int height_in_items = -1) { float height = GetTextLineHeightWithSpacing() * ((height_in_items < 0 ? ImMin(items_count, 7) : height_in_items) + 0.25f) + GetStyle().FramePadding.y * 2.0f; return BeginListBox(label, ImVec2(0.0f, height)); } // Helper to calculate size from items_count and height_in_items + //static inline void ListBoxFooter() { EndListBox(); } + //-- OBSOLETED in 1.79 (from August 2020) + //static inline void OpenPopupContextItem(const char* str_id = NULL, ImGuiMouseButton mb = 1) { OpenPopupOnItemClick(str_id, mb); } // Bool return value removed. Use IsWindowAppearing() in BeginPopup() instead. Renamed in 1.77, renamed back in 1.79. Sorry! + //-- OBSOLETED in 1.78 (from June 2020): Old drag/sliders functions that took a 'float power > 1.0f' argument instead of ImGuiSliderFlags_Logarithmic. See github.com/ocornut/imgui/issues/3361 for details. + //IMGUI_API bool DragScalar(const char* label, ImGuiDataType data_type, void* p_data, float v_speed, const void* p_min, const void* p_max, const char* format, float power = 1.0f) // OBSOLETED in 1.78 (from June 2020) + //IMGUI_API bool DragScalarN(const char* label, ImGuiDataType data_type, void* p_data, int components, float v_speed, const void* p_min, const void* p_max, const char* format, float power = 1.0f); // OBSOLETED in 1.78 (from June 2020) + //IMGUI_API bool SliderScalar(const char* label, ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max, const char* format, float power = 1.0f); // OBSOLETED in 1.78 (from June 2020) + //IMGUI_API bool SliderScalarN(const char* label, ImGuiDataType data_type, void* p_data, int components, const void* p_min, const void* p_max, const char* format, float power = 1.0f); // OBSOLETED in 1.78 (from June 2020) + //static inline bool DragFloat(const char* label, float* v, float v_speed, float v_min, float v_max, const char* format, float power = 1.0f) { return DragScalar(label, ImGuiDataType_Float, v, v_speed, &v_min, &v_max, format, power); } // OBSOLETED in 1.78 (from June 2020) + //static inline bool DragFloat2(const char* label, float v[2], float v_speed, float v_min, float v_max, const char* format, float power = 1.0f) { return DragScalarN(label, ImGuiDataType_Float, v, 2, v_speed, &v_min, &v_max, format, power); } // OBSOLETED in 1.78 (from June 2020) + //static inline bool DragFloat3(const char* label, float v[3], float v_speed, float v_min, float v_max, const char* format, float power = 1.0f) { return DragScalarN(label, ImGuiDataType_Float, v, 3, v_speed, &v_min, &v_max, format, power); } // OBSOLETED in 1.78 (from June 2020) + //static inline bool DragFloat4(const char* label, float v[4], float v_speed, float v_min, float v_max, const char* format, float power = 1.0f) { return DragScalarN(label, ImGuiDataType_Float, v, 4, v_speed, &v_min, &v_max, format, power); } // OBSOLETED in 1.78 (from June 2020) + //static inline bool SliderFloat(const char* label, float* v, float v_min, float v_max, const char* format, float power = 1.0f) { return SliderScalar(label, ImGuiDataType_Float, v, &v_min, &v_max, format, power); } // OBSOLETED in 1.78 (from June 2020) + //static inline bool SliderFloat2(const char* label, float v[2], float v_min, float v_max, const char* format, float power = 1.0f) { return SliderScalarN(label, ImGuiDataType_Float, v, 2, &v_min, &v_max, format, power); } // OBSOLETED in 1.78 (from June 2020) + //static inline bool SliderFloat3(const char* label, float v[3], float v_min, float v_max, const char* format, float power = 1.0f) { return SliderScalarN(label, ImGuiDataType_Float, v, 3, &v_min, &v_max, format, power); } // OBSOLETED in 1.78 (from June 2020) + //static inline bool SliderFloat4(const char* label, float v[4], float v_min, float v_max, const char* format, float power = 1.0f) { return SliderScalarN(label, ImGuiDataType_Float, v, 4, &v_min, &v_max, format, power); } // OBSOLETED in 1.78 (from June 2020) + //-- OBSOLETED in 1.77 and before + //static inline bool BeginPopupContextWindow(const char* str_id, ImGuiMouseButton mb, bool over_items) { return BeginPopupContextWindow(str_id, mb | (over_items ? 0 : ImGuiPopupFlags_NoOpenOverItems)); } // OBSOLETED in 1.77 (from June 2020) + //static inline void TreeAdvanceToLabelPos() { SetCursorPosX(GetCursorPosX() + GetTreeNodeToLabelSpacing()); } // OBSOLETED in 1.72 (from July 2019) + //static inline void SetNextTreeNodeOpen(bool open, ImGuiCond cond = 0) { SetNextItemOpen(open, cond); } // OBSOLETED in 1.71 (from June 2019) + //static inline float GetContentRegionAvailWidth() { return GetContentRegionAvail().x; } // OBSOLETED in 1.70 (from May 2019) + //static inline ImDrawList* GetOverlayDrawList() { return GetForegroundDrawList(); } // OBSOLETED in 1.69 (from Mar 2019) + //static inline void SetScrollHere(float ratio = 0.5f) { SetScrollHereY(ratio); } // OBSOLETED in 1.66 (from Nov 2018) + //static inline bool IsItemDeactivatedAfterChange() { return IsItemDeactivatedAfterEdit(); } // OBSOLETED in 1.63 (from Aug 2018) + //-- OBSOLETED in 1.60 and before + //static inline bool IsAnyWindowFocused() { return IsWindowFocused(ImGuiFocusedFlags_AnyWindow); } // OBSOLETED in 1.60 (from Apr 2018) + //static inline bool IsAnyWindowHovered() { return IsWindowHovered(ImGuiHoveredFlags_AnyWindow); } // OBSOLETED in 1.60 (between Dec 2017 and Apr 2018) + //static inline void ShowTestWindow() { return ShowDemoWindow(); } // OBSOLETED in 1.53 (between Oct 2017 and Dec 2017) + //static inline bool IsRootWindowFocused() { return IsWindowFocused(ImGuiFocusedFlags_RootWindow); } // OBSOLETED in 1.53 (between Oct 2017 and Dec 2017) + //static inline bool IsRootWindowOrAnyChildFocused() { return IsWindowFocused(ImGuiFocusedFlags_RootAndChildWindows); } // OBSOLETED in 1.53 (between Oct 2017 and Dec 2017) + //static inline void SetNextWindowContentWidth(float w) { SetNextWindowContentSize(ImVec2(w, 0.0f)); } // OBSOLETED in 1.53 (between Oct 2017 and Dec 2017) + //static inline float GetItemsLineHeightWithSpacing() { return GetFrameHeightWithSpacing(); } // OBSOLETED in 1.53 (between Oct 2017 and Dec 2017) + //IMGUI_API bool Begin(char* name, bool* p_open, ImVec2 size_first_use, float bg_alpha = -1.0f, ImGuiWindowFlags flags=0); // OBSOLETED in 1.52 (between Aug 2017 and Oct 2017): Equivalent of using SetNextWindowSize(size, ImGuiCond_FirstUseEver) and SetNextWindowBgAlpha(). + //static inline bool IsRootWindowOrAnyChildHovered() { return IsWindowHovered(ImGuiHoveredFlags_RootAndChildWindows); } // OBSOLETED in 1.52 (between Aug 2017 and Oct 2017) + //static inline void AlignFirstTextHeightToWidgets() { AlignTextToFramePadding(); } // OBSOLETED in 1.52 (between Aug 2017 and Oct 2017) + //static inline void SetNextWindowPosCenter(ImGuiCond c=0) { SetNextWindowPos(GetMainViewport()->GetCenter(), c, ImVec2(0.5f,0.5f)); } // OBSOLETED in 1.52 (between Aug 2017 and Oct 2017) + //static inline bool IsItemHoveredRect() { return IsItemHovered(ImGuiHoveredFlags_RectOnly); } // OBSOLETED in 1.51 (between Jun 2017 and Aug 2017) + //static inline bool IsPosHoveringAnyWindow(const ImVec2&) { IM_ASSERT(0); return false; } // OBSOLETED in 1.51 (between Jun 2017 and Aug 2017): This was misleading and partly broken. You probably want to use the io.WantCaptureMouse flag instead. + //static inline bool IsMouseHoveringAnyWindow() { return IsWindowHovered(ImGuiHoveredFlags_AnyWindow); } // OBSOLETED in 1.51 (between Jun 2017 and Aug 2017) + //static inline bool IsMouseHoveringWindow() { return IsWindowHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem); } // OBSOLETED in 1.51 (between Jun 2017 and Aug 2017) + //-- OBSOLETED in 1.50 and before + //static inline bool CollapsingHeader(char* label, const char* str_id, bool framed = true, bool default_open = false) { return CollapsingHeader(label, (default_open ? (1 << 5) : 0)); } // OBSOLETED in 1.49 + //static inline ImFont*GetWindowFont() { return GetFont(); } // OBSOLETED in 1.48 + //static inline float GetWindowFontSize() { return GetFontSize(); } // OBSOLETED in 1.48 + //static inline void SetScrollPosHere() { SetScrollHere(); } // OBSOLETED in 1.42 +} + +// OBSOLETED in 1.82 (from Mars 2021): flags for AddRect(), AddRectFilled(), AddImageRounded(), PathRect() +typedef ImDrawFlags ImDrawCornerFlags; +enum ImDrawCornerFlags_ +{ + ImDrawCornerFlags_None = ImDrawFlags_RoundCornersNone, // Was == 0 prior to 1.82, this is now == ImDrawFlags_RoundCornersNone which is != 0 and not implicit + ImDrawCornerFlags_TopLeft = ImDrawFlags_RoundCornersTopLeft, // Was == 0x01 (1 << 0) prior to 1.82. Order matches ImDrawFlags_NoRoundCorner* flag (we exploit this internally). + ImDrawCornerFlags_TopRight = ImDrawFlags_RoundCornersTopRight, // Was == 0x02 (1 << 1) prior to 1.82. + ImDrawCornerFlags_BotLeft = ImDrawFlags_RoundCornersBottomLeft, // Was == 0x04 (1 << 2) prior to 1.82. + ImDrawCornerFlags_BotRight = ImDrawFlags_RoundCornersBottomRight, // Was == 0x08 (1 << 3) prior to 1.82. + ImDrawCornerFlags_All = ImDrawFlags_RoundCornersAll, // Was == 0x0F prior to 1.82 + ImDrawCornerFlags_Top = ImDrawCornerFlags_TopLeft | ImDrawCornerFlags_TopRight, + ImDrawCornerFlags_Bot = ImDrawCornerFlags_BotLeft | ImDrawCornerFlags_BotRight, + ImDrawCornerFlags_Left = ImDrawCornerFlags_TopLeft | ImDrawCornerFlags_BotLeft, + ImDrawCornerFlags_Right = ImDrawCornerFlags_TopRight | ImDrawCornerFlags_BotRight, +}; + +// RENAMED and MERGED both ImGuiKey_ModXXX and ImGuiModFlags_XXX into ImGuiMod_XXX (from September 2022) +// RENAMED ImGuiKeyModFlags -> ImGuiModFlags in 1.88 (from April 2022). Exceptionally commented out ahead of obscolescence schedule to reduce confusion and because they were not meant to be used in the first place. +typedef ImGuiKeyChord ImGuiModFlags; // == int. We generally use ImGuiKeyChord to mean "a ImGuiKey or-ed with any number of ImGuiMod_XXX value", but you may store only mods in there. +enum ImGuiModFlags_ { ImGuiModFlags_None = 0, ImGuiModFlags_Ctrl = ImGuiMod_Ctrl, ImGuiModFlags_Shift = ImGuiMod_Shift, ImGuiModFlags_Alt = ImGuiMod_Alt, ImGuiModFlags_Super = ImGuiMod_Super }; +//typedef ImGuiKeyChord ImGuiKeyModFlags; // == int +//enum ImGuiKeyModFlags_ { ImGuiKeyModFlags_None = 0, ImGuiKeyModFlags_Ctrl = ImGuiMod_Ctrl, ImGuiKeyModFlags_Shift = ImGuiMod_Shift, ImGuiKeyModFlags_Alt = ImGuiMod_Alt, ImGuiKeyModFlags_Super = ImGuiMod_Super }; + +#endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + +// RENAMED IMGUI_DISABLE_METRICS_WINDOW > IMGUI_DISABLE_DEBUG_TOOLS in 1.88 (from June 2022) +#if defined(IMGUI_DISABLE_METRICS_WINDOW) && !defined(IMGUI_DISABLE_OBSOLETE_FUNCTIONS) && !defined(IMGUI_DISABLE_DEBUG_TOOLS) +#define IMGUI_DISABLE_DEBUG_TOOLS +#endif +#if defined(IMGUI_DISABLE_METRICS_WINDOW) && defined(IMGUI_DISABLE_OBSOLETE_FUNCTIONS) +#error IMGUI_DISABLE_METRICS_WINDOW was renamed to IMGUI_DISABLE_DEBUG_TOOLS, please use new name. +#endif + +//----------------------------------------------------------------------------- + +#if defined(__clang__) +#pragma clang diagnostic pop +#elif defined(__GNUC__) +#pragma GCC diagnostic pop +#endif + +#ifdef _MSC_VER +#pragma warning (pop) +#endif + +// Include imgui_user.h at the end of imgui.h (convenient for user to only explicitly include vanilla imgui.h) +#ifdef IMGUI_INCLUDE_IMGUI_USER_H +#include "imgui_user.h" +#endif + +#endif // #ifndef IMGUI_DISABLE diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_demo.cpp b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_demo.cpp new file mode 100644 index 0000000..a816c22 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_demo.cpp @@ -0,0 +1,8432 @@ +// dear imgui, v1.89.9 +// (demo code) + +// Help: +// - Read FAQ at http://dearimgui.com/faq +// - Call and read ImGui::ShowDemoWindow() in imgui_demo.cpp. All applications in examples/ are doing that. +// - Need help integrating Dear ImGui in your codebase? +// - Read Getting Started https://github.com/ocornut/imgui/wiki/Getting-Started +// - Read 'Programmer guide' in imgui.cpp for notes on how to setup Dear ImGui in your codebase. +// Read imgui.cpp for more details, documentation and comments. +// Get the latest version at https://github.com/ocornut/imgui + +//--------------------------------------------------- +// PLEASE DO NOT REMOVE THIS FILE FROM YOUR PROJECT! +//--------------------------------------------------- +// Message to the person tempted to delete this file when integrating Dear ImGui into their codebase: +// Think again! It is the most useful reference code that you and other coders will want to refer to and call. +// Have the ImGui::ShowDemoWindow() function wired in an always-available debug menu of your game/app! +// Also include Metrics! ItemPicker! DebugLog! and other debug features. +// Removing this file from your project is hindering access to documentation for everyone in your team, +// likely leading you to poorer usage of the library. +// Everything in this file will be stripped out by the linker if you don't call ImGui::ShowDemoWindow(). +// If you want to link core Dear ImGui in your shipped builds but want a thorough guarantee that the demo will not be +// linked, you can setup your imconfig.h with #define IMGUI_DISABLE_DEMO_WINDOWS and those functions will be empty. +// In another situation, whenever you have Dear ImGui available you probably want this to be available for reference. +// Thank you, +// -Your beloved friend, imgui_demo.cpp (which you won't delete) + +//-------------------------------------------- +// ABOUT THE MEANING OF THE 'static' KEYWORD: +//-------------------------------------------- +// In this demo code, we frequently use 'static' variables inside functions. +// A static variable persists across calls. It is essentially a global variable but declared inside the scope of the function. +// Think of "static int n = 0;" as "global int n = 0;" ! +// We do this IN THE DEMO because we want: +// - to gather code and data in the same place. +// - to make the demo source code faster to read, faster to change, smaller in size. +// - it is also a convenient way of storing simple UI related information as long as your function +// doesn't need to be reentrant or used in multiple threads. +// This might be a pattern you will want to use in your code, but most of the data you would be working +// with in a complex codebase is likely going to be stored outside your functions. + +//----------------------------------------- +// ABOUT THE CODING STYLE OF OUR DEMO CODE +//----------------------------------------- +// The Demo code in this file is designed to be easy to copy-and-paste into your application! +// Because of this: +// - We never omit the ImGui:: prefix when calling functions, even though most code here is in the same namespace. +// - We try to declare static variables in the local scope, as close as possible to the code using them. +// - We never use any of the helpers/facilities used internally by Dear ImGui, unless available in the public API. +// - We never use maths operators on ImVec2/ImVec4. For our other sources files we use them, and they are provided +// by imgui.h using the IMGUI_DEFINE_MATH_OPERATORS define. For your own sources file they are optional +// and require you either enable those, either provide your own via IM_VEC2_CLASS_EXTRA in imconfig.h. +// Because we can't assume anything about your support of maths operators, we cannot use them in imgui_demo.cpp. + +// Navigating this file: +// - In Visual Studio IDE: CTRL+comma ("Edit.GoToAll") can follow symbols in comments, whereas CTRL+F12 ("Edit.GoToImplementation") cannot. +// - With Visual Assist installed: ALT+G ("VAssistX.GoToImplementation") can also follow symbols in comments. + +/* + +Index of this file: + +// [SECTION] Forward Declarations +// [SECTION] Helpers +// [SECTION] Demo Window / ShowDemoWindow() +// - ShowDemoWindow() +// - sub section: ShowDemoWindowWidgets() +// - sub section: ShowDemoWindowLayout() +// - sub section: ShowDemoWindowPopups() +// - sub section: ShowDemoWindowTables() +// - sub section: ShowDemoWindowInputs() +// [SECTION] About Window / ShowAboutWindow() +// [SECTION] Style Editor / ShowStyleEditor() +// [SECTION] User Guide / ShowUserGuide() +// [SECTION] Example App: Main Menu Bar / ShowExampleAppMainMenuBar() +// [SECTION] Example App: Debug Console / ShowExampleAppConsole() +// [SECTION] Example App: Debug Log / ShowExampleAppLog() +// [SECTION] Example App: Simple Layout / ShowExampleAppLayout() +// [SECTION] Example App: Property Editor / ShowExampleAppPropertyEditor() +// [SECTION] Example App: Long Text / ShowExampleAppLongText() +// [SECTION] Example App: Auto Resize / ShowExampleAppAutoResize() +// [SECTION] Example App: Constrained Resize / ShowExampleAppConstrainedResize() +// [SECTION] Example App: Simple overlay / ShowExampleAppSimpleOverlay() +// [SECTION] Example App: Fullscreen window / ShowExampleAppFullscreen() +// [SECTION] Example App: Manipulating window titles / ShowExampleAppWindowTitles() +// [SECTION] Example App: Custom Rendering using ImDrawList API / ShowExampleAppCustomRendering() +// [SECTION] Example App: Documents Handling / ShowExampleAppDocuments() + +*/ + +#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) +#define _CRT_SECURE_NO_WARNINGS +#endif + +#include "imgui.h" +#ifndef IMGUI_DISABLE + +// System includes +#include // toupper +#include // INT_MIN, INT_MAX +#include // sqrtf, powf, cosf, sinf, floorf, ceilf +#include // vsnprintf, sscanf, printf +#include // NULL, malloc, free, atoi +#include // intptr_t +#if !defined(_MSC_VER) || _MSC_VER >= 1800 +#include // PRId64/PRIu64, not avail in some MinGW headers. +#endif + +// Visual Studio warnings +#ifdef _MSC_VER +#pragma warning (disable: 4127) // condition expression is constant +#pragma warning (disable: 4996) // 'This function or variable may be unsafe': strcpy, strdup, sprintf, vsnprintf, sscanf, fopen +#pragma warning (disable: 26451) // [Static Analyzer] Arithmetic overflow : Using operator 'xxx' on a 4 byte value and then casting the result to an 8 byte value. Cast the value to the wider type before calling operator 'xxx' to avoid overflow(io.2). +#endif + +// Clang/GCC warnings with -Weverything +#if defined(__clang__) +#if __has_warning("-Wunknown-warning-option") +#pragma clang diagnostic ignored "-Wunknown-warning-option" // warning: unknown warning group 'xxx' // not all warnings are known by all Clang versions and they tend to be rename-happy.. so ignoring warnings triggers new warnings on some configuration. Great! +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" // warning: unknown warning group 'xxx' +#pragma clang diagnostic ignored "-Wold-style-cast" // warning: use of old-style cast // yes, they are more terse. +#pragma clang diagnostic ignored "-Wdeprecated-declarations" // warning: 'xx' is deprecated: The POSIX name for this.. // for strdup used in demo code (so user can copy & paste the code) +#pragma clang diagnostic ignored "-Wint-to-void-pointer-cast" // warning: cast to 'void *' from smaller integer type +#pragma clang diagnostic ignored "-Wformat-security" // warning: format string is not a string literal +#pragma clang diagnostic ignored "-Wexit-time-destructors" // warning: declaration requires an exit-time destructor // exit-time destruction order is undefined. if MemFree() leads to users code that has been disabled before exit it might cause problems. ImGui coding style welcomes static/globals. +#pragma clang diagnostic ignored "-Wunused-macros" // warning: macro is not used // we define snprintf/vsnprintf on Windows so they are available, but not always used. +#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" // warning: zero as null pointer constant // some standard header variations use #define NULL 0 +#pragma clang diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function // using printf() is a misery with this as C++ va_arg ellipsis changes float to double. +#pragma clang diagnostic ignored "-Wreserved-id-macro" // warning: macro name is a reserved identifier +#pragma clang diagnostic ignored "-Wimplicit-int-float-conversion" // warning: implicit conversion from 'xxx' to 'float' may lose precision +#elif defined(__GNUC__) +#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind +#pragma GCC diagnostic ignored "-Wint-to-pointer-cast" // warning: cast to pointer from integer of different size +#pragma GCC diagnostic ignored "-Wformat-security" // warning: format string is not a string literal (potentially insecure) +#pragma GCC diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function +#pragma GCC diagnostic ignored "-Wconversion" // warning: conversion to 'xxxx' from 'xxxx' may alter its value +#pragma GCC diagnostic ignored "-Wmisleading-indentation" // [__GNUC__ >= 6] warning: this 'if' clause does not guard this statement // GCC 6.0+ only. See #883 on GitHub. +#endif + +// Play it nice with Windows users (Update: May 2018, Notepad now supports Unix-style carriage returns!) +#ifdef _WIN32 +#define IM_NEWLINE "\r\n" +#else +#define IM_NEWLINE "\n" +#endif + +// Helpers +#if defined(_MSC_VER) && !defined(snprintf) +#define snprintf _snprintf +#endif +#if defined(_MSC_VER) && !defined(vsnprintf) +#define vsnprintf _vsnprintf +#endif + +// Format specifiers for 64-bit values (hasn't been decently standardized before VS2013) +#if !defined(PRId64) && defined(_MSC_VER) +#define PRId64 "I64d" +#define PRIu64 "I64u" +#elif !defined(PRId64) +#define PRId64 "lld" +#define PRIu64 "llu" +#endif + +// Helpers macros +// We normally try to not use many helpers in imgui_demo.cpp in order to make code easier to copy and paste, +// but making an exception here as those are largely simplifying code... +// In other imgui sources we can use nicer internal functions from imgui_internal.h (ImMin/ImMax) but not in the demo. +#define IM_MIN(A, B) (((A) < (B)) ? (A) : (B)) +#define IM_MAX(A, B) (((A) >= (B)) ? (A) : (B)) +#define IM_CLAMP(V, MN, MX) ((V) < (MN) ? (MN) : (V) > (MX) ? (MX) : (V)) + +// Enforce cdecl calling convention for functions called by the standard library, in case compilation settings changed the default to e.g. __vectorcall +#ifndef IMGUI_CDECL +#ifdef _MSC_VER +#define IMGUI_CDECL __cdecl +#else +#define IMGUI_CDECL +#endif +#endif + +//----------------------------------------------------------------------------- +// [SECTION] Forward Declarations, Helpers +//----------------------------------------------------------------------------- + +#if !defined(IMGUI_DISABLE_DEMO_WINDOWS) + +// Forward Declarations +static void ShowExampleAppMainMenuBar(); +static void ShowExampleAppConsole(bool* p_open); +static void ShowExampleAppCustomRendering(bool* p_open); +static void ShowExampleAppDocuments(bool* p_open); +static void ShowExampleAppLog(bool* p_open); +static void ShowExampleAppLayout(bool* p_open); +static void ShowExampleAppPropertyEditor(bool* p_open); +static void ShowExampleAppSimpleOverlay(bool* p_open); +static void ShowExampleAppAutoResize(bool* p_open); +static void ShowExampleAppConstrainedResize(bool* p_open); +static void ShowExampleAppFullscreen(bool* p_open); +static void ShowExampleAppLongText(bool* p_open); +static void ShowExampleAppWindowTitles(bool* p_open); +static void ShowExampleMenuFile(); + +// We split the contents of the big ShowDemoWindow() function into smaller functions +// (because the link time of very large functions grow non-linearly) +static void ShowDemoWindowWidgets(); +static void ShowDemoWindowLayout(); +static void ShowDemoWindowPopups(); +static void ShowDemoWindowTables(); +static void ShowDemoWindowColumns(); +static void ShowDemoWindowInputs(); + +//----------------------------------------------------------------------------- +// [SECTION] Helpers +//----------------------------------------------------------------------------- + +// Helper to display a little (?) mark which shows a tooltip when hovered. +// In your own code you may want to display an actual icon if you are using a merged icon fonts (see docs/FONTS.md) +static void HelpMarker(const char* desc) +{ + ImGui::TextDisabled("(?)"); + if (ImGui::BeginItemTooltip()) + { + ImGui::PushTextWrapPos(ImGui::GetFontSize() * 35.0f); + ImGui::TextUnformatted(desc); + ImGui::PopTextWrapPos(); + ImGui::EndTooltip(); + } +} + +// Helper to wire demo markers located in code to an interactive browser +typedef void (*ImGuiDemoMarkerCallback)(const char* file, int line, const char* section, void* user_data); +extern ImGuiDemoMarkerCallback GImGuiDemoMarkerCallback; +extern void* GImGuiDemoMarkerCallbackUserData; +ImGuiDemoMarkerCallback GImGuiDemoMarkerCallback = NULL; +void* GImGuiDemoMarkerCallbackUserData = NULL; +#define IMGUI_DEMO_MARKER(section) do { if (GImGuiDemoMarkerCallback != NULL) GImGuiDemoMarkerCallback(__FILE__, __LINE__, section, GImGuiDemoMarkerCallbackUserData); } while (0) + +//----------------------------------------------------------------------------- +// [SECTION] Demo Window / ShowDemoWindow() +//----------------------------------------------------------------------------- +// - ShowDemoWindow() +// - ShowDemoWindowWidgets() +// - ShowDemoWindowLayout() +// - ShowDemoWindowPopups() +// - ShowDemoWindowTables() +// - ShowDemoWindowColumns() +// - ShowDemoWindowInputs() +//----------------------------------------------------------------------------- + +// Demonstrate most Dear ImGui features (this is big function!) +// You may execute this function to experiment with the UI and understand what it does. +// You may then search for keywords in the code when you are interested by a specific feature. +void ImGui::ShowDemoWindow(bool* p_open) +{ + // Exceptionally add an extra assert here for people confused about initial Dear ImGui setup + // Most functions would normally just assert/crash if the context is missing. + IM_ASSERT(ImGui::GetCurrentContext() != NULL && "Missing Dear ImGui context. Refer to examples app!"); + + // Examples Apps (accessible from the "Examples" menu) + static bool show_app_main_menu_bar = false; + static bool show_app_console = false; + static bool show_app_custom_rendering = false; + static bool show_app_documents = false; + static bool show_app_log = false; + static bool show_app_layout = false; + static bool show_app_property_editor = false; + static bool show_app_simple_overlay = false; + static bool show_app_auto_resize = false; + static bool show_app_constrained_resize = false; + static bool show_app_fullscreen = false; + static bool show_app_long_text = false; + static bool show_app_window_titles = false; + + if (show_app_main_menu_bar) ShowExampleAppMainMenuBar(); + if (show_app_documents) ShowExampleAppDocuments(&show_app_documents); + if (show_app_console) ShowExampleAppConsole(&show_app_console); + if (show_app_custom_rendering) ShowExampleAppCustomRendering(&show_app_custom_rendering); + if (show_app_log) ShowExampleAppLog(&show_app_log); + if (show_app_layout) ShowExampleAppLayout(&show_app_layout); + if (show_app_property_editor) ShowExampleAppPropertyEditor(&show_app_property_editor); + if (show_app_simple_overlay) ShowExampleAppSimpleOverlay(&show_app_simple_overlay); + if (show_app_auto_resize) ShowExampleAppAutoResize(&show_app_auto_resize); + if (show_app_constrained_resize) ShowExampleAppConstrainedResize(&show_app_constrained_resize); + if (show_app_fullscreen) ShowExampleAppFullscreen(&show_app_fullscreen); + if (show_app_long_text) ShowExampleAppLongText(&show_app_long_text); + if (show_app_window_titles) ShowExampleAppWindowTitles(&show_app_window_titles); + + // Dear ImGui Tools (accessible from the "Tools" menu) + static bool show_tool_metrics = false; + static bool show_tool_debug_log = false; + static bool show_tool_stack_tool = false; + static bool show_tool_style_editor = false; + static bool show_tool_about = false; + + if (show_tool_metrics) + ImGui::ShowMetricsWindow(&show_tool_metrics); + if (show_tool_debug_log) + ImGui::ShowDebugLogWindow(&show_tool_debug_log); + if (show_tool_stack_tool) + ImGui::ShowStackToolWindow(&show_tool_stack_tool); + if (show_tool_style_editor) + { + ImGui::Begin("Dear ImGui Style Editor", &show_tool_style_editor); + ImGui::ShowStyleEditor(); + ImGui::End(); + } + if (show_tool_about) + ImGui::ShowAboutWindow(&show_tool_about); + + // Demonstrate the various window flags. Typically you would just use the default! + static bool no_titlebar = false; + static bool no_scrollbar = false; + static bool no_menu = false; + static bool no_move = false; + static bool no_resize = false; + static bool no_collapse = false; + static bool no_close = false; + static bool no_nav = false; + static bool no_background = false; + static bool no_bring_to_front = false; + static bool unsaved_document = false; + + ImGuiWindowFlags window_flags = 0; + if (no_titlebar) window_flags |= ImGuiWindowFlags_NoTitleBar; + if (no_scrollbar) window_flags |= ImGuiWindowFlags_NoScrollbar; + if (!no_menu) window_flags |= ImGuiWindowFlags_MenuBar; + if (no_move) window_flags |= ImGuiWindowFlags_NoMove; + if (no_resize) window_flags |= ImGuiWindowFlags_NoResize; + if (no_collapse) window_flags |= ImGuiWindowFlags_NoCollapse; + if (no_nav) window_flags |= ImGuiWindowFlags_NoNav; + if (no_background) window_flags |= ImGuiWindowFlags_NoBackground; + if (no_bring_to_front) window_flags |= ImGuiWindowFlags_NoBringToFrontOnFocus; + if (unsaved_document) window_flags |= ImGuiWindowFlags_UnsavedDocument; + if (no_close) p_open = NULL; // Don't pass our bool* to Begin + + // We specify a default position/size in case there's no data in the .ini file. + // We only do it to make the demo applications a little more welcoming, but typically this isn't required. + const ImGuiViewport* main_viewport = ImGui::GetMainViewport(); + ImGui::SetNextWindowPos(ImVec2(main_viewport->WorkPos.x + 650, main_viewport->WorkPos.y + 20), ImGuiCond_FirstUseEver); + ImGui::SetNextWindowSize(ImVec2(550, 680), ImGuiCond_FirstUseEver); + + // Main body of the Demo window starts here. + if (!ImGui::Begin("Dear ImGui Demo", p_open, window_flags)) + { + // Early out if the window is collapsed, as an optimization. + ImGui::End(); + return; + } + + // Most "big" widgets share a common width settings by default. See 'Demo->Layout->Widgets Width' for details. + // e.g. Use 2/3 of the space for widgets and 1/3 for labels (right align) + //ImGui::PushItemWidth(-ImGui::GetWindowWidth() * 0.35f); + // e.g. Leave a fixed amount of width for labels (by passing a negative value), the rest goes to widgets. + ImGui::PushItemWidth(ImGui::GetFontSize() * -12); + + // Menu Bar + if (ImGui::BeginMenuBar()) + { + if (ImGui::BeginMenu("Menu")) + { + IMGUI_DEMO_MARKER("Menu/File"); + ShowExampleMenuFile(); + ImGui::EndMenu(); + } + if (ImGui::BeginMenu("Examples")) + { + IMGUI_DEMO_MARKER("Menu/Examples"); + ImGui::MenuItem("Main menu bar", NULL, &show_app_main_menu_bar); + + ImGui::SeparatorText("Mini apps"); + ImGui::MenuItem("Console", NULL, &show_app_console); + ImGui::MenuItem("Custom rendering", NULL, &show_app_custom_rendering); + ImGui::MenuItem("Documents", NULL, &show_app_documents); + ImGui::MenuItem("Log", NULL, &show_app_log); + ImGui::MenuItem("Property editor", NULL, &show_app_property_editor); + ImGui::MenuItem("Simple layout", NULL, &show_app_layout); + ImGui::MenuItem("Simple overlay", NULL, &show_app_simple_overlay); + + ImGui::SeparatorText("Concepts"); + ImGui::MenuItem("Auto-resizing window", NULL, &show_app_auto_resize); + ImGui::MenuItem("Constrained-resizing window", NULL, &show_app_constrained_resize); + ImGui::MenuItem("Fullscreen window", NULL, &show_app_fullscreen); + ImGui::MenuItem("Long text display", NULL, &show_app_long_text); + ImGui::MenuItem("Manipulating window titles", NULL, &show_app_window_titles); + + ImGui::EndMenu(); + } + //if (ImGui::MenuItem("MenuItem")) {} // You can also use MenuItem() inside a menu bar! + if (ImGui::BeginMenu("Tools")) + { + IMGUI_DEMO_MARKER("Menu/Tools"); +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + const bool has_debug_tools = true; +#else + const bool has_debug_tools = false; +#endif + ImGui::MenuItem("Metrics/Debugger", NULL, &show_tool_metrics, has_debug_tools); + ImGui::MenuItem("Debug Log", NULL, &show_tool_debug_log, has_debug_tools); + ImGui::MenuItem("Stack Tool", NULL, &show_tool_stack_tool, has_debug_tools); + ImGui::MenuItem("Style Editor", NULL, &show_tool_style_editor); + ImGui::MenuItem("About Dear ImGui", NULL, &show_tool_about); + ImGui::EndMenu(); + } + ImGui::EndMenuBar(); + } + + ImGui::Text("dear imgui says hello! (%s) (%d)", IMGUI_VERSION, IMGUI_VERSION_NUM); + ImGui::Spacing(); + + IMGUI_DEMO_MARKER("Help"); + if (ImGui::CollapsingHeader("Help")) + { + ImGui::SeparatorText("ABOUT THIS DEMO:"); + ImGui::BulletText("Sections below are demonstrating many aspects of the library."); + ImGui::BulletText("The \"Examples\" menu above leads to more demo contents."); + ImGui::BulletText("The \"Tools\" menu above gives access to: About Box, Style Editor,\n" + "and Metrics/Debugger (general purpose Dear ImGui debugging tool)."); + + ImGui::SeparatorText("PROGRAMMER GUIDE:"); + ImGui::BulletText("See the ShowDemoWindow() code in imgui_demo.cpp. <- you are here!"); + ImGui::BulletText("See comments in imgui.cpp."); + ImGui::BulletText("See example applications in the examples/ folder."); + ImGui::BulletText("Read the FAQ at http://www.dearimgui.com/faq/"); + ImGui::BulletText("Set 'io.ConfigFlags |= NavEnableKeyboard' for keyboard controls."); + ImGui::BulletText("Set 'io.ConfigFlags |= NavEnableGamepad' for gamepad controls."); + + ImGui::SeparatorText("USER GUIDE:"); + ImGui::ShowUserGuide(); + } + + IMGUI_DEMO_MARKER("Configuration"); + if (ImGui::CollapsingHeader("Configuration")) + { + ImGuiIO& io = ImGui::GetIO(); + + if (ImGui::TreeNode("Configuration##2")) + { + ImGui::SeparatorText("General"); + ImGui::CheckboxFlags("io.ConfigFlags: NavEnableKeyboard", &io.ConfigFlags, ImGuiConfigFlags_NavEnableKeyboard); + ImGui::SameLine(); HelpMarker("Enable keyboard controls."); + ImGui::CheckboxFlags("io.ConfigFlags: NavEnableGamepad", &io.ConfigFlags, ImGuiConfigFlags_NavEnableGamepad); + ImGui::SameLine(); HelpMarker("Enable gamepad controls. Require backend to set io.BackendFlags |= ImGuiBackendFlags_HasGamepad.\n\nRead instructions in imgui.cpp for details."); + ImGui::CheckboxFlags("io.ConfigFlags: NavEnableSetMousePos", &io.ConfigFlags, ImGuiConfigFlags_NavEnableSetMousePos); + ImGui::SameLine(); HelpMarker("Instruct navigation to move the mouse cursor. See comment for ImGuiConfigFlags_NavEnableSetMousePos."); + ImGui::CheckboxFlags("io.ConfigFlags: NoMouse", &io.ConfigFlags, ImGuiConfigFlags_NoMouse); + if (io.ConfigFlags & ImGuiConfigFlags_NoMouse) + { + // The "NoMouse" option can get us stuck with a disabled mouse! Let's provide an alternative way to fix it: + if (fmodf((float)ImGui::GetTime(), 0.40f) < 0.20f) + { + ImGui::SameLine(); + ImGui::Text("<>"); + } + if (ImGui::IsKeyPressed(ImGuiKey_Space)) + io.ConfigFlags &= ~ImGuiConfigFlags_NoMouse; + } + ImGui::CheckboxFlags("io.ConfigFlags: NoMouseCursorChange", &io.ConfigFlags, ImGuiConfigFlags_NoMouseCursorChange); + ImGui::SameLine(); HelpMarker("Instruct backend to not alter mouse cursor shape and visibility."); + ImGui::Checkbox("io.ConfigInputTrickleEventQueue", &io.ConfigInputTrickleEventQueue); + ImGui::SameLine(); HelpMarker("Enable input queue trickling: some types of events submitted during the same frame (e.g. button down + up) will be spread over multiple frames, improving interactions with low framerates."); + ImGui::Checkbox("io.MouseDrawCursor", &io.MouseDrawCursor); + ImGui::SameLine(); HelpMarker("Instruct Dear ImGui to render a mouse cursor itself. Note that a mouse cursor rendered via your application GPU rendering path will feel more laggy than hardware cursor, but will be more in sync with your other visuals.\n\nSome desktop applications may use both kinds of cursors (e.g. enable software cursor only when resizing/dragging something)."); + + ImGui::SeparatorText("Widgets"); + ImGui::Checkbox("io.ConfigInputTextCursorBlink", &io.ConfigInputTextCursorBlink); + ImGui::SameLine(); HelpMarker("Enable blinking cursor (optional as some users consider it to be distracting)."); + ImGui::Checkbox("io.ConfigInputTextEnterKeepActive", &io.ConfigInputTextEnterKeepActive); + ImGui::SameLine(); HelpMarker("Pressing Enter will keep item active and select contents (single-line only)."); + ImGui::Checkbox("io.ConfigDragClickToInputText", &io.ConfigDragClickToInputText); + ImGui::SameLine(); HelpMarker("Enable turning DragXXX widgets into text input with a simple mouse click-release (without moving)."); + ImGui::Checkbox("io.ConfigWindowsResizeFromEdges", &io.ConfigWindowsResizeFromEdges); + ImGui::SameLine(); HelpMarker("Enable resizing of windows from their edges and from the lower-left corner.\nThis requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback."); + ImGui::Checkbox("io.ConfigWindowsMoveFromTitleBarOnly", &io.ConfigWindowsMoveFromTitleBarOnly); + ImGui::Checkbox("io.ConfigMacOSXBehaviors", &io.ConfigMacOSXBehaviors); + ImGui::Text("Also see Style->Rendering for rendering options."); + + ImGui::SeparatorText("Debug"); + ImGui::BeginDisabled(); + ImGui::Checkbox("io.ConfigDebugBeginReturnValueOnce", &io.ConfigDebugBeginReturnValueOnce); // . + ImGui::EndDisabled(); + ImGui::SameLine(); HelpMarker("First calls to Begin()/BeginChild() will return false.\n\nTHIS OPTION IS DISABLED because it needs to be set at application boot-time to make sense. Showing the disabled option is a way to make this feature easier to discover"); + ImGui::Checkbox("io.ConfigDebugBeginReturnValueLoop", &io.ConfigDebugBeginReturnValueLoop); + ImGui::SameLine(); HelpMarker("Some calls to Begin()/BeginChild() will return false.\n\nWill cycle through window depths then repeat. Windows should be flickering while running."); + ImGui::Checkbox("io.ConfigDebugIgnoreFocusLoss", &io.ConfigDebugIgnoreFocusLoss); + ImGui::SameLine(); HelpMarker("Option to deactivate io.AddFocusEvent(false) handling. May facilitate interactions with a debugger when focus loss leads to clearing inputs data."); + ImGui::Checkbox("io.ConfigDebugIniSettings", &io.ConfigDebugIniSettings); + ImGui::SameLine(); HelpMarker("Option to save .ini data with extra comments (particularly helpful for Docking, but makes saving slower)."); + + ImGui::TreePop(); + ImGui::Spacing(); + } + + IMGUI_DEMO_MARKER("Configuration/Backend Flags"); + if (ImGui::TreeNode("Backend Flags")) + { + HelpMarker( + "Those flags are set by the backends (imgui_impl_xxx files) to specify their capabilities.\n" + "Here we expose them as read-only fields to avoid breaking interactions with your backend."); + + // FIXME: Maybe we need a BeginReadonly() equivalent to keep label bright? + ImGui::BeginDisabled(); + ImGui::CheckboxFlags("io.BackendFlags: HasGamepad", &io.BackendFlags, ImGuiBackendFlags_HasGamepad); + ImGui::CheckboxFlags("io.BackendFlags: HasMouseCursors", &io.BackendFlags, ImGuiBackendFlags_HasMouseCursors); + ImGui::CheckboxFlags("io.BackendFlags: HasSetMousePos", &io.BackendFlags, ImGuiBackendFlags_HasSetMousePos); + ImGui::CheckboxFlags("io.BackendFlags: RendererHasVtxOffset", &io.BackendFlags, ImGuiBackendFlags_RendererHasVtxOffset); + ImGui::EndDisabled(); + ImGui::TreePop(); + ImGui::Spacing(); + } + + IMGUI_DEMO_MARKER("Configuration/Style"); + if (ImGui::TreeNode("Style")) + { + HelpMarker("The same contents can be accessed in 'Tools->Style Editor' or by calling the ShowStyleEditor() function."); + ImGui::ShowStyleEditor(); + ImGui::TreePop(); + ImGui::Spacing(); + } + + IMGUI_DEMO_MARKER("Configuration/Capture, Logging"); + if (ImGui::TreeNode("Capture/Logging")) + { + HelpMarker( + "The logging API redirects all text output so you can easily capture the content of " + "a window or a block. Tree nodes can be automatically expanded.\n" + "Try opening any of the contents below in this window and then click one of the \"Log To\" button."); + ImGui::LogButtons(); + + HelpMarker("You can also call ImGui::LogText() to output directly to the log without a visual output."); + if (ImGui::Button("Copy \"Hello, world!\" to clipboard")) + { + ImGui::LogToClipboard(); + ImGui::LogText("Hello, world!"); + ImGui::LogFinish(); + } + ImGui::TreePop(); + } + } + + IMGUI_DEMO_MARKER("Window options"); + if (ImGui::CollapsingHeader("Window options")) + { + if (ImGui::BeginTable("split", 3)) + { + ImGui::TableNextColumn(); ImGui::Checkbox("No titlebar", &no_titlebar); + ImGui::TableNextColumn(); ImGui::Checkbox("No scrollbar", &no_scrollbar); + ImGui::TableNextColumn(); ImGui::Checkbox("No menu", &no_menu); + ImGui::TableNextColumn(); ImGui::Checkbox("No move", &no_move); + ImGui::TableNextColumn(); ImGui::Checkbox("No resize", &no_resize); + ImGui::TableNextColumn(); ImGui::Checkbox("No collapse", &no_collapse); + ImGui::TableNextColumn(); ImGui::Checkbox("No close", &no_close); + ImGui::TableNextColumn(); ImGui::Checkbox("No nav", &no_nav); + ImGui::TableNextColumn(); ImGui::Checkbox("No background", &no_background); + ImGui::TableNextColumn(); ImGui::Checkbox("No bring to front", &no_bring_to_front); + ImGui::TableNextColumn(); ImGui::Checkbox("Unsaved document", &unsaved_document); + ImGui::EndTable(); + } + } + + // All demo contents + ShowDemoWindowWidgets(); + ShowDemoWindowLayout(); + ShowDemoWindowPopups(); + ShowDemoWindowTables(); + ShowDemoWindowInputs(); + + // End of ShowDemoWindow() + ImGui::PopItemWidth(); + ImGui::End(); +} + +static void ShowDemoWindowWidgets() +{ + IMGUI_DEMO_MARKER("Widgets"); + if (!ImGui::CollapsingHeader("Widgets")) + return; + + static bool disable_all = false; // The Checkbox for that is inside the "Disabled" section at the bottom + if (disable_all) + ImGui::BeginDisabled(); + + IMGUI_DEMO_MARKER("Widgets/Basic"); + if (ImGui::TreeNode("Basic")) + { + ImGui::SeparatorText("General"); + + IMGUI_DEMO_MARKER("Widgets/Basic/Button"); + static int clicked = 0; + if (ImGui::Button("Button")) + clicked++; + if (clicked & 1) + { + ImGui::SameLine(); + ImGui::Text("Thanks for clicking me!"); + } + + IMGUI_DEMO_MARKER("Widgets/Basic/Checkbox"); + static bool check = true; + ImGui::Checkbox("checkbox", &check); + + IMGUI_DEMO_MARKER("Widgets/Basic/RadioButton"); + static int e = 0; + ImGui::RadioButton("radio a", &e, 0); ImGui::SameLine(); + ImGui::RadioButton("radio b", &e, 1); ImGui::SameLine(); + ImGui::RadioButton("radio c", &e, 2); + + // Color buttons, demonstrate using PushID() to add unique identifier in the ID stack, and changing style. + IMGUI_DEMO_MARKER("Widgets/Basic/Buttons (Colored)"); + for (int i = 0; i < 7; i++) + { + if (i > 0) + ImGui::SameLine(); + ImGui::PushID(i); + ImGui::PushStyleColor(ImGuiCol_Button, (ImVec4)ImColor::HSV(i / 7.0f, 0.6f, 0.6f)); + ImGui::PushStyleColor(ImGuiCol_ButtonHovered, (ImVec4)ImColor::HSV(i / 7.0f, 0.7f, 0.7f)); + ImGui::PushStyleColor(ImGuiCol_ButtonActive, (ImVec4)ImColor::HSV(i / 7.0f, 0.8f, 0.8f)); + ImGui::Button("Click"); + ImGui::PopStyleColor(3); + ImGui::PopID(); + } + + // Use AlignTextToFramePadding() to align text baseline to the baseline of framed widgets elements + // (otherwise a Text+SameLine+Button sequence will have the text a little too high by default!) + // See 'Demo->Layout->Text Baseline Alignment' for details. + ImGui::AlignTextToFramePadding(); + ImGui::Text("Hold to repeat:"); + ImGui::SameLine(); + + // Arrow buttons with Repeater + IMGUI_DEMO_MARKER("Widgets/Basic/Buttons (Repeating)"); + static int counter = 0; + float spacing = ImGui::GetStyle().ItemInnerSpacing.x; + ImGui::PushButtonRepeat(true); + if (ImGui::ArrowButton("##left", ImGuiDir_Left)) { counter--; } + ImGui::SameLine(0.0f, spacing); + if (ImGui::ArrowButton("##right", ImGuiDir_Right)) { counter++; } + ImGui::PopButtonRepeat(); + ImGui::SameLine(); + ImGui::Text("%d", counter); + + ImGui::Button("Tooltip"); + ImGui::SetItemTooltip("I am a tooltip"); + + ImGui::LabelText("label", "Value"); + + ImGui::SeparatorText("Inputs"); + + { + // To wire InputText() with std::string or any other custom string type, + // see the "Text Input > Resize Callback" section of this demo, and the misc/cpp/imgui_stdlib.h file. + IMGUI_DEMO_MARKER("Widgets/Basic/InputText"); + static char str0[128] = "Hello, world!"; + ImGui::InputText("input text", str0, IM_ARRAYSIZE(str0)); + ImGui::SameLine(); HelpMarker( + "USER:\n" + "Hold SHIFT or use mouse to select text.\n" + "CTRL+Left/Right to word jump.\n" + "CTRL+A or Double-Click to select all.\n" + "CTRL+X,CTRL+C,CTRL+V clipboard.\n" + "CTRL+Z,CTRL+Y undo/redo.\n" + "ESCAPE to revert.\n\n" + "PROGRAMMER:\n" + "You can use the ImGuiInputTextFlags_CallbackResize facility if you need to wire InputText() " + "to a dynamic string type. See misc/cpp/imgui_stdlib.h for an example (this is not demonstrated " + "in imgui_demo.cpp)."); + + static char str1[128] = ""; + ImGui::InputTextWithHint("input text (w/ hint)", "enter text here", str1, IM_ARRAYSIZE(str1)); + + IMGUI_DEMO_MARKER("Widgets/Basic/InputInt, InputFloat"); + static int i0 = 123; + ImGui::InputInt("input int", &i0); + + static float f0 = 0.001f; + ImGui::InputFloat("input float", &f0, 0.01f, 1.0f, "%.3f"); + + static double d0 = 999999.00000001; + ImGui::InputDouble("input double", &d0, 0.01f, 1.0f, "%.8f"); + + static float f1 = 1.e10f; + ImGui::InputFloat("input scientific", &f1, 0.0f, 0.0f, "%e"); + ImGui::SameLine(); HelpMarker( + "You can input value using the scientific notation,\n" + " e.g. \"1e+8\" becomes \"100000000\"."); + + static float vec4a[4] = { 0.10f, 0.20f, 0.30f, 0.44f }; + ImGui::InputFloat3("input float3", vec4a); + } + + ImGui::SeparatorText("Drags"); + + { + IMGUI_DEMO_MARKER("Widgets/Basic/DragInt, DragFloat"); + static int i1 = 50, i2 = 42; + ImGui::DragInt("drag int", &i1, 1); + ImGui::SameLine(); HelpMarker( + "Click and drag to edit value.\n" + "Hold SHIFT/ALT for faster/slower edit.\n" + "Double-click or CTRL+click to input value."); + + ImGui::DragInt("drag int 0..100", &i2, 1, 0, 100, "%d%%", ImGuiSliderFlags_AlwaysClamp); + + static float f1 = 1.00f, f2 = 0.0067f; + ImGui::DragFloat("drag float", &f1, 0.005f); + ImGui::DragFloat("drag small float", &f2, 0.0001f, 0.0f, 0.0f, "%.06f ns"); + } + + ImGui::SeparatorText("Sliders"); + + { + IMGUI_DEMO_MARKER("Widgets/Basic/SliderInt, SliderFloat"); + static int i1 = 0; + ImGui::SliderInt("slider int", &i1, -1, 3); + ImGui::SameLine(); HelpMarker("CTRL+click to input value."); + + static float f1 = 0.123f, f2 = 0.0f; + ImGui::SliderFloat("slider float", &f1, 0.0f, 1.0f, "ratio = %.3f"); + ImGui::SliderFloat("slider float (log)", &f2, -10.0f, 10.0f, "%.4f", ImGuiSliderFlags_Logarithmic); + + IMGUI_DEMO_MARKER("Widgets/Basic/SliderAngle"); + static float angle = 0.0f; + ImGui::SliderAngle("slider angle", &angle); + + // Using the format string to display a name instead of an integer. + // Here we completely omit '%d' from the format string, so it'll only display a name. + // This technique can also be used with DragInt(). + IMGUI_DEMO_MARKER("Widgets/Basic/Slider (enum)"); + enum Element { Element_Fire, Element_Earth, Element_Air, Element_Water, Element_COUNT }; + static int elem = Element_Fire; + const char* elems_names[Element_COUNT] = { "Fire", "Earth", "Air", "Water" }; + const char* elem_name = (elem >= 0 && elem < Element_COUNT) ? elems_names[elem] : "Unknown"; + ImGui::SliderInt("slider enum", &elem, 0, Element_COUNT - 1, elem_name); // Use ImGuiSliderFlags_NoInput flag to disable CTRL+Click here. + ImGui::SameLine(); HelpMarker("Using the format string parameter to display a name instead of the underlying integer."); + } + + ImGui::SeparatorText("Selectors/Pickers"); + + { + IMGUI_DEMO_MARKER("Widgets/Basic/ColorEdit3, ColorEdit4"); + static float col1[3] = { 1.0f, 0.0f, 0.2f }; + static float col2[4] = { 0.4f, 0.7f, 0.0f, 0.5f }; + ImGui::ColorEdit3("color 1", col1); + ImGui::SameLine(); HelpMarker( + "Click on the color square to open a color picker.\n" + "Click and hold to use drag and drop.\n" + "Right-click on the color square to show options.\n" + "CTRL+click on individual component to input value.\n"); + + ImGui::ColorEdit4("color 2", col2); + } + + { + // Using the _simplified_ one-liner Combo() api here + // See "Combo" section for examples of how to use the more flexible BeginCombo()/EndCombo() api. + IMGUI_DEMO_MARKER("Widgets/Basic/Combo"); + const char* items[] = { "AAAA", "BBBB", "CCCC", "DDDD", "EEEE", "FFFF", "GGGG", "HHHH", "IIIIIII", "JJJJ", "KKKKKKK" }; + static int item_current = 0; + ImGui::Combo("combo", &item_current, items, IM_ARRAYSIZE(items)); + ImGui::SameLine(); HelpMarker( + "Using the simplified one-liner Combo API here.\nRefer to the \"Combo\" section below for an explanation of how to use the more flexible and general BeginCombo/EndCombo API."); + } + + { + // Using the _simplified_ one-liner ListBox() api here + // See "List boxes" section for examples of how to use the more flexible BeginListBox()/EndListBox() api. + IMGUI_DEMO_MARKER("Widgets/Basic/ListBox"); + const char* items[] = { "Apple", "Banana", "Cherry", "Kiwi", "Mango", "Orange", "Pineapple", "Strawberry", "Watermelon" }; + static int item_current = 1; + ImGui::ListBox("listbox", &item_current, items, IM_ARRAYSIZE(items), 4); + ImGui::SameLine(); HelpMarker( + "Using the simplified one-liner ListBox API here.\nRefer to the \"List boxes\" section below for an explanation of how to use the more flexible and general BeginListBox/EndListBox API."); + } + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Tooltips"); + if (ImGui::TreeNode("Tooltips")) + { + // Tooltips are windows following the mouse. They do not take focus away. + ImGui::SeparatorText("General"); + + // Typical use cases: + // - Short-form (text only): SetItemTooltip("Hello"); + // - Short-form (any contents): if (BeginItemTooltip()) { Text("Hello"); EndTooltip(); } + + // - Full-form (text only): if (IsItemHovered(...)) { SetTooltip("Hello"); } + // - Full-form (any contents): if (IsItemHovered(...) && BeginTooltip()) { Text("Hello"); EndTooltip(); } + + HelpMarker( + "Tooltip are typically created by using a IsItemHovered() + SetTooltip() sequence.\n\n" + "We provide a helper SetItemTooltip() function to perform the two with standards flags."); + + ImVec2 sz = ImVec2(-FLT_MIN, 0.0f); + + ImGui::Button("Basic", sz); + ImGui::SetItemTooltip("I am a tooltip"); + + ImGui::Button("Fancy", sz); + if (ImGui::BeginItemTooltip()) + { + ImGui::Text("I am a fancy tooltip"); + static float arr[] = { 0.6f, 0.1f, 1.0f, 0.5f, 0.92f, 0.1f, 0.2f }; + ImGui::PlotLines("Curve", arr, IM_ARRAYSIZE(arr)); + ImGui::Text("Sin(time) = %f", sinf((float)ImGui::GetTime())); + ImGui::EndTooltip(); + } + + ImGui::SeparatorText("Always On"); + + // Showcase NOT relying on a IsItemHovered() to emit a tooltip. + // Here the tooltip is always emitted when 'always_on == true'. + static int always_on = 0; + ImGui::RadioButton("Off", &always_on, 0); + ImGui::SameLine(); + ImGui::RadioButton("Always On (Simple)", &always_on, 1); + ImGui::SameLine(); + ImGui::RadioButton("Always On (Advanced)", &always_on, 2); + if (always_on == 1) + ImGui::SetTooltip("I am following you around."); + else if (always_on == 2 && ImGui::BeginTooltip()) + { + ImGui::ProgressBar(sinf((float)ImGui::GetTime()) * 0.5f + 0.5f, ImVec2(ImGui::GetFontSize() * 25, 0.0f)); + ImGui::EndTooltip(); + } + + ImGui::SeparatorText("Custom"); + + // The following examples are passed for documentation purpose but may not be useful to most users. + // Passing ImGuiHoveredFlags_Tooltip to IsItemHovered() will pull ImGuiHoveredFlags flags values from + // 'style.HoverFlagsForTooltipMouse' or 'style.HoverFlagsForTooltipNav' depending on whether mouse or gamepad/keyboard is being used. + // With default settings, ImGuiHoveredFlags_Tooltip is equivalent to ImGuiHoveredFlags_DelayShort + ImGuiHoveredFlags_Stationary. + ImGui::Button("Manual", sz); + if (ImGui::IsItemHovered(ImGuiHoveredFlags_ForTooltip)) + ImGui::SetTooltip("I am a manually emitted tooltip"); + + ImGui::Button("DelayNone", sz); + if (ImGui::IsItemHovered(ImGuiHoveredFlags_DelayNone)) + ImGui::SetTooltip("I am a tooltip with no delay."); + + ImGui::Button("DelayShort", sz); + if (ImGui::IsItemHovered(ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_NoSharedDelay)) + ImGui::SetTooltip("I am a tooltip with a short delay (%0.2f sec).", ImGui::GetStyle().HoverDelayShort); + + ImGui::Button("DelayLong", sz); + if (ImGui::IsItemHovered(ImGuiHoveredFlags_DelayNormal | ImGuiHoveredFlags_NoSharedDelay)) + ImGui::SetTooltip("I am a tooltip with a long delay (%0.2f sec)", ImGui::GetStyle().HoverDelayNormal); + + ImGui::Button("Stationary", sz); + if (ImGui::IsItemHovered(ImGuiHoveredFlags_Stationary)) + ImGui::SetTooltip("I am a tooltip requiring mouse to be stationary before activating."); + + ImGui::TreePop(); + } + + // Testing ImGuiOnceUponAFrame helper. + //static ImGuiOnceUponAFrame once; + //for (int i = 0; i < 5; i++) + // if (once) + // ImGui::Text("This will be displayed only once."); + + IMGUI_DEMO_MARKER("Widgets/Trees"); + if (ImGui::TreeNode("Trees")) + { + IMGUI_DEMO_MARKER("Widgets/Trees/Basic trees"); + if (ImGui::TreeNode("Basic trees")) + { + for (int i = 0; i < 5; i++) + { + // Use SetNextItemOpen() so set the default state of a node to be open. We could + // also use TreeNodeEx() with the ImGuiTreeNodeFlags_DefaultOpen flag to achieve the same thing! + if (i == 0) + ImGui::SetNextItemOpen(true, ImGuiCond_Once); + + if (ImGui::TreeNode((void*)(intptr_t)i, "Child %d", i)) + { + ImGui::Text("blah blah"); + ImGui::SameLine(); + if (ImGui::SmallButton("button")) {} + ImGui::TreePop(); + } + } + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Trees/Advanced, with Selectable nodes"); + if (ImGui::TreeNode("Advanced, with Selectable nodes")) + { + HelpMarker( + "This is a more typical looking tree with selectable nodes.\n" + "Click to select, CTRL+Click to toggle, click on arrows or double-click to open."); + static ImGuiTreeNodeFlags base_flags = ImGuiTreeNodeFlags_OpenOnArrow | ImGuiTreeNodeFlags_OpenOnDoubleClick | ImGuiTreeNodeFlags_SpanAvailWidth; + static bool align_label_with_current_x_position = false; + static bool test_drag_and_drop = false; + ImGui::CheckboxFlags("ImGuiTreeNodeFlags_OpenOnArrow", &base_flags, ImGuiTreeNodeFlags_OpenOnArrow); + ImGui::CheckboxFlags("ImGuiTreeNodeFlags_OpenOnDoubleClick", &base_flags, ImGuiTreeNodeFlags_OpenOnDoubleClick); + ImGui::CheckboxFlags("ImGuiTreeNodeFlags_SpanAvailWidth", &base_flags, ImGuiTreeNodeFlags_SpanAvailWidth); ImGui::SameLine(); HelpMarker("Extend hit area to all available width instead of allowing more items to be laid out after the node."); + ImGui::CheckboxFlags("ImGuiTreeNodeFlags_SpanFullWidth", &base_flags, ImGuiTreeNodeFlags_SpanFullWidth); + ImGui::Checkbox("Align label with current X position", &align_label_with_current_x_position); + ImGui::Checkbox("Test tree node as drag source", &test_drag_and_drop); + ImGui::Text("Hello!"); + if (align_label_with_current_x_position) + ImGui::Unindent(ImGui::GetTreeNodeToLabelSpacing()); + + // 'selection_mask' is dumb representation of what may be user-side selection state. + // You may retain selection state inside or outside your objects in whatever format you see fit. + // 'node_clicked' is temporary storage of what node we have clicked to process selection at the end + /// of the loop. May be a pointer to your own node type, etc. + static int selection_mask = (1 << 2); + int node_clicked = -1; + for (int i = 0; i < 6; i++) + { + // Disable the default "open on single-click behavior" + set Selected flag according to our selection. + // To alter selection we use IsItemClicked() && !IsItemToggledOpen(), so clicking on an arrow doesn't alter selection. + ImGuiTreeNodeFlags node_flags = base_flags; + const bool is_selected = (selection_mask & (1 << i)) != 0; + if (is_selected) + node_flags |= ImGuiTreeNodeFlags_Selected; + if (i < 3) + { + // Items 0..2 are Tree Node + bool node_open = ImGui::TreeNodeEx((void*)(intptr_t)i, node_flags, "Selectable Node %d", i); + if (ImGui::IsItemClicked() && !ImGui::IsItemToggledOpen()) + node_clicked = i; + if (test_drag_and_drop && ImGui::BeginDragDropSource()) + { + ImGui::SetDragDropPayload("_TREENODE", NULL, 0); + ImGui::Text("This is a drag and drop source"); + ImGui::EndDragDropSource(); + } + if (node_open) + { + ImGui::BulletText("Blah blah\nBlah Blah"); + ImGui::TreePop(); + } + } + else + { + // Items 3..5 are Tree Leaves + // The only reason we use TreeNode at all is to allow selection of the leaf. Otherwise we can + // use BulletText() or advance the cursor by GetTreeNodeToLabelSpacing() and call Text(). + node_flags |= ImGuiTreeNodeFlags_Leaf | ImGuiTreeNodeFlags_NoTreePushOnOpen; // ImGuiTreeNodeFlags_Bullet + ImGui::TreeNodeEx((void*)(intptr_t)i, node_flags, "Selectable Leaf %d", i); + if (ImGui::IsItemClicked() && !ImGui::IsItemToggledOpen()) + node_clicked = i; + if (test_drag_and_drop && ImGui::BeginDragDropSource()) + { + ImGui::SetDragDropPayload("_TREENODE", NULL, 0); + ImGui::Text("This is a drag and drop source"); + ImGui::EndDragDropSource(); + } + } + } + if (node_clicked != -1) + { + // Update selection state + // (process outside of tree loop to avoid visual inconsistencies during the clicking frame) + if (ImGui::GetIO().KeyCtrl) + selection_mask ^= (1 << node_clicked); // CTRL+click to toggle + else //if (!(selection_mask & (1 << node_clicked))) // Depending on selection behavior you want, may want to preserve selection when clicking on item that is part of the selection + selection_mask = (1 << node_clicked); // Click to single-select + } + if (align_label_with_current_x_position) + ImGui::Indent(ImGui::GetTreeNodeToLabelSpacing()); + ImGui::TreePop(); + } + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Collapsing Headers"); + if (ImGui::TreeNode("Collapsing Headers")) + { + static bool closable_group = true; + ImGui::Checkbox("Show 2nd header", &closable_group); + if (ImGui::CollapsingHeader("Header", ImGuiTreeNodeFlags_None)) + { + ImGui::Text("IsItemHovered: %d", ImGui::IsItemHovered()); + for (int i = 0; i < 5; i++) + ImGui::Text("Some content %d", i); + } + if (ImGui::CollapsingHeader("Header with a close button", &closable_group)) + { + ImGui::Text("IsItemHovered: %d", ImGui::IsItemHovered()); + for (int i = 0; i < 5; i++) + ImGui::Text("More content %d", i); + } + /* + if (ImGui::CollapsingHeader("Header with a bullet", ImGuiTreeNodeFlags_Bullet)) + ImGui::Text("IsItemHovered: %d", ImGui::IsItemHovered()); + */ + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Bullets"); + if (ImGui::TreeNode("Bullets")) + { + ImGui::BulletText("Bullet point 1"); + ImGui::BulletText("Bullet point 2\nOn multiple lines"); + if (ImGui::TreeNode("Tree node")) + { + ImGui::BulletText("Another bullet point"); + ImGui::TreePop(); + } + ImGui::Bullet(); ImGui::Text("Bullet point 3 (two calls)"); + ImGui::Bullet(); ImGui::SmallButton("Button"); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Text"); + if (ImGui::TreeNode("Text")) + { + IMGUI_DEMO_MARKER("Widgets/Text/Colored Text"); + if (ImGui::TreeNode("Colorful Text")) + { + // Using shortcut. You can use PushStyleColor()/PopStyleColor() for more flexibility. + ImGui::TextColored(ImVec4(1.0f, 0.0f, 1.0f, 1.0f), "Pink"); + ImGui::TextColored(ImVec4(1.0f, 1.0f, 0.0f, 1.0f), "Yellow"); + ImGui::TextDisabled("Disabled"); + ImGui::SameLine(); HelpMarker("The TextDisabled color is stored in ImGuiStyle."); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Text/Word Wrapping"); + if (ImGui::TreeNode("Word Wrapping")) + { + // Using shortcut. You can use PushTextWrapPos()/PopTextWrapPos() for more flexibility. + ImGui::TextWrapped( + "This text should automatically wrap on the edge of the window. The current implementation " + "for text wrapping follows simple rules suitable for English and possibly other languages."); + ImGui::Spacing(); + + static float wrap_width = 200.0f; + ImGui::SliderFloat("Wrap width", &wrap_width, -20, 600, "%.0f"); + + ImDrawList* draw_list = ImGui::GetWindowDrawList(); + for (int n = 0; n < 2; n++) + { + ImGui::Text("Test paragraph %d:", n); + ImVec2 pos = ImGui::GetCursorScreenPos(); + ImVec2 marker_min = ImVec2(pos.x + wrap_width, pos.y); + ImVec2 marker_max = ImVec2(pos.x + wrap_width + 10, pos.y + ImGui::GetTextLineHeight()); + ImGui::PushTextWrapPos(ImGui::GetCursorPos().x + wrap_width); + if (n == 0) + ImGui::Text("The lazy dog is a good dog. This paragraph should fit within %.0f pixels. Testing a 1 character word. The quick brown fox jumps over the lazy dog.", wrap_width); + else + ImGui::Text("aaaaaaaa bbbbbbbb, c cccccccc,dddddddd. d eeeeeeee ffffffff. gggggggg!hhhhhhhh"); + + // Draw actual text bounding box, following by marker of our expected limit (should not overlap!) + draw_list->AddRect(ImGui::GetItemRectMin(), ImGui::GetItemRectMax(), IM_COL32(255, 255, 0, 255)); + draw_list->AddRectFilled(marker_min, marker_max, IM_COL32(255, 0, 255, 255)); + ImGui::PopTextWrapPos(); + } + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Text/UTF-8 Text"); + if (ImGui::TreeNode("UTF-8 Text")) + { + // UTF-8 test with Japanese characters + // (Needs a suitable font? Try "Google Noto" or "Arial Unicode". See docs/FONTS.md for details.) + // - From C++11 you can use the u8"my text" syntax to encode literal strings as UTF-8 + // - For earlier compiler, you may be able to encode your sources as UTF-8 (e.g. in Visual Studio, you + // can save your source files as 'UTF-8 without signature'). + // - FOR THIS DEMO FILE ONLY, BECAUSE WE WANT TO SUPPORT OLD COMPILERS, WE ARE *NOT* INCLUDING RAW UTF-8 + // CHARACTERS IN THIS SOURCE FILE. Instead we are encoding a few strings with hexadecimal constants. + // Don't do this in your application! Please use u8"text in any language" in your application! + // Note that characters values are preserved even by InputText() if the font cannot be displayed, + // so you can safely copy & paste garbled characters into another application. + ImGui::TextWrapped( + "CJK text will only appear if the font was loaded with the appropriate CJK character ranges. " + "Call io.Fonts->AddFontFromFileTTF() manually to load extra character ranges. " + "Read docs/FONTS.md for details."); + ImGui::Text("Hiragana: \xe3\x81\x8b\xe3\x81\x8d\xe3\x81\x8f\xe3\x81\x91\xe3\x81\x93 (kakikukeko)"); // Normally we would use u8"blah blah" with the proper characters directly in the string. + ImGui::Text("Kanjis: \xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e (nihongo)"); + static char buf[32] = "\xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e"; + //static char buf[32] = u8"NIHONGO"; // <- this is how you would write it with C++11, using real kanjis + ImGui::InputText("UTF-8 input", buf, IM_ARRAYSIZE(buf)); + ImGui::TreePop(); + } + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Images"); + if (ImGui::TreeNode("Images")) + { + ImGuiIO& io = ImGui::GetIO(); + ImGui::TextWrapped( + "Below we are displaying the font texture (which is the only texture we have access to in this demo). " + "Use the 'ImTextureID' type as storage to pass pointers or identifier to your own texture data. " + "Hover the texture for a zoomed view!"); + + // Below we are displaying the font texture because it is the only texture we have access to inside the demo! + // Remember that ImTextureID is just storage for whatever you want it to be. It is essentially a value that + // will be passed to the rendering backend via the ImDrawCmd structure. + // If you use one of the default imgui_impl_XXXX.cpp rendering backend, they all have comments at the top + // of their respective source file to specify what they expect to be stored in ImTextureID, for example: + // - The imgui_impl_dx11.cpp renderer expect a 'ID3D11ShaderResourceView*' pointer + // - The imgui_impl_opengl3.cpp renderer expect a GLuint OpenGL texture identifier, etc. + // More: + // - If you decided that ImTextureID = MyEngineTexture*, then you can pass your MyEngineTexture* pointers + // to ImGui::Image(), and gather width/height through your own functions, etc. + // - You can use ShowMetricsWindow() to inspect the draw data that are being passed to your renderer, + // it will help you debug issues if you are confused about it. + // - Consider using the lower-level ImDrawList::AddImage() API, via ImGui::GetWindowDrawList()->AddImage(). + // - Read https://github.com/ocornut/imgui/blob/master/docs/FAQ.md + // - Read https://github.com/ocornut/imgui/wiki/Image-Loading-and-Displaying-Examples + ImTextureID my_tex_id = io.Fonts->TexID; + float my_tex_w = (float)io.Fonts->TexWidth; + float my_tex_h = (float)io.Fonts->TexHeight; + { + static bool use_text_color_for_tint = false; + ImGui::Checkbox("Use Text Color for Tint", &use_text_color_for_tint); + ImGui::Text("%.0fx%.0f", my_tex_w, my_tex_h); + ImVec2 pos = ImGui::GetCursorScreenPos(); + ImVec2 uv_min = ImVec2(0.0f, 0.0f); // Top-left + ImVec2 uv_max = ImVec2(1.0f, 1.0f); // Lower-right + ImVec4 tint_col = use_text_color_for_tint ? ImGui::GetStyleColorVec4(ImGuiCol_Text) : ImVec4(1.0f, 1.0f, 1.0f, 1.0f); // No tint + ImVec4 border_col = ImGui::GetStyleColorVec4(ImGuiCol_Border); + ImGui::Image(my_tex_id, ImVec2(my_tex_w, my_tex_h), uv_min, uv_max, tint_col, border_col); + if (ImGui::BeginItemTooltip()) + { + float region_sz = 32.0f; + float region_x = io.MousePos.x - pos.x - region_sz * 0.5f; + float region_y = io.MousePos.y - pos.y - region_sz * 0.5f; + float zoom = 4.0f; + if (region_x < 0.0f) { region_x = 0.0f; } + else if (region_x > my_tex_w - region_sz) { region_x = my_tex_w - region_sz; } + if (region_y < 0.0f) { region_y = 0.0f; } + else if (region_y > my_tex_h - region_sz) { region_y = my_tex_h - region_sz; } + ImGui::Text("Min: (%.2f, %.2f)", region_x, region_y); + ImGui::Text("Max: (%.2f, %.2f)", region_x + region_sz, region_y + region_sz); + ImVec2 uv0 = ImVec2((region_x) / my_tex_w, (region_y) / my_tex_h); + ImVec2 uv1 = ImVec2((region_x + region_sz) / my_tex_w, (region_y + region_sz) / my_tex_h); + ImGui::Image(my_tex_id, ImVec2(region_sz * zoom, region_sz * zoom), uv0, uv1, tint_col, border_col); + ImGui::EndTooltip(); + } + } + + IMGUI_DEMO_MARKER("Widgets/Images/Textured buttons"); + ImGui::TextWrapped("And now some textured buttons.."); + static int pressed_count = 0; + for (int i = 0; i < 8; i++) + { + // UV coordinates are often (0.0f, 0.0f) and (1.0f, 1.0f) to display an entire textures. + // Here are trying to display only a 32x32 pixels area of the texture, hence the UV computation. + // Read about UV coordinates here: https://github.com/ocornut/imgui/wiki/Image-Loading-and-Displaying-Examples + ImGui::PushID(i); + if (i > 0) + ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(i - 1.0f, i - 1.0f)); + ImVec2 size = ImVec2(32.0f, 32.0f); // Size of the image we want to make visible + ImVec2 uv0 = ImVec2(0.0f, 0.0f); // UV coordinates for lower-left + ImVec2 uv1 = ImVec2(32.0f / my_tex_w, 32.0f / my_tex_h); // UV coordinates for (32,32) in our texture + ImVec4 bg_col = ImVec4(0.0f, 0.0f, 0.0f, 1.0f); // Black background + ImVec4 tint_col = ImVec4(1.0f, 1.0f, 1.0f, 1.0f); // No tint + if (ImGui::ImageButton("", my_tex_id, size, uv0, uv1, bg_col, tint_col)) + pressed_count += 1; + if (i > 0) + ImGui::PopStyleVar(); + ImGui::PopID(); + ImGui::SameLine(); + } + ImGui::NewLine(); + ImGui::Text("Pressed %d times.", pressed_count); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Combo"); + if (ImGui::TreeNode("Combo")) + { + // Combo Boxes are also called "Dropdown" in other systems + // Expose flags as checkbox for the demo + static ImGuiComboFlags flags = 0; + ImGui::CheckboxFlags("ImGuiComboFlags_PopupAlignLeft", &flags, ImGuiComboFlags_PopupAlignLeft); + ImGui::SameLine(); HelpMarker("Only makes a difference if the popup is larger than the combo"); + if (ImGui::CheckboxFlags("ImGuiComboFlags_NoArrowButton", &flags, ImGuiComboFlags_NoArrowButton)) + flags &= ~ImGuiComboFlags_NoPreview; // Clear the other flag, as we cannot combine both + if (ImGui::CheckboxFlags("ImGuiComboFlags_NoPreview", &flags, ImGuiComboFlags_NoPreview)) + flags &= ~ImGuiComboFlags_NoArrowButton; // Clear the other flag, as we cannot combine both + + // Using the generic BeginCombo() API, you have full control over how to display the combo contents. + // (your selection data could be an index, a pointer to the object, an id for the object, a flag intrusively + // stored in the object itself, etc.) + const char* items[] = { "AAAA", "BBBB", "CCCC", "DDDD", "EEEE", "FFFF", "GGGG", "HHHH", "IIII", "JJJJ", "KKKK", "LLLLLLL", "MMMM", "OOOOOOO" }; + static int item_current_idx = 0; // Here we store our selection data as an index. + const char* combo_preview_value = items[item_current_idx]; // Pass in the preview value visible before opening the combo (it could be anything) + if (ImGui::BeginCombo("combo 1", combo_preview_value, flags)) + { + for (int n = 0; n < IM_ARRAYSIZE(items); n++) + { + const bool is_selected = (item_current_idx == n); + if (ImGui::Selectable(items[n], is_selected)) + item_current_idx = n; + + // Set the initial focus when opening the combo (scrolling + keyboard navigation focus) + if (is_selected) + ImGui::SetItemDefaultFocus(); + } + ImGui::EndCombo(); + } + + // Simplified one-liner Combo() API, using values packed in a single constant string + // This is a convenience for when the selection set is small and known at compile-time. + static int item_current_2 = 0; + ImGui::Combo("combo 2 (one-liner)", &item_current_2, "aaaa\0bbbb\0cccc\0dddd\0eeee\0\0"); + + // Simplified one-liner Combo() using an array of const char* + // This is not very useful (may obsolete): prefer using BeginCombo()/EndCombo() for full control. + static int item_current_3 = -1; // If the selection isn't within 0..count, Combo won't display a preview + ImGui::Combo("combo 3 (array)", &item_current_3, items, IM_ARRAYSIZE(items)); + + // Simplified one-liner Combo() using an accessor function + struct Funcs { static bool ItemGetter(void* data, int n, const char** out_str) { *out_str = ((const char**)data)[n]; return true; } }; + static int item_current_4 = 0; + ImGui::Combo("combo 4 (function)", &item_current_4, &Funcs::ItemGetter, items, IM_ARRAYSIZE(items)); + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/List Boxes"); + if (ImGui::TreeNode("List boxes")) + { + // Using the generic BeginListBox() API, you have full control over how to display the combo contents. + // (your selection data could be an index, a pointer to the object, an id for the object, a flag intrusively + // stored in the object itself, etc.) + const char* items[] = { "AAAA", "BBBB", "CCCC", "DDDD", "EEEE", "FFFF", "GGGG", "HHHH", "IIII", "JJJJ", "KKKK", "LLLLLLL", "MMMM", "OOOOOOO" }; + static int item_current_idx = 0; // Here we store our selection data as an index. + if (ImGui::BeginListBox("listbox 1")) + { + for (int n = 0; n < IM_ARRAYSIZE(items); n++) + { + const bool is_selected = (item_current_idx == n); + if (ImGui::Selectable(items[n], is_selected)) + item_current_idx = n; + + // Set the initial focus when opening the combo (scrolling + keyboard navigation focus) + if (is_selected) + ImGui::SetItemDefaultFocus(); + } + ImGui::EndListBox(); + } + + // Custom size: use all width, 5 items tall + ImGui::Text("Full-width:"); + if (ImGui::BeginListBox("##listbox 2", ImVec2(-FLT_MIN, 5 * ImGui::GetTextLineHeightWithSpacing()))) + { + for (int n = 0; n < IM_ARRAYSIZE(items); n++) + { + const bool is_selected = (item_current_idx == n); + if (ImGui::Selectable(items[n], is_selected)) + item_current_idx = n; + + // Set the initial focus when opening the combo (scrolling + keyboard navigation focus) + if (is_selected) + ImGui::SetItemDefaultFocus(); + } + ImGui::EndListBox(); + } + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Selectables"); + if (ImGui::TreeNode("Selectables")) + { + // Selectable() has 2 overloads: + // - The one taking "bool selected" as a read-only selection information. + // When Selectable() has been clicked it returns true and you can alter selection state accordingly. + // - The one taking "bool* p_selected" as a read-write selection information (convenient in some cases) + // The earlier is more flexible, as in real application your selection may be stored in many different ways + // and not necessarily inside a bool value (e.g. in flags within objects, as an external list, etc). + IMGUI_DEMO_MARKER("Widgets/Selectables/Basic"); + if (ImGui::TreeNode("Basic")) + { + static bool selection[5] = { false, true, false, false }; + ImGui::Selectable("1. I am selectable", &selection[0]); + ImGui::Selectable("2. I am selectable", &selection[1]); + ImGui::Selectable("3. I am selectable", &selection[2]); + if (ImGui::Selectable("4. I am double clickable", selection[3], ImGuiSelectableFlags_AllowDoubleClick)) + if (ImGui::IsMouseDoubleClicked(0)) + selection[3] = !selection[3]; + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Selectables/Single Selection"); + if (ImGui::TreeNode("Selection State: Single Selection")) + { + static int selected = -1; + for (int n = 0; n < 5; n++) + { + char buf[32]; + sprintf(buf, "Object %d", n); + if (ImGui::Selectable(buf, selected == n)) + selected = n; + } + ImGui::TreePop(); + } + IMGUI_DEMO_MARKER("Widgets/Selectables/Multiple Selection"); + if (ImGui::TreeNode("Selection State: Multiple Selection")) + { + HelpMarker("Hold CTRL and click to select multiple items."); + static bool selection[5] = { false, false, false, false, false }; + for (int n = 0; n < 5; n++) + { + char buf[32]; + sprintf(buf, "Object %d", n); + if (ImGui::Selectable(buf, selection[n])) + { + if (!ImGui::GetIO().KeyCtrl) // Clear selection when CTRL is not held + memset(selection, 0, sizeof(selection)); + selection[n] ^= 1; + } + } + ImGui::TreePop(); + } + IMGUI_DEMO_MARKER("Widgets/Selectables/Rendering more items on the same line"); + if (ImGui::TreeNode("Rendering more items on the same line")) + { + // (1) Using SetNextItemAllowOverlap() + // (2) Using the Selectable() override that takes "bool* p_selected" parameter, the bool value is toggled automatically. + static bool selected[3] = { false, false, false }; + ImGui::SetNextItemAllowOverlap(); ImGui::Selectable("main.c", &selected[0]); ImGui::SameLine(); ImGui::SmallButton("Link 1"); + ImGui::SetNextItemAllowOverlap(); ImGui::Selectable("Hello.cpp", &selected[1]); ImGui::SameLine(); ImGui::SmallButton("Link 2"); + ImGui::SetNextItemAllowOverlap(); ImGui::Selectable("Hello.h", &selected[2]); ImGui::SameLine(); ImGui::SmallButton("Link 3"); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Selectables/In columns"); + if (ImGui::TreeNode("In columns")) + { + static bool selected[10] = {}; + + if (ImGui::BeginTable("split1", 3, ImGuiTableFlags_Resizable | ImGuiTableFlags_NoSavedSettings | ImGuiTableFlags_Borders)) + { + for (int i = 0; i < 10; i++) + { + char label[32]; + sprintf(label, "Item %d", i); + ImGui::TableNextColumn(); + ImGui::Selectable(label, &selected[i]); // FIXME-TABLE: Selection overlap + } + ImGui::EndTable(); + } + ImGui::Spacing(); + if (ImGui::BeginTable("split2", 3, ImGuiTableFlags_Resizable | ImGuiTableFlags_NoSavedSettings | ImGuiTableFlags_Borders)) + { + for (int i = 0; i < 10; i++) + { + char label[32]; + sprintf(label, "Item %d", i); + ImGui::TableNextRow(); + ImGui::TableNextColumn(); + ImGui::Selectable(label, &selected[i], ImGuiSelectableFlags_SpanAllColumns); + ImGui::TableNextColumn(); + ImGui::Text("Some other contents"); + ImGui::TableNextColumn(); + ImGui::Text("123456"); + } + ImGui::EndTable(); + } + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Selectables/Grid"); + if (ImGui::TreeNode("Grid")) + { + static char selected[4][4] = { { 1, 0, 0, 0 }, { 0, 1, 0, 0 }, { 0, 0, 1, 0 }, { 0, 0, 0, 1 } }; + + // Add in a bit of silly fun... + const float time = (float)ImGui::GetTime(); + const bool winning_state = memchr(selected, 0, sizeof(selected)) == NULL; // If all cells are selected... + if (winning_state) + ImGui::PushStyleVar(ImGuiStyleVar_SelectableTextAlign, ImVec2(0.5f + 0.5f * cosf(time * 2.0f), 0.5f + 0.5f * sinf(time * 3.0f))); + + for (int y = 0; y < 4; y++) + for (int x = 0; x < 4; x++) + { + if (x > 0) + ImGui::SameLine(); + ImGui::PushID(y * 4 + x); + if (ImGui::Selectable("Sailor", selected[y][x] != 0, 0, ImVec2(50, 50))) + { + // Toggle clicked cell + toggle neighbors + selected[y][x] ^= 1; + if (x > 0) { selected[y][x - 1] ^= 1; } + if (x < 3) { selected[y][x + 1] ^= 1; } + if (y > 0) { selected[y - 1][x] ^= 1; } + if (y < 3) { selected[y + 1][x] ^= 1; } + } + ImGui::PopID(); + } + + if (winning_state) + ImGui::PopStyleVar(); + ImGui::TreePop(); + } + IMGUI_DEMO_MARKER("Widgets/Selectables/Alignment"); + if (ImGui::TreeNode("Alignment")) + { + HelpMarker( + "By default, Selectables uses style.SelectableTextAlign but it can be overridden on a per-item " + "basis using PushStyleVar(). You'll probably want to always keep your default situation to " + "left-align otherwise it becomes difficult to layout multiple items on a same line"); + static bool selected[3 * 3] = { true, false, true, false, true, false, true, false, true }; + for (int y = 0; y < 3; y++) + { + for (int x = 0; x < 3; x++) + { + ImVec2 alignment = ImVec2((float)x / 2.0f, (float)y / 2.0f); + char name[32]; + sprintf(name, "(%.1f,%.1f)", alignment.x, alignment.y); + if (x > 0) ImGui::SameLine(); + ImGui::PushStyleVar(ImGuiStyleVar_SelectableTextAlign, alignment); + ImGui::Selectable(name, &selected[3 * y + x], ImGuiSelectableFlags_None, ImVec2(80, 80)); + ImGui::PopStyleVar(); + } + } + ImGui::TreePop(); + } + ImGui::TreePop(); + } + + // To wire InputText() with std::string or any other custom string type, + // see the "Text Input > Resize Callback" section of this demo, and the misc/cpp/imgui_stdlib.h file. + IMGUI_DEMO_MARKER("Widgets/Text Input"); + if (ImGui::TreeNode("Text Input")) + { + IMGUI_DEMO_MARKER("Widgets/Text Input/Multi-line Text Input"); + if (ImGui::TreeNode("Multi-line Text Input")) + { + // Note: we are using a fixed-sized buffer for simplicity here. See ImGuiInputTextFlags_CallbackResize + // and the code in misc/cpp/imgui_stdlib.h for how to setup InputText() for dynamically resizing strings. + static char text[1024 * 16] = + "/*\n" + " The Pentium F00F bug, shorthand for F0 0F C7 C8,\n" + " the hexadecimal encoding of one offending instruction,\n" + " more formally, the invalid operand with locked CMPXCHG8B\n" + " instruction bug, is a design flaw in the majority of\n" + " Intel Pentium, Pentium MMX, and Pentium OverDrive\n" + " processors (all in the P5 microarchitecture).\n" + "*/\n\n" + "label:\n" + "\tlock cmpxchg8b eax\n"; + + static ImGuiInputTextFlags flags = ImGuiInputTextFlags_AllowTabInput; + HelpMarker("You can use the ImGuiInputTextFlags_CallbackResize facility if you need to wire InputTextMultiline() to a dynamic string type. See misc/cpp/imgui_stdlib.h for an example. (This is not demonstrated in imgui_demo.cpp because we don't want to include in here)"); + ImGui::CheckboxFlags("ImGuiInputTextFlags_ReadOnly", &flags, ImGuiInputTextFlags_ReadOnly); + ImGui::CheckboxFlags("ImGuiInputTextFlags_AllowTabInput", &flags, ImGuiInputTextFlags_AllowTabInput); + ImGui::CheckboxFlags("ImGuiInputTextFlags_CtrlEnterForNewLine", &flags, ImGuiInputTextFlags_CtrlEnterForNewLine); + ImGui::InputTextMultiline("##source", text, IM_ARRAYSIZE(text), ImVec2(-FLT_MIN, ImGui::GetTextLineHeight() * 16), flags); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Text Input/Filtered Text Input"); + if (ImGui::TreeNode("Filtered Text Input")) + { + struct TextFilters + { + // Modify character input by altering 'data->Eventchar' (ImGuiInputTextFlags_CallbackCharFilter callback) + static int FilterCasingSwap(ImGuiInputTextCallbackData* data) + { + if (data->EventChar >= 'a' && data->EventChar <= 'z') { data->EventChar -= 'a' - 'A'; } // Lowercase becomes uppercase + else if (data->EventChar >= 'A' && data->EventChar <= 'Z') { data->EventChar += 'a' - 'A'; } // Uppercase becomes lowercase + return 0; + } + + // Return 0 (pass) if the character is 'i' or 'm' or 'g' or 'u' or 'i', otherwise return 1 (filter out) + static int FilterImGuiLetters(ImGuiInputTextCallbackData* data) + { + if (data->EventChar < 256 && strchr("imgui", (char)data->EventChar)) + return 0; + return 1; + } + }; + + static char buf1[32] = ""; ImGui::InputText("default", buf1, 32); + static char buf2[32] = ""; ImGui::InputText("decimal", buf2, 32, ImGuiInputTextFlags_CharsDecimal); + static char buf3[32] = ""; ImGui::InputText("hexadecimal", buf3, 32, ImGuiInputTextFlags_CharsHexadecimal | ImGuiInputTextFlags_CharsUppercase); + static char buf4[32] = ""; ImGui::InputText("uppercase", buf4, 32, ImGuiInputTextFlags_CharsUppercase); + static char buf5[32] = ""; ImGui::InputText("no blank", buf5, 32, ImGuiInputTextFlags_CharsNoBlank); + static char buf6[32] = ""; ImGui::InputText("casing swap", buf6, 32, ImGuiInputTextFlags_CallbackCharFilter, TextFilters::FilterCasingSwap); // Use CharFilter callback to replace characters. + static char buf7[32] = ""; ImGui::InputText("\"imgui\"", buf7, 32, ImGuiInputTextFlags_CallbackCharFilter, TextFilters::FilterImGuiLetters); // Use CharFilter callback to disable some characters. + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Text Input/Password input"); + if (ImGui::TreeNode("Password Input")) + { + static char password[64] = "password123"; + ImGui::InputText("password", password, IM_ARRAYSIZE(password), ImGuiInputTextFlags_Password); + ImGui::SameLine(); HelpMarker("Display all characters as '*'.\nDisable clipboard cut and copy.\nDisable logging.\n"); + ImGui::InputTextWithHint("password (w/ hint)", "", password, IM_ARRAYSIZE(password), ImGuiInputTextFlags_Password); + ImGui::InputText("password (clear)", password, IM_ARRAYSIZE(password)); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Text Input/Completion, History, Edit Callbacks"); + if (ImGui::TreeNode("Completion, History, Edit Callbacks")) + { + struct Funcs + { + static int MyCallback(ImGuiInputTextCallbackData* data) + { + if (data->EventFlag == ImGuiInputTextFlags_CallbackCompletion) + { + data->InsertChars(data->CursorPos, ".."); + } + else if (data->EventFlag == ImGuiInputTextFlags_CallbackHistory) + { + if (data->EventKey == ImGuiKey_UpArrow) + { + data->DeleteChars(0, data->BufTextLen); + data->InsertChars(0, "Pressed Up!"); + data->SelectAll(); + } + else if (data->EventKey == ImGuiKey_DownArrow) + { + data->DeleteChars(0, data->BufTextLen); + data->InsertChars(0, "Pressed Down!"); + data->SelectAll(); + } + } + else if (data->EventFlag == ImGuiInputTextFlags_CallbackEdit) + { + // Toggle casing of first character + char c = data->Buf[0]; + if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')) data->Buf[0] ^= 32; + data->BufDirty = true; + + // Increment a counter + int* p_int = (int*)data->UserData; + *p_int = *p_int + 1; + } + return 0; + } + }; + static char buf1[64]; + ImGui::InputText("Completion", buf1, 64, ImGuiInputTextFlags_CallbackCompletion, Funcs::MyCallback); + ImGui::SameLine(); HelpMarker("Here we append \"..\" each time Tab is pressed. See 'Examples>Console' for a more meaningful demonstration of using this callback."); + + static char buf2[64]; + ImGui::InputText("History", buf2, 64, ImGuiInputTextFlags_CallbackHistory, Funcs::MyCallback); + ImGui::SameLine(); HelpMarker("Here we replace and select text each time Up/Down are pressed. See 'Examples>Console' for a more meaningful demonstration of using this callback."); + + static char buf3[64]; + static int edit_count = 0; + ImGui::InputText("Edit", buf3, 64, ImGuiInputTextFlags_CallbackEdit, Funcs::MyCallback, (void*)&edit_count); + ImGui::SameLine(); HelpMarker("Here we toggle the casing of the first character on every edit + count edits."); + ImGui::SameLine(); ImGui::Text("(%d)", edit_count); + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Text Input/Resize Callback"); + if (ImGui::TreeNode("Resize Callback")) + { + // To wire InputText() with std::string or any other custom string type, + // you can use the ImGuiInputTextFlags_CallbackResize flag + create a custom ImGui::InputText() wrapper + // using your preferred type. See misc/cpp/imgui_stdlib.h for an implementation of this using std::string. + HelpMarker( + "Using ImGuiInputTextFlags_CallbackResize to wire your custom string type to InputText().\n\n" + "See misc/cpp/imgui_stdlib.h for an implementation of this for std::string."); + struct Funcs + { + static int MyResizeCallback(ImGuiInputTextCallbackData* data) + { + if (data->EventFlag == ImGuiInputTextFlags_CallbackResize) + { + ImVector* my_str = (ImVector*)data->UserData; + IM_ASSERT(my_str->begin() == data->Buf); + my_str->resize(data->BufSize); // NB: On resizing calls, generally data->BufSize == data->BufTextLen + 1 + data->Buf = my_str->begin(); + } + return 0; + } + + // Note: Because ImGui:: is a namespace you would typically add your own function into the namespace. + // For example, you code may declare a function 'ImGui::InputText(const char* label, MyString* my_str)' + static bool MyInputTextMultiline(const char* label, ImVector* my_str, const ImVec2& size = ImVec2(0, 0), ImGuiInputTextFlags flags = 0) + { + IM_ASSERT((flags & ImGuiInputTextFlags_CallbackResize) == 0); + return ImGui::InputTextMultiline(label, my_str->begin(), (size_t)my_str->size(), size, flags | ImGuiInputTextFlags_CallbackResize, Funcs::MyResizeCallback, (void*)my_str); + } + }; + + // For this demo we are using ImVector as a string container. + // Note that because we need to store a terminating zero character, our size/capacity are 1 more + // than usually reported by a typical string class. + static ImVector my_str; + if (my_str.empty()) + my_str.push_back(0); + Funcs::MyInputTextMultiline("##MyStr", &my_str, ImVec2(-FLT_MIN, ImGui::GetTextLineHeight() * 16)); + ImGui::Text("Data: %p\nSize: %d\nCapacity: %d", (void*)my_str.begin(), my_str.size(), my_str.capacity()); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Text Input/Miscellaneous"); + if (ImGui::TreeNode("Miscellaneous")) + { + static char buf1[16]; + static ImGuiInputTextFlags flags = ImGuiInputTextFlags_EscapeClearsAll; + ImGui::CheckboxFlags("ImGuiInputTextFlags_EscapeClearsAll", &flags, ImGuiInputTextFlags_EscapeClearsAll); + ImGui::CheckboxFlags("ImGuiInputTextFlags_ReadOnly", &flags, ImGuiInputTextFlags_ReadOnly); + ImGui::CheckboxFlags("ImGuiInputTextFlags_NoUndoRedo", &flags, ImGuiInputTextFlags_NoUndoRedo); + ImGui::InputText("Hello", buf1, IM_ARRAYSIZE(buf1), flags); + ImGui::TreePop(); + } + + ImGui::TreePop(); + } + + // Tabs + IMGUI_DEMO_MARKER("Widgets/Tabs"); + if (ImGui::TreeNode("Tabs")) + { + IMGUI_DEMO_MARKER("Widgets/Tabs/Basic"); + if (ImGui::TreeNode("Basic")) + { + ImGuiTabBarFlags tab_bar_flags = ImGuiTabBarFlags_None; + if (ImGui::BeginTabBar("MyTabBar", tab_bar_flags)) + { + if (ImGui::BeginTabItem("Avocado")) + { + ImGui::Text("This is the Avocado tab!\nblah blah blah blah blah"); + ImGui::EndTabItem(); + } + if (ImGui::BeginTabItem("Broccoli")) + { + ImGui::Text("This is the Broccoli tab!\nblah blah blah blah blah"); + ImGui::EndTabItem(); + } + if (ImGui::BeginTabItem("Cucumber")) + { + ImGui::Text("This is the Cucumber tab!\nblah blah blah blah blah"); + ImGui::EndTabItem(); + } + ImGui::EndTabBar(); + } + ImGui::Separator(); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Tabs/Advanced & Close Button"); + if (ImGui::TreeNode("Advanced & Close Button")) + { + // Expose a couple of the available flags. In most cases you may just call BeginTabBar() with no flags (0). + static ImGuiTabBarFlags tab_bar_flags = ImGuiTabBarFlags_Reorderable; + ImGui::CheckboxFlags("ImGuiTabBarFlags_Reorderable", &tab_bar_flags, ImGuiTabBarFlags_Reorderable); + ImGui::CheckboxFlags("ImGuiTabBarFlags_AutoSelectNewTabs", &tab_bar_flags, ImGuiTabBarFlags_AutoSelectNewTabs); + ImGui::CheckboxFlags("ImGuiTabBarFlags_TabListPopupButton", &tab_bar_flags, ImGuiTabBarFlags_TabListPopupButton); + ImGui::CheckboxFlags("ImGuiTabBarFlags_NoCloseWithMiddleMouseButton", &tab_bar_flags, ImGuiTabBarFlags_NoCloseWithMiddleMouseButton); + if ((tab_bar_flags & ImGuiTabBarFlags_FittingPolicyMask_) == 0) + tab_bar_flags |= ImGuiTabBarFlags_FittingPolicyDefault_; + if (ImGui::CheckboxFlags("ImGuiTabBarFlags_FittingPolicyResizeDown", &tab_bar_flags, ImGuiTabBarFlags_FittingPolicyResizeDown)) + tab_bar_flags &= ~(ImGuiTabBarFlags_FittingPolicyMask_ ^ ImGuiTabBarFlags_FittingPolicyResizeDown); + if (ImGui::CheckboxFlags("ImGuiTabBarFlags_FittingPolicyScroll", &tab_bar_flags, ImGuiTabBarFlags_FittingPolicyScroll)) + tab_bar_flags &= ~(ImGuiTabBarFlags_FittingPolicyMask_ ^ ImGuiTabBarFlags_FittingPolicyScroll); + + // Tab Bar + const char* names[4] = { "Artichoke", "Beetroot", "Celery", "Daikon" }; + static bool opened[4] = { true, true, true, true }; // Persistent user state + for (int n = 0; n < IM_ARRAYSIZE(opened); n++) + { + if (n > 0) { ImGui::SameLine(); } + ImGui::Checkbox(names[n], &opened[n]); + } + + // Passing a bool* to BeginTabItem() is similar to passing one to Begin(): + // the underlying bool will be set to false when the tab is closed. + if (ImGui::BeginTabBar("MyTabBar", tab_bar_flags)) + { + for (int n = 0; n < IM_ARRAYSIZE(opened); n++) + if (opened[n] && ImGui::BeginTabItem(names[n], &opened[n], ImGuiTabItemFlags_None)) + { + ImGui::Text("This is the %s tab!", names[n]); + if (n & 1) + ImGui::Text("I am an odd tab."); + ImGui::EndTabItem(); + } + ImGui::EndTabBar(); + } + ImGui::Separator(); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Tabs/TabItemButton & Leading-Trailing flags"); + if (ImGui::TreeNode("TabItemButton & Leading/Trailing flags")) + { + static ImVector active_tabs; + static int next_tab_id = 0; + if (next_tab_id == 0) // Initialize with some default tabs + for (int i = 0; i < 3; i++) + active_tabs.push_back(next_tab_id++); + + // TabItemButton() and Leading/Trailing flags are distinct features which we will demo together. + // (It is possible to submit regular tabs with Leading/Trailing flags, or TabItemButton tabs without Leading/Trailing flags... + // but they tend to make more sense together) + static bool show_leading_button = true; + static bool show_trailing_button = true; + ImGui::Checkbox("Show Leading TabItemButton()", &show_leading_button); + ImGui::Checkbox("Show Trailing TabItemButton()", &show_trailing_button); + + // Expose some other flags which are useful to showcase how they interact with Leading/Trailing tabs + static ImGuiTabBarFlags tab_bar_flags = ImGuiTabBarFlags_AutoSelectNewTabs | ImGuiTabBarFlags_Reorderable | ImGuiTabBarFlags_FittingPolicyResizeDown; + ImGui::CheckboxFlags("ImGuiTabBarFlags_TabListPopupButton", &tab_bar_flags, ImGuiTabBarFlags_TabListPopupButton); + if (ImGui::CheckboxFlags("ImGuiTabBarFlags_FittingPolicyResizeDown", &tab_bar_flags, ImGuiTabBarFlags_FittingPolicyResizeDown)) + tab_bar_flags &= ~(ImGuiTabBarFlags_FittingPolicyMask_ ^ ImGuiTabBarFlags_FittingPolicyResizeDown); + if (ImGui::CheckboxFlags("ImGuiTabBarFlags_FittingPolicyScroll", &tab_bar_flags, ImGuiTabBarFlags_FittingPolicyScroll)) + tab_bar_flags &= ~(ImGuiTabBarFlags_FittingPolicyMask_ ^ ImGuiTabBarFlags_FittingPolicyScroll); + + if (ImGui::BeginTabBar("MyTabBar", tab_bar_flags)) + { + // Demo a Leading TabItemButton(): click the "?" button to open a menu + if (show_leading_button) + if (ImGui::TabItemButton("?", ImGuiTabItemFlags_Leading | ImGuiTabItemFlags_NoTooltip)) + ImGui::OpenPopup("MyHelpMenu"); + if (ImGui::BeginPopup("MyHelpMenu")) + { + ImGui::Selectable("Hello!"); + ImGui::EndPopup(); + } + + // Demo Trailing Tabs: click the "+" button to add a new tab (in your app you may want to use a font icon instead of the "+") + // Note that we submit it before the regular tabs, but because of the ImGuiTabItemFlags_Trailing flag it will always appear at the end. + if (show_trailing_button) + if (ImGui::TabItemButton("+", ImGuiTabItemFlags_Trailing | ImGuiTabItemFlags_NoTooltip)) + active_tabs.push_back(next_tab_id++); // Add new tab + + // Submit our regular tabs + for (int n = 0; n < active_tabs.Size; ) + { + bool open = true; + char name[16]; + snprintf(name, IM_ARRAYSIZE(name), "%04d", active_tabs[n]); + if (ImGui::BeginTabItem(name, &open, ImGuiTabItemFlags_None)) + { + ImGui::Text("This is the %s tab!", name); + ImGui::EndTabItem(); + } + + if (!open) + active_tabs.erase(active_tabs.Data + n); + else + n++; + } + + ImGui::EndTabBar(); + } + ImGui::Separator(); + ImGui::TreePop(); + } + ImGui::TreePop(); + } + + // Plot/Graph widgets are not very good. + // Consider using a third-party library such as ImPlot: https://github.com/epezent/implot + // (see others https://github.com/ocornut/imgui/wiki/Useful-Extensions) + IMGUI_DEMO_MARKER("Widgets/Plotting"); + if (ImGui::TreeNode("Plotting")) + { + static bool animate = true; + ImGui::Checkbox("Animate", &animate); + + // Plot as lines and plot as histogram + IMGUI_DEMO_MARKER("Widgets/Plotting/PlotLines, PlotHistogram"); + static float arr[] = { 0.6f, 0.1f, 1.0f, 0.5f, 0.92f, 0.1f, 0.2f }; + ImGui::PlotLines("Frame Times", arr, IM_ARRAYSIZE(arr)); + ImGui::PlotHistogram("Histogram", arr, IM_ARRAYSIZE(arr), 0, NULL, 0.0f, 1.0f, ImVec2(0, 80.0f)); + + // Fill an array of contiguous float values to plot + // Tip: If your float aren't contiguous but part of a structure, you can pass a pointer to your first float + // and the sizeof() of your structure in the "stride" parameter. + static float values[90] = {}; + static int values_offset = 0; + static double refresh_time = 0.0; + if (!animate || refresh_time == 0.0) + refresh_time = ImGui::GetTime(); + while (refresh_time < ImGui::GetTime()) // Create data at fixed 60 Hz rate for the demo + { + static float phase = 0.0f; + values[values_offset] = cosf(phase); + values_offset = (values_offset + 1) % IM_ARRAYSIZE(values); + phase += 0.10f * values_offset; + refresh_time += 1.0f / 60.0f; + } + + // Plots can display overlay texts + // (in this example, we will display an average value) + { + float average = 0.0f; + for (int n = 0; n < IM_ARRAYSIZE(values); n++) + average += values[n]; + average /= (float)IM_ARRAYSIZE(values); + char overlay[32]; + sprintf(overlay, "avg %f", average); + ImGui::PlotLines("Lines", values, IM_ARRAYSIZE(values), values_offset, overlay, -1.0f, 1.0f, ImVec2(0, 80.0f)); + } + + // Use functions to generate output + // FIXME: This is actually VERY awkward because current plot API only pass in indices. + // We probably want an API passing floats and user provide sample rate/count. + struct Funcs + { + static float Sin(void*, int i) { return sinf(i * 0.1f); } + static float Saw(void*, int i) { return (i & 1) ? 1.0f : -1.0f; } + }; + static int func_type = 0, display_count = 70; + ImGui::SeparatorText("Functions"); + ImGui::SetNextItemWidth(ImGui::GetFontSize() * 8); + ImGui::Combo("func", &func_type, "Sin\0Saw\0"); + ImGui::SameLine(); + ImGui::SliderInt("Sample count", &display_count, 1, 400); + float (*func)(void*, int) = (func_type == 0) ? Funcs::Sin : Funcs::Saw; + ImGui::PlotLines("Lines", func, NULL, display_count, 0, NULL, -1.0f, 1.0f, ImVec2(0, 80)); + ImGui::PlotHistogram("Histogram", func, NULL, display_count, 0, NULL, -1.0f, 1.0f, ImVec2(0, 80)); + ImGui::Separator(); + + // Animate a simple progress bar + IMGUI_DEMO_MARKER("Widgets/Plotting/ProgressBar"); + static float progress = 0.0f, progress_dir = 1.0f; + if (animate) + { + progress += progress_dir * 0.4f * ImGui::GetIO().DeltaTime; + if (progress >= +1.1f) { progress = +1.1f; progress_dir *= -1.0f; } + if (progress <= -0.1f) { progress = -0.1f; progress_dir *= -1.0f; } + } + + // Typically we would use ImVec2(-1.0f,0.0f) or ImVec2(-FLT_MIN,0.0f) to use all available width, + // or ImVec2(width,0.0f) for a specified width. ImVec2(0.0f,0.0f) uses ItemWidth. + ImGui::ProgressBar(progress, ImVec2(0.0f, 0.0f)); + ImGui::SameLine(0.0f, ImGui::GetStyle().ItemInnerSpacing.x); + ImGui::Text("Progress Bar"); + + float progress_saturated = IM_CLAMP(progress, 0.0f, 1.0f); + char buf[32]; + sprintf(buf, "%d/%d", (int)(progress_saturated * 1753), 1753); + ImGui::ProgressBar(progress, ImVec2(0.f, 0.f), buf); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Color"); + if (ImGui::TreeNode("Color/Picker Widgets")) + { + static ImVec4 color = ImVec4(114.0f / 255.0f, 144.0f / 255.0f, 154.0f / 255.0f, 200.0f / 255.0f); + + static bool alpha_preview = true; + static bool alpha_half_preview = false; + static bool drag_and_drop = true; + static bool options_menu = true; + static bool hdr = false; + ImGui::SeparatorText("Options"); + ImGui::Checkbox("With Alpha Preview", &alpha_preview); + ImGui::Checkbox("With Half Alpha Preview", &alpha_half_preview); + ImGui::Checkbox("With Drag and Drop", &drag_and_drop); + ImGui::Checkbox("With Options Menu", &options_menu); ImGui::SameLine(); HelpMarker("Right-click on the individual color widget to show options."); + ImGui::Checkbox("With HDR", &hdr); ImGui::SameLine(); HelpMarker("Currently all this does is to lift the 0..1 limits on dragging widgets."); + ImGuiColorEditFlags misc_flags = (hdr ? ImGuiColorEditFlags_HDR : 0) | (drag_and_drop ? 0 : ImGuiColorEditFlags_NoDragDrop) | (alpha_half_preview ? ImGuiColorEditFlags_AlphaPreviewHalf : (alpha_preview ? ImGuiColorEditFlags_AlphaPreview : 0)) | (options_menu ? 0 : ImGuiColorEditFlags_NoOptions); + + IMGUI_DEMO_MARKER("Widgets/Color/ColorEdit"); + ImGui::SeparatorText("Inline color editor"); + ImGui::Text("Color widget:"); + ImGui::SameLine(); HelpMarker( + "Click on the color square to open a color picker.\n" + "CTRL+click on individual component to input value.\n"); + ImGui::ColorEdit3("MyColor##1", (float*)&color, misc_flags); + + IMGUI_DEMO_MARKER("Widgets/Color/ColorEdit (HSV, with Alpha)"); + ImGui::Text("Color widget HSV with Alpha:"); + ImGui::ColorEdit4("MyColor##2", (float*)&color, ImGuiColorEditFlags_DisplayHSV | misc_flags); + + IMGUI_DEMO_MARKER("Widgets/Color/ColorEdit (float display)"); + ImGui::Text("Color widget with Float Display:"); + ImGui::ColorEdit4("MyColor##2f", (float*)&color, ImGuiColorEditFlags_Float | misc_flags); + + IMGUI_DEMO_MARKER("Widgets/Color/ColorButton (with Picker)"); + ImGui::Text("Color button with Picker:"); + ImGui::SameLine(); HelpMarker( + "With the ImGuiColorEditFlags_NoInputs flag you can hide all the slider/text inputs.\n" + "With the ImGuiColorEditFlags_NoLabel flag you can pass a non-empty label which will only " + "be used for the tooltip and picker popup."); + ImGui::ColorEdit4("MyColor##3", (float*)&color, ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoLabel | misc_flags); + + IMGUI_DEMO_MARKER("Widgets/Color/ColorButton (with custom Picker popup)"); + ImGui::Text("Color button with Custom Picker Popup:"); + + // Generate a default palette. The palette will persist and can be edited. + static bool saved_palette_init = true; + static ImVec4 saved_palette[32] = {}; + if (saved_palette_init) + { + for (int n = 0; n < IM_ARRAYSIZE(saved_palette); n++) + { + ImGui::ColorConvertHSVtoRGB(n / 31.0f, 0.8f, 0.8f, + saved_palette[n].x, saved_palette[n].y, saved_palette[n].z); + saved_palette[n].w = 1.0f; // Alpha + } + saved_palette_init = false; + } + + static ImVec4 backup_color; + bool open_popup = ImGui::ColorButton("MyColor##3b", color, misc_flags); + ImGui::SameLine(0, ImGui::GetStyle().ItemInnerSpacing.x); + open_popup |= ImGui::Button("Palette"); + if (open_popup) + { + ImGui::OpenPopup("mypicker"); + backup_color = color; + } + if (ImGui::BeginPopup("mypicker")) + { + ImGui::Text("MY CUSTOM COLOR PICKER WITH AN AMAZING PALETTE!"); + ImGui::Separator(); + ImGui::ColorPicker4("##picker", (float*)&color, misc_flags | ImGuiColorEditFlags_NoSidePreview | ImGuiColorEditFlags_NoSmallPreview); + ImGui::SameLine(); + + ImGui::BeginGroup(); // Lock X position + ImGui::Text("Current"); + ImGui::ColorButton("##current", color, ImGuiColorEditFlags_NoPicker | ImGuiColorEditFlags_AlphaPreviewHalf, ImVec2(60, 40)); + ImGui::Text("Previous"); + if (ImGui::ColorButton("##previous", backup_color, ImGuiColorEditFlags_NoPicker | ImGuiColorEditFlags_AlphaPreviewHalf, ImVec2(60, 40))) + color = backup_color; + ImGui::Separator(); + ImGui::Text("Palette"); + for (int n = 0; n < IM_ARRAYSIZE(saved_palette); n++) + { + ImGui::PushID(n); + if ((n % 8) != 0) + ImGui::SameLine(0.0f, ImGui::GetStyle().ItemSpacing.y); + + ImGuiColorEditFlags palette_button_flags = ImGuiColorEditFlags_NoAlpha | ImGuiColorEditFlags_NoPicker | ImGuiColorEditFlags_NoTooltip; + if (ImGui::ColorButton("##palette", saved_palette[n], palette_button_flags, ImVec2(20, 20))) + color = ImVec4(saved_palette[n].x, saved_palette[n].y, saved_palette[n].z, color.w); // Preserve alpha! + + // Allow user to drop colors into each palette entry. Note that ColorButton() is already a + // drag source by default, unless specifying the ImGuiColorEditFlags_NoDragDrop flag. + if (ImGui::BeginDragDropTarget()) + { + if (const ImGuiPayload* payload = ImGui::AcceptDragDropPayload(IMGUI_PAYLOAD_TYPE_COLOR_3F)) + memcpy((float*)&saved_palette[n], payload->Data, sizeof(float) * 3); + if (const ImGuiPayload* payload = ImGui::AcceptDragDropPayload(IMGUI_PAYLOAD_TYPE_COLOR_4F)) + memcpy((float*)&saved_palette[n], payload->Data, sizeof(float) * 4); + ImGui::EndDragDropTarget(); + } + + ImGui::PopID(); + } + ImGui::EndGroup(); + ImGui::EndPopup(); + } + + IMGUI_DEMO_MARKER("Widgets/Color/ColorButton (simple)"); + ImGui::Text("Color button only:"); + static bool no_border = false; + ImGui::Checkbox("ImGuiColorEditFlags_NoBorder", &no_border); + ImGui::ColorButton("MyColor##3c", *(ImVec4*)&color, misc_flags | (no_border ? ImGuiColorEditFlags_NoBorder : 0), ImVec2(80, 80)); + + IMGUI_DEMO_MARKER("Widgets/Color/ColorPicker"); + ImGui::SeparatorText("Color picker"); + static bool alpha = true; + static bool alpha_bar = true; + static bool side_preview = true; + static bool ref_color = false; + static ImVec4 ref_color_v(1.0f, 0.0f, 1.0f, 0.5f); + static int display_mode = 0; + static int picker_mode = 0; + ImGui::Checkbox("With Alpha", &alpha); + ImGui::Checkbox("With Alpha Bar", &alpha_bar); + ImGui::Checkbox("With Side Preview", &side_preview); + if (side_preview) + { + ImGui::SameLine(); + ImGui::Checkbox("With Ref Color", &ref_color); + if (ref_color) + { + ImGui::SameLine(); + ImGui::ColorEdit4("##RefColor", &ref_color_v.x, ImGuiColorEditFlags_NoInputs | misc_flags); + } + } + ImGui::Combo("Display Mode", &display_mode, "Auto/Current\0None\0RGB Only\0HSV Only\0Hex Only\0"); + ImGui::SameLine(); HelpMarker( + "ColorEdit defaults to displaying RGB inputs if you don't specify a display mode, " + "but the user can change it with a right-click on those inputs.\n\nColorPicker defaults to displaying RGB+HSV+Hex " + "if you don't specify a display mode.\n\nYou can change the defaults using SetColorEditOptions()."); + ImGui::SameLine(); HelpMarker("When not specified explicitly (Auto/Current mode), user can right-click the picker to change mode."); + ImGuiColorEditFlags flags = misc_flags; + if (!alpha) flags |= ImGuiColorEditFlags_NoAlpha; // This is by default if you call ColorPicker3() instead of ColorPicker4() + if (alpha_bar) flags |= ImGuiColorEditFlags_AlphaBar; + if (!side_preview) flags |= ImGuiColorEditFlags_NoSidePreview; + if (picker_mode == 1) flags |= ImGuiColorEditFlags_PickerHueBar; + if (picker_mode == 2) flags |= ImGuiColorEditFlags_PickerHueWheel; + if (display_mode == 1) flags |= ImGuiColorEditFlags_NoInputs; // Disable all RGB/HSV/Hex displays + if (display_mode == 2) flags |= ImGuiColorEditFlags_DisplayRGB; // Override display mode + if (display_mode == 3) flags |= ImGuiColorEditFlags_DisplayHSV; + if (display_mode == 4) flags |= ImGuiColorEditFlags_DisplayHex; + ImGui::ColorPicker4("MyColor##4", (float*)&color, flags, ref_color ? &ref_color_v.x : NULL); + + ImGui::Text("Set defaults in code:"); + ImGui::SameLine(); HelpMarker( + "SetColorEditOptions() is designed to allow you to set boot-time default.\n" + "We don't have Push/Pop functions because you can force options on a per-widget basis if needed," + "and the user can change non-forced ones with the options menu.\nWe don't have a getter to avoid" + "encouraging you to persistently save values that aren't forward-compatible."); + if (ImGui::Button("Default: Uint8 + HSV + Hue Bar")) + ImGui::SetColorEditOptions(ImGuiColorEditFlags_Uint8 | ImGuiColorEditFlags_DisplayHSV | ImGuiColorEditFlags_PickerHueBar); + if (ImGui::Button("Default: Float + HDR + Hue Wheel")) + ImGui::SetColorEditOptions(ImGuiColorEditFlags_Float | ImGuiColorEditFlags_HDR | ImGuiColorEditFlags_PickerHueWheel); + + // Always both a small version of both types of pickers (to make it more visible in the demo to people who are skimming quickly through it) + ImGui::Text("Both types:"); + float w = (ImGui::GetContentRegionAvail().x - ImGui::GetStyle().ItemSpacing.y) * 0.40f; + ImGui::SetNextItemWidth(w); + ImGui::ColorPicker3("##MyColor##5", (float*)&color, ImGuiColorEditFlags_PickerHueBar | ImGuiColorEditFlags_NoSidePreview | ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoAlpha); + ImGui::SameLine(); + ImGui::SetNextItemWidth(w); + ImGui::ColorPicker3("##MyColor##6", (float*)&color, ImGuiColorEditFlags_PickerHueWheel | ImGuiColorEditFlags_NoSidePreview | ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoAlpha); + + // HSV encoded support (to avoid RGB<>HSV round trips and singularities when S==0 or V==0) + static ImVec4 color_hsv(0.23f, 1.0f, 1.0f, 1.0f); // Stored as HSV! + ImGui::Spacing(); + ImGui::Text("HSV encoded colors"); + ImGui::SameLine(); HelpMarker( + "By default, colors are given to ColorEdit and ColorPicker in RGB, but ImGuiColorEditFlags_InputHSV" + "allows you to store colors as HSV and pass them to ColorEdit and ColorPicker as HSV. This comes with the" + "added benefit that you can manipulate hue values with the picker even when saturation or value are zero."); + ImGui::Text("Color widget with InputHSV:"); + ImGui::ColorEdit4("HSV shown as RGB##1", (float*)&color_hsv, ImGuiColorEditFlags_DisplayRGB | ImGuiColorEditFlags_InputHSV | ImGuiColorEditFlags_Float); + ImGui::ColorEdit4("HSV shown as HSV##1", (float*)&color_hsv, ImGuiColorEditFlags_DisplayHSV | ImGuiColorEditFlags_InputHSV | ImGuiColorEditFlags_Float); + ImGui::DragFloat4("Raw HSV values", (float*)&color_hsv, 0.01f, 0.0f, 1.0f); + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Drag and Slider Flags"); + if (ImGui::TreeNode("Drag/Slider Flags")) + { + // Demonstrate using advanced flags for DragXXX and SliderXXX functions. Note that the flags are the same! + static ImGuiSliderFlags flags = ImGuiSliderFlags_None; + ImGui::CheckboxFlags("ImGuiSliderFlags_AlwaysClamp", &flags, ImGuiSliderFlags_AlwaysClamp); + ImGui::SameLine(); HelpMarker("Always clamp value to min/max bounds (if any) when input manually with CTRL+Click."); + ImGui::CheckboxFlags("ImGuiSliderFlags_Logarithmic", &flags, ImGuiSliderFlags_Logarithmic); + ImGui::SameLine(); HelpMarker("Enable logarithmic editing (more precision for small values)."); + ImGui::CheckboxFlags("ImGuiSliderFlags_NoRoundToFormat", &flags, ImGuiSliderFlags_NoRoundToFormat); + ImGui::SameLine(); HelpMarker("Disable rounding underlying value to match precision of the format string (e.g. %.3f values are rounded to those 3 digits)."); + ImGui::CheckboxFlags("ImGuiSliderFlags_NoInput", &flags, ImGuiSliderFlags_NoInput); + ImGui::SameLine(); HelpMarker("Disable CTRL+Click or Enter key allowing to input text directly into the widget."); + + // Drags + static float drag_f = 0.5f; + static int drag_i = 50; + ImGui::Text("Underlying float value: %f", drag_f); + ImGui::DragFloat("DragFloat (0 -> 1)", &drag_f, 0.005f, 0.0f, 1.0f, "%.3f", flags); + ImGui::DragFloat("DragFloat (0 -> +inf)", &drag_f, 0.005f, 0.0f, FLT_MAX, "%.3f", flags); + ImGui::DragFloat("DragFloat (-inf -> 1)", &drag_f, 0.005f, -FLT_MAX, 1.0f, "%.3f", flags); + ImGui::DragFloat("DragFloat (-inf -> +inf)", &drag_f, 0.005f, -FLT_MAX, +FLT_MAX, "%.3f", flags); + ImGui::DragInt("DragInt (0 -> 100)", &drag_i, 0.5f, 0, 100, "%d", flags); + + // Sliders + static float slider_f = 0.5f; + static int slider_i = 50; + ImGui::Text("Underlying float value: %f", slider_f); + ImGui::SliderFloat("SliderFloat (0 -> 1)", &slider_f, 0.0f, 1.0f, "%.3f", flags); + ImGui::SliderInt("SliderInt (0 -> 100)", &slider_i, 0, 100, "%d", flags); + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Range Widgets"); + if (ImGui::TreeNode("Range Widgets")) + { + static float begin = 10, end = 90; + static int begin_i = 100, end_i = 1000; + ImGui::DragFloatRange2("range float", &begin, &end, 0.25f, 0.0f, 100.0f, "Min: %.1f %%", "Max: %.1f %%", ImGuiSliderFlags_AlwaysClamp); + ImGui::DragIntRange2("range int", &begin_i, &end_i, 5, 0, 1000, "Min: %d units", "Max: %d units"); + ImGui::DragIntRange2("range int (no bounds)", &begin_i, &end_i, 5, 0, 0, "Min: %d units", "Max: %d units"); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Data Types"); + if (ImGui::TreeNode("Data Types")) + { + // DragScalar/InputScalar/SliderScalar functions allow various data types + // - signed/unsigned + // - 8/16/32/64-bits + // - integer/float/double + // To avoid polluting the public API with all possible combinations, we use the ImGuiDataType enum + // to pass the type, and passing all arguments by pointer. + // This is the reason the test code below creates local variables to hold "zero" "one" etc. for each type. + // In practice, if you frequently use a given type that is not covered by the normal API entry points, + // you can wrap it yourself inside a 1 line function which can take typed argument as value instead of void*, + // and then pass their address to the generic function. For example: + // bool MySliderU64(const char *label, u64* value, u64 min = 0, u64 max = 0, const char* format = "%lld") + // { + // return SliderScalar(label, ImGuiDataType_U64, value, &min, &max, format); + // } + + // Setup limits (as helper variables so we can take their address, as explained above) + // Note: SliderScalar() functions have a maximum usable range of half the natural type maximum, hence the /2. + #ifndef LLONG_MIN + ImS64 LLONG_MIN = -9223372036854775807LL - 1; + ImS64 LLONG_MAX = 9223372036854775807LL; + ImU64 ULLONG_MAX = (2ULL * 9223372036854775807LL + 1); + #endif + const char s8_zero = 0, s8_one = 1, s8_fifty = 50, s8_min = -128, s8_max = 127; + const ImU8 u8_zero = 0, u8_one = 1, u8_fifty = 50, u8_min = 0, u8_max = 255; + const short s16_zero = 0, s16_one = 1, s16_fifty = 50, s16_min = -32768, s16_max = 32767; + const ImU16 u16_zero = 0, u16_one = 1, u16_fifty = 50, u16_min = 0, u16_max = 65535; + const ImS32 s32_zero = 0, s32_one = 1, s32_fifty = 50, s32_min = INT_MIN/2, s32_max = INT_MAX/2, s32_hi_a = INT_MAX/2 - 100, s32_hi_b = INT_MAX/2; + const ImU32 u32_zero = 0, u32_one = 1, u32_fifty = 50, u32_min = 0, u32_max = UINT_MAX/2, u32_hi_a = UINT_MAX/2 - 100, u32_hi_b = UINT_MAX/2; + const ImS64 s64_zero = 0, s64_one = 1, s64_fifty = 50, s64_min = LLONG_MIN/2, s64_max = LLONG_MAX/2, s64_hi_a = LLONG_MAX/2 - 100, s64_hi_b = LLONG_MAX/2; + const ImU64 u64_zero = 0, u64_one = 1, u64_fifty = 50, u64_min = 0, u64_max = ULLONG_MAX/2, u64_hi_a = ULLONG_MAX/2 - 100, u64_hi_b = ULLONG_MAX/2; + const float f32_zero = 0.f, f32_one = 1.f, f32_lo_a = -10000000000.0f, f32_hi_a = +10000000000.0f; + const double f64_zero = 0., f64_one = 1., f64_lo_a = -1000000000000000.0, f64_hi_a = +1000000000000000.0; + + // State + static char s8_v = 127; + static ImU8 u8_v = 255; + static short s16_v = 32767; + static ImU16 u16_v = 65535; + static ImS32 s32_v = -1; + static ImU32 u32_v = (ImU32)-1; + static ImS64 s64_v = -1; + static ImU64 u64_v = (ImU64)-1; + static float f32_v = 0.123f; + static double f64_v = 90000.01234567890123456789; + + const float drag_speed = 0.2f; + static bool drag_clamp = false; + IMGUI_DEMO_MARKER("Widgets/Data Types/Drags"); + ImGui::SeparatorText("Drags"); + ImGui::Checkbox("Clamp integers to 0..50", &drag_clamp); + ImGui::SameLine(); HelpMarker( + "As with every widget in dear imgui, we never modify values unless there is a user interaction.\n" + "You can override the clamping limits by using CTRL+Click to input a value."); + ImGui::DragScalar("drag s8", ImGuiDataType_S8, &s8_v, drag_speed, drag_clamp ? &s8_zero : NULL, drag_clamp ? &s8_fifty : NULL); + ImGui::DragScalar("drag u8", ImGuiDataType_U8, &u8_v, drag_speed, drag_clamp ? &u8_zero : NULL, drag_clamp ? &u8_fifty : NULL, "%u ms"); + ImGui::DragScalar("drag s16", ImGuiDataType_S16, &s16_v, drag_speed, drag_clamp ? &s16_zero : NULL, drag_clamp ? &s16_fifty : NULL); + ImGui::DragScalar("drag u16", ImGuiDataType_U16, &u16_v, drag_speed, drag_clamp ? &u16_zero : NULL, drag_clamp ? &u16_fifty : NULL, "%u ms"); + ImGui::DragScalar("drag s32", ImGuiDataType_S32, &s32_v, drag_speed, drag_clamp ? &s32_zero : NULL, drag_clamp ? &s32_fifty : NULL); + ImGui::DragScalar("drag s32 hex", ImGuiDataType_S32, &s32_v, drag_speed, drag_clamp ? &s32_zero : NULL, drag_clamp ? &s32_fifty : NULL, "0x%08X"); + ImGui::DragScalar("drag u32", ImGuiDataType_U32, &u32_v, drag_speed, drag_clamp ? &u32_zero : NULL, drag_clamp ? &u32_fifty : NULL, "%u ms"); + ImGui::DragScalar("drag s64", ImGuiDataType_S64, &s64_v, drag_speed, drag_clamp ? &s64_zero : NULL, drag_clamp ? &s64_fifty : NULL); + ImGui::DragScalar("drag u64", ImGuiDataType_U64, &u64_v, drag_speed, drag_clamp ? &u64_zero : NULL, drag_clamp ? &u64_fifty : NULL); + ImGui::DragScalar("drag float", ImGuiDataType_Float, &f32_v, 0.005f, &f32_zero, &f32_one, "%f"); + ImGui::DragScalar("drag float log", ImGuiDataType_Float, &f32_v, 0.005f, &f32_zero, &f32_one, "%f", ImGuiSliderFlags_Logarithmic); + ImGui::DragScalar("drag double", ImGuiDataType_Double, &f64_v, 0.0005f, &f64_zero, NULL, "%.10f grams"); + ImGui::DragScalar("drag double log",ImGuiDataType_Double, &f64_v, 0.0005f, &f64_zero, &f64_one, "0 < %.10f < 1", ImGuiSliderFlags_Logarithmic); + + IMGUI_DEMO_MARKER("Widgets/Data Types/Sliders"); + ImGui::SeparatorText("Sliders"); + ImGui::SliderScalar("slider s8 full", ImGuiDataType_S8, &s8_v, &s8_min, &s8_max, "%d"); + ImGui::SliderScalar("slider u8 full", ImGuiDataType_U8, &u8_v, &u8_min, &u8_max, "%u"); + ImGui::SliderScalar("slider s16 full", ImGuiDataType_S16, &s16_v, &s16_min, &s16_max, "%d"); + ImGui::SliderScalar("slider u16 full", ImGuiDataType_U16, &u16_v, &u16_min, &u16_max, "%u"); + ImGui::SliderScalar("slider s32 low", ImGuiDataType_S32, &s32_v, &s32_zero, &s32_fifty,"%d"); + ImGui::SliderScalar("slider s32 high", ImGuiDataType_S32, &s32_v, &s32_hi_a, &s32_hi_b, "%d"); + ImGui::SliderScalar("slider s32 full", ImGuiDataType_S32, &s32_v, &s32_min, &s32_max, "%d"); + ImGui::SliderScalar("slider s32 hex", ImGuiDataType_S32, &s32_v, &s32_zero, &s32_fifty, "0x%04X"); + ImGui::SliderScalar("slider u32 low", ImGuiDataType_U32, &u32_v, &u32_zero, &u32_fifty,"%u"); + ImGui::SliderScalar("slider u32 high", ImGuiDataType_U32, &u32_v, &u32_hi_a, &u32_hi_b, "%u"); + ImGui::SliderScalar("slider u32 full", ImGuiDataType_U32, &u32_v, &u32_min, &u32_max, "%u"); + ImGui::SliderScalar("slider s64 low", ImGuiDataType_S64, &s64_v, &s64_zero, &s64_fifty,"%" PRId64); + ImGui::SliderScalar("slider s64 high", ImGuiDataType_S64, &s64_v, &s64_hi_a, &s64_hi_b, "%" PRId64); + ImGui::SliderScalar("slider s64 full", ImGuiDataType_S64, &s64_v, &s64_min, &s64_max, "%" PRId64); + ImGui::SliderScalar("slider u64 low", ImGuiDataType_U64, &u64_v, &u64_zero, &u64_fifty,"%" PRIu64 " ms"); + ImGui::SliderScalar("slider u64 high", ImGuiDataType_U64, &u64_v, &u64_hi_a, &u64_hi_b, "%" PRIu64 " ms"); + ImGui::SliderScalar("slider u64 full", ImGuiDataType_U64, &u64_v, &u64_min, &u64_max, "%" PRIu64 " ms"); + ImGui::SliderScalar("slider float low", ImGuiDataType_Float, &f32_v, &f32_zero, &f32_one); + ImGui::SliderScalar("slider float low log", ImGuiDataType_Float, &f32_v, &f32_zero, &f32_one, "%.10f", ImGuiSliderFlags_Logarithmic); + ImGui::SliderScalar("slider float high", ImGuiDataType_Float, &f32_v, &f32_lo_a, &f32_hi_a, "%e"); + ImGui::SliderScalar("slider double low", ImGuiDataType_Double, &f64_v, &f64_zero, &f64_one, "%.10f grams"); + ImGui::SliderScalar("slider double low log",ImGuiDataType_Double, &f64_v, &f64_zero, &f64_one, "%.10f", ImGuiSliderFlags_Logarithmic); + ImGui::SliderScalar("slider double high", ImGuiDataType_Double, &f64_v, &f64_lo_a, &f64_hi_a, "%e grams"); + + ImGui::SeparatorText("Sliders (reverse)"); + ImGui::SliderScalar("slider s8 reverse", ImGuiDataType_S8, &s8_v, &s8_max, &s8_min, "%d"); + ImGui::SliderScalar("slider u8 reverse", ImGuiDataType_U8, &u8_v, &u8_max, &u8_min, "%u"); + ImGui::SliderScalar("slider s32 reverse", ImGuiDataType_S32, &s32_v, &s32_fifty, &s32_zero, "%d"); + ImGui::SliderScalar("slider u32 reverse", ImGuiDataType_U32, &u32_v, &u32_fifty, &u32_zero, "%u"); + ImGui::SliderScalar("slider s64 reverse", ImGuiDataType_S64, &s64_v, &s64_fifty, &s64_zero, "%" PRId64); + ImGui::SliderScalar("slider u64 reverse", ImGuiDataType_U64, &u64_v, &u64_fifty, &u64_zero, "%" PRIu64 " ms"); + + IMGUI_DEMO_MARKER("Widgets/Data Types/Inputs"); + static bool inputs_step = true; + ImGui::SeparatorText("Inputs"); + ImGui::Checkbox("Show step buttons", &inputs_step); + ImGui::InputScalar("input s8", ImGuiDataType_S8, &s8_v, inputs_step ? &s8_one : NULL, NULL, "%d"); + ImGui::InputScalar("input u8", ImGuiDataType_U8, &u8_v, inputs_step ? &u8_one : NULL, NULL, "%u"); + ImGui::InputScalar("input s16", ImGuiDataType_S16, &s16_v, inputs_step ? &s16_one : NULL, NULL, "%d"); + ImGui::InputScalar("input u16", ImGuiDataType_U16, &u16_v, inputs_step ? &u16_one : NULL, NULL, "%u"); + ImGui::InputScalar("input s32", ImGuiDataType_S32, &s32_v, inputs_step ? &s32_one : NULL, NULL, "%d"); + ImGui::InputScalar("input s32 hex", ImGuiDataType_S32, &s32_v, inputs_step ? &s32_one : NULL, NULL, "%04X"); + ImGui::InputScalar("input u32", ImGuiDataType_U32, &u32_v, inputs_step ? &u32_one : NULL, NULL, "%u"); + ImGui::InputScalar("input u32 hex", ImGuiDataType_U32, &u32_v, inputs_step ? &u32_one : NULL, NULL, "%08X"); + ImGui::InputScalar("input s64", ImGuiDataType_S64, &s64_v, inputs_step ? &s64_one : NULL); + ImGui::InputScalar("input u64", ImGuiDataType_U64, &u64_v, inputs_step ? &u64_one : NULL); + ImGui::InputScalar("input float", ImGuiDataType_Float, &f32_v, inputs_step ? &f32_one : NULL); + ImGui::InputScalar("input double", ImGuiDataType_Double, &f64_v, inputs_step ? &f64_one : NULL); + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Multi-component Widgets"); + if (ImGui::TreeNode("Multi-component Widgets")) + { + static float vec4f[4] = { 0.10f, 0.20f, 0.30f, 0.44f }; + static int vec4i[4] = { 1, 5, 100, 255 }; + + ImGui::SeparatorText("2-wide"); + ImGui::InputFloat2("input float2", vec4f); + ImGui::DragFloat2("drag float2", vec4f, 0.01f, 0.0f, 1.0f); + ImGui::SliderFloat2("slider float2", vec4f, 0.0f, 1.0f); + ImGui::InputInt2("input int2", vec4i); + ImGui::DragInt2("drag int2", vec4i, 1, 0, 255); + ImGui::SliderInt2("slider int2", vec4i, 0, 255); + + ImGui::SeparatorText("3-wide"); + ImGui::InputFloat3("input float3", vec4f); + ImGui::DragFloat3("drag float3", vec4f, 0.01f, 0.0f, 1.0f); + ImGui::SliderFloat3("slider float3", vec4f, 0.0f, 1.0f); + ImGui::InputInt3("input int3", vec4i); + ImGui::DragInt3("drag int3", vec4i, 1, 0, 255); + ImGui::SliderInt3("slider int3", vec4i, 0, 255); + + ImGui::SeparatorText("4-wide"); + ImGui::InputFloat4("input float4", vec4f); + ImGui::DragFloat4("drag float4", vec4f, 0.01f, 0.0f, 1.0f); + ImGui::SliderFloat4("slider float4", vec4f, 0.0f, 1.0f); + ImGui::InputInt4("input int4", vec4i); + ImGui::DragInt4("drag int4", vec4i, 1, 0, 255); + ImGui::SliderInt4("slider int4", vec4i, 0, 255); + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Vertical Sliders"); + if (ImGui::TreeNode("Vertical Sliders")) + { + const float spacing = 4; + ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(spacing, spacing)); + + static int int_value = 0; + ImGui::VSliderInt("##int", ImVec2(18, 160), &int_value, 0, 5); + ImGui::SameLine(); + + static float values[7] = { 0.0f, 0.60f, 0.35f, 0.9f, 0.70f, 0.20f, 0.0f }; + ImGui::PushID("set1"); + for (int i = 0; i < 7; i++) + { + if (i > 0) ImGui::SameLine(); + ImGui::PushID(i); + ImGui::PushStyleColor(ImGuiCol_FrameBg, (ImVec4)ImColor::HSV(i / 7.0f, 0.5f, 0.5f)); + ImGui::PushStyleColor(ImGuiCol_FrameBgHovered, (ImVec4)ImColor::HSV(i / 7.0f, 0.6f, 0.5f)); + ImGui::PushStyleColor(ImGuiCol_FrameBgActive, (ImVec4)ImColor::HSV(i / 7.0f, 0.7f, 0.5f)); + ImGui::PushStyleColor(ImGuiCol_SliderGrab, (ImVec4)ImColor::HSV(i / 7.0f, 0.9f, 0.9f)); + ImGui::VSliderFloat("##v", ImVec2(18, 160), &values[i], 0.0f, 1.0f, ""); + if (ImGui::IsItemActive() || ImGui::IsItemHovered()) + ImGui::SetTooltip("%.3f", values[i]); + ImGui::PopStyleColor(4); + ImGui::PopID(); + } + ImGui::PopID(); + + ImGui::SameLine(); + ImGui::PushID("set2"); + static float values2[4] = { 0.20f, 0.80f, 0.40f, 0.25f }; + const int rows = 3; + const ImVec2 small_slider_size(18, (float)(int)((160.0f - (rows - 1) * spacing) / rows)); + for (int nx = 0; nx < 4; nx++) + { + if (nx > 0) ImGui::SameLine(); + ImGui::BeginGroup(); + for (int ny = 0; ny < rows; ny++) + { + ImGui::PushID(nx * rows + ny); + ImGui::VSliderFloat("##v", small_slider_size, &values2[nx], 0.0f, 1.0f, ""); + if (ImGui::IsItemActive() || ImGui::IsItemHovered()) + ImGui::SetTooltip("%.3f", values2[nx]); + ImGui::PopID(); + } + ImGui::EndGroup(); + } + ImGui::PopID(); + + ImGui::SameLine(); + ImGui::PushID("set3"); + for (int i = 0; i < 4; i++) + { + if (i > 0) ImGui::SameLine(); + ImGui::PushID(i); + ImGui::PushStyleVar(ImGuiStyleVar_GrabMinSize, 40); + ImGui::VSliderFloat("##v", ImVec2(40, 160), &values[i], 0.0f, 1.0f, "%.2f\nsec"); + ImGui::PopStyleVar(); + ImGui::PopID(); + } + ImGui::PopID(); + ImGui::PopStyleVar(); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Drag and drop"); + if (ImGui::TreeNode("Drag and Drop")) + { + IMGUI_DEMO_MARKER("Widgets/Drag and drop/Standard widgets"); + if (ImGui::TreeNode("Drag and drop in standard widgets")) + { + // ColorEdit widgets automatically act as drag source and drag target. + // They are using standardized payload strings IMGUI_PAYLOAD_TYPE_COLOR_3F and IMGUI_PAYLOAD_TYPE_COLOR_4F + // to allow your own widgets to use colors in their drag and drop interaction. + // Also see 'Demo->Widgets->Color/Picker Widgets->Palette' demo. + HelpMarker("You can drag from the color squares."); + static float col1[3] = { 1.0f, 0.0f, 0.2f }; + static float col2[4] = { 0.4f, 0.7f, 0.0f, 0.5f }; + ImGui::ColorEdit3("color 1", col1); + ImGui::ColorEdit4("color 2", col2); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Drag and drop/Copy-swap items"); + if (ImGui::TreeNode("Drag and drop to copy/swap items")) + { + enum Mode + { + Mode_Copy, + Mode_Move, + Mode_Swap + }; + static int mode = 0; + if (ImGui::RadioButton("Copy", mode == Mode_Copy)) { mode = Mode_Copy; } ImGui::SameLine(); + if (ImGui::RadioButton("Move", mode == Mode_Move)) { mode = Mode_Move; } ImGui::SameLine(); + if (ImGui::RadioButton("Swap", mode == Mode_Swap)) { mode = Mode_Swap; } + static const char* names[9] = + { + "Bobby", "Beatrice", "Betty", + "Brianna", "Barry", "Bernard", + "Bibi", "Blaine", "Bryn" + }; + for (int n = 0; n < IM_ARRAYSIZE(names); n++) + { + ImGui::PushID(n); + if ((n % 3) != 0) + ImGui::SameLine(); + ImGui::Button(names[n], ImVec2(60, 60)); + + // Our buttons are both drag sources and drag targets here! + if (ImGui::BeginDragDropSource(ImGuiDragDropFlags_None)) + { + // Set payload to carry the index of our item (could be anything) + ImGui::SetDragDropPayload("DND_DEMO_CELL", &n, sizeof(int)); + + // Display preview (could be anything, e.g. when dragging an image we could decide to display + // the filename and a small preview of the image, etc.) + if (mode == Mode_Copy) { ImGui::Text("Copy %s", names[n]); } + if (mode == Mode_Move) { ImGui::Text("Move %s", names[n]); } + if (mode == Mode_Swap) { ImGui::Text("Swap %s", names[n]); } + ImGui::EndDragDropSource(); + } + if (ImGui::BeginDragDropTarget()) + { + if (const ImGuiPayload* payload = ImGui::AcceptDragDropPayload("DND_DEMO_CELL")) + { + IM_ASSERT(payload->DataSize == sizeof(int)); + int payload_n = *(const int*)payload->Data; + if (mode == Mode_Copy) + { + names[n] = names[payload_n]; + } + if (mode == Mode_Move) + { + names[n] = names[payload_n]; + names[payload_n] = ""; + } + if (mode == Mode_Swap) + { + const char* tmp = names[n]; + names[n] = names[payload_n]; + names[payload_n] = tmp; + } + } + ImGui::EndDragDropTarget(); + } + ImGui::PopID(); + } + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Drag and Drop/Drag to reorder items (simple)"); + if (ImGui::TreeNode("Drag to reorder items (simple)")) + { + // Simple reordering + HelpMarker( + "We don't use the drag and drop api at all here! " + "Instead we query when the item is held but not hovered, and order items accordingly."); + static const char* item_names[] = { "Item One", "Item Two", "Item Three", "Item Four", "Item Five" }; + for (int n = 0; n < IM_ARRAYSIZE(item_names); n++) + { + const char* item = item_names[n]; + ImGui::Selectable(item); + + if (ImGui::IsItemActive() && !ImGui::IsItemHovered()) + { + int n_next = n + (ImGui::GetMouseDragDelta(0).y < 0.f ? -1 : 1); + if (n_next >= 0 && n_next < IM_ARRAYSIZE(item_names)) + { + item_names[n] = item_names[n_next]; + item_names[n_next] = item; + ImGui::ResetMouseDragDelta(); + } + } + } + ImGui::TreePop(); + } + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Querying Item Status (Edited,Active,Hovered etc.)"); + if (ImGui::TreeNode("Querying Item Status (Edited/Active/Hovered etc.)")) + { + // Select an item type + const char* item_names[] = + { + "Text", "Button", "Button (w/ repeat)", "Checkbox", "SliderFloat", "InputText", "InputTextMultiline", "InputFloat", + "InputFloat3", "ColorEdit4", "Selectable", "MenuItem", "TreeNode", "TreeNode (w/ double-click)", "Combo", "ListBox" + }; + static int item_type = 4; + static bool item_disabled = false; + ImGui::Combo("Item Type", &item_type, item_names, IM_ARRAYSIZE(item_names), IM_ARRAYSIZE(item_names)); + ImGui::SameLine(); + HelpMarker("Testing how various types of items are interacting with the IsItemXXX functions. Note that the bool return value of most ImGui function is generally equivalent to calling ImGui::IsItemHovered()."); + ImGui::Checkbox("Item Disabled", &item_disabled); + + // Submit selected items so we can query their status in the code following it. + bool ret = false; + static bool b = false; + static float col4f[4] = { 1.0f, 0.5, 0.0f, 1.0f }; + static char str[16] = {}; + if (item_disabled) + ImGui::BeginDisabled(true); + if (item_type == 0) { ImGui::Text("ITEM: Text"); } // Testing text items with no identifier/interaction + if (item_type == 1) { ret = ImGui::Button("ITEM: Button"); } // Testing button + if (item_type == 2) { ImGui::PushButtonRepeat(true); ret = ImGui::Button("ITEM: Button"); ImGui::PopButtonRepeat(); } // Testing button (with repeater) + if (item_type == 3) { ret = ImGui::Checkbox("ITEM: Checkbox", &b); } // Testing checkbox + if (item_type == 4) { ret = ImGui::SliderFloat("ITEM: SliderFloat", &col4f[0], 0.0f, 1.0f); } // Testing basic item + if (item_type == 5) { ret = ImGui::InputText("ITEM: InputText", &str[0], IM_ARRAYSIZE(str)); } // Testing input text (which handles tabbing) + if (item_type == 6) { ret = ImGui::InputTextMultiline("ITEM: InputTextMultiline", &str[0], IM_ARRAYSIZE(str)); } // Testing input text (which uses a child window) + if (item_type == 7) { ret = ImGui::InputFloat("ITEM: InputFloat", col4f, 1.0f); } // Testing +/- buttons on scalar input + if (item_type == 8) { ret = ImGui::InputFloat3("ITEM: InputFloat3", col4f); } // Testing multi-component items (IsItemXXX flags are reported merged) + if (item_type == 9) { ret = ImGui::ColorEdit4("ITEM: ColorEdit4", col4f); } // Testing multi-component items (IsItemXXX flags are reported merged) + if (item_type == 10){ ret = ImGui::Selectable("ITEM: Selectable"); } // Testing selectable item + if (item_type == 11){ ret = ImGui::MenuItem("ITEM: MenuItem"); } // Testing menu item (they use ImGuiButtonFlags_PressedOnRelease button policy) + if (item_type == 12){ ret = ImGui::TreeNode("ITEM: TreeNode"); if (ret) ImGui::TreePop(); } // Testing tree node + if (item_type == 13){ ret = ImGui::TreeNodeEx("ITEM: TreeNode w/ ImGuiTreeNodeFlags_OpenOnDoubleClick", ImGuiTreeNodeFlags_OpenOnDoubleClick | ImGuiTreeNodeFlags_NoTreePushOnOpen); } // Testing tree node with ImGuiButtonFlags_PressedOnDoubleClick button policy. + if (item_type == 14){ const char* items[] = { "Apple", "Banana", "Cherry", "Kiwi" }; static int current = 1; ret = ImGui::Combo("ITEM: Combo", ¤t, items, IM_ARRAYSIZE(items)); } + if (item_type == 15){ const char* items[] = { "Apple", "Banana", "Cherry", "Kiwi" }; static int current = 1; ret = ImGui::ListBox("ITEM: ListBox", ¤t, items, IM_ARRAYSIZE(items), IM_ARRAYSIZE(items)); } + + bool hovered_delay_none = ImGui::IsItemHovered(); + bool hovered_delay_stationary = ImGui::IsItemHovered(ImGuiHoveredFlags_Stationary); + bool hovered_delay_short = ImGui::IsItemHovered(ImGuiHoveredFlags_DelayShort); + bool hovered_delay_normal = ImGui::IsItemHovered(ImGuiHoveredFlags_DelayNormal); + bool hovered_delay_tooltip = ImGui::IsItemHovered(ImGuiHoveredFlags_ForTooltip); // = Normal + Stationary + + // Display the values of IsItemHovered() and other common item state functions. + // Note that the ImGuiHoveredFlags_XXX flags can be combined. + // Because BulletText is an item itself and that would affect the output of IsItemXXX functions, + // we query every state in a single call to avoid storing them and to simplify the code. + ImGui::BulletText( + "Return value = %d\n" + "IsItemFocused() = %d\n" + "IsItemHovered() = %d\n" + "IsItemHovered(_AllowWhenBlockedByPopup) = %d\n" + "IsItemHovered(_AllowWhenBlockedByActiveItem) = %d\n" + "IsItemHovered(_AllowWhenOverlappedByItem) = %d\n" + "IsItemHovered(_AllowWhenOverlappedByWindow) = %d\n" + "IsItemHovered(_AllowWhenDisabled) = %d\n" + "IsItemHovered(_RectOnly) = %d\n" + "IsItemActive() = %d\n" + "IsItemEdited() = %d\n" + "IsItemActivated() = %d\n" + "IsItemDeactivated() = %d\n" + "IsItemDeactivatedAfterEdit() = %d\n" + "IsItemVisible() = %d\n" + "IsItemClicked() = %d\n" + "IsItemToggledOpen() = %d\n" + "GetItemRectMin() = (%.1f, %.1f)\n" + "GetItemRectMax() = (%.1f, %.1f)\n" + "GetItemRectSize() = (%.1f, %.1f)", + ret, + ImGui::IsItemFocused(), + ImGui::IsItemHovered(), + ImGui::IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup), + ImGui::IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByActiveItem), + ImGui::IsItemHovered(ImGuiHoveredFlags_AllowWhenOverlappedByItem), + ImGui::IsItemHovered(ImGuiHoveredFlags_AllowWhenOverlappedByWindow), + ImGui::IsItemHovered(ImGuiHoveredFlags_AllowWhenDisabled), + ImGui::IsItemHovered(ImGuiHoveredFlags_RectOnly), + ImGui::IsItemActive(), + ImGui::IsItemEdited(), + ImGui::IsItemActivated(), + ImGui::IsItemDeactivated(), + ImGui::IsItemDeactivatedAfterEdit(), + ImGui::IsItemVisible(), + ImGui::IsItemClicked(), + ImGui::IsItemToggledOpen(), + ImGui::GetItemRectMin().x, ImGui::GetItemRectMin().y, + ImGui::GetItemRectMax().x, ImGui::GetItemRectMax().y, + ImGui::GetItemRectSize().x, ImGui::GetItemRectSize().y + ); + ImGui::BulletText( + "with Hovering Delay or Stationary test:\n" + "IsItemHovered() = = %d\n" + "IsItemHovered(_Stationary) = %d\n" + "IsItemHovered(_DelayShort) = %d\n" + "IsItemHovered(_DelayNormal) = %d\n" + "IsItemHovered(_Tooltip) = %d", + hovered_delay_none, hovered_delay_stationary, hovered_delay_short, hovered_delay_normal, hovered_delay_tooltip); + + if (item_disabled) + ImGui::EndDisabled(); + + char buf[1] = ""; + ImGui::InputText("unused", buf, IM_ARRAYSIZE(buf), ImGuiInputTextFlags_ReadOnly); + ImGui::SameLine(); + HelpMarker("This widget is only here to be able to tab-out of the widgets above and see e.g. Deactivated() status."); + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Querying Window Status (Focused,Hovered etc.)"); + if (ImGui::TreeNode("Querying Window Status (Focused/Hovered etc.)")) + { + static bool embed_all_inside_a_child_window = false; + ImGui::Checkbox("Embed everything inside a child window for testing _RootWindow flag.", &embed_all_inside_a_child_window); + if (embed_all_inside_a_child_window) + ImGui::BeginChild("outer_child", ImVec2(0, ImGui::GetFontSize() * 20.0f), true); + + // Testing IsWindowFocused() function with its various flags. + ImGui::BulletText( + "IsWindowFocused() = %d\n" + "IsWindowFocused(_ChildWindows) = %d\n" + "IsWindowFocused(_ChildWindows|_NoPopupHierarchy) = %d\n" + "IsWindowFocused(_ChildWindows|_RootWindow) = %d\n" + "IsWindowFocused(_ChildWindows|_RootWindow|_NoPopupHierarchy) = %d\n" + "IsWindowFocused(_RootWindow) = %d\n" + "IsWindowFocused(_RootWindow|_NoPopupHierarchy) = %d\n" + "IsWindowFocused(_AnyWindow) = %d\n", + ImGui::IsWindowFocused(), + ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows), + ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows | ImGuiFocusedFlags_NoPopupHierarchy), + ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows | ImGuiFocusedFlags_RootWindow), + ImGui::IsWindowFocused(ImGuiFocusedFlags_ChildWindows | ImGuiFocusedFlags_RootWindow | ImGuiFocusedFlags_NoPopupHierarchy), + ImGui::IsWindowFocused(ImGuiFocusedFlags_RootWindow), + ImGui::IsWindowFocused(ImGuiFocusedFlags_RootWindow | ImGuiFocusedFlags_NoPopupHierarchy), + ImGui::IsWindowFocused(ImGuiFocusedFlags_AnyWindow)); + + // Testing IsWindowHovered() function with its various flags. + ImGui::BulletText( + "IsWindowHovered() = %d\n" + "IsWindowHovered(_AllowWhenBlockedByPopup) = %d\n" + "IsWindowHovered(_AllowWhenBlockedByActiveItem) = %d\n" + "IsWindowHovered(_ChildWindows) = %d\n" + "IsWindowHovered(_ChildWindows|_NoPopupHierarchy) = %d\n" + "IsWindowHovered(_ChildWindows|_RootWindow) = %d\n" + "IsWindowHovered(_ChildWindows|_RootWindow|_NoPopupHierarchy) = %d\n" + "IsWindowHovered(_RootWindow) = %d\n" + "IsWindowHovered(_RootWindow|_NoPopupHierarchy) = %d\n" + "IsWindowHovered(_ChildWindows|_AllowWhenBlockedByPopup) = %d\n" + "IsWindowHovered(_AnyWindow) = %d\n" + "IsWindowHovered(_Stationary) = %d\n", + ImGui::IsWindowHovered(), + ImGui::IsWindowHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup), + ImGui::IsWindowHovered(ImGuiHoveredFlags_AllowWhenBlockedByActiveItem), + ImGui::IsWindowHovered(ImGuiHoveredFlags_ChildWindows), + ImGui::IsWindowHovered(ImGuiHoveredFlags_ChildWindows | ImGuiHoveredFlags_NoPopupHierarchy), + ImGui::IsWindowHovered(ImGuiHoveredFlags_ChildWindows | ImGuiHoveredFlags_RootWindow), + ImGui::IsWindowHovered(ImGuiHoveredFlags_ChildWindows | ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_NoPopupHierarchy), + ImGui::IsWindowHovered(ImGuiHoveredFlags_RootWindow), + ImGui::IsWindowHovered(ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_NoPopupHierarchy), + ImGui::IsWindowHovered(ImGuiHoveredFlags_ChildWindows | ImGuiHoveredFlags_AllowWhenBlockedByPopup), + ImGui::IsWindowHovered(ImGuiHoveredFlags_AnyWindow), + ImGui::IsWindowHovered(ImGuiHoveredFlags_Stationary)); + + ImGui::BeginChild("child", ImVec2(0, 50), true); + ImGui::Text("This is another child window for testing the _ChildWindows flag."); + ImGui::EndChild(); + if (embed_all_inside_a_child_window) + ImGui::EndChild(); + + // Calling IsItemHovered() after begin returns the hovered status of the title bar. + // This is useful in particular if you want to create a context menu associated to the title bar of a window. + static bool test_window = false; + ImGui::Checkbox("Hovered/Active tests after Begin() for title bar testing", &test_window); + if (test_window) + { + ImGui::Begin("Title bar Hovered/Active tests", &test_window); + if (ImGui::BeginPopupContextItem()) // <-- This is using IsItemHovered() + { + if (ImGui::MenuItem("Close")) { test_window = false; } + ImGui::EndPopup(); + } + ImGui::Text( + "IsItemHovered() after begin = %d (== is title bar hovered)\n" + "IsItemActive() after begin = %d (== is window being clicked/moved)\n", + ImGui::IsItemHovered(), ImGui::IsItemActive()); + ImGui::End(); + } + + ImGui::TreePop(); + } + + // Demonstrate BeginDisabled/EndDisabled using a checkbox located at the bottom of the section (which is a bit odd: + // logically we'd have this checkbox at the top of the section, but we don't want this feature to steal that space) + if (disable_all) + ImGui::EndDisabled(); + + IMGUI_DEMO_MARKER("Widgets/Disable Block"); + if (ImGui::TreeNode("Disable block")) + { + ImGui::Checkbox("Disable entire section above", &disable_all); + ImGui::SameLine(); HelpMarker("Demonstrate using BeginDisabled()/EndDisabled() across this section."); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Widgets/Text Filter"); + if (ImGui::TreeNode("Text Filter")) + { + // Helper class to easy setup a text filter. + // You may want to implement a more feature-full filtering scheme in your own application. + HelpMarker("Not a widget per-se, but ImGuiTextFilter is a helper to perform simple filtering on text strings."); + static ImGuiTextFilter filter; + ImGui::Text("Filter usage:\n" + " \"\" display all lines\n" + " \"xxx\" display lines containing \"xxx\"\n" + " \"xxx,yyy\" display lines containing \"xxx\" or \"yyy\"\n" + " \"-xxx\" hide lines containing \"xxx\""); + filter.Draw(); + const char* lines[] = { "aaa1.c", "bbb1.c", "ccc1.c", "aaa2.cpp", "bbb2.cpp", "ccc2.cpp", "abc.h", "hello, world" }; + for (int i = 0; i < IM_ARRAYSIZE(lines); i++) + if (filter.PassFilter(lines[i])) + ImGui::BulletText("%s", lines[i]); + ImGui::TreePop(); + } +} + +static void ShowDemoWindowLayout() +{ + IMGUI_DEMO_MARKER("Layout"); + if (!ImGui::CollapsingHeader("Layout & Scrolling")) + return; + + IMGUI_DEMO_MARKER("Layout/Child windows"); + if (ImGui::TreeNode("Child windows")) + { + ImGui::SeparatorText("Child windows"); + + HelpMarker("Use child windows to begin into a self-contained independent scrolling/clipping regions within a host window."); + static bool disable_mouse_wheel = false; + static bool disable_menu = false; + ImGui::Checkbox("Disable Mouse Wheel", &disable_mouse_wheel); + ImGui::Checkbox("Disable Menu", &disable_menu); + + // Child 1: no border, enable horizontal scrollbar + { + ImGuiWindowFlags window_flags = ImGuiWindowFlags_HorizontalScrollbar; + if (disable_mouse_wheel) + window_flags |= ImGuiWindowFlags_NoScrollWithMouse; + ImGui::BeginChild("ChildL", ImVec2(ImGui::GetContentRegionAvail().x * 0.5f, 260), false, window_flags); + for (int i = 0; i < 100; i++) + ImGui::Text("%04d: scrollable region", i); + ImGui::EndChild(); + } + + ImGui::SameLine(); + + // Child 2: rounded border + { + ImGuiWindowFlags window_flags = ImGuiWindowFlags_None; + if (disable_mouse_wheel) + window_flags |= ImGuiWindowFlags_NoScrollWithMouse; + if (!disable_menu) + window_flags |= ImGuiWindowFlags_MenuBar; + ImGui::PushStyleVar(ImGuiStyleVar_ChildRounding, 5.0f); + ImGui::BeginChild("ChildR", ImVec2(0, 260), true, window_flags); + if (!disable_menu && ImGui::BeginMenuBar()) + { + if (ImGui::BeginMenu("Menu")) + { + ShowExampleMenuFile(); + ImGui::EndMenu(); + } + ImGui::EndMenuBar(); + } + if (ImGui::BeginTable("split", 2, ImGuiTableFlags_Resizable | ImGuiTableFlags_NoSavedSettings)) + { + for (int i = 0; i < 100; i++) + { + char buf[32]; + sprintf(buf, "%03d", i); + ImGui::TableNextColumn(); + ImGui::Button(buf, ImVec2(-FLT_MIN, 0.0f)); + } + ImGui::EndTable(); + } + ImGui::EndChild(); + ImGui::PopStyleVar(); + } + + ImGui::SeparatorText("Misc/Advanced"); + + // Demonstrate a few extra things + // - Changing ImGuiCol_ChildBg (which is transparent black in default styles) + // - Using SetCursorPos() to position child window (the child window is an item from the POV of parent window) + // You can also call SetNextWindowPos() to position the child window. The parent window will effectively + // layout from this position. + // - Using ImGui::GetItemRectMin/Max() to query the "item" state (because the child window is an item from + // the POV of the parent window). See 'Demo->Querying Status (Edited/Active/Hovered etc.)' for details. + { + static int offset_x = 0; + ImGui::SetNextItemWidth(ImGui::GetFontSize() * 8); + ImGui::DragInt("Offset X", &offset_x, 1.0f, -1000, 1000); + + ImGui::SetCursorPosX(ImGui::GetCursorPosX() + (float)offset_x); + ImGui::PushStyleColor(ImGuiCol_ChildBg, IM_COL32(255, 0, 0, 100)); + ImGui::BeginChild("Red", ImVec2(200, 100), true, ImGuiWindowFlags_None); + for (int n = 0; n < 50; n++) + ImGui::Text("Some test %d", n); + ImGui::EndChild(); + bool child_is_hovered = ImGui::IsItemHovered(); + ImVec2 child_rect_min = ImGui::GetItemRectMin(); + ImVec2 child_rect_max = ImGui::GetItemRectMax(); + ImGui::PopStyleColor(); + ImGui::Text("Hovered: %d", child_is_hovered); + ImGui::Text("Rect of child window is: (%.0f,%.0f) (%.0f,%.0f)", child_rect_min.x, child_rect_min.y, child_rect_max.x, child_rect_max.y); + } + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Layout/Widgets Width"); + if (ImGui::TreeNode("Widgets Width")) + { + static float f = 0.0f; + static bool show_indented_items = true; + ImGui::Checkbox("Show indented items", &show_indented_items); + + // Use SetNextItemWidth() to set the width of a single upcoming item. + // Use PushItemWidth()/PopItemWidth() to set the width of a group of items. + // In real code use you'll probably want to choose width values that are proportional to your font size + // e.g. Using '20.0f * GetFontSize()' as width instead of '200.0f', etc. + + ImGui::Text("SetNextItemWidth/PushItemWidth(100)"); + ImGui::SameLine(); HelpMarker("Fixed width."); + ImGui::PushItemWidth(100); + ImGui::DragFloat("float##1b", &f); + if (show_indented_items) + { + ImGui::Indent(); + ImGui::DragFloat("float (indented)##1b", &f); + ImGui::Unindent(); + } + ImGui::PopItemWidth(); + + ImGui::Text("SetNextItemWidth/PushItemWidth(-100)"); + ImGui::SameLine(); HelpMarker("Align to right edge minus 100"); + ImGui::PushItemWidth(-100); + ImGui::DragFloat("float##2a", &f); + if (show_indented_items) + { + ImGui::Indent(); + ImGui::DragFloat("float (indented)##2b", &f); + ImGui::Unindent(); + } + ImGui::PopItemWidth(); + + ImGui::Text("SetNextItemWidth/PushItemWidth(GetContentRegionAvail().x * 0.5f)"); + ImGui::SameLine(); HelpMarker("Half of available width.\n(~ right-cursor_pos)\n(works within a column set)"); + ImGui::PushItemWidth(ImGui::GetContentRegionAvail().x * 0.5f); + ImGui::DragFloat("float##3a", &f); + if (show_indented_items) + { + ImGui::Indent(); + ImGui::DragFloat("float (indented)##3b", &f); + ImGui::Unindent(); + } + ImGui::PopItemWidth(); + + ImGui::Text("SetNextItemWidth/PushItemWidth(-GetContentRegionAvail().x * 0.5f)"); + ImGui::SameLine(); HelpMarker("Align to right edge minus half"); + ImGui::PushItemWidth(-ImGui::GetContentRegionAvail().x * 0.5f); + ImGui::DragFloat("float##4a", &f); + if (show_indented_items) + { + ImGui::Indent(); + ImGui::DragFloat("float (indented)##4b", &f); + ImGui::Unindent(); + } + ImGui::PopItemWidth(); + + // Demonstrate using PushItemWidth to surround three items. + // Calling SetNextItemWidth() before each of them would have the same effect. + ImGui::Text("SetNextItemWidth/PushItemWidth(-FLT_MIN)"); + ImGui::SameLine(); HelpMarker("Align to right edge"); + ImGui::PushItemWidth(-FLT_MIN); + ImGui::DragFloat("##float5a", &f); + if (show_indented_items) + { + ImGui::Indent(); + ImGui::DragFloat("float (indented)##5b", &f); + ImGui::Unindent(); + } + ImGui::PopItemWidth(); + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Layout/Basic Horizontal Layout"); + if (ImGui::TreeNode("Basic Horizontal Layout")) + { + ImGui::TextWrapped("(Use ImGui::SameLine() to keep adding items to the right of the preceding item)"); + + // Text + IMGUI_DEMO_MARKER("Layout/Basic Horizontal Layout/SameLine"); + ImGui::Text("Two items: Hello"); ImGui::SameLine(); + ImGui::TextColored(ImVec4(1, 1, 0, 1), "Sailor"); + + // Adjust spacing + ImGui::Text("More spacing: Hello"); ImGui::SameLine(0, 20); + ImGui::TextColored(ImVec4(1, 1, 0, 1), "Sailor"); + + // Button + ImGui::AlignTextToFramePadding(); + ImGui::Text("Normal buttons"); ImGui::SameLine(); + ImGui::Button("Banana"); ImGui::SameLine(); + ImGui::Button("Apple"); ImGui::SameLine(); + ImGui::Button("Corniflower"); + + // Button + ImGui::Text("Small buttons"); ImGui::SameLine(); + ImGui::SmallButton("Like this one"); ImGui::SameLine(); + ImGui::Text("can fit within a text block."); + + // Aligned to arbitrary position. Easy/cheap column. + IMGUI_DEMO_MARKER("Layout/Basic Horizontal Layout/SameLine (with offset)"); + ImGui::Text("Aligned"); + ImGui::SameLine(150); ImGui::Text("x=150"); + ImGui::SameLine(300); ImGui::Text("x=300"); + ImGui::Text("Aligned"); + ImGui::SameLine(150); ImGui::SmallButton("x=150"); + ImGui::SameLine(300); ImGui::SmallButton("x=300"); + + // Checkbox + IMGUI_DEMO_MARKER("Layout/Basic Horizontal Layout/SameLine (more)"); + static bool c1 = false, c2 = false, c3 = false, c4 = false; + ImGui::Checkbox("My", &c1); ImGui::SameLine(); + ImGui::Checkbox("Tailor", &c2); ImGui::SameLine(); + ImGui::Checkbox("Is", &c3); ImGui::SameLine(); + ImGui::Checkbox("Rich", &c4); + + // Various + static float f0 = 1.0f, f1 = 2.0f, f2 = 3.0f; + ImGui::PushItemWidth(80); + const char* items[] = { "AAAA", "BBBB", "CCCC", "DDDD" }; + static int item = -1; + ImGui::Combo("Combo", &item, items, IM_ARRAYSIZE(items)); ImGui::SameLine(); + ImGui::SliderFloat("X", &f0, 0.0f, 5.0f); ImGui::SameLine(); + ImGui::SliderFloat("Y", &f1, 0.0f, 5.0f); ImGui::SameLine(); + ImGui::SliderFloat("Z", &f2, 0.0f, 5.0f); + ImGui::PopItemWidth(); + + ImGui::PushItemWidth(80); + ImGui::Text("Lists:"); + static int selection[4] = { 0, 1, 2, 3 }; + for (int i = 0; i < 4; i++) + { + if (i > 0) ImGui::SameLine(); + ImGui::PushID(i); + ImGui::ListBox("", &selection[i], items, IM_ARRAYSIZE(items)); + ImGui::PopID(); + //ImGui::SetItemTooltip("ListBox %d hovered", i); + } + ImGui::PopItemWidth(); + + // Dummy + IMGUI_DEMO_MARKER("Layout/Basic Horizontal Layout/Dummy"); + ImVec2 button_sz(40, 40); + ImGui::Button("A", button_sz); ImGui::SameLine(); + ImGui::Dummy(button_sz); ImGui::SameLine(); + ImGui::Button("B", button_sz); + + // Manually wrapping + // (we should eventually provide this as an automatic layout feature, but for now you can do it manually) + IMGUI_DEMO_MARKER("Layout/Basic Horizontal Layout/Manual wrapping"); + ImGui::Text("Manual wrapping:"); + ImGuiStyle& style = ImGui::GetStyle(); + int buttons_count = 20; + float window_visible_x2 = ImGui::GetWindowPos().x + ImGui::GetWindowContentRegionMax().x; + for (int n = 0; n < buttons_count; n++) + { + ImGui::PushID(n); + ImGui::Button("Box", button_sz); + float last_button_x2 = ImGui::GetItemRectMax().x; + float next_button_x2 = last_button_x2 + style.ItemSpacing.x + button_sz.x; // Expected position if next button was on same line + if (n + 1 < buttons_count && next_button_x2 < window_visible_x2) + ImGui::SameLine(); + ImGui::PopID(); + } + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Layout/Groups"); + if (ImGui::TreeNode("Groups")) + { + HelpMarker( + "BeginGroup() basically locks the horizontal position for new line. " + "EndGroup() bundles the whole group so that you can use \"item\" functions such as " + "IsItemHovered()/IsItemActive() or SameLine() etc. on the whole group."); + ImGui::BeginGroup(); + { + ImGui::BeginGroup(); + ImGui::Button("AAA"); + ImGui::SameLine(); + ImGui::Button("BBB"); + ImGui::SameLine(); + ImGui::BeginGroup(); + ImGui::Button("CCC"); + ImGui::Button("DDD"); + ImGui::EndGroup(); + ImGui::SameLine(); + ImGui::Button("EEE"); + ImGui::EndGroup(); + ImGui::SetItemTooltip("First group hovered"); + } + // Capture the group size and create widgets using the same size + ImVec2 size = ImGui::GetItemRectSize(); + const float values[5] = { 0.5f, 0.20f, 0.80f, 0.60f, 0.25f }; + ImGui::PlotHistogram("##values", values, IM_ARRAYSIZE(values), 0, NULL, 0.0f, 1.0f, size); + + ImGui::Button("ACTION", ImVec2((size.x - ImGui::GetStyle().ItemSpacing.x) * 0.5f, size.y)); + ImGui::SameLine(); + ImGui::Button("REACTION", ImVec2((size.x - ImGui::GetStyle().ItemSpacing.x) * 0.5f, size.y)); + ImGui::EndGroup(); + ImGui::SameLine(); + + ImGui::Button("LEVERAGE\nBUZZWORD", size); + ImGui::SameLine(); + + if (ImGui::BeginListBox("List", size)) + { + ImGui::Selectable("Selected", true); + ImGui::Selectable("Not Selected", false); + ImGui::EndListBox(); + } + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Layout/Text Baseline Alignment"); + if (ImGui::TreeNode("Text Baseline Alignment")) + { + { + ImGui::BulletText("Text baseline:"); + ImGui::SameLine(); HelpMarker( + "This is testing the vertical alignment that gets applied on text to keep it aligned with widgets. " + "Lines only composed of text or \"small\" widgets use less vertical space than lines with framed widgets."); + ImGui::Indent(); + + ImGui::Text("KO Blahblah"); ImGui::SameLine(); + ImGui::Button("Some framed item"); ImGui::SameLine(); + HelpMarker("Baseline of button will look misaligned with text.."); + + // If your line starts with text, call AlignTextToFramePadding() to align text to upcoming widgets. + // (because we don't know what's coming after the Text() statement, we need to move the text baseline + // down by FramePadding.y ahead of time) + ImGui::AlignTextToFramePadding(); + ImGui::Text("OK Blahblah"); ImGui::SameLine(); + ImGui::Button("Some framed item"); ImGui::SameLine(); + HelpMarker("We call AlignTextToFramePadding() to vertically align the text baseline by +FramePadding.y"); + + // SmallButton() uses the same vertical padding as Text + ImGui::Button("TEST##1"); ImGui::SameLine(); + ImGui::Text("TEST"); ImGui::SameLine(); + ImGui::SmallButton("TEST##2"); + + // If your line starts with text, call AlignTextToFramePadding() to align text to upcoming widgets. + ImGui::AlignTextToFramePadding(); + ImGui::Text("Text aligned to framed item"); ImGui::SameLine(); + ImGui::Button("Item##1"); ImGui::SameLine(); + ImGui::Text("Item"); ImGui::SameLine(); + ImGui::SmallButton("Item##2"); ImGui::SameLine(); + ImGui::Button("Item##3"); + + ImGui::Unindent(); + } + + ImGui::Spacing(); + + { + ImGui::BulletText("Multi-line text:"); + ImGui::Indent(); + ImGui::Text("One\nTwo\nThree"); ImGui::SameLine(); + ImGui::Text("Hello\nWorld"); ImGui::SameLine(); + ImGui::Text("Banana"); + + ImGui::Text("Banana"); ImGui::SameLine(); + ImGui::Text("Hello\nWorld"); ImGui::SameLine(); + ImGui::Text("One\nTwo\nThree"); + + ImGui::Button("HOP##1"); ImGui::SameLine(); + ImGui::Text("Banana"); ImGui::SameLine(); + ImGui::Text("Hello\nWorld"); ImGui::SameLine(); + ImGui::Text("Banana"); + + ImGui::Button("HOP##2"); ImGui::SameLine(); + ImGui::Text("Hello\nWorld"); ImGui::SameLine(); + ImGui::Text("Banana"); + ImGui::Unindent(); + } + + ImGui::Spacing(); + + { + ImGui::BulletText("Misc items:"); + ImGui::Indent(); + + // SmallButton() sets FramePadding to zero. Text baseline is aligned to match baseline of previous Button. + ImGui::Button("80x80", ImVec2(80, 80)); + ImGui::SameLine(); + ImGui::Button("50x50", ImVec2(50, 50)); + ImGui::SameLine(); + ImGui::Button("Button()"); + ImGui::SameLine(); + ImGui::SmallButton("SmallButton()"); + + // Tree + const float spacing = ImGui::GetStyle().ItemInnerSpacing.x; + ImGui::Button("Button##1"); + ImGui::SameLine(0.0f, spacing); + if (ImGui::TreeNode("Node##1")) + { + // Placeholder tree data + for (int i = 0; i < 6; i++) + ImGui::BulletText("Item %d..", i); + ImGui::TreePop(); + } + + // Vertically align text node a bit lower so it'll be vertically centered with upcoming widget. + // Otherwise you can use SmallButton() (smaller fit). + ImGui::AlignTextToFramePadding(); + + // Common mistake to avoid: if we want to SameLine after TreeNode we need to do it before we add + // other contents below the node. + bool node_open = ImGui::TreeNode("Node##2"); + ImGui::SameLine(0.0f, spacing); ImGui::Button("Button##2"); + if (node_open) + { + // Placeholder tree data + for (int i = 0; i < 6; i++) + ImGui::BulletText("Item %d..", i); + ImGui::TreePop(); + } + + // Bullet + ImGui::Button("Button##3"); + ImGui::SameLine(0.0f, spacing); + ImGui::BulletText("Bullet text"); + + ImGui::AlignTextToFramePadding(); + ImGui::BulletText("Node"); + ImGui::SameLine(0.0f, spacing); ImGui::Button("Button##4"); + ImGui::Unindent(); + } + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Layout/Scrolling"); + if (ImGui::TreeNode("Scrolling")) + { + // Vertical scroll functions + IMGUI_DEMO_MARKER("Layout/Scrolling/Vertical"); + HelpMarker("Use SetScrollHereY() or SetScrollFromPosY() to scroll to a given vertical position."); + + static int track_item = 50; + static bool enable_track = true; + static bool enable_extra_decorations = false; + static float scroll_to_off_px = 0.0f; + static float scroll_to_pos_px = 200.0f; + + ImGui::Checkbox("Decoration", &enable_extra_decorations); + + ImGui::Checkbox("Track", &enable_track); + ImGui::PushItemWidth(100); + ImGui::SameLine(140); enable_track |= ImGui::DragInt("##item", &track_item, 0.25f, 0, 99, "Item = %d"); + + bool scroll_to_off = ImGui::Button("Scroll Offset"); + ImGui::SameLine(140); scroll_to_off |= ImGui::DragFloat("##off", &scroll_to_off_px, 1.00f, 0, FLT_MAX, "+%.0f px"); + + bool scroll_to_pos = ImGui::Button("Scroll To Pos"); + ImGui::SameLine(140); scroll_to_pos |= ImGui::DragFloat("##pos", &scroll_to_pos_px, 1.00f, -10, FLT_MAX, "X/Y = %.0f px"); + ImGui::PopItemWidth(); + + if (scroll_to_off || scroll_to_pos) + enable_track = false; + + ImGuiStyle& style = ImGui::GetStyle(); + float child_w = (ImGui::GetContentRegionAvail().x - 4 * style.ItemSpacing.x) / 5; + if (child_w < 1.0f) + child_w = 1.0f; + ImGui::PushID("##VerticalScrolling"); + for (int i = 0; i < 5; i++) + { + if (i > 0) ImGui::SameLine(); + ImGui::BeginGroup(); + const char* names[] = { "Top", "25%", "Center", "75%", "Bottom" }; + ImGui::TextUnformatted(names[i]); + + const ImGuiWindowFlags child_flags = enable_extra_decorations ? ImGuiWindowFlags_MenuBar : 0; + const ImGuiID child_id = ImGui::GetID((void*)(intptr_t)i); + const bool child_is_visible = ImGui::BeginChild(child_id, ImVec2(child_w, 200.0f), true, child_flags); + if (ImGui::BeginMenuBar()) + { + ImGui::TextUnformatted("abc"); + ImGui::EndMenuBar(); + } + if (scroll_to_off) + ImGui::SetScrollY(scroll_to_off_px); + if (scroll_to_pos) + ImGui::SetScrollFromPosY(ImGui::GetCursorStartPos().y + scroll_to_pos_px, i * 0.25f); + if (child_is_visible) // Avoid calling SetScrollHereY when running with culled items + { + for (int item = 0; item < 100; item++) + { + if (enable_track && item == track_item) + { + ImGui::TextColored(ImVec4(1, 1, 0, 1), "Item %d", item); + ImGui::SetScrollHereY(i * 0.25f); // 0.0f:top, 0.5f:center, 1.0f:bottom + } + else + { + ImGui::Text("Item %d", item); + } + } + } + float scroll_y = ImGui::GetScrollY(); + float scroll_max_y = ImGui::GetScrollMaxY(); + ImGui::EndChild(); + ImGui::Text("%.0f/%.0f", scroll_y, scroll_max_y); + ImGui::EndGroup(); + } + ImGui::PopID(); + + // Horizontal scroll functions + IMGUI_DEMO_MARKER("Layout/Scrolling/Horizontal"); + ImGui::Spacing(); + HelpMarker( + "Use SetScrollHereX() or SetScrollFromPosX() to scroll to a given horizontal position.\n\n" + "Because the clipping rectangle of most window hides half worth of WindowPadding on the " + "left/right, using SetScrollFromPosX(+1) will usually result in clipped text whereas the " + "equivalent SetScrollFromPosY(+1) wouldn't."); + ImGui::PushID("##HorizontalScrolling"); + for (int i = 0; i < 5; i++) + { + float child_height = ImGui::GetTextLineHeight() + style.ScrollbarSize + style.WindowPadding.y * 2.0f; + ImGuiWindowFlags child_flags = ImGuiWindowFlags_HorizontalScrollbar | (enable_extra_decorations ? ImGuiWindowFlags_AlwaysVerticalScrollbar : 0); + ImGuiID child_id = ImGui::GetID((void*)(intptr_t)i); + bool child_is_visible = ImGui::BeginChild(child_id, ImVec2(-100, child_height), true, child_flags); + if (scroll_to_off) + ImGui::SetScrollX(scroll_to_off_px); + if (scroll_to_pos) + ImGui::SetScrollFromPosX(ImGui::GetCursorStartPos().x + scroll_to_pos_px, i * 0.25f); + if (child_is_visible) // Avoid calling SetScrollHereY when running with culled items + { + for (int item = 0; item < 100; item++) + { + if (item > 0) + ImGui::SameLine(); + if (enable_track && item == track_item) + { + ImGui::TextColored(ImVec4(1, 1, 0, 1), "Item %d", item); + ImGui::SetScrollHereX(i * 0.25f); // 0.0f:left, 0.5f:center, 1.0f:right + } + else + { + ImGui::Text("Item %d", item); + } + } + } + float scroll_x = ImGui::GetScrollX(); + float scroll_max_x = ImGui::GetScrollMaxX(); + ImGui::EndChild(); + ImGui::SameLine(); + const char* names[] = { "Left", "25%", "Center", "75%", "Right" }; + ImGui::Text("%s\n%.0f/%.0f", names[i], scroll_x, scroll_max_x); + ImGui::Spacing(); + } + ImGui::PopID(); + + // Miscellaneous Horizontal Scrolling Demo + IMGUI_DEMO_MARKER("Layout/Scrolling/Horizontal (more)"); + HelpMarker( + "Horizontal scrolling for a window is enabled via the ImGuiWindowFlags_HorizontalScrollbar flag.\n\n" + "You may want to also explicitly specify content width by using SetNextWindowContentWidth() before Begin()."); + static int lines = 7; + ImGui::SliderInt("Lines", &lines, 1, 15); + ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 3.0f); + ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(2.0f, 1.0f)); + ImVec2 scrolling_child_size = ImVec2(0, ImGui::GetFrameHeightWithSpacing() * 7 + 30); + ImGui::BeginChild("scrolling", scrolling_child_size, true, ImGuiWindowFlags_HorizontalScrollbar); + for (int line = 0; line < lines; line++) + { + // Display random stuff. For the sake of this trivial demo we are using basic Button() + SameLine() + // If you want to create your own time line for a real application you may be better off manipulating + // the cursor position yourself, aka using SetCursorPos/SetCursorScreenPos to position the widgets + // yourself. You may also want to use the lower-level ImDrawList API. + int num_buttons = 10 + ((line & 1) ? line * 9 : line * 3); + for (int n = 0; n < num_buttons; n++) + { + if (n > 0) ImGui::SameLine(); + ImGui::PushID(n + line * 1000); + char num_buf[16]; + sprintf(num_buf, "%d", n); + const char* label = (!(n % 15)) ? "FizzBuzz" : (!(n % 3)) ? "Fizz" : (!(n % 5)) ? "Buzz" : num_buf; + float hue = n * 0.05f; + ImGui::PushStyleColor(ImGuiCol_Button, (ImVec4)ImColor::HSV(hue, 0.6f, 0.6f)); + ImGui::PushStyleColor(ImGuiCol_ButtonHovered, (ImVec4)ImColor::HSV(hue, 0.7f, 0.7f)); + ImGui::PushStyleColor(ImGuiCol_ButtonActive, (ImVec4)ImColor::HSV(hue, 0.8f, 0.8f)); + ImGui::Button(label, ImVec2(40.0f + sinf((float)(line + n)) * 20.0f, 0.0f)); + ImGui::PopStyleColor(3); + ImGui::PopID(); + } + } + float scroll_x = ImGui::GetScrollX(); + float scroll_max_x = ImGui::GetScrollMaxX(); + ImGui::EndChild(); + ImGui::PopStyleVar(2); + float scroll_x_delta = 0.0f; + ImGui::SmallButton("<<"); + if (ImGui::IsItemActive()) + scroll_x_delta = -ImGui::GetIO().DeltaTime * 1000.0f; + ImGui::SameLine(); + ImGui::Text("Scroll from code"); ImGui::SameLine(); + ImGui::SmallButton(">>"); + if (ImGui::IsItemActive()) + scroll_x_delta = +ImGui::GetIO().DeltaTime * 1000.0f; + ImGui::SameLine(); + ImGui::Text("%.0f/%.0f", scroll_x, scroll_max_x); + if (scroll_x_delta != 0.0f) + { + // Demonstrate a trick: you can use Begin to set yourself in the context of another window + // (here we are already out of your child window) + ImGui::BeginChild("scrolling"); + ImGui::SetScrollX(ImGui::GetScrollX() + scroll_x_delta); + ImGui::EndChild(); + } + ImGui::Spacing(); + + static bool show_horizontal_contents_size_demo_window = false; + ImGui::Checkbox("Show Horizontal contents size demo window", &show_horizontal_contents_size_demo_window); + + if (show_horizontal_contents_size_demo_window) + { + static bool show_h_scrollbar = true; + static bool show_button = true; + static bool show_tree_nodes = true; + static bool show_text_wrapped = false; + static bool show_columns = true; + static bool show_tab_bar = true; + static bool show_child = false; + static bool explicit_content_size = false; + static float contents_size_x = 300.0f; + if (explicit_content_size) + ImGui::SetNextWindowContentSize(ImVec2(contents_size_x, 0.0f)); + ImGui::Begin("Horizontal contents size demo window", &show_horizontal_contents_size_demo_window, show_h_scrollbar ? ImGuiWindowFlags_HorizontalScrollbar : 0); + IMGUI_DEMO_MARKER("Layout/Scrolling/Horizontal contents size demo window"); + ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(2, 0)); + ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(2, 0)); + HelpMarker("Test of different widgets react and impact the work rectangle growing when horizontal scrolling is enabled.\n\nUse 'Metrics->Tools->Show windows rectangles' to visualize rectangles."); + ImGui::Checkbox("H-scrollbar", &show_h_scrollbar); + ImGui::Checkbox("Button", &show_button); // Will grow contents size (unless explicitly overwritten) + ImGui::Checkbox("Tree nodes", &show_tree_nodes); // Will grow contents size and display highlight over full width + ImGui::Checkbox("Text wrapped", &show_text_wrapped);// Will grow and use contents size + ImGui::Checkbox("Columns", &show_columns); // Will use contents size + ImGui::Checkbox("Tab bar", &show_tab_bar); // Will use contents size + ImGui::Checkbox("Child", &show_child); // Will grow and use contents size + ImGui::Checkbox("Explicit content size", &explicit_content_size); + ImGui::Text("Scroll %.1f/%.1f %.1f/%.1f", ImGui::GetScrollX(), ImGui::GetScrollMaxX(), ImGui::GetScrollY(), ImGui::GetScrollMaxY()); + if (explicit_content_size) + { + ImGui::SameLine(); + ImGui::SetNextItemWidth(100); + ImGui::DragFloat("##csx", &contents_size_x); + ImVec2 p = ImGui::GetCursorScreenPos(); + ImGui::GetWindowDrawList()->AddRectFilled(p, ImVec2(p.x + 10, p.y + 10), IM_COL32_WHITE); + ImGui::GetWindowDrawList()->AddRectFilled(ImVec2(p.x + contents_size_x - 10, p.y), ImVec2(p.x + contents_size_x, p.y + 10), IM_COL32_WHITE); + ImGui::Dummy(ImVec2(0, 10)); + } + ImGui::PopStyleVar(2); + ImGui::Separator(); + if (show_button) + { + ImGui::Button("this is a 300-wide button", ImVec2(300, 0)); + } + if (show_tree_nodes) + { + bool open = true; + if (ImGui::TreeNode("this is a tree node")) + { + if (ImGui::TreeNode("another one of those tree node...")) + { + ImGui::Text("Some tree contents"); + ImGui::TreePop(); + } + ImGui::TreePop(); + } + ImGui::CollapsingHeader("CollapsingHeader", &open); + } + if (show_text_wrapped) + { + ImGui::TextWrapped("This text should automatically wrap on the edge of the work rectangle."); + } + if (show_columns) + { + ImGui::Text("Tables:"); + if (ImGui::BeginTable("table", 4, ImGuiTableFlags_Borders)) + { + for (int n = 0; n < 4; n++) + { + ImGui::TableNextColumn(); + ImGui::Text("Width %.2f", ImGui::GetContentRegionAvail().x); + } + ImGui::EndTable(); + } + ImGui::Text("Columns:"); + ImGui::Columns(4); + for (int n = 0; n < 4; n++) + { + ImGui::Text("Width %.2f", ImGui::GetColumnWidth()); + ImGui::NextColumn(); + } + ImGui::Columns(1); + } + if (show_tab_bar && ImGui::BeginTabBar("Hello")) + { + if (ImGui::BeginTabItem("OneOneOne")) { ImGui::EndTabItem(); } + if (ImGui::BeginTabItem("TwoTwoTwo")) { ImGui::EndTabItem(); } + if (ImGui::BeginTabItem("ThreeThreeThree")) { ImGui::EndTabItem(); } + if (ImGui::BeginTabItem("FourFourFour")) { ImGui::EndTabItem(); } + ImGui::EndTabBar(); + } + if (show_child) + { + ImGui::BeginChild("child", ImVec2(0, 0), true); + ImGui::EndChild(); + } + ImGui::End(); + } + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Layout/Clipping"); + if (ImGui::TreeNode("Clipping")) + { + static ImVec2 size(100.0f, 100.0f); + static ImVec2 offset(30.0f, 30.0f); + ImGui::DragFloat2("size", (float*)&size, 0.5f, 1.0f, 200.0f, "%.0f"); + ImGui::TextWrapped("(Click and drag to scroll)"); + + HelpMarker( + "(Left) Using ImGui::PushClipRect():\n" + "Will alter ImGui hit-testing logic + ImDrawList rendering.\n" + "(use this if you want your clipping rectangle to affect interactions)\n\n" + "(Center) Using ImDrawList::PushClipRect():\n" + "Will alter ImDrawList rendering only.\n" + "(use this as a shortcut if you are only using ImDrawList calls)\n\n" + "(Right) Using ImDrawList::AddText() with a fine ClipRect:\n" + "Will alter only this specific ImDrawList::AddText() rendering.\n" + "This is often used internally to avoid altering the clipping rectangle and minimize draw calls."); + + for (int n = 0; n < 3; n++) + { + if (n > 0) + ImGui::SameLine(); + + ImGui::PushID(n); + ImGui::InvisibleButton("##canvas", size); + if (ImGui::IsItemActive() && ImGui::IsMouseDragging(ImGuiMouseButton_Left)) + { + offset.x += ImGui::GetIO().MouseDelta.x; + offset.y += ImGui::GetIO().MouseDelta.y; + } + ImGui::PopID(); + if (!ImGui::IsItemVisible()) // Skip rendering as ImDrawList elements are not clipped. + continue; + + const ImVec2 p0 = ImGui::GetItemRectMin(); + const ImVec2 p1 = ImGui::GetItemRectMax(); + const char* text_str = "Line 1 hello\nLine 2 clip me!"; + const ImVec2 text_pos = ImVec2(p0.x + offset.x, p0.y + offset.y); + ImDrawList* draw_list = ImGui::GetWindowDrawList(); + switch (n) + { + case 0: + ImGui::PushClipRect(p0, p1, true); + draw_list->AddRectFilled(p0, p1, IM_COL32(90, 90, 120, 255)); + draw_list->AddText(text_pos, IM_COL32_WHITE, text_str); + ImGui::PopClipRect(); + break; + case 1: + draw_list->PushClipRect(p0, p1, true); + draw_list->AddRectFilled(p0, p1, IM_COL32(90, 90, 120, 255)); + draw_list->AddText(text_pos, IM_COL32_WHITE, text_str); + draw_list->PopClipRect(); + break; + case 2: + ImVec4 clip_rect(p0.x, p0.y, p1.x, p1.y); // AddText() takes a ImVec4* here so let's convert. + draw_list->AddRectFilled(p0, p1, IM_COL32(90, 90, 120, 255)); + draw_list->AddText(ImGui::GetFont(), ImGui::GetFontSize(), text_pos, IM_COL32_WHITE, text_str, NULL, 0.0f, &clip_rect); + break; + } + } + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Layout/Overlap Mode"); + if (ImGui::TreeNode("Overlap Mode")) + { + static bool enable_allow_overlap = true; + + HelpMarker( + "Hit-testing is by default performed in item submission order, which generally is perceived as 'back-to-front'.\n\n" + "By using SetNextItemAllowOverlap() you can notify that an item may be overlapped by another. Doing so alters the hovering logic: items using AllowOverlap mode requires an extra frame to accept hovered state."); + ImGui::Checkbox("Enable AllowOverlap", &enable_allow_overlap); + + ImVec2 button1_pos = ImGui::GetCursorScreenPos(); + ImVec2 button2_pos = ImVec2(button1_pos.x + 50.0f, button1_pos.y + 50.0f); + if (enable_allow_overlap) + ImGui::SetNextItemAllowOverlap(); + ImGui::Button("Button 1", ImVec2(80, 80)); + ImGui::SetCursorScreenPos(button2_pos); + ImGui::Button("Button 2", ImVec2(80, 80)); + + // This is typically used with width-spanning items. + // (note that Selectable() has a dedicated flag ImGuiSelectableFlags_AllowOverlap, which is a shortcut + // for using SetNextItemAllowOverlap(). For demo purpose we use SetNextItemAllowOverlap() here.) + if (enable_allow_overlap) + ImGui::SetNextItemAllowOverlap(); + ImGui::Selectable("Some Selectable", false); + ImGui::SameLine(); + ImGui::SmallButton("++"); + + ImGui::TreePop(); + } +} + +static void ShowDemoWindowPopups() +{ + IMGUI_DEMO_MARKER("Popups"); + if (!ImGui::CollapsingHeader("Popups & Modal windows")) + return; + + // The properties of popups windows are: + // - They block normal mouse hovering detection outside them. (*) + // - Unless modal, they can be closed by clicking anywhere outside them, or by pressing ESCAPE. + // - Their visibility state (~bool) is held internally by Dear ImGui instead of being held by the programmer as + // we are used to with regular Begin() calls. User can manipulate the visibility state by calling OpenPopup(). + // (*) One can use IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup) to bypass it and detect hovering even + // when normally blocked by a popup. + // Those three properties are connected. The library needs to hold their visibility state BECAUSE it can close + // popups at any time. + + // Typical use for regular windows: + // bool my_tool_is_active = false; if (ImGui::Button("Open")) my_tool_is_active = true; [...] if (my_tool_is_active) Begin("My Tool", &my_tool_is_active) { [...] } End(); + // Typical use for popups: + // if (ImGui::Button("Open")) ImGui::OpenPopup("MyPopup"); if (ImGui::BeginPopup("MyPopup") { [...] EndPopup(); } + + // With popups we have to go through a library call (here OpenPopup) to manipulate the visibility state. + // This may be a bit confusing at first but it should quickly make sense. Follow on the examples below. + + IMGUI_DEMO_MARKER("Popups/Popups"); + if (ImGui::TreeNode("Popups")) + { + ImGui::TextWrapped( + "When a popup is active, it inhibits interacting with windows that are behind the popup. " + "Clicking outside the popup closes it."); + + static int selected_fish = -1; + const char* names[] = { "Bream", "Haddock", "Mackerel", "Pollock", "Tilefish" }; + static bool toggles[] = { true, false, false, false, false }; + + // Simple selection popup (if you want to show the current selection inside the Button itself, + // you may want to build a string using the "###" operator to preserve a constant ID with a variable label) + if (ImGui::Button("Select..")) + ImGui::OpenPopup("my_select_popup"); + ImGui::SameLine(); + ImGui::TextUnformatted(selected_fish == -1 ? "" : names[selected_fish]); + if (ImGui::BeginPopup("my_select_popup")) + { + ImGui::SeparatorText("Aquarium"); + for (int i = 0; i < IM_ARRAYSIZE(names); i++) + if (ImGui::Selectable(names[i])) + selected_fish = i; + ImGui::EndPopup(); + } + + // Showing a menu with toggles + if (ImGui::Button("Toggle..")) + ImGui::OpenPopup("my_toggle_popup"); + if (ImGui::BeginPopup("my_toggle_popup")) + { + for (int i = 0; i < IM_ARRAYSIZE(names); i++) + ImGui::MenuItem(names[i], "", &toggles[i]); + if (ImGui::BeginMenu("Sub-menu")) + { + ImGui::MenuItem("Click me"); + ImGui::EndMenu(); + } + + ImGui::Separator(); + ImGui::Text("Tooltip here"); + ImGui::SetItemTooltip("I am a tooltip over a popup"); + + if (ImGui::Button("Stacked Popup")) + ImGui::OpenPopup("another popup"); + if (ImGui::BeginPopup("another popup")) + { + for (int i = 0; i < IM_ARRAYSIZE(names); i++) + ImGui::MenuItem(names[i], "", &toggles[i]); + if (ImGui::BeginMenu("Sub-menu")) + { + ImGui::MenuItem("Click me"); + if (ImGui::Button("Stacked Popup")) + ImGui::OpenPopup("another popup"); + if (ImGui::BeginPopup("another popup")) + { + ImGui::Text("I am the last one here."); + ImGui::EndPopup(); + } + ImGui::EndMenu(); + } + ImGui::EndPopup(); + } + ImGui::EndPopup(); + } + + // Call the more complete ShowExampleMenuFile which we use in various places of this demo + if (ImGui::Button("With a menu..")) + ImGui::OpenPopup("my_file_popup"); + if (ImGui::BeginPopup("my_file_popup", ImGuiWindowFlags_MenuBar)) + { + if (ImGui::BeginMenuBar()) + { + if (ImGui::BeginMenu("File")) + { + ShowExampleMenuFile(); + ImGui::EndMenu(); + } + if (ImGui::BeginMenu("Edit")) + { + ImGui::MenuItem("Dummy"); + ImGui::EndMenu(); + } + ImGui::EndMenuBar(); + } + ImGui::Text("Hello from popup!"); + ImGui::Button("This is a dummy button.."); + ImGui::EndPopup(); + } + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Popups/Context menus"); + if (ImGui::TreeNode("Context menus")) + { + HelpMarker("\"Context\" functions are simple helpers to associate a Popup to a given Item or Window identifier."); + + // BeginPopupContextItem() is a helper to provide common/simple popup behavior of essentially doing: + // if (id == 0) + // id = GetItemID(); // Use last item id + // if (IsItemHovered() && IsMouseReleased(ImGuiMouseButton_Right)) + // OpenPopup(id); + // return BeginPopup(id); + // For advanced uses you may want to replicate and customize this code. + // See more details in BeginPopupContextItem(). + + // Example 1 + // When used after an item that has an ID (e.g. Button), we can skip providing an ID to BeginPopupContextItem(), + // and BeginPopupContextItem() will use the last item ID as the popup ID. + { + const char* names[5] = { "Label1", "Label2", "Label3", "Label4", "Label5" }; + static int selected = -1; + for (int n = 0; n < 5; n++) + { + if (ImGui::Selectable(names[n], selected == n)) + selected = n; + if (ImGui::BeginPopupContextItem()) // <-- use last item id as popup id + { + selected = n; + ImGui::Text("This a popup for \"%s\"!", names[n]); + if (ImGui::Button("Close")) + ImGui::CloseCurrentPopup(); + ImGui::EndPopup(); + } + ImGui::SetItemTooltip("Right-click to open popup"); + } + } + + // Example 2 + // Popup on a Text() element which doesn't have an identifier: we need to provide an identifier to BeginPopupContextItem(). + // Using an explicit identifier is also convenient if you want to activate the popups from different locations. + { + HelpMarker("Text() elements don't have stable identifiers so we need to provide one."); + static float value = 0.5f; + ImGui::Text("Value = %.3f <-- (1) right-click this text", value); + if (ImGui::BeginPopupContextItem("my popup")) + { + if (ImGui::Selectable("Set to zero")) value = 0.0f; + if (ImGui::Selectable("Set to PI")) value = 3.1415f; + ImGui::SetNextItemWidth(-FLT_MIN); + ImGui::DragFloat("##Value", &value, 0.1f, 0.0f, 0.0f); + ImGui::EndPopup(); + } + + // We can also use OpenPopupOnItemClick() to toggle the visibility of a given popup. + // Here we make it that right-clicking this other text element opens the same popup as above. + // The popup itself will be submitted by the code above. + ImGui::Text("(2) Or right-click this text"); + ImGui::OpenPopupOnItemClick("my popup", ImGuiPopupFlags_MouseButtonRight); + + // Back to square one: manually open the same popup. + if (ImGui::Button("(3) Or click this button")) + ImGui::OpenPopup("my popup"); + } + + // Example 3 + // When using BeginPopupContextItem() with an implicit identifier (NULL == use last item ID), + // we need to make sure your item identifier is stable. + // In this example we showcase altering the item label while preserving its identifier, using the ### operator (see FAQ). + { + HelpMarker("Showcase using a popup ID linked to item ID, with the item having a changing label + stable ID using the ### operator."); + static char name[32] = "Label1"; + char buf[64]; + sprintf(buf, "Button: %s###Button", name); // ### operator override ID ignoring the preceding label + ImGui::Button(buf); + if (ImGui::BeginPopupContextItem()) + { + ImGui::Text("Edit name:"); + ImGui::InputText("##edit", name, IM_ARRAYSIZE(name)); + if (ImGui::Button("Close")) + ImGui::CloseCurrentPopup(); + ImGui::EndPopup(); + } + ImGui::SameLine(); ImGui::Text("(<-- right-click here)"); + } + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Popups/Modals"); + if (ImGui::TreeNode("Modals")) + { + ImGui::TextWrapped("Modal windows are like popups but the user cannot close them by clicking outside."); + + if (ImGui::Button("Delete..")) + ImGui::OpenPopup("Delete?"); + + // Always center this window when appearing + ImVec2 center = ImGui::GetMainViewport()->GetCenter(); + ImGui::SetNextWindowPos(center, ImGuiCond_Appearing, ImVec2(0.5f, 0.5f)); + + if (ImGui::BeginPopupModal("Delete?", NULL, ImGuiWindowFlags_AlwaysAutoResize)) + { + ImGui::Text("All those beautiful files will be deleted.\nThis operation cannot be undone!"); + ImGui::Separator(); + + //static int unused_i = 0; + //ImGui::Combo("Combo", &unused_i, "Delete\0Delete harder\0"); + + static bool dont_ask_me_next_time = false; + ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(0, 0)); + ImGui::Checkbox("Don't ask me next time", &dont_ask_me_next_time); + ImGui::PopStyleVar(); + + if (ImGui::Button("OK", ImVec2(120, 0))) { ImGui::CloseCurrentPopup(); } + ImGui::SetItemDefaultFocus(); + ImGui::SameLine(); + if (ImGui::Button("Cancel", ImVec2(120, 0))) { ImGui::CloseCurrentPopup(); } + ImGui::EndPopup(); + } + + if (ImGui::Button("Stacked modals..")) + ImGui::OpenPopup("Stacked 1"); + if (ImGui::BeginPopupModal("Stacked 1", NULL, ImGuiWindowFlags_MenuBar)) + { + if (ImGui::BeginMenuBar()) + { + if (ImGui::BeginMenu("File")) + { + if (ImGui::MenuItem("Some menu item")) {} + ImGui::EndMenu(); + } + ImGui::EndMenuBar(); + } + ImGui::Text("Hello from Stacked The First\nUsing style.Colors[ImGuiCol_ModalWindowDimBg] behind it."); + + // Testing behavior of widgets stacking their own regular popups over the modal. + static int item = 1; + static float color[4] = { 0.4f, 0.7f, 0.0f, 0.5f }; + ImGui::Combo("Combo", &item, "aaaa\0bbbb\0cccc\0dddd\0eeee\0\0"); + ImGui::ColorEdit4("color", color); + + if (ImGui::Button("Add another modal..")) + ImGui::OpenPopup("Stacked 2"); + + // Also demonstrate passing a bool* to BeginPopupModal(), this will create a regular close button which + // will close the popup. Note that the visibility state of popups is owned by imgui, so the input value + // of the bool actually doesn't matter here. + bool unused_open = true; + if (ImGui::BeginPopupModal("Stacked 2", &unused_open)) + { + ImGui::Text("Hello from Stacked The Second!"); + if (ImGui::Button("Close")) + ImGui::CloseCurrentPopup(); + ImGui::EndPopup(); + } + + if (ImGui::Button("Close")) + ImGui::CloseCurrentPopup(); + ImGui::EndPopup(); + } + + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Popups/Menus inside a regular window"); + if (ImGui::TreeNode("Menus inside a regular window")) + { + ImGui::TextWrapped("Below we are testing adding menu items to a regular window. It's rather unusual but should work!"); + ImGui::Separator(); + + ImGui::MenuItem("Menu item", "CTRL+M"); + if (ImGui::BeginMenu("Menu inside a regular window")) + { + ShowExampleMenuFile(); + ImGui::EndMenu(); + } + ImGui::Separator(); + ImGui::TreePop(); + } +} + +// Dummy data structure that we use for the Table demo. +// (pre-C++11 doesn't allow us to instantiate ImVector template if this structure is defined inside the demo function) +namespace +{ +// We are passing our own identifier to TableSetupColumn() to facilitate identifying columns in the sorting code. +// This identifier will be passed down into ImGuiTableSortSpec::ColumnUserID. +// But it is possible to omit the user id parameter of TableSetupColumn() and just use the column index instead! (ImGuiTableSortSpec::ColumnIndex) +// If you don't use sorting, you will generally never care about giving column an ID! +enum MyItemColumnID +{ + MyItemColumnID_ID, + MyItemColumnID_Name, + MyItemColumnID_Action, + MyItemColumnID_Quantity, + MyItemColumnID_Description +}; + +struct MyItem +{ + int ID; + const char* Name; + int Quantity; + + // We have a problem which is affecting _only this demo_ and should not affect your code: + // As we don't rely on std:: or other third-party library to compile dear imgui, we only have reliable access to qsort(), + // however qsort doesn't allow passing user data to comparing function. + // As a workaround, we are storing the sort specs in a static/global for the comparing function to access. + // In your own use case you would probably pass the sort specs to your sorting/comparing functions directly and not use a global. + // We could technically call ImGui::TableGetSortSpecs() in CompareWithSortSpecs(), but considering that this function is called + // very often by the sorting algorithm it would be a little wasteful. + static const ImGuiTableSortSpecs* s_current_sort_specs; + + static void SortWithSortSpecs(ImGuiTableSortSpecs* sort_specs, MyItem* items, int items_count) + { + s_current_sort_specs = sort_specs; // Store in variable accessible by the sort function. + if (items_count > 1) + qsort(items, (size_t)items_count, sizeof(items[0]), MyItem::CompareWithSortSpecs); + s_current_sort_specs = NULL; + } + + // Compare function to be used by qsort() + static int IMGUI_CDECL CompareWithSortSpecs(const void* lhs, const void* rhs) + { + const MyItem* a = (const MyItem*)lhs; + const MyItem* b = (const MyItem*)rhs; + for (int n = 0; n < s_current_sort_specs->SpecsCount; n++) + { + // Here we identify columns using the ColumnUserID value that we ourselves passed to TableSetupColumn() + // We could also choose to identify columns based on their index (sort_spec->ColumnIndex), which is simpler! + const ImGuiTableColumnSortSpecs* sort_spec = &s_current_sort_specs->Specs[n]; + int delta = 0; + switch (sort_spec->ColumnUserID) + { + case MyItemColumnID_ID: delta = (a->ID - b->ID); break; + case MyItemColumnID_Name: delta = (strcmp(a->Name, b->Name)); break; + case MyItemColumnID_Quantity: delta = (a->Quantity - b->Quantity); break; + case MyItemColumnID_Description: delta = (strcmp(a->Name, b->Name)); break; + default: IM_ASSERT(0); break; + } + if (delta > 0) + return (sort_spec->SortDirection == ImGuiSortDirection_Ascending) ? +1 : -1; + if (delta < 0) + return (sort_spec->SortDirection == ImGuiSortDirection_Ascending) ? -1 : +1; + } + + // qsort() is instable so always return a way to differenciate items. + // Your own compare function may want to avoid fallback on implicit sort specs e.g. a Name compare if it wasn't already part of the sort specs. + return (a->ID - b->ID); + } +}; +const ImGuiTableSortSpecs* MyItem::s_current_sort_specs = NULL; +} + +// Make the UI compact because there are so many fields +static void PushStyleCompact() +{ + ImGuiStyle& style = ImGui::GetStyle(); + ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(style.FramePadding.x, (float)(int)(style.FramePadding.y * 0.60f))); + ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(style.ItemSpacing.x, (float)(int)(style.ItemSpacing.y * 0.60f))); +} + +static void PopStyleCompact() +{ + ImGui::PopStyleVar(2); +} + +// Show a combo box with a choice of sizing policies +static void EditTableSizingFlags(ImGuiTableFlags* p_flags) +{ + struct EnumDesc { ImGuiTableFlags Value; const char* Name; const char* Tooltip; }; + static const EnumDesc policies[] = + { + { ImGuiTableFlags_None, "Default", "Use default sizing policy:\n- ImGuiTableFlags_SizingFixedFit if ScrollX is on or if host window has ImGuiWindowFlags_AlwaysAutoResize.\n- ImGuiTableFlags_SizingStretchSame otherwise." }, + { ImGuiTableFlags_SizingFixedFit, "ImGuiTableFlags_SizingFixedFit", "Columns default to _WidthFixed (if resizable) or _WidthAuto (if not resizable), matching contents width." }, + { ImGuiTableFlags_SizingFixedSame, "ImGuiTableFlags_SizingFixedSame", "Columns are all the same width, matching the maximum contents width.\nImplicitly disable ImGuiTableFlags_Resizable and enable ImGuiTableFlags_NoKeepColumnsVisible." }, + { ImGuiTableFlags_SizingStretchProp, "ImGuiTableFlags_SizingStretchProp", "Columns default to _WidthStretch with weights proportional to their widths." }, + { ImGuiTableFlags_SizingStretchSame, "ImGuiTableFlags_SizingStretchSame", "Columns default to _WidthStretch with same weights." } + }; + int idx; + for (idx = 0; idx < IM_ARRAYSIZE(policies); idx++) + if (policies[idx].Value == (*p_flags & ImGuiTableFlags_SizingMask_)) + break; + const char* preview_text = (idx < IM_ARRAYSIZE(policies)) ? policies[idx].Name + (idx > 0 ? strlen("ImGuiTableFlags") : 0) : ""; + if (ImGui::BeginCombo("Sizing Policy", preview_text)) + { + for (int n = 0; n < IM_ARRAYSIZE(policies); n++) + if (ImGui::Selectable(policies[n].Name, idx == n)) + *p_flags = (*p_flags & ~ImGuiTableFlags_SizingMask_) | policies[n].Value; + ImGui::EndCombo(); + } + ImGui::SameLine(); + ImGui::TextDisabled("(?)"); + if (ImGui::BeginItemTooltip()) + { + ImGui::PushTextWrapPos(ImGui::GetFontSize() * 50.0f); + for (int m = 0; m < IM_ARRAYSIZE(policies); m++) + { + ImGui::Separator(); + ImGui::Text("%s:", policies[m].Name); + ImGui::Separator(); + ImGui::SetCursorPosX(ImGui::GetCursorPosX() + ImGui::GetStyle().IndentSpacing * 0.5f); + ImGui::TextUnformatted(policies[m].Tooltip); + } + ImGui::PopTextWrapPos(); + ImGui::EndTooltip(); + } +} + +static void EditTableColumnsFlags(ImGuiTableColumnFlags* p_flags) +{ + ImGui::CheckboxFlags("_Disabled", p_flags, ImGuiTableColumnFlags_Disabled); ImGui::SameLine(); HelpMarker("Master disable flag (also hide from context menu)"); + ImGui::CheckboxFlags("_DefaultHide", p_flags, ImGuiTableColumnFlags_DefaultHide); + ImGui::CheckboxFlags("_DefaultSort", p_flags, ImGuiTableColumnFlags_DefaultSort); + if (ImGui::CheckboxFlags("_WidthStretch", p_flags, ImGuiTableColumnFlags_WidthStretch)) + *p_flags &= ~(ImGuiTableColumnFlags_WidthMask_ ^ ImGuiTableColumnFlags_WidthStretch); + if (ImGui::CheckboxFlags("_WidthFixed", p_flags, ImGuiTableColumnFlags_WidthFixed)) + *p_flags &= ~(ImGuiTableColumnFlags_WidthMask_ ^ ImGuiTableColumnFlags_WidthFixed); + ImGui::CheckboxFlags("_NoResize", p_flags, ImGuiTableColumnFlags_NoResize); + ImGui::CheckboxFlags("_NoReorder", p_flags, ImGuiTableColumnFlags_NoReorder); + ImGui::CheckboxFlags("_NoHide", p_flags, ImGuiTableColumnFlags_NoHide); + ImGui::CheckboxFlags("_NoClip", p_flags, ImGuiTableColumnFlags_NoClip); + ImGui::CheckboxFlags("_NoSort", p_flags, ImGuiTableColumnFlags_NoSort); + ImGui::CheckboxFlags("_NoSortAscending", p_flags, ImGuiTableColumnFlags_NoSortAscending); + ImGui::CheckboxFlags("_NoSortDescending", p_flags, ImGuiTableColumnFlags_NoSortDescending); + ImGui::CheckboxFlags("_NoHeaderLabel", p_flags, ImGuiTableColumnFlags_NoHeaderLabel); + ImGui::CheckboxFlags("_NoHeaderWidth", p_flags, ImGuiTableColumnFlags_NoHeaderWidth); + ImGui::CheckboxFlags("_PreferSortAscending", p_flags, ImGuiTableColumnFlags_PreferSortAscending); + ImGui::CheckboxFlags("_PreferSortDescending", p_flags, ImGuiTableColumnFlags_PreferSortDescending); + ImGui::CheckboxFlags("_IndentEnable", p_flags, ImGuiTableColumnFlags_IndentEnable); ImGui::SameLine(); HelpMarker("Default for column 0"); + ImGui::CheckboxFlags("_IndentDisable", p_flags, ImGuiTableColumnFlags_IndentDisable); ImGui::SameLine(); HelpMarker("Default for column >0"); +} + +static void ShowTableColumnsStatusFlags(ImGuiTableColumnFlags flags) +{ + ImGui::CheckboxFlags("_IsEnabled", &flags, ImGuiTableColumnFlags_IsEnabled); + ImGui::CheckboxFlags("_IsVisible", &flags, ImGuiTableColumnFlags_IsVisible); + ImGui::CheckboxFlags("_IsSorted", &flags, ImGuiTableColumnFlags_IsSorted); + ImGui::CheckboxFlags("_IsHovered", &flags, ImGuiTableColumnFlags_IsHovered); +} + +static void ShowDemoWindowTables() +{ + //ImGui::SetNextItemOpen(true, ImGuiCond_Once); + IMGUI_DEMO_MARKER("Tables"); + if (!ImGui::CollapsingHeader("Tables & Columns")) + return; + + // Using those as a base value to create width/height that are factor of the size of our font + const float TEXT_BASE_WIDTH = ImGui::CalcTextSize("A").x; + const float TEXT_BASE_HEIGHT = ImGui::GetTextLineHeightWithSpacing(); + + ImGui::PushID("Tables"); + + int open_action = -1; + if (ImGui::Button("Open all")) + open_action = 1; + ImGui::SameLine(); + if (ImGui::Button("Close all")) + open_action = 0; + ImGui::SameLine(); + + // Options + static bool disable_indent = false; + ImGui::Checkbox("Disable tree indentation", &disable_indent); + ImGui::SameLine(); + HelpMarker("Disable the indenting of tree nodes so demo tables can use the full window width."); + ImGui::Separator(); + if (disable_indent) + ImGui::PushStyleVar(ImGuiStyleVar_IndentSpacing, 0.0f); + + // About Styling of tables + // Most settings are configured on a per-table basis via the flags passed to BeginTable() and TableSetupColumns APIs. + // There are however a few settings that a shared and part of the ImGuiStyle structure: + // style.CellPadding // Padding within each cell + // style.Colors[ImGuiCol_TableHeaderBg] // Table header background + // style.Colors[ImGuiCol_TableBorderStrong] // Table outer and header borders + // style.Colors[ImGuiCol_TableBorderLight] // Table inner borders + // style.Colors[ImGuiCol_TableRowBg] // Table row background when ImGuiTableFlags_RowBg is enabled (even rows) + // style.Colors[ImGuiCol_TableRowBgAlt] // Table row background when ImGuiTableFlags_RowBg is enabled (odds rows) + + // Demos + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Basic"); + if (ImGui::TreeNode("Basic")) + { + // Here we will showcase three different ways to output a table. + // They are very simple variations of a same thing! + + // [Method 1] Using TableNextRow() to create a new row, and TableSetColumnIndex() to select the column. + // In many situations, this is the most flexible and easy to use pattern. + HelpMarker("Using TableNextRow() + calling TableSetColumnIndex() _before_ each cell, in a loop."); + if (ImGui::BeginTable("table1", 3)) + { + for (int row = 0; row < 4; row++) + { + ImGui::TableNextRow(); + for (int column = 0; column < 3; column++) + { + ImGui::TableSetColumnIndex(column); + ImGui::Text("Row %d Column %d", row, column); + } + } + ImGui::EndTable(); + } + + // [Method 2] Using TableNextColumn() called multiple times, instead of using a for loop + TableSetColumnIndex(). + // This is generally more convenient when you have code manually submitting the contents of each column. + HelpMarker("Using TableNextRow() + calling TableNextColumn() _before_ each cell, manually."); + if (ImGui::BeginTable("table2", 3)) + { + for (int row = 0; row < 4; row++) + { + ImGui::TableNextRow(); + ImGui::TableNextColumn(); + ImGui::Text("Row %d", row); + ImGui::TableNextColumn(); + ImGui::Text("Some contents"); + ImGui::TableNextColumn(); + ImGui::Text("123.456"); + } + ImGui::EndTable(); + } + + // [Method 3] We call TableNextColumn() _before_ each cell. We never call TableNextRow(), + // as TableNextColumn() will automatically wrap around and create new rows as needed. + // This is generally more convenient when your cells all contains the same type of data. + HelpMarker( + "Only using TableNextColumn(), which tends to be convenient for tables where every cell contains the same type of contents.\n" + "This is also more similar to the old NextColumn() function of the Columns API, and provided to facilitate the Columns->Tables API transition."); + if (ImGui::BeginTable("table3", 3)) + { + for (int item = 0; item < 14; item++) + { + ImGui::TableNextColumn(); + ImGui::Text("Item %d", item); + } + ImGui::EndTable(); + } + + ImGui::TreePop(); + } + + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Borders, background"); + if (ImGui::TreeNode("Borders, background")) + { + // Expose a few Borders related flags interactively + enum ContentsType { CT_Text, CT_FillButton }; + static ImGuiTableFlags flags = ImGuiTableFlags_Borders | ImGuiTableFlags_RowBg; + static bool display_headers = false; + static int contents_type = CT_Text; + + PushStyleCompact(); + ImGui::CheckboxFlags("ImGuiTableFlags_RowBg", &flags, ImGuiTableFlags_RowBg); + ImGui::CheckboxFlags("ImGuiTableFlags_Borders", &flags, ImGuiTableFlags_Borders); + ImGui::SameLine(); HelpMarker("ImGuiTableFlags_Borders\n = ImGuiTableFlags_BordersInnerV\n | ImGuiTableFlags_BordersOuterV\n | ImGuiTableFlags_BordersInnerV\n | ImGuiTableFlags_BordersOuterH"); + ImGui::Indent(); + + ImGui::CheckboxFlags("ImGuiTableFlags_BordersH", &flags, ImGuiTableFlags_BordersH); + ImGui::Indent(); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersOuterH", &flags, ImGuiTableFlags_BordersOuterH); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersInnerH", &flags, ImGuiTableFlags_BordersInnerH); + ImGui::Unindent(); + + ImGui::CheckboxFlags("ImGuiTableFlags_BordersV", &flags, ImGuiTableFlags_BordersV); + ImGui::Indent(); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersOuterV", &flags, ImGuiTableFlags_BordersOuterV); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersInnerV", &flags, ImGuiTableFlags_BordersInnerV); + ImGui::Unindent(); + + ImGui::CheckboxFlags("ImGuiTableFlags_BordersOuter", &flags, ImGuiTableFlags_BordersOuter); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersInner", &flags, ImGuiTableFlags_BordersInner); + ImGui::Unindent(); + + ImGui::AlignTextToFramePadding(); ImGui::Text("Cell contents:"); + ImGui::SameLine(); ImGui::RadioButton("Text", &contents_type, CT_Text); + ImGui::SameLine(); ImGui::RadioButton("FillButton", &contents_type, CT_FillButton); + ImGui::Checkbox("Display headers", &display_headers); + ImGui::CheckboxFlags("ImGuiTableFlags_NoBordersInBody", &flags, ImGuiTableFlags_NoBordersInBody); ImGui::SameLine(); HelpMarker("Disable vertical borders in columns Body (borders will always appear in Headers"); + PopStyleCompact(); + + if (ImGui::BeginTable("table1", 3, flags)) + { + // Display headers so we can inspect their interaction with borders. + // (Headers are not the main purpose of this section of the demo, so we are not elaborating on them too much. See other sections for details) + if (display_headers) + { + ImGui::TableSetupColumn("One"); + ImGui::TableSetupColumn("Two"); + ImGui::TableSetupColumn("Three"); + ImGui::TableHeadersRow(); + } + + for (int row = 0; row < 5; row++) + { + ImGui::TableNextRow(); + for (int column = 0; column < 3; column++) + { + ImGui::TableSetColumnIndex(column); + char buf[32]; + sprintf(buf, "Hello %d,%d", column, row); + if (contents_type == CT_Text) + ImGui::TextUnformatted(buf); + else if (contents_type == CT_FillButton) + ImGui::Button(buf, ImVec2(-FLT_MIN, 0.0f)); + } + } + ImGui::EndTable(); + } + ImGui::TreePop(); + } + + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Resizable, stretch"); + if (ImGui::TreeNode("Resizable, stretch")) + { + // By default, if we don't enable ScrollX the sizing policy for each column is "Stretch" + // All columns maintain a sizing weight, and they will occupy all available width. + static ImGuiTableFlags flags = ImGuiTableFlags_SizingStretchSame | ImGuiTableFlags_Resizable | ImGuiTableFlags_BordersOuter | ImGuiTableFlags_BordersV | ImGuiTableFlags_ContextMenuInBody; + PushStyleCompact(); + ImGui::CheckboxFlags("ImGuiTableFlags_Resizable", &flags, ImGuiTableFlags_Resizable); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersV", &flags, ImGuiTableFlags_BordersV); + ImGui::SameLine(); HelpMarker("Using the _Resizable flag automatically enables the _BordersInnerV flag as well, this is why the resize borders are still showing when unchecking this."); + PopStyleCompact(); + + if (ImGui::BeginTable("table1", 3, flags)) + { + for (int row = 0; row < 5; row++) + { + ImGui::TableNextRow(); + for (int column = 0; column < 3; column++) + { + ImGui::TableSetColumnIndex(column); + ImGui::Text("Hello %d,%d", column, row); + } + } + ImGui::EndTable(); + } + ImGui::TreePop(); + } + + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Resizable, fixed"); + if (ImGui::TreeNode("Resizable, fixed")) + { + // Here we use ImGuiTableFlags_SizingFixedFit (even though _ScrollX is not set) + // So columns will adopt the "Fixed" policy and will maintain a fixed width regardless of the whole available width (unless table is small) + // If there is not enough available width to fit all columns, they will however be resized down. + // FIXME-TABLE: Providing a stretch-on-init would make sense especially for tables which don't have saved settings + HelpMarker( + "Using _Resizable + _SizingFixedFit flags.\n" + "Fixed-width columns generally makes more sense if you want to use horizontal scrolling.\n\n" + "Double-click a column border to auto-fit the column to its contents."); + PushStyleCompact(); + static ImGuiTableFlags flags = ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_Resizable | ImGuiTableFlags_BordersOuter | ImGuiTableFlags_BordersV | ImGuiTableFlags_ContextMenuInBody; + ImGui::CheckboxFlags("ImGuiTableFlags_NoHostExtendX", &flags, ImGuiTableFlags_NoHostExtendX); + PopStyleCompact(); + + if (ImGui::BeginTable("table1", 3, flags)) + { + for (int row = 0; row < 5; row++) + { + ImGui::TableNextRow(); + for (int column = 0; column < 3; column++) + { + ImGui::TableSetColumnIndex(column); + ImGui::Text("Hello %d,%d", column, row); + } + } + ImGui::EndTable(); + } + ImGui::TreePop(); + } + + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Resizable, mixed"); + if (ImGui::TreeNode("Resizable, mixed")) + { + HelpMarker( + "Using TableSetupColumn() to alter resizing policy on a per-column basis.\n\n" + "When combining Fixed and Stretch columns, generally you only want one, maybe two trailing columns to use _WidthStretch."); + static ImGuiTableFlags flags = ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_RowBg | ImGuiTableFlags_Borders | ImGuiTableFlags_Resizable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_Hideable; + + if (ImGui::BeginTable("table1", 3, flags)) + { + ImGui::TableSetupColumn("AAA", ImGuiTableColumnFlags_WidthFixed); + ImGui::TableSetupColumn("BBB", ImGuiTableColumnFlags_WidthFixed); + ImGui::TableSetupColumn("CCC", ImGuiTableColumnFlags_WidthStretch); + ImGui::TableHeadersRow(); + for (int row = 0; row < 5; row++) + { + ImGui::TableNextRow(); + for (int column = 0; column < 3; column++) + { + ImGui::TableSetColumnIndex(column); + ImGui::Text("%s %d,%d", (column == 2) ? "Stretch" : "Fixed", column, row); + } + } + ImGui::EndTable(); + } + if (ImGui::BeginTable("table2", 6, flags)) + { + ImGui::TableSetupColumn("AAA", ImGuiTableColumnFlags_WidthFixed); + ImGui::TableSetupColumn("BBB", ImGuiTableColumnFlags_WidthFixed); + ImGui::TableSetupColumn("CCC", ImGuiTableColumnFlags_WidthFixed | ImGuiTableColumnFlags_DefaultHide); + ImGui::TableSetupColumn("DDD", ImGuiTableColumnFlags_WidthStretch); + ImGui::TableSetupColumn("EEE", ImGuiTableColumnFlags_WidthStretch); + ImGui::TableSetupColumn("FFF", ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_DefaultHide); + ImGui::TableHeadersRow(); + for (int row = 0; row < 5; row++) + { + ImGui::TableNextRow(); + for (int column = 0; column < 6; column++) + { + ImGui::TableSetColumnIndex(column); + ImGui::Text("%s %d,%d", (column >= 3) ? "Stretch" : "Fixed", column, row); + } + } + ImGui::EndTable(); + } + ImGui::TreePop(); + } + + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Reorderable, hideable, with headers"); + if (ImGui::TreeNode("Reorderable, hideable, with headers")) + { + HelpMarker( + "Click and drag column headers to reorder columns.\n\n" + "Right-click on a header to open a context menu."); + static ImGuiTableFlags flags = ImGuiTableFlags_Resizable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_Hideable | ImGuiTableFlags_BordersOuter | ImGuiTableFlags_BordersV; + PushStyleCompact(); + ImGui::CheckboxFlags("ImGuiTableFlags_Resizable", &flags, ImGuiTableFlags_Resizable); + ImGui::CheckboxFlags("ImGuiTableFlags_Reorderable", &flags, ImGuiTableFlags_Reorderable); + ImGui::CheckboxFlags("ImGuiTableFlags_Hideable", &flags, ImGuiTableFlags_Hideable); + ImGui::CheckboxFlags("ImGuiTableFlags_NoBordersInBody", &flags, ImGuiTableFlags_NoBordersInBody); + ImGui::CheckboxFlags("ImGuiTableFlags_NoBordersInBodyUntilResize", &flags, ImGuiTableFlags_NoBordersInBodyUntilResize); ImGui::SameLine(); HelpMarker("Disable vertical borders in columns Body until hovered for resize (borders will always appear in Headers)"); + PopStyleCompact(); + + if (ImGui::BeginTable("table1", 3, flags)) + { + // Submit columns name with TableSetupColumn() and call TableHeadersRow() to create a row with a header in each column. + // (Later we will show how TableSetupColumn() has other uses, optional flags, sizing weight etc.) + ImGui::TableSetupColumn("One"); + ImGui::TableSetupColumn("Two"); + ImGui::TableSetupColumn("Three"); + ImGui::TableHeadersRow(); + for (int row = 0; row < 6; row++) + { + ImGui::TableNextRow(); + for (int column = 0; column < 3; column++) + { + ImGui::TableSetColumnIndex(column); + ImGui::Text("Hello %d,%d", column, row); + } + } + ImGui::EndTable(); + } + + // Use outer_size.x == 0.0f instead of default to make the table as tight as possible (only valid when no scrolling and no stretch column) + if (ImGui::BeginTable("table2", 3, flags | ImGuiTableFlags_SizingFixedFit, ImVec2(0.0f, 0.0f))) + { + ImGui::TableSetupColumn("One"); + ImGui::TableSetupColumn("Two"); + ImGui::TableSetupColumn("Three"); + ImGui::TableHeadersRow(); + for (int row = 0; row < 6; row++) + { + ImGui::TableNextRow(); + for (int column = 0; column < 3; column++) + { + ImGui::TableSetColumnIndex(column); + ImGui::Text("Fixed %d,%d", column, row); + } + } + ImGui::EndTable(); + } + ImGui::TreePop(); + } + + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Padding"); + if (ImGui::TreeNode("Padding")) + { + // First example: showcase use of padding flags and effect of BorderOuterV/BorderInnerV on X padding. + // We don't expose BorderOuterH/BorderInnerH here because they have no effect on X padding. + HelpMarker( + "We often want outer padding activated when any using features which makes the edges of a column visible:\n" + "e.g.:\n" + "- BorderOuterV\n" + "- any form of row selection\n" + "Because of this, activating BorderOuterV sets the default to PadOuterX. Using PadOuterX or NoPadOuterX you can override the default.\n\n" + "Actual padding values are using style.CellPadding.\n\n" + "In this demo we don't show horizontal borders to emphasize how they don't affect default horizontal padding."); + + static ImGuiTableFlags flags1 = ImGuiTableFlags_BordersV; + PushStyleCompact(); + ImGui::CheckboxFlags("ImGuiTableFlags_PadOuterX", &flags1, ImGuiTableFlags_PadOuterX); + ImGui::SameLine(); HelpMarker("Enable outer-most padding (default if ImGuiTableFlags_BordersOuterV is set)"); + ImGui::CheckboxFlags("ImGuiTableFlags_NoPadOuterX", &flags1, ImGuiTableFlags_NoPadOuterX); + ImGui::SameLine(); HelpMarker("Disable outer-most padding (default if ImGuiTableFlags_BordersOuterV is not set)"); + ImGui::CheckboxFlags("ImGuiTableFlags_NoPadInnerX", &flags1, ImGuiTableFlags_NoPadInnerX); + ImGui::SameLine(); HelpMarker("Disable inner padding between columns (double inner padding if BordersOuterV is on, single inner padding if BordersOuterV is off)"); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersOuterV", &flags1, ImGuiTableFlags_BordersOuterV); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersInnerV", &flags1, ImGuiTableFlags_BordersInnerV); + static bool show_headers = false; + ImGui::Checkbox("show_headers", &show_headers); + PopStyleCompact(); + + if (ImGui::BeginTable("table_padding", 3, flags1)) + { + if (show_headers) + { + ImGui::TableSetupColumn("One"); + ImGui::TableSetupColumn("Two"); + ImGui::TableSetupColumn("Three"); + ImGui::TableHeadersRow(); + } + + for (int row = 0; row < 5; row++) + { + ImGui::TableNextRow(); + for (int column = 0; column < 3; column++) + { + ImGui::TableSetColumnIndex(column); + if (row == 0) + { + ImGui::Text("Avail %.2f", ImGui::GetContentRegionAvail().x); + } + else + { + char buf[32]; + sprintf(buf, "Hello %d,%d", column, row); + ImGui::Button(buf, ImVec2(-FLT_MIN, 0.0f)); + } + //if (ImGui::TableGetColumnFlags() & ImGuiTableColumnFlags_IsHovered) + // ImGui::TableSetBgColor(ImGuiTableBgTarget_CellBg, IM_COL32(0, 100, 0, 255)); + } + } + ImGui::EndTable(); + } + + // Second example: set style.CellPadding to (0.0) or a custom value. + // FIXME-TABLE: Vertical border effectively not displayed the same way as horizontal one... + HelpMarker("Setting style.CellPadding to (0,0) or a custom value."); + static ImGuiTableFlags flags2 = ImGuiTableFlags_Borders | ImGuiTableFlags_RowBg; + static ImVec2 cell_padding(0.0f, 0.0f); + static bool show_widget_frame_bg = true; + + PushStyleCompact(); + ImGui::CheckboxFlags("ImGuiTableFlags_Borders", &flags2, ImGuiTableFlags_Borders); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersH", &flags2, ImGuiTableFlags_BordersH); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersV", &flags2, ImGuiTableFlags_BordersV); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersInner", &flags2, ImGuiTableFlags_BordersInner); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersOuter", &flags2, ImGuiTableFlags_BordersOuter); + ImGui::CheckboxFlags("ImGuiTableFlags_RowBg", &flags2, ImGuiTableFlags_RowBg); + ImGui::CheckboxFlags("ImGuiTableFlags_Resizable", &flags2, ImGuiTableFlags_Resizable); + ImGui::Checkbox("show_widget_frame_bg", &show_widget_frame_bg); + ImGui::SliderFloat2("CellPadding", &cell_padding.x, 0.0f, 10.0f, "%.0f"); + PopStyleCompact(); + + ImGui::PushStyleVar(ImGuiStyleVar_CellPadding, cell_padding); + if (ImGui::BeginTable("table_padding_2", 3, flags2)) + { + static char text_bufs[3 * 5][16]; // Mini text storage for 3x5 cells + static bool init = true; + if (!show_widget_frame_bg) + ImGui::PushStyleColor(ImGuiCol_FrameBg, 0); + for (int cell = 0; cell < 3 * 5; cell++) + { + ImGui::TableNextColumn(); + if (init) + strcpy(text_bufs[cell], "edit me"); + ImGui::SetNextItemWidth(-FLT_MIN); + ImGui::PushID(cell); + ImGui::InputText("##cell", text_bufs[cell], IM_ARRAYSIZE(text_bufs[cell])); + ImGui::PopID(); + } + if (!show_widget_frame_bg) + ImGui::PopStyleColor(); + init = false; + ImGui::EndTable(); + } + ImGui::PopStyleVar(); + + ImGui::TreePop(); + } + + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Explicit widths"); + if (ImGui::TreeNode("Sizing policies")) + { + static ImGuiTableFlags flags1 = ImGuiTableFlags_BordersV | ImGuiTableFlags_BordersOuterH | ImGuiTableFlags_RowBg | ImGuiTableFlags_ContextMenuInBody; + PushStyleCompact(); + ImGui::CheckboxFlags("ImGuiTableFlags_Resizable", &flags1, ImGuiTableFlags_Resizable); + ImGui::CheckboxFlags("ImGuiTableFlags_NoHostExtendX", &flags1, ImGuiTableFlags_NoHostExtendX); + PopStyleCompact(); + + static ImGuiTableFlags sizing_policy_flags[4] = { ImGuiTableFlags_SizingFixedFit, ImGuiTableFlags_SizingFixedSame, ImGuiTableFlags_SizingStretchProp, ImGuiTableFlags_SizingStretchSame }; + for (int table_n = 0; table_n < 4; table_n++) + { + ImGui::PushID(table_n); + ImGui::SetNextItemWidth(TEXT_BASE_WIDTH * 30); + EditTableSizingFlags(&sizing_policy_flags[table_n]); + + // To make it easier to understand the different sizing policy, + // For each policy: we display one table where the columns have equal contents width, and one where the columns have different contents width. + if (ImGui::BeginTable("table1", 3, sizing_policy_flags[table_n] | flags1)) + { + for (int row = 0; row < 3; row++) + { + ImGui::TableNextRow(); + ImGui::TableNextColumn(); ImGui::Text("Oh dear"); + ImGui::TableNextColumn(); ImGui::Text("Oh dear"); + ImGui::TableNextColumn(); ImGui::Text("Oh dear"); + } + ImGui::EndTable(); + } + if (ImGui::BeginTable("table2", 3, sizing_policy_flags[table_n] | flags1)) + { + for (int row = 0; row < 3; row++) + { + ImGui::TableNextRow(); + ImGui::TableNextColumn(); ImGui::Text("AAAA"); + ImGui::TableNextColumn(); ImGui::Text("BBBBBBBB"); + ImGui::TableNextColumn(); ImGui::Text("CCCCCCCCCCCC"); + } + ImGui::EndTable(); + } + ImGui::PopID(); + } + + ImGui::Spacing(); + ImGui::TextUnformatted("Advanced"); + ImGui::SameLine(); + HelpMarker("This section allows you to interact and see the effect of various sizing policies depending on whether Scroll is enabled and the contents of your columns."); + + enum ContentsType { CT_ShowWidth, CT_ShortText, CT_LongText, CT_Button, CT_FillButton, CT_InputText }; + static ImGuiTableFlags flags = ImGuiTableFlags_ScrollY | ImGuiTableFlags_Borders | ImGuiTableFlags_RowBg | ImGuiTableFlags_Resizable; + static int contents_type = CT_ShowWidth; + static int column_count = 3; + + PushStyleCompact(); + ImGui::PushID("Advanced"); + ImGui::PushItemWidth(TEXT_BASE_WIDTH * 30); + EditTableSizingFlags(&flags); + ImGui::Combo("Contents", &contents_type, "Show width\0Short Text\0Long Text\0Button\0Fill Button\0InputText\0"); + if (contents_type == CT_FillButton) + { + ImGui::SameLine(); + HelpMarker("Be mindful that using right-alignment (e.g. size.x = -FLT_MIN) creates a feedback loop where contents width can feed into auto-column width can feed into contents width."); + } + ImGui::DragInt("Columns", &column_count, 0.1f, 1, 64, "%d", ImGuiSliderFlags_AlwaysClamp); + ImGui::CheckboxFlags("ImGuiTableFlags_Resizable", &flags, ImGuiTableFlags_Resizable); + ImGui::CheckboxFlags("ImGuiTableFlags_PreciseWidths", &flags, ImGuiTableFlags_PreciseWidths); + ImGui::SameLine(); HelpMarker("Disable distributing remainder width to stretched columns (width allocation on a 100-wide table with 3 columns: Without this flag: 33,33,34. With this flag: 33,33,33). With larger number of columns, resizing will appear to be less smooth."); + ImGui::CheckboxFlags("ImGuiTableFlags_ScrollX", &flags, ImGuiTableFlags_ScrollX); + ImGui::CheckboxFlags("ImGuiTableFlags_ScrollY", &flags, ImGuiTableFlags_ScrollY); + ImGui::CheckboxFlags("ImGuiTableFlags_NoClip", &flags, ImGuiTableFlags_NoClip); + ImGui::PopItemWidth(); + ImGui::PopID(); + PopStyleCompact(); + + if (ImGui::BeginTable("table2", column_count, flags, ImVec2(0.0f, TEXT_BASE_HEIGHT * 7))) + { + for (int cell = 0; cell < 10 * column_count; cell++) + { + ImGui::TableNextColumn(); + int column = ImGui::TableGetColumnIndex(); + int row = ImGui::TableGetRowIndex(); + + ImGui::PushID(cell); + char label[32]; + static char text_buf[32] = ""; + sprintf(label, "Hello %d,%d", column, row); + switch (contents_type) + { + case CT_ShortText: ImGui::TextUnformatted(label); break; + case CT_LongText: ImGui::Text("Some %s text %d,%d\nOver two lines..", column == 0 ? "long" : "longeeer", column, row); break; + case CT_ShowWidth: ImGui::Text("W: %.1f", ImGui::GetContentRegionAvail().x); break; + case CT_Button: ImGui::Button(label); break; + case CT_FillButton: ImGui::Button(label, ImVec2(-FLT_MIN, 0.0f)); break; + case CT_InputText: ImGui::SetNextItemWidth(-FLT_MIN); ImGui::InputText("##", text_buf, IM_ARRAYSIZE(text_buf)); break; + } + ImGui::PopID(); + } + ImGui::EndTable(); + } + ImGui::TreePop(); + } + + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Vertical scrolling, with clipping"); + if (ImGui::TreeNode("Vertical scrolling, with clipping")) + { + HelpMarker("Here we activate ScrollY, which will create a child window container to allow hosting scrollable contents.\n\nWe also demonstrate using ImGuiListClipper to virtualize the submission of many items."); + static ImGuiTableFlags flags = ImGuiTableFlags_ScrollY | ImGuiTableFlags_RowBg | ImGuiTableFlags_BordersOuter | ImGuiTableFlags_BordersV | ImGuiTableFlags_Resizable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_Hideable; + + PushStyleCompact(); + ImGui::CheckboxFlags("ImGuiTableFlags_ScrollY", &flags, ImGuiTableFlags_ScrollY); + PopStyleCompact(); + + // When using ScrollX or ScrollY we need to specify a size for our table container! + // Otherwise by default the table will fit all available space, like a BeginChild() call. + ImVec2 outer_size = ImVec2(0.0f, TEXT_BASE_HEIGHT * 8); + if (ImGui::BeginTable("table_scrolly", 3, flags, outer_size)) + { + ImGui::TableSetupScrollFreeze(0, 1); // Make top row always visible + ImGui::TableSetupColumn("One", ImGuiTableColumnFlags_None); + ImGui::TableSetupColumn("Two", ImGuiTableColumnFlags_None); + ImGui::TableSetupColumn("Three", ImGuiTableColumnFlags_None); + ImGui::TableHeadersRow(); + + // Demonstrate using clipper for large vertical lists + ImGuiListClipper clipper; + clipper.Begin(1000); + while (clipper.Step()) + { + for (int row = clipper.DisplayStart; row < clipper.DisplayEnd; row++) + { + ImGui::TableNextRow(); + for (int column = 0; column < 3; column++) + { + ImGui::TableSetColumnIndex(column); + ImGui::Text("Hello %d,%d", column, row); + } + } + } + ImGui::EndTable(); + } + ImGui::TreePop(); + } + + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Horizontal scrolling"); + if (ImGui::TreeNode("Horizontal scrolling")) + { + HelpMarker( + "When ScrollX is enabled, the default sizing policy becomes ImGuiTableFlags_SizingFixedFit, " + "as automatically stretching columns doesn't make much sense with horizontal scrolling.\n\n" + "Also note that as of the current version, you will almost always want to enable ScrollY along with ScrollX," + "because the container window won't automatically extend vertically to fix contents (this may be improved in future versions)."); + static ImGuiTableFlags flags = ImGuiTableFlags_ScrollX | ImGuiTableFlags_ScrollY | ImGuiTableFlags_RowBg | ImGuiTableFlags_BordersOuter | ImGuiTableFlags_BordersV | ImGuiTableFlags_Resizable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_Hideable; + static int freeze_cols = 1; + static int freeze_rows = 1; + + PushStyleCompact(); + ImGui::CheckboxFlags("ImGuiTableFlags_Resizable", &flags, ImGuiTableFlags_Resizable); + ImGui::CheckboxFlags("ImGuiTableFlags_ScrollX", &flags, ImGuiTableFlags_ScrollX); + ImGui::CheckboxFlags("ImGuiTableFlags_ScrollY", &flags, ImGuiTableFlags_ScrollY); + ImGui::SetNextItemWidth(ImGui::GetFrameHeight()); + ImGui::DragInt("freeze_cols", &freeze_cols, 0.2f, 0, 9, NULL, ImGuiSliderFlags_NoInput); + ImGui::SetNextItemWidth(ImGui::GetFrameHeight()); + ImGui::DragInt("freeze_rows", &freeze_rows, 0.2f, 0, 9, NULL, ImGuiSliderFlags_NoInput); + PopStyleCompact(); + + // When using ScrollX or ScrollY we need to specify a size for our table container! + // Otherwise by default the table will fit all available space, like a BeginChild() call. + ImVec2 outer_size = ImVec2(0.0f, TEXT_BASE_HEIGHT * 8); + if (ImGui::BeginTable("table_scrollx", 7, flags, outer_size)) + { + ImGui::TableSetupScrollFreeze(freeze_cols, freeze_rows); + ImGui::TableSetupColumn("Line #", ImGuiTableColumnFlags_NoHide); // Make the first column not hideable to match our use of TableSetupScrollFreeze() + ImGui::TableSetupColumn("One"); + ImGui::TableSetupColumn("Two"); + ImGui::TableSetupColumn("Three"); + ImGui::TableSetupColumn("Four"); + ImGui::TableSetupColumn("Five"); + ImGui::TableSetupColumn("Six"); + ImGui::TableHeadersRow(); + for (int row = 0; row < 20; row++) + { + ImGui::TableNextRow(); + for (int column = 0; column < 7; column++) + { + // Both TableNextColumn() and TableSetColumnIndex() return true when a column is visible or performing width measurement. + // Because here we know that: + // - A) all our columns are contributing the same to row height + // - B) column 0 is always visible, + // We only always submit this one column and can skip others. + // More advanced per-column clipping behaviors may benefit from polling the status flags via TableGetColumnFlags(). + if (!ImGui::TableSetColumnIndex(column) && column > 0) + continue; + if (column == 0) + ImGui::Text("Line %d", row); + else + ImGui::Text("Hello world %d,%d", column, row); + } + } + ImGui::EndTable(); + } + + ImGui::Spacing(); + ImGui::TextUnformatted("Stretch + ScrollX"); + ImGui::SameLine(); + HelpMarker( + "Showcase using Stretch columns + ScrollX together: " + "this is rather unusual and only makes sense when specifying an 'inner_width' for the table!\n" + "Without an explicit value, inner_width is == outer_size.x and therefore using Stretch columns + ScrollX together doesn't make sense."); + static ImGuiTableFlags flags2 = ImGuiTableFlags_SizingStretchSame | ImGuiTableFlags_ScrollX | ImGuiTableFlags_ScrollY | ImGuiTableFlags_BordersOuter | ImGuiTableFlags_RowBg | ImGuiTableFlags_ContextMenuInBody; + static float inner_width = 1000.0f; + PushStyleCompact(); + ImGui::PushID("flags3"); + ImGui::PushItemWidth(TEXT_BASE_WIDTH * 30); + ImGui::CheckboxFlags("ImGuiTableFlags_ScrollX", &flags2, ImGuiTableFlags_ScrollX); + ImGui::DragFloat("inner_width", &inner_width, 1.0f, 0.0f, FLT_MAX, "%.1f"); + ImGui::PopItemWidth(); + ImGui::PopID(); + PopStyleCompact(); + if (ImGui::BeginTable("table2", 7, flags2, outer_size, inner_width)) + { + for (int cell = 0; cell < 20 * 7; cell++) + { + ImGui::TableNextColumn(); + ImGui::Text("Hello world %d,%d", ImGui::TableGetColumnIndex(), ImGui::TableGetRowIndex()); + } + ImGui::EndTable(); + } + ImGui::TreePop(); + } + + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Columns flags"); + if (ImGui::TreeNode("Columns flags")) + { + // Create a first table just to show all the options/flags we want to make visible in our example! + const int column_count = 3; + const char* column_names[column_count] = { "One", "Two", "Three" }; + static ImGuiTableColumnFlags column_flags[column_count] = { ImGuiTableColumnFlags_DefaultSort, ImGuiTableColumnFlags_None, ImGuiTableColumnFlags_DefaultHide }; + static ImGuiTableColumnFlags column_flags_out[column_count] = { 0, 0, 0 }; // Output from TableGetColumnFlags() + + if (ImGui::BeginTable("table_columns_flags_checkboxes", column_count, ImGuiTableFlags_None)) + { + PushStyleCompact(); + for (int column = 0; column < column_count; column++) + { + ImGui::TableNextColumn(); + ImGui::PushID(column); + ImGui::AlignTextToFramePadding(); // FIXME-TABLE: Workaround for wrong text baseline propagation across columns + ImGui::Text("'%s'", column_names[column]); + ImGui::Spacing(); + ImGui::Text("Input flags:"); + EditTableColumnsFlags(&column_flags[column]); + ImGui::Spacing(); + ImGui::Text("Output flags:"); + ImGui::BeginDisabled(); + ShowTableColumnsStatusFlags(column_flags_out[column]); + ImGui::EndDisabled(); + ImGui::PopID(); + } + PopStyleCompact(); + ImGui::EndTable(); + } + + // Create the real table we care about for the example! + // We use a scrolling table to be able to showcase the difference between the _IsEnabled and _IsVisible flags above, otherwise in + // a non-scrolling table columns are always visible (unless using ImGuiTableFlags_NoKeepColumnsVisible + resizing the parent window down) + const ImGuiTableFlags flags + = ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_ScrollX | ImGuiTableFlags_ScrollY + | ImGuiTableFlags_RowBg | ImGuiTableFlags_BordersOuter | ImGuiTableFlags_BordersV + | ImGuiTableFlags_Resizable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_Hideable | ImGuiTableFlags_Sortable; + ImVec2 outer_size = ImVec2(0.0f, TEXT_BASE_HEIGHT * 9); + if (ImGui::BeginTable("table_columns_flags", column_count, flags, outer_size)) + { + for (int column = 0; column < column_count; column++) + ImGui::TableSetupColumn(column_names[column], column_flags[column]); + ImGui::TableHeadersRow(); + for (int column = 0; column < column_count; column++) + column_flags_out[column] = ImGui::TableGetColumnFlags(column); + float indent_step = (float)((int)TEXT_BASE_WIDTH / 2); + for (int row = 0; row < 8; row++) + { + ImGui::Indent(indent_step); // Add some indentation to demonstrate usage of per-column IndentEnable/IndentDisable flags. + ImGui::TableNextRow(); + for (int column = 0; column < column_count; column++) + { + ImGui::TableSetColumnIndex(column); + ImGui::Text("%s %s", (column == 0) ? "Indented" : "Hello", ImGui::TableGetColumnName(column)); + } + } + ImGui::Unindent(indent_step * 8.0f); + + ImGui::EndTable(); + } + ImGui::TreePop(); + } + + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Columns widths"); + if (ImGui::TreeNode("Columns widths")) + { + HelpMarker("Using TableSetupColumn() to setup default width."); + + static ImGuiTableFlags flags1 = ImGuiTableFlags_Borders | ImGuiTableFlags_NoBordersInBodyUntilResize; + PushStyleCompact(); + ImGui::CheckboxFlags("ImGuiTableFlags_Resizable", &flags1, ImGuiTableFlags_Resizable); + ImGui::CheckboxFlags("ImGuiTableFlags_NoBordersInBodyUntilResize", &flags1, ImGuiTableFlags_NoBordersInBodyUntilResize); + PopStyleCompact(); + if (ImGui::BeginTable("table1", 3, flags1)) + { + // We could also set ImGuiTableFlags_SizingFixedFit on the table and all columns will default to ImGuiTableColumnFlags_WidthFixed. + ImGui::TableSetupColumn("one", ImGuiTableColumnFlags_WidthFixed, 100.0f); // Default to 100.0f + ImGui::TableSetupColumn("two", ImGuiTableColumnFlags_WidthFixed, 200.0f); // Default to 200.0f + ImGui::TableSetupColumn("three", ImGuiTableColumnFlags_WidthFixed); // Default to auto + ImGui::TableHeadersRow(); + for (int row = 0; row < 4; row++) + { + ImGui::TableNextRow(); + for (int column = 0; column < 3; column++) + { + ImGui::TableSetColumnIndex(column); + if (row == 0) + ImGui::Text("(w: %5.1f)", ImGui::GetContentRegionAvail().x); + else + ImGui::Text("Hello %d,%d", column, row); + } + } + ImGui::EndTable(); + } + + HelpMarker("Using TableSetupColumn() to setup explicit width.\n\nUnless _NoKeepColumnsVisible is set, fixed columns with set width may still be shrunk down if there's not enough space in the host."); + + static ImGuiTableFlags flags2 = ImGuiTableFlags_None; + PushStyleCompact(); + ImGui::CheckboxFlags("ImGuiTableFlags_NoKeepColumnsVisible", &flags2, ImGuiTableFlags_NoKeepColumnsVisible); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersInnerV", &flags2, ImGuiTableFlags_BordersInnerV); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersOuterV", &flags2, ImGuiTableFlags_BordersOuterV); + PopStyleCompact(); + if (ImGui::BeginTable("table2", 4, flags2)) + { + // We could also set ImGuiTableFlags_SizingFixedFit on the table and all columns will default to ImGuiTableColumnFlags_WidthFixed. + ImGui::TableSetupColumn("", ImGuiTableColumnFlags_WidthFixed, 100.0f); + ImGui::TableSetupColumn("", ImGuiTableColumnFlags_WidthFixed, TEXT_BASE_WIDTH * 15.0f); + ImGui::TableSetupColumn("", ImGuiTableColumnFlags_WidthFixed, TEXT_BASE_WIDTH * 30.0f); + ImGui::TableSetupColumn("", ImGuiTableColumnFlags_WidthFixed, TEXT_BASE_WIDTH * 15.0f); + for (int row = 0; row < 5; row++) + { + ImGui::TableNextRow(); + for (int column = 0; column < 4; column++) + { + ImGui::TableSetColumnIndex(column); + if (row == 0) + ImGui::Text("(w: %5.1f)", ImGui::GetContentRegionAvail().x); + else + ImGui::Text("Hello %d,%d", column, row); + } + } + ImGui::EndTable(); + } + ImGui::TreePop(); + } + + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Nested tables"); + if (ImGui::TreeNode("Nested tables")) + { + HelpMarker("This demonstrates embedding a table into another table cell."); + + if (ImGui::BeginTable("table_nested1", 2, ImGuiTableFlags_Borders | ImGuiTableFlags_Resizable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_Hideable)) + { + ImGui::TableSetupColumn("A0"); + ImGui::TableSetupColumn("A1"); + ImGui::TableHeadersRow(); + + ImGui::TableNextColumn(); + ImGui::Text("A0 Row 0"); + { + float rows_height = TEXT_BASE_HEIGHT * 2; + if (ImGui::BeginTable("table_nested2", 2, ImGuiTableFlags_Borders | ImGuiTableFlags_Resizable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_Hideable)) + { + ImGui::TableSetupColumn("B0"); + ImGui::TableSetupColumn("B1"); + ImGui::TableHeadersRow(); + + ImGui::TableNextRow(ImGuiTableRowFlags_None, rows_height); + ImGui::TableNextColumn(); + ImGui::Text("B0 Row 0"); + ImGui::TableNextColumn(); + ImGui::Text("B1 Row 0"); + ImGui::TableNextRow(ImGuiTableRowFlags_None, rows_height); + ImGui::TableNextColumn(); + ImGui::Text("B0 Row 1"); + ImGui::TableNextColumn(); + ImGui::Text("B1 Row 1"); + + ImGui::EndTable(); + } + } + ImGui::TableNextColumn(); ImGui::Text("A1 Row 0"); + ImGui::TableNextColumn(); ImGui::Text("A0 Row 1"); + ImGui::TableNextColumn(); ImGui::Text("A1 Row 1"); + ImGui::EndTable(); + } + ImGui::TreePop(); + } + + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Row height"); + if (ImGui::TreeNode("Row height")) + { + HelpMarker("You can pass a 'min_row_height' to TableNextRow().\n\nRows are padded with 'style.CellPadding.y' on top and bottom, so effectively the minimum row height will always be >= 'style.CellPadding.y * 2.0f'.\n\nWe cannot honor a _maximum_ row height as that would require a unique clipping rectangle per row."); + if (ImGui::BeginTable("table_row_height", 1, ImGuiTableFlags_Borders)) + { + for (int row = 0; row < 8; row++) + { + float min_row_height = (float)(int)(TEXT_BASE_HEIGHT * 0.30f * row); + ImGui::TableNextRow(ImGuiTableRowFlags_None, min_row_height); + ImGui::TableNextColumn(); + ImGui::Text("min_row_height = %.2f", min_row_height); + } + ImGui::EndTable(); + } + + HelpMarker("Showcase using SameLine(0,0) to share Current Line Height between cells.\n\nPlease note that Tables Row Height is not the same thing as Current Line Height, as a table cell may contains multiple lines."); + if (ImGui::BeginTable("table_share_lineheight", 2, ImGuiTableFlags_Borders)) + { + ImGui::TableNextRow(); + ImGui::TableNextColumn(); + ImGui::ColorButton("##1", ImVec4(0.13f, 0.26f, 0.40f, 1.0f), ImGuiColorEditFlags_None, ImVec2(40, 40)); + ImGui::TableNextColumn(); + ImGui::Text("Line 1"); + ImGui::Text("Line 2"); + + ImGui::TableNextRow(); + ImGui::TableNextColumn(); + ImGui::ColorButton("##2", ImVec4(0.13f, 0.26f, 0.40f, 1.0f), ImGuiColorEditFlags_None, ImVec2(40, 40)); + ImGui::TableNextColumn(); + ImGui::SameLine(0.0f, 0.0f); // Reuse line height from previous column + ImGui::Text("Line 1, with SameLine(0,0)"); + ImGui::Text("Line 2"); + + ImGui::EndTable(); + } + + HelpMarker("Showcase altering CellPadding.y between rows. Note that CellPadding.x is locked for the entire table."); + if (ImGui::BeginTable("table_changing_cellpadding_y", 1, ImGuiTableFlags_Borders)) + { + ImGuiStyle& style = ImGui::GetStyle(); + for (int row = 0; row < 8; row++) + { + if ((row % 3) == 2) + ImGui::PushStyleVar(ImGuiStyleVar_CellPadding, ImVec2(style.CellPadding.x, 20.0f)); + ImGui::TableNextRow(ImGuiTableRowFlags_None); + ImGui::TableNextColumn(); + ImGui::Text("CellPadding.y = %.2f", style.CellPadding.y); + if ((row % 3) == 2) + ImGui::PopStyleVar(); + } + ImGui::EndTable(); + } + + ImGui::TreePop(); + } + + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Outer size"); + if (ImGui::TreeNode("Outer size")) + { + // Showcasing use of ImGuiTableFlags_NoHostExtendX and ImGuiTableFlags_NoHostExtendY + // Important to that note how the two flags have slightly different behaviors! + ImGui::Text("Using NoHostExtendX and NoHostExtendY:"); + PushStyleCompact(); + static ImGuiTableFlags flags = ImGuiTableFlags_Borders | ImGuiTableFlags_Resizable | ImGuiTableFlags_ContextMenuInBody | ImGuiTableFlags_RowBg | ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_NoHostExtendX; + ImGui::CheckboxFlags("ImGuiTableFlags_NoHostExtendX", &flags, ImGuiTableFlags_NoHostExtendX); + ImGui::SameLine(); HelpMarker("Make outer width auto-fit to columns, overriding outer_size.x value.\n\nOnly available when ScrollX/ScrollY are disabled and Stretch columns are not used."); + ImGui::CheckboxFlags("ImGuiTableFlags_NoHostExtendY", &flags, ImGuiTableFlags_NoHostExtendY); + ImGui::SameLine(); HelpMarker("Make outer height stop exactly at outer_size.y (prevent auto-extending table past the limit).\n\nOnly available when ScrollX/ScrollY are disabled. Data below the limit will be clipped and not visible."); + PopStyleCompact(); + + ImVec2 outer_size = ImVec2(0.0f, TEXT_BASE_HEIGHT * 5.5f); + if (ImGui::BeginTable("table1", 3, flags, outer_size)) + { + for (int row = 0; row < 10; row++) + { + ImGui::TableNextRow(); + for (int column = 0; column < 3; column++) + { + ImGui::TableNextColumn(); + ImGui::Text("Cell %d,%d", column, row); + } + } + ImGui::EndTable(); + } + ImGui::SameLine(); + ImGui::Text("Hello!"); + + ImGui::Spacing(); + + ImGui::Text("Using explicit size:"); + if (ImGui::BeginTable("table2", 3, ImGuiTableFlags_Borders | ImGuiTableFlags_RowBg, ImVec2(TEXT_BASE_WIDTH * 30, 0.0f))) + { + for (int row = 0; row < 5; row++) + { + ImGui::TableNextRow(); + for (int column = 0; column < 3; column++) + { + ImGui::TableNextColumn(); + ImGui::Text("Cell %d,%d", column, row); + } + } + ImGui::EndTable(); + } + ImGui::SameLine(); + if (ImGui::BeginTable("table3", 3, ImGuiTableFlags_Borders | ImGuiTableFlags_RowBg, ImVec2(TEXT_BASE_WIDTH * 30, 0.0f))) + { + for (int row = 0; row < 3; row++) + { + ImGui::TableNextRow(0, TEXT_BASE_HEIGHT * 1.5f); + for (int column = 0; column < 3; column++) + { + ImGui::TableNextColumn(); + ImGui::Text("Cell %d,%d", column, row); + } + } + ImGui::EndTable(); + } + + ImGui::TreePop(); + } + + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Background color"); + if (ImGui::TreeNode("Background color")) + { + static ImGuiTableFlags flags = ImGuiTableFlags_RowBg; + static int row_bg_type = 1; + static int row_bg_target = 1; + static int cell_bg_type = 1; + + PushStyleCompact(); + ImGui::CheckboxFlags("ImGuiTableFlags_Borders", &flags, ImGuiTableFlags_Borders); + ImGui::CheckboxFlags("ImGuiTableFlags_RowBg", &flags, ImGuiTableFlags_RowBg); + ImGui::SameLine(); HelpMarker("ImGuiTableFlags_RowBg automatically sets RowBg0 to alternative colors pulled from the Style."); + ImGui::Combo("row bg type", (int*)&row_bg_type, "None\0Red\0Gradient\0"); + ImGui::Combo("row bg target", (int*)&row_bg_target, "RowBg0\0RowBg1\0"); ImGui::SameLine(); HelpMarker("Target RowBg0 to override the alternating odd/even colors,\nTarget RowBg1 to blend with them."); + ImGui::Combo("cell bg type", (int*)&cell_bg_type, "None\0Blue\0"); ImGui::SameLine(); HelpMarker("We are colorizing cells to B1->C2 here."); + IM_ASSERT(row_bg_type >= 0 && row_bg_type <= 2); + IM_ASSERT(row_bg_target >= 0 && row_bg_target <= 1); + IM_ASSERT(cell_bg_type >= 0 && cell_bg_type <= 1); + PopStyleCompact(); + + if (ImGui::BeginTable("table1", 5, flags)) + { + for (int row = 0; row < 6; row++) + { + ImGui::TableNextRow(); + + // Demonstrate setting a row background color with 'ImGui::TableSetBgColor(ImGuiTableBgTarget_RowBgX, ...)' + // We use a transparent color so we can see the one behind in case our target is RowBg1 and RowBg0 was already targeted by the ImGuiTableFlags_RowBg flag. + if (row_bg_type != 0) + { + ImU32 row_bg_color = ImGui::GetColorU32(row_bg_type == 1 ? ImVec4(0.7f, 0.3f, 0.3f, 0.65f) : ImVec4(0.2f + row * 0.1f, 0.2f, 0.2f, 0.65f)); // Flat or Gradient? + ImGui::TableSetBgColor(ImGuiTableBgTarget_RowBg0 + row_bg_target, row_bg_color); + } + + // Fill cells + for (int column = 0; column < 5; column++) + { + ImGui::TableSetColumnIndex(column); + ImGui::Text("%c%c", 'A' + row, '0' + column); + + // Change background of Cells B1->C2 + // Demonstrate setting a cell background color with 'ImGui::TableSetBgColor(ImGuiTableBgTarget_CellBg, ...)' + // (the CellBg color will be blended over the RowBg and ColumnBg colors) + // We can also pass a column number as a third parameter to TableSetBgColor() and do this outside the column loop. + if (row >= 1 && row <= 2 && column >= 1 && column <= 2 && cell_bg_type == 1) + { + ImU32 cell_bg_color = ImGui::GetColorU32(ImVec4(0.3f, 0.3f, 0.7f, 0.65f)); + ImGui::TableSetBgColor(ImGuiTableBgTarget_CellBg, cell_bg_color); + } + } + } + ImGui::EndTable(); + } + ImGui::TreePop(); + } + + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Tree view"); + if (ImGui::TreeNode("Tree view")) + { + static ImGuiTableFlags flags = ImGuiTableFlags_BordersV | ImGuiTableFlags_BordersOuterH | ImGuiTableFlags_Resizable | ImGuiTableFlags_RowBg | ImGuiTableFlags_NoBordersInBody; + + if (ImGui::BeginTable("3ways", 3, flags)) + { + // The first column will use the default _WidthStretch when ScrollX is Off and _WidthFixed when ScrollX is On + ImGui::TableSetupColumn("Name", ImGuiTableColumnFlags_NoHide); + ImGui::TableSetupColumn("Size", ImGuiTableColumnFlags_WidthFixed, TEXT_BASE_WIDTH * 12.0f); + ImGui::TableSetupColumn("Type", ImGuiTableColumnFlags_WidthFixed, TEXT_BASE_WIDTH * 18.0f); + ImGui::TableHeadersRow(); + + // Simple storage to output a dummy file-system. + struct MyTreeNode + { + const char* Name; + const char* Type; + int Size; + int ChildIdx; + int ChildCount; + static void DisplayNode(const MyTreeNode* node, const MyTreeNode* all_nodes) + { + ImGui::TableNextRow(); + ImGui::TableNextColumn(); + const bool is_folder = (node->ChildCount > 0); + if (is_folder) + { + bool open = ImGui::TreeNodeEx(node->Name, ImGuiTreeNodeFlags_SpanFullWidth); + ImGui::TableNextColumn(); + ImGui::TextDisabled("--"); + ImGui::TableNextColumn(); + ImGui::TextUnformatted(node->Type); + if (open) + { + for (int child_n = 0; child_n < node->ChildCount; child_n++) + DisplayNode(&all_nodes[node->ChildIdx + child_n], all_nodes); + ImGui::TreePop(); + } + } + else + { + ImGui::TreeNodeEx(node->Name, ImGuiTreeNodeFlags_Leaf | ImGuiTreeNodeFlags_Bullet | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_SpanFullWidth); + ImGui::TableNextColumn(); + ImGui::Text("%d", node->Size); + ImGui::TableNextColumn(); + ImGui::TextUnformatted(node->Type); + } + } + }; + static const MyTreeNode nodes[] = + { + { "Root", "Folder", -1, 1, 3 }, // 0 + { "Music", "Folder", -1, 4, 2 }, // 1 + { "Textures", "Folder", -1, 6, 3 }, // 2 + { "desktop.ini", "System file", 1024, -1,-1 }, // 3 + { "File1_a.wav", "Audio file", 123000, -1,-1 }, // 4 + { "File1_b.wav", "Audio file", 456000, -1,-1 }, // 5 + { "Image001.png", "Image file", 203128, -1,-1 }, // 6 + { "Copy of Image001.png", "Image file", 203256, -1,-1 }, // 7 + { "Copy of Image001 (Final2).png","Image file", 203512, -1,-1 }, // 8 + }; + + MyTreeNode::DisplayNode(&nodes[0], nodes); + + ImGui::EndTable(); + } + ImGui::TreePop(); + } + + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Item width"); + if (ImGui::TreeNode("Item width")) + { + HelpMarker( + "Showcase using PushItemWidth() and how it is preserved on a per-column basis.\n\n" + "Note that on auto-resizing non-resizable fixed columns, querying the content width for e.g. right-alignment doesn't make sense."); + if (ImGui::BeginTable("table_item_width", 3, ImGuiTableFlags_Borders)) + { + ImGui::TableSetupColumn("small"); + ImGui::TableSetupColumn("half"); + ImGui::TableSetupColumn("right-align"); + ImGui::TableHeadersRow(); + + for (int row = 0; row < 3; row++) + { + ImGui::TableNextRow(); + if (row == 0) + { + // Setup ItemWidth once (instead of setting up every time, which is also possible but less efficient) + ImGui::TableSetColumnIndex(0); + ImGui::PushItemWidth(TEXT_BASE_WIDTH * 3.0f); // Small + ImGui::TableSetColumnIndex(1); + ImGui::PushItemWidth(-ImGui::GetContentRegionAvail().x * 0.5f); + ImGui::TableSetColumnIndex(2); + ImGui::PushItemWidth(-FLT_MIN); // Right-aligned + } + + // Draw our contents + static float dummy_f = 0.0f; + ImGui::PushID(row); + ImGui::TableSetColumnIndex(0); + ImGui::SliderFloat("float0", &dummy_f, 0.0f, 1.0f); + ImGui::TableSetColumnIndex(1); + ImGui::SliderFloat("float1", &dummy_f, 0.0f, 1.0f); + ImGui::TableSetColumnIndex(2); + ImGui::SliderFloat("##float2", &dummy_f, 0.0f, 1.0f); // No visible label since right-aligned + ImGui::PopID(); + } + ImGui::EndTable(); + } + ImGui::TreePop(); + } + + // Demonstrate using TableHeader() calls instead of TableHeadersRow() + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Custom headers"); + if (ImGui::TreeNode("Custom headers")) + { + const int COLUMNS_COUNT = 3; + if (ImGui::BeginTable("table_custom_headers", COLUMNS_COUNT, ImGuiTableFlags_Borders | ImGuiTableFlags_Reorderable | ImGuiTableFlags_Hideable)) + { + ImGui::TableSetupColumn("Apricot"); + ImGui::TableSetupColumn("Banana"); + ImGui::TableSetupColumn("Cherry"); + + // Dummy entire-column selection storage + // FIXME: It would be nice to actually demonstrate full-featured selection using those checkbox. + static bool column_selected[3] = {}; + + // Instead of calling TableHeadersRow() we'll submit custom headers ourselves + ImGui::TableNextRow(ImGuiTableRowFlags_Headers); + for (int column = 0; column < COLUMNS_COUNT; column++) + { + ImGui::TableSetColumnIndex(column); + const char* column_name = ImGui::TableGetColumnName(column); // Retrieve name passed to TableSetupColumn() + ImGui::PushID(column); + ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(0, 0)); + ImGui::Checkbox("##checkall", &column_selected[column]); + ImGui::PopStyleVar(); + ImGui::SameLine(0.0f, ImGui::GetStyle().ItemInnerSpacing.x); + ImGui::TableHeader(column_name); + ImGui::PopID(); + } + + for (int row = 0; row < 5; row++) + { + ImGui::TableNextRow(); + for (int column = 0; column < 3; column++) + { + char buf[32]; + sprintf(buf, "Cell %d,%d", column, row); + ImGui::TableSetColumnIndex(column); + ImGui::Selectable(buf, column_selected[column]); + } + } + ImGui::EndTable(); + } + ImGui::TreePop(); + } + + // Demonstrate creating custom context menus inside columns, while playing it nice with context menus provided by TableHeadersRow()/TableHeader() + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Context menus"); + if (ImGui::TreeNode("Context menus")) + { + HelpMarker("By default, right-clicking over a TableHeadersRow()/TableHeader() line will open the default context-menu.\nUsing ImGuiTableFlags_ContextMenuInBody we also allow right-clicking over columns body."); + static ImGuiTableFlags flags1 = ImGuiTableFlags_Resizable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_Hideable | ImGuiTableFlags_Borders | ImGuiTableFlags_ContextMenuInBody; + + PushStyleCompact(); + ImGui::CheckboxFlags("ImGuiTableFlags_ContextMenuInBody", &flags1, ImGuiTableFlags_ContextMenuInBody); + PopStyleCompact(); + + // Context Menus: first example + // [1.1] Right-click on the TableHeadersRow() line to open the default table context menu. + // [1.2] Right-click in columns also open the default table context menu (if ImGuiTableFlags_ContextMenuInBody is set) + const int COLUMNS_COUNT = 3; + if (ImGui::BeginTable("table_context_menu", COLUMNS_COUNT, flags1)) + { + ImGui::TableSetupColumn("One"); + ImGui::TableSetupColumn("Two"); + ImGui::TableSetupColumn("Three"); + + // [1.1]] Right-click on the TableHeadersRow() line to open the default table context menu. + ImGui::TableHeadersRow(); + + // Submit dummy contents + for (int row = 0; row < 4; row++) + { + ImGui::TableNextRow(); + for (int column = 0; column < COLUMNS_COUNT; column++) + { + ImGui::TableSetColumnIndex(column); + ImGui::Text("Cell %d,%d", column, row); + } + } + ImGui::EndTable(); + } + + // Context Menus: second example + // [2.1] Right-click on the TableHeadersRow() line to open the default table context menu. + // [2.2] Right-click on the ".." to open a custom popup + // [2.3] Right-click in columns to open another custom popup + HelpMarker("Demonstrate mixing table context menu (over header), item context button (over button) and custom per-colum context menu (over column body)."); + ImGuiTableFlags flags2 = ImGuiTableFlags_Resizable | ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_Reorderable | ImGuiTableFlags_Hideable | ImGuiTableFlags_Borders; + if (ImGui::BeginTable("table_context_menu_2", COLUMNS_COUNT, flags2)) + { + ImGui::TableSetupColumn("One"); + ImGui::TableSetupColumn("Two"); + ImGui::TableSetupColumn("Three"); + + // [2.1] Right-click on the TableHeadersRow() line to open the default table context menu. + ImGui::TableHeadersRow(); + for (int row = 0; row < 4; row++) + { + ImGui::TableNextRow(); + for (int column = 0; column < COLUMNS_COUNT; column++) + { + // Submit dummy contents + ImGui::TableSetColumnIndex(column); + ImGui::Text("Cell %d,%d", column, row); + ImGui::SameLine(); + + // [2.2] Right-click on the ".." to open a custom popup + ImGui::PushID(row * COLUMNS_COUNT + column); + ImGui::SmallButton(".."); + if (ImGui::BeginPopupContextItem()) + { + ImGui::Text("This is the popup for Button(\"..\") in Cell %d,%d", column, row); + if (ImGui::Button("Close")) + ImGui::CloseCurrentPopup(); + ImGui::EndPopup(); + } + ImGui::PopID(); + } + } + + // [2.3] Right-click anywhere in columns to open another custom popup + // (instead of testing for !IsAnyItemHovered() we could also call OpenPopup() with ImGuiPopupFlags_NoOpenOverExistingPopup + // to manage popup priority as the popups triggers, here "are we hovering a column" are overlapping) + int hovered_column = -1; + for (int column = 0; column < COLUMNS_COUNT + 1; column++) + { + ImGui::PushID(column); + if (ImGui::TableGetColumnFlags(column) & ImGuiTableColumnFlags_IsHovered) + hovered_column = column; + if (hovered_column == column && !ImGui::IsAnyItemHovered() && ImGui::IsMouseReleased(1)) + ImGui::OpenPopup("MyPopup"); + if (ImGui::BeginPopup("MyPopup")) + { + if (column == COLUMNS_COUNT) + ImGui::Text("This is a custom popup for unused space after the last column."); + else + ImGui::Text("This is a custom popup for Column %d", column); + if (ImGui::Button("Close")) + ImGui::CloseCurrentPopup(); + ImGui::EndPopup(); + } + ImGui::PopID(); + } + + ImGui::EndTable(); + ImGui::Text("Hovered column: %d", hovered_column); + } + ImGui::TreePop(); + } + + // Demonstrate creating multiple tables with the same ID + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Synced instances"); + if (ImGui::TreeNode("Synced instances")) + { + HelpMarker("Multiple tables with the same identifier will share their settings, width, visibility, order etc."); + + static ImGuiTableFlags flags = ImGuiTableFlags_Resizable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_Hideable | ImGuiTableFlags_Borders | ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_NoSavedSettings; + ImGui::CheckboxFlags("ImGuiTableFlags_ScrollY", &flags, ImGuiTableFlags_ScrollY); + ImGui::CheckboxFlags("ImGuiTableFlags_SizingFixedFit", &flags, ImGuiTableFlags_SizingFixedFit); + for (int n = 0; n < 3; n++) + { + char buf[32]; + sprintf(buf, "Synced Table %d", n); + bool open = ImGui::CollapsingHeader(buf, ImGuiTreeNodeFlags_DefaultOpen); + if (open && ImGui::BeginTable("Table", 3, flags, ImVec2(0.0f, ImGui::GetTextLineHeightWithSpacing() * 5))) + { + ImGui::TableSetupColumn("One"); + ImGui::TableSetupColumn("Two"); + ImGui::TableSetupColumn("Three"); + ImGui::TableHeadersRow(); + const int cell_count = (n == 1) ? 27 : 9; // Make second table have a scrollbar to verify that additional decoration is not affecting column positions. + for (int cell = 0; cell < cell_count; cell++) + { + ImGui::TableNextColumn(); + ImGui::Text("this cell %d", cell); + } + ImGui::EndTable(); + } + } + ImGui::TreePop(); + } + + // Demonstrate using Sorting facilities + // This is a simplified version of the "Advanced" example, where we mostly focus on the code necessary to handle sorting. + // Note that the "Advanced" example also showcase manually triggering a sort (e.g. if item quantities have been modified) + static const char* template_items_names[] = + { + "Banana", "Apple", "Cherry", "Watermelon", "Grapefruit", "Strawberry", "Mango", + "Kiwi", "Orange", "Pineapple", "Blueberry", "Plum", "Coconut", "Pear", "Apricot" + }; + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Sorting"); + if (ImGui::TreeNode("Sorting")) + { + // Create item list + static ImVector items; + if (items.Size == 0) + { + items.resize(50, MyItem()); + for (int n = 0; n < items.Size; n++) + { + const int template_n = n % IM_ARRAYSIZE(template_items_names); + MyItem& item = items[n]; + item.ID = n; + item.Name = template_items_names[template_n]; + item.Quantity = (n * n - n) % 20; // Assign default quantities + } + } + + // Options + static ImGuiTableFlags flags = + ImGuiTableFlags_Resizable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_Hideable | ImGuiTableFlags_Sortable | ImGuiTableFlags_SortMulti + | ImGuiTableFlags_RowBg | ImGuiTableFlags_BordersOuter | ImGuiTableFlags_BordersV | ImGuiTableFlags_NoBordersInBody + | ImGuiTableFlags_ScrollY; + PushStyleCompact(); + ImGui::CheckboxFlags("ImGuiTableFlags_SortMulti", &flags, ImGuiTableFlags_SortMulti); + ImGui::SameLine(); HelpMarker("When sorting is enabled: hold shift when clicking headers to sort on multiple column. TableGetSortSpecs() may return specs where (SpecsCount > 1)."); + ImGui::CheckboxFlags("ImGuiTableFlags_SortTristate", &flags, ImGuiTableFlags_SortTristate); + ImGui::SameLine(); HelpMarker("When sorting is enabled: allow no sorting, disable default sorting. TableGetSortSpecs() may return specs where (SpecsCount == 0)."); + PopStyleCompact(); + + if (ImGui::BeginTable("table_sorting", 4, flags, ImVec2(0.0f, TEXT_BASE_HEIGHT * 15), 0.0f)) + { + // Declare columns + // We use the "user_id" parameter of TableSetupColumn() to specify a user id that will be stored in the sort specifications. + // This is so our sort function can identify a column given our own identifier. We could also identify them based on their index! + // Demonstrate using a mixture of flags among available sort-related flags: + // - ImGuiTableColumnFlags_DefaultSort + // - ImGuiTableColumnFlags_NoSort / ImGuiTableColumnFlags_NoSortAscending / ImGuiTableColumnFlags_NoSortDescending + // - ImGuiTableColumnFlags_PreferSortAscending / ImGuiTableColumnFlags_PreferSortDescending + ImGui::TableSetupColumn("ID", ImGuiTableColumnFlags_DefaultSort | ImGuiTableColumnFlags_WidthFixed, 0.0f, MyItemColumnID_ID); + ImGui::TableSetupColumn("Name", ImGuiTableColumnFlags_WidthFixed, 0.0f, MyItemColumnID_Name); + ImGui::TableSetupColumn("Action", ImGuiTableColumnFlags_NoSort | ImGuiTableColumnFlags_WidthFixed, 0.0f, MyItemColumnID_Action); + ImGui::TableSetupColumn("Quantity", ImGuiTableColumnFlags_PreferSortDescending | ImGuiTableColumnFlags_WidthStretch, 0.0f, MyItemColumnID_Quantity); + ImGui::TableSetupScrollFreeze(0, 1); // Make row always visible + ImGui::TableHeadersRow(); + + // Sort our data if sort specs have been changed! + if (ImGuiTableSortSpecs* sort_specs = ImGui::TableGetSortSpecs()) + if (sort_specs->SpecsDirty) + { + MyItem::SortWithSortSpecs(sort_specs, items.Data, items.Size); + sort_specs->SpecsDirty = false; + } + + // Demonstrate using clipper for large vertical lists + ImGuiListClipper clipper; + clipper.Begin(items.Size); + while (clipper.Step()) + for (int row_n = clipper.DisplayStart; row_n < clipper.DisplayEnd; row_n++) + { + // Display a data item + MyItem* item = &items[row_n]; + ImGui::PushID(item->ID); + ImGui::TableNextRow(); + ImGui::TableNextColumn(); + ImGui::Text("%04d", item->ID); + ImGui::TableNextColumn(); + ImGui::TextUnformatted(item->Name); + ImGui::TableNextColumn(); + ImGui::SmallButton("None"); + ImGui::TableNextColumn(); + ImGui::Text("%d", item->Quantity); + ImGui::PopID(); + } + ImGui::EndTable(); + } + ImGui::TreePop(); + } + + // In this example we'll expose most table flags and settings. + // For specific flags and settings refer to the corresponding section for more detailed explanation. + // This section is mostly useful to experiment with combining certain flags or settings with each others. + //ImGui::SetNextItemOpen(true, ImGuiCond_Once); // [DEBUG] + if (open_action != -1) + ImGui::SetNextItemOpen(open_action != 0); + IMGUI_DEMO_MARKER("Tables/Advanced"); + if (ImGui::TreeNode("Advanced")) + { + static ImGuiTableFlags flags = + ImGuiTableFlags_Resizable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_Hideable + | ImGuiTableFlags_Sortable | ImGuiTableFlags_SortMulti + | ImGuiTableFlags_RowBg | ImGuiTableFlags_Borders | ImGuiTableFlags_NoBordersInBody + | ImGuiTableFlags_ScrollX | ImGuiTableFlags_ScrollY + | ImGuiTableFlags_SizingFixedFit; + + enum ContentsType { CT_Text, CT_Button, CT_SmallButton, CT_FillButton, CT_Selectable, CT_SelectableSpanRow }; + static int contents_type = CT_SelectableSpanRow; + const char* contents_type_names[] = { "Text", "Button", "SmallButton", "FillButton", "Selectable", "Selectable (span row)" }; + static int freeze_cols = 1; + static int freeze_rows = 1; + static int items_count = IM_ARRAYSIZE(template_items_names) * 2; + static ImVec2 outer_size_value = ImVec2(0.0f, TEXT_BASE_HEIGHT * 12); + static float row_min_height = 0.0f; // Auto + static float inner_width_with_scroll = 0.0f; // Auto-extend + static bool outer_size_enabled = true; + static bool show_headers = true; + static bool show_wrapped_text = false; + //static ImGuiTextFilter filter; + //ImGui::SetNextItemOpen(true, ImGuiCond_Once); // FIXME-TABLE: Enabling this results in initial clipped first pass on table which tend to affect column sizing + if (ImGui::TreeNode("Options")) + { + // Make the UI compact because there are so many fields + PushStyleCompact(); + ImGui::PushItemWidth(TEXT_BASE_WIDTH * 28.0f); + + if (ImGui::TreeNodeEx("Features:", ImGuiTreeNodeFlags_DefaultOpen)) + { + ImGui::CheckboxFlags("ImGuiTableFlags_Resizable", &flags, ImGuiTableFlags_Resizable); + ImGui::CheckboxFlags("ImGuiTableFlags_Reorderable", &flags, ImGuiTableFlags_Reorderable); + ImGui::CheckboxFlags("ImGuiTableFlags_Hideable", &flags, ImGuiTableFlags_Hideable); + ImGui::CheckboxFlags("ImGuiTableFlags_Sortable", &flags, ImGuiTableFlags_Sortable); + ImGui::CheckboxFlags("ImGuiTableFlags_NoSavedSettings", &flags, ImGuiTableFlags_NoSavedSettings); + ImGui::CheckboxFlags("ImGuiTableFlags_ContextMenuInBody", &flags, ImGuiTableFlags_ContextMenuInBody); + ImGui::TreePop(); + } + + if (ImGui::TreeNodeEx("Decorations:", ImGuiTreeNodeFlags_DefaultOpen)) + { + ImGui::CheckboxFlags("ImGuiTableFlags_RowBg", &flags, ImGuiTableFlags_RowBg); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersV", &flags, ImGuiTableFlags_BordersV); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersOuterV", &flags, ImGuiTableFlags_BordersOuterV); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersInnerV", &flags, ImGuiTableFlags_BordersInnerV); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersH", &flags, ImGuiTableFlags_BordersH); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersOuterH", &flags, ImGuiTableFlags_BordersOuterH); + ImGui::CheckboxFlags("ImGuiTableFlags_BordersInnerH", &flags, ImGuiTableFlags_BordersInnerH); + ImGui::CheckboxFlags("ImGuiTableFlags_NoBordersInBody", &flags, ImGuiTableFlags_NoBordersInBody); ImGui::SameLine(); HelpMarker("Disable vertical borders in columns Body (borders will always appear in Headers"); + ImGui::CheckboxFlags("ImGuiTableFlags_NoBordersInBodyUntilResize", &flags, ImGuiTableFlags_NoBordersInBodyUntilResize); ImGui::SameLine(); HelpMarker("Disable vertical borders in columns Body until hovered for resize (borders will always appear in Headers)"); + ImGui::TreePop(); + } + + if (ImGui::TreeNodeEx("Sizing:", ImGuiTreeNodeFlags_DefaultOpen)) + { + EditTableSizingFlags(&flags); + ImGui::SameLine(); HelpMarker("In the Advanced demo we override the policy of each column so those table-wide settings have less effect that typical."); + ImGui::CheckboxFlags("ImGuiTableFlags_NoHostExtendX", &flags, ImGuiTableFlags_NoHostExtendX); + ImGui::SameLine(); HelpMarker("Make outer width auto-fit to columns, overriding outer_size.x value.\n\nOnly available when ScrollX/ScrollY are disabled and Stretch columns are not used."); + ImGui::CheckboxFlags("ImGuiTableFlags_NoHostExtendY", &flags, ImGuiTableFlags_NoHostExtendY); + ImGui::SameLine(); HelpMarker("Make outer height stop exactly at outer_size.y (prevent auto-extending table past the limit).\n\nOnly available when ScrollX/ScrollY are disabled. Data below the limit will be clipped and not visible."); + ImGui::CheckboxFlags("ImGuiTableFlags_NoKeepColumnsVisible", &flags, ImGuiTableFlags_NoKeepColumnsVisible); + ImGui::SameLine(); HelpMarker("Only available if ScrollX is disabled."); + ImGui::CheckboxFlags("ImGuiTableFlags_PreciseWidths", &flags, ImGuiTableFlags_PreciseWidths); + ImGui::SameLine(); HelpMarker("Disable distributing remainder width to stretched columns (width allocation on a 100-wide table with 3 columns: Without this flag: 33,33,34. With this flag: 33,33,33). With larger number of columns, resizing will appear to be less smooth."); + ImGui::CheckboxFlags("ImGuiTableFlags_NoClip", &flags, ImGuiTableFlags_NoClip); + ImGui::SameLine(); HelpMarker("Disable clipping rectangle for every individual columns (reduce draw command count, items will be able to overflow into other columns). Generally incompatible with ScrollFreeze options."); + ImGui::TreePop(); + } + + if (ImGui::TreeNodeEx("Padding:", ImGuiTreeNodeFlags_DefaultOpen)) + { + ImGui::CheckboxFlags("ImGuiTableFlags_PadOuterX", &flags, ImGuiTableFlags_PadOuterX); + ImGui::CheckboxFlags("ImGuiTableFlags_NoPadOuterX", &flags, ImGuiTableFlags_NoPadOuterX); + ImGui::CheckboxFlags("ImGuiTableFlags_NoPadInnerX", &flags, ImGuiTableFlags_NoPadInnerX); + ImGui::TreePop(); + } + + if (ImGui::TreeNodeEx("Scrolling:", ImGuiTreeNodeFlags_DefaultOpen)) + { + ImGui::CheckboxFlags("ImGuiTableFlags_ScrollX", &flags, ImGuiTableFlags_ScrollX); + ImGui::SameLine(); + ImGui::SetNextItemWidth(ImGui::GetFrameHeight()); + ImGui::DragInt("freeze_cols", &freeze_cols, 0.2f, 0, 9, NULL, ImGuiSliderFlags_NoInput); + ImGui::CheckboxFlags("ImGuiTableFlags_ScrollY", &flags, ImGuiTableFlags_ScrollY); + ImGui::SameLine(); + ImGui::SetNextItemWidth(ImGui::GetFrameHeight()); + ImGui::DragInt("freeze_rows", &freeze_rows, 0.2f, 0, 9, NULL, ImGuiSliderFlags_NoInput); + ImGui::TreePop(); + } + + if (ImGui::TreeNodeEx("Sorting:", ImGuiTreeNodeFlags_DefaultOpen)) + { + ImGui::CheckboxFlags("ImGuiTableFlags_SortMulti", &flags, ImGuiTableFlags_SortMulti); + ImGui::SameLine(); HelpMarker("When sorting is enabled: hold shift when clicking headers to sort on multiple column. TableGetSortSpecs() may return specs where (SpecsCount > 1)."); + ImGui::CheckboxFlags("ImGuiTableFlags_SortTristate", &flags, ImGuiTableFlags_SortTristate); + ImGui::SameLine(); HelpMarker("When sorting is enabled: allow no sorting, disable default sorting. TableGetSortSpecs() may return specs where (SpecsCount == 0)."); + ImGui::TreePop(); + } + + if (ImGui::TreeNodeEx("Other:", ImGuiTreeNodeFlags_DefaultOpen)) + { + ImGui::Checkbox("show_headers", &show_headers); + ImGui::Checkbox("show_wrapped_text", &show_wrapped_text); + + ImGui::DragFloat2("##OuterSize", &outer_size_value.x); + ImGui::SameLine(0.0f, ImGui::GetStyle().ItemInnerSpacing.x); + ImGui::Checkbox("outer_size", &outer_size_enabled); + ImGui::SameLine(); + HelpMarker("If scrolling is disabled (ScrollX and ScrollY not set):\n" + "- The table is output directly in the parent window.\n" + "- OuterSize.x < 0.0f will right-align the table.\n" + "- OuterSize.x = 0.0f will narrow fit the table unless there are any Stretch columns.\n" + "- OuterSize.y then becomes the minimum size for the table, which will extend vertically if there are more rows (unless NoHostExtendY is set)."); + + // From a user point of view we will tend to use 'inner_width' differently depending on whether our table is embedding scrolling. + // To facilitate toying with this demo we will actually pass 0.0f to the BeginTable() when ScrollX is disabled. + ImGui::DragFloat("inner_width (when ScrollX active)", &inner_width_with_scroll, 1.0f, 0.0f, FLT_MAX); + + ImGui::DragFloat("row_min_height", &row_min_height, 1.0f, 0.0f, FLT_MAX); + ImGui::SameLine(); HelpMarker("Specify height of the Selectable item."); + + ImGui::DragInt("items_count", &items_count, 0.1f, 0, 9999); + ImGui::Combo("items_type (first column)", &contents_type, contents_type_names, IM_ARRAYSIZE(contents_type_names)); + //filter.Draw("filter"); + ImGui::TreePop(); + } + + ImGui::PopItemWidth(); + PopStyleCompact(); + ImGui::Spacing(); + ImGui::TreePop(); + } + + // Update item list if we changed the number of items + static ImVector items; + static ImVector selection; + static bool items_need_sort = false; + if (items.Size != items_count) + { + items.resize(items_count, MyItem()); + for (int n = 0; n < items_count; n++) + { + const int template_n = n % IM_ARRAYSIZE(template_items_names); + MyItem& item = items[n]; + item.ID = n; + item.Name = template_items_names[template_n]; + item.Quantity = (template_n == 3) ? 10 : (template_n == 4) ? 20 : 0; // Assign default quantities + } + } + + const ImDrawList* parent_draw_list = ImGui::GetWindowDrawList(); + const int parent_draw_list_draw_cmd_count = parent_draw_list->CmdBuffer.Size; + ImVec2 table_scroll_cur, table_scroll_max; // For debug display + const ImDrawList* table_draw_list = NULL; // " + + // Submit table + const float inner_width_to_use = (flags & ImGuiTableFlags_ScrollX) ? inner_width_with_scroll : 0.0f; + if (ImGui::BeginTable("table_advanced", 6, flags, outer_size_enabled ? outer_size_value : ImVec2(0, 0), inner_width_to_use)) + { + // Declare columns + // We use the "user_id" parameter of TableSetupColumn() to specify a user id that will be stored in the sort specifications. + // This is so our sort function can identify a column given our own identifier. We could also identify them based on their index! + ImGui::TableSetupColumn("ID", ImGuiTableColumnFlags_DefaultSort | ImGuiTableColumnFlags_WidthFixed | ImGuiTableColumnFlags_NoHide, 0.0f, MyItemColumnID_ID); + ImGui::TableSetupColumn("Name", ImGuiTableColumnFlags_WidthFixed, 0.0f, MyItemColumnID_Name); + ImGui::TableSetupColumn("Action", ImGuiTableColumnFlags_NoSort | ImGuiTableColumnFlags_WidthFixed, 0.0f, MyItemColumnID_Action); + ImGui::TableSetupColumn("Quantity", ImGuiTableColumnFlags_PreferSortDescending, 0.0f, MyItemColumnID_Quantity); + ImGui::TableSetupColumn("Description", (flags & ImGuiTableFlags_NoHostExtendX) ? 0 : ImGuiTableColumnFlags_WidthStretch, 0.0f, MyItemColumnID_Description); + ImGui::TableSetupColumn("Hidden", ImGuiTableColumnFlags_DefaultHide | ImGuiTableColumnFlags_NoSort); + ImGui::TableSetupScrollFreeze(freeze_cols, freeze_rows); + + // Sort our data if sort specs have been changed! + ImGuiTableSortSpecs* sort_specs = ImGui::TableGetSortSpecs(); + if (sort_specs && sort_specs->SpecsDirty) + items_need_sort = true; + if (sort_specs && items_need_sort && items.Size > 1) + { + MyItem::SortWithSortSpecs(sort_specs, items.Data, items.Size); + sort_specs->SpecsDirty = false; + } + items_need_sort = false; + + // Take note of whether we are currently sorting based on the Quantity field, + // we will use this to trigger sorting when we know the data of this column has been modified. + const bool sorts_specs_using_quantity = (ImGui::TableGetColumnFlags(3) & ImGuiTableColumnFlags_IsSorted) != 0; + + // Show headers + if (show_headers) + ImGui::TableHeadersRow(); + + // Show data + // FIXME-TABLE FIXME-NAV: How we can get decent up/down even though we have the buttons here? + ImGui::PushButtonRepeat(true); +#if 1 + // Demonstrate using clipper for large vertical lists + ImGuiListClipper clipper; + clipper.Begin(items.Size); + while (clipper.Step()) + { + for (int row_n = clipper.DisplayStart; row_n < clipper.DisplayEnd; row_n++) +#else + // Without clipper + { + for (int row_n = 0; row_n < items.Size; row_n++) +#endif + { + MyItem* item = &items[row_n]; + //if (!filter.PassFilter(item->Name)) + // continue; + + const bool item_is_selected = selection.contains(item->ID); + ImGui::PushID(item->ID); + ImGui::TableNextRow(ImGuiTableRowFlags_None, row_min_height); + + // For the demo purpose we can select among different type of items submitted in the first column + ImGui::TableSetColumnIndex(0); + char label[32]; + sprintf(label, "%04d", item->ID); + if (contents_type == CT_Text) + ImGui::TextUnformatted(label); + else if (contents_type == CT_Button) + ImGui::Button(label); + else if (contents_type == CT_SmallButton) + ImGui::SmallButton(label); + else if (contents_type == CT_FillButton) + ImGui::Button(label, ImVec2(-FLT_MIN, 0.0f)); + else if (contents_type == CT_Selectable || contents_type == CT_SelectableSpanRow) + { + ImGuiSelectableFlags selectable_flags = (contents_type == CT_SelectableSpanRow) ? ImGuiSelectableFlags_SpanAllColumns | ImGuiSelectableFlags_AllowOverlap : ImGuiSelectableFlags_None; + if (ImGui::Selectable(label, item_is_selected, selectable_flags, ImVec2(0, row_min_height))) + { + if (ImGui::GetIO().KeyCtrl) + { + if (item_is_selected) + selection.find_erase_unsorted(item->ID); + else + selection.push_back(item->ID); + } + else + { + selection.clear(); + selection.push_back(item->ID); + } + } + } + + if (ImGui::TableSetColumnIndex(1)) + ImGui::TextUnformatted(item->Name); + + // Here we demonstrate marking our data set as needing to be sorted again if we modified a quantity, + // and we are currently sorting on the column showing the Quantity. + // To avoid triggering a sort while holding the button, we only trigger it when the button has been released. + // You will probably need a more advanced system in your code if you want to automatically sort when a specific entry changes. + if (ImGui::TableSetColumnIndex(2)) + { + if (ImGui::SmallButton("Chop")) { item->Quantity += 1; } + if (sorts_specs_using_quantity && ImGui::IsItemDeactivated()) { items_need_sort = true; } + ImGui::SameLine(); + if (ImGui::SmallButton("Eat")) { item->Quantity -= 1; } + if (sorts_specs_using_quantity && ImGui::IsItemDeactivated()) { items_need_sort = true; } + } + + if (ImGui::TableSetColumnIndex(3)) + ImGui::Text("%d", item->Quantity); + + ImGui::TableSetColumnIndex(4); + if (show_wrapped_text) + ImGui::TextWrapped("Lorem ipsum dolor sit amet"); + else + ImGui::Text("Lorem ipsum dolor sit amet"); + + if (ImGui::TableSetColumnIndex(5)) + ImGui::Text("1234"); + + ImGui::PopID(); + } + } + ImGui::PopButtonRepeat(); + + // Store some info to display debug details below + table_scroll_cur = ImVec2(ImGui::GetScrollX(), ImGui::GetScrollY()); + table_scroll_max = ImVec2(ImGui::GetScrollMaxX(), ImGui::GetScrollMaxY()); + table_draw_list = ImGui::GetWindowDrawList(); + ImGui::EndTable(); + } + static bool show_debug_details = false; + ImGui::Checkbox("Debug details", &show_debug_details); + if (show_debug_details && table_draw_list) + { + ImGui::SameLine(0.0f, 0.0f); + const int table_draw_list_draw_cmd_count = table_draw_list->CmdBuffer.Size; + if (table_draw_list == parent_draw_list) + ImGui::Text(": DrawCmd: +%d (in same window)", + table_draw_list_draw_cmd_count - parent_draw_list_draw_cmd_count); + else + ImGui::Text(": DrawCmd: +%d (in child window), Scroll: (%.f/%.f) (%.f/%.f)", + table_draw_list_draw_cmd_count - 1, table_scroll_cur.x, table_scroll_max.x, table_scroll_cur.y, table_scroll_max.y); + } + ImGui::TreePop(); + } + + ImGui::PopID(); + + ShowDemoWindowColumns(); + + if (disable_indent) + ImGui::PopStyleVar(); +} + +// Demonstrate old/legacy Columns API! +// [2020: Columns are under-featured and not maintained. Prefer using the more flexible and powerful BeginTable() API!] +static void ShowDemoWindowColumns() +{ + IMGUI_DEMO_MARKER("Columns (legacy API)"); + bool open = ImGui::TreeNode("Legacy Columns API"); + ImGui::SameLine(); + HelpMarker("Columns() is an old API! Prefer using the more flexible and powerful BeginTable() API!"); + if (!open) + return; + + // Basic columns + IMGUI_DEMO_MARKER("Columns (legacy API)/Basic"); + if (ImGui::TreeNode("Basic")) + { + ImGui::Text("Without border:"); + ImGui::Columns(3, "mycolumns3", false); // 3-ways, no border + ImGui::Separator(); + for (int n = 0; n < 14; n++) + { + char label[32]; + sprintf(label, "Item %d", n); + if (ImGui::Selectable(label)) {} + //if (ImGui::Button(label, ImVec2(-FLT_MIN,0.0f))) {} + ImGui::NextColumn(); + } + ImGui::Columns(1); + ImGui::Separator(); + + ImGui::Text("With border:"); + ImGui::Columns(4, "mycolumns"); // 4-ways, with border + ImGui::Separator(); + ImGui::Text("ID"); ImGui::NextColumn(); + ImGui::Text("Name"); ImGui::NextColumn(); + ImGui::Text("Path"); ImGui::NextColumn(); + ImGui::Text("Hovered"); ImGui::NextColumn(); + ImGui::Separator(); + const char* names[3] = { "One", "Two", "Three" }; + const char* paths[3] = { "/path/one", "/path/two", "/path/three" }; + static int selected = -1; + for (int i = 0; i < 3; i++) + { + char label[32]; + sprintf(label, "%04d", i); + if (ImGui::Selectable(label, selected == i, ImGuiSelectableFlags_SpanAllColumns)) + selected = i; + bool hovered = ImGui::IsItemHovered(); + ImGui::NextColumn(); + ImGui::Text(names[i]); ImGui::NextColumn(); + ImGui::Text(paths[i]); ImGui::NextColumn(); + ImGui::Text("%d", hovered); ImGui::NextColumn(); + } + ImGui::Columns(1); + ImGui::Separator(); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Columns (legacy API)/Borders"); + if (ImGui::TreeNode("Borders")) + { + // NB: Future columns API should allow automatic horizontal borders. + static bool h_borders = true; + static bool v_borders = true; + static int columns_count = 4; + const int lines_count = 3; + ImGui::SetNextItemWidth(ImGui::GetFontSize() * 8); + ImGui::DragInt("##columns_count", &columns_count, 0.1f, 2, 10, "%d columns"); + if (columns_count < 2) + columns_count = 2; + ImGui::SameLine(); + ImGui::Checkbox("horizontal", &h_borders); + ImGui::SameLine(); + ImGui::Checkbox("vertical", &v_borders); + ImGui::Columns(columns_count, NULL, v_borders); + for (int i = 0; i < columns_count * lines_count; i++) + { + if (h_borders && ImGui::GetColumnIndex() == 0) + ImGui::Separator(); + ImGui::Text("%c%c%c", 'a' + i, 'a' + i, 'a' + i); + ImGui::Text("Width %.2f", ImGui::GetColumnWidth()); + ImGui::Text("Avail %.2f", ImGui::GetContentRegionAvail().x); + ImGui::Text("Offset %.2f", ImGui::GetColumnOffset()); + ImGui::Text("Long text that is likely to clip"); + ImGui::Button("Button", ImVec2(-FLT_MIN, 0.0f)); + ImGui::NextColumn(); + } + ImGui::Columns(1); + if (h_borders) + ImGui::Separator(); + ImGui::TreePop(); + } + + // Create multiple items in a same cell before switching to next column + IMGUI_DEMO_MARKER("Columns (legacy API)/Mixed items"); + if (ImGui::TreeNode("Mixed items")) + { + ImGui::Columns(3, "mixed"); + ImGui::Separator(); + + ImGui::Text("Hello"); + ImGui::Button("Banana"); + ImGui::NextColumn(); + + ImGui::Text("ImGui"); + ImGui::Button("Apple"); + static float foo = 1.0f; + ImGui::InputFloat("red", &foo, 0.05f, 0, "%.3f"); + ImGui::Text("An extra line here."); + ImGui::NextColumn(); + + ImGui::Text("Sailor"); + ImGui::Button("Corniflower"); + static float bar = 1.0f; + ImGui::InputFloat("blue", &bar, 0.05f, 0, "%.3f"); + ImGui::NextColumn(); + + if (ImGui::CollapsingHeader("Category A")) { ImGui::Text("Blah blah blah"); } ImGui::NextColumn(); + if (ImGui::CollapsingHeader("Category B")) { ImGui::Text("Blah blah blah"); } ImGui::NextColumn(); + if (ImGui::CollapsingHeader("Category C")) { ImGui::Text("Blah blah blah"); } ImGui::NextColumn(); + ImGui::Columns(1); + ImGui::Separator(); + ImGui::TreePop(); + } + + // Word wrapping + IMGUI_DEMO_MARKER("Columns (legacy API)/Word-wrapping"); + if (ImGui::TreeNode("Word-wrapping")) + { + ImGui::Columns(2, "word-wrapping"); + ImGui::Separator(); + ImGui::TextWrapped("The quick brown fox jumps over the lazy dog."); + ImGui::TextWrapped("Hello Left"); + ImGui::NextColumn(); + ImGui::TextWrapped("The quick brown fox jumps over the lazy dog."); + ImGui::TextWrapped("Hello Right"); + ImGui::Columns(1); + ImGui::Separator(); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Columns (legacy API)/Horizontal Scrolling"); + if (ImGui::TreeNode("Horizontal Scrolling")) + { + ImGui::SetNextWindowContentSize(ImVec2(1500.0f, 0.0f)); + ImVec2 child_size = ImVec2(0, ImGui::GetFontSize() * 20.0f); + ImGui::BeginChild("##ScrollingRegion", child_size, false, ImGuiWindowFlags_HorizontalScrollbar); + ImGui::Columns(10); + + // Also demonstrate using clipper for large vertical lists + int ITEMS_COUNT = 2000; + ImGuiListClipper clipper; + clipper.Begin(ITEMS_COUNT); + while (clipper.Step()) + { + for (int i = clipper.DisplayStart; i < clipper.DisplayEnd; i++) + for (int j = 0; j < 10; j++) + { + ImGui::Text("Line %d Column %d...", i, j); + ImGui::NextColumn(); + } + } + ImGui::Columns(1); + ImGui::EndChild(); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Columns (legacy API)/Tree"); + if (ImGui::TreeNode("Tree")) + { + ImGui::Columns(2, "tree", true); + for (int x = 0; x < 3; x++) + { + bool open1 = ImGui::TreeNode((void*)(intptr_t)x, "Node%d", x); + ImGui::NextColumn(); + ImGui::Text("Node contents"); + ImGui::NextColumn(); + if (open1) + { + for (int y = 0; y < 3; y++) + { + bool open2 = ImGui::TreeNode((void*)(intptr_t)y, "Node%d.%d", x, y); + ImGui::NextColumn(); + ImGui::Text("Node contents"); + if (open2) + { + ImGui::Text("Even more contents"); + if (ImGui::TreeNode("Tree in column")) + { + ImGui::Text("The quick brown fox jumps over the lazy dog"); + ImGui::TreePop(); + } + } + ImGui::NextColumn(); + if (open2) + ImGui::TreePop(); + } + ImGui::TreePop(); + } + } + ImGui::Columns(1); + ImGui::TreePop(); + } + + ImGui::TreePop(); +} + +static void ShowDemoWindowInputs() +{ + IMGUI_DEMO_MARKER("Inputs & Focus"); + if (ImGui::CollapsingHeader("Inputs & Focus")) + { + ImGuiIO& io = ImGui::GetIO(); + + // Display inputs submitted to ImGuiIO + IMGUI_DEMO_MARKER("Inputs & Focus/Inputs"); + ImGui::SetNextItemOpen(true, ImGuiCond_Once); + if (ImGui::TreeNode("Inputs")) + { + HelpMarker( + "This is a simplified view. See more detailed input state:\n" + "- in 'Tools->Metrics/Debugger->Inputs'.\n" + "- in 'Tools->Debug Log->IO'."); + if (ImGui::IsMousePosValid()) + ImGui::Text("Mouse pos: (%g, %g)", io.MousePos.x, io.MousePos.y); + else + ImGui::Text("Mouse pos: "); + ImGui::Text("Mouse delta: (%g, %g)", io.MouseDelta.x, io.MouseDelta.y); + ImGui::Text("Mouse down:"); + for (int i = 0; i < IM_ARRAYSIZE(io.MouseDown); i++) if (ImGui::IsMouseDown(i)) { ImGui::SameLine(); ImGui::Text("b%d (%.02f secs)", i, io.MouseDownDuration[i]); } + ImGui::Text("Mouse wheel: %.1f", io.MouseWheel); + + // We iterate both legacy native range and named ImGuiKey ranges, which is a little odd but this allows displaying the data for old/new backends. + // User code should never have to go through such hoops! You can generally iterate between ImGuiKey_NamedKey_BEGIN and ImGuiKey_NamedKey_END. +#ifdef IMGUI_DISABLE_OBSOLETE_KEYIO + struct funcs { static bool IsLegacyNativeDupe(ImGuiKey) { return false; } }; + ImGuiKey start_key = ImGuiKey_NamedKey_BEGIN; +#else + struct funcs { static bool IsLegacyNativeDupe(ImGuiKey key) { return key < 512 && ImGui::GetIO().KeyMap[key] != -1; } }; // Hide Native<>ImGuiKey duplicates when both exists in the array + ImGuiKey start_key = (ImGuiKey)0; +#endif + ImGui::Text("Keys down:"); for (ImGuiKey key = start_key; key < ImGuiKey_NamedKey_END; key = (ImGuiKey)(key + 1)) { if (funcs::IsLegacyNativeDupe(key) || !ImGui::IsKeyDown(key)) continue; ImGui::SameLine(); ImGui::Text((key < ImGuiKey_NamedKey_BEGIN) ? "\"%s\"" : "\"%s\" %d", ImGui::GetKeyName(key), key); } + ImGui::Text("Keys mods: %s%s%s%s", io.KeyCtrl ? "CTRL " : "", io.KeyShift ? "SHIFT " : "", io.KeyAlt ? "ALT " : "", io.KeySuper ? "SUPER " : ""); + ImGui::Text("Chars queue:"); for (int i = 0; i < io.InputQueueCharacters.Size; i++) { ImWchar c = io.InputQueueCharacters[i]; ImGui::SameLine(); ImGui::Text("\'%c\' (0x%04X)", (c > ' ' && c <= 255) ? (char)c : '?', c); } // FIXME: We should convert 'c' to UTF-8 here but the functions are not public. + + ImGui::TreePop(); + } + + // Display ImGuiIO output flags + IMGUI_DEMO_MARKER("Inputs & Focus/Outputs"); + ImGui::SetNextItemOpen(true, ImGuiCond_Once); + if (ImGui::TreeNode("Outputs")) + { + HelpMarker( + "The value of io.WantCaptureMouse and io.WantCaptureKeyboard are normally set by Dear ImGui " + "to instruct your application of how to route inputs. Typically, when a value is true, it means " + "Dear ImGui wants the corresponding inputs and we expect the underlying application to ignore them.\n\n" + "The most typical case is: when hovering a window, Dear ImGui set io.WantCaptureMouse to true, " + "and underlying application should ignore mouse inputs (in practice there are many and more subtle " + "rules leading to how those flags are set)."); + ImGui::Text("io.WantCaptureMouse: %d", io.WantCaptureMouse); + ImGui::Text("io.WantCaptureMouseUnlessPopupClose: %d", io.WantCaptureMouseUnlessPopupClose); + ImGui::Text("io.WantCaptureKeyboard: %d", io.WantCaptureKeyboard); + ImGui::Text("io.WantTextInput: %d", io.WantTextInput); + ImGui::Text("io.WantSetMousePos: %d", io.WantSetMousePos); + ImGui::Text("io.NavActive: %d, io.NavVisible: %d", io.NavActive, io.NavVisible); + + IMGUI_DEMO_MARKER("Inputs & Focus/Outputs/WantCapture override"); + if (ImGui::TreeNode("WantCapture override")) + { + HelpMarker( + "Hovering the colored canvas will override io.WantCaptureXXX fields.\n" + "Notice how normally (when set to none), the value of io.WantCaptureKeyboard would be false when hovering and true when clicking."); + static int capture_override_mouse = -1; + static int capture_override_keyboard = -1; + const char* capture_override_desc[] = { "None", "Set to false", "Set to true" }; + ImGui::SetNextItemWidth(ImGui::GetFontSize() * 15); + ImGui::SliderInt("SetNextFrameWantCaptureMouse() on hover", &capture_override_mouse, -1, +1, capture_override_desc[capture_override_mouse + 1], ImGuiSliderFlags_AlwaysClamp); + ImGui::SetNextItemWidth(ImGui::GetFontSize() * 15); + ImGui::SliderInt("SetNextFrameWantCaptureKeyboard() on hover", &capture_override_keyboard, -1, +1, capture_override_desc[capture_override_keyboard + 1], ImGuiSliderFlags_AlwaysClamp); + + ImGui::ColorButton("##panel", ImVec4(0.7f, 0.1f, 0.7f, 1.0f), ImGuiColorEditFlags_NoTooltip | ImGuiColorEditFlags_NoDragDrop, ImVec2(128.0f, 96.0f)); // Dummy item + if (ImGui::IsItemHovered() && capture_override_mouse != -1) + ImGui::SetNextFrameWantCaptureMouse(capture_override_mouse == 1); + if (ImGui::IsItemHovered() && capture_override_keyboard != -1) + ImGui::SetNextFrameWantCaptureKeyboard(capture_override_keyboard == 1); + + ImGui::TreePop(); + } + ImGui::TreePop(); + } + + // Display mouse cursors + IMGUI_DEMO_MARKER("Inputs & Focus/Mouse Cursors"); + if (ImGui::TreeNode("Mouse Cursors")) + { + const char* mouse_cursors_names[] = { "Arrow", "TextInput", "ResizeAll", "ResizeNS", "ResizeEW", "ResizeNESW", "ResizeNWSE", "Hand", "NotAllowed" }; + IM_ASSERT(IM_ARRAYSIZE(mouse_cursors_names) == ImGuiMouseCursor_COUNT); + + ImGuiMouseCursor current = ImGui::GetMouseCursor(); + ImGui::Text("Current mouse cursor = %d: %s", current, mouse_cursors_names[current]); + ImGui::BeginDisabled(true); + ImGui::CheckboxFlags("io.BackendFlags: HasMouseCursors", &io.BackendFlags, ImGuiBackendFlags_HasMouseCursors); + ImGui::EndDisabled(); + + ImGui::Text("Hover to see mouse cursors:"); + ImGui::SameLine(); HelpMarker( + "Your application can render a different mouse cursor based on what ImGui::GetMouseCursor() returns. " + "If software cursor rendering (io.MouseDrawCursor) is set ImGui will draw the right cursor for you, " + "otherwise your backend needs to handle it."); + for (int i = 0; i < ImGuiMouseCursor_COUNT; i++) + { + char label[32]; + sprintf(label, "Mouse cursor %d: %s", i, mouse_cursors_names[i]); + ImGui::Bullet(); ImGui::Selectable(label, false); + if (ImGui::IsItemHovered()) + ImGui::SetMouseCursor(i); + } + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Inputs & Focus/Tabbing"); + if (ImGui::TreeNode("Tabbing")) + { + ImGui::Text("Use TAB/SHIFT+TAB to cycle through keyboard editable fields."); + static char buf[32] = "hello"; + ImGui::InputText("1", buf, IM_ARRAYSIZE(buf)); + ImGui::InputText("2", buf, IM_ARRAYSIZE(buf)); + ImGui::InputText("3", buf, IM_ARRAYSIZE(buf)); + ImGui::PushTabStop(false); + ImGui::InputText("4 (tab skip)", buf, IM_ARRAYSIZE(buf)); + ImGui::SameLine(); HelpMarker("Item won't be cycled through when using TAB or Shift+Tab."); + ImGui::PopTabStop(); + ImGui::InputText("5", buf, IM_ARRAYSIZE(buf)); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Inputs & Focus/Focus from code"); + if (ImGui::TreeNode("Focus from code")) + { + bool focus_1 = ImGui::Button("Focus on 1"); ImGui::SameLine(); + bool focus_2 = ImGui::Button("Focus on 2"); ImGui::SameLine(); + bool focus_3 = ImGui::Button("Focus on 3"); + int has_focus = 0; + static char buf[128] = "click on a button to set focus"; + + if (focus_1) ImGui::SetKeyboardFocusHere(); + ImGui::InputText("1", buf, IM_ARRAYSIZE(buf)); + if (ImGui::IsItemActive()) has_focus = 1; + + if (focus_2) ImGui::SetKeyboardFocusHere(); + ImGui::InputText("2", buf, IM_ARRAYSIZE(buf)); + if (ImGui::IsItemActive()) has_focus = 2; + + ImGui::PushTabStop(false); + if (focus_3) ImGui::SetKeyboardFocusHere(); + ImGui::InputText("3 (tab skip)", buf, IM_ARRAYSIZE(buf)); + if (ImGui::IsItemActive()) has_focus = 3; + ImGui::SameLine(); HelpMarker("Item won't be cycled through when using TAB or Shift+Tab."); + ImGui::PopTabStop(); + + if (has_focus) + ImGui::Text("Item with focus: %d", has_focus); + else + ImGui::Text("Item with focus: "); + + // Use >= 0 parameter to SetKeyboardFocusHere() to focus an upcoming item + static float f3[3] = { 0.0f, 0.0f, 0.0f }; + int focus_ahead = -1; + if (ImGui::Button("Focus on X")) { focus_ahead = 0; } ImGui::SameLine(); + if (ImGui::Button("Focus on Y")) { focus_ahead = 1; } ImGui::SameLine(); + if (ImGui::Button("Focus on Z")) { focus_ahead = 2; } + if (focus_ahead != -1) ImGui::SetKeyboardFocusHere(focus_ahead); + ImGui::SliderFloat3("Float3", &f3[0], 0.0f, 1.0f); + + ImGui::TextWrapped("NB: Cursor & selection are preserved when refocusing last used item in code."); + ImGui::TreePop(); + } + + IMGUI_DEMO_MARKER("Inputs & Focus/Dragging"); + if (ImGui::TreeNode("Dragging")) + { + ImGui::TextWrapped("You can use ImGui::GetMouseDragDelta(0) to query for the dragged amount on any widget."); + for (int button = 0; button < 3; button++) + { + ImGui::Text("IsMouseDragging(%d):", button); + ImGui::Text(" w/ default threshold: %d,", ImGui::IsMouseDragging(button)); + ImGui::Text(" w/ zero threshold: %d,", ImGui::IsMouseDragging(button, 0.0f)); + ImGui::Text(" w/ large threshold: %d,", ImGui::IsMouseDragging(button, 20.0f)); + } + + ImGui::Button("Drag Me"); + if (ImGui::IsItemActive()) + ImGui::GetForegroundDrawList()->AddLine(io.MouseClickedPos[0], io.MousePos, ImGui::GetColorU32(ImGuiCol_Button), 4.0f); // Draw a line between the button and the mouse cursor + + // Drag operations gets "unlocked" when the mouse has moved past a certain threshold + // (the default threshold is stored in io.MouseDragThreshold). You can request a lower or higher + // threshold using the second parameter of IsMouseDragging() and GetMouseDragDelta(). + ImVec2 value_raw = ImGui::GetMouseDragDelta(0, 0.0f); + ImVec2 value_with_lock_threshold = ImGui::GetMouseDragDelta(0); + ImVec2 mouse_delta = io.MouseDelta; + ImGui::Text("GetMouseDragDelta(0):"); + ImGui::Text(" w/ default threshold: (%.1f, %.1f)", value_with_lock_threshold.x, value_with_lock_threshold.y); + ImGui::Text(" w/ zero threshold: (%.1f, %.1f)", value_raw.x, value_raw.y); + ImGui::Text("io.MouseDelta: (%.1f, %.1f)", mouse_delta.x, mouse_delta.y); + ImGui::TreePop(); + } + } +} + +//----------------------------------------------------------------------------- +// [SECTION] About Window / ShowAboutWindow() +// Access from Dear ImGui Demo -> Tools -> About +//----------------------------------------------------------------------------- + +void ImGui::ShowAboutWindow(bool* p_open) +{ + if (!ImGui::Begin("About Dear ImGui", p_open, ImGuiWindowFlags_AlwaysAutoResize)) + { + ImGui::End(); + return; + } + IMGUI_DEMO_MARKER("Tools/About Dear ImGui"); + ImGui::Text("Dear ImGui %s (%d)", IMGUI_VERSION, IMGUI_VERSION_NUM); + ImGui::Separator(); + ImGui::Text("By Omar Cornut and all Dear ImGui contributors."); + ImGui::Text("Dear ImGui is licensed under the MIT License, see LICENSE for more information."); + ImGui::Text("If your company uses this, please consider sponsoring the project!"); + + static bool show_config_info = false; + ImGui::Checkbox("Config/Build Information", &show_config_info); + if (show_config_info) + { + ImGuiIO& io = ImGui::GetIO(); + ImGuiStyle& style = ImGui::GetStyle(); + + bool copy_to_clipboard = ImGui::Button("Copy to clipboard"); + ImVec2 child_size = ImVec2(0, ImGui::GetTextLineHeightWithSpacing() * 18); + ImGui::BeginChildFrame(ImGui::GetID("cfg_infos"), child_size, ImGuiWindowFlags_NoMove); + if (copy_to_clipboard) + { + ImGui::LogToClipboard(); + ImGui::LogText("```\n"); // Back quotes will make text appears without formatting when pasting on GitHub + } + + ImGui::Text("Dear ImGui %s (%d)", IMGUI_VERSION, IMGUI_VERSION_NUM); + ImGui::Separator(); + ImGui::Text("sizeof(size_t): %d, sizeof(ImDrawIdx): %d, sizeof(ImDrawVert): %d", (int)sizeof(size_t), (int)sizeof(ImDrawIdx), (int)sizeof(ImDrawVert)); + ImGui::Text("define: __cplusplus=%d", (int)__cplusplus); +#ifdef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + ImGui::Text("define: IMGUI_DISABLE_OBSOLETE_FUNCTIONS"); +#endif +#ifdef IMGUI_DISABLE_OBSOLETE_KEYIO + ImGui::Text("define: IMGUI_DISABLE_OBSOLETE_KEYIO"); +#endif +#ifdef IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS + ImGui::Text("define: IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS"); +#endif +#ifdef IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS + ImGui::Text("define: IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS"); +#endif +#ifdef IMGUI_DISABLE_WIN32_FUNCTIONS + ImGui::Text("define: IMGUI_DISABLE_WIN32_FUNCTIONS"); +#endif +#ifdef IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS + ImGui::Text("define: IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS"); +#endif +#ifdef IMGUI_DISABLE_DEFAULT_MATH_FUNCTIONS + ImGui::Text("define: IMGUI_DISABLE_DEFAULT_MATH_FUNCTIONS"); +#endif +#ifdef IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS + ImGui::Text("define: IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS"); +#endif +#ifdef IMGUI_DISABLE_FILE_FUNCTIONS + ImGui::Text("define: IMGUI_DISABLE_FILE_FUNCTIONS"); +#endif +#ifdef IMGUI_DISABLE_DEFAULT_ALLOCATORS + ImGui::Text("define: IMGUI_DISABLE_DEFAULT_ALLOCATORS"); +#endif +#ifdef IMGUI_USE_BGRA_PACKED_COLOR + ImGui::Text("define: IMGUI_USE_BGRA_PACKED_COLOR"); +#endif +#ifdef _WIN32 + ImGui::Text("define: _WIN32"); +#endif +#ifdef _WIN64 + ImGui::Text("define: _WIN64"); +#endif +#ifdef __linux__ + ImGui::Text("define: __linux__"); +#endif +#ifdef __APPLE__ + ImGui::Text("define: __APPLE__"); +#endif +#ifdef _MSC_VER + ImGui::Text("define: _MSC_VER=%d", _MSC_VER); +#endif +#ifdef _MSVC_LANG + ImGui::Text("define: _MSVC_LANG=%d", (int)_MSVC_LANG); +#endif +#ifdef __MINGW32__ + ImGui::Text("define: __MINGW32__"); +#endif +#ifdef __MINGW64__ + ImGui::Text("define: __MINGW64__"); +#endif +#ifdef __GNUC__ + ImGui::Text("define: __GNUC__=%d", (int)__GNUC__); +#endif +#ifdef __clang_version__ + ImGui::Text("define: __clang_version__=%s", __clang_version__); +#endif +#ifdef __EMSCRIPTEN__ + ImGui::Text("define: __EMSCRIPTEN__"); +#endif + ImGui::Separator(); + ImGui::Text("io.BackendPlatformName: %s", io.BackendPlatformName ? io.BackendPlatformName : "NULL"); + ImGui::Text("io.BackendRendererName: %s", io.BackendRendererName ? io.BackendRendererName : "NULL"); + ImGui::Text("io.ConfigFlags: 0x%08X", io.ConfigFlags); + if (io.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) ImGui::Text(" NavEnableKeyboard"); + if (io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) ImGui::Text(" NavEnableGamepad"); + if (io.ConfigFlags & ImGuiConfigFlags_NavEnableSetMousePos) ImGui::Text(" NavEnableSetMousePos"); + if (io.ConfigFlags & ImGuiConfigFlags_NavNoCaptureKeyboard) ImGui::Text(" NavNoCaptureKeyboard"); + if (io.ConfigFlags & ImGuiConfigFlags_NoMouse) ImGui::Text(" NoMouse"); + if (io.ConfigFlags & ImGuiConfigFlags_NoMouseCursorChange) ImGui::Text(" NoMouseCursorChange"); + if (io.MouseDrawCursor) ImGui::Text("io.MouseDrawCursor"); + if (io.ConfigMacOSXBehaviors) ImGui::Text("io.ConfigMacOSXBehaviors"); + if (io.ConfigInputTextCursorBlink) ImGui::Text("io.ConfigInputTextCursorBlink"); + if (io.ConfigWindowsResizeFromEdges) ImGui::Text("io.ConfigWindowsResizeFromEdges"); + if (io.ConfigWindowsMoveFromTitleBarOnly) ImGui::Text("io.ConfigWindowsMoveFromTitleBarOnly"); + if (io.ConfigMemoryCompactTimer >= 0.0f) ImGui::Text("io.ConfigMemoryCompactTimer = %.1f", io.ConfigMemoryCompactTimer); + ImGui::Text("io.BackendFlags: 0x%08X", io.BackendFlags); + if (io.BackendFlags & ImGuiBackendFlags_HasGamepad) ImGui::Text(" HasGamepad"); + if (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) ImGui::Text(" HasMouseCursors"); + if (io.BackendFlags & ImGuiBackendFlags_HasSetMousePos) ImGui::Text(" HasSetMousePos"); + if (io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset) ImGui::Text(" RendererHasVtxOffset"); + ImGui::Separator(); + ImGui::Text("io.Fonts: %d fonts, Flags: 0x%08X, TexSize: %d,%d", io.Fonts->Fonts.Size, io.Fonts->Flags, io.Fonts->TexWidth, io.Fonts->TexHeight); + ImGui::Text("io.DisplaySize: %.2f,%.2f", io.DisplaySize.x, io.DisplaySize.y); + ImGui::Text("io.DisplayFramebufferScale: %.2f,%.2f", io.DisplayFramebufferScale.x, io.DisplayFramebufferScale.y); + ImGui::Separator(); + ImGui::Text("style.WindowPadding: %.2f,%.2f", style.WindowPadding.x, style.WindowPadding.y); + ImGui::Text("style.WindowBorderSize: %.2f", style.WindowBorderSize); + ImGui::Text("style.FramePadding: %.2f,%.2f", style.FramePadding.x, style.FramePadding.y); + ImGui::Text("style.FrameRounding: %.2f", style.FrameRounding); + ImGui::Text("style.FrameBorderSize: %.2f", style.FrameBorderSize); + ImGui::Text("style.ItemSpacing: %.2f,%.2f", style.ItemSpacing.x, style.ItemSpacing.y); + ImGui::Text("style.ItemInnerSpacing: %.2f,%.2f", style.ItemInnerSpacing.x, style.ItemInnerSpacing.y); + + if (copy_to_clipboard) + { + ImGui::LogText("\n```\n"); + ImGui::LogFinish(); + } + ImGui::EndChildFrame(); + } + ImGui::End(); +} + +//----------------------------------------------------------------------------- +// [SECTION] Style Editor / ShowStyleEditor() +//----------------------------------------------------------------------------- +// - ShowFontSelector() +// - ShowStyleSelector() +// - ShowStyleEditor() +//----------------------------------------------------------------------------- + +// Forward declare ShowFontAtlas() which isn't worth putting in public API yet +namespace ImGui { IMGUI_API void ShowFontAtlas(ImFontAtlas* atlas); } + +// Demo helper function to select among loaded fonts. +// Here we use the regular BeginCombo()/EndCombo() api which is the more flexible one. +void ImGui::ShowFontSelector(const char* label) +{ + ImGuiIO& io = ImGui::GetIO(); + ImFont* font_current = ImGui::GetFont(); + if (ImGui::BeginCombo(label, font_current->GetDebugName())) + { + for (ImFont* font : io.Fonts->Fonts) + { + ImGui::PushID((void*)font); + if (ImGui::Selectable(font->GetDebugName(), font == font_current)) + io.FontDefault = font; + ImGui::PopID(); + } + ImGui::EndCombo(); + } + ImGui::SameLine(); + HelpMarker( + "- Load additional fonts with io.Fonts->AddFontFromFileTTF().\n" + "- The font atlas is built when calling io.Fonts->GetTexDataAsXXXX() or io.Fonts->Build().\n" + "- Read FAQ and docs/FONTS.md for more details.\n" + "- If you need to add/remove fonts at runtime (e.g. for DPI change), do it before calling NewFrame()."); +} + +// Demo helper function to select among default colors. See ShowStyleEditor() for more advanced options. +// Here we use the simplified Combo() api that packs items into a single literal string. +// Useful for quick combo boxes where the choices are known locally. +bool ImGui::ShowStyleSelector(const char* label) +{ + static int style_idx = -1; + if (ImGui::Combo(label, &style_idx, "Dark\0Light\0Classic\0")) + { + switch (style_idx) + { + case 0: ImGui::StyleColorsDark(); break; + case 1: ImGui::StyleColorsLight(); break; + case 2: ImGui::StyleColorsClassic(); break; + } + return true; + } + return false; +} + +void ImGui::ShowStyleEditor(ImGuiStyle* ref) +{ + IMGUI_DEMO_MARKER("Tools/Style Editor"); + // You can pass in a reference ImGuiStyle structure to compare to, revert to and save to + // (without a reference style pointer, we will use one compared locally as a reference) + ImGuiStyle& style = ImGui::GetStyle(); + static ImGuiStyle ref_saved_style; + + // Default to using internal storage as reference + static bool init = true; + if (init && ref == NULL) + ref_saved_style = style; + init = false; + if (ref == NULL) + ref = &ref_saved_style; + + ImGui::PushItemWidth(ImGui::GetWindowWidth() * 0.50f); + + if (ImGui::ShowStyleSelector("Colors##Selector")) + ref_saved_style = style; + ImGui::ShowFontSelector("Fonts##Selector"); + + // Simplified Settings (expose floating-pointer border sizes as boolean representing 0.0f or 1.0f) + if (ImGui::SliderFloat("FrameRounding", &style.FrameRounding, 0.0f, 12.0f, "%.0f")) + style.GrabRounding = style.FrameRounding; // Make GrabRounding always the same value as FrameRounding + { bool border = (style.WindowBorderSize > 0.0f); if (ImGui::Checkbox("WindowBorder", &border)) { style.WindowBorderSize = border ? 1.0f : 0.0f; } } + ImGui::SameLine(); + { bool border = (style.FrameBorderSize > 0.0f); if (ImGui::Checkbox("FrameBorder", &border)) { style.FrameBorderSize = border ? 1.0f : 0.0f; } } + ImGui::SameLine(); + { bool border = (style.PopupBorderSize > 0.0f); if (ImGui::Checkbox("PopupBorder", &border)) { style.PopupBorderSize = border ? 1.0f : 0.0f; } } + + // Save/Revert button + if (ImGui::Button("Save Ref")) + *ref = ref_saved_style = style; + ImGui::SameLine(); + if (ImGui::Button("Revert Ref")) + style = *ref; + ImGui::SameLine(); + HelpMarker( + "Save/Revert in local non-persistent storage. Default Colors definition are not affected. " + "Use \"Export\" below to save them somewhere."); + + ImGui::Separator(); + + if (ImGui::BeginTabBar("##tabs", ImGuiTabBarFlags_None)) + { + if (ImGui::BeginTabItem("Sizes")) + { + ImGui::SeparatorText("Main"); + ImGui::SliderFloat2("WindowPadding", (float*)&style.WindowPadding, 0.0f, 20.0f, "%.0f"); + ImGui::SliderFloat2("FramePadding", (float*)&style.FramePadding, 0.0f, 20.0f, "%.0f"); + ImGui::SliderFloat2("CellPadding", (float*)&style.CellPadding, 0.0f, 20.0f, "%.0f"); + ImGui::SliderFloat2("ItemSpacing", (float*)&style.ItemSpacing, 0.0f, 20.0f, "%.0f"); + ImGui::SliderFloat2("ItemInnerSpacing", (float*)&style.ItemInnerSpacing, 0.0f, 20.0f, "%.0f"); + ImGui::SliderFloat2("TouchExtraPadding", (float*)&style.TouchExtraPadding, 0.0f, 10.0f, "%.0f"); + ImGui::SliderFloat("IndentSpacing", &style.IndentSpacing, 0.0f, 30.0f, "%.0f"); + ImGui::SliderFloat("ScrollbarSize", &style.ScrollbarSize, 1.0f, 20.0f, "%.0f"); + ImGui::SliderFloat("GrabMinSize", &style.GrabMinSize, 1.0f, 20.0f, "%.0f"); + + ImGui::SeparatorText("Borders"); + ImGui::SliderFloat("WindowBorderSize", &style.WindowBorderSize, 0.0f, 1.0f, "%.0f"); + ImGui::SliderFloat("ChildBorderSize", &style.ChildBorderSize, 0.0f, 1.0f, "%.0f"); + ImGui::SliderFloat("PopupBorderSize", &style.PopupBorderSize, 0.0f, 1.0f, "%.0f"); + ImGui::SliderFloat("FrameBorderSize", &style.FrameBorderSize, 0.0f, 1.0f, "%.0f"); + ImGui::SliderFloat("TabBorderSize", &style.TabBorderSize, 0.0f, 1.0f, "%.0f"); + + ImGui::SeparatorText("Rounding"); + ImGui::SliderFloat("WindowRounding", &style.WindowRounding, 0.0f, 12.0f, "%.0f"); + ImGui::SliderFloat("ChildRounding", &style.ChildRounding, 0.0f, 12.0f, "%.0f"); + ImGui::SliderFloat("FrameRounding", &style.FrameRounding, 0.0f, 12.0f, "%.0f"); + ImGui::SliderFloat("PopupRounding", &style.PopupRounding, 0.0f, 12.0f, "%.0f"); + ImGui::SliderFloat("ScrollbarRounding", &style.ScrollbarRounding, 0.0f, 12.0f, "%.0f"); + ImGui::SliderFloat("GrabRounding", &style.GrabRounding, 0.0f, 12.0f, "%.0f"); + ImGui::SliderFloat("TabRounding", &style.TabRounding, 0.0f, 12.0f, "%.0f"); + + ImGui::SeparatorText("Widgets"); + ImGui::SliderFloat2("WindowTitleAlign", (float*)&style.WindowTitleAlign, 0.0f, 1.0f, "%.2f"); + int window_menu_button_position = style.WindowMenuButtonPosition + 1; + if (ImGui::Combo("WindowMenuButtonPosition", (int*)&window_menu_button_position, "None\0Left\0Right\0")) + style.WindowMenuButtonPosition = window_menu_button_position - 1; + ImGui::Combo("ColorButtonPosition", (int*)&style.ColorButtonPosition, "Left\0Right\0"); + ImGui::SliderFloat2("ButtonTextAlign", (float*)&style.ButtonTextAlign, 0.0f, 1.0f, "%.2f"); + ImGui::SameLine(); HelpMarker("Alignment applies when a button is larger than its text content."); + ImGui::SliderFloat2("SelectableTextAlign", (float*)&style.SelectableTextAlign, 0.0f, 1.0f, "%.2f"); + ImGui::SameLine(); HelpMarker("Alignment applies when a selectable is larger than its text content."); + ImGui::SliderFloat("SeparatorTextBorderSize", &style.SeparatorTextBorderSize, 0.0f, 10.0f, "%.0f"); + ImGui::SliderFloat2("SeparatorTextAlign", (float*)&style.SeparatorTextAlign, 0.0f, 1.0f, "%.2f"); + ImGui::SliderFloat2("SeparatorTextPadding", (float*)&style.SeparatorTextPadding, 0.0f, 40.0f, "%.0f"); + ImGui::SliderFloat("LogSliderDeadzone", &style.LogSliderDeadzone, 0.0f, 12.0f, "%.0f"); + + ImGui::SeparatorText("Tooltips"); + for (int n = 0; n < 2; n++) + if (ImGui::TreeNodeEx(n == 0 ? "HoverFlagsForTooltipMouse" : "HoverFlagsForTooltipNav")) + { + ImGuiHoveredFlags* p = (n == 0) ? &style.HoverFlagsForTooltipMouse : &style.HoverFlagsForTooltipNav; + ImGui::CheckboxFlags("ImGuiHoveredFlags_DelayNone", p, ImGuiHoveredFlags_DelayNone); + ImGui::CheckboxFlags("ImGuiHoveredFlags_DelayShort", p, ImGuiHoveredFlags_DelayShort); + ImGui::CheckboxFlags("ImGuiHoveredFlags_DelayNormal", p, ImGuiHoveredFlags_DelayNormal); + ImGui::CheckboxFlags("ImGuiHoveredFlags_Stationary", p, ImGuiHoveredFlags_Stationary); + ImGui::CheckboxFlags("ImGuiHoveredFlags_NoSharedDelay", p, ImGuiHoveredFlags_NoSharedDelay); + ImGui::TreePop(); + } + + ImGui::SeparatorText("Misc"); + ImGui::SliderFloat2("DisplaySafeAreaPadding", (float*)&style.DisplaySafeAreaPadding, 0.0f, 30.0f, "%.0f"); ImGui::SameLine(); HelpMarker("Adjust if you cannot see the edges of your screen (e.g. on a TV where scaling has not been configured)."); + + ImGui::EndTabItem(); + } + + if (ImGui::BeginTabItem("Colors")) + { + static int output_dest = 0; + static bool output_only_modified = true; + if (ImGui::Button("Export")) + { + if (output_dest == 0) + ImGui::LogToClipboard(); + else + ImGui::LogToTTY(); + ImGui::LogText("ImVec4* colors = ImGui::GetStyle().Colors;" IM_NEWLINE); + for (int i = 0; i < ImGuiCol_COUNT; i++) + { + const ImVec4& col = style.Colors[i]; + const char* name = ImGui::GetStyleColorName(i); + if (!output_only_modified || memcmp(&col, &ref->Colors[i], sizeof(ImVec4)) != 0) + ImGui::LogText("colors[ImGuiCol_%s]%*s= ImVec4(%.2ff, %.2ff, %.2ff, %.2ff);" IM_NEWLINE, + name, 23 - (int)strlen(name), "", col.x, col.y, col.z, col.w); + } + ImGui::LogFinish(); + } + ImGui::SameLine(); ImGui::SetNextItemWidth(120); ImGui::Combo("##output_type", &output_dest, "To Clipboard\0To TTY\0"); + ImGui::SameLine(); ImGui::Checkbox("Only Modified Colors", &output_only_modified); + + static ImGuiTextFilter filter; + filter.Draw("Filter colors", ImGui::GetFontSize() * 16); + + static ImGuiColorEditFlags alpha_flags = 0; + if (ImGui::RadioButton("Opaque", alpha_flags == ImGuiColorEditFlags_None)) { alpha_flags = ImGuiColorEditFlags_None; } ImGui::SameLine(); + if (ImGui::RadioButton("Alpha", alpha_flags == ImGuiColorEditFlags_AlphaPreview)) { alpha_flags = ImGuiColorEditFlags_AlphaPreview; } ImGui::SameLine(); + if (ImGui::RadioButton("Both", alpha_flags == ImGuiColorEditFlags_AlphaPreviewHalf)) { alpha_flags = ImGuiColorEditFlags_AlphaPreviewHalf; } ImGui::SameLine(); + HelpMarker( + "In the color list:\n" + "Left-click on color square to open color picker,\n" + "Right-click to open edit options menu."); + + ImGui::BeginChild("##colors", ImVec2(0, 0), true, ImGuiWindowFlags_AlwaysVerticalScrollbar | ImGuiWindowFlags_AlwaysHorizontalScrollbar | ImGuiWindowFlags_NavFlattened); + ImGui::PushItemWidth(-160); + for (int i = 0; i < ImGuiCol_COUNT; i++) + { + const char* name = ImGui::GetStyleColorName(i); + if (!filter.PassFilter(name)) + continue; + ImGui::PushID(i); + ImGui::ColorEdit4("##color", (float*)&style.Colors[i], ImGuiColorEditFlags_AlphaBar | alpha_flags); + if (memcmp(&style.Colors[i], &ref->Colors[i], sizeof(ImVec4)) != 0) + { + // Tips: in a real user application, you may want to merge and use an icon font into the main font, + // so instead of "Save"/"Revert" you'd use icons! + // Read the FAQ and docs/FONTS.md about using icon fonts. It's really easy and super convenient! + ImGui::SameLine(0.0f, style.ItemInnerSpacing.x); if (ImGui::Button("Save")) { ref->Colors[i] = style.Colors[i]; } + ImGui::SameLine(0.0f, style.ItemInnerSpacing.x); if (ImGui::Button("Revert")) { style.Colors[i] = ref->Colors[i]; } + } + ImGui::SameLine(0.0f, style.ItemInnerSpacing.x); + ImGui::TextUnformatted(name); + ImGui::PopID(); + } + ImGui::PopItemWidth(); + ImGui::EndChild(); + + ImGui::EndTabItem(); + } + + if (ImGui::BeginTabItem("Fonts")) + { + ImGuiIO& io = ImGui::GetIO(); + ImFontAtlas* atlas = io.Fonts; + HelpMarker("Read FAQ and docs/FONTS.md for details on font loading."); + ImGui::ShowFontAtlas(atlas); + + // Post-baking font scaling. Note that this is NOT the nice way of scaling fonts, read below. + // (we enforce hard clamping manually as by default DragFloat/SliderFloat allows CTRL+Click text to get out of bounds). + const float MIN_SCALE = 0.3f; + const float MAX_SCALE = 2.0f; + HelpMarker( + "Those are old settings provided for convenience.\n" + "However, the _correct_ way of scaling your UI is currently to reload your font at the designed size, " + "rebuild the font atlas, and call style.ScaleAllSizes() on a reference ImGuiStyle structure.\n" + "Using those settings here will give you poor quality results."); + static float window_scale = 1.0f; + ImGui::PushItemWidth(ImGui::GetFontSize() * 8); + if (ImGui::DragFloat("window scale", &window_scale, 0.005f, MIN_SCALE, MAX_SCALE, "%.2f", ImGuiSliderFlags_AlwaysClamp)) // Scale only this window + ImGui::SetWindowFontScale(window_scale); + ImGui::DragFloat("global scale", &io.FontGlobalScale, 0.005f, MIN_SCALE, MAX_SCALE, "%.2f", ImGuiSliderFlags_AlwaysClamp); // Scale everything + ImGui::PopItemWidth(); + + ImGui::EndTabItem(); + } + + if (ImGui::BeginTabItem("Rendering")) + { + ImGui::Checkbox("Anti-aliased lines", &style.AntiAliasedLines); + ImGui::SameLine(); + HelpMarker("When disabling anti-aliasing lines, you'll probably want to disable borders in your style as well."); + + ImGui::Checkbox("Anti-aliased lines use texture", &style.AntiAliasedLinesUseTex); + ImGui::SameLine(); + HelpMarker("Faster lines using texture data. Require backend to render with bilinear filtering (not point/nearest filtering)."); + + ImGui::Checkbox("Anti-aliased fill", &style.AntiAliasedFill); + ImGui::PushItemWidth(ImGui::GetFontSize() * 8); + ImGui::DragFloat("Curve Tessellation Tolerance", &style.CurveTessellationTol, 0.02f, 0.10f, 10.0f, "%.2f"); + if (style.CurveTessellationTol < 0.10f) style.CurveTessellationTol = 0.10f; + + // When editing the "Circle Segment Max Error" value, draw a preview of its effect on auto-tessellated circles. + ImGui::DragFloat("Circle Tessellation Max Error", &style.CircleTessellationMaxError , 0.005f, 0.10f, 5.0f, "%.2f", ImGuiSliderFlags_AlwaysClamp); + const bool show_samples = ImGui::IsItemActive(); + if (show_samples) + ImGui::SetNextWindowPos(ImGui::GetCursorScreenPos()); + if (show_samples && ImGui::BeginTooltip()) + { + ImGui::TextUnformatted("(R = radius, N = number of segments)"); + ImGui::Spacing(); + ImDrawList* draw_list = ImGui::GetWindowDrawList(); + const float min_widget_width = ImGui::CalcTextSize("N: MMM\nR: MMM").x; + for (int n = 0; n < 8; n++) + { + const float RAD_MIN = 5.0f; + const float RAD_MAX = 70.0f; + const float rad = RAD_MIN + (RAD_MAX - RAD_MIN) * (float)n / (8.0f - 1.0f); + + ImGui::BeginGroup(); + + ImGui::Text("R: %.f\nN: %d", rad, draw_list->_CalcCircleAutoSegmentCount(rad)); + + const float canvas_width = IM_MAX(min_widget_width, rad * 2.0f); + const float offset_x = floorf(canvas_width * 0.5f); + const float offset_y = floorf(RAD_MAX); + + const ImVec2 p1 = ImGui::GetCursorScreenPos(); + draw_list->AddCircle(ImVec2(p1.x + offset_x, p1.y + offset_y), rad, ImGui::GetColorU32(ImGuiCol_Text)); + ImGui::Dummy(ImVec2(canvas_width, RAD_MAX * 2)); + + /* + const ImVec2 p2 = ImGui::GetCursorScreenPos(); + draw_list->AddCircleFilled(ImVec2(p2.x + offset_x, p2.y + offset_y), rad, ImGui::GetColorU32(ImGuiCol_Text)); + ImGui::Dummy(ImVec2(canvas_width, RAD_MAX * 2)); + */ + + ImGui::EndGroup(); + ImGui::SameLine(); + } + ImGui::EndTooltip(); + } + ImGui::SameLine(); + HelpMarker("When drawing circle primitives with \"num_segments == 0\" tesselation will be calculated automatically."); + + ImGui::DragFloat("Global Alpha", &style.Alpha, 0.005f, 0.20f, 1.0f, "%.2f"); // Not exposing zero here so user doesn't "lose" the UI (zero alpha clips all widgets). But application code could have a toggle to switch between zero and non-zero. + ImGui::DragFloat("Disabled Alpha", &style.DisabledAlpha, 0.005f, 0.0f, 1.0f, "%.2f"); ImGui::SameLine(); HelpMarker("Additional alpha multiplier for disabled items (multiply over current value of Alpha)."); + ImGui::PopItemWidth(); + + ImGui::EndTabItem(); + } + + if (ImGui::BeginTabItem("Shadows")) + { + ImGui::Text("Window shadows:"); + ImGui::ColorEdit4("Color", (float*)&style.Colors[ImGuiCol_WindowShadow], ImGuiColorEditFlags_AlphaBar); + ImGui::SameLine(); + HelpMarker("Same as 'WindowShadow' in Colors tab."); + + ImGui::SliderFloat("Size", &style.WindowShadowSize, 0.0f, 128.0f, "%.1f"); + ImGui::SameLine(); + HelpMarker("Set shadow size to zero to disable shadows."); + ImGui::SliderFloat("Offset distance", &style.WindowShadowOffsetDist, 0.0f, 64.0f, "%.0f"); + ImGui::SliderAngle("Offset angle", &style.WindowShadowOffsetAngle); + + ImGui::EndTabItem(); + } + + ImGui::EndTabBar(); + } + + ImGui::PopItemWidth(); +} + +//----------------------------------------------------------------------------- +// [SECTION] User Guide / ShowUserGuide() +//----------------------------------------------------------------------------- + +void ImGui::ShowUserGuide() +{ + ImGuiIO& io = ImGui::GetIO(); + ImGui::BulletText("Double-click on title bar to collapse window."); + ImGui::BulletText( + "Click and drag on lower corner to resize window\n" + "(double-click to auto fit window to its contents)."); + ImGui::BulletText("CTRL+Click on a slider or drag box to input value as text."); + ImGui::BulletText("TAB/SHIFT+TAB to cycle through keyboard editable fields."); + ImGui::BulletText("CTRL+Tab to select a window."); + if (io.FontAllowUserScaling) + ImGui::BulletText("CTRL+Mouse Wheel to zoom window contents."); + ImGui::BulletText("While inputing text:\n"); + ImGui::Indent(); + ImGui::BulletText("CTRL+Left/Right to word jump."); + ImGui::BulletText("CTRL+A or double-click to select all."); + ImGui::BulletText("CTRL+X/C/V to use clipboard cut/copy/paste."); + ImGui::BulletText("CTRL+Z,CTRL+Y to undo/redo."); + ImGui::BulletText("ESCAPE to revert."); + ImGui::Unindent(); + ImGui::BulletText("With keyboard navigation enabled:"); + ImGui::Indent(); + ImGui::BulletText("Arrow keys to navigate."); + ImGui::BulletText("Space to activate a widget."); + ImGui::BulletText("Return to input text into a widget."); + ImGui::BulletText("Escape to deactivate a widget, close popup, exit child window."); + ImGui::BulletText("Alt to jump to the menu layer of a window."); + ImGui::Unindent(); +} + +//----------------------------------------------------------------------------- +// [SECTION] Example App: Main Menu Bar / ShowExampleAppMainMenuBar() +//----------------------------------------------------------------------------- +// - ShowExampleAppMainMenuBar() +// - ShowExampleMenuFile() +//----------------------------------------------------------------------------- + +// Demonstrate creating a "main" fullscreen menu bar and populating it. +// Note the difference between BeginMainMenuBar() and BeginMenuBar(): +// - BeginMenuBar() = menu-bar inside current window (which needs the ImGuiWindowFlags_MenuBar flag!) +// - BeginMainMenuBar() = helper to create menu-bar-sized window at the top of the main viewport + call BeginMenuBar() into it. +static void ShowExampleAppMainMenuBar() +{ + if (ImGui::BeginMainMenuBar()) + { + if (ImGui::BeginMenu("File")) + { + ShowExampleMenuFile(); + ImGui::EndMenu(); + } + if (ImGui::BeginMenu("Edit")) + { + if (ImGui::MenuItem("Undo", "CTRL+Z")) {} + if (ImGui::MenuItem("Redo", "CTRL+Y", false, false)) {} // Disabled item + ImGui::Separator(); + if (ImGui::MenuItem("Cut", "CTRL+X")) {} + if (ImGui::MenuItem("Copy", "CTRL+C")) {} + if (ImGui::MenuItem("Paste", "CTRL+V")) {} + ImGui::EndMenu(); + } + ImGui::EndMainMenuBar(); + } +} + +// Note that shortcuts are currently provided for display only +// (future version will add explicit flags to BeginMenu() to request processing shortcuts) +static void ShowExampleMenuFile() +{ + IMGUI_DEMO_MARKER("Examples/Menu"); + ImGui::MenuItem("(demo menu)", NULL, false, false); + if (ImGui::MenuItem("New")) {} + if (ImGui::MenuItem("Open", "Ctrl+O")) {} + if (ImGui::BeginMenu("Open Recent")) + { + ImGui::MenuItem("fish_hat.c"); + ImGui::MenuItem("fish_hat.inl"); + ImGui::MenuItem("fish_hat.h"); + if (ImGui::BeginMenu("More..")) + { + ImGui::MenuItem("Hello"); + ImGui::MenuItem("Sailor"); + if (ImGui::BeginMenu("Recurse..")) + { + ShowExampleMenuFile(); + ImGui::EndMenu(); + } + ImGui::EndMenu(); + } + ImGui::EndMenu(); + } + if (ImGui::MenuItem("Save", "Ctrl+S")) {} + if (ImGui::MenuItem("Save As..")) {} + + ImGui::Separator(); + IMGUI_DEMO_MARKER("Examples/Menu/Options"); + if (ImGui::BeginMenu("Options")) + { + static bool enabled = true; + ImGui::MenuItem("Enabled", "", &enabled); + ImGui::BeginChild("child", ImVec2(0, 60), true); + for (int i = 0; i < 10; i++) + ImGui::Text("Scrolling Text %d", i); + ImGui::EndChild(); + static float f = 0.5f; + static int n = 0; + ImGui::SliderFloat("Value", &f, 0.0f, 1.0f); + ImGui::InputFloat("Input", &f, 0.1f); + ImGui::Combo("Combo", &n, "Yes\0No\0Maybe\0\0"); + ImGui::EndMenu(); + } + + IMGUI_DEMO_MARKER("Examples/Menu/Colors"); + if (ImGui::BeginMenu("Colors")) + { + float sz = ImGui::GetTextLineHeight(); + for (int i = 0; i < ImGuiCol_COUNT; i++) + { + const char* name = ImGui::GetStyleColorName((ImGuiCol)i); + ImVec2 p = ImGui::GetCursorScreenPos(); + ImGui::GetWindowDrawList()->AddRectFilled(p, ImVec2(p.x + sz, p.y + sz), ImGui::GetColorU32((ImGuiCol)i)); + ImGui::Dummy(ImVec2(sz, sz)); + ImGui::SameLine(); + ImGui::MenuItem(name); + } + ImGui::EndMenu(); + } + + // Here we demonstrate appending again to the "Options" menu (which we already created above) + // Of course in this demo it is a little bit silly that this function calls BeginMenu("Options") twice. + // In a real code-base using it would make senses to use this feature from very different code locations. + if (ImGui::BeginMenu("Options")) // <-- Append! + { + IMGUI_DEMO_MARKER("Examples/Menu/Append to an existing menu"); + static bool b = true; + ImGui::Checkbox("SomeOption", &b); + ImGui::EndMenu(); + } + + if (ImGui::BeginMenu("Disabled", false)) // Disabled + { + IM_ASSERT(0); + } + if (ImGui::MenuItem("Checked", NULL, true)) {} + ImGui::Separator(); + if (ImGui::MenuItem("Quit", "Alt+F4")) {} +} + +//----------------------------------------------------------------------------- +// [SECTION] Example App: Debug Console / ShowExampleAppConsole() +//----------------------------------------------------------------------------- + +// Demonstrate creating a simple console window, with scrolling, filtering, completion and history. +// For the console example, we are using a more C++ like approach of declaring a class to hold both data and functions. +struct ExampleAppConsole +{ + char InputBuf[256]; + ImVector Items; + ImVector Commands; + ImVector History; + int HistoryPos; // -1: new line, 0..History.Size-1 browsing history. + ImGuiTextFilter Filter; + bool AutoScroll; + bool ScrollToBottom; + + ExampleAppConsole() + { + IMGUI_DEMO_MARKER("Examples/Console"); + ClearLog(); + memset(InputBuf, 0, sizeof(InputBuf)); + HistoryPos = -1; + + // "CLASSIFY" is here to provide the test case where "C"+[tab] completes to "CL" and display multiple matches. + Commands.push_back("HELP"); + Commands.push_back("HISTORY"); + Commands.push_back("CLEAR"); + Commands.push_back("CLASSIFY"); + AutoScroll = true; + ScrollToBottom = false; + AddLog("Welcome to Dear ImGui!"); + } + ~ExampleAppConsole() + { + ClearLog(); + for (int i = 0; i < History.Size; i++) + free(History[i]); + } + + // Portable helpers + static int Stricmp(const char* s1, const char* s2) { int d; while ((d = toupper(*s2) - toupper(*s1)) == 0 && *s1) { s1++; s2++; } return d; } + static int Strnicmp(const char* s1, const char* s2, int n) { int d = 0; while (n > 0 && (d = toupper(*s2) - toupper(*s1)) == 0 && *s1) { s1++; s2++; n--; } return d; } + static char* Strdup(const char* s) { IM_ASSERT(s); size_t len = strlen(s) + 1; void* buf = malloc(len); IM_ASSERT(buf); return (char*)memcpy(buf, (const void*)s, len); } + static void Strtrim(char* s) { char* str_end = s + strlen(s); while (str_end > s && str_end[-1] == ' ') str_end--; *str_end = 0; } + + void ClearLog() + { + for (int i = 0; i < Items.Size; i++) + free(Items[i]); + Items.clear(); + } + + void AddLog(const char* fmt, ...) IM_FMTARGS(2) + { + // FIXME-OPT + char buf[1024]; + va_list args; + va_start(args, fmt); + vsnprintf(buf, IM_ARRAYSIZE(buf), fmt, args); + buf[IM_ARRAYSIZE(buf)-1] = 0; + va_end(args); + Items.push_back(Strdup(buf)); + } + + void Draw(const char* title, bool* p_open) + { + ImGui::SetNextWindowSize(ImVec2(520, 600), ImGuiCond_FirstUseEver); + if (!ImGui::Begin(title, p_open)) + { + ImGui::End(); + return; + } + + // As a specific feature guaranteed by the library, after calling Begin() the last Item represent the title bar. + // So e.g. IsItemHovered() will return true when hovering the title bar. + // Here we create a context menu only available from the title bar. + if (ImGui::BeginPopupContextItem()) + { + if (ImGui::MenuItem("Close Console")) + *p_open = false; + ImGui::EndPopup(); + } + + ImGui::TextWrapped( + "This example implements a console with basic coloring, completion (TAB key) and history (Up/Down keys). A more elaborate " + "implementation may want to store entries along with extra data such as timestamp, emitter, etc."); + ImGui::TextWrapped("Enter 'HELP' for help."); + + // TODO: display items starting from the bottom + + if (ImGui::SmallButton("Add Debug Text")) { AddLog("%d some text", Items.Size); AddLog("some more text"); AddLog("display very important message here!"); } + ImGui::SameLine(); + if (ImGui::SmallButton("Add Debug Error")) { AddLog("[error] something went wrong"); } + ImGui::SameLine(); + if (ImGui::SmallButton("Clear")) { ClearLog(); } + ImGui::SameLine(); + bool copy_to_clipboard = ImGui::SmallButton("Copy"); + //static float t = 0.0f; if (ImGui::GetTime() - t > 0.02f) { t = ImGui::GetTime(); AddLog("Spam %f", t); } + + ImGui::Separator(); + + // Options menu + if (ImGui::BeginPopup("Options")) + { + ImGui::Checkbox("Auto-scroll", &AutoScroll); + ImGui::EndPopup(); + } + + // Options, Filter + if (ImGui::Button("Options")) + ImGui::OpenPopup("Options"); + ImGui::SameLine(); + Filter.Draw("Filter (\"incl,-excl\") (\"error\")", 180); + ImGui::Separator(); + + // Reserve enough left-over height for 1 separator + 1 input text + const float footer_height_to_reserve = ImGui::GetStyle().ItemSpacing.y + ImGui::GetFrameHeightWithSpacing(); + if (ImGui::BeginChild("ScrollingRegion", ImVec2(0, -footer_height_to_reserve), false, ImGuiWindowFlags_HorizontalScrollbar)) + { + if (ImGui::BeginPopupContextWindow()) + { + if (ImGui::Selectable("Clear")) ClearLog(); + ImGui::EndPopup(); + } + + // Display every line as a separate entry so we can change their color or add custom widgets. + // If you only want raw text you can use ImGui::TextUnformatted(log.begin(), log.end()); + // NB- if you have thousands of entries this approach may be too inefficient and may require user-side clipping + // to only process visible items. The clipper will automatically measure the height of your first item and then + // "seek" to display only items in the visible area. + // To use the clipper we can replace your standard loop: + // for (int i = 0; i < Items.Size; i++) + // With: + // ImGuiListClipper clipper; + // clipper.Begin(Items.Size); + // while (clipper.Step()) + // for (int i = clipper.DisplayStart; i < clipper.DisplayEnd; i++) + // - That your items are evenly spaced (same height) + // - That you have cheap random access to your elements (you can access them given their index, + // without processing all the ones before) + // You cannot this code as-is if a filter is active because it breaks the 'cheap random-access' property. + // We would need random-access on the post-filtered list. + // A typical application wanting coarse clipping and filtering may want to pre-compute an array of indices + // or offsets of items that passed the filtering test, recomputing this array when user changes the filter, + // and appending newly elements as they are inserted. This is left as a task to the user until we can manage + // to improve this example code! + // If your items are of variable height: + // - Split them into same height items would be simpler and facilitate random-seeking into your list. + // - Consider using manual call to IsRectVisible() and skipping extraneous decoration from your items. + ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(4, 1)); // Tighten spacing + if (copy_to_clipboard) + ImGui::LogToClipboard(); + for (const char* item : Items) + { + if (!Filter.PassFilter(item)) + continue; + + // Normally you would store more information in your item than just a string. + // (e.g. make Items[] an array of structure, store color/type etc.) + ImVec4 color; + bool has_color = false; + if (strstr(item, "[error]")) { color = ImVec4(1.0f, 0.4f, 0.4f, 1.0f); has_color = true; } + else if (strncmp(item, "# ", 2) == 0) { color = ImVec4(1.0f, 0.8f, 0.6f, 1.0f); has_color = true; } + if (has_color) + ImGui::PushStyleColor(ImGuiCol_Text, color); + ImGui::TextUnformatted(item); + if (has_color) + ImGui::PopStyleColor(); + } + if (copy_to_clipboard) + ImGui::LogFinish(); + + // Keep up at the bottom of the scroll region if we were already at the bottom at the beginning of the frame. + // Using a scrollbar or mouse-wheel will take away from the bottom edge. + if (ScrollToBottom || (AutoScroll && ImGui::GetScrollY() >= ImGui::GetScrollMaxY())) + ImGui::SetScrollHereY(1.0f); + ScrollToBottom = false; + + ImGui::PopStyleVar(); + } + ImGui::EndChild(); + ImGui::Separator(); + + // Command-line + bool reclaim_focus = false; + ImGuiInputTextFlags input_text_flags = ImGuiInputTextFlags_EnterReturnsTrue | ImGuiInputTextFlags_EscapeClearsAll | ImGuiInputTextFlags_CallbackCompletion | ImGuiInputTextFlags_CallbackHistory; + if (ImGui::InputText("Input", InputBuf, IM_ARRAYSIZE(InputBuf), input_text_flags, &TextEditCallbackStub, (void*)this)) + { + char* s = InputBuf; + Strtrim(s); + if (s[0]) + ExecCommand(s); + strcpy(s, ""); + reclaim_focus = true; + } + + // Auto-focus on window apparition + ImGui::SetItemDefaultFocus(); + if (reclaim_focus) + ImGui::SetKeyboardFocusHere(-1); // Auto focus previous widget + + ImGui::End(); + } + + void ExecCommand(const char* command_line) + { + AddLog("# %s\n", command_line); + + // Insert into history. First find match and delete it so it can be pushed to the back. + // This isn't trying to be smart or optimal. + HistoryPos = -1; + for (int i = History.Size - 1; i >= 0; i--) + if (Stricmp(History[i], command_line) == 0) + { + free(History[i]); + History.erase(History.begin() + i); + break; + } + History.push_back(Strdup(command_line)); + + // Process command + if (Stricmp(command_line, "CLEAR") == 0) + { + ClearLog(); + } + else if (Stricmp(command_line, "HELP") == 0) + { + AddLog("Commands:"); + for (int i = 0; i < Commands.Size; i++) + AddLog("- %s", Commands[i]); + } + else if (Stricmp(command_line, "HISTORY") == 0) + { + int first = History.Size - 10; + for (int i = first > 0 ? first : 0; i < History.Size; i++) + AddLog("%3d: %s\n", i, History[i]); + } + else + { + AddLog("Unknown command: '%s'\n", command_line); + } + + // On command input, we scroll to bottom even if AutoScroll==false + ScrollToBottom = true; + } + + // In C++11 you'd be better off using lambdas for this sort of forwarding callbacks + static int TextEditCallbackStub(ImGuiInputTextCallbackData* data) + { + ExampleAppConsole* console = (ExampleAppConsole*)data->UserData; + return console->TextEditCallback(data); + } + + int TextEditCallback(ImGuiInputTextCallbackData* data) + { + //AddLog("cursor: %d, selection: %d-%d", data->CursorPos, data->SelectionStart, data->SelectionEnd); + switch (data->EventFlag) + { + case ImGuiInputTextFlags_CallbackCompletion: + { + // Example of TEXT COMPLETION + + // Locate beginning of current word + const char* word_end = data->Buf + data->CursorPos; + const char* word_start = word_end; + while (word_start > data->Buf) + { + const char c = word_start[-1]; + if (c == ' ' || c == '\t' || c == ',' || c == ';') + break; + word_start--; + } + + // Build a list of candidates + ImVector candidates; + for (int i = 0; i < Commands.Size; i++) + if (Strnicmp(Commands[i], word_start, (int)(word_end - word_start)) == 0) + candidates.push_back(Commands[i]); + + if (candidates.Size == 0) + { + // No match + AddLog("No match for \"%.*s\"!\n", (int)(word_end - word_start), word_start); + } + else if (candidates.Size == 1) + { + // Single match. Delete the beginning of the word and replace it entirely so we've got nice casing. + data->DeleteChars((int)(word_start - data->Buf), (int)(word_end - word_start)); + data->InsertChars(data->CursorPos, candidates[0]); + data->InsertChars(data->CursorPos, " "); + } + else + { + // Multiple matches. Complete as much as we can.. + // So inputing "C"+Tab will complete to "CL" then display "CLEAR" and "CLASSIFY" as matches. + int match_len = (int)(word_end - word_start); + for (;;) + { + int c = 0; + bool all_candidates_matches = true; + for (int i = 0; i < candidates.Size && all_candidates_matches; i++) + if (i == 0) + c = toupper(candidates[i][match_len]); + else if (c == 0 || c != toupper(candidates[i][match_len])) + all_candidates_matches = false; + if (!all_candidates_matches) + break; + match_len++; + } + + if (match_len > 0) + { + data->DeleteChars((int)(word_start - data->Buf), (int)(word_end - word_start)); + data->InsertChars(data->CursorPos, candidates[0], candidates[0] + match_len); + } + + // List matches + AddLog("Possible matches:\n"); + for (int i = 0; i < candidates.Size; i++) + AddLog("- %s\n", candidates[i]); + } + + break; + } + case ImGuiInputTextFlags_CallbackHistory: + { + // Example of HISTORY + const int prev_history_pos = HistoryPos; + if (data->EventKey == ImGuiKey_UpArrow) + { + if (HistoryPos == -1) + HistoryPos = History.Size - 1; + else if (HistoryPos > 0) + HistoryPos--; + } + else if (data->EventKey == ImGuiKey_DownArrow) + { + if (HistoryPos != -1) + if (++HistoryPos >= History.Size) + HistoryPos = -1; + } + + // A better implementation would preserve the data on the current input line along with cursor position. + if (prev_history_pos != HistoryPos) + { + const char* history_str = (HistoryPos >= 0) ? History[HistoryPos] : ""; + data->DeleteChars(0, data->BufTextLen); + data->InsertChars(0, history_str); + } + } + } + return 0; + } +}; + +static void ShowExampleAppConsole(bool* p_open) +{ + static ExampleAppConsole console; + console.Draw("Example: Console", p_open); +} + +//----------------------------------------------------------------------------- +// [SECTION] Example App: Debug Log / ShowExampleAppLog() +//----------------------------------------------------------------------------- + +// Usage: +// static ExampleAppLog my_log; +// my_log.AddLog("Hello %d world\n", 123); +// my_log.Draw("title"); +struct ExampleAppLog +{ + ImGuiTextBuffer Buf; + ImGuiTextFilter Filter; + ImVector LineOffsets; // Index to lines offset. We maintain this with AddLog() calls. + bool AutoScroll; // Keep scrolling if already at the bottom. + + ExampleAppLog() + { + AutoScroll = true; + Clear(); + } + + void Clear() + { + Buf.clear(); + LineOffsets.clear(); + LineOffsets.push_back(0); + } + + void AddLog(const char* fmt, ...) IM_FMTARGS(2) + { + int old_size = Buf.size(); + va_list args; + va_start(args, fmt); + Buf.appendfv(fmt, args); + va_end(args); + for (int new_size = Buf.size(); old_size < new_size; old_size++) + if (Buf[old_size] == '\n') + LineOffsets.push_back(old_size + 1); + } + + void Draw(const char* title, bool* p_open = NULL) + { + if (!ImGui::Begin(title, p_open)) + { + ImGui::End(); + return; + } + + // Options menu + if (ImGui::BeginPopup("Options")) + { + ImGui::Checkbox("Auto-scroll", &AutoScroll); + ImGui::EndPopup(); + } + + // Main window + if (ImGui::Button("Options")) + ImGui::OpenPopup("Options"); + ImGui::SameLine(); + bool clear = ImGui::Button("Clear"); + ImGui::SameLine(); + bool copy = ImGui::Button("Copy"); + ImGui::SameLine(); + Filter.Draw("Filter", -100.0f); + + ImGui::Separator(); + + if (ImGui::BeginChild("scrolling", ImVec2(0, 0), false, ImGuiWindowFlags_HorizontalScrollbar)) + { + if (clear) + Clear(); + if (copy) + ImGui::LogToClipboard(); + + ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(0, 0)); + const char* buf = Buf.begin(); + const char* buf_end = Buf.end(); + if (Filter.IsActive()) + { + // In this example we don't use the clipper when Filter is enabled. + // This is because we don't have random access to the result of our filter. + // A real application processing logs with ten of thousands of entries may want to store the result of + // search/filter.. especially if the filtering function is not trivial (e.g. reg-exp). + for (int line_no = 0; line_no < LineOffsets.Size; line_no++) + { + const char* line_start = buf + LineOffsets[line_no]; + const char* line_end = (line_no + 1 < LineOffsets.Size) ? (buf + LineOffsets[line_no + 1] - 1) : buf_end; + if (Filter.PassFilter(line_start, line_end)) + ImGui::TextUnformatted(line_start, line_end); + } + } + else + { + // The simplest and easy way to display the entire buffer: + // ImGui::TextUnformatted(buf_begin, buf_end); + // And it'll just work. TextUnformatted() has specialization for large blob of text and will fast-forward + // to skip non-visible lines. Here we instead demonstrate using the clipper to only process lines that are + // within the visible area. + // If you have tens of thousands of items and their processing cost is non-negligible, coarse clipping them + // on your side is recommended. Using ImGuiListClipper requires + // - A) random access into your data + // - B) items all being the same height, + // both of which we can handle since we have an array pointing to the beginning of each line of text. + // When using the filter (in the block of code above) we don't have random access into the data to display + // anymore, which is why we don't use the clipper. Storing or skimming through the search result would make + // it possible (and would be recommended if you want to search through tens of thousands of entries). + ImGuiListClipper clipper; + clipper.Begin(LineOffsets.Size); + while (clipper.Step()) + { + for (int line_no = clipper.DisplayStart; line_no < clipper.DisplayEnd; line_no++) + { + const char* line_start = buf + LineOffsets[line_no]; + const char* line_end = (line_no + 1 < LineOffsets.Size) ? (buf + LineOffsets[line_no + 1] - 1) : buf_end; + ImGui::TextUnformatted(line_start, line_end); + } + } + clipper.End(); + } + ImGui::PopStyleVar(); + + // Keep up at the bottom of the scroll region if we were already at the bottom at the beginning of the frame. + // Using a scrollbar or mouse-wheel will take away from the bottom edge. + if (AutoScroll && ImGui::GetScrollY() >= ImGui::GetScrollMaxY()) + ImGui::SetScrollHereY(1.0f); + } + ImGui::EndChild(); + ImGui::End(); + } +}; + +// Demonstrate creating a simple log window with basic filtering. +static void ShowExampleAppLog(bool* p_open) +{ + static ExampleAppLog log; + + // For the demo: add a debug button _BEFORE_ the normal log window contents + // We take advantage of a rarely used feature: multiple calls to Begin()/End() are appending to the _same_ window. + // Most of the contents of the window will be added by the log.Draw() call. + ImGui::SetNextWindowSize(ImVec2(500, 400), ImGuiCond_FirstUseEver); + ImGui::Begin("Example: Log", p_open); + IMGUI_DEMO_MARKER("Examples/Log"); + if (ImGui::SmallButton("[Debug] Add 5 entries")) + { + static int counter = 0; + const char* categories[3] = { "info", "warn", "error" }; + const char* words[] = { "Bumfuzzled", "Cattywampus", "Snickersnee", "Abibliophobia", "Absquatulate", "Nincompoop", "Pauciloquent" }; + for (int n = 0; n < 5; n++) + { + const char* category = categories[counter % IM_ARRAYSIZE(categories)]; + const char* word = words[counter % IM_ARRAYSIZE(words)]; + log.AddLog("[%05d] [%s] Hello, current time is %.1f, here's a word: '%s'\n", + ImGui::GetFrameCount(), category, ImGui::GetTime(), word); + counter++; + } + } + ImGui::End(); + + // Actually call in the regular Log helper (which will Begin() into the same window as we just did) + log.Draw("Example: Log", p_open); +} + +//----------------------------------------------------------------------------- +// [SECTION] Example App: Simple Layout / ShowExampleAppLayout() +//----------------------------------------------------------------------------- + +// Demonstrate create a window with multiple child windows. +static void ShowExampleAppLayout(bool* p_open) +{ + ImGui::SetNextWindowSize(ImVec2(500, 440), ImGuiCond_FirstUseEver); + if (ImGui::Begin("Example: Simple layout", p_open, ImGuiWindowFlags_MenuBar)) + { + IMGUI_DEMO_MARKER("Examples/Simple layout"); + if (ImGui::BeginMenuBar()) + { + if (ImGui::BeginMenu("File")) + { + if (ImGui::MenuItem("Close", "Ctrl+W")) { *p_open = false; } + ImGui::EndMenu(); + } + ImGui::EndMenuBar(); + } + + // Left + static int selected = 0; + { + ImGui::BeginChild("left pane", ImVec2(150, 0), true); + for (int i = 0; i < 100; i++) + { + // FIXME: Good candidate to use ImGuiSelectableFlags_SelectOnNav + char label[128]; + sprintf(label, "MyObject %d", i); + if (ImGui::Selectable(label, selected == i)) + selected = i; + } + ImGui::EndChild(); + } + ImGui::SameLine(); + + // Right + { + ImGui::BeginGroup(); + ImGui::BeginChild("item view", ImVec2(0, -ImGui::GetFrameHeightWithSpacing())); // Leave room for 1 line below us + ImGui::Text("MyObject: %d", selected); + ImGui::Separator(); + if (ImGui::BeginTabBar("##Tabs", ImGuiTabBarFlags_None)) + { + if (ImGui::BeginTabItem("Description")) + { + ImGui::TextWrapped("Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. "); + ImGui::EndTabItem(); + } + if (ImGui::BeginTabItem("Details")) + { + ImGui::Text("ID: 0123456789"); + ImGui::EndTabItem(); + } + ImGui::EndTabBar(); + } + ImGui::EndChild(); + if (ImGui::Button("Revert")) {} + ImGui::SameLine(); + if (ImGui::Button("Save")) {} + ImGui::EndGroup(); + } + } + ImGui::End(); +} + +//----------------------------------------------------------------------------- +// [SECTION] Example App: Property Editor / ShowExampleAppPropertyEditor() +//----------------------------------------------------------------------------- + +static void ShowPlaceholderObject(const char* prefix, int uid) +{ + // Use object uid as identifier. Most commonly you could also use the object pointer as a base ID. + ImGui::PushID(uid); + + // Text and Tree nodes are less high than framed widgets, using AlignTextToFramePadding() we add vertical spacing to make the tree lines equal high. + ImGui::TableNextRow(); + ImGui::TableSetColumnIndex(0); + ImGui::AlignTextToFramePadding(); + bool node_open = ImGui::TreeNode("Object", "%s_%u", prefix, uid); + ImGui::TableSetColumnIndex(1); + ImGui::Text("my sailor is rich"); + + if (node_open) + { + static float placeholder_members[8] = { 0.0f, 0.0f, 1.0f, 3.1416f, 100.0f, 999.0f }; + for (int i = 0; i < 8; i++) + { + ImGui::PushID(i); // Use field index as identifier. + if (i < 2) + { + ShowPlaceholderObject("Child", 424242); + } + else + { + // Here we use a TreeNode to highlight on hover (we could use e.g. Selectable as well) + ImGui::TableNextRow(); + ImGui::TableSetColumnIndex(0); + ImGui::AlignTextToFramePadding(); + ImGuiTreeNodeFlags flags = ImGuiTreeNodeFlags_Leaf | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_Bullet; + ImGui::TreeNodeEx("Field", flags, "Field_%d", i); + + ImGui::TableSetColumnIndex(1); + ImGui::SetNextItemWidth(-FLT_MIN); + if (i >= 5) + ImGui::InputFloat("##value", &placeholder_members[i], 1.0f); + else + ImGui::DragFloat("##value", &placeholder_members[i], 0.01f); + ImGui::NextColumn(); + } + ImGui::PopID(); + } + ImGui::TreePop(); + } + ImGui::PopID(); +} + +// Demonstrate create a simple property editor. +// This demo is a bit lackluster nowadays, would be nice to improve. +static void ShowExampleAppPropertyEditor(bool* p_open) +{ + ImGui::SetNextWindowSize(ImVec2(430, 450), ImGuiCond_FirstUseEver); + if (!ImGui::Begin("Example: Property editor", p_open)) + { + ImGui::End(); + return; + } + + IMGUI_DEMO_MARKER("Examples/Property Editor"); + HelpMarker( + "This example shows how you may implement a property editor using two columns.\n" + "All objects/fields data are dummies here.\n"); + + ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(2, 2)); + if (ImGui::BeginTable("##split", 2, ImGuiTableFlags_BordersOuter | ImGuiTableFlags_Resizable | ImGuiTableFlags_ScrollY)) + { + ImGui::TableSetupScrollFreeze(0, 1); + ImGui::TableSetupColumn("Object"); + ImGui::TableSetupColumn("Contents"); + ImGui::TableHeadersRow(); + + // Iterate placeholder objects (all the same data) + for (int obj_i = 0; obj_i < 4; obj_i++) + ShowPlaceholderObject("Object", obj_i); + + ImGui::EndTable(); + } + ImGui::PopStyleVar(); + ImGui::End(); +} + +//----------------------------------------------------------------------------- +// [SECTION] Example App: Long Text / ShowExampleAppLongText() +//----------------------------------------------------------------------------- + +// Demonstrate/test rendering huge amount of text, and the incidence of clipping. +static void ShowExampleAppLongText(bool* p_open) +{ + ImGui::SetNextWindowSize(ImVec2(520, 600), ImGuiCond_FirstUseEver); + if (!ImGui::Begin("Example: Long text display", p_open)) + { + ImGui::End(); + return; + } + IMGUI_DEMO_MARKER("Examples/Long text display"); + + static int test_type = 0; + static ImGuiTextBuffer log; + static int lines = 0; + ImGui::Text("Printing unusually long amount of text."); + ImGui::Combo("Test type", &test_type, + "Single call to TextUnformatted()\0" + "Multiple calls to Text(), clipped\0" + "Multiple calls to Text(), not clipped (slow)\0"); + ImGui::Text("Buffer contents: %d lines, %d bytes", lines, log.size()); + if (ImGui::Button("Clear")) { log.clear(); lines = 0; } + ImGui::SameLine(); + if (ImGui::Button("Add 1000 lines")) + { + for (int i = 0; i < 1000; i++) + log.appendf("%i The quick brown fox jumps over the lazy dog\n", lines + i); + lines += 1000; + } + ImGui::BeginChild("Log"); + switch (test_type) + { + case 0: + // Single call to TextUnformatted() with a big buffer + ImGui::TextUnformatted(log.begin(), log.end()); + break; + case 1: + { + // Multiple calls to Text(), manually coarsely clipped - demonstrate how to use the ImGuiListClipper helper. + ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(0, 0)); + ImGuiListClipper clipper; + clipper.Begin(lines); + while (clipper.Step()) + for (int i = clipper.DisplayStart; i < clipper.DisplayEnd; i++) + ImGui::Text("%i The quick brown fox jumps over the lazy dog", i); + ImGui::PopStyleVar(); + break; + } + case 2: + // Multiple calls to Text(), not clipped (slow) + ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(0, 0)); + for (int i = 0; i < lines; i++) + ImGui::Text("%i The quick brown fox jumps over the lazy dog", i); + ImGui::PopStyleVar(); + break; + } + ImGui::EndChild(); + ImGui::End(); +} + +//----------------------------------------------------------------------------- +// [SECTION] Example App: Auto Resize / ShowExampleAppAutoResize() +//----------------------------------------------------------------------------- + +// Demonstrate creating a window which gets auto-resized according to its content. +static void ShowExampleAppAutoResize(bool* p_open) +{ + if (!ImGui::Begin("Example: Auto-resizing window", p_open, ImGuiWindowFlags_AlwaysAutoResize)) + { + ImGui::End(); + return; + } + IMGUI_DEMO_MARKER("Examples/Auto-resizing window"); + + static int lines = 10; + ImGui::TextUnformatted( + "Window will resize every-frame to the size of its content.\n" + "Note that you probably don't want to query the window size to\n" + "output your content because that would create a feedback loop."); + ImGui::SliderInt("Number of lines", &lines, 1, 20); + for (int i = 0; i < lines; i++) + ImGui::Text("%*sThis is line %d", i * 4, "", i); // Pad with space to extend size horizontally + ImGui::End(); +} + +//----------------------------------------------------------------------------- +// [SECTION] Example App: Constrained Resize / ShowExampleAppConstrainedResize() +//----------------------------------------------------------------------------- + +// Demonstrate creating a window with custom resize constraints. +// Note that size constraints currently don't work on a docked window (when in 'docking' branch) +static void ShowExampleAppConstrainedResize(bool* p_open) +{ + struct CustomConstraints + { + // Helper functions to demonstrate programmatic constraints + // FIXME: This doesn't take account of decoration size (e.g. title bar), library should make this easier. + static void AspectRatio(ImGunSizeCallbackData* data) { float aspect_ratio = *(float*)data->UserData; data->DesiredSize.x = IM_MAX(data->CurrentSize.x, data->CurrentSize.y); data->DesiredSize.y = (float)(int)(data->DesiredSize.x / aspect_ratio); } + static void Square(ImGunSizeCallbackData* data) { data->DesiredSize.x = data->DesiredSize.y = IM_MAX(data->CurrentSize.x, data->CurrentSize.y); } + static void Step(ImGunSizeCallbackData* data) { float step = *(float*)data->UserData; data->DesiredSize = ImVec2((int)(data->CurrentSize.x / step + 0.5f) * step, (int)(data->CurrentSize.y / step + 0.5f) * step); } + }; + + const char* test_desc[] = + { + "Between 100x100 and 500x500", + "At least 100x100", + "Resize vertical only", + "Resize horizontal only", + "Width Between 400 and 500", + "Custom: Aspect Ratio 16:9", + "Custom: Always Square", + "Custom: Fixed Steps (100)", + }; + + // Options + static bool auto_resize = false; + static bool window_padding = true; + static int type = 5; // Aspect Ratio + static int display_lines = 10; + + // Submit constraint + float aspect_ratio = 16.0f / 9.0f; + float fixed_step = 100.0f; + if (type == 0) ImGui::SetNextWindowSizeConstraints(ImVec2(100, 100), ImVec2(500, 500)); // Between 100x100 and 500x500 + if (type == 1) ImGui::SetNextWindowSizeConstraints(ImVec2(100, 100), ImVec2(FLT_MAX, FLT_MAX)); // Width > 100, Height > 100 + if (type == 2) ImGui::SetNextWindowSizeConstraints(ImVec2(-1, 0), ImVec2(-1, FLT_MAX)); // Vertical only + if (type == 3) ImGui::SetNextWindowSizeConstraints(ImVec2(0, -1), ImVec2(FLT_MAX, -1)); // Horizontal only + if (type == 4) ImGui::SetNextWindowSizeConstraints(ImVec2(400, -1), ImVec2(500, -1)); // Width Between and 400 and 500 + if (type == 5) ImGui::SetNextWindowSizeConstraints(ImVec2(0, 0), ImVec2(FLT_MAX, FLT_MAX), CustomConstraints::AspectRatio, (void*)&aspect_ratio); // Aspect ratio + if (type == 6) ImGui::SetNextWindowSizeConstraints(ImVec2(0, 0), ImVec2(FLT_MAX, FLT_MAX), CustomConstraints::Square); // Always Square + if (type == 7) ImGui::SetNextWindowSizeConstraints(ImVec2(0, 0), ImVec2(FLT_MAX, FLT_MAX), CustomConstraints::Step, (void*)&fixed_step); // Fixed Step + + // Submit window + if (!window_padding) + ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(0.0f, 0.0f)); + const ImGuiWindowFlags window_flags = auto_resize ? ImGuiWindowFlags_AlwaysAutoResize : 0; + const bool window_open = ImGui::Begin("Example: Constrained Resize", p_open, window_flags); + if (!window_padding) + ImGui::PopStyleVar(); + if (window_open) + { + IMGUI_DEMO_MARKER("Examples/Constrained Resizing window"); + if (ImGui::GetIO().KeyShift) + { + // Display a dummy viewport (in your real app you would likely use ImageButton() to display a texture. + ImVec2 avail_size = ImGui::GetContentRegionAvail(); + ImVec2 pos = ImGui::GetCursorScreenPos(); + ImGui::ColorButton("viewport", ImVec4(0.5f, 0.2f, 0.5f, 1.0f), ImGuiColorEditFlags_NoTooltip | ImGuiColorEditFlags_NoDragDrop, avail_size); + ImGui::SetCursorScreenPos(ImVec2(pos.x + 10, pos.y + 10)); + ImGui::Text("%.2f x %.2f", avail_size.x, avail_size.y); + } + else + { + ImGui::Text("(Hold SHIFT to display a dummy viewport)"); + if (ImGui::Button("Set 200x200")) { ImGui::SetWindowSize(ImVec2(200, 200)); } ImGui::SameLine(); + if (ImGui::Button("Set 500x500")) { ImGui::SetWindowSize(ImVec2(500, 500)); } ImGui::SameLine(); + if (ImGui::Button("Set 800x200")) { ImGui::SetWindowSize(ImVec2(800, 200)); } + ImGui::SetNextItemWidth(ImGui::GetFontSize() * 20); + ImGui::Combo("Constraint", &type, test_desc, IM_ARRAYSIZE(test_desc)); + ImGui::SetNextItemWidth(ImGui::GetFontSize() * 20); + ImGui::DragInt("Lines", &display_lines, 0.2f, 1, 100); + ImGui::Checkbox("Auto-resize", &auto_resize); + ImGui::Checkbox("Window padding", &window_padding); + for (int i = 0; i < display_lines; i++) + ImGui::Text("%*sHello, sailor! Making this line long enough for the example.", i * 4, ""); + } + } + ImGui::End(); +} + +//----------------------------------------------------------------------------- +// [SECTION] Example App: Simple overlay / ShowExampleAppSimpleOverlay() +//----------------------------------------------------------------------------- + +// Demonstrate creating a simple static window with no decoration +// + a context-menu to choose which corner of the screen to use. +static void ShowExampleAppSimpleOverlay(bool* p_open) +{ + static int location = 0; + ImGuiIO& io = ImGui::GetIO(); + ImGuiWindowFlags window_flags = ImGuiWindowFlags_NoDecoration | ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_NoFocusOnAppearing | ImGuiWindowFlags_NoNav; + if (location >= 0) + { + const float PAD = 10.0f; + const ImGuiViewport* viewport = ImGui::GetMainViewport(); + ImVec2 work_pos = viewport->WorkPos; // Use work area to avoid menu-bar/task-bar, if any! + ImVec2 work_size = viewport->WorkSize; + ImVec2 window_pos, window_pos_pivot; + window_pos.x = (location & 1) ? (work_pos.x + work_size.x - PAD) : (work_pos.x + PAD); + window_pos.y = (location & 2) ? (work_pos.y + work_size.y - PAD) : (work_pos.y + PAD); + window_pos_pivot.x = (location & 1) ? 1.0f : 0.0f; + window_pos_pivot.y = (location & 2) ? 1.0f : 0.0f; + ImGui::SetNextWindowPos(window_pos, ImGuiCond_Always, window_pos_pivot); + window_flags |= ImGuiWindowFlags_NoMove; + } + else if (location == -2) + { + // Center window + ImGui::SetNextWindowPos(ImGui::GetMainViewport()->GetCenter(), ImGuiCond_Always, ImVec2(0.5f, 0.5f)); + window_flags |= ImGuiWindowFlags_NoMove; + } + ImGui::SetNextWindowBgAlpha(0.35f); // Transparent background + if (ImGui::Begin("Example: Simple overlay", p_open, window_flags)) + { + IMGUI_DEMO_MARKER("Examples/Simple Overlay"); + ImGui::Text("Simple overlay\n" "(right-click to change position)"); + ImGui::Separator(); + if (ImGui::IsMousePosValid()) + ImGui::Text("Mouse Position: (%.1f,%.1f)", io.MousePos.x, io.MousePos.y); + else + ImGui::Text("Mouse Position: "); + if (ImGui::BeginPopupContextWindow()) + { + if (ImGui::MenuItem("Custom", NULL, location == -1)) location = -1; + if (ImGui::MenuItem("Center", NULL, location == -2)) location = -2; + if (ImGui::MenuItem("Top-left", NULL, location == 0)) location = 0; + if (ImGui::MenuItem("Top-right", NULL, location == 1)) location = 1; + if (ImGui::MenuItem("Bottom-left", NULL, location == 2)) location = 2; + if (ImGui::MenuItem("Bottom-right", NULL, location == 3)) location = 3; + if (p_open && ImGui::MenuItem("Close")) *p_open = false; + ImGui::EndPopup(); + } + } + ImGui::End(); +} + +//----------------------------------------------------------------------------- +// [SECTION] Example App: Fullscreen window / ShowExampleAppFullscreen() +//----------------------------------------------------------------------------- + +// Demonstrate creating a window covering the entire screen/viewport +static void ShowExampleAppFullscreen(bool* p_open) +{ + static bool use_work_area = true; + static ImGuiWindowFlags flags = ImGuiWindowFlags_NoDecoration | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoSavedSettings; + + // We demonstrate using the full viewport area or the work area (without menu-bars, task-bars etc.) + // Based on your use case you may want one or the other. + const ImGuiViewport* viewport = ImGui::GetMainViewport(); + ImGui::SetNextWindowPos(use_work_area ? viewport->WorkPos : viewport->Pos); + ImGui::SetNextWindowSize(use_work_area ? viewport->WorkSize : viewport->Size); + + if (ImGui::Begin("Example: Fullscreen window", p_open, flags)) + { + ImGui::Checkbox("Use work area instead of main area", &use_work_area); + ImGui::SameLine(); + HelpMarker("Main Area = entire viewport,\nWork Area = entire viewport minus sections used by the main menu bars, task bars etc.\n\nEnable the main-menu bar in Examples menu to see the difference."); + + ImGui::CheckboxFlags("ImGuiWindowFlags_NoBackground", &flags, ImGuiWindowFlags_NoBackground); + ImGui::CheckboxFlags("ImGuiWindowFlags_NoDecoration", &flags, ImGuiWindowFlags_NoDecoration); + ImGui::Indent(); + ImGui::CheckboxFlags("ImGuiWindowFlags_NoTitleBar", &flags, ImGuiWindowFlags_NoTitleBar); + ImGui::CheckboxFlags("ImGuiWindowFlags_NoCollapse", &flags, ImGuiWindowFlags_NoCollapse); + ImGui::CheckboxFlags("ImGuiWindowFlags_NoScrollbar", &flags, ImGuiWindowFlags_NoScrollbar); + ImGui::Unindent(); + + if (p_open && ImGui::Button("Close this window")) + *p_open = false; + } + ImGui::End(); +} + +//----------------------------------------------------------------------------- +// [SECTION] Example App: Manipulating Window Titles / ShowExampleAppWindowTitles() +//----------------------------------------------------------------------------- + +// Demonstrate the use of "##" and "###" in identifiers to manipulate ID generation. +// This applies to all regular items as well. +// Read FAQ section "How can I have multiple widgets with the same label?" for details. +static void ShowExampleAppWindowTitles(bool*) +{ + const ImGuiViewport* viewport = ImGui::GetMainViewport(); + const ImVec2 base_pos = viewport->Pos; + + // By default, Windows are uniquely identified by their title. + // You can use the "##" and "###" markers to manipulate the display/ID. + + // Using "##" to display same title but have unique identifier. + ImGui::SetNextWindowPos(ImVec2(base_pos.x + 100, base_pos.y + 100), ImGuiCond_FirstUseEver); + ImGui::Begin("Same title as another window##1"); + IMGUI_DEMO_MARKER("Examples/Manipulating window titles"); + ImGui::Text("This is window 1.\nMy title is the same as window 2, but my identifier is unique."); + ImGui::End(); + + ImGui::SetNextWindowPos(ImVec2(base_pos.x + 100, base_pos.y + 200), ImGuiCond_FirstUseEver); + ImGui::Begin("Same title as another window##2"); + ImGui::Text("This is window 2.\nMy title is the same as window 1, but my identifier is unique."); + ImGui::End(); + + // Using "###" to display a changing title but keep a static identifier "AnimatedTitle" + char buf[128]; + sprintf(buf, "Animated title %c %d###AnimatedTitle", "|/-\\"[(int)(ImGui::GetTime() / 0.25f) & 3], ImGui::GetFrameCount()); + ImGui::SetNextWindowPos(ImVec2(base_pos.x + 100, base_pos.y + 300), ImGuiCond_FirstUseEver); + ImGui::Begin(buf); + ImGui::Text("This window has a changing title."); + ImGui::End(); +} + +//----------------------------------------------------------------------------- +// [SECTION] Example App: Custom Rendering using ImDrawList API / ShowExampleAppCustomRendering() +//----------------------------------------------------------------------------- + +// Demonstrate using the low-level ImDrawList to draw custom shapes. +static void ShowExampleAppCustomRendering(bool* p_open) +{ + if (!ImGui::Begin("Example: Custom rendering", p_open)) + { + ImGui::End(); + return; + } + IMGUI_DEMO_MARKER("Examples/Custom Rendering"); + + // Tip: If you do a lot of custom rendering, you probably want to use your own geometrical types and benefit of + // overloaded operators, etc. Define IM_VEC2_CLASS_EXTRA in imconfig.h to create implicit conversions between your + // types and ImVec2/ImVec4. Dear ImGui defines overloaded operators but they are internal to imgui.cpp and not + // exposed outside (to avoid messing with your types) In this example we are not using the maths operators! + + if (ImGui::BeginTabBar("##TabBar")) + { + if (ImGui::BeginTabItem("Primitives")) + { + ImGui::PushItemWidth(-ImGui::GetFontSize() * 15); + ImDrawList* draw_list = ImGui::GetWindowDrawList(); + + // Draw gradients + // (note that those are currently exacerbating our sRGB/Linear issues) + // Calling ImGui::GetColorU32() multiplies the given colors by the current Style Alpha, but you may pass the IM_COL32() directly as well.. + ImGui::Text("Gradients"); + ImVec2 gradient_size = ImVec2(ImGui::CalcItemWidth(), ImGui::GetFrameHeight()); + { + ImVec2 p0 = ImGui::GetCursorScreenPos(); + ImVec2 p1 = ImVec2(p0.x + gradient_size.x, p0.y + gradient_size.y); + ImU32 col_a = ImGui::GetColorU32(IM_COL32(0, 0, 0, 255)); + ImU32 col_b = ImGui::GetColorU32(IM_COL32(255, 255, 255, 255)); + draw_list->AddRectFilledMultiColor(p0, p1, col_a, col_b, col_b, col_a); + ImGui::InvisibleButton("##gradient1", gradient_size); + } + { + ImVec2 p0 = ImGui::GetCursorScreenPos(); + ImVec2 p1 = ImVec2(p0.x + gradient_size.x, p0.y + gradient_size.y); + ImU32 col_a = ImGui::GetColorU32(IM_COL32(0, 255, 0, 255)); + ImU32 col_b = ImGui::GetColorU32(IM_COL32(255, 0, 0, 255)); + draw_list->AddRectFilledMultiColor(p0, p1, col_a, col_b, col_b, col_a); + ImGui::InvisibleButton("##gradient2", gradient_size); + } + + // Draw a bunch of primitives + ImGui::Text("All primitives"); + static float sz = 36.0f; + static float thickness = 3.0f; + static int ngon_sides = 6; + static bool circle_segments_override = false; + static int circle_segments_override_v = 12; + static bool curve_segments_override = false; + static int curve_segments_override_v = 8; + static ImVec4 colf = ImVec4(1.0f, 1.0f, 0.4f, 1.0f); + ImGui::DragFloat("Size", &sz, 0.2f, 2.0f, 100.0f, "%.0f"); + ImGui::DragFloat("Thickness", &thickness, 0.05f, 1.0f, 8.0f, "%.02f"); + ImGui::SliderInt("N-gon sides", &ngon_sides, 3, 12); + ImGui::Checkbox("##circlesegmentoverride", &circle_segments_override); + ImGui::SameLine(0.0f, ImGui::GetStyle().ItemInnerSpacing.x); + circle_segments_override |= ImGui::SliderInt("Circle segments override", &circle_segments_override_v, 3, 40); + ImGui::Checkbox("##curvessegmentoverride", &curve_segments_override); + ImGui::SameLine(0.0f, ImGui::GetStyle().ItemInnerSpacing.x); + curve_segments_override |= ImGui::SliderInt("Curves segments override", &curve_segments_override_v, 3, 40); + ImGui::ColorEdit4("Color", &colf.x); + + const ImVec2 p = ImGui::GetCursorScreenPos(); + const ImU32 col = ImColor(colf); + const float spacing = 10.0f; + const ImDrawFlags corners_tl_br = ImDrawFlags_RoundCornersTopLeft | ImDrawFlags_RoundCornersBottomRight; + const float rounding = sz / 5.0f; + const int circle_segments = circle_segments_override ? circle_segments_override_v : 0; + const int curve_segments = curve_segments_override ? curve_segments_override_v : 0; + float x = p.x + 4.0f; + float y = p.y + 4.0f; + for (int n = 0; n < 2; n++) + { + // First line uses a thickness of 1.0f, second line uses the configurable thickness + float th = (n == 0) ? 1.0f : thickness; + draw_list->AddNgon(ImVec2(x + sz*0.5f, y + sz*0.5f), sz*0.5f, col, ngon_sides, th); x += sz + spacing; // N-gon + draw_list->AddCircle(ImVec2(x + sz*0.5f, y + sz*0.5f), sz*0.5f, col, circle_segments, th); x += sz + spacing; // Circle + draw_list->AddRect(ImVec2(x, y), ImVec2(x + sz, y + sz), col, 0.0f, ImDrawFlags_None, th); x += sz + spacing; // Square + draw_list->AddRect(ImVec2(x, y), ImVec2(x + sz, y + sz), col, rounding, ImDrawFlags_None, th); x += sz + spacing; // Square with all rounded corners + draw_list->AddRect(ImVec2(x, y), ImVec2(x + sz, y + sz), col, rounding, corners_tl_br, th); x += sz + spacing; // Square with two rounded corners + draw_list->AddTriangle(ImVec2(x+sz*0.5f,y), ImVec2(x+sz, y+sz-0.5f), ImVec2(x, y+sz-0.5f), col, th);x += sz + spacing; // Triangle + //draw_list->AddTriangle(ImVec2(x+sz*0.2f,y), ImVec2(x, y+sz-0.5f), ImVec2(x+sz*0.4f, y+sz-0.5f), col, th);x+= sz*0.4f + spacing; // Thin triangle + draw_list->AddLine(ImVec2(x, y), ImVec2(x + sz, y), col, th); x += sz + spacing; // Horizontal line (note: drawing a filled rectangle will be faster!) + draw_list->AddLine(ImVec2(x, y), ImVec2(x, y + sz), col, th); x += spacing; // Vertical line (note: drawing a filled rectangle will be faster!) + draw_list->AddLine(ImVec2(x, y), ImVec2(x + sz, y + sz), col, th); x += sz + spacing; // Diagonal line + + // Quadratic Bezier Curve (3 control points) + ImVec2 cp3[3] = { ImVec2(x, y + sz * 0.6f), ImVec2(x + sz * 0.5f, y - sz * 0.4f), ImVec2(x + sz, y + sz) }; + draw_list->AddBezierQuadratic(cp3[0], cp3[1], cp3[2], col, th, curve_segments); x += sz + spacing; + + // Cubic Bezier Curve (4 control points) + ImVec2 cp4[4] = { ImVec2(x, y), ImVec2(x + sz * 1.3f, y + sz * 0.3f), ImVec2(x + sz - sz * 1.3f, y + sz - sz * 0.3f), ImVec2(x + sz, y + sz) }; + draw_list->AddBezierCubic(cp4[0], cp4[1], cp4[2], cp4[3], col, th, curve_segments); + + x = p.x + 4; + y += sz + spacing; + } + draw_list->AddNgonFilled(ImVec2(x + sz * 0.5f, y + sz * 0.5f), sz*0.5f, col, ngon_sides); x += sz + spacing; // N-gon + draw_list->AddCircleFilled(ImVec2(x + sz*0.5f, y + sz*0.5f), sz*0.5f, col, circle_segments); x += sz + spacing; // Circle + draw_list->AddRectFilled(ImVec2(x, y), ImVec2(x + sz, y + sz), col); x += sz + spacing; // Square + draw_list->AddRectFilled(ImVec2(x, y), ImVec2(x + sz, y + sz), col, 10.0f); x += sz + spacing; // Square with all rounded corners + draw_list->AddRectFilled(ImVec2(x, y), ImVec2(x + sz, y + sz), col, 10.0f, corners_tl_br); x += sz + spacing; // Square with two rounded corners + draw_list->AddTriangleFilled(ImVec2(x+sz*0.5f,y), ImVec2(x+sz, y+sz-0.5f), ImVec2(x, y+sz-0.5f), col); x += sz + spacing; // Triangle + //draw_list->AddTriangleFilled(ImVec2(x+sz*0.2f,y), ImVec2(x, y+sz-0.5f), ImVec2(x+sz*0.4f, y+sz-0.5f), col); x += sz*0.4f + spacing; // Thin triangle + draw_list->AddRectFilled(ImVec2(x, y), ImVec2(x + sz, y + thickness), col); x += sz + spacing; // Horizontal line (faster than AddLine, but only handle integer thickness) + draw_list->AddRectFilled(ImVec2(x, y), ImVec2(x + thickness, y + sz), col); x += spacing * 2.0f;// Vertical line (faster than AddLine, but only handle integer thickness) + draw_list->AddRectFilled(ImVec2(x, y), ImVec2(x + 1, y + 1), col); x += sz; // Pixel (faster than AddLine) + draw_list->AddRectFilledMultiColor(ImVec2(x, y), ImVec2(x + sz, y + sz), IM_COL32(0, 0, 0, 255), IM_COL32(255, 0, 0, 255), IM_COL32(255, 255, 0, 255), IM_COL32(0, 255, 0, 255)); + + ImGui::Dummy(ImVec2((sz + spacing) * 10.2f, (sz + spacing) * 3.0f)); + ImGui::PopItemWidth(); + ImGui::EndTabItem(); + } + + if (ImGui::BeginTabItem("Canvas")) + { + static ImVector points; + static ImVec2 scrolling(0.0f, 0.0f); + static bool opt_enable_grid = true; + static bool opt_enable_context_menu = true; + static bool adding_line = false; + + ImGui::Checkbox("Enable grid", &opt_enable_grid); + ImGui::Checkbox("Enable context menu", &opt_enable_context_menu); + ImGui::Text("Mouse Left: drag to add lines,\nMouse Right: drag to scroll, click for context menu."); + + // Typically you would use a BeginChild()/EndChild() pair to benefit from a clipping region + own scrolling. + // Here we demonstrate that this can be replaced by simple offsetting + custom drawing + PushClipRect/PopClipRect() calls. + // To use a child window instead we could use, e.g: + // ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(0, 0)); // Disable padding + // ImGui::PushStyleColor(ImGuiCol_ChildBg, IM_COL32(50, 50, 50, 255)); // Set a background color + // ImGui::BeginChild("canvas", ImVec2(0.0f, 0.0f), true, ImGuiWindowFlags_NoMove); + // ImGui::PopStyleColor(); + // ImGui::PopStyleVar(); + // [...] + // ImGui::EndChild(); + + // Using InvisibleButton() as a convenience 1) it will advance the layout cursor and 2) allows us to use IsItemHovered()/IsItemActive() + ImVec2 canvas_p0 = ImGui::GetCursorScreenPos(); // ImDrawList API uses screen coordinates! + ImVec2 canvas_sz = ImGui::GetContentRegionAvail(); // Resize canvas to what's available + if (canvas_sz.x < 50.0f) canvas_sz.x = 50.0f; + if (canvas_sz.y < 50.0f) canvas_sz.y = 50.0f; + ImVec2 canvas_p1 = ImVec2(canvas_p0.x + canvas_sz.x, canvas_p0.y + canvas_sz.y); + + // Draw border and background color + ImGuiIO& io = ImGui::GetIO(); + ImDrawList* draw_list = ImGui::GetWindowDrawList(); + draw_list->AddRectFilled(canvas_p0, canvas_p1, IM_COL32(50, 50, 50, 255)); + draw_list->AddRect(canvas_p0, canvas_p1, IM_COL32(255, 255, 255, 255)); + + // This will catch our interactions + ImGui::InvisibleButton("canvas", canvas_sz, ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight); + const bool is_hovered = ImGui::IsItemHovered(); // Hovered + const bool is_active = ImGui::IsItemActive(); // Held + const ImVec2 origin(canvas_p0.x + scrolling.x, canvas_p0.y + scrolling.y); // Lock scrolled origin + const ImVec2 mouse_pos_in_canvas(io.MousePos.x - origin.x, io.MousePos.y - origin.y); + + // Add first and second point + if (is_hovered && !adding_line && ImGui::IsMouseClicked(ImGuiMouseButton_Left)) + { + points.push_back(mouse_pos_in_canvas); + points.push_back(mouse_pos_in_canvas); + adding_line = true; + } + if (adding_line) + { + points.back() = mouse_pos_in_canvas; + if (!ImGui::IsMouseDown(ImGuiMouseButton_Left)) + adding_line = false; + } + + // Pan (we use a zero mouse threshold when there's no context menu) + // You may decide to make that threshold dynamic based on whether the mouse is hovering something etc. + const float mouse_threshold_for_pan = opt_enable_context_menu ? -1.0f : 0.0f; + if (is_active && ImGui::IsMouseDragging(ImGuiMouseButton_Right, mouse_threshold_for_pan)) + { + scrolling.x += io.MouseDelta.x; + scrolling.y += io.MouseDelta.y; + } + + // Context menu (under default mouse threshold) + ImVec2 drag_delta = ImGui::GetMouseDragDelta(ImGuiMouseButton_Right); + if (opt_enable_context_menu && drag_delta.x == 0.0f && drag_delta.y == 0.0f) + ImGui::OpenPopupOnItemClick("context", ImGuiPopupFlags_MouseButtonRight); + if (ImGui::BeginPopup("context")) + { + if (adding_line) + points.resize(points.size() - 2); + adding_line = false; + if (ImGui::MenuItem("Remove one", NULL, false, points.Size > 0)) { points.resize(points.size() - 2); } + if (ImGui::MenuItem("Remove all", NULL, false, points.Size > 0)) { points.clear(); } + ImGui::EndPopup(); + } + + // Draw grid + all lines in the canvas + draw_list->PushClipRect(canvas_p0, canvas_p1, true); + if (opt_enable_grid) + { + const float GRID_STEP = 64.0f; + for (float x = fmodf(scrolling.x, GRID_STEP); x < canvas_sz.x; x += GRID_STEP) + draw_list->AddLine(ImVec2(canvas_p0.x + x, canvas_p0.y), ImVec2(canvas_p0.x + x, canvas_p1.y), IM_COL32(200, 200, 200, 40)); + for (float y = fmodf(scrolling.y, GRID_STEP); y < canvas_sz.y; y += GRID_STEP) + draw_list->AddLine(ImVec2(canvas_p0.x, canvas_p0.y + y), ImVec2(canvas_p1.x, canvas_p0.y + y), IM_COL32(200, 200, 200, 40)); + } + for (int n = 0; n < points.Size; n += 2) + draw_list->AddLine(ImVec2(origin.x + points[n].x, origin.y + points[n].y), ImVec2(origin.x + points[n + 1].x, origin.y + points[n + 1].y), IM_COL32(255, 255, 0, 255), 2.0f); + draw_list->PopClipRect(); + + ImGui::EndTabItem(); + } + + if (ImGui::BeginTabItem("Shadows")) + { + static float shadow_thickness = 40.0f; + static ImVec4 shadow_color = ImVec4(0.0f, 0.0f, 0.0f, 1.0f); + static bool shadow_filled = false; + static ImVec4 shape_color = ImVec4(0.9f, 0.6f, 0.3f, 1.0f); + static float shape_rounding = 0.0f; + static ImVec2 shadow_offset(0.0f, 0.0f); + static ImVec4 background_color = ImVec4(0.5f, 0.5f, 0.7f, 1.0f); + static bool wireframe = false; + static bool aa = true; + static int poly_shape_index = 0; + ImGui::Checkbox("Shadow filled", &shadow_filled); + ImGui::SameLine(); + HelpMarker("This will fill the section behind the shape to shadow. It's often unnecessary and wasteful but provided for consistency."); + ImGui::Checkbox("Wireframe shapes", &wireframe); + ImGui::SameLine(); + HelpMarker("This draws the shapes in wireframe so you can see the shadow underneath."); + ImGui::Checkbox("Anti-aliasing", &aa); + + ImGui::DragFloat("Shadow Thickness", &shadow_thickness, 1.0f, 0.0f, 100.0f, "%.02f"); + ImGui::SliderFloat2("Offset", (float*)&shadow_offset, -32.0f, 32.0f); + ImGui::SameLine(); + HelpMarker("Note that currently circles/convex shapes do not support non-zero offsets for unfilled shadows."); + ImGui::ColorEdit4("Background Color", &background_color.x); + ImGui::ColorEdit4("Shadow Color", &shadow_color.x); + ImGui::ColorEdit4("Shape Color", &shape_color.x); + ImGui::DragFloat("Shape Rounding", &shape_rounding, 1.0f, 0.0f, 20.0f, "%.02f"); + ImGui::Combo("Convex shape", &poly_shape_index, "Shape 1\0Shape 2\0Shape 3\0Shape 4\0Shape 4 (winding reversed)"); + + ImDrawList* draw_list = ImGui::GetWindowDrawList(); + ImDrawListFlags old_flags = draw_list->Flags; + + if (aa) + draw_list->Flags |= ~ImDrawListFlags_AntiAliasedFill; + else + draw_list->Flags &= ~ImDrawListFlags_AntiAliasedFill; + + // Fill a strip of background + draw_list->AddRectFilled(ImVec2(ImGui::GetCursorScreenPos().x, ImGui::GetCursorScreenPos().y), ImVec2(ImGui::GetCursorScreenPos().x + ImGui::GetWindowContentRegionMax().x, ImGui::GetCursorScreenPos().y + 200.0f), ImGui::GetColorU32(background_color)); + + // Rectangle + { + ImVec2 p = ImGui::GetCursorScreenPos(); + ImGui::Dummy(ImVec2(200.0f, 200.0f)); + + ImVec2 r1(p.x + 50.0f, p.y + 50.0f); + ImVec2 r2(p.x + 150.0f, p.y + 150.0f); + ImDrawFlags draw_flags = shadow_filled ? ImDrawFlags_None : ImDrawFlags_ShadowCutOutShapeBackground; + draw_list->AddShadowRect(r1, r2, ImGui::GetColorU32(shadow_color), shadow_thickness, shadow_offset, draw_flags, shape_rounding); + + if (wireframe) + draw_list->AddRect(r1, r2, ImGui::GetColorU32(shape_color), shape_rounding); + else + draw_list->AddRectFilled(r1, r2, ImGui::GetColorU32(shape_color), shape_rounding); + } + + ImGui::SameLine(); + + // Circle + { + ImVec2 p = ImGui::GetCursorScreenPos(); + ImGui::Dummy(ImVec2(200.0f, 200.0f)); + + // FIXME-SHADOWS: Offset forced to zero when shadow is not filled because it isn't supported + float off = 10.0f; + ImVec2 r1(p.x + 50.0f + off, p.y + 50.0f + off); + ImVec2 r2(p.x + 150.0f - off, p.y + 150.0f - off); + ImVec2 center(p.x + 100.0f, p.y + 100.0f); + ImDrawFlags draw_flags = shadow_filled ? ImDrawFlags_None : ImDrawFlags_ShadowCutOutShapeBackground; + draw_list->AddShadowCircle(center, 50.0f, ImGui::GetColorU32(shadow_color), shadow_thickness, shadow_filled ? shadow_offset : ImVec2(0.0f, 0.0f), draw_flags, 0); + + if (wireframe) + draw_list->AddCircle(center, 50.0f, ImGui::GetColorU32(shape_color), 0); + else + draw_list->AddCircleFilled(center, 50.0f, ImGui::GetColorU32(shape_color), 0); + } + + ImGui::SameLine(); + + // Convex shape + { + ImVec2 pos = ImGui::GetCursorScreenPos(); + ImGui::Dummy(ImVec2(200.0f, 200.0f)); + + const ImVec2 poly_centre(pos.x + 50.0f, pos.y + 100.0f); + ImVec2 poly_points[8]; + int poly_points_count = 0; + + switch (poly_shape_index) + { + default: + case 0: + { + poly_points[0] = ImVec2(poly_centre.x - 32.0f, poly_centre.y); + poly_points[1] = ImVec2(poly_centre.x - 24.0f, poly_centre.y + 24.0f); + poly_points[2] = ImVec2(poly_centre.x, poly_centre.y + 32.0f); + poly_points[3] = ImVec2(poly_centre.x + 24.0f, poly_centre.y + 24.0f); + poly_points[4] = ImVec2(poly_centre.x + 32.0f, poly_centre.y); + poly_points[5] = ImVec2(poly_centre.x + 24.0f, poly_centre.y - 24.0f); + poly_points[6] = ImVec2(poly_centre.x, poly_centre.y - 32.0f); + poly_points[7] = ImVec2(poly_centre.x - 32.0f, poly_centre.y - 32.0f); + poly_points_count = 8; + break; + } + case 1: + { + poly_points[0] = ImVec2(poly_centre.x + 40.0f, poly_centre.y - 20.0f); + poly_points[1] = ImVec2(poly_centre.x, poly_centre.y + 32.0f); + poly_points[2] = ImVec2(poly_centre.x - 24.0f, poly_centre.y - 32.0f); + poly_points_count = 3; + break; + } + case 2: + { + poly_points[0] = ImVec2(poly_centre.x - 32.0f, poly_centre.y); + poly_points[1] = ImVec2(poly_centre.x, poly_centre.y + 32.0f); + poly_points[2] = ImVec2(poly_centre.x + 32.0f, poly_centre.y); + poly_points[3] = ImVec2(poly_centre.x, poly_centre.y - 32.0f); + poly_points_count = 4; + break; + } + case 3: + { + poly_points[0] = ImVec2(poly_centre.x - 4.0f, poly_centre.y - 20.0f); + poly_points[1] = ImVec2(poly_centre.x + 12.0f, poly_centre.y + 2.0f); + poly_points[2] = ImVec2(poly_centre.x + 8.0f, poly_centre.y + 16.0f); + poly_points[3] = ImVec2(poly_centre.x, poly_centre.y + 32.0f); + poly_points[4] = ImVec2(poly_centre.x - 16.0f, poly_centre.y - 32.0f); + poly_points_count = 5; + break; + } + case 4: // Same as test case 3 but with reversed winding + { + poly_points[0] = ImVec2(poly_centre.x - 16.0f, poly_centre.y - 32.0f); + poly_points[1] = ImVec2(poly_centre.x, poly_centre.y + 32.0f); + poly_points[2] = ImVec2(poly_centre.x + 8.0f, poly_centre.y + 16.0f); + poly_points[3] = ImVec2(poly_centre.x + 12.0f, poly_centre.y + 2.0f); + poly_points[4] = ImVec2(poly_centre.x - 4.0f, poly_centre.y - 20.0f); + poly_points_count = 5; + break; + } + } + + // FIXME-SHADOWS: Offset forced to zero when shadow is not filled because it isn't supported + ImDrawFlags draw_flags = shadow_filled ? ImDrawFlags_None : ImDrawFlags_ShadowCutOutShapeBackground; + draw_list->AddShadowConvexPoly(poly_points, poly_points_count, ImGui::GetColorU32(shadow_color), shadow_thickness, shadow_filled ? shadow_offset : ImVec2(0.0f, 0.0f), draw_flags); + + if (wireframe) + draw_list->AddPolyline(poly_points, poly_points_count, ImGui::GetColorU32(shape_color), true, 1.0f); + else + draw_list->AddConvexPolyFilled(poly_points, poly_points_count, ImGui::GetColorU32(shape_color)); + } + + draw_list->Flags = old_flags; + + ImGui::EndTabItem(); + } + + if (ImGui::BeginTabItem("BG/FG draw lists")) + { + static bool draw_bg = true; + static bool draw_fg = true; + ImGui::Checkbox("Draw in Background draw list", &draw_bg); + ImGui::SameLine(); HelpMarker("The Background draw list will be rendered below every Dear ImGui windows."); + ImGui::Checkbox("Draw in Foreground draw list", &draw_fg); + ImGui::SameLine(); HelpMarker("The Foreground draw list will be rendered over every Dear ImGui windows."); + ImVec2 window_pos = ImGui::GetWindowPos(); + ImVec2 window_size = ImGui::GetWindowSize(); + ImVec2 window_center = ImVec2(window_pos.x + window_size.x * 0.5f, window_pos.y + window_size.y * 0.5f); + if (draw_bg) + ImGui::GetBackgroundDrawList()->AddCircle(window_center, window_size.x * 0.6f, IM_COL32(255, 0, 0, 200), 0, 10 + 4); + if (draw_fg) + ImGui::GetForegroundDrawList()->AddCircle(window_center, window_size.y * 0.6f, IM_COL32(0, 255, 0, 200), 0, 10); + ImGui::EndTabItem(); + } + + // Demonstrate out-of-order rendering via channels splitting + // We use functions in ImDrawList as each draw list contains a convenience splitter, + // but you can also instantiate your own ImDrawListSplitter if you need to nest them. + if (ImGui::BeginTabItem("Draw Channels")) + { + ImDrawList* draw_list = ImGui::GetWindowDrawList(); + { + ImGui::Text("Blue shape is drawn first: appears in back"); + ImGui::Text("Red shape is drawn after: appears in front"); + ImVec2 p0 = ImGui::GetCursorScreenPos(); + draw_list->AddRectFilled(ImVec2(p0.x, p0.y), ImVec2(p0.x + 50, p0.y + 50), IM_COL32(0, 0, 255, 255)); // Blue + draw_list->AddRectFilled(ImVec2(p0.x + 25, p0.y + 25), ImVec2(p0.x + 75, p0.y + 75), IM_COL32(255, 0, 0, 255)); // Red + ImGui::Dummy(ImVec2(75, 75)); + } + ImGui::Separator(); + { + ImGui::Text("Blue shape is drawn first, into channel 1: appears in front"); + ImGui::Text("Red shape is drawn after, into channel 0: appears in back"); + ImVec2 p1 = ImGui::GetCursorScreenPos(); + + // Create 2 channels and draw a Blue shape THEN a Red shape. + // You can create any number of channels. Tables API use 1 channel per column in order to better batch draw calls. + draw_list->ChannelsSplit(2); + draw_list->ChannelsSetCurrent(1); + draw_list->AddRectFilled(ImVec2(p1.x, p1.y), ImVec2(p1.x + 50, p1.y + 50), IM_COL32(0, 0, 255, 255)); // Blue + draw_list->ChannelsSetCurrent(0); + draw_list->AddRectFilled(ImVec2(p1.x + 25, p1.y + 25), ImVec2(p1.x + 75, p1.y + 75), IM_COL32(255, 0, 0, 255)); // Red + + // Flatten/reorder channels. Red shape is in channel 0 and it appears below the Blue shape in channel 1. + // This works by copying draw indices only (vertices are not copied). + draw_list->ChannelsMerge(); + ImGui::Dummy(ImVec2(75, 75)); + ImGui::Text("After reordering, contents of channel 0 appears below channel 1."); + } + ImGui::EndTabItem(); + } + + ImGui::EndTabBar(); + } + + ImGui::End(); +} + +//----------------------------------------------------------------------------- +// [SECTION] Example App: Documents Handling / ShowExampleAppDocuments() +//----------------------------------------------------------------------------- + +// Simplified structure to mimic a Document model +struct MyDocument +{ + const char* Name; // Document title + bool Open; // Set when open (we keep an array of all available documents to simplify demo code!) + bool OpenPrev; // Copy of Open from last update. + bool Dirty; // Set when the document has been modified + bool WantClose; // Set when the document + ImVec4 Color; // An arbitrary variable associated to the document + + MyDocument(const char* name, bool open = true, const ImVec4& color = ImVec4(1.0f, 1.0f, 1.0f, 1.0f)) + { + Name = name; + Open = OpenPrev = open; + Dirty = false; + WantClose = false; + Color = color; + } + void DoOpen() { Open = true; } + void DoQueueClose() { WantClose = true; } + void DoForceClose() { Open = false; Dirty = false; } + void DoSave() { Dirty = false; } + + // Display placeholder contents for the Document + static void DisplayContents(MyDocument* doc) + { + ImGui::PushID(doc); + ImGui::Text("Document \"%s\"", doc->Name); + ImGui::PushStyleColor(ImGuiCol_Text, doc->Color); + ImGui::TextWrapped("Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."); + ImGui::PopStyleColor(); + if (ImGui::Button("Modify", ImVec2(100, 0))) + doc->Dirty = true; + ImGui::SameLine(); + if (ImGui::Button("Save", ImVec2(100, 0))) + doc->DoSave(); + ImGui::ColorEdit3("color", &doc->Color.x); // Useful to test drag and drop and hold-dragged-to-open-tab behavior. + ImGui::PopID(); + } + + // Display context menu for the Document + static void DisplayContextMenu(MyDocument* doc) + { + if (!ImGui::BeginPopupContextItem()) + return; + + char buf[256]; + sprintf(buf, "Save %s", doc->Name); + if (ImGui::MenuItem(buf, "CTRL+S", false, doc->Open)) + doc->DoSave(); + if (ImGui::MenuItem("Close", "CTRL+W", false, doc->Open)) + doc->DoQueueClose(); + ImGui::EndPopup(); + } +}; + +struct ExampleAppDocuments +{ + ImVector Documents; + + ExampleAppDocuments() + { + Documents.push_back(MyDocument("Lettuce", true, ImVec4(0.4f, 0.8f, 0.4f, 1.0f))); + Documents.push_back(MyDocument("Eggplant", true, ImVec4(0.8f, 0.5f, 1.0f, 1.0f))); + Documents.push_back(MyDocument("Carrot", true, ImVec4(1.0f, 0.8f, 0.5f, 1.0f))); + Documents.push_back(MyDocument("Tomato", false, ImVec4(1.0f, 0.3f, 0.4f, 1.0f))); + Documents.push_back(MyDocument("A Rather Long Title", false)); + Documents.push_back(MyDocument("Some Document", false)); + } +}; + +// [Optional] Notify the system of Tabs/Windows closure that happened outside the regular tab interface. +// If a tab has been closed programmatically (aka closed from another source such as the Checkbox() in the demo, +// as opposed to clicking on the regular tab closing button) and stops being submitted, it will take a frame for +// the tab bar to notice its absence. During this frame there will be a gap in the tab bar, and if the tab that has +// disappeared was the selected one, the tab bar will report no selected tab during the frame. This will effectively +// give the impression of a flicker for one frame. +// We call SetTabItemClosed() to manually notify the Tab Bar or Docking system of removed tabs to avoid this glitch. +// Note that this completely optional, and only affect tab bars with the ImGuiTabBarFlags_Reorderable flag. +static void NotifyOfDocumentsClosedElsewhere(ExampleAppDocuments& app) +{ + for (MyDocument& doc : app.Documents) + { + if (!doc.Open && doc.OpenPrev) + ImGui::SetTabItemClosed(doc.Name); + doc.OpenPrev = doc.Open; + } +} + +void ShowExampleAppDocuments(bool* p_open) +{ + static ExampleAppDocuments app; + + // Options + static bool opt_reorderable = true; + static ImGuiTabBarFlags opt_fitting_flags = ImGuiTabBarFlags_FittingPolicyDefault_; + + bool window_contents_visible = ImGui::Begin("Example: Documents", p_open, ImGuiWindowFlags_MenuBar); + if (!window_contents_visible) + { + ImGui::End(); + return; + } + + // Menu + if (ImGui::BeginMenuBar()) + { + if (ImGui::BeginMenu("File")) + { + int open_count = 0; + for (MyDocument& doc : app.Documents) + open_count += doc.Open ? 1 : 0; + + if (ImGui::BeginMenu("Open", open_count < app.Documents.Size)) + { + for (MyDocument& doc : app.Documents) + if (!doc.Open && ImGui::MenuItem(doc.Name)) + doc.DoOpen(); + ImGui::EndMenu(); + } + if (ImGui::MenuItem("Close All Documents", NULL, false, open_count > 0)) + for (MyDocument& doc : app.Documents) + doc.DoQueueClose(); + if (ImGui::MenuItem("Exit", "Ctrl+F4") && p_open) + *p_open = false; + ImGui::EndMenu(); + } + ImGui::EndMenuBar(); + } + + // [Debug] List documents with one checkbox for each + for (int doc_n = 0; doc_n < app.Documents.Size; doc_n++) + { + MyDocument& doc = app.Documents[doc_n]; + if (doc_n > 0) + ImGui::SameLine(); + ImGui::PushID(&doc); + if (ImGui::Checkbox(doc.Name, &doc.Open)) + if (!doc.Open) + doc.DoForceClose(); + ImGui::PopID(); + } + + ImGui::Separator(); + + // About the ImGuiWindowFlags_UnsavedDocument / ImGuiTabItemFlags_UnsavedDocument flags. + // They have multiple effects: + // - Display a dot next to the title. + // - Tab is selected when clicking the X close button. + // - Closure is not assumed (will wait for user to stop submitting the tab). + // Otherwise closure is assumed when pressing the X, so if you keep submitting the tab may reappear at end of tab bar. + // We need to assume closure by default otherwise waiting for "lack of submission" on the next frame would leave an empty + // hole for one-frame, both in the tab-bar and in tab-contents when closing a tab/window. + // The rarely used SetTabItemClosed() function is a way to notify of programmatic closure to avoid the one-frame hole. + + // Submit Tab Bar and Tabs + { + ImGuiTabBarFlags tab_bar_flags = (opt_fitting_flags) | (opt_reorderable ? ImGuiTabBarFlags_Reorderable : 0); + if (ImGui::BeginTabBar("##tabs", tab_bar_flags)) + { + if (opt_reorderable) + NotifyOfDocumentsClosedElsewhere(app); + + // [DEBUG] Stress tests + //if ((ImGui::GetFrameCount() % 30) == 0) docs[1].Open ^= 1; // [DEBUG] Automatically show/hide a tab. Test various interactions e.g. dragging with this on. + //if (ImGui::GetIO().KeyCtrl) ImGui::SetTabItemSelected(docs[1].Name); // [DEBUG] Test SetTabItemSelected(), probably not very useful as-is anyway.. + + // Submit Tabs + for (MyDocument& doc : app.Documents) + { + if (!doc.Open) + continue; + + ImGuiTabItemFlags tab_flags = (doc.Dirty ? ImGuiTabItemFlags_UnsavedDocument : 0); + bool visible = ImGui::BeginTabItem(doc.Name, &doc.Open, tab_flags); + + // Cancel attempt to close when unsaved add to save queue so we can display a popup. + if (!doc.Open && doc.Dirty) + { + doc.Open = true; + doc.DoQueueClose(); + } + + MyDocument::DisplayContextMenu(&doc); + if (visible) + { + MyDocument::DisplayContents(&doc); + ImGui::EndTabItem(); + } + } + + ImGui::EndTabBar(); + } + } + + // Update closing queue + static ImVector close_queue; + if (close_queue.empty()) + { + // Close queue is locked once we started a popup + for (MyDocument& doc : app.Documents) + if (doc.WantClose) + { + doc.WantClose = false; + close_queue.push_back(&doc); + } + } + + // Display closing confirmation UI + if (!close_queue.empty()) + { + int close_queue_unsaved_documents = 0; + for (int n = 0; n < close_queue.Size; n++) + if (close_queue[n]->Dirty) + close_queue_unsaved_documents++; + + if (close_queue_unsaved_documents == 0) + { + // Close documents when all are unsaved + for (int n = 0; n < close_queue.Size; n++) + close_queue[n]->DoForceClose(); + close_queue.clear(); + } + else + { + if (!ImGui::IsPopupOpen("Save?")) + ImGui::OpenPopup("Save?"); + if (ImGui::BeginPopupModal("Save?", NULL, ImGuiWindowFlags_AlwaysAutoResize)) + { + ImGui::Text("Save change to the following items?"); + float item_height = ImGui::GetTextLineHeightWithSpacing(); + if (ImGui::BeginChildFrame(ImGui::GetID("frame"), ImVec2(-FLT_MIN, 6.25f * item_height))) + { + for (int n = 0; n < close_queue.Size; n++) + if (close_queue[n]->Dirty) + ImGui::Text("%s", close_queue[n]->Name); + } + ImGui::EndChildFrame(); + + ImVec2 button_size(ImGui::GetFontSize() * 7.0f, 0.0f); + if (ImGui::Button("Yes", button_size)) + { + for (int n = 0; n < close_queue.Size; n++) + { + if (close_queue[n]->Dirty) + close_queue[n]->DoSave(); + close_queue[n]->DoForceClose(); + } + close_queue.clear(); + ImGui::CloseCurrentPopup(); + } + ImGui::SameLine(); + if (ImGui::Button("No", button_size)) + { + for (int n = 0; n < close_queue.Size; n++) + close_queue[n]->DoForceClose(); + close_queue.clear(); + ImGui::CloseCurrentPopup(); + } + ImGui::SameLine(); + if (ImGui::Button("Cancel", button_size)) + { + close_queue.clear(); + ImGui::CloseCurrentPopup(); + } + ImGui::EndPopup(); + } + } + } + + ImGui::End(); +} + +// End of Demo code +#else + +void ImGui::ShowAboutWindow(bool*) {} +void ImGui::ShowDemoWindow(bool*) {} +void ImGui::ShowUserGuide() {} +void ImGui::ShowStyleEditor(ImGuiStyle*) {} + +#endif + +#endif // #ifndef IMGUI_DISABLE diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_draw.cpp b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_draw.cpp new file mode 100644 index 0000000..7b0ab16 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_draw.cpp @@ -0,0 +1,5290 @@ +// dear imgui, v1.89.9 +// (drawing and font code) + +/* + +Index of this file: + +// [SECTION] STB libraries implementation +// [SECTION] Style functions +// [SECTION] ImDrawList +// [SECTION] ImDrawList Shadow Primitives +// [SECTION] ImDrawListSplitter +// [SECTION] ImDrawData +// [SECTION] Helpers ShadeVertsXXX functions +// [SECTION] ImFontAtlasShadowTexConfig +// [SECTION] ImFontConfig +// [SECTION] ImFontAtlas +// [SECTION] ImFontAtlas glyph ranges helpers +// [SECTION] ImFontGlyphRangesBuilder +// [SECTION] ImFont +// [SECTION] ImGui Internal Render Helpers +// [SECTION] Decompression code +// [SECTION] Default font data (ProggyClean.ttf) + +*/ + +#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) +#define _CRT_SECURE_NO_WARNINGS +#endif + +#ifndef IMGUI_DEFINE_MATH_OPERATORS +#define IMGUI_DEFINE_MATH_OPERATORS +#endif + +#include "imgui.h" +#ifndef IMGUI_DISABLE +#include "imgui_internal.h" +#ifdef IMGUI_ENABLE_FREETYPE +#include "imgui_freetype.h" +#endif + +#include // vsnprintf, sscanf, printf + +// Visual Studio warnings +#ifdef _MSC_VER +#pragma warning (disable: 4127) // condition expression is constant +#pragma warning (disable: 4505) // unreferenced local function has been removed (stb stuff) +#pragma warning (disable: 4996) // 'This function or variable may be unsafe': strcpy, strdup, sprintf, vsnprintf, sscanf, fopen +#pragma warning (disable: 26451) // [Static Analyzer] Arithmetic overflow : Using operator 'xxx' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator 'xxx' to avoid overflow(io.2). +#pragma warning (disable: 26812) // [Static Analyzer] The enum type 'xxx' is unscoped. Prefer 'enum class' over 'enum' (Enum.3). [MSVC Static Analyzer) +#endif + +// Clang/GCC warnings with -Weverything +#if defined(__clang__) +#if __has_warning("-Wunknown-warning-option") +#pragma clang diagnostic ignored "-Wunknown-warning-option" // warning: unknown warning group 'xxx' // not all warnings are known by all Clang versions and they tend to be rename-happy.. so ignoring warnings triggers new warnings on some configuration. Great! +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" // warning: unknown warning group 'xxx' +#pragma clang diagnostic ignored "-Wold-style-cast" // warning: use of old-style cast // yes, they are more terse. +#pragma clang diagnostic ignored "-Wfloat-equal" // warning: comparing floating point with == or != is unsafe // storing and comparing against same constants ok. +#pragma clang diagnostic ignored "-Wglobal-constructors" // warning: declaration requires a global destructor // similar to above, not sure what the exact difference is. +#pragma clang diagnostic ignored "-Wsign-conversion" // warning: implicit conversion changes signedness +#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" // warning: zero as null pointer constant // some standard header variations use #define NULL 0 +#pragma clang diagnostic ignored "-Wcomma" // warning: possible misuse of comma operator here +#pragma clang diagnostic ignored "-Wreserved-id-macro" // warning: macro name is a reserved identifier +#pragma clang diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function // using printf() is a misery with this as C++ va_arg ellipsis changes float to double. +#pragma clang diagnostic ignored "-Wimplicit-int-float-conversion" // warning: implicit conversion from 'xxx' to 'float' may lose precision +#pragma clang diagnostic ignored "-Wreserved-identifier" // warning: identifier '_Xxx' is reserved because it starts with '_' followed by a capital letter +#elif defined(__GNUC__) +#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind +#pragma GCC diagnostic ignored "-Wunused-function" // warning: 'xxxx' defined but not used +#pragma GCC diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function +#pragma GCC diagnostic ignored "-Wconversion" // warning: conversion to 'xxxx' from 'xxxx' may alter its value +#pragma GCC diagnostic ignored "-Wstack-protector" // warning: stack protector not protecting local variables: variable length buffer +#pragma GCC diagnostic ignored "-Wclass-memaccess" // [__GNUC__ >= 8] warning: 'memset/memcpy' clearing/writing an object of type 'xxxx' with no trivial copy-assignment; use assignment or value-initialization instead +#endif + +//------------------------------------------------------------------------- +// [SECTION] STB libraries implementation (for stb_truetype and stb_rect_pack) +//------------------------------------------------------------------------- + +// Compile time options: +//#define IMGUI_STB_NAMESPACE ImStb +//#define IMGUI_STB_TRUETYPE_FILENAME "my_folder/stb_truetype.h" +//#define IMGUI_STB_RECT_PACK_FILENAME "my_folder/stb_rect_pack.h" +//#define IMGUI_DISABLE_STB_TRUETYPE_IMPLEMENTATION +//#define IMGUI_DISABLE_STB_RECT_PACK_IMPLEMENTATION + +#ifdef IMGUI_STB_NAMESPACE +namespace IMGUI_STB_NAMESPACE +{ +#endif + +#ifdef _MSC_VER +#pragma warning (push) +#pragma warning (disable: 4456) // declaration of 'xx' hides previous local declaration +#pragma warning (disable: 6011) // (stb_rectpack) Dereferencing NULL pointer 'cur->next'. +#pragma warning (disable: 6385) // (stb_truetype) Reading invalid data from 'buffer': the readable size is '_Old_3`kernel_width' bytes, but '3' bytes may be read. +#pragma warning (disable: 28182) // (stb_rectpack) Dereferencing NULL pointer. 'cur' contains the same NULL value as 'cur->next' did. +#endif + +#if defined(__clang__) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wunused-function" +#pragma clang diagnostic ignored "-Wmissing-prototypes" +#pragma clang diagnostic ignored "-Wimplicit-fallthrough" +#pragma clang diagnostic ignored "-Wcast-qual" // warning: cast from 'const xxxx *' to 'xxx *' drops const qualifier +#endif + +#if defined(__GNUC__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wtype-limits" // warning: comparison is always true due to limited range of data type [-Wtype-limits] +#pragma GCC diagnostic ignored "-Wcast-qual" // warning: cast from type 'const xxxx *' to type 'xxxx *' casts away qualifiers +#endif + +#ifndef STB_RECT_PACK_IMPLEMENTATION // in case the user already have an implementation in the _same_ compilation unit (e.g. unity builds) +#ifndef IMGUI_DISABLE_STB_RECT_PACK_IMPLEMENTATION // in case the user already have an implementation in another compilation unit +#define STBRP_STATIC +#define STBRP_ASSERT(x) do { IM_ASSERT(x); } while (0) +#define STBRP_SORT ImQsort +#define STB_RECT_PACK_IMPLEMENTATION +#endif +#ifdef IMGUI_STB_RECT_PACK_FILENAME +#include IMGUI_STB_RECT_PACK_FILENAME +#else +#include "imstb_rectpack.h" +#endif +#endif + +#ifdef IMGUI_ENABLE_STB_TRUETYPE +#ifndef STB_TRUETYPE_IMPLEMENTATION // in case the user already have an implementation in the _same_ compilation unit (e.g. unity builds) +#ifndef IMGUI_DISABLE_STB_TRUETYPE_IMPLEMENTATION // in case the user already have an implementation in another compilation unit +#define STBTT_malloc(x,u) ((void)(u), IM_ALLOC(x)) +#define STBTT_free(x,u) ((void)(u), IM_FREE(x)) +#define STBTT_assert(x) do { IM_ASSERT(x); } while(0) +#define STBTT_fmod(x,y) ImFmod(x,y) +#define STBTT_sqrt(x) ImSqrt(x) +#define STBTT_pow(x,y) ImPow(x,y) +#define STBTT_fabs(x) ImFabs(x) +#define STBTT_ifloor(x) ((int)ImFloorSigned(x)) +#define STBTT_iceil(x) ((int)ImCeil(x)) +#define STBTT_STATIC +#define STB_TRUETYPE_IMPLEMENTATION +#else +#define STBTT_DEF extern +#endif +#ifdef IMGUI_STB_TRUETYPE_FILENAME +#include IMGUI_STB_TRUETYPE_FILENAME +#else +#include "imstb_truetype.h" +#endif +#endif +#endif // IMGUI_ENABLE_STB_TRUETYPE + +#if defined(__GNUC__) +#pragma GCC diagnostic pop +#endif + +#if defined(__clang__) +#pragma clang diagnostic pop +#endif + +#if defined(_MSC_VER) +#pragma warning (pop) +#endif + +#ifdef IMGUI_STB_NAMESPACE +} // namespace ImStb +using namespace IMGUI_STB_NAMESPACE; +#endif + +//----------------------------------------------------------------------------- +// [SECTION] Style functions +//----------------------------------------------------------------------------- + +void ImGui::StyleColorsDark(ImGuiStyle* dst) +{ + ImGuiStyle* style = dst ? dst : &ImGui::GetStyle(); + ImVec4* colors = style->Colors; + + colors[ImGuiCol_Text] = ImVec4(1.00f, 1.00f, 1.00f, 1.00f); + colors[ImGuiCol_TextDisabled] = ImVec4(0.50f, 0.50f, 0.50f, 1.00f); + colors[ImGuiCol_WindowBg] = ImVec4(0.06f, 0.06f, 0.06f, 0.94f); + colors[ImGuiCol_ChildBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_PopupBg] = ImVec4(0.08f, 0.08f, 0.08f, 0.94f); + colors[ImGuiCol_Border] = ImVec4(0.43f, 0.43f, 0.50f, 0.50f); + colors[ImGuiCol_BorderShadow] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_FrameBg] = ImVec4(0.16f, 0.29f, 0.48f, 0.54f); + colors[ImGuiCol_FrameBgHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.40f); + colors[ImGuiCol_FrameBgActive] = ImVec4(0.26f, 0.59f, 0.98f, 0.67f); + colors[ImGuiCol_TitleBg] = ImVec4(0.04f, 0.04f, 0.04f, 1.00f); + colors[ImGuiCol_TitleBgActive] = ImVec4(0.16f, 0.29f, 0.48f, 1.00f); + colors[ImGuiCol_TitleBgCollapsed] = ImVec4(0.00f, 0.00f, 0.00f, 0.51f); + colors[ImGuiCol_MenuBarBg] = ImVec4(0.14f, 0.14f, 0.14f, 1.00f); + colors[ImGuiCol_ScrollbarBg] = ImVec4(0.02f, 0.02f, 0.02f, 0.53f); + colors[ImGuiCol_ScrollbarGrab] = ImVec4(0.31f, 0.31f, 0.31f, 1.00f); + colors[ImGuiCol_ScrollbarGrabHovered] = ImVec4(0.41f, 0.41f, 0.41f, 1.00f); + colors[ImGuiCol_ScrollbarGrabActive] = ImVec4(0.51f, 0.51f, 0.51f, 1.00f); + colors[ImGuiCol_CheckMark] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + colors[ImGuiCol_SliderGrab] = ImVec4(0.24f, 0.52f, 0.88f, 1.00f); + colors[ImGuiCol_SliderGrabActive] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + + + colors[ImGuiCol_Separator] = colors[ImGuiCol_Border]; + colors[ImGuiCol_SeparatorHovered] = ImVec4(0.10f, 0.40f, 0.75f, 0.78f); + colors[ImGuiCol_SeparatorActive] = ImVec4(0.10f, 0.40f, 0.75f, 0.00f); + colors[ImGuiCol_ResizeGrip] = ImVec4(0.26f, 0.59f, 0.98f, 0); + colors[ImGuiCol_ResizeGripHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0); + colors[ImGuiCol_ResizeGripActive] = ImVec4(0.26f, 0.59f, 0.98f, 0); + colors[ImGuiCol_Tab] = ImLerp(colors[ImGuiCol_Header], colors[ImGuiCol_TitleBgActive], 0.80f); + colors[ImGuiCol_TabHovered] = colors[ImGuiCol_HeaderHovered]; + colors[ImGuiCol_TabActive] = ImLerp(colors[ImGuiCol_HeaderActive], colors[ImGuiCol_TitleBgActive], 0.60f); + colors[ImGuiCol_TabUnfocused] = ImLerp(colors[ImGuiCol_Tab], colors[ImGuiCol_TitleBg], 0.80f); + colors[ImGuiCol_TabUnfocusedActive] = ImLerp(colors[ImGuiCol_TabActive], colors[ImGuiCol_TitleBg], 0.40f); + colors[ImGuiCol_PlotLines] = ImVec4(0.61f, 0.61f, 0.61f, 1.00f); + colors[ImGuiCol_PlotLinesHovered] = ImVec4(1.00f, 0.43f, 0.35f, 1.00f); + colors[ImGuiCol_PlotHistogram] = ImVec4(0.90f, 0.70f, 0.00f, 1.00f); + colors[ImGuiCol_PlotHistogramHovered] = ImVec4(1.00f, 0.60f, 0.00f, 1.00f); + colors[ImGuiCol_TableHeaderBg] = ImVec4(0.19f, 0.19f, 0.20f, 1.00f); + colors[ImGuiCol_TableBorderStrong] = ImVec4(0.31f, 0.31f, 0.35f, 1.00f); // Prefer using Alpha=1.0 here + colors[ImGuiCol_TableBorderLight] = ImVec4(0.23f, 0.23f, 0.25f, 1.00f); // Prefer using Alpha=1.0 here + colors[ImGuiCol_TableRowBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_TableRowBgAlt] = ImVec4(1.00f, 1.00f, 1.00f, 0.06f); + colors[ImGuiCol_TextSelectedBg] = ImVec4(0.26f, 0.59f, 0.98f, 0.35f); + colors[ImGuiCol_DragDropTarget] = ImVec4(1.00f, 1.00f, 0.00f, 0.90f); + colors[ImGuiCol_NavHighlight] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + colors[ImGuiCol_NavWindowingHighlight] = ImVec4(1.00f, 1.00f, 1.00f, 0.70f); + colors[ImGuiCol_NavWindowingDimBg] = ImVec4(0.80f, 0.80f, 0.80f, 0.20f); + colors[ImGuiCol_ModalWindowDimBg] = ImVec4(0.80f, 0.80f, 0.80f, 0.35f); + colors[ImGuiCol_WindowShadow] = ImVec4(0.08f, 0.08f, 0.08f, 0.35f); +} + +void ImGui::StyleColorsClassic(ImGuiStyle* dst) +{ + ImGuiStyle* style = dst ? dst : &ImGui::GetStyle(); + ImVec4* colors = style->Colors; + + colors[ImGuiCol_Text] = ImVec4(0.90f, 0.90f, 0.90f, 1.00f); + colors[ImGuiCol_TextDisabled] = ImVec4(0.60f, 0.60f, 0.60f, 1.00f); + colors[ImGuiCol_WindowBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.85f); + colors[ImGuiCol_ChildBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_PopupBg] = ImVec4(0.11f, 0.11f, 0.14f, 0.92f); + colors[ImGuiCol_Border] = ImVec4(0.50f, 0.50f, 0.50f, 0.50f); + colors[ImGuiCol_BorderShadow] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_FrameBg] = ImVec4(0.43f, 0.43f, 0.43f, 0.39f); + colors[ImGuiCol_FrameBgHovered] = ImVec4(0.47f, 0.47f, 0.69f, 0.40f); + colors[ImGuiCol_FrameBgActive] = ImVec4(0.42f, 0.41f, 0.64f, 0.69f); + colors[ImGuiCol_TitleBg] = ImVec4(0.27f, 0.27f, 0.54f, 0.83f); + colors[ImGuiCol_TitleBgActive] = ImVec4(0.32f, 0.32f, 0.63f, 0.87f); + colors[ImGuiCol_TitleBgCollapsed] = ImVec4(0.40f, 0.40f, 0.80f, 0.20f); + colors[ImGuiCol_MenuBarBg] = ImVec4(0.40f, 0.40f, 0.55f, 0.80f); + colors[ImGuiCol_ScrollbarBg] = ImVec4(0.20f, 0.25f, 0.30f, 0.60f); + colors[ImGuiCol_ScrollbarGrab] = ImVec4(0.40f, 0.40f, 0.80f, 0.30f); + colors[ImGuiCol_ScrollbarGrabHovered] = ImVec4(0.40f, 0.40f, 0.80f, 0.40f); + colors[ImGuiCol_ScrollbarGrabActive] = ImVec4(0.41f, 0.39f, 0.80f, 0.60f); + colors[ImGuiCol_CheckMark] = ImVec4(0.90f, 0.90f, 0.90f, 0.50f); + colors[ImGuiCol_SliderGrab] = ImVec4(1.00f, 1.00f, 1.00f, 0.30f); + colors[ImGuiCol_SliderGrabActive] = ImVec4(0.41f, 0.39f, 0.80f, 0.60f); + colors[ImGuiCol_Button] = ImVec4(0.35f, 0.40f, 0.61f, 0.62f); + colors[ImGuiCol_ButtonHovered] = ImVec4(0.40f, 0.48f, 0.71f, 0.79f); + colors[ImGuiCol_ButtonActive] = ImVec4(0.46f, 0.54f, 0.80f, 1.00f); + colors[ImGuiCol_Header] = ImVec4(0.40f, 0.40f, 0.90f, 0.45f); + colors[ImGuiCol_HeaderHovered] = ImVec4(0.45f, 0.45f, 0.90f, 0.80f); + colors[ImGuiCol_HeaderActive] = ImVec4(0.53f, 0.53f, 0.87f, 0.80f); + colors[ImGuiCol_Separator] = ImVec4(0.50f, 0.50f, 0.50f, 0.60f); + colors[ImGuiCol_SeparatorHovered] = ImVec4(0.60f, 0.60f, 0.70f, 1.00f); + colors[ImGuiCol_SeparatorActive] = ImVec4(0.70f, 0.70f, 0.90f, 1.00f); + colors[ImGuiCol_ResizeGrip] = ImVec4(1.00f, 1.00f, 1.00f, 0.10f); + colors[ImGuiCol_ResizeGripHovered] = ImVec4(0.78f, 0.82f, 1.00f, 0.60f); + colors[ImGuiCol_ResizeGripActive] = ImVec4(0.78f, 0.82f, 1.00f, 0.90f); + colors[ImGuiCol_Tab] = ImLerp(colors[ImGuiCol_Header], colors[ImGuiCol_TitleBgActive], 0.80f); + colors[ImGuiCol_TabHovered] = colors[ImGuiCol_HeaderHovered]; + colors[ImGuiCol_TabActive] = ImLerp(colors[ImGuiCol_HeaderActive], colors[ImGuiCol_TitleBgActive], 0.60f); + colors[ImGuiCol_TabUnfocused] = ImLerp(colors[ImGuiCol_Tab], colors[ImGuiCol_TitleBg], 0.80f); + colors[ImGuiCol_TabUnfocusedActive] = ImLerp(colors[ImGuiCol_TabActive], colors[ImGuiCol_TitleBg], 0.40f); + colors[ImGuiCol_PlotLines] = ImVec4(1.00f, 1.00f, 1.00f, 1.00f); + colors[ImGuiCol_PlotLinesHovered] = ImVec4(0.90f, 0.70f, 0.00f, 1.00f); + colors[ImGuiCol_PlotHistogram] = ImVec4(0.90f, 0.70f, 0.00f, 1.00f); + colors[ImGuiCol_PlotHistogramHovered] = ImVec4(1.00f, 0.60f, 0.00f, 1.00f); + colors[ImGuiCol_TableHeaderBg] = ImVec4(0.27f, 0.27f, 0.38f, 1.00f); + colors[ImGuiCol_TableBorderStrong] = ImVec4(0.31f, 0.31f, 0.45f, 1.00f); // Prefer using Alpha=1.0 here + colors[ImGuiCol_TableBorderLight] = ImVec4(0.26f, 0.26f, 0.28f, 1.00f); // Prefer using Alpha=1.0 here + colors[ImGuiCol_TableRowBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_TableRowBgAlt] = ImVec4(1.00f, 1.00f, 1.00f, 0.07f); + colors[ImGuiCol_TextSelectedBg] = ImVec4(0.00f, 0.00f, 1.00f, 0.35f); + colors[ImGuiCol_DragDropTarget] = ImVec4(1.00f, 1.00f, 0.00f, 0.90f); + colors[ImGuiCol_NavHighlight] = colors[ImGuiCol_HeaderHovered]; + colors[ImGuiCol_NavWindowingHighlight] = ImVec4(1.00f, 1.00f, 1.00f, 0.70f); + colors[ImGuiCol_NavWindowingDimBg] = ImVec4(0.80f, 0.80f, 0.80f, 0.20f); + colors[ImGuiCol_ModalWindowDimBg] = ImVec4(0.20f, 0.20f, 0.20f, 0.35f); + colors[ImGuiCol_WindowShadow] = ImVec4(0.08f, 0.08f, 0.08f, 0.35f); +} + +// Those light colors are better suited with a thicker font than the default one + FrameBorder +void ImGui::StyleColorsLight(ImGuiStyle* dst) +{ + ImGuiStyle* style = dst ? dst : &ImGui::GetStyle(); + ImVec4* colors = style->Colors; + + colors[ImGuiCol_Text] = ImVec4(0.00f, 0.00f, 0.00f, 1.00f); + colors[ImGuiCol_TextDisabled] = ImVec4(0.60f, 0.60f, 0.60f, 1.00f); + colors[ImGuiCol_WindowBg] = ImVec4(0.94f, 0.94f, 0.94f, 1.00f); + colors[ImGuiCol_ChildBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_PopupBg] = ImVec4(1.00f, 1.00f, 1.00f, 0.98f); + colors[ImGuiCol_Border] = ImVec4(0.00f, 0.00f, 0.00f, 0.30f); + colors[ImGuiCol_BorderShadow] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_FrameBg] = ImVec4(1.00f, 1.00f, 1.00f, 1.00f); + colors[ImGuiCol_FrameBgHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.40f); + colors[ImGuiCol_FrameBgActive] = ImVec4(0.26f, 0.59f, 0.98f, 0.67f); + colors[ImGuiCol_TitleBg] = ImVec4(0.96f, 0.96f, 0.96f, 1.00f); + colors[ImGuiCol_TitleBgActive] = ImVec4(0.82f, 0.82f, 0.82f, 1.00f); + colors[ImGuiCol_TitleBgCollapsed] = ImVec4(1.00f, 1.00f, 1.00f, 0.51f); + colors[ImGuiCol_MenuBarBg] = ImVec4(0.86f, 0.86f, 0.86f, 1.00f); + colors[ImGuiCol_ScrollbarBg] = ImVec4(0.98f, 0.98f, 0.98f, 0.53f); + colors[ImGuiCol_ScrollbarGrab] = ImVec4(0.69f, 0.69f, 0.69f, 0.80f); + colors[ImGuiCol_ScrollbarGrabHovered] = ImVec4(0.49f, 0.49f, 0.49f, 0.80f); + colors[ImGuiCol_ScrollbarGrabActive] = ImVec4(0.49f, 0.49f, 0.49f, 1.00f); + colors[ImGuiCol_CheckMark] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + colors[ImGuiCol_SliderGrab] = ImVec4(0.26f, 0.59f, 0.98f, 0.78f); + colors[ImGuiCol_SliderGrabActive] = ImVec4(0.46f, 0.54f, 0.80f, 0.60f); + colors[ImGuiCol_Button] = ImVec4(0.26f, 0.59f, 0.98f, 0.40f); + colors[ImGuiCol_ButtonHovered] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + colors[ImGuiCol_ButtonActive] = ImVec4(0.06f, 0.53f, 0.98f, 1.00f); + colors[ImGuiCol_Header] = ImVec4(0.26f, 0.59f, 0.98f, 0.31f); + colors[ImGuiCol_HeaderHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.80f); + colors[ImGuiCol_HeaderActive] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + colors[ImGuiCol_Separator] = ImVec4(0.39f, 0.39f, 0.39f, 0.62f); + colors[ImGuiCol_SeparatorHovered] = ImVec4(0.14f, 0.44f, 0.80f, 0.78f); + colors[ImGuiCol_SeparatorActive] = ImVec4(0.14f, 0.44f, 0.80f, 1.00f); + colors[ImGuiCol_ResizeGrip] = ImVec4(0.35f, 0.35f, 0.35f, 0.17f); + colors[ImGuiCol_ResizeGripHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.67f); + colors[ImGuiCol_ResizeGripActive] = ImVec4(0.26f, 0.59f, 0.98f, 0.95f); + colors[ImGuiCol_Tab] = ImLerp(colors[ImGuiCol_Header], colors[ImGuiCol_TitleBgActive], 0.90f); + colors[ImGuiCol_TabHovered] = colors[ImGuiCol_HeaderHovered]; + colors[ImGuiCol_TabActive] = ImLerp(colors[ImGuiCol_HeaderActive], colors[ImGuiCol_TitleBgActive], 0.60f); + colors[ImGuiCol_TabUnfocused] = ImLerp(colors[ImGuiCol_Tab], colors[ImGuiCol_TitleBg], 0.80f); + colors[ImGuiCol_TabUnfocusedActive] = ImLerp(colors[ImGuiCol_TabActive], colors[ImGuiCol_TitleBg], 0.40f); + colors[ImGuiCol_PlotLines] = ImVec4(0.39f, 0.39f, 0.39f, 1.00f); + colors[ImGuiCol_PlotLinesHovered] = ImVec4(1.00f, 0.43f, 0.35f, 1.00f); + colors[ImGuiCol_PlotHistogram] = ImVec4(0.90f, 0.70f, 0.00f, 1.00f); + colors[ImGuiCol_PlotHistogramHovered] = ImVec4(1.00f, 0.45f, 0.00f, 1.00f); + colors[ImGuiCol_TableHeaderBg] = ImVec4(0.78f, 0.87f, 0.98f, 1.00f); + colors[ImGuiCol_TableBorderStrong] = ImVec4(0.57f, 0.57f, 0.64f, 1.00f); // Prefer using Alpha=1.0 here + colors[ImGuiCol_TableBorderLight] = ImVec4(0.68f, 0.68f, 0.74f, 1.00f); // Prefer using Alpha=1.0 here + colors[ImGuiCol_TableRowBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_TableRowBgAlt] = ImVec4(0.30f, 0.30f, 0.30f, 0.09f); + colors[ImGuiCol_TextSelectedBg] = ImVec4(0.26f, 0.59f, 0.98f, 0.35f); + colors[ImGuiCol_DragDropTarget] = ImVec4(0.26f, 0.59f, 0.98f, 0.95f); + colors[ImGuiCol_NavHighlight] = colors[ImGuiCol_HeaderHovered]; + colors[ImGuiCol_NavWindowingHighlight] = ImVec4(0.70f, 0.70f, 0.70f, 0.70f); + colors[ImGuiCol_NavWindowingDimBg] = ImVec4(0.20f, 0.20f, 0.20f, 0.20f); + colors[ImGuiCol_ModalWindowDimBg] = ImVec4(0.20f, 0.20f, 0.20f, 0.35f); + colors[ImGuiCol_WindowShadow] = ImVec4(0.08f, 0.08f, 0.08f, 0.35f); +} + +//----------------------------------------------------------------------------- +// [SECTION] ImFontAtlasShadowTexConfig +//----------------------------------------------------------------------------- + +void ImFontAtlasShadowTexConfig::SetupDefaults() +{ + TexCornerSize = 16; + TexEdgeSize = 1; + TexFalloffPower = 4.8f; + TexDistanceFieldOffset = 3.8f; + TexBlur = true; +} + +int ImFontAtlasShadowTexConfig::CalcConvexTexWidth() const +{ + // We have to pad the texture enough that we don't go off the edges when we expand the corner triangles + return (int)((TexCornerSize / ImCos(IM_PI * 0.25f)) + (GetConvexTexPadding() * 2)); +} + +int ImFontAtlasShadowTexConfig::CalcConvexTexHeight() const +{ + return CalcConvexTexWidth(); // Same value +} + +//----------------------------------------------------------------------------- +// [SECTION] ImDrawList +//----------------------------------------------------------------------------- + +ImDrawListSharedData::ImDrawListSharedData() +{ + memset(this, 0, sizeof(*this)); + for (int i = 0; i < IM_ARRAYSIZE(ArcFastVtx); i++) + { + const float a = ((float)i * 2 * IM_PI) / (float)IM_ARRAYSIZE(ArcFastVtx); + ArcFastVtx[i] = ImVec2(ImCos(a), ImSin(a)); + } + ArcFastRadiusCutoff = IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC_R(IM_DRAWLIST_ARCFAST_SAMPLE_MAX, CircleSegmentMaxError); +} + +void ImDrawListSharedData::SetCircleTessellationMaxError(float max_error) +{ + if (CircleSegmentMaxError == max_error) + return; + + IM_ASSERT(max_error > 0.0f); + CircleSegmentMaxError = max_error; + for (int i = 0; i < IM_ARRAYSIZE(CircleSegmentCounts); i++) + { + const float radius = (float)i; + CircleSegmentCounts[i] = (ImU8)((i > 0) ? IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC(radius, CircleSegmentMaxError) : IM_DRAWLIST_ARCFAST_SAMPLE_MAX); + } + ArcFastRadiusCutoff = IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC_R(IM_DRAWLIST_ARCFAST_SAMPLE_MAX, CircleSegmentMaxError); +} + +// Initialize before use in a new frame. We always have a command ready in the buffer. +void ImDrawList::_ResetForNewFrame() +{ + // Verify that the ImDrawCmd fields we want to memcmp() are contiguous in memory. + IM_STATIC_ASSERT(IM_OFFSETOF(ImDrawCmd, ClipRect) == 0); + IM_STATIC_ASSERT(IM_OFFSETOF(ImDrawCmd, TextureId) == sizeof(ImVec4)); + IM_STATIC_ASSERT(IM_OFFSETOF(ImDrawCmd, VtxOffset) == sizeof(ImVec4) + sizeof(ImTextureID)); + if (_Splitter._Count > 1) + _Splitter.Merge(this); + + CmdBuffer.resize(0); + IdxBuffer.resize(0); + VtxBuffer.resize(0); + Flags = _Data->InitialFlags; + memset(&_CmdHeader, 0, sizeof(_CmdHeader)); + _VtxCurrentIdx = 0; + _VtxWritePtr = NULL; + _IdxWritePtr = NULL; + _ClipRectStack.resize(0); + _TextureIdStack.resize(0); + _Path.resize(0); + _Splitter.Clear(); + CmdBuffer.push_back(ImDrawCmd()); + _FringeScale = 1.0f; +} + +void ImDrawList::_ClearFreeMemory() +{ + CmdBuffer.clear(); + IdxBuffer.clear(); + VtxBuffer.clear(); + Flags = ImDrawListFlags_None; + _VtxCurrentIdx = 0; + _VtxWritePtr = NULL; + _IdxWritePtr = NULL; + _ClipRectStack.clear(); + _TextureIdStack.clear(); + _Path.clear(); + _Splitter.ClearFreeMemory(); +} + +ImDrawList* ImDrawList::CloneOutput() const +{ + ImDrawList* dst = IM_NEW(ImDrawList(_Data)); + dst->CmdBuffer = CmdBuffer; + dst->IdxBuffer = IdxBuffer; + dst->VtxBuffer = VtxBuffer; + dst->Flags = Flags; + return dst; +} + +void ImDrawList::AddDrawCmd() +{ + ImDrawCmd draw_cmd; + draw_cmd.ClipRect = _CmdHeader.ClipRect; // Same as calling ImDrawCmd_HeaderCopy() + draw_cmd.TextureId = _CmdHeader.TextureId; + draw_cmd.VtxOffset = _CmdHeader.VtxOffset; + draw_cmd.IdxOffset = IdxBuffer.Size; + + IM_ASSERT(draw_cmd.ClipRect.x <= draw_cmd.ClipRect.z && draw_cmd.ClipRect.y <= draw_cmd.ClipRect.w); + CmdBuffer.push_back(draw_cmd); +} + +// Pop trailing draw command (used before merging or presenting to user) +// Note that this leaves the ImDrawList in a state unfit for further commands, as most code assume that CmdBuffer.Size > 0 && CmdBuffer.back().UserCallback == NULL +void ImDrawList::_PopUnusedDrawCmd() +{ + while (CmdBuffer.Size > 0) + { + ImDrawCmd* curr_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; + if (curr_cmd->ElemCount != 0 || curr_cmd->UserCallback != NULL) + return;// break; + CmdBuffer.pop_back(); + } +} + +void ImDrawList::AddCallback(ImDrawCallback callback, void* callback_data) +{ + IM_ASSERT_PARANOID(CmdBuffer.Size > 0); + ImDrawCmd* curr_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; + IM_ASSERT(curr_cmd->UserCallback == NULL); + if (curr_cmd->ElemCount != 0) + { + AddDrawCmd(); + curr_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; + } + curr_cmd->UserCallback = callback; + curr_cmd->UserCallbackData = callback_data; + + AddDrawCmd(); // Force a new command after us (see comment below) +} + +// Compare ClipRect, TextureId and VtxOffset with a single memcmp() +#define ImDrawCmd_HeaderSize (IM_OFFSETOF(ImDrawCmd, VtxOffset) + sizeof(unsigned int)) +#define ImDrawCmd_HeaderCompare(CMD_LHS, CMD_RHS) (memcmp(CMD_LHS, CMD_RHS, ImDrawCmd_HeaderSize)) // Compare ClipRect, TextureId, VtxOffset +#define ImDrawCmd_HeaderCopy(CMD_DST, CMD_SRC) (memcpy(CMD_DST, CMD_SRC, ImDrawCmd_HeaderSize)) // Copy ClipRect, TextureId, VtxOffset +#define ImDrawCmd_AreSequentialIdxOffset(CMD_0, CMD_1) (CMD_0->IdxOffset + CMD_0->ElemCount == CMD_1->IdxOffset) + +// Try to merge two last draw commands +void ImDrawList::_TryMergeDrawCmds() +{ + IM_ASSERT_PARANOID(CmdBuffer.Size > 0); + ImDrawCmd* curr_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; + ImDrawCmd* prev_cmd = curr_cmd - 1; + if (ImDrawCmd_HeaderCompare(curr_cmd, prev_cmd) == 0 && ImDrawCmd_AreSequentialIdxOffset(prev_cmd, curr_cmd) && curr_cmd->UserCallback == NULL && prev_cmd->UserCallback == NULL) + { + prev_cmd->ElemCount += curr_cmd->ElemCount; + CmdBuffer.pop_back(); + } +} + +// Our scheme may appears a bit unusual, basically we want the most-common calls AddLine AddRect etc. to not have to perform any check so we always have a command ready in the stack. +// The cost of figuring out if a new command has to be added or if we can merge is paid in those Update** functions only. +void ImDrawList::_OnChangedClipRect() +{ + // If current command is used with different settings we need to add a new command + IM_ASSERT_PARANOID(CmdBuffer.Size > 0); + ImDrawCmd* curr_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; + if (curr_cmd->ElemCount != 0 && memcmp(&curr_cmd->ClipRect, &_CmdHeader.ClipRect, sizeof(ImVec4)) != 0) + { + AddDrawCmd(); + return; + } + IM_ASSERT(curr_cmd->UserCallback == NULL); + + // Try to merge with previous command if it matches, else use current command + ImDrawCmd* prev_cmd = curr_cmd - 1; + if (curr_cmd->ElemCount == 0 && CmdBuffer.Size > 1 && ImDrawCmd_HeaderCompare(&_CmdHeader, prev_cmd) == 0 && ImDrawCmd_AreSequentialIdxOffset(prev_cmd, curr_cmd) && prev_cmd->UserCallback == NULL) + { + CmdBuffer.pop_back(); + return; + } + + curr_cmd->ClipRect = _CmdHeader.ClipRect; +} + +void ImDrawList::_OnChangedTextureID() +{ + // If current command is used with different settings we need to add a new command + IM_ASSERT_PARANOID(CmdBuffer.Size > 0); + ImDrawCmd* curr_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; + if (curr_cmd->ElemCount != 0 && curr_cmd->TextureId != _CmdHeader.TextureId) + { + AddDrawCmd(); + return; + } + IM_ASSERT(curr_cmd->UserCallback == NULL); + + // Try to merge with previous command if it matches, else use current command + ImDrawCmd* prev_cmd = curr_cmd - 1; + if (curr_cmd->ElemCount == 0 && CmdBuffer.Size > 1 && ImDrawCmd_HeaderCompare(&_CmdHeader, prev_cmd) == 0 && ImDrawCmd_AreSequentialIdxOffset(prev_cmd, curr_cmd) && prev_cmd->UserCallback == NULL) + { + CmdBuffer.pop_back(); + return; + } + + curr_cmd->TextureId = _CmdHeader.TextureId; +} + +void ImDrawList::_OnChangedVtxOffset() +{ + // We don't need to compare curr_cmd->VtxOffset != _CmdHeader.VtxOffset because we know it'll be different at the time we call this. + _VtxCurrentIdx = 0; + IM_ASSERT_PARANOID(CmdBuffer.Size > 0); + ImDrawCmd* curr_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; + //IM_ASSERT(curr_cmd->VtxOffset != _CmdHeader.VtxOffset); // See #3349 + if (curr_cmd->ElemCount != 0) + { + AddDrawCmd(); + return; + } + IM_ASSERT(curr_cmd->UserCallback == NULL); + curr_cmd->VtxOffset = _CmdHeader.VtxOffset; +} + +int ImDrawList::_CalcCircleAutoSegmentCount(float radius) const +{ + // Automatic segment count + const int radius_idx = (int)(radius + 0.999999f); // ceil to never reduce accuracy + if (radius_idx >= 0 && radius_idx < IM_ARRAYSIZE(_Data->CircleSegmentCounts)) + return _Data->CircleSegmentCounts[radius_idx]; // Use cached value + else + return IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC(radius, _Data->CircleSegmentMaxError); +} + +// Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling) +void ImDrawList::PushClipRect(const ImVec2& cr_min, const ImVec2& cr_max, bool intersect_with_current_clip_rect) +{ + ImVec4 cr(cr_min.x, cr_min.y, cr_max.x, cr_max.y); + if (intersect_with_current_clip_rect) + { + ImVec4 current = _CmdHeader.ClipRect; + if (cr.x < current.x) cr.x = current.x; + if (cr.y < current.y) cr.y = current.y; + if (cr.z > current.z) cr.z = current.z; + if (cr.w > current.w) cr.w = current.w; + } + cr.z = ImMax(cr.x, cr.z); + cr.w = ImMax(cr.y, cr.w); + + _ClipRectStack.push_back(cr); + _CmdHeader.ClipRect = cr; + _OnChangedClipRect(); +} + +void ImDrawList::PushClipRectFullScreen() +{ + PushClipRect(ImVec2(_Data->ClipRectFullscreen.x, _Data->ClipRectFullscreen.y), ImVec2(_Data->ClipRectFullscreen.z, _Data->ClipRectFullscreen.w)); +} + +void ImDrawList::PopClipRect() +{ + _ClipRectStack.pop_back(); + _CmdHeader.ClipRect = (_ClipRectStack.Size == 0) ? _Data->ClipRectFullscreen : _ClipRectStack.Data[_ClipRectStack.Size - 1]; + _OnChangedClipRect(); +} + +void ImDrawList::PushTextureID(ImTextureID texture_id) +{ + _TextureIdStack.push_back(texture_id); + _CmdHeader.TextureId = texture_id; + _OnChangedTextureID(); +} + +void ImDrawList::PopTextureID() +{ + _TextureIdStack.pop_back(); + _CmdHeader.TextureId = (_TextureIdStack.Size == 0) ? (ImTextureID)NULL : _TextureIdStack.Data[_TextureIdStack.Size - 1]; + _OnChangedTextureID(); +} + +// Reserve space for a number of vertices and indices. +// You must finish filling your reserved data before calling PrimReserve() again, as it may reallocate or +// submit the intermediate results. PrimUnreserve() can be used to release unused allocations. +void ImDrawList::PrimReserve(int idx_count, int vtx_count) +{ + // Large mesh support (when enabled) + IM_ASSERT_PARANOID(idx_count >= 0 && vtx_count >= 0); + if (sizeof(ImDrawIdx) == 2 && (_VtxCurrentIdx + vtx_count >= (1 << 16)) && (Flags & ImDrawListFlags_AllowVtxOffset)) + { + // FIXME: In theory we should be testing that vtx_count <64k here. + // In practice, RenderText() relies on reserving ahead for a worst case scenario so it is currently useful for us + // to not make that check until we rework the text functions to handle clipping and large horizontal lines better. + _CmdHeader.VtxOffset = VtxBuffer.Size; + _OnChangedVtxOffset(); + } + + ImDrawCmd* draw_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; + draw_cmd->ElemCount += idx_count; + + int vtx_buffer_old_size = VtxBuffer.Size; + VtxBuffer.resize(vtx_buffer_old_size + vtx_count); + _VtxWritePtr = VtxBuffer.Data + vtx_buffer_old_size; + + int idx_buffer_old_size = IdxBuffer.Size; + IdxBuffer.resize(idx_buffer_old_size + idx_count); + _IdxWritePtr = IdxBuffer.Data + idx_buffer_old_size; +} + +// Release the a number of reserved vertices/indices from the end of the last reservation made with PrimReserve(). +void ImDrawList::PrimUnreserve(int idx_count, int vtx_count) +{ + IM_ASSERT_PARANOID(idx_count >= 0 && vtx_count >= 0); + + ImDrawCmd* draw_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; + draw_cmd->ElemCount -= idx_count; + VtxBuffer.shrink(VtxBuffer.Size - vtx_count); + IdxBuffer.shrink(IdxBuffer.Size - idx_count); +} + +// Fully unrolled with inline call to keep our debug builds decently fast. +void ImDrawList::PrimRect(const ImVec2& a, const ImVec2& c, ImU32 col) +{ + ImVec2 b(c.x, a.y), d(a.x, c.y), uv(_Data->TexUvWhitePixel); + ImDrawIdx idx = (ImDrawIdx)_VtxCurrentIdx; + _IdxWritePtr[0] = idx; _IdxWritePtr[1] = (ImDrawIdx)(idx+1); _IdxWritePtr[2] = (ImDrawIdx)(idx+2); + _IdxWritePtr[3] = idx; _IdxWritePtr[4] = (ImDrawIdx)(idx+2); _IdxWritePtr[5] = (ImDrawIdx)(idx+3); + _VtxWritePtr[0].pos = a; _VtxWritePtr[0].uv = uv; _VtxWritePtr[0].col = col; + _VtxWritePtr[1].pos = b; _VtxWritePtr[1].uv = uv; _VtxWritePtr[1].col = col; + _VtxWritePtr[2].pos = c; _VtxWritePtr[2].uv = uv; _VtxWritePtr[2].col = col; + _VtxWritePtr[3].pos = d; _VtxWritePtr[3].uv = uv; _VtxWritePtr[3].col = col; + _VtxWritePtr += 4; + _VtxCurrentIdx += 4; + _IdxWritePtr += 6; +} + +void ImDrawList::PrimRectUV(const ImVec2& a, const ImVec2& c, const ImVec2& uv_a, const ImVec2& uv_c, ImU32 col) +{ + ImVec2 b(c.x, a.y), d(a.x, c.y), uv_b(uv_c.x, uv_a.y), uv_d(uv_a.x, uv_c.y); + ImDrawIdx idx = (ImDrawIdx)_VtxCurrentIdx; + _IdxWritePtr[0] = idx; _IdxWritePtr[1] = (ImDrawIdx)(idx+1); _IdxWritePtr[2] = (ImDrawIdx)(idx+2); + _IdxWritePtr[3] = idx; _IdxWritePtr[4] = (ImDrawIdx)(idx+2); _IdxWritePtr[5] = (ImDrawIdx)(idx+3); + _VtxWritePtr[0].pos = a; _VtxWritePtr[0].uv = uv_a; _VtxWritePtr[0].col = col; + _VtxWritePtr[1].pos = b; _VtxWritePtr[1].uv = uv_b; _VtxWritePtr[1].col = col; + _VtxWritePtr[2].pos = c; _VtxWritePtr[2].uv = uv_c; _VtxWritePtr[2].col = col; + _VtxWritePtr[3].pos = d; _VtxWritePtr[3].uv = uv_d; _VtxWritePtr[3].col = col; + _VtxWritePtr += 4; + _VtxCurrentIdx += 4; + _IdxWritePtr += 6; +} + +void ImDrawList::PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col) +{ + ImDrawIdx idx = (ImDrawIdx)_VtxCurrentIdx; + _IdxWritePtr[0] = idx; _IdxWritePtr[1] = (ImDrawIdx)(idx+1); _IdxWritePtr[2] = (ImDrawIdx)(idx+2); + _IdxWritePtr[3] = idx; _IdxWritePtr[4] = (ImDrawIdx)(idx+2); _IdxWritePtr[5] = (ImDrawIdx)(idx+3); + _VtxWritePtr[0].pos = a; _VtxWritePtr[0].uv = uv_a; _VtxWritePtr[0].col = col; + _VtxWritePtr[1].pos = b; _VtxWritePtr[1].uv = uv_b; _VtxWritePtr[1].col = col; + _VtxWritePtr[2].pos = c; _VtxWritePtr[2].uv = uv_c; _VtxWritePtr[2].col = col; + _VtxWritePtr[3].pos = d; _VtxWritePtr[3].uv = uv_d; _VtxWritePtr[3].col = col; + _VtxWritePtr += 4; + _VtxCurrentIdx += 4; + _IdxWritePtr += 6; +} + +// On AddPolyline() and AddConvexPolyFilled() we intentionally avoid using ImVec2 and superfluous function calls to optimize debug/non-inlined builds. +// - Those macros expects l-values and need to be used as their own statement. +// - Those macros are intentionally not surrounded by the 'do {} while (0)' idiom because even that translates to runtime with debug compilers. +#define IM_NORMALIZE2F_OVER_ZERO(VX,VY) { float d2 = VX*VX + VY*VY; if (d2 > 0.0f) { float inv_len = ImRsqrt(d2); VX *= inv_len; VY *= inv_len; } } (void)0 +#define IM_FIXNORMAL2F_MAX_INVLEN2 100.0f // 500.0f (see #4053, #3366) +#define IM_FIXNORMAL2F(VX,VY) { float d2 = VX*VX + VY*VY; if (d2 > 0.000001f) { float inv_len2 = 1.0f / d2; if (inv_len2 > IM_FIXNORMAL2F_MAX_INVLEN2) inv_len2 = IM_FIXNORMAL2F_MAX_INVLEN2; VX *= inv_len2; VY *= inv_len2; } } (void)0 + +// TODO: Thickness anti-aliased lines cap are missing their AA fringe. +// We avoid using the ImVec2 math operators here to reduce cost to a minimum for debug/non-inlined builds. +void ImDrawList::AddPolyline(const ImVec2* points, const int points_count, ImU32 col, ImDrawFlags flags, float thickness) +{ + if (points_count < 2 || (col & IM_COL32_A_MASK) == 0) + return; + + const bool closed = (flags & ImDrawFlags_Closed) != 0; + const ImVec2 opaque_uv = _Data->TexUvWhitePixel; + const int count = closed ? points_count : points_count - 1; // The number of line segments we need to draw + const bool thick_line = (thickness > _FringeScale); + + if (Flags & ImDrawListFlags_AntiAliasedLines) + { + // Anti-aliased stroke + const float AA_SIZE = _FringeScale; + const ImU32 col_trans = col & ~IM_COL32_A_MASK; + + // Thicknesses <1.0 should behave like thickness 1.0 + thickness = ImMax(thickness, 1.0f); + const int integer_thickness = (int)thickness; + const float fractional_thickness = thickness - integer_thickness; + + // Do we want to draw this line using a texture? + // - For now, only draw integer-width lines using textures to avoid issues with the way scaling occurs, could be improved. + // - If AA_SIZE is not 1.0f we cannot use the texture path. + const bool use_texture = (Flags & ImDrawListFlags_AntiAliasedLinesUseTex) && (integer_thickness < IM_DRAWLIST_TEX_LINES_WIDTH_MAX) && (fractional_thickness <= 0.00001f) && (AA_SIZE == 1.0f); + + // We should never hit this, because NewFrame() doesn't set ImDrawListFlags_AntiAliasedLinesUseTex unless ImFontAtlasFlags_NoBakedLines is off + IM_ASSERT_PARANOID(!use_texture || !(_Data->Font->ContainerAtlas->Flags & ImFontAtlasFlags_NoBakedLines)); + + const int idx_count = use_texture ? (count * 6) : (thick_line ? count * 18 : count * 12); + const int vtx_count = use_texture ? (points_count * 2) : (thick_line ? points_count * 4 : points_count * 3); + PrimReserve(idx_count, vtx_count); + + // Temporary buffer + // The first items are normals at each line point, then after that there are either 2 or 4 temp points for each line point + _Data->TempBuffer.reserve_discard(points_count * ((use_texture || !thick_line) ? 3 : 5)); + ImVec2* temp_normals = _Data->TempBuffer.Data; + ImVec2* temp_points = temp_normals + points_count; + + // Calculate normals (tangents) for each line segment + for (int i1 = 0; i1 < count; i1++) + { + const int i2 = (i1 + 1) == points_count ? 0 : i1 + 1; + float dx = points[i2].x - points[i1].x; + float dy = points[i2].y - points[i1].y; + IM_NORMALIZE2F_OVER_ZERO(dx, dy); + temp_normals[i1].x = dy; + temp_normals[i1].y = -dx; + } + if (!closed) + temp_normals[points_count - 1] = temp_normals[points_count - 2]; + + // If we are drawing a one-pixel-wide line without a texture, or a textured line of any width, we only need 2 or 3 vertices per point + if (use_texture || !thick_line) + { + // [PATH 1] Texture-based lines (thick or non-thick) + // [PATH 2] Non texture-based lines (non-thick) + + // The width of the geometry we need to draw - this is essentially pixels for the line itself, plus "one pixel" for AA. + // - In the texture-based path, we don't use AA_SIZE here because the +1 is tied to the generated texture + // (see ImFontAtlasBuildRenderLinesTexData() function), and so alternate values won't work without changes to that code. + // - In the non texture-based paths, we would allow AA_SIZE to potentially be != 1.0f with a patch (e.g. fringe_scale patch to + // allow scaling geometry while preserving one-screen-pixel AA fringe). + const float half_draw_size = use_texture ? ((thickness * 0.5f) + 1) : AA_SIZE; + + // If line is not closed, the first and last points need to be generated differently as there are no normals to blend + if (!closed) + { + temp_points[0] = points[0] + temp_normals[0] * half_draw_size; + temp_points[1] = points[0] - temp_normals[0] * half_draw_size; + temp_points[(points_count-1)*2+0] = points[points_count-1] + temp_normals[points_count-1] * half_draw_size; + temp_points[(points_count-1)*2+1] = points[points_count-1] - temp_normals[points_count-1] * half_draw_size; + } + + // Generate the indices to form a number of triangles for each line segment, and the vertices for the line edges + // This takes points n and n+1 and writes into n+1, with the first point in a closed line being generated from the final one (as n+1 wraps) + // FIXME-OPT: Merge the different loops, possibly remove the temporary buffer. + unsigned int idx1 = _VtxCurrentIdx; // Vertex index for start of line segment + for (int i1 = 0; i1 < count; i1++) // i1 is the first point of the line segment + { + const int i2 = (i1 + 1) == points_count ? 0 : i1 + 1; // i2 is the second point of the line segment + const unsigned int idx2 = ((i1 + 1) == points_count) ? _VtxCurrentIdx : (idx1 + (use_texture ? 2 : 3)); // Vertex index for end of segment + + // Average normals + float dm_x = (temp_normals[i1].x + temp_normals[i2].x) * 0.5f; + float dm_y = (temp_normals[i1].y + temp_normals[i2].y) * 0.5f; + IM_FIXNORMAL2F(dm_x, dm_y); + dm_x *= half_draw_size; // dm_x, dm_y are offset to the outer edge of the AA area + dm_y *= half_draw_size; + + // Add temporary vertexes for the outer edges + ImVec2* out_vtx = &temp_points[i2 * 2]; + out_vtx[0].x = points[i2].x + dm_x; + out_vtx[0].y = points[i2].y + dm_y; + out_vtx[1].x = points[i2].x - dm_x; + out_vtx[1].y = points[i2].y - dm_y; + + if (use_texture) + { + // Add indices for two triangles + _IdxWritePtr[0] = (ImDrawIdx)(idx2 + 0); _IdxWritePtr[1] = (ImDrawIdx)(idx1 + 0); _IdxWritePtr[2] = (ImDrawIdx)(idx1 + 1); // Right tri + _IdxWritePtr[3] = (ImDrawIdx)(idx2 + 1); _IdxWritePtr[4] = (ImDrawIdx)(idx1 + 1); _IdxWritePtr[5] = (ImDrawIdx)(idx2 + 0); // Left tri + _IdxWritePtr += 6; + } + else + { + // Add indexes for four triangles + _IdxWritePtr[0] = (ImDrawIdx)(idx2 + 0); _IdxWritePtr[1] = (ImDrawIdx)(idx1 + 0); _IdxWritePtr[2] = (ImDrawIdx)(idx1 + 2); // Right tri 1 + _IdxWritePtr[3] = (ImDrawIdx)(idx1 + 2); _IdxWritePtr[4] = (ImDrawIdx)(idx2 + 2); _IdxWritePtr[5] = (ImDrawIdx)(idx2 + 0); // Right tri 2 + _IdxWritePtr[6] = (ImDrawIdx)(idx2 + 1); _IdxWritePtr[7] = (ImDrawIdx)(idx1 + 1); _IdxWritePtr[8] = (ImDrawIdx)(idx1 + 0); // Left tri 1 + _IdxWritePtr[9] = (ImDrawIdx)(idx1 + 0); _IdxWritePtr[10] = (ImDrawIdx)(idx2 + 0); _IdxWritePtr[11] = (ImDrawIdx)(idx2 + 1); // Left tri 2 + _IdxWritePtr += 12; + } + + idx1 = idx2; + } + + // Add vertexes for each point on the line + if (use_texture) + { + // If we're using textures we only need to emit the left/right edge vertices + ImVec4 tex_uvs = _Data->TexUvLines[integer_thickness]; + /*if (fractional_thickness != 0.0f) // Currently always zero when use_texture==false! + { + const ImVec4 tex_uvs_1 = _Data->TexUvLines[integer_thickness + 1]; + tex_uvs.x = tex_uvs.x + (tex_uvs_1.x - tex_uvs.x) * fractional_thickness; // inlined ImLerp() + tex_uvs.y = tex_uvs.y + (tex_uvs_1.y - tex_uvs.y) * fractional_thickness; + tex_uvs.z = tex_uvs.z + (tex_uvs_1.z - tex_uvs.z) * fractional_thickness; + tex_uvs.w = tex_uvs.w + (tex_uvs_1.w - tex_uvs.w) * fractional_thickness; + }*/ + ImVec2 tex_uv0(tex_uvs.x, tex_uvs.y); + ImVec2 tex_uv1(tex_uvs.z, tex_uvs.w); + for (int i = 0; i < points_count; i++) + { + _VtxWritePtr[0].pos = temp_points[i * 2 + 0]; _VtxWritePtr[0].uv = tex_uv0; _VtxWritePtr[0].col = col; // Left-side outer edge + _VtxWritePtr[1].pos = temp_points[i * 2 + 1]; _VtxWritePtr[1].uv = tex_uv1; _VtxWritePtr[1].col = col; // Right-side outer edge + _VtxWritePtr += 2; + } + } + else + { + // If we're not using a texture, we need the center vertex as well + for (int i = 0; i < points_count; i++) + { + _VtxWritePtr[0].pos = points[i]; _VtxWritePtr[0].uv = opaque_uv; _VtxWritePtr[0].col = col; // Center of line + _VtxWritePtr[1].pos = temp_points[i * 2 + 0]; _VtxWritePtr[1].uv = opaque_uv; _VtxWritePtr[1].col = col_trans; // Left-side outer edge + _VtxWritePtr[2].pos = temp_points[i * 2 + 1]; _VtxWritePtr[2].uv = opaque_uv; _VtxWritePtr[2].col = col_trans; // Right-side outer edge + _VtxWritePtr += 3; + } + } + } + else + { + // [PATH 2] Non texture-based lines (thick): we need to draw the solid line core and thus require four vertices per point + const float half_inner_thickness = (thickness - AA_SIZE) * 0.5f; + + // If line is not closed, the first and last points need to be generated differently as there are no normals to blend + if (!closed) + { + const int points_last = points_count - 1; + temp_points[0] = points[0] + temp_normals[0] * (half_inner_thickness + AA_SIZE); + temp_points[1] = points[0] + temp_normals[0] * (half_inner_thickness); + temp_points[2] = points[0] - temp_normals[0] * (half_inner_thickness); + temp_points[3] = points[0] - temp_normals[0] * (half_inner_thickness + AA_SIZE); + temp_points[points_last * 4 + 0] = points[points_last] + temp_normals[points_last] * (half_inner_thickness + AA_SIZE); + temp_points[points_last * 4 + 1] = points[points_last] + temp_normals[points_last] * (half_inner_thickness); + temp_points[points_last * 4 + 2] = points[points_last] - temp_normals[points_last] * (half_inner_thickness); + temp_points[points_last * 4 + 3] = points[points_last] - temp_normals[points_last] * (half_inner_thickness + AA_SIZE); + } + + // Generate the indices to form a number of triangles for each line segment, and the vertices for the line edges + // This takes points n and n+1 and writes into n+1, with the first point in a closed line being generated from the final one (as n+1 wraps) + // FIXME-OPT: Merge the different loops, possibly remove the temporary buffer. + unsigned int idx1 = _VtxCurrentIdx; // Vertex index for start of line segment + for (int i1 = 0; i1 < count; i1++) // i1 is the first point of the line segment + { + const int i2 = (i1 + 1) == points_count ? 0 : (i1 + 1); // i2 is the second point of the line segment + const unsigned int idx2 = (i1 + 1) == points_count ? _VtxCurrentIdx : (idx1 + 4); // Vertex index for end of segment + + // Average normals + float dm_x = (temp_normals[i1].x + temp_normals[i2].x) * 0.5f; + float dm_y = (temp_normals[i1].y + temp_normals[i2].y) * 0.5f; + IM_FIXNORMAL2F(dm_x, dm_y); + float dm_out_x = dm_x * (half_inner_thickness + AA_SIZE); + float dm_out_y = dm_y * (half_inner_thickness + AA_SIZE); + float dm_in_x = dm_x * half_inner_thickness; + float dm_in_y = dm_y * half_inner_thickness; + + // Add temporary vertices + ImVec2* out_vtx = &temp_points[i2 * 4]; + out_vtx[0].x = points[i2].x + dm_out_x; + out_vtx[0].y = points[i2].y + dm_out_y; + out_vtx[1].x = points[i2].x + dm_in_x; + out_vtx[1].y = points[i2].y + dm_in_y; + out_vtx[2].x = points[i2].x - dm_in_x; + out_vtx[2].y = points[i2].y - dm_in_y; + out_vtx[3].x = points[i2].x - dm_out_x; + out_vtx[3].y = points[i2].y - dm_out_y; + + // Add indexes + _IdxWritePtr[0] = (ImDrawIdx)(idx2 + 1); _IdxWritePtr[1] = (ImDrawIdx)(idx1 + 1); _IdxWritePtr[2] = (ImDrawIdx)(idx1 + 2); + _IdxWritePtr[3] = (ImDrawIdx)(idx1 + 2); _IdxWritePtr[4] = (ImDrawIdx)(idx2 + 2); _IdxWritePtr[5] = (ImDrawIdx)(idx2 + 1); + _IdxWritePtr[6] = (ImDrawIdx)(idx2 + 1); _IdxWritePtr[7] = (ImDrawIdx)(idx1 + 1); _IdxWritePtr[8] = (ImDrawIdx)(idx1 + 0); + _IdxWritePtr[9] = (ImDrawIdx)(idx1 + 0); _IdxWritePtr[10] = (ImDrawIdx)(idx2 + 0); _IdxWritePtr[11] = (ImDrawIdx)(idx2 + 1); + _IdxWritePtr[12] = (ImDrawIdx)(idx2 + 2); _IdxWritePtr[13] = (ImDrawIdx)(idx1 + 2); _IdxWritePtr[14] = (ImDrawIdx)(idx1 + 3); + _IdxWritePtr[15] = (ImDrawIdx)(idx1 + 3); _IdxWritePtr[16] = (ImDrawIdx)(idx2 + 3); _IdxWritePtr[17] = (ImDrawIdx)(idx2 + 2); + _IdxWritePtr += 18; + + idx1 = idx2; + } + + // Add vertices + for (int i = 0; i < points_count; i++) + { + _VtxWritePtr[0].pos = temp_points[i * 4 + 0]; _VtxWritePtr[0].uv = opaque_uv; _VtxWritePtr[0].col = col_trans; + _VtxWritePtr[1].pos = temp_points[i * 4 + 1]; _VtxWritePtr[1].uv = opaque_uv; _VtxWritePtr[1].col = col; + _VtxWritePtr[2].pos = temp_points[i * 4 + 2]; _VtxWritePtr[2].uv = opaque_uv; _VtxWritePtr[2].col = col; + _VtxWritePtr[3].pos = temp_points[i * 4 + 3]; _VtxWritePtr[3].uv = opaque_uv; _VtxWritePtr[3].col = col_trans; + _VtxWritePtr += 4; + } + } + _VtxCurrentIdx += (ImDrawIdx)vtx_count; + } + else + { + // [PATH 4] Non texture-based, Non anti-aliased lines + const int idx_count = count * 6; + const int vtx_count = count * 4; // FIXME-OPT: Not sharing edges + PrimReserve(idx_count, vtx_count); + + for (int i1 = 0; i1 < count; i1++) + { + const int i2 = (i1 + 1) == points_count ? 0 : i1 + 1; + const ImVec2& p1 = points[i1]; + const ImVec2& p2 = points[i2]; + + float dx = p2.x - p1.x; + float dy = p2.y - p1.y; + IM_NORMALIZE2F_OVER_ZERO(dx, dy); + dx *= (thickness * 0.5f); + dy *= (thickness * 0.5f); + + _VtxWritePtr[0].pos.x = p1.x + dy; _VtxWritePtr[0].pos.y = p1.y - dx; _VtxWritePtr[0].uv = opaque_uv; _VtxWritePtr[0].col = col; + _VtxWritePtr[1].pos.x = p2.x + dy; _VtxWritePtr[1].pos.y = p2.y - dx; _VtxWritePtr[1].uv = opaque_uv; _VtxWritePtr[1].col = col; + _VtxWritePtr[2].pos.x = p2.x - dy; _VtxWritePtr[2].pos.y = p2.y + dx; _VtxWritePtr[2].uv = opaque_uv; _VtxWritePtr[2].col = col; + _VtxWritePtr[3].pos.x = p1.x - dy; _VtxWritePtr[3].pos.y = p1.y + dx; _VtxWritePtr[3].uv = opaque_uv; _VtxWritePtr[3].col = col; + _VtxWritePtr += 4; + + _IdxWritePtr[0] = (ImDrawIdx)(_VtxCurrentIdx); _IdxWritePtr[1] = (ImDrawIdx)(_VtxCurrentIdx + 1); _IdxWritePtr[2] = (ImDrawIdx)(_VtxCurrentIdx + 2); + _IdxWritePtr[3] = (ImDrawIdx)(_VtxCurrentIdx); _IdxWritePtr[4] = (ImDrawIdx)(_VtxCurrentIdx + 2); _IdxWritePtr[5] = (ImDrawIdx)(_VtxCurrentIdx + 3); + _IdxWritePtr += 6; + _VtxCurrentIdx += 4; + } + } +} + +// - We intentionally avoid using ImVec2 and its math operators here to reduce cost to a minimum for debug/non-inlined builds. +// - Filled shapes must always use clockwise winding order. The anti-aliasing fringe depends on it. Counter-clockwise shapes will have "inward" anti-aliasing. +void ImDrawList::AddConvexPolyFilled(const ImVec2* points, const int points_count, ImU32 col) +{ + if (points_count < 3 || (col & IM_COL32_A_MASK) == 0) + return; + + const ImVec2 uv = _Data->TexUvWhitePixel; + + if (Flags & ImDrawListFlags_AntiAliasedFill) + { + // Anti-aliased Fill + const float AA_SIZE = _FringeScale; + const ImU32 col_trans = col & ~IM_COL32_A_MASK; + const int idx_count = (points_count - 2)*3 + points_count * 6; + const int vtx_count = (points_count * 2); + PrimReserve(idx_count, vtx_count); + + // Add indexes for fill + unsigned int vtx_inner_idx = _VtxCurrentIdx; + unsigned int vtx_outer_idx = _VtxCurrentIdx + 1; + for (int i = 2; i < points_count; i++) + { + _IdxWritePtr[0] = (ImDrawIdx)(vtx_inner_idx); _IdxWritePtr[1] = (ImDrawIdx)(vtx_inner_idx + ((i - 1) << 1)); _IdxWritePtr[2] = (ImDrawIdx)(vtx_inner_idx + (i << 1)); + _IdxWritePtr += 3; + } + + // Compute normals + _Data->TempBuffer.reserve_discard(points_count); + ImVec2* temp_normals = _Data->TempBuffer.Data; + for (int i0 = points_count - 1, i1 = 0; i1 < points_count; i0 = i1++) + { + const ImVec2& p0 = points[i0]; + const ImVec2& p1 = points[i1]; + float dx = p1.x - p0.x; + float dy = p1.y - p0.y; + IM_NORMALIZE2F_OVER_ZERO(dx, dy); + temp_normals[i0].x = dy; + temp_normals[i0].y = -dx; + } + + for (int i0 = points_count - 1, i1 = 0; i1 < points_count; i0 = i1++) + { + // Average normals + const ImVec2& n0 = temp_normals[i0]; + const ImVec2& n1 = temp_normals[i1]; + float dm_x = (n0.x + n1.x) * 0.5f; + float dm_y = (n0.y + n1.y) * 0.5f; + IM_FIXNORMAL2F(dm_x, dm_y); + dm_x *= AA_SIZE * 0.5f; + dm_y *= AA_SIZE * 0.5f; + + // Add vertices + _VtxWritePtr[0].pos.x = (points[i1].x - dm_x); _VtxWritePtr[0].pos.y = (points[i1].y - dm_y); _VtxWritePtr[0].uv = uv; _VtxWritePtr[0].col = col; // Inner + _VtxWritePtr[1].pos.x = (points[i1].x + dm_x); _VtxWritePtr[1].pos.y = (points[i1].y + dm_y); _VtxWritePtr[1].uv = uv; _VtxWritePtr[1].col = col_trans; // Outer + _VtxWritePtr += 2; + + // Add indexes for fringes + _IdxWritePtr[0] = (ImDrawIdx)(vtx_inner_idx + (i1 << 1)); _IdxWritePtr[1] = (ImDrawIdx)(vtx_inner_idx + (i0 << 1)); _IdxWritePtr[2] = (ImDrawIdx)(vtx_outer_idx + (i0 << 1)); + _IdxWritePtr[3] = (ImDrawIdx)(vtx_outer_idx + (i0 << 1)); _IdxWritePtr[4] = (ImDrawIdx)(vtx_outer_idx + (i1 << 1)); _IdxWritePtr[5] = (ImDrawIdx)(vtx_inner_idx + (i1 << 1)); + _IdxWritePtr += 6; + } + _VtxCurrentIdx += (ImDrawIdx)vtx_count; + } + else + { + // Non Anti-aliased Fill + const int idx_count = (points_count - 2)*3; + const int vtx_count = points_count; + PrimReserve(idx_count, vtx_count); + for (int i = 0; i < vtx_count; i++) + { + _VtxWritePtr[0].pos = points[i]; _VtxWritePtr[0].uv = uv; _VtxWritePtr[0].col = col; + _VtxWritePtr++; + } + for (int i = 2; i < points_count; i++) + { + _IdxWritePtr[0] = (ImDrawIdx)(_VtxCurrentIdx); _IdxWritePtr[1] = (ImDrawIdx)(_VtxCurrentIdx + i - 1); _IdxWritePtr[2] = (ImDrawIdx)(_VtxCurrentIdx + i); + _IdxWritePtr += 3; + } + _VtxCurrentIdx += (ImDrawIdx)vtx_count; + } +} + +void ImDrawList::_PathArcToFastEx(const ImVec2& center, float radius, int a_min_sample, int a_max_sample, int a_step) +{ + if (radius < 0.5f) + { + _Path.push_back(center); + return; + } + + // Calculate arc auto segment step size + if (a_step <= 0) + a_step = IM_DRAWLIST_ARCFAST_SAMPLE_MAX / _CalcCircleAutoSegmentCount(radius); + + // Make sure we never do steps larger than one quarter of the circle + a_step = ImClamp(a_step, 1, IM_DRAWLIST_ARCFAST_TABLE_SIZE / 4); + + const int sample_range = ImAbs(a_max_sample - a_min_sample); + const int a_next_step = a_step; + + int samples = sample_range + 1; + bool extra_max_sample = false; + if (a_step > 1) + { + samples = sample_range / a_step + 1; + const int overstep = sample_range % a_step; + + if (overstep > 0) + { + extra_max_sample = true; + samples++; + + // When we have overstep to avoid awkwardly looking one long line and one tiny one at the end, + // distribute first step range evenly between them by reducing first step size. + if (sample_range > 0) + a_step -= (a_step - overstep) / 2; + } + } + + _Path.resize(_Path.Size + samples); + ImVec2* out_ptr = _Path.Data + (_Path.Size - samples); + + int sample_index = a_min_sample; + if (sample_index < 0 || sample_index >= IM_DRAWLIST_ARCFAST_SAMPLE_MAX) + { + sample_index = sample_index % IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + if (sample_index < 0) + sample_index += IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + } + + if (a_max_sample >= a_min_sample) + { + for (int a = a_min_sample; a <= a_max_sample; a += a_step, sample_index += a_step, a_step = a_next_step) + { + // a_step is clamped to IM_DRAWLIST_ARCFAST_SAMPLE_MAX, so we have guaranteed that it will not wrap over range twice or more + if (sample_index >= IM_DRAWLIST_ARCFAST_SAMPLE_MAX) + sample_index -= IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + + const ImVec2 s = _Data->ArcFastVtx[sample_index]; + out_ptr->x = center.x + s.x * radius; + out_ptr->y = center.y + s.y * radius; + out_ptr++; + } + } + else + { + for (int a = a_min_sample; a >= a_max_sample; a -= a_step, sample_index -= a_step, a_step = a_next_step) + { + // a_step is clamped to IM_DRAWLIST_ARCFAST_SAMPLE_MAX, so we have guaranteed that it will not wrap over range twice or more + if (sample_index < 0) + sample_index += IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + + const ImVec2 s = _Data->ArcFastVtx[sample_index]; + out_ptr->x = center.x + s.x * radius; + out_ptr->y = center.y + s.y * radius; + out_ptr++; + } + } + + if (extra_max_sample) + { + int normalized_max_sample = a_max_sample % IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + if (normalized_max_sample < 0) + normalized_max_sample += IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + + const ImVec2 s = _Data->ArcFastVtx[normalized_max_sample]; + out_ptr->x = center.x + s.x * radius; + out_ptr->y = center.y + s.y * radius; + out_ptr++; + } + + IM_ASSERT_PARANOID(_Path.Data + _Path.Size == out_ptr); +} + +void ImDrawList::_PathArcToN(const ImVec2& center, float radius, float a_min, float a_max, int num_segments) +{ + if (radius < 0.5f) + { + _Path.push_back(center); + return; + } + + // Note that we are adding a point at both a_min and a_max. + // If you are trying to draw a full closed circle you don't want the overlapping points! + _Path.reserve(_Path.Size + (num_segments + 1)); + for (int i = 0; i <= num_segments; i++) + { + const float a = a_min + ((float)i / (float)num_segments) * (a_max - a_min); + _Path.push_back(ImVec2(center.x + ImCos(a) * radius, center.y + ImSin(a) * radius)); + } +} + +// 0: East, 3: South, 6: West, 9: North, 12: East +void ImDrawList::PathArcToFast(const ImVec2& center, float radius, int a_min_of_12, int a_max_of_12) +{ + if (radius < 0.5f) + { + _Path.push_back(center); + return; + } + _PathArcToFastEx(center, radius, a_min_of_12 * IM_DRAWLIST_ARCFAST_SAMPLE_MAX / 12, a_max_of_12 * IM_DRAWLIST_ARCFAST_SAMPLE_MAX / 12, 0); +} + +void ImDrawList::PathArcTo(const ImVec2& center, float radius, float a_min, float a_max, int num_segments) +{ + if (radius < 0.5f) + { + _Path.push_back(center); + return; + } + + if (num_segments > 0) + { + _PathArcToN(center, radius, a_min, a_max, num_segments); + return; + } + + // Automatic segment count + if (radius <= _Data->ArcFastRadiusCutoff) + { + const bool a_is_reverse = a_max < a_min; + + // We are going to use precomputed values for mid samples. + // Determine first and last sample in lookup table that belong to the arc. + const float a_min_sample_f = IM_DRAWLIST_ARCFAST_SAMPLE_MAX * a_min / (IM_PI * 2.0f); + const float a_max_sample_f = IM_DRAWLIST_ARCFAST_SAMPLE_MAX * a_max / (IM_PI * 2.0f); + + const int a_min_sample = a_is_reverse ? (int)ImFloorSigned(a_min_sample_f) : (int)ImCeil(a_min_sample_f); + const int a_max_sample = a_is_reverse ? (int)ImCeil(a_max_sample_f) : (int)ImFloorSigned(a_max_sample_f); + const int a_mid_samples = a_is_reverse ? ImMax(a_min_sample - a_max_sample, 0) : ImMax(a_max_sample - a_min_sample, 0); + + const float a_min_segment_angle = a_min_sample * IM_PI * 2.0f / IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + const float a_max_segment_angle = a_max_sample * IM_PI * 2.0f / IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + const bool a_emit_start = ImAbs(a_min_segment_angle - a_min) >= 1e-5f; + const bool a_emit_end = ImAbs(a_max - a_max_segment_angle) >= 1e-5f; + + _Path.reserve(_Path.Size + (a_mid_samples + 1 + (a_emit_start ? 1 : 0) + (a_emit_end ? 1 : 0))); + if (a_emit_start) + _Path.push_back(ImVec2(center.x + ImCos(a_min) * radius, center.y + ImSin(a_min) * radius)); + if (a_mid_samples > 0) + _PathArcToFastEx(center, radius, a_min_sample, a_max_sample, 0); + if (a_emit_end) + _Path.push_back(ImVec2(center.x + ImCos(a_max) * radius, center.y + ImSin(a_max) * radius)); + } + else + { + const float arc_length = ImAbs(a_max - a_min); + const int circle_segment_count = _CalcCircleAutoSegmentCount(radius); + const int arc_segment_count = ImMax((int)ImCeil(circle_segment_count * arc_length / (IM_PI * 2.0f)), (int)(2.0f * IM_PI / arc_length)); + _PathArcToN(center, radius, a_min, a_max, arc_segment_count); + } +} + +ImVec2 ImBezierCubicCalc(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, float t) +{ + float u = 1.0f - t; + float w1 = u * u * u; + float w2 = 3 * u * u * t; + float w3 = 3 * u * t * t; + float w4 = t * t * t; + return ImVec2(w1 * p1.x + w2 * p2.x + w3 * p3.x + w4 * p4.x, w1 * p1.y + w2 * p2.y + w3 * p3.y + w4 * p4.y); +} + +ImVec2 ImBezierQuadraticCalc(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, float t) +{ + float u = 1.0f - t; + float w1 = u * u; + float w2 = 2 * u * t; + float w3 = t * t; + return ImVec2(w1 * p1.x + w2 * p2.x + w3 * p3.x, w1 * p1.y + w2 * p2.y + w3 * p3.y); +} + +// Closely mimics ImBezierCubicClosestPointCasteljau() in imgui.cpp +static void PathBezierCubicCurveToCasteljau(ImVector* path, float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4, float tess_tol, int level) +{ + float dx = x4 - x1; + float dy = y4 - y1; + float d2 = (x2 - x4) * dy - (y2 - y4) * dx; + float d3 = (x3 - x4) * dy - (y3 - y4) * dx; + d2 = (d2 >= 0) ? d2 : -d2; + d3 = (d3 >= 0) ? d3 : -d3; + if ((d2 + d3) * (d2 + d3) < tess_tol * (dx * dx + dy * dy)) + { + path->push_back(ImVec2(x4, y4)); + } + else if (level < 10) + { + float x12 = (x1 + x2) * 0.5f, y12 = (y1 + y2) * 0.5f; + float x23 = (x2 + x3) * 0.5f, y23 = (y2 + y3) * 0.5f; + float x34 = (x3 + x4) * 0.5f, y34 = (y3 + y4) * 0.5f; + float x123 = (x12 + x23) * 0.5f, y123 = (y12 + y23) * 0.5f; + float x234 = (x23 + x34) * 0.5f, y234 = (y23 + y34) * 0.5f; + float x1234 = (x123 + x234) * 0.5f, y1234 = (y123 + y234) * 0.5f; + PathBezierCubicCurveToCasteljau(path, x1, y1, x12, y12, x123, y123, x1234, y1234, tess_tol, level + 1); + PathBezierCubicCurveToCasteljau(path, x1234, y1234, x234, y234, x34, y34, x4, y4, tess_tol, level + 1); + } +} + +static void PathBezierQuadraticCurveToCasteljau(ImVector* path, float x1, float y1, float x2, float y2, float x3, float y3, float tess_tol, int level) +{ + float dx = x3 - x1, dy = y3 - y1; + float det = (x2 - x3) * dy - (y2 - y3) * dx; + if (det * det * 4.0f < tess_tol * (dx * dx + dy * dy)) + { + path->push_back(ImVec2(x3, y3)); + } + else if (level < 10) + { + float x12 = (x1 + x2) * 0.5f, y12 = (y1 + y2) * 0.5f; + float x23 = (x2 + x3) * 0.5f, y23 = (y2 + y3) * 0.5f; + float x123 = (x12 + x23) * 0.5f, y123 = (y12 + y23) * 0.5f; + PathBezierQuadraticCurveToCasteljau(path, x1, y1, x12, y12, x123, y123, tess_tol, level + 1); + PathBezierQuadraticCurveToCasteljau(path, x123, y123, x23, y23, x3, y3, tess_tol, level + 1); + } +} + +void ImDrawList::PathBezierCubicCurveTo(const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, int num_segments) +{ + ImVec2 p1 = _Path.back(); + if (num_segments == 0) + { + IM_ASSERT(_Data->CurveTessellationTol > 0.0f); + PathBezierCubicCurveToCasteljau(&_Path, p1.x, p1.y, p2.x, p2.y, p3.x, p3.y, p4.x, p4.y, _Data->CurveTessellationTol, 0); // Auto-tessellated + } + else + { + float t_step = 1.0f / (float)num_segments; + for (int i_step = 1; i_step <= num_segments; i_step++) + _Path.push_back(ImBezierCubicCalc(p1, p2, p3, p4, t_step * i_step)); + } +} + +void ImDrawList::PathBezierQuadraticCurveTo(const ImVec2& p2, const ImVec2& p3, int num_segments) +{ + ImVec2 p1 = _Path.back(); + if (num_segments == 0) + { + IM_ASSERT(_Data->CurveTessellationTol > 0.0f); + PathBezierQuadraticCurveToCasteljau(&_Path, p1.x, p1.y, p2.x, p2.y, p3.x, p3.y, _Data->CurveTessellationTol, 0);// Auto-tessellated + } + else + { + float t_step = 1.0f / (float)num_segments; + for (int i_step = 1; i_step <= num_segments; i_step++) + _Path.push_back(ImBezierQuadraticCalc(p1, p2, p3, t_step * i_step)); + } +} + +IM_STATIC_ASSERT(ImDrawFlags_RoundCornersTopLeft == (1 << 4)); +static inline ImDrawFlags FixRectCornerFlags(ImDrawFlags flags) +{ +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + // Obsoleted in 1.82 (from February 2021) + // Legacy Support for hard coded ~0 (used to be a suggested equivalent to ImDrawCornerFlags_All) + // ~0 --> ImDrawFlags_RoundCornersAll or 0 + if (flags == ~0) + return ImDrawFlags_RoundCornersAll; + + // Legacy Support for hard coded 0x01 to 0x0F (matching 15 out of 16 old flags combinations) + // 0x01 --> ImDrawFlags_RoundCornersTopLeft (VALUE 0x01 OVERLAPS ImDrawFlags_Closed but ImDrawFlags_Closed is never valid in this path!) + // 0x02 --> ImDrawFlags_RoundCornersTopRight + // 0x03 --> ImDrawFlags_RoundCornersTopLeft | ImDrawFlags_RoundCornersTopRight + // 0x04 --> ImDrawFlags_RoundCornersBotLeft + // 0x05 --> ImDrawFlags_RoundCornersTopLeft | ImDrawFlags_RoundCornersBotLeft + // ... + // 0x0F --> ImDrawFlags_RoundCornersAll or 0 + // (See all values in ImDrawCornerFlags_) + if (flags >= 0x01 && flags <= 0x0F) + return (flags << 4); + + // We cannot support hard coded 0x00 with 'float rounding > 0.0f' --> replace with ImDrawFlags_RoundCornersNone or use 'float rounding = 0.0f' +#endif + + // If this triggers, please update your code replacing hardcoded values with new ImDrawFlags_RoundCorners* values. + // Note that ImDrawFlags_Closed (== 0x01) is an invalid flag for AddRect(), AddRectFilled(), PathRect() etc... + IM_ASSERT((flags & 0x0F) == 0 && "Misuse of legacy hardcoded ImDrawCornerFlags values!"); + + if ((flags & ImDrawFlags_RoundCornersMask_) == 0) + flags |= ImDrawFlags_RoundCornersAll; + + return flags; +} + +void ImDrawList::PathRect(const ImVec2& a, const ImVec2& b, float rounding, ImDrawFlags flags) +{ + if (rounding >= 0.5f) + { + flags = FixRectCornerFlags(flags); + rounding = ImMin(rounding, ImFabs(b.x - a.x) * (((flags & ImDrawFlags_RoundCornersTop) == ImDrawFlags_RoundCornersTop) || ((flags & ImDrawFlags_RoundCornersBottom) == ImDrawFlags_RoundCornersBottom) ? 0.5f : 1.0f) - 1.0f); + rounding = ImMin(rounding, ImFabs(b.y - a.y) * (((flags & ImDrawFlags_RoundCornersLeft) == ImDrawFlags_RoundCornersLeft) || ((flags & ImDrawFlags_RoundCornersRight) == ImDrawFlags_RoundCornersRight) ? 0.5f : 1.0f) - 1.0f); + } + if (rounding < 0.5f || (flags & ImDrawFlags_RoundCornersMask_) == ImDrawFlags_RoundCornersNone) + { + PathLineTo(a); + PathLineTo(ImVec2(b.x, a.y)); + PathLineTo(b); + PathLineTo(ImVec2(a.x, b.y)); + } + else + { + const float rounding_tl = (flags & ImDrawFlags_RoundCornersTopLeft) ? rounding : 0.0f; + const float rounding_tr = (flags & ImDrawFlags_RoundCornersTopRight) ? rounding : 0.0f; + const float rounding_br = (flags & ImDrawFlags_RoundCornersBottomRight) ? rounding : 0.0f; + const float rounding_bl = (flags & ImDrawFlags_RoundCornersBottomLeft) ? rounding : 0.0f; + PathArcToFast(ImVec2(a.x + rounding_tl, a.y + rounding_tl), rounding_tl, 6, 9); + PathArcToFast(ImVec2(b.x - rounding_tr, a.y + rounding_tr), rounding_tr, 9, 12); + PathArcToFast(ImVec2(b.x - rounding_br, b.y - rounding_br), rounding_br, 0, 3); + PathArcToFast(ImVec2(a.x + rounding_bl, b.y - rounding_bl), rounding_bl, 3, 6); + } +} + +void ImDrawList::AddLine(const ImVec2& p1, const ImVec2& p2, ImU32 col, float thickness) +{ + + PathLineTo(p1 + ImVec2(0.5f, 0.5f)); + PathLineTo(p2 + ImVec2(0.5f, 0.5f)); + PathStroke(col, 0, thickness); +} + +// p_min = upper-left, p_max = lower-right +// Note we don't render 1 pixels sized rectangles properly. +void ImDrawList::AddRect(const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding, ImDrawFlags flags, float thickness) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + if (Flags & ImDrawListFlags_AntiAliasedLines) + PathRect(p_min + ImVec2(0.50f, 0.50f), p_max - ImVec2(0.50f, 0.50f), rounding, flags); + else + PathRect(p_min + ImVec2(0.50f, 0.50f), p_max - ImVec2(0.49f, 0.49f), rounding, flags); // Better looking lower-right corner and rounded non-AA shapes. + PathStroke(col, ImDrawFlags_Closed, thickness); +} + +void ImDrawList::AddRectFilled(const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding, ImDrawFlags flags) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + if (rounding < 0.5f || (flags & ImDrawFlags_RoundCornersMask_) == ImDrawFlags_RoundCornersNone) + { + PrimReserve(6, 4); + PrimRect(p_min, p_max, col); + } + else + { + PathRect(p_min, p_max, rounding, flags); + PathFillConvex(col); + } +} + +// p_min = upper-left, p_max = lower-right +void ImDrawList::AddRectFilledMultiColor(const ImVec2& p_min, const ImVec2& p_max, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left) +{ + if (((col_upr_left | col_upr_right | col_bot_right | col_bot_left) & IM_COL32_A_MASK) == 0) + return; + + const ImVec2 uv = _Data->TexUvWhitePixel; + PrimReserve(6, 4); + PrimWriteIdx((ImDrawIdx)(_VtxCurrentIdx)); PrimWriteIdx((ImDrawIdx)(_VtxCurrentIdx + 1)); PrimWriteIdx((ImDrawIdx)(_VtxCurrentIdx + 2)); + PrimWriteIdx((ImDrawIdx)(_VtxCurrentIdx)); PrimWriteIdx((ImDrawIdx)(_VtxCurrentIdx + 2)); PrimWriteIdx((ImDrawIdx)(_VtxCurrentIdx + 3)); + PrimWriteVtx(p_min, uv, col_upr_left); + PrimWriteVtx(ImVec2(p_max.x, p_min.y), uv, col_upr_right); + PrimWriteVtx(p_max, uv, col_bot_right); + PrimWriteVtx(ImVec2(p_min.x, p_max.y), uv, col_bot_left); +} + +// modified by asphyxia +void ImDrawList::AddRectFilledMultiColorRounded(const ImVec2& p_min, const ImVec2& p_max, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left, float rounding, ImDrawFlags flags) +{ + if (((col_upr_left | col_upr_right | col_bot_right | col_bot_left) & IM_COL32_A_MASK) == 0) + return; + + rounding = ImMin(rounding, ImFabs(p_max.x - p_min.x) * (((flags & ImDrawFlags_RoundCornersTop) == ImDrawFlags_RoundCornersTop) || ((flags & ImDrawFlags_RoundCornersBottom) == ImDrawFlags_RoundCornersBottom) ? 0.5f : 1.0f) - 1.0f); + rounding = ImMin(rounding, ImFabs(p_max.y - p_min.y) * (((flags & ImDrawFlags_RoundCornersLeft) == ImDrawFlags_RoundCornersLeft) || ((flags & ImDrawFlags_RoundCornersRight) == ImDrawFlags_RoundCornersRight) ? 0.5f : 1.0f) - 1.0f); + + // https://github.com/ocornut/imgui/issues/3710#issuecomment-758555966 + if (rounding > 0.0f) + { + const int size_before = VtxBuffer.Size; + AddRectFilled(p_min, p_max, IM_COL32_WHITE, rounding, flags); + const int size_after = VtxBuffer.Size; + + for (int i = size_before; i < size_after; i++) + { + ImDrawVert* vert = VtxBuffer.Data + i; + + ImVec4 upr_left = ImGui::ColorConvertU32ToFloat4(col_upr_left); + ImVec4 bot_left = ImGui::ColorConvertU32ToFloat4(col_bot_left); + ImVec4 up_right = ImGui::ColorConvertU32ToFloat4(col_upr_right); + ImVec4 bot_right = ImGui::ColorConvertU32ToFloat4(col_bot_right); + + float X = ImClamp((vert->pos.x - p_min.x) / (p_max.x - p_min.x), 0.0f, 1.0f); + + // 4 colors - 8 deltas + + float r1 = upr_left.x + (up_right.x - upr_left.x) * X; + float r2 = bot_left.x + (bot_right.x - bot_left.x) * X; + + float g1 = upr_left.y + (up_right.y - upr_left.y) * X; + float g2 = bot_left.y + (bot_right.y - bot_left.y) * X; + + float b1 = upr_left.z + (up_right.z - upr_left.z) * X; + float b2 = bot_left.z + (bot_right.z - bot_left.z) * X; + + float a1 = upr_left.w + (up_right.w - upr_left.w) * X; + float a2 = bot_left.w + (bot_right.w - bot_left.w) * X; + + + float Y = ImClamp((vert->pos.y - p_min.y) / (p_max.y - p_min.y), 0.0f, 1.0f); + float r = r1 + (r2 - r1) * Y; + float g = g1 + (g2 - g1) * Y; + float b = b1 + (b2 - b1) * Y; + float a = a1 + (a2 - a1) * Y; + ImVec4 RGBA(r, g, b, a); + + RGBA = RGBA * ImGui::ColorConvertU32ToFloat4(vert->col); + + vert->col = ImColor(RGBA); + } + return; + } + + const ImVec2 uv = _Data->TexUvWhitePixel; + PrimReserve(6, 4); + PrimWriteIdx((ImDrawIdx)(_VtxCurrentIdx)); PrimWriteIdx((ImDrawIdx)(_VtxCurrentIdx + 1)); PrimWriteIdx((ImDrawIdx)(_VtxCurrentIdx + 2)); + PrimWriteIdx((ImDrawIdx)(_VtxCurrentIdx)); PrimWriteIdx((ImDrawIdx)(_VtxCurrentIdx + 2)); PrimWriteIdx((ImDrawIdx)(_VtxCurrentIdx + 3)); + PrimWriteVtx(p_min, uv, col_upr_left); + PrimWriteVtx(ImVec2(p_max.x, p_min.y), uv, col_upr_right); + PrimWriteVtx(p_max, uv, col_bot_right); + PrimWriteVtx(ImVec2(p_min.x, p_max.y), uv, col_bot_left); +} + +void ImDrawList::AddQuad(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, ImU32 col, float thickness) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + PathLineTo(p1); + PathLineTo(p2); + PathLineTo(p3); + PathLineTo(p4); + PathStroke(col, ImDrawFlags_Closed, thickness); +} + +void ImDrawList::AddQuadFilled(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, ImU32 col) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + PathLineTo(p1); + PathLineTo(p2); + PathLineTo(p3); + PathLineTo(p4); + PathFillConvex(col); +} + +void ImDrawList::AddTriangle(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col, float thickness) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + PathLineTo(p1); + PathLineTo(p2); + PathLineTo(p3); + PathStroke(col, ImDrawFlags_Closed, thickness); +} + +void ImDrawList::AddTriangleFilled(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + PathLineTo(p1); + PathLineTo(p2); + PathLineTo(p3); + PathFillConvex(col); +} + +void ImDrawList::AddCircle(const ImVec2& center, float radius, ImU32 col, int num_segments, float thickness) +{ + if ((col & IM_COL32_A_MASK) == 0 || radius < 0.5f) + return; + + if (num_segments <= 0) + { + // Use arc with automatic segment count + _PathArcToFastEx(center, radius - 0.5f, 0, IM_DRAWLIST_ARCFAST_SAMPLE_MAX, 0); + _Path.Size--; + } + else + { + // Explicit segment count (still clamp to avoid drawing insanely tessellated shapes) + num_segments = ImClamp(num_segments, 3, IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX); + + // Because we are filling a closed shape we remove 1 from the count of segments/points + const float a_max = (IM_PI * 2.0f) * ((float)num_segments - 1.0f) / (float)num_segments; + PathArcTo(center, radius - 0.5f, 0.0f, a_max, num_segments - 1); + } + + PathStroke(col, ImDrawFlags_Closed, thickness); +} + +void ImDrawList::AddCircleFilled(const ImVec2& center, float radius, ImU32 col, int num_segments) +{ + if ((col & IM_COL32_A_MASK) == 0 || radius < 0.5f) + return; + + if (num_segments <= 0) + { + // Use arc with automatic segment count + _PathArcToFastEx(center, radius, 0, IM_DRAWLIST_ARCFAST_SAMPLE_MAX, 0); + _Path.Size--; + } + else + { + // Explicit segment count (still clamp to avoid drawing insanely tessellated shapes) + num_segments = ImClamp(num_segments, 3, IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX); + + // Because we are filling a closed shape we remove 1 from the count of segments/points + const float a_max = (IM_PI * 2.0f) * ((float)num_segments - 1.0f) / (float)num_segments; + PathArcTo(center, radius, 0.0f, a_max, num_segments - 1); + } + + PathFillConvex(col); +} + +// Guaranteed to honor 'num_segments' +void ImDrawList::AddNgon(const ImVec2& center, float radius, ImU32 col, int num_segments, float thickness) +{ + if ((col & IM_COL32_A_MASK) == 0 || num_segments <= 2) + return; + + // Because we are filling a closed shape we remove 1 from the count of segments/points + const float a_max = (IM_PI * 2.0f) * ((float)num_segments - 1.0f) / (float)num_segments; + PathArcTo(center, radius - 0.5f, 0.0f, a_max, num_segments - 1); + PathStroke(col, ImDrawFlags_Closed, thickness); +} + +// Guaranteed to honor 'num_segments' +void ImDrawList::AddNgonFilled(const ImVec2& center, float radius, ImU32 col, int num_segments) +{ + if ((col & IM_COL32_A_MASK) == 0 || num_segments <= 2) + return; + + // Because we are filling a closed shape we remove 1 from the count of segments/points + const float a_max = (IM_PI * 2.0f) * ((float)num_segments - 1.0f) / (float)num_segments; + PathArcTo(center, radius, 0.0f, a_max, num_segments - 1); + PathFillConvex(col); +} + +// Cubic Bezier takes 4 controls points +void ImDrawList::AddBezierCubic(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, ImU32 col, float thickness, int num_segments) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + PathLineTo(p1); + PathBezierCubicCurveTo(p2, p3, p4, num_segments); + PathStroke(col, 0, thickness); +} + +// Quadratic Bezier takes 3 controls points +void ImDrawList::AddBezierQuadratic(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col, float thickness, int num_segments) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + PathLineTo(p1); + PathBezierQuadraticCurveTo(p2, p3, num_segments); + PathStroke(col, 0, thickness); +} + +void ImDrawList::AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end, float wrap_width, const ImVec4* cpu_fine_clip_rect) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + if (text_end == NULL) + text_end = text_begin + strlen(text_begin); + if (text_begin == text_end) + return; + + // Pull default font/size from the shared ImDrawListSharedData instance + if (font == NULL) + font = _Data->Font; + if (font_size == 0.0f) + font_size = _Data->FontSize; + + IM_ASSERT(font->ContainerAtlas->TexID == _CmdHeader.TextureId); // Use high-level ImGui::PushFont() or low-level ImDrawList::PushTextureId() to change font. + + ImVec4 clip_rect = _CmdHeader.ClipRect; + if (cpu_fine_clip_rect) + { + clip_rect.x = ImMax(clip_rect.x, cpu_fine_clip_rect->x); + clip_rect.y = ImMax(clip_rect.y, cpu_fine_clip_rect->y); + clip_rect.z = ImMin(clip_rect.z, cpu_fine_clip_rect->z); + clip_rect.w = ImMin(clip_rect.w, cpu_fine_clip_rect->w); + } + font->RenderText(this, font_size, pos, col, clip_rect, text_begin, text_end, wrap_width, cpu_fine_clip_rect != NULL); +} + +void ImDrawList::AddText(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end) +{ + AddText(NULL, 0.0f, pos, col, text_begin, text_end); +} + +// modified by asphyxia +void ImDrawList::AddMultiColorText(const ImFont* pFont, const float flFontSize, const ImVec2& vecPosition, const char* szText, const ImU32 colRight, const ImU32 colLeft) +{ + if (colRight == colLeft) + { + this->AddText(pFont, flFontSize, vecPosition, colRight, szText); + return; + } + + const ImVec2 vecTextSize = pFont->CalcTextSizeA(flFontSize, FLT_MAX, 0.0f, szText); + constexpr float flSmooth = 175.f; + float flVtxOut = flSmooth * 0.5f; + float flVtxIn = flVtxOut - flSmooth; + + // dummy draw to get the vertex count + const int nVtxStartIdx = this->VtxBuffer.Size; + this->AddText(pFont, flFontSize, vecPosition, IM_COL32(255, 255, 255, 255), szText); + const int nVtxEndIdx = this->VtxBuffer.Size; + + // add vertexes + ImVec2 textcenter(vecPosition.x + (vecTextSize.x / 2), vecPosition.y + (vecTextSize.y / 2)); + + const float flAlpha0 = (0.5f / flVtxOut); + const float flAlpha1 = 1.0f / 6.0f * 2.0f * IM_PI + (0.5f / flVtxOut); + + ImVec2 vecGradient0(textcenter.x + ImCos(flAlpha0) * flVtxIn, textcenter.y + ImSin(flAlpha0) * flVtxIn); + ImVec2 vecGradient1(textcenter.x + ImCos(flAlpha1) * flVtxIn, textcenter.y + ImSin(flAlpha1) * flVtxIn); + ImGui::ShadeVertsLinearColorGradientKeepAlpha(this, nVtxStartIdx, nVtxEndIdx, vecGradient0, vecGradient1, colLeft, colRight); +} + +void ImDrawList::AddImage(ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2& p_max, const ImVec2& uv_min, const ImVec2& uv_max, ImU32 col) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + const bool push_texture_id = user_texture_id != _CmdHeader.TextureId; + if (push_texture_id) + PushTextureID(user_texture_id); + + PrimReserve(6, 4); + PrimRectUV(p_min, p_max, uv_min, uv_max, col); + + if (push_texture_id) + PopTextureID(); +} + +void ImDrawList::AddImageQuad(ImTextureID user_texture_id, const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, const ImVec2& uv1, const ImVec2& uv2, const ImVec2& uv3, const ImVec2& uv4, ImU32 col) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + const bool push_texture_id = user_texture_id != _CmdHeader.TextureId; + if (push_texture_id) + PushTextureID(user_texture_id); + + PrimReserve(6, 4); + PrimQuadUV(p1, p2, p3, p4, uv1, uv2, uv3, uv4, col); + + if (push_texture_id) + PopTextureID(); +} + +void ImDrawList::AddImageRounded(ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2& p_max, const ImVec2& uv_min, const ImVec2& uv_max, ImU32 col, float rounding, ImDrawFlags flags) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + flags = FixRectCornerFlags(flags); + if (rounding < 0.5f || (flags & ImDrawFlags_RoundCornersMask_) == ImDrawFlags_RoundCornersNone) + { + AddImage(user_texture_id, p_min, p_max, uv_min, uv_max, col); + return; + } + + const bool push_texture_id = user_texture_id != _CmdHeader.TextureId; + if (push_texture_id) + PushTextureID(user_texture_id); + + int vert_start_idx = VtxBuffer.Size; + PathRect(p_min, p_max, rounding, flags); + PathFillConvex(col); + int vert_end_idx = VtxBuffer.Size; + ImGui::ShadeVertsLinearUV(this, vert_start_idx, vert_end_idx, p_min, p_max, uv_min, uv_max, true); + + if (push_texture_id) + PopTextureID(); +} + + +//----------------------------------------------------------------------------- +// [SECTION] ImDrawList Shadow Primitives +//----------------------------------------------------------------------------- +// - AddSubtractedRect() [Internal] +// - ClipPolygonShape() [Internal] +// - AddSubtractedRect() [Internal] +// - AddRectShadow() +//----------------------------------------------------------------------------- + +// Adds a rectangle (A) with another rectangle (B) subtracted from it (i.e. the portion of A covered by B is not drawn). Does not handle rounded corners (use the version that takes a convex polygon for that). +static void AddSubtractedRect(ImDrawList* draw_list, const ImVec2& a_min, const ImVec2& a_max, const ImVec2& a_min_uv, const ImVec2& a_max_uv, ImVec2 b_min, ImVec2 b_max, ImU32 col) +{ + // Early out without drawing anything if A is zero-size + if (a_min.x >= a_max.x || a_min.y >= a_max.y) + return; + + // Early out without drawing anything if B covers A entirely + if (a_min.x >= b_min.x && a_max.x <= b_max.x && a_min.y >= b_min.y && a_max.y <= b_max.y) + return; + + // First clip the extents of B to A + b_min = ImMax(b_min, a_min); + b_max = ImMin(b_max, a_max); + if (b_min.x >= b_max.x || b_min.y >= b_max.y) + { + // B is entirely outside A, so just draw A as-is + draw_list->PrimReserve(6, 4); + draw_list->PrimRectUV(a_min, a_max, a_min_uv, a_max_uv, col); + return; + } + + // Otherwise we need to emit (up to) four quads to cover the visible area... + // Our layout looks like this (numbers are vertex indices, letters are quads): + // + // 0---8------9-----1 + // | | B | | + // + 4------5 + + // | A |xxxxxx| C | + // | |xxxxxx| | + // + 7------6 + + // | | D | | + // 3---11-----10----2 + + const int max_verts = 12; + const int max_indices = 6 * 4; // At most four quads + draw_list->PrimReserve(max_indices, max_verts); + + ImDrawIdx* idx_write = draw_list->_IdxWritePtr; + ImDrawVert* vtx_write = draw_list->_VtxWritePtr; + ImDrawIdx idx = (ImDrawIdx)draw_list->_VtxCurrentIdx; + + // Write vertices + vtx_write[0].pos = ImVec2(a_min.x, a_min.y); vtx_write[0].uv = ImVec2(a_min_uv.x, a_min_uv.y); vtx_write[0].col = col; + vtx_write[1].pos = ImVec2(a_max.x, a_min.y); vtx_write[1].uv = ImVec2(a_max_uv.x, a_min_uv.y); vtx_write[1].col = col; + vtx_write[2].pos = ImVec2(a_max.x, a_max.y); vtx_write[2].uv = ImVec2(a_max_uv.x, a_max_uv.y); vtx_write[2].col = col; + vtx_write[3].pos = ImVec2(a_min.x, a_max.y); vtx_write[3].uv = ImVec2(a_min_uv.x, a_max_uv.y); vtx_write[3].col = col; + + const ImVec2 pos_to_uv_scale = (a_max_uv - a_min_uv) / (a_max - a_min); // Guaranteed never to be a /0 because we check for zero-size A above + const ImVec2 pos_to_uv_offset = (a_min_uv / pos_to_uv_scale) - a_min; + + // Helper that generates an interpolated UV based on position +#define LERP_UV(x_pos, y_pos) (ImVec2(((x_pos) + pos_to_uv_offset.x) * pos_to_uv_scale.x, ((y_pos) + pos_to_uv_offset.y) * pos_to_uv_scale.y)) + vtx_write[4].pos = ImVec2(b_min.x, b_min.y); vtx_write[4].uv = LERP_UV(b_min.x, b_min.y); vtx_write[4].col = col; + vtx_write[5].pos = ImVec2(b_max.x, b_min.y); vtx_write[5].uv = LERP_UV(b_max.x, b_min.y); vtx_write[5].col = col; + vtx_write[6].pos = ImVec2(b_max.x, b_max.y); vtx_write[6].uv = LERP_UV(b_max.x, b_max.y); vtx_write[6].col = col; + vtx_write[7].pos = ImVec2(b_min.x, b_max.y); vtx_write[7].uv = LERP_UV(b_min.x, b_max.y); vtx_write[7].col = col; + vtx_write[8].pos = ImVec2(b_min.x, a_min.y); vtx_write[8].uv = LERP_UV(b_min.x, a_min.y); vtx_write[8].col = col; + vtx_write[9].pos = ImVec2(b_max.x, a_min.y); vtx_write[9].uv = LERP_UV(b_max.x, a_min.y); vtx_write[9].col = col; + vtx_write[10].pos = ImVec2(b_max.x, a_max.y); vtx_write[10].uv = LERP_UV(b_max.x, a_max.y); vtx_write[10].col = col; + vtx_write[11].pos = ImVec2(b_min.x, a_max.y); vtx_write[11].uv = LERP_UV(b_min.x, a_max.y); vtx_write[11].col = col; +#undef LERP_UV + draw_list->_VtxWritePtr += 12; + draw_list->_VtxCurrentIdx += 12; + + // Write indices for each quad (if it is visible) + if (b_min.x > a_min.x) // A + { + idx_write[0] = (ImDrawIdx)(idx + 0); idx_write[1] = (ImDrawIdx)(idx + 8); idx_write[2] = (ImDrawIdx)(idx + 11); + idx_write[3] = (ImDrawIdx)(idx + 0); idx_write[4] = (ImDrawIdx)(idx + 11); idx_write[5] = (ImDrawIdx)(idx + 3); + idx_write += 6; + } + if (b_min.y > a_min.y) // B + { + idx_write[0] = (ImDrawIdx)(idx + 8); idx_write[1] = (ImDrawIdx)(idx + 9); idx_write[2] = (ImDrawIdx)(idx + 5); + idx_write[3] = (ImDrawIdx)(idx + 8); idx_write[4] = (ImDrawIdx)(idx + 5); idx_write[5] = (ImDrawIdx)(idx + 4); + idx_write += 6; + } + if (a_max.x > b_max.x) // C + { + idx_write[0] = (ImDrawIdx)(idx + 9); idx_write[1] = (ImDrawIdx)(idx + 1); idx_write[2] = (ImDrawIdx)(idx + 2); + idx_write[3] = (ImDrawIdx)(idx + 9); idx_write[4] = (ImDrawIdx)(idx + 2); idx_write[5] = (ImDrawIdx)(idx + 10); + idx_write += 6; + } + if (a_max.y > b_max.y) // D + { + idx_write[0] = (ImDrawIdx)(idx + 7); idx_write[1] = (ImDrawIdx)(idx + 6); idx_write[2] = (ImDrawIdx)(idx + 10); + idx_write[3] = (ImDrawIdx)(idx + 7); idx_write[4] = (ImDrawIdx)(idx + 10); idx_write[5] = (ImDrawIdx)(idx + 11); + idx_write += 6; + } + + const int used_indices = (int)(idx_write - draw_list->_IdxWritePtr); + draw_list->_IdxWritePtr = idx_write; + draw_list->PrimUnreserve(max_indices - used_indices, 0); +} + +// Clip a polygonal shape to a rectangle, writing the results into dest_points. The number of points emitted is returned (may be zero if the polygon was entirely outside the rectangle, or the source polygon was not valid). dest_points may still be written to even if zero was returned. +// allocated_dest_points should contain the number of allocated points in dest_points - in general this should be the number of source points + 4 to accommodate the worst case. If this is exceeded data will be truncated and -1 returned. Stack space work area is allocated based on this value so it shouldn't be too large. +static int ClipPolygonShape(ImVec2* src_points, int num_src_points, ImVec2* dest_points, int allocated_dest_points, ImVec2 clip_rect_min, ImVec2 clip_rect_max) +{ + // Early-out with an empty result if clipping region is zero-sized + if (clip_rect_max.x <= clip_rect_min.x || clip_rect_max.y <= clip_rect_min.y) + return 0; + + // Early-out if there is no source geometry + if (num_src_points < 3) + return 0; + + // The four clip planes here are indexed as: + // 0 = X-, 1 = X+, 2 = Y-, 3 = Y+ + ImU8* outflags[2]; // Double-buffered flags for each vertex indicating which of the four clip planes it is outside of + outflags[0] = (ImU8*)alloca(2 * allocated_dest_points * sizeof(ImU8)); + outflags[1] = outflags[0] + allocated_dest_points; + + // Calculate initial outflags + ImU8 outflags_anded = 0xFF; + ImU8 outflags_ored = 0; + for (int point_idx = 0; point_idx < num_src_points; point_idx++) + { + const ImVec2 pos = src_points[point_idx]; + const ImU8 point_outflags = (pos.x < clip_rect_min.x ? 1 : 0) | (pos.x > clip_rect_max.x ? 2 : 0) | (pos.y < clip_rect_min.y ? 4 : 0) | (pos.y > clip_rect_max.y ? 8 : 0); + outflags[0][point_idx] = point_outflags; // Writing to buffer 0 + outflags_anded &= point_outflags; + outflags_ored |= point_outflags; + } + if (outflags_anded != 0) // Entirely clipped by any one plane, so nothing remains + return 0; + + if (outflags_ored == 0) // Entirely within bounds, so trivial accept + { + if (allocated_dest_points < num_src_points) + return -1; // Not sure what the caller was thinking if this happens, but we should handle it gracefully + + memcpy(dest_points, src_points, num_src_points * sizeof(ImVec2)); + return num_src_points; + } + + // Shape needs clipping + ImVec2* clip_buf[2]; // Double-buffered work area + clip_buf[0] = (ImVec2*)alloca(2 * allocated_dest_points * sizeof(ImVec2)); //-V630 + clip_buf[1] = clip_buf[0] + allocated_dest_points; + + memcpy(clip_buf[0], src_points, num_src_points * sizeof(ImVec2)); + int clip_buf_size = num_src_points; // Number of vertices currently in the clip buffer + + int read_buffer_idx = 0; // The index of the clip buffer/out-flags we are reading (0 or 1) + + for (int clip_plane = 0; clip_plane < 4; clip_plane++) // 0 = X-, 1 = X+, 2 = Y-, 3 = Y+ + { + const int clip_plane_bit = 1 << clip_plane; // Bit mask for our current plane in out-flags + if ((outflags_ored & clip_plane_bit) == 0) + continue; // All vertices are inside this plane, so no need to clip + + ImVec2* read_vert = &clip_buf[read_buffer_idx][0]; // Clip buffer vertex we are currently reading + ImVec2* write_vert = &clip_buf[1 - read_buffer_idx][0]; // Clip buffer vertex we are currently writing + ImVec2* write_vert_end = write_vert + allocated_dest_points; // End of the write buffer + ImU8* read_outflags = &outflags[read_buffer_idx][0]; // Out-flag we are currently reading + ImU8* write_outflags = &outflags[1 - read_buffer_idx][0]; // Out-flag we are currently writing + + // Keep track of the last vertex visited, initially the last in the list + ImVec2* last_vert = &read_vert[clip_buf_size - 1]; + ImU8 last_outflags = read_outflags[clip_buf_size - 1]; + + for (int vert = 0; vert < clip_buf_size; vert++) + { + ImU8 current_outflags = *(read_outflags++); + bool out = (current_outflags & clip_plane_bit) != 0; + if (((current_outflags ^ last_outflags) & clip_plane_bit) == 0) // We haven't crossed the clip plane + { + if (!out) + { + // Emit vertex as-is + if (write_vert >= write_vert_end) + return -1; // Ran out of buffer space, so abort + *(write_vert++) = *read_vert; + *(write_outflags++) = current_outflags; + } + } + else + { + // Emit a vertex at the intersection point + float t = 0.0f; + ImVec2 pos0 = *last_vert; + ImVec2 pos1 = *read_vert; + ImVec2 intersect_pos; + switch (clip_plane) + { + case 0: t = (clip_rect_min.x - pos0.x) / (pos1.x - pos0.x); intersect_pos = ImVec2(clip_rect_min.x, pos0.y + ((pos1.y - pos0.y) * t)); break; // X- + case 1: t = (clip_rect_max.x - pos0.x) / (pos1.x - pos0.x); intersect_pos = ImVec2(clip_rect_max.x, pos0.y + ((pos1.y - pos0.y) * t)); break; // X+ + case 2: t = (clip_rect_min.y - pos0.y) / (pos1.y - pos0.y); intersect_pos = ImVec2(pos0.x + ((pos1.x - pos0.x) * t), clip_rect_min.y); break; // Y- + case 3: t = (clip_rect_max.y - pos0.y) / (pos1.y - pos0.y); intersect_pos = ImVec2(pos0.x + ((pos1.x - pos0.x) * t), clip_rect_max.y); break; // Y+ + } + + if (write_vert >= write_vert_end) + return -1; // Ran out of buffer space, so abort + + // Write new out-flags for the vertex we just emitted + *(write_vert++) = intersect_pos; + *(write_outflags++) = (intersect_pos.x < clip_rect_min.x ? 1 : 0) | (intersect_pos.x > clip_rect_max.x ? 2 : 0) | (intersect_pos.y < clip_rect_min.y ? 4 : 0) | (intersect_pos.y > clip_rect_max.y ? 8 : 0); + + if (!out) + { + // When coming back in, also emit the actual vertex + if (write_vert >= write_vert_end) + return -1; // Ran out of buffer space, so abort + *(write_vert++) = *read_vert; + *(write_outflags++) = current_outflags; + } + + last_outflags = current_outflags; + } + + last_vert = read_vert; + read_vert++; // Advance to next vertex + } + + clip_buf_size = (int)(write_vert - &clip_buf[1 - read_buffer_idx][0]); // Update buffer size + read_buffer_idx = 1 - read_buffer_idx; // Swap buffers + } + + if (clip_buf_size < 3) + return 0; // Nothing to return + + // Copy results to output buffer, removing any redundant vertices + int num_out_verts = 0; + ImVec2 last_vert = clip_buf[read_buffer_idx][clip_buf_size - 1]; + for (int i = 0; i < clip_buf_size; i++) + { + ImVec2 vert = clip_buf[read_buffer_idx][i]; + if (ImLengthSqr(vert - last_vert) <= 0.00001f) + continue; + dest_points[num_out_verts++] = vert; + last_vert = vert; + } + + // Return size (IF this is still a valid shape) + return (num_out_verts > 2) ? num_out_verts : 0; +} + +// Adds a rectangle (A) with a convex shape (B) subtracted from it (i.e. the portion of A covered by B is not drawn). +static void AddSubtractedRect(ImDrawList* draw_list, const ImVec2& a_min, const ImVec2& a_max, const ImVec2& a_min_uv, const ImVec2& a_max_uv, ImVec2* b_points, int num_b_points, ImU32 col) +{ + // Early out without drawing anything if A is zero-size + if (a_min.x >= a_max.x || a_min.y >= a_max.y) + return; + + // First clip B to A + const int max_clipped_points = num_b_points + 4; + ImVec2* clipped_b_points = (ImVec2*)alloca(max_clipped_points * sizeof(ImVec2)); //-V630 + const int num_clipped_points = ClipPolygonShape(b_points, num_b_points, clipped_b_points, max_clipped_points, a_min, a_max); + IM_ASSERT(num_clipped_points >= 0); // -1 would indicate max_clipped_points was too small, which shouldn't happen + + b_points = clipped_b_points; + num_b_points = num_clipped_points; + + if (num_clipped_points == 0) + { + // B is entirely outside A, so just draw A as-is + draw_list->PrimReserve(6, 4); + draw_list->PrimRectUV(a_min, a_max, a_min_uv, a_max_uv, col); + } + else + { + // We need to generate clipped geometry + // To do this we walk the inner polygon and connect each edge to one of the four corners of our rectangle based on the quadrant their normal points at + const int max_verts = num_b_points + 4; // Inner points plus the four corners + const int max_indices = (num_b_points * 3) + (4 * 3); // Worst case is one triangle per inner edge and then four filler triangles + draw_list->PrimReserve(max_indices, max_verts); + + ImDrawIdx* idx_write = draw_list->_IdxWritePtr; + ImDrawVert* vtx_write = draw_list->_VtxWritePtr; + ImDrawIdx inner_idx = (ImDrawIdx)draw_list->_VtxCurrentIdx; // Starting index for inner vertices + + // Write inner vertices + const ImVec2 pos_to_uv_scale = (a_max_uv - a_min_uv) / (a_max - a_min); // Guaranteed never to be a /0 because we check for zero-size A above + const ImVec2 pos_to_uv_offset = (a_min_uv / pos_to_uv_scale) - a_min; + + // Helper that generates an interpolated UV based on position +#define LERP_UV(x_pos, y_pos) (ImVec2(((x_pos) + pos_to_uv_offset.x) * pos_to_uv_scale.x, ((y_pos) + pos_to_uv_offset.y) * pos_to_uv_scale.y)) + for (int i = 0; i < num_b_points; i++) + { + vtx_write[i].pos = b_points[i]; + vtx_write[i].uv = LERP_UV(b_points[i].x, b_points[i].y); + vtx_write[i].col = col; + } +#undef LERP_UV + + vtx_write += num_b_points; + + // Write outer vertices + ImDrawIdx outer_idx = (ImDrawIdx)(inner_idx + num_b_points); // Starting index for outer vertices + + ImVec2 outer_verts[4]; + outer_verts[0] = ImVec2(a_min.x, a_min.y); // X- Y- (quadrant 0, top left) + outer_verts[1] = ImVec2(a_max.x, a_min.y); // X+ Y- (quadrant 1, top right) + outer_verts[2] = ImVec2(a_max.x, a_max.y); // X+ Y+ (quadrant 2, bottom right) + outer_verts[3] = ImVec2(a_min.x, a_max.y); // X- Y+ (quadrant 3, bottom left) + + vtx_write[0].pos = outer_verts[0]; vtx_write[0].uv = ImVec2(a_min_uv.x, a_min_uv.y); vtx_write[0].col = col; + vtx_write[1].pos = outer_verts[1]; vtx_write[1].uv = ImVec2(a_max_uv.x, a_min_uv.y); vtx_write[1].col = col; + vtx_write[2].pos = outer_verts[2]; vtx_write[2].uv = ImVec2(a_max_uv.x, a_max_uv.y); vtx_write[2].col = col; + vtx_write[3].pos = outer_verts[3]; vtx_write[3].uv = ImVec2(a_min_uv.x, a_max_uv.y); vtx_write[3].col = col; + + draw_list->_VtxCurrentIdx += num_b_points + 4; + draw_list->_VtxWritePtr += num_b_points + 4; + + // Now walk the inner vertices in order + ImVec2 last_inner_vert = b_points[num_b_points - 1]; + int last_inner_vert_idx = num_b_points - 1; + int last_outer_vert_idx = -1; + int first_outer_vert_idx = -1; + + // Triangle-area based check for degenerate triangles + // Min area (0.1f) is doubled (* 2.0f) because we're calculating (area * 2) here +#define IS_DEGENERATE(a, b, c) (ImFabs((((a).x * ((b).y - (c).y)) + ((b).x * ((c).y - (a).y)) + ((c).x * ((a).y - (b).y)))) < (0.1f * 2.0f)) + + // Check the winding order of the inner vertices using the sign of the triangle area, and set the outer vertex winding to match + int outer_vertex_winding = (((b_points[0].x * (b_points[1].y - b_points[2].y)) + (b_points[1].x * (b_points[2].y - b_points[0].y)) + (b_points[2].x * (b_points[0].y - b_points[1].y))) < 0.0f) ? -1 : 1; + for (int inner_vert_idx = 0; inner_vert_idx < num_b_points; inner_vert_idx++) + { + ImVec2 current_inner_vert = b_points[inner_vert_idx]; + + // Calculate normal (not actually normalized, as for our purposes here it doesn't need to be) + ImVec2 normal(current_inner_vert.y - last_inner_vert.y, -(current_inner_vert.x - last_inner_vert.x)); + + // Calculate the outer vertex index based on the quadrant the normal points at (0=top left, 1=top right, 2=bottom right, 3=bottom left) + int outer_vert_idx = (ImFabs(normal.x) > ImFabs(normal.y)) ? ((normal.x >= 0.0f) ? ((normal.y > 0.0f) ? 2 : 1) : ((normal.y > 0.0f) ? 3 : 0)) : ((normal.y >= 0.0f) ? ((normal.x > 0.0f) ? 2 : 3) : ((normal.x > 0.0f) ? 1 : 0)); + ImVec2 outer_vert = outer_verts[outer_vert_idx]; + + // Write the main triangle (connecting the inner edge to the corner) + if (!IS_DEGENERATE(last_inner_vert, current_inner_vert, outer_vert)) + { + idx_write[0] = (ImDrawIdx)(inner_idx + last_inner_vert_idx); + idx_write[1] = (ImDrawIdx)(inner_idx + inner_vert_idx); + idx_write[2] = (ImDrawIdx)(outer_idx + outer_vert_idx); + idx_write += 3; + } + + // We don't initially know which outer vertex we are going to start from, so set that here when processing the first inner vertex + if (first_outer_vert_idx == -1) + { + first_outer_vert_idx = outer_vert_idx; + last_outer_vert_idx = outer_vert_idx; + } + + // Now walk the outer edge and write any filler triangles needed (connecting outer edges to the inner vertex) + while (outer_vert_idx != last_outer_vert_idx) + { + int next_outer_vert_idx = (last_outer_vert_idx + outer_vertex_winding) & 3; + if (!IS_DEGENERATE(outer_verts[last_outer_vert_idx], outer_verts[next_outer_vert_idx], last_inner_vert)) + { + idx_write[0] = (ImDrawIdx)(outer_idx + last_outer_vert_idx); + idx_write[1] = (ImDrawIdx)(outer_idx + next_outer_vert_idx); + idx_write[2] = (ImDrawIdx)(inner_idx + last_inner_vert_idx); + idx_write += 3; + } + last_outer_vert_idx = next_outer_vert_idx; + } + + last_inner_vert = current_inner_vert; + last_inner_vert_idx = inner_vert_idx; + } + + // Write remaining filler triangles for any un-traversed outer edges + if (first_outer_vert_idx != -1) + { + while (first_outer_vert_idx != last_outer_vert_idx) + { + int next_outer_vert_idx = (last_outer_vert_idx + outer_vertex_winding) & 3; + if (!IS_DEGENERATE(outer_verts[last_outer_vert_idx], outer_verts[next_outer_vert_idx], last_inner_vert)) + { + idx_write[0] = (ImDrawIdx)(outer_idx + last_outer_vert_idx); + idx_write[1] = (ImDrawIdx)(outer_idx + next_outer_vert_idx); + idx_write[2] = (ImDrawIdx)(inner_idx + last_inner_vert_idx); + idx_write += 3; + } + last_outer_vert_idx = next_outer_vert_idx; + } + } +#undef IS_DEGENERATE + + int used_indices = (int)(idx_write - draw_list->_IdxWritePtr); + draw_list->_IdxWritePtr = idx_write; + draw_list->PrimUnreserve(max_indices - used_indices, 0); + } +} + +void ImDrawList::AddShadowRect(const ImVec2& obj_min, const ImVec2& obj_max, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, ImDrawFlags flags, float obj_rounding) +{ + if ((shadow_col & IM_COL32_A_MASK) == 0) + return; + + ImVec2* inner_rect_points = NULL; // Points that make up the shape of the inner rectangle (used when it has rounded corners) + int inner_rect_points_count = 0; + + // Generate a path describing the inner rectangle and copy it to our buffer + const bool is_filled = (flags & ImDrawFlags_ShadowCutOutShapeBackground) == 0; + const bool is_rounded = (obj_rounding > 0.0f) && ((flags & ImDrawFlags_RoundCornersMask_) != ImDrawFlags_RoundCornersNone); // Do we have rounded corners? + if (is_rounded && !is_filled) + { + IM_ASSERT(_Path.Size == 0); + PathRect(obj_min, obj_max, obj_rounding, flags); + inner_rect_points_count = _Path.Size; + inner_rect_points = (ImVec2*)alloca(inner_rect_points_count * sizeof(ImVec2)); //-V630 + memcpy(inner_rect_points, _Path.Data, inner_rect_points_count * sizeof(ImVec2)); + _Path.Size = 0; + } + + if (is_filled) + PrimReserve(6 * 9, 4 * 9); // Reserve space for adding unclipped chunks + + // Draw the relevant chunks of the texture (the texture is split into a 3x3 grid) + // FIXME-OPT: Might make sense to optimize/unroll for the fast paths (filled or not rounded) + for (int x = 0; x < 3; x++) + { + for (int y = 0; y < 3; y++) + { + const int uv_index = x + (y + y + y); // y*3 formatted so as to ensure the compiler avoids an actual multiply + const ImVec4 uvs = _Data->ShadowRectUvs[uv_index]; + + ImVec2 draw_min, draw_max; + switch (x) + { + case 0: draw_min.x = obj_min.x - shadow_thickness; draw_max.x = obj_min.x; break; + case 1: draw_min.x = obj_min.x; draw_max.x = obj_max.x; break; + case 2: draw_min.x = obj_max.x; draw_max.x = obj_max.x + shadow_thickness; break; + } + switch (y) + { + case 0: draw_min.y = obj_min.y - shadow_thickness; draw_max.y = obj_min.y; break; + case 1: draw_min.y = obj_min.y; draw_max.y = obj_max.y; break; + case 2: draw_min.y = obj_max.y; draw_max.y = obj_max.y + shadow_thickness; break; + } + + ImVec2 uv_min(uvs.x, uvs.y); + ImVec2 uv_max(uvs.z, uvs.w); + if (is_filled) + PrimRectUV(draw_min + shadow_offset, draw_max + shadow_offset, uv_min, uv_max, shadow_col); // No clipping path (draw entire shadow) + else if (is_rounded) + AddSubtractedRect(this, draw_min + shadow_offset, draw_max + shadow_offset, uv_min, uv_max, inner_rect_points, inner_rect_points_count, shadow_col); // Complex path for rounded rectangles + else + AddSubtractedRect(this, draw_min + shadow_offset, draw_max + shadow_offset, uv_min, uv_max, obj_min, obj_max, shadow_col); // Simple fast path for non-rounded rectangles + } + } +} + +// Add a shadow for a convex shape described by points and num_points +void ImDrawList::AddShadowConvexPoly(const ImVec2* points, int points_count, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, ImDrawFlags flags) +{ + const bool is_filled = (flags & ImDrawFlags_ShadowCutOutShapeBackground) == 0; + IM_ASSERT((is_filled || (ImLengthSqr(shadow_offset) < 0.00001f)) && "Drawing circle/convex shape shadows with no center fill and an offset is not currently supported"); + IM_ASSERT(points_count >= 3); + + // Calculate poly vertex order + const int vertex_winding = (((points[0].x * (points[1].y - points[2].y)) + (points[1].x * (points[2].y - points[0].y)) + (points[2].x * (points[0].y - points[1].y))) < 0.0f) ? -1 : 1; + + // If we're using anti-aliasing, then inset the shadow by 0.5 pixels to avoid unpleasant fringing artifacts + const bool use_inset_distance = (Flags & ImDrawListFlags_AntiAliasedFill) && (!is_filled); + const float inset_distance = 0.5f; + + const ImVec4 uvs = _Data->ShadowRectUvs[9]; + + int tex_width = _Data->Font->ContainerAtlas->TexWidth; + int tex_height = _Data->Font->ContainerAtlas->TexHeight; + float inv_tex_width = 1.0f / (float)tex_width; + float inv_tex_height = 1.0f / (float)tex_height; + + ImVec2 solid_uv = ImVec2(uvs.z, uvs.w); // UV at the inside of an edge + ImVec2 edge_uv = ImVec2(uvs.x, uvs.w); // UV at the outside of an edge + + ImVec2 solid_to_edge_delta_texels = edge_uv - solid_uv; // Delta between the solid/edge points in texel-space (we need this in pixels - or, to be more precise, to be at a 1:1 aspect ratio - for the rotation to work) + solid_to_edge_delta_texels.x *= (float)tex_width; + solid_to_edge_delta_texels.y *= (float)tex_height; + + // Our basic algorithm here is that we generate a straight section along each edge, and then either one or two curved corner triangles at the corners, + // which use an appropriate chunk of the texture to generate a smooth curve. + const int num_edges = points_count; + + // Normalize a vector +#define NORMALIZE(vec) ((vec) / ImLength((vec), 0.001f)) + + const int required_stack_mem = (num_edges * sizeof(ImVec2)) + (num_edges * sizeof(float)); + ImU8* base_mem_for_normals_and_edges = (ImU8*)alloca(required_stack_mem); + ImU8* mem_for_normals_and_edges = (ImU8*)base_mem_for_normals_and_edges; + + // Calculate edge normals + ImVec2* edge_normals = (ImVec2*)(void*)mem_for_normals_and_edges; + mem_for_normals_and_edges += num_edges * sizeof(ImVec2); + + for (int edge_index = 0; edge_index < num_edges; edge_index++) + { + ImVec2 edge_start = points[edge_index]; // No need to apply offset here because the normal is unaffected + ImVec2 edge_end = points[(edge_index + 1) % num_edges]; + ImVec2 edge_normal = NORMALIZE(ImVec2(edge_end.y - edge_start.y, -(edge_end.x - edge_start.x))); + edge_normals[edge_index] = edge_normal * (float)vertex_winding; // Flip normals for reverse winding + } + + // Pre-calculate edge scales + // We need to do this because we need the edge strips to have widths that match up with the corner sections, otherwise pixel cracking can occur along the boundaries + float* edge_size_scales = (float*)(void*)mem_for_normals_and_edges; + mem_for_normals_and_edges += num_edges * sizeof(float); + IM_ASSERT_PARANOID(mem_for_normals_and_edges == (base_mem_for_normals_and_edges + required_stack_mem)); // Check we used exactly what we allocated + + { + ImVec2 prev_edge_normal = edge_normals[num_edges - 1]; + for (int edge_index = 0; edge_index < num_edges; edge_index++) + { + ImVec2 edge_normal = edge_normals[edge_index]; + float cos_angle_coverage = ImDot(edge_normal, prev_edge_normal); + + if (cos_angle_coverage < 0.999999f) + { + // If we are covering more than 90 degrees we need an intermediate vertex to stop the required expansion tending towards infinity. + // And thus the effective angle will be halved (matches the similar code in loop below) + float angle_coverage = ImAcos(cos_angle_coverage); + if (cos_angle_coverage <= 0.0f) // -V1051 + angle_coverage *= 0.5f; + edge_size_scales[edge_index] = 1.0f / ImCos(angle_coverage * 0.5f); // How much we need to expand our size by to avoid clipping the corner of the texture off + } + else + { + edge_size_scales[edge_index] = 1.0f; // No corner, thus default scale + } + + prev_edge_normal = edge_normal; + } + } + + const int max_vertices = (4 + (3 * 2) + (is_filled ? 1 : 0)) * num_edges; // 4 vertices per edge plus 3*2 for potentially two corner triangles, plus one per vertex for fill + const int max_indices = ((6 + (3 * 2)) * num_edges) + (is_filled ? ((num_edges - 2) * 3) : 0); // 2 tris per edge plus up to two corner triangles, plus fill triangles + PrimReserve(max_indices, max_vertices); + ImDrawIdx* idx_write = _IdxWritePtr; + ImDrawVert* vtx_write = _VtxWritePtr; + ImDrawIdx current_idx = (ImDrawIdx)_VtxCurrentIdx; + + //ImVec2 previous_edge_start = points[0] + offset; + ImVec2 prev_edge_normal = edge_normals[num_edges - 1]; + ImVec2 edge_start = points[0] + shadow_offset; + + if (use_inset_distance) + edge_start -= NORMALIZE(edge_normals[0] + prev_edge_normal) * inset_distance; + + for (int edge_index = 0; edge_index < num_edges; edge_index++) + { + ImVec2 edge_end = points[(edge_index + 1) % num_edges] + shadow_offset; + ImVec2 edge_normal = edge_normals[edge_index]; + const float size_scale_start = edge_size_scales[edge_index]; + const float size_scale_end = edge_size_scales[(edge_index + 1) % num_edges]; + + if (use_inset_distance) + edge_end -= NORMALIZE(edge_normals[(edge_index + 1) % num_edges] + edge_normal) * inset_distance; + + // Add corner section + float cos_angle_coverage = ImDot(edge_normal, prev_edge_normal); + if (cos_angle_coverage < 0.999999f) // Don't fill if the corner is actually straight + { + // If we are covering more than 90 degrees we need an intermediate vertex to stop the required expansion tending towards infinity. + // And thus the effective angle has been halved (matches the similar code in loop above) + int num_steps = (cos_angle_coverage <= 0.0f) ? 2 : 1; + + for (int step = 0; step < num_steps; step++) + { + if (num_steps > 1) + { + if (step == 0) + edge_normal = NORMALIZE(edge_normal + prev_edge_normal); // Use half-way normal for first step + else + edge_normal = edge_normals[edge_index]; // Then use the "real" next edge normal for the second + + cos_angle_coverage = ImDot(edge_normal, prev_edge_normal); // Recalculate angle + } + + // Calculate UV for the section of the curved texture + + const float angle_coverage = ImAcos(cos_angle_coverage); + const float sin_angle_coverage = ImSin(angle_coverage); + + ImVec2 edge_delta = solid_to_edge_delta_texels; + edge_delta *= size_scale_start; + + ImVec2 rotated_edge_delta = ImVec2((edge_delta.x * cos_angle_coverage) + (edge_delta.y * sin_angle_coverage), (edge_delta.x * sin_angle_coverage) + (edge_delta.y * cos_angle_coverage)); + + // Convert from texels back into UV space + edge_delta.x *= inv_tex_width; + edge_delta.y *= inv_tex_height; + rotated_edge_delta.x *= inv_tex_width; + rotated_edge_delta.y *= inv_tex_height; + + ImVec2 expanded_edge_uv = solid_uv + edge_delta; + ImVec2 other_edge_uv = solid_uv + rotated_edge_delta; // Rotated UV to encompass the necessary section of the curve + + float expanded_thickness = shadow_thickness * size_scale_start; + + // Add a triangle to fill the corner + ImVec2 outer_edge_start = edge_start + (prev_edge_normal * expanded_thickness); + ImVec2 outer_edge_end = edge_start + (edge_normal * expanded_thickness); + + vtx_write->pos = edge_start; vtx_write->col = shadow_col; vtx_write->uv = solid_uv; vtx_write++; + vtx_write->pos = outer_edge_end; vtx_write->col = shadow_col; vtx_write->uv = expanded_edge_uv; vtx_write++; + vtx_write->pos = outer_edge_start; vtx_write->col = shadow_col; vtx_write->uv = other_edge_uv; vtx_write++; + + *(idx_write++) = current_idx; + *(idx_write++) = current_idx + 1; + *(idx_write++) = current_idx + 2; + current_idx += 3; + + prev_edge_normal = edge_normal; + } + } + + // Add section along edge + const float edge_length = ImLength(edge_end - edge_start, 0.0f); + if (edge_length > 0.00001f) // Don't try and process degenerate edges + { + ImVec2 outer_edge_start = edge_start + (edge_normal * shadow_thickness * size_scale_start); + ImVec2 outer_edge_end = edge_end + (edge_normal * shadow_thickness * size_scale_end); + ImVec2 scaled_edge_uv_start = solid_uv + ((edge_uv - solid_uv) * size_scale_start); + ImVec2 scaled_edge_uv_end = solid_uv + ((edge_uv - solid_uv) * size_scale_end); + + // Write vertices, inner first, then outer + vtx_write->pos = edge_start; vtx_write->col = shadow_col; vtx_write->uv = solid_uv; vtx_write++; + vtx_write->pos = edge_end; vtx_write->col = shadow_col; vtx_write->uv = solid_uv; vtx_write++; + vtx_write->pos = outer_edge_end; vtx_write->col = shadow_col; vtx_write->uv = scaled_edge_uv_end; vtx_write++; + vtx_write->pos = outer_edge_start; vtx_write->col = shadow_col; vtx_write->uv = scaled_edge_uv_start; vtx_write++; + + *(idx_write++) = current_idx; + *(idx_write++) = current_idx + 1; + *(idx_write++) = current_idx + 2; + *(idx_write++) = current_idx; + *(idx_write++) = current_idx + 2; + *(idx_write++) = current_idx + 3; + current_idx += 4; + } + + edge_start = edge_end; + } + + // Fill if requested + if (is_filled) + { + // Add vertices + for (int edge_index = 0; edge_index < num_edges; edge_index++) + { + vtx_write->pos = points[edge_index] + shadow_offset; + vtx_write->col = shadow_col; + vtx_write->uv = solid_uv; + vtx_write++; + } + + // Add triangles + for (int edge_index = 2; edge_index < num_edges; edge_index++) + { + *(idx_write++) = current_idx; + *(idx_write++) = (ImDrawIdx)(current_idx + edge_index - 1); + *(idx_write++) = (ImDrawIdx)(current_idx + edge_index); + } + + current_idx += (ImDrawIdx)num_edges; + } + + // Release any unused vertices/indices + int used_indices = (int)(idx_write - _IdxWritePtr); + int used_vertices = (int)(vtx_write - _VtxWritePtr); + _IdxWritePtr = idx_write; + _VtxWritePtr = vtx_write; + _VtxCurrentIdx = current_idx; + PrimUnreserve(max_indices - used_indices, max_vertices - used_vertices); +#undef NORMALIZE +} + +// Draw a shadow for a circular object +// Uses the draw path and so wipes any existing data there +void ImDrawList::AddShadowCircle(const ImVec2& obj_center, float obj_radius, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, ImDrawFlags flags, int num_segments) +{ + // Obtain segment count + if (num_segments <= 0) + { + // Automatic segment count + const int radius_idx = (int)obj_radius - 1; + if (radius_idx < IM_ARRAYSIZE(_Data->CircleSegmentCounts)) + num_segments = _Data->CircleSegmentCounts[radius_idx]; // Use cached value + else + num_segments = IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC(obj_radius, _Data->CircleSegmentMaxError); + } + else + { + // Explicit segment count (still clamp to avoid drawing insanely tessellated shapes) + num_segments = ImClamp(num_segments, 3, IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX); + } + + // Generate a path describing the inner circle and copy it to our buffer + IM_ASSERT(_Path.Size == 0); + const float a_max = (IM_PI * 2.0f) * ((float)num_segments - 1.0f) / (float)num_segments; + if (num_segments == 12) + PathArcToFast(obj_center, obj_radius, 0, 12 - 1); + else + PathArcTo(obj_center, obj_radius, 0.0f, a_max, num_segments - 1); + + // Draw the shadow using the convex shape code + AddShadowConvexPoly(_Path.Data, _Path.Size, shadow_col, shadow_thickness, shadow_offset, flags); + _Path.Size = 0; +} + +void ImDrawList::AddShadowNGon(const ImVec2& obj_center, float obj_radius, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, ImDrawFlags flags, int num_segments) +{ + IM_ASSERT(num_segments != 0); + AddShadowCircle(obj_center, obj_radius, shadow_col, shadow_thickness, shadow_offset, flags, num_segments); +} + +//----------------------------------------------------------------------------- +// [SECTION] ImDrawListSplitter +//----------------------------------------------------------------------------- +// FIXME: This may be a little confusing, trying to be a little too low-level/optimal instead of just doing vector swap.. +//----------------------------------------------------------------------------- + +void ImDrawListSplitter::ClearFreeMemory() +{ + for (int i = 0; i < _Channels.Size; i++) + { + if (i == _Current) + memset(&_Channels[i], 0, sizeof(_Channels[i])); // Current channel is a copy of CmdBuffer/IdxBuffer, don't destruct again + _Channels[i]._CmdBuffer.clear(); + _Channels[i]._IdxBuffer.clear(); + } + _Current = 0; + _Count = 1; + _Channels.clear(); +} + +void ImDrawListSplitter::Split(ImDrawList* draw_list, int channels_count) +{ + IM_UNUSED(draw_list); + IM_ASSERT(_Current == 0 && _Count <= 1 && "Nested channel splitting is not supported. Please use separate instances of ImDrawListSplitter."); + int old_channels_count = _Channels.Size; + if (old_channels_count < channels_count) + { + _Channels.reserve(channels_count); // Avoid over reserving since this is likely to stay stable + _Channels.resize(channels_count); + } + _Count = channels_count; + + // Channels[] (24/32 bytes each) hold storage that we'll swap with draw_list->_CmdBuffer/_IdxBuffer + // The content of Channels[0] at this point doesn't matter. We clear it to make state tidy in a debugger but we don't strictly need to. + // When we switch to the next channel, we'll copy draw_list->_CmdBuffer/_IdxBuffer into Channels[0] and then Channels[1] into draw_list->CmdBuffer/_IdxBuffer + memset(&_Channels[0], 0, sizeof(ImDrawChannel)); + for (int i = 1; i < channels_count; i++) + { + if (i >= old_channels_count) + { + IM_PLACEMENT_NEW(&_Channels[i]) ImDrawChannel(); + } + else + { + _Channels[i]._CmdBuffer.resize(0); + _Channels[i]._IdxBuffer.resize(0); + } + } +} + +void ImDrawListSplitter::Merge(ImDrawList* draw_list) +{ + // Note that we never use or rely on _Channels.Size because it is merely a buffer that we never shrink back to 0 to keep all sub-buffers ready for use. + if (_Count <= 1) + return; + + SetCurrentChannel(draw_list, 0); + draw_list->_PopUnusedDrawCmd(); + + // Calculate our final buffer sizes. Also fix the incorrect IdxOffset values in each command. + int new_cmd_buffer_count = 0; + int new_idx_buffer_count = 0; + ImDrawCmd* last_cmd = (_Count > 0 && draw_list->CmdBuffer.Size > 0) ? &draw_list->CmdBuffer.back() : NULL; + int idx_offset = last_cmd ? last_cmd->IdxOffset + last_cmd->ElemCount : 0; + for (int i = 1; i < _Count; i++) + { + ImDrawChannel& ch = _Channels[i]; + if (ch._CmdBuffer.Size > 0 && ch._CmdBuffer.back().ElemCount == 0 && ch._CmdBuffer.back().UserCallback == NULL) // Equivalent of PopUnusedDrawCmd() + ch._CmdBuffer.pop_back(); + + if (ch._CmdBuffer.Size > 0 && last_cmd != NULL) + { + // Do not include ImDrawCmd_AreSequentialIdxOffset() in the compare as we rebuild IdxOffset values ourselves. + // Manipulating IdxOffset (e.g. by reordering draw commands like done by RenderDimmedBackgroundBehindWindow()) is not supported within a splitter. + ImDrawCmd* next_cmd = &ch._CmdBuffer[0]; + if (ImDrawCmd_HeaderCompare(last_cmd, next_cmd) == 0 && last_cmd->UserCallback == NULL && next_cmd->UserCallback == NULL) + { + // Merge previous channel last draw command with current channel first draw command if matching. + last_cmd->ElemCount += next_cmd->ElemCount; + idx_offset += next_cmd->ElemCount; + ch._CmdBuffer.erase(ch._CmdBuffer.Data); // FIXME-OPT: Improve for multiple merges. + } + } + if (ch._CmdBuffer.Size > 0) + last_cmd = &ch._CmdBuffer.back(); + new_cmd_buffer_count += ch._CmdBuffer.Size; + new_idx_buffer_count += ch._IdxBuffer.Size; + for (int cmd_n = 0; cmd_n < ch._CmdBuffer.Size; cmd_n++) + { + ch._CmdBuffer.Data[cmd_n].IdxOffset = idx_offset; + idx_offset += ch._CmdBuffer.Data[cmd_n].ElemCount; + } + } + draw_list->CmdBuffer.resize(draw_list->CmdBuffer.Size + new_cmd_buffer_count); + draw_list->IdxBuffer.resize(draw_list->IdxBuffer.Size + new_idx_buffer_count); + + // Write commands and indices in order (they are fairly small structures, we don't copy vertices only indices) + ImDrawCmd* cmd_write = draw_list->CmdBuffer.Data + draw_list->CmdBuffer.Size - new_cmd_buffer_count; + ImDrawIdx* idx_write = draw_list->IdxBuffer.Data + draw_list->IdxBuffer.Size - new_idx_buffer_count; + for (int i = 1; i < _Count; i++) + { + ImDrawChannel& ch = _Channels[i]; + if (int sz = ch._CmdBuffer.Size) { memcpy(cmd_write, ch._CmdBuffer.Data, sz * sizeof(ImDrawCmd)); cmd_write += sz; } + if (int sz = ch._IdxBuffer.Size) { memcpy(idx_write, ch._IdxBuffer.Data, sz * sizeof(ImDrawIdx)); idx_write += sz; } + } + draw_list->_IdxWritePtr = idx_write; + + // Ensure there's always a non-callback draw command trailing the command-buffer + if (draw_list->CmdBuffer.Size == 0 || draw_list->CmdBuffer.back().UserCallback != NULL) + draw_list->AddDrawCmd(); + + // If current command is used with different settings we need to add a new command + ImDrawCmd* curr_cmd = &draw_list->CmdBuffer.Data[draw_list->CmdBuffer.Size - 1]; + if (curr_cmd->ElemCount == 0) + ImDrawCmd_HeaderCopy(curr_cmd, &draw_list->_CmdHeader); // Copy ClipRect, TextureId, VtxOffset + else if (ImDrawCmd_HeaderCompare(curr_cmd, &draw_list->_CmdHeader) != 0) + draw_list->AddDrawCmd(); + + _Count = 1; +} + +void ImDrawListSplitter::SetCurrentChannel(ImDrawList* draw_list, int idx) +{ + IM_ASSERT(idx >= 0 && idx < _Count); + if (_Current == idx) + return; + + // Overwrite ImVector (12/16 bytes), four times. This is merely a silly optimization instead of doing .swap() + memcpy(&_Channels.Data[_Current]._CmdBuffer, &draw_list->CmdBuffer, sizeof(draw_list->CmdBuffer)); + memcpy(&_Channels.Data[_Current]._IdxBuffer, &draw_list->IdxBuffer, sizeof(draw_list->IdxBuffer)); + _Current = idx; + memcpy(&draw_list->CmdBuffer, &_Channels.Data[idx]._CmdBuffer, sizeof(draw_list->CmdBuffer)); + memcpy(&draw_list->IdxBuffer, &_Channels.Data[idx]._IdxBuffer, sizeof(draw_list->IdxBuffer)); + draw_list->_IdxWritePtr = draw_list->IdxBuffer.Data + draw_list->IdxBuffer.Size; + + // If current command is used with different settings we need to add a new command + ImDrawCmd* curr_cmd = (draw_list->CmdBuffer.Size == 0) ? NULL : &draw_list->CmdBuffer.Data[draw_list->CmdBuffer.Size - 1]; + if (curr_cmd == NULL) + draw_list->AddDrawCmd(); + else if (curr_cmd->ElemCount == 0) + ImDrawCmd_HeaderCopy(curr_cmd, &draw_list->_CmdHeader); // Copy ClipRect, TextureId, VtxOffset + else if (ImDrawCmd_HeaderCompare(curr_cmd, &draw_list->_CmdHeader) != 0) + draw_list->AddDrawCmd(); +} + +//----------------------------------------------------------------------------- +// [SECTION] ImDrawData +//----------------------------------------------------------------------------- + +void ImDrawData::Clear() +{ + Valid = false; + CmdListsCount = TotalIdxCount = TotalVtxCount = 0; + CmdLists.resize(0); // The ImDrawList are NOT owned by ImDrawData but e.g. by ImGuiContext, so we don't clear them. + DisplayPos = DisplaySize = FramebufferScale = ImVec2(0.0f, 0.0f); + OwnerViewport = NULL; +} + +// Important: 'out_list' is generally going to be draw_data->CmdLists, but may be another temporary list +// as long at it is expected that the result will be later merged into draw_data->CmdLists[]. +void ImGui::AddDrawListToDrawDataEx(ImDrawData* draw_data, ImVector* out_list, ImDrawList* draw_list) +{ + if (draw_list->CmdBuffer.Size == 0) + return; + if (draw_list->CmdBuffer.Size == 1 && draw_list->CmdBuffer[0].ElemCount == 0 && draw_list->CmdBuffer[0].UserCallback == NULL) + return; + + // Draw list sanity check. Detect mismatch between PrimReserve() calls and incrementing _VtxCurrentIdx, _VtxWritePtr etc. + // May trigger for you if you are using PrimXXX functions incorrectly. + IM_ASSERT(draw_list->VtxBuffer.Size == 0 || draw_list->_VtxWritePtr == draw_list->VtxBuffer.Data + draw_list->VtxBuffer.Size); + IM_ASSERT(draw_list->IdxBuffer.Size == 0 || draw_list->_IdxWritePtr == draw_list->IdxBuffer.Data + draw_list->IdxBuffer.Size); + if (!(draw_list->Flags & ImDrawListFlags_AllowVtxOffset)) + IM_ASSERT((int)draw_list->_VtxCurrentIdx == draw_list->VtxBuffer.Size); + + // Check that draw_list doesn't use more vertices than indexable (default ImDrawIdx = unsigned short = 2 bytes = 64K vertices per ImDrawList = per window) + // If this assert triggers because you are drawing lots of stuff manually: + // - First, make sure you are coarse clipping yourself and not trying to draw many things outside visible bounds. + // Be mindful that the lower-level ImDrawList API doesn't filter vertices. Use the Metrics/Debugger window to inspect draw list contents. + // - If you want large meshes with more than 64K vertices, you can either: + // (A) Handle the ImDrawCmd::VtxOffset value in your renderer backend, and set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset'. + // Most example backends already support this from 1.71. Pre-1.71 backends won't. + // Some graphics API such as GL ES 1/2 don't have a way to offset the starting vertex so it is not supported for them. + // (B) Or handle 32-bit indices in your renderer backend, and uncomment '#define ImDrawIdx unsigned int' line in imconfig.h. + // Most example backends already support this. For example, the OpenGL example code detect index size at compile-time: + // glDrawElements(GL_TRIANGLES, (GLsizei)pcmd->ElemCount, sizeof(ImDrawIdx) == 2 ? GL_UNSIGNED_SHORT : GL_UNSIGNED_INT, idx_buffer_offset); + // Your own engine or render API may use different parameters or function calls to specify index sizes. + // 2 and 4 bytes indices are generally supported by most graphics API. + // - If for some reason neither of those solutions works for you, a workaround is to call BeginChild()/EndChild() before reaching + // the 64K limit to split your draw commands in multiple draw lists. + if (sizeof(ImDrawIdx) == 2) + IM_ASSERT(draw_list->_VtxCurrentIdx < (1 << 16) && "Too many vertices in ImDrawList using 16-bit indices. Read comment above"); + + // Add to output list + records state in ImDrawData + out_list->push_back(draw_list); + draw_data->CmdListsCount++; + draw_data->TotalVtxCount += draw_list->VtxBuffer.Size; + draw_data->TotalIdxCount += draw_list->IdxBuffer.Size; +} + +void ImDrawData::AddDrawList(ImDrawList* draw_list) +{ + IM_ASSERT(CmdLists.Size == CmdListsCount); + draw_list->_PopUnusedDrawCmd(); + ImGui::AddDrawListToDrawDataEx(this, &CmdLists, draw_list); +} + +// For backward compatibility: convert all buffers from indexed to de-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering! +void ImDrawData::DeIndexAllBuffers() +{ + ImVector new_vtx_buffer; + TotalVtxCount = TotalIdxCount = 0; + for (int i = 0; i < CmdListsCount; i++) + { + ImDrawList* cmd_list = CmdLists[i]; + if (cmd_list->IdxBuffer.empty()) + continue; + new_vtx_buffer.resize(cmd_list->IdxBuffer.Size); + for (int j = 0; j < cmd_list->IdxBuffer.Size; j++) + new_vtx_buffer[j] = cmd_list->VtxBuffer[cmd_list->IdxBuffer[j]]; + cmd_list->VtxBuffer.swap(new_vtx_buffer); + cmd_list->IdxBuffer.resize(0); + TotalVtxCount += cmd_list->VtxBuffer.Size; + } +} + +// Helper to scale the ClipRect field of each ImDrawCmd. +// Use if your final output buffer is at a different scale than draw_data->DisplaySize, +// or if there is a difference between your window resolution and framebuffer resolution. +void ImDrawData::ScaleClipRects(const ImVec2& fb_scale) +{ + for (ImDrawList* draw_list : CmdLists) + for (ImDrawCmd& cmd : draw_list->CmdBuffer) + cmd.ClipRect = ImVec4(cmd.ClipRect.x * fb_scale.x, cmd.ClipRect.y * fb_scale.y, cmd.ClipRect.z * fb_scale.x, cmd.ClipRect.w * fb_scale.y); +} + +//----------------------------------------------------------------------------- +// [SECTION] Helpers ShadeVertsXXX functions +//----------------------------------------------------------------------------- + +// Generic linear color gradient, write to RGB fields, leave A untouched. +void ImGui::ShadeVertsLinearColorGradientKeepAlpha(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, ImVec2 gradient_p0, ImVec2 gradient_p1, ImU32 col0, ImU32 col1) +{ + ImVec2 gradient_extent = gradient_p1 - gradient_p0; + float gradient_inv_length2 = 1.0f / ImLengthSqr(gradient_extent); + ImDrawVert* vert_start = draw_list->VtxBuffer.Data + vert_start_idx; + ImDrawVert* vert_end = draw_list->VtxBuffer.Data + vert_end_idx; + const int col0_r = (int)(col0 >> IM_COL32_R_SHIFT) & 0xFF; + const int col0_g = (int)(col0 >> IM_COL32_G_SHIFT) & 0xFF; + const int col0_b = (int)(col0 >> IM_COL32_B_SHIFT) & 0xFF; + const int col_delta_r = ((int)(col1 >> IM_COL32_R_SHIFT) & 0xFF) - col0_r; + const int col_delta_g = ((int)(col1 >> IM_COL32_G_SHIFT) & 0xFF) - col0_g; + const int col_delta_b = ((int)(col1 >> IM_COL32_B_SHIFT) & 0xFF) - col0_b; + for (ImDrawVert* vert = vert_start; vert < vert_end; vert++) + { + float d = ImDot(vert->pos - gradient_p0, gradient_extent); + float t = ImClamp(d * gradient_inv_length2, 0.0f, 1.0f); + int r = (int)(col0_r + col_delta_r * t); + int g = (int)(col0_g + col_delta_g * t); + int b = (int)(col0_b + col_delta_b * t); + vert->col = (r << IM_COL32_R_SHIFT) | (g << IM_COL32_G_SHIFT) | (b << IM_COL32_B_SHIFT) | (vert->col & IM_COL32_A_MASK); + } +} + +// Distribute UV over (a, b) rectangle +void ImGui::ShadeVertsLinearUV(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, bool clamp) +{ + const ImVec2 size = b - a; + const ImVec2 uv_size = uv_b - uv_a; + const ImVec2 scale = ImVec2( + size.x != 0.0f ? (uv_size.x / size.x) : 0.0f, + size.y != 0.0f ? (uv_size.y / size.y) : 0.0f); + + ImDrawVert* vert_start = draw_list->VtxBuffer.Data + vert_start_idx; + ImDrawVert* vert_end = draw_list->VtxBuffer.Data + vert_end_idx; + if (clamp) + { + const ImVec2 min = ImMin(uv_a, uv_b); + const ImVec2 max = ImMax(uv_a, uv_b); + for (ImDrawVert* vertex = vert_start; vertex < vert_end; ++vertex) + vertex->uv = ImClamp(uv_a + ImMul(ImVec2(vertex->pos.x, vertex->pos.y) - a, scale), min, max); + } + else + { + for (ImDrawVert* vertex = vert_start; vertex < vert_end; ++vertex) + vertex->uv = uv_a + ImMul(ImVec2(vertex->pos.x, vertex->pos.y) - a, scale); + } +} + +//----------------------------------------------------------------------------- +// [SECTION] ImFontConfig +//----------------------------------------------------------------------------- + +ImFontConfig::ImFontConfig() +{ + memset(this, 0, sizeof(*this)); + FontDataOwnedByAtlas = true; + OversampleH = 2; + OversampleV = 1; + GlyphMaxAdvanceX = FLT_MAX; + RasterizerMultiply = 1.0f; + EllipsisChar = (ImWchar)-1; +} + +//----------------------------------------------------------------------------- +// [SECTION] ImFontAtlas +//----------------------------------------------------------------------------- + +// A work of art lies ahead! (. = white layer, X = black layer, others are blank) +// The 2x2 white texels on the top left are the ones we'll use everywhere in Dear ImGui to render filled shapes. +// (This is used when io.MouseDrawCursor = true) +const int FONT_ATLAS_DEFAULT_TEX_DATA_W = 122; // Actual texture will be 2 times that + 1 spacing. +const int FONT_ATLAS_DEFAULT_TEX_DATA_H = 27; +static const char FONT_ATLAS_DEFAULT_TEX_DATA_PIXELS[FONT_ATLAS_DEFAULT_TEX_DATA_W * FONT_ATLAS_DEFAULT_TEX_DATA_H + 1] = +{ + "..- -XXXXXXX- X - X -XXXXXXX - XXXXXXX- XX - XX XX " + "..- -X.....X- X.X - X.X -X.....X - X.....X- X..X -X..X X..X" + "--- -XXX.XXX- X...X - X...X -X....X - X....X- X..X -X...X X...X" + "X - X.X - X.....X - X.....X -X...X - X...X- X..X - X...X X...X " + "XX - X.X -X.......X- X.......X -X..X.X - X.X..X- X..X - X...X...X " + "X.X - X.X -XXXX.XXXX- XXXX.XXXX -X.X X.X - X.X X.X- X..XXX - X.....X " + "X..X - X.X - X.X - X.X -XX X.X - X.X XX- X..X..XXX - X...X " + "X...X - X.X - X.X - XX X.X XX - X.X - X.X - X..X..X..XX - X.X " + "X....X - X.X - X.X - X.X X.X X.X - X.X - X.X - X..X..X..X.X - X...X " + "X.....X - X.X - X.X - X..X X.X X..X - X.X - X.X -XXX X..X..X..X..X- X.....X " + "X......X - X.X - X.X - X...XXXXXX.XXXXXX...X - X.X XX-XX X.X -X..XX........X..X- X...X...X " + "X.......X - X.X - X.X -X.....................X- X.X X.X-X.X X.X -X...X...........X- X...X X...X " + "X........X - X.X - X.X - X...XXXXXX.XXXXXX...X - X.X..X-X..X.X - X..............X-X...X X...X" + "X.........X -XXX.XXX- X.X - X..X X.X X..X - X...X-X...X - X.............X-X..X X..X" + "X..........X-X.....X- X.X - X.X X.X X.X - X....X-X....X - X.............X- XX XX " + "X......XXXXX-XXXXXXX- X.X - XX X.X XX - X.....X-X.....X - X............X--------------" + "X...X..X --------- X.X - X.X - XXXXXXX-XXXXXXX - X...........X - " + "X..X X..X - -XXXX.XXXX- XXXX.XXXX ------------------------------------- X..........X - " + "X.X X..X - -X.......X- X.......X - XX XX - - X..........X - " + "XX X..X - - X.....X - X.....X - X.X X.X - - X........X - " + " X..X - - X...X - X...X - X..X X..X - - X........X - " + " XX - - X.X - X.X - X...XXXXXXXXXXXXX...X - - XXXXXXXXXX - " + "------------- - X - X -X.....................X- ------------------- " + " ----------------------------------- X...XXXXXXXXXXXXX...X - " + " - X..X X..X - " + " - X.X X.X - " + " - XX XX - " +}; + +static const ImVec2 FONT_ATLAS_DEFAULT_TEX_CURSOR_DATA[ImGuiMouseCursor_COUNT][3] = +{ + // Pos ........ Size ......... Offset ...... + { ImVec2( 0,3), ImVec2(12,19), ImVec2( 0, 0) }, // ImGuiMouseCursor_Arrow + { ImVec2(13,0), ImVec2( 7,16), ImVec2( 1, 8) }, // ImGuiMouseCursor_TextInput + { ImVec2(31,0), ImVec2(23,23), ImVec2(11,11) }, // ImGuiMouseCursor_ResizeAll + { ImVec2(21,0), ImVec2( 9,23), ImVec2( 4,11) }, // ImGuiMouseCursor_ResizeNS + { ImVec2(55,18),ImVec2(23, 9), ImVec2(11, 4) }, // ImGuiMouseCursor_ResizeEW + { ImVec2(73,0), ImVec2(17,17), ImVec2( 8, 8) }, // ImGuiMouseCursor_ResizeNESW + { ImVec2(55,0), ImVec2(17,17), ImVec2( 8, 8) }, // ImGuiMouseCursor_ResizeNWSE + { ImVec2(91,0), ImVec2(17,22), ImVec2( 5, 0) }, // ImGuiMouseCursor_Hand + { ImVec2(109,0),ImVec2(13,15), ImVec2( 6, 7) }, // ImGuiMouseCursor_NotAllowed +}; + +ImFontAtlas::ImFontAtlas() +{ + memset(this, 0, sizeof(*this)); + TexGlyphPadding = 1; + PackIdMouseCursors = PackIdLines = -1; + ShadowRectIds[0] = ShadowRectIds[1] = -1; + ShadowTexConfig.SetupDefaults(); +} + +ImFontAtlas::~ImFontAtlas() +{ + IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!"); + Clear(); +} + +void ImFontAtlas::ClearInputData() +{ + IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!"); + for (ImFontConfig& font_cfg : ConfigData) + if (font_cfg.FontData && font_cfg.FontDataOwnedByAtlas) + { + IM_FREE(font_cfg.FontData); + font_cfg.FontData = NULL; + } + + // When clearing this we lose access to the font name and other information used to build the font. + for (ImFont* font : Fonts) + if (font->ConfigData >= ConfigData.Data && font->ConfigData < ConfigData.Data + ConfigData.Size) + { + font->ConfigData = NULL; + font->ConfigDataCount = 0; + } + ConfigData.clear(); + CustomRects.clear(); + PackIdMouseCursors = PackIdLines = -1; + ShadowRectIds[0] = ShadowRectIds[1] = -1; + // Important: we leave TexReady untouched +} + +void ImFontAtlas::ClearTexData() +{ + IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!"); + if (TexPixelsAlpha8) + IM_FREE(TexPixelsAlpha8); + if (TexPixelsRGBA32) + IM_FREE(TexPixelsRGBA32); + TexPixelsAlpha8 = NULL; + TexPixelsRGBA32 = NULL; + TexPixelsUseColors = false; + // Important: we leave TexReady untouched +} + +void ImFontAtlas::ClearFonts() +{ + IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!"); + Fonts.clear_delete(); + TexReady = false; +} + +void ImFontAtlas::Clear() +{ + ClearInputData(); + ClearTexData(); + ClearFonts(); +} + +void ImFontAtlas::GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel) +{ + // Build atlas on demand + if (TexPixelsAlpha8 == NULL) + Build(); + + *out_pixels = TexPixelsAlpha8; + if (out_width) *out_width = TexWidth; + if (out_height) *out_height = TexHeight; + if (out_bytes_per_pixel) *out_bytes_per_pixel = 1; +} + +void ImFontAtlas::GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel) +{ + // Convert to RGBA32 format on demand + // Although it is likely to be the most commonly used format, our font rendering is 1 channel / 8 bpp + if (!TexPixelsRGBA32) + { + unsigned char* pixels = NULL; + GetTexDataAsAlpha8(&pixels, NULL, NULL); + if (pixels) + { + TexPixelsRGBA32 = (unsigned int*)IM_ALLOC((size_t)TexWidth * (size_t)TexHeight * 4); + const unsigned char* src = pixels; + unsigned int* dst = TexPixelsRGBA32; + for (int n = TexWidth * TexHeight; n > 0; n--) + *dst++ = IM_COL32(255, 255, 255, (unsigned int)(*src++)); + } + } + + *out_pixels = (unsigned char*)TexPixelsRGBA32; + if (out_width) *out_width = TexWidth; + if (out_height) *out_height = TexHeight; + if (out_bytes_per_pixel) *out_bytes_per_pixel = 4; +} + +ImFont* ImFontAtlas::AddFont(const ImFontConfig* font_cfg) +{ + IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!"); + IM_ASSERT(font_cfg->FontData != NULL && font_cfg->FontDataSize > 0); + IM_ASSERT(font_cfg->SizePixels > 0.0f); + + // Create new font + if (!font_cfg->MergeMode) + Fonts.push_back(IM_NEW(ImFont)); + else + IM_ASSERT(!Fonts.empty() && "Cannot use MergeMode for the first font"); // When using MergeMode make sure that a font has already been added before. You can use ImGui::GetIO().Fonts->AddFontDefault() to add the default imgui font. + + ConfigData.push_back(*font_cfg); + ImFontConfig& new_font_cfg = ConfigData.back(); + if (new_font_cfg.DstFont == NULL) + new_font_cfg.DstFont = Fonts.back(); + if (!new_font_cfg.FontDataOwnedByAtlas) + { + new_font_cfg.FontData = IM_ALLOC(new_font_cfg.FontDataSize); + new_font_cfg.FontDataOwnedByAtlas = true; + memcpy(new_font_cfg.FontData, font_cfg->FontData, (size_t)new_font_cfg.FontDataSize); + } + + if (new_font_cfg.DstFont->EllipsisChar == (ImWchar)-1) + new_font_cfg.DstFont->EllipsisChar = font_cfg->EllipsisChar; + + // Invalidate texture + TexReady = false; + ClearTexData(); + return new_font_cfg.DstFont; +} + +// Default font TTF is compressed with stb_compress then base85 encoded (see misc/fonts/binary_to_compressed_c.cpp for encoder) +static unsigned int stb_decompress_length(const unsigned char* input); +static unsigned int stb_decompress(unsigned char* output, const unsigned char* input, unsigned int length); +static const char* GetDefaultCompressedFontDataTTFBase85(); +static unsigned int Decode85Byte(char c) { return c >= '\\' ? c-36 : c-35; } +static void Decode85(const unsigned char* src, unsigned char* dst) +{ + while (*src) + { + unsigned int tmp = Decode85Byte(src[0]) + 85 * (Decode85Byte(src[1]) + 85 * (Decode85Byte(src[2]) + 85 * (Decode85Byte(src[3]) + 85 * Decode85Byte(src[4])))); + dst[0] = ((tmp >> 0) & 0xFF); dst[1] = ((tmp >> 8) & 0xFF); dst[2] = ((tmp >> 16) & 0xFF); dst[3] = ((tmp >> 24) & 0xFF); // We can't assume little-endianness. + src += 5; + dst += 4; + } +} + +// Load embedded ProggyClean.ttf at size 13, disable oversampling +ImFont* ImFontAtlas::AddFontDefault(const ImFontConfig* font_cfg_template) +{ + ImFontConfig font_cfg = font_cfg_template ? *font_cfg_template : ImFontConfig(); + if (!font_cfg_template) + { + font_cfg.OversampleH = font_cfg.OversampleV = 1; + font_cfg.PixelSnapH = true; + } + if (font_cfg.SizePixels <= 0.0f) + font_cfg.SizePixels = 13.0f * 1.0f; + if (font_cfg.Name[0] == '\0') + ImFormatString(font_cfg.Name, IM_ARRAYSIZE(font_cfg.Name), "ProggyClean.ttf, %dpx", (int)font_cfg.SizePixels); + font_cfg.EllipsisChar = (ImWchar)0x0085; + font_cfg.GlyphOffset.y = 1.0f * IM_FLOOR(font_cfg.SizePixels / 13.0f); // Add +1 offset per 13 units + + const char* ttf_compressed_base85 = GetDefaultCompressedFontDataTTFBase85(); + const ImWchar* glyph_ranges = font_cfg.GlyphRanges != NULL ? font_cfg.GlyphRanges : GetGlyphRangesDefault(); + ImFont* font = AddFontFromMemoryCompressedBase85TTF(ttf_compressed_base85, font_cfg.SizePixels, &font_cfg, glyph_ranges); + return font; +} + +ImFont* ImFontAtlas::AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg_template, const ImWchar* glyph_ranges) +{ + IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!"); + size_t data_size = 0; + void* data = ImFileLoadToMemory(filename, "rb", &data_size, 0); + if (!data) + { + IM_ASSERT_USER_ERROR(0, "Could not load font file!"); + return NULL; + } + ImFontConfig font_cfg = font_cfg_template ? *font_cfg_template : ImFontConfig(); + if (font_cfg.Name[0] == '\0') + { + // Store a short copy of filename into into the font name for convenience + const char* p; + for (p = filename + strlen(filename); p > filename && p[-1] != '/' && p[-1] != '\\'; p--) {} + ImFormatString(font_cfg.Name, IM_ARRAYSIZE(font_cfg.Name), "%s, %.0fpx", p, size_pixels); + } + return AddFontFromMemoryTTF(data, (int)data_size, size_pixels, &font_cfg, glyph_ranges); +} + +// NB: Transfer ownership of 'ttf_data' to ImFontAtlas, unless font_cfg_template->FontDataOwnedByAtlas == false. Owned TTF buffer will be deleted after Build(). +ImFont* ImFontAtlas::AddFontFromMemoryTTF(void* ttf_data, int ttf_size, float size_pixels, const ImFontConfig* font_cfg_template, const ImWchar* glyph_ranges) +{ + IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!"); + ImFontConfig font_cfg = font_cfg_template ? *font_cfg_template : ImFontConfig(); + IM_ASSERT(font_cfg.FontData == NULL); + font_cfg.FontData = ttf_data; + font_cfg.FontDataSize = ttf_size; + font_cfg.SizePixels = size_pixels > 0.0f ? size_pixels : font_cfg.SizePixels; + if (glyph_ranges) + font_cfg.GlyphRanges = glyph_ranges; + return AddFont(&font_cfg); +} + +ImFont* ImFontAtlas::AddFontFromMemoryCompressedTTF(const void* compressed_ttf_data, int compressed_ttf_size, float size_pixels, const ImFontConfig* font_cfg_template, const ImWchar* glyph_ranges) +{ + const unsigned int buf_decompressed_size = stb_decompress_length((const unsigned char*)compressed_ttf_data); + unsigned char* buf_decompressed_data = (unsigned char*)IM_ALLOC(buf_decompressed_size); + stb_decompress(buf_decompressed_data, (const unsigned char*)compressed_ttf_data, (unsigned int)compressed_ttf_size); + + ImFontConfig font_cfg = font_cfg_template ? *font_cfg_template : ImFontConfig(); + IM_ASSERT(font_cfg.FontData == NULL); + font_cfg.FontDataOwnedByAtlas = true; + return AddFontFromMemoryTTF(buf_decompressed_data, (int)buf_decompressed_size, size_pixels, &font_cfg, glyph_ranges); +} + +ImFont* ImFontAtlas::AddFontFromMemoryCompressedBase85TTF(const char* compressed_ttf_data_base85, float size_pixels, const ImFontConfig* font_cfg, const ImWchar* glyph_ranges) +{ + int compressed_ttf_size = (((int)strlen(compressed_ttf_data_base85) + 4) / 5) * 4; + void* compressed_ttf = IM_ALLOC((size_t)compressed_ttf_size); + Decode85((const unsigned char*)compressed_ttf_data_base85, (unsigned char*)compressed_ttf); + ImFont* font = AddFontFromMemoryCompressedTTF(compressed_ttf, compressed_ttf_size, size_pixels, font_cfg, glyph_ranges); + IM_FREE(compressed_ttf); + return font; +} + +int ImFontAtlas::AddCustomRectRegular(int width, int height) +{ + IM_ASSERT(width > 0 && width <= 0xFFFF); + IM_ASSERT(height > 0 && height <= 0xFFFF); + ImFontAtlasCustomRect r; + r.Width = (unsigned short)width; + r.Height = (unsigned short)height; + CustomRects.push_back(r); + return CustomRects.Size - 1; // Return index +} + +int ImFontAtlas::AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset) +{ +#ifdef IMGUI_USE_WCHAR32 + IM_ASSERT(id <= IM_UNICODE_CODEPOINT_MAX); +#endif + IM_ASSERT(font != NULL); + IM_ASSERT(width > 0 && width <= 0xFFFF); + IM_ASSERT(height > 0 && height <= 0xFFFF); + ImFontAtlasCustomRect r; + r.Width = (unsigned short)width; + r.Height = (unsigned short)height; + r.GlyphID = id; + r.GlyphAdvanceX = advance_x; + r.GlyphOffset = offset; + r.Font = font; + CustomRects.push_back(r); + return CustomRects.Size - 1; // Return index +} + +void ImFontAtlas::CalcCustomRectUV(const ImFontAtlasCustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max) const +{ + IM_ASSERT(TexWidth > 0 && TexHeight > 0); // Font atlas needs to be built before we can calculate UV coordinates + IM_ASSERT(rect->IsPacked()); // Make sure the rectangle has been packed + *out_uv_min = ImVec2((float)rect->X * TexUvScale.x, (float)rect->Y * TexUvScale.y); + *out_uv_max = ImVec2((float)(rect->X + rect->Width) * TexUvScale.x, (float)(rect->Y + rect->Height) * TexUvScale.y); +} + +bool ImFontAtlas::GetMouseCursorTexData(ImGuiMouseCursor cursor_type, ImVec2* out_offset, ImVec2* out_size, ImVec2 out_uv_border[2], ImVec2 out_uv_fill[2]) +{ + if (cursor_type <= ImGuiMouseCursor_None || cursor_type >= ImGuiMouseCursor_COUNT) + return false; + if (Flags & ImFontAtlasFlags_NoMouseCursors) + return false; + + IM_ASSERT(PackIdMouseCursors != -1); + ImFontAtlasCustomRect* r = GetCustomRectByIndex(PackIdMouseCursors); + ImVec2 pos = FONT_ATLAS_DEFAULT_TEX_CURSOR_DATA[cursor_type][0] + ImVec2((float)r->X, (float)r->Y); + ImVec2 size = FONT_ATLAS_DEFAULT_TEX_CURSOR_DATA[cursor_type][1]; + *out_size = size; + *out_offset = FONT_ATLAS_DEFAULT_TEX_CURSOR_DATA[cursor_type][2]; + out_uv_border[0] = (pos) * TexUvScale; + out_uv_border[1] = (pos + size) * TexUvScale; + pos.x += FONT_ATLAS_DEFAULT_TEX_DATA_W + 1; + out_uv_fill[0] = (pos) * TexUvScale; + out_uv_fill[1] = (pos + size) * TexUvScale; + return true; +} + +bool ImFontAtlas::Build() +{ + IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!"); + + // Default font is none are specified + if (ConfigData.Size == 0) + AddFontDefault(); + + // Select builder + // - Note that we do not reassign to atlas->FontBuilderIO, since it is likely to point to static data which + // may mess with some hot-reloading schemes. If you need to assign to this (for dynamic selection) AND are + // using a hot-reloading scheme that messes up static data, store your own instance of ImFontBuilderIO somewhere + // and point to it instead of pointing directly to return value of the GetBuilderXXX functions. + const ImFontBuilderIO* builder_io = FontBuilderIO; + if (builder_io == NULL) + { +#ifdef IMGUI_ENABLE_FREETYPE + builder_io = ImGuiFreeType::GetBuilderForFreeType(); +#elif defined(IMGUI_ENABLE_STB_TRUETYPE) + builder_io = ImFontAtlasGetBuilderForStbTruetype(); +#else + IM_ASSERT(0); // Invalid Build function +#endif + } + + // Build + return builder_io->FontBuilder_Build(this); +} + +void ImFontAtlasBuildMultiplyCalcLookupTable(unsigned char out_table[256], float in_brighten_factor) +{ + for (unsigned int i = 0; i < 256; i++) + { + unsigned int value = (unsigned int)(i * in_brighten_factor); + out_table[i] = value > 255 ? 255 : (value & 0xFF); + } +} + +void ImFontAtlasBuildMultiplyRectAlpha8(const unsigned char table[256], unsigned char* pixels, int x, int y, int w, int h, int stride) +{ + IM_ASSERT_PARANOID(w <= stride); + unsigned char* data = pixels + x + y * stride; + for (int j = h; j > 0; j--, data += stride - w) + for (int i = w; i > 0; i--, data++) + *data = table[*data]; +} + +#ifdef IMGUI_ENABLE_STB_TRUETYPE +// Temporary data for one source font (multiple source fonts can be merged into one destination ImFont) +// (C++03 doesn't allow instancing ImVector<> with function-local types so we declare the type here.) +struct ImFontBuildSrcData +{ + stbtt_fontinfo FontInfo; + stbtt_pack_range PackRange; // Hold the list of codepoints to pack (essentially points to Codepoints.Data) + stbrp_rect* Rects; // Rectangle to pack. We first fill in their size and the packer will give us their position. + stbtt_packedchar* PackedChars; // Output glyphs + const ImWchar* SrcRanges; // Ranges as requested by user (user is allowed to request too much, e.g. 0x0020..0xFFFF) + int DstIndex; // Index into atlas->Fonts[] and dst_tmp_array[] + int GlyphsHighest; // Highest requested codepoint + int GlyphsCount; // Glyph count (excluding missing glyphs and glyphs already set by an earlier source font) + ImBitVector GlyphsSet; // Glyph bit map (random access, 1-bit per codepoint. This will be a maximum of 8KB) + ImVector GlyphsList; // Glyph codepoints list (flattened version of GlyphsSet) +}; + +// Temporary data for one destination ImFont* (multiple source fonts can be merged into one destination ImFont) +struct ImFontBuildDstData +{ + int SrcCount; // Number of source fonts targeting this destination font. + int GlyphsHighest; + int GlyphsCount; + ImBitVector GlyphsSet; // This is used to resolve collision when multiple sources are merged into a same destination font. +}; + +static void UnpackBitVectorToFlatIndexList(const ImBitVector* in, ImVector* out) +{ + IM_ASSERT(sizeof(in->Storage.Data[0]) == sizeof(int)); + const ImU32* it_begin = in->Storage.begin(); + const ImU32* it_end = in->Storage.end(); + for (const ImU32* it = it_begin; it < it_end; it++) + if (ImU32 entries_32 = *it) + for (ImU32 bit_n = 0; bit_n < 32; bit_n++) + if (entries_32 & ((ImU32)1 << bit_n)) + out->push_back((int)(((it - it_begin) << 5) + bit_n)); +} + +static bool ImFontAtlasBuildWithStbTruetype(ImFontAtlas* atlas) +{ + IM_ASSERT(atlas->ConfigData.Size > 0); + + ImFontAtlasBuildInit(atlas); + + // Clear atlas + atlas->TexID = (ImTextureID)NULL; + atlas->TexWidth = atlas->TexHeight = 0; + atlas->TexUvScale = ImVec2(0.0f, 0.0f); + atlas->TexUvWhitePixel = ImVec2(0.0f, 0.0f); + atlas->ClearTexData(); + + // Temporary storage for building + ImVector src_tmp_array; + ImVector dst_tmp_array; + src_tmp_array.resize(atlas->ConfigData.Size); + dst_tmp_array.resize(atlas->Fonts.Size); + memset(src_tmp_array.Data, 0, (size_t)src_tmp_array.size_in_bytes()); + memset(dst_tmp_array.Data, 0, (size_t)dst_tmp_array.size_in_bytes()); + + // 1. Initialize font loading structure, check font data validity + for (int src_i = 0; src_i < atlas->ConfigData.Size; src_i++) + { + ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; + ImFontConfig& cfg = atlas->ConfigData[src_i]; + IM_ASSERT(cfg.DstFont && (!cfg.DstFont->IsLoaded() || cfg.DstFont->ContainerAtlas == atlas)); + + // Find index from cfg.DstFont (we allow the user to set cfg.DstFont. Also it makes casual debugging nicer than when storing indices) + src_tmp.DstIndex = -1; + for (int output_i = 0; output_i < atlas->Fonts.Size && src_tmp.DstIndex == -1; output_i++) + if (cfg.DstFont == atlas->Fonts[output_i]) + src_tmp.DstIndex = output_i; + if (src_tmp.DstIndex == -1) + { + IM_ASSERT(src_tmp.DstIndex != -1); // cfg.DstFont not pointing within atlas->Fonts[] array? + return false; + } + // Initialize helper structure for font loading and verify that the TTF/OTF data is correct + const int font_offset = stbtt_GetFontOffsetForIndex((unsigned char*)cfg.FontData, cfg.FontNo); + IM_ASSERT(font_offset >= 0 && "FontData is incorrect, or FontNo cannot be found."); + if (!stbtt_InitFont(&src_tmp.FontInfo, (unsigned char*)cfg.FontData, font_offset)) + return false; + + // Measure highest codepoints + ImFontBuildDstData& dst_tmp = dst_tmp_array[src_tmp.DstIndex]; + src_tmp.SrcRanges = cfg.GlyphRanges ? cfg.GlyphRanges : atlas->GetGlyphRangesDefault(); + for (const ImWchar* src_range = src_tmp.SrcRanges; src_range[0] && src_range[1]; src_range += 2) + { + // Check for valid range. This may also help detect *some* dangling pointers, because a common + // user error is to setup ImFontConfig::GlyphRanges with a pointer to data that isn't persistent. + IM_ASSERT(src_range[0] <= src_range[1]); + src_tmp.GlyphsHighest = ImMax(src_tmp.GlyphsHighest, (int)src_range[1]); + } + dst_tmp.SrcCount++; + dst_tmp.GlyphsHighest = ImMax(dst_tmp.GlyphsHighest, src_tmp.GlyphsHighest); + } + + // 2. For every requested codepoint, check for their presence in the font data, and handle redundancy or overlaps between source fonts to avoid unused glyphs. + int total_glyphs_count = 0; + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; + ImFontBuildDstData& dst_tmp = dst_tmp_array[src_tmp.DstIndex]; + src_tmp.GlyphsSet.Create(src_tmp.GlyphsHighest + 1); + if (dst_tmp.GlyphsSet.Storage.empty()) + dst_tmp.GlyphsSet.Create(dst_tmp.GlyphsHighest + 1); + + for (const ImWchar* src_range = src_tmp.SrcRanges; src_range[0] && src_range[1]; src_range += 2) + for (unsigned int codepoint = src_range[0]; codepoint <= src_range[1]; codepoint++) + { + if (dst_tmp.GlyphsSet.TestBit(codepoint)) // Don't overwrite existing glyphs. We could make this an option for MergeMode (e.g. MergeOverwrite==true) + continue; + if (!stbtt_FindGlyphIndex(&src_tmp.FontInfo, codepoint)) // It is actually in the font? + continue; + + // Add to avail set/counters + src_tmp.GlyphsCount++; + dst_tmp.GlyphsCount++; + src_tmp.GlyphsSet.SetBit(codepoint); + dst_tmp.GlyphsSet.SetBit(codepoint); + total_glyphs_count++; + } + } + + // 3. Unpack our bit map into a flat list (we now have all the Unicode points that we know are requested _and_ available _and_ not overlapping another) + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; + src_tmp.GlyphsList.reserve(src_tmp.GlyphsCount); + UnpackBitVectorToFlatIndexList(&src_tmp.GlyphsSet, &src_tmp.GlyphsList); + src_tmp.GlyphsSet.Clear(); + IM_ASSERT(src_tmp.GlyphsList.Size == src_tmp.GlyphsCount); + } + for (int dst_i = 0; dst_i < dst_tmp_array.Size; dst_i++) + dst_tmp_array[dst_i].GlyphsSet.Clear(); + dst_tmp_array.clear(); + + // Allocate packing character data and flag packed characters buffer as non-packed (x0=y0=x1=y1=0) + // (We technically don't need to zero-clear buf_rects, but let's do it for the sake of sanity) + ImVector buf_rects; + ImVector buf_packedchars; + buf_rects.resize(total_glyphs_count); + buf_packedchars.resize(total_glyphs_count); + memset(buf_rects.Data, 0, (size_t)buf_rects.size_in_bytes()); + memset(buf_packedchars.Data, 0, (size_t)buf_packedchars.size_in_bytes()); + + // 4. Gather glyphs sizes so we can pack them in our virtual canvas. + int total_surface = 0; + int buf_rects_out_n = 0; + int buf_packedchars_out_n = 0; + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; + if (src_tmp.GlyphsCount == 0) + continue; + + src_tmp.Rects = &buf_rects[buf_rects_out_n]; + src_tmp.PackedChars = &buf_packedchars[buf_packedchars_out_n]; + buf_rects_out_n += src_tmp.GlyphsCount; + buf_packedchars_out_n += src_tmp.GlyphsCount; + + // Convert our ranges in the format stb_truetype wants + ImFontConfig& cfg = atlas->ConfigData[src_i]; + src_tmp.PackRange.font_size = cfg.SizePixels; + src_tmp.PackRange.first_unicode_codepoint_in_range = 0; + src_tmp.PackRange.array_of_unicode_codepoints = src_tmp.GlyphsList.Data; + src_tmp.PackRange.num_chars = src_tmp.GlyphsList.Size; + src_tmp.PackRange.chardata_for_range = src_tmp.PackedChars; + src_tmp.PackRange.h_oversample = (unsigned char)cfg.OversampleH; + src_tmp.PackRange.v_oversample = (unsigned char)cfg.OversampleV; + + // Gather the sizes of all rectangles we will need to pack (this loop is based on stbtt_PackFontRangesGatherRects) + const float scale = (cfg.SizePixels > 0) ? stbtt_ScaleForPixelHeight(&src_tmp.FontInfo, cfg.SizePixels) : stbtt_ScaleForMappingEmToPixels(&src_tmp.FontInfo, -cfg.SizePixels); + const int padding = atlas->TexGlyphPadding; + for (int glyph_i = 0; glyph_i < src_tmp.GlyphsList.Size; glyph_i++) + { + int x0, y0, x1, y1; + const int glyph_index_in_font = stbtt_FindGlyphIndex(&src_tmp.FontInfo, src_tmp.GlyphsList[glyph_i]); + IM_ASSERT(glyph_index_in_font != 0); + stbtt_GetGlyphBitmapBoxSubpixel(&src_tmp.FontInfo, glyph_index_in_font, scale * cfg.OversampleH, scale * cfg.OversampleV, 0, 0, &x0, &y0, &x1, &y1); + src_tmp.Rects[glyph_i].w = (stbrp_coord)(x1 - x0 + padding + cfg.OversampleH - 1); + src_tmp.Rects[glyph_i].h = (stbrp_coord)(y1 - y0 + padding + cfg.OversampleV - 1); + total_surface += src_tmp.Rects[glyph_i].w * src_tmp.Rects[glyph_i].h; + } + } + + // We need a width for the skyline algorithm, any width! + // The exact width doesn't really matter much, but some API/GPU have texture size limitations and increasing width can decrease height. + // User can override TexDesiredWidth and TexGlyphPadding if they wish, otherwise we use a simple heuristic to select the width based on expected surface. + const int surface_sqrt = (int)ImSqrt((float)total_surface) + 1; + atlas->TexHeight = 0; + if (atlas->TexDesiredWidth > 0) + atlas->TexWidth = atlas->TexDesiredWidth; + else + atlas->TexWidth = (surface_sqrt >= 4096 * 0.7f) ? 4096 : (surface_sqrt >= 2048 * 0.7f) ? 2048 : (surface_sqrt >= 1024 * 0.7f) ? 1024 : 512; + + // 5. Start packing + // Pack our extra data rectangles first, so it will be on the upper-left corner of our texture (UV will have small values). + const int TEX_HEIGHT_MAX = 1024 * 32; + stbtt_pack_context spc = {}; + stbtt_PackBegin(&spc, NULL, atlas->TexWidth, TEX_HEIGHT_MAX, 0, atlas->TexGlyphPadding, NULL); + ImFontAtlasBuildPackCustomRects(atlas, spc.pack_info); + + // 6. Pack each source font. No rendering yet, we are working with rectangles in an infinitely tall texture at this point. + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; + if (src_tmp.GlyphsCount == 0) + continue; + + stbrp_pack_rects((stbrp_context*)spc.pack_info, src_tmp.Rects, src_tmp.GlyphsCount); + + // Extend texture height and mark missing glyphs as non-packed so we won't render them. + // FIXME: We are not handling packing failure here (would happen if we got off TEX_HEIGHT_MAX or if a single if larger than TexWidth?) + for (int glyph_i = 0; glyph_i < src_tmp.GlyphsCount; glyph_i++) + if (src_tmp.Rects[glyph_i].was_packed) + atlas->TexHeight = ImMax(atlas->TexHeight, src_tmp.Rects[glyph_i].y + src_tmp.Rects[glyph_i].h); + } + + // 7. Allocate texture + atlas->TexHeight = (atlas->Flags & ImFontAtlasFlags_NoPowerOfTwoHeight) ? (atlas->TexHeight + 1) : ImUpperPowerOfTwo(atlas->TexHeight); + atlas->TexUvScale = ImVec2(1.0f / atlas->TexWidth, 1.0f / atlas->TexHeight); + atlas->TexPixelsAlpha8 = (unsigned char*)IM_ALLOC(atlas->TexWidth * atlas->TexHeight); + memset(atlas->TexPixelsAlpha8, 0, atlas->TexWidth * atlas->TexHeight); + spc.pixels = atlas->TexPixelsAlpha8; + spc.height = atlas->TexHeight; + + // 8. Render/rasterize font characters into the texture + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontConfig& cfg = atlas->ConfigData[src_i]; + ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; + if (src_tmp.GlyphsCount == 0) + continue; + + stbtt_PackFontRangesRenderIntoRects(&spc, &src_tmp.FontInfo, &src_tmp.PackRange, 1, src_tmp.Rects); + + // Apply multiply operator + if (cfg.RasterizerMultiply != 1.0f) + { + unsigned char multiply_table[256]; + ImFontAtlasBuildMultiplyCalcLookupTable(multiply_table, cfg.RasterizerMultiply); + stbrp_rect* r = &src_tmp.Rects[0]; + for (int glyph_i = 0; glyph_i < src_tmp.GlyphsCount; glyph_i++, r++) + if (r->was_packed) + ImFontAtlasBuildMultiplyRectAlpha8(multiply_table, atlas->TexPixelsAlpha8, r->x, r->y, r->w, r->h, atlas->TexWidth * 1); + } + src_tmp.Rects = NULL; + } + + // End packing + stbtt_PackEnd(&spc); + buf_rects.clear(); + + // 9. Setup ImFont and glyphs for runtime + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + // When merging fonts with MergeMode=true: + // - We can have multiple input fonts writing into a same destination font. + // - dst_font->ConfigData is != from cfg which is our source configuration. + ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; + ImFontConfig& cfg = atlas->ConfigData[src_i]; + ImFont* dst_font = cfg.DstFont; + + const float font_scale = stbtt_ScaleForPixelHeight(&src_tmp.FontInfo, cfg.SizePixels); + int unscaled_ascent, unscaled_descent, unscaled_line_gap; + stbtt_GetFontVMetrics(&src_tmp.FontInfo, &unscaled_ascent, &unscaled_descent, &unscaled_line_gap); + + const float ascent = ImFloor(unscaled_ascent * font_scale + ((unscaled_ascent > 0.0f) ? +1 : -1)); + const float descent = ImFloor(unscaled_descent * font_scale + ((unscaled_descent > 0.0f) ? +1 : -1)); + ImFontAtlasBuildSetupFont(atlas, dst_font, &cfg, ascent, descent); + const float font_off_x = cfg.GlyphOffset.x; + const float font_off_y = cfg.GlyphOffset.y + IM_ROUND(dst_font->Ascent); + + for (int glyph_i = 0; glyph_i < src_tmp.GlyphsCount; glyph_i++) + { + // Register glyph + const int codepoint = src_tmp.GlyphsList[glyph_i]; + const stbtt_packedchar& pc = src_tmp.PackedChars[glyph_i]; + stbtt_aligned_quad q; + float unused_x = 0.0f, unused_y = 0.0f; + stbtt_GetPackedQuad(src_tmp.PackedChars, atlas->TexWidth, atlas->TexHeight, glyph_i, &unused_x, &unused_y, &q, 0); + dst_font->AddGlyph(&cfg, (ImWchar)codepoint, q.x0 + font_off_x, q.y0 + font_off_y, q.x1 + font_off_x, q.y1 + font_off_y, q.s0, q.t0, q.s1, q.t1, pc.xadvance); + } + } + + // Cleanup + src_tmp_array.clear_destruct(); + + ImFontAtlasBuildFinish(atlas); + return true; +} + +const ImFontBuilderIO* ImFontAtlasGetBuilderForStbTruetype() +{ + static ImFontBuilderIO io; + io.FontBuilder_Build = ImFontAtlasBuildWithStbTruetype; + return &io; +} + +#endif // IMGUI_ENABLE_STB_TRUETYPE + +void ImFontAtlasBuildSetupFont(ImFontAtlas* atlas, ImFont* font, ImFontConfig* font_config, float ascent, float descent) +{ + if (!font_config->MergeMode) + { + font->ClearOutputData(); + font->FontSize = font_config->SizePixels; + font->ConfigData = font_config; + font->ConfigDataCount = 0; + font->ContainerAtlas = atlas; + font->Ascent = ascent; + font->Descent = descent; + } + font->ConfigDataCount++; +} + +void ImFontAtlasBuildPackCustomRects(ImFontAtlas* atlas, void* stbrp_context_opaque) +{ + stbrp_context* pack_context = (stbrp_context*)stbrp_context_opaque; + IM_ASSERT(pack_context != NULL); + + ImVector& user_rects = atlas->CustomRects; + IM_ASSERT(user_rects.Size >= 1); // We expect at least the default custom rects to be registered, else something went wrong. +#ifdef __GNUC__ + if (user_rects.Size < 1) { __builtin_unreachable(); } // Workaround for GCC bug if IM_ASSERT() is defined to conditionally throw (see #5343) +#endif + + ImVector pack_rects; + pack_rects.resize(user_rects.Size); + memset(pack_rects.Data, 0, (size_t)pack_rects.size_in_bytes()); + for (int i = 0; i < user_rects.Size; i++) + { + pack_rects[i].w = user_rects[i].Width; + pack_rects[i].h = user_rects[i].Height; + } + stbrp_pack_rects(pack_context, &pack_rects[0], pack_rects.Size); + for (int i = 0; i < pack_rects.Size; i++) + if (pack_rects[i].was_packed) + { + user_rects[i].X = (unsigned short)pack_rects[i].x; + user_rects[i].Y = (unsigned short)pack_rects[i].y; + IM_ASSERT(pack_rects[i].w == user_rects[i].Width && pack_rects[i].h == user_rects[i].Height); + atlas->TexHeight = ImMax(atlas->TexHeight, pack_rects[i].y + pack_rects[i].h); + } +} + +void ImFontAtlasBuildRender8bppRectFromString(ImFontAtlas* atlas, int x, int y, int w, int h, const char* in_str, char in_marker_char, unsigned char in_marker_pixel_value) +{ + IM_ASSERT(x >= 0 && x + w <= atlas->TexWidth); + IM_ASSERT(y >= 0 && y + h <= atlas->TexHeight); + unsigned char* out_pixel = atlas->TexPixelsAlpha8 + x + (y * atlas->TexWidth); + for (int off_y = 0; off_y < h; off_y++, out_pixel += atlas->TexWidth, in_str += w) + for (int off_x = 0; off_x < w; off_x++) + out_pixel[off_x] = (in_str[off_x] == in_marker_char) ? in_marker_pixel_value : 0x00; +} + +void ImFontAtlasBuildRender32bppRectFromString(ImFontAtlas* atlas, int x, int y, int w, int h, const char* in_str, char in_marker_char, unsigned int in_marker_pixel_value) +{ + IM_ASSERT(x >= 0 && x + w <= atlas->TexWidth); + IM_ASSERT(y >= 0 && y + h <= atlas->TexHeight); + unsigned int* out_pixel = atlas->TexPixelsRGBA32 + x + (y * atlas->TexWidth); + for (int off_y = 0; off_y < h; off_y++, out_pixel += atlas->TexWidth, in_str += w) + for (int off_x = 0; off_x < w; off_x++) + out_pixel[off_x] = (in_str[off_x] == in_marker_char) ? in_marker_pixel_value : IM_COL32_BLACK_TRANS; +} + +static void ImFontAtlasBuildRenderDefaultTexData(ImFontAtlas* atlas) +{ + ImFontAtlasCustomRect* r = atlas->GetCustomRectByIndex(atlas->PackIdMouseCursors); + IM_ASSERT(r->IsPacked()); + + const int w = atlas->TexWidth; + if (!(atlas->Flags & ImFontAtlasFlags_NoMouseCursors)) + { + // Render/copy pixels + IM_ASSERT(r->Width == FONT_ATLAS_DEFAULT_TEX_DATA_W * 2 + 1 && r->Height == FONT_ATLAS_DEFAULT_TEX_DATA_H); + const int x_for_white = r->X; + const int x_for_black = r->X + FONT_ATLAS_DEFAULT_TEX_DATA_W + 1; + if (atlas->TexPixelsAlpha8 != NULL) + { + ImFontAtlasBuildRender8bppRectFromString(atlas, x_for_white, r->Y, FONT_ATLAS_DEFAULT_TEX_DATA_W, FONT_ATLAS_DEFAULT_TEX_DATA_H, FONT_ATLAS_DEFAULT_TEX_DATA_PIXELS, '.', 0xFF); + ImFontAtlasBuildRender8bppRectFromString(atlas, x_for_black, r->Y, FONT_ATLAS_DEFAULT_TEX_DATA_W, FONT_ATLAS_DEFAULT_TEX_DATA_H, FONT_ATLAS_DEFAULT_TEX_DATA_PIXELS, 'X', 0xFF); + } + else + { + ImFontAtlasBuildRender32bppRectFromString(atlas, x_for_white, r->Y, FONT_ATLAS_DEFAULT_TEX_DATA_W, FONT_ATLAS_DEFAULT_TEX_DATA_H, FONT_ATLAS_DEFAULT_TEX_DATA_PIXELS, '.', IM_COL32_WHITE); + ImFontAtlasBuildRender32bppRectFromString(atlas, x_for_black, r->Y, FONT_ATLAS_DEFAULT_TEX_DATA_W, FONT_ATLAS_DEFAULT_TEX_DATA_H, FONT_ATLAS_DEFAULT_TEX_DATA_PIXELS, 'X', IM_COL32_WHITE); + } + } + else + { + // Render 4 white pixels + IM_ASSERT(r->Width == 2 && r->Height == 2); + const int offset = (int)r->X + (int)r->Y * w; + if (atlas->TexPixelsAlpha8 != NULL) + { + atlas->TexPixelsAlpha8[offset] = atlas->TexPixelsAlpha8[offset + 1] = atlas->TexPixelsAlpha8[offset + w] = atlas->TexPixelsAlpha8[offset + w + 1] = 0xFF; + } + else + { + atlas->TexPixelsRGBA32[offset] = atlas->TexPixelsRGBA32[offset + 1] = atlas->TexPixelsRGBA32[offset + w] = atlas->TexPixelsRGBA32[offset + w + 1] = IM_COL32_WHITE; + } + } + atlas->TexUvWhitePixel = ImVec2((r->X + 0.5f) * atlas->TexUvScale.x, (r->Y + 0.5f) * atlas->TexUvScale.y); +} + +static void ImFontAtlasBuildRenderLinesTexData(ImFontAtlas* atlas) +{ + if (atlas->Flags & ImFontAtlasFlags_NoBakedLines) + return; + + // This generates a triangular shape in the texture, with the various line widths stacked on top of each other to allow interpolation between them + ImFontAtlasCustomRect* r = atlas->GetCustomRectByIndex(atlas->PackIdLines); + IM_ASSERT(r->IsPacked()); + for (unsigned int n = 0; n < IM_DRAWLIST_TEX_LINES_WIDTH_MAX + 1; n++) // +1 because of the zero-width row + { + // Each line consists of at least two empty pixels at the ends, with a line of solid pixels in the middle + unsigned int y = n; + unsigned int line_width = n; + unsigned int pad_left = (r->Width - line_width) / 2; + unsigned int pad_right = r->Width - (pad_left + line_width); + + // Write each slice + IM_ASSERT(pad_left + line_width + pad_right == r->Width && y < r->Height); // Make sure we're inside the texture bounds before we start writing pixels + if (atlas->TexPixelsAlpha8 != NULL) + { + unsigned char* write_ptr = &atlas->TexPixelsAlpha8[r->X + ((r->Y + y) * atlas->TexWidth)]; + for (unsigned int i = 0; i < pad_left; i++) + *(write_ptr + i) = 0x00; + + for (unsigned int i = 0; i < line_width; i++) + *(write_ptr + pad_left + i) = 0xFF; + + for (unsigned int i = 0; i < pad_right; i++) + *(write_ptr + pad_left + line_width + i) = 0x00; + } + else + { + unsigned int* write_ptr = &atlas->TexPixelsRGBA32[r->X + ((r->Y + y) * atlas->TexWidth)]; + for (unsigned int i = 0; i < pad_left; i++) + *(write_ptr + i) = IM_COL32(255, 255, 255, 0); + + for (unsigned int i = 0; i < line_width; i++) + *(write_ptr + pad_left + i) = IM_COL32_WHITE; + + for (unsigned int i = 0; i < pad_right; i++) + *(write_ptr + pad_left + line_width + i) = IM_COL32(255, 255, 255, 0); + } + + // Calculate UVs for this line + ImVec2 uv0 = ImVec2((float)(r->X + pad_left - 1), (float)(r->Y + y)) * atlas->TexUvScale; + ImVec2 uv1 = ImVec2((float)(r->X + pad_left + line_width + 1), (float)(r->Y + y + 1)) * atlas->TexUvScale; + float half_v = (uv0.y + uv1.y) * 0.5f; // Calculate a constant V in the middle of the row to avoid sampling artifacts + atlas->TexUvLines[n] = ImVec4(uv0.x, half_v, uv1.x, half_v); + } +} + +// Register the rectangles we need for the rounded corner images +static void ImFontAtlasBuildRegisterShadowCustomRects(ImFontAtlas* atlas) +{ + if (atlas->ShadowRectIds[0] >= 0) + return; + + // ShadowRectIds[0] is the rectangle for rectangular shadows + // ShadowRectIds[1] is the rectangle for convex shadows + + // The actual size we want to reserve, including padding + const ImFontAtlasShadowTexConfig* shadow_cfg = &atlas->ShadowTexConfig; + const unsigned int effective_size = shadow_cfg->CalcRectTexSize() + shadow_cfg->GetRectTexPadding(); + atlas->ShadowRectIds[0] = atlas->AddCustomRectRegular(effective_size, effective_size); + atlas->ShadowRectIds[1] = atlas->AddCustomRectRegular(shadow_cfg->CalcConvexTexWidth() + shadow_cfg->GetConvexTexPadding(), shadow_cfg->CalcConvexTexHeight() + shadow_cfg->GetConvexTexPadding()); +} + +// Calculates the signed distance from sample_pos to the nearest point on the rectangle defined by rect_min->rect_max +static float DistanceFromRectangle(const ImVec2& sample_pos, const ImVec2& rect_min, const ImVec2& rect_max) +{ + ImVec2 rect_centre = (rect_min + rect_max) * 0.5f; + ImVec2 rect_half_size = (rect_max - rect_min) * 0.5f; + ImVec2 local_sample_pos = sample_pos - rect_centre; + ImVec2 axis_dist = ImVec2(ImFabs(local_sample_pos.x), ImFabs(local_sample_pos.y)) - rect_half_size; + float out_dist = ImLength(ImVec2(ImMax(axis_dist.x, 0.0f), ImMax(axis_dist.y, 0.0f)), 0.00001f); + float in_dist = ImMin(ImMax(axis_dist.x, axis_dist.y), 0.0f); + return out_dist + in_dist; +} + +// Calculates the signed distance from sample_pos to the point given +static float DistanceFromPoint(const ImVec2& sample_pos, const ImVec2& point) +{ + return ImLength(sample_pos - point, 0.0f); +} + +// Perform a single Gaussian blur pass with a fixed kernel size and sigma +static void GaussianBlurPass(float* src, float* dest, int size, bool horizontal) +{ + // See http://dev.theomader.com/gaussian-kernel-calculator/ + const float coefficients[] = { 0.0f, 0.0f, 0.000003f, 0.000229f, 0.005977f, 0.060598f, 0.24173f, 0.382925f, 0.24173f, 0.060598f, 0.005977f, 0.000229f, 0.000003f, 0.0f, 0.0f }; + const int kernel_size = IM_ARRAYSIZE(coefficients); + const int sample_step = horizontal ? 1 : size; + + float* read_ptr = src; + float* write_ptr = dest; + for (int y = 0; y < size; y++) + for (int x = 0; x < size; x++) + { + float result = 0.0f; + int current_offset = (horizontal ? x : y) - ((kernel_size - 1) >> 1); + float* sample_ptr = read_ptr - (((kernel_size - 1) >> 1) * sample_step); + for (int j = 0; j < kernel_size; j++) + { + if (current_offset >= 0 && current_offset < size) + result += (*sample_ptr) * coefficients[j]; + current_offset++; + sample_ptr += sample_step; + } + read_ptr++; + *(write_ptr++) = result; + } +} + +// Perform an in-place Gaussian blur of a square array of floats with a fixed kernel size and sigma +// Uses a stack allocation for the temporary data so potentially dangerous with large size values +static void GaussianBlur(float* data, int size) +{ + // Do two passes, one from data into temp and then the second back to data again + float* temp = (float*)alloca(size * size * sizeof(float)); + GaussianBlurPass(data, temp, size, true); + GaussianBlurPass(temp, data, size, false); +} + +// Generate the actual pixel data for rounded corners in the atlas +static void ImFontAtlasBuildRenderShadowTexData(ImFontAtlas* atlas) +{ + IM_ASSERT(atlas->TexPixelsAlpha8 != NULL || atlas->TexPixelsRGBA32 != NULL); + IM_ASSERT(atlas->ShadowRectIds[0] >= 0 && atlas->ShadowRectIds[1] >= 0); + + // Because of the blur, we have to generate the full 3x3 texture here, and then we chop that down to just the 2x2 section we need later. + // 'size' correspond to the our 3x3 size, whereas 'shadow_tex_size' correspond to our 2x2 version where duplicate mirrored corners are not stored. + const ImFontAtlasShadowTexConfig* shadow_cfg = &atlas->ShadowTexConfig; + + // The rectangular shadow texture + { + const int size = shadow_cfg->TexCornerSize + shadow_cfg->TexEdgeSize + shadow_cfg->TexCornerSize; + const int corner_size = shadow_cfg->TexCornerSize; + const int edge_size = shadow_cfg->TexEdgeSize; + + // The bounds of the rectangle we are generating the shadow from + const ImVec2 shadow_rect_min((float)corner_size, (float)corner_size); + const ImVec2 shadow_rect_max((float)(corner_size + edge_size), (float)(corner_size + edge_size)); + + // Remove the padding we added + ImFontAtlasCustomRect r = atlas->CustomRects[atlas->ShadowRectIds[0]]; + const int padding = shadow_cfg->GetRectTexPadding(); + r.X += (unsigned short)padding; + r.Y += (unsigned short)padding; + r.Width -= (unsigned short)padding * 2; + r.Height -= (unsigned short)padding * 2; + + // Generate distance field + // We draw the actual texture content by evaluating the distance field for the inner rectangle + float* tex_data = (float*)alloca(size * size * sizeof(float)); + for (int y = 0; y < size; y++) + for (int x = 0; x < size; x++) + { + float dist = DistanceFromRectangle(ImVec2((float)x, (float)y), shadow_rect_min, shadow_rect_max); + float alpha = 1.0f - ImMin(ImMax(dist + shadow_cfg->TexDistanceFieldOffset, 0.0f) / ImMax(shadow_cfg->TexCornerSize + shadow_cfg->TexDistanceFieldOffset, 0.001f), 1.0f); + alpha = ImPow(alpha, shadow_cfg->TexFalloffPower); // Apply power curve to give a nicer falloff + tex_data[x + (y * size)] = alpha; + } + + // Blur + if (shadow_cfg->TexBlur) + GaussianBlur(tex_data, size); + + // Copy to texture, truncating to the actual required texture size (the bottom/right of the source data is chopped off, as we don't need it - see below). The truncated size is essentially the top 2x2 of our data, plus a little bit of padding for sampling. + const int tex_w = atlas->TexWidth; + const int shadow_tex_size = shadow_cfg->CalcRectTexSize(); + for (int y = 0; y < shadow_tex_size; y++) + for (int x = 0; x < shadow_tex_size; x++) + { + const unsigned int offset = (int)(r.X + x) + (int)(r.Y + y) * tex_w; + const float alpha_f = tex_data[x + (y * size)]; + const unsigned char alpha_8 = (unsigned char)(0xFF * alpha_f); + if (atlas->TexPixelsAlpha8) + atlas->TexPixelsAlpha8[offset] = alpha_8; + else + atlas->TexPixelsRGBA32[offset] = IM_COL32(255, 255, 255, alpha_8); + } + + // Generate UVs for each of the nine sections, which are arranged in a 3x3 grid starting from 0 in the top-left and going across then down + for (int i = 0; i < 9; i++) + { + // The third row/column of the 3x3 grid are generated by flipping the appropriate chunks of the upper 2x2 grid. + bool flip_h = false; // Do we need to flip the UVs horizontally? + bool flip_v = false; // Do we need to flip the UVs vertically? + + ImFontAtlasCustomRect sub_rect = r; + switch (i % 3) + { + case 0: sub_rect.Width = (unsigned short)corner_size; break; + case 1: sub_rect.X += (unsigned short)corner_size; sub_rect.Width = (unsigned short)edge_size; break; + case 2: sub_rect.Width = (unsigned short)corner_size; flip_h = true; break; + } + + switch (i / 3) + { + case 0: sub_rect.Height = (unsigned short)corner_size; break; + case 1: sub_rect.Y += (unsigned short)corner_size; sub_rect.Height = (unsigned short)edge_size; break; + case 2: sub_rect.Height = (unsigned short)corner_size; flip_v = true; break; + } + + ImVec2 uv0, uv1; + atlas->CalcCustomRectUV(&sub_rect, &uv0, &uv1); + atlas->ShadowRectUvs[i] = ImVec4(flip_h ? uv1.x : uv0.x, flip_v ? uv1.y : uv0.y, flip_h ? uv0.x : uv1.x, flip_v ? uv0.y : uv1.y); + } + } + + // The convex shape shadow texture + { + const int size = shadow_cfg->TexCornerSize * 2; + const int padding = shadow_cfg->GetConvexTexPadding(); + + // Generate distance field + // We draw the actual texture content by evaluating the distance field for the distance from a center point + ImFontAtlasCustomRect r = atlas->CustomRects[atlas->ShadowRectIds[1]]; + ImVec2 center_point(size * 0.5f, size * 0.5f); + float* tex_data = (float*)alloca(size * size * sizeof(float)); + for (int y = 0; y < size; y++) + for (int x = 0; x < size; x++) + { + float dist = DistanceFromPoint(ImVec2((float)x, (float)y), center_point); + float alpha = 1.0f - ImMin(ImMax((float)dist + shadow_cfg->TexDistanceFieldOffset, 0.0f) / ImMax((float)shadow_cfg->TexCornerSize + shadow_cfg->TexDistanceFieldOffset, 0.001f), 1.0f); + alpha = ImPow(alpha, shadow_cfg->TexFalloffPower); // Apply power curve to give a nicer falloff + tex_data[x + (y * size)] = alpha; + } + + // Blur + if (shadow_cfg->TexBlur) + GaussianBlur(tex_data, size); + + // Copy to texture, truncating to the actual required texture size (the bottom/right of the source data is chopped off, as we don't need it - see below) + // We push the data down and right by the amount we padded the top of the texture (see CalcConvexTexWidth/CalcConvexTexHeight) for details + const int padded_size = (int)(shadow_cfg->TexCornerSize / ImCos(IM_PI * 0.25f)); + const int src_x_offset = padding + (padded_size - shadow_cfg->TexCornerSize); + const int src_y_offset = padding + (padded_size - shadow_cfg->TexCornerSize); + + const int tex_width = shadow_cfg->CalcConvexTexWidth(); + const int tex_height = shadow_cfg->CalcConvexTexHeight(); + const int tex_w = atlas->TexWidth; + for (int y = 0; y < tex_height; y++) + for (int x = 0; x < tex_width; x++) + { + const int src_x = ImClamp(x - src_x_offset, 0, size - 1); + const int src_y = ImClamp(y - src_y_offset, 0, size - 1); + const float alpha_f = tex_data[src_x + (src_y * size)]; + const unsigned char alpha_8 = (unsigned char)(0xFF * alpha_f); + const unsigned int offset = (int)(r.X + x) + (int)(r.Y + y) * tex_w; + if (atlas->TexPixelsAlpha8) + atlas->TexPixelsAlpha8[offset] = alpha_8; + else + atlas->TexPixelsRGBA32[offset] = IM_COL32(255, 255, 255, alpha_8); + } + + // Remove the padding we added + r.X += (unsigned short)padding; + r.Y += (unsigned short)padding; + r.Width = (unsigned short)(tex_width - (padding * 2)); + r.Height = (unsigned short)(tex_height - (padding * 2)); + + // Generate UVs + ImVec2 uv0, uv1; + atlas->CalcCustomRectUV(&r, &uv0, &uv1); + atlas->ShadowRectUvs[9] = ImVec4(uv0.x, uv0.y, uv1.x, uv1.y); + } +} + +// Note: this is called / shared by both the stb_truetype and the FreeType builder +void ImFontAtlasBuildInit(ImFontAtlas* atlas) +{ + // Register texture region for mouse cursors or standard white pixels + if (atlas->PackIdMouseCursors < 0) + { + if (!(atlas->Flags & ImFontAtlasFlags_NoMouseCursors)) + atlas->PackIdMouseCursors = atlas->AddCustomRectRegular(FONT_ATLAS_DEFAULT_TEX_DATA_W * 2 + 1, FONT_ATLAS_DEFAULT_TEX_DATA_H); + else + atlas->PackIdMouseCursors = atlas->AddCustomRectRegular(2, 2); + } + + // Register texture region for thick lines + // The +2 here is to give space for the end caps, whilst height +1 is to accommodate the fact we have a zero-width row + if (atlas->PackIdLines < 0) + { + if (!(atlas->Flags & ImFontAtlasFlags_NoBakedLines)) + atlas->PackIdLines = atlas->AddCustomRectRegular(IM_DRAWLIST_TEX_LINES_WIDTH_MAX + 2, IM_DRAWLIST_TEX_LINES_WIDTH_MAX + 1); + } + + ImFontAtlasBuildRegisterShadowCustomRects(atlas); +} + +// This is called/shared by both the stb_truetype and the FreeType builder. +void ImFontAtlasBuildFinish(ImFontAtlas* atlas) +{ + // Render into our custom data blocks + IM_ASSERT(atlas->TexPixelsAlpha8 != NULL || atlas->TexPixelsRGBA32 != NULL); + ImFontAtlasBuildRenderDefaultTexData(atlas); + ImFontAtlasBuildRenderLinesTexData(atlas); + ImFontAtlasBuildRenderShadowTexData(atlas); + + // Register custom rectangle glyphs + for (int i = 0; i < atlas->CustomRects.Size; i++) + { + const ImFontAtlasCustomRect* r = &atlas->CustomRects[i]; + if (r->Font == NULL || r->GlyphID == 0) + continue; + + // Will ignore ImFontConfig settings: GlyphMinAdvanceX, GlyphMinAdvanceY, GlyphExtraSpacing, PixelSnapH + IM_ASSERT(r->Font->ContainerAtlas == atlas); + ImVec2 uv0, uv1; + atlas->CalcCustomRectUV(r, &uv0, &uv1); + r->Font->AddGlyph(NULL, (ImWchar)r->GlyphID, r->GlyphOffset.x, r->GlyphOffset.y, r->GlyphOffset.x + r->Width, r->GlyphOffset.y + r->Height, uv0.x, uv0.y, uv1.x, uv1.y, r->GlyphAdvanceX); + } + + // Build all fonts lookup tables + for (ImFont* font : atlas->Fonts) + if (font->DirtyLookupTables) + font->BuildLookupTable(); + + atlas->TexReady = true; +} + +// Retrieve list of range (2 int per range, values are inclusive) +const ImWchar* ImFontAtlas::GetGlyphRangesDefault() +{ + static const ImWchar ranges[] = + { + 0x0020, 0x00FF, // Basic Latin + Latin Supplement + 0, + }; + return &ranges[0]; +} + +const ImWchar* ImFontAtlas::GetGlyphRangesGreek() +{ + static const ImWchar ranges[] = + { + 0x0020, 0x00FF, // Basic Latin + Latin Supplement + 0x0370, 0x03FF, // Greek and Coptic + 0, + }; + return &ranges[0]; +} + +const ImWchar* ImFontAtlas::GetGlyphRangesKorean() +{ + static const ImWchar ranges[] = + { + 0x0020, 0x00FF, // Basic Latin + Latin Supplement + 0x3131, 0x3163, // Korean alphabets + 0xAC00, 0xD7A3, // Korean characters + 0xFFFD, 0xFFFD, // Invalid + 0, + }; + return &ranges[0]; +} + +const ImWchar* ImFontAtlas::GetGlyphRangesChineseFull() +{ + static const ImWchar ranges[] = + { + 0x0020, 0x00FF, // Basic Latin + Latin Supplement + 0x2000, 0x206F, // General Punctuation + 0x3000, 0x30FF, // CJK Symbols and Punctuations, Hiragana, Katakana + 0x31F0, 0x31FF, // Katakana Phonetic Extensions + 0xFF00, 0xFFEF, // Half-width characters + 0xFFFD, 0xFFFD, // Invalid + 0x4e00, 0x9FAF, // CJK Ideograms + 0, + }; + return &ranges[0]; +} + +static void UnpackAccumulativeOffsetsIntoRanges(int base_codepoint, const short* accumulative_offsets, int accumulative_offsets_count, ImWchar* out_ranges) +{ + for (int n = 0; n < accumulative_offsets_count; n++, out_ranges += 2) + { + out_ranges[0] = out_ranges[1] = (ImWchar)(base_codepoint + accumulative_offsets[n]); + base_codepoint += accumulative_offsets[n]; + } + out_ranges[0] = 0; +} + +//------------------------------------------------------------------------- +// [SECTION] ImFontAtlas glyph ranges helpers +//------------------------------------------------------------------------- + +const ImWchar* ImFontAtlas::GetGlyphRangesChineseSimplifiedCommon() +{ + // Store 2500 regularly used characters for Simplified Chinese. + // Sourced from https://zh.wiktionary.org/wiki/%E9%99%84%E5%BD%95:%E7%8E%B0%E4%BB%A3%E6%B1%89%E8%AF%AD%E5%B8%B8%E7%94%A8%E5%AD%97%E8%A1%A8 + // This table covers 97.97% of all characters used during the month in July, 1987. + // You can use ImFontGlyphRangesBuilder to create your own ranges derived from this, by merging existing ranges or adding new characters. + // (Stored as accumulative offsets from the initial unicode codepoint 0x4E00. This encoding is designed to helps us compact the source code size.) + static const short accumulative_offsets_from_0x4E00[] = + { + 0,1,2,4,1,1,1,1,2,1,3,2,1,2,2,1,1,1,1,1,5,2,1,2,3,3,3,2,2,4,1,1,1,2,1,5,2,3,1,2,1,2,1,1,2,1,1,2,2,1,4,1,1,1,1,5,10,1,2,19,2,1,2,1,2,1,2,1,2, + 1,5,1,6,3,2,1,2,2,1,1,1,4,8,5,1,1,4,1,1,3,1,2,1,5,1,2,1,1,1,10,1,1,5,2,4,6,1,4,2,2,2,12,2,1,1,6,1,1,1,4,1,1,4,6,5,1,4,2,2,4,10,7,1,1,4,2,4, + 2,1,4,3,6,10,12,5,7,2,14,2,9,1,1,6,7,10,4,7,13,1,5,4,8,4,1,1,2,28,5,6,1,1,5,2,5,20,2,2,9,8,11,2,9,17,1,8,6,8,27,4,6,9,20,11,27,6,68,2,2,1,1, + 1,2,1,2,2,7,6,11,3,3,1,1,3,1,2,1,1,1,1,1,3,1,1,8,3,4,1,5,7,2,1,4,4,8,4,2,1,2,1,1,4,5,6,3,6,2,12,3,1,3,9,2,4,3,4,1,5,3,3,1,3,7,1,5,1,1,1,1,2, + 3,4,5,2,3,2,6,1,1,2,1,7,1,7,3,4,5,15,2,2,1,5,3,22,19,2,1,1,1,1,2,5,1,1,1,6,1,1,12,8,2,9,18,22,4,1,1,5,1,16,1,2,7,10,15,1,1,6,2,4,1,2,4,1,6, + 1,1,3,2,4,1,6,4,5,1,2,1,1,2,1,10,3,1,3,2,1,9,3,2,5,7,2,19,4,3,6,1,1,1,1,1,4,3,2,1,1,1,2,5,3,1,1,1,2,2,1,1,2,1,1,2,1,3,1,1,1,3,7,1,4,1,1,2,1, + 1,2,1,2,4,4,3,8,1,1,1,2,1,3,5,1,3,1,3,4,6,2,2,14,4,6,6,11,9,1,15,3,1,28,5,2,5,5,3,1,3,4,5,4,6,14,3,2,3,5,21,2,7,20,10,1,2,19,2,4,28,28,2,3, + 2,1,14,4,1,26,28,42,12,40,3,52,79,5,14,17,3,2,2,11,3,4,6,3,1,8,2,23,4,5,8,10,4,2,7,3,5,1,1,6,3,1,2,2,2,5,28,1,1,7,7,20,5,3,29,3,17,26,1,8,4, + 27,3,6,11,23,5,3,4,6,13,24,16,6,5,10,25,35,7,3,2,3,3,14,3,6,2,6,1,4,2,3,8,2,1,1,3,3,3,4,1,1,13,2,2,4,5,2,1,14,14,1,2,2,1,4,5,2,3,1,14,3,12, + 3,17,2,16,5,1,2,1,8,9,3,19,4,2,2,4,17,25,21,20,28,75,1,10,29,103,4,1,2,1,1,4,2,4,1,2,3,24,2,2,2,1,1,2,1,3,8,1,1,1,2,1,1,3,1,1,1,6,1,5,3,1,1, + 1,3,4,1,1,5,2,1,5,6,13,9,16,1,1,1,1,3,2,3,2,4,5,2,5,2,2,3,7,13,7,2,2,1,1,1,1,2,3,3,2,1,6,4,9,2,1,14,2,14,2,1,18,3,4,14,4,11,41,15,23,15,23, + 176,1,3,4,1,1,1,1,5,3,1,2,3,7,3,1,1,2,1,2,4,4,6,2,4,1,9,7,1,10,5,8,16,29,1,1,2,2,3,1,3,5,2,4,5,4,1,1,2,2,3,3,7,1,6,10,1,17,1,44,4,6,2,1,1,6, + 5,4,2,10,1,6,9,2,8,1,24,1,2,13,7,8,8,2,1,4,1,3,1,3,3,5,2,5,10,9,4,9,12,2,1,6,1,10,1,1,7,7,4,10,8,3,1,13,4,3,1,6,1,3,5,2,1,2,17,16,5,2,16,6, + 1,4,2,1,3,3,6,8,5,11,11,1,3,3,2,4,6,10,9,5,7,4,7,4,7,1,1,4,2,1,3,6,8,7,1,6,11,5,5,3,24,9,4,2,7,13,5,1,8,82,16,61,1,1,1,4,2,2,16,10,3,8,1,1, + 6,4,2,1,3,1,1,1,4,3,8,4,2,2,1,1,1,1,1,6,3,5,1,1,4,6,9,2,1,1,1,2,1,7,2,1,6,1,5,4,4,3,1,8,1,3,3,1,3,2,2,2,2,3,1,6,1,2,1,2,1,3,7,1,8,2,1,2,1,5, + 2,5,3,5,10,1,2,1,1,3,2,5,11,3,9,3,5,1,1,5,9,1,2,1,5,7,9,9,8,1,3,3,3,6,8,2,3,2,1,1,32,6,1,2,15,9,3,7,13,1,3,10,13,2,14,1,13,10,2,1,3,10,4,15, + 2,15,15,10,1,3,9,6,9,32,25,26,47,7,3,2,3,1,6,3,4,3,2,8,5,4,1,9,4,2,2,19,10,6,2,3,8,1,2,2,4,2,1,9,4,4,4,6,4,8,9,2,3,1,1,1,1,3,5,5,1,3,8,4,6, + 2,1,4,12,1,5,3,7,13,2,5,8,1,6,1,2,5,14,6,1,5,2,4,8,15,5,1,23,6,62,2,10,1,1,8,1,2,2,10,4,2,2,9,2,1,1,3,2,3,1,5,3,3,2,1,3,8,1,1,1,11,3,1,1,4, + 3,7,1,14,1,2,3,12,5,2,5,1,6,7,5,7,14,11,1,3,1,8,9,12,2,1,11,8,4,4,2,6,10,9,13,1,1,3,1,5,1,3,2,4,4,1,18,2,3,14,11,4,29,4,2,7,1,3,13,9,2,2,5, + 3,5,20,7,16,8,5,72,34,6,4,22,12,12,28,45,36,9,7,39,9,191,1,1,1,4,11,8,4,9,2,3,22,1,1,1,1,4,17,1,7,7,1,11,31,10,2,4,8,2,3,2,1,4,2,16,4,32,2, + 3,19,13,4,9,1,5,2,14,8,1,1,3,6,19,6,5,1,16,6,2,10,8,5,1,2,3,1,5,5,1,11,6,6,1,3,3,2,6,3,8,1,1,4,10,7,5,7,7,5,8,9,2,1,3,4,1,1,3,1,3,3,2,6,16, + 1,4,6,3,1,10,6,1,3,15,2,9,2,10,25,13,9,16,6,2,2,10,11,4,3,9,1,2,6,6,5,4,30,40,1,10,7,12,14,33,6,3,6,7,3,1,3,1,11,14,4,9,5,12,11,49,18,51,31, + 140,31,2,2,1,5,1,8,1,10,1,4,4,3,24,1,10,1,3,6,6,16,3,4,5,2,1,4,2,57,10,6,22,2,22,3,7,22,6,10,11,36,18,16,33,36,2,5,5,1,1,1,4,10,1,4,13,2,7, + 5,2,9,3,4,1,7,43,3,7,3,9,14,7,9,1,11,1,1,3,7,4,18,13,1,14,1,3,6,10,73,2,2,30,6,1,11,18,19,13,22,3,46,42,37,89,7,3,16,34,2,2,3,9,1,7,1,1,1,2, + 2,4,10,7,3,10,3,9,5,28,9,2,6,13,7,3,1,3,10,2,7,2,11,3,6,21,54,85,2,1,4,2,2,1,39,3,21,2,2,5,1,1,1,4,1,1,3,4,15,1,3,2,4,4,2,3,8,2,20,1,8,7,13, + 4,1,26,6,2,9,34,4,21,52,10,4,4,1,5,12,2,11,1,7,2,30,12,44,2,30,1,1,3,6,16,9,17,39,82,2,2,24,7,1,7,3,16,9,14,44,2,1,2,1,2,3,5,2,4,1,6,7,5,3, + 2,6,1,11,5,11,2,1,18,19,8,1,3,24,29,2,1,3,5,2,2,1,13,6,5,1,46,11,3,5,1,1,5,8,2,10,6,12,6,3,7,11,2,4,16,13,2,5,1,1,2,2,5,2,28,5,2,23,10,8,4, + 4,22,39,95,38,8,14,9,5,1,13,5,4,3,13,12,11,1,9,1,27,37,2,5,4,4,63,211,95,2,2,2,1,3,5,2,1,1,2,2,1,1,1,3,2,4,1,2,1,1,5,2,2,1,1,2,3,1,3,1,1,1, + 3,1,4,2,1,3,6,1,1,3,7,15,5,3,2,5,3,9,11,4,2,22,1,6,3,8,7,1,4,28,4,16,3,3,25,4,4,27,27,1,4,1,2,2,7,1,3,5,2,28,8,2,14,1,8,6,16,25,3,3,3,14,3, + 3,1,1,2,1,4,6,3,8,4,1,1,1,2,3,6,10,6,2,3,18,3,2,5,5,4,3,1,5,2,5,4,23,7,6,12,6,4,17,11,9,5,1,1,10,5,12,1,1,11,26,33,7,3,6,1,17,7,1,5,12,1,11, + 2,4,1,8,14,17,23,1,2,1,7,8,16,11,9,6,5,2,6,4,16,2,8,14,1,11,8,9,1,1,1,9,25,4,11,19,7,2,15,2,12,8,52,7,5,19,2,16,4,36,8,1,16,8,24,26,4,6,2,9, + 5,4,36,3,28,12,25,15,37,27,17,12,59,38,5,32,127,1,2,9,17,14,4,1,2,1,1,8,11,50,4,14,2,19,16,4,17,5,4,5,26,12,45,2,23,45,104,30,12,8,3,10,2,2, + 3,3,1,4,20,7,2,9,6,15,2,20,1,3,16,4,11,15,6,134,2,5,59,1,2,2,2,1,9,17,3,26,137,10,211,59,1,2,4,1,4,1,1,1,2,6,2,3,1,1,2,3,2,3,1,3,4,4,2,3,3, + 1,4,3,1,7,2,2,3,1,2,1,3,3,3,2,2,3,2,1,3,14,6,1,3,2,9,6,15,27,9,34,145,1,1,2,1,1,1,1,2,1,1,1,1,2,2,2,3,1,2,1,1,1,2,3,5,8,3,5,2,4,1,3,2,2,2,12, + 4,1,1,1,10,4,5,1,20,4,16,1,15,9,5,12,2,9,2,5,4,2,26,19,7,1,26,4,30,12,15,42,1,6,8,172,1,1,4,2,1,1,11,2,2,4,2,1,2,1,10,8,1,2,1,4,5,1,2,5,1,8, + 4,1,3,4,2,1,6,2,1,3,4,1,2,1,1,1,1,12,5,7,2,4,3,1,1,1,3,3,6,1,2,2,3,3,3,2,1,2,12,14,11,6,6,4,12,2,8,1,7,10,1,35,7,4,13,15,4,3,23,21,28,52,5, + 26,5,6,1,7,10,2,7,53,3,2,1,1,1,2,163,532,1,10,11,1,3,3,4,8,2,8,6,2,2,23,22,4,2,2,4,2,1,3,1,3,3,5,9,8,2,1,2,8,1,10,2,12,21,20,15,105,2,3,1,1, + 3,2,3,1,1,2,5,1,4,15,11,19,1,1,1,1,5,4,5,1,1,2,5,3,5,12,1,2,5,1,11,1,1,15,9,1,4,5,3,26,8,2,1,3,1,1,15,19,2,12,1,2,5,2,7,2,19,2,20,6,26,7,5, + 2,2,7,34,21,13,70,2,128,1,1,2,1,1,2,1,1,3,2,2,2,15,1,4,1,3,4,42,10,6,1,49,85,8,1,2,1,1,4,4,2,3,6,1,5,7,4,3,211,4,1,2,1,2,5,1,2,4,2,2,6,5,6, + 10,3,4,48,100,6,2,16,296,5,27,387,2,2,3,7,16,8,5,38,15,39,21,9,10,3,7,59,13,27,21,47,5,21,6 + }; + static ImWchar base_ranges[] = // not zero-terminated + { + 0x0020, 0x00FF, // Basic Latin + Latin Supplement + 0x2000, 0x206F, // General Punctuation + 0x3000, 0x30FF, // CJK Symbols and Punctuations, Hiragana, Katakana + 0x31F0, 0x31FF, // Katakana Phonetic Extensions + 0xFF00, 0xFFEF, // Half-width characters + 0xFFFD, 0xFFFD // Invalid + }; + static ImWchar full_ranges[IM_ARRAYSIZE(base_ranges) + IM_ARRAYSIZE(accumulative_offsets_from_0x4E00) * 2 + 1] = { 0 }; + if (!full_ranges[0]) + { + memcpy(full_ranges, base_ranges, sizeof(base_ranges)); + UnpackAccumulativeOffsetsIntoRanges(0x4E00, accumulative_offsets_from_0x4E00, IM_ARRAYSIZE(accumulative_offsets_from_0x4E00), full_ranges + IM_ARRAYSIZE(base_ranges)); + } + return &full_ranges[0]; +} + +const ImWchar* ImFontAtlas::GetGlyphRangesJapanese() +{ + // 2999 ideograms code points for Japanese + // - 2136 Joyo (meaning "for regular use" or "for common use") Kanji code points + // - 863 Jinmeiyo (meaning "for personal name") Kanji code points + // - Sourced from official information provided by the government agencies of Japan: + // - List of Joyo Kanji by the Agency for Cultural Affairs + // - https://www.bunka.go.jp/kokugo_nihongo/sisaku/joho/joho/kijun/naikaku/kanji/ + // - List of Jinmeiyo Kanji by the Ministry of Justice + // - http://www.moj.go.jp/MINJI/minji86.html + // - Available under the terms of the Creative Commons Attribution 4.0 International (CC BY 4.0). + // - https://creativecommons.org/licenses/by/4.0/legalcode + // - You can generate this code by the script at: + // - https://github.com/vaiorabbit/everyday_use_kanji + // - References: + // - List of Joyo Kanji + // - (Wikipedia) https://en.wikipedia.org/wiki/List_of_j%C5%8Dy%C5%8D_kanji + // - List of Jinmeiyo Kanji + // - (Wikipedia) https://en.wikipedia.org/wiki/Jinmeiy%C5%8D_kanji + // - Missing 1 Joyo Kanji: U+20B9F (Kun'yomi: Shikaru, On'yomi: Shitsu,shichi), see https://github.com/ocornut/imgui/pull/3627 for details. + // You can use ImFontGlyphRangesBuilder to create your own ranges derived from this, by merging existing ranges or adding new characters. + // (Stored as accumulative offsets from the initial unicode codepoint 0x4E00. This encoding is designed to helps us compact the source code size.) + static const short accumulative_offsets_from_0x4E00[] = + { + 0,1,2,4,1,1,1,1,2,1,3,3,2,2,1,5,3,5,7,5,6,1,2,1,7,2,6,3,1,8,1,1,4,1,1,18,2,11,2,6,2,1,2,1,5,1,2,1,3,1,2,1,2,3,3,1,1,2,3,1,1,1,12,7,9,1,4,5,1, + 1,2,1,10,1,1,9,2,2,4,5,6,9,3,1,1,1,1,9,3,18,5,2,2,2,2,1,6,3,7,1,1,1,1,2,2,4,2,1,23,2,10,4,3,5,2,4,10,2,4,13,1,6,1,9,3,1,1,6,6,7,6,3,1,2,11,3, + 2,2,3,2,15,2,2,5,4,3,6,4,1,2,5,2,12,16,6,13,9,13,2,1,1,7,16,4,7,1,19,1,5,1,2,2,7,7,8,2,6,5,4,9,18,7,4,5,9,13,11,8,15,2,1,1,1,2,1,2,2,1,2,2,8, + 2,9,3,3,1,1,4,4,1,1,1,4,9,1,4,3,5,5,2,7,5,3,4,8,2,1,13,2,3,3,1,14,1,1,4,5,1,3,6,1,5,2,1,1,3,3,3,3,1,1,2,7,6,6,7,1,4,7,6,1,1,1,1,1,12,3,3,9,5, + 2,6,1,5,6,1,2,3,18,2,4,14,4,1,3,6,1,1,6,3,5,5,3,2,2,2,2,12,3,1,4,2,3,2,3,11,1,7,4,1,2,1,3,17,1,9,1,24,1,1,4,2,2,4,1,2,7,1,1,1,3,1,2,2,4,15,1, + 1,2,1,1,2,1,5,2,5,20,2,5,9,1,10,8,7,6,1,1,1,1,1,1,6,2,1,2,8,1,1,1,1,5,1,1,3,1,1,1,1,3,1,1,12,4,1,3,1,1,1,1,1,10,3,1,7,5,13,1,2,3,4,6,1,1,30, + 2,9,9,1,15,38,11,3,1,8,24,7,1,9,8,10,2,1,9,31,2,13,6,2,9,4,49,5,2,15,2,1,10,2,1,1,1,2,2,6,15,30,35,3,14,18,8,1,16,10,28,12,19,45,38,1,3,2,3, + 13,2,1,7,3,6,5,3,4,3,1,5,7,8,1,5,3,18,5,3,6,1,21,4,24,9,24,40,3,14,3,21,3,2,1,2,4,2,3,1,15,15,6,5,1,1,3,1,5,6,1,9,7,3,3,2,1,4,3,8,21,5,16,4, + 5,2,10,11,11,3,6,3,2,9,3,6,13,1,2,1,1,1,1,11,12,6,6,1,4,2,6,5,2,1,1,3,3,6,13,3,1,1,5,1,2,3,3,14,2,1,2,2,2,5,1,9,5,1,1,6,12,3,12,3,4,13,2,14, + 2,8,1,17,5,1,16,4,2,2,21,8,9,6,23,20,12,25,19,9,38,8,3,21,40,25,33,13,4,3,1,4,1,2,4,1,2,5,26,2,1,1,2,1,3,6,2,1,1,1,1,1,1,2,3,1,1,1,9,2,3,1,1, + 1,3,6,3,2,1,1,6,6,1,8,2,2,2,1,4,1,2,3,2,7,3,2,4,1,2,1,2,2,1,1,1,1,1,3,1,2,5,4,10,9,4,9,1,1,1,1,1,1,5,3,2,1,6,4,9,6,1,10,2,31,17,8,3,7,5,40,1, + 7,7,1,6,5,2,10,7,8,4,15,39,25,6,28,47,18,10,7,1,3,1,1,2,1,1,1,3,3,3,1,1,1,3,4,2,1,4,1,3,6,10,7,8,6,2,2,1,3,3,2,5,8,7,9,12,2,15,1,1,4,1,2,1,1, + 1,3,2,1,3,3,5,6,2,3,2,10,1,4,2,8,1,1,1,11,6,1,21,4,16,3,1,3,1,4,2,3,6,5,1,3,1,1,3,3,4,6,1,1,10,4,2,7,10,4,7,4,2,9,4,3,1,1,1,4,1,8,3,4,1,3,1, + 6,1,4,2,1,4,7,2,1,8,1,4,5,1,1,2,2,4,6,2,7,1,10,1,1,3,4,11,10,8,21,4,6,1,3,5,2,1,2,28,5,5,2,3,13,1,2,3,1,4,2,1,5,20,3,8,11,1,3,3,3,1,8,10,9,2, + 10,9,2,3,1,1,2,4,1,8,3,6,1,7,8,6,11,1,4,29,8,4,3,1,2,7,13,1,4,1,6,2,6,12,12,2,20,3,2,3,6,4,8,9,2,7,34,5,1,18,6,1,1,4,4,5,7,9,1,2,2,4,3,4,1,7, + 2,2,2,6,2,3,25,5,3,6,1,4,6,7,4,2,1,4,2,13,6,4,4,3,1,5,3,4,4,3,2,1,1,4,1,2,1,1,3,1,11,1,6,3,1,7,3,6,2,8,8,6,9,3,4,11,3,2,10,12,2,5,11,1,6,4,5, + 3,1,8,5,4,6,6,3,5,1,1,3,2,1,2,2,6,17,12,1,10,1,6,12,1,6,6,19,9,6,16,1,13,4,4,15,7,17,6,11,9,15,12,6,7,2,1,2,2,15,9,3,21,4,6,49,18,7,3,2,3,1, + 6,8,2,2,6,2,9,1,3,6,4,4,1,2,16,2,5,2,1,6,2,3,5,3,1,2,5,1,2,1,9,3,1,8,6,4,8,11,3,1,1,1,1,3,1,13,8,4,1,3,2,2,1,4,1,11,1,5,2,1,5,2,5,8,6,1,1,7, + 4,3,8,3,2,7,2,1,5,1,5,2,4,7,6,2,8,5,1,11,4,5,3,6,18,1,2,13,3,3,1,21,1,1,4,1,4,1,1,1,8,1,2,2,7,1,2,4,2,2,9,2,1,1,1,4,3,6,3,12,5,1,1,1,5,6,3,2, + 4,8,2,2,4,2,7,1,8,9,5,2,3,2,1,3,2,13,7,14,6,5,1,1,2,1,4,2,23,2,1,1,6,3,1,4,1,15,3,1,7,3,9,14,1,3,1,4,1,1,5,8,1,3,8,3,8,15,11,4,14,4,4,2,5,5, + 1,7,1,6,14,7,7,8,5,15,4,8,6,5,6,2,1,13,1,20,15,11,9,2,5,6,2,11,2,6,2,5,1,5,8,4,13,19,25,4,1,1,11,1,34,2,5,9,14,6,2,2,6,1,1,14,1,3,14,13,1,6, + 12,21,14,14,6,32,17,8,32,9,28,1,2,4,11,8,3,1,14,2,5,15,1,1,1,1,3,6,4,1,3,4,11,3,1,1,11,30,1,5,1,4,1,5,8,1,1,3,2,4,3,17,35,2,6,12,17,3,1,6,2, + 1,1,12,2,7,3,3,2,1,16,2,8,3,6,5,4,7,3,3,8,1,9,8,5,1,2,1,3,2,8,1,2,9,12,1,1,2,3,8,3,24,12,4,3,7,5,8,3,3,3,3,3,3,1,23,10,3,1,2,2,6,3,1,16,1,16, + 22,3,10,4,11,6,9,7,7,3,6,2,2,2,4,10,2,1,1,2,8,7,1,6,4,1,3,3,3,5,10,12,12,2,3,12,8,15,1,1,16,6,6,1,5,9,11,4,11,4,2,6,12,1,17,5,13,1,4,9,5,1,11, + 2,1,8,1,5,7,28,8,3,5,10,2,17,3,38,22,1,2,18,12,10,4,38,18,1,4,44,19,4,1,8,4,1,12,1,4,31,12,1,14,7,75,7,5,10,6,6,13,3,2,11,11,3,2,5,28,15,6,18, + 18,5,6,4,3,16,1,7,18,7,36,3,5,3,1,7,1,9,1,10,7,2,4,2,6,2,9,7,4,3,32,12,3,7,10,2,23,16,3,1,12,3,31,4,11,1,3,8,9,5,1,30,15,6,12,3,2,2,11,19,9, + 14,2,6,2,3,19,13,17,5,3,3,25,3,14,1,1,1,36,1,3,2,19,3,13,36,9,13,31,6,4,16,34,2,5,4,2,3,3,5,1,1,1,4,3,1,17,3,2,3,5,3,1,3,2,3,5,6,3,12,11,1,3, + 1,2,26,7,12,7,2,14,3,3,7,7,11,25,25,28,16,4,36,1,2,1,6,2,1,9,3,27,17,4,3,4,13,4,1,3,2,2,1,10,4,2,4,6,3,8,2,1,18,1,1,24,2,2,4,33,2,3,63,7,1,6, + 40,7,3,4,4,2,4,15,18,1,16,1,1,11,2,41,14,1,3,18,13,3,2,4,16,2,17,7,15,24,7,18,13,44,2,2,3,6,1,1,7,5,1,7,1,4,3,3,5,10,8,2,3,1,8,1,1,27,4,2,1, + 12,1,2,1,10,6,1,6,7,5,2,3,7,11,5,11,3,6,6,2,3,15,4,9,1,1,2,1,2,11,2,8,12,8,5,4,2,3,1,5,2,2,1,14,1,12,11,4,1,11,17,17,4,3,2,5,5,7,3,1,5,9,9,8, + 2,5,6,6,13,13,2,1,2,6,1,2,2,49,4,9,1,2,10,16,7,8,4,3,2,23,4,58,3,29,1,14,19,19,11,11,2,7,5,1,3,4,6,2,18,5,12,12,17,17,3,3,2,4,1,6,2,3,4,3,1, + 1,1,1,5,1,1,9,1,3,1,3,6,1,8,1,1,2,6,4,14,3,1,4,11,4,1,3,32,1,2,4,13,4,1,2,4,2,1,3,1,11,1,4,2,1,4,4,6,3,5,1,6,5,7,6,3,23,3,5,3,5,3,3,13,3,9,10, + 1,12,10,2,3,18,13,7,160,52,4,2,2,3,2,14,5,4,12,4,6,4,1,20,4,11,6,2,12,27,1,4,1,2,2,7,4,5,2,28,3,7,25,8,3,19,3,6,10,2,2,1,10,2,5,4,1,3,4,1,5, + 3,2,6,9,3,6,2,16,3,3,16,4,5,5,3,2,1,2,16,15,8,2,6,21,2,4,1,22,5,8,1,1,21,11,2,1,11,11,19,13,12,4,2,3,2,3,6,1,8,11,1,4,2,9,5,2,1,11,2,9,1,1,2, + 14,31,9,3,4,21,14,4,8,1,7,2,2,2,5,1,4,20,3,3,4,10,1,11,9,8,2,1,4,5,14,12,14,2,17,9,6,31,4,14,1,20,13,26,5,2,7,3,6,13,2,4,2,19,6,2,2,18,9,3,5, + 12,12,14,4,6,2,3,6,9,5,22,4,5,25,6,4,8,5,2,6,27,2,35,2,16,3,7,8,8,6,6,5,9,17,2,20,6,19,2,13,3,1,1,1,4,17,12,2,14,7,1,4,18,12,38,33,2,10,1,1, + 2,13,14,17,11,50,6,33,20,26,74,16,23,45,50,13,38,33,6,6,7,4,4,2,1,3,2,5,8,7,8,9,3,11,21,9,13,1,3,10,6,7,1,2,2,18,5,5,1,9,9,2,68,9,19,13,2,5, + 1,4,4,7,4,13,3,9,10,21,17,3,26,2,1,5,2,4,5,4,1,7,4,7,3,4,2,1,6,1,1,20,4,1,9,2,2,1,3,3,2,3,2,1,1,1,20,2,3,1,6,2,3,6,2,4,8,1,3,2,10,3,5,3,4,4, + 3,4,16,1,6,1,10,2,4,2,1,1,2,10,11,2,2,3,1,24,31,4,10,10,2,5,12,16,164,15,4,16,7,9,15,19,17,1,2,1,1,5,1,1,1,1,1,3,1,4,3,1,3,1,3,1,2,1,1,3,3,7, + 2,8,1,2,2,2,1,3,4,3,7,8,12,92,2,10,3,1,3,14,5,25,16,42,4,7,7,4,2,21,5,27,26,27,21,25,30,31,2,1,5,13,3,22,5,6,6,11,9,12,1,5,9,7,5,5,22,60,3,5, + 13,1,1,8,1,1,3,3,2,1,9,3,3,18,4,1,2,3,7,6,3,1,2,3,9,1,3,1,3,2,1,3,1,1,1,2,1,11,3,1,6,9,1,3,2,3,1,2,1,5,1,1,4,3,4,1,2,2,4,4,1,7,2,1,2,2,3,5,13, + 18,3,4,14,9,9,4,16,3,7,5,8,2,6,48,28,3,1,1,4,2,14,8,2,9,2,1,15,2,4,3,2,10,16,12,8,7,1,1,3,1,1,1,2,7,4,1,6,4,38,39,16,23,7,15,15,3,2,12,7,21, + 37,27,6,5,4,8,2,10,8,8,6,5,1,2,1,3,24,1,16,17,9,23,10,17,6,1,51,55,44,13,294,9,3,6,2,4,2,2,15,1,1,1,13,21,17,68,14,8,9,4,1,4,9,3,11,7,1,1,1, + 5,6,3,2,1,1,1,2,3,8,1,2,2,4,1,5,5,2,1,4,3,7,13,4,1,4,1,3,1,1,1,5,5,10,1,6,1,5,2,1,5,2,4,1,4,5,7,3,18,2,9,11,32,4,3,3,2,4,7,11,16,9,11,8,13,38, + 32,8,4,2,1,1,2,1,2,4,4,1,1,1,4,1,21,3,11,1,16,1,1,6,1,3,2,4,9,8,57,7,44,1,3,3,13,3,10,1,1,7,5,2,7,21,47,63,3,15,4,7,1,16,1,1,2,8,2,3,42,15,4, + 1,29,7,22,10,3,78,16,12,20,18,4,67,11,5,1,3,15,6,21,31,32,27,18,13,71,35,5,142,4,10,1,2,50,19,33,16,35,37,16,19,27,7,1,133,19,1,4,8,7,20,1,4, + 4,1,10,3,1,6,1,2,51,5,40,15,24,43,22928,11,1,13,154,70,3,1,1,7,4,10,1,2,1,1,2,1,2,1,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1, + 3,2,1,1,1,1,2,1,1, + }; + static ImWchar base_ranges[] = // not zero-terminated + { + 0x0020, 0x00FF, // Basic Latin + Latin Supplement + 0x3000, 0x30FF, // CJK Symbols and Punctuations, Hiragana, Katakana + 0x31F0, 0x31FF, // Katakana Phonetic Extensions + 0xFF00, 0xFFEF, // Half-width characters + 0xFFFD, 0xFFFD // Invalid + }; + static ImWchar full_ranges[IM_ARRAYSIZE(base_ranges) + IM_ARRAYSIZE(accumulative_offsets_from_0x4E00)*2 + 1] = { 0 }; + if (!full_ranges[0]) + { + memcpy(full_ranges, base_ranges, sizeof(base_ranges)); + UnpackAccumulativeOffsetsIntoRanges(0x4E00, accumulative_offsets_from_0x4E00, IM_ARRAYSIZE(accumulative_offsets_from_0x4E00), full_ranges + IM_ARRAYSIZE(base_ranges)); + } + return &full_ranges[0]; +} + +const ImWchar* ImFontAtlas::GetGlyphRangesCyrillic() +{ + static const ImWchar ranges[] = + { + 0x0020, 0x00FF, // Basic Latin + Latin Supplement + 0x0400, 0x052F, // Cyrillic + Cyrillic Supplement + 0x2DE0, 0x2DFF, // Cyrillic Extended-A + 0xA640, 0xA69F, // Cyrillic Extended-B + 0, + }; + return &ranges[0]; +} + +const ImWchar* ImFontAtlas::GetGlyphRangesThai() +{ + static const ImWchar ranges[] = + { + 0x0020, 0x00FF, // Basic Latin + 0x2010, 0x205E, // Punctuations + 0x0E00, 0x0E7F, // Thai + 0, + }; + return &ranges[0]; +} + +const ImWchar* ImFontAtlas::GetGlyphRangesVietnamese() +{ + static const ImWchar ranges[] = + { + 0x0020, 0x00FF, // Basic Latin + 0x0102, 0x0103, + 0x0110, 0x0111, + 0x0128, 0x0129, + 0x0168, 0x0169, + 0x01A0, 0x01A1, + 0x01AF, 0x01B0, + 0x1EA0, 0x1EF9, + 0, + }; + return &ranges[0]; +} + +//----------------------------------------------------------------------------- +// [SECTION] ImFontGlyphRangesBuilder +//----------------------------------------------------------------------------- + +void ImFontGlyphRangesBuilder::AddText(const char* text, const char* text_end) +{ + while (text_end ? (text < text_end) : *text) + { + unsigned int c = 0; + int c_len = ImTextCharFromUtf8(&c, text, text_end); + text += c_len; + if (c_len == 0) + break; + AddChar((ImWchar)c); + } +} + +void ImFontGlyphRangesBuilder::AddRanges(const ImWchar* ranges) +{ + for (; ranges[0]; ranges += 2) + for (unsigned int c = ranges[0]; c <= ranges[1] && c <= IM_UNICODE_CODEPOINT_MAX; c++) //-V560 + AddChar((ImWchar)c); +} + +void ImFontGlyphRangesBuilder::BuildRanges(ImVector* out_ranges) +{ + const int max_codepoint = IM_UNICODE_CODEPOINT_MAX; + for (int n = 0; n <= max_codepoint; n++) + if (GetBit(n)) + { + out_ranges->push_back((ImWchar)n); + while (n < max_codepoint && GetBit(n + 1)) + n++; + out_ranges->push_back((ImWchar)n); + } + out_ranges->push_back(0); +} + +//----------------------------------------------------------------------------- +// [SECTION] ImFont +//----------------------------------------------------------------------------- + +ImFont::ImFont() +{ + FontSize = 0.0f; + FallbackAdvanceX = 0.0f; + FallbackChar = (ImWchar)-1; + EllipsisChar = (ImWchar)-1; + EllipsisWidth = EllipsisCharStep = 0.0f; + EllipsisCharCount = 0; + FallbackGlyph = NULL; + ContainerAtlas = NULL; + ConfigData = NULL; + ConfigDataCount = 0; + DirtyLookupTables = false; + Scale = 1.0f; + Ascent = Descent = 0.0f; + MetricsTotalSurface = 0; + memset(Used4kPagesMap, 0, sizeof(Used4kPagesMap)); +} + +ImFont::~ImFont() +{ + ClearOutputData(); +} + +void ImFont::ClearOutputData() +{ + FontSize = 0.0f; + FallbackAdvanceX = 0.0f; + Glyphs.clear(); + IndexAdvanceX.clear(); + IndexLookup.clear(); + FallbackGlyph = NULL; + ContainerAtlas = NULL; + DirtyLookupTables = true; + Ascent = Descent = 0.0f; + MetricsTotalSurface = 0; +} + +static ImWchar FindFirstExistingGlyph(ImFont* font, const ImWchar* candidate_chars, int candidate_chars_count) +{ + for (int n = 0; n < candidate_chars_count; n++) + if (font->FindGlyphNoFallback(candidate_chars[n]) != NULL) + return candidate_chars[n]; + return (ImWchar)-1; +} + +void ImFont::BuildLookupTable() +{ + int max_codepoint = 0; + for (int i = 0; i != Glyphs.Size; i++) + max_codepoint = ImMax(max_codepoint, (int)Glyphs[i].Codepoint); + + // Build lookup table + IM_ASSERT(Glyphs.Size < 0xFFFF); // -1 is reserved + IndexAdvanceX.clear(); + IndexLookup.clear(); + DirtyLookupTables = false; + memset(Used4kPagesMap, 0, sizeof(Used4kPagesMap)); + GrowIndex(max_codepoint + 1); + for (int i = 0; i < Glyphs.Size; i++) + { + int codepoint = (int)Glyphs[i].Codepoint; + IndexAdvanceX[codepoint] = Glyphs[i].AdvanceX; + IndexLookup[codepoint] = (ImWchar)i; + + // Mark 4K page as used + const int page_n = codepoint / 4096; + Used4kPagesMap[page_n >> 3] |= 1 << (page_n & 7); + } + + // Create a glyph to handle TAB + // FIXME: Needs proper TAB handling but it needs to be contextualized (or we could arbitrary say that each string starts at "column 0" ?) + if (FindGlyph((ImWchar)' ')) + { + if (Glyphs.back().Codepoint != '\t') // So we can call this function multiple times (FIXME: Flaky) + Glyphs.resize(Glyphs.Size + 1); + ImFontGlyph& tab_glyph = Glyphs.back(); + tab_glyph = *FindGlyph((ImWchar)' '); + tab_glyph.Codepoint = '\t'; + tab_glyph.AdvanceX *= IM_TABSIZE; + IndexAdvanceX[(int)tab_glyph.Codepoint] = (float)tab_glyph.AdvanceX; + IndexLookup[(int)tab_glyph.Codepoint] = (ImWchar)(Glyphs.Size - 1); + } + + // Mark special glyphs as not visible (note that AddGlyph already mark as non-visible glyphs with zero-size polygons) + SetGlyphVisible((ImWchar)' ', false); + SetGlyphVisible((ImWchar)'\t', false); + + // Setup Fallback character + const ImWchar fallback_chars[] = { (ImWchar)IM_UNICODE_CODEPOINT_INVALID, (ImWchar)'?', (ImWchar)' ' }; + FallbackGlyph = FindGlyphNoFallback(FallbackChar); + if (FallbackGlyph == NULL) + { + FallbackChar = FindFirstExistingGlyph(this, fallback_chars, IM_ARRAYSIZE(fallback_chars)); + FallbackGlyph = FindGlyphNoFallback(FallbackChar); + if (FallbackGlyph == NULL) + { + FallbackGlyph = &Glyphs.back(); + FallbackChar = (ImWchar)FallbackGlyph->Codepoint; + } + } + FallbackAdvanceX = FallbackGlyph->AdvanceX; + for (int i = 0; i < max_codepoint + 1; i++) + if (IndexAdvanceX[i] < 0.0f) + IndexAdvanceX[i] = FallbackAdvanceX; + + // Setup Ellipsis character. It is required for rendering elided text. We prefer using U+2026 (horizontal ellipsis). + // However some old fonts may contain ellipsis at U+0085. Here we auto-detect most suitable ellipsis character. + // FIXME: Note that 0x2026 is rarely included in our font ranges. Because of this we are more likely to use three individual dots. + const ImWchar ellipsis_chars[] = { (ImWchar)0x2026, (ImWchar)0x0085 }; + const ImWchar dots_chars[] = { (ImWchar)'.', (ImWchar)0xFF0E }; + if (EllipsisChar == (ImWchar)-1) + EllipsisChar = FindFirstExistingGlyph(this, ellipsis_chars, IM_ARRAYSIZE(ellipsis_chars)); + const ImWchar dot_char = FindFirstExistingGlyph(this, dots_chars, IM_ARRAYSIZE(dots_chars)); + if (EllipsisChar != (ImWchar)-1) + { + EllipsisCharCount = 1; + EllipsisWidth = EllipsisCharStep = FindGlyph(EllipsisChar)->X1; + } + else if (dot_char != (ImWchar)-1) + { + const ImFontGlyph* glyph = FindGlyph(dot_char); + EllipsisChar = dot_char; + EllipsisCharCount = 3; + EllipsisCharStep = (glyph->X1 - glyph->X0) + 1.0f; + EllipsisWidth = EllipsisCharStep * 3.0f - 1.0f; + } +} + +// API is designed this way to avoid exposing the 4K page size +// e.g. use with IsGlyphRangeUnused(0, 255) +bool ImFont::IsGlyphRangeUnused(unsigned int c_begin, unsigned int c_last) +{ + unsigned int page_begin = (c_begin / 4096); + unsigned int page_last = (c_last / 4096); + for (unsigned int page_n = page_begin; page_n <= page_last; page_n++) + if ((page_n >> 3) < sizeof(Used4kPagesMap)) + if (Used4kPagesMap[page_n >> 3] & (1 << (page_n & 7))) + return false; + return true; +} + +void ImFont::SetGlyphVisible(ImWchar c, bool visible) +{ + if (ImFontGlyph* glyph = (ImFontGlyph*)(void*)FindGlyph((ImWchar)c)) + glyph->Visible = visible ? 1 : 0; +} + +void ImFont::GrowIndex(int new_size) +{ + IM_ASSERT(IndexAdvanceX.Size == IndexLookup.Size); + if (new_size <= IndexLookup.Size) + return; + IndexAdvanceX.resize(new_size, -1.0f); + IndexLookup.resize(new_size, (ImWchar)-1); +} + +// x0/y0/x1/y1 are offset from the character upper-left layout position, in pixels. Therefore x0/y0 are often fairly close to zero. +// Not to be mistaken with texture coordinates, which are held by u0/v0/u1/v1 in normalized format (0.0..1.0 on each texture axis). +// 'cfg' is not necessarily == 'this->ConfigData' because multiple source fonts+configs can be used to build one target font. +void ImFont::AddGlyph(const ImFontConfig* cfg, ImWchar codepoint, float x0, float y0, float x1, float y1, float u0, float v0, float u1, float v1, float advance_x) +{ + if (cfg != NULL) + { + // Clamp & recenter if needed + const float advance_x_original = advance_x; + advance_x = ImClamp(advance_x, cfg->GlyphMinAdvanceX, cfg->GlyphMaxAdvanceX); + if (advance_x != advance_x_original) + { + float char_off_x = cfg->PixelSnapH ? ImFloor((advance_x - advance_x_original) * 0.5f) : (advance_x - advance_x_original) * 0.5f; + x0 += char_off_x; + x1 += char_off_x; + } + + // Snap to pixel + if (cfg->PixelSnapH) + advance_x = IM_ROUND(advance_x); + + // Bake spacing + advance_x += cfg->GlyphExtraSpacing.x; + } + + Glyphs.resize(Glyphs.Size + 1); + ImFontGlyph& glyph = Glyphs.back(); + glyph.Codepoint = (unsigned int)codepoint; + glyph.Visible = (x0 != x1) && (y0 != y1); + glyph.Colored = false; + glyph.X0 = x0; + glyph.Y0 = y0; + glyph.X1 = x1; + glyph.Y1 = y1; + glyph.U0 = u0; + glyph.V0 = v0; + glyph.U1 = u1; + glyph.V1 = v1; + glyph.AdvanceX = advance_x; + + // Compute rough surface usage metrics (+1 to account for average padding, +0.99 to round) + // We use (U1-U0)*TexWidth instead of X1-X0 to account for oversampling. + float pad = ContainerAtlas->TexGlyphPadding + 0.99f; + DirtyLookupTables = true; + MetricsTotalSurface += (int)((glyph.U1 - glyph.U0) * ContainerAtlas->TexWidth + pad) * (int)((glyph.V1 - glyph.V0) * ContainerAtlas->TexHeight + pad); +} + +void ImFont::AddRemapChar(ImWchar dst, ImWchar src, bool overwrite_dst) +{ + IM_ASSERT(IndexLookup.Size > 0); // Currently this can only be called AFTER the font has been built, aka after calling ImFontAtlas::GetTexDataAs*() function. + unsigned int index_size = (unsigned int)IndexLookup.Size; + + if (dst < index_size && IndexLookup.Data[dst] == (ImWchar)-1 && !overwrite_dst) // 'dst' already exists + return; + if (src >= index_size && dst >= index_size) // both 'dst' and 'src' don't exist -> no-op + return; + + GrowIndex(dst + 1); + IndexLookup[dst] = (src < index_size) ? IndexLookup.Data[src] : (ImWchar)-1; + IndexAdvanceX[dst] = (src < index_size) ? IndexAdvanceX.Data[src] : 1.0f; +} + +const ImFontGlyph* ImFont::FindGlyph(ImWchar c) const +{ + if (c >= (size_t)IndexLookup.Size) + return FallbackGlyph; + const ImWchar i = IndexLookup.Data[c]; + if (i == (ImWchar)-1) + return FallbackGlyph; + return &Glyphs.Data[i]; +} + +const ImFontGlyph* ImFont::FindGlyphNoFallback(ImWchar c) const +{ + if (c >= (size_t)IndexLookup.Size) + return NULL; + const ImWchar i = IndexLookup.Data[c]; + if (i == (ImWchar)-1) + return NULL; + return &Glyphs.Data[i]; +} + +// Wrapping skips upcoming blanks +static inline const char* CalcWordWrapNextLineStartA(const char* text, const char* text_end) +{ + while (text < text_end && ImCharIsBlankA(*text)) + text++; + if (*text == '\n') + text++; + return text; +} + +// Simple word-wrapping for English, not full-featured. Please submit failing cases! +// This will return the next location to wrap from. If no wrapping if necessary, this will fast-forward to e.g. text_end. +// FIXME: Much possible improvements (don't cut things like "word !", "word!!!" but cut within "word,,,,", more sensible support for punctuations, support for Unicode punctuations, etc.) +const char* ImFont::CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const +{ + // For references, possible wrap point marked with ^ + // "aaa bbb, ccc,ddd. eee fff. ggg!" + // ^ ^ ^ ^ ^__ ^ ^ + + // List of hardcoded separators: .,;!?'" + + // Skip extra blanks after a line returns (that includes not counting them in width computation) + // e.g. "Hello world" --> "Hello" "World" + + // Cut words that cannot possibly fit within one line. + // e.g.: "The tropical fish" with ~5 characters worth of width --> "The tr" "opical" "fish" + float line_width = 0.0f; + float word_width = 0.0f; + float blank_width = 0.0f; + wrap_width /= scale; // We work with unscaled widths to avoid scaling every characters + + const char* word_end = text; + const char* prev_word_end = NULL; + bool inside_word = true; + + const char* s = text; + IM_ASSERT(text_end != NULL); + while (s < text_end) + { + unsigned int c = (unsigned int)*s; + const char* next_s; + if (c < 0x80) + next_s = s + 1; + else + next_s = s + ImTextCharFromUtf8(&c, s, text_end); + + if (c < 32) + { + if (c == '\n') + { + line_width = word_width = blank_width = 0.0f; + inside_word = true; + s = next_s; + continue; + } + if (c == '\r') + { + s = next_s; + continue; + } + } + + const float char_width = ((int)c < IndexAdvanceX.Size ? IndexAdvanceX.Data[c] : FallbackAdvanceX); + if (ImCharIsBlankW(c)) + { + if (inside_word) + { + line_width += blank_width; + blank_width = 0.0f; + word_end = s; + } + blank_width += char_width; + inside_word = false; + } + else + { + word_width += char_width; + if (inside_word) + { + word_end = next_s; + } + else + { + prev_word_end = word_end; + line_width += word_width + blank_width; + word_width = blank_width = 0.0f; + } + + // Allow wrapping after punctuation. + inside_word = (c != '.' && c != ',' && c != ';' && c != '!' && c != '?' && c != '\"'); + } + + // We ignore blank width at the end of the line (they can be skipped) + if (line_width + word_width > wrap_width) + { + // Words that cannot possibly fit within an entire line will be cut anywhere. + if (word_width < wrap_width) + s = prev_word_end ? prev_word_end : word_end; + break; + } + + s = next_s; + } + + // Wrap_width is too small to fit anything. Force displaying 1 character to minimize the height discontinuity. + // +1 may not be a character start point in UTF-8 but it's ok because caller loops use (text >= word_wrap_eol). + if (s == text && text < text_end) + return s + 1; + return s; +} + +ImVec2 ImFont::CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end, const char** remaining) const +{ + if (!text_end) + text_end = text_begin + strlen(text_begin); // FIXME-OPT: Need to avoid this. + + const float line_height = size; + const float scale = size / FontSize; + + ImVec2 text_size = ImVec2(0, 0); + float line_width = 0.0f; + + const bool word_wrap_enabled = (wrap_width > 0.0f); + const char* word_wrap_eol = NULL; + + const char* s = text_begin; + while (s < text_end) + { + if (word_wrap_enabled) + { + // Calculate how far we can render. Requires two passes on the string data but keeps the code simple and not intrusive for what's essentially an uncommon feature. + if (!word_wrap_eol) + word_wrap_eol = CalcWordWrapPositionA(scale, s, text_end, wrap_width - line_width); + + if (s >= word_wrap_eol) + { + if (text_size.x < line_width) + text_size.x = line_width; + text_size.y += line_height; + line_width = 0.0f; + word_wrap_eol = NULL; + s = CalcWordWrapNextLineStartA(s, text_end); // Wrapping skips upcoming blanks + continue; + } + } + + // Decode and advance source + const char* prev_s = s; + unsigned int c = (unsigned int)*s; + if (c < 0x80) + s += 1; + else + s += ImTextCharFromUtf8(&c, s, text_end); + + if (c < 32) + { + if (c == '\n') + { + text_size.x = ImMax(text_size.x, line_width); + text_size.y += line_height; + line_width = 0.0f; + continue; + } + if (c == '\r') + continue; + } + + const float char_width = ((int)c < IndexAdvanceX.Size ? IndexAdvanceX.Data[c] : FallbackAdvanceX) * scale; + if (line_width + char_width >= max_width) + { + s = prev_s; + break; + } + + line_width += char_width; + } + + if (text_size.x < line_width) + text_size.x = line_width; + + if (line_width > 0 || text_size.y == 0.0f) + text_size.y += line_height; + + if (remaining) + *remaining = s; + + return text_size; +} + +// Note: as with every ImDrawList drawing function, this expects that the font atlas texture is bound. +void ImFont::RenderChar(ImDrawList* draw_list, float size, const ImVec2& pos, ImU32 col, ImWchar c) const +{ + const ImFontGlyph* glyph = FindGlyph(c); + if (!glyph || !glyph->Visible) + return; + if (glyph->Colored) + col |= ~IM_COL32_A_MASK; + float scale = (size >= 0.0f) ? (size / FontSize) : 1.0f; + float x = IM_FLOOR(pos.x); + float y = IM_FLOOR(pos.y); + draw_list->PrimReserve(6, 4); + draw_list->PrimRectUV(ImVec2(x + glyph->X0 * scale, y + glyph->Y0 * scale), ImVec2(x + glyph->X1 * scale, y + glyph->Y1 * scale), ImVec2(glyph->U0, glyph->V0), ImVec2(glyph->U1, glyph->V1), col); +} + +// Note: as with every ImDrawList drawing function, this expects that the font atlas texture is bound. +void ImFont::RenderText(ImDrawList* draw_list, float size, const ImVec2& pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width, bool cpu_fine_clip) const +{ + if (!text_end) + text_end = text_begin + strlen(text_begin); // ImGui:: functions generally already provides a valid text_end, so this is merely to handle direct calls. + + // Align to be pixel perfect + float x = IM_FLOOR(pos.x); + float y = IM_FLOOR(pos.y); + if (y > clip_rect.w) + return; + + const float start_x = x; + const float scale = size / FontSize; + const float line_height = FontSize * scale; + const bool word_wrap_enabled = (wrap_width > 0.0f); + + // Fast-forward to first visible line + const char* s = text_begin; + if (y + line_height < clip_rect.y) + while (y + line_height < clip_rect.y && s < text_end) + { + const char* line_end = (const char*)memchr(s, '\n', text_end - s); + if (word_wrap_enabled) + { + // FIXME-OPT: This is not optimal as do first do a search for \n before calling CalcWordWrapPositionA(). + // If the specs for CalcWordWrapPositionA() were reworked to optionally return on \n we could combine both. + // However it is still better than nothing performing the fast-forward! + s = CalcWordWrapPositionA(scale, s, line_end ? line_end : text_end, wrap_width); + s = CalcWordWrapNextLineStartA(s, text_end); + } + else + { + s = line_end ? line_end + 1 : text_end; + } + y += line_height; + } + + // For large text, scan for the last visible line in order to avoid over-reserving in the call to PrimReserve() + // Note that very large horizontal line will still be affected by the issue (e.g. a one megabyte string buffer without a newline will likely crash atm) + if (text_end - s > 10000 && !word_wrap_enabled) + { + const char* s_end = s; + float y_end = y; + while (y_end < clip_rect.w && s_end < text_end) + { + s_end = (const char*)memchr(s_end, '\n', text_end - s_end); + s_end = s_end ? s_end + 1 : text_end; + y_end += line_height; + } + text_end = s_end; + } + if (s == text_end) + return; + + // Reserve vertices for remaining worse case (over-reserving is useful and easily amortized) + const int vtx_count_max = (int)(text_end - s) * 4; + const int idx_count_max = (int)(text_end - s) * 6; + const int idx_expected_size = draw_list->IdxBuffer.Size + idx_count_max; + draw_list->PrimReserve(idx_count_max, vtx_count_max); + ImDrawVert* vtx_write = draw_list->_VtxWritePtr; + ImDrawIdx* idx_write = draw_list->_IdxWritePtr; + unsigned int vtx_index = draw_list->_VtxCurrentIdx; + + const ImU32 col_untinted = col | ~IM_COL32_A_MASK; + const char* word_wrap_eol = NULL; + + while (s < text_end) + { + if (word_wrap_enabled) + { + // Calculate how far we can render. Requires two passes on the string data but keeps the code simple and not intrusive for what's essentially an uncommon feature. + if (!word_wrap_eol) + word_wrap_eol = CalcWordWrapPositionA(scale, s, text_end, wrap_width - (x - start_x)); + + if (s >= word_wrap_eol) + { + x = start_x; + y += line_height; + word_wrap_eol = NULL; + s = CalcWordWrapNextLineStartA(s, text_end); // Wrapping skips upcoming blanks + continue; + } + } + + // Decode and advance source + unsigned int c = (unsigned int)*s; + if (c < 0x80) + s += 1; + else + s += ImTextCharFromUtf8(&c, s, text_end); + + if (c < 32) + { + if (c == '\n') + { + x = start_x; + y += line_height; + if (y > clip_rect.w) + break; // break out of main loop + continue; + } + if (c == '\r') + continue; + } + + const ImFontGlyph* glyph = FindGlyph((ImWchar)c); + if (glyph == NULL) + continue; + + float char_width = glyph->AdvanceX * scale; + if (glyph->Visible) + { + // We don't do a second finer clipping test on the Y axis as we've already skipped anything before clip_rect.y and exit once we pass clip_rect.w + float x1 = x + glyph->X0 * scale; + float x2 = x + glyph->X1 * scale; + float y1 = y + glyph->Y0 * scale; + float y2 = y + glyph->Y1 * scale; + if (x1 <= clip_rect.z && x2 >= clip_rect.x) + { + // Render a character + float u1 = glyph->U0; + float v1 = glyph->V0; + float u2 = glyph->U1; + float v2 = glyph->V1; + + // CPU side clipping used to fit text in their frame when the frame is too small. Only does clipping for axis aligned quads. + if (cpu_fine_clip) + { + if (x1 < clip_rect.x) + { + u1 = u1 + (1.0f - (x2 - clip_rect.x) / (x2 - x1)) * (u2 - u1); + x1 = clip_rect.x; + } + if (y1 < clip_rect.y) + { + v1 = v1 + (1.0f - (y2 - clip_rect.y) / (y2 - y1)) * (v2 - v1); + y1 = clip_rect.y; + } + if (x2 > clip_rect.z) + { + u2 = u1 + ((clip_rect.z - x1) / (x2 - x1)) * (u2 - u1); + x2 = clip_rect.z; + } + if (y2 > clip_rect.w) + { + v2 = v1 + ((clip_rect.w - y1) / (y2 - y1)) * (v2 - v1); + y2 = clip_rect.w; + } + if (y1 >= y2) + { + x += char_width; + continue; + } + } + + // Support for untinted glyphs + ImU32 glyph_col = glyph->Colored ? col_untinted : col; + + // We are NOT calling PrimRectUV() here because non-inlined causes too much overhead in a debug builds. Inlined here: + { + vtx_write[0].pos.x = x1; vtx_write[0].pos.y = y1; vtx_write[0].col = glyph_col; vtx_write[0].uv.x = u1; vtx_write[0].uv.y = v1; + vtx_write[1].pos.x = x2; vtx_write[1].pos.y = y1; vtx_write[1].col = glyph_col; vtx_write[1].uv.x = u2; vtx_write[1].uv.y = v1; + vtx_write[2].pos.x = x2; vtx_write[2].pos.y = y2; vtx_write[2].col = glyph_col; vtx_write[2].uv.x = u2; vtx_write[2].uv.y = v2; + vtx_write[3].pos.x = x1; vtx_write[3].pos.y = y2; vtx_write[3].col = glyph_col; vtx_write[3].uv.x = u1; vtx_write[3].uv.y = v2; + idx_write[0] = (ImDrawIdx)(vtx_index); idx_write[1] = (ImDrawIdx)(vtx_index + 1); idx_write[2] = (ImDrawIdx)(vtx_index + 2); + idx_write[3] = (ImDrawIdx)(vtx_index); idx_write[4] = (ImDrawIdx)(vtx_index + 2); idx_write[5] = (ImDrawIdx)(vtx_index + 3); + vtx_write += 4; + vtx_index += 4; + idx_write += 6; + } + } + } + x += char_width; + } + + // Give back unused vertices (clipped ones, blanks) ~ this is essentially a PrimUnreserve() action. + draw_list->VtxBuffer.Size = (int)(vtx_write - draw_list->VtxBuffer.Data); // Same as calling shrink() + draw_list->IdxBuffer.Size = (int)(idx_write - draw_list->IdxBuffer.Data); + draw_list->CmdBuffer[draw_list->CmdBuffer.Size - 1].ElemCount -= (idx_expected_size - draw_list->IdxBuffer.Size); + draw_list->_VtxWritePtr = vtx_write; + draw_list->_IdxWritePtr = idx_write; + draw_list->_VtxCurrentIdx = vtx_index; +} + +//----------------------------------------------------------------------------- +// [SECTION] ImGui Internal Render Helpers +//----------------------------------------------------------------------------- +// Vaguely redesigned to stop accessing ImGui global state: +// - RenderArrow() +// - RenderBullet() +// - RenderCheckMark() +// - RenderArrowPointingAt() +// - RenderRectFilledRangeH() +// - RenderRectFilledWithHole() +//----------------------------------------------------------------------------- +// Function in need of a redesign (legacy mess) +// - RenderColorRectWithAlphaCheckerboard() +//----------------------------------------------------------------------------- + +// Render an arrow aimed to be aligned with text (p_min is a position in the same space text would be positioned). To e.g. denote expanded/collapsed state +void ImGui::RenderArrow(ImDrawList* draw_list, ImVec2 pos, ImU32 col, ImGuiDir dir, float scale) +{ + const float h = draw_list->_Data->FontSize * 1.00f; + float r = h * 0.40f * scale; + ImVec2 center = pos + ImVec2(h * 0.50f, h * 0.50f * scale); + + ImVec2 a, b, c; + switch (dir) + { + case ImGuiDir_Up: + case ImGuiDir_Down: + if (dir == ImGuiDir_Up) r = -r; + a = ImVec2(+0.000f, +0.750f) * r; + b = ImVec2(-0.866f, -0.750f) * r; + c = ImVec2(+0.866f, -0.750f) * r; + break; + case ImGuiDir_Left: + case ImGuiDir_Right: + if (dir == ImGuiDir_Left) r = -r; + a = ImVec2(+0.750f, +0.000f) * r; + b = ImVec2(-0.750f, +0.866f) * r; + c = ImVec2(-0.750f, -0.866f) * r; + break; + case ImGuiDir_None: + case ImGuiDir_COUNT: + IM_ASSERT(0); + break; + } + draw_list->AddTriangleFilled(center + a, center + b, center + c, col); +} + +void ImGui::RenderBullet(ImDrawList* draw_list, ImVec2 pos, ImU32 col) +{ + // FIXME-OPT: This should be baked in font. + draw_list->AddCircleFilled(pos, draw_list->_Data->FontSize * 0.20f, col, 8); +} + +void ImGui::RenderCheckMark(ImDrawList* draw_list, ImVec2 pos, ImU32 col, float sz) +{ + float thickness = ImMax(sz / 5.0f, 1.0f); + sz -= thickness * 0.5f; + pos += ImVec2(thickness * 0.25f, thickness * 0.25f); + + float third = sz / 3.0f; + float bx = pos.x + third; + float by = pos.y + sz - third * 0.5f; + draw_list->PathLineTo(ImVec2(bx - third, by - third)); + draw_list->PathLineTo(ImVec2(bx, by)); + draw_list->PathLineTo(ImVec2(bx + third * 2.0f, by - third * 2.0f)); + draw_list->PathStroke(col, 0, thickness); +} + +// Render an arrow. 'pos' is position of the arrow tip. half_sz.x is length from base to tip. half_sz.y is length on each side. +void ImGui::RenderArrowPointingAt(ImDrawList* draw_list, ImVec2 pos, ImVec2 half_sz, ImGuiDir direction, ImU32 col) +{ + switch (direction) + { + case ImGuiDir_Left: draw_list->AddTriangleFilled(ImVec2(pos.x + half_sz.x, pos.y - half_sz.y), ImVec2(pos.x + half_sz.x, pos.y + half_sz.y), pos, col); return; + case ImGuiDir_Right: draw_list->AddTriangleFilled(ImVec2(pos.x - half_sz.x, pos.y + half_sz.y), ImVec2(pos.x - half_sz.x, pos.y - half_sz.y), pos, col); return; + case ImGuiDir_Up: draw_list->AddTriangleFilled(ImVec2(pos.x + half_sz.x, pos.y + half_sz.y), ImVec2(pos.x - half_sz.x, pos.y + half_sz.y), pos, col); return; + case ImGuiDir_Down: draw_list->AddTriangleFilled(ImVec2(pos.x - half_sz.x, pos.y - half_sz.y), ImVec2(pos.x + half_sz.x, pos.y - half_sz.y), pos, col); return; + case ImGuiDir_None: case ImGuiDir_COUNT: break; // Fix warnings + } +} + +static inline float ImAcos01(float x) +{ + if (x <= 0.0f) return IM_PI * 0.5f; + if (x >= 1.0f) return 0.0f; + return ImAcos(x); + //return (-0.69813170079773212f * x * x - 0.87266462599716477f) * x + 1.5707963267948966f; // Cheap approximation, may be enough for what we do. +} + +// FIXME: Cleanup and move code to ImDrawList. +void ImGui::RenderRectFilledRangeH(ImDrawList* draw_list, const ImRect& rect, ImU32 col, float x_start_norm, float x_end_norm, float rounding) +{ + if (x_end_norm == x_start_norm) + return; + if (x_start_norm > x_end_norm) + ImSwap(x_start_norm, x_end_norm); + + ImVec2 p0 = ImVec2(ImLerp(rect.Min.x, rect.Max.x, x_start_norm), rect.Min.y); + ImVec2 p1 = ImVec2(ImLerp(rect.Min.x, rect.Max.x, x_end_norm), rect.Max.y); + if (rounding == 0.0f) + { + draw_list->AddRectFilled(p0, p1, col, 0.0f); + return; + } + + rounding = ImClamp(ImMin((rect.Max.x - rect.Min.x) * 0.5f, (rect.Max.y - rect.Min.y) * 0.5f) - 1.0f, 0.0f, rounding); + const float inv_rounding = 1.0f / rounding; + const float arc0_b = ImAcos01(1.0f - (p0.x - rect.Min.x) * inv_rounding); + const float arc0_e = ImAcos01(1.0f - (p1.x - rect.Min.x) * inv_rounding); + const float half_pi = IM_PI * 0.5f; // We will == compare to this because we know this is the exact value ImAcos01 can return. + const float x0 = ImMax(p0.x, rect.Min.x + rounding); + if (arc0_b == arc0_e) + { + draw_list->PathLineTo(ImVec2(x0, p1.y)); + draw_list->PathLineTo(ImVec2(x0, p0.y)); + } + else if (arc0_b == 0.0f && arc0_e == half_pi) + { + draw_list->PathArcToFast(ImVec2(x0, p1.y - rounding), rounding, 3, 6); // BL + draw_list->PathArcToFast(ImVec2(x0, p0.y + rounding), rounding, 6, 9); // TR + } + else + { + draw_list->PathArcTo(ImVec2(x0, p1.y - rounding), rounding, IM_PI - arc0_e, IM_PI - arc0_b, 3); // BL + draw_list->PathArcTo(ImVec2(x0, p0.y + rounding), rounding, IM_PI + arc0_b, IM_PI + arc0_e, 3); // TR + } + if (p1.x > rect.Min.x + rounding) + { + const float arc1_b = ImAcos01(1.0f - (rect.Max.x - p1.x) * inv_rounding); + const float arc1_e = ImAcos01(1.0f - (rect.Max.x - p0.x) * inv_rounding); + const float x1 = ImMin(p1.x, rect.Max.x - rounding); + if (arc1_b == arc1_e) + { + draw_list->PathLineTo(ImVec2(x1, p0.y)); + draw_list->PathLineTo(ImVec2(x1, p1.y)); + } + else if (arc1_b == 0.0f && arc1_e == half_pi) + { + draw_list->PathArcToFast(ImVec2(x1, p0.y + rounding), rounding, 9, 12); // TR + draw_list->PathArcToFast(ImVec2(x1, p1.y - rounding), rounding, 0, 3); // BR + } + else + { + draw_list->PathArcTo(ImVec2(x1, p0.y + rounding), rounding, -arc1_e, -arc1_b, 3); // TR + draw_list->PathArcTo(ImVec2(x1, p1.y - rounding), rounding, +arc1_b, +arc1_e, 3); // BR + } + } + draw_list->PathFillConvex(col); +} + +void ImGui::RenderRectFilledWithHole(ImDrawList* draw_list, const ImRect& outer, const ImRect& inner, ImU32 col, float rounding) +{ + const bool fill_L = (inner.Min.x > outer.Min.x); + const bool fill_R = (inner.Max.x < outer.Max.x); + const bool fill_U = (inner.Min.y > outer.Min.y); + const bool fill_D = (inner.Max.y < outer.Max.y); + if (fill_L) draw_list->AddRectFilled(ImVec2(outer.Min.x, inner.Min.y), ImVec2(inner.Min.x, inner.Max.y), col, rounding, ImDrawFlags_RoundCornersNone | (fill_U ? 0 : ImDrawFlags_RoundCornersTopLeft) | (fill_D ? 0 : ImDrawFlags_RoundCornersBottomLeft)); + if (fill_R) draw_list->AddRectFilled(ImVec2(inner.Max.x, inner.Min.y), ImVec2(outer.Max.x, inner.Max.y), col, rounding, ImDrawFlags_RoundCornersNone | (fill_U ? 0 : ImDrawFlags_RoundCornersTopRight) | (fill_D ? 0 : ImDrawFlags_RoundCornersBottomRight)); + if (fill_U) draw_list->AddRectFilled(ImVec2(inner.Min.x, outer.Min.y), ImVec2(inner.Max.x, inner.Min.y), col, rounding, ImDrawFlags_RoundCornersNone | (fill_L ? 0 : ImDrawFlags_RoundCornersTopLeft) | (fill_R ? 0 : ImDrawFlags_RoundCornersTopRight)); + if (fill_D) draw_list->AddRectFilled(ImVec2(inner.Min.x, inner.Max.y), ImVec2(inner.Max.x, outer.Max.y), col, rounding, ImDrawFlags_RoundCornersNone | (fill_L ? 0 : ImDrawFlags_RoundCornersBottomLeft) | (fill_R ? 0 : ImDrawFlags_RoundCornersBottomRight)); + if (fill_L && fill_U) draw_list->AddRectFilled(ImVec2(outer.Min.x, outer.Min.y), ImVec2(inner.Min.x, inner.Min.y), col, rounding, ImDrawFlags_RoundCornersTopLeft); + if (fill_R && fill_U) draw_list->AddRectFilled(ImVec2(inner.Max.x, outer.Min.y), ImVec2(outer.Max.x, inner.Min.y), col, rounding, ImDrawFlags_RoundCornersTopRight); + if (fill_L && fill_D) draw_list->AddRectFilled(ImVec2(outer.Min.x, inner.Max.y), ImVec2(inner.Min.x, outer.Max.y), col, rounding, ImDrawFlags_RoundCornersBottomLeft); + if (fill_R && fill_D) draw_list->AddRectFilled(ImVec2(inner.Max.x, inner.Max.y), ImVec2(outer.Max.x, outer.Max.y), col, rounding, ImDrawFlags_RoundCornersBottomRight); +} + +// Helper for ColorPicker4() +// NB: This is rather brittle and will show artifact when rounding this enabled if rounded corners overlap multiple cells. Caller currently responsible for avoiding that. +// Spent a non reasonable amount of time trying to getting this right for ColorButton with rounding+anti-aliasing+ImGuiColorEditFlags_HalfAlphaPreview flag + various grid sizes and offsets, and eventually gave up... probably more reasonable to disable rounding altogether. +// FIXME: uses ImGui::GetColorU32 +void ImGui::RenderColorRectWithAlphaCheckerboard(ImDrawList* draw_list, ImVec2 p_min, ImVec2 p_max, ImU32 col, float grid_step, ImVec2 grid_off, float rounding, ImDrawFlags flags) +{ + if ((flags & ImDrawFlags_RoundCornersMask_) == 0) + flags = ImDrawFlags_RoundCornersDefault_; + if (((col & IM_COL32_A_MASK) >> IM_COL32_A_SHIFT) < 0xFF) + { + ImU32 col_bg1 = GetColorU32(ImAlphaBlendColors(IM_COL32(204, 204, 204, 255), col)); + ImU32 col_bg2 = GetColorU32(ImAlphaBlendColors(IM_COL32(128, 128, 128, 255), col)); + draw_list->AddRectFilled(p_min, p_max, col_bg1, rounding, flags); + + int yi = 0; + for (float y = p_min.y + grid_off.y; y < p_max.y; y += grid_step, yi++) + { + float y1 = ImClamp(y, p_min.y, p_max.y), y2 = ImMin(y + grid_step, p_max.y); + if (y2 <= y1) + continue; + for (float x = p_min.x + grid_off.x + (yi & 1) * grid_step; x < p_max.x; x += grid_step * 2.0f) + { + float x1 = ImClamp(x, p_min.x, p_max.x), x2 = ImMin(x + grid_step, p_max.x); + if (x2 <= x1) + continue; + ImDrawFlags cell_flags = ImDrawFlags_RoundCornersNone; + if (y1 <= p_min.y) { if (x1 <= p_min.x) cell_flags |= ImDrawFlags_RoundCornersTopLeft; if (x2 >= p_max.x) cell_flags |= ImDrawFlags_RoundCornersTopRight; } + if (y2 >= p_max.y) { if (x1 <= p_min.x) cell_flags |= ImDrawFlags_RoundCornersBottomLeft; if (x2 >= p_max.x) cell_flags |= ImDrawFlags_RoundCornersBottomRight; } + + // Combine flags + cell_flags = (flags == ImDrawFlags_RoundCornersNone || cell_flags == ImDrawFlags_RoundCornersNone) ? ImDrawFlags_RoundCornersNone : (cell_flags & flags); + draw_list->AddRectFilled(ImVec2(x1, y1), ImVec2(x2, y2), col_bg2, rounding, cell_flags); + } + } + } + else + { + draw_list->AddRectFilled(p_min, p_max, col, rounding, flags); + } +} + +//----------------------------------------------------------------------------- +// [SECTION] Decompression code +//----------------------------------------------------------------------------- +// Compressed with stb_compress() then converted to a C array and encoded as base85. +// Use the program in misc/fonts/binary_to_compressed_c.cpp to create the array from a TTF file. +// The purpose of encoding as base85 instead of "0x00,0x01,..." style is only save on _source code_ size. +// Decompression from stb.h (public domain) by Sean Barrett https://github.com/nothings/stb/blob/master/stb.h +//----------------------------------------------------------------------------- + +static unsigned int stb_decompress_length(const unsigned char *input) +{ + return (input[8] << 24) + (input[9] << 16) + (input[10] << 8) + input[11]; +} + +static unsigned char *stb__barrier_out_e, *stb__barrier_out_b; +static const unsigned char *stb__barrier_in_b; +static unsigned char *stb__dout; +static void stb__match(const unsigned char *data, unsigned int length) +{ + // INVERSE of memmove... write each byte before copying the next... + IM_ASSERT(stb__dout + length <= stb__barrier_out_e); + if (stb__dout + length > stb__barrier_out_e) { stb__dout += length; return; } + if (data < stb__barrier_out_b) { stb__dout = stb__barrier_out_e+1; return; } + while (length--) *stb__dout++ = *data++; +} + +static void stb__lit(const unsigned char *data, unsigned int length) +{ + IM_ASSERT(stb__dout + length <= stb__barrier_out_e); + if (stb__dout + length > stb__barrier_out_e) { stb__dout += length; return; } + if (data < stb__barrier_in_b) { stb__dout = stb__barrier_out_e+1; return; } + memcpy(stb__dout, data, length); + stb__dout += length; +} + +#define stb__in2(x) ((i[x] << 8) + i[(x)+1]) +#define stb__in3(x) ((i[x] << 16) + stb__in2((x)+1)) +#define stb__in4(x) ((i[x] << 24) + stb__in3((x)+1)) + +static const unsigned char *stb_decompress_token(const unsigned char *i) +{ + if (*i >= 0x20) { // use fewer if's for cases that expand small + if (*i >= 0x80) stb__match(stb__dout-i[1]-1, i[0] - 0x80 + 1), i += 2; + else if (*i >= 0x40) stb__match(stb__dout-(stb__in2(0) - 0x4000 + 1), i[2]+1), i += 3; + else /* *i >= 0x20 */ stb__lit(i+1, i[0] - 0x20 + 1), i += 1 + (i[0] - 0x20 + 1); + } else { // more ifs for cases that expand large, since overhead is amortized + if (*i >= 0x18) stb__match(stb__dout-(stb__in3(0) - 0x180000 + 1), i[3]+1), i += 4; + else if (*i >= 0x10) stb__match(stb__dout-(stb__in3(0) - 0x100000 + 1), stb__in2(3)+1), i += 5; + else if (*i >= 0x08) stb__lit(i+2, stb__in2(0) - 0x0800 + 1), i += 2 + (stb__in2(0) - 0x0800 + 1); + else if (*i == 0x07) stb__lit(i+3, stb__in2(1) + 1), i += 3 + (stb__in2(1) + 1); + else if (*i == 0x06) stb__match(stb__dout-(stb__in3(1)+1), i[4]+1), i += 5; + else if (*i == 0x04) stb__match(stb__dout-(stb__in3(1)+1), stb__in2(4)+1), i += 6; + } + return i; +} + +static unsigned int stb_adler32(unsigned int adler32, unsigned char *buffer, unsigned int buflen) +{ + const unsigned long ADLER_MOD = 65521; + unsigned long s1 = adler32 & 0xffff, s2 = adler32 >> 16; + unsigned long blocklen = buflen % 5552; + + unsigned long i; + while (buflen) { + for (i=0; i + 7 < blocklen; i += 8) { + s1 += buffer[0], s2 += s1; + s1 += buffer[1], s2 += s1; + s1 += buffer[2], s2 += s1; + s1 += buffer[3], s2 += s1; + s1 += buffer[4], s2 += s1; + s1 += buffer[5], s2 += s1; + s1 += buffer[6], s2 += s1; + s1 += buffer[7], s2 += s1; + + buffer += 8; + } + + for (; i < blocklen; ++i) + s1 += *buffer++, s2 += s1; + + s1 %= ADLER_MOD, s2 %= ADLER_MOD; + buflen -= blocklen; + blocklen = 5552; + } + return (unsigned int)(s2 << 16) + (unsigned int)s1; +} + +static unsigned int stb_decompress(unsigned char *output, const unsigned char *i, unsigned int /*length*/) +{ + if (stb__in4(0) != 0x57bC0000) return 0; + if (stb__in4(4) != 0) return 0; // error! stream is > 4GB + const unsigned int olen = stb_decompress_length(i); + stb__barrier_in_b = i; + stb__barrier_out_e = output + olen; + stb__barrier_out_b = output; + i += 16; + + stb__dout = output; + for (;;) { + const unsigned char *old_i = i; + i = stb_decompress_token(i); + if (i == old_i) { + if (*i == 0x05 && i[1] == 0xfa) { + IM_ASSERT(stb__dout == output + olen); + if (stb__dout != output + olen) return 0; + if (stb_adler32(1, output, olen) != (unsigned int) stb__in4(2)) + return 0; + return olen; + } else { + IM_ASSERT(0); /* NOTREACHED */ + return 0; + } + } + IM_ASSERT(stb__dout <= output + olen); + if (stb__dout > output + olen) + return 0; + } +} + +//----------------------------------------------------------------------------- +// [SECTION] Default font data (ProggyClean.ttf) +//----------------------------------------------------------------------------- +// ProggyClean.ttf +// Copyright (c) 2004, 2005 Tristan Grimmer +// MIT license (see License.txt in http://www.upperbounds.net/download/ProggyClean.ttf.zip) +// Download and more information at http://upperbounds.net +//----------------------------------------------------------------------------- +// File: 'ProggyClean.ttf' (41208 bytes) +// Exported using misc/fonts/binary_to_compressed_c.cpp (with compression + base85 string encoding). +// The purpose of encoding as base85 instead of "0x00,0x01,..." style is only save on _source code_ size. +//----------------------------------------------------------------------------- +static const char proggy_clean_ttf_compressed_data_base85[11980 + 1] = + "7])#######hV0qs'/###[),##/l:$#Q6>##5[n42>c-TH`->>#/e>11NNV=Bv(*:.F?uu#(gRU.o0XGH`$vhLG1hxt9?W`#,5LsCp#-i>.r$<$6pD>Lb';9Crc6tgXmKVeU2cD4Eo3R/" + "2*>]b(MC;$jPfY.;h^`IWM9Qo#t'X#(v#Y9w0#1D$CIf;W'#pWUPXOuxXuU(H9M(1=Ke$$'5F%)]0^#0X@U.a$FBjVQTSDgEKnIS7EM9>ZY9w0#L;>>#Mx&4Mvt//L[MkA#W@lK.N'[0#7RL_&#w+F%HtG9M#XL`N&.,GM4Pg;--VsM.M0rJfLH2eTM`*oJMHRC`N" + "kfimM2J,W-jXS:)r0wK#@Fge$U>`w'N7G#$#fB#$E^$#:9:hk+eOe--6x)F7*E%?76%^GMHePW-Z5l'&GiF#$956:rS?dA#fiK:)Yr+`�j@'DbG&#^$PG.Ll+DNa&VZ>1i%h1S9u5o@YaaW$e+bROPOpxTO7Stwi1::iB1q)C_=dV26J;2,]7op$]uQr@_V7$q^%lQwtuHY]=DX,n3L#0PHDO4f9>dC@O>HBuKPpP*E,N+b3L#lpR/MrTEH.IAQk.a>D[.e;mc." + "x]Ip.PH^'/aqUO/$1WxLoW0[iLAw=4h(9.`G" + "CRUxHPeR`5Mjol(dUWxZa(>STrPkrJiWx`5U7F#.g*jrohGg`cg:lSTvEY/EV_7H4Q9[Z%cnv;JQYZ5q.l7Zeas:HOIZOB?Ggv:[7MI2k).'2($5FNP&EQ(,)" + "U]W]+fh18.vsai00);D3@4ku5P?DP8aJt+;qUM]=+b'8@;mViBKx0DE[-auGl8:PJ&Dj+M6OC]O^((##]`0i)drT;-7X`=-H3[igUnPG-NZlo.#k@h#=Ork$m>a>$-?Tm$UV(?#P6YY#" + "'/###xe7q.73rI3*pP/$1>s9)W,JrM7SN]'/4C#v$U`0#V.[0>xQsH$fEmPMgY2u7Kh(G%siIfLSoS+MK2eTM$=5,M8p`A.;_R%#u[K#$x4AG8.kK/HSB==-'Ie/QTtG?-.*^N-4B/ZM" + "_3YlQC7(p7q)&](`6_c)$/*JL(L-^(]$wIM`dPtOdGA,U3:w2M-0+WomX2u7lqM2iEumMTcsF?-aT=Z-97UEnXglEn1K-bnEO`gu" + "Ft(c%=;Am_Qs@jLooI&NX;]0#j4#F14;gl8-GQpgwhrq8'=l_f-b49'UOqkLu7-##oDY2L(te+Mch&gLYtJ,MEtJfLh'x'M=$CS-ZZ%P]8bZ>#S?YY#%Q&q'3^Fw&?D)UDNrocM3A76/" + "/oL?#h7gl85[qW/NDOk%16ij;+:1a'iNIdb-ou8.P*w,v5#EI$TWS>Pot-R*H'-SEpA:g)f+O$%%`kA#G=8RMmG1&O`>to8bC]T&$,n.LoO>29sp3dt-52U%VM#q7'DHpg+#Z9%H[Ket`e;)f#Km8&+DC$I46>#Kr]]u-[=99tts1.qb#q72g1WJO81q+eN'03'eM>&1XxY-caEnO" + "j%2n8)),?ILR5^.Ibn<-X-Mq7[a82Lq:F&#ce+S9wsCK*x`569E8ew'He]h:sI[2LM$[guka3ZRd6:t%IG:;$%YiJ:Nq=?eAw;/:nnDq0(CYcMpG)qLN4$##&J-XTt,%OVU4)S1+R-#dg0/Nn?Ku1^0f$B*P:Rowwm-`0PKjYDDM'3]d39VZHEl4,.j']Pk-M.h^&:0FACm$maq-&sgw0t7/6(^xtk%" + "LuH88Fj-ekm>GA#_>568x6(OFRl-IZp`&b,_P'$MhLbxfc$mj`,O;&%W2m`Zh:/)Uetw:aJ%]K9h:TcF]u_-Sj9,VK3M.*'&0D[Ca]J9gp8,kAW]" + "%(?A%R$f<->Zts'^kn=-^@c4%-pY6qI%J%1IGxfLU9CP8cbPlXv);C=b),<2mOvP8up,UVf3839acAWAW-W?#ao/^#%KYo8fRULNd2.>%m]UK:n%r$'sw]J;5pAoO_#2mO3n,'=H5(et" + "Hg*`+RLgv>=4U8guD$I%D:W>-r5V*%j*W:Kvej.Lp$'?;++O'>()jLR-^u68PHm8ZFWe+ej8h:9r6L*0//c&iH&R8pRbA#Kjm%upV1g:" + "a_#Ur7FuA#(tRh#.Y5K+@?3<-8m0$PEn;J:rh6?I6uG<-`wMU'ircp0LaE_OtlMb&1#6T.#FDKu#1Lw%u%+GM+X'e?YLfjM[VO0MbuFp7;>Q&#WIo)0@F%q7c#4XAXN-U&VBpqB>0ie&jhZ[?iLR@@_AvA-iQC(=ksRZRVp7`.=+NpBC%rh&3]R:8XDmE5^V8O(x<-+k?'(^](H.aREZSi,#1:[IXaZFOm<-ui#qUq2$##Ri;u75OK#(RtaW-K-F`S+cF]uN`-KMQ%rP/Xri.LRcB##=YL3BgM/3M" + "D?@f&1'BW-)Ju#bmmWCMkk&#TR`C,5d>g)F;t,4:@_l8G/5h4vUd%&%950:VXD'QdWoY-F$BtUwmfe$YqL'8(PWX(" + "P?^@Po3$##`MSs?DWBZ/S>+4%>fX,VWv/w'KD`LP5IbH;rTV>n3cEK8U#bX]l-/V+^lj3;vlMb&[5YQ8#pekX9JP3XUC72L,,?+Ni&co7ApnO*5NK,((W-i:$,kp'UDAO(G0Sq7MVjJs" + "bIu)'Z,*[>br5fX^:FPAWr-m2KgLQ_nN6'8uTGT5g)uLv:873UpTLgH+#FgpH'_o1780Ph8KmxQJ8#H72L4@768@Tm&Q" + "h4CB/5OvmA&,Q&QbUoi$a_%3M01H)4x7I^&KQVgtFnV+;[Pc>[m4k//,]1?#`VY[Jr*3&&slRfLiVZJ:]?=K3Sw=[$=uRB?3xk48@aege0jT6'N#(q%.O=?2S]u*(m<-" + "V8J'(1)G][68hW$5'q[GC&5j`TE?m'esFGNRM)j,ffZ?-qx8;->g4t*:CIP/[Qap7/9'#(1sao7w-.qNUdkJ)tCF&#B^;xGvn2r9FEPFFFcL@.iFNkTve$m%#QvQS8U@)2Z+3K:AKM5i" + "sZ88+dKQ)W6>J%CL`.d*(B`-n8D9oK-XV1q['-5k'cAZ69e;D_?$ZPP&s^+7])$*$#@QYi9,5P r+$%CE=68>K8r0=dSC%%(@p7" + ".m7jilQ02'0-VWAgTlGW'b)Tq7VT9q^*^$$.:&N@@" + "$&)WHtPm*5_rO0&e%K&#-30j(E4#'Zb.o/(Tpm$>K'f@[PvFl,hfINTNU6u'0pao7%XUp9]5.>%h`8_=VYbxuel.NTSsJfLacFu3B'lQSu/m6-Oqem8T+oE--$0a/k]uj9EwsG>%veR*" + "hv^BFpQj:K'#SJ,sB-'#](j.Lg92rTw-*n%@/;39rrJF,l#qV%OrtBeC6/,;qB3ebNW[?,Hqj2L.1NP&GjUR=1D8QaS3Up&@*9wP?+lo7b?@%'k4`p0Z$22%K3+iCZj?XJN4Nm&+YF]u" + "@-W$U%VEQ/,,>>#)D#%8cY#YZ?=,`Wdxu/ae&#" + "w6)R89tI#6@s'(6Bf7a&?S=^ZI_kS&ai`&=tE72L_D,;^R)7[$so8lKN%5/$(vdfq7+ebA#" + "u1p]ovUKW&Y%q]'>$1@-[xfn$7ZTp7mM,G,Ko7a&Gu%G[RMxJs[0MM%wci.LFDK)(%:_i2B5CsR8&9Z&#=mPEnm0f`<&c)QL5uJ#%u%lJj+D-r;BoFDoS97h5g)E#o:&S4weDF,9^Hoe`h*L+_a*NrLW-1pG_&2UdB8" + "6e%B/:=>)N4xeW.*wft-;$'58-ESqr#U`'6AQ]m&6/`Z>#S?YY#Vc;r7U2&326d=w&H####?TZ`*4?&.MK?LP8Vxg>$[QXc%QJv92.(Db*B)gb*BM9dM*hJMAo*c&#" + "b0v=Pjer]$gG&JXDf->'StvU7505l9$AFvgYRI^&<^b68?j#q9QX4SM'RO#&sL1IM.rJfLUAj221]d##DW=m83u5;'bYx,*Sl0hL(W;;$doB&O/TQ:(Z^xBdLjLV#*8U_72Lh+2Q8Cj0i:6hp&$C/:p(HK>T8Y[gHQ4`4)'$Ab(Nof%V'8hL&#SfD07&6D@M.*J:;$-rv29'M]8qMv-tLp,'886iaC=Hb*YJoKJ,(j%K=H`K.v9HggqBIiZu'QvBT.#=)0ukruV&.)3=(^1`o*Pj4<-#MJ+gLq9-##@HuZPN0]u:h7.T..G:;$/Usj(T7`Q8tT72LnYl<-qx8;-HV7Q-&Xdx%1a,hC=0u+HlsV>nuIQL-5" + "_>@kXQtMacfD.m-VAb8;IReM3$wf0''hra*so568'Ip&vRs849'MRYSp%:t:h5qSgwpEr$B>Q,;s(C#$)`svQuF$##-D,##,g68@2[T;.XSdN9Qe)rpt._K-#5wF)sP'##p#C0c%-Gb%" + "hd+<-j'Ai*x&&HMkT]C'OSl##5RG[JXaHN;d'uA#x._U;.`PU@(Z3dt4r152@:v,'R.Sj'w#0<-;kPI)FfJ&#AYJ&#//)>-k=m=*XnK$>=)72L]0I%>.G690a:$##<,);?;72#?x9+d;" + "^V'9;jY@;)br#q^YQpx:X#Te$Z^'=-=bGhLf:D6&bNwZ9-ZD#n^9HhLMr5G;']d&6'wYmTFmLq9wI>P(9mI[>kC-ekLC/R&CH+s'B;K-M6$EB%is00:" + "+A4[7xks.LrNk0&E)wILYF@2L'0Nb$+pv<(2.768/FrY&h$^3i&@+G%JT'<-,v`3;_)I9M^AE]CN?Cl2AZg+%4iTpT3$U4O]GKx'm9)b@p7YsvK3w^YR-" + "CdQ*:Ir<($u&)#(&?L9Rg3H)4fiEp^iI9O8KnTj,]H?D*r7'M;PwZ9K0E^k&-cpI;.p/6_vwoFMV<->#%Xi.LxVnrU(4&8/P+:hLSKj$#U%]49t'I:rgMi'FL@a:0Y-uA[39',(vbma*" + "hU%<-SRF`Tt:542R_VV$p@[p8DV[A,?1839FWdFTi1O*H&#(AL8[_P%.M>v^-))qOT*F5Cq0`Ye%+$B6i:7@0IXSsDiWP,##P`%/L-" + "S(qw%sf/@%#B6;/U7K]uZbi^Oc^2n%t<)'mEVE''n`WnJra$^TKvX5B>;_aSEK',(hwa0:i4G?.Bci.(X[?b*($,=-n<.Q%`(X=?+@Am*Js0&=3bh8K]mL69=Lb,OcZV/);TTm8VI;?%OtJ<(b4mq7M6:u?KRdFl*:xP?Yb.5)%w_I?7uk5JC+FS(m#i'k.'a0i)9<7b'fs'59hq$*5Uhv##pi^8+hIEBF`nvo`;'l0.^S1<-wUK2/Coh58KKhLj" + "M=SO*rfO`+qC`W-On.=AJ56>>i2@2LH6A:&5q`?9I3@@'04&p2/LVa*T-4<-i3;M9UvZd+N7>b*eIwg:CC)c<>nO&#$(>.Z-I&J(Q0Hd5Q%7Co-b`-cP)hI;*_F]u`Rb[.j8_Q/<&>uu+VsH$sM9TA%?)(vmJ80),P7E>)tjD%2L=-t#fK[%`v=Q8WlA2);Sa" + ">gXm8YB`1d@K#n]76-a$U,mF%Ul:#/'xoFM9QX-$.QN'>" + "[%$Z$uF6pA6Ki2O5:8w*vP1<-1`[G,)-m#>0`P&#eb#.3i)rtB61(o'$?X3B2Qft^ae_5tKL9MUe9b*sLEQ95C&`=G?@Mj=wh*'3E>=-<)Gt*Iw)'QG:`@I" + "wOf7&]1i'S01B+Ev/Nac#9S;=;YQpg_6U`*kVY39xK,[/6Aj7:'1Bm-_1EYfa1+o&o4hp7KN_Q(OlIo@S%;jVdn0'1h19w,WQhLI)3S#f$2(eb,jr*b;3Vw]*7NH%$c4Vs,eD9>XW8?N]o+(*pgC%/72LV-uW%iewS8W6m2rtCpo'RS1R84=@paTKt)>=%&1[)*vp'u+x,VrwN;&]kuO9JDbg=pO$J*.jVe;u'm0dr9l,<*wMK*Oe=g8lV_KEBFkO'oU]^=[-792#ok,)" + "i]lR8qQ2oA8wcRCZ^7w/Njh;?.stX?Q1>S1q4Bn$)K1<-rGdO'$Wr.Lc.CG)$/*JL4tNR/,SVO3,aUw'DJN:)Ss;wGn9A32ijw%FL+Z0Fn.U9;reSq)bmI32U==5ALuG&#Vf1398/pVo" + "1*c-(aY168o<`JsSbk-,1N;$>0:OUas(3:8Z972LSfF8eb=c-;>SPw7.6hn3m`9^Xkn(r.qS[0;T%&Qc=+STRxX'q1BNk3&*eu2;&8q$&x>Q#Q7^Tf+6<(d%ZVmj2bDi%.3L2n+4W'$P" + "iDDG)g,r%+?,$@?uou5tSe2aN_AQU*'IAO" + "URQ##V^Fv-XFbGM7Fl(N<3DhLGF%q.1rC$#:T__&Pi68%0xi_&[qFJ(77j_&JWoF.V735&T,[R*:xFR*K5>>#`bW-?4Ne_&6Ne_&6Ne_&n`kr-#GJcM6X;uM6X;uM(.a..^2TkL%oR(#" + ";u.T%fAr%4tJ8&><1=GHZ_+m9/#H1F^R#SC#*N=BA9(D?v[UiFY>>^8p,KKF.W]L29uLkLlu/+4T" + "w$)F./^n3+rlo+DB;5sIYGNk+i1t-69Jg--0pao7Sm#K)pdHW&;LuDNH@H>#/X-TI(;P>#,Gc>#0Su>#4`1?#8lC?#xL$#B.`$#F:r$#JF.%#NR@%#R_R%#Vke%#Zww%#_-4^Rh%Sflr-k'MS.o?.5/sWel/wpEM0%3'/1)K^f1-d>G21&v(35>V`39V7A4=onx4" + "A1OY5EI0;6Ibgr6M$HS7Q<)58C5w,;WoA*#[%T*#`1g*#d=#+#hI5+#lUG+#pbY+#tnl+#x$),#&1;,#*=M,#.I`,#2Ur,#6b.-#;w[H#iQtA#m^0B#qjBB#uvTB##-hB#'9$C#+E6C#" + "/QHC#3^ZC#7jmC#;v)D#?,)4kMYD4lVu`4m`:&5niUA5@(A5BA1]PBB:xlBCC=2CDLXMCEUtiCf&0g2'tN?PGT4CPGT4CPGT4CPGT4CPGT4CPGT4CPGT4CP" + "GT4CPGT4CPGT4CPGT4CPGT4CPGT4CP-qekC`.9kEg^+F$kwViFJTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5o,^<-28ZI'O?;xp" + "O?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xp;7q-#lLYI:xvD=#"; + +static const char* GetDefaultCompressedFontDataTTFBase85() +{ + return proggy_clean_ttf_compressed_data_base85; +} + +#endif // #ifndef IMGUI_DISABLE diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_edited.cpp b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_edited.cpp new file mode 100644 index 0000000..1ecda2b --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_edited.cpp @@ -0,0 +1,2376 @@ +#include "imgui_edited.hpp" +#include + +using namespace ImGui; + +namespace edited +{ + + const char* keys[] = + { + "-", + "M1", + "M2", + "CN", + "M3", + "M4", + "M5", + "-", + "BACK", + "TAB", + "-", + "-", + "CLR", + "ENTER", + "-", + "-", + "SHIFT", + "CTRL", + "Menu", + "Pause", + "CAPS", + "KAN", + "-", + "JUN", + "FIN", + "KAN", + "-", + "ESC", + "CON", + "NCO", + "ACC", + "MAD", + "SPACE", + "PGU", + "PGD", + "END", + "HOME", + "LEFT", + "UP", + "RIGHT", + "DOWN", + "SEL", + "PRI", + "EXE", + "PRI", + "INS", + "DEL", + "HEL", + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "-", + "-", + "-", + "-", + "-", + "-", + "-", + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + "Q", + "R", + "S", + "T", + "U", + "V", + "W", + "X", + "Y", + "Z", + "WIN", + "WIN", + "APP", + "-", + "SLE", + "NUM0", + "NUM1", + "NUM2", + "NUM3", + "NUM4", + "NUM5", + "NUM6", + "NUM7", + "NUM8", + "NUM9", + "MUL", + "ADD", + "SEP", + "MIN", + "DEL", + "DIV", + "F1", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "F10", + "F11", + "F12", + "F13", + "F14", + "F15", + "F16", + "F17", + "F18", + "F19", + "F20", + "F21", + "F22", + "F23", + "F24", + "-", + "-", + "-", + "-", + "-", + "-", + "-", + "-", + "NUM", + "SCR", + "EQU", + "MAS", + "TOY", + "OYA", + "OYA", + "-", + "-", + "-", + "-", + "-", + "-", + "-", + "-", + "-", + "SHIFT", + "SHIFT", + "CTRL", + "CTRL", + "ALT", + "ALT" + }; + +#include + + void RenderTextColor(ImFont* font, const ImVec2& p_min, const ImVec2& p_max, ImU32 col, const char* text, const ImVec2& align) + { + PushFont(font); + PushStyleColor(ImGuiCol_Text, col); + RenderTextClipped(p_min, p_max, text, NULL, NULL, align, NULL); + PopStyleColor(); + PopFont(); + } + + struct key_state + { + ImVec4 background, text; + bool active = false; + bool hovered = false; + float alpha = 0.f; + }; + + bool Keybind(const char* label, const char* description, int* key) + { + ImGuiWindow* window = ImGui::GetCurrentWindow(); + if (window->SkipItems) return false; + + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + const ImGuiStyle& style = g.Style; + + const ImGuiID id = window->GetID(label); + const float width = (GetContentRegionMax().x - style.WindowPadding.x); + + const ImRect rect(window->DC.CursorPos, window->DC.CursorPos + ImVec2(width, 50)); + const ImRect clickable(window->DC.CursorPos + ImVec2(width - 80, 10), window->DC.CursorPos + ImVec2(width - 10, 40)); + + ItemSize(ImRect(rect.Min, rect.Max)); + if (!ImGui::ItemAdd(rect, id)) return false; + + char buf_display[64] = "None"; + + + bool value_changed = false; + int k = *key; + + std::string active_key = ""; + active_key += keys[*key]; + + if (*key != 0 && g.ActiveId != id) { + strcpy_s(buf_display, active_key.c_str()); + } + else if (g.ActiveId == id) { + strcpy_s(buf_display, "..."); + } + + const ImVec2 label_size = CalcTextSize(buf_display, NULL, true); + + bool hovered = ItemHoverable(rect, id, NULL); + + static std::map anim; + auto it_anim = anim.find(id); + + if (it_anim == anim.end()) + { + anim.insert({ id, key_state() }); + it_anim = anim.find(id); + } + + it_anim->second.text = ImLerp(it_anim->second.text, g.ActiveId == id ? c::elements::text_active : hovered ? c::elements::text_hov : c::elements::text, ImGui::GetIO().DeltaTime * 6.f); + + window->DrawList->AddRectFilled(clickable.Min, clickable.Max, GetColorU32(c::elements::background), c::elements::rounding); + + RenderTextColor(font::lexend_regular, rect.Min + ImVec2(10, 0), rect.Max, GetColorU32(c::elements::text), description, ImVec2(0.0, 0.8)); + + GetWindowDrawList()->AddRectFilled(rect.Min + ImVec2(width - 80, 0), rect.Max, GetColorU32(c::elements::background), c::elements::rounding); + auto walpha = GetColorU32(ImVec4(c::elements::background.x, c::elements::background.y, c::elements::background.z, 1.f)); + auto nalpha = GetColorU32(ImVec4(c::elements::background.x, c::elements::background.y, c::elements::background.z, 0.f)); + GetWindowDrawList()->AddRectFilledMultiColor(rect.Min, rect.Max - ImVec2(80, 0), nalpha, walpha, walpha, nalpha); + + window->DrawList->AddRectFilled(clickable.Min, clickable.Max, GetColorU32(c::elements::background_widget), c::elements::rounding); + + RenderTextColor(font::lexend_bold, rect.Min + ImVec2(10, 0), rect.Max, GetColorU32(c::elements::text_active), label, ImVec2(0.0, 0.2)); + + RenderTextColor(font::lexend_bold, clickable.Min, clickable.Max, GetColorU32(c::elements::text_active), buf_display, ImVec2(0.5f, 0.5f)); + + if (hovered && io.MouseClicked[0]) + { + if (g.ActiveId != id) { + + memset(io.MouseDown, 0, sizeof(io.MouseDown)); + memset(io.KeysDown, 0, sizeof(io.KeysDown)); + *key = 0; + } + ImGui::SetActiveID(id, window); + ImGui::FocusWindow(window); + } + else if (io.MouseClicked[0]) { + + if (g.ActiveId == id) + ImGui::ClearActiveID(); + } + + if (g.ActiveId == id) { + for (auto i = 0; i < 5; i++) { + if (io.MouseDown[i]) { + switch (i) { + case 0: + k = 0x01; + break; + case 1: + k = 0x02; + break; + case 2: + k = 0x04; + break; + case 3: + k = 0x05; + break; + case 4: + k = 0x06; + break; + } + value_changed = true; + ImGui::ClearActiveID(); + } + } + if (!value_changed) { + for (auto i = 0x08; i <= 0xA5; i++) { + if (io.KeysDown[i]) { + k = i; + value_changed = true; + ImGui::ClearActiveID(); + } + } + } + + if (IsKeyPressedMap(ImGuiKey_Escape)) { + *key = 0; + ImGui::ClearActiveID(); + } + else { + *key = k; + } + } + + return value_changed; + } + + struct checkp_state + { + ImVec4 background; + }; + + bool checkboxP(const char* label, bool* v, const ImVec2& size_arg) + { + ImGuiWindow* window = GetCurrentWindow(); + + if (window->SkipItems) return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + const ImVec2 label_size = CalcTextSize(label, NULL, true), pos = window->DC.CursorPos; + + ImVec2 size = CalcItemSize(size_arg, label_size.x, label_size.y); + + const ImRect bb(pos, pos + size); + + ItemSize(size, 0.f); + if (!ItemAdd(bb, id)) return false; + + bool hovered, held, pressed = ButtonBehavior(bb, id, &hovered, &held, NULL); + if (IsItemClicked()) + { + *v = !(*v); + MarkItemEdited(id); + } + + static std::map anim; + checkp_state& state = anim[id]; + + state.background = ImLerp(state.background, *v ? c::accent : c::elements::background, g.IO.DeltaTime * 6.f); + auto walpha = GetColorU32(ImVec4(c::elements::background.x, c::elements::background.y, c::elements::background.z, 1.f)); + auto nalpha = GetColorU32(ImVec4(c::elements::background.x, c::elements::background.y, c::elements::background.z, 0.1f)); + ImGui::GetWindowDrawList()->AddRectFilled(bb.Min, bb.Max,nalpha, 3.f); + ImGui::GetWindowDrawList()->AddRect(bb.Min, bb.Max, GetColorU32(state.background), 2.f); + + RenderTextColor(font::lexend_regular, bb.Min, bb.Max, GetColorU32(c::elements::text_active), label, ImVec2(0.5, 0.5)); + + return pressed; + } + + struct tab_state + { + ImVec4 background, text, icon, shadow; + float bg_alpha; + }; + + bool edited::Tab(bool selected, const char* icon, const char* label, const char* description, const ImVec2& size_arg) + { + ImGuiWindow* window = GetCurrentWindow(); + + if (window->SkipItems) return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + const ImVec2 label_size = CalcTextSize(label, NULL, true), pos = window->DC.CursorPos; + + ImVec2 size = CalcItemSize(size_arg, label_size.x, label_size.y); + + const ImRect bb(pos, pos + size); + + ItemSize(size, 0.f); + if (!ItemAdd(bb, id)) return false; + + bool hovered, held, pressed = ButtonBehavior(bb, id, &hovered, &held, NULL); + + static std::map anim; + tab_state& state = anim[id]; + + state.icon = ImLerp(state.icon, selected ? c::accent : hovered ? c::elements::text_hov : c::elements::text, g.IO.DeltaTime * 6.f); + state.text = ImLerp(state.text, selected ? c::elements::text_active : hovered ? c::elements::text_hov : c::elements::text, g.IO.DeltaTime * 6.f); + state.bg_alpha = ImLerp(state.bg_alpha, selected ? 1.f : 0.f, g.IO.DeltaTime * 6.f); + state.shadow = ImLerp(state.shadow, selected ? c::tab::tab_active : c::tab::border, g.IO.DeltaTime * 6.f); + + GetWindowDrawList()->AddRectFilled(bb.Min, bb.Max, VGetColorU32(c::tab::tab_active, state.bg_alpha), c::elements::rounding); + + RenderTextColor(font::lexend_regular, bb.Min + ImVec2(size.y, 0), bb.Max, GetColorU32(c::elements::text), description, ImVec2(0.0, 0.7)); + + GetWindowDrawList()->AddRectFilledMultiColor(bb.Min + ImVec2(size.x / 2, 0), bb.Max, VGetColorU32(state.shadow, 0.f), VGetColorU32(state.shadow, 1.f), VGetColorU32(state.shadow, 1.f), VGetColorU32(state.shadow, 0.f)); + + RenderTextColor(font::lexend_bold, bb.Min + ImVec2(size.y, 0), bb.Max, GetColorU32(state.text), label, ImVec2(0.0, 0.3)); + RenderTextColor(font::icomoon, bb.Min, bb.Min + ImVec2(size.y, size.y), GetColorU32(state.icon), icon, ImVec2(0.5, 0.5)); + + return pressed; + } + + bool edited::BeginChild(const char* str_id, const ImVec2& size_arg, ImGuiChildFlags child_flags, ImGuiWindowFlags window_flags) + { + ImGuiID id = GetCurrentWindow()->GetID(str_id); + + PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(10 * dpi, 10 * dpi)); + PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(10 * dpi, 10 * dpi)); + + return edited::BeginChildEx(str_id, id, size_arg * dpi, child_flags, window_flags | ImGuiWindowFlags_AlwaysUseWindowPadding); + } + + bool edited::BeginChild(ImGuiID id, const ImVec2& size_arg, ImGuiChildFlags child_flags, ImGuiWindowFlags window_flags) + { + return edited::BeginChildEx(NULL, id, size_arg, child_flags, window_flags); + } + + bool edited::BeginChildEx(const char* name, ImGuiID id, const ImVec2& size_arg, ImGuiChildFlags child_flags, ImGuiWindowFlags window_flags) + { + ImGuiContext& g = *GImGui; + ImGuiWindow* parent_window = g.CurrentWindow; + IM_ASSERT(id != 0); + + const ImGuiChildFlags ImGuiChildFlags_SupportedMask_ = ImGuiChildFlags_Border | ImGuiChildFlags_AlwaysUseWindowPadding | ImGuiChildFlags_ResizeX | ImGuiChildFlags_ResizeY | ImGuiChildFlags_AutoResizeX | ImGuiChildFlags_AutoResizeY | ImGuiChildFlags_AlwaysAutoResize | ImGuiChildFlags_FrameStyle; + IM_UNUSED(ImGuiChildFlags_SupportedMask_); + IM_ASSERT((child_flags & ~ImGuiChildFlags_SupportedMask_) == 0 && "Illegal ImGuiChildFlags value. Did you pass ImGuiWindowFlags values instead of ImGuiChildFlags?"); + IM_ASSERT((window_flags & ImGuiWindowFlags_AlwaysAutoResize) == 0 && "Cannot specify ImGuiWindowFlags_AlwaysAutoResize for BeginChild(). Use ImGuiChildFlags_AlwaysAutoResize!"); + if (child_flags & ImGuiChildFlags_AlwaysAutoResize) + { + IM_ASSERT((child_flags & (ImGuiChildFlags_ResizeX | ImGuiChildFlags_ResizeY)) == 0 && "Cannot use ImGuiChildFlags_ResizeX or ImGuiChildFlags_ResizeY with ImGuiChildFlags_AlwaysAutoResize!"); + IM_ASSERT((child_flags & (ImGuiChildFlags_AutoResizeX | ImGuiChildFlags_AutoResizeY)) != 0 && "Must use ImGuiChildFlags_AutoResizeX or ImGuiChildFlags_AutoResizeY with ImGuiChildFlags_AlwaysAutoResize!"); + } +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + if (window_flags & ImGuiWindowFlags_AlwaysUseWindowPadding) child_flags |= ImGuiChildFlags_AlwaysUseWindowPadding; +#endif + if (child_flags & ImGuiChildFlags_AutoResizeX) child_flags &= ~ImGuiChildFlags_ResizeX; + if (child_flags & ImGuiChildFlags_AutoResizeY) child_flags &= ~ImGuiChildFlags_ResizeY; + + window_flags |= ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_NoTitleBar; + window_flags |= (parent_window->Flags & ImGuiWindowFlags_NoMove); + if (child_flags & (ImGuiChildFlags_AutoResizeX | ImGuiChildFlags_AutoResizeY | ImGuiChildFlags_AlwaysAutoResize)) window_flags |= ImGuiWindowFlags_AlwaysAutoResize; + if ((child_flags & (ImGuiChildFlags_ResizeX | ImGuiChildFlags_ResizeY)) == 0) window_flags |= ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoSavedSettings; + + if (child_flags & ImGuiChildFlags_FrameStyle) + { + PushStyleColor(ImGuiCol_ChildBg, g.Style.Colors[ImGuiCol_FrameBg]); + PushStyleVar(ImGuiStyleVar_ChildRounding, g.Style.FrameRounding); + PushStyleVar(ImGuiStyleVar_ChildBorderSize, g.Style.FrameBorderSize); + PushStyleVar(ImGuiStyleVar_WindowPadding, g.Style.FramePadding); + child_flags |= ImGuiChildFlags_Border | ImGuiChildFlags_AlwaysUseWindowPadding; + window_flags |= ImGuiWindowFlags_NoMove; + } + + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasChildFlags; + g.NextWindowData.ChildFlags = child_flags; + + const ImVec2 size_avail = GetContentRegionAvail(); + const ImVec2 size_default((child_flags & ImGuiChildFlags_AutoResizeX) ? 0.0f : size_avail.x, (child_flags & ImGuiChildFlags_AutoResizeY) ? 0.0f : size_avail.y); + const ImVec2 size = CalcItemSize(size_arg, size_default.x, size_default.y); + SetNextWindowSize(size * dpi); + + // GetWindowDrawList()->AddRect(parent_window->DC.CursorPos, parent_window->DC.CursorPos + size_arg, GetColorU32(c::accent), 0); + + const char* temp_window_name; + + if (name) + ImFormatStringToTempBuffer(&temp_window_name, NULL, "%s/%s_%08X", parent_window->Name, name, id); + else + ImFormatStringToTempBuffer(&temp_window_name, NULL, "%s/%08X", parent_window->Name, id); + + const float backup_border_size = g.Style.ChildBorderSize; + if ((child_flags & ImGuiChildFlags_Border) == 0) g.Style.ChildBorderSize = 0.0f; + + const bool ret = Begin(temp_window_name, NULL, window_flags); + + g.Style.ChildBorderSize = backup_border_size; + if (child_flags & ImGuiChildFlags_FrameStyle) + { + PopStyleVar(3); + PopStyleColor(); + } + + ImGuiWindow* child_window = g.CurrentWindow; + child_window->ChildId = id; + + if (child_window->BeginCount == 1) parent_window->DC.CursorPos = child_window->Pos; + + const ImGuiID temp_id_for_activation = ImHashStr("##Child", 0, id); + if (g.ActiveId == temp_id_for_activation) ClearActiveID(); + if (g.NavActivateId == id && !(window_flags & ImGuiWindowFlags_NavFlattened) && (child_window->DC.NavLayersActiveMask != 0 || child_window->DC.NavWindowHasScrollY)) + { + FocusWindow(child_window); + NavInitWindow(child_window, false); + SetActiveID(temp_id_for_activation, child_window); + g.ActiveIdSource = g.NavInputSource; + } + return ret; + } + + void edited::EndChild() + { + ImGuiContext& g = *GImGui; + ImGuiWindow* child_window = g.CurrentWindow; + PopStyleVar(2); + IM_ASSERT(g.WithinEndChild == false); + IM_ASSERT(child_window->Flags & ImGuiWindowFlags_ChildWindow); + + g.WithinEndChild = true; + ImVec2 child_size = child_window->Size; + End(); + if (child_window->BeginCount == 1) + { + ImGuiWindow* parent_window = g.CurrentWindow; + ImRect bb(parent_window->DC.CursorPos, parent_window->DC.CursorPos + child_size); + ItemSize(child_size); + if ((child_window->DC.NavLayersActiveMask != 0 || child_window->DC.NavWindowHasScrollY) && !(child_window->Flags & ImGuiWindowFlags_NavFlattened)) + { + ItemAdd(bb, child_window->ChildId); + RenderNavHighlight(bb, child_window->ChildId); + + if (child_window->DC.NavLayersActiveMask == 0 && child_window == g.NavWindow) RenderNavHighlight(ImRect(bb.Min - ImVec2(2, 2), bb.Max + ImVec2(2, 2)), g.NavId, ImGuiNavHighlightFlags_TypeThin); + } + else + { + ItemAdd(bb, 0); + + if (child_window->Flags & ImGuiWindowFlags_NavFlattened) parent_window->DC.NavLayersActiveMaskNext |= child_window->DC.NavLayersActiveMaskNext; + } + if (g.HoveredWindow == child_window) g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HoveredWindow; + } + g.WithinEndChild = false; + g.LogLinePosY = -FLT_MAX; + } + + struct check_state + { + ImVec4 background, text; + float alpha, mark_pos; + }; + + bool edited::Checkbox(const char* label, const char* description, bool* v) + { + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + const float w = GetContentRegionMax().x - style.WindowPadding.x; + const float square_sz = 20.f; + const ImVec2 pos = window->DC.CursorPos; + const ImRect rect(pos, pos + ImVec2(w, 50)); + + ItemSize(rect, 0.f); + if (!ItemAdd(rect, id)) return false; + + bool hovered, held, pressed = ButtonBehavior(rect, id, &hovered, &held); + if (IsItemClicked()) + { + *v = !(*v); + MarkItemEdited(id); + } + + static std::map anim; + check_state& state = anim[id]; + + state.background = ImLerp(state.background, *v ? c::accent : c::elements::background_widget, g.IO.DeltaTime * 6.f); + state.alpha = ImLerp(state.alpha, *v ? 1.f : 0.f, g.IO.DeltaTime * 6.f); + + state.mark_pos = ImClamp(state.mark_pos + (35.f * g.IO.DeltaTime * (*v ? -3.f : 3.f)), 0.f, 35.f); + + const ImRect check_bb(pos, pos + ImVec2(square_sz, square_sz)); + + GetWindowDrawList()->AddRectFilled(rect.Min, rect.Max, GetColorU32(c::elements::background), c::elements::rounding); + + RenderTextColor(font::lexend_regular, rect.Min + ImVec2(10, 0), rect.Max, GetColorU32(c::elements::text), description, ImVec2(0.0, 0.8)); + + GetWindowDrawList()->AddRectFilled(rect.Min + ImVec2(w - 40, 0), rect.Max, GetColorU32(c::elements::background), c::elements::rounding); + GetWindowDrawList()->AddRectFilledMultiColor(rect.Min, rect.Max - ImVec2(20, 0), VGetColorU32(c::elements::background, 0.f), VGetColorU32(c::elements::background, 1.f), VGetColorU32(c::elements::background, 1.f), VGetColorU32(c::elements::background, 0.f)); + + GetWindowDrawList()->AddRect(rect.Max - ImVec2(37, 37), rect.Max - ImVec2(13, 13), GetColorU32(state.background), 2.f); + GetWindowDrawList()->AddRectFilled(rect.Max - ImVec2(37, 37), rect.Max - ImVec2(13, 13), VGetColorU32(state.background, 0.5f), 2.f); + + PushClipRect(rect.Max - ImVec2(37, 37), rect.Max - ImVec2(13, 13), true); + RenderCheckMark(GetWindowDrawList(), rect.Max - ImVec2(35 - (square_sz / 2) / 2, 35 - (square_sz / 2 + state.mark_pos) / 2), VGetColorU32(c::elements::mark, state.alpha), square_sz / 2); + PopClipRect(); + + RenderTextColor(font::lexend_bold, rect.Min + ImVec2(10, 0), rect.Max, GetColorU32(c::elements::text_active), label, ImVec2(0.0, 0.2)); + + return pressed; + } + + + bool edited::Button(const char* label, const ImVec2& size_arg, ImGuiButtonFlags flags) + { + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + + ImVec2 pos = window->DC.CursorPos; + if ((flags & ImGuiButtonFlags_AlignTextBaseLine) && style.FramePadding.y < window->DC.CurrLineTextBaseOffset) // Try to vertically align buttons that are smaller/have no padding so that text baseline matches (bit hacky, since it shouldn't be a flag) + pos.y += window->DC.CurrLineTextBaseOffset - style.FramePadding.y; + ImVec2 size = CalcItemSize(size_arg, label_size.x + style.FramePadding.x * 2.0f, label_size.y + style.FramePadding.y * 2.0f); + + const ImRect bb(pos, pos + size); + ItemSize(size, style.FramePadding.y); + if (!ItemAdd(bb, id)) + return false; + + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held, flags); + + // Render + const ImU32 col = GetColorU32((held && hovered) ? VGetColorU32(c::background::filling, 0.7f) : hovered ? VGetColorU32(c::background::filling, 1.f) : GetColorU32(c::background::filling)); + RenderNavHighlight(bb, id); + RenderFrame(bb.Min, bb.Max, col, true, 4.f); + + // Outline + GetWindowDrawList()->AddRect(bb.Min, bb.Max, GetColorU32(c::accent), 2.f, ImDrawFlags_RoundCornersAll, 1.f); + + if (g.LogEnabled) + LogSetNextTextDecoration("[", "]"); + RenderTextClipped(bb.Min + style.FramePadding, bb.Max - style.FramePadding, label, NULL, &label_size, style.ButtonTextAlign, &bb); + + // Automatically close popups + //if (pressed && !(flags & ImGuiButtonFlags_DontClosePopups) && (window->Flags & ImGuiWindowFlags_Popup)) + // CloseCurrentPopup(); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags); + return pressed; + } + + struct slider_state + { + ImVec4 text; + float slow, blick; + }; + + bool SliderScalar(const char* label, const char* description, ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max, const char* format, ImGuiSliderFlags flags) + { + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + const float w = GetContentRegionMax().x - style.WindowPadding.x; + + const ImVec2 label_size = CalcTextSize(label, NULL, true); + const ImRect frame_bb(window->DC.CursorPos + ImVec2(180, 29), window->DC.CursorPos + ImVec2(w - 10, 39)); + const ImRect rect(window->DC.CursorPos, window->DC.CursorPos + ImVec2(w, 50)); + + const bool temp_input_allowed = (flags & ImGuiSliderFlags_NoInput) == 0; + ItemSize(rect, 0.f); + if (!ItemAdd(frame_bb, id, &frame_bb)) return false; + + if (format == NULL) format = DataTypeGetInfo(data_type)->PrintFmt; + + bool hovered = ItemHoverable(frame_bb, id, g.LastItemData.InFlags), held, pressed = ButtonBehavior(frame_bb, id, &hovered, &held, NULL); + bool temp_input_is_active = temp_input_allowed && TempInputIsActive(id); + + static std::map anim; + slider_state& state = anim[id]; + + GetWindowDrawList()->AddRectFilled(rect.Min, rect.Max, GetColorU32(c::elements::background), c::elements::rounding); + + RenderTextColor(font::lexend_regular, rect.Min + ImVec2(10, 0), rect.Max, GetColorU32(c::elements::text), description, ImVec2(0.0, 0.8)); + + GetWindowDrawList()->AddRectFilled(rect.Min + ImVec2(w - 140, 0), rect.Max, GetColorU32(c::elements::background), c::elements::rounding); + GetWindowDrawList()->AddRectFilledMultiColor(rect.Min, rect.Max - ImVec2(120, 0), VGetColorU32(c::elements::background, 0.f), VGetColorU32(c::elements::background, 1.f), VGetColorU32(c::elements::background, 1.f), VGetColorU32(c::elements::background, 0.f)); + + GetWindowDrawList()->AddRectFilled(frame_bb.Min, frame_bb.Max, GetColorU32(c::elements::background_widget), 2.f); + + ImRect grab_bb; + const bool value_changed = SliderBehavior(ImRect(frame_bb.Min - ImVec2(0, 0), frame_bb.Max + ImVec2(6, 0)), id, data_type, p_data, p_min, p_max, format, flags, &grab_bb); + + if (value_changed) MarkItemEdited(id); + + state.slow = ImLerp(state.slow, grab_bb.Min.x - (frame_bb.Min.x + 5), g.IO.DeltaTime * 25.f); + GetWindowDrawList()->AddRectFilled(frame_bb.Min, ImVec2(frame_bb.Min.x + 9, grab_bb.Max.y), VGetColorU32(c::accent, 1.f), 2.f); + + char value_buf[64]; + const char* value_buf_end = value_buf + DataTypeFormatString(value_buf, IM_ARRAYSIZE(value_buf), data_type, p_data, format); + + RenderTextColor(font::lexend_bold, rect.Min + ImVec2(10, 0), rect.Max, GetColorU32(c::elements::text_active), label, ImVec2(0.0, 0.2)); + RenderTextColor(font::lexend_bold, rect.Min + ImVec2(0, 7), rect.Max - ImVec2(15, 10), GetColorU32(c::elements::text_active), value_buf, ImVec2(1.0, 0.0f)); + + return value_changed; + } + + bool SliderFloat(const char* label, const char* description, float* v, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) + { + return SliderScalar(label, description, ImGuiDataType_Float, v, &v_min, &v_max, format, flags); + } + + bool SliderInt(const char* label, const char* description, int* v, int v_min, int v_max, const char* format, ImGuiSliderFlags flags) + { + return SliderScalar(label, description, ImGuiDataType_S32, v, &v_min, &v_max, format, flags); + } + + + struct begin_state + { + ImVec4 background, text, outline; + float open, alpha, combo_size = 0.f, shadow_opticaly; + bool opened_combo = false, hovered = false; + float arrow_roll; + }; + + static float CalcMaxPopupHeightFromItemCount(int items_count) + { + ImGuiContext& g = *GImGui; + if (items_count <= 0) + return FLT_MAX; + return (g.FontSize + g.Style.ItemSpacing.y) * items_count - g.Style.ItemSpacing.y + (g.Style.WindowPadding.y * 2); + } + + int rotation_start_index; + void ImRotateStart() + { + rotation_start_index = ImGui::GetWindowDrawList()->VtxBuffer.Size; + } + + ImVec2 ImRotationCenter() + { + ImVec2 l(FLT_MAX, FLT_MAX), u(-FLT_MAX, -FLT_MAX); + + const auto& buf = ImGui::GetWindowDrawList()->VtxBuffer; + for (int i = rotation_start_index; i < buf.Size; i++) + l = ImMin(l, buf[i].pos), u = ImMax(u, buf[i].pos); + + return ImVec2((l.x + u.x) / 2, (l.y + u.y) / 2); + } + + void ImRotateEnd(float rad, ImVec2 center = ImRotationCenter()) + { + float s = sin(rad), c = cos(rad); + center = ImRotate(center, s, c) - center; + + auto& buf = ImGui::GetWindowDrawList()->VtxBuffer; + for (int i = rotation_start_index; i < buf.Size; i++) + buf[i].pos = ImRotate(buf[i].pos, s, c) - center; + } + + static const char* Items_ArrayGetter(void* data, int idx) + { + const char* const* items = (const char* const*)data; + return items[idx]; + } + + bool BeginCombo(const char* label, const char* description, const char* preview_value, int val, bool multi, ImGuiComboFlags flags) + { + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + + g.NextWindowData.ClearFlags(); + if (window->SkipItems) return false; + + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + const float w = ((GetContentRegionMax().x - style.WindowPadding.x)); + const float y_size = 50; + + const ImRect bb(window->DC.CursorPos + ImVec2(0, 0), window->DC.CursorPos + ImVec2(w, 50)); + const ImRect rect(window->DC.CursorPos + ImVec2(180, (50 - 30) / 2), window->DC.CursorPos + ImVec2(w - 10, (50 + 30) / 2)); + + const ImRect total_bb(bb.Min, bb.Max); + ItemSize(bb, 0.f); + + if (!ItemAdd(bb, id, &bb)) return false; + + bool hovered, held, pressed = ButtonBehavior(bb, id, &hovered, &held); + + static std::map anim; + begin_state& state = anim[id]; + + if (hovered && g.IO.MouseClicked[0] || state.opened_combo && g.IO.MouseClicked[0] && !state.hovered) state.opened_combo = !state.opened_combo; + + state.arrow_roll = ImLerp(state.arrow_roll, state.opened_combo ? -1.f : 1.f, g.IO.DeltaTime * 6.f); + state.text = ImLerp(state.text, state.opened_combo ? c::elements::text_active : hovered ? c::elements::text_hov : c::elements::text, g.IO.DeltaTime * 6.f); + state.combo_size = ImLerp(state.combo_size, state.opened_combo ? (val * 33) + 17 : 0.f, g.IO.DeltaTime * 12.f); + + GetWindowDrawList()->AddRectFilled(bb.Min, bb.Max, GetColorU32(c::elements::background), c::elements::rounding); + + RenderTextColor(font::lexend_regular, bb.Min + ImVec2(10, 0), bb.Max, GetColorU32(c::elements::text), description, ImVec2(0.0, 0.8)); + + GetWindowDrawList()->AddRectFilled(bb.Min + ImVec2(w - 140, 0), bb.Max, GetColorU32(c::elements::background), c::elements::rounding); + GetWindowDrawList()->AddRectFilledMultiColor(bb.Min, bb.Max - ImVec2(120, 0), VGetColorU32(c::elements::background, 0.f), VGetColorU32(c::elements::background, 1.f), VGetColorU32(c::elements::background, 1.f), VGetColorU32(c::elements::background, 0.f)); + + GetWindowDrawList()->AddRectFilled(rect.Min, rect.Max, GetColorU32(c::elements::background_widget), c::elements::rounding); + + RenderTextColor(font::lexend_bold, rect.Min + ImVec2(10, 0), rect.Max, GetColorU32(c::elements::text_active), preview_value, ImVec2(0.0, 0.5)); + GetWindowDrawList()->AddRectFilled(rect.Max - ImVec2(30, 30), rect.Max, GetColorU32(c::elements::background_widget), 2.f); + + GetWindowDrawList()->AddRectFilledMultiColor(rect.Min, rect.Max - ImVec2(30, 0), VGetColorU32(c::elements::background_widget, 0.f), VGetColorU32(c::elements::background_widget, 1.f), VGetColorU32(c::elements::background_widget, 1.f), VGetColorU32(c::elements::background_widget, 0.f)); + + RenderTextColor(font::icomoon_widget, rect.Min, rect.Max - ImVec2(7, 0), GetColorU32(c::accent), "z", ImVec2(1.0, 0.5)); + RenderTextColor(font::lexend_bold, bb.Min + ImVec2(10, 0), bb.Max, GetColorU32(c::elements::text_active), label, ImVec2(0.0, 0.2)); + + GetWindowDrawList()->AddRectFilled(rect.Max - ImVec2(y_size, y_size), rect.Max, GetColorU32(state.background), c::elements::rounding); + + if (!IsRectVisible(rect.Min, rect.Max + ImVec2(0, 2))) + { + state.opened_combo = false; + state.combo_size = 0.f; + } + + if (!state.opened_combo && state.combo_size < 2.f) return false; + + ImGui::SetNextWindowPos(ImVec2(rect.Min.x, rect.Max.y + 5)); + ImGui::SetNextWindowSize(ImVec2(rect.GetWidth(), state.combo_size)); + + ImGuiWindowFlags window_flags = ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoFocusOnAppearing | ImGuiWindowFlags_NoScrollWithMouse; + + PushStyleColor(ImGuiCol_WindowBg, c::elements::background); + PushStyleColor(ImGuiCol_Border, c::elements::background_widget); + PushStyleVar(ImGuiStyleVar_WindowRounding, c::elements::rounding); + PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(15, 15)); + PushStyleVar(ImGuiStyleVar_WindowBorderSize, 1.f); + + bool ret = Begin(label, NULL, window_flags); + + PopStyleVar(3); + PopStyleColor(2); + + state.hovered = IsWindowHovered(); + + if (multi && state.hovered && g.IO.MouseClicked[0]) state.opened_combo = false; + + return true; + } + + void EndCombo() + { + End(); + } + + bool MultiCombo(const char* szLabel, unsigned int* pFlags, const char* const* arrItems, int nItemsCount) + { + ImGuiContext& g = *GImGui; + ImGuiWindow* pWindow = g.CurrentWindow; + + if (pWindow->SkipItems) + return false; + + const ImGuiStyle& style = g.Style; + const ImVec2 vecLabelSize = CalcTextSize(szLabel, nullptr, true); + const float flActiveWidth = CalcItemWidth() - (vecLabelSize.x > 0.0f ? style.ItemInnerSpacing.x + GetFrameHeight() : 0.0f); + + std::vector vecActiveItems = {}; + + // collect active items + for (int i = 0; i < nItemsCount; i++) + { + if (*pFlags & (1 << i)) + vecActiveItems.push_back(arrItems[i]); + } + + // fuck it, stl still haven't boost::join, fmt::join replacement + std::string strBuffer = {}; + for (std::size_t i = 0U; i < vecActiveItems.size(); i++) + { + strBuffer.append(vecActiveItems[i]); + + if (i < vecActiveItems.size() - 1U) + strBuffer.append(", "); + } + + if (strBuffer.empty()) + strBuffer.assign("none"); + else + { + const char* szWrapPosition = g.Font->CalcWordWrapPositionA(GetCurrentWindow()->FontWindowScale, strBuffer.data(), strBuffer.data() + strBuffer.length(), flActiveWidth - style.FramePadding.x * 2.0f); + const std::size_t nWrapLength = szWrapPosition - strBuffer.data(); + + if (nWrapLength > 0U && nWrapLength < strBuffer.length()) + { + strBuffer.resize(nWrapLength); + strBuffer.append("..."); + } + } + + bool bValueChanged = false; + if (BeginCombo(szLabel, "", strBuffer.c_str(), nItemsCount, NULL, NULL)) + { + for (int i = 0; i < nItemsCount; i++) + { + const int nCurrentFlag = (1 << i); + if (Selectable(arrItems[i], (*pFlags & nCurrentFlag), ImGuiSelectableFlags_DontClosePopups)) + { + // flip bitflag + *pFlags ^= nCurrentFlag; + bValueChanged = true; + } + } + + EndCombo(); + } + + return bValueChanged; + } + + bool BeginComboPreview() + { + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiComboPreviewData* preview_data = &g.ComboPreviewData; + + if (window->SkipItems || !(g.LastItemData.StatusFlags & ImGuiItemStatusFlags_Visible)) return false; + + IM_ASSERT(g.LastItemData.Rect.Min.x == preview_data->PreviewRect.Min.x && g.LastItemData.Rect.Min.y == preview_data->PreviewRect.Min.y); + + if (!window->ClipRect.Overlaps(preview_data->PreviewRect)) return false; + + preview_data->BackupCursorPos = window->DC.CursorPos; + preview_data->BackupCursorMaxPos = window->DC.CursorMaxPos; + preview_data->BackupCursorPosPrevLine = window->DC.CursorPosPrevLine; + preview_data->BackupPrevLineTextBaseOffset = window->DC.PrevLineTextBaseOffset; + preview_data->BackupLayout = window->DC.LayoutType; + window->DC.CursorPos = preview_data->PreviewRect.Min + g.Style.FramePadding; + window->DC.CursorMaxPos = window->DC.CursorPos; + window->DC.LayoutType = ImGuiLayoutType_Horizontal; + window->DC.IsSameLine = false; + PushClipRect(preview_data->PreviewRect.Min, preview_data->PreviewRect.Max, true); + + return true; + } + + void EndComboPreview() + { + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiComboPreviewData* preview_data = &g.ComboPreviewData; + + ImDrawList* draw_list = window->DrawList; + if (window->DC.CursorMaxPos.x < preview_data->PreviewRect.Max.x && window->DC.CursorMaxPos.y < preview_data->PreviewRect.Max.y) + if (draw_list->CmdBuffer.Size > 1) + { + draw_list->_CmdHeader.ClipRect = draw_list->CmdBuffer[draw_list->CmdBuffer.Size - 1].ClipRect = draw_list->CmdBuffer[draw_list->CmdBuffer.Size - 2].ClipRect; + draw_list->_TryMergeDrawCmds(); + } + PopClipRect(); + window->DC.CursorPos = preview_data->BackupCursorPos; + window->DC.CursorMaxPos = ImMax(window->DC.CursorMaxPos, preview_data->BackupCursorMaxPos); + window->DC.CursorPosPrevLine = preview_data->BackupCursorPosPrevLine; + window->DC.PrevLineTextBaseOffset = preview_data->BackupPrevLineTextBaseOffset; + window->DC.LayoutType = preview_data->BackupLayout; + window->DC.IsSameLine = false; + preview_data->PreviewRect = ImRect(); + } + + static const char* Items_SingleStringGetter(void* data, int idx) + { + const char* items_separated_by_zeros = (const char*)data; + int items_count = 0; + const char* p = items_separated_by_zeros; + while (*p) + { + if (idx == items_count) + break; + p += strlen(p) + 1; + items_count++; + } + return *p ? p : NULL; + } + + bool Combo(const char* label, const char* description, int* current_item, const char* (*getter)(void* user_data, int idx), void* user_data, int items_count, int popup_max_height_in_items) + { + ImGuiContext& g = *GImGui; + + const char* preview_value = NULL; + if (*current_item >= 0 && *current_item < items_count) + preview_value = getter(user_data, *current_item); + + if (popup_max_height_in_items != -1 && !(g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSizeConstraint)) + SetNextWindowSizeConstraints(ImVec2(0, 0), ImVec2(FLT_MAX, CalcMaxPopupHeightFromItemCount(popup_max_height_in_items))); + + if (!BeginCombo(label, description, preview_value, items_count, ImGuiComboFlags_None, NULL)) return false; + + bool value_changed = false; + PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(15, 15)); + for (int i = 0; i < items_count; i++) + { + const char* item_text = getter(user_data, i); + if (item_text == NULL) + item_text = "*Unknown item*"; + + PushID(i); + const bool item_selected = (i == *current_item); + if (edited::Selectable(item_text, item_selected) && *current_item != i) + { + value_changed = true; + *current_item = i; + } + if (item_selected) + SetItemDefaultFocus(); + PopID(); + } + PopStyleVar(); + + EndCombo(); + + if (value_changed) + MarkItemEdited(g.LastItemData.ID); + + return value_changed; + } + + bool Combo(const char* label, const char* description, int* current_item, const char* const items[], int items_count, int height_in_items) + { + const bool value_changed = Combo(label, description, current_item, Items_ArrayGetter, (void*)items, items_count, height_in_items); + return value_changed; + } + + bool Combo(const char* label, const char* description, int* current_item, const char* items_separated_by_zeros, int height_in_items) + { + int items_count = 0; + const char* p = items_separated_by_zeros; + while (*p) + { + p += strlen(p) + 1; + items_count++; + } + bool value_changed = Combo(label, description, current_item, Items_SingleStringGetter, (void*)items_separated_by_zeros, items_count, height_in_items); + return value_changed; + } + + struct select_state + { + ImVec4 text; + float opticaly; + }; + + bool Selectable(const char* label, bool selected, ImGuiSelectableFlags flags, const ImVec2& size_arg) + { + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + + ImGuiID id = window->GetID(label); + ImVec2 label_size = CalcTextSize(label, NULL, true); + ImVec2 size(size_arg.x != 0.0f ? size_arg.x : label_size.x, size_arg.y != 0.0f ? size_arg.y : label_size.y); + ImVec2 pos = window->DC.CursorPos; + pos.y += window->DC.CurrLineTextBaseOffset; + ItemSize(size, 0.0f); + + const bool span_all_columns = (flags & ImGuiSelectableFlags_SpanAllColumns) != 0; + const float min_x = span_all_columns ? window->ParentWorkRect.Min.x : pos.x; + const float max_x = span_all_columns ? window->ParentWorkRect.Max.x : window->WorkRect.Max.x; + if (size_arg.x == 0.0f || (flags & ImGuiSelectableFlags_SpanAvailWidth)) size.x = ImMax(label_size.x, max_x - min_x); + + const ImVec2 text_min = pos; + const ImVec2 text_max(min_x + size.x, pos.y + size.y); + + ImRect bb(min_x, pos.y, text_max.x, text_max.y); + if ((flags & ImGuiSelectableFlags_NoPadWithHalfSpacing) == 0) + { + const float spacing_x = span_all_columns ? 0.0f : style.ItemSpacing.x; + const float spacing_y = style.ItemSpacing.y; + const float spacing_L = IM_FLOOR(spacing_x * 0.50f); + const float spacing_U = IM_FLOOR(spacing_y * 0.50f); + bb.Min.x -= spacing_L; + bb.Min.y -= spacing_U; + bb.Max.x += (spacing_x - spacing_L); + bb.Max.y += (spacing_y - spacing_U); + } + + const float backup_clip_rect_min_x = window->ClipRect.Min.x; + const float backup_clip_rect_max_x = window->ClipRect.Max.x; + if (span_all_columns) + { + window->ClipRect.Min.x = window->ParentWorkRect.Min.x; + window->ClipRect.Max.x = window->ParentWorkRect.Max.x; + } + + const bool disabled_item = (flags & ImGuiSelectableFlags_Disabled) != 0; + const bool item_add = ItemAdd(bb, id, NULL, disabled_item ? ImGuiItemFlags_Disabled : ImGuiItemFlags_None); + if (span_all_columns) + { + window->ClipRect.Min.x = backup_clip_rect_min_x; + window->ClipRect.Max.x = backup_clip_rect_max_x; + } + + if (!item_add) return false; + + const bool disabled_global = (g.CurrentItemFlags & ImGuiItemFlags_Disabled) != 0; + if (disabled_item && !disabled_global) BeginDisabled(); + + if (span_all_columns && window->DC.CurrentColumns) PushColumnsBackground(); + else if (span_all_columns && g.CurrentTable) TablePushBackgroundChannel(); + + ImGuiButtonFlags button_flags = 0; + if (flags & ImGuiSelectableFlags_NoHoldingActiveID) { button_flags |= ImGuiButtonFlags_NoHoldingActiveId; } + if (flags & ImGuiSelectableFlags_NoSetKeyOwner) { button_flags |= ImGuiButtonFlags_NoSetKeyOwner; } + if (flags & ImGuiSelectableFlags_SelectOnClick) { button_flags |= ImGuiButtonFlags_PressedOnClick; } + if (flags & ImGuiSelectableFlags_SelectOnRelease) { button_flags |= ImGuiButtonFlags_PressedOnRelease; } + if (flags & ImGuiSelectableFlags_AllowDoubleClick) { button_flags |= ImGuiButtonFlags_PressedOnClickRelease | ImGuiButtonFlags_PressedOnDoubleClick; } + if ((flags & ImGuiSelectableFlags_AllowOverlap) || (g.LastItemData.InFlags & ImGuiItemFlags_AllowOverlap)) { button_flags |= ImGuiButtonFlags_AllowOverlap; } + + const bool was_selected = selected; + bool hovered, held, pressed = ButtonBehavior(bb, id, &hovered, &held, button_flags); + + if ((flags & ImGuiSelectableFlags_SelectOnNav) && g.NavJustMovedToId != 0 && g.NavJustMovedToFocusScopeId == g.CurrentFocusScopeId) + if (g.NavJustMovedToId == id) selected = pressed = true; + + // Update NavId when clicking or when Hovering (this doesn't happen on most widgets), so navigation can be resumed with gamepad/keyboard + if (pressed || (hovered && (flags & ImGuiSelectableFlags_SetNavIdOnHover))) + { + if (!g.NavDisableMouseHover && g.NavWindow == window && g.NavLayer == window->DC.NavLayerCurrent) + { + SetNavID(id, window->DC.NavLayerCurrent, g.CurrentFocusScopeId, WindowRectAbsToRel(window, bb)); // (bb == NavRect) + g.NavDisableHighlight = true; + } + } + if (pressed) MarkItemEdited(id); + + if (selected != was_selected) g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_ToggledSelection; + + + if (g.NavId == id) RenderNavHighlight(bb, id, ImGuiNavHighlightFlags_TypeThin | ImGuiNavHighlightFlags_NoRounding); + + if (span_all_columns && window->DC.CurrentColumns) PopColumnsBackground(); + else if (span_all_columns && g.CurrentTable) TablePopBackgroundChannel(); + + static std::map anim; + select_state& state = anim[id]; + + state.text = ImLerp(state.text, selected ? c::accent : c::elements::text, g.IO.DeltaTime * 6.f); + state.opticaly = ImLerp(state.opticaly, selected ? 1.f : 0.f, g.IO.DeltaTime * 6.f); + + GetWindowDrawList()->AddRectFilled(bb.Min, bb.Max + ImVec2(0, 1), VGetColorU32(c::elements::background_widget, state.opticaly), 2.f); + + RenderTextColor(font::lexend_bold, text_min + ImVec2(1, 1), text_max, GetColorU32(state.text), label, ImVec2(0.f, 0.5f)); + + if (pressed && (window->Flags & ImGuiWindowFlags_Popup) && !(flags & ImGuiSelectableFlags_DontClosePopups) && !(g.LastItemData.InFlags & ImGuiItemFlags_SelectableDontClosePopup)) CloseCurrentPopup(); + + if (disabled_item && !disabled_global) EndDisabled(); + + return pressed; + } + + bool Selectable(const char* label, bool* p_selected, ImGuiSelectableFlags flags, const ImVec2& size_arg) + { + if (Selectable(label, *p_selected, flags, size_arg)) + { + *p_selected = !*p_selected; + return true; + } + return false; + } + + int ParseFormatPrecision(const char* fmt, int default_precision) + { + int precision = default_precision; + while ((fmt = strchr(fmt, '%')) != NULL) + { + fmt++; + if (fmt[0] == '%') { fmt++; continue; } // Ignore "%%" + while (*fmt >= '0' && *fmt <= '9') + fmt++; + if (*fmt == '.') + { + precision = atoi(fmt + 1); + if (precision < 0 || precision > 10) + precision = default_precision; + } + break; + } + return precision; + } + + float RoundScalar(float value, int decimal_precision) + { + static const float min_steps[10] = { 1.0f, 0.1f, 0.01f, 0.001f, 0.0001f, 0.00001f, 0.000001f, 0.0000001f, 0.00000001f, 0.000000001f }; + float min_step = (decimal_precision >= 0 && decimal_precision < 10) ? min_steps[decimal_precision] : powf(10.0f, (float)-decimal_precision); + bool negative = value < 0.0f; + value = fabsf(value); + float remainder = fmodf(value, min_step); + if (remainder <= min_step * 0.5f) + value -= remainder; + else + value += (min_step - remainder); + return negative ? -value : value; + } + + static inline float SliderBehaviorCalcRatioFromValue(float v, float v_min, float v_max, float power, float linear_zero_pos) + { + if (v_min == v_max) + return 0.0f; + + const bool is_non_linear = (power < 1.0f - 0.00001f) || (power > 1.0f + 0.00001f); + const float v_clamped = (v_min < v_max) ? ImClamp(v, v_min, v_max) : ImClamp(v, v_max, v_min); + if (is_non_linear) + { + if (v_clamped < 0.0f) + { + const float f = 1.0f - (v_clamped - v_min) / (ImMin(0.0f, v_max) - v_min); + return (1.0f - powf(f, 1.0f / power)) * linear_zero_pos; + } + else + { + const float f = (v_clamped - ImMax(0.0f, v_min)) / (v_max - ImMax(0.0f, v_min)); + return linear_zero_pos + powf(f, 1.0f / power) * (1.0f - linear_zero_pos); + } + } + + return (v_clamped - v_min) / (v_max - v_min); + } + + struct range_state + { + ImVec4 text; + float slow1, slow2, alpha_text, text_offset; + }; + + bool RangeSliderBehavior(const ImRect& frame_bb, ImGuiID id, float* v1, float* v2, float v_min, float v_max, float power, int decimal_precision, ImGuiSliderFlags flags) + { + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + const ImGuiStyle& style = g.Style; + + const bool is_non_linear = (power < 1.0f - 0.00001f) || (power > 1.0f + 0.00001f); + const bool is_horizontal = (flags & ImGuiSliderFlags_Vertical) == 0; + + const float grab_padding = 2.0f; + const float slider_sz = is_horizontal ? (frame_bb.GetWidth() - grab_padding * 2.0f) : (frame_bb.GetHeight() - grab_padding * 2.0f); + float grab_sz; + if (decimal_precision > 0) + grab_sz = ImMin(style.GrabMinSize, slider_sz); + else + grab_sz = ImMin(ImMax(1.0f * (slider_sz / ((v_min < v_max ? v_max - v_min : v_min - v_max) + 1.0f)), style.GrabMinSize), slider_sz); + const float slider_usable_sz = slider_sz - grab_sz; + const float slider_usable_pos_min = (is_horizontal ? frame_bb.Min.x : frame_bb.Min.y) + grab_padding + grab_sz * 0.5f; + const float slider_usable_pos_max = (is_horizontal ? frame_bb.Max.x : frame_bb.Max.y) - grab_padding - grab_sz * 0.5f; + + float linear_zero_pos = 0.0f; + if (v_min * v_max < 0.0f) + { + const float linear_dist_min_to_0 = powf(fabsf(0.0f - v_min), 1.0f / power); + const float linear_dist_max_to_0 = powf(fabsf(v_max - 0.0f), 1.0f / power); + linear_zero_pos = linear_dist_min_to_0 / (linear_dist_min_to_0 + linear_dist_max_to_0); + } + else + { + linear_zero_pos = v_min < 0.0f ? 1.0f : 0.0f; + } + + window->DrawList->AddRectFilled(frame_bb.Min, frame_bb.Max, GetColorU32(c::elements::background_widget), 30.f); + + bool value_changed = false; + if (g.ActiveId == id) + { + if (g.IO.MouseDown[0]) + { + const float mouse_abs_pos = is_horizontal ? g.IO.MousePos.x : g.IO.MousePos.y; + float clicked_t = (slider_usable_sz > 0.0f) ? ImClamp((mouse_abs_pos - slider_usable_pos_min) / slider_usable_sz, 0.0f, 1.0f) : 0.0f; + if (!is_horizontal) + clicked_t = 1.0f - clicked_t; + + float new_value; + if (is_non_linear) + { + if (clicked_t < linear_zero_pos) + { + float a = 1.0f - (clicked_t / linear_zero_pos); + a = powf(a, power); + new_value = ImLerp(ImMin(v_max, 0.0f), v_min, a); + } + else + { + float a; + if (fabsf(linear_zero_pos - 1.0f) > 1.e-6f) + a = (clicked_t - linear_zero_pos) / (1.0f - linear_zero_pos); + else + a = clicked_t; + a = powf(a, power); + new_value = ImLerp(ImMax(v_min, 0.0f), v_max, a); + } + } + else + { + new_value = ImLerp(v_min, v_max, clicked_t); + } + new_value = RoundScalar(new_value, decimal_precision); + if (*v1 != new_value || *v2 != new_value) + { + if (fabsf(*v1 - new_value) < fabsf(*v2 - new_value)) + { + *v1 = new_value; + } + else + { + *v2 = new_value; + } + value_changed = true; + } + } + else + { + SetActiveID(0, NULL); + } + } + + float grab_t = SliderBehaviorCalcRatioFromValue(*v1, v_min, v_max, power, linear_zero_pos); + + static std::map anim; + range_state& state = anim[id]; + + ImRect grab_bb2, grab_bb1; + + if (!is_horizontal) grab_t = 1.0f - grab_t; + float grab_pos = ImLerp(slider_usable_pos_min, slider_usable_pos_max, grab_t); + if (is_horizontal) + grab_bb1 = ImRect(ImVec2(grab_pos - grab_sz * 0.5f, frame_bb.Min.y + grab_padding), ImVec2(grab_pos + grab_sz * 0.5f, frame_bb.Max.y - grab_padding)); + else + grab_bb1 = ImRect(ImVec2(frame_bb.Min.x + grab_padding, grab_pos - grab_sz * 0.5f), ImVec2(frame_bb.Max.x - grab_padding, grab_pos + grab_sz * 0.5f)); + + state.slow1 = ImLerp(state.slow1, grab_bb1.Min.x - frame_bb.Min.x - 1, g.IO.DeltaTime * 25.f); + grab_t = SliderBehaviorCalcRatioFromValue(*v2, v_min, v_max, power, linear_zero_pos); + if (!is_horizontal) grab_t = 1.0f - grab_t; + + grab_pos = ImLerp(slider_usable_pos_min, slider_usable_pos_max, grab_t); + + if (is_horizontal) + grab_bb2 = ImRect(ImVec2(grab_pos - grab_sz * 0.5f, frame_bb.Min.y + grab_padding), ImVec2(grab_pos + grab_sz * 0.5f, frame_bb.Max.y - grab_padding)); + else + grab_bb2 = ImRect(ImVec2(frame_bb.Min.x + grab_padding, grab_pos - grab_sz * 0.5f), ImVec2(frame_bb.Max.x - grab_padding, grab_pos + grab_sz * 0.5f)); + + state.slow2 = ImLerp(state.slow2, grab_bb2.Min.x - frame_bb.Min.x + 14, g.IO.DeltaTime * 25.f); + + window->DrawList->AddRectFilled(ImVec2(frame_bb.Min.x + state.slow1, frame_bb.Min.y), ImVec2(frame_bb.Min.x + state.slow2, frame_bb.Max.y), GetColorU32(c::accent), 2.f); + + return value_changed; + } + + bool RangeSliderFloat(const char* label, const char* description, float* v1, float* v2, float v_min, float v_max, const char* display_format, float power) + { + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems)return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + const float w = GetContentRegionMax().x - style.WindowPadding.x; + const float y_size = 50; + + const ImVec2 label_size = CalcTextSize(label, NULL, true); + + const ImRect rect(window->DC.CursorPos, window->DC.CursorPos + ImVec2(w, y_size)); + const ImRect slider_bb(window->DC.CursorPos + ImVec2(180, 31), window->DC.CursorPos + ImVec2(w - 10, 39)); + + if (!ItemAdd(slider_bb, id)) + { + ItemSize(ImRect(rect.Min, rect.Max)); + return false; + } + + const bool hovered = ItemHoverable(slider_bb, id, g.LastItemData.InFlags); + + if (hovered) SetHoveredID(id); + + if (!display_format) display_format = "(%.3f, %.3f)"; + + ItemSize(ImRect(rect.Min, rect.Max)); + + int decimal_precision = ParseFormatPrecision(display_format, 3); + + if (hovered && g.IO.MouseClicked[0]) + { + SetActiveID(id, window); + FocusWindow(window); + } + + static std::map anim; + range_state& state = anim[id]; + + state.text = ImLerp(state.text, IsItemActive() ? c::elements::text_active : hovered ? c::elements::text_hov : c::elements::text, g.IO.DeltaTime * 8.f); + state.alpha_text = ImLerp(state.alpha_text, IsItemActive() ? 1.f : 0.f, g.IO.DeltaTime * 15.f); + + GetWindowDrawList()->AddRectFilled(rect.Min, rect.Max, GetColorU32(c::elements::background), c::elements::rounding); + + RenderTextColor(font::lexend_regular, rect.Min + ImVec2(10, 0), rect.Max, GetColorU32(c::elements::text), description, ImVec2(0.0, 0.8)); + auto walpha = GetColorU32(ImVec4(c::elements::background.x, c::elements::background.y, c::elements::background.z, 1.f)); + auto nalpha = GetColorU32(ImVec4(c::elements::background.x, c::elements::background.y, c::elements::background.z, 0.f)); + GetWindowDrawList()->AddRectFilled(rect.Min + ImVec2(w - 140, 0), rect.Max, GetColorU32(c::elements::background), c::elements::rounding); + GetWindowDrawList()->AddRectFilledMultiColor(rect.Min, rect.Max - ImVec2(120, 0),nalpha, walpha, walpha, nalpha); + + + const bool value_changed = RangeSliderBehavior(slider_bb, id, v1, v2, v_min, v_max, power, decimal_precision); + + char value_buf[64]; + const char* value_buf_end = value_buf + ImFormatString(value_buf, IM_ARRAYSIZE(value_buf), display_format, *v1, *v2); + + RenderTextColor(font::lexend_bold, rect.Min + ImVec2(0, 7), rect.Max - ImVec2(15, 10), GetColorU32(c::elements::text_active), value_buf, ImVec2(1.0, 0.0f)); + RenderTextColor(font::lexend_bold, rect.Min + ImVec2(10, 0), rect.Max, GetColorU32(c::elements::text_active), label, ImVec2(0.0, 0.2)); + + return value_changed; + + } + + struct quand_state + { + float slow0, slow1, tickness; + int move_y, move_x; + float move_yy, move_xx; + }; + + bool QuandScalar(const char* label, const char* description, ImGuiDataType data_type, void* p_data0, void* p_data1, const void* p_min0, const void* p_max0, const void* p_min1, const void* p_max1, const char* format0, const char* format1, ImGuiSliderFlags flags) + { + + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + + const float w = GetContentRegionMax().x - style.WindowPadding.x; + + ImVec2 pos = window->DC.CursorPos; + const ImRect frame_bb(pos + ImVec2(10, 55), pos + ImVec2(w - 10, 145)); + const ImRect rect(pos, pos + ImVec2(w, 155)); + const bool temp_input_allowed = (flags & ImGuiSliderFlags_NoInput) == 0; + + ItemSize(rect, 0.f); + if (!ItemAdd(rect, id)) return false; + + if (format0 == NULL) format0 = DataTypeGetInfo(data_type)->PrintFmt; + if (format1 == NULL) format1 = DataTypeGetInfo(data_type)->PrintFmt; + + bool hovered, held, pressed = ButtonBehavior(rect, id, &hovered, &held); + + bool temp_input_is_active = temp_input_allowed && TempInputIsActive(id); + + ImRect grab_bb0, grab_bb1; + + static std::map anim; + auto it_anim = anim.find(id); + + if (it_anim == anim.end()) + { + anim.insert({ id, quand_state() }); + it_anim = anim.find(id); + } + + const bool value_changed0 = SliderBehavior(ImRect(frame_bb.Min - ImVec2(7, 0), frame_bb.Max + ImVec2(5, 0)), id, data_type, p_data0, p_min0, p_max0, format0, flags, &grab_bb0); + const bool value_changed1 = SliderBehavior(ImRect(frame_bb.Min - ImVec2(0, 7), frame_bb.Max + ImVec2(0, 4)), id, data_type, p_data1, p_max1, p_min1, format1, flags | ImGuiSliderFlags_Vertical, &grab_bb1); + + if (value_changed0) MarkItemEdited(id); + + char value_buf0[64]; + char value_buf1[64]; + const char* value_buf_end0 = value_buf0 + DataTypeFormatString(value_buf0, IM_ARRAYSIZE(value_buf0), data_type, p_data0, format0); + const char* value_buf_end1 = value_buf1 + DataTypeFormatString(value_buf1, IM_ARRAYSIZE(value_buf1), data_type, p_data1, format1); + + GetWindowDrawList()->AddRectFilled(rect.Min, rect.Max, GetColorU32(c::elements::background), c::elements::rounding); + + it_anim->second.slow0 = ImLerp(it_anim->second.slow0, grab_bb0.Min.x - (frame_bb.Min.x) + 7, g.IO.DeltaTime * 25.f); + it_anim->second.slow1 = ImLerp(it_anim->second.slow1, grab_bb1.Min.y - (frame_bb.Min.y) + 7, g.IO.DeltaTime * 25.f); + + GetWindowDrawList()->AddLine(ImVec2(it_anim->second.slow0 + frame_bb.Min.x, grab_bb0.Min.y), ImVec2(it_anim->second.slow0 + frame_bb.Min.x, grab_bb0.Max.y), GetColorU32(c::accent), 0.5f); + GetWindowDrawList()->AddShadowRect(ImVec2(it_anim->second.slow0 + frame_bb.Min.x, grab_bb0.Min.y), ImVec2(it_anim->second.slow0 + frame_bb.Min.x, grab_bb0.Max.y), VGetColorU32(c::accent, 0.5f), 25.f, ImVec2(0, 0), 100.f); + + GetWindowDrawList()->AddLine(ImVec2(grab_bb1.Min.x, it_anim->second.slow1 + frame_bb.Min.y), ImVec2(grab_bb1.Max.x, it_anim->second.slow1 + frame_bb.Min.y), GetColorU32(c::accent), 0.5f); + GetWindowDrawList()->AddShadowRect(ImVec2(grab_bb1.Min.x, it_anim->second.slow1 + frame_bb.Min.y), ImVec2(grab_bb1.Max.x, it_anim->second.slow1 + frame_bb.Min.y), VGetColorU32(c::accent, 0.5f), 25.f, ImVec2(0, 0), 100.f); + + GetWindowDrawList()->AddText(font::lexend_bold, 17, ImVec2(rect.Min.x + 10, rect.Min.y + 10), GetColorU32(c::elements::text_active), label); + + std::string blah0(value_buf0), blah1(value_buf1); + + std::string label_x = "[X, " + blah0 + " Y, " + blah1 + "]"; + + GetWindowDrawList()->AddText(font::lexend_bold, 17, ImVec2(rect.Min.x + 10, rect.Min.y + 30), GetColorU32(c::elements::text), description); + + RenderTextColor(font::lexend_bold, rect.Min + ImVec2(0, 7), rect.Max - ImVec2(15, 10), GetColorU32(c::elements::text_active), label_x.c_str(), ImVec2(1.0, 0.0f)); + + } + + bool QuandFloat(const char* label, const char* description, float* v0, float* v1, float v_min0, float v_max0, float v_min1, float v_max1, const char* format0, const char* format1, ImGuiSliderFlags flags) + { + return QuandScalar(label, description, ImGuiDataType_Float, v0, v1, &v_min0, &v_max0, &v_min1, &v_max1, format0, format1, flags); + } + + bool QuandInt(const char* label, const char* description, int* v0, int* v1, int v_min0, int v_max0, int v_min1, int v_max1, const char* format0, const char* format1, ImGuiSliderFlags flags) + { + return QuandScalar(label, description, ImGuiDataType_S32, v0, v1, &v_min0, &v_max0, &v_min1, &v_max1, format0, format1, flags); + } + bool edited::pointbox(const char* label, bool* v, int type, float x, float y) + { + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + + const float checkbox_size = 18.f; + const ImRect check_bb(ImVec2(window->Pos.x + x, window->Pos.y + y), ImVec2(window->Pos.x + x + checkbox_size, window->Pos.y + y + checkbox_size)); + ItemSize(check_bb, style.FramePadding.y); + + ImRect total_bb = check_bb; + + if (!ItemAdd(total_bb, id)) + return false; + + bool hovered, held; + bool pressed = ButtonBehavior(total_bb, id, &hovered, &held); + if (pressed) + *v = !(*v); + + // Additional logic for animations + static std::map hover_animation; + auto it_hover = hover_animation.find(id); + if (it_hover == hover_animation.end()) + { + hover_animation.insert({ id, 0.f }); + it_hover = hover_animation.find(id); + } + it_hover->second = ImClamp(it_hover->second + (0.2f * ImGui::GetIO().DeltaTime * (hovered ? 1.f : -5.f)), 0.0f, 0.12f); + it_hover->second *= g.Style.Alpha; + static std::map filled_animation; + auto it_filled = filled_animation.find(id); + if (it_filled == filled_animation.end()) + { + filled_animation.insert({ id, 0.f }); + it_filled = filled_animation.find(id); + } + + if (*v) + { + it_filled->second = ImClamp(it_filled->second + (2.35f * ImGui::GetIO().DeltaTime * 2.f), it_hover->second, 1.f); + + } + else + { + it_filled->second = ImClamp(it_filled->second - (1.5f * ImGui::GetIO().DeltaTime), 0.1f, it_hover->second); + } + + it_filled->second *= g.Style.Alpha; + + static std::map circle_amimation; + auto it_circled = circle_amimation.find(id); + if (it_circled == circle_amimation.end()) + { + circle_amimation.insert({ id, 0.f }); + it_circled = circle_amimation.find(id); + } + + if (*v) + { + it_circled->second = ImClamp(it_circled->second + (2.35f * ImGui::GetIO().DeltaTime * 2.f), it_hover->second, 1.f); + + } + else + { + it_circled->second = ImClamp(it_circled->second - (1.5f * ImGui::GetIO().DeltaTime), 1.f, it_hover->second); + } + + it_circled->second *= g.Style.Alpha; + const float check_sz = checkbox_size - 2.0f; + ImVec4 text = ImLerp(ImVec4{ 141 / 255.f, 146 / 255.f, 154 / 255.f, g.Style.Alpha }, ImVec4{ 255 / 255.f, 255 / 255.f, 255 / 255.f, g.Style.Alpha }, it_filled->second); + // Draw the shadow circle around the checkmark + ImVec2 center = ImVec2(check_bb.Min.x + check_bb.GetWidth() * 0.5f, check_bb.Min.y + check_bb.GetHeight() * 0.5f); + float radius = checkbox_size * 0.6f; // Adjust the radius as needed + float radius2 = checkbox_size * 0.7f; // Adjust the radius as needed + + ImU32 shadow_col = *v ? VGetColorU32(c::accent, (int)(255 * it_filled->second)) : VGetColorU32(c::accent, (int)(155 * it_filled->second)); // Adjust shadow color as needed + ImU32 circle_col = *v ? ImColor(0, 0, 0, (int)(200 * it_circled->second)) : ImColor(0, 0, 0, (int)(170 * it_circled->second)); // Adjust shadow color as needed + + float shadow_thickness = 32.f; // Adjust shadow thickness as needed + ImVec2 shadow_offset = ImVec2(0, 0); // Adjust shadow offset as needed + window->DrawList->AddShadowCircle(center, radius, shadow_col, shadow_thickness, shadow_offset, 0, 12); + window->DrawList->AddCircleFilled(center, radius, circle_col, 12); + + // Draw the checkbox frames and checkmark + // RenderFrame(check_bb.Min, check_bb.Max, ImColor(27, 27, 27, (int)(255 * g.Style.Alpha)), false, 4); + // RenderFrame(check_bb.Min + ImVec2(1, 1), check_bb.Max - ImVec2(1, 1), ImColor(15, 15, 15, int(255 * GetStyle().Alpha)), false, 4); + // RenderFrame(check_bb.Min, check_bb.Max, ImColor(19, 148, 250, (int)(255 * it_filled->second)), false, 4); + const float check_mz = checkbox_size - 5.f; + if (*v) + RenderCheckMark(window->DrawList, check_bb.Min + ImVec2((checkbox_size - check_mz) * 0.5f, (checkbox_size - check_mz) * 0.5f), VGetColorU32(c::accent, (int)(255 * it_filled->second)), check_mz); + else + RenderCheckMark(window->DrawList, check_bb.Min + ImVec2((checkbox_size - check_mz) * 0.5f, (checkbox_size - check_mz) * 0.5f), ImColor(55, 55, 55, (int)(170 * it_filled->second)), check_mz); + + + // Draw the label text + + return pressed; + } + bool edited::SmallCheckbox(const char* label, bool* v, int type) + { + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + + const float checkbox_size = 18.f; + const float padding_between = 5.0f; + + float new_y_pos = window->DC.CursorPos.y + 2.f; + float original_x_pos = type == 0 ? window->Pos.x + style.WindowPadding.x + 10.0f : window->Pos.x + style.WindowPadding.x + 2.f; + window->DC.CursorPos.x = original_x_pos; + + // Calculate the total bounding box for the checkbox + const ImRect check_bb(ImVec2(original_x_pos, new_y_pos), ImVec2(original_x_pos + checkbox_size, new_y_pos + checkbox_size)); + ItemSize(check_bb, style.FramePadding.y); + + // Check if the item is interactive and add it + if (!ItemAdd(check_bb, id)) + return false; + + // Handle button behavior + bool hovered, held; + bool pressed = ButtonBehavior(check_bb, id, &hovered, &held); + if (pressed) + *v = !(*v); + + // Additional logic for animations + static std::map hover_animation; + auto it_hover = hover_animation.find(id); + if (it_hover == hover_animation.end()) + { + hover_animation.insert({ id, 0.f }); + it_hover = hover_animation.find(id); + } + it_hover->second = ImClamp(it_hover->second + (0.2f * ImGui::GetIO().DeltaTime * (hovered ? 1.f : -5.f)), 0.0f, 0.12f); + it_hover->second *= g.Style.Alpha; + + static std::map filled_animation; + auto it_filled = filled_animation.find(id); + if (it_filled == filled_animation.end()) + { + filled_animation.insert({ id, 0.f }); + it_filled = filled_animation.find(id); + } + it_filled->second = ImClamp(it_filled->second + (2.35f * ImGui::GetIO().DeltaTime * ((*v) ? 2.f : -2.f)), it_hover->second, 1.f); + it_filled->second *= g.Style.Alpha; + + const float check_sz = checkbox_size - 2.0f; + ImVec4 text = ImLerp(ImVec4{ 141 / 255.f, 146 / 255.f, 154 / 255.f, g.Style.Alpha }, ImVec4{ 255 / 255.f, 255 / 255.f, 255 / 255.f, g.Style.Alpha }, it_filled->second); + + // Draw the checkbox frames and checkmark + RenderFrame(check_bb.Min, check_bb.Max, ImColor(27, 27, 27, (int)(255 * g.Style.Alpha)), false, 4); + RenderFrame(check_bb.Min + ImVec2(1, 1), check_bb.Max - ImVec2(1, 1), ImColor(15, 15, 15, int(255 * GetStyle().Alpha)), false, 4); + RenderFrame(check_bb.Min, check_bb.Max, ImColor(19, 148, 250, (int)(255 * it_filled->second)), false, 4); + const float check_mz = checkbox_size - 5.f; + if (*v) + RenderCheckMark(window->DrawList, check_bb.Min + ImVec2((checkbox_size - check_mz) * 0.5f, (checkbox_size - check_mz) * 0.5f), ImColor(255, 255, 255, (int)(255 * it_filled->second)), check_mz); + + // Draw the label text + const float text_y_pos = new_y_pos + (checkbox_size - GetTextLineHeight()) * 0.5f; + window->DrawList->AddText(ImVec2(original_x_pos + checkbox_size + padding_between + 4.f, text_y_pos), ImColor(text), label); + + return pressed; + } + static void ColorEditRestoreH(const float* col, float* H) + { + ImGuiContext& g = *GImGui; + IM_ASSERT(g.ColorEditCurrentID != 0); + if (g.ColorEditSavedID != g.ColorEditCurrentID || g.ColorEditSavedColor != ImGui::ColorConvertFloat4ToU32(ImVec4(col[0], col[1], col[2], 0))) + return; + *H = g.ColorEditSavedHue; + } + + static void ColorEditRestoreHS(const float* col, float* H, float* S, float* V) + { + ImGuiContext& g = *GImGui; + IM_ASSERT(g.ColorEditCurrentID != 0); + if (g.ColorEditSavedID != g.ColorEditCurrentID || g.ColorEditSavedColor != ImGui::ColorConvertFloat4ToU32(ImVec4(col[0], col[1], col[2], 0))) return; + + if (*S == 0.0f || (*H == 0.0f && g.ColorEditSavedHue == 1)) + *H = g.ColorEditSavedHue; + + if (*V == 0.0f) *S = g.ColorEditSavedSat; + } + + struct iconbox_state + { + float line; + }; + + bool Color(const char* szLabel, const char* szDesc, Color_t * pColor, ImGuiColorEditFlags flags) + { + + float arrColor[4]; + pColor->BaseAlpha(arrColor); + + if (ColorEdit4(szLabel, szDesc, &arrColor[0], flags)) + { + *pColor = Color_t::FromBase4(arrColor); + return true; + } + + return false; + } + + bool icon_box(const char* icon, ImVec2 size, ImU32 color_bg, ImU32 color_icon, ImU32 color_border) + { + ImGuiWindow* window = GetCurrentWindow(); + + if (window->SkipItems) return false; + + const ImVec2 pos = window->DC.CursorPos; + const ImRect rect(pos, pos + size); + const ImGuiID id = window->GetID(icon); + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + + ItemSize(rect, 0.f); + if (!ItemAdd(rect, id)) return false; + + bool hovered, held, pressed = ButtonBehavior(rect, id, &hovered, &held, NULL); + + static std::map anim; + iconbox_state& state = anim[id]; + + GetWindowDrawList()->AddRectFilled(rect.Min, rect.Max, GetColorU32(color_bg), c::elements::rounding); + GetWindowDrawList()->AddRect(rect.Min, rect.Max, GetColorU32(color_border), c::elements::rounding); + + RenderTextColor(font::icomoon_widget, rect.Min, rect.Max, GetColorU32(color_icon), icon, ImVec2(0.5, 0.5)); + + return pressed; + } + + bool color_button(const char* name, ImVec2 size, ImU32 color_bg) + { + ImGuiWindow* window = GetCurrentWindow(); + + if (window->SkipItems) return false; + + const ImVec2 pos = window->DC.CursorPos; + const ImRect rect(pos, pos + size); + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(name); + + ItemSize(rect, 0.f); + if (!ItemAdd(rect, id)) return false; + + bool hovered, held, pressed = ButtonBehavior(rect, id, &hovered, &held, NULL); + + static std::map anim; + iconbox_state& state = anim[id]; + + GetWindowDrawList()->AddCircleFilled(rect.Min + ImVec2(size / 2), size.x / 2, GetColorU32(color_bg), 30.f); + GetWindowDrawList()->AddShadowCircle(rect.Min + ImVec2(size / 2), size.x / 2, GetColorU32(color_bg), 18.f, ImVec2(0, 0), 30.f); + + GetWindowDrawList()->AddCircle(rect.Min + ImVec2(size / 2), size.x / 3, VGetColorU32(c::elements::background, 0.3f), 30.f, 3.f); + + return pressed; + } + + + + struct edit_state + { + ImVec4 text; + float alpha = 0.f, alpha_search; + bool hovered, active; + }; + + bool ColorEdit4(const char* label, const char* description, float col[4], ImGuiColorEditFlags flags) + { + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const float square_sz = 18.f; + const float w_full = CalcItemWidth(); + const float w_button = (flags & ImGuiColorEditFlags_NoSmallPreview) ? 0.0f : square_sz; + const float w_inputs = w_full - w_button; + const char* label_display_end = FindRenderedTextEnd(label); + g.NextItemData.ClearFlags(); + + char buf[64]; + static bool search_col = false; + + BeginGroup(); + PushID(label); + const bool set_current_color_edit_id = (g.ColorEditCurrentID == 0); + if (set_current_color_edit_id) g.ColorEditCurrentID = window->IDStack.back(); + + const ImGuiColorEditFlags flags_untouched = flags; + + if (flags & ImGuiColorEditFlags_NoInputs) flags = (flags & (~ImGuiColorEditFlags_DisplayMask_)) | ImGuiColorEditFlags_DisplayRGB | ImGuiColorEditFlags_NoOptions; + + if (!(flags & ImGuiColorEditFlags_NoOptions)) ColorEditOptionsPopup(col, flags); + + if (!(flags & ImGuiColorEditFlags_DisplayMask_)) + flags |= (g.ColorEditOptions & ImGuiColorEditFlags_DisplayMask_); + if (!(flags & ImGuiColorEditFlags_DataTypeMask_)) + flags |= (g.ColorEditOptions & ImGuiColorEditFlags_DataTypeMask_); + if (!(flags & ImGuiColorEditFlags_PickerMask_)) + flags |= (g.ColorEditOptions & ImGuiColorEditFlags_PickerMask_); + if (!(flags & ImGuiColorEditFlags_InputMask_)) + flags |= (g.ColorEditOptions & ImGuiColorEditFlags_InputMask_); + flags |= (g.ColorEditOptions & ~(ImGuiColorEditFlags_DisplayMask_ | ImGuiColorEditFlags_DataTypeMask_ | ImGuiColorEditFlags_PickerMask_ | ImGuiColorEditFlags_InputMask_)); + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_DisplayMask_)); + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_InputMask_)); + + const bool alpha = (flags & ImGuiColorEditFlags_NoAlpha) == 0; + const bool hdr = (flags & ImGuiColorEditFlags_HDR) != 0; + const int components = alpha ? 4 : 3; + + float f[4] = { col[0], col[1], col[2], alpha ? col[3] : 1.0f }; + if ((flags & ImGuiColorEditFlags_InputHSV) && (flags & ImGuiColorEditFlags_DisplayRGB)) + ColorConvertHSVtoRGB(f[0], f[1], f[2], f[0], f[1], f[2]); + else if ((flags & ImGuiColorEditFlags_InputRGB) && (flags & ImGuiColorEditFlags_DisplayHSV)) + { + ColorConvertRGBtoHSV(f[0], f[1], f[2], f[0], f[1], f[2]); + ColorEditRestoreHS(col, &f[0], &f[1], &f[2]); + } + int i[4] = { IM_F32_TO_INT8_UNBOUND(f[0]), IM_F32_TO_INT8_UNBOUND(f[1]), IM_F32_TO_INT8_UNBOUND(f[2]), IM_F32_TO_INT8_UNBOUND(f[3]) }; + + bool value_changed = false; + bool value_changed_as_float = false; + + const ImVec2 pos = window->DC.CursorPos; + const float inputs_offset_x = (style.ColorButtonPosition == ImGuiDir_Left) ? w_button : 0.0f; + window->DC.CursorPos.x = pos.x + inputs_offset_x; + + if ((flags & (ImGuiColorEditFlags_DisplayRGB | ImGuiColorEditFlags_DisplayHSV)) != 0 && (flags & ImGuiColorEditFlags_NoInputs) == 0) + { + const float w_item_one = ImMax(1.0f, IM_FLOOR((w_inputs - (style.ItemInnerSpacing.x) * (components - 1)) / (float)components)); + const float w_item_last = ImMax(1.0f, IM_FLOOR(w_inputs - (w_item_one + style.ItemInnerSpacing.x) * (components - 1))); + + const bool hide_prefix = (w_item_one <= CalcTextSize((flags & ImGuiColorEditFlags_Float) ? "M:0.000" : "M:000").x); + static const char* ids[4] = { "##X", "##Y", "##Z", "##W" }; + static const char* fmt_table_int[3][4] = + { + { "%3d", "%3d", "%3d", "%3d" }, + { "R:%3d", "G:%3d", "B:%3d", "A:%3d" }, + { "H:%3d", "S:%3d", "V:%3d", "A:%3d" } + }; + + static const char* fmt_table_float[3][4] = + { + { "%0.3f", "%0.3f", "%0.3f", "%0.3f" }, + { "R:%0.3f", "G:%0.3f", "B:%0.3f", "A:%0.3f" }, + { "H:%0.3f", "S:%0.3f", "V:%0.3f", "A:%0.3f" } + }; + + const int fmt_idx = hide_prefix ? 0 : (flags & ImGuiColorEditFlags_DisplayHSV) ? 2 : 1; + + for (int n = 0; n < components; n++) + { + if (n > 0) SameLine(0, style.ItemInnerSpacing.x); + SetNextItemWidth((n + 1 < components) ? w_item_one : w_item_last); + + if (flags & ImGuiColorEditFlags_Float) + { + value_changed |= DragFloat(ids[n], &f[n], 1.0f / 255.0f, 0.0f, hdr ? 0.0f : 1.0f, fmt_table_float[fmt_idx][n]); + value_changed_as_float |= value_changed; + } + else + { + value_changed |= DragInt(ids[n], &i[n], 1.0f, 0, hdr ? 0 : 255, fmt_table_int[fmt_idx][n]); + } + if (!(flags & ImGuiColorEditFlags_NoOptions)) OpenPopupOnItemClick("context", ImGuiPopupFlags_MouseButtonRight); + } + } + + static std::map anim; + edit_state& state = anim[ImGui::GetID(label)]; + + ImGuiWindow* picker_active_window = NULL; + if (!(flags & ImGuiColorEditFlags_NoSmallPreview)) + { + const float button_offset_x = ((flags & ImGuiColorEditFlags_NoInputs) || (style.ColorButtonPosition == ImGuiDir_Left)) ? 0.0f : w_inputs + style.ItemInnerSpacing.x; + window->DC.CursorPos = ImVec2(pos.x + button_offset_x, pos.y); + + const ImVec4 col_v4(col[0], col[1], col[2], alpha ? col[3] : 1.0f); + if (ColorButton("##ColorButton", col_v4, flags, ImVec2(20, 20))) + { + if (!(flags & ImGuiColorEditFlags_NoPicker)) + { + g.ColorPickerRef = col_v4; + OpenPopup("picker"); + SetNextWindowPos(g.LastItemData.Rect.GetBL() + ImVec2(0.0f, style.ItemSpacing.y)); + } + } + + if (!(flags & ImGuiColorEditFlags_NoOptions)) OpenPopupOnItemClick("context", ImGuiPopupFlags_MouseButtonRight); + + if (ItemHoverable(g.LastItemData.Rect, g.LastItemData.ID, NULL) && g.IO.MouseClicked[0] || state.active && !search_col && g.IO.MouseClicked[0] && !state.hovered) + state.active = !state.active; + + state.alpha_search = ImLerp(state.alpha_search, search_col ? 1.f : 0.f, g.IO.DeltaTime * 6.f); + + PushStyleColor(ImGuiCol_WindowBg, GetColorU32(c::elements::background)); + PushStyleColor(ImGuiCol_Border, GetColorU32(c::elements::background_widget)); + + PushStyleVar(ImGuiStyleVar_WindowRounding, c::elements::rounding); + PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(15, 15)); + PushStyleVar(ImGuiStyleVar_WindowBorderSize, 1.f); + + POINT cursorPos; + COLORREF color; + + if (state.active) + { + SetNextWindowPos(g.LastItemData.Rect.GetTR() + ImVec2(-45, -5)); + + Begin("picker", NULL, ImGuiWindowFlags_NoDecoration | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_AlwaysAutoResize); + { + state.hovered = IsWindowHovered(); + + ImVec4 col_v4(col[0], col[1], col[2], (flags & ImGuiColorEditFlags_NoAlpha) ? 1.0f : col[3]); + + GetCursorPos(&cursorPos); + HDC hdc = GetDC(NULL); + color = GetPixel(hdc, cursorPos.x, cursorPos.y); + + if (search_col) + { + + static DWORD dwTickStart = GetTickCount(); + if (GetTickCount() - dwTickStart > 150) + { + col[0] = GetRValue(color) / 255.f; + col[1] = GetGValue(color) / 255.f; + col[2] = GetBValue(color) / 255.f; + dwTickStart = GetTickCount(); + + if (GetAsyncKeyState(VK_LBUTTON) & 0x8000) search_col = false; + + } + } + + if (alpha) + ImFormatString(buf, IM_ARRAYSIZE(buf), "#%02X%02X%02X%02X", ImClamp(i[0], 0, 255), ImClamp(i[1], 0, 255), ImClamp(i[2], 0, 255), ImClamp(i[3], 0, 255)); + else + ImFormatString(buf, IM_ARRAYSIZE(buf), "#%02X%02X%02X", ImClamp(i[0], 0, 255), ImClamp(i[1], 0, 255), ImClamp(i[2], 0, 255)); + + GetWindowDrawList()->AddText(font::lexend_bold, 17.f, GetCursorScreenPos() - ImVec2(0, 2), GetColorU32(c::elements::text_active), (label != label_display_end && !(flags & ImGuiColorEditFlags_NoLabel)) ? label : "Color picker"); + + PushFont(font::icomoon_widget2); + ImGui::GetWindowDrawList()->AddText(GetCursorScreenPos() + ImVec2(GetContentRegionMax().x - (CalcTextSize("l").x + 15), 0), GetColorU32(c::elements::text_hov), "l"); + PopFont(); + + ImGui::SetCursorPosY(GetCursorPosY() + 30); + + picker_active_window = g.CurrentWindow; + ImGuiColorEditFlags picker_flags_to_forward = ImGuiColorEditFlags_DataTypeMask_ | ImGuiColorEditFlags_PickerMask_ | ImGuiColorEditFlags_InputMask_ | ImGuiColorEditFlags_HDR | ImGuiColorEditFlags_NoAlpha | ImGuiColorEditFlags_AlphaBar; + ImGuiColorEditFlags picker_flags = (flags_untouched & picker_flags_to_forward) | ImGuiColorEditFlags_DisplayMask_ | ImGuiColorEditFlags_NoLabel | ImGuiColorEditFlags_AlphaPreviewHalf; + + SetNextItemWidth(square_sz * 11.5f); + value_changed |= ColorPicker4("##picker", col, picker_flags, &g.ColorPickerRef.x); + + if (edited::icon_box("u", ImVec2(35, 35), GetColorU32(c::elements::background_widget), GetColorU32(c::accent), VGetColorU32(c::accent, state.alpha_search))) + { + search_col = true; + }; + + ImGui::SameLine(0, 15); + + if (InputTextEx("v", "HEX COLOR", buf, IM_ARRAYSIZE(buf), ImVec2(!(flags & ImGuiColorEditFlags_NoAlpha) ? 128 : 118, 35), ImGuiInputTextFlags_CharsHexadecimal | ImGuiInputTextFlags_CharsUppercase)) + { + value_changed = true; + char* p = buf; + while (*p == '#' || ImCharIsBlankA(*p)) p++; + i[0] = i[1] = i[2] = 0; + i[3] = 0xFF; + int r; + if (alpha) + r = sscanf(p, "%02X%02X%02X%02X", (unsigned int*)&i[0], (unsigned int*)&i[1], (unsigned int*)&i[2], (unsigned int*)&i[3]); // Treat at unsigned (%X is unsigned) + else + r = sscanf(p, "%02X%02X%02X", (unsigned int*)&i[0], (unsigned int*)&i[1], (unsigned int*)&i[2]); + IM_UNUSED(r); + } + + ImGui::SameLine(0, 3); + + static std::vector color_x, color_y, color_z, color_a; + + static bool add_status = true; + + if (edited::icon_box(add_status ? "g" : "k", ImVec2(35, 35), GetColorU32(c::elements::background_widget), GetColorU32(c::accent), VGetColorU32(c::accent, 0.f))) + { + + if (add_status) { + + color_x.push_back(col[0]); + color_y.push_back(col[1]); + color_z.push_back(col[2]); + color_a.push_back(col[3]); + + } + else if (color_x.size() > 0) { + + color_x.pop_back(); + color_y.pop_back(); + color_z.pop_back(); + color_a.pop_back(); + + } + }; + + if (IsItemHovered() && GetIO().MouseClicked[1]) add_status = !add_status; + + for (int i = 0; i < color_x.size(); i++) + { + std::string number_x = std::to_string(color_x[i]), + number_y = std::to_string(color_y[i]), + number_z = std::to_string(color_z[i]), + number_a = std::to_string(color_a[i]); + + std::string name_box = std::to_string(i); + + if (edited::color_button(name_box.c_str(), ImVec2(17, 17), ImColor(color_x[i], color_y[i], color_z[i], color_a[i]))) + { + col[0] = color_x[i], col[1] = color_y[i], col[2] = color_z[i], col[3] = color_a[i]; + }; + + if ((i + 1) % 7 != 0) ImGui::SameLine(0, 18.f); + + } + + } + End(); + } + } + PopStyleColor(2); + PopStyleVar(3); + + state.text = ImLerp(state.text, state.active ? c::elements::text_active : c::elements::text, g.IO.DeltaTime * 6.f); + + if (label != label_display_end && !(flags & ImGuiColorEditFlags_NoLabel)) + { + SameLine(0.0f, style.ItemInnerSpacing.x); + window->DC.CursorPos.x = pos.x - w_button + ((flags & ImGuiColorEditFlags_NoInputs) ? w_button : w_full); + + RenderTextColor(font::lexend_regular, pos + ImVec2(10, 0), pos + ImVec2(GetContentRegionMax().x, 50), GetColorU32(c::elements::text), description, ImVec2(0.0, 0.8)); + RenderTextColor(font::lexend_bold, pos + ImVec2(10, 0), pos + ImVec2(GetContentRegionMax().x, 50), GetColorU32(c::elements::text_active), label, ImVec2(0.0, 0.2)); + + } + + PopID(); + EndGroup(); + + return value_changed; + } + + static void RenderArrowsForVerticalBar(ImDrawList* draw_list, ImVec2 pos, ImVec2 half_sz, float bar_w, float alpha) + { + ImU32 alpha8 = IM_F32_TO_INT8_SAT(alpha); + ImGui::RenderArrowPointingAt(draw_list, ImVec2(pos.x + half_sz.x + 1, pos.y), ImVec2(half_sz.x + 2, half_sz.y + 1), ImGuiDir_Right, IM_COL32(0, 0, 0, alpha8)); + ImGui::RenderArrowPointingAt(draw_list, ImVec2(pos.x + half_sz.x, pos.y), half_sz, ImGuiDir_Right, IM_COL32(255, 255, 255, alpha8)); + ImGui::RenderArrowPointingAt(draw_list, ImVec2(pos.x + bar_w - half_sz.x - 1, pos.y), ImVec2(half_sz.x + 2, half_sz.y + 1), ImGuiDir_Left, IM_COL32(0, 0, 0, alpha8)); + ImGui::RenderArrowPointingAt(draw_list, ImVec2(pos.x + bar_w - half_sz.x, pos.y), half_sz, ImGuiDir_Left, IM_COL32(255, 255, 255, alpha8)); + } + + struct picker_state + { + float hue_bar; + float alpha_bar; + float circle; + ImVec2 circle_move; + }; + + bool ColorPicker4(const char* label, float col[4], ImGuiColorEditFlags flags, const float* ref_col) + { + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImDrawList* draw_list = window->DrawList; + ImGuiStyle& style = g.Style; + ImGuiIO& io = g.IO; + + const float width = CalcItemWidth(); + g.NextItemData.ClearFlags(); + + PushID(label); + const bool set_current_color_edit_id = (g.ColorEditCurrentID == 0); + if (set_current_color_edit_id) + g.ColorEditCurrentID = window->IDStack.back(); + BeginGroup(); + + if (!(flags & ImGuiColorEditFlags_NoSidePreview)) flags |= ImGuiColorEditFlags_NoSmallPreview; + + if (!(flags & ImGuiColorEditFlags_NoOptions)) ColorPickerOptionsPopup(col, flags); + + if (!(flags & ImGuiColorEditFlags_PickerMask_)) flags |= ((g.ColorEditOptions & ImGuiColorEditFlags_PickerMask_) ? g.ColorEditOptions : ImGuiColorEditFlags_DefaultOptions_) & ImGuiColorEditFlags_PickerMask_; + if (!(flags & ImGuiColorEditFlags_InputMask_)) flags |= ((g.ColorEditOptions & ImGuiColorEditFlags_InputMask_) ? g.ColorEditOptions : ImGuiColorEditFlags_DefaultOptions_) & ImGuiColorEditFlags_InputMask_; + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_PickerMask_)); + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_InputMask_)); + if (!(flags & ImGuiColorEditFlags_NoOptions)) flags |= (g.ColorEditOptions & ImGuiColorEditFlags_AlphaBar); + + int components = (flags & ImGuiColorEditFlags_NoAlpha) ? 3 : 4; + bool alpha_bar = (flags & ImGuiColorEditFlags_AlphaBar) && !(flags & ImGuiColorEditFlags_NoAlpha); + ImVec2 picker_pos = window->DC.CursorPos; + float square_sz = GetFrameHeight(); + float bars_width = 15.f; + float sv_picker_size = ImMax(bars_width * 1, width - (alpha_bar ? 2 : 1) * (bars_width)); + float bar0_pos_x = picker_pos.x + sv_picker_size + 10; + float bar1_pos_x = bar0_pos_x + bars_width + 10; + float bars_triangles_half_sz = IM_FLOOR(bars_width * 0.20f); + + float backup_initial_col[4]; + memcpy(backup_initial_col, col, components * sizeof(float)); + + float H = col[0], S = col[1], V = col[2]; + float R = col[0], G = col[1], B = col[2]; + if (flags & ImGuiColorEditFlags_InputRGB) + { + ColorConvertRGBtoHSV(R, G, B, H, S, V); + ColorEditRestoreHS(col, &H, &S, &V); + } + else if (flags & ImGuiColorEditFlags_InputHSV) + { + ColorConvertHSVtoRGB(H, S, V, R, G, B); + } + + bool value_changed = false, value_changed_h = false, value_changed_sv = false; + + InvisibleButton("sv", ImVec2(sv_picker_size, sv_picker_size)); + if (IsItemActive()) + { + S = ImSaturate((io.MousePos.x - picker_pos.x) / (sv_picker_size - 1)); + V = 1.0f - ImSaturate((io.MousePos.y - picker_pos.y) / (sv_picker_size - 1)); + ColorEditRestoreH(col, &H); + value_changed = value_changed_sv = true; + } + if (!(flags & ImGuiColorEditFlags_NoOptions)) OpenPopupOnItemClick("context", ImGuiPopupFlags_MouseButtonRight); + + SetCursorScreenPos(ImVec2(bar0_pos_x, picker_pos.y)); + InvisibleButton("hue", ImVec2(bars_width, sv_picker_size)); + if (IsItemActive()) + { + H = ImSaturate((io.MousePos.y - picker_pos.y) / (sv_picker_size - 1)); + value_changed = value_changed_h = true; + } + + if (alpha_bar) + { + SetCursorScreenPos(ImVec2(bar1_pos_x, picker_pos.y)); + InvisibleButton("alpha", ImVec2(bars_width, sv_picker_size)); + if (IsItemActive()) + { + col[3] = 1.0f - ImSaturate((io.MousePos.y - picker_pos.y) / (sv_picker_size - 1)); + value_changed = true; + } + } + + if (!(flags & ImGuiColorEditFlags_NoLabel)) + { + const char* label_display_end = FindRenderedTextEnd(label); + if (label != label_display_end) + { + if ((flags & ImGuiColorEditFlags_NoSidePreview)) + SameLine(0, style.ItemInnerSpacing.x); + TextEx(label, label_display_end); + } + } + + if (value_changed_h || value_changed_sv) + { + if (flags & ImGuiColorEditFlags_InputRGB) + { + ColorConvertHSVtoRGB(H, S, V, col[0], col[1], col[2]); + g.ColorEditSavedHue = H; + g.ColorEditSavedSat = S; + g.ColorEditSavedID = g.ColorEditCurrentID; + g.ColorEditSavedColor = ColorConvertFloat4ToU32(ImVec4(col[0], col[1], col[2], 0)); + } + else if (flags & ImGuiColorEditFlags_InputHSV) + { + col[0] = H; + col[1] = S; + col[2] = V; + } + } + + if (value_changed) + { + if (flags & ImGuiColorEditFlags_InputRGB) + { + R = col[0]; + G = col[1]; + B = col[2]; + ColorConvertRGBtoHSV(R, G, B, H, S, V); + ColorEditRestoreHS(col, &H, &S, &V); + } + else if (flags & ImGuiColorEditFlags_InputHSV) + { + H = col[0]; + S = col[1]; + V = col[2]; + ColorConvertHSVtoRGB(H, S, V, R, G, B); + } + } + + const int style_alpha8 = IM_F32_TO_INT8_SAT(style.Alpha); + const ImU32 col_black = IM_COL32(0, 0, 0, style_alpha8); + const ImU32 col_white = IM_COL32(255, 255, 255, style_alpha8); + const ImU32 col_midgrey = IM_COL32(128, 128, 128, style_alpha8); + const ImU32 col_hues[6 + 1] = { IM_COL32(255,0,0,style_alpha8), IM_COL32(255,255,0,style_alpha8), IM_COL32(0,255,0,style_alpha8), IM_COL32(0,255,255,style_alpha8), IM_COL32(0,0,255,style_alpha8), IM_COL32(255,0,255,style_alpha8), IM_COL32(255,0,0,style_alpha8) }; + + ImVec4 hue_color_f(1, 1, 1, style.Alpha); ColorConvertHSVtoRGB(H, 1, 1, hue_color_f.x, hue_color_f.y, hue_color_f.z); + ImU32 hue_color32 = ColorConvertFloat4ToU32(hue_color_f); + ImU32 user_col32_striped_of_alpha = ColorConvertFloat4ToU32(ImVec4(R, G, B, style.Alpha)); + + static std::map anim; + picker_state& state = anim[ImGui::GetID(label)]; + + ImVec2 sv_cursor_pos; + + draw_list->AddRectFilledMultiColor(picker_pos, picker_pos + ImVec2(sv_picker_size, sv_picker_size), col_white, hue_color32, hue_color32, col_white); + draw_list->AddRectFilledMultiColor(picker_pos - ImVec2(1, 1), picker_pos + ImVec2(sv_picker_size + 1, sv_picker_size + 1), 0, 0, col_black, col_black); + + sv_cursor_pos.x = ImClamp(IM_ROUND(picker_pos.x + ImSaturate(S) * sv_picker_size), picker_pos.x + 2, picker_pos.x + sv_picker_size - 2); + sv_cursor_pos.y = ImClamp(IM_ROUND(picker_pos.y + ImSaturate(1 - V) * sv_picker_size), picker_pos.y + 2, picker_pos.y + sv_picker_size - 2); + + for (int i = 0; i < 6; ++i) draw_list->AddRectFilledMultiColor(ImVec2(bar0_pos_x, picker_pos.y + i * (sv_picker_size / 6) - (i == 5 ? 1 : 0)), ImVec2(bar0_pos_x + bars_width, picker_pos.y + (i + 1) * (sv_picker_size / 6) + (i == 0 ? 1 : 0)), col_hues[i], col_hues[i], col_hues[i + 1], col_hues[i + 1]); + + float bar0_line_y = IM_ROUND(picker_pos.y + H * sv_picker_size); + bar0_line_y = ImClamp(bar0_line_y, picker_pos.y + 3.f, picker_pos.y + (sv_picker_size - 13)); + + state.hue_bar = ImLerp(state.hue_bar, bar0_line_y + 5, g.IO.DeltaTime * 24.f); + draw_list->AddCircleFilled(ImVec2(bar0_pos_x + 7.5f, state.hue_bar), 4.5f, col_black, 100.f); + + float sv_cursor_rad = value_changed_sv ? 10.0f : 6.0f; + int sv_cursor_segments = draw_list->_CalcCircleAutoSegmentCount(sv_cursor_rad); + + state.circle_move = ImLerp(state.circle_move, sv_cursor_pos, g.IO.DeltaTime * 10.f); + state.circle = ImLerp(state.circle, value_changed_sv ? 6.0f : 4.0f, g.IO.DeltaTime * 24.f); + + draw_list->AddCircle(state.circle_move, state.circle, col_white, sv_cursor_segments, 2.f); + + if (alpha_bar) + { + float alpha = ImSaturate(col[3]); + ImRect bar1_bb(bar1_pos_x, picker_pos.y, bar1_pos_x + bars_width, picker_pos.y + sv_picker_size); + + draw_list->AddRectFilledMultiColor(bar1_bb.Min, bar1_bb.Max, user_col32_striped_of_alpha, user_col32_striped_of_alpha, user_col32_striped_of_alpha & ~IM_COL32_A_MASK, user_col32_striped_of_alpha & ~IM_COL32_A_MASK); + + float bar1_line_y = IM_ROUND(picker_pos.y + (1.0f - alpha) * sv_picker_size); + bar1_line_y = ImClamp(bar1_line_y, picker_pos.y + 3.f, picker_pos.y + (sv_picker_size - 13)); + + state.alpha_bar = ImLerp(state.alpha_bar, bar1_line_y + 5, g.IO.DeltaTime * 24.f); + draw_list->AddCircleFilled(ImVec2(bar1_pos_x + 7.5f, state.alpha_bar), 4.5f, col_black, 100.f); + } + + EndGroup(); + + if (value_changed && memcmp(backup_initial_col, col, components * sizeof(float)) == 0) value_changed = false; + if (value_changed) MarkItemEdited(g.LastItemData.ID); + + PopID(); + + return value_changed; + } + + + bool ColorButton(const char* desc_id, const ImVec4& col, ImGuiColorEditFlags flags, const ImVec2& size_arg) + { + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) return false; + + ImGuiContext& g = *GImGui; + const ImGuiID id = window->GetID(desc_id); + const float default_size = GetFrameHeight(); + const ImVec2 pos = window->DC.CursorPos; + const float width = GetContentRegionMax().x - ImGui::GetStyle().WindowPadding.x; + const ImRect rect(pos, pos + ImVec2(width, 50)); + + const ImRect clickable(rect.Min + ImVec2(width - 35, (50 - 20) / 2), rect.Max - ImVec2(15, (50 - 20) / 2)); + + ItemSize(ImRect(rect.Min, rect.Max - ImVec2(0, 0))); + if (!ItemAdd((flags & ImGuiColorEditFlags_NoLabel) ? clickable : rect, id)) return false; + + bool hovered, held, pressed = ButtonBehavior(clickable, id, &hovered, &held); + + if (flags & ImGuiColorEditFlags_NoAlpha) flags &= ~(ImGuiColorEditFlags_AlphaPreview | ImGuiColorEditFlags_AlphaPreviewHalf); + + ImVec4 col_rgb = col; + if (flags & ImGuiColorEditFlags_InputHSV) ColorConvertHSVtoRGB(col_rgb.x, col_rgb.y, col_rgb.z, col_rgb.x, col_rgb.y, col_rgb.z); + + GetWindowDrawList()->AddRectFilled(rect.Min, rect.Max, GetColorU32(c::elements::background), c::elements::rounding); + + GetWindowDrawList()->AddRectFilled(clickable.Min, clickable.Max, GetColorU32(col_rgb), c::elements::rounding); + + RenderColorRectWithAlphaCheckerboard(window->DrawList, clickable.Min, clickable.Max, GetColorU32(col_rgb), ImMin(20, 20) / 2.99f, ImVec2(0.f, 0.f), c::elements::rounding); + + return pressed; + } + + + struct preview_state + { + ImVec4 box_color, nick_color, weapon_color, zoom_color, bomb_color, c4_color, money_color, hit_color, hp_color, hp_line_color; + ImVec2 nick_pos; + }; + + struct OverlayTextElement { + bool* condition; + ImVec2 position_offset; + ImU32 color; + std::string text; + ImVec2 measurement_offset; + }; + + void esp_preview(ImTextureID player_preview, bool* nickname, float nick_color[4], bool* weapon, float weapon_color[4], int* hp, float hp_color[4], bool* zoom, float zoom_color[4], bool* bomb, float bomb_color[4], bool* c4, float c4_color[4], bool* money, float money_color[4], bool* hit, float hit_color[4], bool* esp_box, float box_color[4], bool* hp_line, float hp_line_color[4]) + { + ImGuiWindow* window = GetCurrentWindow(); + ImGuiContext& g = *GImGui; + + const ImGuiID id = window->GetID(player_preview); + const ImVec2 pos = window->DC.CursorPos; + const float width = GetContentRegionMax().x - ImGui::GetStyle().WindowPadding.x; + const ImRect player(pos + ImVec2((width - 118) / 2, 30), pos + ImVec2((width + 118) / 2, 313)); + const ImRect box(pos + ImVec2((width - 210) / 2, 20), pos + ImVec2((width + 210) / 2, 327)); + + ItemSize(ImRect(box.Min + ImVec2(0, 0), box.Max + ImVec2(0, 45))); + + static std::map anim; + preview_state& state = anim[id]; + + state.hp_line_color = ImLerp(state.hp_line_color, ImColor(hp_line_color[0], hp_line_color[1], hp_line_color[2], hp_line_color[3]), g.IO.DeltaTime * 6.f); + state.weapon_color = ImLerp(state.weapon_color, ImColor(weapon_color[0], weapon_color[1], weapon_color[2], weapon_color[3]), g.IO.DeltaTime * 6.f); + state.money_color = ImLerp(state.money_color, ImColor(money_color[0], money_color[1], money_color[2], money_color[3]), g.IO.DeltaTime * 6.f); + state.bomb_color = ImLerp(state.bomb_color, ImColor(bomb_color[0], bomb_color[1], bomb_color[2], bomb_color[3]), g.IO.DeltaTime * 6.f); + state.zoom_color = ImLerp(state.zoom_color, ImColor(zoom_color[0], zoom_color[1], zoom_color[2], zoom_color[3]), g.IO.DeltaTime * 6.f); + state.nick_color = ImLerp(state.nick_color, ImColor(nick_color[0], nick_color[1], nick_color[2], nick_color[3]), g.IO.DeltaTime * 6.f); + state.hit_color = ImLerp(state.hit_color, ImColor(hit_color[0], hit_color[1], hit_color[2], hit_color[3]), g.IO.DeltaTime * 6.f); + state.box_color = ImLerp(state.box_color, ImColor(box_color[0], box_color[1], box_color[2], box_color[3]), g.IO.DeltaTime * 6.f); + state.hp_color = ImLerp(state.hp_color, ImColor(hp_color[0], hp_color[1], hp_color[2], hp_color[3]), g.IO.DeltaTime * 6.f); + state.c4_color = ImLerp(state.c4_color, ImColor(c4_color[0], c4_color[1], c4_color[2], c4_color[3]), g.IO.DeltaTime * 6.f); + + int hp_result = 307 * *hp / 100; + + GetWindowDrawList()->AddImage(player_preview, player.Min, player.Max, ImVec2(0, 0), ImVec2(1, 1), GetColorU32(c::elements::text_active)); + + PushFont(font::lexend_bold); + + if (*esp_box) GetWindowDrawList()->AddRect(box.Min, box.Max, GetColorU32(state.box_color), 0.f, NULL, 2.f); + + if (*nickname) GetWindowDrawList()->AddText(pos + ImVec2((width - CalcTextSize("Nickname").x) / 2, 0), GetColorU32(state.nick_color), "Nickname"); + + if (*money) GetWindowDrawList()->AddText(box.Max - ImVec2(-7, 310), GetColorU32(state.money_color), "50$"); + + PopFont(); + } +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_edited.hpp b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_edited.hpp new file mode 100644 index 0000000..5438b22 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_edited.hpp @@ -0,0 +1,56 @@ +#define IMGUI_DEFINE_MATH_OPERATORS + +#include "imgui_internal.h" +#include "imgui_settings.h" +#include "imstb_textedit.h" + +#include +#include "imgui.h" + +#include + +#include +#include +#include "../cstrike/sdk/datatypes/color.h" +namespace edited +{ + bool BeginChild(ImGuiID id, const ImVec2& size = ImVec2(0, 0), ImGuiChildFlags child_flags = 0, ImGuiWindowFlags window_flags = 0); + bool BeginChild(const char* str_id, const ImVec2& size = ImVec2(0, 0), ImGuiChildFlags child_flags = 0, ImGuiWindowFlags window_flags = 0); + void EndChild(); + bool BeginChildEx(const char* name, ImGuiID id, const ImVec2& size_arg, ImGuiChildFlags child_flags, ImGuiWindowFlags window_flags); + bool Tab(bool selected, const char* icon, const char* label, const char* description, const ImVec2& size_arg); + bool Checkbox(const char* label, const char* description, bool* v); + bool Button(const char* label, const ImVec2& size_arg, ImGuiButtonFlags flags); + bool QuandScalar(const char* label, const char* description, ImGuiDataType data_type, void* p_data0, void* p_data1, const void* p_min0, const void* p_max0, const void* p_min1, const void* p_max1, const char* format0 = "%d", const char* format1 = "%d", ImGuiSliderFlags flags = 0); + bool QuandFloat(const char* label, const char* description, float* v0, float* v1, float v_min0 = 0.0f, float v_max0 = 0.0f, float v_min1 = 0.0f, float v_max1 = 0.0f, const char* format0 = "%d", const char* format1 = "%d", ImGuiSliderFlags flags = 0); + bool QuandInt(const char* label, const char* description, int* v0, int* v1, int v_min0 = 0, int v_max0 = 0, int v_min1 = 0, int v_max1 = 0, const char* format0 = "%d", const char* format1 = "%d", ImGuiSliderFlags flags = 0); + + bool SliderInt(const char* label, const char* description, int* v, int v_min, int v_max, const char* format = "%d", ImGuiSliderFlags flags = 0); + bool SliderFloat(const char* label, const char* description, float* v, float v_min, float v_max, const char* format = "%.3f", ImGuiSliderFlags flags = 0); + bool SliderScalar(const char* label, const char* description, ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max, const char* format = NULL, ImGuiSliderFlags flags = 0); + bool pointbox(const char* label, bool* v, int type, float x, float y); + + bool Color(const char* szLabel, const char* szDesc, Color_t* pColor, ImGuiColorEditFlags flags); + bool ColorEdit4(const char* label, const char* description, float col[4], ImGuiColorEditFlags flags = 0); + bool ColorPicker4(const char* label, float col[4], ImGuiColorEditFlags flags = 0, const float* ref_col = NULL); + bool ColorButton(const char* desc_id, const ImVec4& col, ImGuiColorEditFlags flags = 0, const ImVec2& size = ImVec2(0, 0)); + + bool SmallCheckbox(const char* label, bool* v, int type); + bool Selectable(const char* label, bool selected = false, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0, 0)); + bool Selectable(const char* label, bool* p_selected, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0, 0)); + bool BeginCombo(const char* label, const char* description, const char* preview_value, int val = 0, bool multi = false, ImGuiComboFlags flags = 0); + void EndCombo(); + bool MultiCombo(const char* szLabel, unsigned int* pFlags, const char* const* arrItems, int nItemsCount); + bool Combo(const char* label, const char* description, int* current_item, const char* (*getter)(void* user_data, int idx), void* user_data, int items_count, int popup_max_height_in_items = -1); + bool Combo(const char* label, const char* description, int* current_item, const char* const items[], int items_count, int popup_max_height_in_items = -1); + bool Combo(const char* label, const char* description, int* current_item, const char* items_separated_by_zeros, int popup_max_height_in_items = -1); + + bool RangeSliderBehavior(const ImRect& frame_bb, ImGuiID id, float* v1, float* v2, float v_min, float v_max, float power, int decimal_precision, ImGuiSliderFlags flags = 0); + bool RangeSliderFloat(const char* label, const char* description, float* v1, float* v2, float v_min, float v_max, const char* display_format = "(%.3f, %.3f)", float power = 1.0f); + + void esp_preview(ImTextureID player_preview, bool* nickname, float nick_color[4], bool* weapon, float weapon_color[4], int* hp, float hp_color[4], bool* zoom, float zoom_color[4], bool* bomb, float bomb_color[4], bool* c4, float c4_color[4], bool* money, float money_color[4], bool* hit, float hit_color[4], bool* esp_box, float box_color[4], bool* hp_line, float hp_line_color[4]); + + bool checkboxP(const char* label, bool* v, const ImVec2& size_arg); + bool Keybind(const char* label, const char* description, int* key); + +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_freetype.cpp b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_freetype.cpp new file mode 100644 index 0000000..a11e582 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_freetype.cpp @@ -0,0 +1,942 @@ +// dear imgui: FreeType font builder (used as a replacement for the stb_truetype builder) +// (code) + +// Get the latest version at https://github.com/ocornut/imgui/tree/master/misc/freetype +// Original code by @vuhdo (Aleksei Skriabin). Improvements by @mikesart. Maintained since 2019 by @ocornut. + +// CHANGELOG +// (minor and older changes stripped away, please see git history for details) +// 2023/08/01: added support for SVG fonts, enable by using '#define IMGUI_ENABLE_FREETYPE_LUNASVG' (#6591) +// 2023/01/04: fixed a packing issue which in some occurrences would prevent large amount of glyphs from being packed correctly. +// 2021/08/23: fixed crash when FT_Render_Glyph() fails to render a glyph and returns NULL. +// 2021/03/05: added ImGuiFreeTypeBuilderFlags_Bitmap to load bitmap glyphs. +// 2021/03/02: set 'atlas->TexPixelsUseColors = true' to help some backends with deciding of a prefered texture format. +// 2021/01/28: added support for color-layered glyphs via ImGuiFreeTypeBuilderFlags_LoadColor (require Freetype 2.10+). +// 2021/01/26: simplified integration by using '#define IMGUI_ENABLE_FREETYPE'. renamed ImGuiFreeType::XXX flags to ImGuiFreeTypeBuilderFlags_XXX for consistency with other API. removed ImGuiFreeType::BuildFontAtlas(). +// 2020/06/04: fix for rare case where FT_Get_Char_Index() succeed but FT_Load_Glyph() fails. +// 2019/02/09: added RasterizerFlags::Monochrome flag to disable font anti-aliasing (combine with ::MonoHinting for best results!) +// 2019/01/15: added support for imgui allocators + added FreeType only override function SetAllocatorFunctions(). +// 2019/01/10: re-factored to match big update in STB builder. fixed texture height waste. fixed redundant glyphs when merging. support for glyph padding. +// 2018/06/08: added support for ImFontConfig::GlyphMinAdvanceX, GlyphMaxAdvanceX. +// 2018/02/04: moved to main imgui repository (away from http://www.github.com/ocornut/imgui_club) +// 2018/01/22: fix for addition of ImFontAtlas::TexUvscale member. +// 2017/10/22: minor inconsequential change to match change in master (removed an unnecessary statement). +// 2017/09/26: fixes for imgui internal changes. +// 2017/08/26: cleanup, optimizations, support for ImFontConfig::RasterizerFlags, ImFontConfig::RasterizerMultiply. +// 2017/08/16: imported from https://github.com/Vuhdo/imgui_freetype into http://www.github.com/ocornut/imgui_club, updated for latest changes in ImFontAtlas, minor tweaks. + +// About Gamma Correct Blending: +// - FreeType assumes blending in linear space rather than gamma space. +// - See https://www.freetype.org/freetype2/docs/reference/ft2-base_interface.html#FT_Render_Glyph +// - For correct results you need to be using sRGB and convert to linear space in the pixel shader output. +// - The default dear imgui styles will be impacted by this change (alpha values will need tweaking). + +// FIXME: cfg.OversampleH, OversampleV are not supported (but perhaps not so necessary with this rasterizer). + +#include "imgui.h" +#ifndef IMGUI_DISABLE +#include "imgui_freetype.h" +#include "imgui_internal.h" // ImMin,ImMax,ImFontAtlasBuild*, +#include +#include +#include FT_FREETYPE_H // +#include FT_MODULE_H // +#include FT_GLYPH_H // +#include FT_SYNTHESIS_H // + +#ifdef IMGUI_ENABLE_FREETYPE_LUNASVG +#include FT_OTSVG_H // +#include FT_BBOX_H // +#include +#if !((FREETYPE_MAJOR >= 2) && (FREETYPE_MINOR >= 12)) +#error IMGUI_ENABLE_FREETYPE_LUNASVG requires FreeType version >= 2.12 +#endif +#endif + +#ifdef _MSC_VER +#pragma warning (push) +#pragma warning (disable: 4505) // unreferenced local function has been removed (stb stuff) +#pragma warning (disable: 26812) // [Static Analyzer] The enum type 'xxx' is unscoped. Prefer 'enum class' over 'enum' (Enum.3). +#endif + +#ifdef __GNUC__ +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind +#pragma GCC diagnostic ignored "-Wunused-function" // warning: 'xxxx' defined but not used +#pragma GCC diagnostic ignored "-Wsubobject-linkage" // warning: 'xxxx' has a field 'xxxx' whose type uses the anonymous namespace +#endif + +//------------------------------------------------------------------------- +// Data +//------------------------------------------------------------------------- + +// Default memory allocators +static void* ImGuiFreeTypeDefaultAllocFunc(size_t size, void* user_data) { IM_UNUSED(user_data); return IM_ALLOC(size); } +static void ImGuiFreeTypeDefaultFreeFunc(void* ptr, void* user_data) { IM_UNUSED(user_data); IM_FREE(ptr); } + +// Current memory allocators +static void* (*GImGuiFreeTypeAllocFunc)(size_t size, void* user_data) = ImGuiFreeTypeDefaultAllocFunc; +static void (*GImGuiFreeTypeFreeFunc)(void* ptr, void* user_data) = ImGuiFreeTypeDefaultFreeFunc; +static void* GImGuiFreeTypeAllocatorUserData = nullptr; + +// Lunasvg support +#ifdef IMGUI_ENABLE_FREETYPE_LUNASVG +static FT_Error ImGuiLunasvgPortInit(FT_Pointer* state); +static void ImGuiLunasvgPortFree(FT_Pointer* state); +static FT_Error ImGuiLunasvgPortRender(FT_GlyphSlot slot, FT_Pointer* _state); +static FT_Error ImGuiLunasvgPortPresetSlot(FT_GlyphSlot slot, FT_Bool cache, FT_Pointer* _state); +#endif + +//------------------------------------------------------------------------- +// Code +//------------------------------------------------------------------------- + +namespace +{ + // Glyph metrics: + // -------------- + // + // xmin xmax + // | | + // |<-------- width -------->| + // | | + // | +-------------------------+----------------- ymax + // | | ggggggggg ggggg | ^ ^ + // | | g:::::::::ggg::::g | | | + // | | g:::::::::::::::::g | | | + // | | g::::::ggggg::::::gg | | | + // | | g:::::g g:::::g | | | + // offsetX -|-------->| g:::::g g:::::g | offsetY | + // | | g:::::g g:::::g | | | + // | | g::::::g g:::::g | | | + // | | g:::::::ggggg:::::g | | | + // | | g::::::::::::::::g | | height + // | | gg::::::::::::::g | | | + // baseline ---*---------|---- gggggggg::::::g-----*-------- | + // / | | g:::::g | | + // origin | | gggggg g:::::g | | + // | | g:::::gg gg:::::g | | + // | | g::::::ggg:::::::g | | + // | | gg:::::::::::::g | | + // | | ggg::::::ggg | | + // | | gggggg | v + // | +-------------------------+----------------- ymin + // | | + // |------------- advanceX ----------->| + + // A structure that describe a glyph. + struct GlyphInfo + { + int Width; // Glyph's width in pixels. + int Height; // Glyph's height in pixels. + FT_Int OffsetX; // The distance from the origin ("pen position") to the left of the glyph. + FT_Int OffsetY; // The distance from the origin to the top of the glyph. This is usually a value < 0. + float AdvanceX; // The distance from the origin to the origin of the next glyph. This is usually a value > 0. + bool IsColored; // The glyph is colored + }; + + // Font parameters and metrics. + struct FontInfo + { + uint32_t PixelHeight; // Size this font was generated with. + float Ascender; // The pixel extents above the baseline in pixels (typically positive). + float Descender; // The extents below the baseline in pixels (typically negative). + float LineSpacing; // The baseline-to-baseline distance. Note that it usually is larger than the sum of the ascender and descender taken as absolute values. There is also no guarantee that no glyphs extend above or below subsequent baselines when using this distance. Think of it as a value the designer of the font finds appropriate. + float LineGap; // The spacing in pixels between one row's descent and the next row's ascent. + float MaxAdvanceWidth; // This field gives the maximum horizontal cursor advance for all glyphs in the font. + }; + + // FreeType glyph rasterizer. + // NB: No ctor/dtor, explicitly call Init()/Shutdown() + struct FreeTypeFont + { + bool InitFont(FT_Library ft_library, const ImFontConfig& cfg, unsigned int extra_user_flags); // Initialize from an external data buffer. Doesn't copy data, and you must ensure it stays valid up to this object lifetime. + void CloseFont(); + void SetPixelHeight(int pixel_height); // Change font pixel size. All following calls to RasterizeGlyph() will use this size + const FT_Glyph_Metrics* LoadGlyph(uint32_t in_codepoint); + const FT_Bitmap* RenderGlyphAndGetInfo(GlyphInfo* out_glyph_info); + void BlitGlyph(const FT_Bitmap* ft_bitmap, uint32_t* dst, uint32_t dst_pitch, unsigned char* multiply_table = nullptr); + ~FreeTypeFont() { CloseFont(); } + + // [Internals] + FontInfo Info; // Font descriptor of the current font. + FT_Face Face; + unsigned int UserFlags; // = ImFontConfig::RasterizerFlags + FT_Int32 LoadFlags; + FT_Render_Mode RenderMode; + }; + + // From SDL_ttf: Handy routines for converting from fixed point + #define FT_CEIL(X) (((X + 63) & -64) / 64) + + bool FreeTypeFont::InitFont(FT_Library ft_library, const ImFontConfig& cfg, unsigned int extra_font_builder_flags) + { + FT_Error error = FT_New_Memory_Face(ft_library, (uint8_t*)cfg.FontData, (uint32_t)cfg.FontDataSize, (uint32_t)cfg.FontNo, &Face); + if (error != 0) + return false; + error = FT_Select_Charmap(Face, FT_ENCODING_UNICODE); + if (error != 0) + return false; + + // Convert to FreeType flags (NB: Bold and Oblique are processed separately) + UserFlags = cfg.FontBuilderFlags | extra_font_builder_flags; + + LoadFlags = 0; + if ((UserFlags & ImGuiFreeTypeBuilderFlags_Bitmap) == 0) + LoadFlags |= FT_LOAD_NO_BITMAP; + + if (UserFlags & ImGuiFreeTypeBuilderFlags_NoHinting) + LoadFlags |= FT_LOAD_NO_HINTING; + if (UserFlags & ImGuiFreeTypeBuilderFlags_NoAutoHint) + LoadFlags |= FT_LOAD_NO_AUTOHINT; + if (UserFlags & ImGuiFreeTypeBuilderFlags_ForceAutoHint) + LoadFlags |= FT_LOAD_FORCE_AUTOHINT; + if (UserFlags & ImGuiFreeTypeBuilderFlags_LightHinting) + LoadFlags |= FT_LOAD_TARGET_LIGHT; + else if (UserFlags & ImGuiFreeTypeBuilderFlags_MonoHinting) + LoadFlags |= FT_LOAD_TARGET_MONO; + else + LoadFlags |= FT_LOAD_TARGET_NORMAL; + + if (UserFlags & ImGuiFreeTypeBuilderFlags_Monochrome) + RenderMode = FT_RENDER_MODE_MONO; + else + RenderMode = FT_RENDER_MODE_NORMAL; + + if (UserFlags & ImGuiFreeTypeBuilderFlags_LoadColor) + LoadFlags |= FT_LOAD_COLOR; + + memset(&Info, 0, sizeof(Info)); + SetPixelHeight((uint32_t)cfg.SizePixels); + + return true; + } + + void FreeTypeFont::CloseFont() + { + if (Face) + { + FT_Done_Face(Face); + Face = nullptr; + } + } + + void FreeTypeFont::SetPixelHeight(int pixel_height) + { + // Vuhdo: I'm not sure how to deal with font sizes properly. As far as I understand, currently ImGui assumes that the 'pixel_height' + // is a maximum height of an any given glyph, i.e. it's the sum of font's ascender and descender. Seems strange to me. + // NB: FT_Set_Pixel_Sizes() doesn't seem to get us the same result. + FT_Size_RequestRec req; + req.type = (UserFlags & ImGuiFreeTypeBuilderFlags_Bitmap) ? FT_SIZE_REQUEST_TYPE_NOMINAL : FT_SIZE_REQUEST_TYPE_REAL_DIM; + req.width = 0; + req.height = (uint32_t)pixel_height * 64; + req.horiResolution = 0; + req.vertResolution = 0; + FT_Request_Size(Face, &req); + + // Update font info + FT_Size_Metrics metrics = Face->size->metrics; + Info.PixelHeight = (uint32_t)pixel_height; + Info.Ascender = (float)FT_CEIL(metrics.ascender); + Info.Descender = (float)FT_CEIL(metrics.descender); + Info.LineSpacing = (float)FT_CEIL(metrics.height); + Info.LineGap = (float)FT_CEIL(metrics.height - metrics.ascender + metrics.descender); + Info.MaxAdvanceWidth = (float)FT_CEIL(metrics.max_advance); + } + + const FT_Glyph_Metrics* FreeTypeFont::LoadGlyph(uint32_t codepoint) + { + uint32_t glyph_index = FT_Get_Char_Index(Face, codepoint); + if (glyph_index == 0) + return nullptr; + + // If this crash for you: FreeType 2.11.0 has a crash bug on some bitmap/colored fonts. + // - https://gitlab.freedesktop.org/freetype/freetype/-/issues/1076 + // - https://github.com/ocornut/imgui/issues/4567 + // - https://github.com/ocornut/imgui/issues/4566 + // You can use FreeType 2.10, or the patched version of 2.11.0 in VcPkg, or probably any upcoming FreeType version. + FT_Error error = FT_Load_Glyph(Face, glyph_index, LoadFlags); + if (error) + return nullptr; + + // Need an outline for this to work + FT_GlyphSlot slot = Face->glyph; +#ifdef IMGUI_ENABLE_FREETYPE_LUNASVG + IM_ASSERT(slot->format == FT_GLYPH_FORMAT_OUTLINE || slot->format == FT_GLYPH_FORMAT_BITMAP || slot->format == FT_GLYPH_FORMAT_SVG); +#else +#if ((FREETYPE_MAJOR >= 2) && (FREETYPE_MINOR >= 12)) + IM_ASSERT(slot->format != FT_GLYPH_FORMAT_SVG && "The font contains SVG glyphs, you'll need to enable IMGUI_ENABLE_FREETYPE_LUNASVG in imconfig.h and install required libraries in order to use this font"); +#endif + IM_ASSERT(slot->format == FT_GLYPH_FORMAT_OUTLINE || slot->format == FT_GLYPH_FORMAT_BITMAP); +#endif // IMGUI_ENABLE_FREETYPE_LUNASVG + + // Apply convenience transform (this is not picking from real "Bold"/"Italic" fonts! Merely applying FreeType helper transform. Oblique == Slanting) + if (UserFlags & ImGuiFreeTypeBuilderFlags_Bold) + FT_GlyphSlot_Embolden(slot); + if (UserFlags & ImGuiFreeTypeBuilderFlags_Oblique) + { + FT_GlyphSlot_Oblique(slot); + //FT_BBox bbox; + //FT_Outline_Get_BBox(&slot->outline, &bbox); + //slot->metrics.width = bbox.xMax - bbox.xMin; + //slot->metrics.height = bbox.yMax - bbox.yMin; + } + + return &slot->metrics; + } + + const FT_Bitmap* FreeTypeFont::RenderGlyphAndGetInfo(GlyphInfo* out_glyph_info) + { + FT_GlyphSlot slot = Face->glyph; + FT_Error error = FT_Render_Glyph(slot, RenderMode); + if (error != 0) + return nullptr; + + FT_Bitmap* ft_bitmap = &Face->glyph->bitmap; + out_glyph_info->Width = (int)ft_bitmap->width; + out_glyph_info->Height = (int)ft_bitmap->rows; + out_glyph_info->OffsetX = Face->glyph->bitmap_left; + out_glyph_info->OffsetY = -Face->glyph->bitmap_top; + out_glyph_info->AdvanceX = (float)FT_CEIL(slot->advance.x); + out_glyph_info->IsColored = (ft_bitmap->pixel_mode == FT_PIXEL_MODE_BGRA); + + return ft_bitmap; + } + + void FreeTypeFont::BlitGlyph(const FT_Bitmap* ft_bitmap, uint32_t* dst, uint32_t dst_pitch, unsigned char* multiply_table) + { + IM_ASSERT(ft_bitmap != nullptr); + const uint32_t w = ft_bitmap->width; + const uint32_t h = ft_bitmap->rows; + const uint8_t* src = ft_bitmap->buffer; + const uint32_t src_pitch = ft_bitmap->pitch; + + switch (ft_bitmap->pixel_mode) + { + case FT_PIXEL_MODE_GRAY: // Grayscale image, 1 byte per pixel. + { + if (multiply_table == nullptr) + { + for (uint32_t y = 0; y < h; y++, src += src_pitch, dst += dst_pitch) + for (uint32_t x = 0; x < w; x++) + dst[x] = IM_COL32(255, 255, 255, src[x]); + } + else + { + for (uint32_t y = 0; y < h; y++, src += src_pitch, dst += dst_pitch) + for (uint32_t x = 0; x < w; x++) + dst[x] = IM_COL32(255, 255, 255, multiply_table[src[x]]); + } + break; + } + case FT_PIXEL_MODE_MONO: // Monochrome image, 1 bit per pixel. The bits in each byte are ordered from MSB to LSB. + { + uint8_t color0 = multiply_table ? multiply_table[0] : 0; + uint8_t color1 = multiply_table ? multiply_table[255] : 255; + for (uint32_t y = 0; y < h; y++, src += src_pitch, dst += dst_pitch) + { + uint8_t bits = 0; + const uint8_t* bits_ptr = src; + for (uint32_t x = 0; x < w; x++, bits <<= 1) + { + if ((x & 7) == 0) + bits = *bits_ptr++; + dst[x] = IM_COL32(255, 255, 255, (bits & 0x80) ? color1 : color0); + } + } + break; + } + case FT_PIXEL_MODE_BGRA: + { + // FIXME: Converting pre-multiplied alpha to straight. Doesn't smell good. + #define DE_MULTIPLY(color, alpha) (ImU32)(255.0f * (float)color / (float)alpha + 0.5f) + if (multiply_table == nullptr) + { + for (uint32_t y = 0; y < h; y++, src += src_pitch, dst += dst_pitch) + for (uint32_t x = 0; x < w; x++) + { + uint8_t r = src[x * 4 + 2], g = src[x * 4 + 1], b = src[x * 4], a = src[x * 4 + 3]; + dst[x] = IM_COL32(DE_MULTIPLY(r, a), DE_MULTIPLY(g, a), DE_MULTIPLY(b, a), a); + } + } + else + { + for (uint32_t y = 0; y < h; y++, src += src_pitch, dst += dst_pitch) + { + for (uint32_t x = 0; x < w; x++) + { + uint8_t r = src[x * 4 + 2], g = src[x * 4 + 1], b = src[x * 4], a = src[x * 4 + 3]; + dst[x] = IM_COL32(multiply_table[DE_MULTIPLY(r, a)], multiply_table[DE_MULTIPLY(g, a)], multiply_table[DE_MULTIPLY(b, a)], multiply_table[a]); + } + } + } + #undef DE_MULTIPLY + break; + } + default: + IM_ASSERT(0 && "FreeTypeFont::BlitGlyph(): Unknown bitmap pixel mode!"); + } + } +} // namespace + +#ifndef STB_RECT_PACK_IMPLEMENTATION // in case the user already have an implementation in the _same_ compilation unit (e.g. unity builds) +#ifndef IMGUI_DISABLE_STB_RECT_PACK_IMPLEMENTATION +#define STBRP_ASSERT(x) do { IM_ASSERT(x); } while (0) +#define STBRP_STATIC +#define STB_RECT_PACK_IMPLEMENTATION +#endif +#ifdef IMGUI_STB_RECT_PACK_FILENAME +#include IMGUI_STB_RECT_PACK_FILENAME +#else +#include "imstb_rectpack.h" +#endif +#endif + +struct ImFontBuildSrcGlyphFT +{ + GlyphInfo Info; + uint32_t Codepoint; + unsigned int* BitmapData; // Point within one of the dst_tmp_bitmap_buffers[] array + + ImFontBuildSrcGlyphFT() { memset((void*)this, 0, sizeof(*this)); } +}; + +struct ImFontBuildSrcDataFT +{ + FreeTypeFont Font; + stbrp_rect* Rects; // Rectangle to pack. We first fill in their size and the packer will give us their position. + const ImWchar* SrcRanges; // Ranges as requested by user (user is allowed to request too much, e.g. 0x0020..0xFFFF) + int DstIndex; // Index into atlas->Fonts[] and dst_tmp_array[] + int GlyphsHighest; // Highest requested codepoint + int GlyphsCount; // Glyph count (excluding missing glyphs and glyphs already set by an earlier source font) + ImBitVector GlyphsSet; // Glyph bit map (random access, 1-bit per codepoint. This will be a maximum of 8KB) + ImVector GlyphsList; +}; + +// Temporary data for one destination ImFont* (multiple source fonts can be merged into one destination ImFont) +struct ImFontBuildDstDataFT +{ + int SrcCount; // Number of source fonts targeting this destination font. + int GlyphsHighest; + int GlyphsCount; + ImBitVector GlyphsSet; // This is used to resolve collision when multiple sources are merged into a same destination font. +}; + +bool ImFontAtlasBuildWithFreeTypeEx(FT_Library ft_library, ImFontAtlas* atlas, unsigned int extra_flags) +{ + IM_ASSERT(atlas->ConfigData.Size > 0); + + ImFontAtlasBuildInit(atlas); + + // Clear atlas + atlas->TexID = (ImTextureID)nullptr; + atlas->TexWidth = atlas->TexHeight = 0; + atlas->TexUvScale = ImVec2(0.0f, 0.0f); + atlas->TexUvWhitePixel = ImVec2(0.0f, 0.0f); + atlas->ClearTexData(); + + // Temporary storage for building + bool src_load_color = false; + ImVector src_tmp_array; + ImVector dst_tmp_array; + src_tmp_array.resize(atlas->ConfigData.Size); + dst_tmp_array.resize(atlas->Fonts.Size); + memset((void*)src_tmp_array.Data, 0, (size_t)src_tmp_array.size_in_bytes()); + memset((void*)dst_tmp_array.Data, 0, (size_t)dst_tmp_array.size_in_bytes()); + + // 1. Initialize font loading structure, check font data validity + for (int src_i = 0; src_i < atlas->ConfigData.Size; src_i++) + { + ImFontBuildSrcDataFT& src_tmp = src_tmp_array[src_i]; + ImFontConfig& cfg = atlas->ConfigData[src_i]; + FreeTypeFont& font_face = src_tmp.Font; + IM_ASSERT(cfg.DstFont && (!cfg.DstFont->IsLoaded() || cfg.DstFont->ContainerAtlas == atlas)); + + // Find index from cfg.DstFont (we allow the user to set cfg.DstFont. Also it makes casual debugging nicer than when storing indices) + src_tmp.DstIndex = -1; + for (int output_i = 0; output_i < atlas->Fonts.Size && src_tmp.DstIndex == -1; output_i++) + if (cfg.DstFont == atlas->Fonts[output_i]) + src_tmp.DstIndex = output_i; + IM_ASSERT(src_tmp.DstIndex != -1); // cfg.DstFont not pointing within atlas->Fonts[] array? + if (src_tmp.DstIndex == -1) + return false; + + // Load font + if (!font_face.InitFont(ft_library, cfg, extra_flags)) + return false; + + // Measure highest codepoints + src_load_color |= (cfg.FontBuilderFlags & ImGuiFreeTypeBuilderFlags_LoadColor) != 0; + ImFontBuildDstDataFT& dst_tmp = dst_tmp_array[src_tmp.DstIndex]; + src_tmp.SrcRanges = cfg.GlyphRanges ? cfg.GlyphRanges : atlas->GetGlyphRangesDefault(); + for (const ImWchar* src_range = src_tmp.SrcRanges; src_range[0] && src_range[1]; src_range += 2) + { + // Check for valid range. This may also help detect *some* dangling pointers, because a common + // user error is to setup ImFontConfig::GlyphRanges with a pointer to data that isn't persistent. + IM_ASSERT(src_range[0] <= src_range[1]); + src_tmp.GlyphsHighest = ImMax(src_tmp.GlyphsHighest, (int)src_range[1]); + } + dst_tmp.SrcCount++; + dst_tmp.GlyphsHighest = ImMax(dst_tmp.GlyphsHighest, src_tmp.GlyphsHighest); + } + + // 2. For every requested codepoint, check for their presence in the font data, and handle redundancy or overlaps between source fonts to avoid unused glyphs. + int total_glyphs_count = 0; + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontBuildSrcDataFT& src_tmp = src_tmp_array[src_i]; + ImFontBuildDstDataFT& dst_tmp = dst_tmp_array[src_tmp.DstIndex]; + src_tmp.GlyphsSet.Create(src_tmp.GlyphsHighest + 1); + if (dst_tmp.GlyphsSet.Storage.empty()) + dst_tmp.GlyphsSet.Create(dst_tmp.GlyphsHighest + 1); + + for (const ImWchar* src_range = src_tmp.SrcRanges; src_range[0] && src_range[1]; src_range += 2) + for (int codepoint = src_range[0]; codepoint <= (int)src_range[1]; codepoint++) + { + if (dst_tmp.GlyphsSet.TestBit(codepoint)) // Don't overwrite existing glyphs. We could make this an option (e.g. MergeOverwrite) + continue; + uint32_t glyph_index = FT_Get_Char_Index(src_tmp.Font.Face, codepoint); // It is actually in the font? (FIXME-OPT: We are not storing the glyph_index..) + if (glyph_index == 0) + continue; + + // Add to avail set/counters + src_tmp.GlyphsCount++; + dst_tmp.GlyphsCount++; + src_tmp.GlyphsSet.SetBit(codepoint); + dst_tmp.GlyphsSet.SetBit(codepoint); + total_glyphs_count++; + } + } + + // 3. Unpack our bit map into a flat list (we now have all the Unicode points that we know are requested _and_ available _and_ not overlapping another) + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontBuildSrcDataFT& src_tmp = src_tmp_array[src_i]; + src_tmp.GlyphsList.reserve(src_tmp.GlyphsCount); + + IM_ASSERT(sizeof(src_tmp.GlyphsSet.Storage.Data[0]) == sizeof(ImU32)); + const ImU32* it_begin = src_tmp.GlyphsSet.Storage.begin(); + const ImU32* it_end = src_tmp.GlyphsSet.Storage.end(); + for (const ImU32* it = it_begin; it < it_end; it++) + if (ImU32 entries_32 = *it) + for (ImU32 bit_n = 0; bit_n < 32; bit_n++) + if (entries_32 & ((ImU32)1 << bit_n)) + { + ImFontBuildSrcGlyphFT src_glyph; + src_glyph.Codepoint = (ImWchar)(((it - it_begin) << 5) + bit_n); + //src_glyph.GlyphIndex = 0; // FIXME-OPT: We had this info in the previous step and lost it.. + src_tmp.GlyphsList.push_back(src_glyph); + } + src_tmp.GlyphsSet.Clear(); + IM_ASSERT(src_tmp.GlyphsList.Size == src_tmp.GlyphsCount); + } + for (int dst_i = 0; dst_i < dst_tmp_array.Size; dst_i++) + dst_tmp_array[dst_i].GlyphsSet.Clear(); + dst_tmp_array.clear(); + + // Allocate packing character data and flag packed characters buffer as non-packed (x0=y0=x1=y1=0) + // (We technically don't need to zero-clear buf_rects, but let's do it for the sake of sanity) + ImVector buf_rects; + buf_rects.resize(total_glyphs_count); + memset(buf_rects.Data, 0, (size_t)buf_rects.size_in_bytes()); + + // Allocate temporary rasterization data buffers. + // We could not find a way to retrieve accurate glyph size without rendering them. + // (e.g. slot->metrics->width not always matching bitmap->width, especially considering the Oblique transform) + // We allocate in chunks of 256 KB to not waste too much extra memory ahead. Hopefully users of FreeType won't mind the temporary allocations. + const int BITMAP_BUFFERS_CHUNK_SIZE = 256 * 1024; + int buf_bitmap_current_used_bytes = 0; + ImVector buf_bitmap_buffers; + buf_bitmap_buffers.push_back((unsigned char*)IM_ALLOC(BITMAP_BUFFERS_CHUNK_SIZE)); + + // 4. Gather glyphs sizes so we can pack them in our virtual canvas. + // 8. Render/rasterize font characters into the texture + int total_surface = 0; + int buf_rects_out_n = 0; + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontBuildSrcDataFT& src_tmp = src_tmp_array[src_i]; + ImFontConfig& cfg = atlas->ConfigData[src_i]; + if (src_tmp.GlyphsCount == 0) + continue; + + src_tmp.Rects = &buf_rects[buf_rects_out_n]; + buf_rects_out_n += src_tmp.GlyphsCount; + + // Compute multiply table if requested + const bool multiply_enabled = (cfg.RasterizerMultiply != 1.0f); + unsigned char multiply_table[256]; + if (multiply_enabled) + ImFontAtlasBuildMultiplyCalcLookupTable(multiply_table, cfg.RasterizerMultiply); + + // Gather the sizes of all rectangles we will need to pack + const int padding = atlas->TexGlyphPadding; + for (int glyph_i = 0; glyph_i < src_tmp.GlyphsList.Size; glyph_i++) + { + ImFontBuildSrcGlyphFT& src_glyph = src_tmp.GlyphsList[glyph_i]; + + const FT_Glyph_Metrics* metrics = src_tmp.Font.LoadGlyph(src_glyph.Codepoint); + if (metrics == nullptr) + continue; + + // Render glyph into a bitmap (currently held by FreeType) + const FT_Bitmap* ft_bitmap = src_tmp.Font.RenderGlyphAndGetInfo(&src_glyph.Info); + if (ft_bitmap == nullptr) + continue; + + // Allocate new temporary chunk if needed + const int bitmap_size_in_bytes = src_glyph.Info.Width * src_glyph.Info.Height * 4; + if (buf_bitmap_current_used_bytes + bitmap_size_in_bytes > BITMAP_BUFFERS_CHUNK_SIZE) + { + buf_bitmap_current_used_bytes = 0; + buf_bitmap_buffers.push_back((unsigned char*)IM_ALLOC(BITMAP_BUFFERS_CHUNK_SIZE)); + } + IM_ASSERT(buf_bitmap_current_used_bytes + bitmap_size_in_bytes <= BITMAP_BUFFERS_CHUNK_SIZE); // We could probably allocate custom-sized buffer instead. + + // Blit rasterized pixels to our temporary buffer and keep a pointer to it. + src_glyph.BitmapData = (unsigned int*)(buf_bitmap_buffers.back() + buf_bitmap_current_used_bytes); + buf_bitmap_current_used_bytes += bitmap_size_in_bytes; + src_tmp.Font.BlitGlyph(ft_bitmap, src_glyph.BitmapData, src_glyph.Info.Width, multiply_enabled ? multiply_table : nullptr); + + src_tmp.Rects[glyph_i].w = (stbrp_coord)(src_glyph.Info.Width + padding); + src_tmp.Rects[glyph_i].h = (stbrp_coord)(src_glyph.Info.Height + padding); + total_surface += src_tmp.Rects[glyph_i].w * src_tmp.Rects[glyph_i].h; + } + } + + // We need a width for the skyline algorithm, any width! + // The exact width doesn't really matter much, but some API/GPU have texture size limitations and increasing width can decrease height. + // User can override TexDesiredWidth and TexGlyphPadding if they wish, otherwise we use a simple heuristic to select the width based on expected surface. + const int surface_sqrt = (int)ImSqrt((float)total_surface) + 1; + atlas->TexHeight = 0; + if (atlas->TexDesiredWidth > 0) + atlas->TexWidth = atlas->TexDesiredWidth; + else + atlas->TexWidth = (surface_sqrt >= 4096 * 0.7f) ? 4096 : (surface_sqrt >= 2048 * 0.7f) ? 2048 : (surface_sqrt >= 1024 * 0.7f) ? 1024 : 512; + + // 5. Start packing + // Pack our extra data rectangles first, so it will be on the upper-left corner of our texture (UV will have small values). + const int TEX_HEIGHT_MAX = 1024 * 32; + const int num_nodes_for_packing_algorithm = atlas->TexWidth - atlas->TexGlyphPadding; + ImVector pack_nodes; + pack_nodes.resize(num_nodes_for_packing_algorithm); + stbrp_context pack_context; + stbrp_init_target(&pack_context, atlas->TexWidth - atlas->TexGlyphPadding, TEX_HEIGHT_MAX - atlas->TexGlyphPadding, pack_nodes.Data, pack_nodes.Size); + ImFontAtlasBuildPackCustomRects(atlas, &pack_context); + + // 6. Pack each source font. No rendering yet, we are working with rectangles in an infinitely tall texture at this point. + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontBuildSrcDataFT& src_tmp = src_tmp_array[src_i]; + if (src_tmp.GlyphsCount == 0) + continue; + + stbrp_pack_rects(&pack_context, src_tmp.Rects, src_tmp.GlyphsCount); + + // Extend texture height and mark missing glyphs as non-packed so we won't render them. + // FIXME: We are not handling packing failure here (would happen if we got off TEX_HEIGHT_MAX or if a single if larger than TexWidth?) + for (int glyph_i = 0; glyph_i < src_tmp.GlyphsCount; glyph_i++) + if (src_tmp.Rects[glyph_i].was_packed) + atlas->TexHeight = ImMax(atlas->TexHeight, src_tmp.Rects[glyph_i].y + src_tmp.Rects[glyph_i].h); + } + + // 7. Allocate texture + atlas->TexHeight = (atlas->Flags & ImFontAtlasFlags_NoPowerOfTwoHeight) ? (atlas->TexHeight + 1) : ImUpperPowerOfTwo(atlas->TexHeight); + atlas->TexUvScale = ImVec2(1.0f / atlas->TexWidth, 1.0f / atlas->TexHeight); + if (src_load_color) + { + size_t tex_size = (size_t)atlas->TexWidth * atlas->TexHeight * 4; + atlas->TexPixelsRGBA32 = (unsigned int*)IM_ALLOC(tex_size); + memset(atlas->TexPixelsRGBA32, 0, tex_size); + } + else + { + size_t tex_size = (size_t)atlas->TexWidth * atlas->TexHeight * 1; + atlas->TexPixelsAlpha8 = (unsigned char*)IM_ALLOC(tex_size); + memset(atlas->TexPixelsAlpha8, 0, tex_size); + } + + // 8. Copy rasterized font characters back into the main texture + // 9. Setup ImFont and glyphs for runtime + bool tex_use_colors = false; + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontBuildSrcDataFT& src_tmp = src_tmp_array[src_i]; + if (src_tmp.GlyphsCount == 0) + continue; + + // When merging fonts with MergeMode=true: + // - We can have multiple input fonts writing into a same destination font. + // - dst_font->ConfigData is != from cfg which is our source configuration. + ImFontConfig& cfg = atlas->ConfigData[src_i]; + ImFont* dst_font = cfg.DstFont; + + const float ascent = src_tmp.Font.Info.Ascender; + const float descent = src_tmp.Font.Info.Descender; + ImFontAtlasBuildSetupFont(atlas, dst_font, &cfg, ascent, descent); + const float font_off_x = cfg.GlyphOffset.x; + const float font_off_y = cfg.GlyphOffset.y + IM_ROUND(dst_font->Ascent); + + const int padding = atlas->TexGlyphPadding; + for (int glyph_i = 0; glyph_i < src_tmp.GlyphsCount; glyph_i++) + { + ImFontBuildSrcGlyphFT& src_glyph = src_tmp.GlyphsList[glyph_i]; + stbrp_rect& pack_rect = src_tmp.Rects[glyph_i]; + IM_ASSERT(pack_rect.was_packed); + if (pack_rect.w == 0 && pack_rect.h == 0) + continue; + + GlyphInfo& info = src_glyph.Info; + IM_ASSERT(info.Width + padding <= pack_rect.w); + IM_ASSERT(info.Height + padding <= pack_rect.h); + const int tx = pack_rect.x + padding; + const int ty = pack_rect.y + padding; + + // Register glyph + float x0 = info.OffsetX + font_off_x; + float y0 = info.OffsetY + font_off_y; + float x1 = x0 + info.Width; + float y1 = y0 + info.Height; + float u0 = (tx) / (float)atlas->TexWidth; + float v0 = (ty) / (float)atlas->TexHeight; + float u1 = (tx + info.Width) / (float)atlas->TexWidth; + float v1 = (ty + info.Height) / (float)atlas->TexHeight; + dst_font->AddGlyph(&cfg, (ImWchar)src_glyph.Codepoint, x0, y0, x1, y1, u0, v0, u1, v1, info.AdvanceX); + + ImFontGlyph* dst_glyph = &dst_font->Glyphs.back(); + IM_ASSERT(dst_glyph->Codepoint == src_glyph.Codepoint); + if (src_glyph.Info.IsColored) + dst_glyph->Colored = tex_use_colors = true; + + // Blit from temporary buffer to final texture + size_t blit_src_stride = (size_t)src_glyph.Info.Width; + size_t blit_dst_stride = (size_t)atlas->TexWidth; + unsigned int* blit_src = src_glyph.BitmapData; + if (atlas->TexPixelsAlpha8 != nullptr) + { + unsigned char* blit_dst = atlas->TexPixelsAlpha8 + (ty * blit_dst_stride) + tx; + for (int y = 0; y < info.Height; y++, blit_dst += blit_dst_stride, blit_src += blit_src_stride) + for (int x = 0; x < info.Width; x++) + blit_dst[x] = (unsigned char)((blit_src[x] >> IM_COL32_A_SHIFT) & 0xFF); + } + else + { + unsigned int* blit_dst = atlas->TexPixelsRGBA32 + (ty * blit_dst_stride) + tx; + for (int y = 0; y < info.Height; y++, blit_dst += blit_dst_stride, blit_src += blit_src_stride) + for (int x = 0; x < info.Width; x++) + blit_dst[x] = blit_src[x]; + } + } + + src_tmp.Rects = nullptr; + } + atlas->TexPixelsUseColors = tex_use_colors; + + // Cleanup + for (int buf_i = 0; buf_i < buf_bitmap_buffers.Size; buf_i++) + IM_FREE(buf_bitmap_buffers[buf_i]); + src_tmp_array.clear_destruct(); + + ImFontAtlasBuildFinish(atlas); + + return true; +} + +// FreeType memory allocation callbacks +static void* FreeType_Alloc(FT_Memory /*memory*/, long size) +{ + return GImGuiFreeTypeAllocFunc((size_t)size, GImGuiFreeTypeAllocatorUserData); +} + +static void FreeType_Free(FT_Memory /*memory*/, void* block) +{ + GImGuiFreeTypeFreeFunc(block, GImGuiFreeTypeAllocatorUserData); +} + +static void* FreeType_Realloc(FT_Memory /*memory*/, long cur_size, long new_size, void* block) +{ + // Implement realloc() as we don't ask user to provide it. + if (block == nullptr) + return GImGuiFreeTypeAllocFunc((size_t)new_size, GImGuiFreeTypeAllocatorUserData); + + if (new_size == 0) + { + GImGuiFreeTypeFreeFunc(block, GImGuiFreeTypeAllocatorUserData); + return nullptr; + } + + if (new_size > cur_size) + { + void* new_block = GImGuiFreeTypeAllocFunc((size_t)new_size, GImGuiFreeTypeAllocatorUserData); + memcpy(new_block, block, (size_t)cur_size); + GImGuiFreeTypeFreeFunc(block, GImGuiFreeTypeAllocatorUserData); + return new_block; + } + + return block; +} + +static bool ImFontAtlasBuildWithFreeType(ImFontAtlas* atlas) +{ + // FreeType memory management: https://www.freetype.org/freetype2/docs/design/design-4.html + FT_MemoryRec_ memory_rec = {}; + memory_rec.user = nullptr; + memory_rec.alloc = &FreeType_Alloc; + memory_rec.free = &FreeType_Free; + memory_rec.realloc = &FreeType_Realloc; + + // https://www.freetype.org/freetype2/docs/reference/ft2-module_management.html#FT_New_Library + FT_Library ft_library; + FT_Error error = FT_New_Library(&memory_rec, &ft_library); + if (error != 0) + return false; + + // If you don't call FT_Add_Default_Modules() the rest of code may work, but FreeType won't use our custom allocator. + FT_Add_Default_Modules(ft_library); + +#ifdef IMGUI_ENABLE_FREETYPE_LUNASVG + // Install svg hooks for FreeType + // https://freetype.org/freetype2/docs/reference/ft2-properties.html#svg-hooks + // https://freetype.org/freetype2/docs/reference/ft2-svg_fonts.html#svg_fonts + SVG_RendererHooks hooks = { ImGuiLunasvgPortInit, ImGuiLunasvgPortFree, ImGuiLunasvgPortRender, ImGuiLunasvgPortPresetSlot }; + FT_Property_Set(ft_library, "ot-svg", "svg-hooks", &hooks); +#endif // IMGUI_ENABLE_FREETYPE_LUNASVG + + bool ret = ImFontAtlasBuildWithFreeTypeEx(ft_library, atlas, atlas->FontBuilderFlags); + FT_Done_Library(ft_library); + + return ret; +} + +const ImFontBuilderIO* ImGuiFreeType::GetBuilderForFreeType() +{ + static ImFontBuilderIO io; + io.FontBuilder_Build = ImFontAtlasBuildWithFreeType; + return &io; +} + +void ImGuiFreeType::SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void (*free_func)(void* ptr, void* user_data), void* user_data) +{ + GImGuiFreeTypeAllocFunc = alloc_func; + GImGuiFreeTypeFreeFunc = free_func; + GImGuiFreeTypeAllocatorUserData = user_data; +} + +#ifdef IMGUI_ENABLE_FREETYPE_LUNASVG +// For more details, see https://gitlab.freedesktop.org/freetype/freetype-demos/-/blob/master/src/rsvg-port.c +// The original code from the demo is licensed under CeCILL-C Free Software License Agreement (https://gitlab.freedesktop.org/freetype/freetype/-/blob/master/LICENSE.TXT) +struct LunasvgPortState +{ + FT_Error err = FT_Err_Ok; + lunasvg::Matrix matrix; + std::unique_ptr svg = nullptr; +}; + +static FT_Error ImGuiLunasvgPortInit(FT_Pointer* _state) +{ + *_state = IM_NEW(LunasvgPortState)(); + return FT_Err_Ok; +} + +static void ImGuiLunasvgPortFree(FT_Pointer* _state) +{ + IM_DELETE(*_state); +} + +static FT_Error ImGuiLunasvgPortRender(FT_GlyphSlot slot, FT_Pointer* _state) +{ + LunasvgPortState* state = *(LunasvgPortState**)_state; + + // If there was an error while loading the svg in ImGuiLunasvgPortPresetSlot(), the renderer hook still get called, so just returns the error. + if (state->err != FT_Err_Ok) + return state->err; + + // rows is height, pitch (or stride) equals to width * sizeof(int32) + lunasvg::Bitmap bitmap((uint8_t*)slot->bitmap.buffer, slot->bitmap.width, slot->bitmap.rows, slot->bitmap.pitch); + state->svg->setMatrix(state->svg->matrix().identity()); // Reset the svg matrix to the default value + state->svg->render(bitmap, state->matrix); // state->matrix is already scaled and translated + state->err = FT_Err_Ok; + return state->err; +} + +static FT_Error ImGuiLunasvgPortPresetSlot(FT_GlyphSlot slot, FT_Bool cache, FT_Pointer* _state) +{ + FT_SVG_Document document = (FT_SVG_Document)slot->other; + LunasvgPortState* state = *(LunasvgPortState**)_state; + FT_Size_Metrics& metrics = document->metrics; + + // This function is called twice, once in the FT_Load_Glyph() and another right before ImGuiLunasvgPortRender(). + // If it's the latter, don't do anything because it's // already done in the former. + if (cache) + return state->err; + + state->svg = lunasvg::Document::loadFromData((const char*)document->svg_document, document->svg_document_length); + if (state->svg == nullptr) + { + state->err = FT_Err_Invalid_SVG_Document; + return state->err; + } + + lunasvg::Box box = state->svg->box(); + double scale = std::min(metrics.x_ppem / box.w, metrics.y_ppem / box.h); + double xx = (double)document->transform.xx / (1 << 16); + double xy = -(double)document->transform.xy / (1 << 16); + double yx = -(double)document->transform.yx / (1 << 16); + double yy = (double)document->transform.yy / (1 << 16); + double x0 = (double)document->delta.x / 64 * box.w / metrics.x_ppem; + double y0 = -(double)document->delta.y / 64 * box.h / metrics.y_ppem; + + // Scale and transform, we don't translate the svg yet + state->matrix.identity(); + state->matrix.scale(scale, scale); + state->matrix.transform(xx, xy, yx, yy, x0, y0); + state->svg->setMatrix(state->matrix); + + // Pre-translate the matrix for the rendering step + state->matrix.translate(-box.x, -box.y); + + // Get the box again after the transformation + box = state->svg->box(); + + // Calculate the bitmap size + slot->bitmap_left = FT_Int(box.x); + slot->bitmap_top = FT_Int(-box.y); + slot->bitmap.rows = (unsigned int)(ImCeil((float)box.h)); + slot->bitmap.width = (unsigned int)(ImCeil((float)box.w)); + slot->bitmap.pitch = slot->bitmap.width * 4; + slot->bitmap.pixel_mode = FT_PIXEL_MODE_BGRA; + + // Compute all the bearings and set them correctly. The outline is scaled already, we just need to use the bounding box. + double metrics_width = box.w; + double metrics_height = box.h; + double horiBearingX = box.x; + double horiBearingY = -box.y; + double vertBearingX = slot->metrics.horiBearingX / 64.0 - slot->metrics.horiAdvance / 64.0 / 2.0; + double vertBearingY = (slot->metrics.vertAdvance / 64.0 - slot->metrics.height / 64.0) / 2.0; + slot->metrics.width = FT_Pos(IM_ROUND(metrics_width * 64.0)); // Using IM_ROUND() assume width and height are positive + slot->metrics.height = FT_Pos(IM_ROUND(metrics_height * 64.0)); + slot->metrics.horiBearingX = FT_Pos(horiBearingX * 64); + slot->metrics.horiBearingY = FT_Pos(horiBearingY * 64); + slot->metrics.vertBearingX = FT_Pos(vertBearingX * 64); + slot->metrics.vertBearingY = FT_Pos(vertBearingY * 64); + + if (slot->metrics.vertAdvance == 0) + slot->metrics.vertAdvance = FT_Pos(metrics_height * 1.2 * 64.0); + + state->err = FT_Err_Ok; + return state->err; +} + +#endif // #ifdef IMGUI_ENABLE_FREETYPE_LUNASVG + +//----------------------------------------------------------------------------- + +#ifdef __GNUC__ +#pragma GCC diagnostic pop +#endif + +#ifdef _MSC_VER +#pragma warning (pop) +#endif + +#endif // #ifndef IMGUI_DISABLE diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_freetype.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_freetype.h new file mode 100644 index 0000000..cc58ba6 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_freetype.h @@ -0,0 +1,52 @@ +// dear imgui: FreeType font builder (used as a replacement for the stb_truetype builder) +// (headers) + +#pragma once +#include "imgui.h" // IMGUI_API +#ifndef IMGUI_DISABLE + +// Forward declarations +struct ImFontAtlas; +struct ImFontBuilderIO; + +// Hinting greatly impacts visuals (and glyph sizes). +// - By default, hinting is enabled and the font's native hinter is preferred over the auto-hinter. +// - When disabled, FreeType generates blurrier glyphs, more or less matches the stb_truetype.h +// - The Default hinting mode usually looks good, but may distort glyphs in an unusual way. +// - The Light hinting mode generates fuzzier glyphs but better matches Microsoft's rasterizer. +// You can set those flags globaly in ImFontAtlas::FontBuilderFlags +// You can set those flags on a per font basis in ImFontConfig::FontBuilderFlags +enum ImGuiFreeTypeBuilderFlags +{ + ImGuiFreeTypeBuilderFlags_NoHinting = 1 << 0, // Disable hinting. This generally generates 'blurrier' bitmap glyphs when the glyph are rendered in any of the anti-aliased modes. + ImGuiFreeTypeBuilderFlags_NoAutoHint = 1 << 1, // Disable auto-hinter. + ImGuiFreeTypeBuilderFlags_ForceAutoHint = 1 << 2, // Indicates that the auto-hinter is preferred over the font's native hinter. + ImGuiFreeTypeBuilderFlags_LightHinting = 1 << 3, // A lighter hinting algorithm for gray-level modes. Many generated glyphs are fuzzier but better resemble their original shape. This is achieved by snapping glyphs to the pixel grid only vertically (Y-axis), as is done by Microsoft's ClearType and Adobe's proprietary font renderer. This preserves inter-glyph spacing in horizontal text. + ImGuiFreeTypeBuilderFlags_MonoHinting = 1 << 4, // Strong hinting algorithm that should only be used for monochrome output. + ImGuiFreeTypeBuilderFlags_Bold = 1 << 5, // Styling: Should we artificially embolden the font? + ImGuiFreeTypeBuilderFlags_Oblique = 1 << 6, // Styling: Should we slant the font, emulating italic style? + ImGuiFreeTypeBuilderFlags_Monochrome = 1 << 7, // Disable anti-aliasing. Combine this with MonoHinting for best results! + ImGuiFreeTypeBuilderFlags_LoadColor = 1 << 8, // Enable FreeType color-layered glyphs + ImGuiFreeTypeBuilderFlags_Bitmap = 1 << 9 // Enable FreeType bitmap glyphs +}; + +namespace ImGuiFreeType +{ + // This is automatically assigned when using '#define IMGUI_ENABLE_FREETYPE'. + // If you need to dynamically select between multiple builders: + // - you can manually assign this builder with 'atlas->FontBuilderIO = ImGuiFreeType::GetBuilderForFreeType()' + // - prefer deep-copying this into your own ImFontBuilderIO instance if you use hot-reloading that messes up static data. + IMGUI_API const ImFontBuilderIO* GetBuilderForFreeType(); + + // Override allocators. By default ImGuiFreeType will use IM_ALLOC()/IM_FREE() + // However, as FreeType does lots of allocations we provide a way for the user to redirect it to a separate memory heap if desired. + IMGUI_API void SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void (*free_func)(void* ptr, void* user_data), void* user_data = nullptr); + + // Obsolete names (will be removed soon) + // Prefer using '#define IMGUI_ENABLE_FREETYPE' +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + static inline bool BuildFontAtlas(ImFontAtlas* atlas, unsigned int flags = 0) { atlas->FontBuilderIO = GetBuilderForFreeType(); atlas->FontBuilderFlags = flags; return atlas->Build(); } +#endif +} + +#endif // #ifndef IMGUI_DISABLE diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_impl_dx11.cpp b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_impl_dx11.cpp new file mode 100644 index 0000000..b2d85e4 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_impl_dx11.cpp @@ -0,0 +1,602 @@ +// dear imgui: Renderer Backend for DirectX11 +// This needs to be used along with a Platform Backend (e.g. Win32) + +// Implemented features: +// [X] Renderer: User texture binding. Use 'ID3D11ShaderResourceView*' as ImTextureID. Read the FAQ about ImTextureID! +// [X] Renderer: Large meshes support (64k+ vertices) with 16-bit indices. + +// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this. +// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need. +// If you are new to Dear ImGui, read documentation from the docs/ folder + read the top of imgui.cpp. +// Read online: https://github.com/ocornut/imgui/tree/master/docs + +// CHANGELOG +// (minor and older changes stripped away, please see git history for details) +// 2022-10-11: Using 'nullptr' instead of 'NULL' as per our switch to C++11. +// 2021-06-29: Reorganized backend to pull data from a single structure to facilitate usage with multiple-contexts (all g_XXXX access changed to bd->XXXX). +// 2021-05-19: DirectX11: Replaced direct access to ImDrawCmd::TextureId with a call to ImDrawCmd::GetTexID(). (will become a requirement) +// 2021-02-18: DirectX11: Change blending equation to preserve alpha in output buffer. +// 2019-08-01: DirectX11: Fixed code querying the Geometry Shader state (would generally error with Debug layer enabled). +// 2019-07-21: DirectX11: Backup, clear and restore Geometry Shader is any is bound when calling ImGui_ImplDX10_RenderDrawData. Clearing Hull/Domain/Compute shaders without backup/restore. +// 2019-05-29: DirectX11: Added support for large mesh (64K+ vertices), enable ImGuiBackendFlags_RendererHasVtxOffset flag. +// 2019-04-30: DirectX11: Added support for special ImDrawCallback_ResetRenderState callback to reset render state. +// 2018-12-03: Misc: Added #pragma comment statement to automatically link with d3dcompiler.lib when using D3DCompile(). +// 2018-11-30: Misc: Setting up io.BackendRendererName so it can be displayed in the About Window. +// 2018-08-01: DirectX11: Querying for IDXGIFactory instead of IDXGIFactory1 to increase compatibility. +// 2018-07-13: DirectX11: Fixed unreleased resources in Init and Shutdown functions. +// 2018-06-08: Misc: Extracted imgui_impl_dx11.cpp/.h away from the old combined DX11+Win32 example. +// 2018-06-08: DirectX11: Use draw_data->DisplayPos and draw_data->DisplaySize to setup projection matrix and clipping rectangle. +// 2018-02-16: Misc: Obsoleted the io.RenderDrawListsFn callback and exposed ImGui_ImplDX11_RenderDrawData() in the .h file so you can call it yourself. +// 2018-02-06: Misc: Removed call to ImGui::Shutdown() which is not available from 1.60 WIP, user needs to call CreateContext/DestroyContext themselves. +// 2016-05-07: DirectX11: Disabling depth-write. + +#include "imgui.h" +#ifndef IMGUI_DISABLE +#include "imgui_impl_dx11.h" + +// DirectX +#include +#include +#include +#ifdef _MSC_VER +#pragma comment(lib, "d3dcompiler") // Automatically link with d3dcompiler.lib as we are using D3DCompile() below. +#endif + +// DirectX11 data +struct ImGui_ImplDX11_Data +{ + ID3D11Device* pd3dDevice; + ID3D11DeviceContext* pd3dDeviceContext; + IDXGIFactory* pFactory; + ID3D11Buffer* pVB; + ID3D11Buffer* pIB; + ID3D11VertexShader* pVertexShader; + ID3D11InputLayout* pInputLayout; + ID3D11Buffer* pVertexConstantBuffer; + ID3D11PixelShader* pPixelShader; + ID3D11SamplerState* pFontSampler; + ID3D11ShaderResourceView* pFontTextureView; + ID3D11RasterizerState* pRasterizerState; + ID3D11BlendState* pBlendState; + ID3D11DepthStencilState* pDepthStencilState; + int VertexBufferSize; + int IndexBufferSize; + + ImGui_ImplDX11_Data() { memset((void*)this, 0, sizeof(*this)); VertexBufferSize = 5000; IndexBufferSize = 10000; } +}; + +struct VERTEX_CONSTANT_BUFFER_DX11 +{ + float mvp[4][4]; +}; + +// Backend data stored in io.BackendRendererUserData to allow support for multiple Dear ImGui contexts +// It is STRONGLY preferred that you use docking branch with multi-viewports (== single Dear ImGui context + multiple windows) instead of multiple Dear ImGui contexts. +static ImGui_ImplDX11_Data* ImGui_ImplDX11_GetBackendData() +{ + return ImGui::GetCurrentContext() ? (ImGui_ImplDX11_Data*)ImGui::GetIO().BackendRendererUserData : nullptr; +} + +// Functions +void ImGui_ImplDX11_SetupRenderState(ImDrawData* draw_data, ID3D11DeviceContext* ctx) +{ + ImGui_ImplDX11_Data* bd = ImGui_ImplDX11_GetBackendData(); + + // Setup viewport + D3D11_VIEWPORT vp; + memset(&vp, 0, sizeof(D3D11_VIEWPORT)); + vp.Width = draw_data->DisplaySize.x; + vp.Height = draw_data->DisplaySize.y; + vp.MinDepth = 0.0f; + vp.MaxDepth = 1.0f; + vp.TopLeftX = vp.TopLeftY = 0; + ctx->RSSetViewports(1, &vp); + + // Setup shader and vertex buffers + unsigned int stride = sizeof(ImDrawVert); + unsigned int offset = 0; + ctx->IASetInputLayout(bd->pInputLayout); + ctx->IASetVertexBuffers(0, 1, &bd->pVB, &stride, &offset); + ctx->IASetIndexBuffer(bd->pIB, sizeof(ImDrawIdx) == 2 ? DXGI_FORMAT_R16_UINT : DXGI_FORMAT_R32_UINT, 0); + ctx->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST); + ctx->VSSetShader(bd->pVertexShader, nullptr, 0); + ctx->VSSetConstantBuffers(0, 1, &bd->pVertexConstantBuffer); + ctx->PSSetShader(bd->pPixelShader, nullptr, 0); + ctx->PSSetSamplers(0, 1, &bd->pFontSampler); + ctx->GSSetShader(nullptr, nullptr, 0); + ctx->HSSetShader(nullptr, nullptr, 0); // In theory we should backup and restore this as well.. very infrequently used.. + ctx->DSSetShader(nullptr, nullptr, 0); // In theory we should backup and restore this as well.. very infrequently used.. + ctx->CSSetShader(nullptr, nullptr, 0); // In theory we should backup and restore this as well.. very infrequently used.. + + // Setup blend state + const float blend_factor[4] = { 0.f, 0.f, 0.f, 0.f }; + ctx->OMSetBlendState(bd->pBlendState, blend_factor, 0xffffffff); + ctx->OMSetDepthStencilState(bd->pDepthStencilState, 0); + ctx->RSSetState(bd->pRasterizerState); +} + +// Render function +void ImGui_ImplDX11_RenderDrawData(ImDrawData* draw_data) +{ + // Avoid rendering when minimized + if (draw_data->DisplaySize.x <= 0.0f || draw_data->DisplaySize.y <= 0.0f) + return; + + ImGui_ImplDX11_Data* bd = ImGui_ImplDX11_GetBackendData(); + ID3D11DeviceContext* ctx = bd->pd3dDeviceContext; + + // Create and grow vertex/index buffers if needed + if (!bd->pVB || bd->VertexBufferSize < draw_data->TotalVtxCount) + { + if (bd->pVB) { bd->pVB->Release(); bd->pVB = nullptr; } + bd->VertexBufferSize = draw_data->TotalVtxCount + 5000; + D3D11_BUFFER_DESC desc; + memset(&desc, 0, sizeof(D3D11_BUFFER_DESC)); + desc.Usage = D3D11_USAGE_DYNAMIC; + desc.ByteWidth = bd->VertexBufferSize * sizeof(ImDrawVert); + desc.BindFlags = D3D11_BIND_VERTEX_BUFFER; + desc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + desc.MiscFlags = 0; + if (bd->pd3dDevice->CreateBuffer(&desc, nullptr, &bd->pVB) < 0) + return; + } + if (!bd->pIB || bd->IndexBufferSize < draw_data->TotalIdxCount) + { + if (bd->pIB) { bd->pIB->Release(); bd->pIB = nullptr; } + bd->IndexBufferSize = draw_data->TotalIdxCount + 10000; + D3D11_BUFFER_DESC desc; + memset(&desc, 0, sizeof(D3D11_BUFFER_DESC)); + desc.Usage = D3D11_USAGE_DYNAMIC; + desc.ByteWidth = bd->IndexBufferSize * sizeof(ImDrawIdx); + desc.BindFlags = D3D11_BIND_INDEX_BUFFER; + desc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + if (bd->pd3dDevice->CreateBuffer(&desc, nullptr, &bd->pIB) < 0) + return; + } + + // Upload vertex/index data into a single contiguous GPU buffer + D3D11_MAPPED_SUBRESOURCE vtx_resource, idx_resource; + if (ctx->Map(bd->pVB, 0, D3D11_MAP_WRITE_DISCARD, 0, &vtx_resource) != S_OK) + return; + if (ctx->Map(bd->pIB, 0, D3D11_MAP_WRITE_DISCARD, 0, &idx_resource) != S_OK) + return; + ImDrawVert* vtx_dst = (ImDrawVert*)vtx_resource.pData; + ImDrawIdx* idx_dst = (ImDrawIdx*)idx_resource.pData; + for (int n = 0; n < draw_data->CmdListsCount; n++) + { + const ImDrawList* cmd_list = draw_data->CmdLists[n]; + memcpy(vtx_dst, cmd_list->VtxBuffer.Data, cmd_list->VtxBuffer.Size * sizeof(ImDrawVert)); + memcpy(idx_dst, cmd_list->IdxBuffer.Data, cmd_list->IdxBuffer.Size * sizeof(ImDrawIdx)); + vtx_dst += cmd_list->VtxBuffer.Size; + idx_dst += cmd_list->IdxBuffer.Size; + } + ctx->Unmap(bd->pVB, 0); + ctx->Unmap(bd->pIB, 0); + + // Setup orthographic projection matrix into our constant buffer + // Our visible imgui space lies from draw_data->DisplayPos (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayPos is (0,0) for single viewport apps. + { + D3D11_MAPPED_SUBRESOURCE mapped_resource; + if (ctx->Map(bd->pVertexConstantBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mapped_resource) != S_OK) + return; + VERTEX_CONSTANT_BUFFER_DX11* constant_buffer = (VERTEX_CONSTANT_BUFFER_DX11*)mapped_resource.pData; + float L = draw_data->DisplayPos.x; + float R = draw_data->DisplayPos.x + draw_data->DisplaySize.x; + float T = draw_data->DisplayPos.y; + float B = draw_data->DisplayPos.y + draw_data->DisplaySize.y; + float mvp[4][4] = + { + { 2.0f/(R-L), 0.0f, 0.0f, 0.0f }, + { 0.0f, 2.0f/(T-B), 0.0f, 0.0f }, + { 0.0f, 0.0f, 0.5f, 0.0f }, + { (R+L)/(L-R), (T+B)/(B-T), 0.5f, 1.0f }, + }; + memcpy(&constant_buffer->mvp, mvp, sizeof(mvp)); + ctx->Unmap(bd->pVertexConstantBuffer, 0); + } + + // Backup DX state that will be modified to restore it afterwards (unfortunately this is very ugly looking and verbose. Close your eyes!) + struct BACKUP_DX11_STATE + { + UINT ScissorRectsCount, ViewportsCount; + D3D11_RECT ScissorRects[D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE]; + D3D11_VIEWPORT Viewports[D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE]; + ID3D11RasterizerState* RS; + ID3D11BlendState* BlendState; + FLOAT BlendFactor[4]; + UINT SampleMask; + UINT StencilRef; + ID3D11DepthStencilState* DepthStencilState; + ID3D11ShaderResourceView* PSShaderResource; + ID3D11SamplerState* PSSampler; + ID3D11PixelShader* PS; + ID3D11VertexShader* VS; + ID3D11GeometryShader* GS; + UINT PSInstancesCount, VSInstancesCount, GSInstancesCount; + ID3D11ClassInstance *PSInstances[256], *VSInstances[256], *GSInstances[256]; // 256 is max according to PSSetShader documentation + D3D11_PRIMITIVE_TOPOLOGY PrimitiveTopology; + ID3D11Buffer* IndexBuffer, *VertexBuffer, *VSConstantBuffer; + UINT IndexBufferOffset, VertexBufferStride, VertexBufferOffset; + DXGI_FORMAT IndexBufferFormat; + ID3D11InputLayout* InputLayout; + }; + BACKUP_DX11_STATE old = {}; + old.ScissorRectsCount = old.ViewportsCount = D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE; + ctx->RSGetScissorRects(&old.ScissorRectsCount, old.ScissorRects); + ctx->RSGetViewports(&old.ViewportsCount, old.Viewports); + ctx->RSGetState(&old.RS); + ctx->OMGetBlendState(&old.BlendState, old.BlendFactor, &old.SampleMask); + ctx->OMGetDepthStencilState(&old.DepthStencilState, &old.StencilRef); + ctx->PSGetShaderResources(0, 1, &old.PSShaderResource); + ctx->PSGetSamplers(0, 1, &old.PSSampler); + old.PSInstancesCount = old.VSInstancesCount = old.GSInstancesCount = 256; + ctx->PSGetShader(&old.PS, old.PSInstances, &old.PSInstancesCount); + ctx->VSGetShader(&old.VS, old.VSInstances, &old.VSInstancesCount); + ctx->VSGetConstantBuffers(0, 1, &old.VSConstantBuffer); + ctx->GSGetShader(&old.GS, old.GSInstances, &old.GSInstancesCount); + + ctx->IAGetPrimitiveTopology(&old.PrimitiveTopology); + ctx->IAGetIndexBuffer(&old.IndexBuffer, &old.IndexBufferFormat, &old.IndexBufferOffset); + ctx->IAGetVertexBuffers(0, 1, &old.VertexBuffer, &old.VertexBufferStride, &old.VertexBufferOffset); + ctx->IAGetInputLayout(&old.InputLayout); + + // Setup desired DX state + ImGui_ImplDX11_SetupRenderState(draw_data, ctx); + + // Render command lists + // (Because we merged all buffers into a single one, we maintain our own offset into them) + int global_idx_offset = 0; + int global_vtx_offset = 0; + ImVec2 clip_off = draw_data->DisplayPos; + for (int n = 0; n < draw_data->CmdListsCount; n++) + { + const ImDrawList* cmd_list = draw_data->CmdLists[n]; + for (int cmd_i = 0; cmd_i < cmd_list->CmdBuffer.Size; cmd_i++) + { + const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; + if (pcmd->UserCallback != nullptr) + { + // User callback, registered via ImDrawList::AddCallback() + // (ImDrawCallback_ResetRenderState is a special callback value used by the user to request the renderer to reset render state.) + if (pcmd->UserCallback == ImDrawCallback_ResetRenderState) + ImGui_ImplDX11_SetupRenderState(draw_data, ctx); + else + pcmd->UserCallback(cmd_list, pcmd); + } + else + { + // Project scissor/clipping rectangles into framebuffer space + ImVec2 clip_min(pcmd->ClipRect.x - clip_off.x, pcmd->ClipRect.y - clip_off.y); + ImVec2 clip_max(pcmd->ClipRect.z - clip_off.x, pcmd->ClipRect.w - clip_off.y); + if (clip_max.x <= clip_min.x || clip_max.y <= clip_min.y) + continue; + + // Apply scissor/clipping rectangle + const D3D11_RECT r = { (LONG)clip_min.x, (LONG)clip_min.y, (LONG)clip_max.x, (LONG)clip_max.y }; + ctx->RSSetScissorRects(1, &r); + + // Bind texture, Draw + ID3D11ShaderResourceView* texture_srv = (ID3D11ShaderResourceView*)pcmd->GetTexID(); + ctx->PSSetShaderResources(0, 1, &texture_srv); + ctx->DrawIndexed(pcmd->ElemCount, pcmd->IdxOffset + global_idx_offset, pcmd->VtxOffset + global_vtx_offset); + } + } + global_idx_offset += cmd_list->IdxBuffer.Size; + global_vtx_offset += cmd_list->VtxBuffer.Size; + } + + // Restore modified DX state + ctx->RSSetScissorRects(old.ScissorRectsCount, old.ScissorRects); + ctx->RSSetViewports(old.ViewportsCount, old.Viewports); + ctx->RSSetState(old.RS); if (old.RS) old.RS->Release(); + ctx->OMSetBlendState(old.BlendState, old.BlendFactor, old.SampleMask); if (old.BlendState) old.BlendState->Release(); + ctx->OMSetDepthStencilState(old.DepthStencilState, old.StencilRef); if (old.DepthStencilState) old.DepthStencilState->Release(); + ctx->PSSetShaderResources(0, 1, &old.PSShaderResource); if (old.PSShaderResource) old.PSShaderResource->Release(); + ctx->PSSetSamplers(0, 1, &old.PSSampler); if (old.PSSampler) old.PSSampler->Release(); + ctx->PSSetShader(old.PS, old.PSInstances, old.PSInstancesCount); if (old.PS) old.PS->Release(); + for (UINT i = 0; i < old.PSInstancesCount; i++) if (old.PSInstances[i]) old.PSInstances[i]->Release(); + ctx->VSSetShader(old.VS, old.VSInstances, old.VSInstancesCount); if (old.VS) old.VS->Release(); + ctx->VSSetConstantBuffers(0, 1, &old.VSConstantBuffer); if (old.VSConstantBuffer) old.VSConstantBuffer->Release(); + ctx->GSSetShader(old.GS, old.GSInstances, old.GSInstancesCount); if (old.GS) old.GS->Release(); + for (UINT i = 0; i < old.VSInstancesCount; i++) if (old.VSInstances[i]) old.VSInstances[i]->Release(); + ctx->IASetPrimitiveTopology(old.PrimitiveTopology); + ctx->IASetIndexBuffer(old.IndexBuffer, old.IndexBufferFormat, old.IndexBufferOffset); if (old.IndexBuffer) old.IndexBuffer->Release(); + ctx->IASetVertexBuffers(0, 1, &old.VertexBuffer, &old.VertexBufferStride, &old.VertexBufferOffset); if (old.VertexBuffer) old.VertexBuffer->Release(); + ctx->IASetInputLayout(old.InputLayout); if (old.InputLayout) old.InputLayout->Release(); +} + +static void ImGui_ImplDX11_CreateFontsTexture() +{ + // Build texture atlas + ImGuiIO& io = ImGui::GetIO(); + ImGui_ImplDX11_Data* bd = ImGui_ImplDX11_GetBackendData(); + unsigned char* pixels; + int width, height; + io.Fonts->GetTexDataAsRGBA32(&pixels, &width, &height); + + // Upload texture to graphics system + { + D3D11_TEXTURE2D_DESC desc; + ZeroMemory(&desc, sizeof(desc)); + desc.Width = width; + desc.Height = height; + desc.MipLevels = 1; + desc.ArraySize = 1; + desc.Format = DXGI_FORMAT_R8G8B8A8_UNORM; + desc.SampleDesc.Count = 1; + desc.Usage = D3D11_USAGE_DEFAULT; + desc.BindFlags = D3D11_BIND_SHADER_RESOURCE; + desc.CPUAccessFlags = 0; + + ID3D11Texture2D* pTexture = nullptr; + D3D11_SUBRESOURCE_DATA subResource; + subResource.pSysMem = pixels; + subResource.SysMemPitch = desc.Width * 4; + subResource.SysMemSlicePitch = 0; + bd->pd3dDevice->CreateTexture2D(&desc, &subResource, &pTexture); + IM_ASSERT(pTexture != nullptr); + + // Create texture view + D3D11_SHADER_RESOURCE_VIEW_DESC srvDesc; + ZeroMemory(&srvDesc, sizeof(srvDesc)); + srvDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM; + srvDesc.ViewDimension = D3D11_SRV_DIMENSION_TEXTURE2D; + srvDesc.Texture2D.MipLevels = desc.MipLevels; + srvDesc.Texture2D.MostDetailedMip = 0; + bd->pd3dDevice->CreateShaderResourceView(pTexture, &srvDesc, &bd->pFontTextureView); + pTexture->Release(); + } + + // Store our identifier + io.Fonts->SetTexID((ImTextureID)bd->pFontTextureView); + + // Create texture sampler + // (Bilinear sampling is required by default. Set 'io.Fonts->Flags |= ImFontAtlasFlags_NoBakedLines' or 'style.AntiAliasedLinesUseTex = false' to allow point/nearest sampling) + { + D3D11_SAMPLER_DESC desc; + ZeroMemory(&desc, sizeof(desc)); + desc.Filter = D3D11_FILTER_MIN_MAG_MIP_LINEAR; + desc.AddressU = D3D11_TEXTURE_ADDRESS_WRAP; + desc.AddressV = D3D11_TEXTURE_ADDRESS_WRAP; + desc.AddressW = D3D11_TEXTURE_ADDRESS_WRAP; + desc.MipLODBias = 0.f; + desc.ComparisonFunc = D3D11_COMPARISON_ALWAYS; + desc.MinLOD = 0.f; + desc.MaxLOD = 0.f; + bd->pd3dDevice->CreateSamplerState(&desc, &bd->pFontSampler); + } +} + +bool ImGui_ImplDX11_CreateDeviceObjects() +{ + ImGui_ImplDX11_Data* bd = ImGui_ImplDX11_GetBackendData(); + if (!bd->pd3dDevice) + return false; + if (bd->pFontSampler) + ImGui_ImplDX11_InvalidateDeviceObjects(); + + // By using D3DCompile() from / d3dcompiler.lib, we introduce a dependency to a given version of d3dcompiler_XX.dll (see D3DCOMPILER_DLL_A) + // If you would like to use this DX11 sample code but remove this dependency you can: + // 1) compile once, save the compiled shader blobs into a file or source code and pass them to CreateVertexShader()/CreatePixelShader() [preferred solution] + // 2) use code to detect any version of the DLL and grab a pointer to D3DCompile from the DLL. + // See https://github.com/ocornut/imgui/pull/638 for sources and details. + + // Create the vertex shader + { + static const char* vertexShader = + "cbuffer vertexBuffer : register(b0) \ + {\ + float4x4 ProjectionMatrix; \ + };\ + struct VS_INPUT\ + {\ + float2 pos : POSITION;\ + float4 col : COLOR0;\ + float2 uv : TEXCOORD0;\ + };\ + \ + struct PS_INPUT\ + {\ + float4 pos : SV_POSITION;\ + float4 col : COLOR0;\ + float2 uv : TEXCOORD0;\ + };\ + \ + PS_INPUT main(VS_INPUT input)\ + {\ + PS_INPUT output;\ + output.pos = mul( ProjectionMatrix, float4(input.pos.xy, 0.f, 1.f));\ + output.col = input.col;\ + output.uv = input.uv;\ + return output;\ + }"; + + ID3DBlob* vertexShaderBlob; + if (FAILED(D3DCompile(vertexShader, strlen(vertexShader), nullptr, nullptr, nullptr, "main", "vs_4_0", 0, 0, &vertexShaderBlob, nullptr))) + return false; // NB: Pass ID3DBlob* pErrorBlob to D3DCompile() to get error showing in (const char*)pErrorBlob->GetBufferPointer(). Make sure to Release() the blob! + if (bd->pd3dDevice->CreateVertexShader(vertexShaderBlob->GetBufferPointer(), vertexShaderBlob->GetBufferSize(), nullptr, &bd->pVertexShader) != S_OK) + { + vertexShaderBlob->Release(); + return false; + } + + // Create the input layout + D3D11_INPUT_ELEMENT_DESC local_layout[] = + { + { "POSITION", 0, DXGI_FORMAT_R32G32_FLOAT, 0, (UINT)IM_OFFSETOF(ImDrawVert, pos), D3D11_INPUT_PER_VERTEX_DATA, 0 }, + { "TEXCOORD", 0, DXGI_FORMAT_R32G32_FLOAT, 0, (UINT)IM_OFFSETOF(ImDrawVert, uv), D3D11_INPUT_PER_VERTEX_DATA, 0 }, + { "COLOR", 0, DXGI_FORMAT_R8G8B8A8_UNORM, 0, (UINT)IM_OFFSETOF(ImDrawVert, col), D3D11_INPUT_PER_VERTEX_DATA, 0 }, + }; + if (bd->pd3dDevice->CreateInputLayout(local_layout, 3, vertexShaderBlob->GetBufferPointer(), vertexShaderBlob->GetBufferSize(), &bd->pInputLayout) != S_OK) + { + vertexShaderBlob->Release(); + return false; + } + vertexShaderBlob->Release(); + + // Create the constant buffer + { + D3D11_BUFFER_DESC desc; + desc.ByteWidth = sizeof(VERTEX_CONSTANT_BUFFER_DX11); + desc.Usage = D3D11_USAGE_DYNAMIC; + desc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; + desc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + desc.MiscFlags = 0; + bd->pd3dDevice->CreateBuffer(&desc, nullptr, &bd->pVertexConstantBuffer); + } + } + + // Create the pixel shader + { + static const char* pixelShader = + "struct PS_INPUT\ + {\ + float4 pos : SV_POSITION;\ + float4 col : COLOR0;\ + float2 uv : TEXCOORD0;\ + };\ + sampler sampler0;\ + Texture2D texture0;\ + \ + float4 main(PS_INPUT input) : SV_Target\ + {\ + float4 out_col = input.col * texture0.Sample(sampler0, input.uv); \ + return out_col; \ + }"; + + ID3DBlob* pixelShaderBlob; + if (FAILED(D3DCompile(pixelShader, strlen(pixelShader), nullptr, nullptr, nullptr, "main", "ps_4_0", 0, 0, &pixelShaderBlob, nullptr))) + return false; // NB: Pass ID3DBlob* pErrorBlob to D3DCompile() to get error showing in (const char*)pErrorBlob->GetBufferPointer(). Make sure to Release() the blob! + if (bd->pd3dDevice->CreatePixelShader(pixelShaderBlob->GetBufferPointer(), pixelShaderBlob->GetBufferSize(), nullptr, &bd->pPixelShader) != S_OK) + { + pixelShaderBlob->Release(); + return false; + } + pixelShaderBlob->Release(); + } + + // Create the blending setup + { + D3D11_BLEND_DESC desc; + ZeroMemory(&desc, sizeof(desc)); + desc.AlphaToCoverageEnable = false; + desc.RenderTarget[0].BlendEnable = true; + desc.RenderTarget[0].SrcBlend = D3D11_BLEND_SRC_ALPHA; + desc.RenderTarget[0].DestBlend = D3D11_BLEND_INV_SRC_ALPHA; + desc.RenderTarget[0].BlendOp = D3D11_BLEND_OP_ADD; + desc.RenderTarget[0].SrcBlendAlpha = D3D11_BLEND_ONE; + desc.RenderTarget[0].DestBlendAlpha = D3D11_BLEND_INV_SRC_ALPHA; + desc.RenderTarget[0].BlendOpAlpha = D3D11_BLEND_OP_ADD; + desc.RenderTarget[0].RenderTargetWriteMask = D3D11_COLOR_WRITE_ENABLE_ALL; + bd->pd3dDevice->CreateBlendState(&desc, &bd->pBlendState); + } + + // Create the rasterizer state + { + D3D11_RASTERIZER_DESC desc; + ZeroMemory(&desc, sizeof(desc)); + desc.FillMode = D3D11_FILL_SOLID; + desc.CullMode = D3D11_CULL_NONE; + desc.ScissorEnable = true; + desc.DepthClipEnable = true; + bd->pd3dDevice->CreateRasterizerState(&desc, &bd->pRasterizerState); + } + + // Create depth-stencil State + { + D3D11_DEPTH_STENCIL_DESC desc; + ZeroMemory(&desc, sizeof(desc)); + desc.DepthEnable = false; + desc.DepthWriteMask = D3D11_DEPTH_WRITE_MASK_ALL; + desc.DepthFunc = D3D11_COMPARISON_ALWAYS; + desc.StencilEnable = false; + desc.FrontFace.StencilFailOp = desc.FrontFace.StencilDepthFailOp = desc.FrontFace.StencilPassOp = D3D11_STENCIL_OP_KEEP; + desc.FrontFace.StencilFunc = D3D11_COMPARISON_ALWAYS; + desc.BackFace = desc.FrontFace; + bd->pd3dDevice->CreateDepthStencilState(&desc, &bd->pDepthStencilState); + } + + ImGui_ImplDX11_CreateFontsTexture(); + + return true; +} + +void ImGui_ImplDX11_InvalidateDeviceObjects() +{ + ImGui_ImplDX11_Data* bd = ImGui_ImplDX11_GetBackendData(); + if (!bd->pd3dDevice) + return; + + if (bd->pFontSampler) { bd->pFontSampler->Release(); bd->pFontSampler = nullptr; } + if (bd->pFontTextureView) { bd->pFontTextureView->Release(); bd->pFontTextureView = nullptr; ImGui::GetIO().Fonts->SetTexID(0); } // We copied data->pFontTextureView to io.Fonts->TexID so let's clear that as well. + if (bd->pIB) { bd->pIB->Release(); bd->pIB = nullptr; } + if (bd->pVB) { bd->pVB->Release(); bd->pVB = nullptr; } + if (bd->pBlendState) { bd->pBlendState->Release(); bd->pBlendState = nullptr; } + if (bd->pDepthStencilState) { bd->pDepthStencilState->Release(); bd->pDepthStencilState = nullptr; } + if (bd->pRasterizerState) { bd->pRasterizerState->Release(); bd->pRasterizerState = nullptr; } + if (bd->pPixelShader) { bd->pPixelShader->Release(); bd->pPixelShader = nullptr; } + if (bd->pVertexConstantBuffer) { bd->pVertexConstantBuffer->Release(); bd->pVertexConstantBuffer = nullptr; } + if (bd->pInputLayout) { bd->pInputLayout->Release(); bd->pInputLayout = nullptr; } + if (bd->pVertexShader) { bd->pVertexShader->Release(); bd->pVertexShader = nullptr; } +} + +bool ImGui_ImplDX11_Init(ID3D11Device* device, ID3D11DeviceContext* device_context) +{ + ImGuiIO& io = ImGui::GetIO(); + IM_ASSERT(io.BackendRendererUserData == nullptr && "Already initialized a renderer backend!"); + + // Setup backend capabilities flags + ImGui_ImplDX11_Data* bd = IM_NEW(ImGui_ImplDX11_Data)(); + io.BackendRendererUserData = (void*)bd; + io.BackendRendererName = "imgui_impl_dx11"; + io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset; // We can honor the ImDrawCmd::VtxOffset field, allowing for large meshes. + + // Get factory from device + IDXGIDevice* pDXGIDevice = nullptr; + IDXGIAdapter* pDXGIAdapter = nullptr; + IDXGIFactory* pFactory = nullptr; + + if (device->QueryInterface(IID_PPV_ARGS(&pDXGIDevice)) == S_OK) + if (pDXGIDevice->GetParent(IID_PPV_ARGS(&pDXGIAdapter)) == S_OK) + if (pDXGIAdapter->GetParent(IID_PPV_ARGS(&pFactory)) == S_OK) + { + bd->pd3dDevice = device; + bd->pd3dDeviceContext = device_context; + bd->pFactory = pFactory; + } + if (pDXGIDevice) pDXGIDevice->Release(); + if (pDXGIAdapter) pDXGIAdapter->Release(); + bd->pd3dDevice->AddRef(); + bd->pd3dDeviceContext->AddRef(); + + return true; +} + +void ImGui_ImplDX11_Shutdown() +{ + ImGui_ImplDX11_Data* bd = ImGui_ImplDX11_GetBackendData(); + IM_ASSERT(bd != nullptr && "No renderer backend to shutdown, or already shutdown?"); + ImGuiIO& io = ImGui::GetIO(); + + ImGui_ImplDX11_InvalidateDeviceObjects(); + if (bd->pFactory) { bd->pFactory->Release(); } + if (bd->pd3dDevice) { bd->pd3dDevice->Release(); } + if (bd->pd3dDeviceContext) { bd->pd3dDeviceContext->Release(); } + io.BackendRendererName = nullptr; + io.BackendRendererUserData = nullptr; + io.BackendFlags &= ~ImGuiBackendFlags_RendererHasVtxOffset; + IM_DELETE(bd); +} + +void ImGui_ImplDX11_NewFrame() +{ + ImGui_ImplDX11_Data* bd = ImGui_ImplDX11_GetBackendData(); + IM_ASSERT(bd != nullptr && "Did you call ImGui_ImplDX11_Init()?"); + + if (!bd->pFontSampler) + ImGui_ImplDX11_CreateDeviceObjects(); +} + +//----------------------------------------------------------------------------- + +#endif // #ifndef IMGUI_DISABLE diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_impl_dx11.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_impl_dx11.h new file mode 100644 index 0000000..1082b8e --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_impl_dx11.h @@ -0,0 +1,29 @@ +// dear imgui: Renderer Backend for DirectX11 +// This needs to be used along with a Platform Backend (e.g. Win32) + +// Implemented features: +// [X] Renderer: User texture binding. Use 'ID3D11ShaderResourceView*' as ImTextureID. Read the FAQ about ImTextureID! +// [X] Renderer: Large meshes support (64k+ vertices) with 16-bit indices. + +// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this. +// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need. +// If you are new to Dear ImGui, read documentation from the docs/ folder + read the top of imgui.cpp. +// Read online: https://github.com/ocornut/imgui/tree/master/docs + +#pragma once +#include "imgui.h" // IMGUI_IMPL_API +#ifndef IMGUI_DISABLE + +struct ID3D11Device; +struct ID3D11DeviceContext; + +IMGUI_IMPL_API bool ImGui_ImplDX11_Init(ID3D11Device* device, ID3D11DeviceContext* device_context); +IMGUI_IMPL_API void ImGui_ImplDX11_Shutdown(); +IMGUI_IMPL_API void ImGui_ImplDX11_NewFrame(); +IMGUI_IMPL_API void ImGui_ImplDX11_RenderDrawData(ImDrawData* draw_data); + +// Use if you want to reset your rendering device without losing Dear ImGui state. +IMGUI_IMPL_API void ImGui_ImplDX11_InvalidateDeviceObjects(); +IMGUI_IMPL_API bool ImGui_ImplDX11_CreateDeviceObjects(); + +#endif // #ifndef IMGUI_DISABLE diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_impl_win32.cpp b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_impl_win32.cpp new file mode 100644 index 0000000..0993ecf --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_impl_win32.cpp @@ -0,0 +1,864 @@ +// dear imgui: Platform Backend for Windows (standard windows API for 32-bits AND 64-bits applications) +// This needs to be used along with a Renderer (e.g. DirectX11, OpenGL3, Vulkan..) + +// Implemented features: +// [X] Platform: Clipboard support (for Win32 this is actually part of core dear imgui) +// [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen/Pen. +// [X] Platform: Keyboard support. Since 1.87 we are using the io.AddKeyEvent() function. Pass ImGuiKey values to all key functions e.g. ImGui::IsKeyPressed(ImGuiKey_Space). [Legacy VK_* values will also be supported unless IMGUI_DISABLE_OBSOLETE_KEYIO is set] +// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'. +// [X] Platform: Mouse cursor shape and visibility. Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'. + +// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this. +// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need. +// If you are new to Dear ImGui, read documentation from the docs/ folder + read the top of imgui.cpp. +// Read online: https://github.com/ocornut/imgui/tree/master/docs + +#include "imgui.h" +#ifndef IMGUI_DISABLE +#include "imgui_impl_win32.h" +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#include +#include // GET_X_LPARAM(), GET_Y_LPARAM() +#include +#include + +// Configuration flags to add in your imconfig.h file: +//#define IMGUI_IMPL_WIN32_DISABLE_GAMEPAD // Disable gamepad support. This was meaningful before <1.81 but we now load XInput dynamically so the option is now less relevant. + +// Using XInput for gamepad (will load DLL dynamically) +#ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD +#include +typedef DWORD (WINAPI *PFN_XInputGetCapabilities)(DWORD, DWORD, XINPUT_CAPABILITIES*); +typedef DWORD (WINAPI *PFN_XInputGetState)(DWORD, XINPUT_STATE*); +#endif + +// CHANGELOG +// (minor and older changes stripped away, please see git history for details) +// 2023-04-19: Added ImGui_ImplWin32_InitForOpenGL() to facilitate combining raw Win32/Winapi with OpenGL. (#3218) +// 2023-04-04: Inputs: Added support for io.AddMouseSourceEvent() to discriminate ImGuiMouseSource_Mouse/ImGuiMouseSource_TouchScreen/ImGuiMouseSource_Pen. (#2702) +// 2023-02-15: Inputs: Use WM_NCMOUSEMOVE / WM_NCMOUSELEAVE to track mouse position over non-client area (e.g. OS decorations) when app is not focused. (#6045, #6162) +// 2023-02-02: Inputs: Flipping WM_MOUSEHWHEEL (horizontal mouse-wheel) value to match other backends and offer consistent horizontal scrolling direction. (#4019, #6096, #1463) +// 2022-10-11: Using 'nullptr' instead of 'NULL' as per our switch to C++11. +// 2022-09-28: Inputs: Convert WM_CHAR values with MultiByteToWideChar() when window class was registered as MBCS (not Unicode). +// 2022-09-26: Inputs: Renamed ImGuiKey_ModXXX introduced in 1.87 to ImGuiMod_XXX (old names still supported). +// 2022-01-26: Inputs: replaced short-lived io.AddKeyModsEvent() (added two weeks ago) with io.AddKeyEvent() using ImGuiKey_ModXXX flags. Sorry for the confusion. +// 2021-01-20: Inputs: calling new io.AddKeyAnalogEvent() for gamepad support, instead of writing directly to io.NavInputs[]. +// 2022-01-17: Inputs: calling new io.AddMousePosEvent(), io.AddMouseButtonEvent(), io.AddMouseWheelEvent() API (1.87+). +// 2022-01-17: Inputs: always update key mods next and before a key event (not in NewFrame) to fix input queue with very low framerates. +// 2022-01-12: Inputs: Update mouse inputs using WM_MOUSEMOVE/WM_MOUSELEAVE + fallback to provide it when focused but not hovered/captured. More standard and will allow us to pass it to future input queue API. +// 2022-01-12: Inputs: Maintain our own copy of MouseButtonsDown mask instead of using ImGui::IsAnyMouseDown() which will be obsoleted. +// 2022-01-10: Inputs: calling new io.AddKeyEvent(), io.AddKeyModsEvent() + io.SetKeyEventNativeData() API (1.87+). Support for full ImGuiKey range. +// 2021-12-16: Inputs: Fill VK_LCONTROL/VK_RCONTROL/VK_LSHIFT/VK_RSHIFT/VK_LMENU/VK_RMENU for completeness. +// 2021-08-17: Calling io.AddFocusEvent() on WM_SETFOCUS/WM_KILLFOCUS messages. +// 2021-08-02: Inputs: Fixed keyboard modifiers being reported when host window doesn't have focus. +// 2021-07-29: Inputs: MousePos is correctly reported when the host platform window is hovered but not focused (using TrackMouseEvent() to receive WM_MOUSELEAVE events). +// 2021-06-29: Reorganized backend to pull data from a single structure to facilitate usage with multiple-contexts (all g_XXXX access changed to bd->XXXX). +// 2021-06-08: Fixed ImGui_ImplWin32_EnableDpiAwareness() and ImGui_ImplWin32_GetDpiScaleForMonitor() to handle Windows 8.1/10 features without a manifest (per-monitor DPI, and properly calls SetProcessDpiAwareness() on 8.1). +// 2021-03-23: Inputs: Clearing keyboard down array when losing focus (WM_KILLFOCUS). +// 2021-02-18: Added ImGui_ImplWin32_EnableAlphaCompositing(). Non Visual Studio users will need to link with dwmapi.lib (MinGW/gcc: use -ldwmapi). +// 2021-02-17: Fixed ImGui_ImplWin32_EnableDpiAwareness() attempting to get SetProcessDpiAwareness from shcore.dll on Windows 8 whereas it is only supported on Windows 8.1. +// 2021-01-25: Inputs: Dynamically loading XInput DLL. +// 2020-12-04: Misc: Fixed setting of io.DisplaySize to invalid/uninitialized data when after hwnd has been closed. +// 2020-03-03: Inputs: Calling AddInputCharacterUTF16() to support surrogate pairs leading to codepoint >= 0x10000 (for more complete CJK inputs) +// 2020-02-17: Added ImGui_ImplWin32_EnableDpiAwareness(), ImGui_ImplWin32_GetDpiScaleForHwnd(), ImGui_ImplWin32_GetDpiScaleForMonitor() helper functions. +// 2020-01-14: Inputs: Added support for #define IMGUI_IMPL_WIN32_DISABLE_GAMEPAD/IMGUI_IMPL_WIN32_DISABLE_LINKING_XINPUT. +// 2019-12-05: Inputs: Added support for ImGuiMouseCursor_NotAllowed mouse cursor. +// 2019-05-11: Inputs: Don't filter value from WM_CHAR before calling AddInputCharacter(). +// 2019-01-17: Misc: Using GetForegroundWindow()+IsChild() instead of GetActiveWindow() to be compatible with windows created in a different thread or parent. +// 2019-01-17: Inputs: Added support for mouse buttons 4 and 5 via WM_XBUTTON* messages. +// 2019-01-15: Inputs: Added support for XInput gamepads (if ImGuiConfigFlags_NavEnableGamepad is set by user application). +// 2018-11-30: Misc: Setting up io.BackendPlatformName so it can be displayed in the About Window. +// 2018-06-29: Inputs: Added support for the ImGuiMouseCursor_Hand cursor. +// 2018-06-10: Inputs: Fixed handling of mouse wheel messages to support fine position messages (typically sent by track-pads). +// 2018-06-08: Misc: Extracted imgui_impl_win32.cpp/.h away from the old combined DX9/DX10/DX11/DX12 examples. +// 2018-03-20: Misc: Setup io.BackendFlags ImGuiBackendFlags_HasMouseCursors and ImGuiBackendFlags_HasSetMousePos flags + honor ImGuiConfigFlags_NoMouseCursorChange flag. +// 2018-02-20: Inputs: Added support for mouse cursors (ImGui::GetMouseCursor() value and WM_SETCURSOR message handling). +// 2018-02-06: Inputs: Added mapping for ImGuiKey_Space. +// 2018-02-06: Inputs: Honoring the io.WantSetMousePos by repositioning the mouse (when using navigation and ImGuiConfigFlags_NavMoveMouse is set). +// 2018-02-06: Misc: Removed call to ImGui::Shutdown() which is not available from 1.60 WIP, user needs to call CreateContext/DestroyContext themselves. +// 2018-01-20: Inputs: Added Horizontal Mouse Wheel support. +// 2018-01-08: Inputs: Added mapping for ImGuiKey_Insert. +// 2018-01-05: Inputs: Added WM_LBUTTONDBLCLK double-click handlers for window classes with the CS_DBLCLKS flag. +// 2017-10-23: Inputs: Added WM_SYSKEYDOWN / WM_SYSKEYUP handlers so e.g. the VK_MENU key can be read. +// 2017-10-23: Inputs: Using Win32 ::SetCapture/::GetCapture() to retrieve mouse positions outside the client area when dragging. +// 2016-11-12: Inputs: Only call Win32 ::SetCursor(nullptr) when io.MouseDrawCursor is set. + +struct ImGui_ImplWin32_Data +{ + HWND hWnd; + HWND MouseHwnd; + int MouseTrackedArea; // 0: not tracked, 1: client are, 2: non-client area + int MouseButtonsDown; + INT64 Time; + INT64 TicksPerSecond; + ImGuiMouseCursor LastMouseCursor; + +#ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD + bool HasGamepad; + bool WantUpdateHasGamepad; + HMODULE XInputDLL; + PFN_XInputGetCapabilities XInputGetCapabilities; + PFN_XInputGetState XInputGetState; +#endif + + ImGui_ImplWin32_Data() { memset((void*)this, 0, sizeof(*this)); } +}; + +// Backend data stored in io.BackendPlatformUserData to allow support for multiple Dear ImGui contexts +// It is STRONGLY preferred that you use docking branch with multi-viewports (== single Dear ImGui context + multiple windows) instead of multiple Dear ImGui contexts. +// FIXME: multi-context support is not well tested and probably dysfunctional in this backend. +// FIXME: some shared resources (mouse cursor shape, gamepad) are mishandled when using multi-context. +static ImGui_ImplWin32_Data* ImGui_ImplWin32_GetBackendData() +{ + return ImGui::GetCurrentContext() ? (ImGui_ImplWin32_Data*)ImGui::GetIO().BackendPlatformUserData : nullptr; +} + +// Functions +static bool ImGui_ImplWin32_InitEx(void* hwnd, bool platform_has_own_dc) +{ + ImGuiIO& io = ImGui::GetIO(); + IM_ASSERT(io.BackendPlatformUserData == nullptr && "Already initialized a platform backend!"); + + INT64 perf_frequency, perf_counter; + if (!::QueryPerformanceFrequency((LARGE_INTEGER*)&perf_frequency)) + return false; + if (!::QueryPerformanceCounter((LARGE_INTEGER*)&perf_counter)) + return false; + + // Setup backend capabilities flags + ImGui_ImplWin32_Data* bd = IM_NEW(ImGui_ImplWin32_Data)(); + io.BackendPlatformUserData = (void*)bd; + io.BackendPlatformName = "imgui_impl_win32"; + io.BackendFlags |= ImGuiBackendFlags_HasMouseCursors; // We can honor GetMouseCursor() values (optional) + io.BackendFlags |= ImGuiBackendFlags_HasSetMousePos; // We can honor io.WantSetMousePos requests (optional, rarely used) + + bd->hWnd = (HWND)hwnd; + bd->TicksPerSecond = perf_frequency; + bd->Time = perf_counter; + bd->LastMouseCursor = ImGuiMouseCursor_COUNT; + + // Set platform dependent data in viewport + ImGui::GetMainViewport()->PlatformHandleRaw = (void*)hwnd; + IM_UNUSED(platform_has_own_dc); // Used in 'docking' branch + + // Dynamically load XInput library +#ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD + bd->WantUpdateHasGamepad = true; + const char* xinput_dll_names[] = + { + "xinput1_4.dll", // Windows 8+ + "xinput1_3.dll", // DirectX SDK + "xinput9_1_0.dll", // Windows Vista, Windows 7 + "xinput1_2.dll", // DirectX SDK + "xinput1_1.dll" // DirectX SDK + }; + for (int n = 0; n < IM_ARRAYSIZE(xinput_dll_names); n++) + if (HMODULE dll = ::LoadLibraryA(xinput_dll_names[n])) + { + bd->XInputDLL = dll; + bd->XInputGetCapabilities = (PFN_XInputGetCapabilities)::GetProcAddress(dll, "XInputGetCapabilities"); + bd->XInputGetState = (PFN_XInputGetState)::GetProcAddress(dll, "XInputGetState"); + break; + } +#endif // IMGUI_IMPL_WIN32_DISABLE_GAMEPAD + + return true; +} + +IMGUI_IMPL_API bool ImGui_ImplWin32_Init(void* hwnd) +{ + return ImGui_ImplWin32_InitEx(hwnd, false); +} + +IMGUI_IMPL_API bool ImGui_ImplWin32_InitForOpenGL(void* hwnd) +{ + // OpenGL needs CS_OWNDC + return ImGui_ImplWin32_InitEx(hwnd, true); +} + +void ImGui_ImplWin32_Shutdown() +{ + ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData(); + IM_ASSERT(bd != nullptr && "No platform backend to shutdown, or already shutdown?"); + ImGuiIO& io = ImGui::GetIO(); + + // Unload XInput library +#ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD + if (bd->XInputDLL) + ::FreeLibrary(bd->XInputDLL); +#endif // IMGUI_IMPL_WIN32_DISABLE_GAMEPAD + + io.BackendPlatformName = nullptr; + io.BackendPlatformUserData = nullptr; + io.BackendFlags &= ~(ImGuiBackendFlags_HasMouseCursors | ImGuiBackendFlags_HasSetMousePos | ImGuiBackendFlags_HasGamepad); + IM_DELETE(bd); +} + +static bool ImGui_ImplWin32_UpdateMouseCursor() +{ + ImGuiIO& io = ImGui::GetIO(); + if (io.ConfigFlags & ImGuiConfigFlags_NoMouseCursorChange) + return false; + + ImGuiMouseCursor imgui_cursor = ImGui::GetMouseCursor(); + if (imgui_cursor == ImGuiMouseCursor_None || io.MouseDrawCursor) + { + // Hide OS mouse cursor if imgui is drawing it or if it wants no cursor + ::SetCursor(nullptr); + } + else + { + // Show OS mouse cursor + LPTSTR win32_cursor = IDC_ARROW; + switch (imgui_cursor) + { + case ImGuiMouseCursor_Arrow: win32_cursor = IDC_ARROW; break; + case ImGuiMouseCursor_TextInput: win32_cursor = IDC_IBEAM; break; + case ImGuiMouseCursor_ResizeAll: win32_cursor = IDC_SIZEALL; break; + case ImGuiMouseCursor_ResizeEW: win32_cursor = IDC_SIZEWE; break; + case ImGuiMouseCursor_ResizeNS: win32_cursor = IDC_SIZENS; break; + case ImGuiMouseCursor_ResizeNESW: win32_cursor = IDC_SIZENESW; break; + case ImGuiMouseCursor_ResizeNWSE: win32_cursor = IDC_SIZENWSE; break; + case ImGuiMouseCursor_Hand: win32_cursor = IDC_HAND; break; + case ImGuiMouseCursor_NotAllowed: win32_cursor = IDC_NO; break; + } + ::SetCursor(::LoadCursor(nullptr, win32_cursor)); + } + return true; +} + +static bool IsVkDown(int vk) +{ + return (::GetKeyState(vk) & 0x8000) != 0; +} + +static void ImGui_ImplWin32_AddKeyEvent(ImGuiKey key, bool down, int native_keycode, int native_scancode = -1) +{ + ImGuiIO& io = ImGui::GetIO(); + io.AddKeyEvent(key, down); + io.SetKeyEventNativeData(key, native_keycode, native_scancode); // To support legacy indexing (<1.87 user code) + IM_UNUSED(native_scancode); +} + +static void ImGui_ImplWin32_ProcessKeyEventsWorkarounds() +{ + // Left & right Shift keys: when both are pressed together, Windows tend to not generate the WM_KEYUP event for the first released one. + if (ImGui::IsKeyDown(ImGuiKey_LeftShift) && !IsVkDown(VK_LSHIFT)) + ImGui_ImplWin32_AddKeyEvent(ImGuiKey_LeftShift, false, VK_LSHIFT); + if (ImGui::IsKeyDown(ImGuiKey_RightShift) && !IsVkDown(VK_RSHIFT)) + ImGui_ImplWin32_AddKeyEvent(ImGuiKey_RightShift, false, VK_RSHIFT); + + // Sometimes WM_KEYUP for Win key is not passed down to the app (e.g. for Win+V on some setups, according to GLFW). + if (ImGui::IsKeyDown(ImGuiKey_LeftSuper) && !IsVkDown(VK_LWIN)) + ImGui_ImplWin32_AddKeyEvent(ImGuiKey_LeftSuper, false, VK_LWIN); + if (ImGui::IsKeyDown(ImGuiKey_RightSuper) && !IsVkDown(VK_RWIN)) + ImGui_ImplWin32_AddKeyEvent(ImGuiKey_RightSuper, false, VK_RWIN); +} + +static void ImGui_ImplWin32_UpdateKeyModifiers() +{ + ImGuiIO& io = ImGui::GetIO(); + io.AddKeyEvent(ImGuiMod_Ctrl, IsVkDown(VK_CONTROL)); + io.AddKeyEvent(ImGuiMod_Shift, IsVkDown(VK_SHIFT)); + io.AddKeyEvent(ImGuiMod_Alt, IsVkDown(VK_MENU)); + io.AddKeyEvent(ImGuiMod_Super, IsVkDown(VK_APPS)); +} + +static void ImGui_ImplWin32_UpdateMouseData() +{ + ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData(); + ImGuiIO& io = ImGui::GetIO(); + IM_ASSERT(bd->hWnd != 0); + + HWND focused_window = ::GetForegroundWindow(); + const bool is_app_focused = (focused_window == bd->hWnd); + if (is_app_focused) + { + // (Optional) Set OS mouse position from Dear ImGui if requested (rarely used, only when ImGuiConfigFlags_NavEnableSetMousePos is enabled by user) + if (io.WantSetMousePos) + { + POINT pos = { (int)io.MousePos.x, (int)io.MousePos.y }; + if (::ClientToScreen(bd->hWnd, &pos)) + ::SetCursorPos(pos.x, pos.y); + } + + // (Optional) Fallback to provide mouse position when focused (WM_MOUSEMOVE already provides this when hovered or captured) + // This also fills a short gap when clicking non-client area: WM_NCMOUSELEAVE -> modal OS move -> gap -> WM_NCMOUSEMOVE + if (!io.WantSetMousePos && bd->MouseTrackedArea == 0) + { + POINT pos; + if (::GetCursorPos(&pos) && ::ScreenToClient(bd->hWnd, &pos)) + io.AddMousePosEvent((float)pos.x, (float)pos.y); + } + } +} + +// Gamepad navigation mapping +static void ImGui_ImplWin32_UpdateGamepads() +{ +#ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD + ImGuiIO& io = ImGui::GetIO(); + ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData(); + //if ((io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) == 0) // FIXME: Technically feeding gamepad shouldn't depend on this now that they are regular inputs. + // return; + + // Calling XInputGetState() every frame on disconnected gamepads is unfortunately too slow. + // Instead we refresh gamepad availability by calling XInputGetCapabilities() _only_ after receiving WM_DEVICECHANGE. + if (bd->WantUpdateHasGamepad) + { + XINPUT_CAPABILITIES caps = {}; + bd->HasGamepad = bd->XInputGetCapabilities ? (bd->XInputGetCapabilities(0, XINPUT_FLAG_GAMEPAD, &caps) == ERROR_SUCCESS) : false; + bd->WantUpdateHasGamepad = false; + } + + io.BackendFlags &= ~ImGuiBackendFlags_HasGamepad; + XINPUT_STATE xinput_state; + XINPUT_GAMEPAD& gamepad = xinput_state.Gamepad; + if (!bd->HasGamepad || bd->XInputGetState == nullptr || bd->XInputGetState(0, &xinput_state) != ERROR_SUCCESS) + return; + io.BackendFlags |= ImGuiBackendFlags_HasGamepad; + + #define IM_SATURATE(V) (V < 0.0f ? 0.0f : V > 1.0f ? 1.0f : V) + #define MAP_BUTTON(KEY_NO, BUTTON_ENUM) { io.AddKeyEvent(KEY_NO, (gamepad.wButtons & BUTTON_ENUM) != 0); } + #define MAP_ANALOG(KEY_NO, VALUE, V0, V1) { float vn = (float)(VALUE - V0) / (float)(V1 - V0); io.AddKeyAnalogEvent(KEY_NO, vn > 0.10f, IM_SATURATE(vn)); } + MAP_BUTTON(ImGuiKey_GamepadStart, XINPUT_GAMEPAD_START); + MAP_BUTTON(ImGuiKey_GamepadBack, XINPUT_GAMEPAD_BACK); + MAP_BUTTON(ImGuiKey_GamepadFaceLeft, XINPUT_GAMEPAD_X); + MAP_BUTTON(ImGuiKey_GamepadFaceRight, XINPUT_GAMEPAD_B); + MAP_BUTTON(ImGuiKey_GamepadFaceUp, XINPUT_GAMEPAD_Y); + MAP_BUTTON(ImGuiKey_GamepadFaceDown, XINPUT_GAMEPAD_A); + MAP_BUTTON(ImGuiKey_GamepadDpadLeft, XINPUT_GAMEPAD_DPAD_LEFT); + MAP_BUTTON(ImGuiKey_GamepadDpadRight, XINPUT_GAMEPAD_DPAD_RIGHT); + MAP_BUTTON(ImGuiKey_GamepadDpadUp, XINPUT_GAMEPAD_DPAD_UP); + MAP_BUTTON(ImGuiKey_GamepadDpadDown, XINPUT_GAMEPAD_DPAD_DOWN); + MAP_BUTTON(ImGuiKey_GamepadL1, XINPUT_GAMEPAD_LEFT_SHOULDER); + MAP_BUTTON(ImGuiKey_GamepadR1, XINPUT_GAMEPAD_RIGHT_SHOULDER); + MAP_ANALOG(ImGuiKey_GamepadL2, gamepad.bLeftTrigger, XINPUT_GAMEPAD_TRIGGER_THRESHOLD, 255); + MAP_ANALOG(ImGuiKey_GamepadR2, gamepad.bRightTrigger, XINPUT_GAMEPAD_TRIGGER_THRESHOLD, 255); + MAP_BUTTON(ImGuiKey_GamepadL3, XINPUT_GAMEPAD_LEFT_THUMB); + MAP_BUTTON(ImGuiKey_GamepadR3, XINPUT_GAMEPAD_RIGHT_THUMB); + MAP_ANALOG(ImGuiKey_GamepadLStickLeft, gamepad.sThumbLX, -XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, -32768); + MAP_ANALOG(ImGuiKey_GamepadLStickRight, gamepad.sThumbLX, +XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, +32767); + MAP_ANALOG(ImGuiKey_GamepadLStickUp, gamepad.sThumbLY, +XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, +32767); + MAP_ANALOG(ImGuiKey_GamepadLStickDown, gamepad.sThumbLY, -XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, -32768); + MAP_ANALOG(ImGuiKey_GamepadRStickLeft, gamepad.sThumbRX, -XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, -32768); + MAP_ANALOG(ImGuiKey_GamepadRStickRight, gamepad.sThumbRX, +XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, +32767); + MAP_ANALOG(ImGuiKey_GamepadRStickUp, gamepad.sThumbRY, +XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, +32767); + MAP_ANALOG(ImGuiKey_GamepadRStickDown, gamepad.sThumbRY, -XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, -32768); + #undef MAP_BUTTON + #undef MAP_ANALOG +#endif // #ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD +} + +void ImGui_ImplWin32_NewFrame() +{ + ImGuiIO& io = ImGui::GetIO(); + ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData(); + IM_ASSERT(bd != nullptr && "Did you call ImGui_ImplWin32_Init()?"); + + // Setup display size (every frame to accommodate for window resizing) + RECT rect = { 0, 0, 0, 0 }; + ::GetClientRect(bd->hWnd, &rect); + io.DisplaySize = ImVec2((float)(rect.right - rect.left), (float)(rect.bottom - rect.top)); + + // Setup time step + INT64 current_time = 0; + ::QueryPerformanceCounter((LARGE_INTEGER*)¤t_time); + io.DeltaTime = (float)(current_time - bd->Time) / bd->TicksPerSecond; + bd->Time = current_time; + + // Update OS mouse position + ImGui_ImplWin32_UpdateMouseData(); + + // Process workarounds for known Windows key handling issues + ImGui_ImplWin32_ProcessKeyEventsWorkarounds(); + + // Update OS mouse cursor with the cursor requested by imgui + ImGuiMouseCursor mouse_cursor = io.MouseDrawCursor ? ImGuiMouseCursor_None : ImGui::GetMouseCursor(); + if (bd->LastMouseCursor != mouse_cursor) + { + bd->LastMouseCursor = mouse_cursor; + ImGui_ImplWin32_UpdateMouseCursor(); + } + + // Update game controllers (if enabled and available) + ImGui_ImplWin32_UpdateGamepads(); +} + +// There is no distinct VK_xxx for keypad enter, instead it is VK_RETURN + KF_EXTENDED, we assign it an arbitrary value to make code more readable (VK_ codes go up to 255) +#define IM_VK_KEYPAD_ENTER (VK_RETURN + 256) + +// Map VK_xxx to ImGuiKey_xxx. +static ImGuiKey ImGui_ImplWin32_VirtualKeyToImGuiKey(WPARAM wParam) +{ + switch (wParam) + { + case VK_TAB: return ImGuiKey_Tab; + case VK_LEFT: return ImGuiKey_LeftArrow; + case VK_RIGHT: return ImGuiKey_RightArrow; + case VK_UP: return ImGuiKey_UpArrow; + case VK_DOWN: return ImGuiKey_DownArrow; + case VK_PRIOR: return ImGuiKey_PageUp; + case VK_NEXT: return ImGuiKey_PageDown; + case VK_HOME: return ImGuiKey_Home; + case VK_END: return ImGuiKey_End; + case VK_INSERT: return ImGuiKey_Insert; + case VK_DELETE: return ImGuiKey_Delete; + case VK_BACK: return ImGuiKey_Backspace; + case VK_SPACE: return ImGuiKey_Space; + case VK_RETURN: return ImGuiKey_Enter; + case VK_ESCAPE: return ImGuiKey_Escape; + case VK_OEM_7: return ImGuiKey_Apostrophe; + case VK_OEM_COMMA: return ImGuiKey_Comma; + case VK_OEM_MINUS: return ImGuiKey_Minus; + case VK_OEM_PERIOD: return ImGuiKey_Period; + case VK_OEM_2: return ImGuiKey_Slash; + case VK_OEM_1: return ImGuiKey_Semicolon; + case VK_OEM_PLUS: return ImGuiKey_Equal; + case VK_OEM_4: return ImGuiKey_LeftBracket; + case VK_OEM_5: return ImGuiKey_Backslash; + case VK_OEM_6: return ImGuiKey_RightBracket; + case VK_OEM_3: return ImGuiKey_GraveAccent; + case VK_CAPITAL: return ImGuiKey_CapsLock; + case VK_SCROLL: return ImGuiKey_ScrollLock; + case VK_NUMLOCK: return ImGuiKey_NumLock; + case VK_SNAPSHOT: return ImGuiKey_PrintScreen; + case VK_PAUSE: return ImGuiKey_Pause; + case VK_NUMPAD0: return ImGuiKey_Keypad0; + case VK_NUMPAD1: return ImGuiKey_Keypad1; + case VK_NUMPAD2: return ImGuiKey_Keypad2; + case VK_NUMPAD3: return ImGuiKey_Keypad3; + case VK_NUMPAD4: return ImGuiKey_Keypad4; + case VK_NUMPAD5: return ImGuiKey_Keypad5; + case VK_NUMPAD6: return ImGuiKey_Keypad6; + case VK_NUMPAD7: return ImGuiKey_Keypad7; + case VK_NUMPAD8: return ImGuiKey_Keypad8; + case VK_NUMPAD9: return ImGuiKey_Keypad9; + case VK_DECIMAL: return ImGuiKey_KeypadDecimal; + case VK_DIVIDE: return ImGuiKey_KeypadDivide; + case VK_MULTIPLY: return ImGuiKey_KeypadMultiply; + case VK_SUBTRACT: return ImGuiKey_KeypadSubtract; + case VK_ADD: return ImGuiKey_KeypadAdd; + case IM_VK_KEYPAD_ENTER: return ImGuiKey_KeypadEnter; + case VK_LSHIFT: return ImGuiKey_LeftShift; + case VK_LCONTROL: return ImGuiKey_LeftCtrl; + case VK_LMENU: return ImGuiKey_LeftAlt; + case VK_LWIN: return ImGuiKey_LeftSuper; + case VK_RSHIFT: return ImGuiKey_RightShift; + case VK_RCONTROL: return ImGuiKey_RightCtrl; + case VK_RMENU: return ImGuiKey_RightAlt; + case VK_RWIN: return ImGuiKey_RightSuper; + case VK_APPS: return ImGuiKey_Menu; + case '0': return ImGuiKey_0; + case '1': return ImGuiKey_1; + case '2': return ImGuiKey_2; + case '3': return ImGuiKey_3; + case '4': return ImGuiKey_4; + case '5': return ImGuiKey_5; + case '6': return ImGuiKey_6; + case '7': return ImGuiKey_7; + case '8': return ImGuiKey_8; + case '9': return ImGuiKey_9; + case 'A': return ImGuiKey_A; + case 'B': return ImGuiKey_B; + case 'C': return ImGuiKey_C; + case 'D': return ImGuiKey_D; + case 'E': return ImGuiKey_E; + case 'F': return ImGuiKey_F; + case 'G': return ImGuiKey_G; + case 'H': return ImGuiKey_H; + case 'I': return ImGuiKey_I; + case 'J': return ImGuiKey_J; + case 'K': return ImGuiKey_K; + case 'L': return ImGuiKey_L; + case 'M': return ImGuiKey_M; + case 'N': return ImGuiKey_N; + case 'O': return ImGuiKey_O; + case 'P': return ImGuiKey_P; + case 'Q': return ImGuiKey_Q; + case 'R': return ImGuiKey_R; + case 'S': return ImGuiKey_S; + case 'T': return ImGuiKey_T; + case 'U': return ImGuiKey_U; + case 'V': return ImGuiKey_V; + case 'W': return ImGuiKey_W; + case 'X': return ImGuiKey_X; + case 'Y': return ImGuiKey_Y; + case 'Z': return ImGuiKey_Z; + case VK_F1: return ImGuiKey_F1; + case VK_F2: return ImGuiKey_F2; + case VK_F3: return ImGuiKey_F3; + case VK_F4: return ImGuiKey_F4; + case VK_F5: return ImGuiKey_F5; + case VK_F6: return ImGuiKey_F6; + case VK_F7: return ImGuiKey_F7; + case VK_F8: return ImGuiKey_F8; + case VK_F9: return ImGuiKey_F9; + case VK_F10: return ImGuiKey_F10; + case VK_F11: return ImGuiKey_F11; + case VK_F12: return ImGuiKey_F12; + default: return ImGuiKey_None; + } +} + +// Allow compilation with old Windows SDK. MinGW doesn't have default _WIN32_WINNT/WINVER versions. +#ifndef WM_MOUSEHWHEEL +#define WM_MOUSEHWHEEL 0x020E +#endif +#ifndef DBT_DEVNODES_CHANGED +#define DBT_DEVNODES_CHANGED 0x0007 +#endif + +// Win32 message handler (process Win32 mouse/keyboard inputs, etc.) +// Call from your application's message handler. Keep calling your message handler unless this function returns TRUE. +// When implementing your own backend, you can read the io.WantCaptureMouse, io.WantCaptureKeyboard flags to tell if Dear ImGui wants to use your inputs. +// - When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application, or clear/overwrite your copy of the mouse data. +// - When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application, or clear/overwrite your copy of the keyboard data. +// Generally you may always pass all inputs to Dear ImGui, and hide them from your application based on those two flags. +// PS: In this Win32 handler, we use the capture API (GetCapture/SetCapture/ReleaseCapture) to be able to read mouse coordinates when dragging mouse outside of our window bounds. +// PS: We treat DBLCLK messages as regular mouse down messages, so this code will work on windows classes that have the CS_DBLCLKS flag set. Our own example app code doesn't set this flag. +#if 0 +// Copy this line into your .cpp file to forward declare the function. +extern IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); +#endif + +// See https://learn.microsoft.com/en-us/windows/win32/tablet/system-events-and-mouse-messages +// Prefer to call this at the top of the message handler to avoid the possibility of other Win32 calls interfering with this. +static ImGuiMouseSource GetMouseSourceFromMessageExtraInfo() +{ + LPARAM extra_info = ::GetMessageExtraInfo(); + if ((extra_info & 0xFFFFFF80) == 0xFF515700) + return ImGuiMouseSource_Pen; + if ((extra_info & 0xFFFFFF80) == 0xFF515780) + return ImGuiMouseSource_TouchScreen; + return ImGuiMouseSource_Mouse; +} + +IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) +{ + if (ImGui::GetCurrentContext() == nullptr) + return 0; + + ImGuiIO& io = ImGui::GetIO(); + ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData(); + + switch (msg) + { + case WM_MOUSEMOVE: + case WM_NCMOUSEMOVE: + { + // We need to call TrackMouseEvent in order to receive WM_MOUSELEAVE events + ImGuiMouseSource mouse_source = GetMouseSourceFromMessageExtraInfo(); + const int area = (msg == WM_MOUSEMOVE) ? 1 : 2; + bd->MouseHwnd = hwnd; + if (bd->MouseTrackedArea != area) + { + TRACKMOUSEEVENT tme_cancel = { sizeof(tme_cancel), TME_CANCEL, hwnd, 0 }; + TRACKMOUSEEVENT tme_track = { sizeof(tme_track), (DWORD)((area == 2) ? (TME_LEAVE | TME_NONCLIENT) : TME_LEAVE), hwnd, 0 }; + if (bd->MouseTrackedArea != 0) + ::TrackMouseEvent(&tme_cancel); + ::TrackMouseEvent(&tme_track); + bd->MouseTrackedArea = area; + } + POINT mouse_pos = { (LONG)GET_X_LPARAM(lParam), (LONG)GET_Y_LPARAM(lParam) }; + if (msg == WM_NCMOUSEMOVE && ::ScreenToClient(hwnd, &mouse_pos) == FALSE) // WM_NCMOUSEMOVE are provided in absolute coordinates. + break; + io.AddMouseSourceEvent(mouse_source); + io.AddMousePosEvent((float)mouse_pos.x, (float)mouse_pos.y); + break; + } + case WM_MOUSELEAVE: + case WM_NCMOUSELEAVE: + { + const int area = (msg == WM_MOUSELEAVE) ? 1 : 2; + if (bd->MouseTrackedArea == area) + { + if (bd->MouseHwnd == hwnd) + bd->MouseHwnd = nullptr; + bd->MouseTrackedArea = 0; + io.AddMousePosEvent(-FLT_MAX, -FLT_MAX); + } + break; + } + case WM_LBUTTONDOWN: case WM_LBUTTONDBLCLK: + case WM_RBUTTONDOWN: case WM_RBUTTONDBLCLK: + case WM_MBUTTONDOWN: case WM_MBUTTONDBLCLK: + case WM_XBUTTONDOWN: case WM_XBUTTONDBLCLK: + { + ImGuiMouseSource mouse_source = GetMouseSourceFromMessageExtraInfo(); + int button = 0; + if (msg == WM_LBUTTONDOWN || msg == WM_LBUTTONDBLCLK) { button = 0; } + if (msg == WM_RBUTTONDOWN || msg == WM_RBUTTONDBLCLK) { button = 1; } + if (msg == WM_MBUTTONDOWN || msg == WM_MBUTTONDBLCLK) { button = 2; } + if (msg == WM_XBUTTONDOWN || msg == WM_XBUTTONDBLCLK) { button = (GET_XBUTTON_WPARAM(wParam) == XBUTTON1) ? 3 : 4; } + if (bd->MouseButtonsDown == 0 && ::GetCapture() == nullptr) + ::SetCapture(hwnd); + bd->MouseButtonsDown |= 1 << button; + io.AddMouseSourceEvent(mouse_source); + io.AddMouseButtonEvent(button, true); + return 0; + } + case WM_LBUTTONUP: + case WM_RBUTTONUP: + case WM_MBUTTONUP: + case WM_XBUTTONUP: + { + ImGuiMouseSource mouse_source = GetMouseSourceFromMessageExtraInfo(); + int button = 0; + if (msg == WM_LBUTTONUP) { button = 0; } + if (msg == WM_RBUTTONUP) { button = 1; } + if (msg == WM_MBUTTONUP) { button = 2; } + if (msg == WM_XBUTTONUP) { button = (GET_XBUTTON_WPARAM(wParam) == XBUTTON1) ? 3 : 4; } + bd->MouseButtonsDown &= ~(1 << button); + if (bd->MouseButtonsDown == 0 && ::GetCapture() == hwnd) + ::ReleaseCapture(); + io.AddMouseSourceEvent(mouse_source); + io.AddMouseButtonEvent(button, false); + return 0; + } + case WM_MOUSEWHEEL: + io.AddMouseWheelEvent(0.0f, (float)GET_WHEEL_DELTA_WPARAM(wParam) / (float)WHEEL_DELTA); + return 0; + case WM_MOUSEHWHEEL: + io.AddMouseWheelEvent(-(float)GET_WHEEL_DELTA_WPARAM(wParam) / (float)WHEEL_DELTA, 0.0f); + return 0; + case WM_KEYDOWN: + case WM_KEYUP: + case WM_SYSKEYDOWN: + case WM_SYSKEYUP: + { + const bool is_key_down = (msg == WM_KEYDOWN || msg == WM_SYSKEYDOWN); + if (wParam < 256) + { + // Submit modifiers + ImGui_ImplWin32_UpdateKeyModifiers(); + + // Obtain virtual key code + // (keypad enter doesn't have its own... VK_RETURN with KF_EXTENDED flag means keypad enter, see IM_VK_KEYPAD_ENTER definition for details, it is mapped to ImGuiKey_KeyPadEnter.) + int vk = (int)wParam; + if ((wParam == VK_RETURN) && (HIWORD(lParam) & KF_EXTENDED)) + vk = IM_VK_KEYPAD_ENTER; + + // Submit key event + const ImGuiKey key = ImGui_ImplWin32_VirtualKeyToImGuiKey(vk); + const int scancode = (int)LOBYTE(HIWORD(lParam)); + if (key != ImGuiKey_None) + ImGui_ImplWin32_AddKeyEvent(key, is_key_down, vk, scancode); + + // Submit individual left/right modifier events + if (vk == VK_SHIFT) + { + // Important: Shift keys tend to get stuck when pressed together, missing key-up events are corrected in ImGui_ImplWin32_ProcessKeyEventsWorkarounds() + if (IsVkDown(VK_LSHIFT) == is_key_down) { ImGui_ImplWin32_AddKeyEvent(ImGuiKey_LeftShift, is_key_down, VK_LSHIFT, scancode); } + if (IsVkDown(VK_RSHIFT) == is_key_down) { ImGui_ImplWin32_AddKeyEvent(ImGuiKey_RightShift, is_key_down, VK_RSHIFT, scancode); } + } + else if (vk == VK_CONTROL) + { + if (IsVkDown(VK_LCONTROL) == is_key_down) { ImGui_ImplWin32_AddKeyEvent(ImGuiKey_LeftCtrl, is_key_down, VK_LCONTROL, scancode); } + if (IsVkDown(VK_RCONTROL) == is_key_down) { ImGui_ImplWin32_AddKeyEvent(ImGuiKey_RightCtrl, is_key_down, VK_RCONTROL, scancode); } + } + else if (vk == VK_MENU) + { + if (IsVkDown(VK_LMENU) == is_key_down) { ImGui_ImplWin32_AddKeyEvent(ImGuiKey_LeftAlt, is_key_down, VK_LMENU, scancode); } + if (IsVkDown(VK_RMENU) == is_key_down) { ImGui_ImplWin32_AddKeyEvent(ImGuiKey_RightAlt, is_key_down, VK_RMENU, scancode); } + } + } + return 0; + } + case WM_SETFOCUS: + case WM_KILLFOCUS: + io.AddFocusEvent(msg == WM_SETFOCUS); + return 0; + case WM_CHAR: + if (::IsWindowUnicode(hwnd)) + { + // You can also use ToAscii()+GetKeyboardState() to retrieve characters. + if (wParam > 0 && wParam < 0x10000) + io.AddInputCharacterUTF16((unsigned short)wParam); + } + else + { + wchar_t wch = 0; + ::MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, (char*)&wParam, 1, &wch, 1); + io.AddInputCharacter(wch); + } + return 0; + case WM_SETCURSOR: + // This is required to restore cursor when transitioning from e.g resize borders to client area. + if (LOWORD(lParam) == HTCLIENT && ImGui_ImplWin32_UpdateMouseCursor()) + return 1; + return 0; + case WM_DEVICECHANGE: +#ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD + if ((UINT)wParam == DBT_DEVNODES_CHANGED) + bd->WantUpdateHasGamepad = true; +#endif + return 0; + } + return 0; +} + + +//-------------------------------------------------------------------------------------------------------- +// DPI-related helpers (optional) +//-------------------------------------------------------------------------------------------------------- +// - Use to enable DPI awareness without having to create an application manifest. +// - Your own app may already do this via a manifest or explicit calls. This is mostly useful for our examples/ apps. +// - In theory we could call simple functions from Windows SDK such as SetProcessDPIAware(), SetProcessDpiAwareness(), etc. +// but most of the functions provided by Microsoft require Windows 8.1/10+ SDK at compile time and Windows 8/10+ at runtime, +// neither we want to require the user to have. So we dynamically select and load those functions to avoid dependencies. +//--------------------------------------------------------------------------------------------------------- +// This is the scheme successfully used by GLFW (from which we borrowed some of the code) and other apps aiming to be highly portable. +// ImGui_ImplWin32_EnableDpiAwareness() is just a helper called by main.cpp, we don't call it automatically. +// If you are trying to implement your own backend for your own engine, you may ignore that noise. +//--------------------------------------------------------------------------------------------------------- + +// Perform our own check with RtlVerifyVersionInfo() instead of using functions from as they +// require a manifest to be functional for checks above 8.1. See https://github.com/ocornut/imgui/issues/4200 +static BOOL _IsWindowsVersionOrGreater(WORD major, WORD minor, WORD) +{ + typedef LONG(WINAPI* PFN_RtlVerifyVersionInfo)(OSVERSIONINFOEXW*, ULONG, ULONGLONG); + static PFN_RtlVerifyVersionInfo RtlVerifyVersionInfoFn = nullptr; + if (RtlVerifyVersionInfoFn == nullptr) + if (HMODULE ntdllModule = ::GetModuleHandleA("ntdll.dll")) + RtlVerifyVersionInfoFn = (PFN_RtlVerifyVersionInfo)GetProcAddress(ntdllModule, "RtlVerifyVersionInfo"); + if (RtlVerifyVersionInfoFn == nullptr) + return FALSE; + + RTL_OSVERSIONINFOEXW versionInfo = { }; + ULONGLONG conditionMask = 0; + versionInfo.dwOSVersionInfoSize = sizeof(RTL_OSVERSIONINFOEXW); + versionInfo.dwMajorVersion = major; + versionInfo.dwMinorVersion = minor; + VER_SET_CONDITION(conditionMask, VER_MAJORVERSION, VER_GREATER_EQUAL); + VER_SET_CONDITION(conditionMask, VER_MINORVERSION, VER_GREATER_EQUAL); + return (RtlVerifyVersionInfoFn(&versionInfo, VER_MAJORVERSION | VER_MINORVERSION, conditionMask) == 0) ? TRUE : FALSE; +} + +#define _IsWindowsVistaOrGreater() _IsWindowsVersionOrGreater(HIBYTE(0x0600), LOBYTE(0x0600), 0) // _WIN32_WINNT_VISTA +#define _IsWindows8OrGreater() _IsWindowsVersionOrGreater(HIBYTE(0x0602), LOBYTE(0x0602), 0) // _WIN32_WINNT_WIN8 +#define _IsWindows8Point1OrGreater() _IsWindowsVersionOrGreater(HIBYTE(0x0603), LOBYTE(0x0603), 0) // _WIN32_WINNT_WINBLUE +#define _IsWindows10OrGreater() _IsWindowsVersionOrGreater(HIBYTE(0x0A00), LOBYTE(0x0A00), 0) // _WIN32_WINNT_WINTHRESHOLD / _WIN32_WINNT_WIN10 + +#ifndef DPI_ENUMS_DECLARED +typedef enum { PROCESS_DPI_UNAWARE = 0, PROCESS_SYSTEM_DPI_AWARE = 1, PROCESS_PER_MONITOR_DPI_AWARE = 2 } PROCESS_DPI_AWARENESS; +typedef enum { MDT_EFFECTIVE_DPI = 0, MDT_ANGULAR_DPI = 1, MDT_RAW_DPI = 2, MDT_DEFAULT = MDT_EFFECTIVE_DPI } MONITOR_DPI_TYPE; +#endif +#ifndef _DPI_AWARENESS_CONTEXTS_ +DECLARE_HANDLE(DPI_AWARENESS_CONTEXT); +#define DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE (DPI_AWARENESS_CONTEXT)-3 +#endif +#ifndef DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2 +#define DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2 (DPI_AWARENESS_CONTEXT)-4 +#endif +typedef HRESULT(WINAPI* PFN_SetProcessDpiAwareness)(PROCESS_DPI_AWARENESS); // Shcore.lib + dll, Windows 8.1+ +typedef HRESULT(WINAPI* PFN_GetDpiForMonitor)(HMONITOR, MONITOR_DPI_TYPE, UINT*, UINT*); // Shcore.lib + dll, Windows 8.1+ +typedef DPI_AWARENESS_CONTEXT(WINAPI* PFN_SetThreadDpiAwarenessContext)(DPI_AWARENESS_CONTEXT); // User32.lib + dll, Windows 10 v1607+ (Creators Update) + +// Helper function to enable DPI awareness without setting up a manifest +void ImGui_ImplWin32_EnableDpiAwareness() +{ + if (_IsWindows10OrGreater()) + { + static HINSTANCE user32_dll = ::LoadLibraryA("user32.dll"); // Reference counted per-process + if (PFN_SetThreadDpiAwarenessContext SetThreadDpiAwarenessContextFn = (PFN_SetThreadDpiAwarenessContext)::GetProcAddress(user32_dll, "SetThreadDpiAwarenessContext")) + { + SetThreadDpiAwarenessContextFn(DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2); + return; + } + } + if (_IsWindows8Point1OrGreater()) + { + static HINSTANCE shcore_dll = ::LoadLibraryA("shcore.dll"); // Reference counted per-process + if (PFN_SetProcessDpiAwareness SetProcessDpiAwarenessFn = (PFN_SetProcessDpiAwareness)::GetProcAddress(shcore_dll, "SetProcessDpiAwareness")) + { + SetProcessDpiAwarenessFn(PROCESS_PER_MONITOR_DPI_AWARE); + return; + } + } +#if _WIN32_WINNT >= 0x0600 + ::SetProcessDPIAware(); +#endif +} + +#if defined(_MSC_VER) && !defined(NOGDI) +#pragma comment(lib, "gdi32") // Link with gdi32.lib for GetDeviceCaps(). MinGW will require linking with '-lgdi32' +#endif + +float ImGui_ImplWin32_GetDpiScaleForMonitor(void* monitor) +{ + UINT xdpi = 96, ydpi = 96; + if (_IsWindows8Point1OrGreater()) + { + static HINSTANCE shcore_dll = ::LoadLibraryA("shcore.dll"); // Reference counted per-process + static PFN_GetDpiForMonitor GetDpiForMonitorFn = nullptr; + if (GetDpiForMonitorFn == nullptr && shcore_dll != nullptr) + GetDpiForMonitorFn = (PFN_GetDpiForMonitor)::GetProcAddress(shcore_dll, "GetDpiForMonitor"); + if (GetDpiForMonitorFn != nullptr) + { + GetDpiForMonitorFn((HMONITOR)monitor, MDT_EFFECTIVE_DPI, &xdpi, &ydpi); + IM_ASSERT(xdpi == ydpi); // Please contact me if you hit this assert! + return xdpi / 96.0f; + } + } +#ifndef NOGDI + const HDC dc = ::GetDC(nullptr); + xdpi = ::GetDeviceCaps(dc, LOGPIXELSX); + ydpi = ::GetDeviceCaps(dc, LOGPIXELSY); + IM_ASSERT(xdpi == ydpi); // Please contact me if you hit this assert! + ::ReleaseDC(nullptr, dc); +#endif + return xdpi / 96.0f; +} + +float ImGui_ImplWin32_GetDpiScaleForHwnd(void* hwnd) +{ + HMONITOR monitor = ::MonitorFromWindow((HWND)hwnd, MONITOR_DEFAULTTONEAREST); + return ImGui_ImplWin32_GetDpiScaleForMonitor(monitor); +} + +//--------------------------------------------------------------------------------------------------------- +// Transparency related helpers (optional) +//-------------------------------------------------------------------------------------------------------- + +#if defined(_MSC_VER) +#pragma comment(lib, "dwmapi") // Link with dwmapi.lib. MinGW will require linking with '-ldwmapi' +#endif + +// [experimental] +// Borrowed from GLFW's function updateFramebufferTransparency() in src/win32_window.c +// (the Dwm* functions are Vista era functions but we are borrowing logic from GLFW) +void ImGui_ImplWin32_EnableAlphaCompositing(void* hwnd) +{ + if (!_IsWindowsVistaOrGreater()) + return; + + BOOL composition; + if (FAILED(::DwmIsCompositionEnabled(&composition)) || !composition) + return; + + BOOL opaque; + DWORD color; + if (_IsWindows8OrGreater() || (SUCCEEDED(::DwmGetColorizationColor(&color, &opaque)) && !opaque)) + { + HRGN region = ::CreateRectRgn(0, 0, -1, -1); + DWM_BLURBEHIND bb = {}; + bb.dwFlags = DWM_BB_ENABLE | DWM_BB_BLURREGION; + bb.hRgnBlur = region; + bb.fEnable = TRUE; + ::DwmEnableBlurBehindWindow((HWND)hwnd, &bb); + ::DeleteObject(region); + } + else + { + DWM_BLURBEHIND bb = {}; + bb.dwFlags = DWM_BB_ENABLE; + ::DwmEnableBlurBehindWindow((HWND)hwnd, &bb); + } +} + +//--------------------------------------------------------------------------------------------------------- + +#endif // #ifndef IMGUI_DISABLE diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_impl_win32.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_impl_win32.h new file mode 100644 index 0000000..08f657d --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_impl_win32.h @@ -0,0 +1,49 @@ +// dear imgui: Platform Backend for Windows (standard windows API for 32-bits AND 64-bits applications) +// This needs to be used along with a Renderer (e.g. DirectX11, OpenGL3, Vulkan..) + +// Implemented features: +// [X] Platform: Clipboard support (for Win32 this is actually part of core dear imgui) +// [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen/Pen. +// [X] Platform: Keyboard support. Since 1.87 we are using the io.AddKeyEvent() function. Pass ImGuiKey values to all key functions e.g. ImGui::IsKeyPressed(ImGuiKey_Space). [Legacy VK_* values will also be supported unless IMGUI_DISABLE_OBSOLETE_KEYIO is set] +// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'. +// [X] Platform: Mouse cursor shape and visibility. Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'. + +// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this. +// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need. +// If you are new to Dear ImGui, read documentation from the docs/ folder + read the top of imgui.cpp. +// Read online: https://github.com/ocornut/imgui/tree/master/docs + +#pragma once +#include "imgui.h" // IMGUI_IMPL_API +#ifndef IMGUI_DISABLE + +IMGUI_IMPL_API bool ImGui_ImplWin32_Init(void* hwnd); +IMGUI_IMPL_API bool ImGui_ImplWin32_InitForOpenGL(void* hwnd); +IMGUI_IMPL_API void ImGui_ImplWin32_Shutdown(); +IMGUI_IMPL_API void ImGui_ImplWin32_NewFrame(); + +// Win32 message handler your application need to call. +// - Intentionally commented out in a '#if 0' block to avoid dragging dependencies on from this helper. +// - You should COPY the line below into your .cpp code to forward declare the function and then you can call it. +// - Call from your application's message handler. Keep calling your message handler unless this function returns TRUE. + +#if 0 +extern IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); +#endif + +// DPI-related helpers (optional) +// - Use to enable DPI awareness without having to create an application manifest. +// - Your own app may already do this via a manifest or explicit calls. This is mostly useful for our examples/ apps. +// - In theory we could call simple functions from Windows SDK such as SetProcessDPIAware(), SetProcessDpiAwareness(), etc. +// but most of the functions provided by Microsoft require Windows 8.1/10+ SDK at compile time and Windows 8/10+ at runtime, +// neither we want to require the user to have. So we dynamically select and load those functions to avoid dependencies. +IMGUI_IMPL_API void ImGui_ImplWin32_EnableDpiAwareness(); +IMGUI_IMPL_API float ImGui_ImplWin32_GetDpiScaleForHwnd(void* hwnd); // HWND hwnd +IMGUI_IMPL_API float ImGui_ImplWin32_GetDpiScaleForMonitor(void* monitor); // HMONITOR monitor + +// Transparency related helpers (optional) [experimental] +// - Use to enable alpha compositing transparency with the desktop. +// - Use together with e.g. clearing your framebuffer with zero-alpha. +IMGUI_IMPL_API void ImGui_ImplWin32_EnableAlphaCompositing(void* hwnd); // HWND hwnd + +#endif // #ifndef IMGUI_DISABLE diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_internal.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_internal.h new file mode 100644 index 0000000..56fa249 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_internal.h @@ -0,0 +1,3423 @@ +// dear imgui, v1.89.9 +// (internal structures/api) + +// You may use this file to debug, understand or extend Dear ImGui features but we don't provide any guarantee of forward compatibility. +// To implement maths operators for ImVec2 (disabled by default to not conflict with using IM_VEC2_CLASS_EXTRA with your own math types+operators), use: +/* +#define IMGUI_DEFINE_MATH_OPERATORS +#include "imgui_internal.h" +*/ + +/* + +Index of this file: + +// [SECTION] Header mess +// [SECTION] Forward declarations +// [SECTION] Context pointer +// [SECTION] STB libraries includes +// [SECTION] Macros +// [SECTION] Generic helpers +// [SECTION] ImDrawList support +// [SECTION] Widgets support: flags, enums, data structures +// [SECTION] Inputs support +// [SECTION] Clipper support +// [SECTION] Navigation support +// [SECTION] Columns support +// [SECTION] Multi-select support +// [SECTION] Docking support +// [SECTION] Viewport support +// [SECTION] Settings support +// [SECTION] Localization support +// [SECTION] Metrics, Debug tools +// [SECTION] Generic context hooks +// [SECTION] ImGuiContext (main imgui context) +// [SECTION] ImGuiWindowTempData, ImGuiWindow +// [SECTION] Tab bar, Tab item support +// [SECTION] Table support +// [SECTION] ImGui internal API +// [SECTION] ImFontAtlas internal API +// [SECTION] Test Engine specific hooks (imgui_test_engine) + +*/ + +#pragma once +#ifndef IMGUI_DISABLE + +//----------------------------------------------------------------------------- +// [SECTION] Header mess +//----------------------------------------------------------------------------- + +#ifndef IMGUI_VERSION +#include "imgui.h" +#endif + +#include // FILE*, sscanf +#include // NULL, malloc, free, qsort, atoi, atof +#include // sqrtf, fabsf, fmodf, powf, floorf, ceilf, cosf, sinf +#include // INT_MIN, INT_MAX + +// Enable SSE intrinsics if available +#if (defined __SSE__ || defined __x86_64__ || defined _M_X64 || (defined(_M_IX86_FP) && (_M_IX86_FP >= 1))) && !defined(IMGUI_DISABLE_SSE) +#define IMGUI_ENABLE_SSE +#include +#endif + +// Visual Studio warnings +#ifdef _MSC_VER +#pragma warning (push) +#pragma warning (disable: 4251) // class 'xxx' needs to have dll-interface to be used by clients of struct 'xxx' // when IMGUI_API is set to__declspec(dllexport) +#pragma warning (disable: 26812) // The enum type 'xxx' is unscoped. Prefer 'enum class' over 'enum' (Enum.3). [MSVC Static Analyzer) +#pragma warning (disable: 26495) // [Static Analyzer] Variable 'XXX' is uninitialized. Always initialize a member variable (type.6). +#if defined(_MSC_VER) && _MSC_VER >= 1922 // MSVC 2019 16.2 or later +#pragma warning (disable: 5054) // operator '|': deprecated between enumerations of different types +#endif +#endif + +// Clang/GCC warnings with -Weverything +#if defined(__clang__) +#pragma clang diagnostic push +#if __has_warning("-Wunknown-warning-option") +#pragma clang diagnostic ignored "-Wunknown-warning-option" // warning: unknown warning group 'xxx' +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" // warning: unknown warning group 'xxx' +#pragma clang diagnostic ignored "-Wfloat-equal" // warning: comparing floating point with == or != is unsafe // storing and comparing against same constants ok, for ImFloorSigned() +#pragma clang diagnostic ignored "-Wunused-function" // for stb_textedit.h +#pragma clang diagnostic ignored "-Wmissing-prototypes" // for stb_textedit.h +#pragma clang diagnostic ignored "-Wold-style-cast" +#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" +#pragma clang diagnostic ignored "-Wdouble-promotion" +#pragma clang diagnostic ignored "-Wimplicit-int-float-conversion" // warning: implicit conversion from 'xxx' to 'float' may lose precision +#pragma clang diagnostic ignored "-Wmissing-noreturn" // warning: function 'xxx' could be declared with attribute 'noreturn' +#elif defined(__GNUC__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind +#pragma GCC diagnostic ignored "-Wclass-memaccess" // [__GNUC__ >= 8] warning: 'memset/memcpy' clearing/writing an object of type 'xxxx' with no trivial copy-assignment; use assignment or value-initialization instead +#endif + +// In 1.89.4, we moved the implementation of "courtesy maths operators" from imgui_internal.h in imgui.h +// As they are frequently requested, we do not want to encourage to many people using imgui_internal.h +#if defined(IMGUI_DEFINE_MATH_OPERATORS) && !defined(IMGUI_DEFINE_MATH_OPERATORS_IMPLEMENTED) +#error Please '#define IMGUI_DEFINE_MATH_OPERATORS' _BEFORE_ including imgui.h! +#endif + +// Legacy defines +#ifdef IMGUI_DISABLE_FORMAT_STRING_FUNCTIONS // Renamed in 1.74 +#error Use IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS +#endif +#ifdef IMGUI_DISABLE_MATH_FUNCTIONS // Renamed in 1.74 +#error Use IMGUI_DISABLE_DEFAULT_MATH_FUNCTIONS +#endif + +// Enable stb_truetype by default unless FreeType is enabled. +// You can compile with both by defining both IMGUI_ENABLE_FREETYPE and IMGUI_ENABLE_STB_TRUETYPE together. +#ifndef IMGUI_ENABLE_FREETYPE +#define IMGUI_ENABLE_STB_TRUETYPE +#endif + +//----------------------------------------------------------------------------- +// [SECTION] Forward declarations +//----------------------------------------------------------------------------- + +struct ImBitVector; // Store 1-bit per value +struct ImRect; // An axis-aligned rectangle (2 points) +struct ImDrawDataBuilder; // Helper to build a ImDrawData instance +struct ImDrawListSharedData; // Data shared between all ImDrawList instances +struct ImGuiColorMod; // Stacked color modifier, backup of modified data so we can restore it +struct ImGuiContext; // Main Dear ImGui context +struct ImGuiContextHook; // Hook for extensions like ImGuiTestEngine +struct ImGuiDataVarInfo; // Variable information (e.g. to avoid style variables from an enum) +struct ImGuiDataTypeInfo; // Type information associated to a ImGuiDataType enum +struct ImGuiGroupData; // Stacked storage data for BeginGroup()/EndGroup() +struct ImGuiInputTextState; // Internal state of the currently focused/edited text input box +struct ImGuiInputTextDeactivateData;// Short term storage to backup text of a deactivating InputText() while another is stealing active id +struct ImGuiLastItemData; // Status storage for last submitted items +struct ImGuiLocEntry; // A localization entry. +struct ImGuiMenuColumns; // Simple column measurement, currently used for MenuItem() only +struct ImGuiNavItemData; // Result of a gamepad/keyboard directional navigation move query result +struct ImGuiNavTreeNodeData; // Temporary storage for last TreeNode() being a Left arrow landing candidate. +struct ImGuiMetricsConfig; // Storage for ShowMetricsWindow() and DebugNodeXXX() functions +struct ImGuiNextWindowData; // Storage for SetNextWindow** functions +struct ImGuiNextItemData; // Storage for SetNextItem** functions +struct ImGuiOldColumnData; // Storage data for a single column for legacy Columns() api +struct ImGuiOldColumns; // Storage data for a columns set for legacy Columns() api +struct ImGuiPopupData; // Storage for current popup stack +struct ImGuiSettingsHandler; // Storage for one type registered in the .ini file +struct ImGuiStackSizes; // Storage of stack sizes for debugging/asserting +struct ImGuiStyleMod; // Stacked style modifier, backup of modified data so we can restore it +struct ImGuiStyleShadowTexConfig; // Shadow Texture baking config +struct ImGuiTabBar; // Storage for a tab bar +struct ImGuiTabItem; // Storage for a tab item (within a tab bar) +struct ImGuiTable; // Storage for a table +struct ImGuiTableColumn; // Storage for one column of a table +struct ImGuiTableInstanceData; // Storage for one instance of a same table +struct ImGuiTableTempData; // Temporary storage for one table (one per table in the stack), shared between tables. +struct ImGuiTableSettings; // Storage for a table .ini settings +struct ImGuiTableColumnsSettings; // Storage for a column .ini settings +struct ImGuiWindow; // Storage for one window +struct ImGuiWindowTempData; // Temporary storage for one window (that's the data which in theory we could ditch at the end of the frame, in practice we currently keep it for each window) +struct ImGuiWindowSettings; // Storage for a window .ini settings (we keep one of those even if the actual window wasn't instanced during this session) + +// Enumerations +// Use your programming IDE "Go to definition" facility on the names of the center columns to find the actual flags/enum lists. +enum ImGuiLocKey : int; // -> enum ImGuiLocKey // Enum: a localization entry for translation. +typedef int ImGuiLayoutType; // -> enum ImGuiLayoutType_ // Enum: Horizontal or vertical + +// Flags +typedef int ImGuiActivateFlags; // -> enum ImGuiActivateFlags_ // Flags: for navigation/focus function (will be for ActivateItem() later) +typedef int ImGuiDebugLogFlags; // -> enum ImGuiDebugLogFlags_ // Flags: for ShowDebugLogWindow(), g.DebugLogFlags +typedef int ImGuiFocusRequestFlags; // -> enum ImGuiFocusRequestFlags_ // Flags: for FocusWindow(); +typedef int ImGuiInputFlags; // -> enum ImGuiInputFlags_ // Flags: for IsKeyPressed(), IsMouseClicked(), SetKeyOwner(), SetItemKeyOwner() etc. +typedef int ImGuiItemFlags; // -> enum ImGuiItemFlags_ // Flags: for PushItemFlag(), g.LastItemData.InFlags +typedef int ImGuiItemStatusFlags; // -> enum ImGuiItemStatusFlags_ // Flags: for g.LastItemData.StatusFlags +typedef int ImGuiOldColumnFlags; // -> enum ImGuiOldColumnFlags_ // Flags: for BeginColumns() +typedef int ImGuiNavHighlightFlags; // -> enum ImGuiNavHighlightFlags_ // Flags: for RenderNavHighlight() +typedef int ImGuiNavMoveFlags; // -> enum ImGuiNavMoveFlags_ // Flags: for navigation requests +typedef int ImGuiNextItemDataFlags; // -> enum ImGuiNextItemDataFlags_ // Flags: for SetNextItemXXX() functions +typedef int ImGuiNextWindowDataFlags; // -> enum ImGuiNextWindowDataFlags_// Flags: for SetNextWindowXXX() functions +typedef int ImGuiScrollFlags; // -> enum ImGuiScrollFlags_ // Flags: for ScrollToItem() and navigation requests +typedef int ImGuiSeparatorFlags; // -> enum ImGuiSeparatorFlags_ // Flags: for SeparatorEx() +typedef int ImGuiTextFlags; // -> enum ImGuiTextFlags_ // Flags: for TextEx() +typedef int ImGuiTooltipFlags; // -> enum ImGuiTooltipFlags_ // Flags: for BeginTooltipEx() + +typedef void (*ImGuiErrorLogCallback)(void* user_data, const char* fmt, ...); + +//----------------------------------------------------------------------------- +// [SECTION] Context pointer +// See implementation of this variable in imgui.cpp for comments and details. +//----------------------------------------------------------------------------- + +#ifndef GImGui +extern IMGUI_API ImGuiContext* GImGui; // Current implicit context pointer +#endif + +//------------------------------------------------------------------------- +// [SECTION] STB libraries includes +//------------------------------------------------------------------------- + +namespace ImStb +{ + +#undef STB_TEXTEDIT_STRING +#undef STB_TEXTEDIT_CHARTYPE +#define STB_TEXTEDIT_STRING ImGuiInputTextState +#define STB_TEXTEDIT_CHARTYPE ImWchar +#define STB_TEXTEDIT_GETWIDTH_NEWLINE (-1.0f) +#define STB_TEXTEDIT_UNDOSTATECOUNT 99 +#define STB_TEXTEDIT_UNDOCHARCOUNT 999 +#include "imstb_textedit.h" + +} // namespace ImStb + +//----------------------------------------------------------------------------- +// [SECTION] Macros +//----------------------------------------------------------------------------- + +// Debug Printing Into TTY +// (since IMGUI_VERSION_NUM >= 18729: IMGUI_DEBUG_LOG was reworked into IMGUI_DEBUG_PRINTF (and removed framecount from it). If you were using a #define IMGUI_DEBUG_LOG please rename) +#ifndef IMGUI_DEBUG_PRINTF +#ifndef IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS +#define IMGUI_DEBUG_PRINTF(_FMT,...) printf(_FMT, __VA_ARGS__) +#else +#define IMGUI_DEBUG_PRINTF(_FMT,...) ((void)0) +#endif +#endif + +// Debug Logging for ShowDebugLogWindow(). This is designed for relatively rare events so please don't spam. +#ifndef IMGUI_DISABLE_DEBUG_TOOLS +#define IMGUI_DEBUG_LOG(...) ImGui::DebugLog(__VA_ARGS__) +#else +#define IMGUI_DEBUG_LOG(...) ((void)0) +#endif +#define IMGUI_DEBUG_LOG_ACTIVEID(...) do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventActiveId) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0) +#define IMGUI_DEBUG_LOG_FOCUS(...) do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventFocus) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0) +#define IMGUI_DEBUG_LOG_POPUP(...) do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventPopup) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0) +#define IMGUI_DEBUG_LOG_NAV(...) do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventNav) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0) +#define IMGUI_DEBUG_LOG_SELECTION(...) do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventSelection)IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0) +#define IMGUI_DEBUG_LOG_CLIPPER(...) do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventClipper) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0) +#define IMGUI_DEBUG_LOG_IO(...) do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventIO) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0) + +// Static Asserts +#define IM_STATIC_ASSERT(_COND) static_assert(_COND, "") + +// "Paranoid" Debug Asserts are meant to only be enabled during specific debugging/work, otherwise would slow down the code too much. +// We currently don't have many of those so the effect is currently negligible, but onward intent to add more aggressive ones in the code. +//#define IMGUI_DEBUG_PARANOID +#ifdef IMGUI_DEBUG_PARANOID +#define IM_ASSERT_PARANOID(_EXPR) IM_ASSERT(_EXPR) +#else +#define IM_ASSERT_PARANOID(_EXPR) +#endif + +// Error handling +// Down the line in some frameworks/languages we would like to have a way to redirect those to the programmer and recover from more faults. +#ifndef IM_ASSERT_USER_ERROR +#define IM_ASSERT_USER_ERROR(_EXP,_MSG) IM_ASSERT((_EXP) && _MSG) // Recoverable User Error +#endif + +// Misc Macros +#define IM_PI 3.14159265358979323846f +#ifdef _WIN32 +#define IM_NEWLINE "\r\n" // Play it nice with Windows users (Update: since 2018-05, Notepad finally appears to support Unix-style carriage returns!) +#else +#define IM_NEWLINE "\n" +#endif +#ifndef IM_TABSIZE // Until we move this to runtime and/or add proper tab support, at least allow users to compile-time override +#define IM_TABSIZE (4) +#endif +#define IM_MEMALIGN(_OFF,_ALIGN) (((_OFF) + ((_ALIGN) - 1)) & ~((_ALIGN) - 1)) // Memory align e.g. IM_ALIGN(0,4)=0, IM_ALIGN(1,4)=4, IM_ALIGN(4,4)=4, IM_ALIGN(5,4)=8 +#define IM_F32_TO_INT8_UNBOUND(_VAL) ((int)((_VAL) * 255.0f + ((_VAL)>=0 ? 0.5f : -0.5f))) // Unsaturated, for display purpose +#define IM_F32_TO_INT8_SAT(_VAL) ((int)(ImSaturate(_VAL) * 255.0f + 0.5f)) // Saturated, always output 0..255 +#define IM_FLOOR(_VAL) ((float)(int)(_VAL)) // ImFloor() is not inlined in MSVC debug builds +#define IM_ROUND(_VAL) ((float)(int)((_VAL) + 0.5f)) // +#define IM_STRINGIFY_HELPER(_X) #_X +#define IM_STRINGIFY(_X) IM_STRINGIFY_HELPER(_X) // Preprocessor idiom to stringify e.g. an integer. + +// Enforce cdecl calling convention for functions called by the standard library, in case compilation settings changed the default to e.g. __vectorcall +#ifdef _MSC_VER +#define IMGUI_CDECL __cdecl +#else +#define IMGUI_CDECL +#endif + +// Warnings +#if defined(_MSC_VER) && !defined(__clang__) +#define IM_MSVC_WARNING_SUPPRESS(XXXX) __pragma(warning(suppress: XXXX)) +#else +#define IM_MSVC_WARNING_SUPPRESS(XXXX) +#endif + +// Debug Tools +// Use 'Metrics/Debugger->Tools->Item Picker' to break into the call-stack of a specific item. +// This will call IM_DEBUG_BREAK() which you may redefine yourself. See https://github.com/scottt/debugbreak for more reference. +#ifndef IM_DEBUG_BREAK +#if defined (_MSC_VER) +#define IM_DEBUG_BREAK() __debugbreak() +#elif defined(__clang__) +#define IM_DEBUG_BREAK() __builtin_debugtrap() +#elif defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) +#define IM_DEBUG_BREAK() __asm__ volatile("int $0x03") +#elif defined(__GNUC__) && defined(__thumb__) +#define IM_DEBUG_BREAK() __asm__ volatile(".inst 0xde01") +#elif defined(__GNUC__) && defined(__arm__) && !defined(__thumb__) +#define IM_DEBUG_BREAK() __asm__ volatile(".inst 0xe7f001f0"); +#else +#define IM_DEBUG_BREAK() IM_ASSERT(0) // It is expected that you define IM_DEBUG_BREAK() into something that will break nicely in a debugger! +#endif +#endif // #ifndef IM_DEBUG_BREAK + +//----------------------------------------------------------------------------- +// [SECTION] Generic helpers +// Note that the ImXXX helpers functions are lower-level than ImGui functions. +// ImGui functions or the ImGui context are never called/used from other ImXXX functions. +//----------------------------------------------------------------------------- +// - Helpers: Hashing +// - Helpers: Sorting +// - Helpers: Bit manipulation +// - Helpers: String +// - Helpers: Formatting +// - Helpers: UTF-8 <> wchar conversions +// - Helpers: ImVec2/ImVec4 operators +// - Helpers: Maths +// - Helpers: Geometry +// - Helper: ImVec1 +// - Helper: ImVec2ih +// - Helper: ImRect +// - Helper: ImBitArray +// - Helper: ImBitVector +// - Helper: ImSpan<>, ImSpanAllocator<> +// - Helper: ImPool<> +// - Helper: ImChunkStream<> +// - Helper: ImGuiTextIndex +//----------------------------------------------------------------------------- + +// Helpers: Hashing +IMGUI_API ImGuiID ImHashData(const void* data, size_t data_size, ImGuiID seed = 0); +IMGUI_API ImGuiID ImHashStr(const char* data, size_t data_size = 0, ImGuiID seed = 0); + +// Helpers: Sorting +#ifndef ImQsort +static inline void ImQsort(void* base, size_t count, size_t size_of_element, int(IMGUI_CDECL *compare_func)(void const*, void const*)) { if (count > 1) qsort(base, count, size_of_element, compare_func); } +#endif + +// Helpers: Color Blending +IMGUI_API ImU32 ImAlphaBlendColors(ImU32 col_a, ImU32 col_b); + +// Helpers: Bit manipulation +static inline bool ImIsPowerOfTwo(int v) { return v != 0 && (v & (v - 1)) == 0; } +static inline bool ImIsPowerOfTwo(ImU64 v) { return v != 0 && (v & (v - 1)) == 0; } +static inline int ImUpperPowerOfTwo(int v) { v--; v |= v >> 1; v |= v >> 2; v |= v >> 4; v |= v >> 8; v |= v >> 16; v++; return v; } + +// Helpers: String +IMGUI_API int ImStricmp(const char* str1, const char* str2); +IMGUI_API int ImStrnicmp(const char* str1, const char* str2, size_t count); +IMGUI_API void ImStrncpy(char* dst, const char* src, size_t count); +IMGUI_API char* ImStrdup(const char* str); +IMGUI_API char* ImStrdupcpy(char* dst, size_t* p_dst_size, const char* str); +IMGUI_API const char* ImStrchrRange(const char* str_begin, const char* str_end, char c); +IMGUI_API int ImStrlenW(const ImWchar* str); +IMGUI_API const char* ImStreolRange(const char* str, const char* str_end); // End end-of-line +IMGUI_API const ImWchar*ImStrbolW(const ImWchar* buf_mid_line, const ImWchar* buf_begin); // Find beginning-of-line +IMGUI_API const char* ImStristr(const char* haystack, const char* haystack_end, const char* needle, const char* needle_end); +IMGUI_API void ImStrTrimBlanks(char* str); +IMGUI_API const char* ImStrSkipBlank(const char* str); +IM_MSVC_RUNTIME_CHECKS_OFF +static inline char ImToUpper(char c) { return (c >= 'a' && c <= 'z') ? c &= ~32 : c; } +static inline bool ImCharIsBlankA(char c) { return c == ' ' || c == '\t'; } +static inline bool ImCharIsBlankW(unsigned int c) { return c == ' ' || c == '\t' || c == 0x3000; } +IM_MSVC_RUNTIME_CHECKS_RESTORE + +// Helpers: Formatting +IMGUI_API int ImFormatString(char* buf, size_t buf_size, const char* fmt, ...) IM_FMTARGS(3); +IMGUI_API int ImFormatStringV(char* buf, size_t buf_size, const char* fmt, va_list args) IM_FMTLIST(3); +IMGUI_API void ImFormatStringToTempBuffer(const char** out_buf, const char** out_buf_end, const char* fmt, ...) IM_FMTARGS(3); +IMGUI_API void ImFormatStringToTempBufferV(const char** out_buf, const char** out_buf_end, const char* fmt, va_list args) IM_FMTLIST(3); +IMGUI_API const char* ImParseFormatFindStart(const char* format); +IMGUI_API const char* ImParseFormatFindEnd(const char* format); +IMGUI_API const char* ImParseFormatTrimDecorations(const char* format, char* buf, size_t buf_size); +IMGUI_API void ImParseFormatSanitizeForPrinting(const char* fmt_in, char* fmt_out, size_t fmt_out_size); +IMGUI_API const char* ImParseFormatSanitizeForScanning(const char* fmt_in, char* fmt_out, size_t fmt_out_size); +IMGUI_API int ImParseFormatPrecision(const char* format, int default_value); + +// Helpers: UTF-8 <> wchar conversions +IMGUI_API const char* ImTextCharToUtf8(char out_buf[5], unsigned int c); // return out_buf +IMGUI_API int ImTextStrToUtf8(char* out_buf, int out_buf_size, const ImWchar* in_text, const ImWchar* in_text_end); // return output UTF-8 bytes count +IMGUI_API int ImTextCharFromUtf8(unsigned int* out_char, const char* in_text, const char* in_text_end); // read one character. return input UTF-8 bytes count +IMGUI_API int ImTextStrFromUtf8(ImWchar* out_buf, int out_buf_size, const char* in_text, const char* in_text_end, const char** in_remaining = NULL); // return input UTF-8 bytes count +IMGUI_API int ImTextCountCharsFromUtf8(const char* in_text, const char* in_text_end); // return number of UTF-8 code-points (NOT bytes count) +IMGUI_API int ImTextCountUtf8BytesFromChar(const char* in_text, const char* in_text_end); // return number of bytes to express one char in UTF-8 +IMGUI_API int ImTextCountUtf8BytesFromStr(const ImWchar* in_text, const ImWchar* in_text_end); // return number of bytes to express string in UTF-8 + +// Helpers: File System +#ifdef IMGUI_DISABLE_FILE_FUNCTIONS +#define IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS +typedef void* ImFileHandle; +static inline ImFileHandle ImFileOpen(const char*, const char*) { return NULL; } +static inline bool ImFileClose(ImFileHandle) { return false; } +static inline ImU64 ImFileGetSize(ImFileHandle) { return (ImU64)-1; } +static inline ImU64 ImFileRead(void*, ImU64, ImU64, ImFileHandle) { return 0; } +static inline ImU64 ImFileWrite(const void*, ImU64, ImU64, ImFileHandle) { return 0; } +#endif +#ifndef IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS +typedef FILE* ImFileHandle; +IMGUI_API ImFileHandle ImFileOpen(const char* filename, const char* mode); +IMGUI_API bool ImFileClose(ImFileHandle file); +IMGUI_API ImU64 ImFileGetSize(ImFileHandle file); +IMGUI_API ImU64 ImFileRead(void* data, ImU64 size, ImU64 count, ImFileHandle file); +IMGUI_API ImU64 ImFileWrite(const void* data, ImU64 size, ImU64 count, ImFileHandle file); +#else +#define IMGUI_DISABLE_TTY_FUNCTIONS // Can't use stdout, fflush if we are not using default file functions +#endif +IMGUI_API void* ImFileLoadToMemory(const char* filename, const char* mode, size_t* out_file_size = NULL, int padding_bytes = 0); + +// Helpers: Maths +IM_MSVC_RUNTIME_CHECKS_OFF +// - Wrapper for standard libs functions. (Note that imgui_demo.cpp does _not_ use them to keep the code easy to copy) +#ifndef IMGUI_DISABLE_DEFAULT_MATH_FUNCTIONS +#define ImFabs(X) fabsf(X) +#define ImSqrt(X) sqrtf(X) +#define ImFmod(X, Y) fmodf((X), (Y)) +#define ImCos(X) cosf(X) +#define ImSin(X) sinf(X) +#define ImAcos(X) acosf(X) +#define ImAtan2(Y, X) atan2f((Y), (X)) +#define ImAtof(STR) atof(STR) +//#define ImFloorStd(X) floorf(X) // We use our own, see ImFloor() and ImFloorSigned() +#define ImCeil(X) ceilf(X) +static inline float ImPow(float x, float y) { return powf(x, y); } // DragBehaviorT/SliderBehaviorT uses ImPow with either float/double and need the precision +static inline double ImPow(double x, double y) { return pow(x, y); } +static inline float ImLog(float x) { return logf(x); } // DragBehaviorT/SliderBehaviorT uses ImLog with either float/double and need the precision +static inline double ImLog(double x) { return log(x); } +static inline int ImAbs(int x) { return x < 0 ? -x : x; } +static inline float ImAbs(float x) { return fabsf(x); } +static inline double ImAbs(double x) { return fabs(x); } +static inline float ImSign(float x) { return (x < 0.0f) ? -1.0f : (x > 0.0f) ? 1.0f : 0.0f; } // Sign operator - returns -1, 0 or 1 based on sign of argument +static inline double ImSign(double x) { return (x < 0.0) ? -1.0 : (x > 0.0) ? 1.0 : 0.0; } +#ifdef IMGUI_ENABLE_SSE +static inline float ImRsqrt(float x) { return _mm_cvtss_f32(_mm_rsqrt_ss(_mm_set_ss(x))); } +#else +static inline float ImRsqrt(float x) { return 1.0f / sqrtf(x); } +#endif +static inline double ImRsqrt(double x) { return 1.0 / sqrt(x); } +#endif +// - ImMin/ImMax/ImClamp/ImLerp/ImSwap are used by widgets which support variety of types: signed/unsigned int/long long float/double +// (Exceptionally using templates here but we could also redefine them for those types) +template static inline T ImMin(T lhs, T rhs) { return lhs < rhs ? lhs : rhs; } +template static inline T ImMax(T lhs, T rhs) { return lhs >= rhs ? lhs : rhs; } +template static inline T ImClamp(T v, T mn, T mx) { return (v < mn) ? mn : (v > mx) ? mx : v; } +template static inline T ImLerp(T a, T b, float t) { return (T)(a + (b - a) * t); } +template static inline void ImSwap(T& a, T& b) { T tmp = a; a = b; b = tmp; } +template static inline T ImAddClampOverflow(T a, T b, T mn, T mx) { if (b < 0 && (a < mn - b)) return mn; if (b > 0 && (a > mx - b)) return mx; return a + b; } +template static inline T ImSubClampOverflow(T a, T b, T mn, T mx) { if (b > 0 && (a < mn + b)) return mn; if (b < 0 && (a > mx + b)) return mx; return a - b; } +// - Misc maths helpers +static inline float ImTrunc(float f) { return (float)(int)(f); } +static inline ImVec2 ImTrunc(const ImVec2& v) { return ImVec2((float)(int)(v.x), (float)(int)(v.y)); } +static inline ImVec2 ImMin(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x < rhs.x ? lhs.x : rhs.x, lhs.y < rhs.y ? lhs.y : rhs.y); } +static inline ImVec2 ImMax(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x >= rhs.x ? lhs.x : rhs.x, lhs.y >= rhs.y ? lhs.y : rhs.y); } +static inline ImVec2 ImClamp(const ImVec2& v, const ImVec2& mn, ImVec2 mx) { return ImVec2((v.x < mn.x) ? mn.x : (v.x > mx.x) ? mx.x : v.x, (v.y < mn.y) ? mn.y : (v.y > mx.y) ? mx.y : v.y); } +static inline ImVec2 ImLerp(const ImVec2& a, const ImVec2& b, float t) { return ImVec2(a.x + (b.x - a.x) * t, a.y + (b.y - a.y) * t); } +static inline ImVec2 ImLerp(const ImVec2& a, const ImVec2& b, const ImVec2& t) { return ImVec2(a.x + (b.x - a.x) * t.x, a.y + (b.y - a.y) * t.y); } +static inline ImVec4 ImLerp(const ImVec4& a, const ImVec4& b, float t) { return ImVec4(a.x + (b.x - a.x) * t, a.y + (b.y - a.y) * t, a.z + (b.z - a.z) * t, a.w + (b.w - a.w) * t); } +static inline float ImSaturate(float f) { return (f < 0.0f) ? 0.0f : (f > 1.0f) ? 1.0f : f; } +static inline float ImLengthSqr(const ImVec2& lhs) { return (lhs.x * lhs.x) + (lhs.y * lhs.y); } +static inline float ImLengthSqr(const ImVec4& lhs) { return (lhs.x * lhs.x) + (lhs.y * lhs.y) + (lhs.z * lhs.z) + (lhs.w * lhs.w); } +static inline float ImLength(const ImVec2& lhs, float fail_value) { float d = (lhs.x * lhs.x) + (lhs.y * lhs.y); if (d > 0.0f) return ImSqrt(d); return fail_value; } +static inline float ImInvLength(const ImVec2& lhs, float fail_value) { float d = (lhs.x * lhs.x) + (lhs.y * lhs.y); if (d > 0.0f) return ImRsqrt(d); return fail_value; } +static inline float ImFloor(float f) { return (float)(int)(f); } +static inline float ImFloorSigned(float f) { return (float)((f >= 0 || (float)(int)f == f) ? (int)f : (int)f - 1); } // Decent replacement for floorf() +static inline ImVec2 ImFloor(const ImVec2& v) { return ImVec2((float)(int)(v.x), (float)(int)(v.y)); } +static inline ImVec2 ImFloorSigned(const ImVec2& v) { return ImVec2(ImFloorSigned(v.x), ImFloorSigned(v.y)); } +static inline int ImModPositive(int a, int b) { return (a + b) % b; } +static inline float ImDot(const ImVec2& a, const ImVec2& b) { return a.x * b.x + a.y * b.y; } +static inline ImVec2 ImRotate(const ImVec2& v, float cos_a, float sin_a) { return ImVec2(v.x * cos_a - v.y * sin_a, v.x * sin_a + v.y * cos_a); } +static inline float ImLinearSweep(float current, float target, float speed) { if (current < target) return ImMin(current + speed, target); if (current > target) return ImMax(current - speed, target); return current; } +static inline ImVec2 ImMul(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x * rhs.x, lhs.y * rhs.y); } +static inline bool ImIsFloatAboveGuaranteedIntegerPrecision(float f) { return f <= -16777216 || f >= 16777216; } +static inline float ImExponentialMovingAverage(float avg, float sample, int n) { avg -= avg / n; avg += sample / n; return avg; } +IM_MSVC_RUNTIME_CHECKS_RESTORE + +// Helpers: Geometry +IMGUI_API ImVec2 ImBezierCubicCalc(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, float t); +IMGUI_API ImVec2 ImBezierCubicClosestPoint(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, const ImVec2& p, int num_segments); // For curves with explicit number of segments +IMGUI_API ImVec2 ImBezierCubicClosestPointCasteljau(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, const ImVec2& p, float tess_tol);// For auto-tessellated curves you can use tess_tol = style.CurveTessellationTol +IMGUI_API ImVec2 ImBezierQuadraticCalc(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, float t); +IMGUI_API ImVec2 ImLineClosestPoint(const ImVec2& a, const ImVec2& b, const ImVec2& p); +IMGUI_API bool ImTriangleContainsPoint(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p); +IMGUI_API ImVec2 ImTriangleClosestPoint(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p); +IMGUI_API void ImTriangleBarycentricCoords(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p, float& out_u, float& out_v, float& out_w); +inline float ImTriangleArea(const ImVec2& a, const ImVec2& b, const ImVec2& c) { return ImFabs((a.x * (b.y - c.y)) + (b.x * (c.y - a.y)) + (c.x * (a.y - b.y))) * 0.5f; } + +// Helper: ImVec1 (1D vector) +// (this odd construct is used to facilitate the transition between 1D and 2D, and the maintenance of some branches/patches) +IM_MSVC_RUNTIME_CHECKS_OFF +struct ImVec1 +{ + float x; + constexpr ImVec1() : x(0.0f) { } + constexpr ImVec1(float _x) : x(_x) { } +}; + +// Helper: ImVec2ih (2D vector, half-size integer, for long-term packed storage) +struct ImVec2ih +{ + short x, y; + constexpr ImVec2ih() : x(0), y(0) {} + constexpr ImVec2ih(short _x, short _y) : x(_x), y(_y) {} + constexpr explicit ImVec2ih(const ImVec2& rhs) : x((short)rhs.x), y((short)rhs.y) {} +}; + +// Helper: ImRect (2D axis aligned bounding-box) +// NB: we can't rely on ImVec2 math operators being available here! +struct IMGUI_API ImRect +{ + ImVec2 Min; // Upper-left + ImVec2 Max; // Lower-right + + constexpr ImRect() : Min(0.0f, 0.0f), Max(0.0f, 0.0f) {} + constexpr ImRect(const ImVec2& min, const ImVec2& max) : Min(min), Max(max) {} + constexpr ImRect(const ImVec4& v) : Min(v.x, v.y), Max(v.z, v.w) {} + constexpr ImRect(float x1, float y1, float x2, float y2) : Min(x1, y1), Max(x2, y2) {} + + ImVec2 GetCenter() const { return ImVec2((Min.x + Max.x) * 0.5f, (Min.y + Max.y) * 0.5f); } + ImVec2 GetSize() const { return ImVec2(Max.x - Min.x, Max.y - Min.y); } + float GetWidth() const { return Max.x - Min.x; } + float GetHeight() const { return Max.y - Min.y; } + float GetArea() const { return (Max.x - Min.x) * (Max.y - Min.y); } + ImVec2 GetTL() const { return Min; } // Top-left + ImVec2 GetTR() const { return ImVec2(Max.x, Min.y); } // Top-right + ImVec2 GetBL() const { return ImVec2(Min.x, Max.y); } // Bottom-left + ImVec2 GetBR() const { return Max; } // Bottom-right + bool Contains(const ImVec2& p) const { return p.x >= Min.x && p.y >= Min.y && p.x < Max.x && p.y < Max.y; } + bool Contains(const ImRect& r) const { return r.Min.x >= Min.x && r.Min.y >= Min.y && r.Max.x <= Max.x && r.Max.y <= Max.y; } + bool Overlaps(const ImRect& r) const { return r.Min.y < Max.y && r.Max.y > Min.y && r.Min.x < Max.x && r.Max.x > Min.x; } + void Add(const ImVec2& p) { if (Min.x > p.x) Min.x = p.x; if (Min.y > p.y) Min.y = p.y; if (Max.x < p.x) Max.x = p.x; if (Max.y < p.y) Max.y = p.y; } + void Add(const ImRect& r) { if (Min.x > r.Min.x) Min.x = r.Min.x; if (Min.y > r.Min.y) Min.y = r.Min.y; if (Max.x < r.Max.x) Max.x = r.Max.x; if (Max.y < r.Max.y) Max.y = r.Max.y; } + void Expand(const float amount) { Min.x -= amount; Min.y -= amount; Max.x += amount; Max.y += amount; } + void Expand(const ImVec2& amount) { Min.x -= amount.x; Min.y -= amount.y; Max.x += amount.x; Max.y += amount.y; } + void Translate(const ImVec2& d) { Min.x += d.x; Min.y += d.y; Max.x += d.x; Max.y += d.y; } + void TranslateX(float dx) { Min.x += dx; Max.x += dx; } + void TranslateY(float dy) { Min.y += dy; Max.y += dy; } + void ClipWith(const ImRect& r) { Min = ImMax(Min, r.Min); Max = ImMin(Max, r.Max); } // Simple version, may lead to an inverted rectangle, which is fine for Contains/Overlaps test but not for display. + void ClipWithFull(const ImRect& r) { Min = ImClamp(Min, r.Min, r.Max); Max = ImClamp(Max, r.Min, r.Max); } // Full version, ensure both points are fully clipped. + void Floor() { Min.x = IM_FLOOR(Min.x); Min.y = IM_FLOOR(Min.y); Max.x = IM_FLOOR(Max.x); Max.y = IM_FLOOR(Max.y); } + bool IsInverted() const { return Min.x > Max.x || Min.y > Max.y; } + ImVec4 ToVec4() const { return ImVec4(Min.x, Min.y, Max.x, Max.y); } +}; + +// Helper: ImBitArray +#define IM_BITARRAY_TESTBIT(_ARRAY, _N) ((_ARRAY[(_N) >> 5] & ((ImU32)1 << ((_N) & 31))) != 0) // Macro version of ImBitArrayTestBit(): ensure args have side-effect or are costly! +#define IM_BITARRAY_CLEARBIT(_ARRAY, _N) ((_ARRAY[(_N) >> 5] &= ~((ImU32)1 << ((_N) & 31)))) // Macro version of ImBitArrayClearBit(): ensure args have side-effect or are costly! +inline size_t ImBitArrayGetStorageSizeInBytes(int bitcount) { return (size_t)((bitcount + 31) >> 5) << 2; } +inline void ImBitArrayClearAllBits(ImU32* arr, int bitcount){ memset(arr, 0, ImBitArrayGetStorageSizeInBytes(bitcount)); } +inline bool ImBitArrayTestBit(const ImU32* arr, int n) { ImU32 mask = (ImU32)1 << (n & 31); return (arr[n >> 5] & mask) != 0; } +inline void ImBitArrayClearBit(ImU32* arr, int n) { ImU32 mask = (ImU32)1 << (n & 31); arr[n >> 5] &= ~mask; } +inline void ImBitArraySetBit(ImU32* arr, int n) { ImU32 mask = (ImU32)1 << (n & 31); arr[n >> 5] |= mask; } +inline void ImBitArraySetBitRange(ImU32* arr, int n, int n2) // Works on range [n..n2) +{ + n2--; + while (n <= n2) + { + int a_mod = (n & 31); + int b_mod = (n2 > (n | 31) ? 31 : (n2 & 31)) + 1; + ImU32 mask = (ImU32)(((ImU64)1 << b_mod) - 1) & ~(ImU32)(((ImU64)1 << a_mod) - 1); + arr[n >> 5] |= mask; + n = (n + 32) & ~31; + } +} + +typedef ImU32* ImBitArrayPtr; // Name for use in structs + +// Helper: ImBitArray class (wrapper over ImBitArray functions) +// Store 1-bit per value. +template +struct ImBitArray +{ + ImU32 Storage[(BITCOUNT + 31) >> 5]; + ImBitArray() { ClearAllBits(); } + void ClearAllBits() { memset(Storage, 0, sizeof(Storage)); } + void SetAllBits() { memset(Storage, 255, sizeof(Storage)); } + bool TestBit(int n) const { n += OFFSET; IM_ASSERT(n >= 0 && n < BITCOUNT); return IM_BITARRAY_TESTBIT(Storage, n); } + void SetBit(int n) { n += OFFSET; IM_ASSERT(n >= 0 && n < BITCOUNT); ImBitArraySetBit(Storage, n); } + void ClearBit(int n) { n += OFFSET; IM_ASSERT(n >= 0 && n < BITCOUNT); ImBitArrayClearBit(Storage, n); } + void SetBitRange(int n, int n2) { n += OFFSET; n2 += OFFSET; IM_ASSERT(n >= 0 && n < BITCOUNT && n2 > n && n2 <= BITCOUNT); ImBitArraySetBitRange(Storage, n, n2); } // Works on range [n..n2) + bool operator[](int n) const { n += OFFSET; IM_ASSERT(n >= 0 && n < BITCOUNT); return IM_BITARRAY_TESTBIT(Storage, n); } +}; + +// Helper: ImBitVector +// Store 1-bit per value. +struct IMGUI_API ImBitVector +{ + ImVector Storage; + void Create(int sz) { Storage.resize((sz + 31) >> 5); memset(Storage.Data, 0, (size_t)Storage.Size * sizeof(Storage.Data[0])); } + void Clear() { Storage.clear(); } + bool TestBit(int n) const { IM_ASSERT(n < (Storage.Size << 5)); return IM_BITARRAY_TESTBIT(Storage.Data, n); } + void SetBit(int n) { IM_ASSERT(n < (Storage.Size << 5)); ImBitArraySetBit(Storage.Data, n); } + void ClearBit(int n) { IM_ASSERT(n < (Storage.Size << 5)); ImBitArrayClearBit(Storage.Data, n); } +}; +IM_MSVC_RUNTIME_CHECKS_RESTORE + +// Helper: ImSpan<> +// Pointing to a span of data we don't own. +template +struct ImSpan +{ + T* Data; + T* DataEnd; + + // Constructors, destructor + inline ImSpan() { Data = DataEnd = NULL; } + inline ImSpan(T* data, int size) { Data = data; DataEnd = data + size; } + inline ImSpan(T* data, T* data_end) { Data = data; DataEnd = data_end; } + + inline void set(T* data, int size) { Data = data; DataEnd = data + size; } + inline void set(T* data, T* data_end) { Data = data; DataEnd = data_end; } + inline int size() const { return (int)(ptrdiff_t)(DataEnd - Data); } + inline int size_in_bytes() const { return (int)(ptrdiff_t)(DataEnd - Data) * (int)sizeof(T); } + inline T& operator[](int i) { T* p = Data + i; IM_ASSERT(p >= Data && p < DataEnd); return *p; } + inline const T& operator[](int i) const { const T* p = Data + i; IM_ASSERT(p >= Data && p < DataEnd); return *p; } + + inline T* begin() { return Data; } + inline const T* begin() const { return Data; } + inline T* end() { return DataEnd; } + inline const T* end() const { return DataEnd; } + + // Utilities + inline int index_from_ptr(const T* it) const { IM_ASSERT(it >= Data && it < DataEnd); const ptrdiff_t off = it - Data; return (int)off; } +}; + +// Helper: ImSpanAllocator<> +// Facilitate storing multiple chunks into a single large block (the "arena") +// - Usage: call Reserve() N times, allocate GetArenaSizeInBytes() worth, pass it to SetArenaBasePtr(), call GetSpan() N times to retrieve the aligned ranges. +template +struct ImSpanAllocator +{ + char* BasePtr; + int CurrOff; + int CurrIdx; + int Offsets[CHUNKS]; + int Sizes[CHUNKS]; + + ImSpanAllocator() { memset(this, 0, sizeof(*this)); } + inline void Reserve(int n, size_t sz, int a=4) { IM_ASSERT(n == CurrIdx && n < CHUNKS); CurrOff = IM_MEMALIGN(CurrOff, a); Offsets[n] = CurrOff; Sizes[n] = (int)sz; CurrIdx++; CurrOff += (int)sz; } + inline int GetArenaSizeInBytes() { return CurrOff; } + inline void SetArenaBasePtr(void* base_ptr) { BasePtr = (char*)base_ptr; } + inline void* GetSpanPtrBegin(int n) { IM_ASSERT(n >= 0 && n < CHUNKS && CurrIdx == CHUNKS); return (void*)(BasePtr + Offsets[n]); } + inline void* GetSpanPtrEnd(int n) { IM_ASSERT(n >= 0 && n < CHUNKS && CurrIdx == CHUNKS); return (void*)(BasePtr + Offsets[n] + Sizes[n]); } + template + inline void GetSpan(int n, ImSpan* span) { span->set((T*)GetSpanPtrBegin(n), (T*)GetSpanPtrEnd(n)); } +}; + +// Helper: ImPool<> +// Basic keyed storage for contiguous instances, slow/amortized insertion, O(1) indexable, O(Log N) queries by ID over a dense/hot buffer, +// Honor constructor/destructor. Add/remove invalidate all pointers. Indexes have the same lifetime as the associated object. +typedef int ImPoolIdx; +template +struct ImPool +{ + ImVector Buf; // Contiguous data + ImGuiStorage Map; // ID->Index + ImPoolIdx FreeIdx; // Next free idx to use + ImPoolIdx AliveCount; // Number of active/alive items (for display purpose) + + ImPool() { FreeIdx = AliveCount = 0; } + ~ImPool() { Clear(); } + T* GetByKey(ImGuiID key) { int idx = Map.GetInt(key, -1); return (idx != -1) ? &Buf[idx] : NULL; } + T* GetByIndex(ImPoolIdx n) { return &Buf[n]; } + ImPoolIdx GetIndex(const T* p) const { IM_ASSERT(p >= Buf.Data && p < Buf.Data + Buf.Size); return (ImPoolIdx)(p - Buf.Data); } + T* GetOrAddByKey(ImGuiID key) { int* p_idx = Map.GetIntRef(key, -1); if (*p_idx != -1) return &Buf[*p_idx]; *p_idx = FreeIdx; return Add(); } + bool Contains(const T* p) const { return (p >= Buf.Data && p < Buf.Data + Buf.Size); } + void Clear() { for (int n = 0; n < Map.Data.Size; n++) { int idx = Map.Data[n].val_i; if (idx != -1) Buf[idx].~T(); } Map.Clear(); Buf.clear(); FreeIdx = AliveCount = 0; } + T* Add() { int idx = FreeIdx; if (idx == Buf.Size) { Buf.resize(Buf.Size + 1); FreeIdx++; } else { FreeIdx = *(int*)&Buf[idx]; } IM_PLACEMENT_NEW(&Buf[idx]) T(); AliveCount++; return &Buf[idx]; } + void Remove(ImGuiID key, const T* p) { Remove(key, GetIndex(p)); } + void Remove(ImGuiID key, ImPoolIdx idx) { Buf[idx].~T(); *(int*)&Buf[idx] = FreeIdx; FreeIdx = idx; Map.SetInt(key, -1); AliveCount--; } + void Reserve(int capacity) { Buf.reserve(capacity); Map.Data.reserve(capacity); } + + // To iterate a ImPool: for (int n = 0; n < pool.GetMapSize(); n++) if (T* t = pool.TryGetMapData(n)) { ... } + // Can be avoided if you know .Remove() has never been called on the pool, or AliveCount == GetMapSize() + int GetAliveCount() const { return AliveCount; } // Number of active/alive items in the pool (for display purpose) + int GetBufSize() const { return Buf.Size; } + int GetMapSize() const { return Map.Data.Size; } // It is the map we need iterate to find valid items, since we don't have "alive" storage anywhere + T* TryGetMapData(ImPoolIdx n) { int idx = Map.Data[n].val_i; if (idx == -1) return NULL; return GetByIndex(idx); } +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + int GetSize() { return GetMapSize(); } // For ImPlot: should use GetMapSize() from (IMGUI_VERSION_NUM >= 18304) +#endif +}; + +// Helper: ImChunkStream<> +// Build and iterate a contiguous stream of variable-sized structures. +// This is used by Settings to store persistent data while reducing allocation count. +// We store the chunk size first, and align the final size on 4 bytes boundaries. +// The tedious/zealous amount of casting is to avoid -Wcast-align warnings. +template +struct ImChunkStream +{ + ImVector Buf; + + void clear() { Buf.clear(); } + bool empty() const { return Buf.Size == 0; } + int size() const { return Buf.Size; } + T* alloc_chunk(size_t sz) { size_t HDR_SZ = 4; sz = IM_MEMALIGN(HDR_SZ + sz, 4u); int off = Buf.Size; Buf.resize(off + (int)sz); ((int*)(void*)(Buf.Data + off))[0] = (int)sz; return (T*)(void*)(Buf.Data + off + (int)HDR_SZ); } + T* begin() { size_t HDR_SZ = 4; if (!Buf.Data) return NULL; return (T*)(void*)(Buf.Data + HDR_SZ); } + T* next_chunk(T* p) { size_t HDR_SZ = 4; IM_ASSERT(p >= begin() && p < end()); p = (T*)(void*)((char*)(void*)p + chunk_size(p)); if (p == (T*)(void*)((char*)end() + HDR_SZ)) return (T*)0; IM_ASSERT(p < end()); return p; } + int chunk_size(const T* p) { return ((const int*)p)[-1]; } + T* end() { return (T*)(void*)(Buf.Data + Buf.Size); } + int offset_from_ptr(const T* p) { IM_ASSERT(p >= begin() && p < end()); const ptrdiff_t off = (const char*)p - Buf.Data; return (int)off; } + T* ptr_from_offset(int off) { IM_ASSERT(off >= 4 && off < Buf.Size); return (T*)(void*)(Buf.Data + off); } + void swap(ImChunkStream& rhs) { rhs.Buf.swap(Buf); } + +}; + +// Helper: ImGuiTextIndex<> +// Maintain a line index for a text buffer. This is a strong candidate to be moved into the public API. +struct ImGuiTextIndex +{ + ImVector LineOffsets; + int EndOffset = 0; // Because we don't own text buffer we need to maintain EndOffset (may bake in LineOffsets?) + + void clear() { LineOffsets.clear(); EndOffset = 0; } + int size() { return LineOffsets.Size; } + const char* get_line_begin(const char* base, int n) { return base + LineOffsets[n]; } + const char* get_line_end(const char* base, int n) { return base + (n + 1 < LineOffsets.Size ? (LineOffsets[n + 1] - 1) : EndOffset); } + void append(const char* base, int old_size, int new_size); +}; + +//----------------------------------------------------------------------------- +// [SECTION] ImDrawList support +//----------------------------------------------------------------------------- + +// ImDrawList: Helper function to calculate a circle's segment count given its radius and a "maximum error" value. +// Estimation of number of circle segment based on error is derived using method described in https://stackoverflow.com/a/2244088/15194693 +// Number of segments (N) is calculated using equation: +// N = ceil ( pi / acos(1 - error / r) ) where r > 0, error <= r +// Our equation is significantly simpler that one in the post thanks for choosing segment that is +// perpendicular to X axis. Follow steps in the article from this starting condition and you will +// will get this result. +// +// Rendering circles with an odd number of segments, while mathematically correct will produce +// asymmetrical results on the raster grid. Therefore we're rounding N to next even number (7->8, 8->8, 9->10 etc.) +#define IM_ROUNDUP_TO_EVEN(_V) ((((_V) + 1) / 2) * 2) +#define IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MIN 4 +#define IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX 512 +#define IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC(_RAD,_MAXERROR) ImClamp(IM_ROUNDUP_TO_EVEN((int)ImCeil(IM_PI / ImAcos(1 - ImMin((_MAXERROR), (_RAD)) / (_RAD)))), IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MIN, IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX) + +// Raw equation from IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC rewritten for 'r' and 'error'. +#define IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC_R(_N,_MAXERROR) ((_MAXERROR) / (1 - ImCos(IM_PI / ImMax((float)(_N), IM_PI)))) +#define IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC_ERROR(_N,_RAD) ((1 - ImCos(IM_PI / ImMax((float)(_N), IM_PI))) / (_RAD)) + +// ImDrawList: Lookup table size for adaptive arc drawing, cover full circle. +#ifndef IM_DRAWLIST_ARCFAST_TABLE_SIZE +#define IM_DRAWLIST_ARCFAST_TABLE_SIZE 48 // Number of samples in lookup table. +#endif +#define IM_DRAWLIST_ARCFAST_SAMPLE_MAX IM_DRAWLIST_ARCFAST_TABLE_SIZE // Sample index _PathArcToFastEx() for 360 angle. + +// Data shared between all ImDrawList instances +// You may want to create your own instance of this if you want to use ImDrawList completely without ImGui. In that case, watch out for future changes to this structure. +struct IMGUI_API ImDrawListSharedData +{ + ImVec2 TexUvWhitePixel; // UV of white pixel in the atlas + ImFont* Font; // Current/default font (optional, for simplified AddText overload) + float FontSize; // Current/default font size (optional, for simplified AddText overload) + float CurveTessellationTol; // Tessellation tolerance when using PathBezierCurveTo() + float CircleSegmentMaxError; // Number of circle segments to use per pixel of radius for AddCircle() etc + ImVec4 ClipRectFullscreen; // Value for PushClipRectFullscreen() + ImDrawListFlags InitialFlags; // Initial flags at the beginning of the frame (it is possible to alter flags on a per-drawlist basis afterwards) + + // [Internal] Temp write buffer + ImVector TempBuffer; + + // [Internal] Lookup tables + ImVec2 ArcFastVtx[IM_DRAWLIST_ARCFAST_TABLE_SIZE]; // Sample points on the quarter of the circle. + float ArcFastRadiusCutoff; // Cutoff radius after which arc drawing will fallback to slower PathArcTo() + ImU8 CircleSegmentCounts[64]; // Precomputed segment count for given radius before we calculate it dynamically (to avoid calculation overhead) + const ImVec4* TexUvLines; // UV of anti-aliased lines in the atlas + + int* ShadowRectIds; // IDs of rects for shadow texture (2 entries) + const ImVec4* ShadowRectUvs; // UV coordinates for shadow texture (10 entries) + + ImDrawListSharedData(); + void SetCircleTessellationMaxError(float max_error); +}; + +struct ImDrawDataBuilder +{ + ImVector* Layers[2]; // Pointers to global layers for: regular, tooltip. LayersP[0] is owned by DrawData. + ImVector LayerData1; + + ImDrawDataBuilder() { memset(this, 0, sizeof(*this)); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Widgets support: flags, enums, data structures +//----------------------------------------------------------------------------- + +// Flags used by upcoming items +// - input: PushItemFlag() manipulates g.CurrentItemFlags, ItemAdd() calls may add extra flags. +// - output: stored in g.LastItemData.InFlags +// Current window shared by all windows. +// This is going to be exposed in imgui.h when stabilized enough. +enum ImGuiItemFlags_ +{ + // Controlled by user + ImGuiItemFlags_None = 0, + ImGuiItemFlags_NoTabStop = 1 << 0, // false // Disable keyboard tabbing. This is a "lighter" version of ImGuiItemFlags_NoNav. + ImGuiItemFlags_ButtonRepeat = 1 << 1, // false // Button() will return true multiple times based on io.KeyRepeatDelay and io.KeyRepeatRate settings. + ImGuiItemFlags_Disabled = 1 << 2, // false // Disable interactions but doesn't affect visuals. See BeginDisabled()/EndDisabled(). See github.com/ocornut/imgui/issues/211 + ImGuiItemFlags_NoNav = 1 << 3, // false // Disable any form of focusing (keyboard/gamepad directional navigation and SetKeyboardFocusHere() calls) + ImGuiItemFlags_NoNavDefaultFocus = 1 << 4, // false // Disable item being a candidate for default focus (e.g. used by title bar items) + ImGuiItemFlags_SelectableDontClosePopup = 1 << 5, // false // Disable MenuItem/Selectable() automatically closing their popup window + ImGuiItemFlags_MixedValue = 1 << 6, // false // [BETA] Represent a mixed/indeterminate value, generally multi-selection where values differ. Currently only supported by Checkbox() (later should support all sorts of widgets) + ImGuiItemFlags_ReadOnly = 1 << 7, // false // [ALPHA] Allow hovering interactions but underlying value is not changed. + ImGuiItemFlags_NoWindowHoverableCheck = 1 << 8, // false // Disable hoverable check in ItemHoverable() + ImGuiItemFlags_AllowOverlap = 1 << 9, // false // Allow being overlapped by another widget. Not-hovered to Hovered transition deferred by a frame. + + // Controlled by widget code + ImGuiItemFlags_Inputable = 1 << 10, // false // [WIP] Auto-activate input mode when tab focused. Currently only used and supported by a few items before it becomes a generic feature. +}; + +// Status flags for an already submitted item +// - output: stored in g.LastItemData.StatusFlags +enum ImGuiItemStatusFlags_ +{ + ImGuiItemStatusFlags_None = 0, + ImGuiItemStatusFlags_HoveredRect = 1 << 0, // Mouse position is within item rectangle (does NOT mean that the window is in correct z-order and can be hovered!, this is only one part of the most-common IsItemHovered test) + ImGuiItemStatusFlags_HasDisplayRect = 1 << 1, // g.LastItemData.DisplayRect is valid + ImGuiItemStatusFlags_Edited = 1 << 2, // Value exposed by item was edited in the current frame (should match the bool return value of most widgets) + ImGuiItemStatusFlags_ToggledSelection = 1 << 3, // Set when Selectable(), TreeNode() reports toggling a selection. We can't report "Selected", only state changes, in order to easily handle clipping with less issues. + ImGuiItemStatusFlags_ToggledOpen = 1 << 4, // Set when TreeNode() reports toggling their open state. + ImGuiItemStatusFlags_HasDeactivated = 1 << 5, // Set if the widget/group is able to provide data for the ImGuiItemStatusFlags_Deactivated flag. + ImGuiItemStatusFlags_Deactivated = 1 << 6, // Only valid if ImGuiItemStatusFlags_HasDeactivated is set. + ImGuiItemStatusFlags_HoveredWindow = 1 << 7, // Override the HoveredWindow test to allow cross-window hover testing. + ImGuiItemStatusFlags_FocusedByTabbing = 1 << 8, // Set when the Focusable item just got focused by Tabbing (FIXME: to be removed soon) + ImGuiItemStatusFlags_Visible = 1 << 9, // [WIP] Set when item is overlapping the current clipping rectangle (Used internally. Please don't use yet: API/system will change as we refactor Itemadd()). + + // Additional status + semantic for ImGuiTestEngine +#ifdef IMGUI_ENABLE_TEST_ENGINE + ImGuiItemStatusFlags_Openable = 1 << 20, // Item is an openable (e.g. TreeNode) + ImGuiItemStatusFlags_Opened = 1 << 21, // Opened status + ImGuiItemStatusFlags_Checkable = 1 << 22, // Item is a checkable (e.g. CheckBox, MenuItem) + ImGuiItemStatusFlags_Checked = 1 << 23, // Checked status + ImGuiItemStatusFlags_Inputable = 1 << 24, // Item is a text-inputable (e.g. InputText, SliderXXX, DragXXX) +#endif +}; + +// Extend ImGuiHoveredFlags_ +enum ImGuiHoveredFlagsPrivate_ +{ + ImGuiHoveredFlags_DelayMask_ = ImGuiHoveredFlags_DelayNone | ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_DelayNormal | ImGuiHoveredFlags_NoSharedDelay, + ImGuiHoveredFlags_AllowedMaskForIsWindowHovered = ImGuiHoveredFlags_ChildWindows | ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_AnyWindow | ImGuiHoveredFlags_NoPopupHierarchy | ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_Stationary, + ImGuiHoveredFlags_AllowedMaskForIsItemHovered = ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped | ImGuiHoveredFlags_AllowWhenDisabled | ImGuiHoveredFlags_NoNavOverride | ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayMask_, +}; + +// Extend ImGuiInputTextFlags_ +enum ImGuiInputTextFlagsPrivate_ +{ + // [Internal] + ImGuiInputTextFlags_Multiline = 1 << 26, // For internal use by InputTextMultiline() + ImGuiInputTextFlags_NoMarkEdited = 1 << 27, // For internal use by functions using InputText() before reformatting data + ImGuiInputTextFlags_MergedItem = 1 << 28, // For internal use by TempInputText(), will skip calling ItemAdd(). Require bounding-box to strictly match. +}; + +// Extend ImGuiButtonFlags_ +enum ImGuiButtonFlagsPrivate_ +{ + ImGuiButtonFlags_PressedOnClick = 1 << 4, // return true on click (mouse down event) + ImGuiButtonFlags_PressedOnClickRelease = 1 << 5, // [Default] return true on click + release on same item <-- this is what the majority of Button are using + ImGuiButtonFlags_PressedOnClickReleaseAnywhere = 1 << 6, // return true on click + release even if the release event is not done while hovering the item + ImGuiButtonFlags_PressedOnRelease = 1 << 7, // return true on release (default requires click+release) + ImGuiButtonFlags_PressedOnDoubleClick = 1 << 8, // return true on double-click (default requires click+release) + ImGuiButtonFlags_PressedOnDragDropHold = 1 << 9, // return true when held into while we are drag and dropping another item (used by e.g. tree nodes, collapsing headers) + ImGuiButtonFlags_Repeat = 1 << 10, // hold to repeat + ImGuiButtonFlags_FlattenChildren = 1 << 11, // allow interactions even if a child window is overlapping + ImGuiButtonFlags_AllowOverlap = 1 << 12, // require previous frame HoveredId to either match id or be null before being usable. + ImGuiButtonFlags_DontClosePopups = 1 << 13, // disable automatically closing parent popup on press // [UNUSED] + //ImGuiButtonFlags_Disabled = 1 << 14, // disable interactions -> use BeginDisabled() or ImGuiItemFlags_Disabled + ImGuiButtonFlags_AlignTextBaseLine = 1 << 15, // vertically align button to match text baseline - ButtonEx() only // FIXME: Should be removed and handled by SmallButton(), not possible currently because of DC.CursorPosPrevLine + ImGuiButtonFlags_NoKeyModifiers = 1 << 16, // disable mouse interaction if a key modifier is held + ImGuiButtonFlags_NoHoldingActiveId = 1 << 17, // don't set ActiveId while holding the mouse (ImGuiButtonFlags_PressedOnClick only) + ImGuiButtonFlags_NoNavFocus = 1 << 18, // don't override navigation focus when activated (FIXME: this is essentially used everytime an item uses ImGuiItemFlags_NoNav, but because legacy specs don't requires LastItemData to be set ButtonBehavior(), we can't poll g.LastItemData.InFlags) + ImGuiButtonFlags_NoHoveredOnFocus = 1 << 19, // don't report as hovered when nav focus is on this item + ImGuiButtonFlags_NoSetKeyOwner = 1 << 20, // don't set key/input owner on the initial click (note: mouse buttons are keys! often, the key in question will be ImGuiKey_MouseLeft!) + ImGuiButtonFlags_NoTestKeyOwner = 1 << 21, // don't test key/input owner when polling the key (note: mouse buttons are keys! often, the key in question will be ImGuiKey_MouseLeft!) + ImGuiButtonFlags_PressedOnMask_ = ImGuiButtonFlags_PressedOnClick | ImGuiButtonFlags_PressedOnClickRelease | ImGuiButtonFlags_PressedOnClickReleaseAnywhere | ImGuiButtonFlags_PressedOnRelease | ImGuiButtonFlags_PressedOnDoubleClick | ImGuiButtonFlags_PressedOnDragDropHold, + ImGuiButtonFlags_PressedOnDefault_ = ImGuiButtonFlags_PressedOnClickRelease, +}; + +// Extend ImGuiComboFlags_ +enum ImGuiComboFlagsPrivate_ +{ + ImGuiComboFlags_CustomPreview = 1 << 20, // enable BeginComboPreview() +}; + +// Extend ImGuiSliderFlags_ +enum ImGuiSliderFlagsPrivate_ +{ + ImGuiSliderFlags_Vertical = 1 << 20, // Should this slider be orientated vertically? + ImGuiSliderFlags_ReadOnly = 1 << 21, // Consider using g.NextItemData.ItemFlags |= ImGuiItemFlags_ReadOnly instead. +}; + +// Extend ImGuiSelectableFlags_ +enum ImGuiSelectableFlagsPrivate_ +{ + // NB: need to be in sync with last value of ImGuiSelectableFlags_ + ImGuiSelectableFlags_NoHoldingActiveID = 1 << 20, + ImGuiSelectableFlags_SelectOnNav = 1 << 21, // (WIP) Auto-select when moved into. This is not exposed in public API as to handle multi-select and modifiers we will need user to explicitly control focus scope. May be replaced with a BeginSelection() API. + ImGuiSelectableFlags_SelectOnClick = 1 << 22, // Override button behavior to react on Click (default is Click+Release) + ImGuiSelectableFlags_SelectOnRelease = 1 << 23, // Override button behavior to react on Release (default is Click+Release) + ImGuiSelectableFlags_SpanAvailWidth = 1 << 24, // Span all avail width even if we declared less for layout purpose. FIXME: We may be able to remove this (added in 6251d379, 2bcafc86 for menus) + ImGuiSelectableFlags_SetNavIdOnHover = 1 << 25, // Set Nav/Focus ID on mouse hover (used by MenuItem) + ImGuiSelectableFlags_NoPadWithHalfSpacing = 1 << 26, // Disable padding each side with ItemSpacing * 0.5f + ImGuiSelectableFlags_NoSetKeyOwner = 1 << 27, // Don't set key/input owner on the initial click (note: mouse buttons are keys! often, the key in question will be ImGuiKey_MouseLeft!) +}; + +// Extend ImGuiTreeNodeFlags_ +enum ImGuiTreeNodeFlagsPrivate_ +{ + ImGuiTreeNodeFlags_ClipLabelForTrailingButton = 1 << 20, + ImGuiTreeNodeFlags_UpsideDownArrow = 1 << 21,// (FIXME-WIP) Turn Down arrow into an Up arrow, but reversed trees (#6517) +}; + +enum ImGuiSeparatorFlags_ +{ + ImGuiSeparatorFlags_None = 0, + ImGuiSeparatorFlags_Horizontal = 1 << 0, // Axis default to current layout type, so generally Horizontal unless e.g. in a menu bar + ImGuiSeparatorFlags_Vertical = 1 << 1, + ImGuiSeparatorFlags_SpanAllColumns = 1 << 2, // Make separator cover all columns of a legacy Columns() set. +}; + +// Flags for FocusWindow(). This is not called ImGuiFocusFlags to avoid confusion with public-facing ImGuiFocusedFlags. +// FIXME: Once we finishing replacing more uses of GetTopMostPopupModal()+IsWindowWithinBeginStackOf() +// and FindBlockingModal() with this, we may want to change the flag to be opt-out instead of opt-in. +enum ImGuiFocusRequestFlags_ +{ + ImGuiFocusRequestFlags_None = 0, + ImGuiFocusRequestFlags_RestoreFocusedChild = 1 << 0, // Find last focused child (if any) and focus it instead. + ImGuiFocusRequestFlags_UnlessBelowModal = 1 << 1, // Do not set focus if the window is below a modal. +}; + +enum ImGuiTextFlags_ +{ + ImGuiTextFlags_None = 0, + ImGuiTextFlags_NoWidthForLargeClippedText = 1 << 0, +}; + +enum ImGuiTooltipFlags_ +{ + ImGuiTooltipFlags_None = 0, + ImGuiTooltipFlags_OverridePrevious = 1 << 1, // Clear/ignore previously submitted tooltip (defaults to append) +}; + +// FIXME: this is in development, not exposed/functional as a generic feature yet. +// Horizontal/Vertical enums are fixed to 0/1 so they may be used to index ImVec2 +enum ImGuiLayoutType_ +{ + ImGuiLayoutType_Horizontal = 0, + ImGuiLayoutType_Vertical = 1 +}; + +enum ImGuiLogType +{ + ImGuiLogType_None = 0, + ImGuiLogType_TTY, + ImGuiLogType_File, + ImGuiLogType_Buffer, + ImGuiLogType_Clipboard, +}; + +// X/Y enums are fixed to 0/1 so they may be used to index ImVec2 +enum ImGuiAxis +{ + ImGuiAxis_None = -1, + ImGuiAxis_X = 0, + ImGuiAxis_Y = 1 +}; + +enum ImGuiPlotType +{ + ImGuiPlotType_Lines, + ImGuiPlotType_Histogram, +}; + +enum ImGuiPopupPositionPolicy +{ + ImGuiPopupPositionPolicy_Default, + ImGuiPopupPositionPolicy_ComboBox, + ImGuiPopupPositionPolicy_Tooltip, +}; + +struct ImGuiDataVarInfo +{ + ImGuiDataType Type; + ImU32 Count; // 1+ + ImU32 Offset; // Offset in parent structure + void* GetVarPtr(void* parent) const { return (void*)((unsigned char*)parent + Offset); } +}; + +struct ImGuiDataTypeTempStorage +{ + ImU8 Data[8]; // Can fit any data up to ImGuiDataType_COUNT +}; + +// Type information associated to one ImGuiDataType. Retrieve with DataTypeGetInfo(). +struct ImGuiDataTypeInfo +{ + size_t Size; // Size in bytes + const char* Name; // Short descriptive name for the type, for debugging + const char* PrintFmt; // Default printf format for the type + const char* ScanFmt; // Default scanf format for the type +}; + +// Extend ImGuiDataType_ +enum ImGuiDataTypePrivate_ +{ + ImGuiDataType_String = ImGuiDataType_COUNT + 1, + ImGuiDataType_Pointer, + ImGuiDataType_ID, +}; + +// Stacked color modifier, backup of modified data so we can restore it +struct ImGuiColorMod +{ + ImGuiCol Col; + ImVec4 BackupValue; +}; + +// Stacked style modifier, backup of modified data so we can restore it. Data type inferred from the variable. +struct ImGuiStyleMod +{ + ImGuiStyleVar VarIdx; + union { int BackupInt[2]; float BackupFloat[2]; }; + ImGuiStyleMod(ImGuiStyleVar idx, int v) { VarIdx = idx; BackupInt[0] = v; } + ImGuiStyleMod(ImGuiStyleVar idx, float v) { VarIdx = idx; BackupFloat[0] = v; } + ImGuiStyleMod(ImGuiStyleVar idx, ImVec2 v) { VarIdx = idx; BackupFloat[0] = v.x; BackupFloat[1] = v.y; } +}; + +// Storage data for BeginComboPreview()/EndComboPreview() +struct IMGUI_API ImGuiComboPreviewData +{ + ImRect PreviewRect; + ImVec2 BackupCursorPos; + ImVec2 BackupCursorMaxPos; + ImVec2 BackupCursorPosPrevLine; + float BackupPrevLineTextBaseOffset; + ImGuiLayoutType BackupLayout; + + ImGuiComboPreviewData() { memset(this, 0, sizeof(*this)); } +}; + +// Stacked storage data for BeginGroup()/EndGroup() +struct IMGUI_API ImGuiGroupData +{ + ImGuiID WindowID; + ImVec2 BackupCursorPos; + ImVec2 BackupCursorMaxPos; + ImVec1 BackupIndent; + ImVec1 BackupGroupOffset; + ImVec2 BackupCurrLineSize; + float BackupCurrLineTextBaseOffset; + ImGuiID BackupActiveIdIsAlive; + bool BackupActiveIdPreviousFrameIsAlive; + bool BackupHoveredIdIsAlive; + bool EmitItem; +}; + +// Simple column measurement, currently used for MenuItem() only.. This is very short-sighted/throw-away code and NOT a generic helper. +struct IMGUI_API ImGuiMenuColumns +{ + ImU32 TotalWidth; + ImU32 NextTotalWidth; + ImU16 Spacing; + ImU16 OffsetIcon; // Always zero for now + ImU16 OffsetLabel; // Offsets are locked in Update() + ImU16 OffsetShortcut; + ImU16 OffsetMark; + ImU16 Widths[4]; // Width of: Icon, Label, Shortcut, Mark (accumulators for current frame) + + ImGuiMenuColumns() { memset(this, 0, sizeof(*this)); } + void Update(float spacing, bool window_reappearing); + float DeclColumns(float w_icon, float w_label, float w_shortcut, float w_mark); + void CalcNextTotalWidth(bool update_offsets); +}; + +// Internal temporary state for deactivating InputText() instances. +struct IMGUI_API ImGuiInputTextDeactivatedState +{ + ImGuiID ID; // widget id owning the text state (which just got deactivated) + ImVector TextA; // text buffer + + ImGuiInputTextDeactivatedState() { memset(this, 0, sizeof(*this)); } + void ClearFreeMemory() { ID = 0; TextA.clear(); } +}; +// Internal state of the currently focused/edited text input box +// For a given item ID, access with ImGui::GetInputTextState() +struct IMGUI_API ImGuiInputTextState +{ + ImGuiContext* Ctx; // parent UI context (needs to be set explicitly by parent). + ImGuiID ID; // widget id owning the text state + int CurLenW, CurLenA; // we need to maintain our buffer length in both UTF-8 and wchar format. UTF-8 length is valid even if TextA is not. + ImVector TextW; // edit buffer, we need to persist but can't guarantee the persistence of the user-provided buffer. so we copy into own buffer. + ImVector TextA; // temporary UTF8 buffer for callbacks and other operations. this is not updated in every code-path! size=capacity. + ImVector InitialTextA; // backup of end-user buffer at the time of focus (in UTF-8, unaltered) + bool TextAIsValid; // temporary UTF8 buffer is not initially valid before we make the widget active (until then we pull the data from user argument) + int BufCapacityA; // end-user buffer capacity + float ScrollX; // horizontal scrolling/offset + ImStb::STB_TexteditState Stb; // state for stb_textedit.h + float CursorAnim; // timer for cursor blink, reset on every user action so the cursor reappears immediately + bool CursorFollow; // set when we want scrolling to follow the current cursor position (not always!) + bool SelectedAllMouseLock; // after a double-click to select all, we ignore further mouse drags to update selection + bool Edited; // edited this frame + ImGuiInputTextFlags Flags; // copy of InputText() flags. may be used to check if e.g. ImGuiInputTextFlags_Password is set. + + ImGuiInputTextState() { memset(this, 0, sizeof(*this)); } + void ClearText() { CurLenW = CurLenA = 0; TextW[0] = 0; TextA[0] = 0; CursorClamp(); } + void ClearFreeMemory() { TextW.clear(); TextA.clear(); InitialTextA.clear(); } + int GetUndoAvailCount() const { return Stb.undostate.undo_point; } + int GetRedoAvailCount() const { return STB_TEXTEDIT_UNDOSTATECOUNT - Stb.undostate.redo_point; } + void OnKeyPressed(int key); // Cannot be inline because we call in code in stb_textedit.h implementation + + // Cursor & Selection + void CursorAnimReset() { CursorAnim = -0.30f; } // After a user-input the cursor stays on for a while without blinking + void CursorClamp() { Stb.cursor = ImMin(Stb.cursor, CurLenW); Stb.select_start = ImMin(Stb.select_start, CurLenW); Stb.select_end = ImMin(Stb.select_end, CurLenW); } + bool HasSelection() const { return Stb.select_start != Stb.select_end; } + void ClearSelection() { Stb.select_start = Stb.select_end = Stb.cursor; } + int GetCursorPos() const { return Stb.cursor; } + int GetSelectionStart() const { return Stb.select_start; } + int GetSelectionEnd() const { return Stb.select_end; } + void SelectAll() { Stb.select_start = 0; Stb.cursor = Stb.select_end = CurLenW; Stb.has_preferred_x = 0; } +}; + +// Storage for current popup stack +struct ImGuiPopupData +{ + ImGuiID PopupId; // Set on OpenPopup() + ImGuiWindow* Window; // Resolved on BeginPopup() - may stay unresolved if user never calls OpenPopup() + ImGuiWindow* BackupNavWindow;// Set on OpenPopup(), a NavWindow that will be restored on popup close + int ParentNavLayer; // Resolved on BeginPopup(). Actually a ImGuiNavLayer type (declared down below), initialized to -1 which is not part of an enum, but serves well-enough as "not any of layers" value + int OpenFrameCount; // Set on OpenPopup() + ImGuiID OpenParentId; // Set on OpenPopup(), we need this to differentiate multiple menu sets from each others (e.g. inside menu bar vs loose menu items) + ImVec2 OpenPopupPos; // Set on OpenPopup(), preferred popup position (typically == OpenMousePos when using mouse) + ImVec2 OpenMousePos; // Set on OpenPopup(), copy of mouse position at the time of opening popup + + ImGuiPopupData() { memset(this, 0, sizeof(*this)); ParentNavLayer = OpenFrameCount = -1; } +}; + +enum ImGuiNextWindowDataFlags_ +{ + ImGuiNextWindowDataFlags_None = 0, + ImGuiNextWindowDataFlags_HasPos = 1 << 0, + ImGuiNextWindowDataFlags_HasSize = 1 << 1, + ImGuiNextWindowDataFlags_HasContentSize = 1 << 2, + ImGuiNextWindowDataFlags_HasCollapsed = 1 << 3, + ImGuiNextWindowDataFlags_HasSizeConstraint = 1 << 4, + ImGuiNextWindowDataFlags_HasFocus = 1 << 5, + ImGuiNextWindowDataFlags_HasBgAlpha = 1 << 6, + ImGuiNextWindowDataFlags_HasScroll = 1 << 7, + ImGuiNextWindowDataFlags_HasChildFlags = 1 << 8, +}; + +// Storage for SetNexWindow** functions +struct ImGuiNextWindowData +{ + ImGuiNextWindowDataFlags Flags; + ImGuiCond PosCond; + ImGuiCond SizeCond; + ImGuiCond CollapsedCond; + ImVec2 PosVal; + ImVec2 PosPivotVal; + ImVec2 SizeVal; + ImVec2 ContentSizeVal; + ImVec2 ScrollVal; + ImGuiChildFlags ChildFlags; + bool CollapsedVal; + ImRect SizeConstraintRect; + ImGunSizeCallback SizeCallback; + void* SizeCallbackUserData; + float BgAlphaVal; // Override background alpha + ImVec2 MenuBarOffsetMinVal; // (Always on) This is not exposed publicly, so we don't clear it and it doesn't have a corresponding flag (could we? for consistency?) + + ImGuiNextWindowData() { memset(this, 0, sizeof(*this)); } + inline void ClearFlags() { Flags = ImGuiNextWindowDataFlags_None; } +}; + +enum ImGuiNextItemDataFlags_ +{ + ImGuiNextItemDataFlags_None = 0, + ImGuiNextItemDataFlags_HasWidth = 1 << 0, + ImGuiNextItemDataFlags_HasOpen = 1 << 1, +}; + +struct ImGuiNextItemData +{ + ImGuiNextItemDataFlags Flags; + ImGuiItemFlags ItemFlags; // Currently only tested/used for ImGuiItemFlags_AllowOverlap. + float Width; // Set by SetNextItemWidth() + ImGuiID FocusScopeId; // Set by SetNextItemMultiSelectData() (!= 0 signify value has been set, so it's an alternate version of HasSelectionData, we don't use Flags for this because they are cleared too early. This is mostly used for debugging) + ImGuiCond OpenCond; + bool OpenVal; // Set by SetNextItemOpen() + + ImGuiNextItemData() { memset(this, 0, sizeof(*this)); } + inline void ClearFlags() { Flags = ImGuiNextItemDataFlags_None; ItemFlags = ImGuiItemFlags_None; } // Also cleared manually by ItemAdd()! +}; + +// Status storage for the last submitted item +struct ImGuiLastItemData +{ + ImGuiID ID; + ImGuiItemFlags InFlags; // See ImGuiItemFlags_ + ImGuiItemStatusFlags StatusFlags; // See ImGuiItemStatusFlags_ + ImRect Rect; // Full rectangle + ImRect NavRect; // Navigation scoring rectangle (not displayed) + ImRect DisplayRect; // Display rectangle (only if ImGuiItemStatusFlags_HasDisplayRect is set) + + ImGuiLastItemData() { memset(this, 0, sizeof(*this)); } +}; + +// Store data emitted by TreeNode() for usage by TreePop() to implement ImGuiTreeNodeFlags_NavLeftJumpsBackHere. +// This is the minimum amount of data that we need to perform the equivalent of NavApplyItemToResult() and which we can't infer in TreePop() +// Only stored when the node is a potential candidate for landing on a Left arrow jump. +struct ImGuiNavTreeNodeData +{ + ImGuiID ID; + ImGuiItemFlags InFlags; + ImRect NavRect; +}; + +struct IMGUI_API ImGuiStackSizes +{ + short SizeOfIDStack; + short SizeOfColorStack; + short SizeOfStyleVarStack; + short SizeOfFontStack; + short SizeOfFocusScopeStack; + short SizeOfGroupStack; + short SizeOfItemFlagsStack; + short SizeOfBeginPopupStack; + short SizeOfDisabledStack; + + ImGuiStackSizes() { memset(this, 0, sizeof(*this)); } + void SetToContextState(ImGuiContext* ctx); + void CompareWithContextState(ImGuiContext* ctx); +}; + +// Data saved for each window pushed into the stack +struct ImGuiWindowStackData +{ + ImGuiWindow* Window; + ImGuiLastItemData ParentLastItemDataBackup; + ImGuiStackSizes StackSizesOnBegin; // Store size of various stacks for asserting +}; + +struct ImGuiShrinkWidthItem +{ + int Index; + float Width; + float InitialWidth; +}; + +struct ImGuiPtrOrIndex +{ + void* Ptr; // Either field can be set, not both. e.g. Dock node tab bars are loose while BeginTabBar() ones are in a pool. + int Index; // Usually index in a main pool. + + ImGuiPtrOrIndex(void* ptr) { Ptr = ptr; Index = -1; } + ImGuiPtrOrIndex(int index) { Ptr = NULL; Index = index; } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Inputs support +//----------------------------------------------------------------------------- + +// Bit array for named keys +typedef ImBitArray ImBitArrayForNamedKeys; + +// [Internal] Key ranges +#define ImGuiKey_LegacyNativeKey_BEGIN 0 +#define ImGuiKey_LegacyNativeKey_END 512 +#define ImGuiKey_Keyboard_BEGIN (ImGuiKey_NamedKey_BEGIN) +#define ImGuiKey_Keyboard_END (ImGuiKey_GamepadStart) +#define ImGuiKey_Gamepad_BEGIN (ImGuiKey_GamepadStart) +#define ImGuiKey_Gamepad_END (ImGuiKey_GamepadRStickDown + 1) +#define ImGuiKey_Mouse_BEGIN (ImGuiKey_MouseLeft) +#define ImGuiKey_Mouse_END (ImGuiKey_MouseWheelY + 1) +#define ImGuiKey_Aliases_BEGIN (ImGuiKey_Mouse_BEGIN) +#define ImGuiKey_Aliases_END (ImGuiKey_Mouse_END) + +// [Internal] Named shortcuts for Navigation +#define ImGuiKey_NavKeyboardTweakSlow ImGuiMod_Ctrl +#define ImGuiKey_NavKeyboardTweakFast ImGuiMod_Shift +#define ImGuiKey_NavGamepadTweakSlow ImGuiKey_GamepadL1 +#define ImGuiKey_NavGamepadTweakFast ImGuiKey_GamepadR1 +#define ImGuiKey_NavGamepadActivate ImGuiKey_GamepadFaceDown +#define ImGuiKey_NavGamepadCancel ImGuiKey_GamepadFaceRight +#define ImGuiKey_NavGamepadMenu ImGuiKey_GamepadFaceLeft +#define ImGuiKey_NavGamepadInput ImGuiKey_GamepadFaceUp + +enum ImGuiInputEventType +{ + ImGuiInputEventType_None = 0, + ImGuiInputEventType_MousePos, + ImGuiInputEventType_MouseWheel, + ImGuiInputEventType_MouseButton, + ImGuiInputEventType_Key, + ImGuiInputEventType_Text, + ImGuiInputEventType_Focus, + ImGuiInputEventType_COUNT +}; + +enum ImGuiInputSource +{ + ImGuiInputSource_None = 0, + ImGuiInputSource_Mouse, // Note: may be Mouse or TouchScreen or Pen. See io.MouseSource to distinguish them. + ImGuiInputSource_Nav, + ImGuiInputSource_Keyboard, + ImGuiInputSource_Gamepad, + ImGuiInputSource_Clipboard, // Currently only used by InputText() + ImGuiInputSource_COUNT +}; + +// FIXME: Structures in the union below need to be declared as anonymous unions appears to be an extension? +// Using ImVec2() would fail on Clang 'union member 'MousePos' has a non-trivial default constructor' +struct ImGuiInputEventMousePos { float PosX, PosY; ImGuiMouseSource MouseSource; }; +struct ImGuiInputEventMouseWheel { float WheelX, WheelY; ImGuiMouseSource MouseSource; }; +struct ImGuiInputEventMouseButton { int Button; bool Down; ImGuiMouseSource MouseSource; }; +struct ImGuiInputEventKey { ImGuiKey Key; bool Down; float AnalogValue; }; +struct ImGuiInputEventText { unsigned int Char; }; +struct ImGuiInputEventAppFocused { bool Focused; }; + +struct ImGuiInputEvent +{ + ImGuiInputEventType Type; + ImGuiInputSource Source; + ImU32 EventId; // Unique, sequential increasing integer to identify an event (if you need to correlate them to other data). + union + { + ImGuiInputEventMousePos MousePos; // if Type == ImGuiInputEventType_MousePos + ImGuiInputEventMouseWheel MouseWheel; // if Type == ImGuiInputEventType_MouseWheel + ImGuiInputEventMouseButton MouseButton; // if Type == ImGuiInputEventType_MouseButton + ImGuiInputEventKey Key; // if Type == ImGuiInputEventType_Key + ImGuiInputEventText Text; // if Type == ImGuiInputEventType_Text + ImGuiInputEventAppFocused AppFocused; // if Type == ImGuiInputEventType_Focus + }; + bool AddedByTestEngine; + + ImGuiInputEvent() { memset(this, 0, sizeof(*this)); } +}; + +// Input function taking an 'ImGuiID owner_id' argument defaults to (ImGuiKeyOwner_Any == 0) aka don't test ownership, which matches legacy behavior. +#define ImGuiKeyOwner_Any ((ImGuiID)0) // Accept key that have an owner, UNLESS a call to SetKeyOwner() explicitly used ImGuiInputFlags_LockThisFrame or ImGuiInputFlags_LockUntilRelease. +#define ImGuiKeyOwner_None ((ImGuiID)-1) // Require key to have no owner. + +typedef ImS16 ImGuiKeyRoutingIndex; + +// Routing table entry (sizeof() == 16 bytes) +struct ImGuiKeyRoutingData +{ + ImGuiKeyRoutingIndex NextEntryIndex; + ImU16 Mods; // Technically we'd only need 4-bits but for simplify we store ImGuiMod_ values which need 16-bits. ImGuiMod_Shortcut is already translated to Ctrl/Super. + ImU8 RoutingNextScore; // Lower is better (0: perfect score) + ImGuiID RoutingCurr; + ImGuiID RoutingNext; + + ImGuiKeyRoutingData() { NextEntryIndex = -1; Mods = 0; RoutingNextScore = 255; RoutingCurr = RoutingNext = ImGuiKeyOwner_None; } +}; + +// Routing table: maintain a desired owner for each possible key-chord (key + mods), and setup owner in NewFrame() when mods are matching. +// Stored in main context (1 instance) +struct ImGuiKeyRoutingTable +{ + ImGuiKeyRoutingIndex Index[ImGuiKey_NamedKey_COUNT]; // Index of first entry in Entries[] + ImVector Entries; + ImVector EntriesNext; // Double-buffer to avoid reallocation (could use a shared buffer) + + ImGuiKeyRoutingTable() { Clear(); } + void Clear() { for (int n = 0; n < IM_ARRAYSIZE(Index); n++) Index[n] = -1; Entries.clear(); EntriesNext.clear(); } +}; + +// This extends ImGuiKeyData but only for named keys (legacy keys don't support the new features) +// Stored in main context (1 per named key). In the future it might be merged into ImGuiKeyData. +struct ImGuiKeyOwnerData +{ + ImGuiID OwnerCurr; + ImGuiID OwnerNext; + bool LockThisFrame; // Reading this key requires explicit owner id (until end of frame). Set by ImGuiInputFlags_LockThisFrame. + bool LockUntilRelease; // Reading this key requires explicit owner id (until key is released). Set by ImGuiInputFlags_LockUntilRelease. When this is true LockThisFrame is always true as well. + + ImGuiKeyOwnerData() { OwnerCurr = OwnerNext = ImGuiKeyOwner_None; LockThisFrame = LockUntilRelease = false; } +}; + +// Flags for extended versions of IsKeyPressed(), IsMouseClicked(), Shortcut(), SetKeyOwner(), SetItemKeyOwner() +// Don't mistake with ImGuiInputTextFlags! (for ImGui::InputText() function) +enum ImGuiInputFlags_ +{ + // Flags for IsKeyPressed(), IsMouseClicked(), Shortcut() + ImGuiInputFlags_None = 0, + ImGuiInputFlags_Repeat = 1 << 0, // Return true on successive repeats. Default for legacy IsKeyPressed(). NOT Default for legacy IsMouseClicked(). MUST BE == 1. + ImGuiInputFlags_RepeatRateDefault = 1 << 1, // Repeat rate: Regular (default) + ImGuiInputFlags_RepeatRateNavMove = 1 << 2, // Repeat rate: Fast + ImGuiInputFlags_RepeatRateNavTweak = 1 << 3, // Repeat rate: Faster + ImGuiInputFlags_RepeatRateMask_ = ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak, + + // Flags for SetItemKeyOwner() + ImGuiInputFlags_CondHovered = 1 << 4, // Only set if item is hovered (default to both) + ImGuiInputFlags_CondActive = 1 << 5, // Only set if item is active (default to both) + ImGuiInputFlags_CondDefault_ = ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive, + ImGuiInputFlags_CondMask_ = ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive, + + // Flags for SetKeyOwner(), SetItemKeyOwner() + ImGuiInputFlags_LockThisFrame = 1 << 6, // Access to key data will require EXPLICIT owner ID (ImGuiKeyOwner_Any/0 will NOT accepted for polling). Cleared at end of frame. This is useful to make input-owner-aware code steal keys from non-input-owner-aware code. + ImGuiInputFlags_LockUntilRelease = 1 << 7, // Access to key data will require EXPLICIT owner ID (ImGuiKeyOwner_Any/0 will NOT accepted for polling). Cleared when the key is released or at end of each frame if key is released. This is useful to make input-owner-aware code steal keys from non-input-owner-aware code. + + // Routing policies for Shortcut() + low-level SetShortcutRouting() + // - The general idea is that several callers register interest in a shortcut, and only one owner gets it. + // - When a policy (other than _RouteAlways) is set, Shortcut() will register itself with SetShortcutRouting(), + // allowing the system to decide where to route the input among other route-aware calls. + // - Shortcut() uses ImGuiInputFlags_RouteFocused by default: meaning that a simple Shortcut() poll + // will register a route and only succeed when parent window is in the focus stack and if no-one + // with a higher priority is claiming the shortcut. + // - Using ImGuiInputFlags_RouteAlways is roughly equivalent to doing e.g. IsKeyPressed(key) + testing mods. + // - Priorities: GlobalHigh > Focused (when owner is active item) > Global > Focused (when focused window) > GlobalLow. + // - Can select only 1 policy among all available. + ImGuiInputFlags_RouteFocused = 1 << 8, // (Default) Register focused route: Accept inputs if window is in focus stack. Deep-most focused window takes inputs. ActiveId takes inputs over deep-most focused window. + ImGuiInputFlags_RouteGlobalLow = 1 << 9, // Register route globally (lowest priority: unless a focused window or active item registered the route) -> recommended Global priority. + ImGuiInputFlags_RouteGlobal = 1 << 10, // Register route globally (medium priority: unless an active item registered the route, e.g. CTRL+A registered by InputText). + ImGuiInputFlags_RouteGlobalHigh = 1 << 11, // Register route globally (highest priority: unlikely you need to use that: will interfere with every active items) + ImGuiInputFlags_RouteMask_ = ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteGlobalLow | ImGuiInputFlags_RouteGlobalHigh, // _Always not part of this! + ImGuiInputFlags_RouteAlways = 1 << 12, // Do not register route, poll keys directly. + ImGuiInputFlags_RouteUnlessBgFocused= 1 << 13, // Global routes will not be applied if underlying background/void is focused (== no Dear ImGui windows are focused). Useful for overlay applications. + ImGuiInputFlags_RouteExtraMask_ = ImGuiInputFlags_RouteAlways | ImGuiInputFlags_RouteUnlessBgFocused, + + // [Internal] Mask of which function support which flags + ImGuiInputFlags_SupportedByIsKeyPressed = ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_, + ImGuiInputFlags_SupportedByShortcut = ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RouteMask_ | ImGuiInputFlags_RouteExtraMask_, + ImGuiInputFlags_SupportedBySetKeyOwner = ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease, + ImGuiInputFlags_SupportedBySetItemKeyOwner = ImGuiInputFlags_SupportedBySetKeyOwner | ImGuiInputFlags_CondMask_, +}; + +//----------------------------------------------------------------------------- +// [SECTION] Clipper support +//----------------------------------------------------------------------------- + +// Note that Max is exclusive, so perhaps should be using a Begin/End convention. +struct ImGuiListClipperRange +{ + int Min; + int Max; + bool PosToIndexConvert; // Begin/End are absolute position (will be converted to indices later) + ImS8 PosToIndexOffsetMin; // Add to Min after converting to indices + ImS8 PosToIndexOffsetMax; // Add to Min after converting to indices + + static ImGuiListClipperRange FromIndices(int min, int max) { ImGuiListClipperRange r = { min, max, false, 0, 0 }; return r; } + static ImGuiListClipperRange FromPositions(float y1, float y2, int off_min, int off_max) { ImGuiListClipperRange r = { (int)y1, (int)y2, true, (ImS8)off_min, (ImS8)off_max }; return r; } +}; + +// Temporary clipper data, buffers shared/reused between instances +struct ImGuiListClipperData +{ + ImGuiListClipper* ListClipper; + float LossynessOffset; + int StepNo; + int ItemsFrozen; + ImVector Ranges; + + ImGuiListClipperData() { memset(this, 0, sizeof(*this)); } + void Reset(ImGuiListClipper* clipper) { ListClipper = clipper; StepNo = ItemsFrozen = 0; Ranges.resize(0); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Navigation support +//----------------------------------------------------------------------------- + +enum ImGuiActivateFlags_ +{ + ImGuiActivateFlags_None = 0, + ImGuiActivateFlags_PreferInput = 1 << 0, // Favor activation that requires keyboard text input (e.g. for Slider/Drag). Default for Enter key. + ImGuiActivateFlags_PreferTweak = 1 << 1, // Favor activation for tweaking with arrows or gamepad (e.g. for Slider/Drag). Default for Space key and if keyboard is not used. + ImGuiActivateFlags_TryToPreserveState = 1 << 2, // Request widget to preserve state if it can (e.g. InputText will try to preserve cursor/selection) +}; + +// Early work-in-progress API for ScrollToItem() +enum ImGuiScrollFlags_ +{ + ImGuiScrollFlags_None = 0, + ImGuiScrollFlags_KeepVisibleEdgeX = 1 << 0, // If item is not visible: scroll as little as possible on X axis to bring item back into view [default for X axis] + ImGuiScrollFlags_KeepVisibleEdgeY = 1 << 1, // If item is not visible: scroll as little as possible on Y axis to bring item back into view [default for Y axis for windows that are already visible] + ImGuiScrollFlags_KeepVisibleCenterX = 1 << 2, // If item is not visible: scroll to make the item centered on X axis [rarely used] + ImGuiScrollFlags_KeepVisibleCenterY = 1 << 3, // If item is not visible: scroll to make the item centered on Y axis + ImGuiScrollFlags_AlwaysCenterX = 1 << 4, // Always center the result item on X axis [rarely used] + ImGuiScrollFlags_AlwaysCenterY = 1 << 5, // Always center the result item on Y axis [default for Y axis for appearing window) + ImGuiScrollFlags_NoScrollParent = 1 << 6, // Disable forwarding scrolling to parent window if required to keep item/rect visible (only scroll window the function was applied to). + ImGuiScrollFlags_MaskX_ = ImGuiScrollFlags_KeepVisibleEdgeX | ImGuiScrollFlags_KeepVisibleCenterX | ImGuiScrollFlags_AlwaysCenterX, + ImGuiScrollFlags_MaskY_ = ImGuiScrollFlags_KeepVisibleEdgeY | ImGuiScrollFlags_KeepVisibleCenterY | ImGuiScrollFlags_AlwaysCenterY, +}; + +enum ImGuiNavHighlightFlags_ +{ + ImGuiNavHighlightFlags_None = 0, + ImGuiNavHighlightFlags_TypeDefault = 1 << 0, + ImGuiNavHighlightFlags_TypeThin = 1 << 1, + ImGuiNavHighlightFlags_AlwaysDraw = 1 << 2, // Draw rectangular highlight if (g.NavId == id) _even_ when using the mouse. + ImGuiNavHighlightFlags_NoRounding = 1 << 3, +}; + +enum ImGuiNavMoveFlags_ +{ + ImGuiNavMoveFlags_None = 0, + ImGuiNavMoveFlags_LoopX = 1 << 0, // On failed request, restart from opposite side + ImGuiNavMoveFlags_LoopY = 1 << 1, + ImGuiNavMoveFlags_WrapX = 1 << 2, // On failed request, request from opposite side one line down (when NavDir==right) or one line up (when NavDir==left) + ImGuiNavMoveFlags_WrapY = 1 << 3, // This is not super useful but provided for completeness + ImGuiNavMoveFlags_WrapMask_ = ImGuiNavMoveFlags_LoopX | ImGuiNavMoveFlags_LoopY | ImGuiNavMoveFlags_WrapX | ImGuiNavMoveFlags_WrapY, + ImGuiNavMoveFlags_AllowCurrentNavId = 1 << 4, // Allow scoring and considering the current NavId as a move target candidate. This is used when the move source is offset (e.g. pressing PageDown actually needs to send a Up move request, if we are pressing PageDown from the bottom-most item we need to stay in place) + ImGuiNavMoveFlags_AlsoScoreVisibleSet = 1 << 5, // Store alternate result in NavMoveResultLocalVisible that only comprise elements that are already fully visible (used by PageUp/PageDown) + ImGuiNavMoveFlags_ScrollToEdgeY = 1 << 6, // Force scrolling to min/max (used by Home/End) // FIXME-NAV: Aim to remove or reword, probably unnecessary + ImGuiNavMoveFlags_Forwarded = 1 << 7, + ImGuiNavMoveFlags_DebugNoResult = 1 << 8, // Dummy scoring for debug purpose, don't apply result + ImGuiNavMoveFlags_FocusApi = 1 << 9, // Requests from focus API can land/focus/activate items even if they are marked with _NoTabStop (see NavProcessItemForTabbingRequest() for details) + ImGuiNavMoveFlags_IsTabbing = 1 << 10, // == Focus + Activate if item is Inputable + DontChangeNavHighlight + ImGuiNavMoveFlags_IsPageMove = 1 << 11, // Identify a PageDown/PageUp request. + ImGuiNavMoveFlags_Activate = 1 << 12, // Activate/select target item. + ImGuiNavMoveFlags_NoSelect = 1 << 13, // Don't trigger selection by not setting g.NavJustMovedTo + ImGuiNavMoveFlags_NoSetNavHighlight = 1 << 14, // Do not alter the visible state of keyboard vs mouse nav highlight +}; +enum ImGuiNavForward +{ + ImGuiNavForward_None, + ImGuiNavForward_ForwardQueued, + ImGuiNavForward_ForwardActive +}; +// To test io.KeyMods (which is a combination of individual fields io.KeyCtrl, io.KeyShift, io.KeyAlt set by user/backend) +enum ImGuiKeyModFlags_ { + ImGuiKeyModFlags_None = 0, + ImGuiKeyModFlags_Ctrl = 1 << 0, + ImGuiKeyModFlags_Shift = 1 << 1, + ImGuiKeyModFlags_Alt = 1 << 2, + ImGuiKeyModFlags_Super = 1 << 3 +}; +enum ImGuiNavLayer +{ + ImGuiNavLayer_Main = 0, // Main scrolling layer + ImGuiNavLayer_Menu = 1, // Menu layer (access with Alt) + ImGuiNavLayer_COUNT +}; + +struct ImGuiNavItemData +{ + ImGuiWindow* Window; // Init,Move // Best candidate window (result->ItemWindow->RootWindowForNav == request->Window) + ImGuiID ID; // Init,Move // Best candidate item ID + ImGuiID FocusScopeId; // Init,Move // Best candidate focus scope ID + ImRect RectRel; // Init,Move // Best candidate bounding box in window relative space + ImGuiItemFlags InFlags; // ????,Move // Best candidate item flags + float DistBox; // Move // Best candidate box distance to current NavId + float DistCenter; // Move // Best candidate center distance to current NavId + float DistAxial; // Move // Best candidate axial distance to current NavId + + ImGuiNavItemData() { Clear(); } + void Clear() { Window = NULL; ID = FocusScopeId = 0; InFlags = 0; DistBox = DistCenter = DistAxial = FLT_MAX; } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Columns support +//----------------------------------------------------------------------------- + +// Flags for internal's BeginColumns(). Prefix using BeginTable() nowadays! +enum ImGuiOldColumnFlags_ +{ + ImGuiOldColumnFlags_None = 0, + ImGuiOldColumnFlags_NoBorder = 1 << 0, // Disable column dividers + ImGuiOldColumnFlags_NoResize = 1 << 1, // Disable resizing columns when clicking on the dividers + ImGuiOldColumnFlags_NoPreserveWidths = 1 << 2, // Disable column width preservation when adjusting columns + ImGuiOldColumnFlags_NoForceWithinWindow = 1 << 3, // Disable forcing columns to fit within window + ImGuiOldColumnFlags_GrowParentContentsSize = 1 << 4, // (WIP) Restore pre-1.51 behavior of extending the parent window contents size but _without affecting the columns width at all_. Will eventually remove. + + // Obsolete names (will be removed) +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + ImGuiColumnsFlags_None = ImGuiOldColumnFlags_None, + ImGuiColumnsFlags_NoBorder = ImGuiOldColumnFlags_NoBorder, + ImGuiColumnsFlags_NoResize = ImGuiOldColumnFlags_NoResize, + ImGuiColumnsFlags_NoPreserveWidths = ImGuiOldColumnFlags_NoPreserveWidths, + ImGuiColumnsFlags_NoForceWithinWindow = ImGuiOldColumnFlags_NoForceWithinWindow, + ImGuiColumnsFlags_GrowParentContentsSize = ImGuiOldColumnFlags_GrowParentContentsSize, +#endif +}; + +struct ImGuiOldColumnData +{ + float OffsetNorm; // Column start offset, normalized 0.0 (far left) -> 1.0 (far right) + float OffsetNormBeforeResize; + ImGuiOldColumnFlags Flags; // Not exposed + ImRect ClipRect; + + ImGuiOldColumnData() { memset(this, 0, sizeof(*this)); } +}; + +struct ImGuiOldColumns +{ + ImGuiID ID; + ImGuiOldColumnFlags Flags; + bool IsFirstFrame; + bool IsBeingResized; + int Current; + int Count; + float OffMinX, OffMaxX; // Offsets from HostWorkRect.Min.x + float LineMinY, LineMaxY; + float HostCursorPosY; // Backup of CursorPos at the time of BeginColumns() + float HostCursorMaxPosX; // Backup of CursorMaxPos at the time of BeginColumns() + ImRect HostInitialClipRect; // Backup of ClipRect at the time of BeginColumns() + ImRect HostBackupClipRect; // Backup of ClipRect during PushColumnsBackground()/PopColumnsBackground() + ImRect HostBackupParentWorkRect;//Backup of WorkRect at the time of BeginColumns() + ImVector Columns; + ImDrawListSplitter Splitter; + + ImGuiOldColumns() { memset(this, 0, sizeof(*this)); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Multi-select support +//----------------------------------------------------------------------------- + +#ifdef IMGUI_HAS_MULTI_SELECT +// +#endif // #ifdef IMGUI_HAS_MULTI_SELECT + +//----------------------------------------------------------------------------- +// [SECTION] Docking support +//----------------------------------------------------------------------------- + +#ifdef IMGUI_HAS_DOCK +// +#endif // #ifdef IMGUI_HAS_DOCK + +//----------------------------------------------------------------------------- +// [SECTION] Viewport support +//----------------------------------------------------------------------------- + +// ImGuiViewport Private/Internals fields (cardinal sin: we are using inheritance!) +// Every instance of ImGuiViewport is in fact a ImGuiViewportP. +struct ImGuiViewportP : public ImGuiViewport +{ + int BgFgDrawListsLastFrame[2]; // Last frame number the background (0) and foreground (1) draw lists were used + ImDrawList* BgFgDrawLists[2]; // Convenience background (0) and foreground (1) draw lists. We use them to draw software mouser cursor when io.MouseDrawCursor is set and to draw most debug overlays. + ImDrawData DrawDataP; + ImDrawDataBuilder DrawDataBuilder; // Temporary data while building final ImDrawData + ImVec2 WorkOffsetMin; // Work Area: Offset from Pos to top-left corner of Work Area. Generally (0,0) or (0,+main_menu_bar_height). Work Area is Full Area but without menu-bars/status-bars (so WorkArea always fit inside Pos/Size!) + ImVec2 WorkOffsetMax; // Work Area: Offset from Pos+Size to bottom-right corner of Work Area. Generally (0,0) or (0,-status_bar_height). + ImVec2 BuildWorkOffsetMin; // Work Area: Offset being built during current frame. Generally >= 0.0f. + ImVec2 BuildWorkOffsetMax; // Work Area: Offset being built during current frame. Generally <= 0.0f. + + ImGuiViewportP() { BgFgDrawListsLastFrame[0] = BgFgDrawListsLastFrame[1] = -1; BgFgDrawLists[0] = BgFgDrawLists[1] = NULL; } + ~ImGuiViewportP() { if (BgFgDrawLists[0]) IM_DELETE(BgFgDrawLists[0]); if (BgFgDrawLists[1]) IM_DELETE(BgFgDrawLists[1]); } + + // Calculate work rect pos/size given a set of offset (we have 1 pair of offset for rect locked from last frame data, and 1 pair for currently building rect) + ImVec2 CalcWorkRectPos(const ImVec2& off_min) const { return ImVec2(Pos.x + off_min.x, Pos.y + off_min.y); } + ImVec2 CalcWorkRectSize(const ImVec2& off_min, const ImVec2& off_max) const { return ImVec2(ImMax(0.0f, Size.x - off_min.x + off_max.x), ImMax(0.0f, Size.y - off_min.y + off_max.y)); } + void UpdateWorkRect() { WorkPos = CalcWorkRectPos(WorkOffsetMin); WorkSize = CalcWorkRectSize(WorkOffsetMin, WorkOffsetMax); } // Update public fields + + // Helpers to retrieve ImRect (we don't need to store BuildWorkRect as every access tend to change it, hence the code asymmetry) + ImRect GetMainRect() const { return ImRect(Pos.x, Pos.y, Pos.x + Size.x, Pos.y + Size.y); } + ImRect GetWorkRect() const { return ImRect(WorkPos.x, WorkPos.y, WorkPos.x + WorkSize.x, WorkPos.y + WorkSize.y); } + ImRect GetBuildWorkRect() const { ImVec2 pos = CalcWorkRectPos(BuildWorkOffsetMin); ImVec2 size = CalcWorkRectSize(BuildWorkOffsetMin, BuildWorkOffsetMax); return ImRect(pos.x, pos.y, pos.x + size.x, pos.y + size.y); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Settings support +//----------------------------------------------------------------------------- + +// Windows data saved in imgui.ini file +// Because we never destroy or rename ImGuiWindowSettings, we can store the names in a separate buffer easily. +// (this is designed to be stored in a ImChunkStream buffer, with the variable-length Name following our structure) +struct ImGuiWindowSettings +{ + ImGuiID ID; + ImVec2ih Pos; + ImVec2ih Size; + bool Collapsed; + bool WantApply; // Set when loaded from .ini data (to enable merging/loading .ini data into an already running context) + bool WantDelete; // Set to invalidate/delete the settings entry + + ImGuiWindowSettings() { memset(this, 0, sizeof(*this)); } + char* GetName() { return (char*)(this + 1); } +}; + +struct ImGuiSettingsHandler +{ + const char* TypeName; // Short description stored in .ini file. Disallowed characters: '[' ']' + ImGuiID TypeHash; // == ImHashStr(TypeName) + void (*ClearAllFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler); // Clear all settings data + void (*ReadInitFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler); // Read: Called before reading (in registration order) + void* (*ReadOpenFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler, const char* name); // Read: Called when entering into a new ini entry e.g. "[Window][Name]" + void (*ReadLineFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler, void* entry, const char* line); // Read: Called for every line of text within an ini entry + void (*ApplyAllFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler); // Read: Called after reading (in registration order) + void (*WriteAllFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler, ImGuiTextBuffer* out_buf); // Write: Output every entries into 'out_buf' + void* UserData; + + ImGuiSettingsHandler() { memset(this, 0, sizeof(*this)); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Localization support +//----------------------------------------------------------------------------- + +// This is experimental and not officially supported, it'll probably fall short of features, if/when it does we may backtrack. +enum ImGuiLocKey : int +{ + ImGuiLocKey_VersionStr, + ImGuiLocKey_TableSizeOne, + ImGuiLocKey_TableSizeAllFit, + ImGuiLocKey_TableSizeAllDefault, + ImGuiLocKey_TableResetOrder, + ImGuiLocKey_WindowingMainMenuBar, + ImGuiLocKey_WindowingPopup, + ImGuiLocKey_WindowingUntitled, + ImGuiLocKey_COUNT +}; + +struct ImGuiLocEntry +{ + ImGuiLocKey Key; + const char* Text; +}; + + +//----------------------------------------------------------------------------- +// [SECTION] Metrics, Debug Tools +//----------------------------------------------------------------------------- + +enum ImGuiDebugLogFlags_ +{ + // Event types + ImGuiDebugLogFlags_None = 0, + ImGuiDebugLogFlags_EventActiveId = 1 << 0, + ImGuiDebugLogFlags_EventFocus = 1 << 1, + ImGuiDebugLogFlags_EventPopup = 1 << 2, + ImGuiDebugLogFlags_EventNav = 1 << 3, + ImGuiDebugLogFlags_EventClipper = 1 << 4, + ImGuiDebugLogFlags_EventSelection = 1 << 5, + ImGuiDebugLogFlags_EventIO = 1 << 6, + ImGuiDebugLogFlags_EventMask_ = ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO, + ImGuiDebugLogFlags_OutputToTTY = 1 << 10, // Also send output to TTY +}; + +struct ImGuiMetricsConfig +{ + bool ShowDebugLog = false; + bool ShowStackTool = false; + bool ShowWindowsRects = false; + bool ShowWindowsBeginOrder = false; + bool ShowTablesRects = false; + bool ShowDrawCmdMesh = true; + bool ShowDrawCmdBoundingBoxes = true; + bool ShowAtlasTintedWithTextColor = false; + int ShowWindowsRectsType = -1; + int ShowTablesRectsType = -1; +}; + +struct ImGuiStackLevelInfo +{ + ImGuiID ID; + ImS8 QueryFrameCount; // >= 1: Query in progress + bool QuerySuccess; // Obtained result from DebugHookIdInfo() + ImGuiDataType DataType : 8; + char Desc[57]; // Arbitrarily sized buffer to hold a result (FIXME: could replace Results[] with a chunk stream?) FIXME: Now that we added CTRL+C this should be fixed. + + ImGuiStackLevelInfo() { memset(this, 0, sizeof(*this)); } +}; + +// State for Stack tool queries +struct ImGuiStackTool +{ + int LastActiveFrame; + int StackLevel; // -1: query stack and resize Results, >= 0: individual stack level + ImGuiID QueryId; // ID to query details for + ImVector Results; + bool CopyToClipboardOnCtrlC; + float CopyToClipboardLastTime; + + ImGuiStackTool() { memset(this, 0, sizeof(*this)); CopyToClipboardLastTime = -FLT_MAX; } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Generic context hooks +//----------------------------------------------------------------------------- + +typedef void (*ImGuiContextHookCallback)(ImGuiContext* ctx, ImGuiContextHook* hook); +enum ImGuiContextHookType { ImGuiContextHookType_NewFramePre, ImGuiContextHookType_NewFramePost, ImGuiContextHookType_EndFramePre, ImGuiContextHookType_EndFramePost, ImGuiContextHookType_RenderPre, ImGuiContextHookType_RenderPost, ImGuiContextHookType_Shutdown, ImGuiContextHookType_PendingRemoval_ }; + +struct ImGuiContextHook +{ + ImGuiID HookId; // A unique ID assigned by AddContextHook() + ImGuiContextHookType Type; + ImGuiID Owner; + ImGuiContextHookCallback Callback; + void* UserData; + + ImGuiContextHook() { memset(this, 0, sizeof(*this)); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] ImGuiContext (main Dear ImGui context) +//----------------------------------------------------------------------------- + +struct ImGuiContext +{ + bool Initialized; + bool FontAtlasOwnedByContext; // IO.Fonts-> is owned by the ImGuiContext and will be destructed along with it. + ImGuiIO IO; + ImGuiStyle Style; + ImFont* Font; // (Shortcut) == FontStack.empty() ? IO.Font : FontStack.back() + float FontSize; // (Shortcut) == FontBaseSize * g.CurrentWindow->FontWindowScale == window->FontSize(). Text height for current window. + float FontBaseSize; // (Shortcut) == IO.FontGlobalScale * Font->Scale * Font->FontSize. Base text height. + ImDrawListSharedData DrawListSharedData; + double Time; + int FrameCount; + int FrameCountEnded; + int FrameCountRendered; + bool WithinFrameScope; // Set by NewFrame(), cleared by EndFrame() + bool WithinFrameScopeWithImplicitWindow; // Set by NewFrame(), cleared by EndFrame() when the implicit debug window has been pushed + bool WithinEndChild; // Set within EndChild() + bool GcCompactAll; // Request full GC + bool TestEngineHookItems; // Will call test engine hooks: ImGuiTestEngineHook_ItemAdd(), ImGuiTestEngineHook_ItemInfo(), ImGuiTestEngineHook_Log() + void* TestEngine; // Test engine user data + + // Inputs + ImVector InputEventsQueue; // Input events which will be trickled/written into IO structure. + ImVector InputEventsTrail; // Past input events processed in NewFrame(). This is to allow domain-specific application to access e.g mouse/pen trail. + ImGuiMouseSource InputEventsNextMouseSource; + ImU32 InputEventsNextEventId; + + // Windows state + ImVector Windows; // Windows, sorted in display order, back to front + ImVector WindowsFocusOrder; // Root windows, sorted in focus order, back to front. + ImVector WindowsTempSortBuffer; // Temporary buffer used in EndFrame() to reorder windows so parents are kept before their child + ImVector CurrentWindowStack; + ImGuiStorage WindowsById; // Map window's ImGuiID to ImGuiWindow* + int WindowsActiveCount; // Number of unique windows submitted by frame + ImVec2 WindowsHoverPadding; // Padding around resizable windows for which hovering on counts as hovering the window == ImMax(style.TouchExtraPadding, WINDOWS_HOVER_PADDING) + ImGuiWindow* CurrentWindow; // Window being drawn into + ImGuiWindow* HoveredWindow; // Window the mouse is hovering. Will typically catch mouse inputs. + ImGuiWindow* HoveredWindowUnderMovingWindow; // Hovered window ignoring MovingWindow. Only set if MovingWindow is set. + ImGuiWindow* MovingWindow; // Track the window we clicked on (in order to preserve focus). The actual window that is moved is generally MovingWindow->RootWindow. + ImGuiWindow* WheelingWindow; // Track the window we started mouse-wheeling on. Until a timer elapse or mouse has moved, generally keep scrolling the same window even if during the course of scrolling the mouse ends up hovering a child window. + ImVec2 WheelingWindowRefMousePos; + int WheelingWindowStartFrame; // This may be set one frame before WheelingWindow is != NULL + float WheelingWindowReleaseTimer; + ImVec2 WheelingWindowWheelRemainder; + ImVec2 WheelingAxisAvg; + + // Item/widgets state and tracking information + ImGuiID DebugHookIdInfo; // Will call core hooks: DebugHookIdInfo() from GetID functions, used by Stack Tool [next HoveredId/ActiveId to not pull in an extra cache-line] + ImGuiID HoveredId; // Hovered widget, filled during the frame + ImGuiID HoveredIdPreviousFrame; + bool HoveredIdAllowOverlap; + bool HoveredIdDisabled; // At least one widget passed the rect test, but has been discarded by disabled flag or popup inhibit. May be true even if HoveredId == 0. + float HoveredIdTimer; // Measure contiguous hovering time + float HoveredIdNotActiveTimer; // Measure contiguous hovering time where the item has not been active + ImGuiID ActiveId; // Active widget + ImGuiID ActiveIdIsAlive; // Active widget has been seen this frame (we can't use a bool as the ActiveId may change within the frame) + float ActiveIdTimer; + bool ActiveIdIsJustActivated; // Set at the time of activation for one frame + bool ActiveIdAllowOverlap; // Active widget allows another widget to steal active id (generally for overlapping widgets, but not always) + bool ActiveIdNoClearOnFocusLoss; // Disable losing active id if the active id window gets unfocused. + bool ActiveIdHasBeenPressedBefore; // Track whether the active id led to a press (this is to allow changing between PressOnClick and PressOnRelease without pressing twice). Used by range_select branch. + bool ActiveIdHasBeenEditedBefore; // Was the value associated to the widget Edited over the course of the Active state. + bool ActiveIdHasBeenEditedThisFrame; + ImVec2 ActiveIdClickOffset; // Clicked offset from upper-left corner, if applicable (currently only set by ButtonBehavior) + ImGuiWindow* ActiveIdWindow; + ImGuiInputSource ActiveIdSource; // Activating source: ImGuiInputSource_Mouse OR ImGuiInputSource_Keyboard OR ImGuiInputSource_Gamepad + int ActiveIdMouseButton; + ImGuiID ActiveIdPreviousFrame; + bool ActiveIdPreviousFrameIsAlive; + bool ActiveIdPreviousFrameHasBeenEditedBefore; + ImGuiWindow* ActiveIdPreviousFrameWindow; + ImGuiID LastActiveId; // Store the last non-zero ActiveId, useful for animation. + float LastActiveIdTimer; // Store the last non-zero ActiveId timer since the beginning of activation, useful for animation. + + // [EXPERIMENTAL] Key/Input Ownership + Shortcut Routing system + // - The idea is that instead of "eating" a given key, we can link to an owner. + // - Input query can then read input by specifying ImGuiKeyOwner_Any (== 0), ImGuiKeyOwner_None (== -1) or a custom ID. + // - Routing is requested ahead of time for a given chord (Key + Mods) and granted in NewFrame(). + ImGuiKeyOwnerData KeysOwnerData[ImGuiKey_NamedKey_COUNT]; + ImGuiKeyRoutingTable KeysRoutingTable; + ImU32 ActiveIdUsingNavDirMask; // Active widget will want to read those nav move requests (e.g. can activate a button and move away from it) + bool ActiveIdUsingAllKeyboardKeys; // Active widget will want to read all keyboard keys inputs. (FIXME: This is a shortcut for not taking ownership of 100+ keys but perhaps best to not have the inconsistency) +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + ImU32 ActiveIdUsingNavInputMask; // If you used this. Since (IMGUI_VERSION_NUM >= 18804) : 'g.ActiveIdUsingNavInputMask |= (1 << ImGuiNavInput_Cancel);' becomes 'SetKeyOwner(ImGuiKey_Escape, g.ActiveId) and/or SetKeyOwner(ImGuiKey_NavGamepadCancel, g.ActiveId);' +#endif + + // Next window/item data + ImGuiID CurrentFocusScopeId; // == g.FocusScopeStack.back() + ImGuiItemFlags CurrentItemFlags; // == g.ItemFlagsStack.back() + ImGuiID DebugLocateId; // Storage for DebugLocateItemOnHover() feature: this is read by ItemAdd() so we keep it in a hot/cached location + ImGuiNextItemData NextItemData; // Storage for SetNextItem** functions + ImGuiLastItemData LastItemData; // Storage for last submitted item (setup by ItemAdd) + ImGuiNextWindowData NextWindowData; // Storage for SetNextWindow** functions + + // Shared stacks + ImVector ColorStack; // Stack for PushStyleColor()/PopStyleColor() - inherited by Begin() + ImVector StyleVarStack; // Stack for PushStyleVar()/PopStyleVar() - inherited by Begin() + ImVector FontStack; // Stack for PushFont()/PopFont() - inherited by Begin() + ImVector FocusScopeStack; // Stack for PushFocusScope()/PopFocusScope() - inherited by BeginChild(), pushed into by Begin() + ImVectorItemFlagsStack; // Stack for PushItemFlag()/PopItemFlag() - inherited by Begin() + ImVectorGroupStack; // Stack for BeginGroup()/EndGroup() - not inherited by Begin() + ImVectorOpenPopupStack; // Which popups are open (persistent) + ImVectorBeginPopupStack; // Which level of BeginPopup() we are in (reset every frame) + ImVector NavTreeNodeStack; // Stack for TreeNode() when a NavLeft requested is emitted. + + int BeginMenuCount; + + // Viewports + ImVector Viewports; // Active viewports (Size==1 in 'master' branch). Each viewports hold their copy of ImDrawData. + + // Gamepad/keyboard Navigation + ImGuiWindow* NavWindow; // Focused window for navigation. Could be called 'FocusedWindow' + ImGuiID NavId; // Focused item for navigation + ImGuiID NavFocusScopeId; // Identify a selection scope (selection code often wants to "clear other items" when landing on an item of the selection set) + ImGuiID NavActivateId; // ~~ (g.ActiveId == 0) && (IsKeyPressed(ImGuiKey_Space) || IsKeyDown(ImGuiKey_Enter) || IsKeyPressed(ImGuiKey_NavGamepadActivate)) ? NavId : 0, also set when calling ActivateItem() + ImGuiID NavActivateDownId; // ~~ IsKeyDown(ImGuiKey_Space) || IsKeyDown(ImGuiKey_Enter) || IsKeyDown(ImGuiKey_NavGamepadActivate) ? NavId : 0 + ImGuiID NavActivatePressedId; // ~~ IsKeyPressed(ImGuiKey_Space) || IsKeyPressed(ImGuiKey_Enter) || IsKeyPressed(ImGuiKey_NavGamepadActivate) ? NavId : 0 (no repeat) + ImGuiActivateFlags NavActivateFlags; + ImGuiID NavJustMovedToId; // Just navigated to this id (result of a successfully MoveRequest). + ImGuiID NavJustMovedToFocusScopeId; // Just navigated to this focus scope id (result of a successfully MoveRequest). + ImGuiKeyChord NavJustMovedToKeyMods; + ImGuiID NavNextActivateId; // Set by ActivateItem(), queued until next frame. + ImGuiActivateFlags NavNextActivateFlags; + ImGuiInputSource NavInputSource; // Keyboard or Gamepad mode? THIS CAN ONLY BE ImGuiInputSource_Keyboard or ImGuiInputSource_Mouse + ImGuiNavLayer NavLayer; // Layer we are navigating on. For now the system is hard-coded for 0=main contents and 1=menu/title bar, may expose layers later. + bool NavIdIsAlive; // Nav widget has been seen this frame ~~ NavRectRel is valid + bool NavMousePosDirty; // When set we will update mouse position if (io.ConfigFlags & ImGuiConfigFlags_NavEnableSetMousePos) if set (NB: this not enabled by default) + bool NavDisableHighlight; // When user starts using mouse, we hide gamepad/keyboard highlight (NB: but they are still available, which is why NavDisableHighlight isn't always != NavDisableMouseHover) + bool NavDisableMouseHover; // When user starts using gamepad/keyboard, we hide mouse hovering highlight until mouse is touched again. + + // Navigation: Init & Move Requests + bool NavAnyRequest; // ~~ NavMoveRequest || NavInitRequest this is to perform early out in ItemAdd() + bool NavInitRequest; // Init request for appearing window to select first item + bool NavInitRequestFromMove; + ImGuiNavItemData NavInitResult; // Init request result (first item of the window, or one for which SetItemDefaultFocus() was called) + bool NavMoveSubmitted; // Move request submitted, will process result on next NewFrame() + bool NavMoveScoringItems; // Move request submitted, still scoring incoming items + bool NavMoveForwardToNextFrame; + ImGuiNavMoveFlags NavMoveFlags; + ImGuiScrollFlags NavMoveScrollFlags; + ImGuiKeyChord NavMoveKeyMods; + ImGuiDir NavMoveDir; // Direction of the move request (left/right/up/down) + ImGuiDir NavMoveDirForDebug; + ImGuiDir NavMoveClipDir; // FIXME-NAV: Describe the purpose of this better. Might want to rename? + ImRect NavScoringRect; // Rectangle used for scoring, in screen space. Based of window->NavRectRel[], modified for directional navigation scoring. + ImRect NavScoringNoClipRect; // Some nav operations (such as PageUp/PageDown) enforce a region which clipper will attempt to always keep submitted + int NavScoringDebugCount; // Metrics for debugging + int NavTabbingDir; // Generally -1 or +1, 0 when tabbing without a nav id + int NavTabbingCounter; // >0 when counting items for tabbing + ImGuiNavItemData NavMoveResultLocal; // Best move request candidate within NavWindow + ImGuiNavItemData NavMoveResultLocalVisible; // Best move request candidate within NavWindow that are mostly visible (when using ImGuiNavMoveFlags_AlsoScoreVisibleSet flag) + ImGuiNavItemData NavMoveResultOther; // Best move request candidate within NavWindow's flattened hierarchy (when using ImGuiWindowFlags_NavFlattened flag) + ImGuiNavItemData NavTabbingResultFirst; // First tabbing request candidate within NavWindow and flattened hierarchy + bool NavMoveRequest; // Move request for this frame + ImGuiNavMoveFlags NavMoveRequestFlags; + ImGuiNavForward NavMoveRequestForward; // None / ForwardQueued / ForwardActive (this is used to navigate sibling parent menus from a child menu) + // Navigation: Windowing (CTRL+TAB for list, or Menu button + keys or directional pads to move/resize) + ImGuiKeyChord ConfigNavWindowingKeyNext; // = ImGuiMod_Ctrl | ImGuiKey_Tab, for reconfiguration (see #4828) + ImGuiKeyChord ConfigNavWindowingKeyPrev; // = ImGuiMod_Ctrl | ImGuiMod_Shift | ImGuiKey_Tab + ImGuiWindow* NavWindowingTarget; // Target window when doing CTRL+Tab (or Pad Menu + FocusPrev/Next), this window is temporarily displayed top-most! + ImGuiWindow* NavWindowingTargetAnim; // Record of last valid NavWindowingTarget until DimBgRatio and NavWindowingHighlightAlpha becomes 0.0f, so the fade-out can stay on it. + ImGuiWindow* NavWindowingListWindow; // Internal window actually listing the CTRL+Tab contents + float NavWindowingTimer; + float NavWindowingHighlightAlpha; + bool NavWindowingToggleLayer; + ImVec2 NavWindowingAccumDeltaPos; + ImVec2 NavWindowingAccumDeltaSize; + + // Render + float DimBgRatio; // 0.0..1.0 animation when fading in a dimming background (for modal window and CTRL+TAB list) + + // Drag and Drop + bool DragDropActive; + bool DragDropWithinSource; // Set when within a BeginDragDropXXX/EndDragDropXXX block for a drag source. + bool DragDropWithinTarget; // Set when within a BeginDragDropXXX/EndDragDropXXX block for a drag target. + ImGuiDragDropFlags DragDropSourceFlags; + int DragDropSourceFrameCount; + int DragDropMouseButton; + ImGuiPayload DragDropPayload; + ImRect DragDropTargetRect; // Store rectangle of current target candidate (we favor small targets when overlapping) + ImGuiID DragDropTargetId; + ImGuiDragDropFlags DragDropAcceptFlags; + float DragDropAcceptIdCurrRectSurface; // Target item surface (we resolve overlapping targets by prioritizing the smaller surface) + ImGuiID DragDropAcceptIdCurr; // Target item id (set at the time of accepting the payload) + ImGuiID DragDropAcceptIdPrev; // Target item id from previous frame (we need to store this to allow for overlapping drag and drop targets) + int DragDropAcceptFrameCount; // Last time a target expressed a desire to accept the source + ImGuiID DragDropHoldJustPressedId; // Set when holding a payload just made ButtonBehavior() return a press. + ImVector DragDropPayloadBufHeap; // We don't expose the ImVector<> directly, ImGuiPayload only holds pointer+size + unsigned char DragDropPayloadBufLocal[16]; // Local buffer for small payloads + + // Clipper + int ClipperTempDataStacked; + ImVector ClipperTempData; + + // Tables + ImGuiTable* CurrentTable; + int TablesTempDataStacked; // Temporary table data size (because we leave previous instances undestructed, we generally don't use TablesTempData.Size) + ImVector TablesTempData; // Temporary table data (buffers reused/shared across instances, support nesting) + ImPool Tables; // Persistent table data + ImVector TablesLastTimeActive; // Last used timestamp of each tables (SOA, for efficient GC) + ImVector DrawChannelsTempMergeBuffer; + + // Tab bars + ImGuiTabBar* CurrentTabBar; + ImPool TabBars; + ImVector CurrentTabBarStack; + ImVector ShrinkWidthBuffer; + + // Hover Delay system + ImGuiID HoverItemDelayId; + ImGuiID HoverItemDelayIdPreviousFrame; + float HoverItemDelayTimer; // Currently used by IsItemHovered() + float HoverItemDelayClearTimer; // Currently used by IsItemHovered(): grace time before g.TooltipHoverTimer gets cleared. + ImGuiID HoverItemUnlockedStationaryId; // Mouse has once been stationary on this item. Only reset after departing the item. + ImGuiID HoverWindowUnlockedStationaryId; // Mouse has once been stationary on this window. Only reset after departing the window. + + // Mouse state + ImGuiMouseCursor MouseCursor; + float MouseStationaryTimer; // Time the mouse has been stationary (with some loose heuristic) + ImVec2 MouseLastValidPos; + + // Widget state + ImGuiInputTextState InputTextState; + ImGuiInputTextDeactivatedState InputTextDeactivatedState; + ImFont InputTextPasswordFont; + ImGuiID TempInputId; // Temporary text input when CTRL+clicking on a slider, etc. + ImGuiColorEditFlags ColorEditOptions; // Store user options for color edit widgets + ImGuiID ColorEditCurrentID; // Set temporarily while inside of the parent-most ColorEdit4/ColorPicker4 (because they call each others). + ImGuiID ColorEditSavedID; // ID we are saving/restoring HS for + float ColorEditSavedHue; // Backup of last Hue associated to LastColor, so we can restore Hue in lossy RGB<>HSV round trips + float ColorEditSavedSat; // Backup of last Saturation associated to LastColor, so we can restore Saturation in lossy RGB<>HSV round trips + ImU32 ColorEditSavedColor; // RGB value with alpha set to 0. + ImVec4 ColorPickerRef; // Initial/reference color at the time of opening the color picker. + ImGuiComboPreviewData ComboPreviewData; + float SliderGrabClickOffset; + float SliderCurrentAccum; // Accumulated slider delta when using navigation controls. + bool SliderCurrentAccumDirty; // Has the accumulated slider delta changed since last time we tried to apply it? + bool DragCurrentAccumDirty; + float DragCurrentAccum; // Accumulator for dragging modification. Always high-precision, not rounded by end-user precision settings + float DragSpeedDefaultRatio; // If speed == 0.0f, uses (max-min) * DragSpeedDefaultRatio + float ScrollbarClickDeltaToGrabCenter; // Distance between mouse and center of grab box, normalized in parent space. Use storage? + float DisabledAlphaBackup; // Backup for style.Alpha for BeginDisabled() + short DisabledStackSize; + short LockMarkEdited; + short TooltipOverrideCount; + ImVector ClipboardHandlerData; // If no custom clipboard handler is defined + ImVector MenusIdSubmittedThisFrame; // A list of menu IDs that were rendered at least once + + // Platform support + ImGuiPlatformImeData PlatformImeData; // Data updated by current frame + ImGuiPlatformImeData PlatformImeDataPrev; // Previous frame data (when changing we will call io.SetPlatformImeDataFn + + // Settings + bool SettingsLoaded; + float SettingsDirtyTimer; // Save .ini Settings to memory when time reaches zero + ImGuiTextBuffer SettingsIniData; // In memory .ini settings + ImVector SettingsHandlers; // List of .ini settings handlers + ImChunkStream SettingsWindows; // ImGuiWindow .ini settings entries + ImChunkStream SettingsTables; // ImGuiTable .ini settings entries + ImVector Hooks; // Hooks for extensions (e.g. test engine) + ImGuiID HookIdNext; // Next available HookId + + // Localization + const char* LocalizationTable[ImGuiLocKey_COUNT]; + + // Capture/Logging + bool LogEnabled; // Currently capturing + ImGuiLogType LogType; // Capture target + ImFileHandle LogFile; // If != NULL log to stdout/ file + ImGuiTextBuffer LogBuffer; // Accumulation buffer when log to clipboard. This is pointer so our GImGui static constructor doesn't call heap allocators. + const char* LogNextPrefix; + const char* LogNextSuffix; + float LogLinePosY; + bool LogLineFirstItem; + int LogDepthRef; + int LogDepthToExpand; + int LogDepthToExpandDefault; // Default/stored value for LogDepthMaxExpand if not specified in the LogXXX function call. + + // Debug Tools + ImGuiDebugLogFlags DebugLogFlags; + ImGuiTextBuffer DebugLogBuf; + ImGuiTextIndex DebugLogIndex; + ImU8 DebugLogClipperAutoDisableFrames; + ImU8 DebugLocateFrames; // For DebugLocateItemOnHover(). This is used together with DebugLocateId which is in a hot/cached spot above. + ImS8 DebugBeginReturnValueCullDepth; // Cycle between 0..9 then wrap around. + bool DebugItemPickerActive; // Item picker is active (started with DebugStartItemPicker()) + ImU8 DebugItemPickerMouseButton; + ImGuiID DebugItemPickerBreakId; // Will call IM_DEBUG_BREAK() when encountering this ID + ImGuiMetricsConfig DebugMetricsConfig; + ImGuiStackTool DebugStackTool; + + // Misc + float FramerateSecPerFrame[60]; // Calculate estimate of framerate for user over the last 60 frames.. + int FramerateSecPerFrameIdx; + int FramerateSecPerFrameCount; + float FramerateSecPerFrameAccum; + int WantCaptureMouseNextFrame; // Explicit capture override via SetNextFrameWantCaptureMouse()/SetNextFrameWantCaptureKeyboard(). Default to -1. + int WantCaptureKeyboardNextFrame; // " + int WantTextInputNextFrame; + ImVector TempBuffer; // Temporary text buffer + + ImGuiContext(ImFontAtlas* shared_font_atlas) + { + IO.Ctx = this; + InputTextState.Ctx = this; + + Initialized = false; + FontAtlasOwnedByContext = shared_font_atlas ? false : true; + Font = NULL; + FontSize = FontBaseSize = 0.0f; + IO.Fonts = shared_font_atlas ? shared_font_atlas : IM_NEW(ImFontAtlas)(); + Time = 0.0f; + FrameCount = 0; + FrameCountEnded = FrameCountRendered = -1; + WithinFrameScope = WithinFrameScopeWithImplicitWindow = WithinEndChild = false; + GcCompactAll = false; + TestEngineHookItems = false; + TestEngine = NULL; + + InputEventsNextMouseSource = ImGuiMouseSource_Mouse; + InputEventsNextEventId = 1; + + WindowsActiveCount = 0; + CurrentWindow = NULL; + HoveredWindow = NULL; + HoveredWindowUnderMovingWindow = NULL; + MovingWindow = NULL; + WheelingWindow = NULL; + WheelingWindowStartFrame = -1; + WheelingWindowReleaseTimer = 0.0f; + + DebugHookIdInfo = 0; + HoveredId = HoveredIdPreviousFrame = 0; + HoveredIdAllowOverlap = false; + HoveredIdDisabled = false; + HoveredIdTimer = HoveredIdNotActiveTimer = 0.0f; + ActiveId = 0; + ActiveIdIsAlive = 0; + ActiveIdTimer = 0.0f; + ActiveIdIsJustActivated = false; + ActiveIdAllowOverlap = false; + ActiveIdNoClearOnFocusLoss = false; + ActiveIdHasBeenPressedBefore = false; + ActiveIdHasBeenEditedBefore = false; + ActiveIdHasBeenEditedThisFrame = false; + ActiveIdClickOffset = ImVec2(-1, -1); + ActiveIdWindow = NULL; + ActiveIdSource = ImGuiInputSource_None; + ActiveIdMouseButton = -1; + ActiveIdPreviousFrame = 0; + ActiveIdPreviousFrameIsAlive = false; + ActiveIdPreviousFrameHasBeenEditedBefore = false; + ActiveIdPreviousFrameWindow = NULL; + LastActiveId = 0; + LastActiveIdTimer = 0.0f; + + ActiveIdUsingNavDirMask = 0x00; + ActiveIdUsingAllKeyboardKeys = false; +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + ActiveIdUsingNavInputMask = 0x00; +#endif + + CurrentFocusScopeId = 0; + CurrentItemFlags = ImGuiItemFlags_None; + BeginMenuCount = 0; + + NavWindow = NULL; + NavId = NavFocusScopeId = NavActivateId = NavActivateDownId = NavActivatePressedId = 0; + NavJustMovedToId = NavJustMovedToFocusScopeId = NavNextActivateId = 0; + NavActivateFlags = NavNextActivateFlags = ImGuiActivateFlags_None; + NavJustMovedToKeyMods = ImGuiMod_None; + NavInputSource = ImGuiInputSource_Keyboard; + NavLayer = ImGuiNavLayer_Main; + NavIdIsAlive = false; + NavMousePosDirty = false; + NavDisableHighlight = true; + NavMoveRequest = false; + NavMoveRequestFlags = ImGuiNavMoveFlags_None; + NavMoveRequestForward = ImGuiNavForward_None; + NavDisableMouseHover = false; + NavAnyRequest = false; + NavInitRequest = false; + NavInitRequestFromMove = false; + NavMoveSubmitted = false; + NavMoveScoringItems = false; + NavMoveForwardToNextFrame = false; + NavMoveFlags = ImGuiNavMoveFlags_None; + NavMoveScrollFlags = ImGuiScrollFlags_None; + NavMoveKeyMods = ImGuiMod_None; + NavMoveDir = NavMoveDirForDebug = NavMoveClipDir = ImGuiDir_None; + NavScoringDebugCount = 0; + NavTabbingDir = 0; + NavTabbingCounter = 0; + + ConfigNavWindowingKeyNext = ImGuiMod_Ctrl | ImGuiKey_Tab; + ConfigNavWindowingKeyPrev = ImGuiMod_Ctrl | ImGuiMod_Shift | ImGuiKey_Tab; + NavWindowingTarget = NavWindowingTargetAnim = NavWindowingListWindow = NULL; + NavWindowingTimer = NavWindowingHighlightAlpha = 0.0f; + NavWindowingToggleLayer = false; + + DimBgRatio = 0.0f; + + DragDropActive = DragDropWithinSource = DragDropWithinTarget = false; + DragDropSourceFlags = ImGuiDragDropFlags_None; + DragDropSourceFrameCount = -1; + DragDropMouseButton = -1; + DragDropTargetId = 0; + DragDropAcceptFlags = ImGuiDragDropFlags_None; + DragDropAcceptIdCurrRectSurface = 0.0f; + DragDropAcceptIdPrev = DragDropAcceptIdCurr = 0; + DragDropAcceptFrameCount = -1; + DragDropHoldJustPressedId = 0; + memset(DragDropPayloadBufLocal, 0, sizeof(DragDropPayloadBufLocal)); + + ClipperTempDataStacked = 0; + + CurrentTable = NULL; + TablesTempDataStacked = 0; + CurrentTabBar = NULL; + + HoverItemDelayId = HoverItemDelayIdPreviousFrame = HoverItemUnlockedStationaryId = HoverWindowUnlockedStationaryId = 0; + HoverItemDelayTimer = HoverItemDelayClearTimer = 0.0f; + + MouseCursor = ImGuiMouseCursor_Arrow; + MouseStationaryTimer = 0.0f; + + TempInputId = 0; + ColorEditOptions = ImGuiColorEditFlags_DefaultOptions_; + ColorEditCurrentID = ColorEditSavedID = 0; + ColorEditSavedHue = ColorEditSavedSat = 0.0f; + ColorEditSavedColor = 0; + SliderGrabClickOffset = 0.0f; + SliderCurrentAccum = 0.0f; + SliderCurrentAccumDirty = false; + DragCurrentAccumDirty = false; + DragCurrentAccum = 0.0f; + DragSpeedDefaultRatio = 1.0f / 100.0f; + ScrollbarClickDeltaToGrabCenter = 0.0f; + DisabledAlphaBackup = 0.0f; + DisabledStackSize = 0; + LockMarkEdited = 0; + TooltipOverrideCount = 0; + + PlatformImeData.InputPos = ImVec2(0.0f, 0.0f); + PlatformImeDataPrev.InputPos = ImVec2(-1.0f, -1.0f); // Different to ensure initial submission + + SettingsLoaded = false; + SettingsDirtyTimer = 0.0f; + HookIdNext = 0; + + memset(LocalizationTable, 0, sizeof(LocalizationTable)); + + LogEnabled = false; + LogType = ImGuiLogType_None; + LogNextPrefix = LogNextSuffix = NULL; + LogFile = NULL; + LogLinePosY = FLT_MAX; + LogLineFirstItem = false; + LogDepthRef = 0; + LogDepthToExpand = LogDepthToExpandDefault = 2; + + DebugLogFlags = ImGuiDebugLogFlags_OutputToTTY; + DebugLocateId = 0; + DebugLogClipperAutoDisableFrames = 0; + DebugLocateFrames = 0; + DebugBeginReturnValueCullDepth = -1; + DebugItemPickerActive = false; + DebugItemPickerMouseButton = ImGuiMouseButton_Left; + DebugItemPickerBreakId = 0; + + memset(FramerateSecPerFrame, 0, sizeof(FramerateSecPerFrame)); + FramerateSecPerFrameIdx = FramerateSecPerFrameCount = 0; + FramerateSecPerFrameAccum = 0.0f; + WantCaptureMouseNextFrame = WantCaptureKeyboardNextFrame = WantTextInputNextFrame = -1; + } +}; + +//----------------------------------------------------------------------------- +// [SECTION] ImGuiWindowTempData, ImGuiWindow +//----------------------------------------------------------------------------- + +// Transient per-window data, reset at the beginning of the frame. This used to be called ImGuiDrawContext, hence the DC variable name in ImGuiWindow. +// (That's theory, in practice the delimitation between ImGuiWindow and ImGuiWindowTempData is quite tenuous and could be reconsidered..) +// (This doesn't need a constructor because we zero-clear it as part of ImGuiWindow and all frame-temporary data are setup on Begin) +struct IMGUI_API ImGuiWindowTempData +{ + // Layout + ImVec2 CursorPos; // Current emitting position, in absolute coordinates. + ImVec2 CursorPosPrevLine; + ImVec2 CursorStartPos; // Initial position after Begin(), generally ~ window position + WindowPadding. + ImVec2 CursorMaxPos; // Used to implicitly calculate ContentSize at the beginning of next frame, for scrolling range and auto-resize. Always growing during the frame. + ImVec2 IdealMaxPos; // Used to implicitly calculate ContentSizeIdeal at the beginning of next frame, for auto-resize only. Always growing during the frame. + ImVec2 CurrLineSize; + ImVec2 PrevLineSize; + float CurrLineTextBaseOffset; // Baseline offset (0.0f by default on a new line, generally == style.FramePadding.y when a framed item has been added). + float PrevLineTextBaseOffset; + bool IsSameLine; + bool IsSetPos; + ImVec1 Indent; // Indentation / start position from left of window (increased by TreePush/TreePop, etc.) + ImVec1 ColumnsOffset; // Offset to the current column (if ColumnsCurrent > 0). FIXME: This and the above should be a stack to allow use cases like Tree->Column->Tree. Need revamp columns API. + ImVec1 GroupOffset; + ImVec2 CursorStartPosLossyness;// Record the loss of precision of CursorStartPos due to really large scrolling amount. This is used by clipper to compensate and fix the most common use case of large scroll area. + + // Keyboard/Gamepad navigation + ImGuiNavLayer NavLayerCurrent; // Current layer, 0..31 (we currently only use 0..1) + short NavLayersActiveMask; // Which layers have been written to (result from previous frame) + short NavLayersActiveMaskNext;// Which layers have been written to (accumulator for current frame) + bool NavIsScrollPushableX; // Set when current work location may be scrolled horizontally when moving left / right. This is generally always true UNLESS within a column. + bool NavHideHighlightOneFrame; + bool NavWindowHasScrollY; // Set per window when scrolling can be used (== ScrollMax.y > 0.0f) + // Last item status + ImGuiID LastItemId; // ID for last item + ImGuiItemStatusFlags LastItemStatusFlags; // Status flags for last item (see ImGuiItemStatusFlags_) + ImRect LastItemRect; // Interaction rect for last item + ImRect LastItemDisplayRect; // End-user display rect for last item (only valid if LastItemStatusFlags & ImGuiItemStatusFlags_HasDisplayRect) + + // Miscellaneous + bool MenuBarAppending; // FIXME: Remove this + ImVec2 MenuBarOffset; // MenuBarOffset.x is sort of equivalent of a per-layer CursorPos.x, saved/restored as we switch to the menu bar. The only situation when MenuBarOffset.y is > 0 if when (SafeAreaPadding.y > FramePadding.y), often used on TVs. + ImGuiMenuColumns MenuColumns; // Simplified columns storage for menu items measurement + int TreeDepth; // Current tree depth. + ImU32 TreeJumpToParentOnPopMask; // Store a copy of !g.NavIdIsAlive for TreeDepth 0..31.. Could be turned into a ImU64 if necessary. + ImVector ChildWindows; + ImGuiStorage* StateStorage; // Current persistent per-window storage (store e.g. tree node open/close state) + ImGuiOldColumns* CurrentColumns; // Current columns set + int CurrentTableIdx; // Current table index (into g.Tables) + ImGuiLayoutType LayoutType; + ImGuiLayoutType ParentLayoutType; // Layout type of parent window at the time of Begin() + int FocusCounterRegular; // (Legacy Focus/Tabbing system) Sequential counter, start at -1 and increase as assigned via FocusableItemRegister() (FIXME-NAV: Needs redesign) + int FocusCounterTabStop; // (Legacy Focus/Tabbing system) Same, but only count widgets which you can Tab through. + + // Local parameters stacks + // We store the current settings outside of the vectors to increase memory locality (reduce cache misses). The vectors are rarely modified. Also it allows us to not heap allocate for short-lived windows which are not using those settings. + ImGuiItemFlags ItemFlags; // == ItemFlagsStack.back() [empty == ImGuiItemFlags_Default] + float ItemWidth; // == ItemWidthStack.back(). 0.0: default, >0.0: width in pixels, <0.0: align xx pixels to the right of window + float TextWrapPos; // Current text wrap pos. + ImVector ItemWidthStack; // Store item widths to restore (attention: .back() is not == ItemWidth) + ImVector TextWrapPosStack; // Store text wrap pos to restore (attention: .back() is not == TextWrapPos) + ImVectorGroupStack; + short StackSizesBackup[6]; // Store size of various stacks for asserting + + ImGuiWindowTempData() + { + CursorPos = CursorPosPrevLine = CursorStartPos = CursorMaxPos = ImVec2(0.0f, 0.0f); + CurrLineSize = PrevLineSize = ImVec2(0.0f, 0.0f); + CurrLineTextBaseOffset = PrevLineTextBaseOffset = 0.0f; + Indent = ImVec1(0.0f); + ColumnsOffset = ImVec1(0.0f); + GroupOffset = ImVec1(0.0f); + + LastItemId = 0; + LastItemStatusFlags = ImGuiItemStatusFlags_None; + LastItemRect = LastItemDisplayRect = ImRect(); + + NavLayersActiveMask = NavLayersActiveMaskNext = 0x00; + NavLayerCurrent = ImGuiNavLayer_Main; + NavIsScrollPushableX = 0; + NavHideHighlightOneFrame = false; + NavWindowHasScrollY = false; + + MenuBarAppending = false; + MenuBarOffset = ImVec2(0.0f, 0.0f); + TreeDepth = 0; + TreeJumpToParentOnPopMask = 0x00; + StateStorage = NULL; + CurrentColumns = NULL; + LayoutType = ParentLayoutType = ImGuiLayoutType_Vertical; + FocusCounterRegular = FocusCounterTabStop = -1; + + ItemFlags = ImGuiItemFlags_None; + ItemWidth = 0.0f; + TextWrapPos = -1.0f; + memset(StackSizesBackup, 0, sizeof(StackSizesBackup)); + } +}; + +// Storage for one window +struct IMGUI_API ImGuiWindow +{ + ImGuiContext* Ctx; // Parent UI context (needs to be set explicitly by parent). + char* Name; // Window name, owned by the window. + ImGuiID ID; // == ImHashStr(Name) + ImGuiWindowFlags Flags; // See enum ImGuiWindowFlags_ + ImGuiChildFlags ChildFlags; // Set when window is a child window. See enum ImGuiChildFlags_ + ImGuiViewportP* Viewport; // Always set in Begin(). Inactive windows may have a NULL value here if their viewport was discarded. + ImVec2 Pos; // Position (always rounded-up to nearest pixel) + ImVec2 Size; // Current size (==SizeFull or collapsed title bar size) + ImVec2 SizeFull; // Size when non collapsed + ImVec2 ContentSize; // Size of contents/scrollable client area (calculated from the extents reach of the cursor) from previous frame. Does not include window decoration or window padding. + ImVec2 ContentSizeIdeal; + ImVec2 ContentSizeExplicit; // Size of contents/scrollable client area explicitly request by the user via SetNextWindowContentSize(). + ImVec2 WindowPadding; // Window padding at the time of Begin(). + float WindowRounding; // Window rounding at the time of Begin(). May be clamped lower to avoid rendering artifacts with title bar, menu bar etc. + float WindowBorderSize; // Window border size at the time of Begin(). + float DecoOuterSizeX1, DecoOuterSizeY1; // Left/Up offsets. Sum of non-scrolling outer decorations (X1 generally == 0.0f. Y1 generally = TitleBarHeight + MenuBarHeight). Locked during Begin(). + float DecoOuterSizeX2, DecoOuterSizeY2; // Right/Down offsets (X2 generally == ScrollbarSize.x, Y2 == ScrollbarSizes.y). + float DecoInnerSizeX1, DecoInnerSizeY1; // Applied AFTER/OVER InnerRect. Specialized for Tables as they use specialized form of clipping and frozen rows/columns are inside InnerRect (and not part of regular decoration sizes). + int NameBufLen; // Size of buffer storing Name. May be larger than strlen(Name)! + ImGuiID MoveId; // == window->GetID("#MOVE") + ImGuiID ChildId; // ID of corresponding item in parent window (for navigation to return from child window to parent window) + ImVec2 Scroll; + ImVec2 ScrollMax; + ImVec2 ScrollTarget; // target scroll position. stored as cursor position with scrolling canceled out, so the highest point is always 0.0f. (FLT_MAX for no change) + ImVec2 ScrollTargetCenterRatio; // 0.0f = scroll so that target position is at top, 0.5f = scroll so that target position is centered + ImVec2 ScrollTargetEdgeSnapDist; // 0.0f = no snapping, >0.0f snapping threshold + ImVec2 ScrollbarSizes; // Size taken by each scrollbars on their smaller axis. Pay attention! ScrollbarSizes.x == width of the vertical scrollbar, ScrollbarSizes.y = height of the horizontal scrollbar. + bool ScrollbarX, ScrollbarY; // Are scrollbars visible? + bool Active; // Set to true on Begin(), unless Collapsed + bool WasActive; + bool WriteAccessed; // Set to true when any widget access the current window + bool Collapsed; // Set when collapsing window to become only title-bar + bool WantCollapseToggle; + bool SkipItems; // Set when items can safely be all clipped (e.g. window not visible or collapsed) + bool Appearing; // Set during the frame where the window is appearing (or re-appearing) + bool Hidden; // Do not display (== HiddenFrames*** > 0) + bool IsFallbackWindow; // Set on the "Debug##Default" window. + bool IsExplicitChild; // Set when passed _ChildWindow, left to false by BeginDocked() + bool HasCloseButton; // Set when the window has a close button (p_open != NULL) + signed char ResizeBorderHeld; // Current border being held for resize (-1: none, otherwise 0-3) + short BeginCount; // Number of Begin() during the current frame (generally 0 or 1, 1+ if appending via multiple Begin/End pairs) + short BeginCountPreviousFrame; // Number of Begin() during the previous frame + short BeginOrderWithinParent; // Begin() order within immediate parent window, if we are a child window. Otherwise 0. + short BeginOrderWithinContext; // Begin() order within entire imgui context. This is mostly used for debugging submission order related issues. + short FocusOrder; // Order within WindowsFocusOrder[], altered when windows are focused. + ImGuiID PopupId; // ID in the popup stack when this window is used as a popup/menu (because we use generic Name/ID for recycling) + ImS8 AutoFitFramesX, AutoFitFramesY; + ImS8 AutoFitChildAxises; + bool AutoFitOnlyGrows; + ImGuiDir AutoPosLastDirection; + ImS8 HiddenFramesCanSkipItems; // Hide the window for N frames + ImS8 HiddenFramesCannotSkipItems; // Hide the window for N frames while allowing items to be submitted so we can measure their size + ImS8 HiddenFramesForRenderOnly; // Hide the window until frame N at Render() time only + ImS8 DisableInputsFrames; // Disable window interactions for N frames + ImGuiCond SetWindowPosAllowFlags : 8; // store acceptable condition flags for SetNextWindowPos() use. + ImGuiCond SetWindowSizeAllowFlags : 8; // store acceptable condition flags for SetNextWindowSize() use. + ImGuiCond SetWindowCollapsedAllowFlags : 8; // store acceptable condition flags for SetNextWindowCollapsed() use. + ImVec2 SetWindowPosVal; // store window position when using a non-zero Pivot (position set needs to be processed when we know the window size) + ImVec2 SetWindowPosPivot; // store window pivot for positioning. ImVec2(0, 0) when positioning from top-left corner; ImVec2(0.5f, 0.5f) for centering; ImVec2(1, 1) for bottom right. + + ImVector IDStack; // ID stack. ID are hashes seeded with the value at the top of the stack. (In theory this should be in the TempData structure) + ImGuiWindowTempData DC; // Temporary per-window data, reset at the beginning of the frame. This used to be called ImGuiDrawContext, hence the "DC" variable name. + + // The best way to understand what those rectangles are is to use the 'Metrics->Tools->Show Windows Rectangles' viewer. + // The main 'OuterRect', omitted as a field, is window->Rect(). + ImRect OuterRectClipped; // == Window->Rect() just after setup in Begin(). == window->Rect() for root window. + ImRect InnerRect; // Inner rectangle (omit title bar, menu bar, scroll bar) + ImRect InnerClipRect; // == InnerRect shrunk by WindowPadding*0.5f on each side, clipped within viewport or parent clip rect. + ImRect WorkRect; // Initially covers the whole scrolling region. Reduced by containers e.g columns/tables when active. Shrunk by WindowPadding*1.0f on each side. This is meant to replace ContentRegionRect over time (from 1.71+ onward). + ImRect ParentWorkRect; // Backup of WorkRect before entering a container such as columns/tables. Used by e.g. SpanAllColumns functions to easily access. Stacked containers are responsible for maintaining this. // FIXME-WORKRECT: Could be a stack? + ImRect ClipRect; // Current clipping/scissoring rectangle, evolve as we are using PushClipRect(), etc. == DrawList->clip_rect_stack.back(). + ImRect ContentRegionRect; // FIXME: This is currently confusing/misleading. It is essentially WorkRect but not handling of scrolling. We currently rely on it as right/bottom aligned sizing operation need some size to rely on. + ImVec2ih HitTestHoleSize; // Define an optional rectangular hole where mouse will pass-through the window. + ImVec2ih HitTestHoleOffset; + + int LastFrameActive; // Last frame number the window was Active. + float LastTimeActive; // Last timestamp the window was Active (using float as we don't need high precision there) + float ItemWidthDefault; + ImGuiStorage StateStorage; + ImVector ColumnsStorage; + float FontWindowScale; // User scale multiplier per-window, via SetWindowFontScale() + int SettingsOffset; // Offset into SettingsWindows[] (offsets are always valid as we only grow the array from the back) + + ImDrawList* DrawList; // == &DrawListInst (for backward compatibility reason with code using imgui_internal.h we keep this a pointer) + ImDrawList DrawListInst; + ImGuiWindow* ParentWindow; // If we are a child _or_ popup _or_ docked window, this is pointing to our parent. Otherwise NULL. + ImGuiWindow* ParentWindowInBeginStack; + ImGuiWindow* RootWindow; // Point to ourself or first ancestor that is not a child window. Doesn't cross through popups/dock nodes. + ImGuiWindow* RootWindowPopupTree; // Point to ourself or first ancestor that is not a child window. Cross through popups parent<>child. + ImGuiWindow* RootWindowForTitleBarHighlight; // Point to ourself or first ancestor which will display TitleBgActive color when this window is active. + ImGuiWindow* RootWindowForNav; // Point to ourself or first ancestor which doesn't have the NavFlattened flag. + + ImGuiWindow* NavLastChildNavWindow; // When going to the menu bar, we remember the child window we came from. (This could probably be made implicit if we kept g.Windows sorted by last focused including child window.) + ImGuiID NavLastIds[ImGuiNavLayer_COUNT]; // Last known NavId for this window, per layer (0/1) + ImRect NavRectRel[ImGuiNavLayer_COUNT]; // Reference rectangle, in window relative space + ImVec2 NavPreferredScoringPosRel[ImGuiNavLayer_COUNT]; // Preferred X/Y position updated when moving on a given axis, reset to FLT_MAX. + ImGuiID NavRootFocusScopeId; // Focus Scope ID at the time of Begin() + + int MemoryDrawListIdxCapacity; // Backup of last idx/vtx count, so when waking up the window we can preallocate and avoid iterative alloc/copy + int MemoryDrawListVtxCapacity; + bool MemoryCompacted; // Set when window extraneous data have been garbage collected + +public: + ImGuiWindow(ImGuiContext* context, const char* name); + ~ImGuiWindow(); + + ImGuiID GetID(const char* str, const char* str_end = NULL); + ImGuiID GetID(const void* ptr); + ImGuiID GetID(int n); + ImGuiID GetIDFromRectangle(const ImRect& r_abs); + + // We don't use g.FontSize because the window may be != g.CurrentWindow. + ImRect Rect() const { return ImRect(Pos.x, Pos.y, Pos.x + Size.x, Pos.y + Size.y); } + float CalcFontSize() const { ImGuiContext& g = *Ctx; float scale = g.FontBaseSize * FontWindowScale; if (ParentWindow) scale *= ParentWindow->FontWindowScale; return scale; } + float TitleBarHeight() const { ImGuiContext& g = *Ctx; return (Flags & ImGuiWindowFlags_NoTitleBar) ? 0.0f : CalcFontSize() + g.Style.FramePadding.y * 2.0f; } + ImRect TitleBarRect() const { return ImRect(Pos, ImVec2(Pos.x + SizeFull.x, Pos.y + TitleBarHeight())); } + float MenuBarHeight() const { ImGuiContext& g = *Ctx; return (Flags & ImGuiWindowFlags_MenuBar) ? DC.MenuBarOffset.y + CalcFontSize() + g.Style.FramePadding.y * 2.0f : 0.0f; } + ImRect MenuBarRect() const { float y1 = Pos.y + TitleBarHeight(); return ImRect(Pos.x, y1, Pos.x + SizeFull.x, y1 + MenuBarHeight()); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Tab bar, Tab item support +//----------------------------------------------------------------------------- + +// Extend ImGuiTabBarFlags_ +enum ImGuiTabBarFlagsPrivate_ +{ + ImGuiTabBarFlags_DockNode = 1 << 20, // Part of a dock node [we don't use this in the master branch but it facilitate branch syncing to keep this around] + ImGuiTabBarFlags_IsFocused = 1 << 21, + ImGuiTabBarFlags_SaveSettings = 1 << 22, // FIXME: Settings are handled by the docking system, this only request the tab bar to mark settings dirty when reordering tabs +}; + +// Extend ImGuiTabItemFlags_ +enum ImGuiTabItemFlagsPrivate_ +{ + ImGuiTabItemFlags_SectionMask_ = ImGuiTabItemFlags_Leading | ImGuiTabItemFlags_Trailing, + ImGuiTabItemFlags_NoCloseButton = 1 << 20, // Track whether p_open was set or not (we'll need this info on the next frame to recompute ContentWidth during layout) + ImGuiTabItemFlags_Button = 1 << 21, // Used by TabItemButton, change the tab item behavior to mimic a button +}; + +// Storage for one active tab item (sizeof() 40 bytes) +struct ImGuiTabItem +{ + ImGuiID ID; + ImGuiTabItemFlags Flags; + int LastFrameVisible; + int LastFrameSelected; // This allows us to infer an ordered list of the last activated tabs with little maintenance + float Offset; // Position relative to beginning of tab + float Width; // Width currently displayed + float ContentWidth; // Width of label, stored during BeginTabItem() call + float RequestedWidth; // Width optionally requested by caller, -1.0f is unused + ImS32 NameOffset; // When Window==NULL, offset to name within parent ImGuiTabBar::TabsNames + ImS16 BeginOrder; // BeginTabItem() order, used to re-order tabs after toggling ImGuiTabBarFlags_Reorderable + ImS16 IndexDuringLayout; // Index only used during TabBarLayout(). Tabs gets reordered so 'Tabs[n].IndexDuringLayout == n' but may mismatch during additions. + bool WantClose; // Marked as closed by SetTabItemClosed() + + ImGuiTabItem() { memset(this, 0, sizeof(*this)); LastFrameVisible = LastFrameSelected = -1; RequestedWidth = -1.0f; NameOffset = -1; BeginOrder = IndexDuringLayout = -1; } +}; + +// Storage for a tab bar (sizeof() 152 bytes) +struct IMGUI_API ImGuiTabBar +{ + ImVector Tabs; + ImGuiTabBarFlags Flags; + ImGuiID ID; // Zero for tab-bars used by docking + ImGuiID SelectedTabId; // Selected tab/window + ImGuiID NextSelectedTabId; // Next selected tab/window. Will also trigger a scrolling animation + ImGuiID VisibleTabId; // Can occasionally be != SelectedTabId (e.g. when previewing contents for CTRL+TAB preview) + int CurrFrameVisible; + int PrevFrameVisible; + ImRect BarRect; + float CurrTabsContentsHeight; + float PrevTabsContentsHeight; // Record the height of contents submitted below the tab bar + float WidthAllTabs; // Actual width of all tabs (locked during layout) + float WidthAllTabsIdeal; // Ideal width if all tabs were visible and not clipped + float ScrollingAnim; + float ScrollingTarget; + float ScrollingTargetDistToVisibility; + float ScrollingSpeed; + float ScrollingRectMinX; + float ScrollingRectMaxX; + ImGuiID ReorderRequestTabId; + ImS16 ReorderRequestOffset; + ImS8 BeginCount; + bool WantLayout; + bool VisibleTabWasSubmitted; + bool TabsAddedNew; // Set to true when a new tab item or button has been added to the tab bar during last frame + ImS16 TabsActiveCount; // Number of tabs submitted this frame. + ImS16 LastTabItemIdx; // Index of last BeginTabItem() tab for use by EndTabItem() + float ItemSpacingY; + ImVec2 FramePadding; // style.FramePadding locked at the time of BeginTabBar() + ImVec2 BackupCursorPos; + ImGuiTextBuffer TabsNames; // For non-docking tab bar we re-append names in a contiguous buffer. + + ImGuiTabBar(); +}; + +//----------------------------------------------------------------------------- +// [SECTION] Table support +//----------------------------------------------------------------------------- + +#define IM_COL32_DISABLE IM_COL32(0,0,0,1) // Special sentinel code which cannot be used as a regular color. +#define IMGUI_TABLE_MAX_COLUMNS 512 // May be further lifted + +// Our current column maximum is 64 but we may raise that in the future. +typedef ImS16 ImGuiTableColumnIdx; +typedef ImU16 ImGuiTableDrawChannelIdx; + +// [Internal] sizeof() ~ 112 +// We use the terminology "Enabled" to refer to a column that is not Hidden by user/api. +// We use the terminology "Clipped" to refer to a column that is out of sight because of scrolling/clipping. +// This is in contrast with some user-facing api such as IsItemVisible() / IsRectVisible() which use "Visible" to mean "not clipped". +struct ImGuiTableColumn +{ + ImGuiTableColumnFlags Flags; // Flags after some patching (not directly same as provided by user). See ImGuiTableColumnFlags_ + float WidthGiven; // Final/actual width visible == (MaxX - MinX), locked in TableUpdateLayout(). May be > WidthRequest to honor minimum width, may be < WidthRequest to honor shrinking columns down in tight space. + float MinX; // Absolute positions + float MaxX; + float WidthRequest; // Master width absolute value when !(Flags & _WidthStretch). When Stretch this is derived every frame from StretchWeight in TableUpdateLayout() + float WidthAuto; // Automatic width + float StretchWeight; // Master width weight when (Flags & _WidthStretch). Often around ~1.0f initially. + float InitStretchWeightOrWidth; // Value passed to TableSetupColumn(). For Width it is a content width (_without padding_). + ImRect ClipRect; // Clipping rectangle for the column + ImGuiID UserID; // Optional, value passed to TableSetupColumn() + float WorkMinX; // Contents region min ~(MinX + CellPaddingX + CellSpacingX1) == cursor start position when entering column + float WorkMaxX; // Contents region max ~(MaxX - CellPaddingX - CellSpacingX2) + float ItemWidth; // Current item width for the column, preserved across rows + float ContentMaxXFrozen; // Contents maximum position for frozen rows (apart from headers), from which we can infer content width. + float ContentMaxXUnfrozen; + float ContentMaxXHeadersUsed; // Contents maximum position for headers rows (regardless of freezing). TableHeader() automatically softclip itself + report ideal desired size, to avoid creating extraneous draw calls + float ContentMaxXHeadersIdeal; + ImS16 NameOffset; // Offset into parent ColumnsNames[] + ImGuiTableColumnIdx DisplayOrder; // Index within Table's IndexToDisplayOrder[] (column may be reordered by users) + ImGuiTableColumnIdx IndexWithinEnabledSet; // Index within enabled/visible set (<= IndexToDisplayOrder) + ImGuiTableColumnIdx PrevEnabledColumn; // Index of prev enabled/visible column within Columns[], -1 if first enabled/visible column + ImGuiTableColumnIdx NextEnabledColumn; // Index of next enabled/visible column within Columns[], -1 if last enabled/visible column + ImGuiTableColumnIdx SortOrder; // Index of this column within sort specs, -1 if not sorting on this column, 0 for single-sort, may be >0 on multi-sort + ImGuiTableDrawChannelIdx DrawChannelCurrent; // Index within DrawSplitter.Channels[] + ImGuiTableDrawChannelIdx DrawChannelFrozen; // Draw channels for frozen rows (often headers) + ImGuiTableDrawChannelIdx DrawChannelUnfrozen; // Draw channels for unfrozen rows + bool IsEnabled; // IsUserEnabled && (Flags & ImGuiTableColumnFlags_Disabled) == 0 + bool IsUserEnabled; // Is the column not marked Hidden by the user? (unrelated to being off view, e.g. clipped by scrolling). + bool IsUserEnabledNextFrame; + bool IsVisibleX; // Is actually in view (e.g. overlapping the host window clipping rectangle, not scrolled). + bool IsVisibleY; + bool IsRequestOutput; // Return value for TableSetColumnIndex() / TableNextColumn(): whether we request user to output contents or not. + bool IsSkipItems; // Do we want item submissions to this column to be completely ignored (no layout will happen). + bool IsPreserveWidthAuto; + ImS8 NavLayerCurrent; // ImGuiNavLayer in 1 byte + ImU8 AutoFitQueue; // Queue of 8 values for the next 8 frames to request auto-fit + ImU8 CannotSkipItemsQueue; // Queue of 8 values for the next 8 frames to disable Clipped/SkipItem + ImU8 SortDirection : 2; // ImGuiSortDirection_Ascending or ImGuiSortDirection_Descending + ImU8 SortDirectionsAvailCount : 2; // Number of available sort directions (0 to 3) + ImU8 SortDirectionsAvailMask : 4; // Mask of available sort directions (1-bit each) + ImU8 SortDirectionsAvailList; // Ordered list of available sort directions (2-bits each, total 8-bits) + + ImGuiTableColumn() + { + memset(this, 0, sizeof(*this)); + StretchWeight = WidthRequest = -1.0f; + NameOffset = -1; + DisplayOrder = IndexWithinEnabledSet = -1; + PrevEnabledColumn = NextEnabledColumn = -1; + SortOrder = -1; + SortDirection = ImGuiSortDirection_None; + DrawChannelCurrent = DrawChannelFrozen = DrawChannelUnfrozen = (ImU8)-1; + } +}; + +// Transient cell data stored per row. +// sizeof() ~ 6 +struct ImGuiTableCellData +{ + ImU32 BgColor; // Actual color + ImGuiTableColumnIdx Column; // Column number +}; + +// Per-instance data that needs preserving across frames (seemingly most others do not need to be preserved aside from debug needs. Does that means they could be moved to ImGuiTableTempData?) +struct ImGuiTableInstanceData +{ + ImGuiID TableInstanceID; + float LastOuterHeight; // Outer height from last frame + float LastFirstRowHeight; // Height of first row from last frame (FIXME: this is used as "header height" and may be reworked) + float LastFrozenHeight; // Height of frozen section from last frame + int HoveredRowLast; // Index of row which was hovered last frame. + int HoveredRowNext; // Index of row hovered this frame, set after encountering it. + + ImGuiTableInstanceData() { TableInstanceID = 0; LastOuterHeight = LastFirstRowHeight = LastFrozenHeight = 0.0f; HoveredRowLast = HoveredRowNext = -1; } +}; + +// FIXME-TABLE: more transient data could be stored in a stacked ImGuiTableTempData: e.g. SortSpecs, incoming RowData +// sizeof() ~ 580 bytes + heap allocs described in TableBeginInitMemory() +struct IMGUI_API ImGuiTable +{ + ImGuiID ID; + ImGuiTableFlags Flags; + void* RawData; // Single allocation to hold Columns[], DisplayOrderToIndex[] and RowCellData[] + ImGuiTableTempData* TempData; // Transient data while table is active. Point within g.CurrentTableStack[] + ImSpan Columns; // Point within RawData[] + ImSpan DisplayOrderToIndex; // Point within RawData[]. Store display order of columns (when not reordered, the values are 0...Count-1) + ImSpan RowCellData; // Point within RawData[]. Store cells background requests for current row. + ImBitArrayPtr EnabledMaskByDisplayOrder; // Column DisplayOrder -> IsEnabled map + ImBitArrayPtr EnabledMaskByIndex; // Column Index -> IsEnabled map (== not hidden by user/api) in a format adequate for iterating column without touching cold data + ImBitArrayPtr VisibleMaskByIndex; // Column Index -> IsVisibleX|IsVisibleY map (== not hidden by user/api && not hidden by scrolling/cliprect) + ImGuiTableFlags SettingsLoadedFlags; // Which data were loaded from the .ini file (e.g. when order is not altered we won't save order) + int SettingsOffset; // Offset in g.SettingsTables + int LastFrameActive; + int ColumnsCount; // Number of columns declared in BeginTable() + int CurrentRow; + int CurrentColumn; + ImS16 InstanceCurrent; // Count of BeginTable() calls with same ID in the same frame (generally 0). This is a little bit similar to BeginCount for a window, but multiple table with same ID look are multiple tables, they are just synched. + ImS16 InstanceInteracted; // Mark which instance (generally 0) of the same ID is being interacted with + float RowPosY1; + float RowPosY2; + float RowMinHeight; // Height submitted to TableNextRow() + float RowCellPaddingY; // Top and bottom padding. Reloaded during row change. + float RowTextBaseline; + float RowIndentOffsetX; + ImGuiTableRowFlags RowFlags : 16; // Current row flags, see ImGuiTableRowFlags_ + ImGuiTableRowFlags LastRowFlags : 16; + int RowBgColorCounter; // Counter for alternating background colors (can be fast-forwarded by e.g clipper), not same as CurrentRow because header rows typically don't increase this. + ImU32 RowBgColor[2]; // Background color override for current row. + ImU32 BorderColorStrong; + ImU32 BorderColorLight; + float BorderX1; + float BorderX2; + float HostIndentX; + float MinColumnWidth; + float OuterPaddingX; + float CellPaddingX; // Padding from each borders. Locked in BeginTable()/Layout. + float CellSpacingX1; // Spacing between non-bordered cells. Locked in BeginTable()/Layout. + float CellSpacingX2; + float InnerWidth; // User value passed to BeginTable(), see comments at the top of BeginTable() for details. + float ColumnsGivenWidth; // Sum of current column width + float ColumnsAutoFitWidth; // Sum of ideal column width in order nothing to be clipped, used for auto-fitting and content width submission in outer window + float ColumnsStretchSumWeights; // Sum of weight of all enabled stretching columns + float ResizedColumnNextWidth; + float ResizeLockMinContentsX2; // Lock minimum contents width while resizing down in order to not create feedback loops. But we allow growing the table. + float RefScale; // Reference scale to be able to rescale columns on font/dpi changes. + ImRect OuterRect; // Note: for non-scrolling table, OuterRect.Max.y is often FLT_MAX until EndTable(), unless a height has been specified in BeginTable(). + ImRect InnerRect; // InnerRect but without decoration. As with OuterRect, for non-scrolling tables, InnerRect.Max.y is + ImRect WorkRect; + ImRect InnerClipRect; + ImRect BgClipRect; // We use this to cpu-clip cell background color fill, evolve during the frame as we cross frozen rows boundaries + ImRect Bg0ClipRectForDrawCmd; // Actual ImDrawCmd clip rect for BG0/1 channel. This tends to be == OuterWindow->ClipRect at BeginTable() because output in BG0/BG1 is cpu-clipped + ImRect Bg2ClipRectForDrawCmd; // Actual ImDrawCmd clip rect for BG2 channel. This tends to be a correct, tight-fit, because output to BG2 are done by widgets relying on regular ClipRect. + ImRect HostClipRect; // This is used to check if we can eventually merge our columns draw calls into the current draw call of the current window. + ImRect HostBackupInnerClipRect; // Backup of InnerWindow->ClipRect during PushTableBackground()/PopTableBackground() + ImGuiWindow* OuterWindow; // Parent window for the table + ImGuiWindow* InnerWindow; // Window holding the table data (== OuterWindow or a child window) + ImGuiTextBuffer ColumnsNames; // Contiguous buffer holding columns names + ImDrawListSplitter* DrawSplitter; // Shortcut to TempData->DrawSplitter while in table. Isolate draw commands per columns to avoid switching clip rect constantly + ImGuiTableInstanceData InstanceDataFirst; + ImVector InstanceDataExtra; // FIXME-OPT: Using a small-vector pattern would be good. + ImGuiTableColumnSortSpecs SortSpecsSingle; + ImVector SortSpecsMulti; // FIXME-OPT: Using a small-vector pattern would be good. + ImGuiTableSortSpecs SortSpecs; // Public facing sorts specs, this is what we return in TableGetSortSpecs() + ImGuiTableColumnIdx SortSpecsCount; + ImGuiTableColumnIdx ColumnsEnabledCount; // Number of enabled columns (<= ColumnsCount) + ImGuiTableColumnIdx ColumnsEnabledFixedCount; // Number of enabled columns (<= ColumnsCount) + ImGuiTableColumnIdx DeclColumnsCount; // Count calls to TableSetupColumn() + ImGuiTableColumnIdx HoveredColumnBody; // Index of column whose visible region is being hovered. Important: == ColumnsCount when hovering empty region after the right-most column! + ImGuiTableColumnIdx HoveredColumnBorder; // Index of column whose right-border is being hovered (for resizing). + ImGuiTableColumnIdx AutoFitSingleColumn; // Index of single column requesting auto-fit. + ImGuiTableColumnIdx ResizedColumn; // Index of column being resized. Reset when InstanceCurrent==0. + ImGuiTableColumnIdx LastResizedColumn; // Index of column being resized from previous frame. + ImGuiTableColumnIdx HeldHeaderColumn; // Index of column header being held. + ImGuiTableColumnIdx ReorderColumn; // Index of column being reordered. (not cleared) + ImGuiTableColumnIdx ReorderColumnDir; // -1 or +1 + ImGuiTableColumnIdx LeftMostEnabledColumn; // Index of left-most non-hidden column. + ImGuiTableColumnIdx RightMostEnabledColumn; // Index of right-most non-hidden column. + ImGuiTableColumnIdx LeftMostStretchedColumn; // Index of left-most stretched column. + ImGuiTableColumnIdx RightMostStretchedColumn; // Index of right-most stretched column. + ImGuiTableColumnIdx ContextPopupColumn; // Column right-clicked on, of -1 if opening context menu from a neutral/empty spot + ImGuiTableColumnIdx FreezeRowsRequest; // Requested frozen rows count + ImGuiTableColumnIdx FreezeRowsCount; // Actual frozen row count (== FreezeRowsRequest, or == 0 when no scrolling offset) + ImGuiTableColumnIdx FreezeColumnsRequest; // Requested frozen columns count + ImGuiTableColumnIdx FreezeColumnsCount; // Actual frozen columns count (== FreezeColumnsRequest, or == 0 when no scrolling offset) + ImGuiTableColumnIdx RowCellDataCurrent; // Index of current RowCellData[] entry in current row + ImGuiTableDrawChannelIdx DummyDrawChannel; // Redirect non-visible columns here. + ImGuiTableDrawChannelIdx Bg2DrawChannelCurrent; // For Selectable() and other widgets drawing across columns after the freezing line. Index within DrawSplitter.Channels[] + ImGuiTableDrawChannelIdx Bg2DrawChannelUnfrozen; + bool IsLayoutLocked; // Set by TableUpdateLayout() which is called when beginning the first row. + bool IsInsideRow; // Set when inside TableBeginRow()/TableEndRow(). + bool IsInitializing; + bool IsSortSpecsDirty; + bool IsUsingHeaders; // Set when the first row had the ImGuiTableRowFlags_Headers flag. + bool IsContextPopupOpen; // Set when default context menu is open (also see: ContextPopupColumn, InstanceInteracted). + bool IsSettingsRequestLoad; + bool IsSettingsDirty; // Set when table settings have changed and needs to be reported into ImGuiTableSetttings data. + bool IsDefaultDisplayOrder; // Set when display order is unchanged from default (DisplayOrder contains 0...Count-1) + bool IsResetAllRequest; + bool IsResetDisplayOrderRequest; + bool IsUnfrozenRows; // Set when we got past the frozen row. + bool IsDefaultSizingPolicy; // Set if user didn't explicitly set a sizing policy in BeginTable() + bool HasScrollbarYCurr; // Whether ANY instance of this table had a vertical scrollbar during the current frame. + bool HasScrollbarYPrev; // Whether ANY instance of this table had a vertical scrollbar during the previous. + bool MemoryCompacted; + bool HostSkipItems; // Backup of InnerWindow->SkipItem at the end of BeginTable(), because we will overwrite InnerWindow->SkipItem on a per-column basis + + ImGuiTable() { memset(this, 0, sizeof(*this)); LastFrameActive = -1; } + ~ImGuiTable() { IM_FREE(RawData); } +}; + +// Transient data that are only needed between BeginTable() and EndTable(), those buffers are shared (1 per level of stacked table). +// - Accessing those requires chasing an extra pointer so for very frequently used data we leave them in the main table structure. +// - We also leave out of this structure data that tend to be particularly useful for debugging/metrics. +// sizeof() ~ 112 bytes. +struct IMGUI_API ImGuiTableTempData +{ + int TableIndex; // Index in g.Tables.Buf[] pool + float LastTimeActive; // Last timestamp this structure was used + + ImVec2 UserOuterSize; // outer_size.x passed to BeginTable() + ImDrawListSplitter DrawSplitter; + + ImRect HostBackupWorkRect; // Backup of InnerWindow->WorkRect at the end of BeginTable() + ImRect HostBackupParentWorkRect; // Backup of InnerWindow->ParentWorkRect at the end of BeginTable() + ImVec2 HostBackupPrevLineSize; // Backup of InnerWindow->DC.PrevLineSize at the end of BeginTable() + ImVec2 HostBackupCurrLineSize; // Backup of InnerWindow->DC.CurrLineSize at the end of BeginTable() + ImVec2 HostBackupCursorMaxPos; // Backup of InnerWindow->DC.CursorMaxPos at the end of BeginTable() + ImVec1 HostBackupColumnsOffset; // Backup of OuterWindow->DC.ColumnsOffset at the end of BeginTable() + float HostBackupItemWidth; // Backup of OuterWindow->DC.ItemWidth at the end of BeginTable() + int HostBackupItemWidthStackSize;//Backup of OuterWindow->DC.ItemWidthStack.Size at the end of BeginTable() + + ImGuiTableTempData() { memset(this, 0, sizeof(*this)); LastTimeActive = -1.0f; } +}; + +// sizeof() ~ 12 +struct ImGuiTableColumnSettings +{ + float WidthOrWeight; + ImGuiID UserID; + ImGuiTableColumnIdx Index; + ImGuiTableColumnIdx DisplayOrder; + ImGuiTableColumnIdx SortOrder; + ImU8 SortDirection : 2; + ImU8 IsEnabled : 1; // "Visible" in ini file + ImU8 IsStretch : 1; + + ImGuiTableColumnSettings() + { + WidthOrWeight = 0.0f; + UserID = 0; + Index = -1; + DisplayOrder = SortOrder = -1; + SortDirection = ImGuiSortDirection_None; + IsEnabled = 1; + IsStretch = 0; + } +}; + +// This is designed to be stored in a single ImChunkStream (1 header followed by N ImGuiTableColumnSettings, etc.) +struct ImGuiTableSettings +{ + ImGuiID ID; // Set to 0 to invalidate/delete the setting + ImGuiTableFlags SaveFlags; // Indicate data we want to save using the Resizable/Reorderable/Sortable/Hideable flags (could be using its own flags..) + float RefScale; // Reference scale to be able to rescale columns on font/dpi changes. + ImGuiTableColumnIdx ColumnsCount; + ImGuiTableColumnIdx ColumnsCountMax; // Maximum number of columns this settings instance can store, we can recycle a settings instance with lower number of columns but not higher + bool WantApply; // Set when loaded from .ini data (to enable merging/loading .ini data into an already running context) + + ImGuiTableSettings() { memset(this, 0, sizeof(*this)); } + ImGuiTableColumnSettings* GetColumnSettings() { return (ImGuiTableColumnSettings*)(this + 1); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] ImGui internal API +// No guarantee of forward compatibility here! +//----------------------------------------------------------------------------- + +namespace ImGui +{ + // Windows + // We should always have a CurrentWindow in the stack (there is an implicit "Debug" window) + // If this ever crash because g.CurrentWindow is NULL it means that either + // - ImGui::NewFrame() has never been called, which is illegal. + // - You are calling ImGui functions after ImGui::EndFrame()/ImGui::Render() and before the next ImGui::NewFrame(), which is also illegal. + inline ImGuiWindow* GetCurrentWindowRead() { ImGuiContext& g = *GImGui; return g.CurrentWindow; } + inline ImGuiWindow* GetCurrentWindow() { ImGuiContext& g = *GImGui; g.CurrentWindow->WriteAccessed = true; return g.CurrentWindow; } + IMGUI_API ImGuiWindow* FindWindowByID(ImGuiID id); + IMGUI_API ImGuiWindow* FindWindowByName(const char* name); + IMGUI_API void UpdateWindowParentAndRootLinks(ImGuiWindow* window, ImGuiWindowFlags flags, ImGuiWindow* parent_window); + IMGUI_API ImVec2 CalcWindowNextAutoFitSize(ImGuiWindow* window); + IMGUI_API bool IsWindowChildOf(ImGuiWindow* window, ImGuiWindow* potential_parent, bool popup_hierarchy); + IMGUI_API bool IsWindowWithinBeginStackOf(ImGuiWindow* window, ImGuiWindow* potential_parent); + IMGUI_API bool IsWindowAbove(ImGuiWindow* potential_above, ImGuiWindow* potential_below); + IMGUI_API bool IsWindowNavFocusable(ImGuiWindow* window); + IMGUI_API void SetWindowPos(ImGuiWindow* window, const ImVec2& pos, ImGuiCond cond = 0); + IMGUI_API void SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond = 0); + IMGUI_API void SetWindowCollapsed(ImGuiWindow* window, bool collapsed, ImGuiCond cond = 0); + IMGUI_API void SetWindowHitTestHole(ImGuiWindow* window, const ImVec2& pos, const ImVec2& size); + IMGUI_API void SetWindowHiddendAndSkipItemsForCurrentFrame(ImGuiWindow* window); + inline ImRect WindowRectAbsToRel(ImGuiWindow* window, const ImRect& r) { ImVec2 off = window->DC.CursorStartPos; return ImRect(r.Min.x - off.x, r.Min.y - off.y, r.Max.x - off.x, r.Max.y - off.y); } + inline ImRect WindowRectRelToAbs(ImGuiWindow* window, const ImRect& r) { ImVec2 off = window->DC.CursorStartPos; return ImRect(r.Min.x + off.x, r.Min.y + off.y, r.Max.x + off.x, r.Max.y + off.y); } + inline ImVec2 WindowPosRelToAbs(ImGuiWindow* window, const ImVec2& p) { ImVec2 off = window->DC.CursorStartPos; return ImVec2(p.x + off.x, p.y + off.y); } + + // Windows: Display Order and Focus Order + IMGUI_API void FocusWindow(ImGuiWindow* window, ImGuiFocusRequestFlags flags = 0); + IMGUI_API void FocusTopMostWindowUnderOne(ImGuiWindow* under_this_window, ImGuiWindow* ignore_window, ImGuiViewport* filter_viewport, ImGuiFocusRequestFlags flags); + IMGUI_API void BringWindowToFocusFront(ImGuiWindow* window); + IMGUI_API void BringWindowToDisplayFront(ImGuiWindow* window); + IMGUI_API void BringWindowToDisplayBack(ImGuiWindow* window); + IMGUI_API void BringWindowToDisplayBehind(ImGuiWindow* window, ImGuiWindow* above_window); + IMGUI_API int FindWindowDisplayIndex(ImGuiWindow* window); + IMGUI_API ImGuiWindow* FindBottomMostVisibleWindowWithinBeginStack(ImGuiWindow* window); + + // Fonts, drawing + IMGUI_API void SetCurrentFont(ImFont* font); + inline ImFont* GetDefaultFont() { ImGuiContext& g = *GImGui; return g.IO.FontDefault ? g.IO.FontDefault : g.IO.Fonts->Fonts[0]; } + inline ImDrawList* GetForegroundDrawList(ImGuiWindow* window) { IM_UNUSED(window); return GetForegroundDrawList(); } // This seemingly unnecessary wrapper simplifies compatibility between the 'master' and 'docking' branches. + IMGUI_API ImDrawList* GetBackgroundDrawList(ImGuiViewport* viewport); // get background draw list for the given viewport. this draw list will be the first rendering one. Useful to quickly draw shapes/text behind dear imgui contents. + IMGUI_API ImDrawList* GetForegroundDrawList(ImGuiViewport* viewport); // get foreground draw list for the given viewport. this draw list will be the last rendered one. Useful to quickly draw shapes/text over dear imgui contents. + IMGUI_API void AddDrawListToDrawDataEx(ImDrawData* draw_data, ImVector* out_list, ImDrawList* draw_list); + + // Init + IMGUI_API void Initialize(); + IMGUI_API void Shutdown(); // Since 1.60 this is a _private_ function. You can call DestroyContext() to destroy the context created by CreateContext(). + + // NewFrame + IMGUI_API void UpdateInputEvents(bool trickle_fast_inputs); + IMGUI_API void UpdateHoveredWindowAndCaptureFlags(); + IMGUI_API void StartMouseMovingWindow(ImGuiWindow* window); + IMGUI_API void UpdateMouseMovingWindowNewFrame(); + IMGUI_API void UpdateMouseMovingWindowEndFrame(); + + // Generic context hooks + IMGUI_API ImGuiID AddContextHook(ImGuiContext* context, const ImGuiContextHook* hook); + IMGUI_API void RemoveContextHook(ImGuiContext* context, ImGuiID hook_to_remove); + IMGUI_API void CallContextHooks(ImGuiContext* context, ImGuiContextHookType type); + + // Viewports + IMGUI_API void SetWindowViewport(ImGuiWindow* window, ImGuiViewportP* viewport); + + // Settings + IMGUI_API void MarkIniSettingsDirty(); + IMGUI_API void MarkIniSettingsDirty(ImGuiWindow* window); + IMGUI_API void ClearIniSettings(); + IMGUI_API void AddSettingsHandler(const ImGuiSettingsHandler* handler); + IMGUI_API void RemoveSettingsHandler(const char* type_name); + IMGUI_API ImGuiSettingsHandler* FindSettingsHandler(const char* type_name); + + // Settings - Windows + IMGUI_API ImGuiWindowSettings* CreateNewWindowSettings(const char* name); + IMGUI_API ImGuiWindowSettings* FindWindowSettingsByID(ImGuiID id); + IMGUI_API ImGuiWindowSettings* FindWindowSettingsByWindow(ImGuiWindow* window); + IMGUI_API void ClearWindowSettings(const char* name); + + // Localization + IMGUI_API void LocalizeRegisterEntries(const ImGuiLocEntry* entries, int count); + inline const char* LocalizeGetMsg(ImGuiLocKey key) { ImGuiContext& g = *GImGui; const char* msg = g.LocalizationTable[key]; return msg ? msg : "*Missing Text*"; } + + // Scrolling + IMGUI_API void SetScrollX(ImGuiWindow* window, float scroll_x); + IMGUI_API void SetScrollY(ImGuiWindow* window, float scroll_y); + IMGUI_API void SetScrollFromPosX(ImGuiWindow* window, float local_x, float center_x_ratio); + IMGUI_API void SetScrollFromPosY(ImGuiWindow* window, float local_y, float center_y_ratio); + + // Early work-in-progress API (ScrollToItem() will become public) + IMGUI_API void ScrollToItem(ImGuiScrollFlags flags = 0); + IMGUI_API void ScrollToRect(ImGuiWindow* window, const ImRect& rect, ImGuiScrollFlags flags = 0); + IMGUI_API ImVec2 ScrollToRectEx(ImGuiWindow* window, const ImRect& rect, ImGuiScrollFlags flags = 0); +//#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + inline void ScrollToBringRectIntoView(ImGuiWindow* window, const ImRect& rect) { ScrollToRect(window, rect, ImGuiScrollFlags_KeepVisibleEdgeY); } +//#endif + + // Basic Accessors + inline ImGuiItemStatusFlags GetItemStatusFlags(){ ImGuiContext& g = *GImGui; return g.LastItemData.StatusFlags; } + inline ImGuiItemFlags GetItemFlags() { ImGuiContext& g = *GImGui; return g.LastItemData.InFlags; } + inline ImGuiID GetActiveID() { ImGuiContext& g = *GImGui; return g.ActiveId; } + inline ImGuiID GetFocusID() { ImGuiContext& g = *GImGui; return g.NavId; } + IMGUI_API void SetActiveID(ImGuiID id, ImGuiWindow* window); + IMGUI_API void SetFocusID(ImGuiID id, ImGuiWindow* window); + IMGUI_API void ClearActiveID(); + IMGUI_API ImGuiID GetHoveredID(); + IMGUI_API void SetHoveredID(ImGuiID id); + IMGUI_API void KeepAliveID(ImGuiID id); + IMGUI_API void MarkItemEdited(ImGuiID id); // Mark data associated to given item as "edited", used by IsItemDeactivatedAfterEdit() function. + IMGUI_API void PushOverrideID(ImGuiID id); // Push given value as-is at the top of the ID stack (whereas PushID combines old and new hashes) + IMGUI_API ImGuiID GetIDWithSeed(const char* str_id_begin, const char* str_id_end, ImGuiID seed); + IMGUI_API ImGuiID GetIDWithSeed(int n, ImGuiID seed); + + // Basic Helpers for widget code + IMGUI_API void ItemSize(const ImVec2& size, float text_baseline_y = -1.0f); + inline void ItemSize(const ImRect& bb, float text_baseline_y = -1.0f) { ItemSize(bb.GetSize(), text_baseline_y); } // FIXME: This is a misleading API since we expect CursorPos to be bb.Min. + IMGUI_API bool ItemAdd(const ImRect& bb, ImGuiID id, const ImRect* nav_bb = NULL, ImGuiItemFlags extra_flags = 0); + IMGUI_API bool ItemHoverable(const ImRect& bb, ImGuiID id, ImGuiItemFlags item_flags); + IMGUI_API bool IsWindowContentHoverable(ImGuiWindow* window, ImGuiHoveredFlags flags = 0); + IMGUI_API bool IsClippedEx(const ImRect& bb, ImGuiID id); + IMGUI_API void SetLastItemData(ImGuiID item_id, ImGuiItemFlags in_flags, ImGuiItemStatusFlags status_flags, const ImRect& item_rect); + IMGUI_API ImVec2 CalcItemSize(ImVec2 size, float default_w, float default_h); + IMGUI_API float CalcWrapWidthForPos(const ImVec2& pos, float wrap_pos_x); + IMGUI_API void PushMultiItemsWidths(int components, float width_full); + IMGUI_API bool IsItemToggledSelection(); // Was the last item selection toggled? (after Selectable(), TreeNode() etc. We only returns toggle _event_ in order to handle clipping correctly) + IMGUI_API ImVec2 GetContentRegionMaxAbs(); + IMGUI_API void ShrinkWidths(ImGuiShrinkWidthItem* items, int count, float width_excess); + + // Parameter stacks (shared) + IMGUI_API void PushItemFlag(ImGuiItemFlags option, bool enabled); + IMGUI_API void PopItemFlag(); + IMGUI_API const ImGuiDataVarInfo* GetStyleVarInfo(ImGuiStyleVar idx); + + // Logging/Capture + IMGUI_API void LogBegin(ImGuiLogType type, int auto_open_depth); // -> BeginCapture() when we design v2 api, for now stay under the radar by using the old name. + IMGUI_API void LogToBuffer(int auto_open_depth = -1); // Start logging/capturing to internal buffer + IMGUI_API void LogRenderedText(const ImVec2* ref_pos, const char* text, const char* text_end = NULL); + IMGUI_API void LogSetNextTextDecoration(const char* prefix, const char* suffix); + + // Popups, Modals, Tooltips + IMGUI_API bool BeginChildEx(const char* name, ImGuiID id, const ImVec2& size_arg, ImGuiChildFlags child_flags, ImGuiWindowFlags window_flags); + IMGUI_API void OpenPopupEx(ImGuiID id, ImGuiPopupFlags popup_flags = ImGuiPopupFlags_None); + IMGUI_API void ClosePopupToLevel(int remaining, bool restore_focus_to_window_under_popup); + IMGUI_API void ClosePopupsOverWindow(ImGuiWindow* ref_window, bool restore_focus_to_window_under_popup); + IMGUI_API void ClosePopupsExceptModals(); + IMGUI_API bool IsPopupOpen(ImGuiID id, ImGuiPopupFlags popup_flags); + IMGUI_API bool BeginPopupEx(ImGuiID id, ImGuiWindowFlags extra_flags); + IMGUI_API bool BeginTooltipEx(ImGuiTooltipFlags tooltip_flags, ImGuiWindowFlags extra_window_flags); + IMGUI_API ImRect GetPopupAllowedExtentRect(ImGuiWindow* window); + IMGUI_API ImGuiWindow* GetTopMostPopupModal(); + IMGUI_API ImGuiWindow* GetTopMostAndVisiblePopupModal(); + IMGUI_API ImGuiWindow* FindBlockingModal(ImGuiWindow* window); + IMGUI_API ImVec2 FindBestWindowPosForPopup(ImGuiWindow* window); + IMGUI_API ImVec2 FindBestWindowPosForPopupEx(const ImVec2& ref_pos, const ImVec2& size, ImGuiDir* last_dir, const ImRect& r_outer, const ImRect& r_avoid, ImGuiPopupPositionPolicy policy); + + // Menus + IMGUI_API bool BeginViewportSideBar(const char* name, ImGuiViewport* viewport, ImGuiDir dir, float size, ImGuiWindowFlags window_flags); + IMGUI_API bool BeginMenuEx(const char* label, const char* icon, bool enabled = true); + IMGUI_API bool MenuItemEx(const char* label, const char* icon, const char* shortcut = NULL, bool selected = false, bool enabled = true); + + // Combos + IMGUI_API bool BeginComboPopup(ImGuiID popup_id, const ImRect& bb, ImGuiComboFlags flags); + IMGUI_API bool BeginComboPreview(); + IMGUI_API void EndComboPreview(); + + // Gamepad/Keyboard Navigation + IMGUI_API void NavInitWindow(ImGuiWindow* window, bool force_reinit); + IMGUI_API void NavInitRequestApplyResult(); + IMGUI_API bool NavMoveRequestButNoResultYet(); + IMGUI_API void NavMoveRequestSubmit(ImGuiDir move_dir, ImGuiDir clip_dir, ImGuiNavMoveFlags move_flags, ImGuiScrollFlags scroll_flags); + IMGUI_API void NavMoveRequestForward(ImGuiDir move_dir, ImGuiDir clip_dir, ImGuiNavMoveFlags move_flags, ImGuiScrollFlags scroll_flags); + IMGUI_API void NavMoveRequestResolveWithLastItem(ImGuiNavItemData* result); + IMGUI_API void NavMoveRequestResolveWithPastTreeNode(ImGuiNavItemData* result, ImGuiNavTreeNodeData* tree_node_data); + IMGUI_API void NavMoveRequestCancel(); + IMGUI_API void NavMoveRequestApplyResult(); + IMGUI_API void NavMoveRequestTryWrapping(ImGuiWindow* window, ImGuiNavMoveFlags move_flags); + IMGUI_API void NavClearPreferredPosForAxis(ImGuiAxis axis); + IMGUI_API void NavUpdateCurrentWindowIsScrollPushableX(); + IMGUI_API void SetNavWindow(ImGuiWindow* window); + IMGUI_API void SetNavID(ImGuiID id, ImGuiNavLayer nav_layer, ImGuiID focus_scope_id, const ImRect& rect_rel); + + // Focus/Activation + // This should be part of a larger set of API: FocusItem(offset = -1), FocusItemByID(id), ActivateItem(offset = -1), ActivateItemByID(id) etc. which are + // much harder to design and implement than expected. I have a couple of private branches on this matter but it's not simple. For now implementing the easy ones. + IMGUI_API void FocusItem(); // Focus last item (no selection/activation). + IMGUI_API void ActivateItemByID(ImGuiID id); // Activate an item by ID (button, checkbox, tree node etc.). Activation is queued and processed on the next frame when the item is encountered again. + + // Inputs + // FIXME: Eventually we should aim to move e.g. IsActiveIdUsingKey() into IsKeyXXX functions. + inline bool IsNamedKey(ImGuiKey key) { return key >= ImGuiKey_NamedKey_BEGIN && key < ImGuiKey_NamedKey_END; } + inline bool IsNamedKeyOrModKey(ImGuiKey key) { return (key >= ImGuiKey_NamedKey_BEGIN && key < ImGuiKey_NamedKey_END) || key == ImGuiMod_Ctrl || key == ImGuiMod_Shift || key == ImGuiMod_Alt || key == ImGuiMod_Super || key == ImGuiMod_Shortcut; } + inline bool IsLegacyKey(ImGuiKey key) { return key >= ImGuiKey_LegacyNativeKey_BEGIN && key < ImGuiKey_LegacyNativeKey_END; } + inline bool IsKeyboardKey(ImGuiKey key) { return key >= ImGuiKey_Keyboard_BEGIN && key < ImGuiKey_Keyboard_END; } + inline bool IsGamepadKey(ImGuiKey key) { return key >= ImGuiKey_Gamepad_BEGIN && key < ImGuiKey_Gamepad_END; } + inline bool IsMouseKey(ImGuiKey key) { return key >= ImGuiKey_Mouse_BEGIN && key < ImGuiKey_Mouse_END; } + inline bool IsAliasKey(ImGuiKey key) { return key >= ImGuiKey_Aliases_BEGIN && key < ImGuiKey_Aliases_END; } + inline ImGuiKeyChord ConvertShortcutMod(ImGuiKeyChord key_chord) { ImGuiContext& g = *GImGui; IM_ASSERT_PARANOID(key_chord & ImGuiMod_Shortcut); return (key_chord & ~ImGuiMod_Shortcut) | (g.IO.ConfigMacOSXBehaviors ? ImGuiMod_Super : ImGuiMod_Ctrl); } + inline ImGuiKey ConvertSingleModFlagToKey(ImGuiContext* ctx, ImGuiKey key) + { + ImGuiContext& g = *ctx; + if (key == ImGuiMod_Ctrl) return ImGuiKey_ReservedForModCtrl; + if (key == ImGuiMod_Shift) return ImGuiKey_ReservedForModShift; + if (key == ImGuiMod_Alt) return ImGuiKey_ReservedForModAlt; + if (key == ImGuiMod_Super) return ImGuiKey_ReservedForModSuper; + if (key == ImGuiMod_Shortcut) return (g.IO.ConfigMacOSXBehaviors ? ImGuiKey_ReservedForModSuper : ImGuiKey_ReservedForModCtrl); + return key; + } + + IMGUI_API ImGuiKeyData* GetKeyData(ImGuiContext* ctx, ImGuiKey key); + inline ImGuiKeyData* GetKeyData(ImGuiKey key) { ImGuiContext& g = *GImGui; return GetKeyData(&g, key); } + IMGUI_API void GetKeyChordName(ImGuiKeyChord key_chord, char* out_buf, int out_buf_size); + inline ImGuiKey MouseButtonToKey(ImGuiMouseButton button) { IM_ASSERT(button >= 0 && button < ImGuiMouseButton_COUNT); return (ImGuiKey)(ImGuiKey_MouseLeft + button); } + IMGUI_API bool IsMouseDragPastThreshold(ImGuiMouseButton button, float lock_threshold = -1.0f); + IMGUI_API ImVec2 GetKeyMagnitude2d(ImGuiKey key_left, ImGuiKey key_right, ImGuiKey key_up, ImGuiKey key_down); + IMGUI_API float GetNavTweakPressedAmount(ImGuiAxis axis); + IMGUI_API int CalcTypematicRepeatAmount(float t0, float t1, float repeat_delay, float repeat_rate); + IMGUI_API void GetTypematicRepeatRate(ImGuiInputFlags flags, float* repeat_delay, float* repeat_rate); + IMGUI_API void SetActiveIdUsingAllKeyboardKeys(); + inline bool IsActiveIdUsingNavDir(ImGuiDir dir) { ImGuiContext& g = *GImGui; return (g.ActiveIdUsingNavDirMask & (1 << dir)) != 0; } + + // [EXPERIMENTAL] Low-Level: Key/Input Ownership + // - The idea is that instead of "eating" a given input, we can link to an owner id. + // - Ownership is most often claimed as a result of reacting to a press/down event (but occasionally may be claimed ahead). + // - Input queries can then read input by specifying ImGuiKeyOwner_Any (== 0), ImGuiKeyOwner_None (== -1) or a custom ID. + // - Legacy input queries (without specifying an owner or _Any or _None) are equivalent to using ImGuiKeyOwner_Any (== 0). + // - Input ownership is automatically released on the frame after a key is released. Therefore: + // - for ownership registration happening as a result of a down/press event, the SetKeyOwner() call may be done once (common case). + // - for ownership registration happening ahead of a down/press event, the SetKeyOwner() call needs to be made every frame (happens if e.g. claiming ownership on hover). + // - SetItemKeyOwner() is a shortcut for common simple case. A custom widget will probably want to call SetKeyOwner() multiple times directly based on its interaction state. + // - This is marked experimental because not all widgets are fully honoring the Set/Test idioms. We will need to move forward step by step. + // Please open a GitHub Issue to submit your usage scenario or if there's a use case you need solved. + IMGUI_API ImGuiID GetKeyOwner(ImGuiKey key); + IMGUI_API void SetKeyOwner(ImGuiKey key, ImGuiID owner_id, ImGuiInputFlags flags = 0); + IMGUI_API void SetKeyOwnersForKeyChord(ImGuiKeyChord key, ImGuiID owner_id, ImGuiInputFlags flags = 0); + IMGUI_API void SetItemKeyOwner(ImGuiKey key, ImGuiInputFlags flags = 0); // Set key owner to last item if it is hovered or active. Equivalent to 'if (IsItemHovered() || IsItemActive()) { SetKeyOwner(key, GetItemID());'. + IMGUI_API bool TestKeyOwner(ImGuiKey key, ImGuiID owner_id); // Test that key is either not owned, either owned by 'owner_id' + inline ImGuiKeyOwnerData* GetKeyOwnerData(ImGuiContext* ctx, ImGuiKey key) { if (key & ImGuiMod_Mask_) key = ConvertSingleModFlagToKey(ctx, key); IM_ASSERT(IsNamedKey(key)); return &ctx->KeysOwnerData[key - ImGuiKey_NamedKey_BEGIN]; } + + // [EXPERIMENTAL] High-Level: Input Access functions w/ support for Key/Input Ownership + // - Important: legacy IsKeyPressed(ImGuiKey, bool repeat=true) _DEFAULTS_ to repeat, new IsKeyPressed() requires _EXPLICIT_ ImGuiInputFlags_Repeat flag. + // - Expected to be later promoted to public API, the prototypes are designed to replace existing ones (since owner_id can default to Any == 0) + // - Specifying a value for 'ImGuiID owner' will test that EITHER the key is NOT owned (UNLESS locked), EITHER the key is owned by 'owner'. + // Legacy functions use ImGuiKeyOwner_Any meaning that they typically ignore ownership, unless a call to SetKeyOwner() explicitly used ImGuiInputFlags_LockThisFrame or ImGuiInputFlags_LockUntilRelease. + // - Binding generators may want to ignore those for now, or suffix them with Ex() until we decide if this gets moved into public API. + IMGUI_API bool IsKeyDown(ImGuiKey key, ImGuiID owner_id); + IMGUI_API bool IsKeyPressed(ImGuiKey key, ImGuiID owner_id, ImGuiInputFlags flags = 0); // Important: when transitioning from old to new IsKeyPressed(): old API has "bool repeat = true", so would default to repeat. New API requiress explicit ImGuiInputFlags_Repeat. + IMGUI_API bool IsKeyReleased(ImGuiKey key, ImGuiID owner_id); + IMGUI_API bool IsMouseDown(ImGuiMouseButton button, ImGuiID owner_id); + IMGUI_API bool IsMouseClicked(ImGuiMouseButton button, ImGuiID owner_id, ImGuiInputFlags flags = 0); + IMGUI_API bool IsMouseReleased(ImGuiMouseButton button, ImGuiID owner_id); + + // [EXPERIMENTAL] Shortcut Routing + // - ImGuiKeyChord = a ImGuiKey optionally OR-red with ImGuiMod_Alt/ImGuiMod_Ctrl/ImGuiMod_Shift/ImGuiMod_Super. + // ImGuiKey_C (accepted by functions taking ImGuiKey or ImGuiKeyChord) + // ImGuiKey_C | ImGuiMod_Ctrl (accepted by functions taking ImGuiKeyChord) + // ONLY ImGuiMod_XXX values are legal to 'OR' with an ImGuiKey. You CANNOT 'OR' two ImGuiKey values. + // - When using one of the routing flags (e.g. ImGuiInputFlags_RouteFocused): routes requested ahead of time given a chord (key + modifiers) and a routing policy. + // - Routes are resolved during NewFrame(): if keyboard modifiers are matching current ones: SetKeyOwner() is called + route is granted for the frame. + // - Route is granted to a single owner. When multiple requests are made we have policies to select the winning route. + // - Multiple read sites may use the same owner id and will all get the granted route. + // - For routing: when owner_id is 0 we use the current Focus Scope ID as a default owner in order to identify our location. + IMGUI_API bool Shortcut(ImGuiKeyChord key_chord, ImGuiID owner_id = 0, ImGuiInputFlags flags = 0); + IMGUI_API bool SetShortcutRouting(ImGuiKeyChord key_chord, ImGuiID owner_id = 0, ImGuiInputFlags flags = 0); + IMGUI_API bool TestShortcutRouting(ImGuiKeyChord key_chord, ImGuiID owner_id); + IMGUI_API ImGuiKeyRoutingData* GetShortcutRoutingData(ImGuiKeyChord key_chord); + + // [EXPERIMENTAL] Focus Scope + // This is generally used to identify a unique input location (for e.g. a selection set) + // There is one per window (automatically set in Begin), but: + // - Selection patterns generally need to react (e.g. clear a selection) when landing on one item of the set. + // So in order to identify a set multiple lists in same window may each need a focus scope. + // If you imagine an hypothetical BeginSelectionGroup()/EndSelectionGroup() api, it would likely call PushFocusScope()/EndFocusScope() + // - Shortcut routing also use focus scope as a default location identifier if an owner is not provided. + // We don't use the ID Stack for this as it is common to want them separate. + IMGUI_API void PushFocusScope(ImGuiID id); + IMGUI_API void PopFocusScope(); + inline ImGuiID GetCurrentFocusScope() { ImGuiContext& g = *GImGui; return g.CurrentFocusScopeId; } // Focus scope we are outputting into, set by PushFocusScope() + + // Drag and Drop + IMGUI_API bool IsDragDropActive(); + IMGUI_API bool BeginDragDropTargetCustom(const ImRect& bb, ImGuiID id); + IMGUI_API void ClearDragDrop(); + IMGUI_API bool IsDragDropPayloadBeingAccepted(); + IMGUI_API void RenderDragDropTargetRect(const ImRect& bb); + + // Internal Columns API (this is not exposed because we will encourage transitioning to the Tables API) + IMGUI_API void SetWindowClipRectBeforeSetChannel(ImGuiWindow* window, const ImRect& clip_rect); + IMGUI_API void BeginColumns(const char* str_id, int count, ImGuiOldColumnFlags flags = 0); // setup number of columns. use an identifier to distinguish multiple column sets. close with EndColumns(). + IMGUI_API void EndColumns(); // close columns + IMGUI_API void PushColumnClipRect(int column_index); + IMGUI_API void PushColumnsBackground(); + IMGUI_API void PopColumnsBackground(); + IMGUI_API ImGuiID GetColumnsID(const char* str_id, int count); + IMGUI_API ImGuiOldColumns* FindOrCreateColumns(ImGuiWindow* window, ImGuiID id); + IMGUI_API float GetColumnOffsetFromNorm(const ImGuiOldColumns* columns, float offset_norm); + IMGUI_API float GetColumnNormFromOffset(const ImGuiOldColumns* columns, float offset); + + // Tables: Candidates for public API + IMGUI_API void TableOpenContextMenu(int column_n = -1); + IMGUI_API void TableSetColumnWidth(int column_n, float width); + IMGUI_API void TableSetColumnSortDirection(int column_n, ImGuiSortDirection sort_direction, bool append_to_sort_specs); + IMGUI_API int TableGetHoveredColumn(); // May use (TableGetColumnFlags() & ImGuiTableColumnFlags_IsHovered) instead. Return hovered column. return -1 when table is not hovered. return columns_count if the unused space at the right of visible columns is hovered. + IMGUI_API int TableGetHoveredRow(); // Retrieve *PREVIOUS FRAME* hovered row. This difference with TableGetHoveredColumn() is the reason why this is not public yet. + IMGUI_API float TableGetHeaderRowHeight(); + IMGUI_API void TablePushBackgroundChannel(); + IMGUI_API void TablePopBackgroundChannel(); + + // Tables: Internals + inline ImGuiTable* GetCurrentTable() { ImGuiContext& g = *GImGui; return g.CurrentTable; } + IMGUI_API ImGuiTable* TableFindByID(ImGuiID id); + IMGUI_API bool BeginTableEx(const char* name, ImGuiID id, int columns_count, ImGuiTableFlags flags = 0, const ImVec2& outer_size = ImVec2(0, 0), float inner_width = 0.0f); + IMGUI_API void TableBeginInitMemory(ImGuiTable* table, int columns_count); + IMGUI_API void TableBeginApplyRequests(ImGuiTable* table); + IMGUI_API void TableSetupDrawChannels(ImGuiTable* table); + IMGUI_API void TableUpdateLayout(ImGuiTable* table); + IMGUI_API void TableUpdateBorders(ImGuiTable* table); + IMGUI_API void TableUpdateColumnsWeightFromWidth(ImGuiTable* table); + IMGUI_API void TableDrawBorders(ImGuiTable* table); + IMGUI_API void TableDrawContextMenu(ImGuiTable* table); + IMGUI_API bool TableBeginContextMenuPopup(ImGuiTable* table); + IMGUI_API void TableMergeDrawChannels(ImGuiTable* table); + inline ImGuiTableInstanceData* TableGetInstanceData(ImGuiTable* table, int instance_no) { if (instance_no == 0) return &table->InstanceDataFirst; return &table->InstanceDataExtra[instance_no - 1]; } + inline ImGuiID TableGetInstanceID(ImGuiTable* table, int instance_no) { return TableGetInstanceData(table, instance_no)->TableInstanceID; } + IMGUI_API void TableSortSpecsSanitize(ImGuiTable* table); + IMGUI_API void TableSortSpecsBuild(ImGuiTable* table); + IMGUI_API ImGuiSortDirection TableGetColumnNextSortDirection(ImGuiTableColumn* column); + IMGUI_API void TableFixColumnSortDirection(ImGuiTable* table, ImGuiTableColumn* column); + IMGUI_API float TableGetColumnWidthAuto(ImGuiTable* table, ImGuiTableColumn* column); + IMGUI_API void TableBeginRow(ImGuiTable* table); + IMGUI_API void TableEndRow(ImGuiTable* table); + IMGUI_API void TableBeginCell(ImGuiTable* table, int column_n); + IMGUI_API void TableEndCell(ImGuiTable* table); + IMGUI_API ImRect TableGetCellBgRect(const ImGuiTable* table, int column_n); + IMGUI_API const char* TableGetColumnName(const ImGuiTable* table, int column_n); + IMGUI_API ImGuiID TableGetColumnResizeID(ImGuiTable* table, int column_n, int instance_no = 0); + IMGUI_API float TableGetMaxColumnWidth(const ImGuiTable* table, int column_n); + IMGUI_API void TableSetColumnWidthAutoSingle(ImGuiTable* table, int column_n); + IMGUI_API void TableSetColumnWidthAutoAll(ImGuiTable* table); + IMGUI_API void TableRemove(ImGuiTable* table); + IMGUI_API void TableGcCompactTransientBuffers(ImGuiTable* table); + IMGUI_API void TableGcCompactTransientBuffers(ImGuiTableTempData* table); + IMGUI_API void TableGcCompactSettings(); + + // Tables: Settings + IMGUI_API void TableLoadSettings(ImGuiTable* table); + IMGUI_API void TableSaveSettings(ImGuiTable* table); + IMGUI_API void TableResetSettings(ImGuiTable* table); + IMGUI_API ImGuiTableSettings* TableGetBoundSettings(ImGuiTable* table); + IMGUI_API void TableSettingsAddSettingsHandler(); + IMGUI_API ImGuiTableSettings* TableSettingsCreate(ImGuiID id, int columns_count); + IMGUI_API ImGuiTableSettings* TableSettingsFindByID(ImGuiID id); + + // Tab Bars + inline ImGuiTabBar* GetCurrentTabBar() { ImGuiContext& g = *GImGui; return g.CurrentTabBar; } + IMGUI_API bool BeginTabBarEx(ImGuiTabBar* tab_bar, const ImRect& bb, ImGuiTabBarFlags flags); + IMGUI_API ImGuiTabItem* TabBarFindTabByID(ImGuiTabBar* tab_bar, ImGuiID tab_id); + IMGUI_API ImGuiTabItem* TabBarFindTabByOrder(ImGuiTabBar* tab_bar, int order); + IMGUI_API ImGuiTabItem* TabBarGetCurrentTab(ImGuiTabBar* tab_bar); + inline int TabBarGetTabOrder(ImGuiTabBar* tab_bar, ImGuiTabItem* tab) { return tab_bar->Tabs.index_from_ptr(tab); } + IMGUI_API const char* TabBarGetTabName(ImGuiTabBar* tab_bar, ImGuiTabItem* tab); + IMGUI_API void TabBarRemoveTab(ImGuiTabBar* tab_bar, ImGuiID tab_id); + IMGUI_API void TabBarCloseTab(ImGuiTabBar* tab_bar, ImGuiTabItem* tab); + IMGUI_API void TabBarQueueFocus(ImGuiTabBar* tab_bar, ImGuiTabItem* tab); + IMGUI_API void TabBarQueueReorder(ImGuiTabBar* tab_bar, ImGuiTabItem* tab, int offset); + IMGUI_API void TabBarQueueReorderFromMousePos(ImGuiTabBar* tab_bar, ImGuiTabItem* tab, ImVec2 mouse_pos); + IMGUI_API bool TabBarProcessReorder(ImGuiTabBar* tab_bar); + IMGUI_API bool TabItemEx(ImGuiTabBar* tab_bar, const char* label, bool* p_open, ImGuiTabItemFlags flags, ImGuiWindow* docked_window); + IMGUI_API ImVec2 TabItemCalcSize(const char* label, bool has_close_button_or_unsaved_marker); + IMGUI_API ImVec2 TabItemCalcSize(ImGuiWindow* window); + IMGUI_API void TabItemBackground(ImDrawList* draw_list, const ImRect& bb, ImGuiTabItemFlags flags, ImU32 col); + IMGUI_API void TabItemLabelAndCloseButton(ImDrawList* draw_list, const ImRect& bb, ImGuiTabItemFlags flags, ImVec2 frame_padding, const char* label, ImGuiID tab_id, ImGuiID close_button_id, bool is_contents_visible, bool* out_just_closed, bool* out_text_clipped); + + // Render helpers + // AVOID USING OUTSIDE OF IMGUI.CPP! NOT FOR PUBLIC CONSUMPTION. THOSE FUNCTIONS ARE A MESS. THEIR SIGNATURE AND BEHAVIOR WILL CHANGE, THEY NEED TO BE REFACTORED INTO SOMETHING DECENT. + // NB: All position are in absolute pixels coordinates (we are never using window coordinates internally) + IMGUI_API void RenderText(ImVec2 pos, const char* text, const char* text_end = NULL, bool hide_text_after_hash = true); + IMGUI_API void RenderTextWrapped(ImVec2 pos, const char* text, const char* text_end, float wrap_width); + IMGUI_API void RenderTextClipped(const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align = ImVec2(0, 0), const ImRect* clip_rect = NULL); + IMGUI_API void RenderTextClippedEx(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align = ImVec2(0, 0), const ImRect* clip_rect = NULL); + IMGUI_API void RenderTextEllipsis(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, float clip_max_x, float ellipsis_max_x, const char* text, const char* text_end, const ImVec2* text_size_if_known); + IMGUI_API void RenderFrame(ImVec2 p_min, ImVec2 p_max, ImU32 fill_col, bool border = true, float rounding = 0.0f); + IMGUI_API void RenderFrameBorder(ImVec2 p_min, ImVec2 p_max, float rounding = 0.0f); + IMGUI_API void RenderColorRectWithAlphaCheckerboard(ImDrawList* draw_list, ImVec2 p_min, ImVec2 p_max, ImU32 fill_col, float grid_step, ImVec2 grid_off, float rounding = 0.0f, ImDrawFlags flags = 0); + IMGUI_API void RenderNavHighlight(const ImRect& bb, ImGuiID id, ImGuiNavHighlightFlags flags = ImGuiNavHighlightFlags_TypeDefault); // Navigation highlight + IMGUI_API const char* FindRenderedTextEnd(const char* text, const char* text_end = NULL); // Find the optional ## from which we stop displaying text. + IMGUI_API void RenderMouseCursor(ImVec2 pos, float scale, ImGuiMouseCursor mouse_cursor, ImU32 col_fill, ImU32 col_border, ImU32 col_shadow); + + // Render helpers (those functions don't access any ImGui state!) + IMGUI_API void RenderArrow(ImDrawList* draw_list, ImVec2 pos, ImU32 col, ImGuiDir dir, float scale = 1.0f); + IMGUI_API void RenderBullet(ImDrawList* draw_list, ImVec2 pos, ImU32 col); + IMGUI_API void RenderCheckMark(ImDrawList* draw_list, ImVec2 pos, ImU32 col, float sz); + IMGUI_API void RenderArrowPointingAt(ImDrawList* draw_list, ImVec2 pos, ImVec2 half_sz, ImGuiDir direction, ImU32 col); + IMGUI_API void RenderRectFilledRangeH(ImDrawList* draw_list, const ImRect& rect, ImU32 col, float x_start_norm, float x_end_norm, float rounding); + IMGUI_API void RenderRectFilledWithHole(ImDrawList* draw_list, const ImRect& outer, const ImRect& inner, ImU32 col, float rounding); + + // Widgets + IMGUI_API void TextEx(const char* text, const char* text_end = NULL, ImGuiTextFlags flags = 0); + IMGUI_API bool ButtonEx(const char* label, const ImVec2& size_arg = ImVec2(0, 0), ImGuiButtonFlags flags = 0); + IMGUI_API bool ArrowButtonEx(const char* str_id, ImGuiDir dir, ImVec2 size_arg, ImGuiButtonFlags flags = 0); + IMGUI_API bool ImageButtonEx(ImGuiID id, ImTextureID texture_id, const ImVec2& size, const ImVec2& uv0, const ImVec2& uv1, const ImVec4& bg_col, const ImVec4& tint_col, ImGuiButtonFlags flags = 0); + IMGUI_API void SeparatorEx(ImGuiSeparatorFlags flags, float thickness = 1.0f); + IMGUI_API void SeparatorTextEx(ImGuiID id, const char* label, const char* label_end, float extra_width); + IMGUI_API bool CheckboxFlags(const char* label, ImS64* flags, ImS64 flags_value); + IMGUI_API bool CheckboxFlags(const char* label, ImU64* flags, ImU64 flags_value); + + // Widgets: Window Decorations + IMGUI_API bool CloseButton(ImGuiID id, const ImVec2& pos); + IMGUI_API bool CollapseButton(ImGuiID id, const ImVec2& pos); + IMGUI_API void Scrollbar(ImGuiAxis axis); + IMGUI_API bool ScrollbarEx(const ImRect& bb, ImGuiID id, ImGuiAxis axis, ImS64* p_scroll_v, ImS64 avail_v, ImS64 contents_v, ImDrawFlags flags); + IMGUI_API ImRect GetWindowScrollbarRect(ImGuiWindow* window, ImGuiAxis axis); + IMGUI_API ImGuiID GetWindowScrollbarID(ImGuiWindow* window, ImGuiAxis axis); + IMGUI_API ImGuiID GetWindowResizeCornerID(ImGuiWindow* window, int n); // 0..3: corners + IMGUI_API ImGuiID GetWindowResizeBorderID(ImGuiWindow* window, ImGuiDir dir); + + // Widgets low-level behaviors + IMGUI_API bool ButtonBehavior(const ImRect& bb, ImGuiID id, bool* out_hovered, bool* out_held, ImGuiButtonFlags flags = 0); + IMGUI_API bool DragBehavior(ImGuiID id, ImGuiDataType data_type, void* p_v, float v_speed, const void* p_min, const void* p_max, const char* format, ImGuiSliderFlags flags); + IMGUI_API bool SliderBehavior(const ImRect& bb, ImGuiID id, ImGuiDataType data_type, void* p_v, const void* p_min, const void* p_max, const char* format, ImGuiSliderFlags flags, ImRect* out_grab_bb); + IMGUI_API bool SplitterBehavior(const ImRect& bb, ImGuiID id, ImGuiAxis axis, float* size1, float* size2, float min_size1, float min_size2, float hover_extend = 0.0f, float hover_visibility_delay = 0.0f, ImU32 bg_col = 0); + IMGUI_API bool TreeNodeBehavior(ImGuiID id, ImGuiTreeNodeFlags flags, const char* label, const char* label_end = NULL); + IMGUI_API bool TreeNodeBehaviorIsOpen(ImGuiID id, ImGuiTreeNodeFlags flags = 0); // Consume previous SetNextItemOpen() data, if any. May return true when logging + IMGUI_API void TreePushOverrideID(ImGuiID id); + + // Template functions are instantiated in imgui_widgets.cpp for a finite number of types. + // To use them externally (for custom widget) you may need an "extern template" statement in your code in order to link to existing instances and silence Clang warnings (see #2036). + // e.g. " extern template IMGUI_API float RoundScalarWithFormatT(const char* format, ImGuiDataType data_type, float v); " + template IMGUI_API float ScaleRatioFromValueT(ImGuiDataType data_type, T v, T v_min, T v_max, bool is_logarithmic, float logarithmic_zero_epsilon, float zero_deadzone_size); + template IMGUI_API T ScaleValueFromRatioT(ImGuiDataType data_type, float t, T v_min, T v_max, bool is_logarithmic, float logarithmic_zero_epsilon, float zero_deadzone_size); + template IMGUI_API bool DragBehaviorT(ImGuiDataType data_type, T* v, float v_speed, T v_min, T v_max, const char* format, ImGuiSliderFlags flags); + template IMGUI_API bool SliderBehaviorT(const ImRect& bb, ImGuiID id, ImGuiDataType data_type, T* v, T v_min, T v_max, const char* format, ImGuiSliderFlags flags, ImRect* out_grab_bb); + template IMGUI_API T RoundScalarWithFormatT(const char* format, ImGuiDataType data_type, T v); + template IMGUI_API bool CheckboxFlagsT(const char* label, T* flags, T flags_value); + + // Data type helpers + IMGUI_API const ImGuiDataTypeInfo* DataTypeGetInfo(ImGuiDataType data_type); + IMGUI_API int DataTypeFormatString(char* buf, int buf_size, ImGuiDataType data_type, const void* p_data, const char* format); + IMGUI_API void DataTypeApplyOp(ImGuiDataType data_type, int op, void* output, const void* arg_1, const void* arg_2); + IMGUI_API bool DataTypeApplyFromText(const char* buf, ImGuiDataType data_type, void* p_data, const char* format); + IMGUI_API int DataTypeCompare(ImGuiDataType data_type, const void* arg_1, const void* arg_2); + IMGUI_API bool DataTypeClamp(ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max); + + // InputText + IMGUI_API bool InputTextEx(const char* label, const char* hint, char* buf, int buf_size, const ImVec2& size_arg, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback = NULL, void* user_data = NULL); + IMGUI_API void InputTextDeactivateHook(ImGuiID id); + IMGUI_API bool TempInputText(const ImRect& bb, ImGuiID id, const char* label, char* buf, int buf_size, ImGuiInputTextFlags flags); + IMGUI_API bool TempInputScalar(const ImRect& bb, ImGuiID id, const char* label, ImGuiDataType data_type, void* p_data, const char* format, const void* p_clamp_min = NULL, const void* p_clamp_max = NULL); + inline bool TempInputIsActive(ImGuiID id) { ImGuiContext& g = *GImGui; return (g.ActiveId == id && g.TempInputId == id); } + inline ImGuiInputTextState* GetInputTextState(ImGuiID id) { ImGuiContext& g = *GImGui; return (id != 0 && g.InputTextState.ID == id) ? &g.InputTextState : NULL; } // Get input text state if active + + // Color + IMGUI_API void ColorTooltip(const char* text, const float* col, ImGuiColorEditFlags flags); + IMGUI_API void ColorEditOptionsPopup(const float* col, ImGuiColorEditFlags flags); + IMGUI_API void ColorPickerOptionsPopup(const float* ref_col, ImGuiColorEditFlags flags); + + // Plot + IMGUI_API int PlotEx(ImGuiPlotType plot_type, const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, const ImVec2& size_arg); + + // Shade functions (write over already created vertices) + IMGUI_API void ShadeVertsLinearColorGradientKeepAlpha(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, ImVec2 gradient_p0, ImVec2 gradient_p1, ImU32 col0, ImU32 col1); + IMGUI_API void ShadeVertsLinearUV(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, bool clamp); + + // Garbage collection + IMGUI_API void GcCompactTransientMiscBuffers(); + IMGUI_API void GcCompactTransientWindowBuffers(ImGuiWindow* window); + IMGUI_API void GcAwakeTransientWindowBuffers(ImGuiWindow* window); + + // Debug Log + IMGUI_API void DebugLog(const char* fmt, ...) IM_FMTARGS(1); + IMGUI_API void DebugLogV(const char* fmt, va_list args) IM_FMTLIST(1); + + // Debug Tools + IMGUI_API void ErrorCheckEndFrameRecover(ImGuiErrorLogCallback log_callback, void* user_data = NULL); + IMGUI_API void ErrorCheckEndWindowRecover(ImGuiErrorLogCallback log_callback, void* user_data = NULL); + IMGUI_API void ErrorCheckUsingSetCursorPosToExtendParentBoundaries(); + IMGUI_API void DebugDrawCursorPos(ImU32 col = IM_COL32(255, 0, 0, 255)); + IMGUI_API void DebugDrawLineExtents(ImU32 col = IM_COL32(255, 0, 0, 255)); + IMGUI_API void DebugDrawItemRect(ImU32 col = IM_COL32(255, 0, 0, 255)); + IMGUI_API void DebugLocateItem(ImGuiID target_id); // Call sparingly: only 1 at the same time! + IMGUI_API void DebugLocateItemOnHover(ImGuiID target_id); // Only call on reaction to a mouse Hover: because only 1 at the same time! + IMGUI_API void DebugLocateItemResolveWithLastItem(); + inline void DebugStartItemPicker() { ImGuiContext& g = *GImGui; g.DebugItemPickerActive = true; } + IMGUI_API void ShowFontAtlas(ImFontAtlas* atlas); + IMGUI_API void DebugHookIdInfo(ImGuiID id, ImGuiDataType data_type, const void* data_id, const void* data_id_end); + IMGUI_API void DebugNodeColumns(ImGuiOldColumns* columns); + IMGUI_API void DebugNodeDrawList(ImGuiWindow* window, ImGuiViewportP* viewport, const ImDrawList* draw_list, const char* label); + IMGUI_API void DebugNodeDrawCmdShowMeshAndBoundingBox(ImDrawList* out_draw_list, const ImDrawList* draw_list, const ImDrawCmd* draw_cmd, bool show_mesh, bool show_aabb); + IMGUI_API void DebugNodeFont(ImFont* font); + IMGUI_API void DebugNodeFontGlyph(ImFont* font, const ImFontGlyph* glyph); + IMGUI_API void DebugNodeStorage(ImGuiStorage* storage, const char* label); + IMGUI_API void DebugNodeTabBar(ImGuiTabBar* tab_bar, const char* label); + IMGUI_API void DebugNodeTable(ImGuiTable* table); + IMGUI_API void DebugNodeTableSettings(ImGuiTableSettings* settings); + IMGUI_API void DebugNodeInputTextState(ImGuiInputTextState* state); + IMGUI_API void DebugNodeWindow(ImGuiWindow* window, const char* label); + IMGUI_API void DebugNodeWindowSettings(ImGuiWindowSettings* settings); + IMGUI_API void DebugNodeWindowsList(ImVector* windows, const char* label); + IMGUI_API void DebugNodeWindowsListByBeginStackParent(ImGuiWindow** windows, int windows_size, ImGuiWindow* parent_in_begin_stack); + IMGUI_API void DebugNodeViewport(ImGuiViewportP* viewport); + IMGUI_API void DebugRenderKeyboardPreview(ImDrawList* draw_list); + IMGUI_API void DebugRenderViewportThumbnail(ImDrawList* draw_list, ImGuiViewportP* viewport, const ImRect& bb); + + // Obsolete functions +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + inline void SetItemUsingMouseWheel() { SetItemKeyOwner(ImGuiKey_MouseWheelY); } // Changed in 1.89 + inline bool TreeNodeBehaviorIsOpen(ImGuiID id, ImGuiTreeNodeFlags flags = 0) { return TreeNodeUpdateNextOpen(id, flags); } // Renamed in 1.89 + + // Refactored focus/nav/tabbing system in 1.82 and 1.84. If you have old/custom copy-and-pasted widgets that used FocusableItemRegister(): + // (Old) IMGUI_VERSION_NUM < 18209: using 'ItemAdd(....)' and 'bool tab_focused = FocusableItemRegister(...)' + // (Old) IMGUI_VERSION_NUM >= 18209: using 'ItemAdd(..., ImGuiItemAddFlags_Focusable)' and 'bool tab_focused = (GetItemStatusFlags() & ImGuiItemStatusFlags_Focused) != 0' + // (New) IMGUI_VERSION_NUM >= 18413: using 'ItemAdd(..., ImGuiItemFlags_Inputable)' and 'bool tab_focused = (GetItemStatusFlags() & ImGuiItemStatusFlags_FocusedTabbing) != 0 || (g.NavActivateId == id && (g.NavActivateFlags & ImGuiActivateFlags_PreferInput))' (WIP) + // Widget code are simplified as there's no need to call FocusableItemUnregister() while managing the transition from regular widget to TempInputText() + inline bool FocusableItemRegister(ImGuiWindow* window, ImGuiID id) { IM_ASSERT(0); IM_UNUSED(window); IM_UNUSED(id); return false; } // -> pass ImGuiItemAddFlags_Inputable flag to ItemAdd() + inline void FocusableItemUnregister(ImGuiWindow* window) { IM_ASSERT(0); IM_UNUSED(window); } // -> unnecessary: TempInputText() uses ImGuiInputTextFlags_MergedItem +#endif +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + inline bool IsKeyPressedMap(ImGuiKey key, bool repeat = true) { IM_ASSERT(IsNamedKey(key)); return IsKeyPressed(key, repeat); } // Removed in 1.87: Mapping from named key is always identity! +#endif + +} // namespace ImGui + + +//----------------------------------------------------------------------------- +// [SECTION] ImFontAtlas internal API +//----------------------------------------------------------------------------- + +// This structure is likely to evolve as we add support for incremental atlas updates +struct ImFontBuilderIO +{ + bool (*FontBuilder_Build)(ImFontAtlas* atlas); +}; + +// Helper for font builder +#ifdef IMGUI_ENABLE_STB_TRUETYPE +IMGUI_API const ImFontBuilderIO* ImFontAtlasGetBuilderForStbTruetype(); +#endif +IMGUI_API void ImFontAtlasBuildInit(ImFontAtlas* atlas); +IMGUI_API void ImFontAtlasBuildSetupFont(ImFontAtlas* atlas, ImFont* font, ImFontConfig* font_config, float ascent, float descent); +IMGUI_API void ImFontAtlasBuildPackCustomRects(ImFontAtlas* atlas, void* stbrp_context_opaque); +IMGUI_API void ImFontAtlasBuildFinish(ImFontAtlas* atlas); +IMGUI_API void ImFontAtlasBuildRender8bppRectFromString(ImFontAtlas* atlas, int x, int y, int w, int h, const char* in_str, char in_marker_char, unsigned char in_marker_pixel_value); +IMGUI_API void ImFontAtlasBuildRender32bppRectFromString(ImFontAtlas* atlas, int x, int y, int w, int h, const char* in_str, char in_marker_char, unsigned int in_marker_pixel_value); +IMGUI_API void ImFontAtlasBuildMultiplyCalcLookupTable(unsigned char out_table[256], float in_multiply_factor); +IMGUI_API void ImFontAtlasBuildMultiplyRectAlpha8(const unsigned char table[256], unsigned char* pixels, int x, int y, int w, int h, int stride); + +//----------------------------------------------------------------------------- +// [SECTION] Test Engine specific hooks (imgui_test_engine) +//----------------------------------------------------------------------------- + +#ifdef IMGUI_ENABLE_TEST_ENGINE +extern void ImGuiTestEngineHook_ItemAdd(ImGuiContext* ctx, ImGuiID id, const ImRect& bb, const ImGuiLastItemData* item_data); // item_data may be NULL +extern void ImGuiTestEngineHook_ItemInfo(ImGuiContext* ctx, ImGuiID id, const char* label, ImGuiItemStatusFlags flags); +extern void ImGuiTestEngineHook_Log(ImGuiContext* ctx, const char* fmt, ...); +extern const char* ImGuiTestEngine_FindItemDebugLabel(ImGuiContext* ctx, ImGuiID id); + +// In IMGUI_VERSION_NUM >= 18934: changed IMGUI_TEST_ENGINE_ITEM_ADD(bb,id) to IMGUI_TEST_ENGINE_ITEM_ADD(id,bb,item_data); +#define IMGUI_TEST_ENGINE_ITEM_ADD(_ID,_BB,_ITEM_DATA) if (g.TestEngineHookItems) ImGuiTestEngineHook_ItemAdd(&g, _ID, _BB, _ITEM_DATA) // Register item bounding box +#define IMGUI_TEST_ENGINE_ITEM_INFO(_ID,_LABEL,_FLAGS) if (g.TestEngineHookItems) ImGuiTestEngineHook_ItemInfo(&g, _ID, _LABEL, _FLAGS) // Register item label and status flags (optional) +#define IMGUI_TEST_ENGINE_LOG(_FMT,...) if (g.TestEngineHookItems) ImGuiTestEngineHook_Log(&g, _FMT, __VA_ARGS__) // Custom log entry from user land into test log +#else +#define IMGUI_TEST_ENGINE_ITEM_ADD(_BB,_ID) ((void)0) +#define IMGUI_TEST_ENGINE_ITEM_INFO(_ID,_LABEL,_FLAGS) ((void)g) +#endif + +//----------------------------------------------------------------------------- + +#if defined(__clang__) +#pragma clang diagnostic pop +#elif defined(__GNUC__) +#pragma GCC diagnostic pop +#endif + +#ifdef _MSC_VER +#pragma warning (pop) +#endif + +#endif // #ifndef IMGUI_DISABLE diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_settings.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_settings.h new file mode 100644 index 0000000..e04036b --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_settings.h @@ -0,0 +1,60 @@ +#include "imgui.h" + +inline float dpi = 1.0f; + +namespace font +{ + inline ImFont* icomoon = nullptr; + inline ImFont* lexend_bold = nullptr; + inline ImFont* lexend_regular = nullptr; + inline ImFont* lexend_general_bold = nullptr; + + inline ImFont* icomoon_widget = nullptr; + inline ImFont* icomoon_widget2 = nullptr; + +} + +namespace c +{ + + inline ImVec4 accent = ImColor(112, 110, 215); + + namespace background + { + + inline ImVec4 filling = ImColor(12, 12, 12); + inline ImVec4 stroke = ImColor(24, 26, 36); + inline ImVec2 size = ImVec2(850, 515); + + inline float rounding = 6; + + } + + namespace elements + { + inline ImVec4 mark = ImColor(255, 255, 255); + + inline ImVec4 stroke = ImColor(28, 26, 37); + inline ImVec4 background = ImColor(15, 15, 17); + inline ImVec4 background_widget = ImColor(21, 23, 26); + + inline ImVec4 text_active = ImColor(255, 255, 255); + inline ImVec4 text_hov = ImColor(81, 92, 109); + inline ImVec4 text = ImColor(43, 51, 63); + + inline float rounding = 4; + } + + namespace child + { + + } + + namespace tab + { + inline ImVec4 tab_active = ImColor(22, 22, 30); + + inline ImVec4 border = ImColor(14, 14, 15); + } + +} \ No newline at end of file diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_tables.cpp b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_tables.cpp new file mode 100644 index 0000000..8fdcbcf --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_tables.cpp @@ -0,0 +1,4146 @@ +// dear imgui, v1.89.9 +// (tables and columns code) + +/* + +Index of this file: + +// [SECTION] Commentary +// [SECTION] Header mess +// [SECTION] Tables: Main code +// [SECTION] Tables: Simple accessors +// [SECTION] Tables: Row changes +// [SECTION] Tables: Columns changes +// [SECTION] Tables: Columns width management +// [SECTION] Tables: Drawing +// [SECTION] Tables: Sorting +// [SECTION] Tables: Headers +// [SECTION] Tables: Context Menu +// [SECTION] Tables: Settings (.ini data) +// [SECTION] Tables: Garbage Collection +// [SECTION] Tables: Debugging +// [SECTION] Columns, BeginColumns, EndColumns, etc. + +*/ + +// Navigating this file: +// - In Visual Studio IDE: CTRL+comma ("Edit.GoToAll") can follow symbols in comments, whereas CTRL+F12 ("Edit.GoToImplementation") cannot. +// - With Visual Assist installed: ALT+G ("VAssistX.GoToImplementation") can also follow symbols in comments. + +//----------------------------------------------------------------------------- +// [SECTION] Commentary +//----------------------------------------------------------------------------- + +//----------------------------------------------------------------------------- +// Typical tables call flow: (root level is generally public API): +//----------------------------------------------------------------------------- +// - BeginTable() user begin into a table +// | BeginChild() - (if ScrollX/ScrollY is set) +// | TableBeginInitMemory() - first time table is used +// | TableResetSettings() - on settings reset +// | TableLoadSettings() - on settings load +// | TableBeginApplyRequests() - apply queued resizing/reordering/hiding requests +// | - TableSetColumnWidth() - apply resizing width (for mouse resize, often requested by previous frame) +// | - TableUpdateColumnsWeightFromWidth()- recompute columns weights (of stretch columns) from their respective width +// - TableSetupColumn() user submit columns details (optional) +// - TableSetupScrollFreeze() user submit scroll freeze information (optional) +//----------------------------------------------------------------------------- +// - TableUpdateLayout() [Internal] followup to BeginTable(): setup everything: widths, columns positions, clipping rectangles. Automatically called by the FIRST call to TableNextRow() or TableHeadersRow(). +// | TableSetupDrawChannels() - setup ImDrawList channels +// | TableUpdateBorders() - detect hovering columns for resize, ahead of contents submission +// | TableDrawContextMenu() - draw right-click context menu +//----------------------------------------------------------------------------- +// - TableHeadersRow() or TableHeader() user submit a headers row (optional) +// | TableSortSpecsClickColumn() - when left-clicked: alter sort order and sort direction +// | TableOpenContextMenu() - when right-clicked: trigger opening of the default context menu +// - TableGetSortSpecs() user queries updated sort specs (optional, generally after submitting headers) +// - TableNextRow() user begin into a new row (also automatically called by TableHeadersRow()) +// | TableEndRow() - finish existing row +// | TableBeginRow() - add a new row +// - TableSetColumnIndex() / TableNextColumn() user begin into a cell +// | TableEndCell() - close existing column/cell +// | TableBeginCell() - enter into current column/cell +// - [...] user emit contents +//----------------------------------------------------------------------------- +// - EndTable() user ends the table +// | TableDrawBorders() - draw outer borders, inner vertical borders +// | TableMergeDrawChannels() - merge draw channels if clipping isn't required +// | EndChild() - (if ScrollX/ScrollY is set) +//----------------------------------------------------------------------------- + +//----------------------------------------------------------------------------- +// TABLE SIZING +//----------------------------------------------------------------------------- +// (Read carefully because this is subtle but it does make sense!) +//----------------------------------------------------------------------------- +// About 'outer_size': +// Its meaning needs to differ slightly depending on if we are using ScrollX/ScrollY flags. +// Default value is ImVec2(0.0f, 0.0f). +// X +// - outer_size.x <= 0.0f -> Right-align from window/work-rect right-most edge. With -FLT_MIN or 0.0f will align exactly on right-most edge. +// - outer_size.x > 0.0f -> Set Fixed width. +// Y with ScrollX/ScrollY disabled: we output table directly in current window +// - outer_size.y < 0.0f -> Bottom-align (but will auto extend, unless _NoHostExtendY is set). Not meaningful if parent window can vertically scroll. +// - outer_size.y = 0.0f -> No minimum height (but will auto extend, unless _NoHostExtendY is set) +// - outer_size.y > 0.0f -> Set Minimum height (but will auto extend, unless _NoHostExtendY is set) +// Y with ScrollX/ScrollY enabled: using a child window for scrolling +// - outer_size.y < 0.0f -> Bottom-align. Not meaningful if parent window can vertically scroll. +// - outer_size.y = 0.0f -> Bottom-align, consistent with BeginChild(). Not recommended unless table is last item in parent window. +// - outer_size.y > 0.0f -> Set Exact height. Recommended when using Scrolling on any axis. +//----------------------------------------------------------------------------- +// Outer size is also affected by the NoHostExtendX/NoHostExtendY flags. +// Important to note how the two flags have slightly different behaviors! +// - ImGuiTableFlags_NoHostExtendX -> Make outer width auto-fit to columns (overriding outer_size.x value). Only available when ScrollX/ScrollY are disabled and Stretch columns are not used. +// - ImGuiTableFlags_NoHostExtendY -> Make outer height stop exactly at outer_size.y (prevent auto-extending table past the limit). Only available when ScrollX/ScrollY is disabled. Data below the limit will be clipped and not visible. +// In theory ImGuiTableFlags_NoHostExtendY could be the default and any non-scrolling tables with outer_size.y != 0.0f would use exact height. +// This would be consistent but perhaps less useful and more confusing (as vertically clipped items are not useful and not easily noticeable). +//----------------------------------------------------------------------------- +// About 'inner_width': +// With ScrollX disabled: +// - inner_width -> *ignored* +// With ScrollX enabled: +// - inner_width < 0.0f -> *illegal* fit in known width (right align from outer_size.x) <-- weird +// - inner_width = 0.0f -> fit in outer_width: Fixed size columns will take space they need (if avail, otherwise shrink down), Stretch columns becomes Fixed columns. +// - inner_width > 0.0f -> override scrolling width, generally to be larger than outer_size.x. Fixed column take space they need (if avail, otherwise shrink down), Stretch columns share remaining space! +//----------------------------------------------------------------------------- +// Details: +// - If you want to use Stretch columns with ScrollX, you generally need to specify 'inner_width' otherwise the concept +// of "available space" doesn't make sense. +// - Even if not really useful, we allow 'inner_width < outer_size.x' for consistency and to facilitate understanding +// of what the value does. +//----------------------------------------------------------------------------- + +//----------------------------------------------------------------------------- +// COLUMNS SIZING POLICIES +// (Reference: ImGuiTableFlags_SizingXXX flags and ImGuiTableColumnFlags_WidthXXX flags) +//----------------------------------------------------------------------------- +// About overriding column sizing policy and width/weight with TableSetupColumn(): +// We use a default parameter of -1 for 'init_width'/'init_weight'. +// - with ImGuiTableColumnFlags_WidthFixed, init_width <= 0 (default) --> width is automatic +// - with ImGuiTableColumnFlags_WidthFixed, init_width > 0 (explicit) --> width is custom +// - with ImGuiTableColumnFlags_WidthStretch, init_weight <= 0 (default) --> weight is 1.0f +// - with ImGuiTableColumnFlags_WidthStretch, init_weight > 0 (explicit) --> weight is custom +// Widths are specified _without_ CellPadding. If you specify a width of 100.0f, the column will be cover (100.0f + Padding * 2.0f) +// and you can fit a 100.0f wide item in it without clipping and with padding honored. +//----------------------------------------------------------------------------- +// About default sizing policy (if you don't specify a ImGuiTableColumnFlags_WidthXXXX flag) +// - with Table policy ImGuiTableFlags_SizingFixedFit --> default Column policy is ImGuiTableColumnFlags_WidthFixed, default Width is equal to contents width +// - with Table policy ImGuiTableFlags_SizingFixedSame --> default Column policy is ImGuiTableColumnFlags_WidthFixed, default Width is max of all contents width +// - with Table policy ImGuiTableFlags_SizingStretchSame --> default Column policy is ImGuiTableColumnFlags_WidthStretch, default Weight is 1.0f +// - with Table policy ImGuiTableFlags_SizingStretchWeight --> default Column policy is ImGuiTableColumnFlags_WidthStretch, default Weight is proportional to contents +// Default Width and default Weight can be overridden when calling TableSetupColumn(). +//----------------------------------------------------------------------------- +// About mixing Fixed/Auto and Stretch columns together: +// - the typical use of mixing sizing policies is: any number of LEADING Fixed columns, followed by one or two TRAILING Stretch columns. +// - using mixed policies with ScrollX does not make much sense, as using Stretch columns with ScrollX does not make much sense in the first place! +// that is, unless 'inner_width' is passed to BeginTable() to explicitly provide a total width to layout columns in. +// - when using ImGuiTableFlags_SizingFixedSame with mixed columns, only the Fixed/Auto columns will match their widths to the width of the maximum contents. +// - when using ImGuiTableFlags_SizingStretchSame with mixed columns, only the Stretch columns will match their weights/widths. +//----------------------------------------------------------------------------- +// About using column width: +// If a column is manually resizable or has a width specified with TableSetupColumn(): +// - you may use GetContentRegionAvail().x to query the width available in a given column. +// - right-side alignment features such as SetNextItemWidth(-x) or PushItemWidth(-x) will rely on this width. +// If the column is not resizable and has no width specified with TableSetupColumn(): +// - its width will be automatic and be set to the max of items submitted. +// - therefore you generally cannot have ALL items of the columns use e.g. SetNextItemWidth(-FLT_MIN). +// - but if the column has one or more items of known/fixed size, this will become the reference width used by SetNextItemWidth(-FLT_MIN). +//----------------------------------------------------------------------------- + + +//----------------------------------------------------------------------------- +// TABLES CLIPPING/CULLING +//----------------------------------------------------------------------------- +// About clipping/culling of Rows in Tables: +// - For large numbers of rows, it is recommended you use ImGuiListClipper to submit only visible rows. +// ImGuiListClipper is reliant on the fact that rows are of equal height. +// See 'Demo->Tables->Vertical Scrolling' or 'Demo->Tables->Advanced' for a demo of using the clipper. +// - Note that auto-resizing columns don't play well with using the clipper. +// By default a table with _ScrollX but without _Resizable will have column auto-resize. +// So, if you want to use the clipper, make sure to either enable _Resizable, either setup columns width explicitly with _WidthFixed. +//----------------------------------------------------------------------------- +// About clipping/culling of Columns in Tables: +// - Both TableSetColumnIndex() and TableNextColumn() return true when the column is visible or performing +// width measurements. Otherwise, you may skip submitting the contents of a cell/column, BUT ONLY if you know +// it is not going to contribute to row height. +// In many situations, you may skip submitting contents for every column but one (e.g. the first one). +// - Case A: column is not hidden by user, and at least partially in sight (most common case). +// - Case B: column is clipped / out of sight (because of scrolling or parent ClipRect): TableNextColumn() return false as a hint but we still allow layout output. +// - Case C: column is hidden explicitly by the user (e.g. via the context menu, or _DefaultHide column flag, etc.). +// +// [A] [B] [C] +// TableNextColumn(): true false false -> [userland] when TableNextColumn() / TableSetColumnIndex() returns false, user can skip submitting items but only if the column doesn't contribute to row height. +// SkipItems: false false true -> [internal] when SkipItems is true, most widgets will early out if submitted, resulting is no layout output. +// ClipRect: normal zero-width zero-width -> [internal] when ClipRect is zero, ItemAdd() will return false and most widgets will early out mid-way. +// ImDrawList output: normal dummy dummy -> [internal] when using the dummy channel, ImDrawList submissions (if any) will be wasted (because cliprect is zero-width anyway). +// +// - We need to distinguish those cases because non-hidden columns that are clipped outside of scrolling bounds should still contribute their height to the row. +// However, in the majority of cases, the contribution to row height is the same for all columns, or the tallest cells are known by the programmer. +//----------------------------------------------------------------------------- +// About clipping/culling of whole Tables: +// - Scrolling tables with a known outer size can be clipped earlier as BeginTable() will return false. +//----------------------------------------------------------------------------- + +//----------------------------------------------------------------------------- +// [SECTION] Header mess +//----------------------------------------------------------------------------- + +#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) +#define _CRT_SECURE_NO_WARNINGS +#endif + +#ifndef IMGUI_DEFINE_MATH_OPERATORS +#define IMGUI_DEFINE_MATH_OPERATORS +#endif + +#include "imgui.h" +#ifndef IMGUI_DISABLE +#include "imgui_internal.h" + +// System includes +#include // intptr_t + +// Visual Studio warnings +#ifdef _MSC_VER +#pragma warning (disable: 4127) // condition expression is constant +#pragma warning (disable: 4996) // 'This function or variable may be unsafe': strcpy, strdup, sprintf, vsnprintf, sscanf, fopen +#if defined(_MSC_VER) && _MSC_VER >= 1922 // MSVC 2019 16.2 or later +#pragma warning (disable: 5054) // operator '|': deprecated between enumerations of different types +#endif +#pragma warning (disable: 26451) // [Static Analyzer] Arithmetic overflow : Using operator 'xxx' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator 'xxx' to avoid overflow(io.2). +#pragma warning (disable: 26812) // [Static Analyzer] The enum type 'xxx' is unscoped. Prefer 'enum class' over 'enum' (Enum.3). +#endif + +// Clang/GCC warnings with -Weverything +#if defined(__clang__) +#if __has_warning("-Wunknown-warning-option") +#pragma clang diagnostic ignored "-Wunknown-warning-option" // warning: unknown warning group 'xxx' // not all warnings are known by all Clang versions and they tend to be rename-happy.. so ignoring warnings triggers new warnings on some configuration. Great! +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" // warning: unknown warning group 'xxx' +#pragma clang diagnostic ignored "-Wold-style-cast" // warning: use of old-style cast // yes, they are more terse. +#pragma clang diagnostic ignored "-Wfloat-equal" // warning: comparing floating point with == or != is unsafe // storing and comparing against same constants (typically 0.0f) is ok. +#pragma clang diagnostic ignored "-Wformat-nonliteral" // warning: format string is not a string literal // passing non-literal to vsnformat(). yes, user passing incorrect format strings can crash the code. +#pragma clang diagnostic ignored "-Wsign-conversion" // warning: implicit conversion changes signedness +#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" // warning: zero as null pointer constant // some standard header variations use #define NULL 0 +#pragma clang diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function // using printf() is a misery with this as C++ va_arg ellipsis changes float to double. +#pragma clang diagnostic ignored "-Wenum-enum-conversion" // warning: bitwise operation between different enumeration types ('XXXFlags_' and 'XXXFlagsPrivate_') +#pragma clang diagnostic ignored "-Wdeprecated-enum-enum-conversion"// warning: bitwise operation between different enumeration types ('XXXFlags_' and 'XXXFlagsPrivate_') is deprecated +#pragma clang diagnostic ignored "-Wimplicit-int-float-conversion" // warning: implicit conversion from 'xxx' to 'float' may lose precision +#elif defined(__GNUC__) +#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind +#pragma GCC diagnostic ignored "-Wformat-nonliteral" // warning: format not a string literal, format string not checked +#pragma GCC diagnostic ignored "-Wclass-memaccess" // [__GNUC__ >= 8] warning: 'memset/memcpy' clearing/writing an object of type 'xxxx' with no trivial copy-assignment; use assignment or value-initialization instead +#endif + +//----------------------------------------------------------------------------- +// [SECTION] Tables: Main code +//----------------------------------------------------------------------------- +// - TableFixFlags() [Internal] +// - TableFindByID() [Internal] +// - BeginTable() +// - BeginTableEx() [Internal] +// - TableBeginInitMemory() [Internal] +// - TableBeginApplyRequests() [Internal] +// - TableSetupColumnFlags() [Internal] +// - TableUpdateLayout() [Internal] +// - TableUpdateBorders() [Internal] +// - EndTable() +// - TableSetupColumn() +// - TableSetupScrollFreeze() +//----------------------------------------------------------------------------- + +// Configuration +static const int TABLE_DRAW_CHANNEL_BG0 = 0; +static const int TABLE_DRAW_CHANNEL_BG2_FROZEN = 1; +static const int TABLE_DRAW_CHANNEL_NOCLIP = 2; // When using ImGuiTableFlags_NoClip (this becomes the last visible channel) +static const float TABLE_BORDER_SIZE = 1.0f; // FIXME-TABLE: Currently hard-coded because of clipping assumptions with outer borders rendering. +static const float TABLE_RESIZE_SEPARATOR_HALF_THICKNESS = 4.0f; // Extend outside inner borders. +static const float TABLE_RESIZE_SEPARATOR_FEEDBACK_TIMER = 0.06f; // Delay/timer before making the hover feedback (color+cursor) visible because tables/columns tends to be more cramped. + +// Helper +inline ImGuiTableFlags TableFixFlags(ImGuiTableFlags flags, ImGuiWindow* outer_window) +{ + // Adjust flags: set default sizing policy + if ((flags & ImGuiTableFlags_SizingMask_) == 0) + flags |= ((flags & ImGuiTableFlags_ScrollX) || (outer_window->Flags & ImGuiWindowFlags_AlwaysAutoResize)) ? ImGuiTableFlags_SizingFixedFit : ImGuiTableFlags_SizingStretchSame; + + // Adjust flags: enable NoKeepColumnsVisible when using ImGuiTableFlags_SizingFixedSame + if ((flags & ImGuiTableFlags_SizingMask_) == ImGuiTableFlags_SizingFixedSame) + flags |= ImGuiTableFlags_NoKeepColumnsVisible; + + // Adjust flags: enforce borders when resizable + if (flags & ImGuiTableFlags_Resizable) + flags |= ImGuiTableFlags_BordersInnerV; + + // Adjust flags: disable NoHostExtendX/NoHostExtendY if we have any scrolling going on + if (flags & (ImGuiTableFlags_ScrollX | ImGuiTableFlags_ScrollY)) + flags &= ~(ImGuiTableFlags_NoHostExtendX | ImGuiTableFlags_NoHostExtendY); + + // Adjust flags: NoBordersInBodyUntilResize takes priority over NoBordersInBody + if (flags & ImGuiTableFlags_NoBordersInBodyUntilResize) + flags &= ~ImGuiTableFlags_NoBordersInBody; + + // Adjust flags: disable saved settings if there's nothing to save + if ((flags & (ImGuiTableFlags_Resizable | ImGuiTableFlags_Hideable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_Sortable)) == 0) + flags |= ImGuiTableFlags_NoSavedSettings; + + // Inherit _NoSavedSettings from top-level window (child windows always have _NoSavedSettings set) + if (outer_window->RootWindow->Flags & ImGuiWindowFlags_NoSavedSettings) + flags |= ImGuiTableFlags_NoSavedSettings; + + return flags; +} + +ImGuiTable* ImGui::TableFindByID(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + return g.Tables.GetByKey(id); +} + +// Read about "TABLE SIZING" at the top of this file. +bool ImGui::BeginTable(const char* str_id, int columns_count, ImGuiTableFlags flags, const ImVec2& outer_size, float inner_width) +{ + ImGuiID id = GetID(str_id); + return BeginTableEx(str_id, id, columns_count, flags, outer_size, inner_width); +} + +bool ImGui::BeginTableEx(const char* name, ImGuiID id, int columns_count, ImGuiTableFlags flags, const ImVec2& outer_size, float inner_width) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* outer_window = GetCurrentWindow(); + if (outer_window->SkipItems) // Consistent with other tables + beneficial side effect that assert on miscalling EndTable() will be more visible. + return false; + + // Sanity checks + IM_ASSERT(columns_count > 0 && columns_count < IMGUI_TABLE_MAX_COLUMNS); + if (flags & ImGuiTableFlags_ScrollX) + IM_ASSERT(inner_width >= 0.0f); + + // If an outer size is specified ahead we will be able to early out when not visible. Exact clipping criteria may evolve. + const bool use_child_window = (flags & (ImGuiTableFlags_ScrollX | ImGuiTableFlags_ScrollY)) != 0; + const ImVec2 avail_size = GetContentRegionAvail(); + ImVec2 actual_outer_size = CalcItemSize(outer_size, ImMax(avail_size.x, 1.0f), use_child_window ? ImMax(avail_size.y, 1.0f) : 0.0f); + ImRect outer_rect(outer_window->DC.CursorPos, outer_window->DC.CursorPos + actual_outer_size); + if (use_child_window && IsClippedEx(outer_rect, 0)) + { + ItemSize(outer_rect); + return false; + } + + // Acquire storage for the table + ImGuiTable* table = g.Tables.GetOrAddByKey(id); + const ImGuiTableFlags table_last_flags = table->Flags; + + // Acquire temporary buffers + const int table_idx = g.Tables.GetIndex(table); + if (++g.TablesTempDataStacked > g.TablesTempData.Size) + g.TablesTempData.resize(g.TablesTempDataStacked, ImGuiTableTempData()); + ImGuiTableTempData* temp_data = table->TempData = &g.TablesTempData[g.TablesTempDataStacked - 1]; + temp_data->TableIndex = table_idx; + table->DrawSplitter = &table->TempData->DrawSplitter; + table->DrawSplitter->Clear(); + + // Fix flags + table->IsDefaultSizingPolicy = (flags & ImGuiTableFlags_SizingMask_) == 0; + flags = TableFixFlags(flags, outer_window); + + // Initialize + const int instance_no = (table->LastFrameActive != g.FrameCount) ? 0 : table->InstanceCurrent + 1; + table->ID = id; + table->Flags = flags; + table->LastFrameActive = g.FrameCount; + table->OuterWindow = table->InnerWindow = outer_window; + table->ColumnsCount = columns_count; + table->IsLayoutLocked = false; + table->InnerWidth = inner_width; + temp_data->UserOuterSize = outer_size; + + // Instance data (for instance 0, TableID == TableInstanceID) + ImGuiID instance_id; + table->InstanceCurrent = (ImS16)instance_no; + if (instance_no > 0) + { + IM_ASSERT(table->ColumnsCount == columns_count && "BeginTable(): Cannot change columns count mid-frame while preserving same ID"); + if (table->InstanceDataExtra.Size < instance_no) + table->InstanceDataExtra.push_back(ImGuiTableInstanceData()); + instance_id = GetIDWithSeed(instance_no, GetIDWithSeed("##Instances", NULL, id)); // Push "##Instances" followed by (int)instance_no in ID stack. + } + else + { + instance_id = id; + } + ImGuiTableInstanceData* table_instance = TableGetInstanceData(table, table->InstanceCurrent); + table_instance->TableInstanceID = instance_id; + + // When not using a child window, WorkRect.Max will grow as we append contents. + if (use_child_window) + { + // Ensure no vertical scrollbar appears if we only want horizontal one, to make flag consistent + // (we have no other way to disable vertical scrollbar of a window while keeping the horizontal one showing) + ImVec2 override_content_size(FLT_MAX, FLT_MAX); + if ((flags & ImGuiTableFlags_ScrollX) && !(flags & ImGuiTableFlags_ScrollY)) + override_content_size.y = FLT_MIN; + + // Ensure specified width (when not specified, Stretched columns will act as if the width == OuterWidth and + // never lead to any scrolling). We don't handle inner_width < 0.0f, we could potentially use it to right-align + // based on the right side of the child window work rect, which would require knowing ahead if we are going to + // have decoration taking horizontal spaces (typically a vertical scrollbar). + if ((flags & ImGuiTableFlags_ScrollX) && inner_width > 0.0f) + override_content_size.x = inner_width; + + if (override_content_size.x != FLT_MAX || override_content_size.y != FLT_MAX) + SetNextWindowContentSize(ImVec2(override_content_size.x != FLT_MAX ? override_content_size.x : 0.0f, override_content_size.y != FLT_MAX ? override_content_size.y : 0.0f)); + + // Reset scroll if we are reactivating it + if ((table_last_flags & (ImGuiTableFlags_ScrollX | ImGuiTableFlags_ScrollY)) == 0) + SetNextWindowScroll(ImVec2(0.0f, 0.0f)); + + // Create scrolling region (without border and zero window padding) + ImGuiWindowFlags child_flags = (flags & ImGuiTableFlags_ScrollX) ? ImGuiWindowFlags_HorizontalScrollbar : ImGuiWindowFlags_None; + BeginChildEx(name, instance_id, outer_rect.GetSize(), false, child_flags); + table->InnerWindow = g.CurrentWindow; + table->WorkRect = table->InnerWindow->WorkRect; + table->OuterRect = table->InnerWindow->Rect(); + table->InnerRect = table->InnerWindow->InnerRect; + IM_ASSERT(table->InnerWindow->WindowPadding.x == 0.0f && table->InnerWindow->WindowPadding.y == 0.0f && table->InnerWindow->WindowBorderSize == 0.0f); + + // When using multiple instances, ensure they have the same amount of horizontal decorations (aka vertical scrollbar) so stretched columns can be aligned) + if (instance_no == 0) + { + table->HasScrollbarYPrev = table->HasScrollbarYCurr; + table->HasScrollbarYCurr = false; + } + table->HasScrollbarYCurr |= table->InnerWindow->ScrollbarY; + } + else + { + // For non-scrolling tables, WorkRect == OuterRect == InnerRect. + // But at this point we do NOT have a correct value for .Max.y (unless a height has been explicitly passed in). It will only be updated in EndTable(). + table->WorkRect = table->OuterRect = table->InnerRect = outer_rect; + } + + // Push a standardized ID for both child-using and not-child-using tables + PushOverrideID(id); + if (instance_no > 0) + PushOverrideID(instance_id); // FIXME: Somehow this is not resolved by stack-tool, even tho GetIDWithSeed() submitted the symbol. + + // Backup a copy of host window members we will modify + ImGuiWindow* inner_window = table->InnerWindow; + table->HostIndentX = inner_window->DC.Indent.x; + table->HostClipRect = inner_window->ClipRect; + table->HostSkipItems = inner_window->SkipItems; + temp_data->HostBackupWorkRect = inner_window->WorkRect; + temp_data->HostBackupParentWorkRect = inner_window->ParentWorkRect; + temp_data->HostBackupColumnsOffset = outer_window->DC.ColumnsOffset; + temp_data->HostBackupPrevLineSize = inner_window->DC.PrevLineSize; + temp_data->HostBackupCurrLineSize = inner_window->DC.CurrLineSize; + temp_data->HostBackupCursorMaxPos = inner_window->DC.CursorMaxPos; + temp_data->HostBackupItemWidth = outer_window->DC.ItemWidth; + temp_data->HostBackupItemWidthStackSize = outer_window->DC.ItemWidthStack.Size; + inner_window->DC.PrevLineSize = inner_window->DC.CurrLineSize = ImVec2(0.0f, 0.0f); + + // Padding and Spacing + // - None ........Content..... Pad .....Content........ + // - PadOuter | Pad ..Content..... Pad .....Content.. Pad | + // - PadInner ........Content.. Pad | Pad ..Content........ + // - PadOuter+PadInner | Pad ..Content.. Pad | Pad ..Content.. Pad | + const bool pad_outer_x = (flags & ImGuiTableFlags_NoPadOuterX) ? false : (flags & ImGuiTableFlags_PadOuterX) ? true : (flags & ImGuiTableFlags_BordersOuterV) != 0; + const bool pad_inner_x = (flags & ImGuiTableFlags_NoPadInnerX) ? false : true; + const float inner_spacing_for_border = (flags & ImGuiTableFlags_BordersInnerV) ? TABLE_BORDER_SIZE : 0.0f; + const float inner_spacing_explicit = (pad_inner_x && (flags & ImGuiTableFlags_BordersInnerV) == 0) ? g.Style.CellPadding.x : 0.0f; + const float inner_padding_explicit = (pad_inner_x && (flags & ImGuiTableFlags_BordersInnerV) != 0) ? g.Style.CellPadding.x : 0.0f; + table->CellSpacingX1 = inner_spacing_explicit + inner_spacing_for_border; + table->CellSpacingX2 = inner_spacing_explicit; + table->CellPaddingX = inner_padding_explicit; + + const float outer_padding_for_border = (flags & ImGuiTableFlags_BordersOuterV) ? TABLE_BORDER_SIZE : 0.0f; + const float outer_padding_explicit = pad_outer_x ? g.Style.CellPadding.x : 0.0f; + table->OuterPaddingX = (outer_padding_for_border + outer_padding_explicit) - table->CellPaddingX; + + table->CurrentColumn = -1; + table->CurrentRow = -1; + table->RowBgColorCounter = 0; + table->LastRowFlags = ImGuiTableRowFlags_None; + table->InnerClipRect = (inner_window == outer_window) ? table->WorkRect : inner_window->ClipRect; + table->InnerClipRect.ClipWith(table->WorkRect); // We need this to honor inner_width + table->InnerClipRect.ClipWithFull(table->HostClipRect); + table->InnerClipRect.Max.y = (flags & ImGuiTableFlags_NoHostExtendY) ? ImMin(table->InnerClipRect.Max.y, inner_window->WorkRect.Max.y) : inner_window->ClipRect.Max.y; + + table->RowPosY1 = table->RowPosY2 = table->WorkRect.Min.y; // This is needed somehow + table->RowTextBaseline = 0.0f; // This will be cleared again by TableBeginRow() + table->RowCellPaddingY = 0.0f; + table->FreezeRowsRequest = table->FreezeRowsCount = 0; // This will be setup by TableSetupScrollFreeze(), if any + table->FreezeColumnsRequest = table->FreezeColumnsCount = 0; + table->IsUnfrozenRows = true; + table->DeclColumnsCount = 0; + + // Using opaque colors facilitate overlapping lines of the grid, otherwise we'd need to improve TableDrawBorders() + table->BorderColorStrong = GetColorU32(ImGuiCol_TableBorderStrong); + table->BorderColorLight = GetColorU32(ImGuiCol_TableBorderLight); + + // Make table current + g.CurrentTable = table; + outer_window->DC.NavIsScrollPushableX = false; // Shortcut for NavUpdateCurrentWindowIsScrollPushableX(); + outer_window->DC.CurrentTableIdx = table_idx; + if (inner_window != outer_window) // So EndChild() within the inner window can restore the table properly. + inner_window->DC.CurrentTableIdx = table_idx; + + if ((table_last_flags & ImGuiTableFlags_Reorderable) && (flags & ImGuiTableFlags_Reorderable) == 0) + table->IsResetDisplayOrderRequest = true; + + // Mark as used to avoid GC + if (table_idx >= g.TablesLastTimeActive.Size) + g.TablesLastTimeActive.resize(table_idx + 1, -1.0f); + g.TablesLastTimeActive[table_idx] = (float)g.Time; + temp_data->LastTimeActive = (float)g.Time; + table->MemoryCompacted = false; + + // Setup memory buffer (clear data if columns count changed) + ImGuiTableColumn* old_columns_to_preserve = NULL; + void* old_columns_raw_data = NULL; + const int old_columns_count = table->Columns.size(); + if (old_columns_count != 0 && old_columns_count != columns_count) + { + // Attempt to preserve width on column count change (#4046) + old_columns_to_preserve = table->Columns.Data; + old_columns_raw_data = table->RawData; + table->RawData = NULL; + } + if (table->RawData == NULL) + { + TableBeginInitMemory(table, columns_count); + table->IsInitializing = table->IsSettingsRequestLoad = true; + } + if (table->IsResetAllRequest) + TableResetSettings(table); + if (table->IsInitializing) + { + // Initialize + table->SettingsOffset = -1; + table->IsSortSpecsDirty = true; + table->InstanceInteracted = -1; + table->ContextPopupColumn = -1; + table->ReorderColumn = table->ResizedColumn = table->LastResizedColumn = -1; + table->AutoFitSingleColumn = -1; + table->HoveredColumnBody = table->HoveredColumnBorder = -1; + for (int n = 0; n < columns_count; n++) + { + ImGuiTableColumn* column = &table->Columns[n]; + if (old_columns_to_preserve && n < old_columns_count) + { + // FIXME: We don't attempt to preserve column order in this path. + *column = old_columns_to_preserve[n]; + } + else + { + float width_auto = column->WidthAuto; + *column = ImGuiTableColumn(); + column->WidthAuto = width_auto; + column->IsPreserveWidthAuto = true; // Preserve WidthAuto when reinitializing a live table: not technically necessary but remove a visible flicker + column->IsEnabled = column->IsUserEnabled = column->IsUserEnabledNextFrame = true; + } + column->DisplayOrder = table->DisplayOrderToIndex[n] = (ImGuiTableColumnIdx)n; + } + } + if (old_columns_raw_data) + IM_FREE(old_columns_raw_data); + + // Load settings + if (table->IsSettingsRequestLoad) + TableLoadSettings(table); + + // Handle DPI/font resize + // This is designed to facilitate DPI changes with the assumption that e.g. style.CellPadding has been scaled as well. + // It will also react to changing fonts with mixed results. It doesn't need to be perfect but merely provide a decent transition. + // FIXME-DPI: Provide consistent standards for reference size. Perhaps using g.CurrentDpiScale would be more self explanatory. + // This is will lead us to non-rounded WidthRequest in columns, which should work but is a poorly tested path. + const float new_ref_scale_unit = g.FontSize; // g.Font->GetCharAdvance('A') ? + if (table->RefScale != 0.0f && table->RefScale != new_ref_scale_unit) + { + const float scale_factor = new_ref_scale_unit / table->RefScale; + //IMGUI_DEBUG_PRINT("[table] %08X RefScaleUnit %.3f -> %.3f, scaling width by %.3f\n", table->ID, table->RefScaleUnit, new_ref_scale_unit, scale_factor); + for (int n = 0; n < columns_count; n++) + table->Columns[n].WidthRequest = table->Columns[n].WidthRequest * scale_factor; + } + table->RefScale = new_ref_scale_unit; + + // Disable output until user calls TableNextRow() or TableNextColumn() leading to the TableUpdateLayout() call.. + // This is not strictly necessary but will reduce cases were "out of table" output will be misleading to the user. + // Because we cannot safely assert in EndTable() when no rows have been created, this seems like our best option. + inner_window->SkipItems = true; + + // Clear names + // At this point the ->NameOffset field of each column will be invalid until TableUpdateLayout() or the first call to TableSetupColumn() + if (table->ColumnsNames.Buf.Size > 0) + table->ColumnsNames.Buf.resize(0); + + // Apply queued resizing/reordering/hiding requests + TableBeginApplyRequests(table); + + return true; +} + +// For reference, the average total _allocation count_ for a table is: +// + 0 (for ImGuiTable instance, we are pooling allocations in g.Tables[]) +// + 1 (for table->RawData allocated below) +// + 1 (for table->ColumnsNames, if names are used) +// Shared allocations for the maximum number of simultaneously nested tables (generally a very small number) +// + 1 (for table->Splitter._Channels) +// + 2 * active_channels_count (for ImDrawCmd and ImDrawIdx buffers inside channels) +// Where active_channels_count is variable but often == columns_count or == columns_count + 1, see TableSetupDrawChannels() for details. +// Unused channels don't perform their +2 allocations. +void ImGui::TableBeginInitMemory(ImGuiTable* table, int columns_count) +{ + // Allocate single buffer for our arrays + const int columns_bit_array_size = (int)ImBitArrayGetStorageSizeInBytes(columns_count); + ImSpanAllocator<6> span_allocator; + span_allocator.Reserve(0, columns_count * sizeof(ImGuiTableColumn)); + span_allocator.Reserve(1, columns_count * sizeof(ImGuiTableColumnIdx)); + span_allocator.Reserve(2, columns_count * sizeof(ImGuiTableCellData), 4); + for (int n = 3; n < 6; n++) + span_allocator.Reserve(n, columns_bit_array_size); + table->RawData = IM_ALLOC(span_allocator.GetArenaSizeInBytes()); + memset(table->RawData, 0, span_allocator.GetArenaSizeInBytes()); + span_allocator.SetArenaBasePtr(table->RawData); + span_allocator.GetSpan(0, &table->Columns); + span_allocator.GetSpan(1, &table->DisplayOrderToIndex); + span_allocator.GetSpan(2, &table->RowCellData); + table->EnabledMaskByDisplayOrder = (ImU32*)span_allocator.GetSpanPtrBegin(3); + table->EnabledMaskByIndex = (ImU32*)span_allocator.GetSpanPtrBegin(4); + table->VisibleMaskByIndex = (ImU32*)span_allocator.GetSpanPtrBegin(5); +} + +// Apply queued resizing/reordering/hiding requests +void ImGui::TableBeginApplyRequests(ImGuiTable* table) +{ + // Handle resizing request + // (We process this in the TableBegin() of the first instance of each table) + // FIXME-TABLE: Contains columns if our work area doesn't allow for scrolling? + if (table->InstanceCurrent == 0) + { + if (table->ResizedColumn != -1 && table->ResizedColumnNextWidth != FLT_MAX) + TableSetColumnWidth(table->ResizedColumn, table->ResizedColumnNextWidth); + table->LastResizedColumn = table->ResizedColumn; + table->ResizedColumnNextWidth = FLT_MAX; + table->ResizedColumn = -1; + + // Process auto-fit for single column, which is a special case for stretch columns and fixed columns with FixedSame policy. + // FIXME-TABLE: Would be nice to redistribute available stretch space accordingly to other weights, instead of giving it all to siblings. + if (table->AutoFitSingleColumn != -1) + { + TableSetColumnWidth(table->AutoFitSingleColumn, table->Columns[table->AutoFitSingleColumn].WidthAuto); + table->AutoFitSingleColumn = -1; + } + } + + // Handle reordering request + // Note: we don't clear ReorderColumn after handling the request. + if (table->InstanceCurrent == 0) + { + if (table->HeldHeaderColumn == -1 && table->ReorderColumn != -1) + table->ReorderColumn = -1; + table->HeldHeaderColumn = -1; + if (table->ReorderColumn != -1 && table->ReorderColumnDir != 0) + { + // We need to handle reordering across hidden columns. + // In the configuration below, moving C to the right of E will lead to: + // ... C [D] E ---> ... [D] E C (Column name/index) + // ... 2 3 4 ... 2 3 4 (Display order) + const int reorder_dir = table->ReorderColumnDir; + IM_ASSERT(reorder_dir == -1 || reorder_dir == +1); + IM_ASSERT(table->Flags & ImGuiTableFlags_Reorderable); + ImGuiTableColumn* src_column = &table->Columns[table->ReorderColumn]; + ImGuiTableColumn* dst_column = &table->Columns[(reorder_dir == -1) ? src_column->PrevEnabledColumn : src_column->NextEnabledColumn]; + IM_UNUSED(dst_column); + const int src_order = src_column->DisplayOrder; + const int dst_order = dst_column->DisplayOrder; + src_column->DisplayOrder = (ImGuiTableColumnIdx)dst_order; + for (int order_n = src_order + reorder_dir; order_n != dst_order + reorder_dir; order_n += reorder_dir) + table->Columns[table->DisplayOrderToIndex[order_n]].DisplayOrder -= (ImGuiTableColumnIdx)reorder_dir; + IM_ASSERT(dst_column->DisplayOrder == dst_order - reorder_dir); + + // Display order is stored in both columns->IndexDisplayOrder and table->DisplayOrder[]. Rebuild later from the former. + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + table->DisplayOrderToIndex[table->Columns[column_n].DisplayOrder] = (ImGuiTableColumnIdx)column_n; + table->ReorderColumnDir = 0; + table->IsSettingsDirty = true; + } + } + + // Handle display order reset request + if (table->IsResetDisplayOrderRequest) + { + for (int n = 0; n < table->ColumnsCount; n++) + table->DisplayOrderToIndex[n] = table->Columns[n].DisplayOrder = (ImGuiTableColumnIdx)n; + table->IsResetDisplayOrderRequest = false; + table->IsSettingsDirty = true; + } +} + +// Adjust flags: default width mode + stretch columns are not allowed when auto extending +static void TableSetupColumnFlags(ImGuiTable* table, ImGuiTableColumn* column, ImGuiTableColumnFlags flags_in) +{ + ImGuiTableColumnFlags flags = flags_in; + + // Sizing Policy + if ((flags & ImGuiTableColumnFlags_WidthMask_) == 0) + { + const ImGuiTableFlags table_sizing_policy = (table->Flags & ImGuiTableFlags_SizingMask_); + if (table_sizing_policy == ImGuiTableFlags_SizingFixedFit || table_sizing_policy == ImGuiTableFlags_SizingFixedSame) + flags |= ImGuiTableColumnFlags_WidthFixed; + else + flags |= ImGuiTableColumnFlags_WidthStretch; + } + else + { + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiTableColumnFlags_WidthMask_)); // Check that only 1 of each set is used. + } + + // Resize + if ((table->Flags & ImGuiTableFlags_Resizable) == 0) + flags |= ImGuiTableColumnFlags_NoResize; + + // Sorting + if ((flags & ImGuiTableColumnFlags_NoSortAscending) && (flags & ImGuiTableColumnFlags_NoSortDescending)) + flags |= ImGuiTableColumnFlags_NoSort; + + // Indentation + if ((flags & ImGuiTableColumnFlags_IndentMask_) == 0) + flags |= (table->Columns.index_from_ptr(column) == 0) ? ImGuiTableColumnFlags_IndentEnable : ImGuiTableColumnFlags_IndentDisable; + + // Alignment + //if ((flags & ImGuiTableColumnFlags_AlignMask_) == 0) + // flags |= ImGuiTableColumnFlags_AlignCenter; + //IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiTableColumnFlags_AlignMask_)); // Check that only 1 of each set is used. + + // Preserve status flags + column->Flags = flags | (column->Flags & ImGuiTableColumnFlags_StatusMask_); + + // Build an ordered list of available sort directions + column->SortDirectionsAvailCount = column->SortDirectionsAvailMask = column->SortDirectionsAvailList = 0; + if (table->Flags & ImGuiTableFlags_Sortable) + { + int count = 0, mask = 0, list = 0; + if ((flags & ImGuiTableColumnFlags_PreferSortAscending) != 0 && (flags & ImGuiTableColumnFlags_NoSortAscending) == 0) { mask |= 1 << ImGuiSortDirection_Ascending; list |= ImGuiSortDirection_Ascending << (count << 1); count++; } + if ((flags & ImGuiTableColumnFlags_PreferSortDescending) != 0 && (flags & ImGuiTableColumnFlags_NoSortDescending) == 0) { mask |= 1 << ImGuiSortDirection_Descending; list |= ImGuiSortDirection_Descending << (count << 1); count++; } + if ((flags & ImGuiTableColumnFlags_PreferSortAscending) == 0 && (flags & ImGuiTableColumnFlags_NoSortAscending) == 0) { mask |= 1 << ImGuiSortDirection_Ascending; list |= ImGuiSortDirection_Ascending << (count << 1); count++; } + if ((flags & ImGuiTableColumnFlags_PreferSortDescending) == 0 && (flags & ImGuiTableColumnFlags_NoSortDescending) == 0) { mask |= 1 << ImGuiSortDirection_Descending; list |= ImGuiSortDirection_Descending << (count << 1); count++; } + if ((table->Flags & ImGuiTableFlags_SortTristate) || count == 0) { mask |= 1 << ImGuiSortDirection_None; count++; } + column->SortDirectionsAvailList = (ImU8)list; + column->SortDirectionsAvailMask = (ImU8)mask; + column->SortDirectionsAvailCount = (ImU8)count; + ImGui::TableFixColumnSortDirection(table, column); + } +} + +// Layout columns for the frame. This is in essence the followup to BeginTable() and this is our largest function. +// Runs on the first call to TableNextRow(), to give a chance for TableSetupColumn() and other TableSetupXXXXX() functions to be called first. +// FIXME-TABLE: Our width (and therefore our WorkRect) will be minimal in the first frame for _WidthAuto columns. +// Increase feedback side-effect with widgets relying on WorkRect.Max.x... Maybe provide a default distribution for _WidthAuto columns? +void ImGui::TableUpdateLayout(ImGuiTable* table) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(table->IsLayoutLocked == false); + + const ImGuiTableFlags table_sizing_policy = (table->Flags & ImGuiTableFlags_SizingMask_); + table->IsDefaultDisplayOrder = true; + table->ColumnsEnabledCount = 0; + ImBitArrayClearAllBits(table->EnabledMaskByIndex, table->ColumnsCount); + ImBitArrayClearAllBits(table->EnabledMaskByDisplayOrder, table->ColumnsCount); + table->LeftMostEnabledColumn = -1; + table->MinColumnWidth = ImMax(1.0f, g.Style.FramePadding.x * 1.0f); // g.Style.ColumnsMinSpacing; // FIXME-TABLE + + // [Part 1] Apply/lock Enabled and Order states. Calculate auto/ideal width for columns. Count fixed/stretch columns. + // Process columns in their visible orders as we are building the Prev/Next indices. + int count_fixed = 0; // Number of columns that have fixed sizing policies + int count_stretch = 0; // Number of columns that have stretch sizing policies + int prev_visible_column_idx = -1; + bool has_auto_fit_request = false; + bool has_resizable = false; + float stretch_sum_width_auto = 0.0f; + float fixed_max_width_auto = 0.0f; + for (int order_n = 0; order_n < table->ColumnsCount; order_n++) + { + const int column_n = table->DisplayOrderToIndex[order_n]; + if (column_n != order_n) + table->IsDefaultDisplayOrder = false; + ImGuiTableColumn* column = &table->Columns[column_n]; + + // Clear column setup if not submitted by user. Currently we make it mandatory to call TableSetupColumn() every frame. + // It would easily work without but we're not ready to guarantee it since e.g. names need resubmission anyway. + // We take a slight shortcut but in theory we could be calling TableSetupColumn() here with dummy values, it should yield the same effect. + if (table->DeclColumnsCount <= column_n) + { + TableSetupColumnFlags(table, column, ImGuiTableColumnFlags_None); + column->NameOffset = -1; + column->UserID = 0; + column->InitStretchWeightOrWidth = -1.0f; + } + + // Update Enabled state, mark settings and sort specs dirty + if (!(table->Flags & ImGuiTableFlags_Hideable) || (column->Flags & ImGuiTableColumnFlags_NoHide)) + column->IsUserEnabledNextFrame = true; + if (column->IsUserEnabled != column->IsUserEnabledNextFrame) + { + column->IsUserEnabled = column->IsUserEnabledNextFrame; + table->IsSettingsDirty = true; + } + column->IsEnabled = column->IsUserEnabled && (column->Flags & ImGuiTableColumnFlags_Disabled) == 0; + + if (column->SortOrder != -1 && !column->IsEnabled) + table->IsSortSpecsDirty = true; + if (column->SortOrder > 0 && !(table->Flags & ImGuiTableFlags_SortMulti)) + table->IsSortSpecsDirty = true; + + // Auto-fit unsized columns + const bool start_auto_fit = (column->Flags & ImGuiTableColumnFlags_WidthFixed) ? (column->WidthRequest < 0.0f) : (column->StretchWeight < 0.0f); + if (start_auto_fit) + column->AutoFitQueue = column->CannotSkipItemsQueue = (1 << 3) - 1; // Fit for three frames + + if (!column->IsEnabled) + { + column->IndexWithinEnabledSet = -1; + continue; + } + + // Mark as enabled and link to previous/next enabled column + column->PrevEnabledColumn = (ImGuiTableColumnIdx)prev_visible_column_idx; + column->NextEnabledColumn = -1; + if (prev_visible_column_idx != -1) + table->Columns[prev_visible_column_idx].NextEnabledColumn = (ImGuiTableColumnIdx)column_n; + else + table->LeftMostEnabledColumn = (ImGuiTableColumnIdx)column_n; + column->IndexWithinEnabledSet = table->ColumnsEnabledCount++; + ImBitArraySetBit(table->EnabledMaskByIndex, column_n); + ImBitArraySetBit(table->EnabledMaskByDisplayOrder, column->DisplayOrder); + prev_visible_column_idx = column_n; + IM_ASSERT(column->IndexWithinEnabledSet <= column->DisplayOrder); + + // Calculate ideal/auto column width (that's the width required for all contents to be visible without clipping) + // Combine width from regular rows + width from headers unless requested not to. + if (!column->IsPreserveWidthAuto) + column->WidthAuto = TableGetColumnWidthAuto(table, column); + + // Non-resizable columns keep their requested width (apply user value regardless of IsPreserveWidthAuto) + const bool column_is_resizable = (column->Flags & ImGuiTableColumnFlags_NoResize) == 0; + if (column_is_resizable) + has_resizable = true; + if ((column->Flags & ImGuiTableColumnFlags_WidthFixed) && column->InitStretchWeightOrWidth > 0.0f && !column_is_resizable) + column->WidthAuto = column->InitStretchWeightOrWidth; + + if (column->AutoFitQueue != 0x00) + has_auto_fit_request = true; + if (column->Flags & ImGuiTableColumnFlags_WidthStretch) + { + stretch_sum_width_auto += column->WidthAuto; + count_stretch++; + } + else + { + fixed_max_width_auto = ImMax(fixed_max_width_auto, column->WidthAuto); + count_fixed++; + } + } + if ((table->Flags & ImGuiTableFlags_Sortable) && table->SortSpecsCount == 0 && !(table->Flags & ImGuiTableFlags_SortTristate)) + table->IsSortSpecsDirty = true; + table->RightMostEnabledColumn = (ImGuiTableColumnIdx)prev_visible_column_idx; + IM_ASSERT(table->LeftMostEnabledColumn >= 0 && table->RightMostEnabledColumn >= 0); + + // [Part 2] Disable child window clipping while fitting columns. This is not strictly necessary but makes it possible + // to avoid the column fitting having to wait until the first visible frame of the child container (may or not be a good thing). + // FIXME-TABLE: for always auto-resizing columns may not want to do that all the time. + if (has_auto_fit_request && table->OuterWindow != table->InnerWindow) + table->InnerWindow->SkipItems = false; + if (has_auto_fit_request) + table->IsSettingsDirty = true; + + // [Part 3] Fix column flags and record a few extra information. + float sum_width_requests = 0.0f; // Sum of all width for fixed and auto-resize columns, excluding width contributed by Stretch columns but including spacing/padding. + float stretch_sum_weights = 0.0f; // Sum of all weights for stretch columns. + table->LeftMostStretchedColumn = table->RightMostStretchedColumn = -1; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + if (!IM_BITARRAY_TESTBIT(table->EnabledMaskByIndex, column_n)) + continue; + ImGuiTableColumn* column = &table->Columns[column_n]; + + const bool column_is_resizable = (column->Flags & ImGuiTableColumnFlags_NoResize) == 0; + if (column->Flags & ImGuiTableColumnFlags_WidthFixed) + { + // Apply same widths policy + float width_auto = column->WidthAuto; + if (table_sizing_policy == ImGuiTableFlags_SizingFixedSame && (column->AutoFitQueue != 0x00 || !column_is_resizable)) + width_auto = fixed_max_width_auto; + + // Apply automatic width + // Latch initial size for fixed columns and update it constantly for auto-resizing column (unless clipped!) + if (column->AutoFitQueue != 0x00) + column->WidthRequest = width_auto; + else if ((column->Flags & ImGuiTableColumnFlags_WidthFixed) && !column_is_resizable && column->IsRequestOutput) + column->WidthRequest = width_auto; + + // FIXME-TABLE: Increase minimum size during init frame to avoid biasing auto-fitting widgets + // (e.g. TextWrapped) too much. Otherwise what tends to happen is that TextWrapped would output a very + // large height (= first frame scrollbar display very off + clipper would skip lots of items). + // This is merely making the side-effect less extreme, but doesn't properly fixes it. + // FIXME: Move this to ->WidthGiven to avoid temporary lossyless? + // FIXME: This break IsPreserveWidthAuto from not flickering if the stored WidthAuto was smaller. + if (column->AutoFitQueue > 0x01 && table->IsInitializing && !column->IsPreserveWidthAuto) + column->WidthRequest = ImMax(column->WidthRequest, table->MinColumnWidth * 4.0f); // FIXME-TABLE: Another constant/scale? + sum_width_requests += column->WidthRequest; + } + else + { + // Initialize stretch weight + if (column->AutoFitQueue != 0x00 || column->StretchWeight < 0.0f || !column_is_resizable) + { + if (column->InitStretchWeightOrWidth > 0.0f) + column->StretchWeight = column->InitStretchWeightOrWidth; + else if (table_sizing_policy == ImGuiTableFlags_SizingStretchProp) + column->StretchWeight = (column->WidthAuto / stretch_sum_width_auto) * count_stretch; + else + column->StretchWeight = 1.0f; + } + + stretch_sum_weights += column->StretchWeight; + if (table->LeftMostStretchedColumn == -1 || table->Columns[table->LeftMostStretchedColumn].DisplayOrder > column->DisplayOrder) + table->LeftMostStretchedColumn = (ImGuiTableColumnIdx)column_n; + if (table->RightMostStretchedColumn == -1 || table->Columns[table->RightMostStretchedColumn].DisplayOrder < column->DisplayOrder) + table->RightMostStretchedColumn = (ImGuiTableColumnIdx)column_n; + } + column->IsPreserveWidthAuto = false; + sum_width_requests += table->CellPaddingX * 2.0f; + } + table->ColumnsEnabledFixedCount = (ImGuiTableColumnIdx)count_fixed; + table->ColumnsStretchSumWeights = stretch_sum_weights; + + // [Part 4] Apply final widths based on requested widths + const ImRect work_rect = table->WorkRect; + const float width_spacings = (table->OuterPaddingX * 2.0f) + (table->CellSpacingX1 + table->CellSpacingX2) * (table->ColumnsEnabledCount - 1); + const float width_removed = (table->HasScrollbarYPrev && !table->InnerWindow->ScrollbarY) ? g.Style.ScrollbarSize : 0.0f; // To synchronize decoration width of synched tables with mismatching scrollbar state (#5920) + const float width_avail = ImMax(1.0f, (((table->Flags & ImGuiTableFlags_ScrollX) && table->InnerWidth == 0.0f) ? table->InnerClipRect.GetWidth() : work_rect.GetWidth()) - width_removed); + const float width_avail_for_stretched_columns = width_avail - width_spacings - sum_width_requests; + float width_remaining_for_stretched_columns = width_avail_for_stretched_columns; + table->ColumnsGivenWidth = width_spacings + (table->CellPaddingX * 2.0f) * table->ColumnsEnabledCount; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + if (!IM_BITARRAY_TESTBIT(table->EnabledMaskByIndex, column_n)) + continue; + ImGuiTableColumn* column = &table->Columns[column_n]; + + // Allocate width for stretched/weighted columns (StretchWeight gets converted into WidthRequest) + if (column->Flags & ImGuiTableColumnFlags_WidthStretch) + { + float weight_ratio = column->StretchWeight / stretch_sum_weights; + column->WidthRequest = IM_FLOOR(ImMax(width_avail_for_stretched_columns * weight_ratio, table->MinColumnWidth) + 0.01f); + width_remaining_for_stretched_columns -= column->WidthRequest; + } + + // [Resize Rule 1] The right-most Visible column is not resizable if there is at least one Stretch column + // See additional comments in TableSetColumnWidth(). + if (column->NextEnabledColumn == -1 && table->LeftMostStretchedColumn != -1) + column->Flags |= ImGuiTableColumnFlags_NoDirectResize_; + + // Assign final width, record width in case we will need to shrink + column->WidthGiven = ImFloor(ImMax(column->WidthRequest, table->MinColumnWidth)); + table->ColumnsGivenWidth += column->WidthGiven; + } + + // [Part 5] Redistribute stretch remainder width due to rounding (remainder width is < 1.0f * number of Stretch column). + // Using right-to-left distribution (more likely to match resizing cursor). + if (width_remaining_for_stretched_columns >= 1.0f && !(table->Flags & ImGuiTableFlags_PreciseWidths)) + for (int order_n = table->ColumnsCount - 1; stretch_sum_weights > 0.0f && width_remaining_for_stretched_columns >= 1.0f && order_n >= 0; order_n--) + { + if (!IM_BITARRAY_TESTBIT(table->EnabledMaskByDisplayOrder, order_n)) + continue; + ImGuiTableColumn* column = &table->Columns[table->DisplayOrderToIndex[order_n]]; + if (!(column->Flags & ImGuiTableColumnFlags_WidthStretch)) + continue; + column->WidthRequest += 1.0f; + column->WidthGiven += 1.0f; + width_remaining_for_stretched_columns -= 1.0f; + } + + // Determine if table is hovered which will be used to flag columns as hovered. + // - In principle we'd like to use the equivalent of IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByActiveItem), + // but because our item is partially submitted at this point we use ItemHoverable() and a workaround (temporarily + // clear ActiveId, which is equivalent to the change provided by _AllowWhenBLockedByActiveItem). + // - This allows columns to be marked as hovered when e.g. clicking a button inside the column, or using drag and drop. + ImGuiTableInstanceData* table_instance = TableGetInstanceData(table, table->InstanceCurrent); + table_instance->HoveredRowLast = table_instance->HoveredRowNext; + table_instance->HoveredRowNext = -1; + table->HoveredColumnBody = -1; + table->HoveredColumnBorder = -1; + const ImRect mouse_hit_rect(table->OuterRect.Min.x, table->OuterRect.Min.y, table->OuterRect.Max.x, ImMax(table->OuterRect.Max.y, table->OuterRect.Min.y + table_instance->LastOuterHeight)); + const ImGuiID backup_active_id = g.ActiveId; + g.ActiveId = 0; + const bool is_hovering_table = ItemHoverable(mouse_hit_rect, 0, ImGuiItemFlags_None); + g.ActiveId = backup_active_id; + + // [Part 6] Setup final position, offset, skip/clip states and clipping rectangles, detect hovered column + // Process columns in their visible orders as we are comparing the visible order and adjusting host_clip_rect while looping. + int visible_n = 0; + bool offset_x_frozen = (table->FreezeColumnsCount > 0); + float offset_x = ((table->FreezeColumnsCount > 0) ? table->OuterRect.Min.x : work_rect.Min.x) + table->OuterPaddingX - table->CellSpacingX1; + ImRect host_clip_rect = table->InnerClipRect; + //host_clip_rect.Max.x += table->CellPaddingX + table->CellSpacingX2; + ImBitArrayClearAllBits(table->VisibleMaskByIndex, table->ColumnsCount); + for (int order_n = 0; order_n < table->ColumnsCount; order_n++) + { + const int column_n = table->DisplayOrderToIndex[order_n]; + ImGuiTableColumn* column = &table->Columns[column_n]; + + column->NavLayerCurrent = (ImS8)(table->FreezeRowsCount > 0 ? ImGuiNavLayer_Menu : ImGuiNavLayer_Main); // Use Count NOT request so Header line changes layer when frozen + + if (offset_x_frozen && table->FreezeColumnsCount == visible_n) + { + offset_x += work_rect.Min.x - table->OuterRect.Min.x; + offset_x_frozen = false; + } + + // Clear status flags + column->Flags &= ~ImGuiTableColumnFlags_StatusMask_; + + if (!IM_BITARRAY_TESTBIT(table->EnabledMaskByDisplayOrder, order_n)) + { + // Hidden column: clear a few fields and we are done with it for the remainder of the function. + // We set a zero-width clip rect but set Min.y/Max.y properly to not interfere with the clipper. + column->MinX = column->MaxX = column->WorkMinX = column->ClipRect.Min.x = column->ClipRect.Max.x = offset_x; + column->WidthGiven = 0.0f; + column->ClipRect.Min.y = work_rect.Min.y; + column->ClipRect.Max.y = FLT_MAX; + column->ClipRect.ClipWithFull(host_clip_rect); + column->IsVisibleX = column->IsVisibleY = column->IsRequestOutput = false; + column->IsSkipItems = true; + column->ItemWidth = 1.0f; + continue; + } + + // Detect hovered column + if (is_hovering_table && g.IO.MousePos.x >= column->ClipRect.Min.x && g.IO.MousePos.x < column->ClipRect.Max.x) + table->HoveredColumnBody = (ImGuiTableColumnIdx)column_n; + + // Lock start position + column->MinX = offset_x; + + // Lock width based on start position and minimum/maximum width for this position + float max_width = TableGetMaxColumnWidth(table, column_n); + column->WidthGiven = ImMin(column->WidthGiven, max_width); + column->WidthGiven = ImMax(column->WidthGiven, ImMin(column->WidthRequest, table->MinColumnWidth)); + column->MaxX = offset_x + column->WidthGiven + table->CellSpacingX1 + table->CellSpacingX2 + table->CellPaddingX * 2.0f; + + // Lock other positions + // - ClipRect.Min.x: Because merging draw commands doesn't compare min boundaries, we make ClipRect.Min.x match left bounds to be consistent regardless of merging. + // - ClipRect.Max.x: using WorkMaxX instead of MaxX (aka including padding) makes things more consistent when resizing down, tho slightly detrimental to visibility in very-small column. + // - ClipRect.Max.x: using MaxX makes it easier for header to receive hover highlight with no discontinuity and display sorting arrow. + // - FIXME-TABLE: We want equal width columns to have equal (ClipRect.Max.x - WorkMinX) width, which means ClipRect.max.x cannot stray off host_clip_rect.Max.x else right-most column may appear shorter. + column->WorkMinX = column->MinX + table->CellPaddingX + table->CellSpacingX1; + column->WorkMaxX = column->MaxX - table->CellPaddingX - table->CellSpacingX2; // Expected max + column->ItemWidth = ImFloor(column->WidthGiven * 0.65f); + column->ClipRect.Min.x = column->MinX; + column->ClipRect.Min.y = work_rect.Min.y; + column->ClipRect.Max.x = column->MaxX; //column->WorkMaxX; + column->ClipRect.Max.y = FLT_MAX; + column->ClipRect.ClipWithFull(host_clip_rect); + + // Mark column as Clipped (not in sight) + // Note that scrolling tables (where inner_window != outer_window) handle Y clipped earlier in BeginTable() so IsVisibleY really only applies to non-scrolling tables. + // FIXME-TABLE: Because InnerClipRect.Max.y is conservatively ==outer_window->ClipRect.Max.y, we never can mark columns _Above_ the scroll line as not IsVisibleY. + // Taking advantage of LastOuterHeight would yield good results there... + // FIXME-TABLE: Y clipping is disabled because it effectively means not submitting will reduce contents width which is fed to outer_window->DC.CursorMaxPos.x, + // and this may be used (e.g. typically by outer_window using AlwaysAutoResize or outer_window's horizontal scrollbar, but could be something else). + // Possible solution to preserve last known content width for clipped column. Test 'table_reported_size' fails when enabling Y clipping and window is resized small. + column->IsVisibleX = (column->ClipRect.Max.x > column->ClipRect.Min.x); + column->IsVisibleY = true; // (column->ClipRect.Max.y > column->ClipRect.Min.y); + const bool is_visible = column->IsVisibleX; //&& column->IsVisibleY; + if (is_visible) + ImBitArraySetBit(table->VisibleMaskByIndex, column_n); + + // Mark column as requesting output from user. Note that fixed + non-resizable sets are auto-fitting at all times and therefore always request output. + column->IsRequestOutput = is_visible || column->AutoFitQueue != 0 || column->CannotSkipItemsQueue != 0; + + // Mark column as SkipItems (ignoring all items/layout) + column->IsSkipItems = !column->IsEnabled || table->HostSkipItems; + if (column->IsSkipItems) + IM_ASSERT(!is_visible); + + // Update status flags + column->Flags |= ImGuiTableColumnFlags_IsEnabled; + if (is_visible) + column->Flags |= ImGuiTableColumnFlags_IsVisible; + if (column->SortOrder != -1) + column->Flags |= ImGuiTableColumnFlags_IsSorted; + if (table->HoveredColumnBody == column_n) + column->Flags |= ImGuiTableColumnFlags_IsHovered; + + // Alignment + // FIXME-TABLE: This align based on the whole column width, not per-cell, and therefore isn't useful in + // many cases (to be able to honor this we might be able to store a log of cells width, per row, for + // visible rows, but nav/programmatic scroll would have visible artifacts.) + //if (column->Flags & ImGuiTableColumnFlags_AlignRight) + // column->WorkMinX = ImMax(column->WorkMinX, column->MaxX - column->ContentWidthRowsUnfrozen); + //else if (column->Flags & ImGuiTableColumnFlags_AlignCenter) + // column->WorkMinX = ImLerp(column->WorkMinX, ImMax(column->StartX, column->MaxX - column->ContentWidthRowsUnfrozen), 0.5f); + + // Reset content width variables + column->ContentMaxXFrozen = column->ContentMaxXUnfrozen = column->WorkMinX; + column->ContentMaxXHeadersUsed = column->ContentMaxXHeadersIdeal = column->WorkMinX; + + // Don't decrement auto-fit counters until container window got a chance to submit its items + if (table->HostSkipItems == false) + { + column->AutoFitQueue >>= 1; + column->CannotSkipItemsQueue >>= 1; + } + + if (visible_n < table->FreezeColumnsCount) + host_clip_rect.Min.x = ImClamp(column->MaxX + TABLE_BORDER_SIZE, host_clip_rect.Min.x, host_clip_rect.Max.x); + + offset_x += column->WidthGiven + table->CellSpacingX1 + table->CellSpacingX2 + table->CellPaddingX * 2.0f; + visible_n++; + } + + // [Part 7] Detect/store when we are hovering the unused space after the right-most column (so e.g. context menus can react on it) + // Clear Resizable flag if none of our column are actually resizable (either via an explicit _NoResize flag, either + // because of using _WidthAuto/_WidthStretch). This will hide the resizing option from the context menu. + const float unused_x1 = ImMax(table->WorkRect.Min.x, table->Columns[table->RightMostEnabledColumn].ClipRect.Max.x); + if (is_hovering_table && table->HoveredColumnBody == -1) + { + if (g.IO.MousePos.x >= unused_x1) + table->HoveredColumnBody = (ImGuiTableColumnIdx)table->ColumnsCount; + } + if (has_resizable == false && (table->Flags & ImGuiTableFlags_Resizable)) + table->Flags &= ~ImGuiTableFlags_Resizable; + + // [Part 8] Lock actual OuterRect/WorkRect right-most position. + // This is done late to handle the case of fixed-columns tables not claiming more widths that they need. + // Because of this we are careful with uses of WorkRect and InnerClipRect before this point. + if (table->RightMostStretchedColumn != -1) + table->Flags &= ~ImGuiTableFlags_NoHostExtendX; + if (table->Flags & ImGuiTableFlags_NoHostExtendX) + { + table->OuterRect.Max.x = table->WorkRect.Max.x = unused_x1; + table->InnerClipRect.Max.x = ImMin(table->InnerClipRect.Max.x, unused_x1); + } + table->InnerWindow->ParentWorkRect = table->WorkRect; + table->BorderX1 = table->InnerClipRect.Min.x;// +((table->Flags & ImGuiTableFlags_BordersOuter) ? 0.0f : -1.0f); + table->BorderX2 = table->InnerClipRect.Max.x;// +((table->Flags & ImGuiTableFlags_BordersOuter) ? 0.0f : +1.0f); + + // Setup window's WorkRect.Max.y for GetContentRegionAvail(). Other values will be updated in each TableBeginCell() call. + float window_content_max_y; + if (table->Flags & ImGuiTableFlags_NoHostExtendY) + window_content_max_y = table->OuterRect.Max.y; + else + window_content_max_y = ImMax(table->InnerWindow->ContentRegionRect.Max.y, (table->Flags & ImGuiTableFlags_ScrollY) ? 0.0f : table->OuterRect.Max.y); + table->InnerWindow->WorkRect.Max.y = ImClamp(window_content_max_y - g.Style.CellPadding.y, table->InnerWindow->WorkRect.Min.y, table->InnerWindow->WorkRect.Max.y); + + // [Part 9] Allocate draw channels and setup background cliprect + TableSetupDrawChannels(table); + + // [Part 10] Hit testing on borders + if (table->Flags & ImGuiTableFlags_Resizable) + TableUpdateBorders(table); + table_instance->LastFirstRowHeight = 0.0f; + table->IsLayoutLocked = true; + table->IsUsingHeaders = false; + + // [Part 11] Context menu + if (TableBeginContextMenuPopup(table)) + { + TableDrawContextMenu(table); + EndPopup(); + } + + // [Part 12] Sanitize and build sort specs before we have a chance to use them for display. + // This path will only be exercised when sort specs are modified before header rows (e.g. init or visibility change) + if (table->IsSortSpecsDirty && (table->Flags & ImGuiTableFlags_Sortable)) + TableSortSpecsBuild(table); + + // [Part 13] Setup inner window decoration size (for scrolling / nav tracking to properly take account of frozen rows/columns) + if (table->FreezeColumnsRequest > 0) + table->InnerWindow->DecoInnerSizeX1 = table->Columns[table->DisplayOrderToIndex[table->FreezeColumnsRequest - 1]].MaxX - table->OuterRect.Min.x; + if (table->FreezeRowsRequest > 0) + table->InnerWindow->DecoInnerSizeY1 = table_instance->LastFrozenHeight; + table_instance->LastFrozenHeight = 0.0f; + + // Initial state + ImGuiWindow* inner_window = table->InnerWindow; + if (table->Flags & ImGuiTableFlags_NoClip) + table->DrawSplitter->SetCurrentChannel(inner_window->DrawList, TABLE_DRAW_CHANNEL_NOCLIP); + else + inner_window->DrawList->PushClipRect(inner_window->ClipRect.Min, inner_window->ClipRect.Max, false); +} + +// Process hit-testing on resizing borders. Actual size change will be applied in EndTable() +// - Set table->HoveredColumnBorder with a short delay/timer to reduce visual feedback noise. +void ImGui::TableUpdateBorders(ImGuiTable* table) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(table->Flags & ImGuiTableFlags_Resizable); + + // At this point OuterRect height may be zero or under actual final height, so we rely on temporal coherency and + // use the final height from last frame. Because this is only affecting _interaction_ with columns, it is not + // really problematic (whereas the actual visual will be displayed in EndTable() and using the current frame height). + // Actual columns highlight/render will be performed in EndTable() and not be affected. + ImGuiTableInstanceData* table_instance = TableGetInstanceData(table, table->InstanceCurrent); + const float hit_half_width = TABLE_RESIZE_SEPARATOR_HALF_THICKNESS; + const float hit_y1 = table->OuterRect.Min.y; + const float hit_y2_body = ImMax(table->OuterRect.Max.y, hit_y1 + table_instance->LastOuterHeight); + const float hit_y2_head = hit_y1 + table_instance->LastFirstRowHeight; + + for (int order_n = 0; order_n < table->ColumnsCount; order_n++) + { + if (!IM_BITARRAY_TESTBIT(table->EnabledMaskByDisplayOrder, order_n)) + continue; + + const int column_n = table->DisplayOrderToIndex[order_n]; + ImGuiTableColumn* column = &table->Columns[column_n]; + if (column->Flags & (ImGuiTableColumnFlags_NoResize | ImGuiTableColumnFlags_NoDirectResize_)) + continue; + + // ImGuiTableFlags_NoBordersInBodyUntilResize will be honored in TableDrawBorders() + const float border_y2_hit = (table->Flags & ImGuiTableFlags_NoBordersInBody) ? hit_y2_head : hit_y2_body; + if ((table->Flags & ImGuiTableFlags_NoBordersInBody) && table->IsUsingHeaders == false) + continue; + + if (!column->IsVisibleX && table->LastResizedColumn != column_n) + continue; + + ImGuiID column_id = TableGetColumnResizeID(table, column_n, table->InstanceCurrent); + ImRect hit_rect(column->MaxX - hit_half_width, hit_y1, column->MaxX + hit_half_width, border_y2_hit); + ItemAdd(hit_rect, column_id, NULL, ImGuiItemFlags_NoNav); + //GetForegroundDrawList()->AddRect(hit_rect.Min, hit_rect.Max, IM_COL32(255, 0, 0, 100)); + + bool hovered = false, held = false; + bool pressed = ButtonBehavior(hit_rect, column_id, &hovered, &held, ImGuiButtonFlags_FlattenChildren | ImGuiButtonFlags_PressedOnClick | ImGuiButtonFlags_PressedOnDoubleClick | ImGuiButtonFlags_NoNavFocus); + if (pressed && IsMouseDoubleClicked(0)) + { + TableSetColumnWidthAutoSingle(table, column_n); + ClearActiveID(); + held = hovered = false; + } + if (held) + { + if (table->LastResizedColumn == -1) + table->ResizeLockMinContentsX2 = table->RightMostEnabledColumn != -1 ? table->Columns[table->RightMostEnabledColumn].MaxX : -FLT_MAX; + table->ResizedColumn = (ImGuiTableColumnIdx)column_n; + table->InstanceInteracted = table->InstanceCurrent; + } + if ((hovered && g.HoveredIdTimer > TABLE_RESIZE_SEPARATOR_FEEDBACK_TIMER) || held) + { + table->HoveredColumnBorder = (ImGuiTableColumnIdx)column_n; + SetMouseCursor(ImGuiMouseCursor_ResizeEW); + } + } +} + +void ImGui::EndTable() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + IM_ASSERT(table != NULL && "Only call EndTable() if BeginTable() returns true!"); + + // This assert would be very useful to catch a common error... unfortunately it would probably trigger in some + // cases, and for consistency user may sometimes output empty tables (and still benefit from e.g. outer border) + //IM_ASSERT(table->IsLayoutLocked && "Table unused: never called TableNextRow(), is that the intent?"); + + // If the user never got to call TableNextRow() or TableNextColumn(), we call layout ourselves to ensure all our + // code paths are consistent (instead of just hoping that TableBegin/TableEnd will work), get borders drawn, etc. + if (!table->IsLayoutLocked) + TableUpdateLayout(table); + + const ImGuiTableFlags flags = table->Flags; + ImGuiWindow* inner_window = table->InnerWindow; + ImGuiWindow* outer_window = table->OuterWindow; + ImGuiTableTempData* temp_data = table->TempData; + IM_ASSERT(inner_window == g.CurrentWindow); + IM_ASSERT(outer_window == inner_window || outer_window == inner_window->ParentWindow); + + if (table->IsInsideRow) + TableEndRow(table); + + // Context menu in columns body + if (flags & ImGuiTableFlags_ContextMenuInBody) + if (table->HoveredColumnBody != -1 && !IsAnyItemHovered() && IsMouseReleased(ImGuiMouseButton_Right)) + TableOpenContextMenu((int)table->HoveredColumnBody); + + // Finalize table height + ImGuiTableInstanceData* table_instance = TableGetInstanceData(table, table->InstanceCurrent); + inner_window->DC.PrevLineSize = temp_data->HostBackupPrevLineSize; + inner_window->DC.CurrLineSize = temp_data->HostBackupCurrLineSize; + inner_window->DC.CursorMaxPos = temp_data->HostBackupCursorMaxPos; + const float inner_content_max_y = table->RowPosY2; + IM_ASSERT(table->RowPosY2 == inner_window->DC.CursorPos.y); + if (inner_window != outer_window) + inner_window->DC.CursorMaxPos.y = inner_content_max_y; + else if (!(flags & ImGuiTableFlags_NoHostExtendY)) + table->OuterRect.Max.y = table->InnerRect.Max.y = ImMax(table->OuterRect.Max.y, inner_content_max_y); // Patch OuterRect/InnerRect height + table->WorkRect.Max.y = ImMax(table->WorkRect.Max.y, table->OuterRect.Max.y); + table_instance->LastOuterHeight = table->OuterRect.GetHeight(); + + // Setup inner scrolling range + // FIXME: This ideally should be done earlier, in BeginTable() SetNextWindowContentSize call, just like writing to inner_window->DC.CursorMaxPos.y, + // but since the later is likely to be impossible to do we'd rather update both axises together. + if (table->Flags & ImGuiTableFlags_ScrollX) + { + const float outer_padding_for_border = (table->Flags & ImGuiTableFlags_BordersOuterV) ? TABLE_BORDER_SIZE : 0.0f; + float max_pos_x = table->InnerWindow->DC.CursorMaxPos.x; + if (table->RightMostEnabledColumn != -1) + max_pos_x = ImMax(max_pos_x, table->Columns[table->RightMostEnabledColumn].WorkMaxX + table->CellPaddingX + table->OuterPaddingX - outer_padding_for_border); + if (table->ResizedColumn != -1) + max_pos_x = ImMax(max_pos_x, table->ResizeLockMinContentsX2); + table->InnerWindow->DC.CursorMaxPos.x = max_pos_x; + } + + // Pop clipping rect + if (!(flags & ImGuiTableFlags_NoClip)) + inner_window->DrawList->PopClipRect(); + inner_window->ClipRect = inner_window->DrawList->_ClipRectStack.back(); + + // Draw borders + if ((flags & ImGuiTableFlags_Borders) != 0) + TableDrawBorders(table); + +#if 0 + // Strip out dummy channel draw calls + // We have no way to prevent user submitting direct ImDrawList calls into a hidden column (but ImGui:: calls will be clipped out) + // Pros: remove draw calls which will have no effect. since they'll have zero-size cliprect they may be early out anyway. + // Cons: making it harder for users watching metrics/debugger to spot the wasted vertices. + if (table->DummyDrawChannel != (ImGuiTableColumnIdx)-1) + { + ImDrawChannel* dummy_channel = &table->DrawSplitter._Channels[table->DummyDrawChannel]; + dummy_channel->_CmdBuffer.resize(0); + dummy_channel->_IdxBuffer.resize(0); + } +#endif + + // Flatten channels and merge draw calls + ImDrawListSplitter* splitter = table->DrawSplitter; + splitter->SetCurrentChannel(inner_window->DrawList, 0); + if ((table->Flags & ImGuiTableFlags_NoClip) == 0) + TableMergeDrawChannels(table); + splitter->Merge(inner_window->DrawList); + + // Update ColumnsAutoFitWidth to get us ahead for host using our size to auto-resize without waiting for next BeginTable() + float auto_fit_width_for_fixed = 0.0f; + float auto_fit_width_for_stretched = 0.0f; + float auto_fit_width_for_stretched_min = 0.0f; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + if (IM_BITARRAY_TESTBIT(table->EnabledMaskByIndex, column_n)) + { + ImGuiTableColumn* column = &table->Columns[column_n]; + float column_width_request = ((column->Flags & ImGuiTableColumnFlags_WidthFixed) && !(column->Flags & ImGuiTableColumnFlags_NoResize)) ? column->WidthRequest : TableGetColumnWidthAuto(table, column); + if (column->Flags & ImGuiTableColumnFlags_WidthFixed) + auto_fit_width_for_fixed += column_width_request; + else + auto_fit_width_for_stretched += column_width_request; + if ((column->Flags & ImGuiTableColumnFlags_WidthStretch) && (column->Flags & ImGuiTableColumnFlags_NoResize) != 0) + auto_fit_width_for_stretched_min = ImMax(auto_fit_width_for_stretched_min, column_width_request / (column->StretchWeight / table->ColumnsStretchSumWeights)); + } + const float width_spacings = (table->OuterPaddingX * 2.0f) + (table->CellSpacingX1 + table->CellSpacingX2) * (table->ColumnsEnabledCount - 1); + table->ColumnsAutoFitWidth = width_spacings + (table->CellPaddingX * 2.0f) * table->ColumnsEnabledCount + auto_fit_width_for_fixed + ImMax(auto_fit_width_for_stretched, auto_fit_width_for_stretched_min); + + // Update scroll + if ((table->Flags & ImGuiTableFlags_ScrollX) == 0 && inner_window != outer_window) + { + inner_window->Scroll.x = 0.0f; + } + else if (table->LastResizedColumn != -1 && table->ResizedColumn == -1 && inner_window->ScrollbarX && table->InstanceInteracted == table->InstanceCurrent) + { + // When releasing a column being resized, scroll to keep the resulting column in sight + const float neighbor_width_to_keep_visible = table->MinColumnWidth + table->CellPaddingX * 2.0f; + ImGuiTableColumn* column = &table->Columns[table->LastResizedColumn]; + if (column->MaxX < table->InnerClipRect.Min.x) + SetScrollFromPosX(inner_window, column->MaxX - inner_window->Pos.x - neighbor_width_to_keep_visible, 1.0f); + else if (column->MaxX > table->InnerClipRect.Max.x) + SetScrollFromPosX(inner_window, column->MaxX - inner_window->Pos.x + neighbor_width_to_keep_visible, 1.0f); + } + + // Apply resizing/dragging at the end of the frame + if (table->ResizedColumn != -1 && table->InstanceCurrent == table->InstanceInteracted) + { + ImGuiTableColumn* column = &table->Columns[table->ResizedColumn]; + const float new_x2 = (g.IO.MousePos.x - g.ActiveIdClickOffset.x + TABLE_RESIZE_SEPARATOR_HALF_THICKNESS); + const float new_width = ImFloor(new_x2 - column->MinX - table->CellSpacingX1 - table->CellPaddingX * 2.0f); + table->ResizedColumnNextWidth = new_width; + } + + // Pop from id stack + IM_ASSERT_USER_ERROR(inner_window->IDStack.back() == table_instance->TableInstanceID, "Mismatching PushID/PopID!"); + IM_ASSERT_USER_ERROR(outer_window->DC.ItemWidthStack.Size >= temp_data->HostBackupItemWidthStackSize, "Too many PopItemWidth!"); + if (table->InstanceCurrent > 0) + PopID(); + PopID(); + + // Restore window data that we modified + const ImVec2 backup_outer_max_pos = outer_window->DC.CursorMaxPos; + inner_window->WorkRect = temp_data->HostBackupWorkRect; + inner_window->ParentWorkRect = temp_data->HostBackupParentWorkRect; + inner_window->SkipItems = table->HostSkipItems; + outer_window->DC.CursorPos = table->OuterRect.Min; + outer_window->DC.ItemWidth = temp_data->HostBackupItemWidth; + outer_window->DC.ItemWidthStack.Size = temp_data->HostBackupItemWidthStackSize; + outer_window->DC.ColumnsOffset = temp_data->HostBackupColumnsOffset; + + // Layout in outer window + // (FIXME: To allow auto-fit and allow desirable effect of SameLine() we dissociate 'used' vs 'ideal' size by overriding + // CursorPosPrevLine and CursorMaxPos manually. That should be a more general layout feature, see same problem e.g. #3414) + if (inner_window != outer_window) + { + EndChild(); + } + else + { + ItemSize(table->OuterRect.GetSize()); + ItemAdd(table->OuterRect, 0); + } + + // Override declared contents width/height to enable auto-resize while not needlessly adding a scrollbar + if (table->Flags & ImGuiTableFlags_NoHostExtendX) + { + // FIXME-TABLE: Could we remove this section? + // ColumnsAutoFitWidth may be one frame ahead here since for Fixed+NoResize is calculated from latest contents + IM_ASSERT((table->Flags & ImGuiTableFlags_ScrollX) == 0); + outer_window->DC.CursorMaxPos.x = ImMax(backup_outer_max_pos.x, table->OuterRect.Min.x + table->ColumnsAutoFitWidth); + } + else if (temp_data->UserOuterSize.x <= 0.0f) + { + const float decoration_size = (table->Flags & ImGuiTableFlags_ScrollX) ? inner_window->ScrollbarSizes.x : 0.0f; + outer_window->DC.IdealMaxPos.x = ImMax(outer_window->DC.IdealMaxPos.x, table->OuterRect.Min.x + table->ColumnsAutoFitWidth + decoration_size - temp_data->UserOuterSize.x); + outer_window->DC.CursorMaxPos.x = ImMax(backup_outer_max_pos.x, ImMin(table->OuterRect.Max.x, table->OuterRect.Min.x + table->ColumnsAutoFitWidth)); + } + else + { + outer_window->DC.CursorMaxPos.x = ImMax(backup_outer_max_pos.x, table->OuterRect.Max.x); + } + if (temp_data->UserOuterSize.y <= 0.0f) + { + const float decoration_size = (table->Flags & ImGuiTableFlags_ScrollY) ? inner_window->ScrollbarSizes.y : 0.0f; + outer_window->DC.IdealMaxPos.y = ImMax(outer_window->DC.IdealMaxPos.y, inner_content_max_y + decoration_size - temp_data->UserOuterSize.y); + outer_window->DC.CursorMaxPos.y = ImMax(backup_outer_max_pos.y, ImMin(table->OuterRect.Max.y, inner_content_max_y)); + } + else + { + // OuterRect.Max.y may already have been pushed downward from the initial value (unless ImGuiTableFlags_NoHostExtendY is set) + outer_window->DC.CursorMaxPos.y = ImMax(backup_outer_max_pos.y, table->OuterRect.Max.y); + } + + // Save settings + if (table->IsSettingsDirty) + TableSaveSettings(table); + table->IsInitializing = false; + + // Clear or restore current table, if any + IM_ASSERT(g.CurrentWindow == outer_window && g.CurrentTable == table); + IM_ASSERT(g.TablesTempDataStacked > 0); + temp_data = (--g.TablesTempDataStacked > 0) ? &g.TablesTempData[g.TablesTempDataStacked - 1] : NULL; + g.CurrentTable = temp_data ? g.Tables.GetByIndex(temp_data->TableIndex) : NULL; + if (g.CurrentTable) + { + g.CurrentTable->TempData = temp_data; + g.CurrentTable->DrawSplitter = &temp_data->DrawSplitter; + } + outer_window->DC.CurrentTableIdx = g.CurrentTable ? g.Tables.GetIndex(g.CurrentTable) : -1; + NavUpdateCurrentWindowIsScrollPushableX(); +} + +// See "COLUMN SIZING POLICIES" comments at the top of this file +// If (init_width_or_weight <= 0.0f) it is ignored +void ImGui::TableSetupColumn(const char* label, ImGuiTableColumnFlags flags, float init_width_or_weight, ImGuiID user_id) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + IM_ASSERT(table != NULL && "Need to call TableSetupColumn() after BeginTable()!"); + IM_ASSERT(table->IsLayoutLocked == false && "Need to call call TableSetupColumn() before first row!"); + IM_ASSERT((flags & ImGuiTableColumnFlags_StatusMask_) == 0 && "Illegal to pass StatusMask values to TableSetupColumn()"); + if (table->DeclColumnsCount >= table->ColumnsCount) + { + IM_ASSERT_USER_ERROR(table->DeclColumnsCount < table->ColumnsCount, "Called TableSetupColumn() too many times!"); + return; + } + + ImGuiTableColumn* column = &table->Columns[table->DeclColumnsCount]; + table->DeclColumnsCount++; + + // Assert when passing a width or weight if policy is entirely left to default, to avoid storing width into weight and vice-versa. + // Give a grace to users of ImGuiTableFlags_ScrollX. + if (table->IsDefaultSizingPolicy && (flags & ImGuiTableColumnFlags_WidthMask_) == 0 && (flags & ImGuiTableFlags_ScrollX) == 0) + IM_ASSERT(init_width_or_weight <= 0.0f && "Can only specify width/weight if sizing policy is set explicitly in either Table or Column."); + + // When passing a width automatically enforce WidthFixed policy + // (whereas TableSetupColumnFlags would default to WidthAuto if table is not Resizable) + if ((flags & ImGuiTableColumnFlags_WidthMask_) == 0 && init_width_or_weight > 0.0f) + if ((table->Flags & ImGuiTableFlags_SizingMask_) == ImGuiTableFlags_SizingFixedFit || (table->Flags & ImGuiTableFlags_SizingMask_) == ImGuiTableFlags_SizingFixedSame) + flags |= ImGuiTableColumnFlags_WidthFixed; + + TableSetupColumnFlags(table, column, flags); + column->UserID = user_id; + flags = column->Flags; + + // Initialize defaults + column->InitStretchWeightOrWidth = init_width_or_weight; + if (table->IsInitializing) + { + // Init width or weight + if (column->WidthRequest < 0.0f && column->StretchWeight < 0.0f) + { + if ((flags & ImGuiTableColumnFlags_WidthFixed) && init_width_or_weight > 0.0f) + column->WidthRequest = init_width_or_weight; + if (flags & ImGuiTableColumnFlags_WidthStretch) + column->StretchWeight = (init_width_or_weight > 0.0f) ? init_width_or_weight : -1.0f; + + // Disable auto-fit if an explicit width/weight has been specified + if (init_width_or_weight > 0.0f) + column->AutoFitQueue = 0x00; + } + + // Init default visibility/sort state + if ((flags & ImGuiTableColumnFlags_DefaultHide) && (table->SettingsLoadedFlags & ImGuiTableFlags_Hideable) == 0) + column->IsUserEnabled = column->IsUserEnabledNextFrame = false; + if (flags & ImGuiTableColumnFlags_DefaultSort && (table->SettingsLoadedFlags & ImGuiTableFlags_Sortable) == 0) + { + column->SortOrder = 0; // Multiple columns using _DefaultSort will be reassigned unique SortOrder values when building the sort specs. + column->SortDirection = (column->Flags & ImGuiTableColumnFlags_PreferSortDescending) ? (ImS8)ImGuiSortDirection_Descending : (ImU8)(ImGuiSortDirection_Ascending); + } + } + + // Store name (append with zero-terminator in contiguous buffer) + column->NameOffset = -1; + if (label != NULL && label[0] != 0) + { + column->NameOffset = (ImS16)table->ColumnsNames.size(); + table->ColumnsNames.append(label, label + strlen(label) + 1); + } +} + +// [Public] +void ImGui::TableSetupScrollFreeze(int columns, int rows) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + IM_ASSERT(table != NULL && "Need to call TableSetupColumn() after BeginTable()!"); + IM_ASSERT(table->IsLayoutLocked == false && "Need to call TableSetupColumn() before first row!"); + IM_ASSERT(columns >= 0 && columns < IMGUI_TABLE_MAX_COLUMNS); + IM_ASSERT(rows >= 0 && rows < 128); // Arbitrary limit + + table->FreezeColumnsRequest = (table->Flags & ImGuiTableFlags_ScrollX) ? (ImGuiTableColumnIdx)ImMin(columns, table->ColumnsCount) : 0; + table->FreezeColumnsCount = (table->InnerWindow->Scroll.x != 0.0f) ? table->FreezeColumnsRequest : 0; + table->FreezeRowsRequest = (table->Flags & ImGuiTableFlags_ScrollY) ? (ImGuiTableColumnIdx)rows : 0; + table->FreezeRowsCount = (table->InnerWindow->Scroll.y != 0.0f) ? table->FreezeRowsRequest : 0; + table->IsUnfrozenRows = (table->FreezeRowsCount == 0); // Make sure this is set before TableUpdateLayout() so ImGuiListClipper can benefit from it.b + + // Ensure frozen columns are ordered in their section. We still allow multiple frozen columns to be reordered. + // FIXME-TABLE: This work for preserving 2143 into 21|43. How about 4321 turning into 21|43? (preserve relative order in each section) + for (int column_n = 0; column_n < table->FreezeColumnsRequest; column_n++) + { + int order_n = table->DisplayOrderToIndex[column_n]; + if (order_n != column_n && order_n >= table->FreezeColumnsRequest) + { + ImSwap(table->Columns[table->DisplayOrderToIndex[order_n]].DisplayOrder, table->Columns[table->DisplayOrderToIndex[column_n]].DisplayOrder); + ImSwap(table->DisplayOrderToIndex[order_n], table->DisplayOrderToIndex[column_n]); + } + } +} + +//----------------------------------------------------------------------------- +// [SECTION] Tables: Simple accessors +//----------------------------------------------------------------------------- +// - TableGetColumnCount() +// - TableGetColumnName() +// - TableGetColumnName() [Internal] +// - TableSetColumnEnabled() +// - TableGetColumnFlags() +// - TableGetCellBgRect() [Internal] +// - TableGetColumnResizeID() [Internal] +// - TableGetHoveredColumn() [Internal] +// - TableGetHoveredRow() [Internal] +// - TableSetBgColor() +//----------------------------------------------------------------------------- + +int ImGui::TableGetColumnCount() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + return table ? table->ColumnsCount : 0; +} + +const char* ImGui::TableGetColumnName(int column_n) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + if (!table) + return NULL; + if (column_n < 0) + column_n = table->CurrentColumn; + return TableGetColumnName(table, column_n); +} + +const char* ImGui::TableGetColumnName(const ImGuiTable* table, int column_n) +{ + if (table->IsLayoutLocked == false && column_n >= table->DeclColumnsCount) + return ""; // NameOffset is invalid at this point + const ImGuiTableColumn* column = &table->Columns[column_n]; + if (column->NameOffset == -1) + return ""; + return &table->ColumnsNames.Buf[column->NameOffset]; +} + +// Change user accessible enabled/disabled state of a column (often perceived as "showing/hiding" from users point of view) +// Note that end-user can use the context menu to change this themselves (right-click in headers, or right-click in columns body with ImGuiTableFlags_ContextMenuInBody) +// - Require table to have the ImGuiTableFlags_Hideable flag because we are manipulating user accessible state. +// - Request will be applied during next layout, which happens on the first call to TableNextRow() after BeginTable(). +// - For the getter you can test (TableGetColumnFlags() & ImGuiTableColumnFlags_IsEnabled) != 0. +// - Alternative: the ImGuiTableColumnFlags_Disabled is an overriding/master disable flag which will also hide the column from context menu. +void ImGui::TableSetColumnEnabled(int column_n, bool enabled) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + IM_ASSERT(table != NULL); + if (!table) + return; + IM_ASSERT(table->Flags & ImGuiTableFlags_Hideable); // See comments above + if (column_n < 0) + column_n = table->CurrentColumn; + IM_ASSERT(column_n >= 0 && column_n < table->ColumnsCount); + ImGuiTableColumn* column = &table->Columns[column_n]; + column->IsUserEnabledNextFrame = enabled; +} + +// We allow querying for an extra column in order to poll the IsHovered state of the right-most section +ImGuiTableColumnFlags ImGui::TableGetColumnFlags(int column_n) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + if (!table) + return ImGuiTableColumnFlags_None; + if (column_n < 0) + column_n = table->CurrentColumn; + if (column_n == table->ColumnsCount) + return (table->HoveredColumnBody == column_n) ? ImGuiTableColumnFlags_IsHovered : ImGuiTableColumnFlags_None; + return table->Columns[column_n].Flags; +} + +// Return the cell rectangle based on currently known height. +// - Important: we generally don't know our row height until the end of the row, so Max.y will be incorrect in many situations. +// The only case where this is correct is if we provided a min_row_height to TableNextRow() and don't go below it, or in TableEndRow() when we locked that height. +// - Important: if ImGuiTableFlags_PadOuterX is set but ImGuiTableFlags_PadInnerX is not set, the outer-most left and right +// columns report a small offset so their CellBgRect can extend up to the outer border. +// FIXME: But the rendering code in TableEndRow() nullifies that with clamping required for scrolling. +ImRect ImGui::TableGetCellBgRect(const ImGuiTable* table, int column_n) +{ + const ImGuiTableColumn* column = &table->Columns[column_n]; + float x1 = column->MinX; + float x2 = column->MaxX; + //if (column->PrevEnabledColumn == -1) + // x1 -= table->OuterPaddingX; + //if (column->NextEnabledColumn == -1) + // x2 += table->OuterPaddingX; + x1 = ImMax(x1, table->WorkRect.Min.x); + x2 = ImMin(x2, table->WorkRect.Max.x); + return ImRect(x1, table->RowPosY1, x2, table->RowPosY2); +} + +// Return the resizing ID for the right-side of the given column. +ImGuiID ImGui::TableGetColumnResizeID(ImGuiTable* table, int column_n, int instance_no) +{ + IM_ASSERT(column_n >= 0 && column_n < table->ColumnsCount); + ImGuiID instance_id = TableGetInstanceID(table, instance_no); + return instance_id + 1 + column_n; // FIXME: #6140: still not ideal +} + +// Return -1 when table is not hovered. return columns_count if hovering the unused space at the right of the right-most visible column. +int ImGui::TableGetHoveredColumn() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + if (!table) + return -1; + return (int)table->HoveredColumnBody; +} + +// Return -1 when table is not hovered. Return maxrow+1 if in table but below last submitted row. +// *IMPORTANT* Unlike TableGetHoveredColumn(), this has a one frame latency in updating the value. +// This difference with is the reason why this is not public yet. +int ImGui::TableGetHoveredRow() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + if (!table) + return -1; + ImGuiTableInstanceData* table_instance = TableGetInstanceData(table, table->InstanceCurrent); + return (int)table_instance->HoveredRowLast; +} + +void ImGui::TableSetBgColor(ImGuiTableBgTarget target, ImU32 color, int column_n) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + IM_ASSERT(target != ImGuiTableBgTarget_None); + + if (color == IM_COL32_DISABLE) + color = 0; + + // We cannot draw neither the cell or row background immediately as we don't know the row height at this point in time. + switch (target) + { + case ImGuiTableBgTarget_CellBg: + { + if (table->RowPosY1 > table->InnerClipRect.Max.y) // Discard + return; + if (column_n == -1) + column_n = table->CurrentColumn; + if (!IM_BITARRAY_TESTBIT(table->VisibleMaskByIndex, column_n)) + return; + if (table->RowCellDataCurrent < 0 || table->RowCellData[table->RowCellDataCurrent].Column != column_n) + table->RowCellDataCurrent++; + ImGuiTableCellData* cell_data = &table->RowCellData[table->RowCellDataCurrent]; + cell_data->BgColor = color; + cell_data->Column = (ImGuiTableColumnIdx)column_n; + break; + } + case ImGuiTableBgTarget_RowBg0: + case ImGuiTableBgTarget_RowBg1: + { + if (table->RowPosY1 > table->InnerClipRect.Max.y) // Discard + return; + IM_ASSERT(column_n == -1); + int bg_idx = (target == ImGuiTableBgTarget_RowBg1) ? 1 : 0; + table->RowBgColor[bg_idx] = color; + break; + } + default: + IM_ASSERT(0); + } +} + +//------------------------------------------------------------------------- +// [SECTION] Tables: Row changes +//------------------------------------------------------------------------- +// - TableGetRowIndex() +// - TableNextRow() +// - TableBeginRow() [Internal] +// - TableEndRow() [Internal] +//------------------------------------------------------------------------- + +// [Public] Note: for row coloring we use ->RowBgColorCounter which is the same value without counting header rows +int ImGui::TableGetRowIndex() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + if (!table) + return 0; + return table->CurrentRow; +} + +// [Public] Starts into the first cell of a new row +void ImGui::TableNextRow(ImGuiTableRowFlags row_flags, float row_min_height) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + + if (!table->IsLayoutLocked) + TableUpdateLayout(table); + if (table->IsInsideRow) + TableEndRow(table); + + table->LastRowFlags = table->RowFlags; + table->RowFlags = row_flags; + table->RowCellPaddingY = g.Style.CellPadding.y; + table->RowMinHeight = row_min_height; + TableBeginRow(table); + + // We honor min_row_height requested by user, but cannot guarantee per-row maximum height, + // because that would essentially require a unique clipping rectangle per-cell. + table->RowPosY2 += table->RowCellPaddingY * 2.0f; + table->RowPosY2 = ImMax(table->RowPosY2, table->RowPosY1 + row_min_height); + + // Disable output until user calls TableNextColumn() + table->InnerWindow->SkipItems = true; +} + +// [Internal] Only called by TableNextRow() +void ImGui::TableBeginRow(ImGuiTable* table) +{ + ImGuiWindow* window = table->InnerWindow; + IM_ASSERT(!table->IsInsideRow); + + // New row + table->CurrentRow++; + table->CurrentColumn = -1; + table->RowBgColor[0] = table->RowBgColor[1] = IM_COL32_DISABLE; + table->RowCellDataCurrent = -1; + table->IsInsideRow = true; + + // Begin frozen rows + float next_y1 = table->RowPosY2; + if (table->CurrentRow == 0 && table->FreezeRowsCount > 0) + next_y1 = window->DC.CursorPos.y = table->OuterRect.Min.y; + + table->RowPosY1 = table->RowPosY2 = next_y1; + table->RowTextBaseline = 0.0f; + table->RowIndentOffsetX = window->DC.Indent.x - table->HostIndentX; // Lock indent + + window->DC.PrevLineTextBaseOffset = 0.0f; + window->DC.CursorPosPrevLine = ImVec2(window->DC.CursorPos.x, window->DC.CursorPos.y + table->RowCellPaddingY); // This allows users to call SameLine() to share LineSize between columns. + window->DC.PrevLineSize = window->DC.CurrLineSize = ImVec2(0.0f, 0.0f); // This allows users to call SameLine() to share LineSize between columns, and to call it from first column too. + window->DC.IsSameLine = window->DC.IsSetPos = false; + window->DC.CursorMaxPos.y = next_y1; + + // Making the header BG color non-transparent will allow us to overlay it multiple times when handling smooth dragging. + if (table->RowFlags & ImGuiTableRowFlags_Headers) + { + TableSetBgColor(ImGuiTableBgTarget_RowBg0, GetColorU32(ImGuiCol_TableHeaderBg)); + if (table->CurrentRow == 0) + table->IsUsingHeaders = true; + } +} + +// [Internal] Called by TableNextRow() +void ImGui::TableEndRow(ImGuiTable* table) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(window == table->InnerWindow); + IM_ASSERT(table->IsInsideRow); + + if (table->CurrentColumn != -1) + TableEndCell(table); + + // Logging + if (g.LogEnabled) + LogRenderedText(NULL, "|"); + + // Position cursor at the bottom of our row so it can be used for e.g. clipping calculation. However it is + // likely that the next call to TableBeginCell() will reposition the cursor to take account of vertical padding. + window->DC.CursorPos.y = table->RowPosY2; + + // Row background fill + const float bg_y1 = table->RowPosY1; + const float bg_y2 = table->RowPosY2; + const bool unfreeze_rows_actual = (table->CurrentRow + 1 == table->FreezeRowsCount); + const bool unfreeze_rows_request = (table->CurrentRow + 1 == table->FreezeRowsRequest); + if (table->CurrentRow == 0) + TableGetInstanceData(table, table->InstanceCurrent)->LastFirstRowHeight = bg_y2 - bg_y1; + + const bool is_visible = (bg_y2 >= table->InnerClipRect.Min.y && bg_y1 <= table->InnerClipRect.Max.y); + if (is_visible) + { + // Update data for TableGetHoveredRow() + if (table->HoveredColumnBody != -1 && g.IO.MousePos.y >= bg_y1 && g.IO.MousePos.y < bg_y2) + TableGetInstanceData(table, table->InstanceCurrent)->HoveredRowNext = table->CurrentRow; + + // Decide of background color for the row + ImU32 bg_col0 = 0; + ImU32 bg_col1 = 0; + if (table->RowBgColor[0] != IM_COL32_DISABLE) + bg_col0 = table->RowBgColor[0]; + else if (table->Flags & ImGuiTableFlags_RowBg) + bg_col0 = GetColorU32((table->RowBgColorCounter & 1) ? ImGuiCol_TableRowBgAlt : ImGuiCol_TableRowBg); + if (table->RowBgColor[1] != IM_COL32_DISABLE) + bg_col1 = table->RowBgColor[1]; + + // Decide of top border color + ImU32 border_col = 0; + const float border_size = TABLE_BORDER_SIZE; + if (table->CurrentRow > 0 || table->InnerWindow == table->OuterWindow) + if (table->Flags & ImGuiTableFlags_BordersInnerH) + border_col = (table->LastRowFlags & ImGuiTableRowFlags_Headers) ? table->BorderColorStrong : table->BorderColorLight; + + const bool draw_cell_bg_color = table->RowCellDataCurrent >= 0; + const bool draw_strong_bottom_border = unfreeze_rows_actual; + if ((bg_col0 | bg_col1 | border_col) != 0 || draw_strong_bottom_border || draw_cell_bg_color) + { + // In theory we could call SetWindowClipRectBeforeSetChannel() but since we know TableEndRow() is + // always followed by a change of clipping rectangle we perform the smallest overwrite possible here. + if ((table->Flags & ImGuiTableFlags_NoClip) == 0) + window->DrawList->_CmdHeader.ClipRect = table->Bg0ClipRectForDrawCmd.ToVec4(); + table->DrawSplitter->SetCurrentChannel(window->DrawList, TABLE_DRAW_CHANNEL_BG0); + } + + // Draw row background + // We soft/cpu clip this so all backgrounds and borders can share the same clipping rectangle + if (bg_col0 || bg_col1) + { + ImRect row_rect(table->WorkRect.Min.x, bg_y1, table->WorkRect.Max.x, bg_y2); + row_rect.ClipWith(table->BgClipRect); + if (bg_col0 != 0 && row_rect.Min.y < row_rect.Max.y) + window->DrawList->AddRectFilled(row_rect.Min, row_rect.Max, bg_col0); + if (bg_col1 != 0 && row_rect.Min.y < row_rect.Max.y) + window->DrawList->AddRectFilled(row_rect.Min, row_rect.Max, bg_col1); + } + + // Draw cell background color + if (draw_cell_bg_color) + { + ImGuiTableCellData* cell_data_end = &table->RowCellData[table->RowCellDataCurrent]; + for (ImGuiTableCellData* cell_data = &table->RowCellData[0]; cell_data <= cell_data_end; cell_data++) + { + // As we render the BG here we need to clip things (for layout we would not) + // FIXME: This cancels the OuterPadding addition done by TableGetCellBgRect(), need to keep it while rendering correctly while scrolling. + const ImGuiTableColumn* column = &table->Columns[cell_data->Column]; + ImRect cell_bg_rect = TableGetCellBgRect(table, cell_data->Column); + cell_bg_rect.ClipWith(table->BgClipRect); + cell_bg_rect.Min.x = ImMax(cell_bg_rect.Min.x, column->ClipRect.Min.x); // So that first column after frozen one gets clipped when scrolling + cell_bg_rect.Max.x = ImMin(cell_bg_rect.Max.x, column->MaxX); + window->DrawList->AddRectFilled(cell_bg_rect.Min, cell_bg_rect.Max, cell_data->BgColor); + } + } + + // Draw top border + if (border_col && bg_y1 >= table->BgClipRect.Min.y && bg_y1 < table->BgClipRect.Max.y) + window->DrawList->AddLine(ImVec2(table->BorderX1, bg_y1), ImVec2(table->BorderX2, bg_y1), border_col, border_size); + + // Draw bottom border at the row unfreezing mark (always strong) + if (draw_strong_bottom_border && bg_y2 >= table->BgClipRect.Min.y && bg_y2 < table->BgClipRect.Max.y) + window->DrawList->AddLine(ImVec2(table->BorderX1, bg_y2), ImVec2(table->BorderX2, bg_y2), table->BorderColorStrong, border_size); + } + + // End frozen rows (when we are past the last frozen row line, teleport cursor and alter clipping rectangle) + // We need to do that in TableEndRow() instead of TableBeginRow() so the list clipper can mark end of row and + // get the new cursor position. + if (unfreeze_rows_request) + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + table->Columns[column_n].NavLayerCurrent = ImGuiNavLayer_Main; + if (unfreeze_rows_actual) + { + IM_ASSERT(table->IsUnfrozenRows == false); + const float y0 = ImMax(table->RowPosY2 + 1, window->InnerClipRect.Min.y); + table->IsUnfrozenRows = true; + TableGetInstanceData(table, table->InstanceCurrent)->LastFrozenHeight = y0 - table->OuterRect.Min.y; + + // BgClipRect starts as table->InnerClipRect, reduce it now and make BgClipRectForDrawCmd == BgClipRect + table->BgClipRect.Min.y = table->Bg2ClipRectForDrawCmd.Min.y = ImMin(y0, window->InnerClipRect.Max.y); + table->BgClipRect.Max.y = table->Bg2ClipRectForDrawCmd.Max.y = window->InnerClipRect.Max.y; + table->Bg2DrawChannelCurrent = table->Bg2DrawChannelUnfrozen; + IM_ASSERT(table->Bg2ClipRectForDrawCmd.Min.y <= table->Bg2ClipRectForDrawCmd.Max.y); + + float row_height = table->RowPosY2 - table->RowPosY1; + table->RowPosY2 = window->DC.CursorPos.y = table->WorkRect.Min.y + table->RowPosY2 - table->OuterRect.Min.y; + table->RowPosY1 = table->RowPosY2 - row_height; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImGuiTableColumn* column = &table->Columns[column_n]; + column->DrawChannelCurrent = column->DrawChannelUnfrozen; + column->ClipRect.Min.y = table->Bg2ClipRectForDrawCmd.Min.y; + } + + // Update cliprect ahead of TableBeginCell() so clipper can access to new ClipRect->Min.y + SetWindowClipRectBeforeSetChannel(window, table->Columns[0].ClipRect); + table->DrawSplitter->SetCurrentChannel(window->DrawList, table->Columns[0].DrawChannelCurrent); + } + + if (!(table->RowFlags & ImGuiTableRowFlags_Headers)) + table->RowBgColorCounter++; + table->IsInsideRow = false; +} + +//------------------------------------------------------------------------- +// [SECTION] Tables: Columns changes +//------------------------------------------------------------------------- +// - TableGetColumnIndex() +// - TableSetColumnIndex() +// - TableNextColumn() +// - TableBeginCell() [Internal] +// - TableEndCell() [Internal] +//------------------------------------------------------------------------- + +int ImGui::TableGetColumnIndex() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + if (!table) + return 0; + return table->CurrentColumn; +} + +// [Public] Append into a specific column +bool ImGui::TableSetColumnIndex(int column_n) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + if (!table) + return false; + + if (table->CurrentColumn != column_n) + { + if (table->CurrentColumn != -1) + TableEndCell(table); + IM_ASSERT(column_n >= 0 && table->ColumnsCount); + TableBeginCell(table, column_n); + } + + // Return whether the column is visible. User may choose to skip submitting items based on this return value, + // however they shouldn't skip submitting for columns that may have the tallest contribution to row height. + return table->Columns[column_n].IsRequestOutput; +} + +// [Public] Append into the next column, wrap and create a new row when already on last column +bool ImGui::TableNextColumn() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + if (!table) + return false; + + if (table->IsInsideRow && table->CurrentColumn + 1 < table->ColumnsCount) + { + if (table->CurrentColumn != -1) + TableEndCell(table); + TableBeginCell(table, table->CurrentColumn + 1); + } + else + { + TableNextRow(); + TableBeginCell(table, 0); + } + + // Return whether the column is visible. User may choose to skip submitting items based on this return value, + // however they shouldn't skip submitting for columns that may have the tallest contribution to row height. + return table->Columns[table->CurrentColumn].IsRequestOutput; +} + + +// [Internal] Called by TableSetColumnIndex()/TableNextColumn() +// This is called very frequently, so we need to be mindful of unnecessary overhead. +// FIXME-TABLE FIXME-OPT: Could probably shortcut some things for non-active or clipped columns. +void ImGui::TableBeginCell(ImGuiTable* table, int column_n) +{ + ImGuiContext& g = *GImGui; + ImGuiTableColumn* column = &table->Columns[column_n]; + ImGuiWindow* window = table->InnerWindow; + table->CurrentColumn = column_n; + + // Start position is roughly ~~ CellRect.Min + CellPadding + Indent + float start_x = column->WorkMinX; + if (column->Flags & ImGuiTableColumnFlags_IndentEnable) + start_x += table->RowIndentOffsetX; // ~~ += window.DC.Indent.x - table->HostIndentX, except we locked it for the row. + + window->DC.CursorPos.x = start_x; + window->DC.CursorPos.y = table->RowPosY1 + table->RowCellPaddingY; + window->DC.CursorMaxPos.x = window->DC.CursorPos.x; + window->DC.ColumnsOffset.x = start_x - window->Pos.x - window->DC.Indent.x; // FIXME-WORKRECT + window->DC.CursorPosPrevLine.x = window->DC.CursorPos.x; // PrevLine.y is preserved. This allows users to call SameLine() to share LineSize between columns. + window->DC.CurrLineTextBaseOffset = table->RowTextBaseline; + window->DC.NavLayerCurrent = (ImGuiNavLayer)column->NavLayerCurrent; + + // Note how WorkRect.Max.y is only set once during layout + window->WorkRect.Min.y = window->DC.CursorPos.y; + window->WorkRect.Min.x = column->WorkMinX; + window->WorkRect.Max.x = column->WorkMaxX; + window->DC.ItemWidth = column->ItemWidth; + + window->SkipItems = column->IsSkipItems; + if (column->IsSkipItems) + { + g.LastItemData.ID = 0; + g.LastItemData.StatusFlags = 0; + } + + if (table->Flags & ImGuiTableFlags_NoClip) + { + // FIXME: if we end up drawing all borders/bg in EndTable, could remove this and just assert that channel hasn't changed. + table->DrawSplitter->SetCurrentChannel(window->DrawList, TABLE_DRAW_CHANNEL_NOCLIP); + //IM_ASSERT(table->DrawSplitter._Current == TABLE_DRAW_CHANNEL_NOCLIP); + } + else + { + // FIXME-TABLE: Could avoid this if draw channel is dummy channel? + SetWindowClipRectBeforeSetChannel(window, column->ClipRect); + table->DrawSplitter->SetCurrentChannel(window->DrawList, column->DrawChannelCurrent); + } + + // Logging + if (g.LogEnabled && !column->IsSkipItems) + { + LogRenderedText(&window->DC.CursorPos, "|"); + g.LogLinePosY = FLT_MAX; + } +} + +// [Internal] Called by TableNextRow()/TableSetColumnIndex()/TableNextColumn() +void ImGui::TableEndCell(ImGuiTable* table) +{ + ImGuiTableColumn* column = &table->Columns[table->CurrentColumn]; + ImGuiWindow* window = table->InnerWindow; + + if (window->DC.IsSetPos) + ErrorCheckUsingSetCursorPosToExtendParentBoundaries(); + + // Report maximum position so we can infer content size per column. + float* p_max_pos_x; + if (table->RowFlags & ImGuiTableRowFlags_Headers) + p_max_pos_x = &column->ContentMaxXHeadersUsed; // Useful in case user submit contents in header row that is not a TableHeader() call + else + p_max_pos_x = table->IsUnfrozenRows ? &column->ContentMaxXUnfrozen : &column->ContentMaxXFrozen; + *p_max_pos_x = ImMax(*p_max_pos_x, window->DC.CursorMaxPos.x); + if (column->IsEnabled) + table->RowPosY2 = ImMax(table->RowPosY2, window->DC.CursorMaxPos.y + table->RowCellPaddingY); + column->ItemWidth = window->DC.ItemWidth; + + // Propagate text baseline for the entire row + // FIXME-TABLE: Here we propagate text baseline from the last line of the cell.. instead of the first one. + table->RowTextBaseline = ImMax(table->RowTextBaseline, window->DC.PrevLineTextBaseOffset); +} + +//------------------------------------------------------------------------- +// [SECTION] Tables: Columns width management +//------------------------------------------------------------------------- +// - TableGetMaxColumnWidth() [Internal] +// - TableGetColumnWidthAuto() [Internal] +// - TableSetColumnWidth() +// - TableSetColumnWidthAutoSingle() [Internal] +// - TableSetColumnWidthAutoAll() [Internal] +// - TableUpdateColumnsWeightFromWidth() [Internal] +//------------------------------------------------------------------------- + +// Maximum column content width given current layout. Use column->MinX so this value on a per-column basis. +float ImGui::TableGetMaxColumnWidth(const ImGuiTable* table, int column_n) +{ + const ImGuiTableColumn* column = &table->Columns[column_n]; + float max_width = FLT_MAX; + const float min_column_distance = table->MinColumnWidth + table->CellPaddingX * 2.0f + table->CellSpacingX1 + table->CellSpacingX2; + if (table->Flags & ImGuiTableFlags_ScrollX) + { + // Frozen columns can't reach beyond visible width else scrolling will naturally break. + // (we use DisplayOrder as within a set of multiple frozen column reordering is possible) + if (column->DisplayOrder < table->FreezeColumnsRequest) + { + max_width = (table->InnerClipRect.Max.x - (table->FreezeColumnsRequest - column->DisplayOrder) * min_column_distance) - column->MinX; + max_width = max_width - table->OuterPaddingX - table->CellPaddingX - table->CellSpacingX2; + } + } + else if ((table->Flags & ImGuiTableFlags_NoKeepColumnsVisible) == 0) + { + // If horizontal scrolling if disabled, we apply a final lossless shrinking of columns in order to make + // sure they are all visible. Because of this we also know that all of the columns will always fit in + // table->WorkRect and therefore in table->InnerRect (because ScrollX is off) + // FIXME-TABLE: This is solved incorrectly but also quite a difficult problem to fix as we also want ClipRect width to match. + // See "table_width_distrib" and "table_width_keep_visible" tests + max_width = table->WorkRect.Max.x - (table->ColumnsEnabledCount - column->IndexWithinEnabledSet - 1) * min_column_distance - column->MinX; + //max_width -= table->CellSpacingX1; + max_width -= table->CellSpacingX2; + max_width -= table->CellPaddingX * 2.0f; + max_width -= table->OuterPaddingX; + } + return max_width; +} + +// Note this is meant to be stored in column->WidthAuto, please generally use the WidthAuto field +float ImGui::TableGetColumnWidthAuto(ImGuiTable* table, ImGuiTableColumn* column) +{ + const float content_width_body = ImMax(column->ContentMaxXFrozen, column->ContentMaxXUnfrozen) - column->WorkMinX; + const float content_width_headers = column->ContentMaxXHeadersIdeal - column->WorkMinX; + float width_auto = content_width_body; + if (!(column->Flags & ImGuiTableColumnFlags_NoHeaderWidth)) + width_auto = ImMax(width_auto, content_width_headers); + + // Non-resizable fixed columns preserve their requested width + if ((column->Flags & ImGuiTableColumnFlags_WidthFixed) && column->InitStretchWeightOrWidth > 0.0f) + if (!(table->Flags & ImGuiTableFlags_Resizable) || (column->Flags & ImGuiTableColumnFlags_NoResize)) + width_auto = column->InitStretchWeightOrWidth; + + return ImMax(width_auto, table->MinColumnWidth); +} + +// 'width' = inner column width, without padding +void ImGui::TableSetColumnWidth(int column_n, float width) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + IM_ASSERT(table != NULL && table->IsLayoutLocked == false); + IM_ASSERT(column_n >= 0 && column_n < table->ColumnsCount); + ImGuiTableColumn* column_0 = &table->Columns[column_n]; + float column_0_width = width; + + // Apply constraints early + // Compare both requested and actual given width to avoid overwriting requested width when column is stuck (minimum size, bounded) + IM_ASSERT(table->MinColumnWidth > 0.0f); + const float min_width = table->MinColumnWidth; + const float max_width = ImMax(min_width, TableGetMaxColumnWidth(table, column_n)); + column_0_width = ImClamp(column_0_width, min_width, max_width); + if (column_0->WidthGiven == column_0_width || column_0->WidthRequest == column_0_width) + return; + + //IMGUI_DEBUG_PRINT("TableSetColumnWidth(%d, %.1f->%.1f)\n", column_0_idx, column_0->WidthGiven, column_0_width); + ImGuiTableColumn* column_1 = (column_0->NextEnabledColumn != -1) ? &table->Columns[column_0->NextEnabledColumn] : NULL; + + // In this surprisingly not simple because of how we support mixing Fixed and multiple Stretch columns. + // - All fixed: easy. + // - All stretch: easy. + // - One or more fixed + one stretch: easy. + // - One or more fixed + more than one stretch: tricky. + // Qt when manual resize is enabled only supports a single _trailing_ stretch column, we support more cases here. + + // When forwarding resize from Wn| to Fn+1| we need to be considerate of the _NoResize flag on Fn+1. + // FIXME-TABLE: Find a way to rewrite all of this so interactions feel more consistent for the user. + // Scenarios: + // - F1 F2 F3 resize from F1| or F2| --> ok: alter ->WidthRequested of Fixed column. Subsequent columns will be offset. + // - F1 F2 F3 resize from F3| --> ok: alter ->WidthRequested of Fixed column. If active, ScrollX extent can be altered. + // - F1 F2 W3 resize from F1| or F2| --> ok: alter ->WidthRequested of Fixed column. If active, ScrollX extent can be altered, but it doesn't make much sense as the Stretch column will always be minimal size. + // - F1 F2 W3 resize from W3| --> ok: no-op (disabled by Resize Rule 1) + // - W1 W2 W3 resize from W1| or W2| --> ok + // - W1 W2 W3 resize from W3| --> ok: no-op (disabled by Resize Rule 1) + // - W1 F2 F3 resize from F3| --> ok: no-op (disabled by Resize Rule 1) + // - W1 F2 resize from F2| --> ok: no-op (disabled by Resize Rule 1) + // - W1 W2 F3 resize from W1| or W2| --> ok + // - W1 F2 W3 resize from W1| or F2| --> ok + // - F1 W2 F3 resize from W2| --> ok + // - F1 W3 F2 resize from W3| --> ok + // - W1 F2 F3 resize from W1| --> ok: equivalent to resizing |F2. F3 will not move. + // - W1 F2 F3 resize from F2| --> ok + // All resizes from a Wx columns are locking other columns. + + // Possible improvements: + // - W1 W2 W3 resize W1| --> to not be stuck, both W2 and W3 would stretch down. Seems possible to fix. Would be most beneficial to simplify resize of all-weighted columns. + // - W3 F1 F2 resize W3| --> to not be stuck past F1|, both F1 and F2 would need to stretch down, which would be lossy or ambiguous. Seems hard to fix. + + // [Resize Rule 1] Can't resize from right of right-most visible column if there is any Stretch column. Implemented in TableUpdateLayout(). + + // If we have all Fixed columns OR resizing a Fixed column that doesn't come after a Stretch one, we can do an offsetting resize. + // This is the preferred resize path + if (column_0->Flags & ImGuiTableColumnFlags_WidthFixed) + if (!column_1 || table->LeftMostStretchedColumn == -1 || table->Columns[table->LeftMostStretchedColumn].DisplayOrder >= column_0->DisplayOrder) + { + column_0->WidthRequest = column_0_width; + table->IsSettingsDirty = true; + return; + } + + // We can also use previous column if there's no next one (this is used when doing an auto-fit on the right-most stretch column) + if (column_1 == NULL) + column_1 = (column_0->PrevEnabledColumn != -1) ? &table->Columns[column_0->PrevEnabledColumn] : NULL; + if (column_1 == NULL) + return; + + // Resizing from right-side of a Stretch column before a Fixed column forward sizing to left-side of fixed column. + // (old_a + old_b == new_a + new_b) --> (new_a == old_a + old_b - new_b) + float column_1_width = ImMax(column_1->WidthRequest - (column_0_width - column_0->WidthRequest), min_width); + column_0_width = column_0->WidthRequest + column_1->WidthRequest - column_1_width; + IM_ASSERT(column_0_width > 0.0f && column_1_width > 0.0f); + column_0->WidthRequest = column_0_width; + column_1->WidthRequest = column_1_width; + if ((column_0->Flags | column_1->Flags) & ImGuiTableColumnFlags_WidthStretch) + TableUpdateColumnsWeightFromWidth(table); + table->IsSettingsDirty = true; +} + +// Disable clipping then auto-fit, will take 2 frames +// (we don't take a shortcut for unclipped columns to reduce inconsistencies when e.g. resizing multiple columns) +void ImGui::TableSetColumnWidthAutoSingle(ImGuiTable* table, int column_n) +{ + // Single auto width uses auto-fit + ImGuiTableColumn* column = &table->Columns[column_n]; + if (!column->IsEnabled) + return; + column->CannotSkipItemsQueue = (1 << 0); + table->AutoFitSingleColumn = (ImGuiTableColumnIdx)column_n; +} + +void ImGui::TableSetColumnWidthAutoAll(ImGuiTable* table) +{ + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImGuiTableColumn* column = &table->Columns[column_n]; + if (!column->IsEnabled && !(column->Flags & ImGuiTableColumnFlags_WidthStretch)) // Cannot reset weight of hidden stretch column + continue; + column->CannotSkipItemsQueue = (1 << 0); + column->AutoFitQueue = (1 << 1); + } +} + +void ImGui::TableUpdateColumnsWeightFromWidth(ImGuiTable* table) +{ + IM_ASSERT(table->LeftMostStretchedColumn != -1 && table->RightMostStretchedColumn != -1); + + // Measure existing quantities + float visible_weight = 0.0f; + float visible_width = 0.0f; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImGuiTableColumn* column = &table->Columns[column_n]; + if (!column->IsEnabled || !(column->Flags & ImGuiTableColumnFlags_WidthStretch)) + continue; + IM_ASSERT(column->StretchWeight > 0.0f); + visible_weight += column->StretchWeight; + visible_width += column->WidthRequest; + } + IM_ASSERT(visible_weight > 0.0f && visible_width > 0.0f); + + // Apply new weights + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImGuiTableColumn* column = &table->Columns[column_n]; + if (!column->IsEnabled || !(column->Flags & ImGuiTableColumnFlags_WidthStretch)) + continue; + column->StretchWeight = (column->WidthRequest / visible_width) * visible_weight; + IM_ASSERT(column->StretchWeight > 0.0f); + } +} + +//------------------------------------------------------------------------- +// [SECTION] Tables: Drawing +//------------------------------------------------------------------------- +// - TablePushBackgroundChannel() [Internal] +// - TablePopBackgroundChannel() [Internal] +// - TableSetupDrawChannels() [Internal] +// - TableMergeDrawChannels() [Internal] +// - TableDrawBorders() [Internal] +//------------------------------------------------------------------------- + +// Bg2 is used by Selectable (and possibly other widgets) to render to the background. +// Unlike our Bg0/1 channel which we uses for RowBg/CellBg/Borders and where we guarantee all shapes to be CPU-clipped, the Bg2 channel being widgets-facing will rely on regular ClipRect. +void ImGui::TablePushBackgroundChannel() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiTable* table = g.CurrentTable; + + // Optimization: avoid SetCurrentChannel() + PushClipRect() + table->HostBackupInnerClipRect = window->ClipRect; + SetWindowClipRectBeforeSetChannel(window, table->Bg2ClipRectForDrawCmd); + table->DrawSplitter->SetCurrentChannel(window->DrawList, table->Bg2DrawChannelCurrent); +} + +void ImGui::TablePopBackgroundChannel() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiTable* table = g.CurrentTable; + ImGuiTableColumn* column = &table->Columns[table->CurrentColumn]; + + // Optimization: avoid PopClipRect() + SetCurrentChannel() + SetWindowClipRectBeforeSetChannel(window, table->HostBackupInnerClipRect); + table->DrawSplitter->SetCurrentChannel(window->DrawList, column->DrawChannelCurrent); +} + +// Allocate draw channels. Called by TableUpdateLayout() +// - We allocate them following storage order instead of display order so reordering columns won't needlessly +// increase overall dormant memory cost. +// - We isolate headers draw commands in their own channels instead of just altering clip rects. +// This is in order to facilitate merging of draw commands. +// - After crossing FreezeRowsCount, all columns see their current draw channel changed to a second set of channels. +// - We only use the dummy draw channel so we can push a null clipping rectangle into it without affecting other +// channels, while simplifying per-row/per-cell overhead. It will be empty and discarded when merged. +// - We allocate 1 or 2 background draw channels. This is because we know TablePushBackgroundChannel() is only used for +// horizontal spanning. If we allowed vertical spanning we'd need one background draw channel per merge group (1-4). +// Draw channel allocation (before merging): +// - NoClip --> 2+D+1 channels: bg0/1 + bg2 + foreground (same clip rect == always 1 draw call) +// - Clip --> 2+D+N channels +// - FreezeRows --> 2+D+N*2 (unless scrolling value is zero) +// - FreezeRows || FreezeColunns --> 3+D+N*2 (unless scrolling value is zero) +// Where D is 1 if any column is clipped or hidden (dummy channel) otherwise 0. +void ImGui::TableSetupDrawChannels(ImGuiTable* table) +{ + const int freeze_row_multiplier = (table->FreezeRowsCount > 0) ? 2 : 1; + const int channels_for_row = (table->Flags & ImGuiTableFlags_NoClip) ? 1 : table->ColumnsEnabledCount; + const int channels_for_bg = 1 + 1 * freeze_row_multiplier; + const int channels_for_dummy = (table->ColumnsEnabledCount < table->ColumnsCount || (memcmp(table->VisibleMaskByIndex, table->EnabledMaskByIndex, ImBitArrayGetStorageSizeInBytes(table->ColumnsCount)) != 0)) ? +1 : 0; + const int channels_total = channels_for_bg + (channels_for_row * freeze_row_multiplier) + channels_for_dummy; + table->DrawSplitter->Split(table->InnerWindow->DrawList, channels_total); + table->DummyDrawChannel = (ImGuiTableDrawChannelIdx)((channels_for_dummy > 0) ? channels_total - 1 : -1); + table->Bg2DrawChannelCurrent = TABLE_DRAW_CHANNEL_BG2_FROZEN; + table->Bg2DrawChannelUnfrozen = (ImGuiTableDrawChannelIdx)((table->FreezeRowsCount > 0) ? 2 + channels_for_row : TABLE_DRAW_CHANNEL_BG2_FROZEN); + + int draw_channel_current = 2; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImGuiTableColumn* column = &table->Columns[column_n]; + if (column->IsVisibleX && column->IsVisibleY) + { + column->DrawChannelFrozen = (ImGuiTableDrawChannelIdx)(draw_channel_current); + column->DrawChannelUnfrozen = (ImGuiTableDrawChannelIdx)(draw_channel_current + (table->FreezeRowsCount > 0 ? channels_for_row + 1 : 0)); + if (!(table->Flags & ImGuiTableFlags_NoClip)) + draw_channel_current++; + } + else + { + column->DrawChannelFrozen = column->DrawChannelUnfrozen = table->DummyDrawChannel; + } + column->DrawChannelCurrent = column->DrawChannelFrozen; + } + + // Initial draw cmd starts with a BgClipRect that matches the one of its host, to facilitate merge draw commands by default. + // All our cell highlight are manually clipped with BgClipRect. When unfreezing it will be made smaller to fit scrolling rect. + // (This technically isn't part of setting up draw channels, but is reasonably related to be done here) + table->BgClipRect = table->InnerClipRect; + table->Bg0ClipRectForDrawCmd = table->OuterWindow->ClipRect; + table->Bg2ClipRectForDrawCmd = table->HostClipRect; + IM_ASSERT(table->BgClipRect.Min.y <= table->BgClipRect.Max.y); +} + +// This function reorder draw channels based on matching clip rectangle, to facilitate merging them. Called by EndTable(). +// For simplicity we call it TableMergeDrawChannels() but in fact it only reorder channels + overwrite ClipRect, +// actual merging is done by table->DrawSplitter.Merge() which is called right after TableMergeDrawChannels(). +// +// Columns where the contents didn't stray off their local clip rectangle can be merged. To achieve +// this we merge their clip rect and make them contiguous in the channel list, so they can be merged +// by the call to DrawSplitter.Merge() following to the call to this function. +// We reorder draw commands by arranging them into a maximum of 4 distinct groups: +// +// 1 group: 2 groups: 2 groups: 4 groups: +// [ 0. ] no freeze [ 0. ] row freeze [ 01 ] col freeze [ 01 ] row+col freeze +// [ .. ] or no scroll [ 2. ] and v-scroll [ .. ] and h-scroll [ 23 ] and v+h-scroll +// +// Each column itself can use 1 channel (row freeze disabled) or 2 channels (row freeze enabled). +// When the contents of a column didn't stray off its limit, we move its channels into the corresponding group +// based on its position (within frozen rows/columns groups or not). +// At the end of the operation our 1-4 groups will each have a ImDrawCmd using the same ClipRect. +// This function assume that each column are pointing to a distinct draw channel, +// otherwise merge_group->ChannelsCount will not match set bit count of merge_group->ChannelsMask. +// +// Column channels will not be merged into one of the 1-4 groups in the following cases: +// - The contents stray off its clipping rectangle (we only compare the MaxX value, not the MinX value). +// Direct ImDrawList calls won't be taken into account by default, if you use them make sure the ImGui:: bounds +// matches, by e.g. calling SetCursorScreenPos(). +// - The channel uses more than one draw command itself. We drop all our attempt at merging stuff here.. +// we could do better but it's going to be rare and probably not worth the hassle. +// Columns for which the draw channel(s) haven't been merged with other will use their own ImDrawCmd. +// +// This function is particularly tricky to understand.. take a breath. +void ImGui::TableMergeDrawChannels(ImGuiTable* table) +{ + ImGuiContext& g = *GImGui; + ImDrawListSplitter* splitter = table->DrawSplitter; + const bool has_freeze_v = (table->FreezeRowsCount > 0); + const bool has_freeze_h = (table->FreezeColumnsCount > 0); + IM_ASSERT(splitter->_Current == 0); + + // Track which groups we are going to attempt to merge, and which channels goes into each group. + struct MergeGroup + { + ImRect ClipRect; + int ChannelsCount = 0; + ImBitArrayPtr ChannelsMask = NULL; + }; + int merge_group_mask = 0x00; + MergeGroup merge_groups[4]; + + // Use a reusable temp buffer for the merge masks as they are dynamically sized. + const int max_draw_channels = (4 + table->ColumnsCount * 2); + const int size_for_masks_bitarrays_one = (int)ImBitArrayGetStorageSizeInBytes(max_draw_channels); + g.TempBuffer.reserve(size_for_masks_bitarrays_one * 5); + memset(g.TempBuffer.Data, 0, size_for_masks_bitarrays_one * 5); + for (int n = 0; n < IM_ARRAYSIZE(merge_groups); n++) + merge_groups[n].ChannelsMask = (ImBitArrayPtr)(void*)(g.TempBuffer.Data + (size_for_masks_bitarrays_one * n)); + ImBitArrayPtr remaining_mask = (ImBitArrayPtr)(void*)(g.TempBuffer.Data + (size_for_masks_bitarrays_one * 4)); + + // 1. Scan channels and take note of those which can be merged + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + if (!IM_BITARRAY_TESTBIT(table->VisibleMaskByIndex, column_n)) + continue; + ImGuiTableColumn* column = &table->Columns[column_n]; + + const int merge_group_sub_count = has_freeze_v ? 2 : 1; + for (int merge_group_sub_n = 0; merge_group_sub_n < merge_group_sub_count; merge_group_sub_n++) + { + const int channel_no = (merge_group_sub_n == 0) ? column->DrawChannelFrozen : column->DrawChannelUnfrozen; + + // Don't attempt to merge if there are multiple draw calls within the column + ImDrawChannel* src_channel = &splitter->_Channels[channel_no]; + if (src_channel->_CmdBuffer.Size > 0 && src_channel->_CmdBuffer.back().ElemCount == 0 && src_channel->_CmdBuffer.back().UserCallback == NULL) // Equivalent of PopUnusedDrawCmd() + src_channel->_CmdBuffer.pop_back(); + if (src_channel->_CmdBuffer.Size != 1) + continue; + + // Find out the width of this merge group and check if it will fit in our column + // (note that we assume that rendering didn't stray on the left direction. we should need a CursorMinPos to detect it) + if (!(column->Flags & ImGuiTableColumnFlags_NoClip)) + { + float content_max_x; + if (!has_freeze_v) + content_max_x = ImMax(column->ContentMaxXUnfrozen, column->ContentMaxXHeadersUsed); // No row freeze + else if (merge_group_sub_n == 0) + content_max_x = ImMax(column->ContentMaxXFrozen, column->ContentMaxXHeadersUsed); // Row freeze: use width before freeze + else + content_max_x = column->ContentMaxXUnfrozen; // Row freeze: use width after freeze + if (content_max_x > column->ClipRect.Max.x) + continue; + } + + const int merge_group_n = (has_freeze_h && column_n < table->FreezeColumnsCount ? 0 : 1) + (has_freeze_v && merge_group_sub_n == 0 ? 0 : 2); + IM_ASSERT(channel_no < max_draw_channels); + MergeGroup* merge_group = &merge_groups[merge_group_n]; + if (merge_group->ChannelsCount == 0) + merge_group->ClipRect = ImRect(+FLT_MAX, +FLT_MAX, -FLT_MAX, -FLT_MAX); + ImBitArraySetBit(merge_group->ChannelsMask, channel_no); + merge_group->ChannelsCount++; + merge_group->ClipRect.Add(src_channel->_CmdBuffer[0].ClipRect); + merge_group_mask |= (1 << merge_group_n); + } + + // Invalidate current draw channel + // (we don't clear DrawChannelFrozen/DrawChannelUnfrozen solely to facilitate debugging/later inspection of data) + column->DrawChannelCurrent = (ImGuiTableDrawChannelIdx)-1; + } + + // [DEBUG] Display merge groups +#if 0 + if (g.IO.KeyShift) + for (int merge_group_n = 0; merge_group_n < IM_ARRAYSIZE(merge_groups); merge_group_n++) + { + MergeGroup* merge_group = &merge_groups[merge_group_n]; + if (merge_group->ChannelsCount == 0) + continue; + char buf[32]; + ImFormatString(buf, 32, "MG%d:%d", merge_group_n, merge_group->ChannelsCount); + ImVec2 text_pos = merge_group->ClipRect.Min + ImVec2(4, 4); + ImVec2 text_size = CalcTextSize(buf, NULL); + GetForegroundDrawList()->AddRectFilled(text_pos, text_pos + text_size, IM_COL32(0, 0, 0, 255)); + GetForegroundDrawList()->AddText(text_pos, IM_COL32(255, 255, 0, 255), buf, NULL); + GetForegroundDrawList()->AddRect(merge_group->ClipRect.Min, merge_group->ClipRect.Max, IM_COL32(255, 255, 0, 255)); + } +#endif + + // 2. Rewrite channel list in our preferred order + if (merge_group_mask != 0) + { + // We skip channel 0 (Bg0/Bg1) and 1 (Bg2 frozen) from the shuffling since they won't move - see channels allocation in TableSetupDrawChannels(). + const int LEADING_DRAW_CHANNELS = 2; + g.DrawChannelsTempMergeBuffer.resize(splitter->_Count - LEADING_DRAW_CHANNELS); // Use shared temporary storage so the allocation gets amortized + ImDrawChannel* dst_tmp = g.DrawChannelsTempMergeBuffer.Data; + ImBitArraySetBitRange(remaining_mask, LEADING_DRAW_CHANNELS, splitter->_Count); + ImBitArrayClearBit(remaining_mask, table->Bg2DrawChannelUnfrozen); + IM_ASSERT(has_freeze_v == false || table->Bg2DrawChannelUnfrozen != TABLE_DRAW_CHANNEL_BG2_FROZEN); + int remaining_count = splitter->_Count - (has_freeze_v ? LEADING_DRAW_CHANNELS + 1 : LEADING_DRAW_CHANNELS); + //ImRect host_rect = (table->InnerWindow == table->OuterWindow) ? table->InnerClipRect : table->HostClipRect; + ImRect host_rect = table->HostClipRect; + for (int merge_group_n = 0; merge_group_n < IM_ARRAYSIZE(merge_groups); merge_group_n++) + { + if (int merge_channels_count = merge_groups[merge_group_n].ChannelsCount) + { + MergeGroup* merge_group = &merge_groups[merge_group_n]; + ImRect merge_clip_rect = merge_group->ClipRect; + + // Extend outer-most clip limits to match those of host, so draw calls can be merged even if + // outer-most columns have some outer padding offsetting them from their parent ClipRect. + // The principal cases this is dealing with are: + // - On a same-window table (not scrolling = single group), all fitting columns ClipRect -> will extend and match host ClipRect -> will merge + // - Columns can use padding and have left-most ClipRect.Min.x and right-most ClipRect.Max.x != from host ClipRect -> will extend and match host ClipRect -> will merge + // FIXME-TABLE FIXME-WORKRECT: We are wasting a merge opportunity on tables without scrolling if column doesn't fit + // within host clip rect, solely because of the half-padding difference between window->WorkRect and window->InnerClipRect. + if ((merge_group_n & 1) == 0 || !has_freeze_h) + merge_clip_rect.Min.x = ImMin(merge_clip_rect.Min.x, host_rect.Min.x); + if ((merge_group_n & 2) == 0 || !has_freeze_v) + merge_clip_rect.Min.y = ImMin(merge_clip_rect.Min.y, host_rect.Min.y); + if ((merge_group_n & 1) != 0) + merge_clip_rect.Max.x = ImMax(merge_clip_rect.Max.x, host_rect.Max.x); + if ((merge_group_n & 2) != 0 && (table->Flags & ImGuiTableFlags_NoHostExtendY) == 0) + merge_clip_rect.Max.y = ImMax(merge_clip_rect.Max.y, host_rect.Max.y); + //GetForegroundDrawList()->AddRect(merge_group->ClipRect.Min, merge_group->ClipRect.Max, IM_COL32(255, 0, 0, 200), 0.0f, 0, 1.0f); // [DEBUG] + //GetForegroundDrawList()->AddLine(merge_group->ClipRect.Min, merge_clip_rect.Min, IM_COL32(255, 100, 0, 200)); + //GetForegroundDrawList()->AddLine(merge_group->ClipRect.Max, merge_clip_rect.Max, IM_COL32(255, 100, 0, 200)); + remaining_count -= merge_group->ChannelsCount; + for (int n = 0; n < (size_for_masks_bitarrays_one >> 2); n++) + remaining_mask[n] &= ~merge_group->ChannelsMask[n]; + for (int n = 0; n < splitter->_Count && merge_channels_count != 0; n++) + { + // Copy + overwrite new clip rect + if (!IM_BITARRAY_TESTBIT(merge_group->ChannelsMask, n)) + continue; + IM_BITARRAY_CLEARBIT(merge_group->ChannelsMask, n); + merge_channels_count--; + + ImDrawChannel* channel = &splitter->_Channels[n]; + IM_ASSERT(channel->_CmdBuffer.Size == 1 && merge_clip_rect.Contains(ImRect(channel->_CmdBuffer[0].ClipRect))); + channel->_CmdBuffer[0].ClipRect = merge_clip_rect.ToVec4(); + memcpy(dst_tmp++, channel, sizeof(ImDrawChannel)); + } + } + + // Make sure Bg2DrawChannelUnfrozen appears in the middle of our groups (whereas Bg0/Bg1 and Bg2 frozen are fixed to 0 and 1) + if (merge_group_n == 1 && has_freeze_v) + memcpy(dst_tmp++, &splitter->_Channels[table->Bg2DrawChannelUnfrozen], sizeof(ImDrawChannel)); + } + + // Append unmergeable channels that we didn't reorder at the end of the list + for (int n = 0; n < splitter->_Count && remaining_count != 0; n++) + { + if (!IM_BITARRAY_TESTBIT(remaining_mask, n)) + continue; + ImDrawChannel* channel = &splitter->_Channels[n]; + memcpy(dst_tmp++, channel, sizeof(ImDrawChannel)); + remaining_count--; + } + IM_ASSERT(dst_tmp == g.DrawChannelsTempMergeBuffer.Data + g.DrawChannelsTempMergeBuffer.Size); + memcpy(splitter->_Channels.Data + LEADING_DRAW_CHANNELS, g.DrawChannelsTempMergeBuffer.Data, (splitter->_Count - LEADING_DRAW_CHANNELS) * sizeof(ImDrawChannel)); + } +} + +// FIXME-TABLE: This is a mess, need to redesign how we render borders (as some are also done in TableEndRow) +void ImGui::TableDrawBorders(ImGuiTable* table) +{ + ImGuiWindow* inner_window = table->InnerWindow; + if (!table->OuterWindow->ClipRect.Overlaps(table->OuterRect)) + return; + + ImDrawList* inner_drawlist = inner_window->DrawList; + table->DrawSplitter->SetCurrentChannel(inner_drawlist, TABLE_DRAW_CHANNEL_BG0); + inner_drawlist->PushClipRect(table->Bg0ClipRectForDrawCmd.Min, table->Bg0ClipRectForDrawCmd.Max, false); + + // Draw inner border and resizing feedback + ImGuiTableInstanceData* table_instance = TableGetInstanceData(table, table->InstanceCurrent); + const float border_size = TABLE_BORDER_SIZE; + const float draw_y1 = table->InnerRect.Min.y; + const float draw_y2_body = table->InnerRect.Max.y; + const float draw_y2_head = table->IsUsingHeaders ? ImMin(table->InnerRect.Max.y, (table->FreezeRowsCount >= 1 ? table->InnerRect.Min.y : table->WorkRect.Min.y) + table_instance->LastFirstRowHeight) : draw_y1; + if (table->Flags & ImGuiTableFlags_BordersInnerV) + { + for (int order_n = 0; order_n < table->ColumnsCount; order_n++) + { + if (!IM_BITARRAY_TESTBIT(table->EnabledMaskByDisplayOrder, order_n)) + continue; + + const int column_n = table->DisplayOrderToIndex[order_n]; + ImGuiTableColumn* column = &table->Columns[column_n]; + const bool is_hovered = (table->HoveredColumnBorder == column_n); + const bool is_resized = (table->ResizedColumn == column_n) && (table->InstanceInteracted == table->InstanceCurrent); + const bool is_resizable = (column->Flags & (ImGuiTableColumnFlags_NoResize | ImGuiTableColumnFlags_NoDirectResize_)) == 0; + const bool is_frozen_separator = (table->FreezeColumnsCount == order_n + 1); + if (column->MaxX > table->InnerClipRect.Max.x && !is_resized) + continue; + + // Decide whether right-most column is visible + if (column->NextEnabledColumn == -1 && !is_resizable) + if ((table->Flags & ImGuiTableFlags_SizingMask_) != ImGuiTableFlags_SizingFixedSame || (table->Flags & ImGuiTableFlags_NoHostExtendX)) + continue; + if (column->MaxX <= column->ClipRect.Min.x) // FIXME-TABLE FIXME-STYLE: Assume BorderSize==1, this is problematic if we want to increase the border size.. + continue; + + // Draw in outer window so right-most column won't be clipped + // Always draw full height border when being resized/hovered, or on the delimitation of frozen column scrolling. + ImU32 col; + float draw_y2; + if (is_hovered || is_resized || is_frozen_separator) + { + draw_y2 = draw_y2_body; + col = is_resized ? GetColorU32(ImGuiCol_SeparatorActive) : is_hovered ? GetColorU32(ImGuiCol_SeparatorHovered) : table->BorderColorStrong; + } + else + { + draw_y2 = (table->Flags & (ImGuiTableFlags_NoBordersInBody | ImGuiTableFlags_NoBordersInBodyUntilResize)) ? draw_y2_head : draw_y2_body; + col = (table->Flags & (ImGuiTableFlags_NoBordersInBody | ImGuiTableFlags_NoBordersInBodyUntilResize)) ? table->BorderColorStrong : table->BorderColorLight; + } + + if (draw_y2 > draw_y1) + inner_drawlist->AddLine(ImVec2(column->MaxX, draw_y1), ImVec2(column->MaxX, draw_y2), col, border_size); + } + } + + // Draw outer border + // FIXME: could use AddRect or explicit VLine/HLine helper? + if (table->Flags & ImGuiTableFlags_BordersOuter) + { + // Display outer border offset by 1 which is a simple way to display it without adding an extra draw call + // (Without the offset, in outer_window it would be rendered behind cells, because child windows are above their + // parent. In inner_window, it won't reach out over scrollbars. Another weird solution would be to display part + // of it in inner window, and the part that's over scrollbars in the outer window..) + // Either solution currently won't allow us to use a larger border size: the border would clipped. + const ImRect outer_border = table->OuterRect; + const ImU32 outer_col = table->BorderColorStrong; + if ((table->Flags & ImGuiTableFlags_BordersOuter) == ImGuiTableFlags_BordersOuter) + { + inner_drawlist->AddRect(outer_border.Min, outer_border.Max, outer_col, 0.0f, 0, border_size); + } + else if (table->Flags & ImGuiTableFlags_BordersOuterV) + { + inner_drawlist->AddLine(outer_border.Min, ImVec2(outer_border.Min.x, outer_border.Max.y), outer_col, border_size); + inner_drawlist->AddLine(ImVec2(outer_border.Max.x, outer_border.Min.y), outer_border.Max, outer_col, border_size); + } + else if (table->Flags & ImGuiTableFlags_BordersOuterH) + { + inner_drawlist->AddLine(outer_border.Min, ImVec2(outer_border.Max.x, outer_border.Min.y), outer_col, border_size); + inner_drawlist->AddLine(ImVec2(outer_border.Min.x, outer_border.Max.y), outer_border.Max, outer_col, border_size); + } + } + if ((table->Flags & ImGuiTableFlags_BordersInnerH) && table->RowPosY2 < table->OuterRect.Max.y) + { + // Draw bottom-most row border + const float border_y = table->RowPosY2; + if (border_y >= table->BgClipRect.Min.y && border_y < table->BgClipRect.Max.y) + inner_drawlist->AddLine(ImVec2(table->BorderX1, border_y), ImVec2(table->BorderX2, border_y), table->BorderColorLight, border_size); + } + + inner_drawlist->PopClipRect(); +} + +//------------------------------------------------------------------------- +// [SECTION] Tables: Sorting +//------------------------------------------------------------------------- +// - TableGetSortSpecs() +// - TableFixColumnSortDirection() [Internal] +// - TableGetColumnNextSortDirection() [Internal] +// - TableSetColumnSortDirection() [Internal] +// - TableSortSpecsSanitize() [Internal] +// - TableSortSpecsBuild() [Internal] +//------------------------------------------------------------------------- + +// Return NULL if no sort specs (most often when ImGuiTableFlags_Sortable is not set) +// When 'sort_specs->SpecsDirty == true' you should sort your data. It will be true when sorting specs have +// changed since last call, or the first time. Make sure to set 'SpecsDirty = false' after sorting, +// else you may wastefully sort your data every frame! +// Lifetime: don't hold on this pointer over multiple frames or past any subsequent call to BeginTable()! +ImGuiTableSortSpecs* ImGui::TableGetSortSpecs() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + IM_ASSERT(table != NULL); + + if (!(table->Flags & ImGuiTableFlags_Sortable)) + return NULL; + + // Require layout (in case TableHeadersRow() hasn't been called) as it may alter IsSortSpecsDirty in some paths. + if (!table->IsLayoutLocked) + TableUpdateLayout(table); + + TableSortSpecsBuild(table); + return &table->SortSpecs; +} + +static inline ImGuiSortDirection TableGetColumnAvailSortDirection(ImGuiTableColumn* column, int n) +{ + IM_ASSERT(n < column->SortDirectionsAvailCount); + return (column->SortDirectionsAvailList >> (n << 1)) & 0x03; +} + +// Fix sort direction if currently set on a value which is unavailable (e.g. activating NoSortAscending/NoSortDescending) +void ImGui::TableFixColumnSortDirection(ImGuiTable* table, ImGuiTableColumn* column) +{ + if (column->SortOrder == -1 || (column->SortDirectionsAvailMask & (1 << column->SortDirection)) != 0) + return; + column->SortDirection = (ImU8)TableGetColumnAvailSortDirection(column, 0); + table->IsSortSpecsDirty = true; +} + +// Calculate next sort direction that would be set after clicking the column +// - If the PreferSortDescending flag is set, we will default to a Descending direction on the first click. +// - Note that the PreferSortAscending flag is never checked, it is essentially the default and therefore a no-op. +IM_STATIC_ASSERT(ImGuiSortDirection_None == 0 && ImGuiSortDirection_Ascending == 1 && ImGuiSortDirection_Descending == 2); +ImGuiSortDirection ImGui::TableGetColumnNextSortDirection(ImGuiTableColumn* column) +{ + IM_ASSERT(column->SortDirectionsAvailCount > 0); + if (column->SortOrder == -1) + return TableGetColumnAvailSortDirection(column, 0); + for (int n = 0; n < 3; n++) + if (column->SortDirection == TableGetColumnAvailSortDirection(column, n)) + return TableGetColumnAvailSortDirection(column, (n + 1) % column->SortDirectionsAvailCount); + IM_ASSERT(0); + return ImGuiSortDirection_None; +} + +// Note that the NoSortAscending/NoSortDescending flags are processed in TableSortSpecsSanitize(), and they may change/revert +// the value of SortDirection. We could technically also do it here but it would be unnecessary and duplicate code. +void ImGui::TableSetColumnSortDirection(int column_n, ImGuiSortDirection sort_direction, bool append_to_sort_specs) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + + if (!(table->Flags & ImGuiTableFlags_SortMulti)) + append_to_sort_specs = false; + if (!(table->Flags & ImGuiTableFlags_SortTristate)) + IM_ASSERT(sort_direction != ImGuiSortDirection_None); + + ImGuiTableColumnIdx sort_order_max = 0; + if (append_to_sort_specs) + for (int other_column_n = 0; other_column_n < table->ColumnsCount; other_column_n++) + sort_order_max = ImMax(sort_order_max, table->Columns[other_column_n].SortOrder); + + ImGuiTableColumn* column = &table->Columns[column_n]; + column->SortDirection = (ImU8)sort_direction; + if (column->SortDirection == ImGuiSortDirection_None) + column->SortOrder = -1; + else if (column->SortOrder == -1 || !append_to_sort_specs) + column->SortOrder = append_to_sort_specs ? sort_order_max + 1 : 0; + + for (int other_column_n = 0; other_column_n < table->ColumnsCount; other_column_n++) + { + ImGuiTableColumn* other_column = &table->Columns[other_column_n]; + if (other_column != column && !append_to_sort_specs) + other_column->SortOrder = -1; + TableFixColumnSortDirection(table, other_column); + } + table->IsSettingsDirty = true; + table->IsSortSpecsDirty = true; +} + +void ImGui::TableSortSpecsSanitize(ImGuiTable* table) +{ + IM_ASSERT(table->Flags & ImGuiTableFlags_Sortable); + + // Clear SortOrder from hidden column and verify that there's no gap or duplicate. + int sort_order_count = 0; + ImU64 sort_order_mask = 0x00; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImGuiTableColumn* column = &table->Columns[column_n]; + if (column->SortOrder != -1 && !column->IsEnabled) + column->SortOrder = -1; + if (column->SortOrder == -1) + continue; + sort_order_count++; + sort_order_mask |= ((ImU64)1 << column->SortOrder); + IM_ASSERT(sort_order_count < (int)sizeof(sort_order_mask) * 8); + } + + const bool need_fix_linearize = ((ImU64)1 << sort_order_count) != (sort_order_mask + 1); + const bool need_fix_single_sort_order = (sort_order_count > 1) && !(table->Flags & ImGuiTableFlags_SortMulti); + if (need_fix_linearize || need_fix_single_sort_order) + { + ImU64 fixed_mask = 0x00; + for (int sort_n = 0; sort_n < sort_order_count; sort_n++) + { + // Fix: Rewrite sort order fields if needed so they have no gap or duplicate. + // (e.g. SortOrder 0 disappeared, SortOrder 1..2 exists --> rewrite then as SortOrder 0..1) + int column_with_smallest_sort_order = -1; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + if ((fixed_mask & ((ImU64)1 << (ImU64)column_n)) == 0 && table->Columns[column_n].SortOrder != -1) + if (column_with_smallest_sort_order == -1 || table->Columns[column_n].SortOrder < table->Columns[column_with_smallest_sort_order].SortOrder) + column_with_smallest_sort_order = column_n; + IM_ASSERT(column_with_smallest_sort_order != -1); + fixed_mask |= ((ImU64)1 << column_with_smallest_sort_order); + table->Columns[column_with_smallest_sort_order].SortOrder = (ImGuiTableColumnIdx)sort_n; + + // Fix: Make sure only one column has a SortOrder if ImGuiTableFlags_MultiSortable is not set. + if (need_fix_single_sort_order) + { + sort_order_count = 1; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + if (column_n != column_with_smallest_sort_order) + table->Columns[column_n].SortOrder = -1; + break; + } + } + } + + // Fallback default sort order (if no column with the ImGuiTableColumnFlags_DefaultSort flag) + if (sort_order_count == 0 && !(table->Flags & ImGuiTableFlags_SortTristate)) + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImGuiTableColumn* column = &table->Columns[column_n]; + if (column->IsEnabled && !(column->Flags & ImGuiTableColumnFlags_NoSort)) + { + sort_order_count = 1; + column->SortOrder = 0; + column->SortDirection = (ImU8)TableGetColumnAvailSortDirection(column, 0); + break; + } + } + + table->SortSpecsCount = (ImGuiTableColumnIdx)sort_order_count; +} + +void ImGui::TableSortSpecsBuild(ImGuiTable* table) +{ + bool dirty = table->IsSortSpecsDirty; + if (dirty) + { + TableSortSpecsSanitize(table); + table->SortSpecsMulti.resize(table->SortSpecsCount <= 1 ? 0 : table->SortSpecsCount); + table->SortSpecs.SpecsDirty = true; // Mark as dirty for user + table->IsSortSpecsDirty = false; // Mark as not dirty for us + } + + // Write output + ImGuiTableColumnSortSpecs* sort_specs = (table->SortSpecsCount == 0) ? NULL : (table->SortSpecsCount == 1) ? &table->SortSpecsSingle : table->SortSpecsMulti.Data; + if (dirty && sort_specs != NULL) + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImGuiTableColumn* column = &table->Columns[column_n]; + if (column->SortOrder == -1) + continue; + IM_ASSERT(column->SortOrder < table->SortSpecsCount); + ImGuiTableColumnSortSpecs* sort_spec = &sort_specs[column->SortOrder]; + sort_spec->ColumnUserID = column->UserID; + sort_spec->ColumnIndex = (ImGuiTableColumnIdx)column_n; + sort_spec->SortOrder = (ImGuiTableColumnIdx)column->SortOrder; + sort_spec->SortDirection = column->SortDirection; + } + + table->SortSpecs.Specs = sort_specs; + table->SortSpecs.SpecsCount = table->SortSpecsCount; +} + +//------------------------------------------------------------------------- +// [SECTION] Tables: Headers +//------------------------------------------------------------------------- +// - TableGetHeaderRowHeight() [Internal] +// - TableHeadersRow() +// - TableHeader() +//------------------------------------------------------------------------- + +float ImGui::TableGetHeaderRowHeight() +{ + // Caring for a minor edge case: + // Calculate row height, for the unlikely case that some labels may be taller than others. + // If we didn't do that, uneven header height would highlight but smaller one before the tallest wouldn't catch input for all height. + // In your custom header row you may omit this all together and just call TableNextRow() without a height... + float row_height = GetTextLineHeight(); + int columns_count = TableGetColumnCount(); + for (int column_n = 0; column_n < columns_count; column_n++) + { + ImGuiTableColumnFlags flags = TableGetColumnFlags(column_n); + if ((flags & ImGuiTableColumnFlags_IsEnabled) && !(flags & ImGuiTableColumnFlags_NoHeaderLabel)) + row_height = ImMax(row_height, CalcTextSize(TableGetColumnName(column_n)).y); + } + row_height += GetStyle().CellPadding.y * 2.0f; + return row_height; +} + +// [Public] This is a helper to output TableHeader() calls based on the column names declared in TableSetupColumn(). +// The intent is that advanced users willing to create customized headers would not need to use this helper +// and can create their own! For example: TableHeader() may be preceeded by Checkbox() or other custom widgets. +// See 'Demo->Tables->Custom headers' for a demonstration of implementing a custom version of this. +// This code is constructed to not make much use of internal functions, as it is intended to be a template to copy. +// FIXME-TABLE: TableOpenContextMenu() and TableGetHeaderRowHeight() are not public. +void ImGui::TableHeadersRow() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + IM_ASSERT(table != NULL && "Need to call TableHeadersRow() after BeginTable()!"); + + // Layout if not already done (this is automatically done by TableNextRow, we do it here solely to facilitate stepping in debugger as it is frequent to step in TableUpdateLayout) + if (!table->IsLayoutLocked) + TableUpdateLayout(table); + + // Open row + const float row_y1 = GetCursorScreenPos().y; + const float row_height = TableGetHeaderRowHeight(); + TableNextRow(ImGuiTableRowFlags_Headers, row_height); + if (table->HostSkipItems) // Merely an optimization, you may skip in your own code. + return; + + const int columns_count = TableGetColumnCount(); + for (int column_n = 0; column_n < columns_count; column_n++) + { + if (!TableSetColumnIndex(column_n)) + continue; + + // Push an id to allow unnamed labels (generally accidental, but let's behave nicely with them) + // In your own code you may omit the PushID/PopID all-together, provided you know they won't collide. + const char* name = (TableGetColumnFlags(column_n) & ImGuiTableColumnFlags_NoHeaderLabel) ? "" : TableGetColumnName(column_n); + PushID(column_n); + TableHeader(name); + PopID(); + } + + // Allow opening popup from the right-most section after the last column. + ImVec2 mouse_pos = ImGui::GetMousePos(); + if (IsMouseReleased(1) && TableGetHoveredColumn() == columns_count) + if (mouse_pos.y >= row_y1 && mouse_pos.y < row_y1 + row_height) + TableOpenContextMenu(-1); // Will open a non-column-specific popup. +} + +// Emit a column header (text + optional sort order) +// We cpu-clip text here so that all columns headers can be merged into a same draw call. +// Note that because of how we cpu-clip and display sorting indicators, you _cannot_ use SameLine() after a TableHeader() +void ImGui::TableHeader(const char* label) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return; + + ImGuiTable* table = g.CurrentTable; + IM_ASSERT(table != NULL && "Need to call TableHeader() after BeginTable()!"); + IM_ASSERT(table->CurrentColumn != -1); + const int column_n = table->CurrentColumn; + ImGuiTableColumn* column = &table->Columns[column_n]; + + // Label + if (label == NULL) + label = ""; + const char* label_end = FindRenderedTextEnd(label); + ImVec2 label_size = CalcTextSize(label, label_end, true); + ImVec2 label_pos = window->DC.CursorPos; + + // If we already got a row height, there's use that. + // FIXME-TABLE: Padding problem if the correct outer-padding CellBgRect strays off our ClipRect? + ImRect cell_r = TableGetCellBgRect(table, column_n); + float label_height = ImMax(label_size.y, table->RowMinHeight - table->RowCellPaddingY * 2.0f); + + // Calculate ideal size for sort order arrow + float w_arrow = 0.0f; + float w_sort_text = 0.0f; + char sort_order_suf[4] = ""; + const float ARROW_SCALE = 0.65f; + if ((table->Flags & ImGuiTableFlags_Sortable) && !(column->Flags & ImGuiTableColumnFlags_NoSort)) + { + w_arrow = ImFloor(g.FontSize * ARROW_SCALE + g.Style.FramePadding.x); + if (column->SortOrder > 0) + { + ImFormatString(sort_order_suf, IM_ARRAYSIZE(sort_order_suf), "%d", column->SortOrder + 1); + w_sort_text = g.Style.ItemInnerSpacing.x + CalcTextSize(sort_order_suf).x; + } + } + + // We feed our unclipped width to the column without writing on CursorMaxPos, so that column is still considering for merging. + float max_pos_x = label_pos.x + label_size.x + w_sort_text + w_arrow; + column->ContentMaxXHeadersUsed = ImMax(column->ContentMaxXHeadersUsed, column->WorkMaxX); + column->ContentMaxXHeadersIdeal = ImMax(column->ContentMaxXHeadersIdeal, max_pos_x); + + // Keep header highlighted when context menu is open. + const bool selected = (table->IsContextPopupOpen && table->ContextPopupColumn == column_n && table->InstanceInteracted == table->InstanceCurrent); + ImGuiID id = window->GetID(label); + ImRect bb(cell_r.Min.x, cell_r.Min.y, cell_r.Max.x, ImMax(cell_r.Max.y, cell_r.Min.y + label_height + g.Style.CellPadding.y * 2.0f)); + ItemSize(ImVec2(0.0f, label_height)); // Don't declare unclipped width, it'll be fed ContentMaxPosHeadersIdeal + if (!ItemAdd(bb, id)) + return; + + //GetForegroundDrawList()->AddRect(cell_r.Min, cell_r.Max, IM_COL32(255, 0, 0, 255)); // [DEBUG] + //GetForegroundDrawList()->AddRect(bb.Min, bb.Max, IM_COL32(255, 0, 0, 255)); // [DEBUG] + + // Using AllowOverlap mode because we cover the whole cell, and we want user to be able to submit subsequent items. + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held, ImGuiButtonFlags_AllowOverlap); + if (held || hovered || selected) + { + const ImU32 col = GetColorU32(held ? ImGuiCol_HeaderActive : hovered ? ImGuiCol_HeaderHovered : ImGuiCol_Header); + //RenderFrame(bb.Min, bb.Max, col, false, 0.0f); + TableSetBgColor(ImGuiTableBgTarget_CellBg, col, table->CurrentColumn); + } + else + { + // Submit single cell bg color in the case we didn't submit a full header row + if ((table->RowFlags & ImGuiTableRowFlags_Headers) == 0) + TableSetBgColor(ImGuiTableBgTarget_CellBg, GetColorU32(ImGuiCol_TableHeaderBg), table->CurrentColumn); + } + RenderNavHighlight(bb, id, ImGuiNavHighlightFlags_TypeThin | ImGuiNavHighlightFlags_NoRounding); + if (held) + table->HeldHeaderColumn = (ImGuiTableColumnIdx)column_n; + window->DC.CursorPos.y -= g.Style.ItemSpacing.y * 0.5f; + + // Drag and drop to re-order columns. + // FIXME-TABLE: Scroll request while reordering a column and it lands out of the scrolling zone. + if (held && (table->Flags & ImGuiTableFlags_Reorderable) && IsMouseDragging(0) && !g.DragDropActive) + { + // While moving a column it will jump on the other side of the mouse, so we also test for MouseDelta.x + table->ReorderColumn = (ImGuiTableColumnIdx)column_n; + table->InstanceInteracted = table->InstanceCurrent; + + // We don't reorder: through the frozen<>unfrozen line, or through a column that is marked with ImGuiTableColumnFlags_NoReorder. + if (g.IO.MouseDelta.x < 0.0f && g.IO.MousePos.x < cell_r.Min.x) + if (ImGuiTableColumn* prev_column = (column->PrevEnabledColumn != -1) ? &table->Columns[column->PrevEnabledColumn] : NULL) + if (!((column->Flags | prev_column->Flags) & ImGuiTableColumnFlags_NoReorder)) + if ((column->IndexWithinEnabledSet < table->FreezeColumnsRequest) == (prev_column->IndexWithinEnabledSet < table->FreezeColumnsRequest)) + table->ReorderColumnDir = -1; + if (g.IO.MouseDelta.x > 0.0f && g.IO.MousePos.x > cell_r.Max.x) + if (ImGuiTableColumn* next_column = (column->NextEnabledColumn != -1) ? &table->Columns[column->NextEnabledColumn] : NULL) + if (!((column->Flags | next_column->Flags) & ImGuiTableColumnFlags_NoReorder)) + if ((column->IndexWithinEnabledSet < table->FreezeColumnsRequest) == (next_column->IndexWithinEnabledSet < table->FreezeColumnsRequest)) + table->ReorderColumnDir = +1; + } + + // Sort order arrow + const float ellipsis_max = ImMax(cell_r.Max.x - w_arrow - w_sort_text, label_pos.x); + if ((table->Flags & ImGuiTableFlags_Sortable) && !(column->Flags & ImGuiTableColumnFlags_NoSort)) + { + if (column->SortOrder != -1) + { + float x = ImMax(cell_r.Min.x, cell_r.Max.x - w_arrow - w_sort_text); + float y = label_pos.y; + if (column->SortOrder > 0) + { + PushStyleColor(ImGuiCol_Text, GetColorU32(ImGuiCol_Text, 0.70f)); + RenderText(ImVec2(x + g.Style.ItemInnerSpacing.x, y), sort_order_suf); + PopStyleColor(); + x += w_sort_text; + } + RenderArrow(window->DrawList, ImVec2(x, y), GetColorU32(ImGuiCol_Text), column->SortDirection == ImGuiSortDirection_Ascending ? ImGuiDir_Up : ImGuiDir_Down, ARROW_SCALE); + } + + // Handle clicking on column header to adjust Sort Order + if (pressed && table->ReorderColumn != column_n) + { + ImGuiSortDirection sort_direction = TableGetColumnNextSortDirection(column); + TableSetColumnSortDirection(column_n, sort_direction, g.IO.KeyShift); + } + } + + // Render clipped label. Clipping here ensure that in the majority of situations, all our header cells will + // be merged into a single draw call. + //window->DrawList->AddCircleFilled(ImVec2(ellipsis_max, label_pos.y), 40, IM_COL32_WHITE); + RenderTextEllipsis(window->DrawList, label_pos, ImVec2(ellipsis_max, label_pos.y + label_height + g.Style.FramePadding.y), ellipsis_max, ellipsis_max, label, label_end, &label_size); + + const bool text_clipped = label_size.x > (ellipsis_max - label_pos.x); + if (text_clipped && hovered && g.ActiveId == 0) + SetItemTooltip("%.*s", (int)(label_end - label), label); + + // We don't use BeginPopupContextItem() because we want the popup to stay up even after the column is hidden + if (IsMouseReleased(1) && IsItemHovered()) + TableOpenContextMenu(column_n); +} + +//------------------------------------------------------------------------- +// [SECTION] Tables: Context Menu +//------------------------------------------------------------------------- +// - TableOpenContextMenu() [Internal] +// - TableDrawContextMenu() [Internal] +//------------------------------------------------------------------------- + +// Use -1 to open menu not specific to a given column. +void ImGui::TableOpenContextMenu(int column_n) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + if (column_n == -1 && table->CurrentColumn != -1) // When called within a column automatically use this one (for consistency) + column_n = table->CurrentColumn; + if (column_n == table->ColumnsCount) // To facilitate using with TableGetHoveredColumn() + column_n = -1; + IM_ASSERT(column_n >= -1 && column_n < table->ColumnsCount); + if (table->Flags & (ImGuiTableFlags_Resizable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_Hideable)) + { + table->IsContextPopupOpen = true; + table->ContextPopupColumn = (ImGuiTableColumnIdx)column_n; + table->InstanceInteracted = table->InstanceCurrent; + const ImGuiID context_menu_id = ImHashStr("##ContextMenu", 0, table->ID); + OpenPopupEx(context_menu_id, ImGuiPopupFlags_None); + } +} + +bool ImGui::TableBeginContextMenuPopup(ImGuiTable* table) +{ + if (!table->IsContextPopupOpen || table->InstanceCurrent != table->InstanceInteracted) + return false; + const ImGuiID context_menu_id = ImHashStr("##ContextMenu", 0, table->ID); + if (BeginPopupEx(context_menu_id, ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoSavedSettings)) + return true; + table->IsContextPopupOpen = false; + return false; +} + +// Output context menu into current window (generally a popup) +// FIXME-TABLE: Ideally this should be writable by the user. Full programmatic access to that data? +void ImGui::TableDrawContextMenu(ImGuiTable* table) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return; + + bool want_separator = false; + const int column_n = (table->ContextPopupColumn >= 0 && table->ContextPopupColumn < table->ColumnsCount) ? table->ContextPopupColumn : -1; + ImGuiTableColumn* column = (column_n != -1) ? &table->Columns[column_n] : NULL; + + // Sizing + if (table->Flags & ImGuiTableFlags_Resizable) + { + if (column != NULL) + { + const bool can_resize = !(column->Flags & ImGuiTableColumnFlags_NoResize) && column->IsEnabled; + if (MenuItem(LocalizeGetMsg(ImGuiLocKey_TableSizeOne), NULL, false, can_resize)) // "###SizeOne" + TableSetColumnWidthAutoSingle(table, column_n); + } + + const char* size_all_desc; + if (table->ColumnsEnabledFixedCount == table->ColumnsEnabledCount && (table->Flags & ImGuiTableFlags_SizingMask_) != ImGuiTableFlags_SizingFixedSame) + size_all_desc = LocalizeGetMsg(ImGuiLocKey_TableSizeAllFit); // "###SizeAll" All fixed + else + size_all_desc = LocalizeGetMsg(ImGuiLocKey_TableSizeAllDefault); // "###SizeAll" All stretch or mixed + if (MenuItem(size_all_desc, NULL)) + TableSetColumnWidthAutoAll(table); + want_separator = true; + } + + // Ordering + if (table->Flags & ImGuiTableFlags_Reorderable) + { + if (MenuItem(LocalizeGetMsg(ImGuiLocKey_TableResetOrder), NULL, false, !table->IsDefaultDisplayOrder)) + table->IsResetDisplayOrderRequest = true; + want_separator = true; + } + + // Reset all (should work but seems unnecessary/noisy to expose?) + //if (MenuItem("Reset all")) + // table->IsResetAllRequest = true; + + // Sorting + // (modify TableOpenContextMenu() to add _Sortable flag if enabling this) +#if 0 + if ((table->Flags & ImGuiTableFlags_Sortable) && column != NULL && (column->Flags & ImGuiTableColumnFlags_NoSort) == 0) + { + if (want_separator) + Separator(); + want_separator = true; + + bool append_to_sort_specs = g.IO.KeyShift; + if (MenuItem("Sort in Ascending Order", NULL, column->SortOrder != -1 && column->SortDirection == ImGuiSortDirection_Ascending, (column->Flags & ImGuiTableColumnFlags_NoSortAscending) == 0)) + TableSetColumnSortDirection(table, column_n, ImGuiSortDirection_Ascending, append_to_sort_specs); + if (MenuItem("Sort in Descending Order", NULL, column->SortOrder != -1 && column->SortDirection == ImGuiSortDirection_Descending, (column->Flags & ImGuiTableColumnFlags_NoSortDescending) == 0)) + TableSetColumnSortDirection(table, column_n, ImGuiSortDirection_Descending, append_to_sort_specs); + } +#endif + + // Hiding / Visibility + if (table->Flags & ImGuiTableFlags_Hideable) + { + if (want_separator) + Separator(); + want_separator = true; + + PushItemFlag(ImGuiItemFlags_SelectableDontClosePopup, true); + for (int other_column_n = 0; other_column_n < table->ColumnsCount; other_column_n++) + { + ImGuiTableColumn* other_column = &table->Columns[other_column_n]; + if (other_column->Flags & ImGuiTableColumnFlags_Disabled) + continue; + + const char* name = TableGetColumnName(table, other_column_n); + if (name == NULL || name[0] == 0) + name = ""; + + // Make sure we can't hide the last active column + bool menu_item_active = (other_column->Flags & ImGuiTableColumnFlags_NoHide) ? false : true; + if (other_column->IsUserEnabled && table->ColumnsEnabledCount <= 1) + menu_item_active = false; + if (MenuItem(name, NULL, other_column->IsUserEnabled, menu_item_active)) + other_column->IsUserEnabledNextFrame = !other_column->IsUserEnabled; + } + PopItemFlag(); + } +} + +//------------------------------------------------------------------------- +// [SECTION] Tables: Settings (.ini data) +//------------------------------------------------------------------------- +// FIXME: The binding/finding/creating flow are too confusing. +//------------------------------------------------------------------------- +// - TableSettingsInit() [Internal] +// - TableSettingsCalcChunkSize() [Internal] +// - TableSettingsCreate() [Internal] +// - TableSettingsFindByID() [Internal] +// - TableGetBoundSettings() [Internal] +// - TableResetSettings() +// - TableSaveSettings() [Internal] +// - TableLoadSettings() [Internal] +// - TableSettingsHandler_ClearAll() [Internal] +// - TableSettingsHandler_ApplyAll() [Internal] +// - TableSettingsHandler_ReadOpen() [Internal] +// - TableSettingsHandler_ReadLine() [Internal] +// - TableSettingsHandler_WriteAll() [Internal] +// - TableSettingsInstallHandler() [Internal] +//------------------------------------------------------------------------- +// [Init] 1: TableSettingsHandler_ReadXXXX() Load and parse .ini file into TableSettings. +// [Main] 2: TableLoadSettings() When table is created, bind Table to TableSettings, serialize TableSettings data into Table. +// [Main] 3: TableSaveSettings() When table properties are modified, serialize Table data into bound or new TableSettings, mark .ini as dirty. +// [Main] 4: TableSettingsHandler_WriteAll() When .ini file is dirty (which can come from other source), save TableSettings into .ini file. +//------------------------------------------------------------------------- + +// Clear and initialize empty settings instance +static void TableSettingsInit(ImGuiTableSettings* settings, ImGuiID id, int columns_count, int columns_count_max) +{ + IM_PLACEMENT_NEW(settings) ImGuiTableSettings(); + ImGuiTableColumnSettings* settings_column = settings->GetColumnSettings(); + for (int n = 0; n < columns_count_max; n++, settings_column++) + IM_PLACEMENT_NEW(settings_column) ImGuiTableColumnSettings(); + settings->ID = id; + settings->ColumnsCount = (ImGuiTableColumnIdx)columns_count; + settings->ColumnsCountMax = (ImGuiTableColumnIdx)columns_count_max; + settings->WantApply = true; +} + +static size_t TableSettingsCalcChunkSize(int columns_count) +{ + return sizeof(ImGuiTableSettings) + (size_t)columns_count * sizeof(ImGuiTableColumnSettings); +} + +ImGuiTableSettings* ImGui::TableSettingsCreate(ImGuiID id, int columns_count) +{ + ImGuiContext& g = *GImGui; + ImGuiTableSettings* settings = g.SettingsTables.alloc_chunk(TableSettingsCalcChunkSize(columns_count)); + TableSettingsInit(settings, id, columns_count, columns_count); + return settings; +} + +// Find existing settings +ImGuiTableSettings* ImGui::TableSettingsFindByID(ImGuiID id) +{ + // FIXME-OPT: Might want to store a lookup map for this? + ImGuiContext& g = *GImGui; + for (ImGuiTableSettings* settings = g.SettingsTables.begin(); settings != NULL; settings = g.SettingsTables.next_chunk(settings)) + if (settings->ID == id) + return settings; + return NULL; +} + +// Get settings for a given table, NULL if none +ImGuiTableSettings* ImGui::TableGetBoundSettings(ImGuiTable* table) +{ + if (table->SettingsOffset != -1) + { + ImGuiContext& g = *GImGui; + ImGuiTableSettings* settings = g.SettingsTables.ptr_from_offset(table->SettingsOffset); + IM_ASSERT(settings->ID == table->ID); + if (settings->ColumnsCountMax >= table->ColumnsCount) + return settings; // OK + settings->ID = 0; // Invalidate storage, we won't fit because of a count change + } + return NULL; +} + +// Restore initial state of table (with or without saved settings) +void ImGui::TableResetSettings(ImGuiTable* table) +{ + table->IsInitializing = table->IsSettingsDirty = true; + table->IsResetAllRequest = false; + table->IsSettingsRequestLoad = false; // Don't reload from ini + table->SettingsLoadedFlags = ImGuiTableFlags_None; // Mark as nothing loaded so our initialized data becomes authoritative +} + +void ImGui::TableSaveSettings(ImGuiTable* table) +{ + table->IsSettingsDirty = false; + if (table->Flags & ImGuiTableFlags_NoSavedSettings) + return; + + // Bind or create settings data + ImGuiContext& g = *GImGui; + ImGuiTableSettings* settings = TableGetBoundSettings(table); + if (settings == NULL) + { + settings = TableSettingsCreate(table->ID, table->ColumnsCount); + table->SettingsOffset = g.SettingsTables.offset_from_ptr(settings); + } + settings->ColumnsCount = (ImGuiTableColumnIdx)table->ColumnsCount; + + // Serialize ImGuiTable/ImGuiTableColumn into ImGuiTableSettings/ImGuiTableColumnSettings + IM_ASSERT(settings->ID == table->ID); + IM_ASSERT(settings->ColumnsCount == table->ColumnsCount && settings->ColumnsCountMax >= settings->ColumnsCount); + ImGuiTableColumn* column = table->Columns.Data; + ImGuiTableColumnSettings* column_settings = settings->GetColumnSettings(); + + bool save_ref_scale = false; + settings->SaveFlags = ImGuiTableFlags_None; + for (int n = 0; n < table->ColumnsCount; n++, column++, column_settings++) + { + const float width_or_weight = (column->Flags & ImGuiTableColumnFlags_WidthStretch) ? column->StretchWeight : column->WidthRequest; + column_settings->WidthOrWeight = width_or_weight; + column_settings->Index = (ImGuiTableColumnIdx)n; + column_settings->DisplayOrder = column->DisplayOrder; + column_settings->SortOrder = column->SortOrder; + column_settings->SortDirection = column->SortDirection; + column_settings->IsEnabled = column->IsUserEnabled; + column_settings->IsStretch = (column->Flags & ImGuiTableColumnFlags_WidthStretch) ? 1 : 0; + if ((column->Flags & ImGuiTableColumnFlags_WidthStretch) == 0) + save_ref_scale = true; + + // We skip saving some data in the .ini file when they are unnecessary to restore our state. + // Note that fixed width where initial width was derived from auto-fit will always be saved as InitStretchWeightOrWidth will be 0.0f. + // FIXME-TABLE: We don't have logic to easily compare SortOrder to DefaultSortOrder yet so it's always saved when present. + if (width_or_weight != column->InitStretchWeightOrWidth) + settings->SaveFlags |= ImGuiTableFlags_Resizable; + if (column->DisplayOrder != n) + settings->SaveFlags |= ImGuiTableFlags_Reorderable; + if (column->SortOrder != -1) + settings->SaveFlags |= ImGuiTableFlags_Sortable; + if (column->IsUserEnabled != ((column->Flags & ImGuiTableColumnFlags_DefaultHide) == 0)) + settings->SaveFlags |= ImGuiTableFlags_Hideable; + } + settings->SaveFlags &= table->Flags; + settings->RefScale = save_ref_scale ? table->RefScale : 0.0f; + + MarkIniSettingsDirty(); +} + +void ImGui::TableLoadSettings(ImGuiTable* table) +{ + ImGuiContext& g = *GImGui; + table->IsSettingsRequestLoad = false; + if (table->Flags & ImGuiTableFlags_NoSavedSettings) + return; + + // Bind settings + ImGuiTableSettings* settings; + if (table->SettingsOffset == -1) + { + settings = TableSettingsFindByID(table->ID); + if (settings == NULL) + return; + if (settings->ColumnsCount != table->ColumnsCount) // Allow settings if columns count changed. We could otherwise decide to return... + table->IsSettingsDirty = true; + table->SettingsOffset = g.SettingsTables.offset_from_ptr(settings); + } + else + { + settings = TableGetBoundSettings(table); + } + + table->SettingsLoadedFlags = settings->SaveFlags; + table->RefScale = settings->RefScale; + + // Serialize ImGuiTableSettings/ImGuiTableColumnSettings into ImGuiTable/ImGuiTableColumn + ImGuiTableColumnSettings* column_settings = settings->GetColumnSettings(); + ImU64 display_order_mask = 0; + for (int data_n = 0; data_n < settings->ColumnsCount; data_n++, column_settings++) + { + int column_n = column_settings->Index; + if (column_n < 0 || column_n >= table->ColumnsCount) + continue; + + ImGuiTableColumn* column = &table->Columns[column_n]; + if (settings->SaveFlags & ImGuiTableFlags_Resizable) + { + if (column_settings->IsStretch) + column->StretchWeight = column_settings->WidthOrWeight; + else + column->WidthRequest = column_settings->WidthOrWeight; + column->AutoFitQueue = 0x00; + } + if (settings->SaveFlags & ImGuiTableFlags_Reorderable) + column->DisplayOrder = column_settings->DisplayOrder; + else + column->DisplayOrder = (ImGuiTableColumnIdx)column_n; + display_order_mask |= (ImU64)1 << column->DisplayOrder; + column->IsUserEnabled = column->IsUserEnabledNextFrame = column_settings->IsEnabled; + column->SortOrder = column_settings->SortOrder; + column->SortDirection = column_settings->SortDirection; + } + + // Validate and fix invalid display order data + const ImU64 expected_display_order_mask = (settings->ColumnsCount == 64) ? ~0 : ((ImU64)1 << settings->ColumnsCount) - 1; + if (display_order_mask != expected_display_order_mask) + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + table->Columns[column_n].DisplayOrder = (ImGuiTableColumnIdx)column_n; + + // Rebuild index + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + table->DisplayOrderToIndex[table->Columns[column_n].DisplayOrder] = (ImGuiTableColumnIdx)column_n; +} + +static void TableSettingsHandler_ClearAll(ImGuiContext* ctx, ImGuiSettingsHandler*) +{ + ImGuiContext& g = *ctx; + for (int i = 0; i != g.Tables.GetMapSize(); i++) + if (ImGuiTable* table = g.Tables.TryGetMapData(i)) + table->SettingsOffset = -1; + g.SettingsTables.clear(); +} + +// Apply to existing windows (if any) +static void TableSettingsHandler_ApplyAll(ImGuiContext* ctx, ImGuiSettingsHandler*) +{ + ImGuiContext& g = *ctx; + for (int i = 0; i != g.Tables.GetMapSize(); i++) + if (ImGuiTable* table = g.Tables.TryGetMapData(i)) + { + table->IsSettingsRequestLoad = true; + table->SettingsOffset = -1; + } +} + +static void* TableSettingsHandler_ReadOpen(ImGuiContext*, ImGuiSettingsHandler*, const char* name) +{ + ImGuiID id = 0; + int columns_count = 0; + if (sscanf(name, "0x%08X,%d", &id, &columns_count) < 2) + return NULL; + + if (ImGuiTableSettings* settings = ImGui::TableSettingsFindByID(id)) + { + if (settings->ColumnsCountMax >= columns_count) + { + TableSettingsInit(settings, id, columns_count, settings->ColumnsCountMax); // Recycle + return settings; + } + settings->ID = 0; // Invalidate storage, we won't fit because of a count change + } + return ImGui::TableSettingsCreate(id, columns_count); +} + +static void TableSettingsHandler_ReadLine(ImGuiContext*, ImGuiSettingsHandler*, void* entry, const char* line) +{ + // "Column 0 UserID=0x42AD2D21 Width=100 Visible=1 Order=0 Sort=0v" + ImGuiTableSettings* settings = (ImGuiTableSettings*)entry; + float f = 0.0f; + int column_n = 0, r = 0, n = 0; + + if (sscanf(line, "RefScale=%f", &f) == 1) { settings->RefScale = f; return; } + + if (sscanf(line, "Column %d%n", &column_n, &r) == 1) + { + if (column_n < 0 || column_n >= settings->ColumnsCount) + return; + line = ImStrSkipBlank(line + r); + char c = 0; + ImGuiTableColumnSettings* column = settings->GetColumnSettings() + column_n; + column->Index = (ImGuiTableColumnIdx)column_n; + if (sscanf(line, "UserID=0x%08X%n", (ImU32*)&n, &r)==1) { line = ImStrSkipBlank(line + r); column->UserID = (ImGuiID)n; } + if (sscanf(line, "Width=%d%n", &n, &r) == 1) { line = ImStrSkipBlank(line + r); column->WidthOrWeight = (float)n; column->IsStretch = 0; settings->SaveFlags |= ImGuiTableFlags_Resizable; } + if (sscanf(line, "Weight=%f%n", &f, &r) == 1) { line = ImStrSkipBlank(line + r); column->WidthOrWeight = f; column->IsStretch = 1; settings->SaveFlags |= ImGuiTableFlags_Resizable; } + if (sscanf(line, "Visible=%d%n", &n, &r) == 1) { line = ImStrSkipBlank(line + r); column->IsEnabled = (ImU8)n; settings->SaveFlags |= ImGuiTableFlags_Hideable; } + if (sscanf(line, "Order=%d%n", &n, &r) == 1) { line = ImStrSkipBlank(line + r); column->DisplayOrder = (ImGuiTableColumnIdx)n; settings->SaveFlags |= ImGuiTableFlags_Reorderable; } + if (sscanf(line, "Sort=%d%c%n", &n, &c, &r) == 2) { line = ImStrSkipBlank(line + r); column->SortOrder = (ImGuiTableColumnIdx)n; column->SortDirection = (c == '^') ? ImGuiSortDirection_Descending : ImGuiSortDirection_Ascending; settings->SaveFlags |= ImGuiTableFlags_Sortable; } + } +} + +static void TableSettingsHandler_WriteAll(ImGuiContext* ctx, ImGuiSettingsHandler* handler, ImGuiTextBuffer* buf) +{ + ImGuiContext& g = *ctx; + for (ImGuiTableSettings* settings = g.SettingsTables.begin(); settings != NULL; settings = g.SettingsTables.next_chunk(settings)) + { + if (settings->ID == 0) // Skip ditched settings + continue; + + // TableSaveSettings() may clear some of those flags when we establish that the data can be stripped + // (e.g. Order was unchanged) + const bool save_size = (settings->SaveFlags & ImGuiTableFlags_Resizable) != 0; + const bool save_visible = (settings->SaveFlags & ImGuiTableFlags_Hideable) != 0; + const bool save_order = (settings->SaveFlags & ImGuiTableFlags_Reorderable) != 0; + const bool save_sort = (settings->SaveFlags & ImGuiTableFlags_Sortable) != 0; + if (!save_size && !save_visible && !save_order && !save_sort) + continue; + + buf->reserve(buf->size() + 30 + settings->ColumnsCount * 50); // ballpark reserve + buf->appendf("[%s][0x%08X,%d]\n", handler->TypeName, settings->ID, settings->ColumnsCount); + if (settings->RefScale != 0.0f) + buf->appendf("RefScale=%g\n", settings->RefScale); + ImGuiTableColumnSettings* column = settings->GetColumnSettings(); + for (int column_n = 0; column_n < settings->ColumnsCount; column_n++, column++) + { + // "Column 0 UserID=0x42AD2D21 Width=100 Visible=1 Order=0 Sort=0v" + bool save_column = column->UserID != 0 || save_size || save_visible || save_order || (save_sort && column->SortOrder != -1); + if (!save_column) + continue; + buf->appendf("Column %-2d", column_n); + if (column->UserID != 0) { buf->appendf(" UserID=%08X", column->UserID); } + if (save_size && column->IsStretch) { buf->appendf(" Weight=%.4f", column->WidthOrWeight); } + if (save_size && !column->IsStretch) { buf->appendf(" Width=%d", (int)column->WidthOrWeight); } + if (save_visible) { buf->appendf(" Visible=%d", column->IsEnabled); } + if (save_order) { buf->appendf(" Order=%d", column->DisplayOrder); } + if (save_sort && column->SortOrder != -1) { buf->appendf(" Sort=%d%c", column->SortOrder, (column->SortDirection == ImGuiSortDirection_Ascending) ? 'v' : '^'); } + buf->append("\n"); + } + buf->append("\n"); + } +} + +void ImGui::TableSettingsAddSettingsHandler() +{ + ImGuiSettingsHandler ini_handler; + ini_handler.TypeName = "Table"; + ini_handler.TypeHash = ImHashStr("Table"); + ini_handler.ClearAllFn = TableSettingsHandler_ClearAll; + ini_handler.ReadOpenFn = TableSettingsHandler_ReadOpen; + ini_handler.ReadLineFn = TableSettingsHandler_ReadLine; + ini_handler.ApplyAllFn = TableSettingsHandler_ApplyAll; + ini_handler.WriteAllFn = TableSettingsHandler_WriteAll; + AddSettingsHandler(&ini_handler); +} + +//------------------------------------------------------------------------- +// [SECTION] Tables: Garbage Collection +//------------------------------------------------------------------------- +// - TableRemove() [Internal] +// - TableGcCompactTransientBuffers() [Internal] +// - TableGcCompactSettings() [Internal] +//------------------------------------------------------------------------- + +// Remove Table (currently only used by TestEngine) +void ImGui::TableRemove(ImGuiTable* table) +{ + //IMGUI_DEBUG_PRINT("TableRemove() id=0x%08X\n", table->ID); + ImGuiContext& g = *GImGui; + int table_idx = g.Tables.GetIndex(table); + //memset(table->RawData.Data, 0, table->RawData.size_in_bytes()); + //memset(table, 0, sizeof(ImGuiTable)); + g.Tables.Remove(table->ID, table); + g.TablesLastTimeActive[table_idx] = -1.0f; +} + +// Free up/compact internal Table buffers for when it gets unused +void ImGui::TableGcCompactTransientBuffers(ImGuiTable* table) +{ + //IMGUI_DEBUG_PRINT("TableGcCompactTransientBuffers() id=0x%08X\n", table->ID); + ImGuiContext& g = *GImGui; + IM_ASSERT(table->MemoryCompacted == false); + table->SortSpecs.Specs = NULL; + table->SortSpecsMulti.clear(); + table->IsSortSpecsDirty = true; // FIXME: In theory shouldn't have to leak into user performing a sort on resume. + table->ColumnsNames.clear(); + table->MemoryCompacted = true; + for (int n = 0; n < table->ColumnsCount; n++) + table->Columns[n].NameOffset = -1; + g.TablesLastTimeActive[g.Tables.GetIndex(table)] = -1.0f; +} + +void ImGui::TableGcCompactTransientBuffers(ImGuiTableTempData* temp_data) +{ + temp_data->DrawSplitter.ClearFreeMemory(); + temp_data->LastTimeActive = -1.0f; +} + +// Compact and remove unused settings data (currently only used by TestEngine) +void ImGui::TableGcCompactSettings() +{ + ImGuiContext& g = *GImGui; + int required_memory = 0; + for (ImGuiTableSettings* settings = g.SettingsTables.begin(); settings != NULL; settings = g.SettingsTables.next_chunk(settings)) + if (settings->ID != 0) + required_memory += (int)TableSettingsCalcChunkSize(settings->ColumnsCount); + if (required_memory == g.SettingsTables.Buf.Size) + return; + ImChunkStream new_chunk_stream; + new_chunk_stream.Buf.reserve(required_memory); + for (ImGuiTableSettings* settings = g.SettingsTables.begin(); settings != NULL; settings = g.SettingsTables.next_chunk(settings)) + if (settings->ID != 0) + memcpy(new_chunk_stream.alloc_chunk(TableSettingsCalcChunkSize(settings->ColumnsCount)), settings, TableSettingsCalcChunkSize(settings->ColumnsCount)); + g.SettingsTables.swap(new_chunk_stream); +} + + +//------------------------------------------------------------------------- +// [SECTION] Tables: Debugging +//------------------------------------------------------------------------- +// - DebugNodeTable() [Internal] +//------------------------------------------------------------------------- + +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + +static const char* DebugNodeTableGetSizingPolicyDesc(ImGuiTableFlags sizing_policy) +{ + sizing_policy &= ImGuiTableFlags_SizingMask_; + if (sizing_policy == ImGuiTableFlags_SizingFixedFit) { return "FixedFit"; } + if (sizing_policy == ImGuiTableFlags_SizingFixedSame) { return "FixedSame"; } + if (sizing_policy == ImGuiTableFlags_SizingStretchProp) { return "StretchProp"; } + if (sizing_policy == ImGuiTableFlags_SizingStretchSame) { return "StretchSame"; } + return "N/A"; +} + +void ImGui::DebugNodeTable(ImGuiTable* table) +{ + const bool is_active = (table->LastFrameActive >= GetFrameCount() - 2); // Note that fully clipped early out scrolling tables will appear as inactive here. + if (!is_active) { PushStyleColor(ImGuiCol_Text, GetStyleColorVec4(ImGuiCol_TextDisabled)); } + bool open = TreeNode(table, "Table 0x%08X (%d columns, in '%s')%s", table->ID, table->ColumnsCount, table->OuterWindow->Name, is_active ? "" : " *Inactive*"); + if (!is_active) { PopStyleColor(); } + if (IsItemHovered()) + GetForegroundDrawList()->AddRect(table->OuterRect.Min, table->OuterRect.Max, IM_COL32(255, 255, 0, 255)); + if (IsItemVisible() && table->HoveredColumnBody != -1) + GetForegroundDrawList()->AddRect(GetItemRectMin(), GetItemRectMax(), IM_COL32(255, 255, 0, 255)); + if (!open) + return; + if (table->InstanceCurrent > 0) + Text("** %d instances of same table! Some data below will refer to last instance.", table->InstanceCurrent + 1); + bool clear_settings = SmallButton("Clear settings"); + BulletText("OuterRect: Pos: (%.1f,%.1f) Size: (%.1f,%.1f) Sizing: '%s'", table->OuterRect.Min.x, table->OuterRect.Min.y, table->OuterRect.GetWidth(), table->OuterRect.GetHeight(), DebugNodeTableGetSizingPolicyDesc(table->Flags)); + BulletText("ColumnsGivenWidth: %.1f, ColumnsAutoFitWidth: %.1f, InnerWidth: %.1f%s", table->ColumnsGivenWidth, table->ColumnsAutoFitWidth, table->InnerWidth, table->InnerWidth == 0.0f ? " (auto)" : ""); + BulletText("CellPaddingX: %.1f, CellSpacingX: %.1f/%.1f, OuterPaddingX: %.1f", table->CellPaddingX, table->CellSpacingX1, table->CellSpacingX2, table->OuterPaddingX); + BulletText("HoveredColumnBody: %d, HoveredColumnBorder: %d", table->HoveredColumnBody, table->HoveredColumnBorder); + BulletText("ResizedColumn: %d, ReorderColumn: %d, HeldHeaderColumn: %d", table->ResizedColumn, table->ReorderColumn, table->HeldHeaderColumn); + for (int n = 0; n < table->InstanceCurrent + 1; n++) + { + ImGuiTableInstanceData* table_instance = TableGetInstanceData(table, n); + BulletText("Instance %d: HoveredRow: %d, LastOuterHeight: %.2f", n, table_instance->HoveredRowLast, table_instance->LastOuterHeight); + } + //BulletText("BgDrawChannels: %d/%d", 0, table->BgDrawChannelUnfrozen); + float sum_weights = 0.0f; + for (int n = 0; n < table->ColumnsCount; n++) + if (table->Columns[n].Flags & ImGuiTableColumnFlags_WidthStretch) + sum_weights += table->Columns[n].StretchWeight; + for (int n = 0; n < table->ColumnsCount; n++) + { + ImGuiTableColumn* column = &table->Columns[n]; + const char* name = TableGetColumnName(table, n); + char buf[512]; + ImFormatString(buf, IM_ARRAYSIZE(buf), + "Column %d order %d '%s': offset %+.2f to %+.2f%s\n" + "Enabled: %d, VisibleX/Y: %d/%d, RequestOutput: %d, SkipItems: %d, DrawChannels: %d,%d\n" + "WidthGiven: %.1f, Request/Auto: %.1f/%.1f, StretchWeight: %.3f (%.1f%%)\n" + "MinX: %.1f, MaxX: %.1f (%+.1f), ClipRect: %.1f to %.1f (+%.1f)\n" + "ContentWidth: %.1f,%.1f, HeadersUsed/Ideal %.1f/%.1f\n" + "Sort: %d%s, UserID: 0x%08X, Flags: 0x%04X: %s%s%s..", + n, column->DisplayOrder, name, column->MinX - table->WorkRect.Min.x, column->MaxX - table->WorkRect.Min.x, (n < table->FreezeColumnsRequest) ? " (Frozen)" : "", + column->IsEnabled, column->IsVisibleX, column->IsVisibleY, column->IsRequestOutput, column->IsSkipItems, column->DrawChannelFrozen, column->DrawChannelUnfrozen, + column->WidthGiven, column->WidthRequest, column->WidthAuto, column->StretchWeight, column->StretchWeight > 0.0f ? (column->StretchWeight / sum_weights) * 100.0f : 0.0f, + column->MinX, column->MaxX, column->MaxX - column->MinX, column->ClipRect.Min.x, column->ClipRect.Max.x, column->ClipRect.Max.x - column->ClipRect.Min.x, + column->ContentMaxXFrozen - column->WorkMinX, column->ContentMaxXUnfrozen - column->WorkMinX, column->ContentMaxXHeadersUsed - column->WorkMinX, column->ContentMaxXHeadersIdeal - column->WorkMinX, + column->SortOrder, (column->SortDirection == ImGuiSortDirection_Ascending) ? " (Asc)" : (column->SortDirection == ImGuiSortDirection_Descending) ? " (Des)" : "", column->UserID, column->Flags, + (column->Flags & ImGuiTableColumnFlags_WidthStretch) ? "WidthStretch " : "", + (column->Flags & ImGuiTableColumnFlags_WidthFixed) ? "WidthFixed " : "", + (column->Flags & ImGuiTableColumnFlags_NoResize) ? "NoResize " : ""); + Bullet(); + Selectable(buf); + if (IsItemHovered()) + { + ImRect r(column->MinX, table->OuterRect.Min.y, column->MaxX, table->OuterRect.Max.y); + GetForegroundDrawList()->AddRect(r.Min, r.Max, IM_COL32(255, 255, 0, 255)); + } + } + if (ImGuiTableSettings* settings = TableGetBoundSettings(table)) + DebugNodeTableSettings(settings); + if (clear_settings) + table->IsResetAllRequest = true; + TreePop(); +} + +void ImGui::DebugNodeTableSettings(ImGuiTableSettings* settings) +{ + if (!TreeNode((void*)(intptr_t)settings->ID, "Settings 0x%08X (%d columns)", settings->ID, settings->ColumnsCount)) + return; + BulletText("SaveFlags: 0x%08X", settings->SaveFlags); + BulletText("ColumnsCount: %d (max %d)", settings->ColumnsCount, settings->ColumnsCountMax); + for (int n = 0; n < settings->ColumnsCount; n++) + { + ImGuiTableColumnSettings* column_settings = &settings->GetColumnSettings()[n]; + ImGuiSortDirection sort_dir = (column_settings->SortOrder != -1) ? (ImGuiSortDirection)column_settings->SortDirection : ImGuiSortDirection_None; + BulletText("Column %d Order %d SortOrder %d %s Vis %d %s %7.3f UserID 0x%08X", + n, column_settings->DisplayOrder, column_settings->SortOrder, + (sort_dir == ImGuiSortDirection_Ascending) ? "Asc" : (sort_dir == ImGuiSortDirection_Descending) ? "Des" : "---", + column_settings->IsEnabled, column_settings->IsStretch ? "Weight" : "Width ", column_settings->WidthOrWeight, column_settings->UserID); + } + TreePop(); +} + +#else // #ifndef IMGUI_DISABLE_DEBUG_TOOLS + +void ImGui::DebugNodeTable(ImGuiTable*) {} +void ImGui::DebugNodeTableSettings(ImGuiTableSettings*) {} + +#endif + + +//------------------------------------------------------------------------- +// [SECTION] Columns, BeginColumns, EndColumns, etc. +// (This is a legacy API, prefer using BeginTable/EndTable!) +//------------------------------------------------------------------------- +// FIXME: sizing is lossy when columns width is very small (default width may turn negative etc.) +//------------------------------------------------------------------------- +// - SetWindowClipRectBeforeSetChannel() [Internal] +// - GetColumnIndex() +// - GetColumnsCount() +// - GetColumnOffset() +// - GetColumnWidth() +// - SetColumnOffset() +// - SetColumnWidth() +// - PushColumnClipRect() [Internal] +// - PushColumnsBackground() [Internal] +// - PopColumnsBackground() [Internal] +// - FindOrCreateColumns() [Internal] +// - GetColumnsID() [Internal] +// - BeginColumns() +// - NextColumn() +// - EndColumns() +// - Columns() +//------------------------------------------------------------------------- + +// [Internal] Small optimization to avoid calls to PopClipRect/SetCurrentChannel/PushClipRect in sequences, +// they would meddle many times with the underlying ImDrawCmd. +// Instead, we do a preemptive overwrite of clipping rectangle _without_ altering the command-buffer and let +// the subsequent single call to SetCurrentChannel() does it things once. +void ImGui::SetWindowClipRectBeforeSetChannel(ImGuiWindow* window, const ImRect& clip_rect) +{ + ImVec4 clip_rect_vec4 = clip_rect.ToVec4(); + window->ClipRect = clip_rect; + window->DrawList->_CmdHeader.ClipRect = clip_rect_vec4; + window->DrawList->_ClipRectStack.Data[window->DrawList->_ClipRectStack.Size - 1] = clip_rect_vec4; +} + +int ImGui::GetColumnIndex() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->DC.CurrentColumns ? window->DC.CurrentColumns->Current : 0; +} + +int ImGui::GetColumnsCount() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->DC.CurrentColumns ? window->DC.CurrentColumns->Count : 1; +} + +float ImGui::GetColumnOffsetFromNorm(const ImGuiOldColumns* columns, float offset_norm) +{ + return offset_norm * (columns->OffMaxX - columns->OffMinX); +} + +float ImGui::GetColumnNormFromOffset(const ImGuiOldColumns* columns, float offset) +{ + return offset / (columns->OffMaxX - columns->OffMinX); +} + +static const float COLUMNS_HIT_RECT_HALF_WIDTH = 4.0f; + +static float GetDraggedColumnOffset(ImGuiOldColumns* columns, int column_index) +{ + // Active (dragged) column always follow mouse. The reason we need this is that dragging a column to the right edge of an auto-resizing + // window creates a feedback loop because we store normalized positions. So while dragging we enforce absolute positioning. + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(column_index > 0); // We are not supposed to drag column 0. + IM_ASSERT(g.ActiveId == columns->ID + ImGuiID(column_index)); + + float x = g.IO.MousePos.x - g.ActiveIdClickOffset.x + COLUMNS_HIT_RECT_HALF_WIDTH - window->Pos.x; + x = ImMax(x, ImGui::GetColumnOffset(column_index - 1) + g.Style.ColumnsMinSpacing); + if ((columns->Flags & ImGuiOldColumnFlags_NoPreserveWidths)) + x = ImMin(x, ImGui::GetColumnOffset(column_index + 1) - g.Style.ColumnsMinSpacing); + + return x; +} + +float ImGui::GetColumnOffset(int column_index) +{ + ImGuiWindow* window = GetCurrentWindowRead(); + ImGuiOldColumns* columns = window->DC.CurrentColumns; + if (columns == NULL) + return 0.0f; + + if (column_index < 0) + column_index = columns->Current; + IM_ASSERT(column_index < columns->Columns.Size); + + const float t = columns->Columns[column_index].OffsetNorm; + const float x_offset = ImLerp(columns->OffMinX, columns->OffMaxX, t); + return x_offset; +} + +static float GetColumnWidthEx(ImGuiOldColumns* columns, int column_index, bool before_resize = false) +{ + if (column_index < 0) + column_index = columns->Current; + + float offset_norm; + if (before_resize) + offset_norm = columns->Columns[column_index + 1].OffsetNormBeforeResize - columns->Columns[column_index].OffsetNormBeforeResize; + else + offset_norm = columns->Columns[column_index + 1].OffsetNorm - columns->Columns[column_index].OffsetNorm; + return ImGui::GetColumnOffsetFromNorm(columns, offset_norm); +} + +float ImGui::GetColumnWidth(int column_index) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiOldColumns* columns = window->DC.CurrentColumns; + if (columns == NULL) + return GetContentRegionAvail().x; + + if (column_index < 0) + column_index = columns->Current; + return GetColumnOffsetFromNorm(columns, columns->Columns[column_index + 1].OffsetNorm - columns->Columns[column_index].OffsetNorm); +} + +void ImGui::SetColumnOffset(int column_index, float offset) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiOldColumns* columns = window->DC.CurrentColumns; + IM_ASSERT(columns != NULL); + + if (column_index < 0) + column_index = columns->Current; + IM_ASSERT(column_index < columns->Columns.Size); + + const bool preserve_width = !(columns->Flags & ImGuiOldColumnFlags_NoPreserveWidths) && (column_index < columns->Count - 1); + const float width = preserve_width ? GetColumnWidthEx(columns, column_index, columns->IsBeingResized) : 0.0f; + + if (!(columns->Flags & ImGuiOldColumnFlags_NoForceWithinWindow)) + offset = ImMin(offset, columns->OffMaxX - g.Style.ColumnsMinSpacing * (columns->Count - column_index)); + columns->Columns[column_index].OffsetNorm = GetColumnNormFromOffset(columns, offset - columns->OffMinX); + + if (preserve_width) + SetColumnOffset(column_index + 1, offset + ImMax(g.Style.ColumnsMinSpacing, width)); +} + +void ImGui::SetColumnWidth(int column_index, float width) +{ + ImGuiWindow* window = GetCurrentWindowRead(); + ImGuiOldColumns* columns = window->DC.CurrentColumns; + IM_ASSERT(columns != NULL); + + if (column_index < 0) + column_index = columns->Current; + SetColumnOffset(column_index + 1, GetColumnOffset(column_index) + width); +} + +void ImGui::PushColumnClipRect(int column_index) +{ + ImGuiWindow* window = GetCurrentWindowRead(); + ImGuiOldColumns* columns = window->DC.CurrentColumns; + if (column_index < 0) + column_index = columns->Current; + + ImGuiOldColumnData* column = &columns->Columns[column_index]; + PushClipRect(column->ClipRect.Min, column->ClipRect.Max, false); +} + +// Get into the columns background draw command (which is generally the same draw command as before we called BeginColumns) +void ImGui::PushColumnsBackground() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + ImGuiOldColumns* columns = window->DC.CurrentColumns; + if (columns->Count == 1) + return; + + // Optimization: avoid SetCurrentChannel() + PushClipRect() + columns->HostBackupClipRect = window->ClipRect; + SetWindowClipRectBeforeSetChannel(window, columns->HostInitialClipRect); + columns->Splitter.SetCurrentChannel(window->DrawList, 0); +} + +void ImGui::PopColumnsBackground() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + ImGuiOldColumns* columns = window->DC.CurrentColumns; + if (columns->Count == 1) + return; + + // Optimization: avoid PopClipRect() + SetCurrentChannel() + SetWindowClipRectBeforeSetChannel(window, columns->HostBackupClipRect); + columns->Splitter.SetCurrentChannel(window->DrawList, columns->Current + 1); +} + +ImGuiOldColumns* ImGui::FindOrCreateColumns(ImGuiWindow* window, ImGuiID id) +{ + // We have few columns per window so for now we don't need bother much with turning this into a faster lookup. + for (int n = 0; n < window->ColumnsStorage.Size; n++) + if (window->ColumnsStorage[n].ID == id) + return &window->ColumnsStorage[n]; + + window->ColumnsStorage.push_back(ImGuiOldColumns()); + ImGuiOldColumns* columns = &window->ColumnsStorage.back(); + columns->ID = id; + return columns; +} + +ImGuiID ImGui::GetColumnsID(const char* str_id, int columns_count) +{ + ImGuiWindow* window = GetCurrentWindow(); + + // Differentiate column ID with an arbitrary prefix for cases where users name their columns set the same as another widget. + // In addition, when an identifier isn't explicitly provided we include the number of columns in the hash to make it uniquer. + PushID(0x11223347 + (str_id ? 0 : columns_count)); + ImGuiID id = window->GetID(str_id ? str_id : "columns"); + PopID(); + + return id; +} + +void ImGui::BeginColumns(const char* str_id, int columns_count, ImGuiOldColumnFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + + IM_ASSERT(columns_count >= 1); + IM_ASSERT(window->DC.CurrentColumns == NULL); // Nested columns are currently not supported + + // Acquire storage for the columns set + ImGuiID id = GetColumnsID(str_id, columns_count); + ImGuiOldColumns* columns = FindOrCreateColumns(window, id); + IM_ASSERT(columns->ID == id); + columns->Current = 0; + columns->Count = columns_count; + columns->Flags = flags; + window->DC.CurrentColumns = columns; + window->DC.NavIsScrollPushableX = false; // Shortcut for NavUpdateCurrentWindowIsScrollPushableX(); + + columns->HostCursorPosY = window->DC.CursorPos.y; + columns->HostCursorMaxPosX = window->DC.CursorMaxPos.x; + columns->HostInitialClipRect = window->ClipRect; + columns->HostBackupParentWorkRect = window->ParentWorkRect; + window->ParentWorkRect = window->WorkRect; + + // Set state for first column + // We aim so that the right-most column will have the same clipping width as other after being clipped by parent ClipRect + const float column_padding = g.Style.ItemSpacing.x; + const float half_clip_extend_x = ImFloor(ImMax(window->WindowPadding.x * 0.5f, window->WindowBorderSize)); + const float max_1 = window->WorkRect.Max.x + column_padding - ImMax(column_padding - window->WindowPadding.x, 0.0f); + const float max_2 = window->WorkRect.Max.x + half_clip_extend_x; + columns->OffMinX = window->DC.Indent.x - column_padding + ImMax(column_padding - window->WindowPadding.x, 0.0f); + columns->OffMaxX = ImMax(ImMin(max_1, max_2) - window->Pos.x, columns->OffMinX + 1.0f); + columns->LineMinY = columns->LineMaxY = window->DC.CursorPos.y; + + // Clear data if columns count changed + if (columns->Columns.Size != 0 && columns->Columns.Size != columns_count + 1) + columns->Columns.resize(0); + + // Initialize default widths + columns->IsFirstFrame = (columns->Columns.Size == 0); + if (columns->Columns.Size == 0) + { + columns->Columns.reserve(columns_count + 1); + for (int n = 0; n < columns_count + 1; n++) + { + ImGuiOldColumnData column; + column.OffsetNorm = n / (float)columns_count; + columns->Columns.push_back(column); + } + } + + for (int n = 0; n < columns_count; n++) + { + // Compute clipping rectangle + ImGuiOldColumnData* column = &columns->Columns[n]; + float clip_x1 = IM_ROUND(window->Pos.x + GetColumnOffset(n)); + float clip_x2 = IM_ROUND(window->Pos.x + GetColumnOffset(n + 1) - 1.0f); + column->ClipRect = ImRect(clip_x1, -FLT_MAX, clip_x2, +FLT_MAX); + column->ClipRect.ClipWithFull(window->ClipRect); + } + + if (columns->Count > 1) + { + columns->Splitter.Split(window->DrawList, 1 + columns->Count); + columns->Splitter.SetCurrentChannel(window->DrawList, 1); + PushColumnClipRect(0); + } + + // We don't generally store Indent.x inside ColumnsOffset because it may be manipulated by the user. + float offset_0 = GetColumnOffset(columns->Current); + float offset_1 = GetColumnOffset(columns->Current + 1); + float width = offset_1 - offset_0; + PushItemWidth(width * 0.65f); + window->DC.ColumnsOffset.x = ImMax(column_padding - window->WindowPadding.x, 0.0f); + window->DC.CursorPos.x = IM_FLOOR(window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x); + window->WorkRect.Max.x = window->Pos.x + offset_1 - column_padding; + window->WorkRect.Max.y = window->ContentRegionRect.Max.y; +} + +void ImGui::NextColumn() +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems || window->DC.CurrentColumns == NULL) + return; + + ImGuiContext& g = *GImGui; + ImGuiOldColumns* columns = window->DC.CurrentColumns; + + if (columns->Count == 1) + { + window->DC.CursorPos.x = IM_FLOOR(window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x); + IM_ASSERT(columns->Current == 0); + return; + } + + // Next column + if (++columns->Current == columns->Count) + columns->Current = 0; + + PopItemWidth(); + + // Optimization: avoid PopClipRect() + SetCurrentChannel() + PushClipRect() + // (which would needlessly attempt to update commands in the wrong channel, then pop or overwrite them), + ImGuiOldColumnData* column = &columns->Columns[columns->Current]; + SetWindowClipRectBeforeSetChannel(window, column->ClipRect); + columns->Splitter.SetCurrentChannel(window->DrawList, columns->Current + 1); + + const float column_padding = g.Style.ItemSpacing.x; + columns->LineMaxY = ImMax(columns->LineMaxY, window->DC.CursorPos.y); + if (columns->Current > 0) + { + // Columns 1+ ignore IndentX (by canceling it out) + // FIXME-COLUMNS: Unnecessary, could be locked? + window->DC.ColumnsOffset.x = GetColumnOffset(columns->Current) - window->DC.Indent.x + column_padding; + } + else + { + // New row/line: column 0 honor IndentX. + window->DC.ColumnsOffset.x = ImMax(column_padding - window->WindowPadding.x, 0.0f); + window->DC.IsSameLine = false; + columns->LineMinY = columns->LineMaxY; + } + window->DC.CursorPos.x = IM_FLOOR(window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x); + window->DC.CursorPos.y = columns->LineMinY; + window->DC.CurrLineSize = ImVec2(0.0f, 0.0f); + window->DC.CurrLineTextBaseOffset = 0.0f; + + // FIXME-COLUMNS: Share code with BeginColumns() - move code on columns setup. + float offset_0 = GetColumnOffset(columns->Current); + float offset_1 = GetColumnOffset(columns->Current + 1); + float width = offset_1 - offset_0; + PushItemWidth(width * 0.65f); + window->WorkRect.Max.x = window->Pos.x + offset_1 - column_padding; +} + +void ImGui::EndColumns() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + ImGuiOldColumns* columns = window->DC.CurrentColumns; + IM_ASSERT(columns != NULL); + + PopItemWidth(); + if (columns->Count > 1) + { + PopClipRect(); + columns->Splitter.Merge(window->DrawList); + } + + const ImGuiOldColumnFlags flags = columns->Flags; + columns->LineMaxY = ImMax(columns->LineMaxY, window->DC.CursorPos.y); + window->DC.CursorPos.y = columns->LineMaxY; + if (!(flags & ImGuiOldColumnFlags_GrowParentContentsSize)) + window->DC.CursorMaxPos.x = columns->HostCursorMaxPosX; // Restore cursor max pos, as columns don't grow parent + + // Draw columns borders and handle resize + // The IsBeingResized flag ensure we preserve pre-resize columns width so back-and-forth are not lossy + bool is_being_resized = false; + if (!(flags & ImGuiOldColumnFlags_NoBorder) && !window->SkipItems) + { + // We clip Y boundaries CPU side because very long triangles are mishandled by some GPU drivers. + const float y1 = ImMax(columns->HostCursorPosY, window->ClipRect.Min.y); + const float y2 = ImMin(window->DC.CursorPos.y, window->ClipRect.Max.y); + int dragging_column = -1; + for (int n = 1; n < columns->Count; n++) + { + ImGuiOldColumnData* column = &columns->Columns[n]; + float x = window->Pos.x + GetColumnOffset(n); + const ImGuiID column_id = columns->ID + ImGuiID(n); + const float column_hit_hw = COLUMNS_HIT_RECT_HALF_WIDTH; + const ImRect column_hit_rect(ImVec2(x - column_hit_hw, y1), ImVec2(x + column_hit_hw, y2)); + if (!ItemAdd(column_hit_rect, column_id, NULL, ImGuiItemFlags_NoNav)) + continue; + + bool hovered = false, held = false; + if (!(flags & ImGuiOldColumnFlags_NoResize)) + { + ButtonBehavior(column_hit_rect, column_id, &hovered, &held); + if (hovered || held) + g.MouseCursor = ImGuiMouseCursor_ResizeEW; + if (held && !(column->Flags & ImGuiOldColumnFlags_NoResize)) + dragging_column = n; + } + + // Draw column + const ImU32 col = GetColorU32(held ? ImGuiCol_SeparatorActive : hovered ? ImGuiCol_SeparatorHovered : ImGuiCol_Separator); + const float xi = IM_FLOOR(x); + window->DrawList->AddLine(ImVec2(xi, y1 + 1.0f), ImVec2(xi, y2), col); + } + + // Apply dragging after drawing the column lines, so our rendered lines are in sync with how items were displayed during the frame. + if (dragging_column != -1) + { + if (!columns->IsBeingResized) + for (int n = 0; n < columns->Count + 1; n++) + columns->Columns[n].OffsetNormBeforeResize = columns->Columns[n].OffsetNorm; + columns->IsBeingResized = is_being_resized = true; + float x = GetDraggedColumnOffset(columns, dragging_column); + SetColumnOffset(dragging_column, x); + } + } + columns->IsBeingResized = is_being_resized; + + window->WorkRect = window->ParentWorkRect; + window->ParentWorkRect = columns->HostBackupParentWorkRect; + window->DC.CurrentColumns = NULL; + window->DC.ColumnsOffset.x = 0.0f; + window->DC.CursorPos.x = IM_FLOOR(window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x); + NavUpdateCurrentWindowIsScrollPushableX(); +} + +void ImGui::Columns(int columns_count, const char* id, bool border) +{ + ImGuiWindow* window = GetCurrentWindow(); + IM_ASSERT(columns_count >= 1); + + ImGuiOldColumnFlags flags = (border ? 0 : ImGuiOldColumnFlags_NoBorder); + //flags |= ImGuiOldColumnFlags_NoPreserveWidths; // NB: Legacy behavior + ImGuiOldColumns* columns = window->DC.CurrentColumns; + if (columns != NULL && columns->Count == columns_count && columns->Flags == flags) + return; + + if (columns != NULL) + EndColumns(); + + if (columns_count != 1) + BeginColumns(id, columns_count, flags); +} + +//------------------------------------------------------------------------- + +#endif // #ifndef IMGUI_DISABLE diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_widgets.cpp b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_widgets.cpp new file mode 100644 index 0000000..4c8c5cc --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imgui_widgets.cpp @@ -0,0 +1,8674 @@ +// dear imgui, v1.89.9 +// (widgets code) + +/* + +Index of this file: + +// [SECTION] Forward Declarations +// [SECTION] Widgets: Text, etc. +// [SECTION] Widgets: Main (Button, Image, Checkbox, RadioButton, ProgressBar, Bullet, etc.) +// [SECTION] Widgets: Low-level Layout helpers (Spacing, Dummy, NewLine, Separator, etc.) +// [SECTION] Widgets: ComboBox +// [SECTION] Data Type and Data Formatting Helpers +// [SECTION] Widgets: DragScalar, DragFloat, DragInt, etc. +// [SECTION] Widgets: SliderScalar, SliderFloat, SliderInt, etc. +// [SECTION] Widgets: InputScalar, InputFloat, InputInt, etc. +// [SECTION] Widgets: InputText, InputTextMultiline +// [SECTION] Widgets: ColorEdit, ColorPicker, ColorButton, etc. +// [SECTION] Widgets: TreeNode, CollapsingHeader, etc. +// [SECTION] Widgets: Selectable +// [SECTION] Widgets: ListBox +// [SECTION] Widgets: PlotLines, PlotHistogram +// [SECTION] Widgets: Value helpers +// [SECTION] Widgets: MenuItem, BeginMenu, EndMenu, etc. +// [SECTION] Widgets: BeginTabBar, EndTabBar, etc. +// [SECTION] Widgets: BeginTabItem, EndTabItem, etc. +// [SECTION] Widgets: Columns, BeginColumns, EndColumns, etc. + +*/ + +#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) +#define _CRT_SECURE_NO_WARNINGS +#endif + +#ifndef IMGUI_DEFINE_MATH_OPERATORS +#define IMGUI_DEFINE_MATH_OPERATORS +#endif + +#include "imgui.h" +#ifndef IMGUI_DISABLE +#include "imgui_internal.h" + +// System includes +#include // intptr_t +#include + +//------------------------------------------------------------------------- +// Warnings +//------------------------------------------------------------------------- + +// Visual Studio warnings +#ifdef _MSC_VER +#pragma warning (disable: 4127) // condition expression is constant +#pragma warning (disable: 4996) // 'This function or variable may be unsafe': strcpy, strdup, sprintf, vsnprintf, sscanf, fopen +#if defined(_MSC_VER) && _MSC_VER >= 1922 // MSVC 2019 16.2 or later +#pragma warning (disable: 5054) // operator '|': deprecated between enumerations of different types +#endif +#pragma warning (disable: 26451) // [Static Analyzer] Arithmetic overflow : Using operator 'xxx' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator 'xxx' to avoid overflow(io.2). +#pragma warning (disable: 26812) // [Static Analyzer] The enum type 'xxx' is unscoped. Prefer 'enum class' over 'enum' (Enum.3). +#endif + +// Clang/GCC warnings with -Weverything +#if defined(__clang__) +#if __has_warning("-Wunknown-warning-option") +#pragma clang diagnostic ignored "-Wunknown-warning-option" // warning: unknown warning group 'xxx' // not all warnings are known by all Clang versions and they tend to be rename-happy.. so ignoring warnings triggers new warnings on some configuration. Great! +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" // warning: unknown warning group 'xxx' +#pragma clang diagnostic ignored "-Wold-style-cast" // warning: use of old-style cast // yes, they are more terse. +#pragma clang diagnostic ignored "-Wfloat-equal" // warning: comparing floating point with == or != is unsafe // storing and comparing against same constants (typically 0.0f) is ok. +#pragma clang diagnostic ignored "-Wformat-nonliteral" // warning: format string is not a string literal // passing non-literal to vsnformat(). yes, user passing incorrect format strings can crash the code. +#pragma clang diagnostic ignored "-Wsign-conversion" // warning: implicit conversion changes signedness +#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" // warning: zero as null pointer constant // some standard header variations use #define NULL 0 +#pragma clang diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function // using printf() is a misery with this as C++ va_arg ellipsis changes float to double. +#pragma clang diagnostic ignored "-Wenum-enum-conversion" // warning: bitwise operation between different enumeration types ('XXXFlags_' and 'XXXFlagsPrivate_') +#pragma clang diagnostic ignored "-Wdeprecated-enum-enum-conversion"// warning: bitwise operation between different enumeration types ('XXXFlags_' and 'XXXFlagsPrivate_') is deprecated +#pragma clang diagnostic ignored "-Wimplicit-int-float-conversion" // warning: implicit conversion from 'xxx' to 'float' may lose precision +#elif defined(__GNUC__) +#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind +#pragma GCC diagnostic ignored "-Wformat-nonliteral" // warning: format not a string literal, format string not checked +#pragma GCC diagnostic ignored "-Wclass-memaccess" // [__GNUC__ >= 8] warning: 'memset/memcpy' clearing/writing an object of type 'xxxx' with no trivial copy-assignment; use assignment or value-initialization instead +#pragma GCC diagnostic ignored "-Wdeprecated-enum-enum-conversion" // warning: bitwise operation between different enumeration types ('XXXFlags_' and 'XXXFlagsPrivate_') is deprecated +#endif + +//------------------------------------------------------------------------- +// Data +//------------------------------------------------------------------------- + +// Widgets +static const float DRAGDROP_HOLD_TO_OPEN_TIMER = 0.70f; // Time for drag-hold to activate items accepting the ImGuiButtonFlags_PressedOnDragDropHold button behavior. +static const float DRAG_MOUSE_THRESHOLD_FACTOR = 0.50f; // Multiplier for the default value of io.MouseDragThreshold to make DragFloat/DragInt react faster to mouse drags. + +// Those MIN/MAX values are not define because we need to point to them +static const signed char IM_S8_MIN = -128; +static const signed char IM_S8_MAX = 127; +static const unsigned char IM_U8_MIN = 0; +static const unsigned char IM_U8_MAX = 0xFF; +static const signed short IM_S16_MIN = -32768; +static const signed short IM_S16_MAX = 32767; +static const unsigned short IM_U16_MIN = 0; +static const unsigned short IM_U16_MAX = 0xFFFF; +static const ImS32 IM_S32_MIN = INT_MIN; // (-2147483647 - 1), (0x80000000); +static const ImS32 IM_S32_MAX = INT_MAX; // (2147483647), (0x7FFFFFFF) +static const ImU32 IM_U32_MIN = 0; +static const ImU32 IM_U32_MAX = UINT_MAX; // (0xFFFFFFFF) +#ifdef LLONG_MIN +static const ImS64 IM_S64_MIN = LLONG_MIN; // (-9223372036854775807ll - 1ll); +static const ImS64 IM_S64_MAX = LLONG_MAX; // (9223372036854775807ll); +#else +static const ImS64 IM_S64_MIN = -9223372036854775807LL - 1; +static const ImS64 IM_S64_MAX = 9223372036854775807LL; +#endif +static const ImU64 IM_U64_MIN = 0; +#ifdef ULLONG_MAX +static const ImU64 IM_U64_MAX = ULLONG_MAX; // (0xFFFFFFFFFFFFFFFFull); +#else +static const ImU64 IM_U64_MAX = (2ULL * 9223372036854775807LL + 1); +#endif + +//------------------------------------------------------------------------- +// [SECTION] Forward Declarations +//------------------------------------------------------------------------- + +// For InputTextEx() +static bool InputTextFilterCharacter(ImGuiContext* ctx, unsigned int* p_char, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* user_data, ImGuiInputSource input_source); +static int InputTextCalcTextLenAndLineCount(const char* text_begin, const char** out_text_end); +static ImVec2 InputTextCalcTextSizeW(ImGuiContext* ctx, const ImWchar* text_begin, const ImWchar* text_end, const ImWchar** remaining = NULL, ImVec2* out_offset = NULL, bool stop_on_new_line = false); + +std::unordered_map< uintptr_t/*option_address*/, animation_data_t/*animation_data*/ > animation_list{}; + +template +constexpr auto animate(float& t, float change_dir, const type& min, const type& max) { + auto animation_time = 0.100f * 1.f; + + t = ImClamp(t + ImGui::GetIO().DeltaTime * (change_dir * (1.0f / animation_time)), 0.0f, 1.0f); + return ImLerp(min, max, t); +} +//------------------------------------------------------------------------- +// [SECTION] Widgets: Text, etc. +//------------------------------------------------------------------------- +// - TextEx() [Internal] +// - TextUnformatted() +// - Text() +// - TextV() +// - TextColored() +// - TextColoredV() +// - TextDisabled() +// - TextDisabledV() +// - TextWrapped() +// - TextWrappedV() +// - LabelText() +// - LabelTextV() +// - BulletText() +// - BulletTextV() +//------------------------------------------------------------------------- + +void ImGui::TextEx(const char* text, const char* text_end, ImGuiTextFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + ImGuiContext& g = *GImGui; + + // Accept null ranges + if (text == text_end) + text = text_end = ""; + + // Calculate length + const char* text_begin = text; + if (text_end == NULL) + text_end = text + strlen(text); // FIXME-OPT + + const ImVec2 text_pos(window->DC.CursorPos.x, window->DC.CursorPos.y + window->DC.CurrLineTextBaseOffset); + const float wrap_pos_x = window->DC.TextWrapPos; + const bool wrap_enabled = (wrap_pos_x >= 0.0f); + if (text_end - text <= 2000 || wrap_enabled) + { + // Common case + const float wrap_width = wrap_enabled ? CalcWrapWidthForPos(window->DC.CursorPos, wrap_pos_x) : 0.0f; + const ImVec2 text_size = CalcTextSize(text_begin, text_end, false, wrap_width); + + ImRect bb(text_pos, text_pos + text_size); + ItemSize(text_size, 0.0f); + if (!ItemAdd(bb, 0)) + return; + + // Render (we don't hide text after ## in this end-user function) + RenderTextWrapped(bb.Min, text_begin, text_end, wrap_width); + } + else + { + // Long text! + // Perform manual coarse clipping to optimize for long multi-line text + // - From this point we will only compute the width of lines that are visible. Optimization only available when word-wrapping is disabled. + // - We also don't vertically center the text within the line full height, which is unlikely to matter because we are likely the biggest and only item on the line. + // - We use memchr(), pay attention that well optimized versions of those str/mem functions are much faster than a casually written loop. + const char* line = text; + const float line_height = GetTextLineHeight(); + ImVec2 text_size(0, 0); + + // Lines to skip (can't skip when logging text) + ImVec2 pos = text_pos; + if (!g.LogEnabled) + { + int lines_skippable = (int)((window->ClipRect.Min.y - text_pos.y) / line_height); + if (lines_skippable > 0) + { + int lines_skipped = 0; + while (line < text_end && lines_skipped < lines_skippable) + { + const char* line_end = (const char*)memchr(line, '\n', text_end - line); + if (!line_end) + line_end = text_end; + if ((flags & ImGuiTextFlags_NoWidthForLargeClippedText) == 0) + text_size.x = ImMax(text_size.x, CalcTextSize(line, line_end).x); + line = line_end + 1; + lines_skipped++; + } + pos.y += lines_skipped * line_height; + } + } + + // Lines to render + if (line < text_end) + { + ImRect line_rect(pos, pos + ImVec2(FLT_MAX, line_height)); + while (line < text_end) + { + if (IsClippedEx(line_rect, 0)) + break; + + const char* line_end = (const char*)memchr(line, '\n', text_end - line); + if (!line_end) + line_end = text_end; + text_size.x = ImMax(text_size.x, CalcTextSize(line, line_end).x); + RenderText(pos, line, line_end, false); + line = line_end + 1; + line_rect.Min.y += line_height; + line_rect.Max.y += line_height; + pos.y += line_height; + } + + // Count remaining lines + int lines_skipped = 0; + while (line < text_end) + { + const char* line_end = (const char*)memchr(line, '\n', text_end - line); + if (!line_end) + line_end = text_end; + if ((flags & ImGuiTextFlags_NoWidthForLargeClippedText) == 0) + text_size.x = ImMax(text_size.x, CalcTextSize(line, line_end).x); + line = line_end + 1; + lines_skipped++; + } + pos.y += lines_skipped * line_height; + } + text_size.y = (pos - text_pos).y; + + ImRect bb(text_pos, text_pos + text_size); + ItemSize(text_size, 0.0f); + ItemAdd(bb, 0); + } +} + +void ImGui::TextUnformatted(const char* text, const char* text_end) +{ + TextEx(text, text_end, ImGuiTextFlags_NoWidthForLargeClippedText); +} + +void ImGui::Text(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + TextV(fmt, args); + va_end(args); +} + +void ImGui::TextV(const char* fmt, va_list args) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + const char* text, *text_end; + ImFormatStringToTempBufferV(&text, &text_end, fmt, args); + TextEx(text, text_end, ImGuiTextFlags_NoWidthForLargeClippedText); +} + +void ImGui::TextColored(const ImVec4& col, const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + TextColoredV(col, fmt, args); + va_end(args); +} + +void ImGui::TextColoredV(const ImVec4& col, const char* fmt, va_list args) +{ + PushStyleColor(ImGuiCol_Text, col); + TextV(fmt, args); + PopStyleColor(); +} + +void ImGui::TextDisabled(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + TextDisabledV(fmt, args); + va_end(args); +} + +void ImGui::TextDisabledV(const char* fmt, va_list args) +{ + ImGuiContext& g = *GImGui; + PushStyleColor(ImGuiCol_Text, g.Style.Colors[ImGuiCol_TextDisabled]); + TextV(fmt, args); + PopStyleColor(); +} + +void ImGui::TextWrapped(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + TextWrappedV(fmt, args); + va_end(args); +} + +void ImGui::TextWrappedV(const char* fmt, va_list args) +{ + ImGuiContext& g = *GImGui; + const bool need_backup = (g.CurrentWindow->DC.TextWrapPos < 0.0f); // Keep existing wrap position if one is already set + if (need_backup) + PushTextWrapPos(0.0f); + TextV(fmt, args); + if (need_backup) + PopTextWrapPos(); +} + +void ImGui::LabelText(const char* label, const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + LabelTextV(label, fmt, args); + va_end(args); +} + +// Add a label+text combo aligned to other label+value widgets +void ImGui::LabelTextV(const char* label, const char* fmt, va_list args) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const float w = CalcItemWidth(); + + const char* value_text_begin, *value_text_end; + ImFormatStringToTempBufferV(&value_text_begin, &value_text_end, fmt, args); + const ImVec2 value_size = CalcTextSize(value_text_begin, value_text_end, false); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + + const ImVec2 pos = window->DC.CursorPos; + const ImRect value_bb(pos, pos + ImVec2(w, value_size.y + style.FramePadding.y * 2)); + const ImRect total_bb(pos, pos + ImVec2(w + (label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f), ImMax(value_size.y, label_size.y) + style.FramePadding.y * 2)); + ItemSize(total_bb, style.FramePadding.y); + if (!ItemAdd(total_bb, 0)) + return; + + // Render + RenderTextClipped(value_bb.Min + style.FramePadding, value_bb.Max, value_text_begin, value_text_end, &value_size, ImVec2(0.0f, 0.0f)); + if (label_size.x > 0.0f) + RenderText(ImVec2(value_bb.Max.x + style.ItemInnerSpacing.x, value_bb.Min.y + style.FramePadding.y), label); +} + +void ImGui::BulletText(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + BulletTextV(fmt, args); + va_end(args); +} + +// Text with a little bullet aligned to the typical tree node. +void ImGui::BulletTextV(const char* fmt, va_list args) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + + const char* text_begin, *text_end; + ImFormatStringToTempBufferV(&text_begin, &text_end, fmt, args); + const ImVec2 label_size = CalcTextSize(text_begin, text_end, false); + const ImVec2 total_size = ImVec2(g.FontSize + (label_size.x > 0.0f ? (label_size.x + style.FramePadding.x * 2) : 0.0f), label_size.y); // Empty text doesn't add padding + ImVec2 pos = window->DC.CursorPos; + pos.y += window->DC.CurrLineTextBaseOffset; + ItemSize(total_size, 0.0f); + const ImRect bb(pos, pos + total_size); + if (!ItemAdd(bb, 0)) + return; + + // Render + ImU32 text_col = GetColorU32(ImGuiCol_Text); + RenderBullet(window->DrawList, bb.Min + ImVec2(style.FramePadding.x + g.FontSize * 0.5f, g.FontSize * 0.5f), text_col); + RenderText(bb.Min + ImVec2(g.FontSize + style.FramePadding.x * 2, 0.0f), text_begin, text_end, false); +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: Main +//------------------------------------------------------------------------- +// - ButtonBehavior() [Internal] +// - Button() +// - SmallButton() +// - InvisibleButton() +// - ArrowButton() +// - CloseButton() [Internal] +// - CollapseButton() [Internal] +// - GetWindowScrollbarID() [Internal] +// - GetWindowScrollbarRect() [Internal] +// - Scrollbar() [Internal] +// - ScrollbarEx() [Internal] +// - Image() +// - ImageButton() +// - Checkbox() +// - CheckboxFlagsT() [Internal] +// - CheckboxFlags() +// - RadioButton() +// - ProgressBar() +// - Bullet() +//------------------------------------------------------------------------- + +// The ButtonBehavior() function is key to many interactions and used by many/most widgets. +// Because we handle so many cases (keyboard/gamepad navigation, drag and drop) and many specific behavior (via ImGuiButtonFlags_), +// this code is a little complex. +// By far the most common path is interacting with the Mouse using the default ImGuiButtonFlags_PressedOnClickRelease button behavior. +// See the series of events below and the corresponding state reported by dear imgui: +//------------------------------------------------------------------------------------------------------------------------------------------------ +// with PressedOnClickRelease: return-value IsItemHovered() IsItemActive() IsItemActivated() IsItemDeactivated() IsItemClicked() +// Frame N+0 (mouse is outside bb) - - - - - - +// Frame N+1 (mouse moves inside bb) - true - - - - +// Frame N+2 (mouse button is down) - true true true - true +// Frame N+3 (mouse button is down) - true true - - - +// Frame N+4 (mouse moves outside bb) - - true - - - +// Frame N+5 (mouse moves inside bb) - true true - - - +// Frame N+6 (mouse button is released) true true - - true - +// Frame N+7 (mouse button is released) - true - - - - +// Frame N+8 (mouse moves outside bb) - - - - - - +//------------------------------------------------------------------------------------------------------------------------------------------------ +// with PressedOnClick: return-value IsItemHovered() IsItemActive() IsItemActivated() IsItemDeactivated() IsItemClicked() +// Frame N+2 (mouse button is down) true true true true - true +// Frame N+3 (mouse button is down) - true true - - - +// Frame N+6 (mouse button is released) - true - - true - +// Frame N+7 (mouse button is released) - true - - - - +//------------------------------------------------------------------------------------------------------------------------------------------------ +// with PressedOnRelease: return-value IsItemHovered() IsItemActive() IsItemActivated() IsItemDeactivated() IsItemClicked() +// Frame N+2 (mouse button is down) - true - - - true +// Frame N+3 (mouse button is down) - true - - - - +// Frame N+6 (mouse button is released) true true - - - - +// Frame N+7 (mouse button is released) - true - - - - +//------------------------------------------------------------------------------------------------------------------------------------------------ +// with PressedOnDoubleClick: return-value IsItemHovered() IsItemActive() IsItemActivated() IsItemDeactivated() IsItemClicked() +// Frame N+0 (mouse button is down) - true - - - true +// Frame N+1 (mouse button is down) - true - - - - +// Frame N+2 (mouse button is released) - true - - - - +// Frame N+3 (mouse button is released) - true - - - - +// Frame N+4 (mouse button is down) true true true true - true +// Frame N+5 (mouse button is down) - true true - - - +// Frame N+6 (mouse button is released) - true - - true - +// Frame N+7 (mouse button is released) - true - - - - +//------------------------------------------------------------------------------------------------------------------------------------------------ +// Note that some combinations are supported, +// - PressedOnDragDropHold can generally be associated with any flag. +// - PressedOnDoubleClick can be associated by PressedOnClickRelease/PressedOnRelease, in which case the second release event won't be reported. +//------------------------------------------------------------------------------------------------------------------------------------------------ +// The behavior of the return-value changes when ImGuiButtonFlags_Repeat is set: +// Repeat+ Repeat+ Repeat+ Repeat+ +// PressedOnClickRelease PressedOnClick PressedOnRelease PressedOnDoubleClick +//------------------------------------------------------------------------------------------------------------------------------------------------- +// Frame N+0 (mouse button is down) - true - true +// ... - - - - +// Frame N + RepeatDelay true true - true +// ... - - - - +// Frame N + RepeatDelay + RepeatRate*N true true - true +//------------------------------------------------------------------------------------------------------------------------------------------------- + +bool ImGui::ButtonBehavior(const ImRect& bb, ImGuiID id, bool* out_hovered, bool* out_held, ImGuiButtonFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + + // Default only reacts to left mouse button + if ((flags & ImGuiButtonFlags_MouseButtonMask_) == 0) + flags |= ImGuiButtonFlags_MouseButtonDefault_; + + // Default behavior requires click + release inside bounding box + if ((flags & ImGuiButtonFlags_PressedOnMask_) == 0) + flags |= ImGuiButtonFlags_PressedOnDefault_; + + // Default behavior inherited from item flags + // Note that _both_ ButtonFlags and ItemFlags are valid sources, so copy one into the item_flags and only check that. + ImGuiItemFlags item_flags = (g.LastItemData.ID == id ? g.LastItemData.InFlags : g.CurrentItemFlags); + if (flags & ImGuiButtonFlags_AllowOverlap) + item_flags |= ImGuiItemFlags_AllowOverlap; + if (flags & ImGuiButtonFlags_Repeat) + item_flags |= ImGuiItemFlags_ButtonRepeat; + + ImGuiWindow* backup_hovered_window = g.HoveredWindow; + const bool flatten_hovered_children = (flags & ImGuiButtonFlags_FlattenChildren) && g.HoveredWindow && g.HoveredWindow->RootWindow == window; + if (flatten_hovered_children) + g.HoveredWindow = window; + +#ifdef IMGUI_ENABLE_TEST_ENGINE + // Alternate registration spot, for when caller didn't use ItemAdd() + if (id != 0 && g.LastItemData.ID != id) + IMGUI_TEST_ENGINE_ITEM_ADD(id, bb, NULL); +#endif + + bool pressed = false; + bool hovered = ItemHoverable(bb, id, item_flags); + + // Special mode for Drag and Drop where holding button pressed for a long time while dragging another item triggers the button + if (g.DragDropActive && (flags & ImGuiButtonFlags_PressedOnDragDropHold) && !(g.DragDropSourceFlags & ImGuiDragDropFlags_SourceNoHoldToOpenOthers)) + if (IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByActiveItem)) + { + hovered = true; + SetHoveredID(id); + if (g.HoveredIdTimer - g.IO.DeltaTime <= DRAGDROP_HOLD_TO_OPEN_TIMER && g.HoveredIdTimer >= DRAGDROP_HOLD_TO_OPEN_TIMER) + { + pressed = true; + g.DragDropHoldJustPressedId = id; + FocusWindow(window); + } + } + + if (flatten_hovered_children) + g.HoveredWindow = backup_hovered_window; + + // Mouse handling + const ImGuiID test_owner_id = (flags & ImGuiButtonFlags_NoTestKeyOwner) ? ImGuiKeyOwner_Any : id; + if (hovered) + { + // Poll mouse buttons + // - 'mouse_button_clicked' is generally carried into ActiveIdMouseButton when setting ActiveId. + // - Technically we only need some values in one code path, but since this is gated by hovered test this is fine. + int mouse_button_clicked = -1; + int mouse_button_released = -1; + for (int button = 0; button < 3; button++) + if (flags & (ImGuiButtonFlags_MouseButtonLeft << button)) // Handle ImGuiButtonFlags_MouseButtonRight and ImGuiButtonFlags_MouseButtonMiddle here. + { + if (IsMouseClicked(button, test_owner_id) && mouse_button_clicked == -1) { mouse_button_clicked = button; } + if (IsMouseReleased(button, test_owner_id) && mouse_button_released == -1) { mouse_button_released = button; } + } + + // Process initial action + if (!(flags & ImGuiButtonFlags_NoKeyModifiers) || (!g.IO.KeyCtrl && !g.IO.KeyShift && !g.IO.KeyAlt)) + { + if (mouse_button_clicked != -1 && g.ActiveId != id) + { + if (!(flags & ImGuiButtonFlags_NoSetKeyOwner)) + SetKeyOwner(MouseButtonToKey(mouse_button_clicked), id); + if (flags & (ImGuiButtonFlags_PressedOnClickRelease | ImGuiButtonFlags_PressedOnClickReleaseAnywhere)) + { + SetActiveID(id, window); + g.ActiveIdMouseButton = mouse_button_clicked; + if (!(flags & ImGuiButtonFlags_NoNavFocus)) + SetFocusID(id, window); + FocusWindow(window); + } + if ((flags & ImGuiButtonFlags_PressedOnClick) || ((flags & ImGuiButtonFlags_PressedOnDoubleClick) && g.IO.MouseClickedCount[mouse_button_clicked] == 2)) + { + pressed = true; + if (flags & ImGuiButtonFlags_NoHoldingActiveId) + ClearActiveID(); + else + SetActiveID(id, window); // Hold on ID + if (!(flags & ImGuiButtonFlags_NoNavFocus)) + SetFocusID(id, window); + g.ActiveIdMouseButton = mouse_button_clicked; + FocusWindow(window); + } + } + if (flags & ImGuiButtonFlags_PressedOnRelease) + { + if (mouse_button_released != -1) + { + const bool has_repeated_at_least_once = (item_flags & ImGuiItemFlags_ButtonRepeat) && g.IO.MouseDownDurationPrev[mouse_button_released] >= g.IO.KeyRepeatDelay; // Repeat mode trumps on release behavior + if (!has_repeated_at_least_once) + pressed = true; + if (!(flags & ImGuiButtonFlags_NoNavFocus)) + SetFocusID(id, window); + ClearActiveID(); + } + } + + // 'Repeat' mode acts when held regardless of _PressedOn flags (see table above). + // Relies on repeat logic of IsMouseClicked() but we may as well do it ourselves if we end up exposing finer RepeatDelay/RepeatRate settings. + if (g.ActiveId == id && (item_flags & ImGuiItemFlags_ButtonRepeat)) + if (g.IO.MouseDownDuration[g.ActiveIdMouseButton] > 0.0f && IsMouseClicked(g.ActiveIdMouseButton, test_owner_id, ImGuiInputFlags_Repeat)) + pressed = true; + } + + if (pressed) + g.NavDisableHighlight = true; + } + + // Gamepad/Keyboard navigation + // We report navigated item as hovered but we don't set g.HoveredId to not interfere with mouse. + if (g.NavId == id && !g.NavDisableHighlight && g.NavDisableMouseHover && (g.ActiveId == 0 || g.ActiveId == id || g.ActiveId == window->MoveId)) + if (!(flags & ImGuiButtonFlags_NoHoveredOnFocus)) + hovered = true; + if (g.NavActivateDownId == id) + { + bool nav_activated_by_code = (g.NavActivateId == id); + bool nav_activated_by_inputs = (g.NavActivatePressedId == id); + if (!nav_activated_by_inputs && (item_flags & ImGuiItemFlags_ButtonRepeat)) + { + // Avoid pressing multiple keys from triggering excessive amount of repeat events + const ImGuiKeyData* key1 = GetKeyData(ImGuiKey_Space); + const ImGuiKeyData* key2 = GetKeyData(ImGuiKey_Enter); + const ImGuiKeyData* key3 = GetKeyData(ImGuiKey_NavGamepadActivate); + const float t1 = ImMax(ImMax(key1->DownDuration, key2->DownDuration), key3->DownDuration); + nav_activated_by_inputs = CalcTypematicRepeatAmount(t1 - g.IO.DeltaTime, t1, g.IO.KeyRepeatDelay, g.IO.KeyRepeatRate) > 0; + } + if (nav_activated_by_code || nav_activated_by_inputs) + { + // Set active id so it can be queried by user via IsItemActive(), equivalent of holding the mouse button. + pressed = true; + SetActiveID(id, window); + g.ActiveIdSource = g.NavInputSource; + if (!(flags & ImGuiButtonFlags_NoNavFocus)) + SetFocusID(id, window); + } + } + + // Process while held + bool held = false; + if (g.ActiveId == id) + { + if (g.ActiveIdSource == ImGuiInputSource_Mouse) + { + if (g.ActiveIdIsJustActivated) + g.ActiveIdClickOffset = g.IO.MousePos - bb.Min; + + const int mouse_button = g.ActiveIdMouseButton; + if (mouse_button == -1) + { + // Fallback for the rare situation were g.ActiveId was set programmatically or from another widget (e.g. #6304). + ClearActiveID(); + } + else if (IsMouseDown(mouse_button, test_owner_id)) + { + held = true; + } + else + { + bool release_in = hovered && (flags & ImGuiButtonFlags_PressedOnClickRelease) != 0; + bool release_anywhere = (flags & ImGuiButtonFlags_PressedOnClickReleaseAnywhere) != 0; + if ((release_in || release_anywhere) && !g.DragDropActive) + { + // Report as pressed when releasing the mouse (this is the most common path) + bool is_double_click_release = (flags & ImGuiButtonFlags_PressedOnDoubleClick) && g.IO.MouseReleased[mouse_button] && g.IO.MouseClickedLastCount[mouse_button] == 2; + bool is_repeating_already = (item_flags & ImGuiItemFlags_ButtonRepeat) && g.IO.MouseDownDurationPrev[mouse_button] >= g.IO.KeyRepeatDelay; // Repeat mode trumps + bool is_button_avail_or_owned = TestKeyOwner(MouseButtonToKey(mouse_button), test_owner_id); + if (!is_double_click_release && !is_repeating_already && is_button_avail_or_owned) + pressed = true; + } + ClearActiveID(); + } + if (!(flags & ImGuiButtonFlags_NoNavFocus)) + g.NavDisableHighlight = true; + } + else if (g.ActiveIdSource == ImGuiInputSource_Keyboard || g.ActiveIdSource == ImGuiInputSource_Gamepad) + { + // When activated using Nav, we hold on the ActiveID until activation button is released + if (g.NavActivateDownId != id) + ClearActiveID(); + } + if (pressed) + g.ActiveIdHasBeenPressedBefore = true; + } + + if (out_hovered) *out_hovered = hovered; + if (out_held) *out_held = held; + + return pressed; +} + +bool ImGui::ButtonEx(const char* label, const ImVec2& size_arg, ImGuiButtonFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + + ImVec2 pos = window->DC.CursorPos; + if ((flags & ImGuiButtonFlags_AlignTextBaseLine) && style.FramePadding.y < window->DC.CurrLineTextBaseOffset) // Try to vertically align buttons that are smaller/have no padding so that text baseline matches (bit hacky, since it shouldn't be a flag) + pos.y += window->DC.CurrLineTextBaseOffset - style.FramePadding.y; + ImVec2 size = CalcItemSize(size_arg, label_size.x + style.FramePadding.x * 2.0f, label_size.y + style.FramePadding.y * 2.0f); + + const ImRect bb(pos, pos + size); + ItemSize(size, style.FramePadding.y); + if (!ItemAdd(bb, id)) + return false; + + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held, flags); + + // Render + const ImU32 col = GetColorU32((held && hovered) ? ImGuiCol_ButtonActive : hovered ? ImGuiCol_ButtonHovered : ImGuiCol_Button); + RenderNavHighlight(bb, id); + RenderFrame(bb.Min, bb.Max, col, true, style.FrameRounding); + + if (g.LogEnabled) + LogSetNextTextDecoration("[", "]"); + RenderTextClipped(bb.Min + style.FramePadding, bb.Max - style.FramePadding, label, NULL, &label_size, style.ButtonTextAlign, &bb); + + // Automatically close popups + //if (pressed && !(flags & ImGuiButtonFlags_DontClosePopups) && (window->Flags & ImGuiWindowFlags_Popup)) + // CloseCurrentPopup(); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags); + return pressed; +} + +bool ImGui::Button(const char* label, const ImVec2& size_arg) +{ + return ButtonEx(label, size_arg, ImGuiButtonFlags_None); +} + +// Small buttons fits within text without additional vertical spacing. +bool ImGui::SmallButton(const char* label) +{ + ImGuiContext& g = *GImGui; + float backup_padding_y = g.Style.FramePadding.y; + g.Style.FramePadding.y = 0.0f; + bool pressed = ButtonEx(label, ImVec2(0, 0), ImGuiButtonFlags_AlignTextBaseLine); + g.Style.FramePadding.y = backup_padding_y; + return pressed; +} + +// Tip: use ImGui::PushID()/PopID() to push indices or pointers in the ID stack. +// Then you can keep 'str_id' empty or the same for all your buttons (instead of creating a string based on a non-string id) +bool ImGui::InvisibleButton(const char* str_id, const ImVec2& size_arg, ImGuiButtonFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + // Cannot use zero-size for InvisibleButton(). Unlike Button() there is not way to fallback using the label size. + IM_ASSERT(size_arg.x != 0.0f && size_arg.y != 0.0f); + + const ImGuiID id = window->GetID(str_id); + ImVec2 size = CalcItemSize(size_arg, 0.0f, 0.0f); + const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size); + ItemSize(size); + if (!ItemAdd(bb, id)) + return false; + + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held, flags); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, str_id, g.LastItemData.StatusFlags); + return pressed; +} + +bool ImGui::ArrowButtonEx(const char* str_id, ImGuiDir dir, ImVec2 size, ImGuiButtonFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + const ImGuiID id = window->GetID(str_id); + const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size); + const float default_size = GetFrameHeight(); + ItemSize(size, (size.y >= default_size) ? g.Style.FramePadding.y : -1.0f); + if (!ItemAdd(bb, id)) + return false; + + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held, flags); + + // Render + const ImU32 bg_col = GetColorU32((held && hovered) ? ImGuiCol_ButtonActive : hovered ? ImGuiCol_ButtonHovered : ImGuiCol_Button); + const ImU32 text_col = GetColorU32(ImGuiCol_Text); + RenderNavHighlight(bb, id); + RenderFrame(bb.Min, bb.Max, bg_col, true, g.Style.FrameRounding); + RenderArrow(window->DrawList, bb.Min + ImVec2(ImMax(0.0f, (size.x - g.FontSize) * 0.5f), ImMax(0.0f, (size.y - g.FontSize) * 0.5f)), text_col, dir); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, str_id, g.LastItemData.StatusFlags); + return pressed; +} + +bool ImGui::ArrowButton(const char* str_id, ImGuiDir dir) +{ + float sz = GetFrameHeight(); + return ArrowButtonEx(str_id, dir, ImVec2(sz, sz), ImGuiButtonFlags_None); +} + +// Button to close a window +bool ImGui::CloseButton(ImGuiID id, const ImVec2& pos) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + // Tweak 1: Shrink hit-testing area if button covers an abnormally large proportion of the visible region. That's in order to facilitate moving the window away. (#3825) + // This may better be applied as a general hit-rect reduction mechanism for all widgets to ensure the area to move window is always accessible? + const ImRect bb(pos, pos + ImVec2(g.FontSize, g.FontSize)); + ImRect bb_interact = bb; + const float area_to_visible_ratio = window->OuterRectClipped.GetArea() / bb.GetArea(); + if (area_to_visible_ratio < 1.5f) + bb_interact.Expand(ImFloor(bb_interact.GetSize() * -0.25f)); + + // Tweak 2: We intentionally allow interaction when clipped so that a mechanical Alt,Right,Activate sequence can always close a window. + // (this isn't the common behavior of buttons, but it doesn't affect the user because navigation tends to keep items visible in scrolling layer). + bool is_clipped = !ItemAdd(bb_interact, id); + + bool hovered, held; + bool pressed = ButtonBehavior(bb_interact, id, &hovered, &held); + if (is_clipped) + return pressed; + + // Render + // FIXME: Clarify this mess + ImU32 col = GetColorU32(held ? ImGuiCol_ButtonActive : ImGuiCol_ButtonHovered); + ImVec2 center = bb.GetCenter(); + if (hovered) + window->DrawList->AddCircleFilled(center, ImMax(2.0f, g.FontSize * 0.5f + 1.0f), col); + + float cross_extent = g.FontSize * 0.5f * 0.7071f - 1.0f; + ImU32 cross_col = GetColorU32(ImGuiCol_Text); + center -= ImVec2(0.5f, 0.5f); + window->DrawList->AddLine(center + ImVec2(+cross_extent, +cross_extent), center + ImVec2(-cross_extent, -cross_extent), cross_col, 1.0f); + window->DrawList->AddLine(center + ImVec2(+cross_extent, -cross_extent), center + ImVec2(-cross_extent, +cross_extent), cross_col, 1.0f); + + return pressed; +} + +bool ImGui::CollapseButton(ImGuiID id, const ImVec2& pos) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + ImRect bb(pos, pos + ImVec2(g.FontSize, g.FontSize)); + bool is_clipped = !ItemAdd(bb, id); + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held, ImGuiButtonFlags_None); + if (is_clipped) + return pressed; + + // Render + ImU32 bg_col = GetColorU32((held && hovered) ? ImGuiCol_ButtonActive : hovered ? ImGuiCol_ButtonHovered : ImGuiCol_Button); + ImU32 text_col = GetColorU32(ImGuiCol_Text); + if (hovered || held) + window->DrawList->AddCircleFilled(bb.GetCenter() + ImVec2(0.0f, -0.5f), g.FontSize * 0.5f + 1.0f, bg_col); + RenderArrow(window->DrawList, bb.Min, text_col, window->Collapsed ? ImGuiDir_Right : ImGuiDir_Down, 1.0f); + + // Switch to moving the window after mouse is moved beyond the initial drag threshold + if (IsItemActive() && IsMouseDragging(0)) + StartMouseMovingWindow(window); + + return pressed; +} + +ImGuiID ImGui::GetWindowScrollbarID(ImGuiWindow* window, ImGuiAxis axis) +{ + return window->GetID(axis == ImGuiAxis_X ? "#SCROLLX" : "#SCROLLY"); +} + +// Return scrollbar rectangle, must only be called for corresponding axis if window->ScrollbarX/Y is set. +ImRect ImGui::GetWindowScrollbarRect(ImGuiWindow* window, ImGuiAxis axis) +{ + const ImRect outer_rect = window->Rect(); + const ImRect inner_rect = window->InnerRect; + const float border_size = window->WindowBorderSize; + const float scrollbar_size = window->ScrollbarSizes[axis ^ 1]; // (ScrollbarSizes.x = width of Y scrollbar; ScrollbarSizes.y = height of X scrollbar) + IM_ASSERT(scrollbar_size > 0.0f); + if (axis == ImGuiAxis_X) + return ImRect(inner_rect.Min.x, ImMax(outer_rect.Min.y, outer_rect.Max.y - border_size - scrollbar_size), inner_rect.Max.x - border_size, outer_rect.Max.y - border_size); + else + return ImRect(ImMax(outer_rect.Min.x, outer_rect.Max.x - border_size - scrollbar_size), inner_rect.Min.y, outer_rect.Max.x - border_size, inner_rect.Max.y - border_size); +} + +void ImGui::Scrollbar(ImGuiAxis axis) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + const ImGuiID id = GetWindowScrollbarID(window, axis); + + // Calculate scrollbar bounding box + ImRect bb = GetWindowScrollbarRect(window, axis); + ImDrawFlags rounding_corners = ImDrawFlags_RoundCornersNone; + if (axis == ImGuiAxis_X) + { + rounding_corners |= ImDrawFlags_RoundCornersBottomLeft; + if (!window->ScrollbarY) + rounding_corners |= ImDrawFlags_RoundCornersBottomRight; + } + else + { + if ((window->Flags & ImGuiWindowFlags_NoTitleBar) && !(window->Flags & ImGuiWindowFlags_MenuBar)) + rounding_corners |= ImDrawFlags_RoundCornersTopRight; + if (!window->ScrollbarX) + rounding_corners |= ImDrawFlags_RoundCornersBottomRight; + } + float size_avail = window->InnerRect.Max[axis] - window->InnerRect.Min[axis]; + float size_contents = window->ContentSize[axis] + window->WindowPadding[axis] * 2.0f; + ImS64 scroll = (ImS64)window->Scroll[axis]; + ScrollbarEx(bb, id, axis, &scroll, (ImS64)size_avail, (ImS64)size_contents, rounding_corners); + window->Scroll[axis] = (float)scroll; +} + +// Vertical/Horizontal scrollbar +// The entire piece of code below is rather confusing because: +// - We handle absolute seeking (when first clicking outside the grab) and relative manipulation (afterward or when clicking inside the grab) +// - We store values as normalized ratio and in a form that allows the window content to change while we are holding on a scrollbar +// - We handle both horizontal and vertical scrollbars, which makes the terminology not ideal. +// Still, the code should probably be made simpler.. +bool ImGui::ScrollbarEx(const ImRect& bb_frame, ImGuiID id, ImGuiAxis axis, ImS64* p_scroll_v, ImS64 size_avail_v, ImS64 size_contents_v, ImDrawFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return false; + + const float bb_frame_width = bb_frame.GetWidth(); + const float bb_frame_height = bb_frame.GetHeight(); + if (bb_frame_width <= 0.0f || bb_frame_height <= 0.0f) + return false; + + // When we are too small, start hiding and disabling the grab (this reduce visual noise on very small window and facilitate using the window resize grab) + float alpha = 1.0f; + if ((axis == ImGuiAxis_Y) && bb_frame_height < g.FontSize + g.Style.FramePadding.y * 2.0f) + alpha = ImSaturate((bb_frame_height - g.FontSize) / (g.Style.FramePadding.y * 2.0f)); + if (alpha <= 0.0f) + return false; + + const ImGuiStyle& style = g.Style; + const bool allow_interaction = (alpha >= 1.0f); + + ImRect bb = bb_frame; + bb.Expand(ImVec2(-ImClamp(IM_FLOOR((bb_frame_width - 2.0f) * 0.5f), 0.0f, 3.0f), -ImClamp(IM_FLOOR((bb_frame_height - 2.0f) * 0.5f), 0.0f, 3.0f))); + + // V denote the main, longer axis of the scrollbar (= height for a vertical scrollbar) + const float scrollbar_size_v = (axis == ImGuiAxis_X) ? bb.GetWidth() : bb.GetHeight(); + + // Calculate the height of our grabbable box. It generally represent the amount visible (vs the total scrollable amount) + // But we maintain a minimum size in pixel to allow for the user to still aim inside. + IM_ASSERT(ImMax(size_contents_v, size_avail_v) > 0.0f); // Adding this assert to check if the ImMax(XXX,1.0f) is still needed. PLEASE CONTACT ME if this triggers. + const ImS64 win_size_v = ImMax(ImMax(size_contents_v, size_avail_v), (ImS64)1); + const float grab_h_pixels = ImClamp(scrollbar_size_v * ((float)size_avail_v / (float)win_size_v), style.GrabMinSize, scrollbar_size_v); + const float grab_h_norm = grab_h_pixels / scrollbar_size_v; + + // Handle input right away. None of the code of Begin() is relying on scrolling position before calling Scrollbar(). + bool held = false; + bool hovered = false; + ItemAdd(bb_frame, id, NULL, ImGuiItemFlags_NoNav); + ButtonBehavior(bb, id, &hovered, &held, ImGuiButtonFlags_NoNavFocus); + + const ImS64 scroll_max = ImMax((ImS64)1, size_contents_v - size_avail_v); + float scroll_ratio = ImSaturate((float)*p_scroll_v / (float)scroll_max); + float grab_v_norm = scroll_ratio * (scrollbar_size_v - grab_h_pixels) / scrollbar_size_v; // Grab position in normalized space + if (held && allow_interaction && grab_h_norm < 1.0f) + { + const float scrollbar_pos_v = bb.Min[axis]; + const float mouse_pos_v = g.IO.MousePos[axis]; + + // Click position in scrollbar normalized space (0.0f->1.0f) + const float clicked_v_norm = ImSaturate((mouse_pos_v - scrollbar_pos_v) / scrollbar_size_v); + SetHoveredID(id); + + bool seek_absolute = false; + if (g.ActiveIdIsJustActivated) + { + // On initial click calculate the distance between mouse and the center of the grab + seek_absolute = (clicked_v_norm < grab_v_norm || clicked_v_norm > grab_v_norm + grab_h_norm); + if (seek_absolute) + g.ScrollbarClickDeltaToGrabCenter = 0.0f; + else + g.ScrollbarClickDeltaToGrabCenter = clicked_v_norm - grab_v_norm - grab_h_norm * 0.5f; + } + + // Apply scroll (p_scroll_v will generally point on one member of window->Scroll) + // It is ok to modify Scroll here because we are being called in Begin() after the calculation of ContentSize and before setting up our starting position + const float scroll_v_norm = ImSaturate((clicked_v_norm - g.ScrollbarClickDeltaToGrabCenter - grab_h_norm * 0.5f) / (1.0f - grab_h_norm)); + *p_scroll_v = (ImS64)(scroll_v_norm * scroll_max); + + // Update values for rendering + scroll_ratio = ImSaturate((float)*p_scroll_v / (float)scroll_max); + grab_v_norm = scroll_ratio * (scrollbar_size_v - grab_h_pixels) / scrollbar_size_v; + + // Update distance to grab now that we have seeked and saturated + if (seek_absolute) + g.ScrollbarClickDeltaToGrabCenter = clicked_v_norm - grab_v_norm - grab_h_norm * 0.5f; + } + + // Render + const ImU32 bg_col = GetColorU32(ImGuiCol_ScrollbarBg); + const ImU32 grab_col = GetColorU32(held ? ImGuiCol_ScrollbarGrabActive : hovered ? ImGuiCol_ScrollbarGrabHovered : ImGuiCol_ScrollbarGrab, alpha); + window->DrawList->AddRectFilled(bb_frame.Min, bb_frame.Max, bg_col, window->WindowRounding, flags); + ImRect grab_rect; + if (axis == ImGuiAxis_X) + grab_rect = ImRect(ImLerp(bb.Min.x, bb.Max.x, grab_v_norm), bb.Min.y, ImLerp(bb.Min.x, bb.Max.x, grab_v_norm) + grab_h_pixels, bb.Max.y); + else + grab_rect = ImRect(bb.Min.x, ImLerp(bb.Min.y, bb.Max.y, grab_v_norm), bb.Max.x, ImLerp(bb.Min.y, bb.Max.y, grab_v_norm) + grab_h_pixels); + window->DrawList->AddRectFilled(grab_rect.Min, grab_rect.Max, grab_col, style.ScrollbarRounding); + + return held; +} + +void ImGui::Image(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0, const ImVec2& uv1, const ImVec4& tint_col, const ImVec4& border_col) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size); + if (border_col.w > 0.0f) + bb.Max += ImVec2(2, 2); + ItemSize(bb); + if (!ItemAdd(bb, 0)) + return; + + if (border_col.w > 0.0f) + { + window->DrawList->AddRect(bb.Min, bb.Max, GetColorU32(border_col), 0.0f); + window->DrawList->AddImage(user_texture_id, bb.Min + ImVec2(1, 1), bb.Max - ImVec2(1, 1), uv0, uv1, GetColorU32(tint_col)); + } + else + { + window->DrawList->AddImage(user_texture_id, bb.Min, bb.Max, uv0, uv1, GetColorU32(tint_col)); + } +} + +// ImageButton() is flawed as 'id' is always derived from 'texture_id' (see #2464 #1390) +// We provide this internal helper to write your own variant while we figure out how to redesign the public ImageButton() API. +bool ImGui::ImageButtonEx(ImGuiID id, ImTextureID texture_id, const ImVec2& size, const ImVec2& uv0, const ImVec2& uv1, const ImVec4& bg_col, const ImVec4& tint_col, ImGuiButtonFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + const ImVec2 padding = g.Style.FramePadding; + const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size + padding * 2.0f); + ItemSize(bb); + if (!ItemAdd(bb, id)) + return false; + + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held, flags); + + // Render + const ImU32 col = GetColorU32((held && hovered) ? ImGuiCol_ButtonActive : hovered ? ImGuiCol_ButtonHovered : ImGuiCol_Button); + RenderNavHighlight(bb, id); + RenderFrame(bb.Min, bb.Max, col, true, ImClamp((float)ImMin(padding.x, padding.y), 0.0f, g.Style.FrameRounding)); + if (bg_col.w > 0.0f) + window->DrawList->AddRectFilled(bb.Min + padding, bb.Max - padding, GetColorU32(bg_col)); + window->DrawList->AddImage(texture_id, bb.Min + padding, bb.Max - padding, uv0, uv1, GetColorU32(tint_col)); + + return pressed; +} + +bool ImGui::ImageButton(const char* str_id, ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0, const ImVec2& uv1, const ImVec4& bg_col, const ImVec4& tint_col) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return false; + + return ImageButtonEx(window->GetID(str_id), user_texture_id, size, uv0, uv1, bg_col, tint_col); +} + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS +// Legacy API obsoleted in 1.89. Two differences with new ImageButton() +// - new ImageButton() requires an explicit 'const char* str_id' Old ImageButton() used opaque imTextureId (created issue with: multiple buttons with same image, transient texture id values, opaque computation of ID) +// - new ImageButton() always use style.FramePadding Old ImageButton() had an override argument. +// If you need to change padding with new ImageButton() you can use PushStyleVar(ImGuiStyleVar_FramePadding, value), consistent with other Button functions. +bool ImGui::ImageButton(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0, const ImVec2& uv1, int frame_padding, const ImVec4& bg_col, const ImVec4& tint_col) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return false; + + // Default to using texture ID as ID. User can still push string/integer prefixes. + PushID((void*)(intptr_t)user_texture_id); + const ImGuiID id = window->GetID("#image"); + PopID(); + + if (frame_padding >= 0) + PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2((float)frame_padding, (float)frame_padding)); + bool ret = ImageButtonEx(id, user_texture_id, size, uv0, uv1, bg_col, tint_col); + if (frame_padding >= 0) + PopStyleVar(); + return ret; +} +#endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + +bool ImGui::Checkbox(const char* label, bool* v) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + + const float square_sz = GetFrameHeight(); + const ImVec2 pos = window->DC.CursorPos; + const ImRect total_bb(pos, pos + ImVec2(square_sz + (label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f), label_size.y + style.FramePadding.y * 2.0f)); + ItemSize(total_bb, style.FramePadding.y); + if (!ItemAdd(total_bb, id)) + { + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags | ImGuiItemStatusFlags_Checkable | (*v ? ImGuiItemStatusFlags_Checked : 0)); + return false; + } + + bool hovered, held; + bool pressed = ButtonBehavior(total_bb, id, &hovered, &held); + if (pressed) + { + *v = !(*v); + MarkItemEdited(id); + } + + const ImRect check_bb(pos, pos + ImVec2(square_sz, square_sz)); + RenderNavHighlight(total_bb, id); + RenderFrame(check_bb.Min, check_bb.Max, GetColorU32((held && hovered) ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg), true, style.FrameRounding); + ImU32 check_col = GetColorU32(ImGuiCol_CheckMark); + bool mixed_value = (g.LastItemData.InFlags & ImGuiItemFlags_MixedValue) != 0; + if (mixed_value) + { + // Undocumented tristate/mixed/indeterminate checkbox (#2644) + // This may seem awkwardly designed because the aim is to make ImGuiItemFlags_MixedValue supported by all widgets (not just checkbox) + ImVec2 pad(ImMax(1.0f, IM_FLOOR(square_sz / 3.6f)), ImMax(1.0f, IM_FLOOR(square_sz / 3.6f))); + window->DrawList->AddRectFilled(check_bb.Min + pad, check_bb.Max - pad, check_col, style.FrameRounding); + } + else if (*v) + { + const float pad = ImMax(1.0f, IM_FLOOR(square_sz / 6.0f)); + RenderCheckMark(window->DrawList, check_bb.Min + ImVec2(pad, pad), check_col, square_sz - pad * 2.0f); + } + + ImVec2 label_pos = ImVec2(check_bb.Max.x + style.ItemInnerSpacing.x, check_bb.Min.y + style.FramePadding.y); + if (g.LogEnabled) + LogRenderedText(&label_pos, mixed_value ? "[~]" : *v ? "[x]" : "[ ]"); + if (label_size.x > 0.0f) + RenderText(label_pos, label); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags | ImGuiItemStatusFlags_Checkable | (*v ? ImGuiItemStatusFlags_Checked : 0)); + return pressed; +} + + +template +bool ImGui::CheckboxFlagsT(const char* label, T* flags, T flags_value) +{ + bool all_on = (*flags & flags_value) == flags_value; + bool any_on = (*flags & flags_value) != 0; + bool pressed; + if (!all_on && any_on) + { + ImGuiContext& g = *GImGui; + g.NextItemData.ItemFlags |= ImGuiItemFlags_MixedValue; + pressed = Checkbox(label, &all_on); + } + else + { + pressed = Checkbox(label, &all_on); + + } + if (pressed) + { + if (all_on) + *flags |= flags_value; + else + *flags &= ~flags_value; + } + return pressed; +} + +bool ImGui::CheckboxFlags(const char* label, int* flags, int flags_value) +{ + return CheckboxFlagsT(label, flags, flags_value); +} + +bool ImGui::CheckboxFlags(const char* label, unsigned int* flags, unsigned int flags_value) +{ + return CheckboxFlagsT(label, flags, flags_value); +} + +bool ImGui::CheckboxFlags(const char* label, ImS64* flags, ImS64 flags_value) +{ + return CheckboxFlagsT(label, flags, flags_value); +} + +bool ImGui::CheckboxFlags(const char* label, ImU64* flags, ImU64 flags_value) +{ + return CheckboxFlagsT(label, flags, flags_value); +} + +bool ImGui::RadioButton(const char* label, bool active) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + + const float square_sz = GetFrameHeight(); + const ImVec2 pos = window->DC.CursorPos; + const ImRect check_bb(pos, pos + ImVec2(square_sz, square_sz)); + const ImRect total_bb(pos, pos + ImVec2(square_sz + (label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f), label_size.y + style.FramePadding.y * 2.0f)); + ItemSize(total_bb, style.FramePadding.y); + if (!ItemAdd(total_bb, id)) + return false; + + ImVec2 center = check_bb.GetCenter(); + center.x = IM_ROUND(center.x); + center.y = IM_ROUND(center.y); + const float radius = (square_sz - 1.0f) * 0.5f; + + bool hovered, held; + bool pressed = ButtonBehavior(total_bb, id, &hovered, &held); + if (pressed) + MarkItemEdited(id); + + RenderNavHighlight(total_bb, id); + const int num_segment = window->DrawList->_CalcCircleAutoSegmentCount(radius); + window->DrawList->AddCircleFilled(center, radius, GetColorU32((held && hovered) ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg), num_segment); + if (active) + { + const float pad = ImMax(1.0f, IM_FLOOR(square_sz / 6.0f)); + window->DrawList->AddCircleFilled(center, radius - pad, GetColorU32(ImGuiCol_CheckMark)); + } + + if (style.FrameBorderSize > 0.0f) + { + window->DrawList->AddCircle(center + ImVec2(1, 1), radius, GetColorU32(ImGuiCol_BorderShadow), num_segment, style.FrameBorderSize); + window->DrawList->AddCircle(center, radius, GetColorU32(ImGuiCol_Border), num_segment, style.FrameBorderSize); + } + + ImVec2 label_pos = ImVec2(check_bb.Max.x + style.ItemInnerSpacing.x, check_bb.Min.y + style.FramePadding.y); + if (g.LogEnabled) + LogRenderedText(&label_pos, active ? "(x)" : "( )"); + if (label_size.x > 0.0f) + RenderText(label_pos, label); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags); + return pressed; +} + +// FIXME: This would work nicely if it was a public template, e.g. 'template RadioButton(const char* label, T* v, T v_button)', but I'm not sure how we would expose it.. +bool ImGui::RadioButton(const char* label, int* v, int v_button) +{ + const bool pressed = RadioButton(label, *v == v_button); + if (pressed) + *v = v_button; + return pressed; +} + +// size_arg (for each axis) < 0.0f: align to end, 0.0f: auto, > 0.0f: specified size +void ImGui::ProgressBar(float fraction, const ImVec2& size_arg, const char* overlay) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + + ImVec2 pos = window->DC.CursorPos; + ImVec2 size = CalcItemSize(size_arg, CalcItemWidth(), g.FontSize + style.FramePadding.y * 2.0f); + ImRect bb(pos, pos + size); + ItemSize(size, style.FramePadding.y); + if (!ItemAdd(bb, 0)) + return; + + // Render + fraction = ImSaturate(fraction); + RenderFrame(bb.Min, bb.Max, GetColorU32(ImGuiCol_FrameBg), true, style.FrameRounding); + bb.Expand(ImVec2(-style.FrameBorderSize, -style.FrameBorderSize)); + const ImVec2 fill_br = ImVec2(ImLerp(bb.Min.x, bb.Max.x, fraction), bb.Max.y); + RenderRectFilledRangeH(window->DrawList, bb, GetColorU32(ImGuiCol_PlotHistogram), 0.0f, fraction, style.FrameRounding); + + // Default displaying the fraction as percentage string, but user can override it + char overlay_buf[32]; + if (!overlay) + { + ImFormatString(overlay_buf, IM_ARRAYSIZE(overlay_buf), "%.0f%%", fraction * 100 + 0.01f); + overlay = overlay_buf; + } + + ImVec2 overlay_size = CalcTextSize(overlay, NULL); + if (overlay_size.x > 0.0f) + RenderTextClipped(ImVec2(ImClamp(fill_br.x + style.ItemSpacing.x, bb.Min.x, bb.Max.x - overlay_size.x - style.ItemInnerSpacing.x), bb.Min.y), bb.Max, overlay, NULL, &overlay_size, ImVec2(0.0f, 0.5f), &bb); +} + +void ImGui::Bullet() +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const float line_height = ImMax(ImMin(window->DC.CurrLineSize.y, g.FontSize + style.FramePadding.y * 2), g.FontSize); + const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(g.FontSize, line_height)); + ItemSize(bb); + if (!ItemAdd(bb, 0)) + { + SameLine(0, style.FramePadding.x * 2); + return; + } + + // Render and stay on same line + ImU32 text_col = GetColorU32(ImGuiCol_Text); + RenderBullet(window->DrawList, bb.Min + ImVec2(style.FramePadding.x + g.FontSize * 0.5f, line_height * 0.5f), text_col); + SameLine(0, style.FramePadding.x * 2.0f); +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: Low-level Layout helpers +//------------------------------------------------------------------------- +// - Spacing() +// - Dummy() +// - NewLine() +// - AlignTextToFramePadding() +// - SeparatorEx() [Internal] +// - Separator() +// - SplitterBehavior() [Internal] +// - ShrinkWidths() [Internal] +//------------------------------------------------------------------------- + +void ImGui::Spacing() +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + ItemSize(ImVec2(0, 0)); +} + +void ImGui::Dummy(const ImVec2& size) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size); + ItemSize(size); + ItemAdd(bb, 0); +} + +void ImGui::NewLine() +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + ImGuiContext& g = *GImGui; + const ImGuiLayoutType backup_layout_type = window->DC.LayoutType; + window->DC.LayoutType = ImGuiLayoutType_Vertical; + window->DC.IsSameLine = false; + if (window->DC.CurrLineSize.y > 0.0f) // In the event that we are on a line with items that is smaller that FontSize high, we will preserve its height. + ItemSize(ImVec2(0, 0)); + else + ItemSize(ImVec2(0.0f, g.FontSize)); + window->DC.LayoutType = backup_layout_type; +} + +void ImGui::AlignTextToFramePadding() +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + ImGuiContext& g = *GImGui; + window->DC.CurrLineSize.y = ImMax(window->DC.CurrLineSize.y, g.FontSize + g.Style.FramePadding.y * 2); + window->DC.CurrLineTextBaseOffset = ImMax(window->DC.CurrLineTextBaseOffset, g.Style.FramePadding.y); +} + +// Horizontal/vertical separating line +// FIXME: Surprisingly, this seemingly trivial widget is a victim of many different legacy/tricky layout issues. +// Note how thickness == 1.0f is handled specifically as not moving CursorPos by 'thickness', but other values are. +void ImGui::SeparatorEx(ImGuiSeparatorFlags flags, float thickness) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + ImGuiContext& g = *GImGui; + IM_ASSERT(ImIsPowerOfTwo(flags & (ImGuiSeparatorFlags_Horizontal | ImGuiSeparatorFlags_Vertical))); // Check that only 1 option is selected + IM_ASSERT(thickness > 0.0f); + + if (flags & ImGuiSeparatorFlags_Vertical) + { + // Vertical separator, for menu bars (use current line height). + float y1 = window->DC.CursorPos.y; + float y2 = window->DC.CursorPos.y + window->DC.CurrLineSize.y; + const ImRect bb(ImVec2(window->DC.CursorPos.x, y1), ImVec2(window->DC.CursorPos.x + thickness, y2)); + ItemSize(ImVec2(thickness, 0.0f)); + if (!ItemAdd(bb, 0)) + return; + + // Draw + window->DrawList->AddRectFilled(bb.Min, bb.Max, GetColorU32(ImGuiCol_Separator)); + if (g.LogEnabled) + LogText(" |"); + } + else if (flags & ImGuiSeparatorFlags_Horizontal) + { + // Horizontal Separator + float x1 = window->Pos.x; + float x2 = window->Pos.x + window->Size.x; + + // FIXME-WORKRECT: old hack (#205) until we decide of consistent behavior with WorkRect/Indent and Separator + if (g.GroupStack.Size > 0 && g.GroupStack.back().WindowID == window->ID) + x1 += window->DC.Indent.x; + + // FIXME-WORKRECT: In theory we should simply be using WorkRect.Min.x/Max.x everywhere but it isn't aesthetically what we want, + // need to introduce a variant of WorkRect for that purpose. (#4787) + if (ImGuiTable* table = g.CurrentTable) + { + x1 = table->Columns[table->CurrentColumn].MinX; + x2 = table->Columns[table->CurrentColumn].MaxX; + } + + // Before Tables API happened, we relied on Separator() to span all columns of a Columns() set. + // We currently don't need to provide the same feature for tables because tables naturally have border features. + ImGuiOldColumns* columns = (flags & ImGuiSeparatorFlags_SpanAllColumns) ? window->DC.CurrentColumns : NULL; + if (columns) + PushColumnsBackground(); + + // We don't provide our width to the layout so that it doesn't get feed back into AutoFit + // FIXME: This prevents ->CursorMaxPos based bounding box evaluation from working (e.g. TableEndCell) + const float thickness_for_layout = (thickness == 1.0f) ? 0.0f : thickness; // FIXME: See 1.70/1.71 Separator() change: makes legacy 1-px separator not affect layout yet. Should change. + const ImRect bb(ImVec2(x1, window->DC.CursorPos.y), ImVec2(x2, window->DC.CursorPos.y + thickness)); + ItemSize(ImVec2(0.0f, thickness_for_layout)); + + if (ItemAdd(bb, 0)) + { + // Draw + window->DrawList->AddRectFilled(bb.Min, bb.Max, GetColorU32(ImGuiCol_Separator)); + if (g.LogEnabled) + LogRenderedText(&bb.Min, "--------------------------------\n"); + + } + if (columns) + { + PopColumnsBackground(); + columns->LineMinY = window->DC.CursorPos.y; + } + } +} + +void ImGui::Separator() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return; + + // Those flags should eventually be configurable by the user + // FIXME: We cannot g.Style.SeparatorTextBorderSize for thickness as it relates to SeparatorText() which is a decorated separator, not defaulting to 1.0f. + ImGuiSeparatorFlags flags = (window->DC.LayoutType == ImGuiLayoutType_Horizontal) ? ImGuiSeparatorFlags_Vertical : ImGuiSeparatorFlags_Horizontal; + flags |= ImGuiSeparatorFlags_SpanAllColumns; // NB: this only applies to legacy Columns() api as they relied on Separator() a lot. + SeparatorEx(flags, 1.0f); +} + +void ImGui::SeparatorTextEx(ImGuiID id, const char* label, const char* label_end, float extra_w) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiStyle& style = g.Style; + + const ImVec2 label_size = CalcTextSize(label, label_end, false); + const ImVec2 pos = window->DC.CursorPos; + const ImVec2 padding = style.SeparatorTextPadding; + + const float separator_thickness = style.SeparatorTextBorderSize; + const ImVec2 min_size(label_size.x + extra_w + padding.x * 2.0f, ImMax(label_size.y + padding.y * 2.0f, separator_thickness)); + const ImRect bb(pos, ImVec2(window->WorkRect.Max.x, pos.y + min_size.y)); + const float text_baseline_y = ImFloor((bb.GetHeight() - label_size.y) * style.SeparatorTextAlign.y + 0.99999f); //ImMax(padding.y, ImFloor((style.SeparatorTextSize - label_size.y) * 0.5f)); + ItemSize(min_size, text_baseline_y); + if (!ItemAdd(bb, id)) + return; + + const float sep1_x1 = pos.x; + const float sep2_x2 = bb.Max.x; + const float seps_y = ImFloor((bb.Min.y + bb.Max.y) * 0.5f + 0.99999f); + + const float label_avail_w = ImMax(0.0f, sep2_x2 - sep1_x1 - padding.x * 2.0f); + const ImVec2 label_pos(pos.x + padding.x + ImMax(0.0f, (label_avail_w - label_size.x - extra_w) * style.SeparatorTextAlign.x), pos.y + text_baseline_y); // FIXME-ALIGN + + // This allows using SameLine() to position something in the 'extra_w' + window->DC.CursorPosPrevLine.x = label_pos.x + label_size.x; + + const ImU32 separator_col = GetColorU32(ImGuiCol_Separator); + if (label_size.x > 0.0f) + { + const float sep1_x2 = label_pos.x - style.ItemSpacing.x; + const float sep2_x1 = label_pos.x + label_size.x + extra_w + style.ItemSpacing.x; + if (sep1_x2 > sep1_x1 && separator_thickness > 0.0f) + window->DrawList->AddLine(ImVec2(sep1_x1, seps_y), ImVec2(sep1_x2, seps_y), separator_col, separator_thickness); + if (sep2_x2 > sep2_x1 && separator_thickness > 0.0f) + window->DrawList->AddLine(ImVec2(sep2_x1, seps_y), ImVec2(sep2_x2, seps_y), separator_col, separator_thickness); + if (g.LogEnabled) + LogSetNextTextDecoration("---", NULL); + RenderTextEllipsis(window->DrawList, label_pos, ImVec2(bb.Max.x, bb.Max.y + style.ItemSpacing.y), bb.Max.x, bb.Max.x, label, label_end, &label_size); + } + else + { + if (g.LogEnabled) + LogText("---"); + if (separator_thickness > 0.0f) + window->DrawList->AddLine(ImVec2(sep1_x1, seps_y), ImVec2(sep2_x2, seps_y), separator_col, separator_thickness); + } +} + +void ImGui::SeparatorText(const char* label) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + // The SeparatorText() vs SeparatorTextEx() distinction is designed to be considerate that we may want: + // - allow separator-text to be draggable items (would require a stable ID + a noticeable highlight) + // - this high-level entry point to allow formatting? (which in turns may require ID separate from formatted string) + // - because of this we probably can't turn 'const char* label' into 'const char* fmt, ...' + // Otherwise, we can decide that users wanting to drag this would layout a dedicated drag-item, + // and then we can turn this into a format function. + SeparatorTextEx(0, label, FindRenderedTextEnd(label), 0.0f); +} + +// Using 'hover_visibility_delay' allows us to hide the highlight and mouse cursor for a short time, which can be convenient to reduce visual noise. +bool ImGui::SplitterBehavior(const ImRect& bb, ImGuiID id, ImGuiAxis axis, float* size1, float* size2, float min_size1, float min_size2, float hover_extend, float hover_visibility_delay, ImU32 bg_col) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + if (!ItemAdd(bb, id, NULL, ImGuiItemFlags_NoNav)) + return false; + + // FIXME: AFAIK the only leftover reason for passing ImGuiButtonFlags_AllowOverlap here is + // to allow caller of SplitterBehavior() to call SetItemAllowOverlap() after the item. + // Nowadays we would instead want to use SetNextItemAllowOverlap() before the item. + ImGuiButtonFlags button_flags = ImGuiButtonFlags_FlattenChildren; +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + button_flags |= ImGuiButtonFlags_AllowOverlap; +#endif + + bool hovered, held; + ImRect bb_interact = bb; + bb_interact.Expand(axis == ImGuiAxis_Y ? ImVec2(0.0f, hover_extend) : ImVec2(hover_extend, 0.0f)); + ButtonBehavior(bb_interact, id, &hovered, &held, button_flags); + if (hovered) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HoveredRect; // for IsItemHovered(), because bb_interact is larger than bb + + if (held || (hovered && g.HoveredIdPreviousFrame == id && g.HoveredIdTimer >= hover_visibility_delay)) + SetMouseCursor(axis == ImGuiAxis_Y ? ImGuiMouseCursor_ResizeNS : ImGuiMouseCursor_ResizeEW); + + ImRect bb_render = bb; + if (held) + { + ImVec2 mouse_delta_2d = g.IO.MousePos - g.ActiveIdClickOffset - bb_interact.Min; + float mouse_delta = (axis == ImGuiAxis_Y) ? mouse_delta_2d.y : mouse_delta_2d.x; + + // Minimum pane size + float size_1_maximum_delta = ImMax(0.0f, *size1 - min_size1); + float size_2_maximum_delta = ImMax(0.0f, *size2 - min_size2); + if (mouse_delta < -size_1_maximum_delta) + mouse_delta = -size_1_maximum_delta; + if (mouse_delta > size_2_maximum_delta) + mouse_delta = size_2_maximum_delta; + + // Apply resize + if (mouse_delta != 0.0f) + { + if (mouse_delta < 0.0f) + IM_ASSERT(*size1 + mouse_delta >= min_size1); + if (mouse_delta > 0.0f) + IM_ASSERT(*size2 - mouse_delta >= min_size2); + *size1 += mouse_delta; + *size2 -= mouse_delta; + bb_render.Translate((axis == ImGuiAxis_X) ? ImVec2(mouse_delta, 0.0f) : ImVec2(0.0f, mouse_delta)); + MarkItemEdited(id); + } + } + + // Render at new position + if (bg_col & IM_COL32_A_MASK) + window->DrawList->AddRectFilled(bb_render.Min, bb_render.Max, bg_col, 0.0f); + const ImU32 col = GetColorU32(held ? ImGuiCol_SeparatorActive : (hovered && g.HoveredIdTimer >= hover_visibility_delay) ? ImGuiCol_SeparatorHovered : ImGuiCol_Separator); + window->DrawList->AddRectFilled(bb_render.Min, bb_render.Max, col, 0.0f); + + return held; +} + +static int IMGUI_CDECL ShrinkWidthItemComparer(const void* lhs, const void* rhs) +{ + const ImGuiShrinkWidthItem* a = (const ImGuiShrinkWidthItem*)lhs; + const ImGuiShrinkWidthItem* b = (const ImGuiShrinkWidthItem*)rhs; + if (int d = (int)(b->Width - a->Width)) + return d; + return (b->Index - a->Index); +} + +// Shrink excess width from a set of item, by removing width from the larger items first. +// Set items Width to -1.0f to disable shrinking this item. +void ImGui::ShrinkWidths(ImGuiShrinkWidthItem* items, int count, float width_excess) +{ + if (count == 1) + { + if (items[0].Width >= 0.0f) + items[0].Width = ImMax(items[0].Width - width_excess, 1.0f); + return; + } + ImQsort(items, (size_t)count, sizeof(ImGuiShrinkWidthItem), ShrinkWidthItemComparer); + int count_same_width = 1; + while (width_excess > 0.0f && count_same_width < count) + { + while (count_same_width < count && items[0].Width <= items[count_same_width].Width) + count_same_width++; + float max_width_to_remove_per_item = (count_same_width < count && items[count_same_width].Width >= 0.0f) ? (items[0].Width - items[count_same_width].Width) : (items[0].Width - 1.0f); + if (max_width_to_remove_per_item <= 0.0f) + break; + float width_to_remove_per_item = ImMin(width_excess / count_same_width, max_width_to_remove_per_item); + for (int item_n = 0; item_n < count_same_width; item_n++) + items[item_n].Width -= width_to_remove_per_item; + width_excess -= width_to_remove_per_item * count_same_width; + } + + // Round width and redistribute remainder + // Ensure that e.g. the right-most tab of a shrunk tab-bar always reaches exactly at the same distance from the right-most edge of the tab bar separator. + width_excess = 0.0f; + for (int n = 0; n < count; n++) + { + float width_rounded = ImFloor(items[n].Width); + width_excess += items[n].Width - width_rounded; + items[n].Width = width_rounded; + } + while (width_excess > 0.0f) + for (int n = 0; n < count && width_excess > 0.0f; n++) + { + float width_to_add = ImMin(items[n].InitialWidth - items[n].Width, 1.0f); + items[n].Width += width_to_add; + width_excess -= width_to_add; + } +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: ComboBox +//------------------------------------------------------------------------- +// - CalcMaxPopupHeightFromItemCount() [Internal] +// - BeginCombo() +// - BeginComboPopup() [Internal] +// - EndCombo() +// - BeginComboPreview() [Internal] +// - EndComboPreview() [Internal] +// - Combo() +//------------------------------------------------------------------------- + +static float CalcMaxPopupHeightFromItemCount(int items_count) +{ + ImGuiContext& g = *GImGui; + if (items_count <= 0) + return FLT_MAX; + return (g.FontSize + g.Style.ItemSpacing.y) * items_count - g.Style.ItemSpacing.y + (g.Style.WindowPadding.y * 2); +} + +bool ImGui::BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + + ImGuiNextWindowDataFlags backup_next_window_data_flags = g.NextWindowData.Flags; + g.NextWindowData.ClearFlags(); // We behave like Begin() and need to consume those values + if (window->SkipItems) + return false; + + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + IM_ASSERT((flags & (ImGuiComboFlags_NoArrowButton | ImGuiComboFlags_NoPreview)) != (ImGuiComboFlags_NoArrowButton | ImGuiComboFlags_NoPreview)); // Can't use both flags together + + const float arrow_size = (flags & ImGuiComboFlags_NoArrowButton) ? 0.0f : GetFrameHeight(); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + const float w = (flags & ImGuiComboFlags_NoPreview) ? arrow_size : CalcItemWidth(); + const float h = GetFrameHeight(); + + // modified by asphyxia + const ImRect bb(window->DC.CursorPos + ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + h : 0.0f, label_size.x > 0.0f ? label_size.y : 0.0f), window->DC.CursorPos + ImVec2(w, (label_size.x > 0.0f ? label_size.y : 0.0f) + h)); + const ImRect total_bb(window->DC.CursorPos, bb.Max - ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + h : 0.0f, 0.0f)); + + ItemSize(total_bb, style.FramePadding.y); + if (!ItemAdd(total_bb, id, &bb)) + return false; + + // Open on click + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held); + const ImGuiID popup_id = ImHashStr("##ComboPopup", 0, id); + bool popup_open = IsPopupOpen(popup_id, ImGuiPopupFlags_None); + if (pressed && !popup_open) + { + OpenPopupEx(popup_id, ImGuiPopupFlags_None); + popup_open = true; + } + + // Render shape + // modified by asphyxia + const ImU32 frame_col = GetColorU32(hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_ControlBg); + const float value_x2 = ImMax(bb.Min.x, bb.Max.x - arrow_size); + RenderNavHighlight(bb, id); + RenderFrame(bb.Min, bb.Max, GetColorU32(ImGuiCol_FrameBg), true, style.FrameRounding); + + if (!(flags & ImGuiComboFlags_NoPreview)) + window->DrawList->AddRectFilled(bb.Min, ImVec2(value_x2, bb.Max.y), frame_col, style.FrameRounding, (flags & ImGuiComboFlags_NoArrowButton) ? ImDrawFlags_RoundCornersAll : ImDrawFlags_RoundCornersLeft); + if (!(flags & ImGuiComboFlags_NoArrowButton)) + { + ImU32 bg_col = GetColorU32((popup_open || hovered) ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBgActive); + // modified by asphyxia + window->DrawList->AddRectFilled(ImVec2(value_x2, bb.Min.y), bb.Max, bg_col, style.FrameRounding, (w <= arrow_size) ? ImDrawFlags_RoundCornersAll : ImDrawFlags_RoundCornersRight); + //window->DrawList->AddRectFilled(ImVec2(value_x2, bb.Min.y), bb.Max, bg_col, style.FrameRounding, (w <= arrow_size) ? ImDrawFlags_RoundCornersAll : ImDrawFlags_RoundCornersRight); + if (value_x2 + arrow_size - style.FramePadding.x <= bb.Max.x) + RenderArrow(window->DrawList, ImVec2(value_x2 + style.FramePadding.y, bb.Min.y + style.FramePadding.y + 4), GetColorU32(ImGuiCol_Triangle), popup_open ? ImGuiDir_Up : ImGuiDir_Down, 0.5f); + } + + RenderFrameBorder(bb.Min, bb.Max, style.FrameRounding); + + // Custom preview + if (flags & ImGuiComboFlags_CustomPreview) + { + g.ComboPreviewData.PreviewRect = ImRect(bb.Min.x, bb.Min.y, value_x2, bb.Max.y); + IM_ASSERT(preview_value == NULL || preview_value[0] == 0); + preview_value = NULL; + } + + // Render preview and label + if (preview_value != NULL && !(flags & ImGuiComboFlags_NoPreview)) + { + if (g.LogEnabled) + LogSetNextTextDecoration("{", "}"); + RenderTextClipped(bb.Min + style.FramePadding, ImVec2(value_x2, bb.Max.y), preview_value, NULL, NULL); + } + + if (label_size.x > 0) + // modified by asphyxia + RenderText(ImVec2(bb.Min.x, total_bb.Min.y + style.FramePadding.y), label); + + if (!popup_open) + return false; + + g.NextWindowData.Flags = backup_next_window_data_flags; + return BeginComboPopup(popup_id, bb, flags); +} + +bool ImGui::BeginComboPopup(ImGuiID popup_id, const ImRect& bb, ImGuiComboFlags flags) +{ + ImGuiContext& g = *GImGui; + if (!IsPopupOpen(popup_id, ImGuiPopupFlags_None)) + { + g.NextWindowData.ClearFlags(); + return false; + } + + // Set popup size + float w = bb.GetWidth(); + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSizeConstraint) + { + g.NextWindowData.SizeConstraintRect.Min.x = ImMax(g.NextWindowData.SizeConstraintRect.Min.x, w); + } + else + { + if ((flags & ImGuiComboFlags_HeightMask_) == 0) + flags |= ImGuiComboFlags_HeightRegular; + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiComboFlags_HeightMask_)); // Only one + int popup_max_height_in_items = -1; + if (flags & ImGuiComboFlags_HeightRegular) popup_max_height_in_items = 8; + else if (flags & ImGuiComboFlags_HeightSmall) popup_max_height_in_items = 4; + else if (flags & ImGuiComboFlags_HeightLarge) popup_max_height_in_items = 20; + ImVec2 constraint_min(0.0f, 0.0f), constraint_max(FLT_MAX, FLT_MAX); + if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSize) == 0 || g.NextWindowData.SizeVal.x <= 0.0f) // Don't apply constraints if user specified a size + constraint_min.x = w; + if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSize) == 0 || g.NextWindowData.SizeVal.y <= 0.0f) + constraint_max.y = CalcMaxPopupHeightFromItemCount(popup_max_height_in_items); + SetNextWindowSizeConstraints(constraint_min, constraint_max); + } + + // This is essentially a specialized version of BeginPopupEx() + char name[16]; + ImFormatString(name, IM_ARRAYSIZE(name), "##Combo_%02d", g.BeginPopupStack.Size); // Recycle windows based on depth + + // Set position given a custom constraint (peak into expected window size so we can position it) + // FIXME: This might be easier to express with an hypothetical SetNextWindowPosConstraints() function? + // FIXME: This might be moved to Begin() or at least around the same spot where Tooltips and other Popups are calling FindBestWindowPosForPopupEx()? + if (ImGuiWindow* popup_window = FindWindowByName(name)) + if (popup_window->WasActive) + { + // Always override 'AutoPosLastDirection' to not leave a chance for a past value to affect us. + ImVec2 size_expected = CalcWindowNextAutoFitSize(popup_window); + popup_window->AutoPosLastDirection = (flags & ImGuiComboFlags_PopupAlignLeft) ? ImGuiDir_Left : ImGuiDir_Down; // Left = "Below, Toward Left", Down = "Below, Toward Right (default)" + ImRect r_outer = GetPopupAllowedExtentRect(popup_window); + ImVec2 pos = FindBestWindowPosForPopupEx(bb.GetBL(), size_expected, &popup_window->AutoPosLastDirection, r_outer, bb, ImGuiPopupPositionPolicy_ComboBox); + SetNextWindowPos(pos); + } + + // We don't use BeginPopupEx() solely because we have a custom name string, which we could make an argument to BeginPopupEx() + ImGuiWindowFlags window_flags = ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_Popup | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_NoMove; + PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(g.Style.FramePadding.x, g.Style.WindowPadding.y)); // Horizontally align ourselves with the framed text + bool ret = Begin(name, NULL, window_flags); + PopStyleVar(); + if (!ret) + { + EndPopup(); + IM_ASSERT(0); // This should never happen as we tested for IsPopupOpen() above + return false; + } + return true; +} + +void ImGui::EndCombo() +{ + EndPopup(); +} + +// Call directly after the BeginCombo/EndCombo block. The preview is designed to only host non-interactive elements +// (Experimental, see GitHub issues: #1658, #4168) +bool ImGui::BeginComboPreview() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiComboPreviewData* preview_data = &g.ComboPreviewData; + + if (window->SkipItems || !(g.LastItemData.StatusFlags & ImGuiItemStatusFlags_Visible)) + return false; + IM_ASSERT(g.LastItemData.Rect.Min.x == preview_data->PreviewRect.Min.x && g.LastItemData.Rect.Min.y == preview_data->PreviewRect.Min.y); // Didn't call after BeginCombo/EndCombo block or forgot to pass ImGuiComboFlags_CustomPreview flag? + if (!window->ClipRect.Overlaps(preview_data->PreviewRect)) // Narrower test (optional) + return false; + + // FIXME: This could be contained in a PushWorkRect() api + preview_data->BackupCursorPos = window->DC.CursorPos; + preview_data->BackupCursorMaxPos = window->DC.CursorMaxPos; + preview_data->BackupCursorPosPrevLine = window->DC.CursorPosPrevLine; + preview_data->BackupPrevLineTextBaseOffset = window->DC.PrevLineTextBaseOffset; + preview_data->BackupLayout = window->DC.LayoutType; + window->DC.CursorPos = preview_data->PreviewRect.Min + g.Style.FramePadding; + window->DC.CursorMaxPos = window->DC.CursorPos; + window->DC.LayoutType = ImGuiLayoutType_Horizontal; + window->DC.IsSameLine = false; + PushClipRect(preview_data->PreviewRect.Min, preview_data->PreviewRect.Max, true); + + return true; +} + +void ImGui::EndComboPreview() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiComboPreviewData* preview_data = &g.ComboPreviewData; + + // FIXME: Using CursorMaxPos approximation instead of correct AABB which we will store in ImDrawCmd in the future + ImDrawList* draw_list = window->DrawList; + if (window->DC.CursorMaxPos.x < preview_data->PreviewRect.Max.x && window->DC.CursorMaxPos.y < preview_data->PreviewRect.Max.y) + if (draw_list->CmdBuffer.Size > 1) // Unlikely case that the PushClipRect() didn't create a command + { + draw_list->_CmdHeader.ClipRect = draw_list->CmdBuffer[draw_list->CmdBuffer.Size - 1].ClipRect = draw_list->CmdBuffer[draw_list->CmdBuffer.Size - 2].ClipRect; + draw_list->_TryMergeDrawCmds(); + } + PopClipRect(); + window->DC.CursorPos = preview_data->BackupCursorPos; + window->DC.CursorMaxPos = ImMax(window->DC.CursorMaxPos, preview_data->BackupCursorMaxPos); + window->DC.CursorPosPrevLine = preview_data->BackupCursorPosPrevLine; + window->DC.PrevLineTextBaseOffset = preview_data->BackupPrevLineTextBaseOffset; + window->DC.LayoutType = preview_data->BackupLayout; + window->DC.IsSameLine = false; + preview_data->PreviewRect = ImRect(); +} + +// Getter for the old Combo() API: const char*[] +static bool Items_ArrayGetter(void* data, int idx, const char** out_text) +{ + const char* const* items = (const char* const*)data; + if (out_text) + *out_text = items[idx]; + return true; +} + +// Getter for the old Combo() API: "item1\0item2\0item3\0" +static bool Items_SingleStringGetter(void* data, int idx, const char** out_text) +{ + // FIXME-OPT: we could pre-compute the indices to fasten this. But only 1 active combo means the waste is limited. + const char* items_separated_by_zeros = (const char*)data; + int items_count = 0; + const char* p = items_separated_by_zeros; + while (*p) + { + if (idx == items_count) + break; + p += strlen(p) + 1; + items_count++; + } + if (!*p) + return false; + if (out_text) + *out_text = p; + return true; +} + +// Old API, prefer using BeginCombo() nowadays if you can. +bool ImGui::Combo(const char* label, int* current_item, bool (*items_getter)(void*, int, const char**), void* data, int items_count, int popup_max_height_in_items) +{ + ImGuiContext& g = *GImGui; + + // Call the getter to obtain the preview string which is a parameter to BeginCombo() + const char* preview_value = NULL; + if (*current_item >= 0 && *current_item < items_count) + items_getter(data, *current_item, &preview_value); + + // The old Combo() API exposed "popup_max_height_in_items". The new more general BeginCombo() API doesn't have/need it, but we emulate it here. + if (popup_max_height_in_items != -1 && !(g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSizeConstraint)) + SetNextWindowSizeConstraints(ImVec2(0, 0), ImVec2(FLT_MAX, CalcMaxPopupHeightFromItemCount(popup_max_height_in_items))); + + if (!BeginCombo(label, preview_value, ImGuiComboFlags_None)) + return false; + + // Display items + // FIXME-OPT: Use clipper (but we need to disable it on the appearing frame to make sure our call to SetItemDefaultFocus() is processed) + bool value_changed = false; + for (int i = 0; i < items_count; i++) + { + PushID(i); + const bool item_selected = (i == *current_item); + const char* item_text; + if (!items_getter(data, i, &item_text)) + item_text = "*Unknown item*"; + if (Selectable(item_text, item_selected) && *current_item != i) + { + value_changed = true; + *current_item = i; + } + if (item_selected) + SetItemDefaultFocus(); + PopID(); + } + + EndCombo(); + + if (value_changed) + MarkItemEdited(g.LastItemData.ID); + + return value_changed; +} + +// Combo box helper allowing to pass an array of strings. +bool ImGui::Combo(const char* label, int* current_item, const char* const items[], int items_count, int height_in_items) +{ + const bool value_changed = Combo(label, current_item, Items_ArrayGetter, (void*)items, items_count, height_in_items); + return value_changed; +} + +// Combo box helper allowing to pass all items in a single string literal holding multiple zero-terminated items "item1\0item2\0" +bool ImGui::Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int height_in_items) +{ + int items_count = 0; + const char* p = items_separated_by_zeros; // FIXME-OPT: Avoid computing this, or at least only when combo is open + while (*p) + { + p += strlen(p) + 1; + items_count++; + } + bool value_changed = Combo(label, current_item, Items_SingleStringGetter, (void*)items_separated_by_zeros, items_count, height_in_items); + return value_changed; +} + +//------------------------------------------------------------------------- +// [SECTION] Data Type and Data Formatting Helpers [Internal] +//------------------------------------------------------------------------- +// - DataTypeGetInfo() +// - DataTypeFormatString() +// - DataTypeApplyOp() +// - DataTypeApplyOpFromText() +// - DataTypeCompare() +// - DataTypeClamp() +// - GetMinimumStepAtDecimalPrecision +// - RoundScalarWithFormat<>() +//------------------------------------------------------------------------- + +static const ImGuiDataTypeInfo GDataTypeInfo[] = +{ + { sizeof(char), "S8", "%d", "%d" }, // ImGuiDataType_S8 + { sizeof(unsigned char), "U8", "%u", "%u" }, + { sizeof(short), "S16", "%d", "%d" }, // ImGuiDataType_S16 + { sizeof(unsigned short), "U16", "%u", "%u" }, + { sizeof(int), "S32", "%d", "%d" }, // ImGuiDataType_S32 + { sizeof(unsigned int), "U32", "%u", "%u" }, +#ifdef _MSC_VER + { sizeof(ImS64), "S64", "%I64d","%I64d" }, // ImGuiDataType_S64 + { sizeof(ImU64), "U64", "%I64u","%I64u" }, +#else + { sizeof(ImS64), "S64", "%lld", "%lld" }, // ImGuiDataType_S64 + { sizeof(ImU64), "U64", "%llu", "%llu" }, +#endif + { sizeof(float), "float", "%.3f","%f" }, // ImGuiDataType_Float (float are promoted to double in va_arg) + { sizeof(double), "double","%f", "%lf" }, // ImGuiDataType_Double +}; +IM_STATIC_ASSERT(IM_ARRAYSIZE(GDataTypeInfo) == ImGuiDataType_COUNT); + +const ImGuiDataTypeInfo* ImGui::DataTypeGetInfo(ImGuiDataType data_type) +{ + IM_ASSERT(data_type >= 0 && data_type < ImGuiDataType_COUNT); + return &GDataTypeInfo[data_type]; +} + +int ImGui::DataTypeFormatString(char* buf, int buf_size, ImGuiDataType data_type, const void* p_data, const char* format) +{ + // Signedness doesn't matter when pushing integer arguments + if (data_type == ImGuiDataType_S32 || data_type == ImGuiDataType_U32) + return ImFormatString(buf, buf_size, format, *(const ImU32*)p_data); + if (data_type == ImGuiDataType_S64 || data_type == ImGuiDataType_U64) + return ImFormatString(buf, buf_size, format, *(const ImU64*)p_data); + if (data_type == ImGuiDataType_Float) + return ImFormatString(buf, buf_size, format, *(const float*)p_data); + if (data_type == ImGuiDataType_Double) + return ImFormatString(buf, buf_size, format, *(const double*)p_data); + if (data_type == ImGuiDataType_S8) + return ImFormatString(buf, buf_size, format, *(const ImS8*)p_data); + if (data_type == ImGuiDataType_U8) + return ImFormatString(buf, buf_size, format, *(const ImU8*)p_data); + if (data_type == ImGuiDataType_S16) + return ImFormatString(buf, buf_size, format, *(const ImS16*)p_data); + if (data_type == ImGuiDataType_U16) + return ImFormatString(buf, buf_size, format, *(const ImU16*)p_data); + IM_ASSERT(0); + return 0; +} + +void ImGui::DataTypeApplyOp(ImGuiDataType data_type, int op, void* output, const void* arg1, const void* arg2) +{ + IM_ASSERT(op == '+' || op == '-'); + switch (data_type) + { + case ImGuiDataType_S8: + if (op == '+') { *(ImS8*)output = ImAddClampOverflow(*(const ImS8*)arg1, *(const ImS8*)arg2, IM_S8_MIN, IM_S8_MAX); } + if (op == '-') { *(ImS8*)output = ImSubClampOverflow(*(const ImS8*)arg1, *(const ImS8*)arg2, IM_S8_MIN, IM_S8_MAX); } + return; + case ImGuiDataType_U8: + if (op == '+') { *(ImU8*)output = ImAddClampOverflow(*(const ImU8*)arg1, *(const ImU8*)arg2, IM_U8_MIN, IM_U8_MAX); } + if (op == '-') { *(ImU8*)output = ImSubClampOverflow(*(const ImU8*)arg1, *(const ImU8*)arg2, IM_U8_MIN, IM_U8_MAX); } + return; + case ImGuiDataType_S16: + if (op == '+') { *(ImS16*)output = ImAddClampOverflow(*(const ImS16*)arg1, *(const ImS16*)arg2, IM_S16_MIN, IM_S16_MAX); } + if (op == '-') { *(ImS16*)output = ImSubClampOverflow(*(const ImS16*)arg1, *(const ImS16*)arg2, IM_S16_MIN, IM_S16_MAX); } + return; + case ImGuiDataType_U16: + if (op == '+') { *(ImU16*)output = ImAddClampOverflow(*(const ImU16*)arg1, *(const ImU16*)arg2, IM_U16_MIN, IM_U16_MAX); } + if (op == '-') { *(ImU16*)output = ImSubClampOverflow(*(const ImU16*)arg1, *(const ImU16*)arg2, IM_U16_MIN, IM_U16_MAX); } + return; + case ImGuiDataType_S32: + if (op == '+') { *(ImS32*)output = ImAddClampOverflow(*(const ImS32*)arg1, *(const ImS32*)arg2, IM_S32_MIN, IM_S32_MAX); } + if (op == '-') { *(ImS32*)output = ImSubClampOverflow(*(const ImS32*)arg1, *(const ImS32*)arg2, IM_S32_MIN, IM_S32_MAX); } + return; + case ImGuiDataType_U32: + if (op == '+') { *(ImU32*)output = ImAddClampOverflow(*(const ImU32*)arg1, *(const ImU32*)arg2, IM_U32_MIN, IM_U32_MAX); } + if (op == '-') { *(ImU32*)output = ImSubClampOverflow(*(const ImU32*)arg1, *(const ImU32*)arg2, IM_U32_MIN, IM_U32_MAX); } + return; + case ImGuiDataType_S64: + if (op == '+') { *(ImS64*)output = ImAddClampOverflow(*(const ImS64*)arg1, *(const ImS64*)arg2, IM_S64_MIN, IM_S64_MAX); } + if (op == '-') { *(ImS64*)output = ImSubClampOverflow(*(const ImS64*)arg1, *(const ImS64*)arg2, IM_S64_MIN, IM_S64_MAX); } + return; + case ImGuiDataType_U64: + if (op == '+') { *(ImU64*)output = ImAddClampOverflow(*(const ImU64*)arg1, *(const ImU64*)arg2, IM_U64_MIN, IM_U64_MAX); } + if (op == '-') { *(ImU64*)output = ImSubClampOverflow(*(const ImU64*)arg1, *(const ImU64*)arg2, IM_U64_MIN, IM_U64_MAX); } + return; + case ImGuiDataType_Float: + if (op == '+') { *(float*)output = *(const float*)arg1 + *(const float*)arg2; } + if (op == '-') { *(float*)output = *(const float*)arg1 - *(const float*)arg2; } + return; + case ImGuiDataType_Double: + if (op == '+') { *(double*)output = *(const double*)arg1 + *(const double*)arg2; } + if (op == '-') { *(double*)output = *(const double*)arg1 - *(const double*)arg2; } + return; + case ImGuiDataType_COUNT: break; + } + IM_ASSERT(0); +} + +// User can input math operators (e.g. +100) to edit a numerical values. +// NB: This is _not_ a full expression evaluator. We should probably add one and replace this dumb mess.. +bool ImGui::DataTypeApplyFromText(const char* buf, ImGuiDataType data_type, void* p_data, const char* format) +{ + while (ImCharIsBlankA(*buf)) + buf++; + if (!buf[0]) + return false; + + // Copy the value in an opaque buffer so we can compare at the end of the function if it changed at all. + const ImGuiDataTypeInfo* type_info = DataTypeGetInfo(data_type); + ImGuiDataTypeTempStorage data_backup; + memcpy(&data_backup, p_data, type_info->Size); + + // Sanitize format + // - For float/double we have to ignore format with precision (e.g. "%.2f") because sscanf doesn't take them in, so force them into %f and %lf + // - In theory could treat empty format as using default, but this would only cover rare/bizarre case of using InputScalar() + integer + format string without %. + char format_sanitized[32]; + if (data_type == ImGuiDataType_Float || data_type == ImGuiDataType_Double) + format = type_info->ScanFmt; + else + format = ImParseFormatSanitizeForScanning(format, format_sanitized, IM_ARRAYSIZE(format_sanitized)); + + // Small types need a 32-bit buffer to receive the result from scanf() + int v32 = 0; + if (sscanf(buf, format, type_info->Size >= 4 ? p_data : &v32) < 1) + return false; + if (type_info->Size < 4) + { + if (data_type == ImGuiDataType_S8) + *(ImS8*)p_data = (ImS8)ImClamp(v32, (int)IM_S8_MIN, (int)IM_S8_MAX); + else if (data_type == ImGuiDataType_U8) + *(ImU8*)p_data = (ImU8)ImClamp(v32, (int)IM_U8_MIN, (int)IM_U8_MAX); + else if (data_type == ImGuiDataType_S16) + *(ImS16*)p_data = (ImS16)ImClamp(v32, (int)IM_S16_MIN, (int)IM_S16_MAX); + else if (data_type == ImGuiDataType_U16) + *(ImU16*)p_data = (ImU16)ImClamp(v32, (int)IM_U16_MIN, (int)IM_U16_MAX); + else + IM_ASSERT(0); + } + + return memcmp(&data_backup, p_data, type_info->Size) != 0; +} + +template +static int DataTypeCompareT(const T* lhs, const T* rhs) +{ + if (*lhs < *rhs) return -1; + if (*lhs > *rhs) return +1; + return 0; +} + +int ImGui::DataTypeCompare(ImGuiDataType data_type, const void* arg_1, const void* arg_2) +{ + switch (data_type) + { + case ImGuiDataType_S8: return DataTypeCompareT((const ImS8* )arg_1, (const ImS8* )arg_2); + case ImGuiDataType_U8: return DataTypeCompareT((const ImU8* )arg_1, (const ImU8* )arg_2); + case ImGuiDataType_S16: return DataTypeCompareT((const ImS16* )arg_1, (const ImS16* )arg_2); + case ImGuiDataType_U16: return DataTypeCompareT((const ImU16* )arg_1, (const ImU16* )arg_2); + case ImGuiDataType_S32: return DataTypeCompareT((const ImS32* )arg_1, (const ImS32* )arg_2); + case ImGuiDataType_U32: return DataTypeCompareT((const ImU32* )arg_1, (const ImU32* )arg_2); + case ImGuiDataType_S64: return DataTypeCompareT((const ImS64* )arg_1, (const ImS64* )arg_2); + case ImGuiDataType_U64: return DataTypeCompareT((const ImU64* )arg_1, (const ImU64* )arg_2); + case ImGuiDataType_Float: return DataTypeCompareT((const float* )arg_1, (const float* )arg_2); + case ImGuiDataType_Double: return DataTypeCompareT((const double*)arg_1, (const double*)arg_2); + case ImGuiDataType_COUNT: break; + } + IM_ASSERT(0); + return 0; +} + +template +static bool DataTypeClampT(T* v, const T* v_min, const T* v_max) +{ + // Clamp, both sides are optional, return true if modified + if (v_min && *v < *v_min) { *v = *v_min; return true; } + if (v_max && *v > *v_max) { *v = *v_max; return true; } + return false; +} + +bool ImGui::DataTypeClamp(ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max) +{ + switch (data_type) + { + case ImGuiDataType_S8: return DataTypeClampT((ImS8* )p_data, (const ImS8* )p_min, (const ImS8* )p_max); + case ImGuiDataType_U8: return DataTypeClampT((ImU8* )p_data, (const ImU8* )p_min, (const ImU8* )p_max); + case ImGuiDataType_S16: return DataTypeClampT((ImS16* )p_data, (const ImS16* )p_min, (const ImS16* )p_max); + case ImGuiDataType_U16: return DataTypeClampT((ImU16* )p_data, (const ImU16* )p_min, (const ImU16* )p_max); + case ImGuiDataType_S32: return DataTypeClampT((ImS32* )p_data, (const ImS32* )p_min, (const ImS32* )p_max); + case ImGuiDataType_U32: return DataTypeClampT((ImU32* )p_data, (const ImU32* )p_min, (const ImU32* )p_max); + case ImGuiDataType_S64: return DataTypeClampT((ImS64* )p_data, (const ImS64* )p_min, (const ImS64* )p_max); + case ImGuiDataType_U64: return DataTypeClampT((ImU64* )p_data, (const ImU64* )p_min, (const ImU64* )p_max); + case ImGuiDataType_Float: return DataTypeClampT((float* )p_data, (const float* )p_min, (const float* )p_max); + case ImGuiDataType_Double: return DataTypeClampT((double*)p_data, (const double*)p_min, (const double*)p_max); + case ImGuiDataType_COUNT: break; + } + IM_ASSERT(0); + return false; +} + +static float GetMinimumStepAtDecimalPrecision(int decimal_precision) +{ + static const float min_steps[10] = { 1.0f, 0.1f, 0.01f, 0.001f, 0.0001f, 0.00001f, 0.000001f, 0.0000001f, 0.00000001f, 0.000000001f }; + if (decimal_precision < 0) + return FLT_MIN; + return (decimal_precision < IM_ARRAYSIZE(min_steps)) ? min_steps[decimal_precision] : ImPow(10.0f, (float)-decimal_precision); +} + +template +TYPE ImGui::RoundScalarWithFormatT(const char* format, ImGuiDataType data_type, TYPE v) +{ + IM_UNUSED(data_type); + IM_ASSERT(data_type == ImGuiDataType_Float || data_type == ImGuiDataType_Double); + const char* fmt_start = ImParseFormatFindStart(format); + if (fmt_start[0] != '%' || fmt_start[1] == '%') // Don't apply if the value is not visible in the format string + return v; + + // Sanitize format + char fmt_sanitized[32]; + ImParseFormatSanitizeForPrinting(fmt_start, fmt_sanitized, IM_ARRAYSIZE(fmt_sanitized)); + fmt_start = fmt_sanitized; + + // Format value with our rounding, and read back + char v_str[64]; + ImFormatString(v_str, IM_ARRAYSIZE(v_str), fmt_start, v); + const char* p = v_str; + while (*p == ' ') + p++; + v = (TYPE)ImAtof(p); + + return v; +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: DragScalar, DragFloat, DragInt, etc. +//------------------------------------------------------------------------- +// - DragBehaviorT<>() [Internal] +// - DragBehavior() [Internal] +// - DragScalar() +// - DragScalarN() +// - DragFloat() +// - DragFloat2() +// - DragFloat3() +// - DragFloat4() +// - DragFloatRange2() +// - DragInt() +// - DragInt2() +// - DragInt3() +// - DragInt4() +// - DragIntRange2() +//------------------------------------------------------------------------- + +// This is called by DragBehavior() when the widget is active (held by mouse or being manipulated with Nav controls) +template +bool ImGui::DragBehaviorT(ImGuiDataType data_type, TYPE* v, float v_speed, const TYPE v_min, const TYPE v_max, const char* format, ImGuiSliderFlags flags) +{ + ImGuiContext& g = *GImGui; + const ImGuiAxis axis = (flags & ImGuiSliderFlags_Vertical) ? ImGuiAxis_Y : ImGuiAxis_X; + const bool is_clamped = (v_min < v_max); + const bool is_logarithmic = (flags & ImGuiSliderFlags_Logarithmic) != 0; + const bool is_floating_point = (data_type == ImGuiDataType_Float) || (data_type == ImGuiDataType_Double); + + // Default tweak speed + if (v_speed == 0.0f && is_clamped && (v_max - v_min < FLT_MAX)) + v_speed = (float)((v_max - v_min) * g.DragSpeedDefaultRatio); + + // Inputs accumulates into g.DragCurrentAccum, which is flushed into the current value as soon as it makes a difference with our precision settings + float adjust_delta = 0.0f; + if (g.ActiveIdSource == ImGuiInputSource_Mouse && IsMousePosValid() && IsMouseDragPastThreshold(0, g.IO.MouseDragThreshold * DRAG_MOUSE_THRESHOLD_FACTOR)) + { + adjust_delta = g.IO.MouseDelta[axis]; + if (g.IO.KeyAlt) + adjust_delta *= 1.0f / 100.0f; + if (g.IO.KeyShift) + adjust_delta *= 10.0f; + } + else if (g.ActiveIdSource == ImGuiInputSource_Keyboard || g.ActiveIdSource == ImGuiInputSource_Gamepad) + { + const int decimal_precision = is_floating_point ? ImParseFormatPrecision(format, 3) : 0; + const bool tweak_slow = IsKeyDown((g.NavInputSource == ImGuiInputSource_Gamepad) ? ImGuiKey_NavGamepadTweakSlow : ImGuiKey_NavKeyboardTweakSlow); + const bool tweak_fast = IsKeyDown((g.NavInputSource == ImGuiInputSource_Gamepad) ? ImGuiKey_NavGamepadTweakFast : ImGuiKey_NavKeyboardTweakFast); + const float tweak_factor = tweak_slow ? 1.0f / 1.0f : tweak_fast ? 10.0f : 1.0f; + adjust_delta = GetNavTweakPressedAmount(axis) * tweak_factor; + v_speed = ImMax(v_speed, GetMinimumStepAtDecimalPrecision(decimal_precision)); + } + adjust_delta *= v_speed; + + // For vertical drag we currently assume that Up=higher value (like we do with vertical sliders). This may become a parameter. + if (axis == ImGuiAxis_Y) + adjust_delta = -adjust_delta; + + // For logarithmic use our range is effectively 0..1 so scale the delta into that range + if (is_logarithmic && (v_max - v_min < FLT_MAX) && ((v_max - v_min) > 0.000001f)) // Epsilon to avoid /0 + adjust_delta /= (float)(v_max - v_min); + + // Clear current value on activation + // Avoid altering values and clamping when we are _already_ past the limits and heading in the same direction, so e.g. if range is 0..255, current value is 300 and we are pushing to the right side, keep the 300. + bool is_just_activated = g.ActiveIdIsJustActivated; + bool is_already_past_limits_and_pushing_outward = is_clamped && ((*v >= v_max && adjust_delta > 0.0f) || (*v <= v_min && adjust_delta < 0.0f)); + if (is_just_activated || is_already_past_limits_and_pushing_outward) + { + g.DragCurrentAccum = 0.0f; + g.DragCurrentAccumDirty = false; + } + else if (adjust_delta != 0.0f) + { + g.DragCurrentAccum += adjust_delta; + g.DragCurrentAccumDirty = true; + } + + if (!g.DragCurrentAccumDirty) + return false; + + TYPE v_cur = *v; + FLOATTYPE v_old_ref_for_accum_remainder = (FLOATTYPE)0.0f; + + float logarithmic_zero_epsilon = 0.0f; // Only valid when is_logarithmic is true + const float zero_deadzone_halfsize = 0.0f; // Drag widgets have no deadzone (as it doesn't make sense) + if (is_logarithmic) + { + // When using logarithmic sliders, we need to clamp to avoid hitting zero, but our choice of clamp value greatly affects slider precision. We attempt to use the specified precision to estimate a good lower bound. + const int decimal_precision = is_floating_point ? ImParseFormatPrecision(format, 3) : 1; + logarithmic_zero_epsilon = ImPow(0.1f, (float)decimal_precision); + + // Convert to parametric space, apply delta, convert back + float v_old_parametric = ScaleRatioFromValueT(data_type, v_cur, v_min, v_max, is_logarithmic, logarithmic_zero_epsilon, zero_deadzone_halfsize); + float v_new_parametric = v_old_parametric + g.DragCurrentAccum; + v_cur = ScaleValueFromRatioT(data_type, v_new_parametric, v_min, v_max, is_logarithmic, logarithmic_zero_epsilon, zero_deadzone_halfsize); + v_old_ref_for_accum_remainder = v_old_parametric; + } + else + { + v_cur += (SIGNEDTYPE)g.DragCurrentAccum; + } + + // Round to user desired precision based on format string + if (is_floating_point && !(flags & ImGuiSliderFlags_NoRoundToFormat)) + v_cur = RoundScalarWithFormatT(format, data_type, v_cur); + + // Preserve remainder after rounding has been applied. This also allow slow tweaking of values. + g.DragCurrentAccumDirty = false; + if (is_logarithmic) + { + // Convert to parametric space, apply delta, convert back + float v_new_parametric = ScaleRatioFromValueT(data_type, v_cur, v_min, v_max, is_logarithmic, logarithmic_zero_epsilon, zero_deadzone_halfsize); + g.DragCurrentAccum -= (float)(v_new_parametric - v_old_ref_for_accum_remainder); + } + else + { + g.DragCurrentAccum -= (float)((SIGNEDTYPE)v_cur - (SIGNEDTYPE)*v); + } + + // Lose zero sign for float/double + if (v_cur == (TYPE)-0) + v_cur = (TYPE)0; + + // Clamp values (+ handle overflow/wrap-around for integer types) + if (*v != v_cur && is_clamped) + { + if (v_cur < v_min || (v_cur > *v && adjust_delta < 0.0f && !is_floating_point)) + v_cur = v_min; + if (v_cur > v_max || (v_cur < *v && adjust_delta > 0.0f && !is_floating_point)) + v_cur = v_max; + } + + // Apply result + if (*v == v_cur) + return false; + *v = v_cur; + return true; +} + +bool ImGui::DragBehavior(ImGuiID id, ImGuiDataType data_type, void* p_v, float v_speed, const void* p_min, const void* p_max, const char* format, ImGuiSliderFlags flags) +{ + // Read imgui.cpp "API BREAKING CHANGES" section for 1.78 if you hit this assert. + IM_ASSERT((flags == 1 || (flags & ImGuiSliderFlags_InvalidMask_) == 0) && "Invalid ImGuiSliderFlags flags! Has the 'float power' argument been mistakenly cast to flags? Call function with ImGuiSliderFlags_Logarithmic flags instead."); + + ImGuiContext& g = *GImGui; + if (g.ActiveId == id) + { + // Those are the things we can do easily outside the DragBehaviorT<> template, saves code generation. + if (g.ActiveIdSource == ImGuiInputSource_Mouse && !g.IO.MouseDown[0]) + ClearActiveID(); + else if ((g.ActiveIdSource == ImGuiInputSource_Keyboard || g.ActiveIdSource == ImGuiInputSource_Gamepad) && g.NavActivatePressedId == id && !g.ActiveIdIsJustActivated) + ClearActiveID(); + } + if (g.ActiveId != id) + return false; + if ((g.LastItemData.InFlags & ImGuiItemFlags_ReadOnly) || (flags & ImGuiSliderFlags_ReadOnly)) + return false; + + switch (data_type) + { + case ImGuiDataType_S8: { ImS32 v32 = (ImS32)*(ImS8*)p_v; bool r = DragBehaviorT(ImGuiDataType_S32, &v32, v_speed, p_min ? *(const ImS8*) p_min : IM_S8_MIN, p_max ? *(const ImS8*)p_max : IM_S8_MAX, format, flags); if (r) *(ImS8*)p_v = (ImS8)v32; return r; } + case ImGuiDataType_U8: { ImU32 v32 = (ImU32)*(ImU8*)p_v; bool r = DragBehaviorT(ImGuiDataType_U32, &v32, v_speed, p_min ? *(const ImU8*) p_min : IM_U8_MIN, p_max ? *(const ImU8*)p_max : IM_U8_MAX, format, flags); if (r) *(ImU8*)p_v = (ImU8)v32; return r; } + case ImGuiDataType_S16: { ImS32 v32 = (ImS32)*(ImS16*)p_v; bool r = DragBehaviorT(ImGuiDataType_S32, &v32, v_speed, p_min ? *(const ImS16*)p_min : IM_S16_MIN, p_max ? *(const ImS16*)p_max : IM_S16_MAX, format, flags); if (r) *(ImS16*)p_v = (ImS16)v32; return r; } + case ImGuiDataType_U16: { ImU32 v32 = (ImU32)*(ImU16*)p_v; bool r = DragBehaviorT(ImGuiDataType_U32, &v32, v_speed, p_min ? *(const ImU16*)p_min : IM_U16_MIN, p_max ? *(const ImU16*)p_max : IM_U16_MAX, format, flags); if (r) *(ImU16*)p_v = (ImU16)v32; return r; } + case ImGuiDataType_S32: return DragBehaviorT(data_type, (ImS32*)p_v, v_speed, p_min ? *(const ImS32* )p_min : IM_S32_MIN, p_max ? *(const ImS32* )p_max : IM_S32_MAX, format, flags); + case ImGuiDataType_U32: return DragBehaviorT(data_type, (ImU32*)p_v, v_speed, p_min ? *(const ImU32* )p_min : IM_U32_MIN, p_max ? *(const ImU32* )p_max : IM_U32_MAX, format, flags); + case ImGuiDataType_S64: return DragBehaviorT(data_type, (ImS64*)p_v, v_speed, p_min ? *(const ImS64* )p_min : IM_S64_MIN, p_max ? *(const ImS64* )p_max : IM_S64_MAX, format, flags); + case ImGuiDataType_U64: return DragBehaviorT(data_type, (ImU64*)p_v, v_speed, p_min ? *(const ImU64* )p_min : IM_U64_MIN, p_max ? *(const ImU64* )p_max : IM_U64_MAX, format, flags); + case ImGuiDataType_Float: return DragBehaviorT(data_type, (float*)p_v, v_speed, p_min ? *(const float* )p_min : -FLT_MAX, p_max ? *(const float* )p_max : FLT_MAX, format, flags); + case ImGuiDataType_Double: return DragBehaviorT(data_type, (double*)p_v, v_speed, p_min ? *(const double*)p_min : -DBL_MAX, p_max ? *(const double*)p_max : DBL_MAX, format, flags); + case ImGuiDataType_COUNT: break; + } + IM_ASSERT(0); + return false; +} + +// Note: p_data, p_min and p_max are _pointers_ to a memory address holding the data. For a Drag widget, p_min and p_max are optional. +// Read code of e.g. DragFloat(), DragInt() etc. or examples in 'Demo->Widgets->Data Types' to understand how to use this function directly. +bool ImGui::DragScalar(const char* label, ImGuiDataType data_type, void* p_data, float v_speed, const void* p_min, const void* p_max, const char* format, ImGuiSliderFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + const float w = CalcItemWidth(); + + const ImVec2 label_size = CalcTextSize(label, NULL, true); + const ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(w, label_size.y + style.FramePadding.y * 2.0f)); + const ImRect total_bb(frame_bb.Min, frame_bb.Max + ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f, 0.0f)); + + const bool temp_input_allowed = (flags & ImGuiSliderFlags_NoInput) == 0; + ItemSize(total_bb, style.FramePadding.y); + if (!ItemAdd(total_bb, id, &frame_bb, temp_input_allowed ? ImGuiItemFlags_Inputable : 0)) + return false; + + // Default format string when passing NULL + if (format == NULL) + format = DataTypeGetInfo(data_type)->PrintFmt; + + const bool hovered = ItemHoverable(frame_bb, id, g.LastItemData.InFlags); + bool temp_input_is_active = temp_input_allowed && TempInputIsActive(id); + if (!temp_input_is_active) + { + // Tabbing or CTRL-clicking on Drag turns it into an InputText + const bool input_requested_by_tabbing = temp_input_allowed && (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_FocusedByTabbing) != 0; + const bool clicked = hovered && IsMouseClicked(0, id); + const bool double_clicked = (hovered && g.IO.MouseClickedCount[0] == 2 && TestKeyOwner(ImGuiKey_MouseLeft, id)); + const bool make_active = (input_requested_by_tabbing || clicked || double_clicked || g.NavActivateId == id); + if (make_active && (clicked || double_clicked)) + SetKeyOwner(ImGuiKey_MouseLeft, id); + if (make_active && temp_input_allowed) + if (input_requested_by_tabbing || (clicked && g.IO.KeyCtrl) || double_clicked || (g.NavActivateId == id && (g.NavActivateFlags & ImGuiActivateFlags_PreferInput))) + temp_input_is_active = true; + + // (Optional) simple click (without moving) turns Drag into an InputText + if (g.IO.ConfigDragClickToInputText && temp_input_allowed && !temp_input_is_active) + if (g.ActiveId == id && hovered && g.IO.MouseReleased[0] && !IsMouseDragPastThreshold(0, g.IO.MouseDragThreshold * DRAG_MOUSE_THRESHOLD_FACTOR)) + { + g.NavActivateId = id; + g.NavActivateFlags = ImGuiActivateFlags_PreferInput; + temp_input_is_active = true; + } + + if (make_active && !temp_input_is_active) + { + SetActiveID(id, window); + SetFocusID(id, window); + FocusWindow(window); + g.ActiveIdUsingNavDirMask = (1 << ImGuiDir_Left) | (1 << ImGuiDir_Right); + } + } + + if (temp_input_is_active) + { + // Only clamp CTRL+Click input when ImGuiSliderFlags_AlwaysClamp is set + const bool is_clamp_input = (flags & ImGuiSliderFlags_AlwaysClamp) != 0 && (p_min == NULL || p_max == NULL || DataTypeCompare(data_type, p_min, p_max) < 0); + return TempInputScalar(frame_bb, id, label, data_type, p_data, format, is_clamp_input ? p_min : NULL, is_clamp_input ? p_max : NULL); + } + + // Draw frame + const ImU32 frame_col = GetColorU32(g.ActiveId == id ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg); + RenderNavHighlight(frame_bb, id); + RenderFrame(frame_bb.Min, frame_bb.Max, frame_col, true, style.FrameRounding); + + // Drag behavior + const bool value_changed = DragBehavior(id, data_type, p_data, v_speed, p_min, p_max, format, flags); + if (value_changed) + MarkItemEdited(id); + + // Display value using user-provided display format so user can add prefix/suffix/decorations to the value. + char value_buf[64]; + const char* value_buf_end = value_buf + DataTypeFormatString(value_buf, IM_ARRAYSIZE(value_buf), data_type, p_data, format); + if (g.LogEnabled) + LogSetNextTextDecoration("{", "}"); + RenderTextClipped(frame_bb.Min, frame_bb.Max, value_buf, value_buf_end, NULL, ImVec2(0.5f, 0.5f)); + + if (label_size.x > 0.0f) + RenderText(ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, frame_bb.Min.y + style.FramePadding.y), label); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags | (temp_input_allowed ? ImGuiItemStatusFlags_Inputable : 0)); + return value_changed; +} + +bool ImGui::DragScalarN(const char* label, ImGuiDataType data_type, void* p_data, int components, float v_speed, const void* p_min, const void* p_max, const char* format, ImGuiSliderFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + bool value_changed = false; + BeginGroup(); + PushID(label); + PushMultiItemsWidths(components, CalcItemWidth()); + size_t type_size = GDataTypeInfo[data_type].Size; + for (int i = 0; i < components; i++) + { + PushID(i); + if (i > 0) + SameLine(0, g.Style.ItemInnerSpacing.x); + value_changed |= DragScalar("", data_type, p_data, v_speed, p_min, p_max, format, flags); + PopID(); + PopItemWidth(); + p_data = (void*)((char*)p_data + type_size); + } + PopID(); + + const char* label_end = FindRenderedTextEnd(label); + if (label != label_end) + { + SameLine(0, g.Style.ItemInnerSpacing.x); + TextEx(label, label_end); + } + + EndGroup(); + return value_changed; +} + +bool ImGui::DragFloat(const char* label, float* v, float v_speed, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) +{ + return DragScalar(label, ImGuiDataType_Float, v, v_speed, &v_min, &v_max, format, flags); +} + +bool ImGui::DragFloat2(const char* label, float v[2], float v_speed, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) +{ + return DragScalarN(label, ImGuiDataType_Float, v, 2, v_speed, &v_min, &v_max, format, flags); +} + +bool ImGui::DragFloat3(const char* label, float v[3], float v_speed, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) +{ + return DragScalarN(label, ImGuiDataType_Float, v, 3, v_speed, &v_min, &v_max, format, flags); +} + +bool ImGui::DragFloat4(const char* label, float v[4], float v_speed, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) +{ + return DragScalarN(label, ImGuiDataType_Float, v, 4, v_speed, &v_min, &v_max, format, flags); +} + +// NB: You likely want to specify the ImGuiSliderFlags_AlwaysClamp when using this. +bool ImGui::DragFloatRange2(const char* label, float* v_current_min, float* v_current_max, float v_speed, float v_min, float v_max, const char* format, const char* format_max, ImGuiSliderFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + PushID(label); + BeginGroup(); + PushMultiItemsWidths(2, CalcItemWidth()); + + float min_min = (v_min >= v_max) ? -FLT_MAX : v_min; + float min_max = (v_min >= v_max) ? *v_current_max : ImMin(v_max, *v_current_max); + ImGuiSliderFlags min_flags = flags | ((min_min == min_max) ? ImGuiSliderFlags_ReadOnly : 0); + bool value_changed = DragScalar("##min", ImGuiDataType_Float, v_current_min, v_speed, &min_min, &min_max, format, min_flags); + PopItemWidth(); + SameLine(0, g.Style.ItemInnerSpacing.x); + + float max_min = (v_min >= v_max) ? *v_current_min : ImMax(v_min, *v_current_min); + float max_max = (v_min >= v_max) ? FLT_MAX : v_max; + ImGuiSliderFlags max_flags = flags | ((max_min == max_max) ? ImGuiSliderFlags_ReadOnly : 0); + value_changed |= DragScalar("##max", ImGuiDataType_Float, v_current_max, v_speed, &max_min, &max_max, format_max ? format_max : format, max_flags); + PopItemWidth(); + SameLine(0, g.Style.ItemInnerSpacing.x); + + TextEx(label, FindRenderedTextEnd(label)); + EndGroup(); + PopID(); + + return value_changed; +} + +// NB: v_speed is float to allow adjusting the drag speed with more precision +bool ImGui::DragInt(const char* label, int* v, float v_speed, int v_min, int v_max, const char* format, ImGuiSliderFlags flags) +{ + return DragScalar(label, ImGuiDataType_S32, v, v_speed, &v_min, &v_max, format, flags); +} + +bool ImGui::DragInt2(const char* label, int v[2], float v_speed, int v_min, int v_max, const char* format, ImGuiSliderFlags flags) +{ + return DragScalarN(label, ImGuiDataType_S32, v, 2, v_speed, &v_min, &v_max, format, flags); +} + +bool ImGui::DragInt3(const char* label, int v[3], float v_speed, int v_min, int v_max, const char* format, ImGuiSliderFlags flags) +{ + return DragScalarN(label, ImGuiDataType_S32, v, 3, v_speed, &v_min, &v_max, format, flags); +} + +bool ImGui::DragInt4(const char* label, int v[4], float v_speed, int v_min, int v_max, const char* format, ImGuiSliderFlags flags) +{ + return DragScalarN(label, ImGuiDataType_S32, v, 4, v_speed, &v_min, &v_max, format, flags); +} + +// NB: You likely want to specify the ImGuiSliderFlags_AlwaysClamp when using this. +bool ImGui::DragIntRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed, int v_min, int v_max, const char* format, const char* format_max, ImGuiSliderFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + PushID(label); + BeginGroup(); + PushMultiItemsWidths(2, CalcItemWidth()); + + int min_min = (v_min >= v_max) ? INT_MIN : v_min; + int min_max = (v_min >= v_max) ? *v_current_max : ImMin(v_max, *v_current_max); + ImGuiSliderFlags min_flags = flags | ((min_min == min_max) ? ImGuiSliderFlags_ReadOnly : 0); + bool value_changed = DragInt("##min", v_current_min, v_speed, min_min, min_max, format, min_flags); + PopItemWidth(); + SameLine(0, g.Style.ItemInnerSpacing.x); + + int max_min = (v_min >= v_max) ? *v_current_min : ImMax(v_min, *v_current_min); + int max_max = (v_min >= v_max) ? INT_MAX : v_max; + ImGuiSliderFlags max_flags = flags | ((max_min == max_max) ? ImGuiSliderFlags_ReadOnly : 0); + value_changed |= DragInt("##max", v_current_max, v_speed, max_min, max_max, format_max ? format_max : format, max_flags); + PopItemWidth(); + SameLine(0, g.Style.ItemInnerSpacing.x); + + TextEx(label, FindRenderedTextEnd(label)); + EndGroup(); + PopID(); + + return value_changed; +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: SliderScalar, SliderFloat, SliderInt, etc. +//------------------------------------------------------------------------- +// - ScaleRatioFromValueT<> [Internal] +// - ScaleValueFromRatioT<> [Internal] +// - SliderBehaviorT<>() [Internal] +// - SliderBehavior() [Internal] +// - SliderScalar() +// - SliderScalarN() +// - SliderFloat() +// - SliderFloat2() +// - SliderFloat3() +// - SliderFloat4() +// - SliderAngle() +// - SliderInt() +// - SliderInt2() +// - SliderInt3() +// - SliderInt4() +// - VSliderScalar() +// - VSliderFloat() +// - VSliderInt() +//------------------------------------------------------------------------- + +// Convert a value v in the output space of a slider into a parametric position on the slider itself (the logical opposite of ScaleValueFromRatioT) +template +float ImGui::ScaleRatioFromValueT(ImGuiDataType data_type, TYPE v, TYPE v_min, TYPE v_max, bool is_logarithmic, float logarithmic_zero_epsilon, float zero_deadzone_halfsize) +{ + if (v_min == v_max) + return 0.0f; + IM_UNUSED(data_type); + + const TYPE v_clamped = (v_min < v_max) ? ImClamp(v, v_min, v_max) : ImClamp(v, v_max, v_min); + if (is_logarithmic) + { + bool flipped = v_max < v_min; + + if (flipped) // Handle the case where the range is backwards + ImSwap(v_min, v_max); + + // Fudge min/max to avoid getting close to log(0) + FLOATTYPE v_min_fudged = (ImAbs((FLOATTYPE)v_min) < logarithmic_zero_epsilon) ? ((v_min < 0.0f) ? -logarithmic_zero_epsilon : logarithmic_zero_epsilon) : (FLOATTYPE)v_min; + FLOATTYPE v_max_fudged = (ImAbs((FLOATTYPE)v_max) < logarithmic_zero_epsilon) ? ((v_max < 0.0f) ? -logarithmic_zero_epsilon : logarithmic_zero_epsilon) : (FLOATTYPE)v_max; + + // Awkward special cases - we need ranges of the form (-100 .. 0) to convert to (-100 .. -epsilon), not (-100 .. epsilon) + if ((v_min == 0.0f) && (v_max < 0.0f)) + v_min_fudged = -logarithmic_zero_epsilon; + else if ((v_max == 0.0f) && (v_min < 0.0f)) + v_max_fudged = -logarithmic_zero_epsilon; + + float result; + if (v_clamped <= v_min_fudged) + result = 0.0f; // Workaround for values that are in-range but below our fudge + else if (v_clamped >= v_max_fudged) + result = 1.0f; // Workaround for values that are in-range but above our fudge + else if ((v_min * v_max) < 0.0f) // Range crosses zero, so split into two portions + { + float zero_point_center = (-(float)v_min) / ((float)v_max - (float)v_min); // The zero point in parametric space. There's an argument we should take the logarithmic nature into account when calculating this, but for now this should do (and the most common case of a symmetrical range works fine) + float zero_point_snap_L = zero_point_center - zero_deadzone_halfsize; + float zero_point_snap_R = zero_point_center + zero_deadzone_halfsize; + if (v == 0.0f) + result = zero_point_center; // Special case for exactly zero + else if (v < 0.0f) + result = (1.0f - (float)(ImLog(-(FLOATTYPE)v_clamped / logarithmic_zero_epsilon) / ImLog(-v_min_fudged / logarithmic_zero_epsilon))) * zero_point_snap_L; + else + result = zero_point_snap_R + ((float)(ImLog((FLOATTYPE)v_clamped / logarithmic_zero_epsilon) / ImLog(v_max_fudged / logarithmic_zero_epsilon)) * (1.0f - zero_point_snap_R)); + } + else if ((v_min < 0.0f) || (v_max < 0.0f)) // Entirely negative slider + result = 1.0f - (float)(ImLog(-(FLOATTYPE)v_clamped / -v_max_fudged) / ImLog(-v_min_fudged / -v_max_fudged)); + else + result = (float)(ImLog((FLOATTYPE)v_clamped / v_min_fudged) / ImLog(v_max_fudged / v_min_fudged)); + + return flipped ? (1.0f - result) : result; + } + else + { + // Linear slider + return (float)((FLOATTYPE)(SIGNEDTYPE)(v_clamped - v_min) / (FLOATTYPE)(SIGNEDTYPE)(v_max - v_min)); + } +} + +// Convert a parametric position on a slider into a value v in the output space (the logical opposite of ScaleRatioFromValueT) +template +TYPE ImGui::ScaleValueFromRatioT(ImGuiDataType data_type, float t, TYPE v_min, TYPE v_max, bool is_logarithmic, float logarithmic_zero_epsilon, float zero_deadzone_halfsize) +{ + // We special-case the extents because otherwise our logarithmic fudging can lead to "mathematically correct" + // but non-intuitive behaviors like a fully-left slider not actually reaching the minimum value. Also generally simpler. + if (t <= 0.0f || v_min == v_max) + return v_min; + if (t >= 1.0f) + return v_max; + + TYPE result = (TYPE)0; + if (is_logarithmic) + { + // Fudge min/max to avoid getting silly results close to zero + FLOATTYPE v_min_fudged = (ImAbs((FLOATTYPE)v_min) < logarithmic_zero_epsilon) ? ((v_min < 0.0f) ? -logarithmic_zero_epsilon : logarithmic_zero_epsilon) : (FLOATTYPE)v_min; + FLOATTYPE v_max_fudged = (ImAbs((FLOATTYPE)v_max) < logarithmic_zero_epsilon) ? ((v_max < 0.0f) ? -logarithmic_zero_epsilon : logarithmic_zero_epsilon) : (FLOATTYPE)v_max; + + const bool flipped = v_max < v_min; // Check if range is "backwards" + if (flipped) + ImSwap(v_min_fudged, v_max_fudged); + + // Awkward special case - we need ranges of the form (-100 .. 0) to convert to (-100 .. -epsilon), not (-100 .. epsilon) + if ((v_max == 0.0f) && (v_min < 0.0f)) + v_max_fudged = -logarithmic_zero_epsilon; + + float t_with_flip = flipped ? (1.0f - t) : t; // t, but flipped if necessary to account for us flipping the range + + if ((v_min * v_max) < 0.0f) // Range crosses zero, so we have to do this in two parts + { + float zero_point_center = (-(float)ImMin(v_min, v_max)) / ImAbs((float)v_max - (float)v_min); // The zero point in parametric space + float zero_point_snap_L = zero_point_center - zero_deadzone_halfsize; + float zero_point_snap_R = zero_point_center + zero_deadzone_halfsize; + if (t_with_flip >= zero_point_snap_L && t_with_flip <= zero_point_snap_R) + result = (TYPE)0.0f; // Special case to make getting exactly zero possible (the epsilon prevents it otherwise) + else if (t_with_flip < zero_point_center) + result = (TYPE)-(logarithmic_zero_epsilon * ImPow(-v_min_fudged / logarithmic_zero_epsilon, (FLOATTYPE)(1.0f - (t_with_flip / zero_point_snap_L)))); + else + result = (TYPE)(logarithmic_zero_epsilon * ImPow(v_max_fudged / logarithmic_zero_epsilon, (FLOATTYPE)((t_with_flip - zero_point_snap_R) / (1.0f - zero_point_snap_R)))); + } + else if ((v_min < 0.0f) || (v_max < 0.0f)) // Entirely negative slider + result = (TYPE)-(-v_max_fudged * ImPow(-v_min_fudged / -v_max_fudged, (FLOATTYPE)(1.0f - t_with_flip))); + else + result = (TYPE)(v_min_fudged * ImPow(v_max_fudged / v_min_fudged, (FLOATTYPE)t_with_flip)); + } + else + { + // Linear slider + const bool is_floating_point = (data_type == ImGuiDataType_Float) || (data_type == ImGuiDataType_Double); + if (is_floating_point) + { + result = ImLerp(v_min, v_max, t); + } + else if (t < 1.0) + { + // - For integer values we want the clicking position to match the grab box so we round above + // This code is carefully tuned to work with large values (e.g. high ranges of U64) while preserving this property.. + // - Not doing a *1.0 multiply at the end of a range as it tends to be lossy. While absolute aiming at a large s64/u64 + // range is going to be imprecise anyway, with this check we at least make the edge values matches expected limits. + FLOATTYPE v_new_off_f = (SIGNEDTYPE)(v_max - v_min) * t; + result = (TYPE)((SIGNEDTYPE)v_min + (SIGNEDTYPE)(v_new_off_f + (FLOATTYPE)(v_min > v_max ? -0.5 : 0.5))); + } + } + + return result; +} + +// FIXME: Try to move more of the code into shared SliderBehavior() +template +bool ImGui::SliderBehaviorT(const ImRect& bb, ImGuiID id, ImGuiDataType data_type, TYPE* v, const TYPE v_min, const TYPE v_max, const char* format, ImGuiSliderFlags flags, ImRect* out_grab_bb) +{ + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + + const ImGuiAxis axis = (flags & ImGuiSliderFlags_Vertical) ? ImGuiAxis_Y : ImGuiAxis_X; + const bool is_logarithmic = (flags & ImGuiSliderFlags_Logarithmic) != 0; + const bool is_floating_point = (data_type == ImGuiDataType_Float) || (data_type == ImGuiDataType_Double); + const float v_range_f = (float)(v_min < v_max ? v_max - v_min : v_min - v_max); // We don't need high precision for what we do with it. + + // Calculate bounds + const float grab_padding = 2.0f; // FIXME: Should be part of style. + const float slider_sz = (bb.Max[axis] - bb.Min[axis]) - grab_padding * 2.0f; + float grab_sz = style.GrabMinSize; + if (!is_floating_point && v_range_f >= 0.0f) // v_range_f < 0 may happen on integer overflows + grab_sz = ImMax(slider_sz / (v_range_f + 1), style.GrabMinSize); // For integer sliders: if possible have the grab size represent 1 unit + grab_sz = ImMin(grab_sz, slider_sz); + const float slider_usable_sz = slider_sz - grab_sz; + const float slider_usable_pos_min = bb.Min[axis] + grab_padding + grab_sz * 0.5f; + const float slider_usable_pos_max = bb.Max[axis] - grab_padding - grab_sz * 0.5f; + + float logarithmic_zero_epsilon = 0.0f; // Only valid when is_logarithmic is true + float zero_deadzone_halfsize = 0.0f; // Only valid when is_logarithmic is true + if (is_logarithmic) + { + // When using logarithmic sliders, we need to clamp to avoid hitting zero, but our choice of clamp value greatly affects slider precision. We attempt to use the specified precision to estimate a good lower bound. + const int decimal_precision = is_floating_point ? ImParseFormatPrecision(format, 3) : 1; + logarithmic_zero_epsilon = ImPow(0.1f, (float)decimal_precision); + zero_deadzone_halfsize = (style.LogSliderDeadzone * 0.5f) / ImMax(slider_usable_sz, 1.0f); + } + + // Process interacting with the slider + bool value_changed = false; + if (g.ActiveId == id) + { + bool set_new_value = false; + float clicked_t = 0.0f; + if (g.ActiveIdSource == ImGuiInputSource_Mouse) + { + if (!g.IO.MouseDown[0]) + { + ClearActiveID(); + } + else + { + const float mouse_abs_pos = g.IO.MousePos[axis]; + if (g.ActiveIdIsJustActivated) + { + float grab_t = ScaleRatioFromValueT(data_type, *v, v_min, v_max, is_logarithmic, logarithmic_zero_epsilon, zero_deadzone_halfsize); + if (axis == ImGuiAxis_Y) + grab_t = 1.0f - grab_t; + const float grab_pos = ImLerp(slider_usable_pos_min, slider_usable_pos_max, grab_t); + const bool clicked_around_grab = (mouse_abs_pos >= grab_pos - grab_sz * 0.5f - 1.0f) && (mouse_abs_pos <= grab_pos + grab_sz * 0.5f + 1.0f); // No harm being extra generous here. + g.SliderGrabClickOffset = (clicked_around_grab && is_floating_point) ? mouse_abs_pos - grab_pos : 0.0f; + } + if (slider_usable_sz > 0.0f) + clicked_t = ImSaturate((mouse_abs_pos - g.SliderGrabClickOffset - slider_usable_pos_min) / slider_usable_sz); + if (axis == ImGuiAxis_Y) + clicked_t = 1.0f - clicked_t; + set_new_value = true; + } + } + else if (g.ActiveIdSource == ImGuiInputSource_Keyboard || g.ActiveIdSource == ImGuiInputSource_Gamepad) + { + if (g.ActiveIdIsJustActivated) + { + g.SliderCurrentAccum = 0.0f; // Reset any stored nav delta upon activation + g.SliderCurrentAccumDirty = false; + } + + float input_delta = (axis == ImGuiAxis_X) ? GetNavTweakPressedAmount(axis) : -GetNavTweakPressedAmount(axis); + if (input_delta != 0.0f) + { + const bool tweak_slow = IsKeyDown((g.NavInputSource == ImGuiInputSource_Gamepad) ? ImGuiKey_NavGamepadTweakSlow : ImGuiKey_NavKeyboardTweakSlow); + const bool tweak_fast = IsKeyDown((g.NavInputSource == ImGuiInputSource_Gamepad) ? ImGuiKey_NavGamepadTweakFast : ImGuiKey_NavKeyboardTweakFast); + const int decimal_precision = is_floating_point ? ImParseFormatPrecision(format, 3) : 0; + if (decimal_precision > 0) + { + input_delta /= 100.0f; // Gamepad/keyboard tweak speeds in % of slider bounds + if (tweak_slow) + input_delta /= 10.0f; + } + else + { + if ((v_range_f >= -100.0f && v_range_f <= 100.0f && v_range_f != 0.0f) || tweak_slow) + input_delta = ((input_delta < 0.0f) ? -1.0f : +1.0f) / v_range_f; // Gamepad/keyboard tweak speeds in integer steps + else + input_delta /= 100.0f; + } + if (tweak_fast) + input_delta *= 10.0f; + + g.SliderCurrentAccum += input_delta; + g.SliderCurrentAccumDirty = true; + } + + float delta = g.SliderCurrentAccum; + if (g.NavActivatePressedId == id && !g.ActiveIdIsJustActivated) + { + ClearActiveID(); + } + else if (g.SliderCurrentAccumDirty) + { + clicked_t = ScaleRatioFromValueT(data_type, *v, v_min, v_max, is_logarithmic, logarithmic_zero_epsilon, zero_deadzone_halfsize); + + if ((clicked_t >= 1.0f && delta > 0.0f) || (clicked_t <= 0.0f && delta < 0.0f)) // This is to avoid applying the saturation when already past the limits + { + set_new_value = false; + g.SliderCurrentAccum = 0.0f; // If pushing up against the limits, don't continue to accumulate + } + else + { + set_new_value = true; + float old_clicked_t = clicked_t; + clicked_t = ImSaturate(clicked_t + delta); + + // Calculate what our "new" clicked_t will be, and thus how far we actually moved the slider, and subtract this from the accumulator + TYPE v_new = ScaleValueFromRatioT(data_type, clicked_t, v_min, v_max, is_logarithmic, logarithmic_zero_epsilon, zero_deadzone_halfsize); + if (is_floating_point && !(flags & ImGuiSliderFlags_NoRoundToFormat)) + v_new = RoundScalarWithFormatT(format, data_type, v_new); + float new_clicked_t = ScaleRatioFromValueT(data_type, v_new, v_min, v_max, is_logarithmic, logarithmic_zero_epsilon, zero_deadzone_halfsize); + + if (delta > 0) + g.SliderCurrentAccum -= ImMin(new_clicked_t - old_clicked_t, delta); + else + g.SliderCurrentAccum -= ImMax(new_clicked_t - old_clicked_t, delta); + } + + g.SliderCurrentAccumDirty = false; + } + } + + if (set_new_value) + if ((g.LastItemData.InFlags & ImGuiItemFlags_ReadOnly) || (flags & ImGuiSliderFlags_ReadOnly)) + set_new_value = false; + + if (set_new_value) + { + TYPE v_new = ScaleValueFromRatioT(data_type, clicked_t, v_min, v_max, is_logarithmic, logarithmic_zero_epsilon, zero_deadzone_halfsize); + + // Round to user desired precision based on format string + if (is_floating_point && !(flags & ImGuiSliderFlags_NoRoundToFormat)) + v_new = RoundScalarWithFormatT(format, data_type, v_new); + + // Apply result + if (*v != v_new) + { + *v = v_new; + value_changed = true; + } + } + } + + if (slider_sz < 1.0f) + { + *out_grab_bb = ImRect(bb.Min, bb.Min); + } + else + { + // Output grab position so it can be displayed by the caller + float grab_t = ScaleRatioFromValueT(data_type, *v, v_min, v_max, is_logarithmic, logarithmic_zero_epsilon, zero_deadzone_halfsize); + if (axis == ImGuiAxis_Y) + grab_t = 1.0f - grab_t; + const float grab_pos = ImLerp(slider_usable_pos_min, slider_usable_pos_max, grab_t); + // modified by asphyxia + if (axis == ImGuiAxis_X) + *out_grab_bb = ImRect(slider_usable_pos_min - grab_sz * 0.5f, bb.Min.y + grab_padding, grab_pos + grab_sz * 0.5f, bb.Max.y - grab_padding); + else + *out_grab_bb = ImRect(bb.Min.x + grab_padding, grab_pos - grab_sz * 0.5f, bb.Max.x - grab_padding, slider_usable_pos_min + grab_sz * 0.5f); + } + + return value_changed; +} + +// For 32-bit and larger types, slider bounds are limited to half the natural type range. +// So e.g. an integer Slider between INT_MAX-10 and INT_MAX will fail, but an integer Slider between INT_MAX/2-10 and INT_MAX/2 will be ok. +// It would be possible to lift that limitation with some work but it doesn't seem to be worth it for sliders. +bool ImGui::SliderBehavior(const ImRect& bb, ImGuiID id, ImGuiDataType data_type, void* p_v, const void* p_min, const void* p_max, const char* format, ImGuiSliderFlags flags, ImRect* out_grab_bb) +{ + // Read imgui.cpp "API BREAKING CHANGES" section for 1.78 if you hit this assert. + IM_ASSERT((flags == 1 || (flags & ImGuiSliderFlags_InvalidMask_) == 0) && "Invalid ImGuiSliderFlags flag! Has the 'float power' argument been mistakenly cast to flags? Call function with ImGuiSliderFlags_Logarithmic flags instead."); + + switch (data_type) + { + case ImGuiDataType_S8: { ImS32 v32 = (ImS32)*(ImS8*)p_v; bool r = SliderBehaviorT(bb, id, ImGuiDataType_S32, &v32, *(const ImS8*)p_min, *(const ImS8*)p_max, format, flags, out_grab_bb); if (r) *(ImS8*)p_v = (ImS8)v32; return r; } + case ImGuiDataType_U8: { ImU32 v32 = (ImU32)*(ImU8*)p_v; bool r = SliderBehaviorT(bb, id, ImGuiDataType_U32, &v32, *(const ImU8*)p_min, *(const ImU8*)p_max, format, flags, out_grab_bb); if (r) *(ImU8*)p_v = (ImU8)v32; return r; } + case ImGuiDataType_S16: { ImS32 v32 = (ImS32)*(ImS16*)p_v; bool r = SliderBehaviorT(bb, id, ImGuiDataType_S32, &v32, *(const ImS16*)p_min, *(const ImS16*)p_max, format, flags, out_grab_bb); if (r) *(ImS16*)p_v = (ImS16)v32; return r; } + case ImGuiDataType_U16: { ImU32 v32 = (ImU32)*(ImU16*)p_v; bool r = SliderBehaviorT(bb, id, ImGuiDataType_U32, &v32, *(const ImU16*)p_min, *(const ImU16*)p_max, format, flags, out_grab_bb); if (r) *(ImU16*)p_v = (ImU16)v32; return r; } + case ImGuiDataType_S32: + IM_ASSERT(*(const ImS32*)p_min >= IM_S32_MIN / 2 && *(const ImS32*)p_max <= IM_S32_MAX / 2); + return SliderBehaviorT(bb, id, data_type, (ImS32*)p_v, *(const ImS32*)p_min, *(const ImS32*)p_max, format, flags, out_grab_bb); + case ImGuiDataType_U32: + IM_ASSERT(*(const ImU32*)p_max <= IM_U32_MAX / 2); + return SliderBehaviorT(bb, id, data_type, (ImU32*)p_v, *(const ImU32*)p_min, *(const ImU32*)p_max, format, flags, out_grab_bb); + case ImGuiDataType_S64: + IM_ASSERT(*(const ImS64*)p_min >= IM_S64_MIN / 2 && *(const ImS64*)p_max <= IM_S64_MAX / 2); + return SliderBehaviorT(bb, id, data_type, (ImS64*)p_v, *(const ImS64*)p_min, *(const ImS64*)p_max, format, flags, out_grab_bb); + case ImGuiDataType_U64: + IM_ASSERT(*(const ImU64*)p_max <= IM_U64_MAX / 2); + return SliderBehaviorT(bb, id, data_type, (ImU64*)p_v, *(const ImU64*)p_min, *(const ImU64*)p_max, format, flags, out_grab_bb); + case ImGuiDataType_Float: + IM_ASSERT(*(const float*)p_min >= -FLT_MAX / 2.0f && *(const float*)p_max <= FLT_MAX / 2.0f); + return SliderBehaviorT(bb, id, data_type, (float*)p_v, *(const float*)p_min, *(const float*)p_max, format, flags, out_grab_bb); + case ImGuiDataType_Double: + IM_ASSERT(*(const double*)p_min >= -DBL_MAX / 2.0f && *(const double*)p_max <= DBL_MAX / 2.0f); + return SliderBehaviorT(bb, id, data_type, (double*)p_v, *(const double*)p_min, *(const double*)p_max, format, flags, out_grab_bb); + case ImGuiDataType_COUNT: break; + } + IM_ASSERT(0); + return false; +} +inline float Saturate(float f) { + return (f < 0.0f) ? 0.0f : (f > 1.0f) ? 1.0f : f; +} +// Note: p_data, p_min and p_max are _pointers_ to a memory address holding the data. For a slider, they are all required. +// Read code of e.g. SliderFloat(), SliderInt() etc. or examples in 'Demo->Widgets->Data Types' to understand how to use this function directly. +#include "../cstrike/utilities/draw.h" + +bool ImGui::SliderScalar(const char* label, ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max, const char* format, ImGuiSliderFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + const float w = CalcItemWidth(); + const float h = GetFrameHeight() * 0.8f; + + const ImVec2 label_size = CalcTextSize(label, NULL, true); + + const ImRect frame_bb(window->DC.CursorPos + ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + h : 0.0f, label_size.x > 0.0f ? label_size.y : 0.0f), window->DC.CursorPos + ImVec2(w, (label_size.x > 0.0f ? label_size.y : 0.0f) + h)); + const ImRect total_bb(window->DC.CursorPos, frame_bb.Max - ImVec2((label_size.x > 0.0f ? style.ItemInnerSpacing.x + h : 0.0f), 0.0f)); + + const bool temp_input_allowed = (flags & ImGuiSliderFlags_NoInput) == 0; + ItemSize(total_bb, style.FramePadding.y); + if (!ItemAdd(total_bb, id, &frame_bb, temp_input_allowed ? ImGuiItemFlags_Inputable : 0)) + return false; + + // Add glow as an outline (shadow) + window->DrawList->AddShadowRect(frame_bb.Min, frame_bb.Max, IM_COL32(0, 0, 0, 200) , 32.f, ImVec2(0, 0), 11, ImDrawFlags_RoundCornersAll); + window->DrawList->AddRect(frame_bb.Min, frame_bb.Max, IM_COL32(15, 15, 15, 255), 5.f); + + // Default format string when passing NULL + if (format == NULL) + format = DataTypeGetInfo(data_type)->PrintFmt; + + const bool hovered = ItemHoverable(frame_bb, id, g.LastItemData.InFlags); + bool temp_input_is_active = temp_input_allowed && TempInputIsActive(id); + if (!temp_input_is_active) + { + const bool input_requested_by_tabbing = temp_input_allowed && (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_FocusedByTabbing) != 0; + const bool clicked = hovered && IsMouseClicked(0, id); + const bool make_active = (input_requested_by_tabbing || clicked || g.NavActivateId == id); + if (make_active && clicked) + SetKeyOwner(ImGuiKey_MouseLeft, id); + if (make_active && temp_input_allowed) + if (input_requested_by_tabbing || (clicked && g.IO.KeyCtrl) || (g.NavActivateId == id && (g.NavActivateFlags & ImGuiActivateFlags_PreferInput))) + temp_input_is_active = true; + + if (make_active && !temp_input_is_active) + { + SetActiveID(id, window); + SetFocusID(id, window); + FocusWindow(window); + g.ActiveIdUsingNavDirMask |= (1 << ImGuiDir_Left) | (1 << ImGuiDir_Right); + } + } + + if (temp_input_is_active) + { + const bool is_clamp_input = (flags & ImGuiSliderFlags_AlwaysClamp) != 0; + return TempInputScalar(frame_bb, id, label, data_type, p_data, format, is_clamp_input ? p_min : NULL, is_clamp_input ? p_max : NULL); + } + + const ImU32 frame_col = GetColorU32(g.ActiveId == id ? ImGuiCol_ControlBgActive : g.HoveredId == id ? ImGuiCol_ControlBgHovered : ImGuiCol_Border); + RenderNavHighlight(frame_bb, id); + RenderFrame(frame_bb.Min, frame_bb.Max, GetColorU32(ImGuiCol_FrameBg), true, g.Style.FrameRounding); + + ImRect grab_bb; + const bool value_changed = SliderBehavior(frame_bb, id, data_type, p_data, p_min, p_max, format, flags, &grab_bb); + if (value_changed) + MarkItemEdited(id); + + if (grab_bb.Max.x > grab_bb.Min.x) + window->DrawList->AddRectFilled(grab_bb.Min, grab_bb.Max, GetColorU32(g.ActiveId == id ? ImGuiCol_SliderGrabActive: ImGuiCol_SliderGrab), style.GrabRounding); + + char value_buf[64]; + const char* value_buf_end = value_buf + DataTypeFormatString(value_buf, IM_ARRAYSIZE(value_buf), data_type, p_data, format); + if (g.LogEnabled) + LogSetNextTextDecoration("{", "}"); + + // Push a specific font for rendering the text + PushFont(FONT::font); + RenderTextClipped(frame_bb.Min, frame_bb.Max, value_buf, value_buf_end, NULL, ImVec2(0.5f, 0.7f)); + PopFont(); + if (hovered) + window->DrawList->AddShadowRect(frame_bb.Min, frame_bb.Max, IM_COL32(0, 0, 0, 200), 32.f, ImVec2(0, 0), 11, ImDrawFlags_RoundCornersAll); + + + if (label_size.x > 0.0f) { + PushStyleColor(ImGuiCol_Text, ImVec4( 73.f / 255.f , 73.f / 255.f, 73.f / 255.f, 0.90f)); // Replace with your desired color + + RenderText(ImVec2(frame_bb.Min.x, total_bb.Min.y + style.FramePadding.y - 4), label); + PopStyleColor(); + } + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags | (temp_input_allowed ? ImGuiItemStatusFlags_Inputable : 0)); + return value_changed; +} +// Add multiple sliders on 1 line for compact edition of multiple components +bool ImGui::SliderScalarN(const char* label, ImGuiDataType data_type, void* v, int components, const void* v_min, const void* v_max, const char* format, ImGuiSliderFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + bool value_changed = false; + BeginGroup(); + PushID(label); + PushMultiItemsWidths(components, CalcItemWidth()); + size_t type_size = GDataTypeInfo[data_type].Size; + for (int i = 0; i < components; i++) + { + PushID(i); + if (i > 0) + SameLine(0, g.Style.ItemInnerSpacing.x); + value_changed |= SliderScalar("", data_type, v, v_min, v_max, format, flags); + PopID(); + PopItemWidth(); + v = (void*)((char*)v + type_size); + } + PopID(); + + const char* label_end = FindRenderedTextEnd(label); + if (label != label_end) + { + SameLine(0, g.Style.ItemInnerSpacing.x); + TextEx(label, label_end); + } + + EndGroup(); + return value_changed; +} + +bool ImGui::SliderFloat(const char* label, float* v, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) +{ + return SliderScalar(label, ImGuiDataType_Float, v, &v_min, &v_max, format, flags); +} + +bool ImGui::SliderFloat2(const char* label, float v[2], float v_min, float v_max, const char* format, ImGuiSliderFlags flags) +{ + return SliderScalarN(label, ImGuiDataType_Float, v, 2, &v_min, &v_max, format, flags); +} + +bool ImGui::SliderFloat3(const char* label, float v[3], float v_min, float v_max, const char* format, ImGuiSliderFlags flags) +{ + return SliderScalarN(label, ImGuiDataType_Float, v, 3, &v_min, &v_max, format, flags); +} + +bool ImGui::SliderFloat4(const char* label, float v[4], float v_min, float v_max, const char* format, ImGuiSliderFlags flags) +{ + return SliderScalarN(label, ImGuiDataType_Float, v, 4, &v_min, &v_max, format, flags); +} + +bool ImGui::SliderAngle(const char* label, float* v_rad, float v_degrees_min, float v_degrees_max, const char* format, ImGuiSliderFlags flags) +{ + if (format == NULL) + format = "%.0f deg"; + float v_deg = (*v_rad) * 360.0f / (2 * IM_PI); + bool value_changed = SliderFloat(label, &v_deg, v_degrees_min, v_degrees_max, format, flags); + *v_rad = v_deg * (2 * IM_PI) / 360.0f; + return value_changed; +} + +bool ImGui::SliderInt(const char* label, int* v, int v_min, int v_max, const char* format, ImGuiSliderFlags flags) +{ + return SliderScalar(label, ImGuiDataType_S32, v, &v_min, &v_max, format, flags); +} + +bool ImGui::SliderInt2(const char* label, int v[2], int v_min, int v_max, const char* format, ImGuiSliderFlags flags) +{ + return SliderScalarN(label, ImGuiDataType_S32, v, 2, &v_min, &v_max, format, flags); +} + +bool ImGui::SliderInt3(const char* label, int v[3], int v_min, int v_max, const char* format, ImGuiSliderFlags flags) +{ + return SliderScalarN(label, ImGuiDataType_S32, v, 3, &v_min, &v_max, format, flags); +} + +bool ImGui::SliderInt4(const char* label, int v[4], int v_min, int v_max, const char* format, ImGuiSliderFlags flags) +{ + return SliderScalarN(label, ImGuiDataType_S32, v, 4, &v_min, &v_max, format, flags); +} + +bool ImGui::VSliderScalar(const char* label, const ImVec2& size, ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max, const char* format, ImGuiSliderFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + + const ImVec2 label_size = CalcTextSize(label, NULL, true); + const ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + size); + const ImRect bb(frame_bb.Min, frame_bb.Max + ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f, 0.0f)); + + ItemSize(bb, style.FramePadding.y); + if (!ItemAdd(frame_bb, id)) + return false; + + // Default format string when passing NULL + if (format == NULL) + format = DataTypeGetInfo(data_type)->PrintFmt; + + const bool hovered = ItemHoverable(frame_bb, id, g.LastItemData.InFlags); + const bool clicked = hovered && IsMouseClicked(0, id); + if (clicked || g.NavActivateId == id) + { + if (clicked) + SetKeyOwner(ImGuiKey_MouseLeft, id); + SetActiveID(id, window); + SetFocusID(id, window); + FocusWindow(window); + g.ActiveIdUsingNavDirMask |= (1 << ImGuiDir_Up) | (1 << ImGuiDir_Down); + } + + // Draw frame + const ImU32 frame_col = GetColorU32(g.ActiveId == id ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg); + RenderNavHighlight(frame_bb, id); + RenderFrame(frame_bb.Min, frame_bb.Max, frame_col, true, g.Style.FrameRounding); + + // Slider behavior + ImRect grab_bb; + const bool value_changed = SliderBehavior(frame_bb, id, data_type, p_data, p_min, p_max, format, flags | ImGuiSliderFlags_Vertical, &grab_bb); + if (value_changed) + MarkItemEdited(id); + + // Render grab + if (grab_bb.Max.y > grab_bb.Min.y) + window->DrawList->AddRectFilled(grab_bb.Min, grab_bb.Max, GetColorU32(g.ActiveId == id ? ImGuiCol_SliderGrabActive : ImGuiCol_SliderGrab), style.GrabRounding); + + // Display value using user-provided display format so user can add prefix/suffix/decorations to the value. + // For the vertical slider we allow centered text to overlap the frame padding + char value_buf[64]; + const char* value_buf_end = value_buf + DataTypeFormatString(value_buf, IM_ARRAYSIZE(value_buf), data_type, p_data, format); + RenderTextClipped(ImVec2(frame_bb.Min.x, frame_bb.Min.y + style.FramePadding.y), frame_bb.Max, value_buf, value_buf_end, NULL, ImVec2(0.5f, 0.0f)); + if (label_size.x > 0.0f) + RenderText(ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, frame_bb.Min.y + style.FramePadding.y), label); + + return value_changed; +} + +bool ImGui::VSliderFloat(const char* label, const ImVec2& size, float* v, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) +{ + return VSliderScalar(label, size, ImGuiDataType_Float, v, &v_min, &v_max, format, flags); +} + +bool ImGui::VSliderInt(const char* label, const ImVec2& size, int* v, int v_min, int v_max, const char* format, ImGuiSliderFlags flags) +{ + return VSliderScalar(label, size, ImGuiDataType_S32, v, &v_min, &v_max, format, flags); +} + + +//------------------------------------------------------------------------- +// [SECTION] Widgets: InputScalar, InputFloat, InputInt, etc. +//------------------------------------------------------------------------- +// - ImParseFormatFindStart() [Internal] +// - ImParseFormatFindEnd() [Internal] +// - ImParseFormatTrimDecorations() [Internal] +// - ImParseFormatSanitizeForPrinting() [Internal] +// - ImParseFormatSanitizeForScanning() [Internal] +// - ImParseFormatPrecision() [Internal] +// - TempInputTextScalar() [Internal] +// - InputScalar() +// - InputScalarN() +// - InputFloat() +// - InputFloat2() +// - InputFloat3() +// - InputFloat4() +// - InputInt() +// - InputInt2() +// - InputInt3() +// - InputInt4() +// - InputDouble() +//------------------------------------------------------------------------- + +// We don't use strchr() because our strings are usually very short and often start with '%' +const char* ImParseFormatFindStart(const char* fmt) +{ + while (char c = fmt[0]) + { + if (c == '%' && fmt[1] != '%') + return fmt; + else if (c == '%') + fmt++; + fmt++; + } + return fmt; +} + +const char* ImParseFormatFindEnd(const char* fmt) +{ + // Printf/scanf types modifiers: I/L/h/j/l/t/w/z. Other uppercase letters qualify as types aka end of the format. + if (fmt[0] != '%') + return fmt; + const unsigned int ignored_uppercase_mask = (1 << ('I'-'A')) | (1 << ('L'-'A')); + const unsigned int ignored_lowercase_mask = (1 << ('h'-'a')) | (1 << ('j'-'a')) | (1 << ('l'-'a')) | (1 << ('t'-'a')) | (1 << ('w'-'a')) | (1 << ('z'-'a')); + for (char c; (c = *fmt) != 0; fmt++) + { + if (c >= 'A' && c <= 'Z' && ((1 << (c - 'A')) & ignored_uppercase_mask) == 0) + return fmt + 1; + if (c >= 'a' && c <= 'z' && ((1 << (c - 'a')) & ignored_lowercase_mask) == 0) + return fmt + 1; + } + return fmt; +} + +// Extract the format out of a format string with leading or trailing decorations +// fmt = "blah blah" -> return "" +// fmt = "%.3f" -> return fmt +// fmt = "hello %.3f" -> return fmt + 6 +// fmt = "%.3f hello" -> return buf written with "%.3f" +const char* ImParseFormatTrimDecorations(const char* fmt, char* buf, size_t buf_size) +{ + const char* fmt_start = ImParseFormatFindStart(fmt); + if (fmt_start[0] != '%') + return ""; + const char* fmt_end = ImParseFormatFindEnd(fmt_start); + if (fmt_end[0] == 0) // If we only have leading decoration, we don't need to copy the data. + return fmt_start; + ImStrncpy(buf, fmt_start, ImMin((size_t)(fmt_end - fmt_start) + 1, buf_size)); + return buf; +} + +// Sanitize format +// - Zero terminate so extra characters after format (e.g. "%f123") don't confuse atof/atoi +// - stb_sprintf.h supports several new modifiers which format numbers in a way that also makes them incompatible atof/atoi. +void ImParseFormatSanitizeForPrinting(const char* fmt_in, char* fmt_out, size_t fmt_out_size) +{ + const char* fmt_end = ImParseFormatFindEnd(fmt_in); + IM_UNUSED(fmt_out_size); + IM_ASSERT((size_t)(fmt_end - fmt_in + 1) < fmt_out_size); // Format is too long, let us know if this happens to you! + while (fmt_in < fmt_end) + { + char c = *fmt_in++; + if (c != '\'' && c != '$' && c != '_') // Custom flags provided by stb_sprintf.h. POSIX 2008 also supports '. + *(fmt_out++) = c; + } + *fmt_out = 0; // Zero-terminate +} + +// - For scanning we need to remove all width and precision fields and flags "%+3.7f" -> "%f". BUT don't strip types like "%I64d" which includes digits. ! "%07I64d" -> "%I64d" +const char* ImParseFormatSanitizeForScanning(const char* fmt_in, char* fmt_out, size_t fmt_out_size) +{ + const char* fmt_end = ImParseFormatFindEnd(fmt_in); + const char* fmt_out_begin = fmt_out; + IM_UNUSED(fmt_out_size); + IM_ASSERT((size_t)(fmt_end - fmt_in + 1) < fmt_out_size); // Format is too long, let us know if this happens to you! + bool has_type = false; + while (fmt_in < fmt_end) + { + char c = *fmt_in++; + if (!has_type && ((c >= '0' && c <= '9') || c == '.' || c == '+' || c == '#')) + continue; + has_type |= ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')); // Stop skipping digits + if (c != '\'' && c != '$' && c != '_') // Custom flags provided by stb_sprintf.h. POSIX 2008 also supports '. + *(fmt_out++) = c; + } + *fmt_out = 0; // Zero-terminate + return fmt_out_begin; +} + +template +static const char* ImAtoi(const char* src, TYPE* output) +{ + int negative = 0; + if (*src == '-') { negative = 1; src++; } + if (*src == '+') { src++; } + TYPE v = 0; + while (*src >= '0' && *src <= '9') + v = (v * 10) + (*src++ - '0'); + *output = negative ? -v : v; + return src; +} + +// Parse display precision back from the display format string +// FIXME: This is still used by some navigation code path to infer a minimum tweak step, but we should aim to rework widgets so it isn't needed. +int ImParseFormatPrecision(const char* fmt, int default_precision) +{ + fmt = ImParseFormatFindStart(fmt); + if (fmt[0] != '%') + return default_precision; + fmt++; + while (*fmt >= '0' && *fmt <= '9') + fmt++; + int precision = INT_MAX; + if (*fmt == '.') + { + fmt = ImAtoi(fmt + 1, &precision); + if (precision < 0 || precision > 99) + precision = default_precision; + } + if (*fmt == 'e' || *fmt == 'E') // Maximum precision with scientific notation + precision = -1; + if ((*fmt == 'g' || *fmt == 'G') && precision == INT_MAX) + precision = -1; + return (precision == INT_MAX) ? default_precision : precision; +} + +// Create text input in place of another active widget (e.g. used when doing a CTRL+Click on drag/slider widgets) +// FIXME: Facilitate using this in variety of other situations. +bool ImGui::TempInputText(const ImRect& bb, ImGuiID id, const char* label, char* buf, int buf_size, ImGuiInputTextFlags flags) +{ + // On the first frame, g.TempInputTextId == 0, then on subsequent frames it becomes == id. + // We clear ActiveID on the first frame to allow the InputText() taking it back. + ImGuiContext& g = *GImGui; + const bool init = (g.TempInputId != id); + if (init) + ClearActiveID(); + + g.CurrentWindow->DC.CursorPos = bb.Min; + bool value_changed = InputTextEx(label, NULL, buf, buf_size, bb.GetSize(), flags | ImGuiInputTextFlags_MergedItem); + if (init) + { + // First frame we started displaying the InputText widget, we expect it to take the active id. + IM_ASSERT(g.ActiveId == id); + g.TempInputId = g.ActiveId; + } + return value_changed; +} + +static inline ImGuiInputTextFlags InputScalar_DefaultCharsFilter(ImGuiDataType data_type, const char* format) +{ + if (data_type == ImGuiDataType_Float || data_type == ImGuiDataType_Double) + return ImGuiInputTextFlags_CharsScientific; + const char format_last_char = format[0] ? format[strlen(format) - 1] : 0; + return (format_last_char == 'x' || format_last_char == 'X') ? ImGuiInputTextFlags_CharsHexadecimal : ImGuiInputTextFlags_CharsDecimal; +} + +// Note that Drag/Slider functions are only forwarding the min/max values clamping values if the ImGuiSliderFlags_AlwaysClamp flag is set! +// This is intended: this way we allow CTRL+Click manual input to set a value out of bounds, for maximum flexibility. +// However this may not be ideal for all uses, as some user code may break on out of bound values. +bool ImGui::TempInputScalar(const ImRect& bb, ImGuiID id, const char* label, ImGuiDataType data_type, void* p_data, const char* format, const void* p_clamp_min, const void* p_clamp_max) +{ + // FIXME: May need to clarify display behavior if format doesn't contain %. + // "%d" -> "%d" / "There are %d items" -> "%d" / "items" -> "%d" (fallback). Also see #6405 + const ImGuiDataTypeInfo* type_info = DataTypeGetInfo(data_type); + char fmt_buf[32]; + char data_buf[32]; + format = ImParseFormatTrimDecorations(format, fmt_buf, IM_ARRAYSIZE(fmt_buf)); + if (format[0] == 0) + format = type_info->PrintFmt; + DataTypeFormatString(data_buf, IM_ARRAYSIZE(data_buf), data_type, p_data, format); + ImStrTrimBlanks(data_buf); + + ImGuiInputTextFlags flags = ImGuiInputTextFlags_AutoSelectAll | ImGuiInputTextFlags_NoMarkEdited; + flags |= InputScalar_DefaultCharsFilter(data_type, format); + + bool value_changed = false; + if (TempInputText(bb, id, label, data_buf, IM_ARRAYSIZE(data_buf), flags)) + { + // Backup old value + size_t data_type_size = type_info->Size; + ImGuiDataTypeTempStorage data_backup; + memcpy(&data_backup, p_data, data_type_size); + + // Apply new value (or operations) then clamp + DataTypeApplyFromText(data_buf, data_type, p_data, format); + if (p_clamp_min || p_clamp_max) + { + if (p_clamp_min && p_clamp_max && DataTypeCompare(data_type, p_clamp_min, p_clamp_max) > 0) + ImSwap(p_clamp_min, p_clamp_max); + DataTypeClamp(data_type, p_data, p_clamp_min, p_clamp_max); + } + + // Only mark as edited if new value is different + value_changed = memcmp(&data_backup, p_data, data_type_size) != 0; + if (value_changed) + MarkItemEdited(id); + } + return value_changed; +} + +// Note: p_data, p_step, p_step_fast are _pointers_ to a memory address holding the data. For an Input widget, p_step and p_step_fast are optional. +// Read code of e.g. InputFloat(), InputInt() etc. or examples in 'Demo->Widgets->Data Types' to understand how to use this function directly. +bool ImGui::InputScalar(const char* label, ImGuiDataType data_type, void* p_data, const void* p_step, const void* p_step_fast, const char* format, ImGuiInputTextFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + ImGuiStyle& style = g.Style; + + if (format == NULL) + format = DataTypeGetInfo(data_type)->PrintFmt; + + char buf[64]; + DataTypeFormatString(buf, IM_ARRAYSIZE(buf), data_type, p_data, format); + + // Testing ActiveId as a minor optimization as filtering is not needed until active + if (g.ActiveId == 0 && (flags & (ImGuiInputTextFlags_CharsDecimal | ImGuiInputTextFlags_CharsHexadecimal | ImGuiInputTextFlags_CharsScientific)) == 0) + flags |= InputScalar_DefaultCharsFilter(data_type, format); + flags |= ImGuiInputTextFlags_AutoSelectAll | ImGuiInputTextFlags_NoMarkEdited; // We call MarkItemEdited() ourselves by comparing the actual data rather than the string. + + bool value_changed = false; + if (p_step == NULL) + { + if (InputText(label, buf, IM_ARRAYSIZE(buf), flags)) + value_changed = DataTypeApplyFromText(buf, data_type, p_data, format); + } + else + { + const float button_size = GetFrameHeight(); + + BeginGroup(); // The only purpose of the group here is to allow the caller to query item data e.g. IsItemActive() + PushID(label); + SetNextItemWidth(ImMax(1.0f, CalcItemWidth() - (button_size + style.ItemInnerSpacing.x) * 2)); + if (InputText("", buf, IM_ARRAYSIZE(buf), flags)) // PushId(label) + "" gives us the expected ID from outside point of view + value_changed = DataTypeApplyFromText(buf, data_type, p_data, format); + IMGUI_TEST_ENGINE_ITEM_INFO(g.LastItemData.ID, label, g.LastItemData.StatusFlags | ImGuiItemStatusFlags_Inputable); + + // Step buttons + const ImVec2 backup_frame_padding = style.FramePadding; + style.FramePadding.x = style.FramePadding.y; + ImGuiButtonFlags button_flags = ImGuiButtonFlags_Repeat | ImGuiButtonFlags_DontClosePopups; + if (flags & ImGuiInputTextFlags_ReadOnly) + BeginDisabled(); + SameLine(0, style.ItemInnerSpacing.x); + if (ButtonEx("-", ImVec2(button_size, button_size), button_flags)) + { + DataTypeApplyOp(data_type, '-', p_data, p_data, g.IO.KeyCtrl && p_step_fast ? p_step_fast : p_step); + value_changed = true; + } + SameLine(0, style.ItemInnerSpacing.x); + if (ButtonEx("+", ImVec2(button_size, button_size), button_flags)) + { + DataTypeApplyOp(data_type, '+', p_data, p_data, g.IO.KeyCtrl && p_step_fast ? p_step_fast : p_step); + value_changed = true; + } + if (flags & ImGuiInputTextFlags_ReadOnly) + EndDisabled(); + + const char* label_end = FindRenderedTextEnd(label); + if (label != label_end) + { + SameLine(0, style.ItemInnerSpacing.x); + TextEx(label, label_end); + } + style.FramePadding = backup_frame_padding; + + PopID(); + EndGroup(); + } + if (value_changed) + MarkItemEdited(g.LastItemData.ID); + + return value_changed; +} + +bool ImGui::InputScalarN(const char* label, ImGuiDataType data_type, void* p_data, int components, const void* p_step, const void* p_step_fast, const char* format, ImGuiInputTextFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + bool value_changed = false; + BeginGroup(); + PushID(label); + PushMultiItemsWidths(components, CalcItemWidth()); + size_t type_size = GDataTypeInfo[data_type].Size; + for (int i = 0; i < components; i++) + { + PushID(i); + if (i > 0) + SameLine(0, g.Style.ItemInnerSpacing.x); + value_changed |= InputScalar("", data_type, p_data, p_step, p_step_fast, format, flags); + PopID(); + PopItemWidth(); + p_data = (void*)((char*)p_data + type_size); + } + PopID(); + + const char* label_end = FindRenderedTextEnd(label); + if (label != label_end) + { + SameLine(0.0f, g.Style.ItemInnerSpacing.x); + TextEx(label, label_end); + } + + EndGroup(); + return value_changed; +} + +bool ImGui::InputFloat(const char* label, float* v, float step, float step_fast, const char* format, ImGuiInputTextFlags flags) +{ + flags |= ImGuiInputTextFlags_CharsScientific; + return InputScalar(label, ImGuiDataType_Float, (void*)v, (void*)(step > 0.0f ? &step : NULL), (void*)(step_fast > 0.0f ? &step_fast : NULL), format, flags); +} + +bool ImGui::InputFloat2(const char* label, float v[2], const char* format, ImGuiInputTextFlags flags) +{ + return InputScalarN(label, ImGuiDataType_Float, v, 2, NULL, NULL, format, flags); +} + +bool ImGui::InputFloat3(const char* label, float v[3], const char* format, ImGuiInputTextFlags flags) +{ + return InputScalarN(label, ImGuiDataType_Float, v, 3, NULL, NULL, format, flags); +} + +bool ImGui::InputFloat4(const char* label, float v[4], const char* format, ImGuiInputTextFlags flags) +{ + return InputScalarN(label, ImGuiDataType_Float, v, 4, NULL, NULL, format, flags); +} + +bool ImGui::InputInt(const char* label, int* v, int step, int step_fast, ImGuiInputTextFlags flags) +{ + // Hexadecimal input provided as a convenience but the flag name is awkward. Typically you'd use InputText() to parse your own data, if you want to handle prefixes. + const char* format = (flags & ImGuiInputTextFlags_CharsHexadecimal) ? "%08X" : "%d"; + return InputScalar(label, ImGuiDataType_S32, (void*)v, (void*)(step > 0 ? &step : NULL), (void*)(step_fast > 0 ? &step_fast : NULL), format, flags); +} + +bool ImGui::InputInt2(const char* label, int v[2], ImGuiInputTextFlags flags) +{ + return InputScalarN(label, ImGuiDataType_S32, v, 2, NULL, NULL, "%d", flags); +} + +bool ImGui::InputInt3(const char* label, int v[3], ImGuiInputTextFlags flags) +{ + return InputScalarN(label, ImGuiDataType_S32, v, 3, NULL, NULL, "%d", flags); +} + +bool ImGui::InputInt4(const char* label, int v[4], ImGuiInputTextFlags flags) +{ + return InputScalarN(label, ImGuiDataType_S32, v, 4, NULL, NULL, "%d", flags); +} + +bool ImGui::InputDouble(const char* label, double* v, double step, double step_fast, const char* format, ImGuiInputTextFlags flags) +{ + flags |= ImGuiInputTextFlags_CharsScientific; + return InputScalar(label, ImGuiDataType_Double, (void*)v, (void*)(step > 0.0 ? &step : NULL), (void*)(step_fast > 0.0 ? &step_fast : NULL), format, flags); +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: InputText, InputTextMultiline, InputTextWithHint +//------------------------------------------------------------------------- +// - InputText() +// - InputTextWithHint() +// - InputTextMultiline() +// - InputTextGetCharInfo() [Internal] +// - InputTextReindexLines() [Internal] +// - InputTextReindexLinesRange() [Internal] +// - InputTextEx() [Internal] +// - DebugNodeInputTextState() [Internal] +//------------------------------------------------------------------------- + +bool ImGui::InputText(const char* label, char* buf, size_t buf_size, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* user_data) +{ + IM_ASSERT(!(flags & ImGuiInputTextFlags_Multiline)); // call InputTextMultiline() + return InputTextEx(label, NULL, buf, (int)buf_size, ImVec2(0, 0), flags, callback, user_data); +} + +bool ImGui::InputTextMultiline(const char* label, char* buf, size_t buf_size, const ImVec2& size, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* user_data) +{ + return InputTextEx(label, NULL, buf, (int)buf_size, size, flags | ImGuiInputTextFlags_Multiline, callback, user_data); +} + +bool ImGui::InputTextWithHint(const char* label, const char* hint, char* buf, size_t buf_size, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* user_data) +{ + IM_ASSERT(!(flags & ImGuiInputTextFlags_Multiline)); // call InputTextMultiline() or InputTextEx() manually if you need multi-line + hint. + return InputTextEx(label, hint, buf, (int)buf_size, ImVec2(0, 0), flags, callback, user_data); +} + +static int InputTextCalcTextLenAndLineCount(const char* text_begin, const char** out_text_end) +{ + int line_count = 0; + const char* s = text_begin; + while (char c = *s++) // We are only matching for \n so we can ignore UTF-8 decoding + if (c == '\n') + line_count++; + s--; + if (s[0] != '\n' && s[0] != '\r') + line_count++; + *out_text_end = s; + return line_count; +} + +static ImVec2 InputTextCalcTextSizeW(ImGuiContext* ctx, const ImWchar* text_begin, const ImWchar* text_end, const ImWchar** remaining, ImVec2* out_offset, bool stop_on_new_line) +{ + ImGuiContext& g = *ctx; + ImFont* font = g.Font; + const float line_height = g.FontSize; + const float scale = line_height / font->FontSize; + + ImVec2 text_size = ImVec2(0, 0); + float line_width = 0.0f; + + const ImWchar* s = text_begin; + while (s < text_end) + { + unsigned int c = (unsigned int)(*s++); + if (c == '\n') + { + text_size.x = ImMax(text_size.x, line_width); + text_size.y += line_height; + line_width = 0.0f; + if (stop_on_new_line) + break; + continue; + } + if (c == '\r') + continue; + + const float char_width = font->GetCharAdvance((ImWchar)c) * scale; + line_width += char_width; + } + + if (text_size.x < line_width) + text_size.x = line_width; + + if (out_offset) + *out_offset = ImVec2(line_width, text_size.y + line_height); // offset allow for the possibility of sitting after a trailing \n + + if (line_width > 0 || text_size.y == 0.0f) // whereas size.y will ignore the trailing \n + text_size.y += line_height; + + if (remaining) + *remaining = s; + + return text_size; +} + +// Wrapper for stb_textedit.h to edit text (our wrapper is for: statically sized buffer, single-line, wchar characters. InputText converts between UTF-8 and wchar) +namespace ImStb +{ + +static int STB_TEXTEDIT_STRINGLEN(const ImGuiInputTextState* obj) { return obj->CurLenW; } +static ImWchar STB_TEXTEDIT_GETCHAR(const ImGuiInputTextState* obj, int idx) { return obj->TextW[idx]; } +static float STB_TEXTEDIT_GETWIDTH(ImGuiInputTextState* obj, int line_start_idx, int char_idx) { ImWchar c = obj->TextW[line_start_idx + char_idx]; if (c == '\n') return STB_TEXTEDIT_GETWIDTH_NEWLINE; ImGuiContext& g = *obj->Ctx; return g.Font->GetCharAdvance(c) * (g.FontSize / g.Font->FontSize); } +static int STB_TEXTEDIT_KEYTOTEXT(int key) { return key >= 0x200000 ? 0 : key; } +static ImWchar STB_TEXTEDIT_NEWLINE = '\n'; +static void STB_TEXTEDIT_LAYOUTROW(StbTexteditRow* r, ImGuiInputTextState* obj, int line_start_idx) +{ + const ImWchar* text = obj->TextW.Data; + const ImWchar* text_remaining = NULL; + const ImVec2 size = InputTextCalcTextSizeW(obj->Ctx, text + line_start_idx, text + obj->CurLenW, &text_remaining, NULL, true); + r->x0 = 0.0f; + r->x1 = size.x; + r->baseline_y_delta = size.y; + r->ymin = 0.0f; + r->ymax = size.y; + r->num_chars = (int)(text_remaining - (text + line_start_idx)); +} + +static bool is_separator(unsigned int c) +{ + return c==',' || c==';' || c=='(' || c==')' || c=='{' || c=='}' || c=='[' || c==']' || c=='|' || c=='\n' || c=='\r' || c=='.' || c=='!'; +} + +static int is_word_boundary_from_right(ImGuiInputTextState* obj, int idx) +{ + // When ImGuiInputTextFlags_Password is set, we don't want actions such as CTRL+Arrow to leak the fact that underlying data are blanks or separators. + if ((obj->Flags & ImGuiInputTextFlags_Password) || idx <= 0) + return 0; + + bool prev_white = ImCharIsBlankW(obj->TextW[idx - 1]); + bool prev_separ = is_separator(obj->TextW[idx - 1]); + bool curr_white = ImCharIsBlankW(obj->TextW[idx]); + bool curr_separ = is_separator(obj->TextW[idx]); + return ((prev_white || prev_separ) && !(curr_separ || curr_white)) || (curr_separ && !prev_separ); +} +static int is_word_boundary_from_left(ImGuiInputTextState* obj, int idx) +{ + if ((obj->Flags & ImGuiInputTextFlags_Password) || idx <= 0) + return 0; + + bool prev_white = ImCharIsBlankW(obj->TextW[idx]); + bool prev_separ = is_separator(obj->TextW[idx]); + bool curr_white = ImCharIsBlankW(obj->TextW[idx - 1]); + bool curr_separ = is_separator(obj->TextW[idx - 1]); + return ((prev_white) && !(curr_separ || curr_white)) || (curr_separ && !prev_separ); +} +static int STB_TEXTEDIT_MOVEWORDLEFT_IMPL(ImGuiInputTextState* obj, int idx) { idx--; while (idx >= 0 && !is_word_boundary_from_right(obj, idx)) idx--; return idx < 0 ? 0 : idx; } +static int STB_TEXTEDIT_MOVEWORDRIGHT_MAC(ImGuiInputTextState* obj, int idx) { idx++; int len = obj->CurLenW; while (idx < len && !is_word_boundary_from_left(obj, idx)) idx++; return idx > len ? len : idx; } +static int STB_TEXTEDIT_MOVEWORDRIGHT_WIN(ImGuiInputTextState* obj, int idx) { idx++; int len = obj->CurLenW; while (idx < len && !is_word_boundary_from_right(obj, idx)) idx++; return idx > len ? len : idx; } +static int STB_TEXTEDIT_MOVEWORDRIGHT_IMPL(ImGuiInputTextState* obj, int idx) { ImGuiContext& g = *obj->Ctx; if (g.IO.ConfigMacOSXBehaviors) return STB_TEXTEDIT_MOVEWORDRIGHT_MAC(obj, idx); else return STB_TEXTEDIT_MOVEWORDRIGHT_WIN(obj, idx); } +#define STB_TEXTEDIT_MOVEWORDLEFT STB_TEXTEDIT_MOVEWORDLEFT_IMPL // They need to be #define for stb_textedit.h +#define STB_TEXTEDIT_MOVEWORDRIGHT STB_TEXTEDIT_MOVEWORDRIGHT_IMPL + +static void STB_TEXTEDIT_DELETECHARS(ImGuiInputTextState* obj, int pos, int n) +{ + ImWchar* dst = obj->TextW.Data + pos; + + // We maintain our buffer length in both UTF-8 and wchar formats + obj->Edited = true; + obj->CurLenA -= ImTextCountUtf8BytesFromStr(dst, dst + n); + obj->CurLenW -= n; + + // Offset remaining text (FIXME-OPT: Use memmove) + const ImWchar* src = obj->TextW.Data + pos + n; + while (ImWchar c = *src++) + *dst++ = c; + *dst = '\0'; +} + +static bool STB_TEXTEDIT_INSERTCHARS(ImGuiInputTextState* obj, int pos, const ImWchar* new_text, int new_text_len) +{ + const bool is_resizable = (obj->Flags & ImGuiInputTextFlags_CallbackResize) != 0; + const int text_len = obj->CurLenW; + IM_ASSERT(pos <= text_len); + + const int new_text_len_utf8 = ImTextCountUtf8BytesFromStr(new_text, new_text + new_text_len); + if (!is_resizable && (new_text_len_utf8 + obj->CurLenA + 1 > obj->BufCapacityA)) + return false; + + // Grow internal buffer if needed + if (new_text_len + text_len + 1 > obj->TextW.Size) + { + if (!is_resizable) + return false; + IM_ASSERT(text_len < obj->TextW.Size); + obj->TextW.resize(text_len + ImClamp(new_text_len * 4, 32, ImMax(256, new_text_len)) + 1); + } + + ImWchar* text = obj->TextW.Data; + if (pos != text_len) + memmove(text + pos + new_text_len, text + pos, (size_t)(text_len - pos) * sizeof(ImWchar)); + memcpy(text + pos, new_text, (size_t)new_text_len * sizeof(ImWchar)); + + obj->Edited = true; + obj->CurLenW += new_text_len; + obj->CurLenA += new_text_len_utf8; + obj->TextW[obj->CurLenW] = '\0'; + + return true; +} + +// We don't use an enum so we can build even with conflicting symbols (if another user of stb_textedit.h leak their STB_TEXTEDIT_K_* symbols) +#define STB_TEXTEDIT_K_LEFT 0x200000 // keyboard input to move cursor left +#define STB_TEXTEDIT_K_RIGHT 0x200001 // keyboard input to move cursor right +#define STB_TEXTEDIT_K_UP 0x200002 // keyboard input to move cursor up +#define STB_TEXTEDIT_K_DOWN 0x200003 // keyboard input to move cursor down +#define STB_TEXTEDIT_K_LINESTART 0x200004 // keyboard input to move cursor to start of line +#define STB_TEXTEDIT_K_LINEEND 0x200005 // keyboard input to move cursor to end of line +#define STB_TEXTEDIT_K_TEXTSTART 0x200006 // keyboard input to move cursor to start of text +#define STB_TEXTEDIT_K_TEXTEND 0x200007 // keyboard input to move cursor to end of text +#define STB_TEXTEDIT_K_DELETE 0x200008 // keyboard input to delete selection or character under cursor +#define STB_TEXTEDIT_K_BACKSPACE 0x200009 // keyboard input to delete selection or character left of cursor +#define STB_TEXTEDIT_K_UNDO 0x20000A // keyboard input to perform undo +#define STB_TEXTEDIT_K_REDO 0x20000B // keyboard input to perform redo +#define STB_TEXTEDIT_K_WORDLEFT 0x20000C // keyboard input to move cursor left one word +#define STB_TEXTEDIT_K_WORDRIGHT 0x20000D // keyboard input to move cursor right one word +#define STB_TEXTEDIT_K_PGUP 0x20000E // keyboard input to move cursor up a page +#define STB_TEXTEDIT_K_PGDOWN 0x20000F // keyboard input to move cursor down a page +#define STB_TEXTEDIT_K_SHIFT 0x400000 + +#define STB_TEXTEDIT_IMPLEMENTATION +#define STB_TEXTEDIT_memmove memmove +#include "imstb_textedit.h" + +// stb_textedit internally allows for a single undo record to do addition and deletion, but somehow, calling +// the stb_textedit_paste() function creates two separate records, so we perform it manually. (FIXME: Report to nothings/stb?) +static void stb_textedit_replace(ImGuiInputTextState* str, STB_TexteditState* state, const STB_TEXTEDIT_CHARTYPE* text, int text_len) +{ + stb_text_makeundo_replace(str, state, 0, str->CurLenW, text_len); + ImStb::STB_TEXTEDIT_DELETECHARS(str, 0, str->CurLenW); + state->cursor = state->select_start = state->select_end = 0; + if (text_len <= 0) + return; + if (ImStb::STB_TEXTEDIT_INSERTCHARS(str, 0, text, text_len)) + { + state->cursor = state->select_start = state->select_end = text_len; + state->has_preferred_x = 0; + return; + } + IM_ASSERT(0); // Failed to insert character, normally shouldn't happen because of how we currently use stb_textedit_replace() +} + +} // namespace ImStb + +void ImGuiInputTextState::OnKeyPressed(int key) +{ + stb_textedit_key(this, &Stb, key); + CursorFollow = true; + CursorAnimReset(); +} + +ImGuiInputTextCallbackData::ImGuiInputTextCallbackData() +{ + memset(this, 0, sizeof(*this)); +} + +// Public API to manipulate UTF-8 text +// We expose UTF-8 to the user (unlike the STB_TEXTEDIT_* functions which are manipulating wchar) +// FIXME: The existence of this rarely exercised code path is a bit of a nuisance. +void ImGuiInputTextCallbackData::DeleteChars(int pos, int bytes_count) +{ + IM_ASSERT(pos + bytes_count <= BufTextLen); + char* dst = Buf + pos; + const char* src = Buf + pos + bytes_count; + while (char c = *src++) + *dst++ = c; + *dst = '\0'; + + if (CursorPos >= pos + bytes_count) + CursorPos -= bytes_count; + else if (CursorPos >= pos) + CursorPos = pos; + SelectionStart = SelectionEnd = CursorPos; + BufDirty = true; + BufTextLen -= bytes_count; +} + +void ImGuiInputTextCallbackData::InsertChars(int pos, const char* new_text, const char* new_text_end) +{ + // Accept null ranges + if (new_text == new_text_end) + return; + + const bool is_resizable = (Flags & ImGuiInputTextFlags_CallbackResize) != 0; + const int new_text_len = new_text_end ? (int)(new_text_end - new_text) : (int)strlen(new_text); + if (new_text_len + BufTextLen >= BufSize) + { + if (!is_resizable) + return; + + // Contrary to STB_TEXTEDIT_INSERTCHARS() this is working in the UTF8 buffer, hence the mildly similar code (until we remove the U16 buffer altogether!) + ImGuiContext& g = *Ctx; + ImGuiInputTextState* edit_state = &g.InputTextState; + IM_ASSERT(edit_state->ID != 0 && g.ActiveId == edit_state->ID); + IM_ASSERT(Buf == edit_state->TextA.Data); + int new_buf_size = BufTextLen + ImClamp(new_text_len * 4, 32, ImMax(256, new_text_len)) + 1; + edit_state->TextA.reserve(new_buf_size + 1); + Buf = edit_state->TextA.Data; + BufSize = edit_state->BufCapacityA = new_buf_size; + } + + if (BufTextLen != pos) + memmove(Buf + pos + new_text_len, Buf + pos, (size_t)(BufTextLen - pos)); + memcpy(Buf + pos, new_text, (size_t)new_text_len * sizeof(char)); + Buf[BufTextLen + new_text_len] = '\0'; + + if (CursorPos >= pos) + CursorPos += new_text_len; + SelectionStart = SelectionEnd = CursorPos; + BufDirty = true; + BufTextLen += new_text_len; +} + +// Return false to discard a character. +static bool InputTextFilterCharacter(ImGuiContext* ctx, unsigned int* p_char, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* user_data, ImGuiInputSource input_source) +{ + IM_ASSERT(input_source == ImGuiInputSource_Keyboard || input_source == ImGuiInputSource_Clipboard); + unsigned int c = *p_char; + + // Filter non-printable (NB: isprint is unreliable! see #2467) + bool apply_named_filters = true; + if (c < 0x20) + { + bool pass = false; + pass |= (c == '\n' && (flags & ImGuiInputTextFlags_Multiline)); // Note that an Enter KEY will emit \r and be ignored (we poll for KEY in InputText() code) + pass |= (c == '\t' && (flags & ImGuiInputTextFlags_AllowTabInput)); + if (!pass) + return false; + apply_named_filters = false; // Override named filters below so newline and tabs can still be inserted. + } + + if (input_source != ImGuiInputSource_Clipboard) + { + // We ignore Ascii representation of delete (emitted from Backspace on OSX, see #2578, #2817) + if (c == 127) + return false; + + // Filter private Unicode range. GLFW on OSX seems to send private characters for special keys like arrow keys (FIXME) + if (c >= 0xE000 && c <= 0xF8FF) + return false; + } + + // Filter Unicode ranges we are not handling in this build + if (c > IM_UNICODE_CODEPOINT_MAX) + return false; + + // Generic named filters + if (apply_named_filters && (flags & (ImGuiInputTextFlags_CharsDecimal | ImGuiInputTextFlags_CharsHexadecimal | ImGuiInputTextFlags_CharsUppercase | ImGuiInputTextFlags_CharsNoBlank | ImGuiInputTextFlags_CharsScientific))) + { + // The libc allows overriding locale, with e.g. 'setlocale(LC_NUMERIC, "de_DE.UTF-8");' which affect the output/input of printf/scanf to use e.g. ',' instead of '.'. + // The standard mandate that programs starts in the "C" locale where the decimal point is '.'. + // We don't really intend to provide widespread support for it, but out of empathy for people stuck with using odd API, we support the bare minimum aka overriding the decimal point. + // Change the default decimal_point with: + // ImGui::GetIO()->PlatformLocaleDecimalPoint = *localeconv()->decimal_point; + // Users of non-default decimal point (in particular ',') may be affected by word-selection logic (is_word_boundary_from_right/is_word_boundary_from_left) functions. + ImGuiContext& g = *ctx; + const unsigned c_decimal_point = (unsigned int)g.IO.PlatformLocaleDecimalPoint; + if (flags & (ImGuiInputTextFlags_CharsDecimal | ImGuiInputTextFlags_CharsScientific)) + if (c == '.' || c == ',') + c = c_decimal_point; + + // Full-width -> half-width conversion for numeric fields (https://en.wikipedia.org/wiki/Halfwidth_and_Fullwidth_Forms_(Unicode_block) + // While this is mostly convenient, this has the side-effect for uninformed users accidentally inputting full-width characters that they may + // scratch their head as to why it works in numerical fields vs in generic text fields it would require support in the font. + if (flags & (ImGuiInputTextFlags_CharsDecimal | ImGuiInputTextFlags_CharsScientific | ImGuiInputTextFlags_CharsHexadecimal)) + if (c >= 0xFF01 && c <= 0xFF5E) + c = c - 0xFF01 + 0x21; + + // Allow 0-9 . - + * / + if (flags & ImGuiInputTextFlags_CharsDecimal) + if (!(c >= '0' && c <= '9') && (c != c_decimal_point) && (c != '-') && (c != '+') && (c != '*') && (c != '/')) + return false; + + // Allow 0-9 . - + * / e E + if (flags & ImGuiInputTextFlags_CharsScientific) + if (!(c >= '0' && c <= '9') && (c != c_decimal_point) && (c != '-') && (c != '+') && (c != '*') && (c != '/') && (c != 'e') && (c != 'E')) + return false; + + // Allow 0-9 a-F A-F + if (flags & ImGuiInputTextFlags_CharsHexadecimal) + if (!(c >= '0' && c <= '9') && !(c >= 'a' && c <= 'f') && !(c >= 'A' && c <= 'F')) + return false; + + // Turn a-z into A-Z + if (flags & ImGuiInputTextFlags_CharsUppercase) + if (c >= 'a' && c <= 'z') + c += (unsigned int)('A' - 'a'); + + if (flags & ImGuiInputTextFlags_CharsNoBlank) + if (ImCharIsBlankW(c)) + return false; + + *p_char = c; + } + + // Custom callback filter + if (flags & ImGuiInputTextFlags_CallbackCharFilter) + { + ImGuiContext& g = *GImGui; + ImGuiInputTextCallbackData callback_data; + callback_data.Ctx = &g; + callback_data.EventFlag = ImGuiInputTextFlags_CallbackCharFilter; + callback_data.EventChar = (ImWchar)c; + callback_data.Flags = flags; + callback_data.UserData = user_data; + if (callback(&callback_data) != 0) + return false; + *p_char = callback_data.EventChar; + if (!callback_data.EventChar) + return false; + } + + return true; +} + +// Find the shortest single replacement we can make to get the new text from the old text. +// Important: needs to be run before TextW is rewritten with the new characters because calling STB_TEXTEDIT_GETCHAR() at the end. +// FIXME: Ideally we should transition toward (1) making InsertChars()/DeleteChars() update undo-stack (2) discourage (and keep reconcile) or obsolete (and remove reconcile) accessing buffer directly. +static void InputTextReconcileUndoStateAfterUserCallback(ImGuiInputTextState* state, const char* new_buf_a, int new_length_a) +{ + ImGuiContext& g = *GImGui; + const ImWchar* old_buf = state->TextW.Data; + const int old_length = state->CurLenW; + const int new_length = ImTextCountCharsFromUtf8(new_buf_a, new_buf_a + new_length_a); + g.TempBuffer.reserve_discard((new_length + 1) * sizeof(ImWchar)); + ImWchar* new_buf = (ImWchar*)(void*)g.TempBuffer.Data; + ImTextStrFromUtf8(new_buf, new_length + 1, new_buf_a, new_buf_a + new_length_a); + + const int shorter_length = ImMin(old_length, new_length); + int first_diff; + for (first_diff = 0; first_diff < shorter_length; first_diff++) + if (old_buf[first_diff] != new_buf[first_diff]) + break; + if (first_diff == old_length && first_diff == new_length) + return; + + int old_last_diff = old_length - 1; + int new_last_diff = new_length - 1; + for (; old_last_diff >= first_diff && new_last_diff >= first_diff; old_last_diff--, new_last_diff--) + if (old_buf[old_last_diff] != new_buf[new_last_diff]) + break; + + const int insert_len = new_last_diff - first_diff + 1; + const int delete_len = old_last_diff - first_diff + 1; + if (insert_len > 0 || delete_len > 0) + if (STB_TEXTEDIT_CHARTYPE* p = stb_text_createundo(&state->Stb.undostate, first_diff, delete_len, insert_len)) + for (int i = 0; i < delete_len; i++) + p[i] = ImStb::STB_TEXTEDIT_GETCHAR(state, first_diff + i); +} +struct input_state +{ + ImVec4 text, outline; + float slow, line; +}; +// As InputText() retain textual data and we currently provide a path for user to not retain it (via local variables) +// we need some form of hook to reapply data back to user buffer on deactivation frame. (#4714) +// It would be more desirable that we discourage users from taking advantage of the "user not retaining data" trick, +// but that more likely be attractive when we do have _NoLiveEdit flag available. +void ImGui::InputTextDeactivateHook(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + ImGuiInputTextState* state = &g.InputTextState; + if (id == 0 || state->ID != id) + return; + g.InputTextDeactivatedState.ID = state->ID; + if (state->Flags & ImGuiInputTextFlags_ReadOnly) + { + g.InputTextDeactivatedState.TextA.resize(0); // In theory this data won't be used, but clear to be neat. + } + else + { + IM_ASSERT(state->TextA.Data != 0); + g.InputTextDeactivatedState.TextA.resize(state->CurLenA + 1); + memcpy(g.InputTextDeactivatedState.TextA.Data, state->TextA.Data, state->CurLenA + 1); + } +} +#include +#include +// Edit a string of text +// - buf_size account for the zero-terminator, so a buf_size of 6 can hold "Hello" but not "Hello!". +// This is so we can easily call InputText() on static arrays using ARRAYSIZE() and to match +// Note that in std::string world, capacity() would omit 1 byte used by the zero-terminator. +// - When active, hold on a privately held copy of the text (and apply back to 'buf'). So changing 'buf' while the InputText is active has no effect. +// - If you want to use ImGui::InputText() with std::string, see misc/cpp/imgui_stdlib.h +// (FIXME: Rather confusing and messy function, among the worse part of our codebase, expecting to rewrite a V2 at some point.. Partly because we are +// doing UTF8 > U16 > UTF8 conversions on the go to easily interface with stb_textedit. Ideally should stay in UTF-8 all the time. See https://github.com/nothings/stb/issues/188) +bool ImGui::InputTextEx(const char* label, const char* hint, char* buf, int buf_size, const ImVec2& size_arg, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* callback_user_data) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) return false; + + IM_ASSERT(buf != NULL && buf_size >= 0); + IM_ASSERT(!((flags & ImGuiInputTextFlags_CallbackHistory) && (flags & ImGuiInputTextFlags_Multiline))); // Can't use both together (they both use up/down keys) + IM_ASSERT(!((flags & ImGuiInputTextFlags_CallbackCompletion) && (flags & ImGuiInputTextFlags_AllowTabInput))); // Can't use both together (they both use tab key) + + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + const ImGuiStyle& style = g.Style; + + const bool RENDER_SELECTION_WHEN_INACTIVE = false; + const bool is_multiline = (flags & ImGuiInputTextFlags_Multiline) != 0; + const bool is_readonly = (flags & ImGuiInputTextFlags_ReadOnly) != 0; + const bool is_password = (flags & ImGuiInputTextFlags_Password) != 0; + const bool is_undoable = (flags & ImGuiInputTextFlags_NoUndoRedo) == 0; + const bool is_resizable = (flags & ImGuiInputTextFlags_CallbackResize) != 0; + if (is_resizable) + IM_ASSERT(callback != NULL); // Must provide a callback if you set the ImGuiInputTextFlags_CallbackResize flag! + + if (is_multiline) // Open group before calling GetID() because groups tracks id created within their scope (including the scrollbar) + BeginGroup(); + const ImGuiID id = window->GetID(label); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + const ImVec2 frame_size = CalcItemSize(size_arg, CalcItemWidth(), (is_multiline ? g.FontSize * 8.0f : label_size.y)); // Arbitrary default of 8 lines high for multi-line + const ImVec2 total_size = ImVec2(frame_size.x + (label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f), frame_size.y); + + const ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + frame_size); + const ImRect total_bb(frame_bb.Min, frame_bb.Min + total_size); + + ImGuiWindow* draw_window = window; + ImVec2 inner_size = frame_size; + ImGuiItemStatusFlags item_status_flags = 0; + ImGuiLastItemData item_data_backup; + if (is_multiline) + { + ImVec2 backup_pos = window->DC.CursorPos; + ItemSize(total_bb, style.FramePadding.y); + if (!ItemAdd(total_bb, id, &frame_bb, ImGuiItemFlags_Inputable)) + { + EndGroup(); + return false; + } + item_status_flags = g.LastItemData.StatusFlags; + item_data_backup = g.LastItemData; + window->DC.CursorPos = backup_pos; + + // Prevent NavActivate reactivating in BeginChild(). + const ImGuiID backup_activate_id = g.NavActivateId; + if (g.ActiveId == id) // Prevent reactivation + g.NavActivateId = 0; + + // We reproduce the contents of BeginChildFrame() in order to provide 'label' so our window internal data are easier to read/debug. + PushStyleColor(ImGuiCol_ChildBg, style.Colors[ImGuiCol_FrameBg]); + PushStyleVar(ImGuiStyleVar_ChildRounding, style.FrameRounding); + PushStyleVar(ImGuiStyleVar_ChildBorderSize, style.FrameBorderSize); + PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(0, 0)); // Ensure no clip rect so mouse hover can reach FramePadding edges + bool child_visible = BeginChildEx(label, id, frame_bb.GetSize(), true, ImGuiWindowFlags_NoMove); + g.NavActivateId = backup_activate_id; + PopStyleVar(3); + PopStyleColor(); + if (!child_visible) + { + EndChild(); + EndGroup(); + return false; + } + draw_window = g.CurrentWindow; // Child window + draw_window->DC.NavLayersActiveMaskNext |= (1 << draw_window->DC.NavLayerCurrent); // This is to ensure that EndChild() will display a navigation highlight so we can "enter" into it. + draw_window->DC.CursorPos += style.FramePadding; + inner_size.x -= draw_window->ScrollbarSizes.x; + } + else + { + // Support for internal ImGuiInputTextFlags_MergedItem flag, which could be redesigned as an ItemFlags if needed (with test performed in ItemAdd) + ItemSize(total_bb, style.FramePadding.y); + if (!(flags & ImGuiInputTextFlags_MergedItem)) + if (!ItemAdd(total_bb, id, &frame_bb, ImGuiItemFlags_Inputable)) + return false; + item_status_flags = g.LastItemData.StatusFlags; + } + const bool hovered = ItemHoverable(frame_bb, id, g.LastItemData.InFlags); + if (hovered) + g.MouseCursor = ImGuiMouseCursor_TextInput; + + // We are only allowed to access the state if we are already the active widget. + ImGuiInputTextState* state = GetInputTextState(id); + + const bool input_requested_by_tabbing = (item_status_flags & ImGuiItemStatusFlags_FocusedByTabbing) != 0; + const bool input_requested_by_nav = (g.ActiveId != id) && ((g.NavActivateId == id) && ((g.NavActivateFlags & ImGuiActivateFlags_PreferInput) || (g.NavInputSource == ImGuiInputSource_Keyboard))); + + const bool user_clicked = hovered && io.MouseClicked[0]; + const bool user_scroll_finish = is_multiline && state != NULL && g.ActiveId == 0 && g.ActiveIdPreviousFrame == GetWindowScrollbarID(draw_window, ImGuiAxis_Y); + const bool user_scroll_active = is_multiline && state != NULL && g.ActiveId == GetWindowScrollbarID(draw_window, ImGuiAxis_Y); + bool clear_active_id = false; + bool select_all = false; + + float scroll_y = is_multiline ? draw_window->Scroll.y : FLT_MAX; + + const bool init_changed_specs = (state != NULL && state->Stb.single_line != !is_multiline); // state != NULL means its our state. + const bool init_make_active = (user_clicked || user_scroll_finish || input_requested_by_nav || input_requested_by_tabbing); + const bool init_state = (init_make_active || user_scroll_active); + if ((init_state && g.ActiveId != id) || init_changed_specs) + { + // Access state even if we don't own it yet. + state = &g.InputTextState; + state->CursorAnimReset(); + + // Backup state of deactivating item so they'll have a chance to do a write to output buffer on the same frame they report IsItemDeactivatedAfterEdit (#4714) + InputTextDeactivateHook(state->ID); + + // Take a copy of the initial buffer value (both in original UTF-8 format and converted to wchar) + // From the moment we focused we are ignoring the content of 'buf' (unless we are in read-only mode) + const int buf_len = (int)strlen(buf); + state->InitialTextA.resize(buf_len + 1); // UTF-8. we use +1 to make sure that .Data is always pointing to at least an empty string. + memcpy(state->InitialTextA.Data, buf, buf_len + 1); + + // Preserve cursor position and undo/redo stack if we come back to same widget + // FIXME: Since we reworked this on 2022/06, may want to differenciate recycle_cursor vs recycle_undostate? + bool recycle_state = (state->ID == id && !init_changed_specs); + if (recycle_state && (state->CurLenA != buf_len || (state->TextAIsValid && strncmp(state->TextA.Data, buf, buf_len) != 0))) + recycle_state = false; + + // Start edition + const char* buf_end = NULL; + state->ID = id; + state->TextW.resize(buf_size + 1); // wchar count <= UTF-8 count. we use +1 to make sure that .Data is always pointing to at least an empty string. + state->TextA.resize(0); + state->TextAIsValid = false; // TextA is not valid yet (we will display buf until then) + state->CurLenW = ImTextStrFromUtf8(state->TextW.Data, buf_size, buf, NULL, &buf_end); + state->CurLenA = (int)(buf_end - buf); // We can't get the result from ImStrncpy() above because it is not UTF-8 aware. Here we'll cut off malformed UTF-8. + + if (recycle_state) + { + // Recycle existing cursor/selection/undo stack but clamp position + // Note a single mouse click will override the cursor/position immediately by calling stb_textedit_click handler. + state->CursorClamp(); + } + else + { + state->ScrollX = 0.0f; + stb_textedit_initialize_state(&state->Stb, !is_multiline); + } + + if (!is_multiline) + { + if (flags & ImGuiInputTextFlags_AutoSelectAll) + select_all = true; + if (input_requested_by_nav && (!recycle_state || !(g.NavActivateFlags & ImGuiActivateFlags_TryToPreserveState))) + select_all = true; + if (input_requested_by_tabbing || (user_clicked && io.KeyCtrl)) + select_all = true; + } + + if (flags & ImGuiInputTextFlags_AlwaysOverwrite) + state->Stb.insert_mode = 1; // stb field name is indeed incorrect (see #2863) + } + + const bool is_osx = io.ConfigMacOSXBehaviors; + if (g.ActiveId != id && init_make_active) + { + IM_ASSERT(state && state->ID == id); + SetActiveID(id, window); + SetFocusID(id, window); + FocusWindow(window); + } + if (g.ActiveId == id) + { + // Declare some inputs, the other are registered and polled via Shortcut() routing system. + if (user_clicked) + SetKeyOwner(ImGuiKey_MouseLeft, id); + g.ActiveIdUsingNavDirMask |= (1 << ImGuiDir_Left) | (1 << ImGuiDir_Right); + if (is_multiline || (flags & ImGuiInputTextFlags_CallbackHistory)) + g.ActiveIdUsingNavDirMask |= (1 << ImGuiDir_Up) | (1 << ImGuiDir_Down); + SetKeyOwner(ImGuiKey_Home, id); + SetKeyOwner(ImGuiKey_End, id); + if (is_multiline) + { + SetKeyOwner(ImGuiKey_PageUp, id); + SetKeyOwner(ImGuiKey_PageDown, id); + } + if (is_osx) + SetKeyOwner(ImGuiMod_Alt, id); + if (flags & (ImGuiInputTextFlags_CallbackCompletion | ImGuiInputTextFlags_AllowTabInput)) // Disable keyboard tabbing out as we will use the \t character. + SetShortcutRouting(ImGuiKey_Tab, id); + } + + // We have an edge case if ActiveId was set through another widget (e.g. widget being swapped), clear id immediately (don't wait until the end of the function) + if (g.ActiveId == id && state == NULL) + ClearActiveID(); + + // Release focus when we click outside + if (g.ActiveId == id && io.MouseClicked[0] && !init_state && !init_make_active) //-V560 + clear_active_id = true; + + // Lock the decision of whether we are going to take the path displaying the cursor or selection + bool render_cursor = (g.ActiveId == id) || (state && user_scroll_active); + bool render_selection = state && (state->HasSelection() || select_all) && (RENDER_SELECTION_WHEN_INACTIVE || render_cursor); + bool value_changed = false; + bool validated = false; + + // When read-only we always use the live data passed to the function + // FIXME-OPT: Because our selection/cursor code currently needs the wide text we need to convert it when active, which is not ideal :( + if (is_readonly && state != NULL && (render_cursor || render_selection)) + { + const char* buf_end = NULL; + state->TextW.resize(buf_size + 1); + state->CurLenW = ImTextStrFromUtf8(state->TextW.Data, state->TextW.Size, buf, NULL, &buf_end); + state->CurLenA = (int)(buf_end - buf); + state->CursorClamp(); + render_selection &= state->HasSelection(); + } + + // Select the buffer to render. + const bool buf_display_from_state = (render_cursor || render_selection || g.ActiveId == id) && !is_readonly && state && state->TextAIsValid; + const bool is_displaying_hint = (hint != NULL && (buf_display_from_state ? state->TextA.Data : buf)[0] == 0); + + // Password pushes a temporary font with only a fallback glyph + if (is_password && !is_displaying_hint) + { + const ImFontGlyph* glyph = g.Font->FindGlyph('*'); + ImFont* password_font = &g.InputTextPasswordFont; + password_font->FontSize = g.Font->FontSize; + password_font->Scale = g.Font->Scale; + password_font->Ascent = g.Font->Ascent; + password_font->Descent = g.Font->Descent; + password_font->ContainerAtlas = g.Font->ContainerAtlas; + password_font->FallbackGlyph = glyph; + password_font->FallbackAdvanceX = glyph->AdvanceX; + IM_ASSERT(password_font->Glyphs.empty() && password_font->IndexAdvanceX.empty() && password_font->IndexLookup.empty()); + PushFont(password_font); + } + + // Process mouse inputs and character inputs + int backup_current_text_length = 0; + if (g.ActiveId == id) + { + IM_ASSERT(state != NULL); + backup_current_text_length = state->CurLenA; + state->Edited = false; + state->BufCapacityA = buf_size; + state->Flags = flags; + + // Although we are active we don't prevent mouse from hovering other elements unless we are interacting right now with the widget. + // Down the line we should have a cleaner library-wide concept of Selected vs Active. + g.ActiveIdAllowOverlap = !io.MouseDown[0]; + + // Edit in progress + const float mouse_x = (io.MousePos.x - frame_bb.Min.x - style.FramePadding.x) + state->ScrollX; + const float mouse_y = (is_multiline ? (io.MousePos.y - draw_window->DC.CursorPos.y) : (g.FontSize * 0.5f)); + + if (select_all) + { + state->SelectAll(); + state->SelectedAllMouseLock = true; + } + else if (hovered && io.MouseClickedCount[0] >= 2 && !io.KeyShift) + { + stb_textedit_click(state, &state->Stb, mouse_x, mouse_y); + const int multiclick_count = (io.MouseClickedCount[0] - 2); + if ((multiclick_count % 2) == 0) + { + // Double-click: Select word + // We always use the "Mac" word advance for double-click select vs CTRL+Right which use the platform dependent variant: + // FIXME: There are likely many ways to improve this behavior, but there's no "right" behavior (depends on use-case, software, OS) + const bool is_bol = (state->Stb.cursor == 0) || ImStb::STB_TEXTEDIT_GETCHAR(state, state->Stb.cursor - 1) == '\n'; + if (STB_TEXT_HAS_SELECTION(&state->Stb) || !is_bol) + state->OnKeyPressed(STB_TEXTEDIT_K_WORDLEFT); + //state->OnKeyPressed(STB_TEXTEDIT_K_WORDRIGHT | STB_TEXTEDIT_K_SHIFT); + if (!STB_TEXT_HAS_SELECTION(&state->Stb)) + ImStb::stb_textedit_prep_selection_at_cursor(&state->Stb); + state->Stb.cursor = ImStb::STB_TEXTEDIT_MOVEWORDRIGHT_MAC(state, state->Stb.cursor); + state->Stb.select_end = state->Stb.cursor; + ImStb::stb_textedit_clamp(state, &state->Stb); + } + else + { + // Triple-click: Select line + const bool is_eol = ImStb::STB_TEXTEDIT_GETCHAR(state, state->Stb.cursor) == '\n'; + state->OnKeyPressed(STB_TEXTEDIT_K_LINESTART); + state->OnKeyPressed(STB_TEXTEDIT_K_LINEEND | STB_TEXTEDIT_K_SHIFT); + state->OnKeyPressed(STB_TEXTEDIT_K_RIGHT | STB_TEXTEDIT_K_SHIFT); + if (!is_eol && is_multiline) + { + ImSwap(state->Stb.select_start, state->Stb.select_end); + state->Stb.cursor = state->Stb.select_end; + } + state->CursorFollow = false; + } + state->CursorAnimReset(); + } + else if (io.MouseClicked[0] && !state->SelectedAllMouseLock) + { + if (hovered) + { + if (io.KeyShift) + stb_textedit_drag(state, &state->Stb, mouse_x, mouse_y); + else + stb_textedit_click(state, &state->Stb, mouse_x, mouse_y); + state->CursorAnimReset(); + } + } + else if (io.MouseDown[0] && !state->SelectedAllMouseLock && (io.MouseDelta.x != 0.0f || io.MouseDelta.y != 0.0f)) + { + stb_textedit_drag(state, &state->Stb, mouse_x, mouse_y); + state->CursorAnimReset(); + state->CursorFollow = true; + } + if (state->SelectedAllMouseLock && !io.MouseDown[0]) + state->SelectedAllMouseLock = false; + + // We expect backends to emit a Tab key but some also emit a Tab character which we ignore (#2467, #1336) + // (For Tab and Enter: Win32/SFML/Allegro are sending both keys and chars, GLFW and SDL are only sending keys. For Space they all send all threes) + if ((flags & ImGuiInputTextFlags_AllowTabInput) && Shortcut(ImGuiKey_Tab, id) && !is_readonly) + { + unsigned int c = '\t'; // Insert TAB + if (InputTextFilterCharacter(&g, &c, flags, callback, callback_user_data, ImGuiInputSource_Keyboard)) + state->OnKeyPressed((int)c); + } + + // Process regular text input (before we check for Return because using some IME will effectively send a Return?) + // We ignore CTRL inputs, but need to allow ALT+CTRL as some keyboards (e.g. German) use AltGR (which _is_ Alt+Ctrl) to input certain characters. + const bool ignore_char_inputs = (io.KeyCtrl && !io.KeyAlt) || (is_osx && io.KeySuper); + if (io.InputQueueCharacters.Size > 0) + { + if (!ignore_char_inputs && !is_readonly && !input_requested_by_nav) + for (int n = 0; n < io.InputQueueCharacters.Size; n++) + { + // Insert character if they pass filtering + unsigned int c = (unsigned int)io.InputQueueCharacters[n]; + if (c == '\t') // Skip Tab, see above. + continue; + if (InputTextFilterCharacter(&g, &c, flags, callback, callback_user_data, ImGuiInputSource_Keyboard)) + state->OnKeyPressed((int)c); + } + + // Consume characters + io.InputQueueCharacters.resize(0); + } + } + + // Process other shortcuts/key-presses + bool revert_edit = false; + if (g.ActiveId == id && !g.ActiveIdIsJustActivated && !clear_active_id) + { + IM_ASSERT(state != NULL); + + const int row_count_per_page = ImMax((int)((inner_size.y - style.FramePadding.y) / g.FontSize), 1); + state->Stb.row_count_per_page = row_count_per_page; + + const int k_mask = (io.KeyShift ? STB_TEXTEDIT_K_SHIFT : 0); + const bool is_wordmove_key_down = is_osx ? io.KeyAlt : io.KeyCtrl; // OS X style: Text editing cursor movement using Alt instead of Ctrl + const bool is_startend_key_down = is_osx && io.KeySuper && !io.KeyCtrl && !io.KeyAlt; // OS X style: Line/Text Start and End using Cmd+Arrows instead of Home/End + + // Using Shortcut() with ImGuiInputFlags_RouteFocused (default policy) to allow routing operations for other code (e.g. calling window trying to use CTRL+A and CTRL+B: formet would be handled by InputText) + // Otherwise we could simply assume that we own the keys as we are active. + const ImGuiInputFlags f_repeat = ImGuiInputFlags_Repeat; + const bool is_cut = (Shortcut(ImGuiMod_Shortcut | ImGuiKey_X, id, f_repeat) || Shortcut(ImGuiMod_Shift | ImGuiKey_Delete, id, f_repeat)) && !is_readonly && !is_password && (!is_multiline || state->HasSelection()); + const bool is_copy = (Shortcut(ImGuiMod_Shortcut | ImGuiKey_C, id) || Shortcut(ImGuiMod_Ctrl | ImGuiKey_Insert, id)) && !is_password && (!is_multiline || state->HasSelection()); + const bool is_paste = (Shortcut(ImGuiMod_Shortcut | ImGuiKey_V, id, f_repeat) || Shortcut(ImGuiMod_Shift | ImGuiKey_Insert, id, f_repeat)) && !is_readonly; + const bool is_undo = (Shortcut(ImGuiMod_Shortcut | ImGuiKey_Z, id, f_repeat)) && !is_readonly && is_undoable; + const bool is_redo = (Shortcut(ImGuiMod_Shortcut | ImGuiKey_Y, id, f_repeat) || (is_osx && Shortcut(ImGuiMod_Shortcut | ImGuiMod_Shift | ImGuiKey_Z, id, f_repeat))) && !is_readonly && is_undoable; + const bool is_select_all = Shortcut(ImGuiMod_Shortcut | ImGuiKey_A, id); + + // We allow validate/cancel with Nav source (gamepad) to makes it easier to undo an accidental NavInput press with no keyboard wired, but otherwise it isn't very useful. + const bool nav_gamepad_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) != 0 && (io.BackendFlags & ImGuiBackendFlags_HasGamepad) != 0; + const bool is_enter_pressed = IsKeyPressed(ImGuiKey_Enter, true) || IsKeyPressed(ImGuiKey_KeypadEnter, true); + const bool is_gamepad_validate = nav_gamepad_active && (IsKeyPressed(ImGuiKey_NavGamepadActivate, false) || IsKeyPressed(ImGuiKey_NavGamepadInput, false)); + const bool is_cancel = Shortcut(ImGuiKey_Escape, id, f_repeat) || (nav_gamepad_active && Shortcut(ImGuiKey_NavGamepadCancel, id, f_repeat)); + + // FIXME: Should use more Shortcut() and reduce IsKeyPressed()+SetKeyOwner(), but requires modifiers combination to be taken account of. + if (IsKeyPressed(ImGuiKey_LeftArrow)) { state->OnKeyPressed((is_startend_key_down ? STB_TEXTEDIT_K_LINESTART : is_wordmove_key_down ? STB_TEXTEDIT_K_WORDLEFT : STB_TEXTEDIT_K_LEFT) | k_mask); } + else if (IsKeyPressed(ImGuiKey_RightArrow)) { state->OnKeyPressed((is_startend_key_down ? STB_TEXTEDIT_K_LINEEND : is_wordmove_key_down ? STB_TEXTEDIT_K_WORDRIGHT : STB_TEXTEDIT_K_RIGHT) | k_mask); } + else if (IsKeyPressed(ImGuiKey_UpArrow) && is_multiline) { if (io.KeyCtrl) SetScrollY(draw_window, ImMax(draw_window->Scroll.y - g.FontSize, 0.0f)); else state->OnKeyPressed((is_startend_key_down ? STB_TEXTEDIT_K_TEXTSTART : STB_TEXTEDIT_K_UP) | k_mask); } + else if (IsKeyPressed(ImGuiKey_DownArrow) && is_multiline) { if (io.KeyCtrl) SetScrollY(draw_window, ImMin(draw_window->Scroll.y + g.FontSize, GetScrollMaxY())); else state->OnKeyPressed((is_startend_key_down ? STB_TEXTEDIT_K_TEXTEND : STB_TEXTEDIT_K_DOWN) | k_mask); } + else if (IsKeyPressed(ImGuiKey_PageUp) && is_multiline) { state->OnKeyPressed(STB_TEXTEDIT_K_PGUP | k_mask); scroll_y -= row_count_per_page * g.FontSize; } + else if (IsKeyPressed(ImGuiKey_PageDown) && is_multiline) { state->OnKeyPressed(STB_TEXTEDIT_K_PGDOWN | k_mask); scroll_y += row_count_per_page * g.FontSize; } + else if (IsKeyPressed(ImGuiKey_Home)) { state->OnKeyPressed(io.KeyCtrl ? STB_TEXTEDIT_K_TEXTSTART | k_mask : STB_TEXTEDIT_K_LINESTART | k_mask); } + else if (IsKeyPressed(ImGuiKey_End)) { state->OnKeyPressed(io.KeyCtrl ? STB_TEXTEDIT_K_TEXTEND | k_mask : STB_TEXTEDIT_K_LINEEND | k_mask); } + else if (IsKeyPressed(ImGuiKey_Delete) && !is_readonly && !is_cut) + { + if (!state->HasSelection()) + { + // OSX doesn't seem to have Super+Delete to delete until end-of-line, so we don't emulate that (as opposed to Super+Backspace) + if (is_wordmove_key_down) + state->OnKeyPressed(STB_TEXTEDIT_K_WORDRIGHT | STB_TEXTEDIT_K_SHIFT); + } + state->OnKeyPressed(STB_TEXTEDIT_K_DELETE | k_mask); + } + else if (IsKeyPressed(ImGuiKey_Backspace) && !is_readonly) + { + if (!state->HasSelection()) + { + if (is_wordmove_key_down) + state->OnKeyPressed(STB_TEXTEDIT_K_WORDLEFT | STB_TEXTEDIT_K_SHIFT); + else if (is_osx && io.KeySuper && !io.KeyAlt && !io.KeyCtrl) + state->OnKeyPressed(STB_TEXTEDIT_K_LINESTART | STB_TEXTEDIT_K_SHIFT); + } + state->OnKeyPressed(STB_TEXTEDIT_K_BACKSPACE | k_mask); + } + else if (is_enter_pressed || is_gamepad_validate) + { + // Determine if we turn Enter into a \n character + bool ctrl_enter_for_new_line = (flags & ImGuiInputTextFlags_CtrlEnterForNewLine) != 0; + if (!is_multiline || is_gamepad_validate || (ctrl_enter_for_new_line && !io.KeyCtrl) || (!ctrl_enter_for_new_line && io.KeyCtrl)) + { + validated = true; + if (io.ConfigInputTextEnterKeepActive && !is_multiline) + state->SelectAll(); // No need to scroll + else + clear_active_id = true; + } + else if (!is_readonly) + { + unsigned int c = '\n'; // Insert new line + if (InputTextFilterCharacter(&g, &c, flags, callback, callback_user_data, ImGuiInputSource_Keyboard)) + state->OnKeyPressed((int)c); + } + } + else if (is_cancel) + { + if (flags & ImGuiInputTextFlags_EscapeClearsAll) + { + if (buf[0] != 0) + { + revert_edit = true; + } + else + { + render_cursor = render_selection = false; + clear_active_id = true; + } + } + else + { + clear_active_id = revert_edit = true; + render_cursor = render_selection = false; + } + } + else if (is_undo || is_redo) + { + state->OnKeyPressed(is_undo ? STB_TEXTEDIT_K_UNDO : STB_TEXTEDIT_K_REDO); + state->ClearSelection(); + } + else if (is_select_all) + { + state->SelectAll(); + state->CursorFollow = true; + } + else if (is_cut || is_copy) + { + // Cut, Copy + if (io.SetClipboardTextFn) + { + const int ib = state->HasSelection() ? ImMin(state->Stb.select_start, state->Stb.select_end) : 0; + const int ie = state->HasSelection() ? ImMax(state->Stb.select_start, state->Stb.select_end) : state->CurLenW; + const int clipboard_data_len = ImTextCountUtf8BytesFromStr(state->TextW.Data + ib, state->TextW.Data + ie) + 1; + char* clipboard_data = (char*)IM_ALLOC(clipboard_data_len * sizeof(char)); + ImTextStrToUtf8(clipboard_data, clipboard_data_len, state->TextW.Data + ib, state->TextW.Data + ie); + SetClipboardText(clipboard_data); + MemFree(clipboard_data); + } + if (is_cut) + { + if (!state->HasSelection()) + state->SelectAll(); + state->CursorFollow = true; + stb_textedit_cut(state, &state->Stb); + } + } + else if (is_paste) + { + if (const char* clipboard = GetClipboardText()) + { + // Filter pasted buffer + const int clipboard_len = (int)strlen(clipboard); + ImWchar* clipboard_filtered = (ImWchar*)IM_ALLOC((clipboard_len + 1) * sizeof(ImWchar)); + int clipboard_filtered_len = 0; + for (const char* s = clipboard; *s != 0; ) + { + unsigned int c; + s += ImTextCharFromUtf8(&c, s, NULL); + if (!InputTextFilterCharacter(&g, &c, flags, callback, callback_user_data, ImGuiInputSource_Clipboard)) + continue; + clipboard_filtered[clipboard_filtered_len++] = (ImWchar)c; + } + clipboard_filtered[clipboard_filtered_len] = 0; + if (clipboard_filtered_len > 0) // If everything was filtered, ignore the pasting operation + { + stb_textedit_paste(state, &state->Stb, clipboard_filtered, clipboard_filtered_len); + state->CursorFollow = true; + } + MemFree(clipboard_filtered); + } + } + + // Update render selection flag after events have been handled, so selection highlight can be displayed during the same frame. + render_selection |= state->HasSelection() && (RENDER_SELECTION_WHEN_INACTIVE || render_cursor); + } + + // Process callbacks and apply result back to user's buffer. + const char* apply_new_text = NULL; + int apply_new_text_length = 0; + if (g.ActiveId == id) + { + IM_ASSERT(state != NULL); + if (revert_edit && !is_readonly) + { + if (flags & ImGuiInputTextFlags_EscapeClearsAll) + { + // Clear input + IM_ASSERT(buf[0] != 0); + apply_new_text = ""; + apply_new_text_length = 0; + value_changed = true; + STB_TEXTEDIT_CHARTYPE empty_string; + stb_textedit_replace(state, &state->Stb, &empty_string, 0); + } + else if (strcmp(buf, state->InitialTextA.Data) != 0) + { + // Restore initial value. Only return true if restoring to the initial value changes the current buffer contents. + // Push records into the undo stack so we can CTRL+Z the revert operation itself + apply_new_text = state->InitialTextA.Data; + apply_new_text_length = state->InitialTextA.Size - 1; + value_changed = true; + ImVector w_text; + if (apply_new_text_length > 0) + { + w_text.resize(ImTextCountCharsFromUtf8(apply_new_text, apply_new_text + apply_new_text_length) + 1); + ImTextStrFromUtf8(w_text.Data, w_text.Size, apply_new_text, apply_new_text + apply_new_text_length); + } + stb_textedit_replace(state, &state->Stb, w_text.Data, (apply_new_text_length > 0) ? (w_text.Size - 1) : 0); + } + } + + // Apply ASCII value + if (!is_readonly) + { + state->TextAIsValid = true; + state->TextA.resize(state->TextW.Size * 4 + 1); + ImTextStrToUtf8(state->TextA.Data, state->TextA.Size, state->TextW.Data, NULL); + } + + // When using 'ImGuiInputTextFlags_EnterReturnsTrue' as a special case we reapply the live buffer back to the input buffer + // before clearing ActiveId, even though strictly speaking it wasn't modified on this frame. + // If we didn't do that, code like InputInt() with ImGuiInputTextFlags_EnterReturnsTrue would fail. + // This also allows the user to use InputText() with ImGuiInputTextFlags_EnterReturnsTrue without maintaining any user-side storage + // (please note that if you use this property along ImGuiInputTextFlags_CallbackResize you can end up with your temporary string object + // unnecessarily allocating once a frame, either store your string data, either if you don't then don't use ImGuiInputTextFlags_CallbackResize). + const bool apply_edit_back_to_user_buffer = !revert_edit || (validated && (flags & ImGuiInputTextFlags_EnterReturnsTrue) != 0); + if (apply_edit_back_to_user_buffer) + { + // Apply new value immediately - copy modified buffer back + // Note that as soon as the input box is active, the in-widget value gets priority over any underlying modification of the input buffer + // FIXME: We actually always render 'buf' when calling DrawList->AddText, making the comment above incorrect. + // FIXME-OPT: CPU waste to do this every time the widget is active, should mark dirty state from the stb_textedit callbacks. + + // User callback + if ((flags & (ImGuiInputTextFlags_CallbackCompletion | ImGuiInputTextFlags_CallbackHistory | ImGuiInputTextFlags_CallbackEdit | ImGuiInputTextFlags_CallbackAlways)) != 0) + { + IM_ASSERT(callback != NULL); + + // The reason we specify the usage semantic (Completion/History) is that Completion needs to disable keyboard TABBING at the moment. + ImGuiInputTextFlags event_flag = 0; + ImGuiKey event_key = ImGuiKey_None; + if ((flags & ImGuiInputTextFlags_CallbackCompletion) != 0 && Shortcut(ImGuiKey_Tab, id)) + { + event_flag = ImGuiInputTextFlags_CallbackCompletion; + event_key = ImGuiKey_Tab; + } + else if ((flags & ImGuiInputTextFlags_CallbackHistory) != 0 && IsKeyPressed(ImGuiKey_UpArrow)) + { + event_flag = ImGuiInputTextFlags_CallbackHistory; + event_key = ImGuiKey_UpArrow; + } + else if ((flags & ImGuiInputTextFlags_CallbackHistory) != 0 && IsKeyPressed(ImGuiKey_DownArrow)) + { + event_flag = ImGuiInputTextFlags_CallbackHistory; + event_key = ImGuiKey_DownArrow; + } + else if ((flags & ImGuiInputTextFlags_CallbackEdit) && state->Edited) + { + event_flag = ImGuiInputTextFlags_CallbackEdit; + } + else if (flags & ImGuiInputTextFlags_CallbackAlways) + { + event_flag = ImGuiInputTextFlags_CallbackAlways; + } + + if (event_flag) + { + ImGuiInputTextCallbackData callback_data; + callback_data.Ctx = &g; + callback_data.EventFlag = event_flag; + callback_data.Flags = flags; + callback_data.UserData = callback_user_data; + + char* callback_buf = is_readonly ? buf : state->TextA.Data; + callback_data.EventKey = event_key; + callback_data.Buf = callback_buf; + callback_data.BufTextLen = state->CurLenA; + callback_data.BufSize = state->BufCapacityA; + callback_data.BufDirty = false; + + // We have to convert from wchar-positions to UTF-8-positions, which can be pretty slow (an incentive to ditch the ImWchar buffer, see https://github.com/nothings/stb/issues/188) + ImWchar* text = state->TextW.Data; + const int utf8_cursor_pos = callback_data.CursorPos = ImTextCountUtf8BytesFromStr(text, text + state->Stb.cursor); + const int utf8_selection_start = callback_data.SelectionStart = ImTextCountUtf8BytesFromStr(text, text + state->Stb.select_start); + const int utf8_selection_end = callback_data.SelectionEnd = ImTextCountUtf8BytesFromStr(text, text + state->Stb.select_end); + + // Call user code + callback(&callback_data); + + // Read back what user may have modified + callback_buf = is_readonly ? buf : state->TextA.Data; // Pointer may have been invalidated by a resize callback + IM_ASSERT(callback_data.Buf == callback_buf); // Invalid to modify those fields + IM_ASSERT(callback_data.BufSize == state->BufCapacityA); + IM_ASSERT(callback_data.Flags == flags); + const bool buf_dirty = callback_data.BufDirty; + if (callback_data.CursorPos != utf8_cursor_pos || buf_dirty) { state->Stb.cursor = ImTextCountCharsFromUtf8(callback_data.Buf, callback_data.Buf + callback_data.CursorPos); state->CursorFollow = true; } + if (callback_data.SelectionStart != utf8_selection_start || buf_dirty) { state->Stb.select_start = (callback_data.SelectionStart == callback_data.CursorPos) ? state->Stb.cursor : ImTextCountCharsFromUtf8(callback_data.Buf, callback_data.Buf + callback_data.SelectionStart); } + if (callback_data.SelectionEnd != utf8_selection_end || buf_dirty) { state->Stb.select_end = (callback_data.SelectionEnd == callback_data.SelectionStart) ? state->Stb.select_start : ImTextCountCharsFromUtf8(callback_data.Buf, callback_data.Buf + callback_data.SelectionEnd); } + if (buf_dirty) + { + IM_ASSERT((flags & ImGuiInputTextFlags_ReadOnly) == 0); + IM_ASSERT(callback_data.BufTextLen == (int)strlen(callback_data.Buf)); // You need to maintain BufTextLen if you change the text! + InputTextReconcileUndoStateAfterUserCallback(state, callback_data.Buf, callback_data.BufTextLen); // FIXME: Move the rest of this block inside function and rename to InputTextReconcileStateAfterUserCallback() ? + if (callback_data.BufTextLen > backup_current_text_length && is_resizable) + state->TextW.resize(state->TextW.Size + (callback_data.BufTextLen - backup_current_text_length)); // Worse case scenario resize + state->CurLenW = ImTextStrFromUtf8(state->TextW.Data, state->TextW.Size, callback_data.Buf, NULL); + state->CurLenA = callback_data.BufTextLen; // Assume correct length and valid UTF-8 from user, saves us an extra strlen() + state->CursorAnimReset(); + } + } + } + + // Will copy result string if modified + if (!is_readonly && strcmp(state->TextA.Data, buf) != 0) + { + apply_new_text = state->TextA.Data; + apply_new_text_length = state->CurLenA; + value_changed = true; + } + } + } + + // Handle reapplying final data on deactivation (see InputTextDeactivateHook() for details) + if (g.InputTextDeactivatedState.ID == id) + { + if (g.ActiveId != id && IsItemDeactivatedAfterEdit() && !is_readonly && strcmp(g.InputTextDeactivatedState.TextA.Data, buf) != 0) + { + apply_new_text = g.InputTextDeactivatedState.TextA.Data; + apply_new_text_length = g.InputTextDeactivatedState.TextA.Size - 1; + value_changed = true; + //IMGUI_DEBUG_LOG("InputText(): apply Deactivated data for 0x%08X: \"%.*s\".\n", id, apply_new_text_length, apply_new_text); + } + g.InputTextDeactivatedState.ID = 0; + } + + // Copy result to user buffer. This can currently only happen when (g.ActiveId == id) + if (apply_new_text != NULL) + { + // We cannot test for 'backup_current_text_length != apply_new_text_length' here because we have no guarantee that the size + // of our owned buffer matches the size of the string object held by the user, and by design we allow InputText() to be used + // without any storage on user's side. + IM_ASSERT(apply_new_text_length >= 0); + if (is_resizable) + { + ImGuiInputTextCallbackData callback_data; + callback_data.Ctx = &g; + callback_data.EventFlag = ImGuiInputTextFlags_CallbackResize; + callback_data.Flags = flags; + callback_data.Buf = buf; + callback_data.BufTextLen = apply_new_text_length; + callback_data.BufSize = ImMax(buf_size, apply_new_text_length + 1); + callback_data.UserData = callback_user_data; + callback(&callback_data); + buf = callback_data.Buf; + buf_size = callback_data.BufSize; + apply_new_text_length = ImMin(callback_data.BufTextLen, buf_size - 1); + IM_ASSERT(apply_new_text_length <= buf_size); + } + //IMGUI_DEBUG_PRINT("InputText(\"%s\"): apply_new_text length %d\n", label, apply_new_text_length); + + // If the underlying buffer resize was denied or not carried to the next frame, apply_new_text_length+1 may be >= buf_size. + ImStrncpy(buf, apply_new_text, ImMin(apply_new_text_length + 1, buf_size)); + } + + // Release active ID at the end of the function (so e.g. pressing Return still does a final application of the value) + // Otherwise request text input ahead for next frame. + if (g.ActiveId == id && clear_active_id) + ClearActiveID(); + else if (g.ActiveId == id) + g.WantTextInputNextFrame = 1; + + static std::map anim; + input_state& state_anim = anim[id]; + + state_anim.line = ImLerp(state_anim.line, IsItemActive() || hovered ? 1.f : 0.f, g.IO.DeltaTime * 6.f); + + if (!is_multiline) + { + GetWindowDrawList()->AddRectFilled(frame_bb.Min, frame_bb.Max, GetColorU32(c::elements::background), c::elements::rounding); + GetWindowDrawList()->AddRect(frame_bb.Min, frame_bb.Max, GetColorU32(c::elements::background_widget), c::elements::rounding); + } + + const ImVec4 clip_rect(frame_bb.Min.x + 10, frame_bb.Min.y, frame_bb.Min.x + inner_size.x - size_arg.y, frame_bb.Min.y + inner_size.y); // Not using frame_bb.Max because we have adjusted size + ImVec2 draw_pos = is_multiline ? draw_window->DC.CursorPos : frame_bb.Min + ImVec2((size_arg.y - CalcTextSize(hint).y), (size_arg.y - CalcTextSize(hint).y) - 1) / 2; + ImVec2 text_size(0.0f, 0.0f); + + PushFont(font::lexend_bold); + { + const int buf_display_max_length = 2 * 1024 * 1024; + const char* buf_display = buf_display_from_state ? state->TextA.Data : buf; //-V595 + const char* buf_display_end = NULL; // We have specialized paths below for setting the length + if (is_displaying_hint) + { + buf_display = hint; + buf_display_end = hint + strlen(hint); + } + + // Render text. We currently only render selection when the widget is active or while scrolling. + // FIXME: We could remove the '&& render_cursor' to keep rendering selection when inactive. + if (render_cursor || render_selection) + { + IM_ASSERT(state != NULL); + if (!is_displaying_hint) + buf_display_end = buf_display + state->CurLenA; + + // Render text (with cursor and selection) + // This is going to be messy. We need to: + // - Display the text (this alone can be more easily clipped) + // - Handle scrolling, highlight selection, display cursor (those all requires some form of 1d->2d cursor position calculation) + // - Measure text height (for scrollbar) + // We are attempting to do most of that in **one main pass** to minimize the computation cost (non-negligible for large amount of text) + 2nd pass for selection rendering (we could merge them by an extra refactoring effort) + // FIXME: This should occur on buf_display but we'd need to maintain cursor/select_start/select_end for UTF-8. + const ImWchar* text_begin = state->TextW.Data; + ImVec2 cursor_offset, select_start_offset; + + { + // Find lines numbers straddling 'cursor' (slot 0) and 'select_start' (slot 1) positions. + const ImWchar* searches_input_ptr[2] = { NULL, NULL }; + int searches_result_line_no[2] = { -1000, -1000 }; + int searches_remaining = 0; + if (render_cursor) + { + searches_input_ptr[0] = text_begin + state->Stb.cursor; + searches_result_line_no[0] = -1; + searches_remaining++; + } + if (render_selection) + { + searches_input_ptr[1] = text_begin + ImMin(state->Stb.select_start, state->Stb.select_end); + searches_result_line_no[1] = -1; + searches_remaining++; + } + + // Iterate all lines to find our line numbers + // In multi-line mode, we never exit the loop until all lines are counted, so add one extra to the searches_remaining counter. + searches_remaining += is_multiline ? 1 : 0; + int line_count = 0; + //for (const ImWchar* s = text_begin; (s = (const ImWchar*)wcschr((const wchar_t*)s, (wchar_t)'\n')) != NULL; s++) // FIXME-OPT: Could use this when wchar_t are 16-bit + for (const ImWchar* s = text_begin; *s != 0; s++) + if (*s == '\n') + { + line_count++; + if (searches_result_line_no[0] == -1 && s >= searches_input_ptr[0]) { searches_result_line_no[0] = line_count; if (--searches_remaining <= 0) break; } + if (searches_result_line_no[1] == -1 && s >= searches_input_ptr[1]) { searches_result_line_no[1] = line_count; if (--searches_remaining <= 0) break; } + } + line_count++; + if (searches_result_line_no[0] == -1) + searches_result_line_no[0] = line_count; + if (searches_result_line_no[1] == -1) + searches_result_line_no[1] = line_count; + + // Calculate 2d position by finding the beginning of the line and measuring distance + cursor_offset.x = InputTextCalcTextSizeW(&g, ImStrbolW(searches_input_ptr[0], text_begin), searches_input_ptr[0]).x; + cursor_offset.y = searches_result_line_no[0] * g.FontSize; + if (searches_result_line_no[1] >= 0) + { + select_start_offset.x = InputTextCalcTextSizeW(&g, ImStrbolW(searches_input_ptr[1], text_begin), searches_input_ptr[1]).x; + select_start_offset.y = searches_result_line_no[1] * g.FontSize; + } + + // Store text height (note that we haven't calculated text width at all, see GitHub issues #383, #1224) + if (is_multiline) + text_size = ImVec2(inner_size.x, line_count * g.FontSize); + } + + // Scroll + if (render_cursor && state->CursorFollow) + { + // Horizontal scroll in chunks of quarter width + if (!(flags & ImGuiInputTextFlags_NoHorizontalScroll)) + { + const float scroll_increment_x = inner_size.x * 0.25f; + const float visible_width = inner_size.x - style.FramePadding.x; + if (cursor_offset.x < state->ScrollX) + state->ScrollX = IM_FLOOR(ImMax(0.0f, cursor_offset.x - scroll_increment_x)); + else if (cursor_offset.x - visible_width >= state->ScrollX) + state->ScrollX = IM_FLOOR(cursor_offset.x - visible_width + scroll_increment_x); + } + else + { + state->ScrollX = 0.0f; + } + + // Vertical scroll + if (is_multiline) + { + // Test if cursor is vertically visible + if (cursor_offset.y - g.FontSize < scroll_y) + scroll_y = ImMax(0.0f, cursor_offset.y - g.FontSize); + else if (cursor_offset.y - (inner_size.y - style.FramePadding.y * 2.0f) >= scroll_y) + scroll_y = cursor_offset.y - inner_size.y + style.FramePadding.y * 2.0f; + const float scroll_max_y = ImMax((text_size.y + style.FramePadding.y * 2.0f) - inner_size.y, 0.0f); + scroll_y = ImClamp(scroll_y, 0.0f, scroll_max_y); + draw_pos.y += (draw_window->Scroll.y - scroll_y); // Manipulate cursor pos immediately avoid a frame of lag + draw_window->Scroll.y = scroll_y; + } + + state->CursorFollow = false; + } + + // Draw selection + const ImVec2 draw_scroll = ImVec2(state->ScrollX, 0.0f); + if (render_selection) + { + const ImWchar* text_selected_begin = text_begin + ImMin(state->Stb.select_start, state->Stb.select_end); + const ImWchar* text_selected_end = text_begin + ImMax(state->Stb.select_start, state->Stb.select_end); + + ImU32 bg_color = VGetColorU32(c::accent, 0.1f); // FIXME: current code flow mandate that render_cursor is always true here, we are leaving the transparent one for tests. + float bg_offy_up = is_multiline ? 0.0f : -1.0f; // FIXME: those offsets should be part of the style? they don't play so well with multi-line selection. + float bg_offy_dn = is_multiline ? 0.0f : 2.0f; + ImVec2 rect_pos = draw_pos + select_start_offset - draw_scroll; + for (const ImWchar* p = text_selected_begin; p < text_selected_end; ) + { + if (rect_pos.y > clip_rect.w + g.FontSize) + break; + if (rect_pos.y < clip_rect.y) + { + //p = (const ImWchar*)wmemchr((const wchar_t*)p, '\n', text_selected_end - p); // FIXME-OPT: Could use this when wchar_t are 16-bit + //p = p ? p + 1 : text_selected_end; + while (p < text_selected_end) + if (*p++ == '\n') + break; + } + else + { + ImVec2 rect_size = InputTextCalcTextSizeW(&g, p, text_selected_end, &p, NULL, true); + if (rect_size.x <= 0.0f) rect_size.x = IM_FLOOR(g.Font->GetCharAdvance((ImWchar)' ') * 0.50f); // So we can see selected empty lines + ImRect rect(rect_pos + ImVec2(0.0f, bg_offy_up - g.FontSize), rect_pos + ImVec2(rect_size.x, bg_offy_dn)); + rect.ClipWith(clip_rect); + if (rect.Overlaps(clip_rect)) + draw_window->DrawList->AddRectFilled(rect.Min, rect.Max, bg_color); + } + rect_pos.x = draw_pos.x - draw_scroll.x; + rect_pos.y += g.FontSize; + } + } + + // We test for 'buf_display_max_length' as a way to avoid some pathological cases (e.g. single-line 1 MB string) which would make ImDrawList crash. + if (is_multiline || (buf_display_end - buf_display) < buf_display_max_length) + { + ImU32 col = GetColorU32(is_displaying_hint ? c::elements::text : c::elements::text_active); + draw_window->DrawList->AddText(g.Font, g.FontSize, draw_pos - draw_scroll, col, buf_display, buf_display_end, 0.0f, is_multiline ? NULL : &clip_rect); + } + + // Draw blinking cursor + if (render_cursor) + { + state->CursorAnim += io.DeltaTime; + bool cursor_is_visible = (!g.IO.ConfigInputTextCursorBlink) || (state->CursorAnim <= 0.0f) || ImFmod(state->CursorAnim, 1.20f) <= 0.80f; + ImVec2 cursor_screen_pos = ImTrunc(draw_pos + cursor_offset - draw_scroll); + ImRect cursor_screen_rect(cursor_screen_pos.x, cursor_screen_pos.y - g.FontSize + 0.5f, cursor_screen_pos.x + 1.0f, cursor_screen_pos.y + 1.5f); + + state_anim.slow = ImLerp(state_anim.slow, cursor_screen_rect.Min.x - total_bb.Min.x, g.IO.DeltaTime * 20.f); + + if (cursor_is_visible && cursor_screen_rect.Overlaps(clip_rect)) draw_window->DrawList->AddLine(ImVec2(total_bb.Min.x + state_anim.slow, cursor_screen_rect.Min.y), ImVec2(total_bb.Min.x + state_anim.slow, cursor_screen_rect.GetBL().y), GetColorU32(c::elements::text_active)); + + if (!is_readonly) + { + g.PlatformImeData.WantVisible = true; + g.PlatformImeData.InputPos = ImVec2(cursor_screen_pos.x - 1.0f, cursor_screen_pos.y - g.FontSize); + g.PlatformImeData.InputLineHeight = g.FontSize; + } + } + } + else + { + // Render text only (no selection, no cursor) + if (is_multiline) + text_size = ImVec2(inner_size.x, InputTextCalcTextLenAndLineCount(buf_display, &buf_display_end) * g.FontSize); // We don't need width + else if (!is_displaying_hint && g.ActiveId == id) + buf_display_end = buf_display + state->CurLenA; + else if (!is_displaying_hint) + buf_display_end = buf_display + strlen(buf_display); + + if (is_multiline || (buf_display_end - buf_display) < buf_display_max_length) + { + ImU32 col = GetColorU32(is_displaying_hint ? c::elements::text : c::elements::text_active); + draw_window->DrawList->AddText(g.Font, g.FontSize, draw_pos, col, buf_display, buf_display_end, 0.0f, is_multiline ? NULL : &clip_rect); + } + } + + } + PopFont(); + + if (is_password && !is_displaying_hint) + PopFont(); + + GetWindowDrawList()->AddRectFilledMultiColor(frame_bb.Min + ImVec2(1, 1), frame_bb.Max - ImVec2(size_arg.y - CalcTextSize(hint).y - 1, 1), VGetColorU32(c::elements::background, 0.f), VGetColorU32(c::elements::background, 1.f), VGetColorU32(c::elements::background, 1.f), VGetColorU32(c::elements::background, 0.f)); + + + if (is_multiline) + { + // For focus requests to work on our multiline we need to ensure our child ItemAdd() call specifies the ImGuiItemFlags_Inputable (ref issue #4761)... + Dummy(ImVec2(text_size.x, text_size.y + style.FramePadding.y)); + g.NextItemData.ItemFlags |= ImGuiItemFlags_Inputable | ImGuiItemFlags_NoTabStop; + EndChild(); + item_data_backup.StatusFlags |= (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HoveredWindow); + + // ...and then we need to undo the group overriding last item data, which gets a bit messy as EndGroup() tries to forward scrollbar being active... + // FIXME: This quite messy/tricky, should attempt to get rid of the child window. + EndGroup(); + if (g.LastItemData.ID == 0) + { + g.LastItemData.ID = id; + g.LastItemData.InFlags = item_data_backup.InFlags; + g.LastItemData.StatusFlags = item_data_backup.StatusFlags; + } + } + + if (value_changed && !(flags & ImGuiInputTextFlags_NoMarkEdited)) MarkItemEdited(id); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags | ImGuiItemStatusFlags_Inputable); + if ((flags & ImGuiInputTextFlags_EnterReturnsTrue) != 0) + return validated; + else + return value_changed; +} +void ImGui::DebugNodeInputTextState(ImGuiInputTextState* state) +{ +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + ImGuiContext& g = *GImGui; + ImStb::STB_TexteditState* stb_state = &state->Stb; + ImStb::StbUndoState* undo_state = &stb_state->undostate; + Text("ID: 0x%08X, ActiveID: 0x%08X", state->ID, g.ActiveId); + DebugLocateItemOnHover(state->ID); + Text("CurLenW: %d, CurLenA: %d, Cursor: %d, Selection: %d..%d", state->CurLenW, state->CurLenA, stb_state->cursor, stb_state->select_start, stb_state->select_end); + Text("has_preferred_x: %d (%.2f)", stb_state->has_preferred_x, stb_state->preferred_x); + Text("undo_point: %d, redo_point: %d, undo_char_point: %d, redo_char_point: %d", undo_state->undo_point, undo_state->redo_point, undo_state->undo_char_point, undo_state->redo_char_point); + if (BeginChild("undopoints", ImVec2(0.0f, GetTextLineHeight() * 15), true)) // Visualize undo state + { + PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(0, 0)); + for (int n = 0; n < STB_TEXTEDIT_UNDOSTATECOUNT; n++) + { + ImStb::StbUndoRecord* undo_rec = &undo_state->undo_rec[n]; + const char undo_rec_type = (n < undo_state->undo_point) ? 'u' : (n >= undo_state->redo_point) ? 'r' : ' '; + if (undo_rec_type == ' ') + BeginDisabled(); + char buf[64] = ""; + if (undo_rec_type != ' ' && undo_rec->char_storage != -1) + ImTextStrToUtf8(buf, IM_ARRAYSIZE(buf), undo_state->undo_char + undo_rec->char_storage, undo_state->undo_char + undo_rec->char_storage + undo_rec->insert_length); + Text("%c [%02d] where %03d, insert %03d, delete %03d, char_storage %03d \"%s\"", + undo_rec_type, n, undo_rec->where, undo_rec->insert_length, undo_rec->delete_length, undo_rec->char_storage, buf); + if (undo_rec_type == ' ') + EndDisabled(); + } + PopStyleVar(); + } + EndChild(); +#else + IM_UNUSED(state); +#endif +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: ColorEdit, ColorPicker, ColorButton, etc. +//------------------------------------------------------------------------- +// - ColorEdit3() +// - ColorEdit4() +// - ColorPicker3() +// - RenderColorRectWithAlphaCheckerboard() [Internal] +// - ColorPicker4() +// - ColorButton() +// - SetColorEditOptions() +// - ColorTooltip() [Internal] +// - ColorEditOptionsPopup() [Internal] +// - ColorPickerOptionsPopup() [Internal] +//------------------------------------------------------------------------- + +bool ImGui::ColorEdit3(const char* label, float col[3], ImGuiColorEditFlags flags) +{ + return ColorEdit4(label, col, flags | ImGuiColorEditFlags_NoAlpha); +} + +static void ColorEditRestoreH(const float* col, float* H) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.ColorEditCurrentID != 0); + if (g.ColorEditSavedID != g.ColorEditCurrentID || g.ColorEditSavedColor != ImGui::ColorConvertFloat4ToU32(ImVec4(col[0], col[1], col[2], 0))) + return; + *H = g.ColorEditSavedHue; +} + +// ColorEdit supports RGB and HSV inputs. In case of RGB input resulting color may have undefined hue and/or saturation. +// Since widget displays both RGB and HSV values we must preserve hue and saturation to prevent these values resetting. +static void ColorEditRestoreHS(const float* col, float* H, float* S, float* V) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.ColorEditCurrentID != 0); + if (g.ColorEditSavedID != g.ColorEditCurrentID || g.ColorEditSavedColor != ImGui::ColorConvertFloat4ToU32(ImVec4(col[0], col[1], col[2], 0))) + return; + + // When S == 0, H is undefined. + // When H == 1 it wraps around to 0. + if (*S == 0.0f || (*H == 0.0f && g.ColorEditSavedHue == 1)) + *H = g.ColorEditSavedHue; + + // When V == 0, S is undefined. + if (*V == 0.0f) + *S = g.ColorEditSavedSat; +} + +// Edit colors components (each component in 0.0f..1.0f range). +// See enum ImGuiColorEditFlags_ for available options. e.g. Only access 3 floats if ImGuiColorEditFlags_NoAlpha flag is set. +// With typical options: Left-click on color square to open color picker. Right-click to open option menu. CTRL-Click over input fields to edit them and TAB to go to next item. +bool ImGui::ColorEdit4(const char* label, float col[4], ImGuiColorEditFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const float square_sz = GetFrameHeight(); + const float w_full = CalcItemWidth(); + const float w_button = (flags & ImGuiColorEditFlags_NoSmallPreview) ? 0.0f : (square_sz + style.ItemInnerSpacing.x); + const float w_inputs = w_full - w_button; + const char* label_display_end = FindRenderedTextEnd(label); + g.NextItemData.ClearFlags(); + + BeginGroup(); + PushID(label); + const bool set_current_color_edit_id = (g.ColorEditCurrentID == 0); + if (set_current_color_edit_id) + g.ColorEditCurrentID = window->IDStack.back(); + + // If we're not showing any slider there's no point in doing any HSV conversions + const ImGuiColorEditFlags flags_untouched = flags; + if (flags & ImGuiColorEditFlags_NoInputs) + flags = (flags & (~ImGuiColorEditFlags_DisplayMask_)) | ImGuiColorEditFlags_DisplayRGB | ImGuiColorEditFlags_NoOptions; + + // Context menu: display and modify options (before defaults are applied) + if (!(flags & ImGuiColorEditFlags_NoOptions)) + ColorEditOptionsPopup(col, flags); + + // Read stored options + if (!(flags & ImGuiColorEditFlags_DisplayMask_)) + flags |= (g.ColorEditOptions & ImGuiColorEditFlags_DisplayMask_); + if (!(flags & ImGuiColorEditFlags_DataTypeMask_)) + flags |= (g.ColorEditOptions & ImGuiColorEditFlags_DataTypeMask_); + if (!(flags & ImGuiColorEditFlags_PickerMask_)) + flags |= (g.ColorEditOptions & ImGuiColorEditFlags_PickerMask_); + if (!(flags & ImGuiColorEditFlags_InputMask_)) + flags |= (g.ColorEditOptions & ImGuiColorEditFlags_InputMask_); + flags |= (g.ColorEditOptions & ~(ImGuiColorEditFlags_DisplayMask_ | ImGuiColorEditFlags_DataTypeMask_ | ImGuiColorEditFlags_PickerMask_ | ImGuiColorEditFlags_InputMask_)); + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_DisplayMask_)); // Check that only 1 is selected + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_InputMask_)); // Check that only 1 is selected + + const bool alpha = (flags & ImGuiColorEditFlags_NoAlpha) == 0; + const bool hdr = (flags & ImGuiColorEditFlags_HDR) != 0; + const int components = alpha ? 4 : 3; + + // Convert to the formats we need + float f[4] = { col[0], col[1], col[2], alpha ? col[3] : 1.0f }; + if ((flags & ImGuiColorEditFlags_InputHSV) && (flags & ImGuiColorEditFlags_DisplayRGB)) + ColorConvertHSVtoRGB(f[0], f[1], f[2], f[0], f[1], f[2]); + else if ((flags & ImGuiColorEditFlags_InputRGB) && (flags & ImGuiColorEditFlags_DisplayHSV)) + { + // Hue is lost when converting from grayscale rgb (saturation=0). Restore it. + ColorConvertRGBtoHSV(f[0], f[1], f[2], f[0], f[1], f[2]); + ColorEditRestoreHS(col, &f[0], &f[1], &f[2]); + } + int i[4] = { IM_F32_TO_INT8_UNBOUND(f[0]), IM_F32_TO_INT8_UNBOUND(f[1]), IM_F32_TO_INT8_UNBOUND(f[2]), IM_F32_TO_INT8_UNBOUND(f[3]) }; + + bool value_changed = false; + bool value_changed_as_float = false; + + const ImVec2 pos = window->DC.CursorPos; + const float inputs_offset_x = (style.ColorButtonPosition == ImGuiDir_Left) ? w_button : 0.0f; + window->DC.CursorPos.x = pos.x + inputs_offset_x; + + if ((flags & (ImGuiColorEditFlags_DisplayRGB | ImGuiColorEditFlags_DisplayHSV)) != 0 && (flags & ImGuiColorEditFlags_NoInputs) == 0) + { + // RGB/HSV 0..255 Sliders + const float w_item_one = ImMax(1.0f, IM_FLOOR((w_inputs - (style.ItemInnerSpacing.x) * (components - 1)) / (float)components)); + const float w_item_last = ImMax(1.0f, IM_FLOOR(w_inputs - (w_item_one + style.ItemInnerSpacing.x) * (components - 1))); + + const bool hide_prefix = (w_item_one <= CalcTextSize((flags & ImGuiColorEditFlags_Float) ? "M:0.000" : "M:000").x); + static const char* ids[4] = { "##X", "##Y", "##Z", "##W" }; + static const char* fmt_table_int[3][4] = + { + { "%3d", "%3d", "%3d", "%3d" }, // Short display + { "R:%3d", "G:%3d", "B:%3d", "A:%3d" }, // Long display for RGBA + { "H:%3d", "S:%3d", "V:%3d", "A:%3d" } // Long display for HSVA + }; + static const char* fmt_table_float[3][4] = + { + { "%0.3f", "%0.3f", "%0.3f", "%0.3f" }, // Short display + { "R:%0.3f", "G:%0.3f", "B:%0.3f", "A:%0.3f" }, // Long display for RGBA + { "H:%0.3f", "S:%0.3f", "V:%0.3f", "A:%0.3f" } // Long display for HSVA + }; + const int fmt_idx = hide_prefix ? 0 : (flags & ImGuiColorEditFlags_DisplayHSV) ? 2 : 1; + + for (int n = 0; n < components; n++) + { + if (n > 0) + SameLine(0, style.ItemInnerSpacing.x); + SetNextItemWidth((n + 1 < components) ? w_item_one : w_item_last); + + // FIXME: When ImGuiColorEditFlags_HDR flag is passed HS values snap in weird ways when SV values go below 0. + if (flags & ImGuiColorEditFlags_Float) + { + value_changed |= DragFloat(ids[n], &f[n], 1.0f / 255.0f, 0.0f, hdr ? 0.0f : 1.0f, fmt_table_float[fmt_idx][n]); + value_changed_as_float |= value_changed; + } + else + { + value_changed |= DragInt(ids[n], &i[n], 1.0f, 0, hdr ? 0 : 255, fmt_table_int[fmt_idx][n]); + } + if (!(flags & ImGuiColorEditFlags_NoOptions)) + OpenPopupOnItemClick("context", ImGuiPopupFlags_MouseButtonRight); + } + } + else if ((flags & ImGuiColorEditFlags_DisplayHex) != 0 && (flags & ImGuiColorEditFlags_NoInputs) == 0) + { + // RGB Hexadecimal Input + char buf[64]; + if (alpha) + ImFormatString(buf, IM_ARRAYSIZE(buf), "#%02X%02X%02X%02X", ImClamp(i[0], 0, 255), ImClamp(i[1], 0, 255), ImClamp(i[2], 0, 255), ImClamp(i[3], 0, 255)); + else + ImFormatString(buf, IM_ARRAYSIZE(buf), "#%02X%02X%02X", ImClamp(i[0], 0, 255), ImClamp(i[1], 0, 255), ImClamp(i[2], 0, 255)); + SetNextItemWidth(w_inputs); + if (InputText("##Text", buf, IM_ARRAYSIZE(buf), ImGuiInputTextFlags_CharsHexadecimal | ImGuiInputTextFlags_CharsUppercase)) + { + value_changed = true; + char* p = buf; + while (*p == '#' || ImCharIsBlankA(*p)) + p++; + i[0] = i[1] = i[2] = 0; + i[3] = 0xFF; // alpha default to 255 is not parsed by scanf (e.g. inputting #FFFFFF omitting alpha) + int r; + if (alpha) + r = sscanf(p, "%02X%02X%02X%02X", (unsigned int*)&i[0], (unsigned int*)&i[1], (unsigned int*)&i[2], (unsigned int*)&i[3]); // Treat at unsigned (%X is unsigned) + else + r = sscanf(p, "%02X%02X%02X", (unsigned int*)&i[0], (unsigned int*)&i[1], (unsigned int*)&i[2]); + IM_UNUSED(r); // Fixes C6031: Return value ignored: 'sscanf'. + } + if (!(flags & ImGuiColorEditFlags_NoOptions)) + OpenPopupOnItemClick("context", ImGuiPopupFlags_MouseButtonRight); + } + + ImGuiWindow* picker_active_window = NULL; + if (!(flags & ImGuiColorEditFlags_NoSmallPreview)) + { + const float button_offset_x = ((flags & ImGuiColorEditFlags_NoInputs) || (style.ColorButtonPosition == ImGuiDir_Left)) ? 0.0f : w_inputs + style.ItemInnerSpacing.x; + window->DC.CursorPos = ImVec2(pos.x + button_offset_x, pos.y); + + const ImVec4 col_v4(col[0], col[1], col[2], alpha ? col[3] : 1.0f); + if (ColorButton("##ColorButton", col_v4, flags)) + { + if (!(flags & ImGuiColorEditFlags_NoPicker)) + { + // Store current color and open a picker + g.ColorPickerRef = col_v4; + OpenPopup("picker"); + SetNextWindowPos(ImVec2(pos.x + button_offset_x + 50.0f, pos.y)); // Adjust the offset as needed + } + } + if (!(flags & ImGuiColorEditFlags_NoOptions)) + OpenPopupOnItemClick("context", ImGuiPopupFlags_MouseButtonRight); + + if (BeginPopup("picker")) + { + if (g.CurrentWindow->BeginCount == 1) + { + picker_active_window = g.CurrentWindow; + // modify by asphyxia + //if (label != label_display_end) + //{ + // TextEx(label, label_display_end); + // Spacing(); + //} + ImGuiColorEditFlags picker_flags_to_forward = ImGuiColorEditFlags_DataTypeMask_ | ImGuiColorEditFlags_PickerMask_ | ImGuiColorEditFlags_InputMask_ | ImGuiColorEditFlags_HDR | ImGuiColorEditFlags_NoAlpha | ImGuiColorEditFlags_AlphaBar; + ImGuiColorEditFlags picker_flags = (flags_untouched & picker_flags_to_forward) | ImGuiColorEditFlags_DisplayMask_ | ImGuiColorEditFlags_NoLabel | ImGuiColorEditFlags_AlphaPreviewHalf; + SetNextItemWidth(square_sz * 12.0f); // Use 256 + bar sizes? + value_changed |= ColorPicker4("##picker", col, picker_flags, &g.ColorPickerRef.x); + } + EndPopup(); + } + } + + if (label != label_display_end && !(flags & ImGuiColorEditFlags_NoLabel)) + { + // Position not necessarily next to last submitted button (e.g. if style.ColorButtonPosition == ImGuiDir_Left), + // but we need to use SameLine() to setup baseline correctly. Might want to refactor SameLine() to simplify this. + SameLine(0.0f, style.ItemInnerSpacing.x); + window->DC.CursorPos.x = pos.x + ((flags & ImGuiColorEditFlags_NoInputs) ? w_button : w_full + style.ItemInnerSpacing.x); + TextEx(label, label_display_end); + } + + // Convert back + if (value_changed && picker_active_window == NULL) + { + if (!value_changed_as_float) + for (int n = 0; n < 4; n++) + f[n] = i[n] / 255.0f; + if ((flags & ImGuiColorEditFlags_DisplayHSV) && (flags & ImGuiColorEditFlags_InputRGB)) + { + g.ColorEditSavedHue = f[0]; + g.ColorEditSavedSat = f[1]; + ColorConvertHSVtoRGB(f[0], f[1], f[2], f[0], f[1], f[2]); + g.ColorEditSavedID = g.ColorEditCurrentID; + g.ColorEditSavedColor = ColorConvertFloat4ToU32(ImVec4(f[0], f[1], f[2], 0)); + } + if ((flags & ImGuiColorEditFlags_DisplayRGB) && (flags & ImGuiColorEditFlags_InputHSV)) + ColorConvertRGBtoHSV(f[0], f[1], f[2], f[0], f[1], f[2]); + + col[0] = f[0]; + col[1] = f[1]; + col[2] = f[2]; + if (alpha) + col[3] = f[3]; + } + + if (set_current_color_edit_id) + g.ColorEditCurrentID = 0; + PopID(); + EndGroup(); + + // Drag and Drop Target + // NB: The flag test is merely an optional micro-optimization, BeginDragDropTarget() does the same test. + if ((g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HoveredRect) && !(flags & ImGuiColorEditFlags_NoDragDrop) && BeginDragDropTarget()) + { + bool accepted_drag_drop = false; + if (const ImGuiPayload* payload = AcceptDragDropPayload(IMGUI_PAYLOAD_TYPE_COLOR_3F)) + { + memcpy((float*)col, payload->Data, sizeof(float) * 3); // Preserve alpha if any //-V512 //-V1086 + value_changed = accepted_drag_drop = true; + } + if (const ImGuiPayload* payload = AcceptDragDropPayload(IMGUI_PAYLOAD_TYPE_COLOR_4F)) + { + memcpy((float*)col, payload->Data, sizeof(float) * components); + value_changed = accepted_drag_drop = true; + } + + // Drag-drop payloads are always RGB + if (accepted_drag_drop && (flags & ImGuiColorEditFlags_InputHSV)) + ColorConvertRGBtoHSV(col[0], col[1], col[2], col[0], col[1], col[2]); + EndDragDropTarget(); + } + + // When picker is being actively used, use its active id so IsItemActive() will function on ColorEdit4(). + if (picker_active_window && g.ActiveId != 0 && g.ActiveIdWindow == picker_active_window) + g.LastItemData.ID = g.ActiveId; + + if (value_changed && g.LastItemData.ID != 0) // In case of ID collision, the second EndGroup() won't catch g.ActiveId + MarkItemEdited(g.LastItemData.ID); + + return value_changed; +} + +bool ImGui::ColorPicker3(const char* label, float col[3], ImGuiColorEditFlags flags) +{ + float col4[4] = { col[0], col[1], col[2], 1.0f }; + if (!ColorPicker4(label, col4, flags | ImGuiColorEditFlags_NoAlpha)) + return false; + col[0] = col4[0]; col[1] = col4[1]; col[2] = col4[2]; + return true; +} + +// Helper for ColorPicker4() +static void RenderArrowsForVerticalBar(ImDrawList* draw_list, ImVec2 pos, ImVec2 half_sz, float bar_w, float alpha) +{ + ImU32 alpha8 = IM_F32_TO_INT8_SAT(alpha); + ImGui::RenderArrowPointingAt(draw_list, ImVec2(pos.x + half_sz.x + 1, pos.y), ImVec2(half_sz.x + 2, half_sz.y + 1), ImGuiDir_Right, IM_COL32(0,0,0,alpha8)); + ImGui::RenderArrowPointingAt(draw_list, ImVec2(pos.x + half_sz.x, pos.y), half_sz, ImGuiDir_Right, IM_COL32(255,255,255,alpha8)); + ImGui::RenderArrowPointingAt(draw_list, ImVec2(pos.x + bar_w - half_sz.x - 1, pos.y), ImVec2(half_sz.x + 2, half_sz.y + 1), ImGuiDir_Left, IM_COL32(0,0,0,alpha8)); + ImGui::RenderArrowPointingAt(draw_list, ImVec2(pos.x + bar_w - half_sz.x, pos.y), half_sz, ImGuiDir_Left, IM_COL32(255,255,255,alpha8)); +} + +// Note: ColorPicker4() only accesses 3 floats if ImGuiColorEditFlags_NoAlpha flag is set. +// (In C++ the 'float col[4]' notation for a function argument is equivalent to 'float* col', we only specify a size to facilitate understanding of the code.) +// FIXME: we adjust the big color square height based on item width, which may cause a flickering feedback loop (if automatic height makes a vertical scrollbar appears, affecting automatic width..) +// FIXME: this is trying to be aware of style.Alpha but not fully correct. Also, the color wheel will have overlapping glitches with (style.Alpha < 1.0) +bool ImGui::ColorPicker4(const char* label, float col[4], ImGuiColorEditFlags flags, const float* ref_col) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImDrawList* draw_list = window->DrawList; + ImGuiStyle& style = g.Style; + ImGuiIO& io = g.IO; + + const float width = CalcItemWidth(); + g.NextItemData.ClearFlags(); + + PushID(label); + const bool set_current_color_edit_id = (g.ColorEditCurrentID == 0); + if (set_current_color_edit_id) + g.ColorEditCurrentID = window->IDStack.back(); + BeginGroup(); + + if (!(flags & ImGuiColorEditFlags_NoSidePreview)) + flags |= ImGuiColorEditFlags_NoSmallPreview; + + // Context menu: display and store options. + if (!(flags & ImGuiColorEditFlags_NoOptions)) + ColorPickerOptionsPopup(col, flags); + + // Read stored options + if (!(flags & ImGuiColorEditFlags_PickerMask_)) + flags |= ((g.ColorEditOptions & ImGuiColorEditFlags_PickerMask_) ? g.ColorEditOptions : ImGuiColorEditFlags_DefaultOptions_) & ImGuiColorEditFlags_PickerMask_; + if (!(flags & ImGuiColorEditFlags_InputMask_)) + flags |= ((g.ColorEditOptions & ImGuiColorEditFlags_InputMask_) ? g.ColorEditOptions : ImGuiColorEditFlags_DefaultOptions_) & ImGuiColorEditFlags_InputMask_; + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_PickerMask_)); // Check that only 1 is selected + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_InputMask_)); // Check that only 1 is selected + if (!(flags & ImGuiColorEditFlags_NoOptions)) + flags |= (g.ColorEditOptions & ImGuiColorEditFlags_AlphaBar); + + // Setup + int components = (flags & ImGuiColorEditFlags_NoAlpha) ? 3 : 4; + bool alpha_bar = (flags & ImGuiColorEditFlags_AlphaBar) && !(flags & ImGuiColorEditFlags_NoAlpha); + ImVec2 picker_pos = window->DC.CursorPos; + float square_sz = GetFrameHeight(); + float bars_width = square_sz; // Arbitrary smallish width of Hue/Alpha picking bars + float sv_picker_size = ImMax(bars_width * 1, width - (alpha_bar ? 2 : 1) * (bars_width + style.ItemInnerSpacing.x)); // Saturation/Value picking box + float bar0_pos_x = picker_pos.x + sv_picker_size + style.ItemInnerSpacing.x; + float bar1_pos_x = bar0_pos_x + bars_width + style.ItemInnerSpacing.x; + float bars_triangles_half_sz = IM_FLOOR(bars_width * 0.20f); + + float backup_initial_col[4]; + memcpy(backup_initial_col, col, components * sizeof(float)); + + float wheel_thickness = sv_picker_size * 0.08f; + float wheel_r_outer = sv_picker_size * 0.50f; + float wheel_r_inner = wheel_r_outer - wheel_thickness; + ImVec2 wheel_center(picker_pos.x + (sv_picker_size + bars_width)*0.5f, picker_pos.y + sv_picker_size * 0.5f); + + // Note: the triangle is displayed rotated with triangle_pa pointing to Hue, but most coordinates stays unrotated for logic. + float triangle_r = wheel_r_inner - (int)(sv_picker_size * 0.027f); + ImVec2 triangle_pa = ImVec2(triangle_r, 0.0f); // Hue point. + ImVec2 triangle_pb = ImVec2(triangle_r * -0.5f, triangle_r * -0.866025f); // Black point. + ImVec2 triangle_pc = ImVec2(triangle_r * -0.5f, triangle_r * +0.866025f); // White point. + + float H = col[0], S = col[1], V = col[2]; + float R = col[0], G = col[1], B = col[2]; + if (flags & ImGuiColorEditFlags_InputRGB) + { + // Hue is lost when converting from grayscale rgb (saturation=0). Restore it. + ColorConvertRGBtoHSV(R, G, B, H, S, V); + ColorEditRestoreHS(col, &H, &S, &V); + } + else if (flags & ImGuiColorEditFlags_InputHSV) + { + ColorConvertHSVtoRGB(H, S, V, R, G, B); + } + + bool value_changed = false, value_changed_h = false, value_changed_sv = false; + + PushItemFlag(ImGuiItemFlags_NoNav, true); + if (flags & ImGuiColorEditFlags_PickerHueWheel) + { + // Hue wheel + SV triangle logic + InvisibleButton("hsv", ImVec2(sv_picker_size + style.ItemInnerSpacing.x + bars_width, sv_picker_size)); + if (IsItemActive()) + { + ImVec2 initial_off = g.IO.MouseClickedPos[0] - wheel_center; + ImVec2 current_off = g.IO.MousePos - wheel_center; + float initial_dist2 = ImLengthSqr(initial_off); + if (initial_dist2 >= (wheel_r_inner - 1) * (wheel_r_inner - 1) && initial_dist2 <= (wheel_r_outer + 1) * (wheel_r_outer + 1)) + { + // Interactive with Hue wheel + H = ImAtan2(current_off.y, current_off.x) / IM_PI * 0.5f; + if (H < 0.0f) + H += 1.0f; + value_changed = value_changed_h = true; + } + float cos_hue_angle = ImCos(-H * 2.0f * IM_PI); + float sin_hue_angle = ImSin(-H * 2.0f * IM_PI); + if (ImTriangleContainsPoint(triangle_pa, triangle_pb, triangle_pc, ImRotate(initial_off, cos_hue_angle, sin_hue_angle))) + { + // Interacting with SV triangle + ImVec2 current_off_unrotated = ImRotate(current_off, cos_hue_angle, sin_hue_angle); + if (!ImTriangleContainsPoint(triangle_pa, triangle_pb, triangle_pc, current_off_unrotated)) + current_off_unrotated = ImTriangleClosestPoint(triangle_pa, triangle_pb, triangle_pc, current_off_unrotated); + float uu, vv, ww; + ImTriangleBarycentricCoords(triangle_pa, triangle_pb, triangle_pc, current_off_unrotated, uu, vv, ww); + V = ImClamp(1.0f - vv, 0.0001f, 1.0f); + S = ImClamp(uu / V, 0.0001f, 1.0f); + value_changed = value_changed_sv = true; + } + } + if (!(flags & ImGuiColorEditFlags_NoOptions)) + OpenPopupOnItemClick("context", ImGuiPopupFlags_MouseButtonRight); + } + else if (flags & ImGuiColorEditFlags_PickerHueBar) + { + // SV rectangle logic + InvisibleButton("sv", ImVec2(sv_picker_size, sv_picker_size)); + if (IsItemActive()) + { + S = ImSaturate((io.MousePos.x - picker_pos.x) / (sv_picker_size - 1)); + V = 1.0f - ImSaturate((io.MousePos.y - picker_pos.y) / (sv_picker_size - 1)); + ColorEditRestoreH(col, &H); // Greatly reduces hue jitter and reset to 0 when hue == 255 and color is rapidly modified using SV square. + value_changed = value_changed_sv = true; + } + if (!(flags & ImGuiColorEditFlags_NoOptions)) + OpenPopupOnItemClick("context", ImGuiPopupFlags_MouseButtonRight); + + // Hue bar logic + SetCursorScreenPos(ImVec2(bar0_pos_x, picker_pos.y)); + InvisibleButton("hue", ImVec2(bars_width, sv_picker_size)); + if (IsItemActive()) + { + H = ImSaturate((io.MousePos.y - picker_pos.y) / (sv_picker_size - 1)); + value_changed = value_changed_h = true; + } + } + + // Alpha bar logic + if (alpha_bar) + { + SetCursorScreenPos(ImVec2(bar1_pos_x, picker_pos.y)); + InvisibleButton("alpha", ImVec2(bars_width, sv_picker_size)); + if (IsItemActive()) + { + col[3] = 1.0f - ImSaturate((io.MousePos.y - picker_pos.y) / (sv_picker_size - 1)); + value_changed = true; + } + } + PopItemFlag(); // ImGuiItemFlags_NoNav + + // modified by asphyxia + //if (!(flags & ImGuiColorEditFlags_NoSidePreview)) + //{ + // SameLine(0, style.ItemInnerSpacing.x); + // BeginGroup(); + //} + + if (!(flags & ImGuiColorEditFlags_NoLabel)) + { + const char* label_display_end = FindRenderedTextEnd(label); + if (label != label_display_end) + { + if ((flags & ImGuiColorEditFlags_NoSidePreview)) + SameLine(0, style.ItemInnerSpacing.x); + TextEx(label, label_display_end); + } + } + + // modified by asphyxia + //if (!(flags & ImGuiColorEditFlags_NoSidePreview)) + //{ + // PushItemFlag(ImGuiItemFlags_NoNavDefaultFocus, true); + // ImVec4 col_v4(col[0], col[1], col[2], (flags & ImGuiColorEditFlags_NoAlpha) ? 1.0f : col[3]); + // if ((flags & ImGuiColorEditFlags_NoLabel)) + // Text("Current"); + + // ImGuiColorEditFlags sub_flags_to_forward = ImGuiColorEditFlags_InputMask_ | ImGuiColorEditFlags_HDR | ImGuiColorEditFlags_AlphaPreview | ImGuiColorEditFlags_AlphaPreviewHalf | ImGuiColorEditFlags_NoTooltip; + // ColorButton("##current", col_v4, (flags & sub_flags_to_forward), ImVec2(square_sz * 3, square_sz * 2)); + // if (ref_col != NULL) + // { + // Text("Original"); + // ImVec4 ref_col_v4(ref_col[0], ref_col[1], ref_col[2], (flags & ImGuiColorEditFlags_NoAlpha) ? 1.0f : ref_col[3]); + // if (ColorButton("##original", ref_col_v4, (flags & sub_flags_to_forward), ImVec2(square_sz * 3, square_sz * 2))) + // { + // memcpy(col, ref_col, components * sizeof(float)); + // value_changed = true; + // } + // } + // PopItemFlag(); + // EndGroup(); + //} + + // Convert back color to RGB + if (value_changed_h || value_changed_sv) + { + if (flags & ImGuiColorEditFlags_InputRGB) + { + ColorConvertHSVtoRGB(H, S, V, col[0], col[1], col[2]); + g.ColorEditSavedHue = H; + g.ColorEditSavedSat = S; + g.ColorEditSavedID = g.ColorEditCurrentID; + g.ColorEditSavedColor = ColorConvertFloat4ToU32(ImVec4(col[0], col[1], col[2], 0)); + } + else if (flags & ImGuiColorEditFlags_InputHSV) + { + col[0] = H; + col[1] = S; + col[2] = V; + } + } + + // R,G,B and H,S,V slider color editor + bool value_changed_fix_hue_wrap = false; + if ((flags & ImGuiColorEditFlags_NoInputs) == 0) + { + PushItemWidth((alpha_bar ? bar1_pos_x : bar0_pos_x) + bars_width - picker_pos.x); + ImGuiColorEditFlags sub_flags_to_forward = ImGuiColorEditFlags_DataTypeMask_ | ImGuiColorEditFlags_InputMask_ | ImGuiColorEditFlags_HDR | ImGuiColorEditFlags_NoAlpha | ImGuiColorEditFlags_NoOptions | ImGuiColorEditFlags_NoSmallPreview | ImGuiColorEditFlags_AlphaPreview | ImGuiColorEditFlags_AlphaPreviewHalf; + ImGuiColorEditFlags sub_flags = (flags & sub_flags_to_forward) | ImGuiColorEditFlags_NoPicker; + // modified by asphyxia + // remove drag slider for RGB, HSV. Only show HEX value + //if (flags & ImGuiColorEditFlags_DisplayRGB || (flags & ImGuiColorEditFlags_DisplayMask_) == 0) + // if (ColorEdit4("##rgb", col, sub_flags | ImGuiColorEditFlags_DisplayRGB)) + // { + // // FIXME: Hackily differentiating using the DragInt (ActiveId != 0 && !ActiveIdAllowOverlap) vs. using the InputText or DropTarget. + // // For the later we don't want to run the hue-wrap canceling code. If you are well versed in HSV picker please provide your input! (See #2050) + // value_changed_fix_hue_wrap = (g.ActiveId != 0 && !g.ActiveIdAllowOverlap); + // value_changed = true; + // } + //if (flags & ImGuiColorEditFlags_DisplayHSV || (flags & ImGuiColorEditFlags_DisplayMask_) == 0) + // value_changed |= ColorEdit4("##hsv", col, sub_flags | ImGuiColorEditFlags_DisplayHSV); + if (flags & ImGuiColorEditFlags_DisplayHex || (flags & ImGuiColorEditFlags_DisplayMask_) == 0) + value_changed |= ColorEdit4("##hex", col, sub_flags | ImGuiColorEditFlags_DisplayHex); + PopItemWidth(); + } + + // Try to cancel hue wrap (after ColorEdit4 call), if any + if (value_changed_fix_hue_wrap && (flags & ImGuiColorEditFlags_InputRGB)) + { + float new_H, new_S, new_V; + ColorConvertRGBtoHSV(col[0], col[1], col[2], new_H, new_S, new_V); + if (new_H <= 0 && H > 0) + { + if (new_V <= 0 && V != new_V) + ColorConvertHSVtoRGB(H, S, new_V <= 0 ? V * 0.5f : new_V, col[0], col[1], col[2]); + else if (new_S <= 0) + ColorConvertHSVtoRGB(H, new_S <= 0 ? S * 0.5f : new_S, new_V, col[0], col[1], col[2]); + } + } + + if (value_changed) + { + if (flags & ImGuiColorEditFlags_InputRGB) + { + R = col[0]; + G = col[1]; + B = col[2]; + ColorConvertRGBtoHSV(R, G, B, H, S, V); + ColorEditRestoreHS(col, &H, &S, &V); // Fix local Hue as display below will use it immediately. + } + else if (flags & ImGuiColorEditFlags_InputHSV) + { + H = col[0]; + S = col[1]; + V = col[2]; + ColorConvertHSVtoRGB(H, S, V, R, G, B); + } + } + + const int style_alpha8 = IM_F32_TO_INT8_SAT(style.Alpha); + const ImU32 col_black = IM_COL32(0,0,0,style_alpha8); + const ImU32 col_white = IM_COL32(255,255,255,style_alpha8); + const ImU32 col_midgrey = IM_COL32(128,128,128,style_alpha8); + const ImU32 col_hues[6 + 1] = { IM_COL32(255,0,0,style_alpha8), IM_COL32(255,255,0,style_alpha8), IM_COL32(0,255,0,style_alpha8), IM_COL32(0,255,255,style_alpha8), IM_COL32(0,0,255,style_alpha8), IM_COL32(255,0,255,style_alpha8), IM_COL32(255,0,0,style_alpha8) }; + + ImVec4 hue_color_f(1, 1, 1, style.Alpha); ColorConvertHSVtoRGB(H, 1, 1, hue_color_f.x, hue_color_f.y, hue_color_f.z); + ImU32 hue_color32 = ColorConvertFloat4ToU32(hue_color_f); + ImU32 user_col32_striped_of_alpha = ColorConvertFloat4ToU32(ImVec4(R, G, B, style.Alpha)); // Important: this is still including the main rendering/style alpha!! + + ImVec2 sv_cursor_pos; + + if (flags & ImGuiColorEditFlags_PickerHueWheel) + { + // Render Hue Wheel + const float aeps = 0.5f / wheel_r_outer; // Half a pixel arc length in radians (2pi cancels out). + const int segment_per_arc = ImMax(4, (int)wheel_r_outer / 12); + for (int n = 0; n < 6; n++) + { + const float a0 = (n) /6.0f * 2.0f * IM_PI - aeps; + const float a1 = (n+1.0f)/6.0f * 2.0f * IM_PI + aeps; + const int vert_start_idx = draw_list->VtxBuffer.Size; + draw_list->PathArcTo(wheel_center, (wheel_r_inner + wheel_r_outer)*0.5f, a0, a1, segment_per_arc); + draw_list->PathStroke(col_white, 0, wheel_thickness); + const int vert_end_idx = draw_list->VtxBuffer.Size; + + // Paint colors over existing vertices + ImVec2 gradient_p0(wheel_center.x + ImCos(a0) * wheel_r_inner, wheel_center.y + ImSin(a0) * wheel_r_inner); + ImVec2 gradient_p1(wheel_center.x + ImCos(a1) * wheel_r_inner, wheel_center.y + ImSin(a1) * wheel_r_inner); + ShadeVertsLinearColorGradientKeepAlpha(draw_list, vert_start_idx, vert_end_idx, gradient_p0, gradient_p1, col_hues[n], col_hues[n + 1]); + } + + // Render Cursor + preview on Hue Wheel + float cos_hue_angle = ImCos(H * 2.0f * IM_PI); + float sin_hue_angle = ImSin(H * 2.0f * IM_PI); + ImVec2 hue_cursor_pos(wheel_center.x + cos_hue_angle * (wheel_r_inner + wheel_r_outer) * 0.5f, wheel_center.y + sin_hue_angle * (wheel_r_inner + wheel_r_outer) * 0.5f); + float hue_cursor_rad = value_changed_h ? wheel_thickness * 0.65f : wheel_thickness * 0.55f; + int hue_cursor_segments = draw_list->_CalcCircleAutoSegmentCount(hue_cursor_rad); // Lock segment count so the +1 one matches others. + draw_list->AddCircleFilled(hue_cursor_pos, hue_cursor_rad, hue_color32, hue_cursor_segments); + draw_list->AddCircle(hue_cursor_pos, hue_cursor_rad + 1, col_midgrey, hue_cursor_segments); + draw_list->AddCircle(hue_cursor_pos, hue_cursor_rad, col_white, hue_cursor_segments); + + // Render SV triangle (rotated according to hue) + ImVec2 tra = wheel_center + ImRotate(triangle_pa, cos_hue_angle, sin_hue_angle); + ImVec2 trb = wheel_center + ImRotate(triangle_pb, cos_hue_angle, sin_hue_angle); + ImVec2 trc = wheel_center + ImRotate(triangle_pc, cos_hue_angle, sin_hue_angle); + ImVec2 uv_white = GetFontTexUvWhitePixel(); + draw_list->PrimReserve(3, 3); + draw_list->PrimVtx(tra, uv_white, hue_color32); + draw_list->PrimVtx(trb, uv_white, col_black); + draw_list->PrimVtx(trc, uv_white, col_white); + draw_list->AddTriangle(tra, trb, trc, col_midgrey, 1.5f); + sv_cursor_pos = ImLerp(ImLerp(trc, tra, ImSaturate(S)), trb, ImSaturate(1 - V)); + } + else if (flags & ImGuiColorEditFlags_PickerHueBar) + { + // Render SV Square + draw_list->AddRectFilledMultiColor(picker_pos, picker_pos + ImVec2(sv_picker_size, sv_picker_size), col_white, hue_color32, hue_color32, col_white); + draw_list->AddRectFilledMultiColor(picker_pos, picker_pos + ImVec2(sv_picker_size, sv_picker_size), 0, 0, col_black, col_black); + RenderFrameBorder(picker_pos, picker_pos + ImVec2(sv_picker_size, sv_picker_size), 0.0f); + sv_cursor_pos.x = ImClamp(IM_ROUND(picker_pos.x + ImSaturate(S) * sv_picker_size), picker_pos.x + 2, picker_pos.x + sv_picker_size - 2); // Sneakily prevent the circle to stick out too much + sv_cursor_pos.y = ImClamp(IM_ROUND(picker_pos.y + ImSaturate(1 - V) * sv_picker_size), picker_pos.y + 2, picker_pos.y + sv_picker_size - 2); + + // Render Hue Bar + for (int i = 0; i < 6; ++i) + draw_list->AddRectFilledMultiColor(ImVec2(bar0_pos_x, picker_pos.y + i * (sv_picker_size / 6)), ImVec2(bar0_pos_x + bars_width, picker_pos.y + (i + 1) * (sv_picker_size / 6)), col_hues[i], col_hues[i], col_hues[i + 1], col_hues[i + 1]); + float bar0_line_y = IM_ROUND(picker_pos.y + H * sv_picker_size); + RenderFrameBorder(ImVec2(bar0_pos_x, picker_pos.y), ImVec2(bar0_pos_x + bars_width, picker_pos.y + sv_picker_size), 0.0f); + RenderArrowsForVerticalBar(draw_list, ImVec2(bar0_pos_x - 1, bar0_line_y), ImVec2(bars_triangles_half_sz + 1, bars_triangles_half_sz), bars_width + 2.0f, style.Alpha); + } + + // Render cursor/preview circle (clamp S/V within 0..1 range because floating points colors may lead HSV values to be out of range) + float sv_cursor_rad = value_changed_sv ? 10.0f : 6.0f; + int sv_cursor_segments = draw_list->_CalcCircleAutoSegmentCount(sv_cursor_rad); // Lock segment count so the +1 one matches others. + draw_list->AddCircleFilled(sv_cursor_pos, sv_cursor_rad, user_col32_striped_of_alpha, sv_cursor_segments); + draw_list->AddCircle(sv_cursor_pos, sv_cursor_rad + 1, col_midgrey, sv_cursor_segments); + draw_list->AddCircle(sv_cursor_pos, sv_cursor_rad, col_white, sv_cursor_segments); + + // Render alpha bar + if (alpha_bar) + { + float alpha = ImSaturate(col[3]); + ImRect bar1_bb(bar1_pos_x, picker_pos.y, bar1_pos_x + bars_width, picker_pos.y + sv_picker_size); + RenderColorRectWithAlphaCheckerboard(draw_list, bar1_bb.Min, bar1_bb.Max, 0, bar1_bb.GetWidth() / 2.0f, ImVec2(0.0f, 0.0f)); + draw_list->AddRectFilledMultiColor(bar1_bb.Min, bar1_bb.Max, user_col32_striped_of_alpha, user_col32_striped_of_alpha, user_col32_striped_of_alpha & ~IM_COL32_A_MASK, user_col32_striped_of_alpha & ~IM_COL32_A_MASK); + float bar1_line_y = IM_ROUND(picker_pos.y + (1.0f - alpha) * sv_picker_size); + RenderFrameBorder(bar1_bb.Min, bar1_bb.Max, 0.0f); + RenderArrowsForVerticalBar(draw_list, ImVec2(bar1_pos_x - 1, bar1_line_y), ImVec2(bars_triangles_half_sz + 1, bars_triangles_half_sz), bars_width + 2.0f, style.Alpha); + } + + EndGroup(); + + if (value_changed && memcmp(backup_initial_col, col, components * sizeof(float)) == 0) + value_changed = false; + if (value_changed && g.LastItemData.ID != 0) // In case of ID collision, the second EndGroup() won't catch g.ActiveId + MarkItemEdited(g.LastItemData.ID); + + if (set_current_color_edit_id) + g.ColorEditCurrentID = 0; + PopID(); + + return value_changed; +} + +// A little color square. Return true when clicked. +// FIXME: May want to display/ignore the alpha component in the color display? Yet show it in the tooltip. +// 'desc_id' is not called 'label' because we don't display it next to the button, but only in the tooltip. +// Note that 'col' may be encoded in HSV if ImGuiColorEditFlags_InputHSV is set. +bool ImGui::ColorButton(const char* desc_id, const ImVec4& col, ImGuiColorEditFlags flags, const ImVec2& size_arg) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiID id = window->GetID(desc_id); + const float default_size = GetFrameHeight(); + const ImVec2 size(size_arg.x == 0.0f ? default_size : size_arg.x, size_arg.y == 0.0f ? default_size : size_arg.y); + const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size); + ItemSize(bb, (size.y >= default_size) ? g.Style.FramePadding.y : 0.0f); + if (!ItemAdd(bb, id)) + return false; + + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held); + + if (flags & ImGuiColorEditFlags_NoAlpha) + flags &= ~(ImGuiColorEditFlags_AlphaPreview | ImGuiColorEditFlags_AlphaPreviewHalf); + + ImVec4 col_rgb = col; + if (flags & ImGuiColorEditFlags_InputHSV) + ColorConvertHSVtoRGB(col_rgb.x, col_rgb.y, col_rgb.z, col_rgb.x, col_rgb.y, col_rgb.z); + + ImVec4 col_rgb_without_alpha(col_rgb.x, col_rgb.y, col_rgb.z, 1.0f); + float grid_step = ImMin(size.x, size.y) / 2.99f; + float rounding = ImMin(g.Style.FrameRounding, grid_step * 0.5f); + ImRect bb_inner = bb; + float off = 0.0f; + if ((flags & ImGuiColorEditFlags_NoBorder) == 0) + { + off = -0.75f; // The border (using Col_FrameBg) tends to look off when color is near-opaque and rounding is enabled. This offset seemed like a good middle ground to reduce those artifacts. + bb_inner.Expand(off); + } + if ((flags & ImGuiColorEditFlags_AlphaPreviewHalf) && col_rgb.w < 1.0f) + { + float mid_x = IM_ROUND((bb_inner.Min.x + bb_inner.Max.x) * 0.5f); + RenderColorRectWithAlphaCheckerboard(window->DrawList, ImVec2(bb_inner.Min.x + grid_step, bb_inner.Min.y), bb_inner.Max, GetColorU32(col_rgb), grid_step, ImVec2(-grid_step + off, off), rounding, ImDrawFlags_RoundCornersRight); + window->DrawList->AddRectFilled(bb_inner.Min, ImVec2(mid_x, bb_inner.Max.y), GetColorU32(col_rgb_without_alpha), rounding, ImDrawFlags_RoundCornersLeft); + } + else + { + // Because GetColorU32() multiplies by the global style Alpha and we don't want to display a checkerboard if the source code had no alpha + ImVec4 col_source = (flags & ImGuiColorEditFlags_AlphaPreview) ? col_rgb : col_rgb_without_alpha; + if (col_source.w < 1.0f) + RenderColorRectWithAlphaCheckerboard(window->DrawList, bb_inner.Min, bb_inner.Max, GetColorU32(col_source), grid_step, ImVec2(off, off), rounding); + else + window->DrawList->AddRectFilled(bb_inner.Min, bb_inner.Max, GetColorU32(col_source), rounding); + } + RenderNavHighlight(bb, id); + if ((flags & ImGuiColorEditFlags_NoBorder) == 0) + { + if (g.Style.FrameBorderSize > 0.0f) + RenderFrameBorder(bb.Min, bb.Max, rounding); + else + window->DrawList->AddRect(bb.Min, bb.Max, GetColorU32(ImGuiCol_FrameBg), rounding); // Color button are often in need of some sort of border + } + + // Drag and Drop Source + // NB: The ActiveId test is merely an optional micro-optimization, BeginDragDropSource() does the same test. + if (g.ActiveId == id && !(flags & ImGuiColorEditFlags_NoDragDrop) && BeginDragDropSource()) + { + if (flags & ImGuiColorEditFlags_NoAlpha) + SetDragDropPayload(IMGUI_PAYLOAD_TYPE_COLOR_3F, &col_rgb, sizeof(float) * 3, ImGuiCond_Once); + else + SetDragDropPayload(IMGUI_PAYLOAD_TYPE_COLOR_4F, &col_rgb, sizeof(float) * 4, ImGuiCond_Once); + ColorButton(desc_id, col, flags); + SameLine(); + TextEx("Color"); + EndDragDropSource(); + } + + // Tooltip + if (!(flags & ImGuiColorEditFlags_NoTooltip) && hovered && IsItemHovered(ImGuiHoveredFlags_ForTooltip)) + ColorTooltip(desc_id, &col.x, flags & (ImGuiColorEditFlags_InputMask_ | ImGuiColorEditFlags_NoAlpha | ImGuiColorEditFlags_AlphaPreview | ImGuiColorEditFlags_AlphaPreviewHalf)); + + return pressed; +} + +// Initialize/override default color options +void ImGui::SetColorEditOptions(ImGuiColorEditFlags flags) +{ + ImGuiContext& g = *GImGui; + if ((flags & ImGuiColorEditFlags_DisplayMask_) == 0) + flags |= ImGuiColorEditFlags_DefaultOptions_ & ImGuiColorEditFlags_DisplayMask_; + if ((flags & ImGuiColorEditFlags_DataTypeMask_) == 0) + flags |= ImGuiColorEditFlags_DefaultOptions_ & ImGuiColorEditFlags_DataTypeMask_; + if ((flags & ImGuiColorEditFlags_PickerMask_) == 0) + flags |= ImGuiColorEditFlags_DefaultOptions_ & ImGuiColorEditFlags_PickerMask_; + if ((flags & ImGuiColorEditFlags_InputMask_) == 0) + flags |= ImGuiColorEditFlags_DefaultOptions_ & ImGuiColorEditFlags_InputMask_; + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_DisplayMask_)); // Check only 1 option is selected + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_DataTypeMask_)); // Check only 1 option is selected + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_PickerMask_)); // Check only 1 option is selected + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_InputMask_)); // Check only 1 option is selected + g.ColorEditOptions = flags; +} + +// Note: only access 3 floats if ImGuiColorEditFlags_NoAlpha flag is set. +void ImGui::ColorTooltip(const char* text, const float* col, ImGuiColorEditFlags flags) +{ + ImGuiContext& g = *GImGui; + + if (!BeginTooltipEx(ImGuiTooltipFlags_OverridePrevious, ImGuiWindowFlags_None)) + return; + const char* text_end = text ? FindRenderedTextEnd(text, NULL) : text; + if (text_end > text) + { + TextEx(text, text_end); + Separator(); + } + + ImVec2 sz(g.FontSize * 3 + g.Style.FramePadding.y * 2, g.FontSize * 3 + g.Style.FramePadding.y * 2); + ImVec4 cf(col[0], col[1], col[2], (flags & ImGuiColorEditFlags_NoAlpha) ? 1.0f : col[3]); + int cr = IM_F32_TO_INT8_SAT(col[0]), cg = IM_F32_TO_INT8_SAT(col[1]), cb = IM_F32_TO_INT8_SAT(col[2]), ca = (flags & ImGuiColorEditFlags_NoAlpha) ? 255 : IM_F32_TO_INT8_SAT(col[3]); + ColorButton("##preview", cf, (flags & (ImGuiColorEditFlags_InputMask_ | ImGuiColorEditFlags_NoAlpha | ImGuiColorEditFlags_AlphaPreview | ImGuiColorEditFlags_AlphaPreviewHalf)) | ImGuiColorEditFlags_NoTooltip, sz); + SameLine(); + if ((flags & ImGuiColorEditFlags_InputRGB) || !(flags & ImGuiColorEditFlags_InputMask_)) + { + if (flags & ImGuiColorEditFlags_NoAlpha) + Text("#%02X%02X%02X\nR: %d, G: %d, B: %d\n(%.3f, %.3f, %.3f)", cr, cg, cb, cr, cg, cb, col[0], col[1], col[2]); + else + Text("#%02X%02X%02X%02X\nR:%d, G:%d, B:%d, A:%d\n(%.3f, %.3f, %.3f, %.3f)", cr, cg, cb, ca, cr, cg, cb, ca, col[0], col[1], col[2], col[3]); + } + else if (flags & ImGuiColorEditFlags_InputHSV) + { + if (flags & ImGuiColorEditFlags_NoAlpha) + Text("H: %.3f, S: %.3f, V: %.3f", col[0], col[1], col[2]); + else + Text("H: %.3f, S: %.3f, V: %.3f, A: %.3f", col[0], col[1], col[2], col[3]); + } + EndTooltip(); +} + +void ImGui::ColorEditOptionsPopup(const float* col, ImGuiColorEditFlags flags) +{ + bool allow_opt_inputs = !(flags & ImGuiColorEditFlags_DisplayMask_); + bool allow_opt_datatype = !(flags & ImGuiColorEditFlags_DataTypeMask_); + if ((!allow_opt_inputs && !allow_opt_datatype) || !BeginPopup("context")) + return; + ImGuiContext& g = *GImGui; + g.LockMarkEdited++; + ImGuiColorEditFlags opts = g.ColorEditOptions; + if (allow_opt_inputs) + { + if (RadioButton("RGB", (opts & ImGuiColorEditFlags_DisplayRGB) != 0)) opts = (opts & ~ImGuiColorEditFlags_DisplayMask_) | ImGuiColorEditFlags_DisplayRGB; + if (RadioButton("HSV", (opts & ImGuiColorEditFlags_DisplayHSV) != 0)) opts = (opts & ~ImGuiColorEditFlags_DisplayMask_) | ImGuiColorEditFlags_DisplayHSV; + if (RadioButton("Hex", (opts & ImGuiColorEditFlags_DisplayHex) != 0)) opts = (opts & ~ImGuiColorEditFlags_DisplayMask_) | ImGuiColorEditFlags_DisplayHex; + } + if (allow_opt_datatype) + { + if (allow_opt_inputs) Separator(); + if (RadioButton("0..255", (opts & ImGuiColorEditFlags_Uint8) != 0)) opts = (opts & ~ImGuiColorEditFlags_DataTypeMask_) | ImGuiColorEditFlags_Uint8; + if (RadioButton("0.00..1.00", (opts & ImGuiColorEditFlags_Float) != 0)) opts = (opts & ~ImGuiColorEditFlags_DataTypeMask_) | ImGuiColorEditFlags_Float; + } + + if (allow_opt_inputs || allow_opt_datatype) + Separator(); + if (Button("Copy as..", ImVec2(-1, 0))) + OpenPopup("Copy"); + if (BeginPopup("Copy")) + { + int cr = IM_F32_TO_INT8_SAT(col[0]), cg = IM_F32_TO_INT8_SAT(col[1]), cb = IM_F32_TO_INT8_SAT(col[2]), ca = (flags & ImGuiColorEditFlags_NoAlpha) ? 255 : IM_F32_TO_INT8_SAT(col[3]); + char buf[64]; + ImFormatString(buf, IM_ARRAYSIZE(buf), "(%.3ff, %.3ff, %.3ff, %.3ff)", col[0], col[1], col[2], (flags & ImGuiColorEditFlags_NoAlpha) ? 1.0f : col[3]); + if (Selectable(buf)) + SetClipboardText(buf); + ImFormatString(buf, IM_ARRAYSIZE(buf), "(%d,%d,%d,%d)", cr, cg, cb, ca); + if (Selectable(buf)) + SetClipboardText(buf); + ImFormatString(buf, IM_ARRAYSIZE(buf), "#%02X%02X%02X", cr, cg, cb); + if (Selectable(buf)) + SetClipboardText(buf); + if (!(flags & ImGuiColorEditFlags_NoAlpha)) + { + ImFormatString(buf, IM_ARRAYSIZE(buf), "#%02X%02X%02X%02X", cr, cg, cb, ca); + if (Selectable(buf)) + SetClipboardText(buf); + } + EndPopup(); + } + + g.ColorEditOptions = opts; + EndPopup(); + g.LockMarkEdited--; +} + +void ImGui::ColorPickerOptionsPopup(const float* ref_col, ImGuiColorEditFlags flags) +{ + bool allow_opt_picker = !(flags & ImGuiColorEditFlags_PickerMask_); + bool allow_opt_alpha_bar = !(flags & ImGuiColorEditFlags_NoAlpha) && !(flags & ImGuiColorEditFlags_AlphaBar); + if ((!allow_opt_picker && !allow_opt_alpha_bar) || !BeginPopup("context")) + return; + ImGuiContext& g = *GImGui; + g.LockMarkEdited++; + if (allow_opt_picker) + { + ImVec2 picker_size(g.FontSize * 8, ImMax(g.FontSize * 8 - (GetFrameHeight() + g.Style.ItemInnerSpacing.x), 1.0f)); // FIXME: Picker size copied from main picker function + PushItemWidth(picker_size.x); + for (int picker_type = 0; picker_type < 2; picker_type++) + { + // Draw small/thumbnail version of each picker type (over an invisible button for selection) + if (picker_type > 0) Separator(); + PushID(picker_type); + ImGuiColorEditFlags picker_flags = ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoOptions | ImGuiColorEditFlags_NoLabel | ImGuiColorEditFlags_NoSidePreview | (flags & ImGuiColorEditFlags_NoAlpha); + if (picker_type == 0) picker_flags |= ImGuiColorEditFlags_PickerHueBar; + if (picker_type == 1) picker_flags |= ImGuiColorEditFlags_PickerHueWheel; + ImVec2 backup_pos = GetCursorScreenPos(); + if (Selectable("##selectable", false, 0, picker_size)) // By default, Selectable() is closing popup + g.ColorEditOptions = (g.ColorEditOptions & ~ImGuiColorEditFlags_PickerMask_) | (picker_flags & ImGuiColorEditFlags_PickerMask_); + SetCursorScreenPos(backup_pos); + ImVec4 previewing_ref_col; + memcpy(&previewing_ref_col, ref_col, sizeof(float) * ((picker_flags & ImGuiColorEditFlags_NoAlpha) ? 3 : 4)); + ColorPicker4("##previewing_picker", &previewing_ref_col.x, picker_flags); + PopID(); + } + PopItemWidth(); + } + + EndPopup(); + g.LockMarkEdited--; +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: TreeNode, CollapsingHeader, etc. +//------------------------------------------------------------------------- +// - TreeNode() +// - TreeNodeV() +// - TreeNodeEx() +// - TreeNodeExV() +// - TreeNodeBehavior() [Internal] +// - TreePush() +// - TreePop() +// - GetTreeNodeToLabelSpacing() +// - SetNextItemOpen() +// - CollapsingHeader() +//------------------------------------------------------------------------- + +bool ImGui::TreeNode(const char* str_id, const char* fmt, ...) { + va_list args; + va_start(args, fmt); + bool is_open = TreeNodeExV(str_id, 0, fmt, args); + va_end(args); + return is_open; +} + +bool ImGui::TreeNode(const void* ptr_id, const char* fmt, ...) { + va_list args; + va_start(args, fmt); + bool is_open = TreeNodeExV(ptr_id, 0, fmt, args); + va_end(args); + return is_open; +} + +bool ImGui::TreeNode(const char* label) { + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + return TreeNodeBehavior(window->GetID(label), 0, label, NULL); +} + +bool ImGui::TreeNodeV(const char* str_id, const char* fmt, va_list args) { + return TreeNodeExV(str_id, 0, fmt, args); +} + +bool ImGui::TreeNodeV(const void* ptr_id, const char* fmt, va_list args) { + return TreeNodeExV(ptr_id, 0, fmt, args); +} + +bool ImGui::TreeNodeEx(const char* label, ImGuiTreeNodeFlags flags) { + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + return TreeNodeBehavior(window->GetID(label), flags, label, NULL); +} + +bool ImGui::TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) { + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const char* label_end = g.TempBuffer.Data + ImFormatStringV(g.TempBuffer.Data, g.TempBuffer.Size, fmt, args); + return TreeNodeBehavior(window->GetID(str_id), flags, g.TempBuffer.Data, label_end); +} + +bool ImGui::TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) { + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const char* label_end = g.TempBuffer.Data + ImFormatStringV(g.TempBuffer.Data, g.TempBuffer.Size, fmt, args); + return TreeNodeBehavior(window->GetID(ptr_id), flags, g.TempBuffer.Data, label_end); +} + +bool ImGui::TreeNodeEx(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) { + va_list args; + va_start(args, fmt); + bool is_open = TreeNodeExV(str_id, flags, fmt, args); + va_end(args); + return is_open; +} + +bool ImGui::TreeNodeEx(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) { + va_list args; + va_start(args, fmt); + bool is_open = TreeNodeExV(ptr_id, flags, fmt, args); + va_end(args); + return is_open; +} + + + +bool ImGui::TreeNodeBehaviorIsOpen(ImGuiID id, ImGuiTreeNodeFlags flags) { + if (flags & ImGuiTreeNodeFlags_Leaf) + return true; + + // We only write to the tree storage if the user clicks (or explicitly use the SetNextItemOpen function) + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiStorage* storage = window->DC.StateStorage; + + bool is_open; + if (g.NextItemData.Flags & ImGuiNextItemDataFlags_HasOpen) { + if (g.NextItemData.OpenCond & ImGuiCond_Always) { + is_open = g.NextItemData.OpenVal; + storage->SetInt(id, is_open); + } + else { + // We treat ImGuiCond_Once and ImGuiCond_FirstUseEver the same because tree node state are not saved persistently. + const int stored_value = storage->GetInt(id, -1); + if (stored_value == -1) { + is_open = g.NextItemData.OpenVal; + storage->SetInt(id, is_open); + } + else { + is_open = stored_value != 0; + } + } + } + else { + is_open = storage->GetInt(id, (flags & ImGuiTreeNodeFlags_DefaultOpen) ? 1 : 0) != 0; + } + + // When logging is enabled, we automatically expand tree nodes (but *NOT* collapsing headers.. seems like sensible behavior). + // NB- If we are above max depth we still allow manually opened nodes to be logged. + if (g.LogEnabled && !(flags & ImGuiTreeNodeFlags_NoAutoOpenOnLog) && (window->DC.TreeDepth - g.LogDepthRef) < g.LogDepthToExpand) + is_open = true; + + return is_open; +} + +bool ImGui::TreeNodeBehavior(ImGuiID id, ImGuiTreeNodeFlags flags, const char* label, const char* label_end) { + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + /* more default flags */ + flags |= ImGuiTreeNodeFlags_Framed; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const bool display_frame = (flags & ImGuiTreeNodeFlags_Framed) != 0; + const ImVec2 padding = (display_frame || (flags & ImGuiTreeNodeFlags_FramePadding)) ? style.FramePadding : ImVec2(style.FramePadding.x, ImMin(window->DC.CurrLineTextBaseOffset, style.FramePadding.y)); + + if (!label_end) + label_end = FindRenderedTextEnd(label); + const ImVec2 label_size = CalcTextSize(label, label_end, false); + + // We vertically grow up to current line height up the typical widget height. + const float frame_height = ImMax(ImMin(window->DC.CurrLineSize.y, g.FontSize + style.FramePadding.y * 2), label_size.y + padding.y * 2); + ImRect frame_bb; + frame_bb.Min.x = (flags & ImGuiTreeNodeFlags_SpanFullWidth) ? window->WorkRect.Min.x : window->DC.CursorPos.x; + frame_bb.Min.y = window->DC.CursorPos.y; + frame_bb.Max.x = window->WorkRect.Max.x; + frame_bb.Max.y = window->DC.CursorPos.y + frame_height; + if (display_frame) { + // Framed header expand a little outside the default padding, to the edge of InnerClipRect + // (FIXME: May remove this at some point and make InnerClipRect align with WindowPadding.x instead of WindowPadding.x*0.5f) + frame_bb.Min.x -= IM_FLOOR(window->WindowPadding.x * 0.5f - 1.0f); + frame_bb.Max.x += IM_FLOOR(window->WindowPadding.x * 0.5f); + } + + const float text_offset_x = g.FontSize + (display_frame ? padding.x * 3 : padding.x * 2); // Collapser arrow width + Spacing + const float text_offset_y = ImMax(padding.y, window->DC.CurrLineTextBaseOffset); // Latch before ItemSize changes it + const float text_width = g.FontSize + (label_size.x > 0.0f ? label_size.x + padding.x * 2 : 0.0f); // Include collapser + ImVec2 text_pos(window->DC.CursorPos.x + text_offset_x, window->DC.CursorPos.y + text_offset_y); + ItemSize(ImVec2(text_width, frame_height), padding.y); + + // For regular tree nodes, we arbitrary allow to click past 2 worth of ItemSpacing + ImRect interact_bb = frame_bb; + if (!display_frame && (flags & (ImGuiTreeNodeFlags_SpanAvailWidth | ImGuiTreeNodeFlags_SpanFullWidth)) == 0) + interact_bb.Max.x = frame_bb.Min.x + text_width + style.ItemSpacing.x * 2.0f; + + // Store a flag for the current depth to tell if we will allow closing this node when navigating one of its child. + // For this purpose we essentially compare if g.NavIdIsAlive went from 0 to 1 between TreeNode() and TreePop(). + // This is currently only support 32 level deep and we are fine with (1 << Depth) overflowing into a zero. + const bool is_leaf = (flags & ImGuiTreeNodeFlags_Leaf) != 0; + bool is_open = TreeNodeBehaviorIsOpen(id, flags); + if (is_open && !g.NavIdIsAlive && (flags & ImGuiTreeNodeFlags_NavLeftJumpsBackHere) && !(flags & ImGuiTreeNodeFlags_NoTreePushOnOpen)) + window->DC.TreeJumpToParentOnPopMask |= (1 << window->DC.TreeDepth); + + bool item_add = ItemAdd(interact_bb, id); + window->DC.LastItemStatusFlags |= ImGuiItemStatusFlags_HasDisplayRect; + window->DC.LastItemDisplayRect = frame_bb; + + if (!item_add) { + if (is_open && !(flags & ImGuiTreeNodeFlags_NoTreePushOnOpen)) + TreePushOverrideID(id); + IMGUI_TEST_ENGINE_ITEM_INFO(window->DC.LastItemId, label, window->DC.ItemFlags | (is_leaf ? 0 : ImGuiItemStatusFlags_Openable) | (is_open ? ImGuiItemStatusFlags_Opened : 0)); + return is_open; + } + + ImGuiButtonFlags button_flags = ImGuiTreeNodeFlags_None; + if (flags & ImGuiTreeNodeFlags_AllowOverlap) + button_flags |= ImGuiButtonFlags_AllowOverlap; + if (!is_leaf) + button_flags |= ImGuiButtonFlags_PressedOnDragDropHold; + + // We allow clicking on the arrow section with keyboard modifiers held, in order to easily + // allow browsing a tree while preserving selection with code implementing multi-selection patterns. + // When clicking on the rest of the tree node we always disallow keyboard modifiers. + const float arrow_hit_x1 = (text_pos.x - text_offset_x) - style.TouchExtraPadding.x; + const float arrow_hit_x2 = (text_pos.x - text_offset_x) + (g.FontSize + padding.x * 2.0f) + style.TouchExtraPadding.x; + const bool is_mouse_x_over_arrow = (g.IO.MousePos.x >= arrow_hit_x1 && g.IO.MousePos.x < arrow_hit_x2); + if (window != g.HoveredWindow || !is_mouse_x_over_arrow) + button_flags |= ImGuiButtonFlags_NoKeyModifiers; + + // Open behaviors can be altered with the _OpenOnArrow and _OnOnDoubleClick flags. + // Some alteration have subtle effects (e.g. toggle on MouseUp vs MouseDown events) due to requirements for multi-selection and drag and drop support. + // - Single-click on label = Toggle on MouseUp (default, when _OpenOnArrow=0) + // - Single-click on arrow = Toggle on MouseDown (when _OpenOnArrow=0) + // - Single-click on arrow = Toggle on MouseDown (when _OpenOnArrow=1) + // - Double-click on label = Toggle on MouseDoubleClick (when _OpenOnDoubleClick=1) + // - Double-click on arrow = Toggle on MouseDoubleClick (when _OpenOnDoubleClick=1 and _OpenOnArrow=0) + // It is rather standard that arrow click react on Down rather than Up. + // We set ImGuiButtonFlags_PressedOnClickRelease on OpenOnDoubleClick because we want the item to be active on the initial MouseDown in order for drag and drop to work. + if (is_mouse_x_over_arrow) + button_flags |= ImGuiButtonFlags_PressedOnClick; + else if (flags & ImGuiTreeNodeFlags_OpenOnDoubleClick) + button_flags |= ImGuiButtonFlags_PressedOnClickRelease | ImGuiButtonFlags_PressedOnDoubleClick; + else + button_flags |= ImGuiButtonFlags_PressedOnClickRelease; + + bool selected = (flags & ImGuiTreeNodeFlags_Selected) != 0; + const bool was_selected = selected; + + bool hovered, held; + bool pressed = ButtonBehavior(interact_bb, id, &hovered, &held, button_flags); + bool toggled = false; + if (!is_leaf) { + if (pressed && g.DragDropHoldJustPressedId != id) { + if ((flags & (ImGuiTreeNodeFlags_OpenOnArrow | ImGuiTreeNodeFlags_OpenOnDoubleClick)) == 0 || (g.NavActivateId == id)) + toggled = true; + if (flags & ImGuiTreeNodeFlags_OpenOnArrow) + toggled |= is_mouse_x_over_arrow && !g.NavDisableMouseHover; // Lightweight equivalent of IsMouseHoveringRect() since ButtonBehavior() already did the job + if ((flags & ImGuiTreeNodeFlags_OpenOnDoubleClick) && g.IO.MouseDoubleClicked[0]) + toggled = true; + } + else if (pressed && g.DragDropHoldJustPressedId == id) { + IM_ASSERT(button_flags & ImGuiButtonFlags_PressedOnDragDropHold); + if (!is_open) // When using Drag and Drop "hold to open" we keep the node highlighted after opening, but never close it again. + toggled = true; + } + + if (g.NavId == id && g.NavMoveRequest && g.NavMoveDir == ImGuiDir_Left && is_open) { + toggled = true; + NavMoveRequestCancel(); + } + if (g.NavId == id && g.NavMoveRequest && g.NavMoveDir == ImGuiDir_Right && !is_open) // If there's something upcoming on the line we may want to give it the priority? + { + toggled = true; + NavMoveRequestCancel(); + } + + if (toggled) { + is_open = !is_open; + window->DC.StateStorage->SetInt(id, is_open); + window->DC.LastItemStatusFlags |= ImGuiItemStatusFlags_ToggledOpen; + } + } + if (flags & ImGuiTreeNodeFlags_AllowOverlap) + SetNextItemAllowOverlap(); + + // In this branch, TreeNodeBehavior() cannot toggle the selection so this will never trigger. + if (selected != was_selected) //-V547 + window->DC.LastItemStatusFlags |= ImGuiItemStatusFlags_ToggledSelection; + + // Render + const ImU32 text_col = GetColorU32(ImGuiCol_Text); + ImGuiNavHighlightFlags nav_highlight_flags = ImGuiNavHighlightFlags_TypeThin; + if (display_frame) { + // Framed type + const ImU32 bg_col = GetColorU32((held && hovered) ? ImGuiCol_HeaderActive : hovered ? ImGuiCol_HeaderHovered : ImGuiCol_Header); + RenderFrame(frame_bb.Min, frame_bb.Max, bg_col, false, style.FrameRounding); + RenderNavHighlight(frame_bb, id, nav_highlight_flags); + if (flags & ImGuiTreeNodeFlags_Bullet) + RenderBullet(window->DrawList, ImVec2(text_pos.x - text_offset_x * 0.60f, text_pos.y + g.FontSize * 0.5f), text_col); + else if (!is_leaf) + RenderArrow(window->DrawList, ImVec2(text_pos.x - text_offset_x + padding.x, text_pos.y), text_col, is_open ? ImGuiDir_Down : ImGuiDir_Right, 1.0f); + else // Leaf without bullet, left-adjusted text + text_pos.x -= text_offset_x; + if (flags & ImGuiTreeNodeFlags_ClipLabelForTrailingButton) + frame_bb.Max.x -= g.FontSize + style.FramePadding.x; + if (g.LogEnabled) { + // NB: '##' is normally used to hide text (as a library-wide feature), so we need to specify the text range to make sure the ## aren't stripped out here. + const char log_prefix[] = "\n##"; + const char log_suffix[] = "##"; + LogRenderedText(&text_pos, log_prefix, log_prefix + 3); + RenderTextClipped(text_pos, frame_bb.Max, label, label_end, &label_size); + LogRenderedText(&text_pos, log_suffix, log_suffix + 2); + } + else { + RenderTextClipped(text_pos, frame_bb.Max, label, label_end, &label_size); + } + } + else { + // Unframed typed for tree nodes + if (hovered || selected) { + const ImU32 bg_col = GetColorU32((held && hovered) ? ImGuiCol_HeaderActive : hovered ? ImGuiCol_HeaderHovered : ImGuiCol_Header); + RenderFrame(frame_bb.Min, frame_bb.Max, bg_col, false); + RenderNavHighlight(frame_bb, id, nav_highlight_flags); + } + if (flags & ImGuiTreeNodeFlags_Bullet) + RenderBullet(window->DrawList, ImVec2(text_pos.x - text_offset_x * 0.5f, text_pos.y + g.FontSize * 0.5f), text_col); + else if (!is_leaf) + RenderArrow(window->DrawList, ImVec2(text_pos.x - text_offset_x + padding.x, text_pos.y + g.FontSize * 0.15f), text_col, is_open ? ImGuiDir_Down : ImGuiDir_Right, 0.70f); + if (g.LogEnabled) + LogRenderedText(&text_pos, ">"); + RenderText(text_pos, label, label_end, false); + } + + if (is_open && !(flags & ImGuiTreeNodeFlags_NoTreePushOnOpen)) + TreePushOverrideID(id); + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, window->DC.ItemFlags | (is_leaf ? 0 : ImGuiItemStatusFlags_Openable) | (is_open ? ImGuiItemStatusFlags_Opened : 0)); + return is_open; +} + +void ImGui::TreePush(const char* str_id) { + ImGuiWindow* window = GetCurrentWindow(); + Indent(); + window->DC.TreeDepth++; + PushID(str_id ? str_id : "#TreePush"); +} + +void ImGui::TreePush(const void* ptr_id) { + ImGuiWindow* window = GetCurrentWindow(); + Indent(); + window->DC.TreeDepth++; + PushID(ptr_id ? ptr_id : (const void*)"#TreePush"); +} + +void ImGui::TreePushOverrideID(ImGuiID id) { + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + Indent(); + window->DC.TreeDepth++; + window->IDStack.push_back(id); +} + +void ImGui::TreePop() { + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + Unindent(); + + window->DC.TreeDepth--; + ImU32 tree_depth_mask = (1 << window->DC.TreeDepth); + const ImRect a; + // Handle Left arrow to move to parent tree node (when ImGuiTreeNodeFlags_NavLeftJumpsBackHere is enabled) + if (g.NavMoveDir == ImGuiDir_Left && g.NavWindow == window && NavMoveRequestButNoResultYet()) + if (g.NavIdIsAlive && (window->DC.TreeJumpToParentOnPopMask & tree_depth_mask)) { + SetNavID(window->IDStack.back(), g.NavLayer, 0, a); + NavMoveRequestCancel(); + } + window->DC.TreeJumpToParentOnPopMask &= tree_depth_mask - 1; + + IM_ASSERT(window->IDStack.Size > 1); // There should always be 1 element in the IDStack (pushed during window creation). If this triggers you called TreePop/PopID too much. + PopID(); +} + +// Horizontal distance preceding label when using TreeNode() or Bullet() +float ImGui::GetTreeNodeToLabelSpacing() { + ImGuiContext& g = *GImGui; + return g.FontSize + (g.Style.FramePadding.x * 2.0f); +} +// Set next TreeNode/CollapsingHeader open state. +void ImGui::SetNextItemOpen(bool is_open, ImGuiCond cond) +{ + ImGuiContext& g = *GImGui; + if (g.CurrentWindow->SkipItems) + return; + g.NextItemData.Flags |= ImGuiNextItemDataFlags_HasOpen; + g.NextItemData.OpenVal = is_open; + g.NextItemData.OpenCond = cond ? cond : ImGuiCond_Always; +} + +// CollapsingHeader returns true when opened but do not indent nor push into the ID stack (because of the ImGuiTreeNodeFlags_NoTreePushOnOpen flag). +// This is basically the same as calling TreeNodeEx(label, ImGuiTreeNodeFlags_CollapsingHeader). You can remove the _NoTreePushOnOpen flag if you want behavior closer to normal TreeNode(). +bool ImGui::CollapsingHeader(const char* label, ImGuiTreeNodeFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + return TreeNodeBehavior(window->GetID(label), flags | ImGuiTreeNodeFlags_CollapsingHeader, label); +} + +// p_visible == NULL : regular collapsing header +// p_visible != NULL && *p_visible == true : show a small close button on the corner of the header, clicking the button will set *p_visible = false +// p_visible != NULL && *p_visible == false : do not show the header at all +// Do not mistake this with the Open state of the header itself, which you can adjust with SetNextItemOpen() or ImGuiTreeNodeFlags_DefaultOpen. +bool ImGui::CollapsingHeader(const char* label, bool* p_visible, ImGuiTreeNodeFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + if (p_visible && !*p_visible) + return false; + + ImGuiID id = window->GetID(label); + flags |= ImGuiTreeNodeFlags_CollapsingHeader; + if (p_visible) + flags |= ImGuiTreeNodeFlags_AllowOverlap | ImGuiTreeNodeFlags_ClipLabelForTrailingButton; + bool is_open = TreeNodeBehavior(id, flags, label); + if (p_visible != NULL) + { + // Create a small overlapping close button + // FIXME: We can evolve this into user accessible helpers to add extra buttons on title bars, headers, etc. + // FIXME: CloseButton can overlap into text, need find a way to clip the text somehow. + ImGuiContext& g = *GImGui; + ImGuiLastItemData last_item_backup = g.LastItemData; + float button_size = g.FontSize; + float button_x = ImMax(g.LastItemData.Rect.Min.x, g.LastItemData.Rect.Max.x - g.Style.FramePadding.x - button_size); + float button_y = g.LastItemData.Rect.Min.y + g.Style.FramePadding.y; + ImGuiID close_button_id = GetIDWithSeed("#CLOSE", NULL, id); + if (CloseButton(close_button_id, ImVec2(button_x, button_y))) + *p_visible = false; + g.LastItemData = last_item_backup; + } + + return is_open; +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: Selectable +//------------------------------------------------------------------------- +// - Selectable() +//------------------------------------------------------------------------- + +// Tip: pass a non-visible label (e.g. "##hello") then you can use the space to draw other text or image. +// But you need to make sure the ID is unique, e.g. enclose calls in PushID/PopID or use ##unique_id. +// With this scheme, ImGuiSelectableFlags_SpanAllColumns and ImGuiSelectableFlags_AllowOverlap are also frequently used flags. +// FIXME: Selectable() with (size.x == 0.0f) and (SelectableTextAlign.x > 0.0f) followed by SameLine() is currently not supported. +bool ImGui::Selectable(const char* label, bool selected, ImGuiSelectableFlags flags, const ImVec2& size_arg) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + + // Submit label or explicit size to ItemSize(), whereas ItemAdd() will submit a larger/spanning rectangle. + ImGuiID id = window->GetID(label); + ImVec2 label_size = CalcTextSize(label, NULL, true); + ImVec2 size(size_arg.x != 0.0f ? size_arg.x : label_size.x, size_arg.y != 0.0f ? size_arg.y : label_size.y); + ImVec2 pos = window->DC.CursorPos; + pos.y += window->DC.CurrLineTextBaseOffset; + ItemSize(size, 0.0f); + + // Fill horizontal space + // We don't support (size < 0.0f) in Selectable() because the ItemSpacing extension would make explicitly right-aligned sizes not visibly match other widgets. + const bool span_all_columns = (flags & ImGuiSelectableFlags_SpanAllColumns) != 0; + const float min_x = span_all_columns ? window->ParentWorkRect.Min.x : pos.x; + const float max_x = span_all_columns ? window->ParentWorkRect.Max.x : window->WorkRect.Max.x; + if (size_arg.x == 0.0f || (flags & ImGuiSelectableFlags_SpanAvailWidth)) + size.x = ImMax(label_size.x, max_x - min_x); + + // Text stays at the submission position, but bounding box may be extended on both sides + const ImVec2 text_min = pos; + const ImVec2 text_max(min_x + size.x, pos.y + size.y); + + // Selectables are meant to be tightly packed together with no click-gap, so we extend their box to cover spacing between selectable. + ImRect bb(min_x, pos.y, text_max.x, text_max.y); + if ((flags & ImGuiSelectableFlags_NoPadWithHalfSpacing) == 0) + { + const float spacing_x = span_all_columns ? 0.0f : style.ItemSpacing.x; + const float spacing_y = style.ItemSpacing.y; + const float spacing_L = IM_FLOOR(spacing_x * 0.50f); + const float spacing_U = IM_FLOOR(spacing_y * 0.50f); + bb.Min.x -= spacing_L; + bb.Min.y -= spacing_U; + bb.Max.x += (spacing_x - spacing_L); + bb.Max.y += (spacing_y - spacing_U); + } + //if (g.IO.KeyCtrl) { GetForegroundDrawList()->AddRect(bb.Min, bb.Max, IM_COL32(0, 255, 0, 255)); } + + // Modify ClipRect for the ItemAdd(), faster than doing a PushColumnsBackground/PushTableBackground for every Selectable.. + const float backup_clip_rect_min_x = window->ClipRect.Min.x; + const float backup_clip_rect_max_x = window->ClipRect.Max.x; + if (span_all_columns) + { + window->ClipRect.Min.x = window->ParentWorkRect.Min.x; + window->ClipRect.Max.x = window->ParentWorkRect.Max.x; + } + + const bool disabled_item = (flags & ImGuiSelectableFlags_Disabled) != 0; + const bool item_add = ItemAdd(bb, id, NULL, disabled_item ? ImGuiItemFlags_Disabled : ImGuiItemFlags_None); + if (span_all_columns) + { + window->ClipRect.Min.x = backup_clip_rect_min_x; + window->ClipRect.Max.x = backup_clip_rect_max_x; + } + + if (!item_add) + return false; + + const bool disabled_global = (g.CurrentItemFlags & ImGuiItemFlags_Disabled) != 0; + if (disabled_item && !disabled_global) // Only testing this as an optimization + BeginDisabled(); + + // FIXME: We can standardize the behavior of those two, we could also keep the fast path of override ClipRect + full push on render only, + // which would be advantageous since most selectable are not selected. + if (span_all_columns && window->DC.CurrentColumns) + PushColumnsBackground(); + else if (span_all_columns && g.CurrentTable) + TablePushBackgroundChannel(); + + // We use NoHoldingActiveID on menus so user can click and _hold_ on a menu then drag to browse child entries + ImGuiButtonFlags button_flags = 0; + if (flags & ImGuiSelectableFlags_NoHoldingActiveID) { button_flags |= ImGuiButtonFlags_NoHoldingActiveId; } + if (flags & ImGuiSelectableFlags_NoSetKeyOwner) { button_flags |= ImGuiButtonFlags_NoSetKeyOwner; } + if (flags & ImGuiSelectableFlags_SelectOnClick) { button_flags |= ImGuiButtonFlags_PressedOnClick; } + if (flags & ImGuiSelectableFlags_SelectOnRelease) { button_flags |= ImGuiButtonFlags_PressedOnRelease; } + if (flags & ImGuiSelectableFlags_AllowDoubleClick) { button_flags |= ImGuiButtonFlags_PressedOnClickRelease | ImGuiButtonFlags_PressedOnDoubleClick; } + if ((flags & ImGuiSelectableFlags_AllowOverlap) || (g.LastItemData.InFlags & ImGuiItemFlags_AllowOverlap)) { button_flags |= ImGuiButtonFlags_AllowOverlap; } + + const bool was_selected = selected; + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held, button_flags); + + // Auto-select when moved into + // - This will be more fully fleshed in the range-select branch + // - This is not exposed as it won't nicely work with some user side handling of shift/control + // - We cannot do 'if (g.NavJustMovedToId != id) { selected = false; pressed = was_selected; }' for two reasons + // - (1) it would require focus scope to be set, need exposing PushFocusScope() or equivalent (e.g. BeginSelection() calling PushFocusScope()) + // - (2) usage will fail with clipped items + // The multi-select API aim to fix those issues, e.g. may be replaced with a BeginSelection() API. + if ((flags & ImGuiSelectableFlags_SelectOnNav) && g.NavJustMovedToId != 0 && g.NavJustMovedToFocusScopeId == g.CurrentFocusScopeId) + if (g.NavJustMovedToId == id) + selected = pressed = true; + + // Update NavId when clicking or when Hovering (this doesn't happen on most widgets), so navigation can be resumed with gamepad/keyboard + if (pressed || (hovered && (flags & ImGuiSelectableFlags_SetNavIdOnHover))) + { + if (!g.NavDisableMouseHover && g.NavWindow == window && g.NavLayer == window->DC.NavLayerCurrent) + { + SetNavID(id, window->DC.NavLayerCurrent, g.CurrentFocusScopeId, WindowRectAbsToRel(window, bb)); // (bb == NavRect) + g.NavDisableHighlight = true; + } + } + if (pressed) + MarkItemEdited(id); + + // In this branch, Selectable() cannot toggle the selection so this will never trigger. + if (selected != was_selected) //-V547 + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_ToggledSelection; + + // Render + if (hovered || selected) + { + ImU32 col; + if (hovered) + col = GetColorU32(ImVec4{ ImColor(26, 26, 26, 100) }); + else if (held && hovered) + col = GetColorU32(ImVec4{ ImColor(26, 26, 26, 200) }); + else + col = GetColorU32(ImVec4{ ImColor(26, 26, 26, 200) }); + + // modified by asphyxia + // selectable + RenderFrame(bb.Min, bb.Max, col, true, 0.3f); + + // gradient + window->DrawList->AddShadowRect(bb.Min, bb.Max, GetColorU32(ImVec4{ ImColor(0, 0, 0, 55) }), 16.f, ImVec2(0, 0), 0, 0.3f); + + RenderNavHighlight(bb, id, ImGuiNavHighlightFlags_TypeThin | ImGuiNavHighlightFlags_NoRounding); + } + if (g.NavId == id) + RenderNavHighlight(bb, id, ImGuiNavHighlightFlags_TypeThin | ImGuiNavHighlightFlags_NoRounding); + + if (span_all_columns && window->DC.CurrentColumns) + PopColumnsBackground(); + else if (span_all_columns && g.CurrentTable) + TablePopBackgroundChannel(); + + RenderTextClipped(text_min, text_max, label, NULL, &label_size, style.SelectableTextAlign, &bb); + + // Automatically close popups + if (pressed && (window->Flags & ImGuiWindowFlags_Popup) && !(flags & ImGuiSelectableFlags_DontClosePopups) && !(g.LastItemData.InFlags & ImGuiItemFlags_SelectableDontClosePopup)) + CloseCurrentPopup(); + + if (disabled_item && !disabled_global) + EndDisabled(); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags); + return pressed; //-V1020 +} + +bool ImGui::Selectable(const char* label, bool* p_selected, ImGuiSelectableFlags flags, const ImVec2& size_arg) +{ + if (Selectable(label, *p_selected, flags, size_arg)) + { + *p_selected = !*p_selected; + return true; + } + return false; +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: ListBox +//------------------------------------------------------------------------- +// - BeginListBox() +// - EndListBox() +// - ListBox() +//------------------------------------------------------------------------- + +// Tip: To have a list filling the entire window width, use size.x = -FLT_MIN and pass an non-visible label e.g. "##empty" +// Tip: If your vertical size is calculated from an item count (e.g. 10 * item_height) consider adding a fractional part to facilitate seeing scrolling boundaries (e.g. 10.25 * item_height). +bool ImGui::BeginListBox(const char* label, const ImVec2& size_arg) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + const ImGuiStyle& style = g.Style; + const ImGuiID id = GetID(label); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + + // Size default to hold ~7.25 items. + // Fractional number of items helps seeing that we can scroll down/up without looking at scrollbar. + ImVec2 size = ImFloor(CalcItemSize(size_arg, CalcItemWidth(), GetTextLineHeightWithSpacing() * 7.25f + style.FramePadding.y * 2.0f)); + ImVec2 frame_size = ImVec2(size.x, ImMax(size.y, label_size.y)); + ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + frame_size); + ImRect bb(frame_bb.Min, frame_bb.Max + ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f, 0.0f)); + g.NextItemData.ClearFlags(); + + if (!IsRectVisible(bb.Min, bb.Max)) + { + ItemSize(bb.GetSize(), style.FramePadding.y); + ItemAdd(bb, 0, &frame_bb); + return false; + } + + // FIXME-OPT: We could omit the BeginGroup() if label_size.x but would need to omit the EndGroup() as well. + BeginGroup(); + if (label_size.x > 0.0f) + { + ImVec2 label_pos = ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, frame_bb.Min.y + style.FramePadding.y); + RenderText(label_pos, label); + window->DC.CursorMaxPos = ImMax(window->DC.CursorMaxPos, label_pos + label_size); + } + + BeginChildFrame(id, frame_bb.GetSize()); + return true; +} + +void ImGui::EndListBox() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT((window->Flags & ImGuiWindowFlags_ChildWindow) && "Mismatched BeginListBox/EndListBox calls. Did you test the return value of BeginListBox?"); + IM_UNUSED(window); + + EndChildFrame(); + EndGroup(); // This is only required to be able to do IsItemXXX query on the whole ListBox including label +} + +bool ImGui::ListBox(const char* label, int* current_item, const char* const items[], int items_count, int height_items) +{ + const bool value_changed = ListBox(label, current_item, Items_ArrayGetter, (void*)items, items_count, height_items); + return value_changed; +} + +// This is merely a helper around BeginListBox(), EndListBox(). +// Considering using those directly to submit custom data or store selection differently. +bool ImGui::ListBox(const char* label, int* current_item, bool (*items_getter)(void*, int, const char**), void* data, int items_count, int height_in_items) +{ + ImGuiContext& g = *GImGui; + + // Calculate size from "height_in_items" + if (height_in_items < 0) + height_in_items = ImMin(items_count, 7); + float height_in_items_f = height_in_items + 0.25f; + ImVec2 size(0.0f, ImFloor(GetTextLineHeightWithSpacing() * height_in_items_f + g.Style.FramePadding.y * 2.0f)); + + if (!BeginListBox(label, size)) + return false; + + // Assume all items have even height (= 1 line of text). If you need items of different height, + // you can create a custom version of ListBox() in your code without using the clipper. + bool value_changed = false; + ImGuiListClipper clipper; + clipper.Begin(items_count, GetTextLineHeightWithSpacing()); // We know exactly our line height here so we pass it as a minor optimization, but generally you don't need to. + while (clipper.Step()) + for (int i = clipper.DisplayStart; i < clipper.DisplayEnd; i++) + { + const char* item_text; + if (!items_getter(data, i, &item_text)) + item_text = "*Unknown item*"; + + PushID(i); + const bool item_selected = (i == *current_item); + if (Selectable(item_text, item_selected)) + { + *current_item = i; + value_changed = true; + } + if (item_selected) + SetItemDefaultFocus(); + PopID(); + } + EndListBox(); + + if (value_changed) + MarkItemEdited(g.LastItemData.ID); + + return value_changed; +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: PlotLines, PlotHistogram +//------------------------------------------------------------------------- +// - PlotEx() [Internal] +// - PlotLines() +// - PlotHistogram() +//------------------------------------------------------------------------- +// Plot/Graph widgets are not very good. +// Consider writing your own, or using a third-party one, see: +// - ImPlot https://github.com/epezent/implot +// - others https://github.com/ocornut/imgui/wiki/Useful-Extensions +//------------------------------------------------------------------------- + +int ImGui::PlotEx(ImGuiPlotType plot_type, const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, const ImVec2& size_arg) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return -1; + + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + + const ImVec2 label_size = CalcTextSize(label, NULL, true); + const ImVec2 frame_size = CalcItemSize(size_arg, CalcItemWidth(), label_size.y + style.FramePadding.y * 2.0f); + + const ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + frame_size); + const ImRect inner_bb(frame_bb.Min + style.FramePadding, frame_bb.Max - style.FramePadding); + const ImRect total_bb(frame_bb.Min, frame_bb.Max + ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f, 0)); + ItemSize(total_bb, style.FramePadding.y); + if (!ItemAdd(total_bb, 0, &frame_bb)) + return -1; + const bool hovered = ItemHoverable(frame_bb, id, g.LastItemData.InFlags); + + // Determine scale from values if not specified + if (scale_min == FLT_MAX || scale_max == FLT_MAX) + { + float v_min = FLT_MAX; + float v_max = -FLT_MAX; + for (int i = 0; i < values_count; i++) + { + const float v = values_getter(data, i); + if (v != v) // Ignore NaN values + continue; + v_min = ImMin(v_min, v); + v_max = ImMax(v_max, v); + } + if (scale_min == FLT_MAX) + scale_min = v_min; + if (scale_max == FLT_MAX) + scale_max = v_max; + } + + RenderFrame(frame_bb.Min, frame_bb.Max, GetColorU32(ImGuiCol_FrameBg), true, style.FrameRounding); + + const int values_count_min = (plot_type == ImGuiPlotType_Lines) ? 2 : 1; + int idx_hovered = -1; + if (values_count >= values_count_min) + { + int res_w = ImMin((int)frame_size.x, values_count) + ((plot_type == ImGuiPlotType_Lines) ? -1 : 0); + int item_count = values_count + ((plot_type == ImGuiPlotType_Lines) ? -1 : 0); + + // Tooltip on hover + if (hovered && inner_bb.Contains(g.IO.MousePos)) + { + const float t = ImClamp((g.IO.MousePos.x - inner_bb.Min.x) / (inner_bb.Max.x - inner_bb.Min.x), 0.0f, 0.9999f); + const int v_idx = (int)(t * item_count); + IM_ASSERT(v_idx >= 0 && v_idx < values_count); + + const float v0 = values_getter(data, (v_idx + values_offset) % values_count); + const float v1 = values_getter(data, (v_idx + 1 + values_offset) % values_count); + if (plot_type == ImGuiPlotType_Lines) + SetTooltip("%d: %8.4g\n%d: %8.4g", v_idx, v0, v_idx + 1, v1); + else if (plot_type == ImGuiPlotType_Histogram) + SetTooltip("%d: %8.4g", v_idx, v0); + idx_hovered = v_idx; + } + + const float t_step = 1.0f / (float)res_w; + const float inv_scale = (scale_min == scale_max) ? 0.0f : (1.0f / (scale_max - scale_min)); + + float v0 = values_getter(data, (0 + values_offset) % values_count); + float t0 = 0.0f; + ImVec2 tp0 = ImVec2( t0, 1.0f - ImSaturate((v0 - scale_min) * inv_scale) ); // Point in the normalized space of our target rectangle + float histogram_zero_line_t = (scale_min * scale_max < 0.0f) ? (1 + scale_min * inv_scale) : (scale_min < 0.0f ? 0.0f : 1.0f); // Where does the zero line stands + + const ImU32 col_base = GetColorU32((plot_type == ImGuiPlotType_Lines) ? ImGuiCol_PlotLines : ImGuiCol_PlotHistogram); + const ImU32 col_hovered = GetColorU32((plot_type == ImGuiPlotType_Lines) ? ImGuiCol_PlotLinesHovered : ImGuiCol_PlotHistogramHovered); + + for (int n = 0; n < res_w; n++) + { + const float t1 = t0 + t_step; + const int v1_idx = (int)(t0 * item_count + 0.5f); + IM_ASSERT(v1_idx >= 0 && v1_idx < values_count); + const float v1 = values_getter(data, (v1_idx + values_offset + 1) % values_count); + const ImVec2 tp1 = ImVec2( t1, 1.0f - ImSaturate((v1 - scale_min) * inv_scale) ); + + // NB: Draw calls are merged together by the DrawList system. Still, we should render our batch are lower level to save a bit of CPU. + ImVec2 pos0 = ImLerp(inner_bb.Min, inner_bb.Max, tp0); + ImVec2 pos1 = ImLerp(inner_bb.Min, inner_bb.Max, (plot_type == ImGuiPlotType_Lines) ? tp1 : ImVec2(tp1.x, histogram_zero_line_t)); + if (plot_type == ImGuiPlotType_Lines) + { + window->DrawList->AddLine(pos0, pos1, idx_hovered == v1_idx ? col_hovered : col_base); + } + else if (plot_type == ImGuiPlotType_Histogram) + { + if (pos1.x >= pos0.x + 2.0f) + pos1.x -= 1.0f; + window->DrawList->AddRectFilled(pos0, pos1, idx_hovered == v1_idx ? col_hovered : col_base); + } + + t0 = t1; + tp0 = tp1; + } + } + + // Text overlay + if (overlay_text) + RenderTextClipped(ImVec2(frame_bb.Min.x, frame_bb.Min.y + style.FramePadding.y), frame_bb.Max, overlay_text, NULL, NULL, ImVec2(0.5f, 0.0f)); + + if (label_size.x > 0.0f) + RenderText(ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, inner_bb.Min.y), label); + + // Return hovered index or -1 if none are hovered. + // This is currently not exposed in the public API because we need a larger redesign of the whole thing, but in the short-term we are making it available in PlotEx(). + return idx_hovered; +} + +struct ImGuiPlotArrayGetterData +{ + const float* Values; + int Stride; + + ImGuiPlotArrayGetterData(const float* values, int stride) { Values = values; Stride = stride; } +}; + +static float Plot_ArrayGetter(void* data, int idx) +{ + ImGuiPlotArrayGetterData* plot_data = (ImGuiPlotArrayGetterData*)data; + const float v = *(const float*)(const void*)((const unsigned char*)plot_data->Values + (size_t)idx * plot_data->Stride); + return v; +} + +void ImGui::PlotLines(const char* label, const float* values, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size, int stride) +{ + ImGuiPlotArrayGetterData data(values, stride); + PlotEx(ImGuiPlotType_Lines, label, &Plot_ArrayGetter, (void*)&data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); +} + +void ImGui::PlotLines(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size) +{ + PlotEx(ImGuiPlotType_Lines, label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); +} + +void ImGui::PlotHistogram(const char* label, const float* values, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size, int stride) +{ + ImGuiPlotArrayGetterData data(values, stride); + PlotEx(ImGuiPlotType_Histogram, label, &Plot_ArrayGetter, (void*)&data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); +} + +void ImGui::PlotHistogram(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size) +{ + PlotEx(ImGuiPlotType_Histogram, label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: Value helpers +// Those is not very useful, legacy API. +//------------------------------------------------------------------------- +// - Value() +//------------------------------------------------------------------------- + +void ImGui::Value(const char* prefix, bool b) +{ + Text("%s: %s", prefix, (b ? "true" : "false")); +} + +void ImGui::Value(const char* prefix, int v) +{ + Text("%s: %d", prefix, v); +} + +void ImGui::Value(const char* prefix, unsigned int v) +{ + Text("%s: %d", prefix, v); +} + +void ImGui::Value(const char* prefix, float v, const char* float_format) +{ + if (float_format) + { + char fmt[64]; + ImFormatString(fmt, IM_ARRAYSIZE(fmt), "%%s: %s", float_format); + Text(fmt, prefix, v); + } + else + { + Text("%s: %.3f", prefix, v); + } +} + +//------------------------------------------------------------------------- +// [SECTION] MenuItem, BeginMenu, EndMenu, etc. +//------------------------------------------------------------------------- +// - ImGuiMenuColumns [Internal] +// - BeginMenuBar() +// - EndMenuBar() +// - BeginMainMenuBar() +// - EndMainMenuBar() +// - BeginMenu() +// - EndMenu() +// - MenuItemEx() [Internal] +// - MenuItem() +//------------------------------------------------------------------------- + +// Helpers for internal use +void ImGuiMenuColumns::Update(float spacing, bool window_reappearing) +{ + if (window_reappearing) + memset(Widths, 0, sizeof(Widths)); + Spacing = (ImU16)spacing; + CalcNextTotalWidth(true); + memset(Widths, 0, sizeof(Widths)); + TotalWidth = NextTotalWidth; + NextTotalWidth = 0; +} + +void ImGuiMenuColumns::CalcNextTotalWidth(bool update_offsets) +{ + ImU16 offset = 0; + bool want_spacing = false; + for (int i = 0; i < IM_ARRAYSIZE(Widths); i++) + { + ImU16 width = Widths[i]; + if (want_spacing && width > 0) + offset += Spacing; + want_spacing |= (width > 0); + if (update_offsets) + { + if (i == 1) { OffsetLabel = offset; } + if (i == 2) { OffsetShortcut = offset; } + if (i == 3) { OffsetMark = offset; } + } + offset += width; + } + NextTotalWidth = offset; +} + +float ImGuiMenuColumns::DeclColumns(float w_icon, float w_label, float w_shortcut, float w_mark) +{ + Widths[0] = ImMax(Widths[0], (ImU16)w_icon); + Widths[1] = ImMax(Widths[1], (ImU16)w_label); + Widths[2] = ImMax(Widths[2], (ImU16)w_shortcut); + Widths[3] = ImMax(Widths[3], (ImU16)w_mark); + CalcNextTotalWidth(false); + return (float)ImMax(TotalWidth, NextTotalWidth); +} + +// FIXME: Provided a rectangle perhaps e.g. a BeginMenuBarEx() could be used anywhere.. +// Currently the main responsibility of this function being to setup clip-rect + horizontal layout + menu navigation layer. +// Ideally we also want this to be responsible for claiming space out of the main window scrolling rectangle, in which case ImGuiWindowFlags_MenuBar will become unnecessary. +// Then later the same system could be used for multiple menu-bars, scrollbars, side-bars. +bool ImGui::BeginMenuBar() +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + if (!(window->Flags & ImGuiWindowFlags_MenuBar)) + return false; + + IM_ASSERT(!window->DC.MenuBarAppending); + BeginGroup(); // Backup position on layer 0 // FIXME: Misleading to use a group for that backup/restore + PushID("##menubar"); + + // We don't clip with current window clipping rectangle as it is already set to the area below. However we clip with window full rect. + // We remove 1 worth of rounding to Max.x to that text in long menus and small windows don't tend to display over the lower-right rounded area, which looks particularly glitchy. + ImRect bar_rect = window->MenuBarRect(); + ImRect clip_rect(IM_ROUND(bar_rect.Min.x + window->WindowBorderSize), IM_ROUND(bar_rect.Min.y + window->WindowBorderSize), IM_ROUND(ImMax(bar_rect.Min.x, bar_rect.Max.x - ImMax(window->WindowRounding, window->WindowBorderSize))), IM_ROUND(bar_rect.Max.y)); + clip_rect.ClipWith(window->OuterRectClipped); + PushClipRect(clip_rect.Min, clip_rect.Max, false); + + // We overwrite CursorMaxPos because BeginGroup sets it to CursorPos (essentially the .EmitItem hack in EndMenuBar() would need something analogous here, maybe a BeginGroupEx() with flags). + window->DC.CursorPos = window->DC.CursorMaxPos = ImVec2(bar_rect.Min.x + window->DC.MenuBarOffset.x, bar_rect.Min.y + window->DC.MenuBarOffset.y); + window->DC.LayoutType = ImGuiLayoutType_Horizontal; + window->DC.IsSameLine = false; + window->DC.NavLayerCurrent = ImGuiNavLayer_Menu; + window->DC.MenuBarAppending = true; + AlignTextToFramePadding(); + return true; +} + +void ImGui::EndMenuBar() +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + ImGuiContext& g = *GImGui; + + // Nav: When a move request within one of our child menu failed, capture the request to navigate among our siblings. + if (NavMoveRequestButNoResultYet() && (g.NavMoveDir == ImGuiDir_Left || g.NavMoveDir == ImGuiDir_Right) && (g.NavWindow->Flags & ImGuiWindowFlags_ChildMenu)) + { + // Try to find out if the request is for one of our child menu + ImGuiWindow* nav_earliest_child = g.NavWindow; + while (nav_earliest_child->ParentWindow && (nav_earliest_child->ParentWindow->Flags & ImGuiWindowFlags_ChildMenu)) + nav_earliest_child = nav_earliest_child->ParentWindow; + if (nav_earliest_child->ParentWindow == window && nav_earliest_child->DC.ParentLayoutType == ImGuiLayoutType_Horizontal && (g.NavMoveFlags & ImGuiNavMoveFlags_Forwarded) == 0) + { + // To do so we claim focus back, restore NavId and then process the movement request for yet another frame. + // This involve a one-frame delay which isn't very problematic in this situation. We could remove it by scoring in advance for multiple window (probably not worth bothering) + const ImGuiNavLayer layer = ImGuiNavLayer_Menu; + IM_ASSERT(window->DC.NavLayersActiveMaskNext & (1 << layer)); // Sanity check (FIXME: Seems unnecessary) + FocusWindow(window); + SetNavID(window->NavLastIds[layer], layer, 0, window->NavRectRel[layer]); + g.NavDisableHighlight = true; // Hide highlight for the current frame so we don't see the intermediary selection. + g.NavDisableMouseHover = g.NavMousePosDirty = true; + NavMoveRequestForward(g.NavMoveDir, g.NavMoveClipDir, g.NavMoveFlags, g.NavMoveScrollFlags); // Repeat + } + } + + IM_MSVC_WARNING_SUPPRESS(6011); // Static Analysis false positive "warning C6011: Dereferencing NULL pointer 'window'" + IM_ASSERT(window->Flags & ImGuiWindowFlags_MenuBar); + IM_ASSERT(window->DC.MenuBarAppending); + PopClipRect(); + PopID(); + window->DC.MenuBarOffset.x = window->DC.CursorPos.x - window->Pos.x; // Save horizontal position so next append can reuse it. This is kinda equivalent to a per-layer CursorPos. + g.GroupStack.back().EmitItem = false; + EndGroup(); // Restore position on layer 0 + window->DC.LayoutType = ImGuiLayoutType_Vertical; + window->DC.IsSameLine = false; + window->DC.NavLayerCurrent = ImGuiNavLayer_Main; + window->DC.MenuBarAppending = false; +} + +// Important: calling order matters! +// FIXME: Somehow overlapping with docking tech. +// FIXME: The "rect-cut" aspect of this could be formalized into a lower-level helper (rect-cut: https://halt.software/dead-simple-layouts) +bool ImGui::BeginViewportSideBar(const char* name, ImGuiViewport* viewport_p, ImGuiDir dir, float axis_size, ImGuiWindowFlags window_flags) +{ + IM_ASSERT(dir != ImGuiDir_None); + + ImGuiWindow* bar_window = FindWindowByName(name); + if (bar_window == NULL || bar_window->BeginCount == 0) + { + // Calculate and set window size/position + ImGuiViewportP* viewport = (ImGuiViewportP*)(void*)(viewport_p ? viewport_p : GetMainViewport()); + ImRect avail_rect = viewport->GetBuildWorkRect(); + ImGuiAxis axis = (dir == ImGuiDir_Up || dir == ImGuiDir_Down) ? ImGuiAxis_Y : ImGuiAxis_X; + ImVec2 pos = avail_rect.Min; + if (dir == ImGuiDir_Right || dir == ImGuiDir_Down) + pos[axis] = avail_rect.Max[axis] - axis_size; + ImVec2 size = avail_rect.GetSize(); + size[axis] = axis_size; + SetNextWindowPos(pos); + SetNextWindowSize(size); + + // Report our size into work area (for next frame) using actual window size + if (dir == ImGuiDir_Up || dir == ImGuiDir_Left) + viewport->BuildWorkOffsetMin[axis] += axis_size; + else if (dir == ImGuiDir_Down || dir == ImGuiDir_Right) + viewport->BuildWorkOffsetMax[axis] -= axis_size; + } + + window_flags |= ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoMove; + + // Create window + PushStyleColor(ImGuiCol_WindowShadow, ImVec4(0, 0, 0, 0)); + bool is_open = Begin(name, NULL, window_flags); + PopStyleColor(); + + return is_open; +} + +bool ImGui::BeginMainMenuBar() +{ + ImGuiContext& g = *GImGui; + ImGuiViewportP* viewport = (ImGuiViewportP*)(void*)GetMainViewport(); + + // For the main menu bar, which cannot be moved, we honor g.Style.DisplaySafeAreaPadding to ensure text can be visible on a TV set. + // FIXME: This could be generalized as an opt-in way to clamp window->DC.CursorStartPos to avoid SafeArea? + // FIXME: Consider removing support for safe area down the line... it's messy. Nowadays consoles have support for TV calibration in OS settings. + g.NextWindowData.MenuBarOffsetMinVal = ImVec2(g.Style.DisplaySafeAreaPadding.x, ImMax(g.Style.DisplaySafeAreaPadding.y - g.Style.FramePadding.y, 0.0f)); + ImGuiWindowFlags window_flags = ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_MenuBar; + float height = GetFrameHeight(); + bool is_open = BeginViewportSideBar("##MainMenuBar", viewport, ImGuiDir_Up, height, window_flags); + g.NextWindowData.MenuBarOffsetMinVal = ImVec2(0.0f, 0.0f); + + if (is_open) + BeginMenuBar(); + else + End(); + return is_open; +} + +void ImGui::EndMainMenuBar() +{ + EndMenuBar(); + + // When the user has left the menu layer (typically: closed menus through activation of an item), we restore focus to the previous window + // FIXME: With this strategy we won't be able to restore a NULL focus. + ImGuiContext& g = *GImGui; + if (g.CurrentWindow == g.NavWindow && g.NavLayer == ImGuiNavLayer_Main && !g.NavAnyRequest) + FocusTopMostWindowUnderOne(g.NavWindow, NULL, NULL, ImGuiFocusRequestFlags_UnlessBelowModal | ImGuiFocusRequestFlags_RestoreFocusedChild); + + End(); +} + +static bool IsRootOfOpenMenuSet() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if ((g.OpenPopupStack.Size <= g.BeginPopupStack.Size) || (window->Flags & ImGuiWindowFlags_ChildMenu)) + return false; + + // Initially we used 'upper_popup->OpenParentId == window->IDStack.back()' to differentiate multiple menu sets from each others + // (e.g. inside menu bar vs loose menu items) based on parent ID. + // This would however prevent the use of e.g. PushID() user code submitting menus. + // Previously this worked between popup and a first child menu because the first child menu always had the _ChildWindow flag, + // making hovering on parent popup possible while first child menu was focused - but this was generally a bug with other side effects. + // Instead we don't treat Popup specifically (in order to consistently support menu features in them), maybe the first child menu of a Popup + // doesn't have the _ChildWindow flag, and we rely on this IsRootOfOpenMenuSet() check to allow hovering between root window/popup and first child menu. + // In the end, lack of ID check made it so we could no longer differentiate between separate menu sets. To compensate for that, we at least check parent window nav layer. + // This fixes the most common case of menu opening on hover when moving between window content and menu bar. Multiple different menu sets in same nav layer would still + // open on hover, but that should be a lesser problem, because if such menus are close in proximity in window content then it won't feel weird and if they are far apart + // it likely won't be a problem anyone runs into. + const ImGuiPopupData* upper_popup = &g.OpenPopupStack[g.BeginPopupStack.Size]; + if (window->DC.NavLayerCurrent != upper_popup->ParentNavLayer) + return false; + return upper_popup->Window && (upper_popup->Window->Flags & ImGuiWindowFlags_ChildMenu) && ImGui::IsWindowChildOf(upper_popup->Window, window, true); +} + +bool ImGui::BeginMenuEx(const char* label, const char* icon, bool enabled) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + bool menu_is_open = IsPopupOpen(id, ImGuiPopupFlags_None); + + // Sub-menus are ChildWindow so that mouse can be hovering across them (otherwise top-most popup menu would steal focus and not allow hovering on parent menu) + // The first menu in a hierarchy isn't so hovering doesn't get across (otherwise e.g. resizing borders with ImGuiButtonFlags_FlattenChildren would react), but top-most BeginMenu() will bypass that limitation. + ImGuiWindowFlags window_flags = ImGuiWindowFlags_ChildMenu | ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_NoNavFocus; + if (window->Flags & ImGuiWindowFlags_ChildMenu) + window_flags |= ImGuiWindowFlags_ChildWindow; + + // If a menu with same the ID was already submitted, we will append to it, matching the behavior of Begin(). + // We are relying on a O(N) search - so O(N log N) over the frame - which seems like the most efficient for the expected small amount of BeginMenu() calls per frame. + // If somehow this is ever becoming a problem we can switch to use e.g. ImGuiStorage mapping key to last frame used. + if (g.MenusIdSubmittedThisFrame.contains(id)) + { + if (menu_is_open) + menu_is_open = BeginPopupEx(id, window_flags); // menu_is_open can be 'false' when the popup is completely clipped (e.g. zero size display) + else + g.NextWindowData.ClearFlags(); // we behave like Begin() and need to consume those values + return menu_is_open; + } + + // Tag menu as used. Next time BeginMenu() with same ID is called it will append to existing menu + g.MenusIdSubmittedThisFrame.push_back(id); + + ImVec2 label_size = CalcTextSize(label, NULL, true); + + // Odd hack to allow hovering across menus of a same menu-set (otherwise we wouldn't be able to hover parent without always being a Child window) + // This is only done for items for the menu set and not the full parent window. + const bool menuset_is_open = IsRootOfOpenMenuSet(); + if (menuset_is_open) + PushItemFlag(ImGuiItemFlags_NoWindowHoverableCheck, true); + + // The reference position stored in popup_pos will be used by Begin() to find a suitable position for the child menu, + // However the final position is going to be different! It is chosen by FindBestWindowPosForPopup(). + // e.g. Menus tend to overlap each other horizontally to amplify relative Z-ordering. + ImVec2 popup_pos, pos = window->DC.CursorPos; + PushID(label); + if (!enabled) + BeginDisabled(); + const ImGuiMenuColumns* offsets = &window->DC.MenuColumns; + bool pressed; + + // We use ImGuiSelectableFlags_NoSetKeyOwner to allow down on one menu item, move, up on another. + const ImGuiSelectableFlags selectable_flags = ImGuiSelectableFlags_NoHoldingActiveID | ImGuiSelectableFlags_NoSetKeyOwner | ImGuiSelectableFlags_SelectOnClick | ImGuiSelectableFlags_DontClosePopups; + if (window->DC.LayoutType == ImGuiLayoutType_Horizontal) + { + // Menu inside an horizontal menu bar + // Selectable extend their highlight by half ItemSpacing in each direction. + // For ChildMenu, the popup position will be overwritten by the call to FindBestWindowPosForPopup() in Begin() + popup_pos = ImVec2(pos.x - 1.0f - IM_FLOOR(style.ItemSpacing.x * 0.5f), pos.y - style.FramePadding.y + window->MenuBarHeight()); + window->DC.CursorPos.x += IM_FLOOR(style.ItemSpacing.x * 0.5f); + PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(style.ItemSpacing.x * 2.0f, style.ItemSpacing.y)); + float w = label_size.x; + ImVec2 text_pos(window->DC.CursorPos.x + offsets->OffsetLabel, window->DC.CursorPos.y + window->DC.CurrLineTextBaseOffset); + pressed = Selectable("", menu_is_open, selectable_flags, ImVec2(w, label_size.y)); + RenderText(text_pos, label); + PopStyleVar(); + window->DC.CursorPos.x += IM_FLOOR(style.ItemSpacing.x * (-1.0f + 0.5f)); // -1 spacing to compensate the spacing added when Selectable() did a SameLine(). It would also work to call SameLine() ourselves after the PopStyleVar(). + } + else + { + // Menu inside a regular/vertical menu + // (In a typical menu window where all items are BeginMenu() or MenuItem() calls, extra_w will always be 0.0f. + // Only when they are other items sticking out we're going to add spacing, yet only register minimum width into the layout system. + popup_pos = ImVec2(pos.x, pos.y - style.WindowPadding.y); + float icon_w = (icon && icon[0]) ? CalcTextSize(icon, NULL).x : 0.0f; + float checkmark_w = IM_FLOOR(g.FontSize * 1.20f); + float min_w = window->DC.MenuColumns.DeclColumns(icon_w, label_size.x, 0.0f, checkmark_w); // Feedback to next frame + float extra_w = ImMax(0.0f, GetContentRegionAvail().x - min_w); + ImVec2 text_pos(window->DC.CursorPos.x + offsets->OffsetLabel, window->DC.CursorPos.y + window->DC.CurrLineTextBaseOffset); + pressed = Selectable("", menu_is_open, selectable_flags | ImGuiSelectableFlags_SpanAvailWidth, ImVec2(min_w, label_size.y)); + RenderText(text_pos, label); + if (icon_w > 0.0f) + RenderText(pos + ImVec2(offsets->OffsetIcon, 0.0f), icon); + RenderArrow(window->DrawList, pos + ImVec2(offsets->OffsetMark + extra_w + g.FontSize * 0.30f, 0.0f), GetColorU32(ImGuiCol_Text), ImGuiDir_Right); + } + if (!enabled) + EndDisabled(); + + const bool hovered = (g.HoveredId == id) && enabled && !g.NavDisableMouseHover; + if (menuset_is_open) + PopItemFlag(); + + bool want_open = false; + bool want_close = false; + if (window->DC.LayoutType == ImGuiLayoutType_Vertical) // (window->Flags & (ImGuiWindowFlags_Popup|ImGuiWindowFlags_ChildMenu)) + { + // Close menu when not hovering it anymore unless we are moving roughly in the direction of the menu + // Implement http://bjk5.com/post/44698559168/breaking-down-amazons-mega-dropdown to avoid using timers, so menus feels more reactive. + bool moving_toward_child_menu = false; + ImGuiPopupData* child_popup = (g.BeginPopupStack.Size < g.OpenPopupStack.Size) ? &g.OpenPopupStack[g.BeginPopupStack.Size] : NULL; // Popup candidate (testing below) + ImGuiWindow* child_menu_window = (child_popup && child_popup->Window && child_popup->Window->ParentWindow == window) ? child_popup->Window : NULL; + if (g.HoveredWindow == window && child_menu_window != NULL) + { + float ref_unit = g.FontSize; // FIXME-DPI + float child_dir = (window->Pos.x < child_menu_window->Pos.x) ? 1.0f : -1.0f; + ImRect next_window_rect = child_menu_window->Rect(); + ImVec2 ta = (g.IO.MousePos - g.IO.MouseDelta); + ImVec2 tb = (child_dir > 0.0f) ? next_window_rect.GetTL() : next_window_rect.GetTR(); + ImVec2 tc = (child_dir > 0.0f) ? next_window_rect.GetBL() : next_window_rect.GetBR(); + float extra = ImClamp(ImFabs(ta.x - tb.x) * 0.30f, ref_unit * 0.5f, ref_unit * 2.5f); // add a bit of extra slack. + ta.x += child_dir * -0.5f; + tb.x += child_dir * ref_unit; + tc.x += child_dir * ref_unit; + tb.y = ta.y + ImMax((tb.y - extra) - ta.y, -ref_unit * 8.0f); // triangle has maximum height to limit the slope and the bias toward large sub-menus + tc.y = ta.y + ImMin((tc.y + extra) - ta.y, +ref_unit * 8.0f); + moving_toward_child_menu = ImTriangleContainsPoint(ta, tb, tc, g.IO.MousePos); + //GetForegroundDrawList()->AddTriangleFilled(ta, tb, tc, moving_toward_child_menu ? IM_COL32(0,128,0,128) : IM_COL32(128,0,0,128)); // [DEBUG] + } + + // The 'HovereWindow == window' check creates an inconsistency (e.g. moving away from menu slowly tends to hit same window, whereas moving away fast does not) + // But we also need to not close the top-menu menu when moving over void. Perhaps we should extend the triangle check to a larger polygon. + // (Remember to test this on BeginPopup("A")->BeginMenu("B") sequence which behaves slightly differently as B isn't a Child of A and hovering isn't shared.) + if (menu_is_open && !hovered && g.HoveredWindow == window && !moving_toward_child_menu && !g.NavDisableMouseHover) + want_close = true; + + // Open + if (!menu_is_open && pressed) // Click/activate to open + want_open = true; + else if (!menu_is_open && hovered && !moving_toward_child_menu) // Hover to open + want_open = true; + if (g.NavId == id && g.NavMoveDir == ImGuiDir_Right) // Nav-Right to open + { + want_open = true; + NavMoveRequestCancel(); + } + } + else + { + // Menu bar + if (menu_is_open && pressed && menuset_is_open) // Click an open menu again to close it + { + want_close = true; + want_open = menu_is_open = false; + } + else if (pressed || (hovered && menuset_is_open && !menu_is_open)) // First click to open, then hover to open others + { + want_open = true; + } + else if (g.NavId == id && g.NavMoveDir == ImGuiDir_Down) // Nav-Down to open + { + want_open = true; + NavMoveRequestCancel(); + } + } + + if (!enabled) // explicitly close if an open menu becomes disabled, facilitate users code a lot in pattern such as 'if (BeginMenu("options", has_object)) { ..use object.. }' + want_close = true; + if (want_close && IsPopupOpen(id, ImGuiPopupFlags_None)) + ClosePopupToLevel(g.BeginPopupStack.Size, true); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags | ImGuiItemStatusFlags_Openable | (menu_is_open ? ImGuiItemStatusFlags_Opened : 0)); + PopID(); + + if (want_open && !menu_is_open && g.OpenPopupStack.Size > g.BeginPopupStack.Size) + { + // Don't reopen/recycle same menu level in the same frame, first close the other menu and yield for a frame. + OpenPopup(label); + } + else if (want_open) + { + menu_is_open = true; + OpenPopup(label); + } + + if (menu_is_open) + { + ImGuiLastItemData last_item_in_parent = g.LastItemData; + SetNextWindowPos(popup_pos, ImGuiCond_Always); // Note: misleading: the value will serve as reference for FindBestWindowPosForPopup(), not actual pos. + PushStyleVar(ImGuiStyleVar_ChildRounding, style.PopupRounding); // First level will use _PopupRounding, subsequent will use _ChildRounding + menu_is_open = BeginPopupEx(id, window_flags); // menu_is_open can be 'false' when the popup is completely clipped (e.g. zero size display) + PopStyleVar(); + if (menu_is_open) + { + // Restore LastItemData so IsItemXXXX functions can work after BeginMenu()/EndMenu() + // (This fixes using IsItemClicked() and IsItemHovered(), but IsItemHovered() also relies on its support for ImGuiItemFlags_NoWindowHoverableCheck) + g.LastItemData = last_item_in_parent; + if (g.HoveredWindow == window) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HoveredWindow; + } + } + else + { + g.NextWindowData.ClearFlags(); // We behave like Begin() and need to consume those values + } + + return menu_is_open; +} + +bool ImGui::BeginMenu(const char* label, bool enabled) +{ + return BeginMenuEx(label, NULL, enabled); +} + +void ImGui::EndMenu() +{ + // Nav: When a left move request our menu failed, close ourselves. + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(window->Flags & ImGuiWindowFlags_Popup); // Mismatched BeginMenu()/EndMenu() calls + ImGuiWindow* parent_window = window->ParentWindow; // Should always be != NULL is we passed assert. + if (window->BeginCount == window->BeginCountPreviousFrame) + if (g.NavMoveDir == ImGuiDir_Left && NavMoveRequestButNoResultYet()) + if (g.NavWindow && (g.NavWindow->RootWindowForNav == window) && parent_window->DC.LayoutType == ImGuiLayoutType_Vertical) + { + ClosePopupToLevel(g.BeginPopupStack.Size - 1, true); + NavMoveRequestCancel(); + } + + EndPopup(); +} + +bool ImGui::MenuItemEx(const char* label, const char* icon, const char* shortcut, bool selected, bool enabled) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + ImGuiStyle& style = g.Style; + ImVec2 pos = window->DC.CursorPos; + ImVec2 label_size = CalcTextSize(label, NULL, true); + + // See BeginMenuEx() for comments about this. + const bool menuset_is_open = IsRootOfOpenMenuSet(); + if (menuset_is_open) + PushItemFlag(ImGuiItemFlags_NoWindowHoverableCheck, true); + + // We've been using the equivalent of ImGuiSelectableFlags_SetNavIdOnHover on all Selectable() since early Nav system days (commit 43ee5d73), + // but I am unsure whether this should be kept at all. For now moved it to be an opt-in feature used by menus only. + bool pressed; + PushID(label); + if (!enabled) + BeginDisabled(); + + // We use ImGuiSelectableFlags_NoSetKeyOwner to allow down on one menu item, move, up on another. + const ImGuiSelectableFlags selectable_flags = ImGuiSelectableFlags_SelectOnRelease | ImGuiSelectableFlags_NoSetKeyOwner | ImGuiSelectableFlags_SetNavIdOnHover; + const ImGuiMenuColumns* offsets = &window->DC.MenuColumns; + if (window->DC.LayoutType == ImGuiLayoutType_Horizontal) + { + // Mimic the exact layout spacing of BeginMenu() to allow MenuItem() inside a menu bar, which is a little misleading but may be useful + // Note that in this situation: we don't render the shortcut, we render a highlight instead of the selected tick mark. + float w = label_size.x; + window->DC.CursorPos.x += IM_FLOOR(style.ItemSpacing.x * 0.5f); + ImVec2 text_pos(window->DC.CursorPos.x + offsets->OffsetLabel, window->DC.CursorPos.y + window->DC.CurrLineTextBaseOffset); + PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(style.ItemSpacing.x * 2.0f, style.ItemSpacing.y)); + pressed = Selectable("", selected, selectable_flags, ImVec2(w, 0.0f)); + PopStyleVar(); + if (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_Visible) + RenderText(text_pos, label); + window->DC.CursorPos.x += IM_FLOOR(style.ItemSpacing.x * (-1.0f + 0.5f)); // -1 spacing to compensate the spacing added when Selectable() did a SameLine(). It would also work to call SameLine() ourselves after the PopStyleVar(). + } + else + { + // Menu item inside a vertical menu + // (In a typical menu window where all items are BeginMenu() or MenuItem() calls, extra_w will always be 0.0f. + // Only when they are other items sticking out we're going to add spacing, yet only register minimum width into the layout system. + float icon_w = (icon && icon[0]) ? CalcTextSize(icon, NULL).x : 0.0f; + float shortcut_w = (shortcut && shortcut[0]) ? CalcTextSize(shortcut, NULL).x : 0.0f; + float checkmark_w = IM_FLOOR(g.FontSize * 1.20f); + float min_w = window->DC.MenuColumns.DeclColumns(icon_w, label_size.x, shortcut_w, checkmark_w); // Feedback for next frame + float stretch_w = ImMax(0.0f, GetContentRegionAvail().x - min_w); + pressed = Selectable("", false, selectable_flags | ImGuiSelectableFlags_SpanAvailWidth, ImVec2(min_w, label_size.y)); + if (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_Visible) + { + RenderText(pos + ImVec2(offsets->OffsetLabel, 0.0f), label); + if (icon_w > 0.0f) + RenderText(pos + ImVec2(offsets->OffsetIcon, 0.0f), icon); + if (shortcut_w > 0.0f) + { + PushStyleColor(ImGuiCol_Text, style.Colors[ImGuiCol_TextDisabled]); + RenderText(pos + ImVec2(offsets->OffsetShortcut + stretch_w, 0.0f), shortcut, NULL, false); + PopStyleColor(); + } + if (selected) + RenderCheckMark(window->DrawList, pos + ImVec2(offsets->OffsetMark + stretch_w + g.FontSize * 0.40f, g.FontSize * 0.134f * 0.5f), GetColorU32(ImGuiCol_Text), g.FontSize * 0.866f); + } + } + IMGUI_TEST_ENGINE_ITEM_INFO(g.LastItemData.ID, label, g.LastItemData.StatusFlags | ImGuiItemStatusFlags_Checkable | (selected ? ImGuiItemStatusFlags_Checked : 0)); + if (!enabled) + EndDisabled(); + PopID(); + if (menuset_is_open) + PopItemFlag(); + + return pressed; +} + +bool ImGui::MenuItem(const char* label, const char* shortcut, bool selected, bool enabled) +{ + return MenuItemEx(label, NULL, shortcut, selected, enabled); +} + +bool ImGui::MenuItem(const char* label, const char* shortcut, bool* p_selected, bool enabled) +{ + if (MenuItemEx(label, NULL, shortcut, p_selected ? *p_selected : false, enabled)) + { + if (p_selected) + *p_selected = !*p_selected; + return true; + } + return false; +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: BeginTabBar, EndTabBar, etc. +//------------------------------------------------------------------------- +// - BeginTabBar() +// - BeginTabBarEx() [Internal] +// - EndTabBar() +// - TabBarLayout() [Internal] +// - TabBarCalcTabID() [Internal] +// - TabBarCalcMaxTabWidth() [Internal] +// - TabBarFindTabById() [Internal] +// - TabBarFindTabByOrder() [Internal] +// - TabBarGetCurrentTab() [Internal] +// - TabBarGetTabName() [Internal] +// - TabBarRemoveTab() [Internal] +// - TabBarCloseTab() [Internal] +// - TabBarScrollClamp() [Internal] +// - TabBarScrollToTab() [Internal] +// - TabBarQueueFocus() [Internal] +// - TabBarQueueReorder() [Internal] +// - TabBarProcessReorderFromMousePos() [Internal] +// - TabBarProcessReorder() [Internal] +// - TabBarScrollingButtons() [Internal] +// - TabBarTabListPopupButton() [Internal] +//------------------------------------------------------------------------- + +struct ImGuiTabBarSection +{ + int TabCount; // Number of tabs in this section. + float Width; // Sum of width of tabs in this section (after shrinking down) + float Spacing; // Horizontal spacing at the end of the section. + + ImGuiTabBarSection() { memset(this, 0, sizeof(*this)); } +}; + +namespace ImGui +{ + static void TabBarLayout(ImGuiTabBar* tab_bar); + static ImU32 TabBarCalcTabID(ImGuiTabBar* tab_bar, const char* label, ImGuiWindow* docked_window); + static float TabBarCalcMaxTabWidth(); + static float TabBarScrollClamp(ImGuiTabBar* tab_bar, float scrolling); + static void TabBarScrollToTab(ImGuiTabBar* tab_bar, ImGuiID tab_id, ImGuiTabBarSection* sections); + static ImGuiTabItem* TabBarScrollingButtons(ImGuiTabBar* tab_bar); + static ImGuiTabItem* TabBarTabListPopupButton(ImGuiTabBar* tab_bar); +} + +ImGuiTabBar::ImGuiTabBar() +{ + memset(this, 0, sizeof(*this)); + CurrFrameVisible = PrevFrameVisible = -1; + LastTabItemIdx = -1; +} + +static inline int TabItemGetSectionIdx(const ImGuiTabItem* tab) +{ + return (tab->Flags & ImGuiTabItemFlags_Leading) ? 0 : (tab->Flags & ImGuiTabItemFlags_Trailing) ? 2 : 1; +} + +static int IMGUI_CDECL TabItemComparerBySection(const void* lhs, const void* rhs) +{ + const ImGuiTabItem* a = (const ImGuiTabItem*)lhs; + const ImGuiTabItem* b = (const ImGuiTabItem*)rhs; + const int a_section = TabItemGetSectionIdx(a); + const int b_section = TabItemGetSectionIdx(b); + if (a_section != b_section) + return a_section - b_section; + return (int)(a->IndexDuringLayout - b->IndexDuringLayout); +} + +static int IMGUI_CDECL TabItemComparerByBeginOrder(const void* lhs, const void* rhs) +{ + const ImGuiTabItem* a = (const ImGuiTabItem*)lhs; + const ImGuiTabItem* b = (const ImGuiTabItem*)rhs; + return (int)(a->BeginOrder - b->BeginOrder); +} + +static ImGuiTabBar* GetTabBarFromTabBarRef(const ImGuiPtrOrIndex& ref) +{ + ImGuiContext& g = *GImGui; + return ref.Ptr ? (ImGuiTabBar*)ref.Ptr : g.TabBars.GetByIndex(ref.Index); +} + +static ImGuiPtrOrIndex GetTabBarRefFromTabBar(ImGuiTabBar* tab_bar) +{ + ImGuiContext& g = *GImGui; + if (g.TabBars.Contains(tab_bar)) + return ImGuiPtrOrIndex(g.TabBars.GetIndex(tab_bar)); + return ImGuiPtrOrIndex(tab_bar); +} + +bool ImGui::BeginTabBar(const char* str_id, ImGuiTabBarFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return false; + + ImGuiID id = window->GetID(str_id); + ImGuiTabBar* tab_bar = g.TabBars.GetOrAddByKey(id); + ImRect tab_bar_bb = ImRect(window->DC.CursorPos.x, window->DC.CursorPos.y, window->WorkRect.Max.x, window->DC.CursorPos.y + g.FontSize + g.Style.FramePadding.y * 2); + tab_bar->ID = id; + return BeginTabBarEx(tab_bar, tab_bar_bb, flags | ImGuiTabBarFlags_IsFocused); +} + +bool ImGui::BeginTabBarEx(ImGuiTabBar* tab_bar, const ImRect& tab_bar_bb, ImGuiTabBarFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return false; + + if ((flags & ImGuiTabBarFlags_DockNode) == 0) + PushOverrideID(tab_bar->ID); + + // Add to stack + g.CurrentTabBarStack.push_back(GetTabBarRefFromTabBar(tab_bar)); + g.CurrentTabBar = tab_bar; + + // Append with multiple BeginTabBar()/EndTabBar() pairs. + tab_bar->BackupCursorPos = window->DC.CursorPos; + if (tab_bar->CurrFrameVisible == g.FrameCount) + { + window->DC.CursorPos = ImVec2(tab_bar->BarRect.Min.x, tab_bar->BarRect.Max.y + tab_bar->ItemSpacingY); + tab_bar->BeginCount++; + return true; + } + + // Ensure correct ordering when toggling ImGuiTabBarFlags_Reorderable flag, or when a new tab was added while being not reorderable + if ((flags & ImGuiTabBarFlags_Reorderable) != (tab_bar->Flags & ImGuiTabBarFlags_Reorderable) || (tab_bar->TabsAddedNew && !(flags & ImGuiTabBarFlags_Reorderable))) + ImQsort(tab_bar->Tabs.Data, tab_bar->Tabs.Size, sizeof(ImGuiTabItem), TabItemComparerByBeginOrder); + tab_bar->TabsAddedNew = false; + + // Flags + if ((flags & ImGuiTabBarFlags_FittingPolicyMask_) == 0) + flags |= ImGuiTabBarFlags_FittingPolicyDefault_; + + tab_bar->Flags = flags; + tab_bar->BarRect = tab_bar_bb; + tab_bar->WantLayout = true; // Layout will be done on the first call to ItemTab() + tab_bar->PrevFrameVisible = tab_bar->CurrFrameVisible; + tab_bar->CurrFrameVisible = g.FrameCount; + tab_bar->PrevTabsContentsHeight = tab_bar->CurrTabsContentsHeight; + tab_bar->CurrTabsContentsHeight = 0.0f; + tab_bar->ItemSpacingY = g.Style.ItemSpacing.y; + tab_bar->FramePadding = g.Style.FramePadding; + tab_bar->TabsActiveCount = 0; + tab_bar->LastTabItemIdx = -1; + tab_bar->BeginCount = 1; + + // Set cursor pos in a way which only be used in the off-chance the user erroneously submits item before BeginTabItem(): items will overlap + window->DC.CursorPos = ImVec2(tab_bar->BarRect.Min.x, tab_bar->BarRect.Max.y + tab_bar->ItemSpacingY); + + // Draw separator + const ImU32 col = GetColorU32((flags & ImGuiTabBarFlags_IsFocused) ? ImGuiCol_TabActive : ImGuiCol_TabUnfocusedActive); + const float y = tab_bar->BarRect.Max.y - 1.0f; + { + const float separator_min_x = tab_bar->BarRect.Min.x - IM_FLOOR(window->WindowPadding.x * 0.5f); + const float separator_max_x = tab_bar->BarRect.Max.x + IM_FLOOR(window->WindowPadding.x * 0.5f); + window->DrawList->AddLine(ImVec2(separator_min_x, y), ImVec2(separator_max_x, y), col, 1.0f); + } + return true; +} + +void ImGui::EndTabBar() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return; + + ImGuiTabBar* tab_bar = g.CurrentTabBar; + if (tab_bar == NULL) + { + IM_ASSERT_USER_ERROR(tab_bar != NULL, "Mismatched BeginTabBar()/EndTabBar()!"); + return; + } + + // Fallback in case no TabItem have been submitted + if (tab_bar->WantLayout) + TabBarLayout(tab_bar); + + // Restore the last visible height if no tab is visible, this reduce vertical flicker/movement when a tabs gets removed without calling SetTabItemClosed(). + const bool tab_bar_appearing = (tab_bar->PrevFrameVisible + 1 < g.FrameCount); + if (tab_bar->VisibleTabWasSubmitted || tab_bar->VisibleTabId == 0 || tab_bar_appearing) + { + tab_bar->CurrTabsContentsHeight = ImMax(window->DC.CursorPos.y - tab_bar->BarRect.Max.y, tab_bar->CurrTabsContentsHeight); + window->DC.CursorPos.y = tab_bar->BarRect.Max.y + tab_bar->CurrTabsContentsHeight; + } + else + { + window->DC.CursorPos.y = tab_bar->BarRect.Max.y + tab_bar->PrevTabsContentsHeight; + } + if (tab_bar->BeginCount > 1) + window->DC.CursorPos = tab_bar->BackupCursorPos; + + tab_bar->LastTabItemIdx = -1; + if ((tab_bar->Flags & ImGuiTabBarFlags_DockNode) == 0) + PopID(); + + g.CurrentTabBarStack.pop_back(); + g.CurrentTabBar = g.CurrentTabBarStack.empty() ? NULL : GetTabBarFromTabBarRef(g.CurrentTabBarStack.back()); +} + +// Scrolling happens only in the central section (leading/trailing sections are not scrolling) +static float TabBarCalcScrollableWidth(ImGuiTabBar* tab_bar, ImGuiTabBarSection* sections) +{ + return tab_bar->BarRect.GetWidth() - sections[0].Width - sections[2].Width - sections[1].Spacing; +} + +// This is called only once a frame before by the first call to ItemTab() +// The reason we're not calling it in BeginTabBar() is to leave a chance to the user to call the SetTabItemClosed() functions. +static void ImGui::TabBarLayout(ImGuiTabBar* tab_bar) +{ + ImGuiContext& g = *GImGui; + tab_bar->WantLayout = false; + + // Garbage collect by compacting list + // Detect if we need to sort out tab list (e.g. in rare case where a tab changed section) + int tab_dst_n = 0; + bool need_sort_by_section = false; + ImGuiTabBarSection sections[3]; // Layout sections: Leading, Central, Trailing + for (int tab_src_n = 0; tab_src_n < tab_bar->Tabs.Size; tab_src_n++) + { + ImGuiTabItem* tab = &tab_bar->Tabs[tab_src_n]; + if (tab->LastFrameVisible < tab_bar->PrevFrameVisible || tab->WantClose) + { + // Remove tab + if (tab_bar->VisibleTabId == tab->ID) { tab_bar->VisibleTabId = 0; } + if (tab_bar->SelectedTabId == tab->ID) { tab_bar->SelectedTabId = 0; } + if (tab_bar->NextSelectedTabId == tab->ID) { tab_bar->NextSelectedTabId = 0; } + continue; + } + if (tab_dst_n != tab_src_n) + tab_bar->Tabs[tab_dst_n] = tab_bar->Tabs[tab_src_n]; + + tab = &tab_bar->Tabs[tab_dst_n]; + tab->IndexDuringLayout = (ImS16)tab_dst_n; + + // We will need sorting if tabs have changed section (e.g. moved from one of Leading/Central/Trailing to another) + int curr_tab_section_n = TabItemGetSectionIdx(tab); + if (tab_dst_n > 0) + { + ImGuiTabItem* prev_tab = &tab_bar->Tabs[tab_dst_n - 1]; + int prev_tab_section_n = TabItemGetSectionIdx(prev_tab); + if (curr_tab_section_n == 0 && prev_tab_section_n != 0) + need_sort_by_section = true; + if (prev_tab_section_n == 2 && curr_tab_section_n != 2) + need_sort_by_section = true; + } + + sections[curr_tab_section_n].TabCount++; + tab_dst_n++; + } + if (tab_bar->Tabs.Size != tab_dst_n) + tab_bar->Tabs.resize(tab_dst_n); + + if (need_sort_by_section) + ImQsort(tab_bar->Tabs.Data, tab_bar->Tabs.Size, sizeof(ImGuiTabItem), TabItemComparerBySection); + + // Calculate spacing between sections + sections[0].Spacing = sections[0].TabCount > 0 && (sections[1].TabCount + sections[2].TabCount) > 0 ? g.Style.ItemInnerSpacing.x : 0.0f; + sections[1].Spacing = sections[1].TabCount > 0 && sections[2].TabCount > 0 ? g.Style.ItemInnerSpacing.x : 0.0f; + + // Setup next selected tab + ImGuiID scroll_to_tab_id = 0; + if (tab_bar->NextSelectedTabId) + { + tab_bar->SelectedTabId = tab_bar->NextSelectedTabId; + tab_bar->NextSelectedTabId = 0; + scroll_to_tab_id = tab_bar->SelectedTabId; + } + + // Process order change request (we could probably process it when requested but it's just saner to do it in a single spot). + if (tab_bar->ReorderRequestTabId != 0) + { + if (TabBarProcessReorder(tab_bar)) + if (tab_bar->ReorderRequestTabId == tab_bar->SelectedTabId) + scroll_to_tab_id = tab_bar->ReorderRequestTabId; + tab_bar->ReorderRequestTabId = 0; + } + + // Tab List Popup (will alter tab_bar->BarRect and therefore the available width!) + const bool tab_list_popup_button = (tab_bar->Flags & ImGuiTabBarFlags_TabListPopupButton) != 0; + if (tab_list_popup_button) + if (ImGuiTabItem* tab_to_select = TabBarTabListPopupButton(tab_bar)) // NB: Will alter BarRect.Min.x! + scroll_to_tab_id = tab_bar->SelectedTabId = tab_to_select->ID; + + // Leading/Trailing tabs will be shrink only if central one aren't visible anymore, so layout the shrink data as: leading, trailing, central + // (whereas our tabs are stored as: leading, central, trailing) + int shrink_buffer_indexes[3] = { 0, sections[0].TabCount + sections[2].TabCount, sections[0].TabCount }; + g.ShrinkWidthBuffer.resize(tab_bar->Tabs.Size); + + // Compute ideal tabs widths + store them into shrink buffer + ImGuiTabItem* most_recently_selected_tab = NULL; + int curr_section_n = -1; + bool found_selected_tab_id = false; + for (int tab_n = 0; tab_n < tab_bar->Tabs.Size; tab_n++) + { + ImGuiTabItem* tab = &tab_bar->Tabs[tab_n]; + IM_ASSERT(tab->LastFrameVisible >= tab_bar->PrevFrameVisible); + + if ((most_recently_selected_tab == NULL || most_recently_selected_tab->LastFrameSelected < tab->LastFrameSelected) && !(tab->Flags & ImGuiTabItemFlags_Button)) + most_recently_selected_tab = tab; + if (tab->ID == tab_bar->SelectedTabId) + found_selected_tab_id = true; + if (scroll_to_tab_id == 0 && g.NavJustMovedToId == tab->ID) + scroll_to_tab_id = tab->ID; + + // Refresh tab width immediately, otherwise changes of style e.g. style.FramePadding.x would noticeably lag in the tab bar. + // Additionally, when using TabBarAddTab() to manipulate tab bar order we occasionally insert new tabs that don't have a width yet, + // and we cannot wait for the next BeginTabItem() call. We cannot compute this width within TabBarAddTab() because font size depends on the active window. + const char* tab_name = TabBarGetTabName(tab_bar, tab); + const bool has_close_button_or_unsaved_marker = (tab->Flags & ImGuiTabItemFlags_NoCloseButton) == 0 || (tab->Flags & ImGuiTabItemFlags_UnsavedDocument); + tab->ContentWidth = (tab->RequestedWidth >= 0.0f) ? tab->RequestedWidth : TabItemCalcSize(tab_name, has_close_button_or_unsaved_marker).x; + + int section_n = TabItemGetSectionIdx(tab); + ImGuiTabBarSection* section = §ions[section_n]; + section->Width += tab->ContentWidth + (section_n == curr_section_n ? g.Style.ItemInnerSpacing.x : 0.0f); + curr_section_n = section_n; + + // Store data so we can build an array sorted by width if we need to shrink tabs down + IM_MSVC_WARNING_SUPPRESS(6385); + ImGuiShrinkWidthItem* shrink_width_item = &g.ShrinkWidthBuffer[shrink_buffer_indexes[section_n]++]; + shrink_width_item->Index = tab_n; + shrink_width_item->Width = shrink_width_item->InitialWidth = tab->ContentWidth; + tab->Width = ImMax(tab->ContentWidth, 1.0f); + } + + // Compute total ideal width (used for e.g. auto-resizing a window) + tab_bar->WidthAllTabsIdeal = 0.0f; + for (int section_n = 0; section_n < 3; section_n++) + tab_bar->WidthAllTabsIdeal += sections[section_n].Width + sections[section_n].Spacing; + + // Horizontal scrolling buttons + // (note that TabBarScrollButtons() will alter BarRect.Max.x) + if ((tab_bar->WidthAllTabsIdeal > tab_bar->BarRect.GetWidth() && tab_bar->Tabs.Size > 1) && !(tab_bar->Flags & ImGuiTabBarFlags_NoTabListScrollingButtons) && (tab_bar->Flags & ImGuiTabBarFlags_FittingPolicyScroll)) + if (ImGuiTabItem* scroll_and_select_tab = TabBarScrollingButtons(tab_bar)) + { + scroll_to_tab_id = scroll_and_select_tab->ID; + if ((scroll_and_select_tab->Flags & ImGuiTabItemFlags_Button) == 0) + tab_bar->SelectedTabId = scroll_to_tab_id; + } + + // Shrink widths if full tabs don't fit in their allocated space + float section_0_w = sections[0].Width + sections[0].Spacing; + float section_1_w = sections[1].Width + sections[1].Spacing; + float section_2_w = sections[2].Width + sections[2].Spacing; + bool central_section_is_visible = (section_0_w + section_2_w) < tab_bar->BarRect.GetWidth(); + float width_excess; + if (central_section_is_visible) + width_excess = ImMax(section_1_w - (tab_bar->BarRect.GetWidth() - section_0_w - section_2_w), 0.0f); // Excess used to shrink central section + else + width_excess = (section_0_w + section_2_w) - tab_bar->BarRect.GetWidth(); // Excess used to shrink leading/trailing section + + // With ImGuiTabBarFlags_FittingPolicyScroll policy, we will only shrink leading/trailing if the central section is not visible anymore + if (width_excess >= 1.0f && ((tab_bar->Flags & ImGuiTabBarFlags_FittingPolicyResizeDown) || !central_section_is_visible)) + { + int shrink_data_count = (central_section_is_visible ? sections[1].TabCount : sections[0].TabCount + sections[2].TabCount); + int shrink_data_offset = (central_section_is_visible ? sections[0].TabCount + sections[2].TabCount : 0); + ShrinkWidths(g.ShrinkWidthBuffer.Data + shrink_data_offset, shrink_data_count, width_excess); + + // Apply shrunk values into tabs and sections + for (int tab_n = shrink_data_offset; tab_n < shrink_data_offset + shrink_data_count; tab_n++) + { + ImGuiTabItem* tab = &tab_bar->Tabs[g.ShrinkWidthBuffer[tab_n].Index]; + float shrinked_width = IM_FLOOR(g.ShrinkWidthBuffer[tab_n].Width); + if (shrinked_width < 0.0f) + continue; + + shrinked_width = ImMax(1.0f, shrinked_width); + int section_n = TabItemGetSectionIdx(tab); + sections[section_n].Width -= (tab->Width - shrinked_width); + tab->Width = shrinked_width; + } + } + + // Layout all active tabs + int section_tab_index = 0; + float tab_offset = 0.0f; + tab_bar->WidthAllTabs = 0.0f; + for (int section_n = 0; section_n < 3; section_n++) + { + ImGuiTabBarSection* section = §ions[section_n]; + if (section_n == 2) + tab_offset = ImMin(ImMax(0.0f, tab_bar->BarRect.GetWidth() - section->Width), tab_offset); + + for (int tab_n = 0; tab_n < section->TabCount; tab_n++) + { + ImGuiTabItem* tab = &tab_bar->Tabs[section_tab_index + tab_n]; + tab->Offset = tab_offset; + tab->NameOffset = -1; + tab_offset += tab->Width + (tab_n < section->TabCount - 1 ? g.Style.ItemInnerSpacing.x : 0.0f); + } + tab_bar->WidthAllTabs += ImMax(section->Width + section->Spacing, 0.0f); + tab_offset += section->Spacing; + section_tab_index += section->TabCount; + } + + // Clear name buffers + tab_bar->TabsNames.Buf.resize(0); + + // If we have lost the selected tab, select the next most recently active one + if (found_selected_tab_id == false) + tab_bar->SelectedTabId = 0; + if (tab_bar->SelectedTabId == 0 && tab_bar->NextSelectedTabId == 0 && most_recently_selected_tab != NULL) + scroll_to_tab_id = tab_bar->SelectedTabId = most_recently_selected_tab->ID; + + // Lock in visible tab + tab_bar->VisibleTabId = tab_bar->SelectedTabId; + tab_bar->VisibleTabWasSubmitted = false; + + // Apply request requests + if (scroll_to_tab_id != 0) + TabBarScrollToTab(tab_bar, scroll_to_tab_id, sections); + else if ((tab_bar->Flags & ImGuiTabBarFlags_FittingPolicyScroll) && IsMouseHoveringRect(tab_bar->BarRect.Min, tab_bar->BarRect.Max, true) && IsWindowContentHoverable(g.CurrentWindow)) + { + const float wheel = g.IO.MouseWheelRequestAxisSwap ? g.IO.MouseWheel : g.IO.MouseWheelH; + const ImGuiKey wheel_key = g.IO.MouseWheelRequestAxisSwap ? ImGuiKey_MouseWheelY : ImGuiKey_MouseWheelX; + if (TestKeyOwner(wheel_key, tab_bar->ID) && wheel != 0.0f) + { + const float scroll_step = wheel * TabBarCalcScrollableWidth(tab_bar, sections) / 3.0f; + tab_bar->ScrollingTargetDistToVisibility = 0.0f; + tab_bar->ScrollingTarget = TabBarScrollClamp(tab_bar, tab_bar->ScrollingTarget - scroll_step); + } + SetKeyOwner(wheel_key, tab_bar->ID); + } + + // Update scrolling + tab_bar->ScrollingAnim = TabBarScrollClamp(tab_bar, tab_bar->ScrollingAnim); + tab_bar->ScrollingTarget = TabBarScrollClamp(tab_bar, tab_bar->ScrollingTarget); + if (tab_bar->ScrollingAnim != tab_bar->ScrollingTarget) + { + // Scrolling speed adjust itself so we can always reach our target in 1/3 seconds. + // Teleport if we are aiming far off the visible line + tab_bar->ScrollingSpeed = ImMax(tab_bar->ScrollingSpeed, 70.0f * g.FontSize); + tab_bar->ScrollingSpeed = ImMax(tab_bar->ScrollingSpeed, ImFabs(tab_bar->ScrollingTarget - tab_bar->ScrollingAnim) / 0.3f); + const bool teleport = (tab_bar->PrevFrameVisible + 1 < g.FrameCount) || (tab_bar->ScrollingTargetDistToVisibility > 10.0f * g.FontSize); + tab_bar->ScrollingAnim = teleport ? tab_bar->ScrollingTarget : ImLinearSweep(tab_bar->ScrollingAnim, tab_bar->ScrollingTarget, g.IO.DeltaTime * tab_bar->ScrollingSpeed); + } + else + { + tab_bar->ScrollingSpeed = 0.0f; + } + tab_bar->ScrollingRectMinX = tab_bar->BarRect.Min.x + sections[0].Width + sections[0].Spacing; + tab_bar->ScrollingRectMaxX = tab_bar->BarRect.Max.x - sections[2].Width - sections[1].Spacing; + + // Actual layout in host window (we don't do it in BeginTabBar() so as not to waste an extra frame) + ImGuiWindow* window = g.CurrentWindow; + window->DC.CursorPos = tab_bar->BarRect.Min; + ItemSize(ImVec2(tab_bar->WidthAllTabs, tab_bar->BarRect.GetHeight()), tab_bar->FramePadding.y); + window->DC.IdealMaxPos.x = ImMax(window->DC.IdealMaxPos.x, tab_bar->BarRect.Min.x + tab_bar->WidthAllTabsIdeal); +} + +// Dockable windows uses Name/ID in the global namespace. Non-dockable items use the ID stack. +static ImU32 ImGui::TabBarCalcTabID(ImGuiTabBar* tab_bar, const char* label, ImGuiWindow* docked_window) +{ + IM_ASSERT(docked_window == NULL); // master branch only + IM_UNUSED(docked_window); + if (tab_bar->Flags & ImGuiTabBarFlags_DockNode) + { + ImGuiID id = ImHashStr(label); + KeepAliveID(id); + return id; + } + else + { + ImGuiWindow* window = GImGui->CurrentWindow; + return window->GetID(label); + } +} + +static float ImGui::TabBarCalcMaxTabWidth() +{ + ImGuiContext& g = *GImGui; + return g.FontSize * 20.0f; +} + +ImGuiTabItem* ImGui::TabBarFindTabByID(ImGuiTabBar* tab_bar, ImGuiID tab_id) +{ + if (tab_id != 0) + for (int n = 0; n < tab_bar->Tabs.Size; n++) + if (tab_bar->Tabs[n].ID == tab_id) + return &tab_bar->Tabs[n]; + return NULL; +} + +// Order = visible order, not submission order! (which is tab->BeginOrder) +ImGuiTabItem* ImGui::TabBarFindTabByOrder(ImGuiTabBar* tab_bar, int order) +{ + if (order < 0 || order >= tab_bar->Tabs.Size) + return NULL; + return &tab_bar->Tabs[order]; +} + +ImGuiTabItem* ImGui::TabBarGetCurrentTab(ImGuiTabBar* tab_bar) +{ + if (tab_bar->LastTabItemIdx <= 0 || tab_bar->LastTabItemIdx >= tab_bar->Tabs.Size) + return NULL; + return &tab_bar->Tabs[tab_bar->LastTabItemIdx]; +} + +const char* ImGui::TabBarGetTabName(ImGuiTabBar* tab_bar, ImGuiTabItem* tab) +{ + if (tab->NameOffset == -1) + return "N/A"; + IM_ASSERT(tab->NameOffset < tab_bar->TabsNames.Buf.Size); + return tab_bar->TabsNames.Buf.Data + tab->NameOffset; +} + +// The *TabId fields are already set by the docking system _before_ the actual TabItem was created, so we clear them regardless. +void ImGui::TabBarRemoveTab(ImGuiTabBar* tab_bar, ImGuiID tab_id) +{ + if (ImGuiTabItem* tab = TabBarFindTabByID(tab_bar, tab_id)) + tab_bar->Tabs.erase(tab); + if (tab_bar->VisibleTabId == tab_id) { tab_bar->VisibleTabId = 0; } + if (tab_bar->SelectedTabId == tab_id) { tab_bar->SelectedTabId = 0; } + if (tab_bar->NextSelectedTabId == tab_id) { tab_bar->NextSelectedTabId = 0; } +} + +// Called on manual closure attempt +void ImGui::TabBarCloseTab(ImGuiTabBar* tab_bar, ImGuiTabItem* tab) +{ + if (tab->Flags & ImGuiTabItemFlags_Button) + return; // A button appended with TabItemButton(). + + if (!(tab->Flags & ImGuiTabItemFlags_UnsavedDocument)) + { + // This will remove a frame of lag for selecting another tab on closure. + // However we don't run it in the case where the 'Unsaved' flag is set, so user gets a chance to fully undo the closure + tab->WantClose = true; + if (tab_bar->VisibleTabId == tab->ID) + { + tab->LastFrameVisible = -1; + tab_bar->SelectedTabId = tab_bar->NextSelectedTabId = 0; + } + } + else + { + // Actually select before expecting closure attempt (on an UnsavedDocument tab user is expect to e.g. show a popup) + if (tab_bar->VisibleTabId != tab->ID) + TabBarQueueFocus(tab_bar, tab); + } +} + +static float ImGui::TabBarScrollClamp(ImGuiTabBar* tab_bar, float scrolling) +{ + scrolling = ImMin(scrolling, tab_bar->WidthAllTabs - tab_bar->BarRect.GetWidth()); + return ImMax(scrolling, 0.0f); +} + +// Note: we may scroll to tab that are not selected! e.g. using keyboard arrow keys +static void ImGui::TabBarScrollToTab(ImGuiTabBar* tab_bar, ImGuiID tab_id, ImGuiTabBarSection* sections) +{ + ImGuiTabItem* tab = TabBarFindTabByID(tab_bar, tab_id); + if (tab == NULL) + return; + if (tab->Flags & ImGuiTabItemFlags_SectionMask_) + return; + + ImGuiContext& g = *GImGui; + float margin = g.FontSize * 1.0f; // When to scroll to make Tab N+1 visible always make a bit of N visible to suggest more scrolling area (since we don't have a scrollbar) + int order = TabBarGetTabOrder(tab_bar, tab); + + // Scrolling happens only in the central section (leading/trailing sections are not scrolling) + float scrollable_width = TabBarCalcScrollableWidth(tab_bar, sections); + + // We make all tabs positions all relative Sections[0].Width to make code simpler + float tab_x1 = tab->Offset - sections[0].Width + (order > sections[0].TabCount - 1 ? -margin : 0.0f); + float tab_x2 = tab->Offset - sections[0].Width + tab->Width + (order + 1 < tab_bar->Tabs.Size - sections[2].TabCount ? margin : 1.0f); + tab_bar->ScrollingTargetDistToVisibility = 0.0f; + if (tab_bar->ScrollingTarget > tab_x1 || (tab_x2 - tab_x1 >= scrollable_width)) + { + // Scroll to the left + tab_bar->ScrollingTargetDistToVisibility = ImMax(tab_bar->ScrollingAnim - tab_x2, 0.0f); + tab_bar->ScrollingTarget = tab_x1; + } + else if (tab_bar->ScrollingTarget < tab_x2 - scrollable_width) + { + // Scroll to the right + tab_bar->ScrollingTargetDistToVisibility = ImMax((tab_x1 - scrollable_width) - tab_bar->ScrollingAnim, 0.0f); + tab_bar->ScrollingTarget = tab_x2 - scrollable_width; + } +} + +void ImGui::TabBarQueueFocus(ImGuiTabBar* tab_bar, ImGuiTabItem* tab) +{ + tab_bar->NextSelectedTabId = tab->ID; +} + +void ImGui::TabBarQueueReorder(ImGuiTabBar* tab_bar, ImGuiTabItem* tab, int offset) +{ + IM_ASSERT(offset != 0); + IM_ASSERT(tab_bar->ReorderRequestTabId == 0); + tab_bar->ReorderRequestTabId = tab->ID; + tab_bar->ReorderRequestOffset = (ImS16)offset; +} + +void ImGui::TabBarQueueReorderFromMousePos(ImGuiTabBar* tab_bar, ImGuiTabItem* src_tab, ImVec2 mouse_pos) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(tab_bar->ReorderRequestTabId == 0); + if ((tab_bar->Flags & ImGuiTabBarFlags_Reorderable) == 0) + return; + + const bool is_central_section = (src_tab->Flags & ImGuiTabItemFlags_SectionMask_) == 0; + const float bar_offset = tab_bar->BarRect.Min.x - (is_central_section ? tab_bar->ScrollingTarget : 0); + + // Count number of contiguous tabs we are crossing over + const int dir = (bar_offset + src_tab->Offset) > mouse_pos.x ? -1 : +1; + const int src_idx = tab_bar->Tabs.index_from_ptr(src_tab); + int dst_idx = src_idx; + for (int i = src_idx; i >= 0 && i < tab_bar->Tabs.Size; i += dir) + { + // Reordered tabs must share the same section + const ImGuiTabItem* dst_tab = &tab_bar->Tabs[i]; + if (dst_tab->Flags & ImGuiTabItemFlags_NoReorder) + break; + if ((dst_tab->Flags & ImGuiTabItemFlags_SectionMask_) != (src_tab->Flags & ImGuiTabItemFlags_SectionMask_)) + break; + dst_idx = i; + + // Include spacing after tab, so when mouse cursor is between tabs we would not continue checking further tabs that are not hovered. + const float x1 = bar_offset + dst_tab->Offset - g.Style.ItemInnerSpacing.x; + const float x2 = bar_offset + dst_tab->Offset + dst_tab->Width + g.Style.ItemInnerSpacing.x; + //GetForegroundDrawList()->AddRect(ImVec2(x1, tab_bar->BarRect.Min.y), ImVec2(x2, tab_bar->BarRect.Max.y), IM_COL32(255, 0, 0, 255)); + if ((dir < 0 && mouse_pos.x > x1) || (dir > 0 && mouse_pos.x < x2)) + break; + } + + if (dst_idx != src_idx) + TabBarQueueReorder(tab_bar, src_tab, dst_idx - src_idx); +} + +bool ImGui::TabBarProcessReorder(ImGuiTabBar* tab_bar) +{ + ImGuiTabItem* tab1 = TabBarFindTabByID(tab_bar, tab_bar->ReorderRequestTabId); + if (tab1 == NULL || (tab1->Flags & ImGuiTabItemFlags_NoReorder)) + return false; + + //IM_ASSERT(tab_bar->Flags & ImGuiTabBarFlags_Reorderable); // <- this may happen when using debug tools + int tab2_order = TabBarGetTabOrder(tab_bar, tab1) + tab_bar->ReorderRequestOffset; + if (tab2_order < 0 || tab2_order >= tab_bar->Tabs.Size) + return false; + + // Reordered tabs must share the same section + // (Note: TabBarQueueReorderFromMousePos() also has a similar test but since we allow direct calls to TabBarQueueReorder() we do it here too) + ImGuiTabItem* tab2 = &tab_bar->Tabs[tab2_order]; + if (tab2->Flags & ImGuiTabItemFlags_NoReorder) + return false; + if ((tab1->Flags & ImGuiTabItemFlags_SectionMask_) != (tab2->Flags & ImGuiTabItemFlags_SectionMask_)) + return false; + + ImGuiTabItem item_tmp = *tab1; + ImGuiTabItem* src_tab = (tab_bar->ReorderRequestOffset > 0) ? tab1 + 1 : tab2; + ImGuiTabItem* dst_tab = (tab_bar->ReorderRequestOffset > 0) ? tab1 : tab2 + 1; + const int move_count = (tab_bar->ReorderRequestOffset > 0) ? tab_bar->ReorderRequestOffset : -tab_bar->ReorderRequestOffset; + memmove(dst_tab, src_tab, move_count * sizeof(ImGuiTabItem)); + *tab2 = item_tmp; + + if (tab_bar->Flags & ImGuiTabBarFlags_SaveSettings) + MarkIniSettingsDirty(); + return true; +} + +static ImGuiTabItem* ImGui::TabBarScrollingButtons(ImGuiTabBar* tab_bar) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + const ImVec2 arrow_button_size(g.FontSize - 2.0f, g.FontSize + g.Style.FramePadding.y * 2.0f); + const float scrolling_buttons_width = arrow_button_size.x * 2.0f; + + const ImVec2 backup_cursor_pos = window->DC.CursorPos; + //window->DrawList->AddRect(ImVec2(tab_bar->BarRect.Max.x - scrolling_buttons_width, tab_bar->BarRect.Min.y), ImVec2(tab_bar->BarRect.Max.x, tab_bar->BarRect.Max.y), IM_COL32(255,0,0,255)); + + int select_dir = 0; + ImVec4 arrow_col = g.Style.Colors[ImGuiCol_Text]; + arrow_col.w *= 0.5f; + + PushStyleColor(ImGuiCol_Text, arrow_col); + PushStyleColor(ImGuiCol_Button, ImVec4(0, 0, 0, 0)); + const float backup_repeat_delay = g.IO.KeyRepeatDelay; + const float backup_repeat_rate = g.IO.KeyRepeatRate; + g.IO.KeyRepeatDelay = 0.250f; + g.IO.KeyRepeatRate = 0.200f; + float x = ImMax(tab_bar->BarRect.Min.x, tab_bar->BarRect.Max.x - scrolling_buttons_width); + window->DC.CursorPos = ImVec2(x, tab_bar->BarRect.Min.y); + if (ArrowButtonEx("##<", ImGuiDir_Left, arrow_button_size, ImGuiButtonFlags_PressedOnClick | ImGuiButtonFlags_Repeat)) + select_dir = -1; + window->DC.CursorPos = ImVec2(x + arrow_button_size.x, tab_bar->BarRect.Min.y); + if (ArrowButtonEx("##>", ImGuiDir_Right, arrow_button_size, ImGuiButtonFlags_PressedOnClick | ImGuiButtonFlags_Repeat)) + select_dir = +1; + PopStyleColor(2); + g.IO.KeyRepeatRate = backup_repeat_rate; + g.IO.KeyRepeatDelay = backup_repeat_delay; + + ImGuiTabItem* tab_to_scroll_to = NULL; + if (select_dir != 0) + if (ImGuiTabItem* tab_item = TabBarFindTabByID(tab_bar, tab_bar->SelectedTabId)) + { + int selected_order = TabBarGetTabOrder(tab_bar, tab_item); + int target_order = selected_order + select_dir; + + // Skip tab item buttons until another tab item is found or end is reached + while (tab_to_scroll_to == NULL) + { + // If we are at the end of the list, still scroll to make our tab visible + tab_to_scroll_to = &tab_bar->Tabs[(target_order >= 0 && target_order < tab_bar->Tabs.Size) ? target_order : selected_order]; + + // Cross through buttons + // (even if first/last item is a button, return it so we can update the scroll) + if (tab_to_scroll_to->Flags & ImGuiTabItemFlags_Button) + { + target_order += select_dir; + selected_order += select_dir; + tab_to_scroll_to = (target_order < 0 || target_order >= tab_bar->Tabs.Size) ? tab_to_scroll_to : NULL; + } + } + } + window->DC.CursorPos = backup_cursor_pos; + tab_bar->BarRect.Max.x -= scrolling_buttons_width + 1.0f; + + return tab_to_scroll_to; +} + +static ImGuiTabItem* ImGui::TabBarTabListPopupButton(ImGuiTabBar* tab_bar) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + // We use g.Style.FramePadding.y to match the square ArrowButton size + const float tab_list_popup_button_width = g.FontSize + g.Style.FramePadding.y; + const ImVec2 backup_cursor_pos = window->DC.CursorPos; + window->DC.CursorPos = ImVec2(tab_bar->BarRect.Min.x - g.Style.FramePadding.y, tab_bar->BarRect.Min.y); + tab_bar->BarRect.Min.x += tab_list_popup_button_width; + + ImVec4 arrow_col = g.Style.Colors[ImGuiCol_Text]; + arrow_col.w *= 0.5f; + PushStyleColor(ImGuiCol_Text, arrow_col); + PushStyleColor(ImGuiCol_Button, ImVec4(0, 0, 0, 0)); + bool open = BeginCombo("##v", NULL, ImGuiComboFlags_NoPreview | ImGuiComboFlags_HeightLargest); + PopStyleColor(2); + + ImGuiTabItem* tab_to_select = NULL; + if (open) + { + for (int tab_n = 0; tab_n < tab_bar->Tabs.Size; tab_n++) + { + ImGuiTabItem* tab = &tab_bar->Tabs[tab_n]; + if (tab->Flags & ImGuiTabItemFlags_Button) + continue; + + const char* tab_name = TabBarGetTabName(tab_bar, tab); + if (Selectable(tab_name, tab_bar->SelectedTabId == tab->ID)) + tab_to_select = tab; + } + EndCombo(); + } + + window->DC.CursorPos = backup_cursor_pos; + return tab_to_select; +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: BeginTabItem, EndTabItem, etc. +//------------------------------------------------------------------------- +// - BeginTabItem() +// - EndTabItem() +// - TabItemButton() +// - TabItemEx() [Internal] +// - SetTabItemClosed() +// - TabItemCalcSize() [Internal] +// - TabItemBackground() [Internal] +// - TabItemLabelAndCloseButton() [Internal] +//------------------------------------------------------------------------- + +bool ImGui::BeginTabItem(const char* label, bool* p_open, ImGuiTabItemFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return false; + + ImGuiTabBar* tab_bar = g.CurrentTabBar; + if (tab_bar == NULL) + { + IM_ASSERT_USER_ERROR(tab_bar, "Needs to be called between BeginTabBar() and EndTabBar()!"); + return false; + } + IM_ASSERT(!(flags & ImGuiTabItemFlags_Button)); // BeginTabItem() Can't be used with button flags, use TabItemButton() instead! + + bool ret = TabItemEx(tab_bar, label, p_open, flags, NULL); + if (ret && !(flags & ImGuiTabItemFlags_NoPushId)) + { + ImGuiTabItem* tab = &tab_bar->Tabs[tab_bar->LastTabItemIdx]; + PushOverrideID(tab->ID); // We already hashed 'label' so push into the ID stack directly instead of doing another hash through PushID(label) + } + return ret; +} + +void ImGui::EndTabItem() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return; + + ImGuiTabBar* tab_bar = g.CurrentTabBar; + if (tab_bar == NULL) + { + IM_ASSERT_USER_ERROR(tab_bar != NULL, "Needs to be called between BeginTabBar() and EndTabBar()!"); + return; + } + IM_ASSERT(tab_bar->LastTabItemIdx >= 0); + ImGuiTabItem* tab = &tab_bar->Tabs[tab_bar->LastTabItemIdx]; + if (!(tab->Flags & ImGuiTabItemFlags_NoPushId)) + PopID(); +} + +bool ImGui::TabItemButton(const char* label, ImGuiTabItemFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return false; + + ImGuiTabBar* tab_bar = g.CurrentTabBar; + if (tab_bar == NULL) + { + IM_ASSERT_USER_ERROR(tab_bar != NULL, "Needs to be called between BeginTabBar() and EndTabBar()!"); + return false; + } + return TabItemEx(tab_bar, label, NULL, flags | ImGuiTabItemFlags_Button | ImGuiTabItemFlags_NoReorder, NULL); +} + +bool ImGui::TabItemEx(ImGuiTabBar* tab_bar, const char* label, bool* p_open, ImGuiTabItemFlags flags, ImGuiWindow* docked_window) +{ + // Layout whole tab bar if not already done + ImGuiContext& g = *GImGui; + if (tab_bar->WantLayout) + { + ImGuiNextItemData backup_next_item_data = g.NextItemData; + TabBarLayout(tab_bar); + g.NextItemData = backup_next_item_data; + } + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return false; + + const ImGuiStyle& style = g.Style; + const ImGuiID id = TabBarCalcTabID(tab_bar, label, docked_window); + + // If the user called us with *p_open == false, we early out and don't render. + // We make a call to ItemAdd() so that attempts to use a contextual popup menu with an implicit ID won't use an older ID. + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags); + if (p_open && !*p_open) + { + ItemAdd(ImRect(), id, NULL, ImGuiItemFlags_NoNav); + return false; + } + + IM_ASSERT(!p_open || !(flags & ImGuiTabItemFlags_Button)); + IM_ASSERT((flags & (ImGuiTabItemFlags_Leading | ImGuiTabItemFlags_Trailing)) != (ImGuiTabItemFlags_Leading | ImGuiTabItemFlags_Trailing)); // Can't use both Leading and Trailing + + // Store into ImGuiTabItemFlags_NoCloseButton, also honor ImGuiTabItemFlags_NoCloseButton passed by user (although not documented) + if (flags & ImGuiTabItemFlags_NoCloseButton) + p_open = NULL; + else if (p_open == NULL) + flags |= ImGuiTabItemFlags_NoCloseButton; + + // Acquire tab data + ImGuiTabItem* tab = TabBarFindTabByID(tab_bar, id); + bool tab_is_new = false; + if (tab == NULL) + { + tab_bar->Tabs.push_back(ImGuiTabItem()); + tab = &tab_bar->Tabs.back(); + tab->ID = id; + tab_bar->TabsAddedNew = tab_is_new = true; + } + tab_bar->LastTabItemIdx = (ImS16)tab_bar->Tabs.index_from_ptr(tab); + + // Calculate tab contents size + ImVec2 size = TabItemCalcSize(label, (p_open != NULL) || (flags & ImGuiTabItemFlags_UnsavedDocument)); + tab->RequestedWidth = -1.0f; + if (g.NextItemData.Flags & ImGuiNextItemDataFlags_HasWidth) + size.x = tab->RequestedWidth = g.NextItemData.Width; + if (tab_is_new) + tab->Width = ImMax(1.0f, size.x); + tab->ContentWidth = size.x; + tab->BeginOrder = tab_bar->TabsActiveCount++; + + const bool tab_bar_appearing = (tab_bar->PrevFrameVisible + 1 < g.FrameCount); + const bool tab_bar_focused = (tab_bar->Flags & ImGuiTabBarFlags_IsFocused) != 0; + const bool tab_appearing = (tab->LastFrameVisible + 1 < g.FrameCount); + const bool tab_just_unsaved = (flags & ImGuiTabItemFlags_UnsavedDocument) && !(tab->Flags & ImGuiTabItemFlags_UnsavedDocument); + const bool is_tab_button = (flags & ImGuiTabItemFlags_Button) != 0; + tab->LastFrameVisible = g.FrameCount; + tab->Flags = flags; + + // Append name _WITH_ the zero-terminator + if (docked_window != NULL) + { + IM_ASSERT(docked_window == NULL); // master branch only + } + else + { + tab->NameOffset = (ImS32)tab_bar->TabsNames.size(); + tab_bar->TabsNames.append(label, label + strlen(label) + 1); + } + + // Update selected tab + if (!is_tab_button) + { + if (tab_appearing && (tab_bar->Flags & ImGuiTabBarFlags_AutoSelectNewTabs) && tab_bar->NextSelectedTabId == 0) + if (!tab_bar_appearing || tab_bar->SelectedTabId == 0) + TabBarQueueFocus(tab_bar, tab); // New tabs gets activated + if ((flags & ImGuiTabItemFlags_SetSelected) && (tab_bar->SelectedTabId != id)) // _SetSelected can only be passed on explicit tab bar + TabBarQueueFocus(tab_bar, tab); + } + + // Lock visibility + // (Note: tab_contents_visible != tab_selected... because CTRL+TAB operations may preview some tabs without selecting them!) + bool tab_contents_visible = (tab_bar->VisibleTabId == id); + if (tab_contents_visible) + tab_bar->VisibleTabWasSubmitted = true; + + // On the very first frame of a tab bar we let first tab contents be visible to minimize appearing glitches + if (!tab_contents_visible && tab_bar->SelectedTabId == 0 && tab_bar_appearing) + if (tab_bar->Tabs.Size == 1 && !(tab_bar->Flags & ImGuiTabBarFlags_AutoSelectNewTabs)) + tab_contents_visible = true; + + // Note that tab_is_new is not necessarily the same as tab_appearing! When a tab bar stops being submitted + // and then gets submitted again, the tabs will have 'tab_appearing=true' but 'tab_is_new=false'. + if (tab_appearing && (!tab_bar_appearing || tab_is_new)) + { + ItemAdd(ImRect(), id, NULL, ImGuiItemFlags_NoNav); + if (is_tab_button) + return false; + return tab_contents_visible; + } + + if (tab_bar->SelectedTabId == id) + tab->LastFrameSelected = g.FrameCount; + + // Backup current layout position + const ImVec2 backup_main_cursor_pos = window->DC.CursorPos; + + // Layout + const bool is_central_section = (tab->Flags & ImGuiTabItemFlags_SectionMask_) == 0; + size.x = tab->Width; + if (is_central_section) + window->DC.CursorPos = tab_bar->BarRect.Min + ImVec2(IM_FLOOR(tab->Offset - tab_bar->ScrollingAnim), 0.0f); + else + window->DC.CursorPos = tab_bar->BarRect.Min + ImVec2(tab->Offset, 0.0f); + ImVec2 pos = window->DC.CursorPos; + ImRect bb(pos, pos + size); + + // We don't have CPU clipping primitives to clip the CloseButton (until it becomes a texture), so need to add an extra draw call (temporary in the case of vertical animation) + const bool want_clip_rect = is_central_section && (bb.Min.x < tab_bar->ScrollingRectMinX || bb.Max.x > tab_bar->ScrollingRectMaxX); + if (want_clip_rect) + PushClipRect(ImVec2(ImMax(bb.Min.x, tab_bar->ScrollingRectMinX), bb.Min.y - 1), ImVec2(tab_bar->ScrollingRectMaxX, bb.Max.y), true); + + ImVec2 backup_cursor_max_pos = window->DC.CursorMaxPos; + ItemSize(bb.GetSize(), style.FramePadding.y); + window->DC.CursorMaxPos = backup_cursor_max_pos; + + if (!ItemAdd(bb, id)) + { + if (want_clip_rect) + PopClipRect(); + window->DC.CursorPos = backup_main_cursor_pos; + return tab_contents_visible; + } + + // Click to Select a tab + // Allow the close button to overlap + ImGuiButtonFlags button_flags = ((is_tab_button ? ImGuiButtonFlags_PressedOnClickRelease : ImGuiButtonFlags_PressedOnClick) | ImGuiButtonFlags_AllowOverlap); + if (g.DragDropActive) + button_flags |= ImGuiButtonFlags_PressedOnDragDropHold; + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held, button_flags); + if (pressed && !is_tab_button) + TabBarQueueFocus(tab_bar, tab); + + // Drag and drop: re-order tabs + if (held && !tab_appearing && IsMouseDragging(0)) + { + if (!g.DragDropActive && (tab_bar->Flags & ImGuiTabBarFlags_Reorderable)) + { + // While moving a tab it will jump on the other side of the mouse, so we also test for MouseDelta.x + if (g.IO.MouseDelta.x < 0.0f && g.IO.MousePos.x < bb.Min.x) + { + TabBarQueueReorderFromMousePos(tab_bar, tab, g.IO.MousePos); + } + else if (g.IO.MouseDelta.x > 0.0f && g.IO.MousePos.x > bb.Max.x) + { + TabBarQueueReorderFromMousePos(tab_bar, tab, g.IO.MousePos); + } + } + } + +#if 0 + if (hovered && g.HoveredIdNotActiveTimer > TOOLTIP_DELAY && bb.GetWidth() < tab->ContentWidth) + { + // Enlarge tab display when hovering + bb.Max.x = bb.Min.x + IM_FLOOR(ImLerp(bb.GetWidth(), tab->ContentWidth, ImSaturate((g.HoveredIdNotActiveTimer - 0.40f) * 6.0f))); + display_draw_list = GetForegroundDrawList(window); + TabItemBackground(display_draw_list, bb, flags, GetColorU32(ImGuiCol_TitleBgActive)); + } +#endif + + // Render tab shape + ImDrawList* display_draw_list = window->DrawList; + const ImU32 tab_col = GetColorU32((held || hovered) ? ImGuiCol_TabHovered : tab_contents_visible ? (tab_bar_focused ? ImGuiCol_TabActive : ImGuiCol_TabUnfocusedActive) : (tab_bar_focused ? ImGuiCol_Tab : ImGuiCol_TabUnfocused)); + TabItemBackground(display_draw_list, bb, flags, tab_col); + RenderNavHighlight(bb, id); + + // Select with right mouse button. This is so the common idiom for context menu automatically highlight the current widget. + const bool hovered_unblocked = IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup); + if (hovered_unblocked && (IsMouseClicked(1) || IsMouseReleased(1)) && !is_tab_button) + TabBarQueueFocus(tab_bar, tab); + + if (tab_bar->Flags & ImGuiTabBarFlags_NoCloseWithMiddleMouseButton) + flags |= ImGuiTabItemFlags_NoCloseWithMiddleMouseButton; + + // Render tab label, process close button + const ImGuiID close_button_id = p_open ? GetIDWithSeed("#CLOSE", NULL, id) : 0; + bool just_closed; + bool text_clipped; + TabItemLabelAndCloseButton(display_draw_list, bb, tab_just_unsaved ? (flags & ~ImGuiTabItemFlags_UnsavedDocument) : flags, tab_bar->FramePadding, label, id, close_button_id, tab_contents_visible, &just_closed, &text_clipped); + if (just_closed && p_open != NULL) + { + *p_open = false; + TabBarCloseTab(tab_bar, tab); + } + + // Restore main window position so user can draw there + if (want_clip_rect) + PopClipRect(); + window->DC.CursorPos = backup_main_cursor_pos; + + // Tooltip + // (Won't work over the close button because ItemOverlap systems messes up with HoveredIdTimer-> seems ok) + // (We test IsItemHovered() to discard e.g. when another item is active or drag and drop over the tab bar, which g.HoveredId ignores) + // FIXME: This is a mess. + // FIXME: We may want disabled tab to still display the tooltip? + if (text_clipped && g.HoveredId == id && !held) + if (!(tab_bar->Flags & ImGuiTabBarFlags_NoTooltip) && !(tab->Flags & ImGuiTabItemFlags_NoTooltip)) + SetItemTooltip("%.*s", (int)(FindRenderedTextEnd(label) - label), label); + + IM_ASSERT(!is_tab_button || !(tab_bar->SelectedTabId == tab->ID && is_tab_button)); // TabItemButton should not be selected + if (is_tab_button) + return pressed; + return tab_contents_visible; +} + +// [Public] This is call is 100% optional but it allows to remove some one-frame glitches when a tab has been unexpectedly removed. +// To use it to need to call the function SetTabItemClosed() between BeginTabBar() and EndTabBar(). +// Tabs closed by the close button will automatically be flagged to avoid this issue. +void ImGui::SetTabItemClosed(const char* label) +{ + ImGuiContext& g = *GImGui; + bool is_within_manual_tab_bar = g.CurrentTabBar && !(g.CurrentTabBar->Flags & ImGuiTabBarFlags_DockNode); + if (is_within_manual_tab_bar) + { + ImGuiTabBar* tab_bar = g.CurrentTabBar; + ImGuiID tab_id = TabBarCalcTabID(tab_bar, label, NULL); + if (ImGuiTabItem* tab = TabBarFindTabByID(tab_bar, tab_id)) + tab->WantClose = true; // Will be processed by next call to TabBarLayout() + } +} + +ImVec2 ImGui::TabItemCalcSize(const char* label, bool has_close_button_or_unsaved_marker) +{ + ImGuiContext& g = *GImGui; + ImVec2 label_size = CalcTextSize(label, NULL, true); + ImVec2 size = ImVec2(label_size.x + g.Style.FramePadding.x, label_size.y + g.Style.FramePadding.y * 2.0f); + if (has_close_button_or_unsaved_marker) + size.x += g.Style.FramePadding.x + (g.Style.ItemInnerSpacing.x + g.FontSize); // We use Y intentionally to fit the close button circle. + else + size.x += g.Style.FramePadding.x + 1.0f; + return ImVec2(ImMin(size.x, TabBarCalcMaxTabWidth()), size.y); +} + +ImVec2 ImGui::TabItemCalcSize(ImGuiWindow*) +{ + IM_ASSERT(0); // This function exists to facilitate merge with 'docking' branch. + return ImVec2(0.0f, 0.0f); +} + +void ImGui::TabItemBackground(ImDrawList* draw_list, const ImRect& bb, ImGuiTabItemFlags flags, ImU32 col) +{ + // While rendering tabs, we trim 1 pixel off the top of our bounding box so they can fit within a regular frame height while looking "detached" from it. + ImGuiContext& g = *GImGui; + const float width = bb.GetWidth(); + IM_UNUSED(flags); + IM_ASSERT(width > 0.0f); + const float rounding = ImMax(0.0f, ImMin((flags & ImGuiTabItemFlags_Button) ? g.Style.FrameRounding : g.Style.TabRounding, width * 0.5f - 1.0f)); + const float y1 = bb.Min.y + 1.0f; + const float y2 = bb.Max.y - 1.0f; + draw_list->PathLineTo(ImVec2(bb.Min.x, y2)); + draw_list->PathArcToFast(ImVec2(bb.Min.x + rounding, y1 + rounding), rounding, 6, 9); + draw_list->PathArcToFast(ImVec2(bb.Max.x - rounding, y1 + rounding), rounding, 9, 12); + draw_list->PathLineTo(ImVec2(bb.Max.x, y2)); + draw_list->PathFillConvex(col); + if (g.Style.TabBorderSize > 0.0f) + { + draw_list->PathLineTo(ImVec2(bb.Min.x + 0.5f, y2)); + draw_list->PathArcToFast(ImVec2(bb.Min.x + rounding + 0.5f, y1 + rounding + 0.5f), rounding, 6, 9); + draw_list->PathArcToFast(ImVec2(bb.Max.x - rounding - 0.5f, y1 + rounding + 0.5f), rounding, 9, 12); + draw_list->PathLineTo(ImVec2(bb.Max.x - 0.5f, y2)); + draw_list->PathStroke(GetColorU32(ImGuiCol_Border), 0, g.Style.TabBorderSize); + } +} + +// Render text label (with custom clipping) + Unsaved Document marker + Close Button logic +// We tend to lock style.FramePadding for a given tab-bar, hence the 'frame_padding' parameter. +void ImGui::TabItemLabelAndCloseButton(ImDrawList* draw_list, const ImRect& bb, ImGuiTabItemFlags flags, ImVec2 frame_padding, const char* label, ImGuiID tab_id, ImGuiID close_button_id, bool is_contents_visible, bool* out_just_closed, bool* out_text_clipped) +{ + ImGuiContext& g = *GImGui; + ImVec2 label_size = CalcTextSize(label, NULL, true); + + if (out_just_closed) + *out_just_closed = false; + if (out_text_clipped) + *out_text_clipped = false; + + if (bb.GetWidth() <= 1.0f) + return; + + // In Style V2 we'll have full override of all colors per state (e.g. focused, selected) + // But right now if you want to alter text color of tabs this is what you need to do. +#if 0 + const float backup_alpha = g.Style.Alpha; + if (!is_contents_visible) + g.Style.Alpha *= 0.7f; +#endif + + // Render text label (with clipping + alpha gradient) + unsaved marker + ImRect text_pixel_clip_bb(bb.Min.x + frame_padding.x, bb.Min.y + frame_padding.y, bb.Max.x - frame_padding.x, bb.Max.y); + ImRect text_ellipsis_clip_bb = text_pixel_clip_bb; + + // Return clipped state ignoring the close button + if (out_text_clipped) + { + *out_text_clipped = (text_ellipsis_clip_bb.Min.x + label_size.x) > text_pixel_clip_bb.Max.x; + //draw_list->AddCircle(text_ellipsis_clip_bb.Min, 3.0f, *out_text_clipped ? IM_COL32(255, 0, 0, 255) : IM_COL32(0, 255, 0, 255)); + } + + const float button_sz = g.FontSize; + const ImVec2 button_pos(ImMax(bb.Min.x, bb.Max.x - frame_padding.x - button_sz), bb.Min.y + frame_padding.y); + + // Close Button & Unsaved Marker + // We are relying on a subtle and confusing distinction between 'hovered' and 'g.HoveredId' which happens because we are using ImGuiButtonFlags_AllowOverlapMode + SetItemAllowOverlap() + // 'hovered' will be true when hovering the Tab but NOT when hovering the close button + // 'g.HoveredId==id' will be true when hovering the Tab including when hovering the close button + // 'g.ActiveId==close_button_id' will be true when we are holding on the close button, in which case both hovered booleans are false + bool close_button_pressed = false; + bool close_button_visible = false; + if (close_button_id != 0) + if (is_contents_visible || bb.GetWidth() >= ImMax(button_sz, g.Style.TabMinWidthForCloseButton)) + if (g.HoveredId == tab_id || g.HoveredId == close_button_id || g.ActiveId == tab_id || g.ActiveId == close_button_id) + close_button_visible = true; + bool unsaved_marker_visible = (flags & ImGuiTabItemFlags_UnsavedDocument) != 0 && (button_pos.x + button_sz <= bb.Max.x); + + if (close_button_visible) + { + ImGuiLastItemData last_item_backup = g.LastItemData; + if (CloseButton(close_button_id, button_pos)) + close_button_pressed = true; + g.LastItemData = last_item_backup; + + // Close with middle mouse button + if (!(flags & ImGuiTabItemFlags_NoCloseWithMiddleMouseButton) && IsMouseClicked(2)) + close_button_pressed = true; + } + else if (unsaved_marker_visible) + { + const ImRect bullet_bb(button_pos, button_pos + ImVec2(button_sz, button_sz) + g.Style.FramePadding * 2.0f); + RenderBullet(draw_list, bullet_bb.GetCenter(), GetColorU32(ImGuiCol_Text)); + } + + // This is all rather complicated + // (the main idea is that because the close button only appears on hover, we don't want it to alter the ellipsis position) + // FIXME: if FramePadding is noticeably large, ellipsis_max_x will be wrong here (e.g. #3497), maybe for consistency that parameter of RenderTextEllipsis() shouldn't exist.. + float ellipsis_max_x = close_button_visible ? text_pixel_clip_bb.Max.x : bb.Max.x - 1.0f; + if (close_button_visible || unsaved_marker_visible) + { + text_pixel_clip_bb.Max.x -= close_button_visible ? (button_sz) : (button_sz * 0.80f); + text_ellipsis_clip_bb.Max.x -= unsaved_marker_visible ? (button_sz * 0.80f) : 0.0f; + ellipsis_max_x = text_pixel_clip_bb.Max.x; + } + RenderTextEllipsis(draw_list, text_ellipsis_clip_bb.Min, text_ellipsis_clip_bb.Max, text_pixel_clip_bb.Max.x, ellipsis_max_x, label, NULL, &label_size); + +#if 0 + if (!is_contents_visible) + g.Style.Alpha = backup_alpha; +#endif + + if (out_just_closed) + *out_just_closed = close_button_pressed; +} + + +#endif // #ifndef IMGUI_DISABLE diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imstb_rectpack.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imstb_rectpack.h new file mode 100644 index 0000000..f6917e7 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imstb_rectpack.h @@ -0,0 +1,627 @@ +// [DEAR IMGUI] +// This is a slightly modified version of stb_rect_pack.h 1.01. +// Grep for [DEAR IMGUI] to find the changes. +// +// stb_rect_pack.h - v1.01 - public domain - rectangle packing +// Sean Barrett 2014 +// +// Useful for e.g. packing rectangular textures into an atlas. +// Does not do rotation. +// +// Before #including, +// +// #define STB_RECT_PACK_IMPLEMENTATION +// +// in the file that you want to have the implementation. +// +// Not necessarily the awesomest packing method, but better than +// the totally naive one in stb_truetype (which is primarily what +// this is meant to replace). +// +// Has only had a few tests run, may have issues. +// +// More docs to come. +// +// No memory allocations; uses qsort() and assert() from stdlib. +// Can override those by defining STBRP_SORT and STBRP_ASSERT. +// +// This library currently uses the Skyline Bottom-Left algorithm. +// +// Please note: better rectangle packers are welcome! Please +// implement them to the same API, but with a different init +// function. +// +// Credits +// +// Library +// Sean Barrett +// Minor features +// Martins Mozeiko +// github:IntellectualKitty +// +// Bugfixes / warning fixes +// Jeremy Jaussaud +// Fabian Giesen +// +// Version history: +// +// 1.01 (2021-07-11) always use large rect mode, expose STBRP__MAXVAL in public section +// 1.00 (2019-02-25) avoid small space waste; gracefully fail too-wide rectangles +// 0.99 (2019-02-07) warning fixes +// 0.11 (2017-03-03) return packing success/fail result +// 0.10 (2016-10-25) remove cast-away-const to avoid warnings +// 0.09 (2016-08-27) fix compiler warnings +// 0.08 (2015-09-13) really fix bug with empty rects (w=0 or h=0) +// 0.07 (2015-09-13) fix bug with empty rects (w=0 or h=0) +// 0.06 (2015-04-15) added STBRP_SORT to allow replacing qsort +// 0.05: added STBRP_ASSERT to allow replacing assert +// 0.04: fixed minor bug in STBRP_LARGE_RECTS support +// 0.01: initial release +// +// LICENSE +// +// See end of file for license information. + +////////////////////////////////////////////////////////////////////////////// +// +// INCLUDE SECTION +// + +#ifndef STB_INCLUDE_STB_RECT_PACK_H +#define STB_INCLUDE_STB_RECT_PACK_H + +#define STB_RECT_PACK_VERSION 1 + +#ifdef STBRP_STATIC +#define STBRP_DEF static +#else +#define STBRP_DEF extern +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct stbrp_context stbrp_context; +typedef struct stbrp_node stbrp_node; +typedef struct stbrp_rect stbrp_rect; + +typedef int stbrp_coord; + +#define STBRP__MAXVAL 0x7fffffff +// Mostly for internal use, but this is the maximum supported coordinate value. + +STBRP_DEF int stbrp_pack_rects (stbrp_context *context, stbrp_rect *rects, int num_rects); +// Assign packed locations to rectangles. The rectangles are of type +// 'stbrp_rect' defined below, stored in the array 'rects', and there +// are 'num_rects' many of them. +// +// Rectangles which are successfully packed have the 'was_packed' flag +// set to a non-zero value and 'x' and 'y' store the minimum location +// on each axis (i.e. bottom-left in cartesian coordinates, top-left +// if you imagine y increasing downwards). Rectangles which do not fit +// have the 'was_packed' flag set to 0. +// +// You should not try to access the 'rects' array from another thread +// while this function is running, as the function temporarily reorders +// the array while it executes. +// +// To pack into another rectangle, you need to call stbrp_init_target +// again. To continue packing into the same rectangle, you can call +// this function again. Calling this multiple times with multiple rect +// arrays will probably produce worse packing results than calling it +// a single time with the full rectangle array, but the option is +// available. +// +// The function returns 1 if all of the rectangles were successfully +// packed and 0 otherwise. + +struct stbrp_rect +{ + // reserved for your use: + int id; + + // input: + stbrp_coord w, h; + + // output: + stbrp_coord x, y; + int was_packed; // non-zero if valid packing + +}; // 16 bytes, nominally + + +STBRP_DEF void stbrp_init_target (stbrp_context *context, int width, int height, stbrp_node *nodes, int num_nodes); +// Initialize a rectangle packer to: +// pack a rectangle that is 'width' by 'height' in dimensions +// using temporary storage provided by the array 'nodes', which is 'num_nodes' long +// +// You must call this function every time you start packing into a new target. +// +// There is no "shutdown" function. The 'nodes' memory must stay valid for +// the following stbrp_pack_rects() call (or calls), but can be freed after +// the call (or calls) finish. +// +// Note: to guarantee best results, either: +// 1. make sure 'num_nodes' >= 'width' +// or 2. call stbrp_allow_out_of_mem() defined below with 'allow_out_of_mem = 1' +// +// If you don't do either of the above things, widths will be quantized to multiples +// of small integers to guarantee the algorithm doesn't run out of temporary storage. +// +// If you do #2, then the non-quantized algorithm will be used, but the algorithm +// may run out of temporary storage and be unable to pack some rectangles. + +STBRP_DEF void stbrp_setup_allow_out_of_mem (stbrp_context *context, int allow_out_of_mem); +// Optionally call this function after init but before doing any packing to +// change the handling of the out-of-temp-memory scenario, described above. +// If you call init again, this will be reset to the default (false). + + +STBRP_DEF void stbrp_setup_heuristic (stbrp_context *context, int heuristic); +// Optionally select which packing heuristic the library should use. Different +// heuristics will produce better/worse results for different data sets. +// If you call init again, this will be reset to the default. + +enum +{ + STBRP_HEURISTIC_Skyline_default=0, + STBRP_HEURISTIC_Skyline_BL_sortHeight = STBRP_HEURISTIC_Skyline_default, + STBRP_HEURISTIC_Skyline_BF_sortHeight +}; + + +////////////////////////////////////////////////////////////////////////////// +// +// the details of the following structures don't matter to you, but they must +// be visible so you can handle the memory allocations for them + +struct stbrp_node +{ + stbrp_coord x,y; + stbrp_node *next; +}; + +struct stbrp_context +{ + int width; + int height; + int align; + int init_mode; + int heuristic; + int num_nodes; + stbrp_node *active_head; + stbrp_node *free_head; + stbrp_node extra[2]; // we allocate two extra nodes so optimal user-node-count is 'width' not 'width+2' +}; + +#ifdef __cplusplus +} +#endif + +#endif + +////////////////////////////////////////////////////////////////////////////// +// +// IMPLEMENTATION SECTION +// + +#ifdef STB_RECT_PACK_IMPLEMENTATION +#ifndef STBRP_SORT +#include +#define STBRP_SORT qsort +#endif + +#ifndef STBRP_ASSERT +#include +#define STBRP_ASSERT assert +#endif + +#ifdef _MSC_VER +#define STBRP__NOTUSED(v) (void)(v) +#define STBRP__CDECL __cdecl +#else +#define STBRP__NOTUSED(v) (void)sizeof(v) +#define STBRP__CDECL +#endif + +enum +{ + STBRP__INIT_skyline = 1 +}; + +STBRP_DEF void stbrp_setup_heuristic(stbrp_context *context, int heuristic) +{ + switch (context->init_mode) { + case STBRP__INIT_skyline: + STBRP_ASSERT(heuristic == STBRP_HEURISTIC_Skyline_BL_sortHeight || heuristic == STBRP_HEURISTIC_Skyline_BF_sortHeight); + context->heuristic = heuristic; + break; + default: + STBRP_ASSERT(0); + } +} + +STBRP_DEF void stbrp_setup_allow_out_of_mem(stbrp_context *context, int allow_out_of_mem) +{ + if (allow_out_of_mem) + // if it's ok to run out of memory, then don't bother aligning them; + // this gives better packing, but may fail due to OOM (even though + // the rectangles easily fit). @TODO a smarter approach would be to only + // quantize once we've hit OOM, then we could get rid of this parameter. + context->align = 1; + else { + // if it's not ok to run out of memory, then quantize the widths + // so that num_nodes is always enough nodes. + // + // I.e. num_nodes * align >= width + // align >= width / num_nodes + // align = ceil(width/num_nodes) + + context->align = (context->width + context->num_nodes-1) / context->num_nodes; + } +} + +STBRP_DEF void stbrp_init_target(stbrp_context *context, int width, int height, stbrp_node *nodes, int num_nodes) +{ + int i; + + for (i=0; i < num_nodes-1; ++i) + nodes[i].next = &nodes[i+1]; + nodes[i].next = NULL; + context->init_mode = STBRP__INIT_skyline; + context->heuristic = STBRP_HEURISTIC_Skyline_default; + context->free_head = &nodes[0]; + context->active_head = &context->extra[0]; + context->width = width; + context->height = height; + context->num_nodes = num_nodes; + stbrp_setup_allow_out_of_mem(context, 0); + + // node 0 is the full width, node 1 is the sentinel (lets us not store width explicitly) + context->extra[0].x = 0; + context->extra[0].y = 0; + context->extra[0].next = &context->extra[1]; + context->extra[1].x = (stbrp_coord) width; + context->extra[1].y = (1<<30); + context->extra[1].next = NULL; +} + +// find minimum y position if it starts at x1 +static int stbrp__skyline_find_min_y(stbrp_context *c, stbrp_node *first, int x0, int width, int *pwaste) +{ + stbrp_node *node = first; + int x1 = x0 + width; + int min_y, visited_width, waste_area; + + STBRP__NOTUSED(c); + + STBRP_ASSERT(first->x <= x0); + + #if 0 + // skip in case we're past the node + while (node->next->x <= x0) + ++node; + #else + STBRP_ASSERT(node->next->x > x0); // we ended up handling this in the caller for efficiency + #endif + + STBRP_ASSERT(node->x <= x0); + + min_y = 0; + waste_area = 0; + visited_width = 0; + while (node->x < x1) { + if (node->y > min_y) { + // raise min_y higher. + // we've accounted for all waste up to min_y, + // but we'll now add more waste for everything we've visted + waste_area += visited_width * (node->y - min_y); + min_y = node->y; + // the first time through, visited_width might be reduced + if (node->x < x0) + visited_width += node->next->x - x0; + else + visited_width += node->next->x - node->x; + } else { + // add waste area + int under_width = node->next->x - node->x; + if (under_width + visited_width > width) + under_width = width - visited_width; + waste_area += under_width * (min_y - node->y); + visited_width += under_width; + } + node = node->next; + } + + *pwaste = waste_area; + return min_y; +} + +typedef struct +{ + int x,y; + stbrp_node **prev_link; +} stbrp__findresult; + +static stbrp__findresult stbrp__skyline_find_best_pos(stbrp_context *c, int width, int height) +{ + int best_waste = (1<<30), best_x, best_y = (1 << 30); + stbrp__findresult fr; + stbrp_node **prev, *node, *tail, **best = NULL; + + // align to multiple of c->align + width = (width + c->align - 1); + width -= width % c->align; + STBRP_ASSERT(width % c->align == 0); + + // if it can't possibly fit, bail immediately + if (width > c->width || height > c->height) { + fr.prev_link = NULL; + fr.x = fr.y = 0; + return fr; + } + + node = c->active_head; + prev = &c->active_head; + while (node->x + width <= c->width) { + int y,waste; + y = stbrp__skyline_find_min_y(c, node, node->x, width, &waste); + if (c->heuristic == STBRP_HEURISTIC_Skyline_BL_sortHeight) { // actually just want to test BL + // bottom left + if (y < best_y) { + best_y = y; + best = prev; + } + } else { + // best-fit + if (y + height <= c->height) { + // can only use it if it first vertically + if (y < best_y || (y == best_y && waste < best_waste)) { + best_y = y; + best_waste = waste; + best = prev; + } + } + } + prev = &node->next; + node = node->next; + } + + best_x = (best == NULL) ? 0 : (*best)->x; + + // if doing best-fit (BF), we also have to try aligning right edge to each node position + // + // e.g, if fitting + // + // ____________________ + // |____________________| + // + // into + // + // | | + // | ____________| + // |____________| + // + // then right-aligned reduces waste, but bottom-left BL is always chooses left-aligned + // + // This makes BF take about 2x the time + + if (c->heuristic == STBRP_HEURISTIC_Skyline_BF_sortHeight) { + tail = c->active_head; + node = c->active_head; + prev = &c->active_head; + // find first node that's admissible + while (tail->x < width) + tail = tail->next; + while (tail) { + int xpos = tail->x - width; + int y,waste; + STBRP_ASSERT(xpos >= 0); + // find the left position that matches this + while (node->next->x <= xpos) { + prev = &node->next; + node = node->next; + } + STBRP_ASSERT(node->next->x > xpos && node->x <= xpos); + y = stbrp__skyline_find_min_y(c, node, xpos, width, &waste); + if (y + height <= c->height) { + if (y <= best_y) { + if (y < best_y || waste < best_waste || (waste==best_waste && xpos < best_x)) { + best_x = xpos; + //STBRP_ASSERT(y <= best_y); [DEAR IMGUI] + best_y = y; + best_waste = waste; + best = prev; + } + } + } + tail = tail->next; + } + } + + fr.prev_link = best; + fr.x = best_x; + fr.y = best_y; + return fr; +} + +static stbrp__findresult stbrp__skyline_pack_rectangle(stbrp_context *context, int width, int height) +{ + // find best position according to heuristic + stbrp__findresult res = stbrp__skyline_find_best_pos(context, width, height); + stbrp_node *node, *cur; + + // bail if: + // 1. it failed + // 2. the best node doesn't fit (we don't always check this) + // 3. we're out of memory + if (res.prev_link == NULL || res.y + height > context->height || context->free_head == NULL) { + res.prev_link = NULL; + return res; + } + + // on success, create new node + node = context->free_head; + node->x = (stbrp_coord) res.x; + node->y = (stbrp_coord) (res.y + height); + + context->free_head = node->next; + + // insert the new node into the right starting point, and + // let 'cur' point to the remaining nodes needing to be + // stiched back in + + cur = *res.prev_link; + if (cur->x < res.x) { + // preserve the existing one, so start testing with the next one + stbrp_node *next = cur->next; + cur->next = node; + cur = next; + } else { + *res.prev_link = node; + } + + // from here, traverse cur and free the nodes, until we get to one + // that shouldn't be freed + while (cur->next && cur->next->x <= res.x + width) { + stbrp_node *next = cur->next; + // move the current node to the free list + cur->next = context->free_head; + context->free_head = cur; + cur = next; + } + + // stitch the list back in + node->next = cur; + + if (cur->x < res.x + width) + cur->x = (stbrp_coord) (res.x + width); + +#ifdef _DEBUG + cur = context->active_head; + while (cur->x < context->width) { + STBRP_ASSERT(cur->x < cur->next->x); + cur = cur->next; + } + STBRP_ASSERT(cur->next == NULL); + + { + int count=0; + cur = context->active_head; + while (cur) { + cur = cur->next; + ++count; + } + cur = context->free_head; + while (cur) { + cur = cur->next; + ++count; + } + STBRP_ASSERT(count == context->num_nodes+2); + } +#endif + + return res; +} + +static int STBRP__CDECL rect_height_compare(const void *a, const void *b) +{ + const stbrp_rect *p = (const stbrp_rect *) a; + const stbrp_rect *q = (const stbrp_rect *) b; + if (p->h > q->h) + return -1; + if (p->h < q->h) + return 1; + return (p->w > q->w) ? -1 : (p->w < q->w); +} + +static int STBRP__CDECL rect_original_order(const void *a, const void *b) +{ + const stbrp_rect *p = (const stbrp_rect *) a; + const stbrp_rect *q = (const stbrp_rect *) b; + return (p->was_packed < q->was_packed) ? -1 : (p->was_packed > q->was_packed); +} + +STBRP_DEF int stbrp_pack_rects(stbrp_context *context, stbrp_rect *rects, int num_rects) +{ + int i, all_rects_packed = 1; + + // we use the 'was_packed' field internally to allow sorting/unsorting + for (i=0; i < num_rects; ++i) { + rects[i].was_packed = i; + } + + // sort according to heuristic + STBRP_SORT(rects, num_rects, sizeof(rects[0]), rect_height_compare); + + for (i=0; i < num_rects; ++i) { + if (rects[i].w == 0 || rects[i].h == 0) { + rects[i].x = rects[i].y = 0; // empty rect needs no space + } else { + stbrp__findresult fr = stbrp__skyline_pack_rectangle(context, rects[i].w, rects[i].h); + if (fr.prev_link) { + rects[i].x = (stbrp_coord) fr.x; + rects[i].y = (stbrp_coord) fr.y; + } else { + rects[i].x = rects[i].y = STBRP__MAXVAL; + } + } + } + + // unsort + STBRP_SORT(rects, num_rects, sizeof(rects[0]), rect_original_order); + + // set was_packed flags and all_rects_packed status + for (i=0; i < num_rects; ++i) { + rects[i].was_packed = !(rects[i].x == STBRP__MAXVAL && rects[i].y == STBRP__MAXVAL); + if (!rects[i].was_packed) + all_rects_packed = 0; + } + + // return the all_rects_packed status + return all_rects_packed; +} +#endif + +/* +------------------------------------------------------------------------------ +This software is available under 2 licenses -- choose whichever you prefer. +------------------------------------------------------------------------------ +ALTERNATIVE A - MIT License +Copyright (c) 2017 Sean Barrett +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------------------------------------------------ +ALTERNATIVE B - Public Domain (www.unlicense.org) +This is free and unencumbered software released into the public domain. +Anyone is free to copy, modify, publish, use, compile, sell, or distribute this +software, either in source code form or as a compiled binary, for any purpose, +commercial or non-commercial, and by any means. +In jurisdictions that recognize copyright laws, the author or authors of this +software dedicate any and all copyright interest in the software to the public +domain. We make this dedication for the benefit of the public at large and to +the detriment of our heirs and successors. We intend this dedication to be an +overt act of relinquishment in perpetuity of all present and future rights to +this software under copyright law. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------------------------------------------------ +*/ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imstb_textedit.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imstb_textedit.h new file mode 100644 index 0000000..a8a8231 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imstb_textedit.h @@ -0,0 +1,1437 @@ +// [DEAR IMGUI] +// This is a slightly modified version of stb_textedit.h 1.14. +// Those changes would need to be pushed into nothings/stb: +// - Fix in stb_textedit_discard_redo (see https://github.com/nothings/stb/issues/321) +// - Fix in stb_textedit_find_charpos to handle last line (see https://github.com/ocornut/imgui/issues/6000) +// Grep for [DEAR IMGUI] to find the changes. + +// stb_textedit.h - v1.14 - public domain - Sean Barrett +// Development of this library was sponsored by RAD Game Tools +// +// This C header file implements the guts of a multi-line text-editing +// widget; you implement display, word-wrapping, and low-level string +// insertion/deletion, and stb_textedit will map user inputs into +// insertions & deletions, plus updates to the cursor position, +// selection state, and undo state. +// +// It is intended for use in games and other systems that need to build +// their own custom widgets and which do not have heavy text-editing +// requirements (this library is not recommended for use for editing large +// texts, as its performance does not scale and it has limited undo). +// +// Non-trivial behaviors are modelled after Windows text controls. +// +// +// LICENSE +// +// See end of file for license information. +// +// +// DEPENDENCIES +// +// Uses the C runtime function 'memmove', which you can override +// by defining STB_TEXTEDIT_memmove before the implementation. +// Uses no other functions. Performs no runtime allocations. +// +// +// VERSION HISTORY +// +// 1.14 (2021-07-11) page up/down, various fixes +// 1.13 (2019-02-07) fix bug in undo size management +// 1.12 (2018-01-29) user can change STB_TEXTEDIT_KEYTYPE, fix redo to avoid crash +// 1.11 (2017-03-03) fix HOME on last line, dragging off single-line textfield +// 1.10 (2016-10-25) supress warnings about casting away const with -Wcast-qual +// 1.9 (2016-08-27) customizable move-by-word +// 1.8 (2016-04-02) better keyboard handling when mouse button is down +// 1.7 (2015-09-13) change y range handling in case baseline is non-0 +// 1.6 (2015-04-15) allow STB_TEXTEDIT_memmove +// 1.5 (2014-09-10) add support for secondary keys for OS X +// 1.4 (2014-08-17) fix signed/unsigned warnings +// 1.3 (2014-06-19) fix mouse clicking to round to nearest char boundary +// 1.2 (2014-05-27) fix some RAD types that had crept into the new code +// 1.1 (2013-12-15) move-by-word (requires STB_TEXTEDIT_IS_SPACE ) +// 1.0 (2012-07-26) improve documentation, initial public release +// 0.3 (2012-02-24) bugfixes, single-line mode; insert mode +// 0.2 (2011-11-28) fixes to undo/redo +// 0.1 (2010-07-08) initial version +// +// ADDITIONAL CONTRIBUTORS +// +// Ulf Winklemann: move-by-word in 1.1 +// Fabian Giesen: secondary key inputs in 1.5 +// Martins Mozeiko: STB_TEXTEDIT_memmove in 1.6 +// Louis Schnellbach: page up/down in 1.14 +// +// Bugfixes: +// Scott Graham +// Daniel Keller +// Omar Cornut +// Dan Thompson +// +// USAGE +// +// This file behaves differently depending on what symbols you define +// before including it. +// +// +// Header-file mode: +// +// If you do not define STB_TEXTEDIT_IMPLEMENTATION before including this, +// it will operate in "header file" mode. In this mode, it declares a +// single public symbol, STB_TexteditState, which encapsulates the current +// state of a text widget (except for the string, which you will store +// separately). +// +// To compile in this mode, you must define STB_TEXTEDIT_CHARTYPE to a +// primitive type that defines a single character (e.g. char, wchar_t, etc). +// +// To save space or increase undo-ability, you can optionally define the +// following things that are used by the undo system: +// +// STB_TEXTEDIT_POSITIONTYPE small int type encoding a valid cursor position +// STB_TEXTEDIT_UNDOSTATECOUNT the number of undo states to allow +// STB_TEXTEDIT_UNDOCHARCOUNT the number of characters to store in the undo buffer +// +// If you don't define these, they are set to permissive types and +// moderate sizes. The undo system does no memory allocations, so +// it grows STB_TexteditState by the worst-case storage which is (in bytes): +// +// [4 + 3 * sizeof(STB_TEXTEDIT_POSITIONTYPE)] * STB_TEXTEDIT_UNDOSTATECOUNT +// + sizeof(STB_TEXTEDIT_CHARTYPE) * STB_TEXTEDIT_UNDOCHARCOUNT +// +// +// Implementation mode: +// +// If you define STB_TEXTEDIT_IMPLEMENTATION before including this, it +// will compile the implementation of the text edit widget, depending +// on a large number of symbols which must be defined before the include. +// +// The implementation is defined only as static functions. You will then +// need to provide your own APIs in the same file which will access the +// static functions. +// +// The basic concept is that you provide a "string" object which +// behaves like an array of characters. stb_textedit uses indices to +// refer to positions in the string, implicitly representing positions +// in the displayed textedit. This is true for both plain text and +// rich text; even with rich text stb_truetype interacts with your +// code as if there was an array of all the displayed characters. +// +// Symbols that must be the same in header-file and implementation mode: +// +// STB_TEXTEDIT_CHARTYPE the character type +// STB_TEXTEDIT_POSITIONTYPE small type that is a valid cursor position +// STB_TEXTEDIT_UNDOSTATECOUNT the number of undo states to allow +// STB_TEXTEDIT_UNDOCHARCOUNT the number of characters to store in the undo buffer +// +// Symbols you must define for implementation mode: +// +// STB_TEXTEDIT_STRING the type of object representing a string being edited, +// typically this is a wrapper object with other data you need +// +// STB_TEXTEDIT_STRINGLEN(obj) the length of the string (ideally O(1)) +// STB_TEXTEDIT_LAYOUTROW(&r,obj,n) returns the results of laying out a line of characters +// starting from character #n (see discussion below) +// STB_TEXTEDIT_GETWIDTH(obj,n,i) returns the pixel delta from the xpos of the i'th character +// to the xpos of the i+1'th char for a line of characters +// starting at character #n (i.e. accounts for kerning +// with previous char) +// STB_TEXTEDIT_KEYTOTEXT(k) maps a keyboard input to an insertable character +// (return type is int, -1 means not valid to insert) +// STB_TEXTEDIT_GETCHAR(obj,i) returns the i'th character of obj, 0-based +// STB_TEXTEDIT_NEWLINE the character returned by _GETCHAR() we recognize +// as manually wordwrapping for end-of-line positioning +// +// STB_TEXTEDIT_DELETECHARS(obj,i,n) delete n characters starting at i +// STB_TEXTEDIT_INSERTCHARS(obj,i,c*,n) insert n characters at i (pointed to by STB_TEXTEDIT_CHARTYPE*) +// +// STB_TEXTEDIT_K_SHIFT a power of two that is or'd in to a keyboard input to represent the shift key +// +// STB_TEXTEDIT_K_LEFT keyboard input to move cursor left +// STB_TEXTEDIT_K_RIGHT keyboard input to move cursor right +// STB_TEXTEDIT_K_UP keyboard input to move cursor up +// STB_TEXTEDIT_K_DOWN keyboard input to move cursor down +// STB_TEXTEDIT_K_PGUP keyboard input to move cursor up a page +// STB_TEXTEDIT_K_PGDOWN keyboard input to move cursor down a page +// STB_TEXTEDIT_K_LINESTART keyboard input to move cursor to start of line // e.g. HOME +// STB_TEXTEDIT_K_LINEEND keyboard input to move cursor to end of line // e.g. END +// STB_TEXTEDIT_K_TEXTSTART keyboard input to move cursor to start of text // e.g. ctrl-HOME +// STB_TEXTEDIT_K_TEXTEND keyboard input to move cursor to end of text // e.g. ctrl-END +// STB_TEXTEDIT_K_DELETE keyboard input to delete selection or character under cursor +// STB_TEXTEDIT_K_BACKSPACE keyboard input to delete selection or character left of cursor +// STB_TEXTEDIT_K_UNDO keyboard input to perform undo +// STB_TEXTEDIT_K_REDO keyboard input to perform redo +// +// Optional: +// STB_TEXTEDIT_K_INSERT keyboard input to toggle insert mode +// STB_TEXTEDIT_IS_SPACE(ch) true if character is whitespace (e.g. 'isspace'), +// required for default WORDLEFT/WORDRIGHT handlers +// STB_TEXTEDIT_MOVEWORDLEFT(obj,i) custom handler for WORDLEFT, returns index to move cursor to +// STB_TEXTEDIT_MOVEWORDRIGHT(obj,i) custom handler for WORDRIGHT, returns index to move cursor to +// STB_TEXTEDIT_K_WORDLEFT keyboard input to move cursor left one word // e.g. ctrl-LEFT +// STB_TEXTEDIT_K_WORDRIGHT keyboard input to move cursor right one word // e.g. ctrl-RIGHT +// STB_TEXTEDIT_K_LINESTART2 secondary keyboard input to move cursor to start of line +// STB_TEXTEDIT_K_LINEEND2 secondary keyboard input to move cursor to end of line +// STB_TEXTEDIT_K_TEXTSTART2 secondary keyboard input to move cursor to start of text +// STB_TEXTEDIT_K_TEXTEND2 secondary keyboard input to move cursor to end of text +// +// Keyboard input must be encoded as a single integer value; e.g. a character code +// and some bitflags that represent shift states. to simplify the interface, SHIFT must +// be a bitflag, so we can test the shifted state of cursor movements to allow selection, +// i.e. (STB_TEXTEDIT_K_RIGHT|STB_TEXTEDIT_K_SHIFT) should be shifted right-arrow. +// +// You can encode other things, such as CONTROL or ALT, in additional bits, and +// then test for their presence in e.g. STB_TEXTEDIT_K_WORDLEFT. For example, +// my Windows implementations add an additional CONTROL bit, and an additional KEYDOWN +// bit. Then all of the STB_TEXTEDIT_K_ values bitwise-or in the KEYDOWN bit, +// and I pass both WM_KEYDOWN and WM_CHAR events to the "key" function in the +// API below. The control keys will only match WM_KEYDOWN events because of the +// keydown bit I add, and STB_TEXTEDIT_KEYTOTEXT only tests for the KEYDOWN +// bit so it only decodes WM_CHAR events. +// +// STB_TEXTEDIT_LAYOUTROW returns information about the shape of one displayed +// row of characters assuming they start on the i'th character--the width and +// the height and the number of characters consumed. This allows this library +// to traverse the entire layout incrementally. You need to compute word-wrapping +// here. +// +// Each textfield keeps its own insert mode state, which is not how normal +// applications work. To keep an app-wide insert mode, update/copy the +// "insert_mode" field of STB_TexteditState before/after calling API functions. +// +// API +// +// void stb_textedit_initialize_state(STB_TexteditState *state, int is_single_line) +// +// void stb_textedit_click(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, float x, float y) +// void stb_textedit_drag(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, float x, float y) +// int stb_textedit_cut(STB_TEXTEDIT_STRING *str, STB_TexteditState *state) +// int stb_textedit_paste(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, STB_TEXTEDIT_CHARTYPE *text, int len) +// void stb_textedit_key(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, STB_TEXEDIT_KEYTYPE key) +// +// Each of these functions potentially updates the string and updates the +// state. +// +// initialize_state: +// set the textedit state to a known good default state when initially +// constructing the textedit. +// +// click: +// call this with the mouse x,y on a mouse down; it will update the cursor +// and reset the selection start/end to the cursor point. the x,y must +// be relative to the text widget, with (0,0) being the top left. +// +// drag: +// call this with the mouse x,y on a mouse drag/up; it will update the +// cursor and the selection end point +// +// cut: +// call this to delete the current selection; returns true if there was +// one. you should FIRST copy the current selection to the system paste buffer. +// (To copy, just copy the current selection out of the string yourself.) +// +// paste: +// call this to paste text at the current cursor point or over the current +// selection if there is one. +// +// key: +// call this for keyboard inputs sent to the textfield. you can use it +// for "key down" events or for "translated" key events. if you need to +// do both (as in Win32), or distinguish Unicode characters from control +// inputs, set a high bit to distinguish the two; then you can define the +// various definitions like STB_TEXTEDIT_K_LEFT have the is-key-event bit +// set, and make STB_TEXTEDIT_KEYTOCHAR check that the is-key-event bit is +// clear. STB_TEXTEDIT_KEYTYPE defaults to int, but you can #define it to +// anything other type you wante before including. +// +// +// When rendering, you can read the cursor position and selection state from +// the STB_TexteditState. +// +// +// Notes: +// +// This is designed to be usable in IMGUI, so it allows for the possibility of +// running in an IMGUI that has NOT cached the multi-line layout. For this +// reason, it provides an interface that is compatible with computing the +// layout incrementally--we try to make sure we make as few passes through +// as possible. (For example, to locate the mouse pointer in the text, we +// could define functions that return the X and Y positions of characters +// and binary search Y and then X, but if we're doing dynamic layout this +// will run the layout algorithm many times, so instead we manually search +// forward in one pass. Similar logic applies to e.g. up-arrow and +// down-arrow movement.) +// +// If it's run in a widget that *has* cached the layout, then this is less +// efficient, but it's not horrible on modern computers. But you wouldn't +// want to edit million-line files with it. + + +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//// +//// Header-file mode +//// +//// + +#ifndef INCLUDE_STB_TEXTEDIT_H +#define INCLUDE_STB_TEXTEDIT_H + +//////////////////////////////////////////////////////////////////////// +// +// STB_TexteditState +// +// Definition of STB_TexteditState which you should store +// per-textfield; it includes cursor position, selection state, +// and undo state. +// + +#ifndef STB_TEXTEDIT_UNDOSTATECOUNT +#define STB_TEXTEDIT_UNDOSTATECOUNT 99 +#endif +#ifndef STB_TEXTEDIT_UNDOCHARCOUNT +#define STB_TEXTEDIT_UNDOCHARCOUNT 999 +#endif +#ifndef STB_TEXTEDIT_CHARTYPE +#define STB_TEXTEDIT_CHARTYPE int +#endif +#ifndef STB_TEXTEDIT_POSITIONTYPE +#define STB_TEXTEDIT_POSITIONTYPE int +#endif + +typedef struct +{ + // private data + STB_TEXTEDIT_POSITIONTYPE where; + STB_TEXTEDIT_POSITIONTYPE insert_length; + STB_TEXTEDIT_POSITIONTYPE delete_length; + int char_storage; +} StbUndoRecord; + +typedef struct +{ + // private data + StbUndoRecord undo_rec [STB_TEXTEDIT_UNDOSTATECOUNT]; + STB_TEXTEDIT_CHARTYPE undo_char[STB_TEXTEDIT_UNDOCHARCOUNT]; + short undo_point, redo_point; + int undo_char_point, redo_char_point; +} StbUndoState; + +typedef struct +{ + ///////////////////// + // + // public data + // + + int cursor; + // position of the text cursor within the string + + int select_start; // selection start point + int select_end; + // selection start and end point in characters; if equal, no selection. + // note that start may be less than or greater than end (e.g. when + // dragging the mouse, start is where the initial click was, and you + // can drag in either direction) + + unsigned char insert_mode; + // each textfield keeps its own insert mode state. to keep an app-wide + // insert mode, copy this value in/out of the app state + + int row_count_per_page; + // page size in number of row. + // this value MUST be set to >0 for pageup or pagedown in multilines documents. + + ///////////////////// + // + // private data + // + unsigned char cursor_at_end_of_line; // not implemented yet + unsigned char initialized; + unsigned char has_preferred_x; + unsigned char single_line; + unsigned char padding1, padding2, padding3; + float preferred_x; // this determines where the cursor up/down tries to seek to along x + StbUndoState undostate; +} STB_TexteditState; + + +//////////////////////////////////////////////////////////////////////// +// +// StbTexteditRow +// +// Result of layout query, used by stb_textedit to determine where +// the text in each row is. + +// result of layout query +typedef struct +{ + float x0,x1; // starting x location, end x location (allows for align=right, etc) + float baseline_y_delta; // position of baseline relative to previous row's baseline + float ymin,ymax; // height of row above and below baseline + int num_chars; +} StbTexteditRow; +#endif //INCLUDE_STB_TEXTEDIT_H + + +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//// +//// Implementation mode +//// +//// + + +// implementation isn't include-guarded, since it might have indirectly +// included just the "header" portion +#ifdef STB_TEXTEDIT_IMPLEMENTATION + +#ifndef STB_TEXTEDIT_memmove +#include +#define STB_TEXTEDIT_memmove memmove +#endif + + +///////////////////////////////////////////////////////////////////////////// +// +// Mouse input handling +// + +// traverse the layout to locate the nearest character to a display position +static int stb_text_locate_coord(STB_TEXTEDIT_STRING *str, float x, float y) +{ + StbTexteditRow r; + int n = STB_TEXTEDIT_STRINGLEN(str); + float base_y = 0, prev_x; + int i=0, k; + + r.x0 = r.x1 = 0; + r.ymin = r.ymax = 0; + r.num_chars = 0; + + // search rows to find one that straddles 'y' + while (i < n) { + STB_TEXTEDIT_LAYOUTROW(&r, str, i); + if (r.num_chars <= 0) + return n; + + if (i==0 && y < base_y + r.ymin) + return 0; + + if (y < base_y + r.ymax) + break; + + i += r.num_chars; + base_y += r.baseline_y_delta; + } + + // below all text, return 'after' last character + if (i >= n) + return n; + + // check if it's before the beginning of the line + if (x < r.x0) + return i; + + // check if it's before the end of the line + if (x < r.x1) { + // search characters in row for one that straddles 'x' + prev_x = r.x0; + for (k=0; k < r.num_chars; ++k) { + float w = STB_TEXTEDIT_GETWIDTH(str, i, k); + if (x < prev_x+w) { + if (x < prev_x+w/2) + return k+i; + else + return k+i+1; + } + prev_x += w; + } + // shouldn't happen, but if it does, fall through to end-of-line case + } + + // if the last character is a newline, return that. otherwise return 'after' the last character + if (STB_TEXTEDIT_GETCHAR(str, i+r.num_chars-1) == STB_TEXTEDIT_NEWLINE) + return i+r.num_chars-1; + else + return i+r.num_chars; +} + +// API click: on mouse down, move the cursor to the clicked location, and reset the selection +static void stb_textedit_click(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, float x, float y) +{ + // In single-line mode, just always make y = 0. This lets the drag keep working if the mouse + // goes off the top or bottom of the text + if( state->single_line ) + { + StbTexteditRow r; + STB_TEXTEDIT_LAYOUTROW(&r, str, 0); + y = r.ymin; + } + + state->cursor = stb_text_locate_coord(str, x, y); + state->select_start = state->cursor; + state->select_end = state->cursor; + state->has_preferred_x = 0; +} + +// API drag: on mouse drag, move the cursor and selection endpoint to the clicked location +static void stb_textedit_drag(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, float x, float y) +{ + int p = 0; + + // In single-line mode, just always make y = 0. This lets the drag keep working if the mouse + // goes off the top or bottom of the text + if( state->single_line ) + { + StbTexteditRow r; + STB_TEXTEDIT_LAYOUTROW(&r, str, 0); + y = r.ymin; + } + + if (state->select_start == state->select_end) + state->select_start = state->cursor; + + p = stb_text_locate_coord(str, x, y); + state->cursor = state->select_end = p; +} + +///////////////////////////////////////////////////////////////////////////// +// +// Keyboard input handling +// + +// forward declarations +static void stb_text_undo(STB_TEXTEDIT_STRING *str, STB_TexteditState *state); +static void stb_text_redo(STB_TEXTEDIT_STRING *str, STB_TexteditState *state); +static void stb_text_makeundo_delete(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, int where, int length); +static void stb_text_makeundo_insert(STB_TexteditState *state, int where, int length); +static void stb_text_makeundo_replace(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, int where, int old_length, int new_length); + +typedef struct +{ + float x,y; // position of n'th character + float height; // height of line + int first_char, length; // first char of row, and length + int prev_first; // first char of previous row +} StbFindState; + +// find the x/y location of a character, and remember info about the previous row in +// case we get a move-up event (for page up, we'll have to rescan) +static void stb_textedit_find_charpos(StbFindState *find, STB_TEXTEDIT_STRING *str, int n, int single_line) +{ + StbTexteditRow r; + int prev_start = 0; + int z = STB_TEXTEDIT_STRINGLEN(str); + int i=0, first; + + if (n == z && single_line) { + // special case if it's at the end (may not be needed?) + STB_TEXTEDIT_LAYOUTROW(&r, str, 0); + find->y = 0; + find->first_char = 0; + find->length = z; + find->height = r.ymax - r.ymin; + find->x = r.x1; + return; + } + + // search rows to find the one that straddles character n + find->y = 0; + + for(;;) { + STB_TEXTEDIT_LAYOUTROW(&r, str, i); + if (n < i + r.num_chars) + break; + if (i + r.num_chars == z && z > 0 && STB_TEXTEDIT_GETCHAR(str, z - 1) != STB_TEXTEDIT_NEWLINE) // [DEAR IMGUI] special handling for last line + break; // [DEAR IMGUI] + prev_start = i; + i += r.num_chars; + find->y += r.baseline_y_delta; + if (i == z) // [DEAR IMGUI] + break; // [DEAR IMGUI] + } + + find->first_char = first = i; + find->length = r.num_chars; + find->height = r.ymax - r.ymin; + find->prev_first = prev_start; + + // now scan to find xpos + find->x = r.x0; + for (i=0; first+i < n; ++i) + find->x += STB_TEXTEDIT_GETWIDTH(str, first, i); +} + +#define STB_TEXT_HAS_SELECTION(s) ((s)->select_start != (s)->select_end) + +// make the selection/cursor state valid if client altered the string +static void stb_textedit_clamp(STB_TEXTEDIT_STRING *str, STB_TexteditState *state) +{ + int n = STB_TEXTEDIT_STRINGLEN(str); + if (STB_TEXT_HAS_SELECTION(state)) { + if (state->select_start > n) state->select_start = n; + if (state->select_end > n) state->select_end = n; + // if clamping forced them to be equal, move the cursor to match + if (state->select_start == state->select_end) + state->cursor = state->select_start; + } + if (state->cursor > n) state->cursor = n; +} + +// delete characters while updating undo +static void stb_textedit_delete(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, int where, int len) +{ + stb_text_makeundo_delete(str, state, where, len); + STB_TEXTEDIT_DELETECHARS(str, where, len); + state->has_preferred_x = 0; +} + +// delete the section +static void stb_textedit_delete_selection(STB_TEXTEDIT_STRING *str, STB_TexteditState *state) +{ + stb_textedit_clamp(str, state); + if (STB_TEXT_HAS_SELECTION(state)) { + if (state->select_start < state->select_end) { + stb_textedit_delete(str, state, state->select_start, state->select_end - state->select_start); + state->select_end = state->cursor = state->select_start; + } else { + stb_textedit_delete(str, state, state->select_end, state->select_start - state->select_end); + state->select_start = state->cursor = state->select_end; + } + state->has_preferred_x = 0; + } +} + +// canoncialize the selection so start <= end +static void stb_textedit_sortselection(STB_TexteditState *state) +{ + if (state->select_end < state->select_start) { + int temp = state->select_end; + state->select_end = state->select_start; + state->select_start = temp; + } +} + +// move cursor to first character of selection +static void stb_textedit_move_to_first(STB_TexteditState *state) +{ + if (STB_TEXT_HAS_SELECTION(state)) { + stb_textedit_sortselection(state); + state->cursor = state->select_start; + state->select_end = state->select_start; + state->has_preferred_x = 0; + } +} + +// move cursor to last character of selection +static void stb_textedit_move_to_last(STB_TEXTEDIT_STRING *str, STB_TexteditState *state) +{ + if (STB_TEXT_HAS_SELECTION(state)) { + stb_textedit_sortselection(state); + stb_textedit_clamp(str, state); + state->cursor = state->select_end; + state->select_start = state->select_end; + state->has_preferred_x = 0; + } +} + +#ifdef STB_TEXTEDIT_IS_SPACE +static int is_word_boundary( STB_TEXTEDIT_STRING *str, int idx ) +{ + return idx > 0 ? (STB_TEXTEDIT_IS_SPACE( STB_TEXTEDIT_GETCHAR(str,idx-1) ) && !STB_TEXTEDIT_IS_SPACE( STB_TEXTEDIT_GETCHAR(str, idx) ) ) : 1; +} + +#ifndef STB_TEXTEDIT_MOVEWORDLEFT +static int stb_textedit_move_to_word_previous( STB_TEXTEDIT_STRING *str, int c ) +{ + --c; // always move at least one character + while( c >= 0 && !is_word_boundary( str, c ) ) + --c; + + if( c < 0 ) + c = 0; + + return c; +} +#define STB_TEXTEDIT_MOVEWORDLEFT stb_textedit_move_to_word_previous +#endif + +#ifndef STB_TEXTEDIT_MOVEWORDRIGHT +static int stb_textedit_move_to_word_next( STB_TEXTEDIT_STRING *str, int c ) +{ + const int len = STB_TEXTEDIT_STRINGLEN(str); + ++c; // always move at least one character + while( c < len && !is_word_boundary( str, c ) ) + ++c; + + if( c > len ) + c = len; + + return c; +} +#define STB_TEXTEDIT_MOVEWORDRIGHT stb_textedit_move_to_word_next +#endif + +#endif + +// update selection and cursor to match each other +static void stb_textedit_prep_selection_at_cursor(STB_TexteditState *state) +{ + if (!STB_TEXT_HAS_SELECTION(state)) + state->select_start = state->select_end = state->cursor; + else + state->cursor = state->select_end; +} + +// API cut: delete selection +static int stb_textedit_cut(STB_TEXTEDIT_STRING *str, STB_TexteditState *state) +{ + if (STB_TEXT_HAS_SELECTION(state)) { + stb_textedit_delete_selection(str,state); // implicitly clamps + state->has_preferred_x = 0; + return 1; + } + return 0; +} + +// API paste: replace existing selection with passed-in text +static int stb_textedit_paste_internal(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, STB_TEXTEDIT_CHARTYPE *text, int len) +{ + // if there's a selection, the paste should delete it + stb_textedit_clamp(str, state); + stb_textedit_delete_selection(str,state); + // try to insert the characters + if (STB_TEXTEDIT_INSERTCHARS(str, state->cursor, text, len)) { + stb_text_makeundo_insert(state, state->cursor, len); + state->cursor += len; + state->has_preferred_x = 0; + return 1; + } + // note: paste failure will leave deleted selection, may be restored with an undo (see https://github.com/nothings/stb/issues/734 for details) + return 0; +} + +#ifndef STB_TEXTEDIT_KEYTYPE +#define STB_TEXTEDIT_KEYTYPE int +#endif + +// API key: process a keyboard input +static void stb_textedit_key(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, STB_TEXTEDIT_KEYTYPE key) +{ +retry: + switch (key) { + default: { + int c = STB_TEXTEDIT_KEYTOTEXT(key); + if (c > 0) { + STB_TEXTEDIT_CHARTYPE ch = (STB_TEXTEDIT_CHARTYPE) c; + + // can't add newline in single-line mode + if (c == '\n' && state->single_line) + break; + + if (state->insert_mode && !STB_TEXT_HAS_SELECTION(state) && state->cursor < STB_TEXTEDIT_STRINGLEN(str)) { + stb_text_makeundo_replace(str, state, state->cursor, 1, 1); + STB_TEXTEDIT_DELETECHARS(str, state->cursor, 1); + if (STB_TEXTEDIT_INSERTCHARS(str, state->cursor, &ch, 1)) { + ++state->cursor; + state->has_preferred_x = 0; + } + } else { + stb_textedit_delete_selection(str,state); // implicitly clamps + if (STB_TEXTEDIT_INSERTCHARS(str, state->cursor, &ch, 1)) { + stb_text_makeundo_insert(state, state->cursor, 1); + ++state->cursor; + state->has_preferred_x = 0; + } + } + } + break; + } + +#ifdef STB_TEXTEDIT_K_INSERT + case STB_TEXTEDIT_K_INSERT: + state->insert_mode = !state->insert_mode; + break; +#endif + + case STB_TEXTEDIT_K_UNDO: + stb_text_undo(str, state); + state->has_preferred_x = 0; + break; + + case STB_TEXTEDIT_K_REDO: + stb_text_redo(str, state); + state->has_preferred_x = 0; + break; + + case STB_TEXTEDIT_K_LEFT: + // if currently there's a selection, move cursor to start of selection + if (STB_TEXT_HAS_SELECTION(state)) + stb_textedit_move_to_first(state); + else + if (state->cursor > 0) + --state->cursor; + state->has_preferred_x = 0; + break; + + case STB_TEXTEDIT_K_RIGHT: + // if currently there's a selection, move cursor to end of selection + if (STB_TEXT_HAS_SELECTION(state)) + stb_textedit_move_to_last(str, state); + else + ++state->cursor; + stb_textedit_clamp(str, state); + state->has_preferred_x = 0; + break; + + case STB_TEXTEDIT_K_LEFT | STB_TEXTEDIT_K_SHIFT: + stb_textedit_clamp(str, state); + stb_textedit_prep_selection_at_cursor(state); + // move selection left + if (state->select_end > 0) + --state->select_end; + state->cursor = state->select_end; + state->has_preferred_x = 0; + break; + +#ifdef STB_TEXTEDIT_MOVEWORDLEFT + case STB_TEXTEDIT_K_WORDLEFT: + if (STB_TEXT_HAS_SELECTION(state)) + stb_textedit_move_to_first(state); + else { + state->cursor = STB_TEXTEDIT_MOVEWORDLEFT(str, state->cursor); + stb_textedit_clamp( str, state ); + } + break; + + case STB_TEXTEDIT_K_WORDLEFT | STB_TEXTEDIT_K_SHIFT: + if( !STB_TEXT_HAS_SELECTION( state ) ) + stb_textedit_prep_selection_at_cursor(state); + + state->cursor = STB_TEXTEDIT_MOVEWORDLEFT(str, state->cursor); + state->select_end = state->cursor; + + stb_textedit_clamp( str, state ); + break; +#endif + +#ifdef STB_TEXTEDIT_MOVEWORDRIGHT + case STB_TEXTEDIT_K_WORDRIGHT: + if (STB_TEXT_HAS_SELECTION(state)) + stb_textedit_move_to_last(str, state); + else { + state->cursor = STB_TEXTEDIT_MOVEWORDRIGHT(str, state->cursor); + stb_textedit_clamp( str, state ); + } + break; + + case STB_TEXTEDIT_K_WORDRIGHT | STB_TEXTEDIT_K_SHIFT: + if( !STB_TEXT_HAS_SELECTION( state ) ) + stb_textedit_prep_selection_at_cursor(state); + + state->cursor = STB_TEXTEDIT_MOVEWORDRIGHT(str, state->cursor); + state->select_end = state->cursor; + + stb_textedit_clamp( str, state ); + break; +#endif + + case STB_TEXTEDIT_K_RIGHT | STB_TEXTEDIT_K_SHIFT: + stb_textedit_prep_selection_at_cursor(state); + // move selection right + ++state->select_end; + stb_textedit_clamp(str, state); + state->cursor = state->select_end; + state->has_preferred_x = 0; + break; + + case STB_TEXTEDIT_K_DOWN: + case STB_TEXTEDIT_K_DOWN | STB_TEXTEDIT_K_SHIFT: + case STB_TEXTEDIT_K_PGDOWN: + case STB_TEXTEDIT_K_PGDOWN | STB_TEXTEDIT_K_SHIFT: { + StbFindState find; + StbTexteditRow row; + int i, j, sel = (key & STB_TEXTEDIT_K_SHIFT) != 0; + int is_page = (key & ~STB_TEXTEDIT_K_SHIFT) == STB_TEXTEDIT_K_PGDOWN; + int row_count = is_page ? state->row_count_per_page : 1; + + if (!is_page && state->single_line) { + // on windows, up&down in single-line behave like left&right + key = STB_TEXTEDIT_K_RIGHT | (key & STB_TEXTEDIT_K_SHIFT); + goto retry; + } + + if (sel) + stb_textedit_prep_selection_at_cursor(state); + else if (STB_TEXT_HAS_SELECTION(state)) + stb_textedit_move_to_last(str, state); + + // compute current position of cursor point + stb_textedit_clamp(str, state); + stb_textedit_find_charpos(&find, str, state->cursor, state->single_line); + + for (j = 0; j < row_count; ++j) { + float x, goal_x = state->has_preferred_x ? state->preferred_x : find.x; + int start = find.first_char + find.length; + + if (find.length == 0) + break; + + // [DEAR IMGUI] + // going down while being on the last line shouldn't bring us to that line end + if (STB_TEXTEDIT_GETCHAR(str, find.first_char + find.length - 1) != STB_TEXTEDIT_NEWLINE) + break; + + // now find character position down a row + state->cursor = start; + STB_TEXTEDIT_LAYOUTROW(&row, str, state->cursor); + x = row.x0; + for (i=0; i < row.num_chars; ++i) { + float dx = STB_TEXTEDIT_GETWIDTH(str, start, i); + #ifdef STB_TEXTEDIT_GETWIDTH_NEWLINE + if (dx == STB_TEXTEDIT_GETWIDTH_NEWLINE) + break; + #endif + x += dx; + if (x > goal_x) + break; + ++state->cursor; + } + stb_textedit_clamp(str, state); + + state->has_preferred_x = 1; + state->preferred_x = goal_x; + + if (sel) + state->select_end = state->cursor; + + // go to next line + find.first_char = find.first_char + find.length; + find.length = row.num_chars; + } + break; + } + + case STB_TEXTEDIT_K_UP: + case STB_TEXTEDIT_K_UP | STB_TEXTEDIT_K_SHIFT: + case STB_TEXTEDIT_K_PGUP: + case STB_TEXTEDIT_K_PGUP | STB_TEXTEDIT_K_SHIFT: { + StbFindState find; + StbTexteditRow row; + int i, j, prev_scan, sel = (key & STB_TEXTEDIT_K_SHIFT) != 0; + int is_page = (key & ~STB_TEXTEDIT_K_SHIFT) == STB_TEXTEDIT_K_PGUP; + int row_count = is_page ? state->row_count_per_page : 1; + + if (!is_page && state->single_line) { + // on windows, up&down become left&right + key = STB_TEXTEDIT_K_LEFT | (key & STB_TEXTEDIT_K_SHIFT); + goto retry; + } + + if (sel) + stb_textedit_prep_selection_at_cursor(state); + else if (STB_TEXT_HAS_SELECTION(state)) + stb_textedit_move_to_first(state); + + // compute current position of cursor point + stb_textedit_clamp(str, state); + stb_textedit_find_charpos(&find, str, state->cursor, state->single_line); + + for (j = 0; j < row_count; ++j) { + float x, goal_x = state->has_preferred_x ? state->preferred_x : find.x; + + // can only go up if there's a previous row + if (find.prev_first == find.first_char) + break; + + // now find character position up a row + state->cursor = find.prev_first; + STB_TEXTEDIT_LAYOUTROW(&row, str, state->cursor); + x = row.x0; + for (i=0; i < row.num_chars; ++i) { + float dx = STB_TEXTEDIT_GETWIDTH(str, find.prev_first, i); + #ifdef STB_TEXTEDIT_GETWIDTH_NEWLINE + if (dx == STB_TEXTEDIT_GETWIDTH_NEWLINE) + break; + #endif + x += dx; + if (x > goal_x) + break; + ++state->cursor; + } + stb_textedit_clamp(str, state); + + state->has_preferred_x = 1; + state->preferred_x = goal_x; + + if (sel) + state->select_end = state->cursor; + + // go to previous line + // (we need to scan previous line the hard way. maybe we could expose this as a new API function?) + prev_scan = find.prev_first > 0 ? find.prev_first - 1 : 0; + while (prev_scan > 0 && STB_TEXTEDIT_GETCHAR(str, prev_scan - 1) != STB_TEXTEDIT_NEWLINE) + --prev_scan; + find.first_char = find.prev_first; + find.prev_first = prev_scan; + } + break; + } + + case STB_TEXTEDIT_K_DELETE: + case STB_TEXTEDIT_K_DELETE | STB_TEXTEDIT_K_SHIFT: + if (STB_TEXT_HAS_SELECTION(state)) + stb_textedit_delete_selection(str, state); + else { + int n = STB_TEXTEDIT_STRINGLEN(str); + if (state->cursor < n) + stb_textedit_delete(str, state, state->cursor, 1); + } + state->has_preferred_x = 0; + break; + + case STB_TEXTEDIT_K_BACKSPACE: + case STB_TEXTEDIT_K_BACKSPACE | STB_TEXTEDIT_K_SHIFT: + if (STB_TEXT_HAS_SELECTION(state)) + stb_textedit_delete_selection(str, state); + else { + stb_textedit_clamp(str, state); + if (state->cursor > 0) { + stb_textedit_delete(str, state, state->cursor-1, 1); + --state->cursor; + } + } + state->has_preferred_x = 0; + break; + +#ifdef STB_TEXTEDIT_K_TEXTSTART2 + case STB_TEXTEDIT_K_TEXTSTART2: +#endif + case STB_TEXTEDIT_K_TEXTSTART: + state->cursor = state->select_start = state->select_end = 0; + state->has_preferred_x = 0; + break; + +#ifdef STB_TEXTEDIT_K_TEXTEND2 + case STB_TEXTEDIT_K_TEXTEND2: +#endif + case STB_TEXTEDIT_K_TEXTEND: + state->cursor = STB_TEXTEDIT_STRINGLEN(str); + state->select_start = state->select_end = 0; + state->has_preferred_x = 0; + break; + +#ifdef STB_TEXTEDIT_K_TEXTSTART2 + case STB_TEXTEDIT_K_TEXTSTART2 | STB_TEXTEDIT_K_SHIFT: +#endif + case STB_TEXTEDIT_K_TEXTSTART | STB_TEXTEDIT_K_SHIFT: + stb_textedit_prep_selection_at_cursor(state); + state->cursor = state->select_end = 0; + state->has_preferred_x = 0; + break; + +#ifdef STB_TEXTEDIT_K_TEXTEND2 + case STB_TEXTEDIT_K_TEXTEND2 | STB_TEXTEDIT_K_SHIFT: +#endif + case STB_TEXTEDIT_K_TEXTEND | STB_TEXTEDIT_K_SHIFT: + stb_textedit_prep_selection_at_cursor(state); + state->cursor = state->select_end = STB_TEXTEDIT_STRINGLEN(str); + state->has_preferred_x = 0; + break; + + +#ifdef STB_TEXTEDIT_K_LINESTART2 + case STB_TEXTEDIT_K_LINESTART2: +#endif + case STB_TEXTEDIT_K_LINESTART: + stb_textedit_clamp(str, state); + stb_textedit_move_to_first(state); + if (state->single_line) + state->cursor = 0; + else while (state->cursor > 0 && STB_TEXTEDIT_GETCHAR(str, state->cursor-1) != STB_TEXTEDIT_NEWLINE) + --state->cursor; + state->has_preferred_x = 0; + break; + +#ifdef STB_TEXTEDIT_K_LINEEND2 + case STB_TEXTEDIT_K_LINEEND2: +#endif + case STB_TEXTEDIT_K_LINEEND: { + int n = STB_TEXTEDIT_STRINGLEN(str); + stb_textedit_clamp(str, state); + stb_textedit_move_to_first(state); + if (state->single_line) + state->cursor = n; + else while (state->cursor < n && STB_TEXTEDIT_GETCHAR(str, state->cursor) != STB_TEXTEDIT_NEWLINE) + ++state->cursor; + state->has_preferred_x = 0; + break; + } + +#ifdef STB_TEXTEDIT_K_LINESTART2 + case STB_TEXTEDIT_K_LINESTART2 | STB_TEXTEDIT_K_SHIFT: +#endif + case STB_TEXTEDIT_K_LINESTART | STB_TEXTEDIT_K_SHIFT: + stb_textedit_clamp(str, state); + stb_textedit_prep_selection_at_cursor(state); + if (state->single_line) + state->cursor = 0; + else while (state->cursor > 0 && STB_TEXTEDIT_GETCHAR(str, state->cursor-1) != STB_TEXTEDIT_NEWLINE) + --state->cursor; + state->select_end = state->cursor; + state->has_preferred_x = 0; + break; + +#ifdef STB_TEXTEDIT_K_LINEEND2 + case STB_TEXTEDIT_K_LINEEND2 | STB_TEXTEDIT_K_SHIFT: +#endif + case STB_TEXTEDIT_K_LINEEND | STB_TEXTEDIT_K_SHIFT: { + int n = STB_TEXTEDIT_STRINGLEN(str); + stb_textedit_clamp(str, state); + stb_textedit_prep_selection_at_cursor(state); + if (state->single_line) + state->cursor = n; + else while (state->cursor < n && STB_TEXTEDIT_GETCHAR(str, state->cursor) != STB_TEXTEDIT_NEWLINE) + ++state->cursor; + state->select_end = state->cursor; + state->has_preferred_x = 0; + break; + } + } +} + +///////////////////////////////////////////////////////////////////////////// +// +// Undo processing +// +// @OPTIMIZE: the undo/redo buffer should be circular + +static void stb_textedit_flush_redo(StbUndoState *state) +{ + state->redo_point = STB_TEXTEDIT_UNDOSTATECOUNT; + state->redo_char_point = STB_TEXTEDIT_UNDOCHARCOUNT; +} + +// discard the oldest entry in the undo list +static void stb_textedit_discard_undo(StbUndoState *state) +{ + if (state->undo_point > 0) { + // if the 0th undo state has characters, clean those up + if (state->undo_rec[0].char_storage >= 0) { + int n = state->undo_rec[0].insert_length, i; + // delete n characters from all other records + state->undo_char_point -= n; + STB_TEXTEDIT_memmove(state->undo_char, state->undo_char + n, (size_t) (state->undo_char_point*sizeof(STB_TEXTEDIT_CHARTYPE))); + for (i=0; i < state->undo_point; ++i) + if (state->undo_rec[i].char_storage >= 0) + state->undo_rec[i].char_storage -= n; // @OPTIMIZE: get rid of char_storage and infer it + } + --state->undo_point; + STB_TEXTEDIT_memmove(state->undo_rec, state->undo_rec+1, (size_t) (state->undo_point*sizeof(state->undo_rec[0]))); + } +} + +// discard the oldest entry in the redo list--it's bad if this +// ever happens, but because undo & redo have to store the actual +// characters in different cases, the redo character buffer can +// fill up even though the undo buffer didn't +static void stb_textedit_discard_redo(StbUndoState *state) +{ + int k = STB_TEXTEDIT_UNDOSTATECOUNT-1; + + if (state->redo_point <= k) { + // if the k'th undo state has characters, clean those up + if (state->undo_rec[k].char_storage >= 0) { + int n = state->undo_rec[k].insert_length, i; + // move the remaining redo character data to the end of the buffer + state->redo_char_point += n; + STB_TEXTEDIT_memmove(state->undo_char + state->redo_char_point, state->undo_char + state->redo_char_point-n, (size_t) ((STB_TEXTEDIT_UNDOCHARCOUNT - state->redo_char_point)*sizeof(STB_TEXTEDIT_CHARTYPE))); + // adjust the position of all the other records to account for above memmove + for (i=state->redo_point; i < k; ++i) + if (state->undo_rec[i].char_storage >= 0) + state->undo_rec[i].char_storage += n; + } + // now move all the redo records towards the end of the buffer; the first one is at 'redo_point' + // [DEAR IMGUI] + size_t move_size = (size_t)((STB_TEXTEDIT_UNDOSTATECOUNT - state->redo_point - 1) * sizeof(state->undo_rec[0])); + const char* buf_begin = (char*)state->undo_rec; (void)buf_begin; + const char* buf_end = (char*)state->undo_rec + sizeof(state->undo_rec); (void)buf_end; + IM_ASSERT(((char*)(state->undo_rec + state->redo_point)) >= buf_begin); + IM_ASSERT(((char*)(state->undo_rec + state->redo_point + 1) + move_size) <= buf_end); + STB_TEXTEDIT_memmove(state->undo_rec + state->redo_point+1, state->undo_rec + state->redo_point, move_size); + + // now move redo_point to point to the new one + ++state->redo_point; + } +} + +static StbUndoRecord *stb_text_create_undo_record(StbUndoState *state, int numchars) +{ + // any time we create a new undo record, we discard redo + stb_textedit_flush_redo(state); + + // if we have no free records, we have to make room, by sliding the + // existing records down + if (state->undo_point == STB_TEXTEDIT_UNDOSTATECOUNT) + stb_textedit_discard_undo(state); + + // if the characters to store won't possibly fit in the buffer, we can't undo + if (numchars > STB_TEXTEDIT_UNDOCHARCOUNT) { + state->undo_point = 0; + state->undo_char_point = 0; + return NULL; + } + + // if we don't have enough free characters in the buffer, we have to make room + while (state->undo_char_point + numchars > STB_TEXTEDIT_UNDOCHARCOUNT) + stb_textedit_discard_undo(state); + + return &state->undo_rec[state->undo_point++]; +} + +static STB_TEXTEDIT_CHARTYPE *stb_text_createundo(StbUndoState *state, int pos, int insert_len, int delete_len) +{ + StbUndoRecord *r = stb_text_create_undo_record(state, insert_len); + if (r == NULL) + return NULL; + + r->where = pos; + r->insert_length = (STB_TEXTEDIT_POSITIONTYPE) insert_len; + r->delete_length = (STB_TEXTEDIT_POSITIONTYPE) delete_len; + + if (insert_len == 0) { + r->char_storage = -1; + return NULL; + } else { + r->char_storage = state->undo_char_point; + state->undo_char_point += insert_len; + return &state->undo_char[r->char_storage]; + } +} + +static void stb_text_undo(STB_TEXTEDIT_STRING *str, STB_TexteditState *state) +{ + StbUndoState *s = &state->undostate; + StbUndoRecord u, *r; + if (s->undo_point == 0) + return; + + // we need to do two things: apply the undo record, and create a redo record + u = s->undo_rec[s->undo_point-1]; + r = &s->undo_rec[s->redo_point-1]; + r->char_storage = -1; + + r->insert_length = u.delete_length; + r->delete_length = u.insert_length; + r->where = u.where; + + if (u.delete_length) { + // if the undo record says to delete characters, then the redo record will + // need to re-insert the characters that get deleted, so we need to store + // them. + + // there are three cases: + // there's enough room to store the characters + // characters stored for *redoing* don't leave room for redo + // characters stored for *undoing* don't leave room for redo + // if the last is true, we have to bail + + if (s->undo_char_point + u.delete_length >= STB_TEXTEDIT_UNDOCHARCOUNT) { + // the undo records take up too much character space; there's no space to store the redo characters + r->insert_length = 0; + } else { + int i; + + // there's definitely room to store the characters eventually + while (s->undo_char_point + u.delete_length > s->redo_char_point) { + // should never happen: + if (s->redo_point == STB_TEXTEDIT_UNDOSTATECOUNT) + return; + // there's currently not enough room, so discard a redo record + stb_textedit_discard_redo(s); + } + r = &s->undo_rec[s->redo_point-1]; + + r->char_storage = s->redo_char_point - u.delete_length; + s->redo_char_point = s->redo_char_point - u.delete_length; + + // now save the characters + for (i=0; i < u.delete_length; ++i) + s->undo_char[r->char_storage + i] = STB_TEXTEDIT_GETCHAR(str, u.where + i); + } + + // now we can carry out the deletion + STB_TEXTEDIT_DELETECHARS(str, u.where, u.delete_length); + } + + // check type of recorded action: + if (u.insert_length) { + // easy case: was a deletion, so we need to insert n characters + STB_TEXTEDIT_INSERTCHARS(str, u.where, &s->undo_char[u.char_storage], u.insert_length); + s->undo_char_point -= u.insert_length; + } + + state->cursor = u.where + u.insert_length; + + s->undo_point--; + s->redo_point--; +} + +static void stb_text_redo(STB_TEXTEDIT_STRING *str, STB_TexteditState *state) +{ + StbUndoState *s = &state->undostate; + StbUndoRecord *u, r; + if (s->redo_point == STB_TEXTEDIT_UNDOSTATECOUNT) + return; + + // we need to do two things: apply the redo record, and create an undo record + u = &s->undo_rec[s->undo_point]; + r = s->undo_rec[s->redo_point]; + + // we KNOW there must be room for the undo record, because the redo record + // was derived from an undo record + + u->delete_length = r.insert_length; + u->insert_length = r.delete_length; + u->where = r.where; + u->char_storage = -1; + + if (r.delete_length) { + // the redo record requires us to delete characters, so the undo record + // needs to store the characters + + if (s->undo_char_point + u->insert_length > s->redo_char_point) { + u->insert_length = 0; + u->delete_length = 0; + } else { + int i; + u->char_storage = s->undo_char_point; + s->undo_char_point = s->undo_char_point + u->insert_length; + + // now save the characters + for (i=0; i < u->insert_length; ++i) + s->undo_char[u->char_storage + i] = STB_TEXTEDIT_GETCHAR(str, u->where + i); + } + + STB_TEXTEDIT_DELETECHARS(str, r.where, r.delete_length); + } + + if (r.insert_length) { + // easy case: need to insert n characters + STB_TEXTEDIT_INSERTCHARS(str, r.where, &s->undo_char[r.char_storage], r.insert_length); + s->redo_char_point += r.insert_length; + } + + state->cursor = r.where + r.insert_length; + + s->undo_point++; + s->redo_point++; +} + +static void stb_text_makeundo_insert(STB_TexteditState *state, int where, int length) +{ + stb_text_createundo(&state->undostate, where, 0, length); +} + +static void stb_text_makeundo_delete(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, int where, int length) +{ + int i; + STB_TEXTEDIT_CHARTYPE *p = stb_text_createundo(&state->undostate, where, length, 0); + if (p) { + for (i=0; i < length; ++i) + p[i] = STB_TEXTEDIT_GETCHAR(str, where+i); + } +} + +static void stb_text_makeundo_replace(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, int where, int old_length, int new_length) +{ + int i; + STB_TEXTEDIT_CHARTYPE *p = stb_text_createundo(&state->undostate, where, old_length, new_length); + if (p) { + for (i=0; i < old_length; ++i) + p[i] = STB_TEXTEDIT_GETCHAR(str, where+i); + } +} + +// reset the state to default +static void stb_textedit_clear_state(STB_TexteditState *state, int is_single_line) +{ + state->undostate.undo_point = 0; + state->undostate.undo_char_point = 0; + state->undostate.redo_point = STB_TEXTEDIT_UNDOSTATECOUNT; + state->undostate.redo_char_point = STB_TEXTEDIT_UNDOCHARCOUNT; + state->select_end = state->select_start = 0; + state->cursor = 0; + state->has_preferred_x = 0; + state->preferred_x = 0; + state->cursor_at_end_of_line = 0; + state->initialized = 1; + state->single_line = (unsigned char) is_single_line; + state->insert_mode = 0; + state->row_count_per_page = 0; +} + +// API initialize +static void stb_textedit_initialize_state(STB_TexteditState *state, int is_single_line) +{ + stb_textedit_clear_state(state, is_single_line); +} + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wcast-qual" +#endif + +static int stb_textedit_paste(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, STB_TEXTEDIT_CHARTYPE const *ctext, int len) +{ + return stb_textedit_paste_internal(str, state, (STB_TEXTEDIT_CHARTYPE *) ctext, len); +} + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#endif//STB_TEXTEDIT_IMPLEMENTATION + +/* +------------------------------------------------------------------------------ +This software is available under 2 licenses -- choose whichever you prefer. +------------------------------------------------------------------------------ +ALTERNATIVE A - MIT License +Copyright (c) 2017 Sean Barrett +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------------------------------------------------ +ALTERNATIVE B - Public Domain (www.unlicense.org) +This is free and unencumbered software released into the public domain. +Anyone is free to copy, modify, publish, use, compile, sell, or distribute this +software, either in source code form or as a compiled binary, for any purpose, +commercial or non-commercial, and by any means. +In jurisdictions that recognize copyright laws, the author or authors of this +software dedicate any and all copyright interest in the software to the public +domain. We make this dedication for the benefit of the public at large and to +the detriment of our heirs and successors. We intend this dedication to be an +overt act of relinquishment in perpetuity of all present and future rights to +this software under copyright law. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------------------------------------------------ +*/ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imstb_truetype.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imstb_truetype.h new file mode 100644 index 0000000..35c827e --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui/imstb_truetype.h @@ -0,0 +1,5085 @@ +// [DEAR IMGUI] +// This is a slightly modified version of stb_truetype.h 1.26. +// Mostly fixing for compiler and static analyzer warnings. +// Grep for [DEAR IMGUI] to find the changes. + +// stb_truetype.h - v1.26 - public domain +// authored from 2009-2021 by Sean Barrett / RAD Game Tools +// +// ======================================================================= +// +// NO SECURITY GUARANTEE -- DO NOT USE THIS ON UNTRUSTED FONT FILES +// +// This library does no range checking of the offsets found in the file, +// meaning an attacker can use it to read arbitrary memory. +// +// ======================================================================= +// +// This library processes TrueType files: +// parse files +// extract glyph metrics +// extract glyph shapes +// render glyphs to one-channel bitmaps with antialiasing (box filter) +// render glyphs to one-channel SDF bitmaps (signed-distance field/function) +// +// Todo: +// non-MS cmaps +// crashproof on bad data +// hinting? (no longer patented) +// cleartype-style AA? +// optimize: use simple memory allocator for intermediates +// optimize: build edge-list directly from curves +// optimize: rasterize directly from curves? +// +// ADDITIONAL CONTRIBUTORS +// +// Mikko Mononen: compound shape support, more cmap formats +// Tor Andersson: kerning, subpixel rendering +// Dougall Johnson: OpenType / Type 2 font handling +// Daniel Ribeiro Maciel: basic GPOS-based kerning +// +// Misc other: +// Ryan Gordon +// Simon Glass +// github:IntellectualKitty +// Imanol Celaya +// Daniel Ribeiro Maciel +// +// Bug/warning reports/fixes: +// "Zer" on mollyrocket Fabian "ryg" Giesen github:NiLuJe +// Cass Everitt Martins Mozeiko github:aloucks +// stoiko (Haemimont Games) Cap Petschulat github:oyvindjam +// Brian Hook Omar Cornut github:vassvik +// Walter van Niftrik Ryan Griege +// David Gow Peter LaValle +// David Given Sergey Popov +// Ivan-Assen Ivanov Giumo X. Clanjor +// Anthony Pesch Higor Euripedes +// Johan Duparc Thomas Fields +// Hou Qiming Derek Vinyard +// Rob Loach Cort Stratton +// Kenney Phillis Jr. Brian Costabile +// Ken Voskuil (kaesve) +// +// VERSION HISTORY +// +// 1.26 (2021-08-28) fix broken rasterizer +// 1.25 (2021-07-11) many fixes +// 1.24 (2020-02-05) fix warning +// 1.23 (2020-02-02) query SVG data for glyphs; query whole kerning table (but only kern not GPOS) +// 1.22 (2019-08-11) minimize missing-glyph duplication; fix kerning if both 'GPOS' and 'kern' are defined +// 1.21 (2019-02-25) fix warning +// 1.20 (2019-02-07) PackFontRange skips missing codepoints; GetScaleFontVMetrics() +// 1.19 (2018-02-11) GPOS kerning, STBTT_fmod +// 1.18 (2018-01-29) add missing function +// 1.17 (2017-07-23) make more arguments const; doc fix +// 1.16 (2017-07-12) SDF support +// 1.15 (2017-03-03) make more arguments const +// 1.14 (2017-01-16) num-fonts-in-TTC function +// 1.13 (2017-01-02) support OpenType fonts, certain Apple fonts +// 1.12 (2016-10-25) suppress warnings about casting away const with -Wcast-qual +// 1.11 (2016-04-02) fix unused-variable warning +// 1.10 (2016-04-02) user-defined fabs(); rare memory leak; remove duplicate typedef +// 1.09 (2016-01-16) warning fix; avoid crash on outofmem; use allocation userdata properly +// 1.08 (2015-09-13) document stbtt_Rasterize(); fixes for vertical & horizontal edges +// 1.07 (2015-08-01) allow PackFontRanges to accept arrays of sparse codepoints; +// variant PackFontRanges to pack and render in separate phases; +// fix stbtt_GetFontOFfsetForIndex (never worked for non-0 input?); +// fixed an assert() bug in the new rasterizer +// replace assert() with STBTT_assert() in new rasterizer +// +// Full history can be found at the end of this file. +// +// LICENSE +// +// See end of file for license information. +// +// USAGE +// +// Include this file in whatever places need to refer to it. In ONE C/C++ +// file, write: +// #define STB_TRUETYPE_IMPLEMENTATION +// before the #include of this file. This expands out the actual +// implementation into that C/C++ file. +// +// To make the implementation private to the file that generates the implementation, +// #define STBTT_STATIC +// +// Simple 3D API (don't ship this, but it's fine for tools and quick start) +// stbtt_BakeFontBitmap() -- bake a font to a bitmap for use as texture +// stbtt_GetBakedQuad() -- compute quad to draw for a given char +// +// Improved 3D API (more shippable): +// #include "stb_rect_pack.h" -- optional, but you really want it +// stbtt_PackBegin() +// stbtt_PackSetOversampling() -- for improved quality on small fonts +// stbtt_PackFontRanges() -- pack and renders +// stbtt_PackEnd() +// stbtt_GetPackedQuad() +// +// "Load" a font file from a memory buffer (you have to keep the buffer loaded) +// stbtt_InitFont() +// stbtt_GetFontOffsetForIndex() -- indexing for TTC font collections +// stbtt_GetNumberOfFonts() -- number of fonts for TTC font collections +// +// Render a unicode codepoint to a bitmap +// stbtt_GetCodepointBitmap() -- allocates and returns a bitmap +// stbtt_MakeCodepointBitmap() -- renders into bitmap you provide +// stbtt_GetCodepointBitmapBox() -- how big the bitmap must be +// +// Character advance/positioning +// stbtt_GetCodepointHMetrics() +// stbtt_GetFontVMetrics() +// stbtt_GetFontVMetricsOS2() +// stbtt_GetCodepointKernAdvance() +// +// Starting with version 1.06, the rasterizer was replaced with a new, +// faster and generally-more-precise rasterizer. The new rasterizer more +// accurately measures pixel coverage for anti-aliasing, except in the case +// where multiple shapes overlap, in which case it overestimates the AA pixel +// coverage. Thus, anti-aliasing of intersecting shapes may look wrong. If +// this turns out to be a problem, you can re-enable the old rasterizer with +// #define STBTT_RASTERIZER_VERSION 1 +// which will incur about a 15% speed hit. +// +// ADDITIONAL DOCUMENTATION +// +// Immediately after this block comment are a series of sample programs. +// +// After the sample programs is the "header file" section. This section +// includes documentation for each API function. +// +// Some important concepts to understand to use this library: +// +// Codepoint +// Characters are defined by unicode codepoints, e.g. 65 is +// uppercase A, 231 is lowercase c with a cedilla, 0x7e30 is +// the hiragana for "ma". +// +// Glyph +// A visual character shape (every codepoint is rendered as +// some glyph) +// +// Glyph index +// A font-specific integer ID representing a glyph +// +// Baseline +// Glyph shapes are defined relative to a baseline, which is the +// bottom of uppercase characters. Characters extend both above +// and below the baseline. +// +// Current Point +// As you draw text to the screen, you keep track of a "current point" +// which is the origin of each character. The current point's vertical +// position is the baseline. Even "baked fonts" use this model. +// +// Vertical Font Metrics +// The vertical qualities of the font, used to vertically position +// and space the characters. See docs for stbtt_GetFontVMetrics. +// +// Font Size in Pixels or Points +// The preferred interface for specifying font sizes in stb_truetype +// is to specify how tall the font's vertical extent should be in pixels. +// If that sounds good enough, skip the next paragraph. +// +// Most font APIs instead use "points", which are a common typographic +// measurement for describing font size, defined as 72 points per inch. +// stb_truetype provides a point API for compatibility. However, true +// "per inch" conventions don't make much sense on computer displays +// since different monitors have different number of pixels per +// inch. For example, Windows traditionally uses a convention that +// there are 96 pixels per inch, thus making 'inch' measurements have +// nothing to do with inches, and thus effectively defining a point to +// be 1.333 pixels. Additionally, the TrueType font data provides +// an explicit scale factor to scale a given font's glyphs to points, +// but the author has observed that this scale factor is often wrong +// for non-commercial fonts, thus making fonts scaled in points +// according to the TrueType spec incoherently sized in practice. +// +// DETAILED USAGE: +// +// Scale: +// Select how high you want the font to be, in points or pixels. +// Call ScaleForPixelHeight or ScaleForMappingEmToPixels to compute +// a scale factor SF that will be used by all other functions. +// +// Baseline: +// You need to select a y-coordinate that is the baseline of where +// your text will appear. Call GetFontBoundingBox to get the baseline-relative +// bounding box for all characters. SF*-y0 will be the distance in pixels +// that the worst-case character could extend above the baseline, so if +// you want the top edge of characters to appear at the top of the +// screen where y=0, then you would set the baseline to SF*-y0. +// +// Current point: +// Set the current point where the first character will appear. The +// first character could extend left of the current point; this is font +// dependent. You can either choose a current point that is the leftmost +// point and hope, or add some padding, or check the bounding box or +// left-side-bearing of the first character to be displayed and set +// the current point based on that. +// +// Displaying a character: +// Compute the bounding box of the character. It will contain signed values +// relative to . I.e. if it returns x0,y0,x1,y1, +// then the character should be displayed in the rectangle from +// to = 32 && *text < 128) { + stbtt_aligned_quad q; + stbtt_GetBakedQuad(cdata, 512,512, *text-32, &x,&y,&q,1);//1=opengl & d3d10+,0=d3d9 + glTexCoord2f(q.s0,q.t0); glVertex2f(q.x0,q.y0); + glTexCoord2f(q.s1,q.t0); glVertex2f(q.x1,q.y0); + glTexCoord2f(q.s1,q.t1); glVertex2f(q.x1,q.y1); + glTexCoord2f(q.s0,q.t1); glVertex2f(q.x0,q.y1); + } + ++text; + } + glEnd(); +} +#endif +// +// +////////////////////////////////////////////////////////////////////////////// +// +// Complete program (this compiles): get a single bitmap, print as ASCII art +// +#if 0 +#include +#define STB_TRUETYPE_IMPLEMENTATION // force following include to generate implementation +#include "stb_truetype.h" + +char ttf_buffer[1<<25]; + +int main(int argc, char **argv) +{ + stbtt_fontinfo font; + unsigned char *bitmap; + int w,h,i,j,c = (argc > 1 ? atoi(argv[1]) : 'a'), s = (argc > 2 ? atoi(argv[2]) : 20); + + fread(ttf_buffer, 1, 1<<25, fopen(argc > 3 ? argv[3] : "c:/windows/fonts/arialbd.ttf", "rb")); + + stbtt_InitFont(&font, ttf_buffer, stbtt_GetFontOffsetForIndex(ttf_buffer,0)); + bitmap = stbtt_GetCodepointBitmap(&font, 0,stbtt_ScaleForPixelHeight(&font, s), c, &w, &h, 0,0); + + for (j=0; j < h; ++j) { + for (i=0; i < w; ++i) + putchar(" .:ioVM@"[bitmap[j*w+i]>>5]); + putchar('\n'); + } + return 0; +} +#endif +// +// Output: +// +// .ii. +// @@@@@@. +// V@Mio@@o +// :i. V@V +// :oM@@M +// :@@@MM@M +// @@o o@M +// :@@. M@M +// @@@o@@@@ +// :M@@V:@@. +// +////////////////////////////////////////////////////////////////////////////// +// +// Complete program: print "Hello World!" banner, with bugs +// +#if 0 +char buffer[24<<20]; +unsigned char screen[20][79]; + +int main(int arg, char **argv) +{ + stbtt_fontinfo font; + int i,j,ascent,baseline,ch=0; + float scale, xpos=2; // leave a little padding in case the character extends left + char *text = "Heljo World!"; // intentionally misspelled to show 'lj' brokenness + + fread(buffer, 1, 1000000, fopen("c:/windows/fonts/arialbd.ttf", "rb")); + stbtt_InitFont(&font, buffer, 0); + + scale = stbtt_ScaleForPixelHeight(&font, 15); + stbtt_GetFontVMetrics(&font, &ascent,0,0); + baseline = (int) (ascent*scale); + + while (text[ch]) { + int advance,lsb,x0,y0,x1,y1; + float x_shift = xpos - (float) floor(xpos); + stbtt_GetCodepointHMetrics(&font, text[ch], &advance, &lsb); + stbtt_GetCodepointBitmapBoxSubpixel(&font, text[ch], scale,scale,x_shift,0, &x0,&y0,&x1,&y1); + stbtt_MakeCodepointBitmapSubpixel(&font, &screen[baseline + y0][(int) xpos + x0], x1-x0,y1-y0, 79, scale,scale,x_shift,0, text[ch]); + // note that this stomps the old data, so where character boxes overlap (e.g. 'lj') it's wrong + // because this API is really for baking character bitmaps into textures. if you want to render + // a sequence of characters, you really need to render each bitmap to a temp buffer, then + // "alpha blend" that into the working buffer + xpos += (advance * scale); + if (text[ch+1]) + xpos += scale*stbtt_GetCodepointKernAdvance(&font, text[ch],text[ch+1]); + ++ch; + } + + for (j=0; j < 20; ++j) { + for (i=0; i < 78; ++i) + putchar(" .:ioVM@"[screen[j][i]>>5]); + putchar('\n'); + } + + return 0; +} +#endif + + +////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////// +//// +//// INTEGRATION WITH YOUR CODEBASE +//// +//// The following sections allow you to supply alternate definitions +//// of C library functions used by stb_truetype, e.g. if you don't +//// link with the C runtime library. + +#ifdef STB_TRUETYPE_IMPLEMENTATION + // #define your own (u)stbtt_int8/16/32 before including to override this + #ifndef stbtt_uint8 + typedef unsigned char stbtt_uint8; + typedef signed char stbtt_int8; + typedef unsigned short stbtt_uint16; + typedef signed short stbtt_int16; + typedef unsigned int stbtt_uint32; + typedef signed int stbtt_int32; + #endif + + typedef char stbtt__check_size32[sizeof(stbtt_int32)==4 ? 1 : -1]; + typedef char stbtt__check_size16[sizeof(stbtt_int16)==2 ? 1 : -1]; + + // e.g. #define your own STBTT_ifloor/STBTT_iceil() to avoid math.h + #ifndef STBTT_ifloor + #include + #define STBTT_ifloor(x) ((int) floor(x)) + #define STBTT_iceil(x) ((int) ceil(x)) + #endif + + #ifndef STBTT_sqrt + #include + #define STBTT_sqrt(x) sqrt(x) + #define STBTT_pow(x,y) pow(x,y) + #endif + + #ifndef STBTT_fmod + #include + #define STBTT_fmod(x,y) fmod(x,y) + #endif + + #ifndef STBTT_cos + #include + #define STBTT_cos(x) cos(x) + #define STBTT_acos(x) acos(x) + #endif + + #ifndef STBTT_fabs + #include + #define STBTT_fabs(x) fabs(x) + #endif + + // #define your own functions "STBTT_malloc" / "STBTT_free" to avoid malloc.h + #ifndef STBTT_malloc + #include + #define STBTT_malloc(x,u) ((void)(u),malloc(x)) + #define STBTT_free(x,u) ((void)(u),free(x)) + #endif + + #ifndef STBTT_assert + #include + #define STBTT_assert(x) assert(x) + #endif + + #ifndef STBTT_strlen + #include + #define STBTT_strlen(x) strlen(x) + #endif + + #ifndef STBTT_memcpy + #include + #define STBTT_memcpy memcpy + #define STBTT_memset memset + #endif +#endif + +/////////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////////// +//// +//// INTERFACE +//// +//// + +#ifndef __STB_INCLUDE_STB_TRUETYPE_H__ +#define __STB_INCLUDE_STB_TRUETYPE_H__ + +#ifdef STBTT_STATIC +#define STBTT_DEF static +#else +#define STBTT_DEF extern +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +// private structure +typedef struct +{ + unsigned char *data; + int cursor; + int size; +} stbtt__buf; + +////////////////////////////////////////////////////////////////////////////// +// +// TEXTURE BAKING API +// +// If you use this API, you only have to call two functions ever. +// + +typedef struct +{ + unsigned short x0,y0,x1,y1; // coordinates of bbox in bitmap + float xoff,yoff,xadvance; +} stbtt_bakedchar; + +STBTT_DEF int stbtt_BakeFontBitmap(const unsigned char *data, int offset, // font location (use offset=0 for plain .ttf) + float pixel_height, // height of font in pixels + unsigned char *pixels, int pw, int ph, // bitmap to be filled in + int first_char, int num_chars, // characters to bake + stbtt_bakedchar *chardata); // you allocate this, it's num_chars long +// if return is positive, the first unused row of the bitmap +// if return is negative, returns the negative of the number of characters that fit +// if return is 0, no characters fit and no rows were used +// This uses a very crappy packing. + +typedef struct +{ + float x0,y0,s0,t0; // top-left + float x1,y1,s1,t1; // bottom-right +} stbtt_aligned_quad; + +STBTT_DEF void stbtt_GetBakedQuad(const stbtt_bakedchar *chardata, int pw, int ph, // same data as above + int char_index, // character to display + float *xpos, float *ypos, // pointers to current position in screen pixel space + stbtt_aligned_quad *q, // output: quad to draw + int opengl_fillrule); // true if opengl fill rule; false if DX9 or earlier +// Call GetBakedQuad with char_index = 'character - first_char', and it +// creates the quad you need to draw and advances the current position. +// +// The coordinate system used assumes y increases downwards. +// +// Characters will extend both above and below the current position; +// see discussion of "BASELINE" above. +// +// It's inefficient; you might want to c&p it and optimize it. + +STBTT_DEF void stbtt_GetScaledFontVMetrics(const unsigned char *fontdata, int index, float size, float *ascent, float *descent, float *lineGap); +// Query the font vertical metrics without having to create a font first. + + +////////////////////////////////////////////////////////////////////////////// +// +// NEW TEXTURE BAKING API +// +// This provides options for packing multiple fonts into one atlas, not +// perfectly but better than nothing. + +typedef struct +{ + unsigned short x0,y0,x1,y1; // coordinates of bbox in bitmap + float xoff,yoff,xadvance; + float xoff2,yoff2; +} stbtt_packedchar; + +typedef struct stbtt_pack_context stbtt_pack_context; +typedef struct stbtt_fontinfo stbtt_fontinfo; +#ifndef STB_RECT_PACK_VERSION +typedef struct stbrp_rect stbrp_rect; +#endif + +STBTT_DEF int stbtt_PackBegin(stbtt_pack_context *spc, unsigned char *pixels, int width, int height, int stride_in_bytes, int padding, void *alloc_context); +// Initializes a packing context stored in the passed-in stbtt_pack_context. +// Future calls using this context will pack characters into the bitmap passed +// in here: a 1-channel bitmap that is width * height. stride_in_bytes is +// the distance from one row to the next (or 0 to mean they are packed tightly +// together). "padding" is the amount of padding to leave between each +// character (normally you want '1' for bitmaps you'll use as textures with +// bilinear filtering). +// +// Returns 0 on failure, 1 on success. + +STBTT_DEF void stbtt_PackEnd (stbtt_pack_context *spc); +// Cleans up the packing context and frees all memory. + +#define STBTT_POINT_SIZE(x) (-(x)) + +STBTT_DEF int stbtt_PackFontRange(stbtt_pack_context *spc, const unsigned char *fontdata, int font_index, float font_size, + int first_unicode_char_in_range, int num_chars_in_range, stbtt_packedchar *chardata_for_range); +// Creates character bitmaps from the font_index'th font found in fontdata (use +// font_index=0 if you don't know what that is). It creates num_chars_in_range +// bitmaps for characters with unicode values starting at first_unicode_char_in_range +// and increasing. Data for how to render them is stored in chardata_for_range; +// pass these to stbtt_GetPackedQuad to get back renderable quads. +// +// font_size is the full height of the character from ascender to descender, +// as computed by stbtt_ScaleForPixelHeight. To use a point size as computed +// by stbtt_ScaleForMappingEmToPixels, wrap the point size in STBTT_POINT_SIZE() +// and pass that result as 'font_size': +// ..., 20 , ... // font max minus min y is 20 pixels tall +// ..., STBTT_POINT_SIZE(20), ... // 'M' is 20 pixels tall + +typedef struct +{ + float font_size; + int first_unicode_codepoint_in_range; // if non-zero, then the chars are continuous, and this is the first codepoint + int *array_of_unicode_codepoints; // if non-zero, then this is an array of unicode codepoints + int num_chars; + stbtt_packedchar *chardata_for_range; // output + unsigned char h_oversample, v_oversample; // don't set these, they're used internally +} stbtt_pack_range; + +STBTT_DEF int stbtt_PackFontRanges(stbtt_pack_context *spc, const unsigned char *fontdata, int font_index, stbtt_pack_range *ranges, int num_ranges); +// Creates character bitmaps from multiple ranges of characters stored in +// ranges. This will usually create a better-packed bitmap than multiple +// calls to stbtt_PackFontRange. Note that you can call this multiple +// times within a single PackBegin/PackEnd. + +STBTT_DEF void stbtt_PackSetOversampling(stbtt_pack_context *spc, unsigned int h_oversample, unsigned int v_oversample); +// Oversampling a font increases the quality by allowing higher-quality subpixel +// positioning, and is especially valuable at smaller text sizes. +// +// This function sets the amount of oversampling for all following calls to +// stbtt_PackFontRange(s) or stbtt_PackFontRangesGatherRects for a given +// pack context. The default (no oversampling) is achieved by h_oversample=1 +// and v_oversample=1. The total number of pixels required is +// h_oversample*v_oversample larger than the default; for example, 2x2 +// oversampling requires 4x the storage of 1x1. For best results, render +// oversampled textures with bilinear filtering. Look at the readme in +// stb/tests/oversample for information about oversampled fonts +// +// To use with PackFontRangesGather etc., you must set it before calls +// call to PackFontRangesGatherRects. + +STBTT_DEF void stbtt_PackSetSkipMissingCodepoints(stbtt_pack_context *spc, int skip); +// If skip != 0, this tells stb_truetype to skip any codepoints for which +// there is no corresponding glyph. If skip=0, which is the default, then +// codepoints without a glyph recived the font's "missing character" glyph, +// typically an empty box by convention. + +STBTT_DEF void stbtt_GetPackedQuad(const stbtt_packedchar *chardata, int pw, int ph, // same data as above + int char_index, // character to display + float *xpos, float *ypos, // pointers to current position in screen pixel space + stbtt_aligned_quad *q, // output: quad to draw + int align_to_integer); + +STBTT_DEF int stbtt_PackFontRangesGatherRects(stbtt_pack_context *spc, const stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects); +STBTT_DEF void stbtt_PackFontRangesPackRects(stbtt_pack_context *spc, stbrp_rect *rects, int num_rects); +STBTT_DEF int stbtt_PackFontRangesRenderIntoRects(stbtt_pack_context *spc, const stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects); +// Calling these functions in sequence is roughly equivalent to calling +// stbtt_PackFontRanges(). If you more control over the packing of multiple +// fonts, or if you want to pack custom data into a font texture, take a look +// at the source to of stbtt_PackFontRanges() and create a custom version +// using these functions, e.g. call GatherRects multiple times, +// building up a single array of rects, then call PackRects once, +// then call RenderIntoRects repeatedly. This may result in a +// better packing than calling PackFontRanges multiple times +// (or it may not). + +// this is an opaque structure that you shouldn't mess with which holds +// all the context needed from PackBegin to PackEnd. +struct stbtt_pack_context { + void *user_allocator_context; + void *pack_info; + int width; + int height; + int stride_in_bytes; + int padding; + int skip_missing; + unsigned int h_oversample, v_oversample; + unsigned char *pixels; + void *nodes; +}; + +////////////////////////////////////////////////////////////////////////////// +// +// FONT LOADING +// +// + +STBTT_DEF int stbtt_GetNumberOfFonts(const unsigned char *data); +// This function will determine the number of fonts in a font file. TrueType +// collection (.ttc) files may contain multiple fonts, while TrueType font +// (.ttf) files only contain one font. The number of fonts can be used for +// indexing with the previous function where the index is between zero and one +// less than the total fonts. If an error occurs, -1 is returned. + +STBTT_DEF int stbtt_GetFontOffsetForIndex(const unsigned char *data, int index); +// Each .ttf/.ttc file may have more than one font. Each font has a sequential +// index number starting from 0. Call this function to get the font offset for +// a given index; it returns -1 if the index is out of range. A regular .ttf +// file will only define one font and it always be at offset 0, so it will +// return '0' for index 0, and -1 for all other indices. + +// The following structure is defined publicly so you can declare one on +// the stack or as a global or etc, but you should treat it as opaque. +struct stbtt_fontinfo +{ + void * userdata; + unsigned char * data; // pointer to .ttf file + int fontstart; // offset of start of font + + int numGlyphs; // number of glyphs, needed for range checking + + int loca,head,glyf,hhea,hmtx,kern,gpos,svg; // table locations as offset from start of .ttf + int index_map; // a cmap mapping for our chosen character encoding + int indexToLocFormat; // format needed to map from glyph index to glyph + + stbtt__buf cff; // cff font data + stbtt__buf charstrings; // the charstring index + stbtt__buf gsubrs; // global charstring subroutines index + stbtt__buf subrs; // private charstring subroutines index + stbtt__buf fontdicts; // array of font dicts + stbtt__buf fdselect; // map from glyph to fontdict +}; + +STBTT_DEF int stbtt_InitFont(stbtt_fontinfo *info, const unsigned char *data, int offset); +// Given an offset into the file that defines a font, this function builds +// the necessary cached info for the rest of the system. You must allocate +// the stbtt_fontinfo yourself, and stbtt_InitFont will fill it out. You don't +// need to do anything special to free it, because the contents are pure +// value data with no additional data structures. Returns 0 on failure. + + +////////////////////////////////////////////////////////////////////////////// +// +// CHARACTER TO GLYPH-INDEX CONVERSIOn + +STBTT_DEF int stbtt_FindGlyphIndex(const stbtt_fontinfo *info, int unicode_codepoint); +// If you're going to perform multiple operations on the same character +// and you want a speed-up, call this function with the character you're +// going to process, then use glyph-based functions instead of the +// codepoint-based functions. +// Returns 0 if the character codepoint is not defined in the font. + + +////////////////////////////////////////////////////////////////////////////// +// +// CHARACTER PROPERTIES +// + +STBTT_DEF float stbtt_ScaleForPixelHeight(const stbtt_fontinfo *info, float pixels); +// computes a scale factor to produce a font whose "height" is 'pixels' tall. +// Height is measured as the distance from the highest ascender to the lowest +// descender; in other words, it's equivalent to calling stbtt_GetFontVMetrics +// and computing: +// scale = pixels / (ascent - descent) +// so if you prefer to measure height by the ascent only, use a similar calculation. + +STBTT_DEF float stbtt_ScaleForMappingEmToPixels(const stbtt_fontinfo *info, float pixels); +// computes a scale factor to produce a font whose EM size is mapped to +// 'pixels' tall. This is probably what traditional APIs compute, but +// I'm not positive. + +STBTT_DEF void stbtt_GetFontVMetrics(const stbtt_fontinfo *info, int *ascent, int *descent, int *lineGap); +// ascent is the coordinate above the baseline the font extends; descent +// is the coordinate below the baseline the font extends (i.e. it is typically negative) +// lineGap is the spacing between one row's descent and the next row's ascent... +// so you should advance the vertical position by "*ascent - *descent + *lineGap" +// these are expressed in unscaled coordinates, so you must multiply by +// the scale factor for a given size + +STBTT_DEF int stbtt_GetFontVMetricsOS2(const stbtt_fontinfo *info, int *typoAscent, int *typoDescent, int *typoLineGap); +// analogous to GetFontVMetrics, but returns the "typographic" values from the OS/2 +// table (specific to MS/Windows TTF files). +// +// Returns 1 on success (table present), 0 on failure. + +STBTT_DEF void stbtt_GetFontBoundingBox(const stbtt_fontinfo *info, int *x0, int *y0, int *x1, int *y1); +// the bounding box around all possible characters + +STBTT_DEF void stbtt_GetCodepointHMetrics(const stbtt_fontinfo *info, int codepoint, int *advanceWidth, int *leftSideBearing); +// leftSideBearing is the offset from the current horizontal position to the left edge of the character +// advanceWidth is the offset from the current horizontal position to the next horizontal position +// these are expressed in unscaled coordinates + +STBTT_DEF int stbtt_GetCodepointKernAdvance(const stbtt_fontinfo *info, int ch1, int ch2); +// an additional amount to add to the 'advance' value between ch1 and ch2 + +STBTT_DEF int stbtt_GetCodepointBox(const stbtt_fontinfo *info, int codepoint, int *x0, int *y0, int *x1, int *y1); +// Gets the bounding box of the visible part of the glyph, in unscaled coordinates + +STBTT_DEF void stbtt_GetGlyphHMetrics(const stbtt_fontinfo *info, int glyph_index, int *advanceWidth, int *leftSideBearing); +STBTT_DEF int stbtt_GetGlyphKernAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2); +STBTT_DEF int stbtt_GetGlyphBox(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1); +// as above, but takes one or more glyph indices for greater efficiency + +typedef struct stbtt_kerningentry +{ + int glyph1; // use stbtt_FindGlyphIndex + int glyph2; + int advance; +} stbtt_kerningentry; + +STBTT_DEF int stbtt_GetKerningTableLength(const stbtt_fontinfo *info); +STBTT_DEF int stbtt_GetKerningTable(const stbtt_fontinfo *info, stbtt_kerningentry* table, int table_length); +// Retrieves a complete list of all of the kerning pairs provided by the font +// stbtt_GetKerningTable never writes more than table_length entries and returns how many entries it did write. +// The table will be sorted by (a.glyph1 == b.glyph1)?(a.glyph2 < b.glyph2):(a.glyph1 < b.glyph1) + +////////////////////////////////////////////////////////////////////////////// +// +// GLYPH SHAPES (you probably don't need these, but they have to go before +// the bitmaps for C declaration-order reasons) +// + +#ifndef STBTT_vmove // you can predefine these to use different values (but why?) + enum { + STBTT_vmove=1, + STBTT_vline, + STBTT_vcurve, + STBTT_vcubic + }; +#endif + +#ifndef stbtt_vertex // you can predefine this to use different values + // (we share this with other code at RAD) + #define stbtt_vertex_type short // can't use stbtt_int16 because that's not visible in the header file + typedef struct + { + stbtt_vertex_type x,y,cx,cy,cx1,cy1; + unsigned char type,padding; + } stbtt_vertex; +#endif + +STBTT_DEF int stbtt_IsGlyphEmpty(const stbtt_fontinfo *info, int glyph_index); +// returns non-zero if nothing is drawn for this glyph + +STBTT_DEF int stbtt_GetCodepointShape(const stbtt_fontinfo *info, int unicode_codepoint, stbtt_vertex **vertices); +STBTT_DEF int stbtt_GetGlyphShape(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **vertices); +// returns # of vertices and fills *vertices with the pointer to them +// these are expressed in "unscaled" coordinates +// +// The shape is a series of contours. Each one starts with +// a STBTT_moveto, then consists of a series of mixed +// STBTT_lineto and STBTT_curveto segments. A lineto +// draws a line from previous endpoint to its x,y; a curveto +// draws a quadratic bezier from previous endpoint to +// its x,y, using cx,cy as the bezier control point. + +STBTT_DEF void stbtt_FreeShape(const stbtt_fontinfo *info, stbtt_vertex *vertices); +// frees the data allocated above + +STBTT_DEF unsigned char *stbtt_FindSVGDoc(const stbtt_fontinfo *info, int gl); +STBTT_DEF int stbtt_GetCodepointSVG(const stbtt_fontinfo *info, int unicode_codepoint, const char **svg); +STBTT_DEF int stbtt_GetGlyphSVG(const stbtt_fontinfo *info, int gl, const char **svg); +// fills svg with the character's SVG data. +// returns data size or 0 if SVG not found. + +////////////////////////////////////////////////////////////////////////////// +// +// BITMAP RENDERING +// + +STBTT_DEF void stbtt_FreeBitmap(unsigned char *bitmap, void *userdata); +// frees the bitmap allocated below + +STBTT_DEF unsigned char *stbtt_GetCodepointBitmap(const stbtt_fontinfo *info, float scale_x, float scale_y, int codepoint, int *width, int *height, int *xoff, int *yoff); +// allocates a large-enough single-channel 8bpp bitmap and renders the +// specified character/glyph at the specified scale into it, with +// antialiasing. 0 is no coverage (transparent), 255 is fully covered (opaque). +// *width & *height are filled out with the width & height of the bitmap, +// which is stored left-to-right, top-to-bottom. +// +// xoff/yoff are the offset it pixel space from the glyph origin to the top-left of the bitmap + +STBTT_DEF unsigned char *stbtt_GetCodepointBitmapSubpixel(const stbtt_fontinfo *info, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint, int *width, int *height, int *xoff, int *yoff); +// the same as stbtt_GetCodepoitnBitmap, but you can specify a subpixel +// shift for the character + +STBTT_DEF void stbtt_MakeCodepointBitmap(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, int codepoint); +// the same as stbtt_GetCodepointBitmap, but you pass in storage for the bitmap +// in the form of 'output', with row spacing of 'out_stride' bytes. the bitmap +// is clipped to out_w/out_h bytes. Call stbtt_GetCodepointBitmapBox to get the +// width and height and positioning info for it first. + +STBTT_DEF void stbtt_MakeCodepointBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint); +// same as stbtt_MakeCodepointBitmap, but you can specify a subpixel +// shift for the character + +STBTT_DEF void stbtt_MakeCodepointBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int oversample_x, int oversample_y, float *sub_x, float *sub_y, int codepoint); +// same as stbtt_MakeCodepointBitmapSubpixel, but prefiltering +// is performed (see stbtt_PackSetOversampling) + +STBTT_DEF void stbtt_GetCodepointBitmapBox(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1); +// get the bbox of the bitmap centered around the glyph origin; so the +// bitmap width is ix1-ix0, height is iy1-iy0, and location to place +// the bitmap top left is (leftSideBearing*scale,iy0). +// (Note that the bitmap uses y-increases-down, but the shape uses +// y-increases-up, so CodepointBitmapBox and CodepointBox are inverted.) + +STBTT_DEF void stbtt_GetCodepointBitmapBoxSubpixel(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1); +// same as stbtt_GetCodepointBitmapBox, but you can specify a subpixel +// shift for the character + +// the following functions are equivalent to the above functions, but operate +// on glyph indices instead of Unicode codepoints (for efficiency) +STBTT_DEF unsigned char *stbtt_GetGlyphBitmap(const stbtt_fontinfo *info, float scale_x, float scale_y, int glyph, int *width, int *height, int *xoff, int *yoff); +STBTT_DEF unsigned char *stbtt_GetGlyphBitmapSubpixel(const stbtt_fontinfo *info, float scale_x, float scale_y, float shift_x, float shift_y, int glyph, int *width, int *height, int *xoff, int *yoff); +STBTT_DEF void stbtt_MakeGlyphBitmap(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, int glyph); +STBTT_DEF void stbtt_MakeGlyphBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int glyph); +STBTT_DEF void stbtt_MakeGlyphBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int oversample_x, int oversample_y, float *sub_x, float *sub_y, int glyph); +STBTT_DEF void stbtt_GetGlyphBitmapBox(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1); +STBTT_DEF void stbtt_GetGlyphBitmapBoxSubpixel(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1); + + +// @TODO: don't expose this structure +typedef struct +{ + int w,h,stride; + unsigned char *pixels; +} stbtt__bitmap; + +// rasterize a shape with quadratic beziers into a bitmap +STBTT_DEF void stbtt_Rasterize(stbtt__bitmap *result, // 1-channel bitmap to draw into + float flatness_in_pixels, // allowable error of curve in pixels + stbtt_vertex *vertices, // array of vertices defining shape + int num_verts, // number of vertices in above array + float scale_x, float scale_y, // scale applied to input vertices + float shift_x, float shift_y, // translation applied to input vertices + int x_off, int y_off, // another translation applied to input + int invert, // if non-zero, vertically flip shape + void *userdata); // context for to STBTT_MALLOC + +////////////////////////////////////////////////////////////////////////////// +// +// Signed Distance Function (or Field) rendering + +STBTT_DEF void stbtt_FreeSDF(unsigned char *bitmap, void *userdata); +// frees the SDF bitmap allocated below + +STBTT_DEF unsigned char * stbtt_GetGlyphSDF(const stbtt_fontinfo *info, float scale, int glyph, int padding, unsigned char onedge_value, float pixel_dist_scale, int *width, int *height, int *xoff, int *yoff); +STBTT_DEF unsigned char * stbtt_GetCodepointSDF(const stbtt_fontinfo *info, float scale, int codepoint, int padding, unsigned char onedge_value, float pixel_dist_scale, int *width, int *height, int *xoff, int *yoff); +// These functions compute a discretized SDF field for a single character, suitable for storing +// in a single-channel texture, sampling with bilinear filtering, and testing against +// larger than some threshold to produce scalable fonts. +// info -- the font +// scale -- controls the size of the resulting SDF bitmap, same as it would be creating a regular bitmap +// glyph/codepoint -- the character to generate the SDF for +// padding -- extra "pixels" around the character which are filled with the distance to the character (not 0), +// which allows effects like bit outlines +// onedge_value -- value 0-255 to test the SDF against to reconstruct the character (i.e. the isocontour of the character) +// pixel_dist_scale -- what value the SDF should increase by when moving one SDF "pixel" away from the edge (on the 0..255 scale) +// if positive, > onedge_value is inside; if negative, < onedge_value is inside +// width,height -- output height & width of the SDF bitmap (including padding) +// xoff,yoff -- output origin of the character +// return value -- a 2D array of bytes 0..255, width*height in size +// +// pixel_dist_scale & onedge_value are a scale & bias that allows you to make +// optimal use of the limited 0..255 for your application, trading off precision +// and special effects. SDF values outside the range 0..255 are clamped to 0..255. +// +// Example: +// scale = stbtt_ScaleForPixelHeight(22) +// padding = 5 +// onedge_value = 180 +// pixel_dist_scale = 180/5.0 = 36.0 +// +// This will create an SDF bitmap in which the character is about 22 pixels +// high but the whole bitmap is about 22+5+5=32 pixels high. To produce a filled +// shape, sample the SDF at each pixel and fill the pixel if the SDF value +// is greater than or equal to 180/255. (You'll actually want to antialias, +// which is beyond the scope of this example.) Additionally, you can compute +// offset outlines (e.g. to stroke the character border inside & outside, +// or only outside). For example, to fill outside the character up to 3 SDF +// pixels, you would compare against (180-36.0*3)/255 = 72/255. The above +// choice of variables maps a range from 5 pixels outside the shape to +// 2 pixels inside the shape to 0..255; this is intended primarily for apply +// outside effects only (the interior range is needed to allow proper +// antialiasing of the font at *smaller* sizes) +// +// The function computes the SDF analytically at each SDF pixel, not by e.g. +// building a higher-res bitmap and approximating it. In theory the quality +// should be as high as possible for an SDF of this size & representation, but +// unclear if this is true in practice (perhaps building a higher-res bitmap +// and computing from that can allow drop-out prevention). +// +// The algorithm has not been optimized at all, so expect it to be slow +// if computing lots of characters or very large sizes. + + + +////////////////////////////////////////////////////////////////////////////// +// +// Finding the right font... +// +// You should really just solve this offline, keep your own tables +// of what font is what, and don't try to get it out of the .ttf file. +// That's because getting it out of the .ttf file is really hard, because +// the names in the file can appear in many possible encodings, in many +// possible languages, and e.g. if you need a case-insensitive comparison, +// the details of that depend on the encoding & language in a complex way +// (actually underspecified in truetype, but also gigantic). +// +// But you can use the provided functions in two possible ways: +// stbtt_FindMatchingFont() will use *case-sensitive* comparisons on +// unicode-encoded names to try to find the font you want; +// you can run this before calling stbtt_InitFont() +// +// stbtt_GetFontNameString() lets you get any of the various strings +// from the file yourself and do your own comparisons on them. +// You have to have called stbtt_InitFont() first. + + +STBTT_DEF int stbtt_FindMatchingFont(const unsigned char *fontdata, const char *name, int flags); +// returns the offset (not index) of the font that matches, or -1 if none +// if you use STBTT_MACSTYLE_DONTCARE, use a font name like "Arial Bold". +// if you use any other flag, use a font name like "Arial"; this checks +// the 'macStyle' header field; i don't know if fonts set this consistently +#define STBTT_MACSTYLE_DONTCARE 0 +#define STBTT_MACSTYLE_BOLD 1 +#define STBTT_MACSTYLE_ITALIC 2 +#define STBTT_MACSTYLE_UNDERSCORE 4 +#define STBTT_MACSTYLE_NONE 8 // <= not same as 0, this makes us check the bitfield is 0 + +STBTT_DEF int stbtt_CompareUTF8toUTF16_bigendian(const char *s1, int len1, const char *s2, int len2); +// returns 1/0 whether the first string interpreted as utf8 is identical to +// the second string interpreted as big-endian utf16... useful for strings from next func + +STBTT_DEF const char *stbtt_GetFontNameString(const stbtt_fontinfo *font, int *length, int platformID, int encodingID, int languageID, int nameID); +// returns the string (which may be big-endian double byte, e.g. for unicode) +// and puts the length in bytes in *length. +// +// some of the values for the IDs are below; for more see the truetype spec: +// http://developer.apple.com/textfonts/TTRefMan/RM06/Chap6name.html +// http://www.microsoft.com/typography/otspec/name.htm + +enum { // platformID + STBTT_PLATFORM_ID_UNICODE =0, + STBTT_PLATFORM_ID_MAC =1, + STBTT_PLATFORM_ID_ISO =2, + STBTT_PLATFORM_ID_MICROSOFT =3 +}; + +enum { // encodingID for STBTT_PLATFORM_ID_UNICODE + STBTT_UNICODE_EID_UNICODE_1_0 =0, + STBTT_UNICODE_EID_UNICODE_1_1 =1, + STBTT_UNICODE_EID_ISO_10646 =2, + STBTT_UNICODE_EID_UNICODE_2_0_BMP=3, + STBTT_UNICODE_EID_UNICODE_2_0_FULL=4 +}; + +enum { // encodingID for STBTT_PLATFORM_ID_MICROSOFT + STBTT_MS_EID_SYMBOL =0, + STBTT_MS_EID_UNICODE_BMP =1, + STBTT_MS_EID_SHIFTJIS =2, + STBTT_MS_EID_UNICODE_FULL =10 +}; + +enum { // encodingID for STBTT_PLATFORM_ID_MAC; same as Script Manager codes + STBTT_MAC_EID_ROMAN =0, STBTT_MAC_EID_ARABIC =4, + STBTT_MAC_EID_JAPANESE =1, STBTT_MAC_EID_HEBREW =5, + STBTT_MAC_EID_CHINESE_TRAD =2, STBTT_MAC_EID_GREEK =6, + STBTT_MAC_EID_KOREAN =3, STBTT_MAC_EID_RUSSIAN =7 +}; + +enum { // languageID for STBTT_PLATFORM_ID_MICROSOFT; same as LCID... + // problematic because there are e.g. 16 english LCIDs and 16 arabic LCIDs + STBTT_MS_LANG_ENGLISH =0x0409, STBTT_MS_LANG_ITALIAN =0x0410, + STBTT_MS_LANG_CHINESE =0x0804, STBTT_MS_LANG_JAPANESE =0x0411, + STBTT_MS_LANG_DUTCH =0x0413, STBTT_MS_LANG_KOREAN =0x0412, + STBTT_MS_LANG_FRENCH =0x040c, STBTT_MS_LANG_RUSSIAN =0x0419, + STBTT_MS_LANG_GERMAN =0x0407, STBTT_MS_LANG_SPANISH =0x0409, + STBTT_MS_LANG_HEBREW =0x040d, STBTT_MS_LANG_SWEDISH =0x041D +}; + +enum { // languageID for STBTT_PLATFORM_ID_MAC + STBTT_MAC_LANG_ENGLISH =0 , STBTT_MAC_LANG_JAPANESE =11, + STBTT_MAC_LANG_ARABIC =12, STBTT_MAC_LANG_KOREAN =23, + STBTT_MAC_LANG_DUTCH =4 , STBTT_MAC_LANG_RUSSIAN =32, + STBTT_MAC_LANG_FRENCH =1 , STBTT_MAC_LANG_SPANISH =6 , + STBTT_MAC_LANG_GERMAN =2 , STBTT_MAC_LANG_SWEDISH =5 , + STBTT_MAC_LANG_HEBREW =10, STBTT_MAC_LANG_CHINESE_SIMPLIFIED =33, + STBTT_MAC_LANG_ITALIAN =3 , STBTT_MAC_LANG_CHINESE_TRAD =19 +}; + +#ifdef __cplusplus +} +#endif + +#endif // __STB_INCLUDE_STB_TRUETYPE_H__ + +/////////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////////// +//// +//// IMPLEMENTATION +//// +//// + +#ifdef STB_TRUETYPE_IMPLEMENTATION + +#ifndef STBTT_MAX_OVERSAMPLE +#define STBTT_MAX_OVERSAMPLE 8 +#endif + +#if STBTT_MAX_OVERSAMPLE > 255 +#error "STBTT_MAX_OVERSAMPLE cannot be > 255" +#endif + +typedef int stbtt__test_oversample_pow2[(STBTT_MAX_OVERSAMPLE & (STBTT_MAX_OVERSAMPLE-1)) == 0 ? 1 : -1]; + +#ifndef STBTT_RASTERIZER_VERSION +#define STBTT_RASTERIZER_VERSION 2 +#endif + +#ifdef _MSC_VER +#define STBTT__NOTUSED(v) (void)(v) +#else +#define STBTT__NOTUSED(v) (void)sizeof(v) +#endif + +////////////////////////////////////////////////////////////////////////// +// +// stbtt__buf helpers to parse data from file +// + +static stbtt_uint8 stbtt__buf_get8(stbtt__buf *b) +{ + if (b->cursor >= b->size) + return 0; + return b->data[b->cursor++]; +} + +static stbtt_uint8 stbtt__buf_peek8(stbtt__buf *b) +{ + if (b->cursor >= b->size) + return 0; + return b->data[b->cursor]; +} + +static void stbtt__buf_seek(stbtt__buf *b, int o) +{ + STBTT_assert(!(o > b->size || o < 0)); + b->cursor = (o > b->size || o < 0) ? b->size : o; +} + +static void stbtt__buf_skip(stbtt__buf *b, int o) +{ + stbtt__buf_seek(b, b->cursor + o); +} + +static stbtt_uint32 stbtt__buf_get(stbtt__buf *b, int n) +{ + stbtt_uint32 v = 0; + int i; + STBTT_assert(n >= 1 && n <= 4); + for (i = 0; i < n; i++) + v = (v << 8) | stbtt__buf_get8(b); + return v; +} + +static stbtt__buf stbtt__new_buf(const void *p, size_t size) +{ + stbtt__buf r; + STBTT_assert(size < 0x40000000); + r.data = (stbtt_uint8*) p; + r.size = (int) size; + r.cursor = 0; + return r; +} + +#define stbtt__buf_get16(b) stbtt__buf_get((b), 2) +#define stbtt__buf_get32(b) stbtt__buf_get((b), 4) + +static stbtt__buf stbtt__buf_range(const stbtt__buf *b, int o, int s) +{ + stbtt__buf r = stbtt__new_buf(NULL, 0); + if (o < 0 || s < 0 || o > b->size || s > b->size - o) return r; + r.data = b->data + o; + r.size = s; + return r; +} + +static stbtt__buf stbtt__cff_get_index(stbtt__buf *b) +{ + int count, start, offsize; + start = b->cursor; + count = stbtt__buf_get16(b); + if (count) { + offsize = stbtt__buf_get8(b); + STBTT_assert(offsize >= 1 && offsize <= 4); + stbtt__buf_skip(b, offsize * count); + stbtt__buf_skip(b, stbtt__buf_get(b, offsize) - 1); + } + return stbtt__buf_range(b, start, b->cursor - start); +} + +static stbtt_uint32 stbtt__cff_int(stbtt__buf *b) +{ + int b0 = stbtt__buf_get8(b); + if (b0 >= 32 && b0 <= 246) return b0 - 139; + else if (b0 >= 247 && b0 <= 250) return (b0 - 247)*256 + stbtt__buf_get8(b) + 108; + else if (b0 >= 251 && b0 <= 254) return -(b0 - 251)*256 - stbtt__buf_get8(b) - 108; + else if (b0 == 28) return stbtt__buf_get16(b); + else if (b0 == 29) return stbtt__buf_get32(b); + STBTT_assert(0); + return 0; +} + +static void stbtt__cff_skip_operand(stbtt__buf *b) { + int v, b0 = stbtt__buf_peek8(b); + STBTT_assert(b0 >= 28); + if (b0 == 30) { + stbtt__buf_skip(b, 1); + while (b->cursor < b->size) { + v = stbtt__buf_get8(b); + if ((v & 0xF) == 0xF || (v >> 4) == 0xF) + break; + } + } else { + stbtt__cff_int(b); + } +} + +static stbtt__buf stbtt__dict_get(stbtt__buf *b, int key) +{ + stbtt__buf_seek(b, 0); + while (b->cursor < b->size) { + int start = b->cursor, end, op; + while (stbtt__buf_peek8(b) >= 28) + stbtt__cff_skip_operand(b); + end = b->cursor; + op = stbtt__buf_get8(b); + if (op == 12) op = stbtt__buf_get8(b) | 0x100; + if (op == key) return stbtt__buf_range(b, start, end-start); + } + return stbtt__buf_range(b, 0, 0); +} + +static void stbtt__dict_get_ints(stbtt__buf *b, int key, int outcount, stbtt_uint32 *out) +{ + int i; + stbtt__buf operands = stbtt__dict_get(b, key); + for (i = 0; i < outcount && operands.cursor < operands.size; i++) + out[i] = stbtt__cff_int(&operands); +} + +static int stbtt__cff_index_count(stbtt__buf *b) +{ + stbtt__buf_seek(b, 0); + return stbtt__buf_get16(b); +} + +static stbtt__buf stbtt__cff_index_get(stbtt__buf b, int i) +{ + int count, offsize, start, end; + stbtt__buf_seek(&b, 0); + count = stbtt__buf_get16(&b); + offsize = stbtt__buf_get8(&b); + STBTT_assert(i >= 0 && i < count); + STBTT_assert(offsize >= 1 && offsize <= 4); + stbtt__buf_skip(&b, i*offsize); + start = stbtt__buf_get(&b, offsize); + end = stbtt__buf_get(&b, offsize); + return stbtt__buf_range(&b, 2+(count+1)*offsize+start, end - start); +} + +////////////////////////////////////////////////////////////////////////// +// +// accessors to parse data from file +// + +// on platforms that don't allow misaligned reads, if we want to allow +// truetype fonts that aren't padded to alignment, define ALLOW_UNALIGNED_TRUETYPE + +#define ttBYTE(p) (* (stbtt_uint8 *) (p)) +#define ttCHAR(p) (* (stbtt_int8 *) (p)) +#define ttFixed(p) ttLONG(p) + +static stbtt_uint16 ttUSHORT(stbtt_uint8 *p) { return p[0]*256 + p[1]; } +static stbtt_int16 ttSHORT(stbtt_uint8 *p) { return p[0]*256 + p[1]; } +static stbtt_uint32 ttULONG(stbtt_uint8 *p) { return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + p[3]; } +static stbtt_int32 ttLONG(stbtt_uint8 *p) { return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + p[3]; } + +#define stbtt_tag4(p,c0,c1,c2,c3) ((p)[0] == (c0) && (p)[1] == (c1) && (p)[2] == (c2) && (p)[3] == (c3)) +#define stbtt_tag(p,str) stbtt_tag4(p,str[0],str[1],str[2],str[3]) + +static int stbtt__isfont(stbtt_uint8 *font) +{ + // check the version number + if (stbtt_tag4(font, '1',0,0,0)) return 1; // TrueType 1 + if (stbtt_tag(font, "typ1")) return 1; // TrueType with type 1 font -- we don't support this! + if (stbtt_tag(font, "OTTO")) return 1; // OpenType with CFF + if (stbtt_tag4(font, 0,1,0,0)) return 1; // OpenType 1.0 + if (stbtt_tag(font, "true")) return 1; // Apple specification for TrueType fonts + return 0; +} + +// @OPTIMIZE: binary search +static stbtt_uint32 stbtt__find_table(stbtt_uint8 *data, stbtt_uint32 fontstart, const char *tag) +{ + stbtt_int32 num_tables = ttUSHORT(data+fontstart+4); + stbtt_uint32 tabledir = fontstart + 12; + stbtt_int32 i; + for (i=0; i < num_tables; ++i) { + stbtt_uint32 loc = tabledir + 16*i; + if (stbtt_tag(data+loc+0, tag)) + return ttULONG(data+loc+8); + } + return 0; +} + +static int stbtt_GetFontOffsetForIndex_internal(unsigned char *font_collection, int index) +{ + // if it's just a font, there's only one valid index + if (stbtt__isfont(font_collection)) + return index == 0 ? 0 : -1; + + // check if it's a TTC + if (stbtt_tag(font_collection, "ttcf")) { + // version 1? + if (ttULONG(font_collection+4) == 0x00010000 || ttULONG(font_collection+4) == 0x00020000) { + stbtt_int32 n = ttLONG(font_collection+8); + if (index >= n) + return -1; + return ttULONG(font_collection+12+index*4); + } + } + return -1; +} + +static int stbtt_GetNumberOfFonts_internal(unsigned char *font_collection) +{ + // if it's just a font, there's only one valid font + if (stbtt__isfont(font_collection)) + return 1; + + // check if it's a TTC + if (stbtt_tag(font_collection, "ttcf")) { + // version 1? + if (ttULONG(font_collection+4) == 0x00010000 || ttULONG(font_collection+4) == 0x00020000) { + return ttLONG(font_collection+8); + } + } + return 0; +} + +static stbtt__buf stbtt__get_subrs(stbtt__buf cff, stbtt__buf fontdict) +{ + stbtt_uint32 subrsoff = 0, private_loc[2] = { 0, 0 }; + stbtt__buf pdict; + stbtt__dict_get_ints(&fontdict, 18, 2, private_loc); + if (!private_loc[1] || !private_loc[0]) return stbtt__new_buf(NULL, 0); + pdict = stbtt__buf_range(&cff, private_loc[1], private_loc[0]); + stbtt__dict_get_ints(&pdict, 19, 1, &subrsoff); + if (!subrsoff) return stbtt__new_buf(NULL, 0); + stbtt__buf_seek(&cff, private_loc[1]+subrsoff); + return stbtt__cff_get_index(&cff); +} + +// since most people won't use this, find this table the first time it's needed +static int stbtt__get_svg(stbtt_fontinfo *info) +{ + stbtt_uint32 t; + if (info->svg < 0) { + t = stbtt__find_table(info->data, info->fontstart, "SVG "); + if (t) { + stbtt_uint32 offset = ttULONG(info->data + t + 2); + info->svg = t + offset; + } else { + info->svg = 0; + } + } + return info->svg; +} + +static int stbtt_InitFont_internal(stbtt_fontinfo *info, unsigned char *data, int fontstart) +{ + stbtt_uint32 cmap, t; + stbtt_int32 i,numTables; + + info->data = data; + info->fontstart = fontstart; + info->cff = stbtt__new_buf(NULL, 0); + + cmap = stbtt__find_table(data, fontstart, "cmap"); // required + info->loca = stbtt__find_table(data, fontstart, "loca"); // required + info->head = stbtt__find_table(data, fontstart, "head"); // required + info->glyf = stbtt__find_table(data, fontstart, "glyf"); // required + info->hhea = stbtt__find_table(data, fontstart, "hhea"); // required + info->hmtx = stbtt__find_table(data, fontstart, "hmtx"); // required + info->kern = stbtt__find_table(data, fontstart, "kern"); // not required + info->gpos = stbtt__find_table(data, fontstart, "GPOS"); // not required + + if (!cmap || !info->head || !info->hhea || !info->hmtx) + return 0; + if (info->glyf) { + // required for truetype + if (!info->loca) return 0; + } else { + // initialization for CFF / Type2 fonts (OTF) + stbtt__buf b, topdict, topdictidx; + stbtt_uint32 cstype = 2, charstrings = 0, fdarrayoff = 0, fdselectoff = 0; + stbtt_uint32 cff; + + cff = stbtt__find_table(data, fontstart, "CFF "); + if (!cff) return 0; + + info->fontdicts = stbtt__new_buf(NULL, 0); + info->fdselect = stbtt__new_buf(NULL, 0); + + // @TODO this should use size from table (not 512MB) + info->cff = stbtt__new_buf(data+cff, 512*1024*1024); + b = info->cff; + + // read the header + stbtt__buf_skip(&b, 2); + stbtt__buf_seek(&b, stbtt__buf_get8(&b)); // hdrsize + + // @TODO the name INDEX could list multiple fonts, + // but we just use the first one. + stbtt__cff_get_index(&b); // name INDEX + topdictidx = stbtt__cff_get_index(&b); + topdict = stbtt__cff_index_get(topdictidx, 0); + stbtt__cff_get_index(&b); // string INDEX + info->gsubrs = stbtt__cff_get_index(&b); + + stbtt__dict_get_ints(&topdict, 17, 1, &charstrings); + stbtt__dict_get_ints(&topdict, 0x100 | 6, 1, &cstype); + stbtt__dict_get_ints(&topdict, 0x100 | 36, 1, &fdarrayoff); + stbtt__dict_get_ints(&topdict, 0x100 | 37, 1, &fdselectoff); + info->subrs = stbtt__get_subrs(b, topdict); + + // we only support Type 2 charstrings + if (cstype != 2) return 0; + if (charstrings == 0) return 0; + + if (fdarrayoff) { + // looks like a CID font + if (!fdselectoff) return 0; + stbtt__buf_seek(&b, fdarrayoff); + info->fontdicts = stbtt__cff_get_index(&b); + info->fdselect = stbtt__buf_range(&b, fdselectoff, b.size-fdselectoff); + } + + stbtt__buf_seek(&b, charstrings); + info->charstrings = stbtt__cff_get_index(&b); + } + + t = stbtt__find_table(data, fontstart, "maxp"); + if (t) + info->numGlyphs = ttUSHORT(data+t+4); + else + info->numGlyphs = 0xffff; + + info->svg = -1; + + // find a cmap encoding table we understand *now* to avoid searching + // later. (todo: could make this installable) + // the same regardless of glyph. + numTables = ttUSHORT(data + cmap + 2); + info->index_map = 0; + for (i=0; i < numTables; ++i) { + stbtt_uint32 encoding_record = cmap + 4 + 8 * i; + // find an encoding we understand: + switch(ttUSHORT(data+encoding_record)) { + case STBTT_PLATFORM_ID_MICROSOFT: + switch (ttUSHORT(data+encoding_record+2)) { + case STBTT_MS_EID_UNICODE_BMP: + case STBTT_MS_EID_UNICODE_FULL: + // MS/Unicode + info->index_map = cmap + ttULONG(data+encoding_record+4); + break; + } + break; + case STBTT_PLATFORM_ID_UNICODE: + // Mac/iOS has these + // all the encodingIDs are unicode, so we don't bother to check it + info->index_map = cmap + ttULONG(data+encoding_record+4); + break; + } + } + if (info->index_map == 0) + return 0; + + info->indexToLocFormat = ttUSHORT(data+info->head + 50); + return 1; +} + +STBTT_DEF int stbtt_FindGlyphIndex(const stbtt_fontinfo *info, int unicode_codepoint) +{ + stbtt_uint8 *data = info->data; + stbtt_uint32 index_map = info->index_map; + + stbtt_uint16 format = ttUSHORT(data + index_map + 0); + if (format == 0) { // apple byte encoding + stbtt_int32 bytes = ttUSHORT(data + index_map + 2); + if (unicode_codepoint < bytes-6) + return ttBYTE(data + index_map + 6 + unicode_codepoint); + return 0; + } else if (format == 6) { + stbtt_uint32 first = ttUSHORT(data + index_map + 6); + stbtt_uint32 count = ttUSHORT(data + index_map + 8); + if ((stbtt_uint32) unicode_codepoint >= first && (stbtt_uint32) unicode_codepoint < first+count) + return ttUSHORT(data + index_map + 10 + (unicode_codepoint - first)*2); + return 0; + } else if (format == 2) { + STBTT_assert(0); // @TODO: high-byte mapping for japanese/chinese/korean + return 0; + } else if (format == 4) { // standard mapping for windows fonts: binary search collection of ranges + stbtt_uint16 segcount = ttUSHORT(data+index_map+6) >> 1; + stbtt_uint16 searchRange = ttUSHORT(data+index_map+8) >> 1; + stbtt_uint16 entrySelector = ttUSHORT(data+index_map+10); + stbtt_uint16 rangeShift = ttUSHORT(data+index_map+12) >> 1; + + // do a binary search of the segments + stbtt_uint32 endCount = index_map + 14; + stbtt_uint32 search = endCount; + + if (unicode_codepoint > 0xffff) + return 0; + + // they lie from endCount .. endCount + segCount + // but searchRange is the nearest power of two, so... + if (unicode_codepoint >= ttUSHORT(data + search + rangeShift*2)) + search += rangeShift*2; + + // now decrement to bias correctly to find smallest + search -= 2; + while (entrySelector) { + stbtt_uint16 end; + searchRange >>= 1; + end = ttUSHORT(data + search + searchRange*2); + if (unicode_codepoint > end) + search += searchRange*2; + --entrySelector; + } + search += 2; + + { + stbtt_uint16 offset, start, last; + stbtt_uint16 item = (stbtt_uint16) ((search - endCount) >> 1); + + start = ttUSHORT(data + index_map + 14 + segcount*2 + 2 + 2*item); + last = ttUSHORT(data + endCount + 2*item); + if (unicode_codepoint < start || unicode_codepoint > last) + return 0; + + offset = ttUSHORT(data + index_map + 14 + segcount*6 + 2 + 2*item); + if (offset == 0) + return (stbtt_uint16) (unicode_codepoint + ttSHORT(data + index_map + 14 + segcount*4 + 2 + 2*item)); + + return ttUSHORT(data + offset + (unicode_codepoint-start)*2 + index_map + 14 + segcount*6 + 2 + 2*item); + } + } else if (format == 12 || format == 13) { + stbtt_uint32 ngroups = ttULONG(data+index_map+12); + stbtt_int32 low,high; + low = 0; high = (stbtt_int32)ngroups; + // Binary search the right group. + while (low < high) { + stbtt_int32 mid = low + ((high-low) >> 1); // rounds down, so low <= mid < high + stbtt_uint32 start_char = ttULONG(data+index_map+16+mid*12); + stbtt_uint32 end_char = ttULONG(data+index_map+16+mid*12+4); + if ((stbtt_uint32) unicode_codepoint < start_char) + high = mid; + else if ((stbtt_uint32) unicode_codepoint > end_char) + low = mid+1; + else { + stbtt_uint32 start_glyph = ttULONG(data+index_map+16+mid*12+8); + if (format == 12) + return start_glyph + unicode_codepoint-start_char; + else // format == 13 + return start_glyph; + } + } + return 0; // not found + } + // @TODO + STBTT_assert(0); + return 0; +} + +STBTT_DEF int stbtt_GetCodepointShape(const stbtt_fontinfo *info, int unicode_codepoint, stbtt_vertex **vertices) +{ + return stbtt_GetGlyphShape(info, stbtt_FindGlyphIndex(info, unicode_codepoint), vertices); +} + +static void stbtt_setvertex(stbtt_vertex *v, stbtt_uint8 type, stbtt_int32 x, stbtt_int32 y, stbtt_int32 cx, stbtt_int32 cy) +{ + v->type = type; + v->x = (stbtt_int16) x; + v->y = (stbtt_int16) y; + v->cx = (stbtt_int16) cx; + v->cy = (stbtt_int16) cy; +} + +static int stbtt__GetGlyfOffset(const stbtt_fontinfo *info, int glyph_index) +{ + int g1,g2; + + STBTT_assert(!info->cff.size); + + if (glyph_index >= info->numGlyphs) return -1; // glyph index out of range + if (info->indexToLocFormat >= 2) return -1; // unknown index->glyph map format + + if (info->indexToLocFormat == 0) { + g1 = info->glyf + ttUSHORT(info->data + info->loca + glyph_index * 2) * 2; + g2 = info->glyf + ttUSHORT(info->data + info->loca + glyph_index * 2 + 2) * 2; + } else { + g1 = info->glyf + ttULONG (info->data + info->loca + glyph_index * 4); + g2 = info->glyf + ttULONG (info->data + info->loca + glyph_index * 4 + 4); + } + + return g1==g2 ? -1 : g1; // if length is 0, return -1 +} + +static int stbtt__GetGlyphInfoT2(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1); + +STBTT_DEF int stbtt_GetGlyphBox(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1) +{ + if (info->cff.size) { + stbtt__GetGlyphInfoT2(info, glyph_index, x0, y0, x1, y1); + } else { + int g = stbtt__GetGlyfOffset(info, glyph_index); + if (g < 0) return 0; + + if (x0) *x0 = ttSHORT(info->data + g + 2); + if (y0) *y0 = ttSHORT(info->data + g + 4); + if (x1) *x1 = ttSHORT(info->data + g + 6); + if (y1) *y1 = ttSHORT(info->data + g + 8); + } + return 1; +} + +STBTT_DEF int stbtt_GetCodepointBox(const stbtt_fontinfo *info, int codepoint, int *x0, int *y0, int *x1, int *y1) +{ + return stbtt_GetGlyphBox(info, stbtt_FindGlyphIndex(info,codepoint), x0,y0,x1,y1); +} + +STBTT_DEF int stbtt_IsGlyphEmpty(const stbtt_fontinfo *info, int glyph_index) +{ + stbtt_int16 numberOfContours; + int g; + if (info->cff.size) + return stbtt__GetGlyphInfoT2(info, glyph_index, NULL, NULL, NULL, NULL) == 0; + g = stbtt__GetGlyfOffset(info, glyph_index); + if (g < 0) return 1; + numberOfContours = ttSHORT(info->data + g); + return numberOfContours == 0; +} + +static int stbtt__close_shape(stbtt_vertex *vertices, int num_vertices, int was_off, int start_off, + stbtt_int32 sx, stbtt_int32 sy, stbtt_int32 scx, stbtt_int32 scy, stbtt_int32 cx, stbtt_int32 cy) +{ + if (start_off) { + if (was_off) + stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, (cx+scx)>>1, (cy+scy)>>1, cx,cy); + stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, sx,sy,scx,scy); + } else { + if (was_off) + stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve,sx,sy,cx,cy); + else + stbtt_setvertex(&vertices[num_vertices++], STBTT_vline,sx,sy,0,0); + } + return num_vertices; +} + +static int stbtt__GetGlyphShapeTT(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **pvertices) +{ + stbtt_int16 numberOfContours; + stbtt_uint8 *endPtsOfContours; + stbtt_uint8 *data = info->data; + stbtt_vertex *vertices=0; + int num_vertices=0; + int g = stbtt__GetGlyfOffset(info, glyph_index); + + *pvertices = NULL; + + if (g < 0) return 0; + + numberOfContours = ttSHORT(data + g); + + if (numberOfContours > 0) { + stbtt_uint8 flags=0,flagcount; + stbtt_int32 ins, i,j=0,m,n, next_move, was_off=0, off, start_off=0; + stbtt_int32 x,y,cx,cy,sx,sy, scx,scy; + stbtt_uint8 *points; + endPtsOfContours = (data + g + 10); + ins = ttUSHORT(data + g + 10 + numberOfContours * 2); + points = data + g + 10 + numberOfContours * 2 + 2 + ins; + + n = 1+ttUSHORT(endPtsOfContours + numberOfContours*2-2); + + m = n + 2*numberOfContours; // a loose bound on how many vertices we might need + vertices = (stbtt_vertex *) STBTT_malloc(m * sizeof(vertices[0]), info->userdata); + if (vertices == 0) + return 0; + + next_move = 0; + flagcount=0; + + // in first pass, we load uninterpreted data into the allocated array + // above, shifted to the end of the array so we won't overwrite it when + // we create our final data starting from the front + + off = m - n; // starting offset for uninterpreted data, regardless of how m ends up being calculated + + // first load flags + + for (i=0; i < n; ++i) { + if (flagcount == 0) { + flags = *points++; + if (flags & 8) + flagcount = *points++; + } else + --flagcount; + vertices[off+i].type = flags; + } + + // now load x coordinates + x=0; + for (i=0; i < n; ++i) { + flags = vertices[off+i].type; + if (flags & 2) { + stbtt_int16 dx = *points++; + x += (flags & 16) ? dx : -dx; // ??? + } else { + if (!(flags & 16)) { + x = x + (stbtt_int16) (points[0]*256 + points[1]); + points += 2; + } + } + vertices[off+i].x = (stbtt_int16) x; + } + + // now load y coordinates + y=0; + for (i=0; i < n; ++i) { + flags = vertices[off+i].type; + if (flags & 4) { + stbtt_int16 dy = *points++; + y += (flags & 32) ? dy : -dy; // ??? + } else { + if (!(flags & 32)) { + y = y + (stbtt_int16) (points[0]*256 + points[1]); + points += 2; + } + } + vertices[off+i].y = (stbtt_int16) y; + } + + // now convert them to our format + num_vertices=0; + sx = sy = cx = cy = scx = scy = 0; + for (i=0; i < n; ++i) { + flags = vertices[off+i].type; + x = (stbtt_int16) vertices[off+i].x; + y = (stbtt_int16) vertices[off+i].y; + + if (next_move == i) { + if (i != 0) + num_vertices = stbtt__close_shape(vertices, num_vertices, was_off, start_off, sx,sy,scx,scy,cx,cy); + + // now start the new one + start_off = !(flags & 1); + if (start_off) { + // if we start off with an off-curve point, then when we need to find a point on the curve + // where we can start, and we need to save some state for when we wraparound. + scx = x; + scy = y; + if (!(vertices[off+i+1].type & 1)) { + // next point is also a curve point, so interpolate an on-point curve + sx = (x + (stbtt_int32) vertices[off+i+1].x) >> 1; + sy = (y + (stbtt_int32) vertices[off+i+1].y) >> 1; + } else { + // otherwise just use the next point as our start point + sx = (stbtt_int32) vertices[off+i+1].x; + sy = (stbtt_int32) vertices[off+i+1].y; + ++i; // we're using point i+1 as the starting point, so skip it + } + } else { + sx = x; + sy = y; + } + stbtt_setvertex(&vertices[num_vertices++], STBTT_vmove,sx,sy,0,0); + was_off = 0; + next_move = 1 + ttUSHORT(endPtsOfContours+j*2); + ++j; + } else { + if (!(flags & 1)) { // if it's a curve + if (was_off) // two off-curve control points in a row means interpolate an on-curve midpoint + stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, (cx+x)>>1, (cy+y)>>1, cx, cy); + cx = x; + cy = y; + was_off = 1; + } else { + if (was_off) + stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, x,y, cx, cy); + else + stbtt_setvertex(&vertices[num_vertices++], STBTT_vline, x,y,0,0); + was_off = 0; + } + } + } + num_vertices = stbtt__close_shape(vertices, num_vertices, was_off, start_off, sx,sy,scx,scy,cx,cy); + } else if (numberOfContours < 0) { + // Compound shapes. + int more = 1; + stbtt_uint8 *comp = data + g + 10; + num_vertices = 0; + vertices = 0; + while (more) { + stbtt_uint16 flags, gidx; + int comp_num_verts = 0, i; + stbtt_vertex *comp_verts = 0, *tmp = 0; + float mtx[6] = {1,0,0,1,0,0}, m, n; + + flags = ttSHORT(comp); comp+=2; + gidx = ttSHORT(comp); comp+=2; + + if (flags & 2) { // XY values + if (flags & 1) { // shorts + mtx[4] = ttSHORT(comp); comp+=2; + mtx[5] = ttSHORT(comp); comp+=2; + } else { + mtx[4] = ttCHAR(comp); comp+=1; + mtx[5] = ttCHAR(comp); comp+=1; + } + } + else { + // @TODO handle matching point + STBTT_assert(0); + } + if (flags & (1<<3)) { // WE_HAVE_A_SCALE + mtx[0] = mtx[3] = ttSHORT(comp)/16384.0f; comp+=2; + mtx[1] = mtx[2] = 0; + } else if (flags & (1<<6)) { // WE_HAVE_AN_X_AND_YSCALE + mtx[0] = ttSHORT(comp)/16384.0f; comp+=2; + mtx[1] = mtx[2] = 0; + mtx[3] = ttSHORT(comp)/16384.0f; comp+=2; + } else if (flags & (1<<7)) { // WE_HAVE_A_TWO_BY_TWO + mtx[0] = ttSHORT(comp)/16384.0f; comp+=2; + mtx[1] = ttSHORT(comp)/16384.0f; comp+=2; + mtx[2] = ttSHORT(comp)/16384.0f; comp+=2; + mtx[3] = ttSHORT(comp)/16384.0f; comp+=2; + } + + // Find transformation scales. + m = (float) STBTT_sqrt(mtx[0]*mtx[0] + mtx[1]*mtx[1]); + n = (float) STBTT_sqrt(mtx[2]*mtx[2] + mtx[3]*mtx[3]); + + // Get indexed glyph. + comp_num_verts = stbtt_GetGlyphShape(info, gidx, &comp_verts); + if (comp_num_verts > 0) { + // Transform vertices. + for (i = 0; i < comp_num_verts; ++i) { + stbtt_vertex* v = &comp_verts[i]; + stbtt_vertex_type x,y; + x=v->x; y=v->y; + v->x = (stbtt_vertex_type)(m * (mtx[0]*x + mtx[2]*y + mtx[4])); + v->y = (stbtt_vertex_type)(n * (mtx[1]*x + mtx[3]*y + mtx[5])); + x=v->cx; y=v->cy; + v->cx = (stbtt_vertex_type)(m * (mtx[0]*x + mtx[2]*y + mtx[4])); + v->cy = (stbtt_vertex_type)(n * (mtx[1]*x + mtx[3]*y + mtx[5])); + } + // Append vertices. + tmp = (stbtt_vertex*)STBTT_malloc((num_vertices+comp_num_verts)*sizeof(stbtt_vertex), info->userdata); + if (!tmp) { + if (vertices) STBTT_free(vertices, info->userdata); + if (comp_verts) STBTT_free(comp_verts, info->userdata); + return 0; + } + if (num_vertices > 0 && vertices) STBTT_memcpy(tmp, vertices, num_vertices*sizeof(stbtt_vertex)); + STBTT_memcpy(tmp+num_vertices, comp_verts, comp_num_verts*sizeof(stbtt_vertex)); + if (vertices) STBTT_free(vertices, info->userdata); + vertices = tmp; + STBTT_free(comp_verts, info->userdata); + num_vertices += comp_num_verts; + } + // More components ? + more = flags & (1<<5); + } + } else { + // numberOfCounters == 0, do nothing + } + + *pvertices = vertices; + return num_vertices; +} + +typedef struct +{ + int bounds; + int started; + float first_x, first_y; + float x, y; + stbtt_int32 min_x, max_x, min_y, max_y; + + stbtt_vertex *pvertices; + int num_vertices; +} stbtt__csctx; + +#define STBTT__CSCTX_INIT(bounds) {bounds,0, 0,0, 0,0, 0,0,0,0, NULL, 0} + +static void stbtt__track_vertex(stbtt__csctx *c, stbtt_int32 x, stbtt_int32 y) +{ + if (x > c->max_x || !c->started) c->max_x = x; + if (y > c->max_y || !c->started) c->max_y = y; + if (x < c->min_x || !c->started) c->min_x = x; + if (y < c->min_y || !c->started) c->min_y = y; + c->started = 1; +} + +static void stbtt__csctx_v(stbtt__csctx *c, stbtt_uint8 type, stbtt_int32 x, stbtt_int32 y, stbtt_int32 cx, stbtt_int32 cy, stbtt_int32 cx1, stbtt_int32 cy1) +{ + if (c->bounds) { + stbtt__track_vertex(c, x, y); + if (type == STBTT_vcubic) { + stbtt__track_vertex(c, cx, cy); + stbtt__track_vertex(c, cx1, cy1); + } + } else { + stbtt_setvertex(&c->pvertices[c->num_vertices], type, x, y, cx, cy); + c->pvertices[c->num_vertices].cx1 = (stbtt_int16) cx1; + c->pvertices[c->num_vertices].cy1 = (stbtt_int16) cy1; + } + c->num_vertices++; +} + +static void stbtt__csctx_close_shape(stbtt__csctx *ctx) +{ + if (ctx->first_x != ctx->x || ctx->first_y != ctx->y) + stbtt__csctx_v(ctx, STBTT_vline, (int)ctx->first_x, (int)ctx->first_y, 0, 0, 0, 0); +} + +static void stbtt__csctx_rmove_to(stbtt__csctx *ctx, float dx, float dy) +{ + stbtt__csctx_close_shape(ctx); + ctx->first_x = ctx->x = ctx->x + dx; + ctx->first_y = ctx->y = ctx->y + dy; + stbtt__csctx_v(ctx, STBTT_vmove, (int)ctx->x, (int)ctx->y, 0, 0, 0, 0); +} + +static void stbtt__csctx_rline_to(stbtt__csctx *ctx, float dx, float dy) +{ + ctx->x += dx; + ctx->y += dy; + stbtt__csctx_v(ctx, STBTT_vline, (int)ctx->x, (int)ctx->y, 0, 0, 0, 0); +} + +static void stbtt__csctx_rccurve_to(stbtt__csctx *ctx, float dx1, float dy1, float dx2, float dy2, float dx3, float dy3) +{ + float cx1 = ctx->x + dx1; + float cy1 = ctx->y + dy1; + float cx2 = cx1 + dx2; + float cy2 = cy1 + dy2; + ctx->x = cx2 + dx3; + ctx->y = cy2 + dy3; + stbtt__csctx_v(ctx, STBTT_vcubic, (int)ctx->x, (int)ctx->y, (int)cx1, (int)cy1, (int)cx2, (int)cy2); +} + +static stbtt__buf stbtt__get_subr(stbtt__buf idx, int n) +{ + int count = stbtt__cff_index_count(&idx); + int bias = 107; + if (count >= 33900) + bias = 32768; + else if (count >= 1240) + bias = 1131; + n += bias; + if (n < 0 || n >= count) + return stbtt__new_buf(NULL, 0); + return stbtt__cff_index_get(idx, n); +} + +static stbtt__buf stbtt__cid_get_glyph_subrs(const stbtt_fontinfo *info, int glyph_index) +{ + stbtt__buf fdselect = info->fdselect; + int nranges, start, end, v, fmt, fdselector = -1, i; + + stbtt__buf_seek(&fdselect, 0); + fmt = stbtt__buf_get8(&fdselect); + if (fmt == 0) { + // untested + stbtt__buf_skip(&fdselect, glyph_index); + fdselector = stbtt__buf_get8(&fdselect); + } else if (fmt == 3) { + nranges = stbtt__buf_get16(&fdselect); + start = stbtt__buf_get16(&fdselect); + for (i = 0; i < nranges; i++) { + v = stbtt__buf_get8(&fdselect); + end = stbtt__buf_get16(&fdselect); + if (glyph_index >= start && glyph_index < end) { + fdselector = v; + break; + } + start = end; + } + } + if (fdselector == -1) return stbtt__new_buf(NULL, 0); // [DEAR IMGUI] fixed, see #6007 and nothings/stb#1422 + return stbtt__get_subrs(info->cff, stbtt__cff_index_get(info->fontdicts, fdselector)); +} + +static int stbtt__run_charstring(const stbtt_fontinfo *info, int glyph_index, stbtt__csctx *c) +{ + int in_header = 1, maskbits = 0, subr_stack_height = 0, sp = 0, v, i, b0; + int has_subrs = 0, clear_stack; + float s[48]; + stbtt__buf subr_stack[10], subrs = info->subrs, b; + float f; + +#define STBTT__CSERR(s) (0) + + // this currently ignores the initial width value, which isn't needed if we have hmtx + b = stbtt__cff_index_get(info->charstrings, glyph_index); + while (b.cursor < b.size) { + i = 0; + clear_stack = 1; + b0 = stbtt__buf_get8(&b); + switch (b0) { + // @TODO implement hinting + case 0x13: // hintmask + case 0x14: // cntrmask + if (in_header) + maskbits += (sp / 2); // implicit "vstem" + in_header = 0; + stbtt__buf_skip(&b, (maskbits + 7) / 8); + break; + + case 0x01: // hstem + case 0x03: // vstem + case 0x12: // hstemhm + case 0x17: // vstemhm + maskbits += (sp / 2); + break; + + case 0x15: // rmoveto + in_header = 0; + if (sp < 2) return STBTT__CSERR("rmoveto stack"); + stbtt__csctx_rmove_to(c, s[sp-2], s[sp-1]); + break; + case 0x04: // vmoveto + in_header = 0; + if (sp < 1) return STBTT__CSERR("vmoveto stack"); + stbtt__csctx_rmove_to(c, 0, s[sp-1]); + break; + case 0x16: // hmoveto + in_header = 0; + if (sp < 1) return STBTT__CSERR("hmoveto stack"); + stbtt__csctx_rmove_to(c, s[sp-1], 0); + break; + + case 0x05: // rlineto + if (sp < 2) return STBTT__CSERR("rlineto stack"); + for (; i + 1 < sp; i += 2) + stbtt__csctx_rline_to(c, s[i], s[i+1]); + break; + + // hlineto/vlineto and vhcurveto/hvcurveto alternate horizontal and vertical + // starting from a different place. + + case 0x07: // vlineto + if (sp < 1) return STBTT__CSERR("vlineto stack"); + goto vlineto; + case 0x06: // hlineto + if (sp < 1) return STBTT__CSERR("hlineto stack"); + for (;;) { + if (i >= sp) break; + stbtt__csctx_rline_to(c, s[i], 0); + i++; + vlineto: + if (i >= sp) break; + stbtt__csctx_rline_to(c, 0, s[i]); + i++; + } + break; + + case 0x1F: // hvcurveto + if (sp < 4) return STBTT__CSERR("hvcurveto stack"); + goto hvcurveto; + case 0x1E: // vhcurveto + if (sp < 4) return STBTT__CSERR("vhcurveto stack"); + for (;;) { + if (i + 3 >= sp) break; + stbtt__csctx_rccurve_to(c, 0, s[i], s[i+1], s[i+2], s[i+3], (sp - i == 5) ? s[i + 4] : 0.0f); + i += 4; + hvcurveto: + if (i + 3 >= sp) break; + stbtt__csctx_rccurve_to(c, s[i], 0, s[i+1], s[i+2], (sp - i == 5) ? s[i+4] : 0.0f, s[i+3]); + i += 4; + } + break; + + case 0x08: // rrcurveto + if (sp < 6) return STBTT__CSERR("rcurveline stack"); + for (; i + 5 < sp; i += 6) + stbtt__csctx_rccurve_to(c, s[i], s[i+1], s[i+2], s[i+3], s[i+4], s[i+5]); + break; + + case 0x18: // rcurveline + if (sp < 8) return STBTT__CSERR("rcurveline stack"); + for (; i + 5 < sp - 2; i += 6) + stbtt__csctx_rccurve_to(c, s[i], s[i+1], s[i+2], s[i+3], s[i+4], s[i+5]); + if (i + 1 >= sp) return STBTT__CSERR("rcurveline stack"); + stbtt__csctx_rline_to(c, s[i], s[i+1]); + break; + + case 0x19: // rlinecurve + if (sp < 8) return STBTT__CSERR("rlinecurve stack"); + for (; i + 1 < sp - 6; i += 2) + stbtt__csctx_rline_to(c, s[i], s[i+1]); + if (i + 5 >= sp) return STBTT__CSERR("rlinecurve stack"); + stbtt__csctx_rccurve_to(c, s[i], s[i+1], s[i+2], s[i+3], s[i+4], s[i+5]); + break; + + case 0x1A: // vvcurveto + case 0x1B: // hhcurveto + if (sp < 4) return STBTT__CSERR("(vv|hh)curveto stack"); + f = 0.0; + if (sp & 1) { f = s[i]; i++; } + for (; i + 3 < sp; i += 4) { + if (b0 == 0x1B) + stbtt__csctx_rccurve_to(c, s[i], f, s[i+1], s[i+2], s[i+3], 0.0); + else + stbtt__csctx_rccurve_to(c, f, s[i], s[i+1], s[i+2], 0.0, s[i+3]); + f = 0.0; + } + break; + + case 0x0A: // callsubr + if (!has_subrs) { + if (info->fdselect.size) + subrs = stbtt__cid_get_glyph_subrs(info, glyph_index); + has_subrs = 1; + } + // FALLTHROUGH + case 0x1D: // callgsubr + if (sp < 1) return STBTT__CSERR("call(g|)subr stack"); + v = (int) s[--sp]; + if (subr_stack_height >= 10) return STBTT__CSERR("recursion limit"); + subr_stack[subr_stack_height++] = b; + b = stbtt__get_subr(b0 == 0x0A ? subrs : info->gsubrs, v); + if (b.size == 0) return STBTT__CSERR("subr not found"); + b.cursor = 0; + clear_stack = 0; + break; + + case 0x0B: // return + if (subr_stack_height <= 0) return STBTT__CSERR("return outside subr"); + b = subr_stack[--subr_stack_height]; + clear_stack = 0; + break; + + case 0x0E: // endchar + stbtt__csctx_close_shape(c); + return 1; + + case 0x0C: { // two-byte escape + float dx1, dx2, dx3, dx4, dx5, dx6, dy1, dy2, dy3, dy4, dy5, dy6; + float dx, dy; + int b1 = stbtt__buf_get8(&b); + switch (b1) { + // @TODO These "flex" implementations ignore the flex-depth and resolution, + // and always draw beziers. + case 0x22: // hflex + if (sp < 7) return STBTT__CSERR("hflex stack"); + dx1 = s[0]; + dx2 = s[1]; + dy2 = s[2]; + dx3 = s[3]; + dx4 = s[4]; + dx5 = s[5]; + dx6 = s[6]; + stbtt__csctx_rccurve_to(c, dx1, 0, dx2, dy2, dx3, 0); + stbtt__csctx_rccurve_to(c, dx4, 0, dx5, -dy2, dx6, 0); + break; + + case 0x23: // flex + if (sp < 13) return STBTT__CSERR("flex stack"); + dx1 = s[0]; + dy1 = s[1]; + dx2 = s[2]; + dy2 = s[3]; + dx3 = s[4]; + dy3 = s[5]; + dx4 = s[6]; + dy4 = s[7]; + dx5 = s[8]; + dy5 = s[9]; + dx6 = s[10]; + dy6 = s[11]; + //fd is s[12] + stbtt__csctx_rccurve_to(c, dx1, dy1, dx2, dy2, dx3, dy3); + stbtt__csctx_rccurve_to(c, dx4, dy4, dx5, dy5, dx6, dy6); + break; + + case 0x24: // hflex1 + if (sp < 9) return STBTT__CSERR("hflex1 stack"); + dx1 = s[0]; + dy1 = s[1]; + dx2 = s[2]; + dy2 = s[3]; + dx3 = s[4]; + dx4 = s[5]; + dx5 = s[6]; + dy5 = s[7]; + dx6 = s[8]; + stbtt__csctx_rccurve_to(c, dx1, dy1, dx2, dy2, dx3, 0); + stbtt__csctx_rccurve_to(c, dx4, 0, dx5, dy5, dx6, -(dy1+dy2+dy5)); + break; + + case 0x25: // flex1 + if (sp < 11) return STBTT__CSERR("flex1 stack"); + dx1 = s[0]; + dy1 = s[1]; + dx2 = s[2]; + dy2 = s[3]; + dx3 = s[4]; + dy3 = s[5]; + dx4 = s[6]; + dy4 = s[7]; + dx5 = s[8]; + dy5 = s[9]; + dx6 = dy6 = s[10]; + dx = dx1+dx2+dx3+dx4+dx5; + dy = dy1+dy2+dy3+dy4+dy5; + if (STBTT_fabs(dx) > STBTT_fabs(dy)) + dy6 = -dy; + else + dx6 = -dx; + stbtt__csctx_rccurve_to(c, dx1, dy1, dx2, dy2, dx3, dy3); + stbtt__csctx_rccurve_to(c, dx4, dy4, dx5, dy5, dx6, dy6); + break; + + default: + return STBTT__CSERR("unimplemented"); + } + } break; + + default: + if (b0 != 255 && b0 != 28 && b0 < 32) + return STBTT__CSERR("reserved operator"); + + // push immediate + if (b0 == 255) { + f = (float)(stbtt_int32)stbtt__buf_get32(&b) / 0x10000; + } else { + stbtt__buf_skip(&b, -1); + f = (float)(stbtt_int16)stbtt__cff_int(&b); + } + if (sp >= 48) return STBTT__CSERR("push stack overflow"); + s[sp++] = f; + clear_stack = 0; + break; + } + if (clear_stack) sp = 0; + } + return STBTT__CSERR("no endchar"); + +#undef STBTT__CSERR +} + +static int stbtt__GetGlyphShapeT2(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **pvertices) +{ + // runs the charstring twice, once to count and once to output (to avoid realloc) + stbtt__csctx count_ctx = STBTT__CSCTX_INIT(1); + stbtt__csctx output_ctx = STBTT__CSCTX_INIT(0); + if (stbtt__run_charstring(info, glyph_index, &count_ctx)) { + *pvertices = (stbtt_vertex*)STBTT_malloc(count_ctx.num_vertices*sizeof(stbtt_vertex), info->userdata); + output_ctx.pvertices = *pvertices; + if (stbtt__run_charstring(info, glyph_index, &output_ctx)) { + STBTT_assert(output_ctx.num_vertices == count_ctx.num_vertices); + return output_ctx.num_vertices; + } + } + *pvertices = NULL; + return 0; +} + +static int stbtt__GetGlyphInfoT2(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1) +{ + stbtt__csctx c = STBTT__CSCTX_INIT(1); + int r = stbtt__run_charstring(info, glyph_index, &c); + if (x0) *x0 = r ? c.min_x : 0; + if (y0) *y0 = r ? c.min_y : 0; + if (x1) *x1 = r ? c.max_x : 0; + if (y1) *y1 = r ? c.max_y : 0; + return r ? c.num_vertices : 0; +} + +STBTT_DEF int stbtt_GetGlyphShape(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **pvertices) +{ + if (!info->cff.size) + return stbtt__GetGlyphShapeTT(info, glyph_index, pvertices); + else + return stbtt__GetGlyphShapeT2(info, glyph_index, pvertices); +} + +STBTT_DEF void stbtt_GetGlyphHMetrics(const stbtt_fontinfo *info, int glyph_index, int *advanceWidth, int *leftSideBearing) +{ + stbtt_uint16 numOfLongHorMetrics = ttUSHORT(info->data+info->hhea + 34); + if (glyph_index < numOfLongHorMetrics) { + if (advanceWidth) *advanceWidth = ttSHORT(info->data + info->hmtx + 4*glyph_index); + if (leftSideBearing) *leftSideBearing = ttSHORT(info->data + info->hmtx + 4*glyph_index + 2); + } else { + if (advanceWidth) *advanceWidth = ttSHORT(info->data + info->hmtx + 4*(numOfLongHorMetrics-1)); + if (leftSideBearing) *leftSideBearing = ttSHORT(info->data + info->hmtx + 4*numOfLongHorMetrics + 2*(glyph_index - numOfLongHorMetrics)); + } +} + +STBTT_DEF int stbtt_GetKerningTableLength(const stbtt_fontinfo *info) +{ + stbtt_uint8 *data = info->data + info->kern; + + // we only look at the first table. it must be 'horizontal' and format 0. + if (!info->kern) + return 0; + if (ttUSHORT(data+2) < 1) // number of tables, need at least 1 + return 0; + if (ttUSHORT(data+8) != 1) // horizontal flag must be set in format + return 0; + + return ttUSHORT(data+10); +} + +STBTT_DEF int stbtt_GetKerningTable(const stbtt_fontinfo *info, stbtt_kerningentry* table, int table_length) +{ + stbtt_uint8 *data = info->data + info->kern; + int k, length; + + // we only look at the first table. it must be 'horizontal' and format 0. + if (!info->kern) + return 0; + if (ttUSHORT(data+2) < 1) // number of tables, need at least 1 + return 0; + if (ttUSHORT(data+8) != 1) // horizontal flag must be set in format + return 0; + + length = ttUSHORT(data+10); + if (table_length < length) + length = table_length; + + for (k = 0; k < length; k++) + { + table[k].glyph1 = ttUSHORT(data+18+(k*6)); + table[k].glyph2 = ttUSHORT(data+20+(k*6)); + table[k].advance = ttSHORT(data+22+(k*6)); + } + + return length; +} + +static int stbtt__GetGlyphKernInfoAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2) +{ + stbtt_uint8 *data = info->data + info->kern; + stbtt_uint32 needle, straw; + int l, r, m; + + // we only look at the first table. it must be 'horizontal' and format 0. + if (!info->kern) + return 0; + if (ttUSHORT(data+2) < 1) // number of tables, need at least 1 + return 0; + if (ttUSHORT(data+8) != 1) // horizontal flag must be set in format + return 0; + + l = 0; + r = ttUSHORT(data+10) - 1; + needle = glyph1 << 16 | glyph2; + while (l <= r) { + m = (l + r) >> 1; + straw = ttULONG(data+18+(m*6)); // note: unaligned read + if (needle < straw) + r = m - 1; + else if (needle > straw) + l = m + 1; + else + return ttSHORT(data+22+(m*6)); + } + return 0; +} + +static stbtt_int32 stbtt__GetCoverageIndex(stbtt_uint8 *coverageTable, int glyph) +{ + stbtt_uint16 coverageFormat = ttUSHORT(coverageTable); + switch (coverageFormat) { + case 1: { + stbtt_uint16 glyphCount = ttUSHORT(coverageTable + 2); + + // Binary search. + stbtt_int32 l=0, r=glyphCount-1, m; + int straw, needle=glyph; + while (l <= r) { + stbtt_uint8 *glyphArray = coverageTable + 4; + stbtt_uint16 glyphID; + m = (l + r) >> 1; + glyphID = ttUSHORT(glyphArray + 2 * m); + straw = glyphID; + if (needle < straw) + r = m - 1; + else if (needle > straw) + l = m + 1; + else { + return m; + } + } + break; + } + + case 2: { + stbtt_uint16 rangeCount = ttUSHORT(coverageTable + 2); + stbtt_uint8 *rangeArray = coverageTable + 4; + + // Binary search. + stbtt_int32 l=0, r=rangeCount-1, m; + int strawStart, strawEnd, needle=glyph; + while (l <= r) { + stbtt_uint8 *rangeRecord; + m = (l + r) >> 1; + rangeRecord = rangeArray + 6 * m; + strawStart = ttUSHORT(rangeRecord); + strawEnd = ttUSHORT(rangeRecord + 2); + if (needle < strawStart) + r = m - 1; + else if (needle > strawEnd) + l = m + 1; + else { + stbtt_uint16 startCoverageIndex = ttUSHORT(rangeRecord + 4); + return startCoverageIndex + glyph - strawStart; + } + } + break; + } + + default: return -1; // unsupported + } + + return -1; +} + +static stbtt_int32 stbtt__GetGlyphClass(stbtt_uint8 *classDefTable, int glyph) +{ + stbtt_uint16 classDefFormat = ttUSHORT(classDefTable); + switch (classDefFormat) + { + case 1: { + stbtt_uint16 startGlyphID = ttUSHORT(classDefTable + 2); + stbtt_uint16 glyphCount = ttUSHORT(classDefTable + 4); + stbtt_uint8 *classDef1ValueArray = classDefTable + 6; + + if (glyph >= startGlyphID && glyph < startGlyphID + glyphCount) + return (stbtt_int32)ttUSHORT(classDef1ValueArray + 2 * (glyph - startGlyphID)); + break; + } + + case 2: { + stbtt_uint16 classRangeCount = ttUSHORT(classDefTable + 2); + stbtt_uint8 *classRangeRecords = classDefTable + 4; + + // Binary search. + stbtt_int32 l=0, r=classRangeCount-1, m; + int strawStart, strawEnd, needle=glyph; + while (l <= r) { + stbtt_uint8 *classRangeRecord; + m = (l + r) >> 1; + classRangeRecord = classRangeRecords + 6 * m; + strawStart = ttUSHORT(classRangeRecord); + strawEnd = ttUSHORT(classRangeRecord + 2); + if (needle < strawStart) + r = m - 1; + else if (needle > strawEnd) + l = m + 1; + else + return (stbtt_int32)ttUSHORT(classRangeRecord + 4); + } + break; + } + + default: + return -1; // Unsupported definition type, return an error. + } + + // "All glyphs not assigned to a class fall into class 0". (OpenType spec) + return 0; +} + +// Define to STBTT_assert(x) if you want to break on unimplemented formats. +#define STBTT_GPOS_TODO_assert(x) + +static stbtt_int32 stbtt__GetGlyphGPOSInfoAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2) +{ + stbtt_uint16 lookupListOffset; + stbtt_uint8 *lookupList; + stbtt_uint16 lookupCount; + stbtt_uint8 *data; + stbtt_int32 i, sti; + + if (!info->gpos) return 0; + + data = info->data + info->gpos; + + if (ttUSHORT(data+0) != 1) return 0; // Major version 1 + if (ttUSHORT(data+2) != 0) return 0; // Minor version 0 + + lookupListOffset = ttUSHORT(data+8); + lookupList = data + lookupListOffset; + lookupCount = ttUSHORT(lookupList); + + for (i=0; i= pairSetCount) return 0; + + needle=glyph2; + r=pairValueCount-1; + l=0; + + // Binary search. + while (l <= r) { + stbtt_uint16 secondGlyph; + stbtt_uint8 *pairValue; + m = (l + r) >> 1; + pairValue = pairValueArray + (2 + valueRecordPairSizeInBytes) * m; + secondGlyph = ttUSHORT(pairValue); + straw = secondGlyph; + if (needle < straw) + r = m - 1; + else if (needle > straw) + l = m + 1; + else { + stbtt_int16 xAdvance = ttSHORT(pairValue + 2); + return xAdvance; + } + } + } else + return 0; + break; + } + + case 2: { + stbtt_uint16 valueFormat1 = ttUSHORT(table + 4); + stbtt_uint16 valueFormat2 = ttUSHORT(table + 6); + if (valueFormat1 == 4 && valueFormat2 == 0) { // Support more formats? + stbtt_uint16 classDef1Offset = ttUSHORT(table + 8); + stbtt_uint16 classDef2Offset = ttUSHORT(table + 10); + int glyph1class = stbtt__GetGlyphClass(table + classDef1Offset, glyph1); + int glyph2class = stbtt__GetGlyphClass(table + classDef2Offset, glyph2); + + stbtt_uint16 class1Count = ttUSHORT(table + 12); + stbtt_uint16 class2Count = ttUSHORT(table + 14); + stbtt_uint8 *class1Records, *class2Records; + stbtt_int16 xAdvance; + + if (glyph1class < 0 || glyph1class >= class1Count) return 0; // malformed + if (glyph2class < 0 || glyph2class >= class2Count) return 0; // malformed + + class1Records = table + 16; + class2Records = class1Records + 2 * (glyph1class * class2Count); + xAdvance = ttSHORT(class2Records + 2 * glyph2class); + return xAdvance; + } else + return 0; + break; + } + + default: + return 0; // Unsupported position format + } + } + } + + return 0; +} + +STBTT_DEF int stbtt_GetGlyphKernAdvance(const stbtt_fontinfo *info, int g1, int g2) +{ + int xAdvance = 0; + + if (info->gpos) + xAdvance += stbtt__GetGlyphGPOSInfoAdvance(info, g1, g2); + else if (info->kern) + xAdvance += stbtt__GetGlyphKernInfoAdvance(info, g1, g2); + + return xAdvance; +} + +STBTT_DEF int stbtt_GetCodepointKernAdvance(const stbtt_fontinfo *info, int ch1, int ch2) +{ + if (!info->kern && !info->gpos) // if no kerning table, don't waste time looking up both codepoint->glyphs + return 0; + return stbtt_GetGlyphKernAdvance(info, stbtt_FindGlyphIndex(info,ch1), stbtt_FindGlyphIndex(info,ch2)); +} + +STBTT_DEF void stbtt_GetCodepointHMetrics(const stbtt_fontinfo *info, int codepoint, int *advanceWidth, int *leftSideBearing) +{ + stbtt_GetGlyphHMetrics(info, stbtt_FindGlyphIndex(info,codepoint), advanceWidth, leftSideBearing); +} + +STBTT_DEF void stbtt_GetFontVMetrics(const stbtt_fontinfo *info, int *ascent, int *descent, int *lineGap) +{ + if (ascent ) *ascent = ttSHORT(info->data+info->hhea + 4); + if (descent) *descent = ttSHORT(info->data+info->hhea + 6); + if (lineGap) *lineGap = ttSHORT(info->data+info->hhea + 8); +} + +STBTT_DEF int stbtt_GetFontVMetricsOS2(const stbtt_fontinfo *info, int *typoAscent, int *typoDescent, int *typoLineGap) +{ + int tab = stbtt__find_table(info->data, info->fontstart, "OS/2"); + if (!tab) + return 0; + if (typoAscent ) *typoAscent = ttSHORT(info->data+tab + 68); + if (typoDescent) *typoDescent = ttSHORT(info->data+tab + 70); + if (typoLineGap) *typoLineGap = ttSHORT(info->data+tab + 72); + return 1; +} + +STBTT_DEF void stbtt_GetFontBoundingBox(const stbtt_fontinfo *info, int *x0, int *y0, int *x1, int *y1) +{ + *x0 = ttSHORT(info->data + info->head + 36); + *y0 = ttSHORT(info->data + info->head + 38); + *x1 = ttSHORT(info->data + info->head + 40); + *y1 = ttSHORT(info->data + info->head + 42); +} + +STBTT_DEF float stbtt_ScaleForPixelHeight(const stbtt_fontinfo *info, float height) +{ + int fheight = ttSHORT(info->data + info->hhea + 4) - ttSHORT(info->data + info->hhea + 6); + return (float) height / fheight; +} + +STBTT_DEF float stbtt_ScaleForMappingEmToPixels(const stbtt_fontinfo *info, float pixels) +{ + int unitsPerEm = ttUSHORT(info->data + info->head + 18); + return pixels / unitsPerEm; +} + +STBTT_DEF void stbtt_FreeShape(const stbtt_fontinfo *info, stbtt_vertex *v) +{ + STBTT_free(v, info->userdata); +} + +STBTT_DEF stbtt_uint8 *stbtt_FindSVGDoc(const stbtt_fontinfo *info, int gl) +{ + int i; + stbtt_uint8 *data = info->data; + stbtt_uint8 *svg_doc_list = data + stbtt__get_svg((stbtt_fontinfo *) info); + + int numEntries = ttUSHORT(svg_doc_list); + stbtt_uint8 *svg_docs = svg_doc_list + 2; + + for(i=0; i= ttUSHORT(svg_doc)) && (gl <= ttUSHORT(svg_doc + 2))) + return svg_doc; + } + return 0; +} + +STBTT_DEF int stbtt_GetGlyphSVG(const stbtt_fontinfo *info, int gl, const char **svg) +{ + stbtt_uint8 *data = info->data; + stbtt_uint8 *svg_doc; + + if (info->svg == 0) + return 0; + + svg_doc = stbtt_FindSVGDoc(info, gl); + if (svg_doc != NULL) { + *svg = (char *) data + info->svg + ttULONG(svg_doc + 4); + return ttULONG(svg_doc + 8); + } else { + return 0; + } +} + +STBTT_DEF int stbtt_GetCodepointSVG(const stbtt_fontinfo *info, int unicode_codepoint, const char **svg) +{ + return stbtt_GetGlyphSVG(info, stbtt_FindGlyphIndex(info, unicode_codepoint), svg); +} + +////////////////////////////////////////////////////////////////////////////// +// +// antialiasing software rasterizer +// + +STBTT_DEF void stbtt_GetGlyphBitmapBoxSubpixel(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1) +{ + int x0=0,y0=0,x1,y1; // =0 suppresses compiler warning + if (!stbtt_GetGlyphBox(font, glyph, &x0,&y0,&x1,&y1)) { + // e.g. space character + if (ix0) *ix0 = 0; + if (iy0) *iy0 = 0; + if (ix1) *ix1 = 0; + if (iy1) *iy1 = 0; + } else { + // move to integral bboxes (treating pixels as little squares, what pixels get touched)? + if (ix0) *ix0 = STBTT_ifloor( x0 * scale_x + shift_x); + if (iy0) *iy0 = STBTT_ifloor(-y1 * scale_y + shift_y); + if (ix1) *ix1 = STBTT_iceil ( x1 * scale_x + shift_x); + if (iy1) *iy1 = STBTT_iceil (-y0 * scale_y + shift_y); + } +} + +STBTT_DEF void stbtt_GetGlyphBitmapBox(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1) +{ + stbtt_GetGlyphBitmapBoxSubpixel(font, glyph, scale_x, scale_y,0.0f,0.0f, ix0, iy0, ix1, iy1); +} + +STBTT_DEF void stbtt_GetCodepointBitmapBoxSubpixel(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1) +{ + stbtt_GetGlyphBitmapBoxSubpixel(font, stbtt_FindGlyphIndex(font,codepoint), scale_x, scale_y,shift_x,shift_y, ix0,iy0,ix1,iy1); +} + +STBTT_DEF void stbtt_GetCodepointBitmapBox(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1) +{ + stbtt_GetCodepointBitmapBoxSubpixel(font, codepoint, scale_x, scale_y,0.0f,0.0f, ix0,iy0,ix1,iy1); +} + +////////////////////////////////////////////////////////////////////////////// +// +// Rasterizer + +typedef struct stbtt__hheap_chunk +{ + struct stbtt__hheap_chunk *next; +} stbtt__hheap_chunk; + +typedef struct stbtt__hheap +{ + struct stbtt__hheap_chunk *head; + void *first_free; + int num_remaining_in_head_chunk; +} stbtt__hheap; + +static void *stbtt__hheap_alloc(stbtt__hheap *hh, size_t size, void *userdata) +{ + if (hh->first_free) { + void *p = hh->first_free; + hh->first_free = * (void **) p; + return p; + } else { + if (hh->num_remaining_in_head_chunk == 0) { + int count = (size < 32 ? 2000 : size < 128 ? 800 : 100); + stbtt__hheap_chunk *c = (stbtt__hheap_chunk *) STBTT_malloc(sizeof(stbtt__hheap_chunk) + size * count, userdata); + if (c == NULL) + return NULL; + c->next = hh->head; + hh->head = c; + hh->num_remaining_in_head_chunk = count; + } + --hh->num_remaining_in_head_chunk; + return (char *) (hh->head) + sizeof(stbtt__hheap_chunk) + size * hh->num_remaining_in_head_chunk; + } +} + +static void stbtt__hheap_free(stbtt__hheap *hh, void *p) +{ + *(void **) p = hh->first_free; + hh->first_free = p; +} + +static void stbtt__hheap_cleanup(stbtt__hheap *hh, void *userdata) +{ + stbtt__hheap_chunk *c = hh->head; + while (c) { + stbtt__hheap_chunk *n = c->next; + STBTT_free(c, userdata); + c = n; + } +} + +typedef struct stbtt__edge { + float x0,y0, x1,y1; + int invert; +} stbtt__edge; + + +typedef struct stbtt__active_edge +{ + struct stbtt__active_edge *next; + #if STBTT_RASTERIZER_VERSION==1 + int x,dx; + float ey; + int direction; + #elif STBTT_RASTERIZER_VERSION==2 + float fx,fdx,fdy; + float direction; + float sy; + float ey; + #else + #error "Unrecognized value of STBTT_RASTERIZER_VERSION" + #endif +} stbtt__active_edge; + +#if STBTT_RASTERIZER_VERSION == 1 +#define STBTT_FIXSHIFT 10 +#define STBTT_FIX (1 << STBTT_FIXSHIFT) +#define STBTT_FIXMASK (STBTT_FIX-1) + +static stbtt__active_edge *stbtt__new_active(stbtt__hheap *hh, stbtt__edge *e, int off_x, float start_point, void *userdata) +{ + stbtt__active_edge *z = (stbtt__active_edge *) stbtt__hheap_alloc(hh, sizeof(*z), userdata); + float dxdy = (e->x1 - e->x0) / (e->y1 - e->y0); + STBTT_assert(z != NULL); + if (!z) return z; + + // round dx down to avoid overshooting + if (dxdy < 0) + z->dx = -STBTT_ifloor(STBTT_FIX * -dxdy); + else + z->dx = STBTT_ifloor(STBTT_FIX * dxdy); + + z->x = STBTT_ifloor(STBTT_FIX * e->x0 + z->dx * (start_point - e->y0)); // use z->dx so when we offset later it's by the same amount + z->x -= off_x * STBTT_FIX; + + z->ey = e->y1; + z->next = 0; + z->direction = e->invert ? 1 : -1; + return z; +} +#elif STBTT_RASTERIZER_VERSION == 2 +static stbtt__active_edge *stbtt__new_active(stbtt__hheap *hh, stbtt__edge *e, int off_x, float start_point, void *userdata) +{ + stbtt__active_edge *z = (stbtt__active_edge *) stbtt__hheap_alloc(hh, sizeof(*z), userdata); + float dxdy = (e->x1 - e->x0) / (e->y1 - e->y0); + STBTT_assert(z != NULL); + //STBTT_assert(e->y0 <= start_point); + if (!z) return z; + z->fdx = dxdy; + z->fdy = dxdy != 0.0f ? (1.0f/dxdy) : 0.0f; + z->fx = e->x0 + dxdy * (start_point - e->y0); + z->fx -= off_x; + z->direction = e->invert ? 1.0f : -1.0f; + z->sy = e->y0; + z->ey = e->y1; + z->next = 0; + return z; +} +#else +#error "Unrecognized value of STBTT_RASTERIZER_VERSION" +#endif + +#if STBTT_RASTERIZER_VERSION == 1 +// note: this routine clips fills that extend off the edges... ideally this +// wouldn't happen, but it could happen if the truetype glyph bounding boxes +// are wrong, or if the user supplies a too-small bitmap +static void stbtt__fill_active_edges(unsigned char *scanline, int len, stbtt__active_edge *e, int max_weight) +{ + // non-zero winding fill + int x0=0, w=0; + + while (e) { + if (w == 0) { + // if we're currently at zero, we need to record the edge start point + x0 = e->x; w += e->direction; + } else { + int x1 = e->x; w += e->direction; + // if we went to zero, we need to draw + if (w == 0) { + int i = x0 >> STBTT_FIXSHIFT; + int j = x1 >> STBTT_FIXSHIFT; + + if (i < len && j >= 0) { + if (i == j) { + // x0,x1 are the same pixel, so compute combined coverage + scanline[i] = scanline[i] + (stbtt_uint8) ((x1 - x0) * max_weight >> STBTT_FIXSHIFT); + } else { + if (i >= 0) // add antialiasing for x0 + scanline[i] = scanline[i] + (stbtt_uint8) (((STBTT_FIX - (x0 & STBTT_FIXMASK)) * max_weight) >> STBTT_FIXSHIFT); + else + i = -1; // clip + + if (j < len) // add antialiasing for x1 + scanline[j] = scanline[j] + (stbtt_uint8) (((x1 & STBTT_FIXMASK) * max_weight) >> STBTT_FIXSHIFT); + else + j = len; // clip + + for (++i; i < j; ++i) // fill pixels between x0 and x1 + scanline[i] = scanline[i] + (stbtt_uint8) max_weight; + } + } + } + } + + e = e->next; + } +} + +static void stbtt__rasterize_sorted_edges(stbtt__bitmap *result, stbtt__edge *e, int n, int vsubsample, int off_x, int off_y, void *userdata) +{ + stbtt__hheap hh = { 0, 0, 0 }; + stbtt__active_edge *active = NULL; + int y,j=0; + int max_weight = (255 / vsubsample); // weight per vertical scanline + int s; // vertical subsample index + unsigned char scanline_data[512], *scanline; + + if (result->w > 512) + scanline = (unsigned char *) STBTT_malloc(result->w, userdata); + else + scanline = scanline_data; + + y = off_y * vsubsample; + e[n].y0 = (off_y + result->h) * (float) vsubsample + 1; + + while (j < result->h) { + STBTT_memset(scanline, 0, result->w); + for (s=0; s < vsubsample; ++s) { + // find center of pixel for this scanline + float scan_y = y + 0.5f; + stbtt__active_edge **step = &active; + + // update all active edges; + // remove all active edges that terminate before the center of this scanline + while (*step) { + stbtt__active_edge * z = *step; + if (z->ey <= scan_y) { + *step = z->next; // delete from list + STBTT_assert(z->direction); + z->direction = 0; + stbtt__hheap_free(&hh, z); + } else { + z->x += z->dx; // advance to position for current scanline + step = &((*step)->next); // advance through list + } + } + + // resort the list if needed + for(;;) { + int changed=0; + step = &active; + while (*step && (*step)->next) { + if ((*step)->x > (*step)->next->x) { + stbtt__active_edge *t = *step; + stbtt__active_edge *q = t->next; + + t->next = q->next; + q->next = t; + *step = q; + changed = 1; + } + step = &(*step)->next; + } + if (!changed) break; + } + + // insert all edges that start before the center of this scanline -- omit ones that also end on this scanline + while (e->y0 <= scan_y) { + if (e->y1 > scan_y) { + stbtt__active_edge *z = stbtt__new_active(&hh, e, off_x, scan_y, userdata); + if (z != NULL) { + // find insertion point + if (active == NULL) + active = z; + else if (z->x < active->x) { + // insert at front + z->next = active; + active = z; + } else { + // find thing to insert AFTER + stbtt__active_edge *p = active; + while (p->next && p->next->x < z->x) + p = p->next; + // at this point, p->next->x is NOT < z->x + z->next = p->next; + p->next = z; + } + } + } + ++e; + } + + // now process all active edges in XOR fashion + if (active) + stbtt__fill_active_edges(scanline, result->w, active, max_weight); + + ++y; + } + STBTT_memcpy(result->pixels + j * result->stride, scanline, result->w); + ++j; + } + + stbtt__hheap_cleanup(&hh, userdata); + + if (scanline != scanline_data) + STBTT_free(scanline, userdata); +} + +#elif STBTT_RASTERIZER_VERSION == 2 + +// the edge passed in here does not cross the vertical line at x or the vertical line at x+1 +// (i.e. it has already been clipped to those) +static void stbtt__handle_clipped_edge(float *scanline, int x, stbtt__active_edge *e, float x0, float y0, float x1, float y1) +{ + if (y0 == y1) return; + STBTT_assert(y0 < y1); + STBTT_assert(e->sy <= e->ey); + if (y0 > e->ey) return; + if (y1 < e->sy) return; + if (y0 < e->sy) { + x0 += (x1-x0) * (e->sy - y0) / (y1-y0); + y0 = e->sy; + } + if (y1 > e->ey) { + x1 += (x1-x0) * (e->ey - y1) / (y1-y0); + y1 = e->ey; + } + + if (x0 == x) + STBTT_assert(x1 <= x+1); + else if (x0 == x+1) + STBTT_assert(x1 >= x); + else if (x0 <= x) + STBTT_assert(x1 <= x); + else if (x0 >= x+1) + STBTT_assert(x1 >= x+1); + else + STBTT_assert(x1 >= x && x1 <= x+1); + + if (x0 <= x && x1 <= x) + scanline[x] += e->direction * (y1-y0); + else if (x0 >= x+1 && x1 >= x+1) + ; + else { + STBTT_assert(x0 >= x && x0 <= x+1 && x1 >= x && x1 <= x+1); + scanline[x] += e->direction * (y1-y0) * (1-((x0-x)+(x1-x))/2); // coverage = 1 - average x position + } +} + +static float stbtt__sized_trapezoid_area(float height, float top_width, float bottom_width) +{ + STBTT_assert(top_width >= 0); + STBTT_assert(bottom_width >= 0); + return (top_width + bottom_width) / 2.0f * height; +} + +static float stbtt__position_trapezoid_area(float height, float tx0, float tx1, float bx0, float bx1) +{ + return stbtt__sized_trapezoid_area(height, tx1 - tx0, bx1 - bx0); +} + +static float stbtt__sized_triangle_area(float height, float width) +{ + return height * width / 2; +} + +static void stbtt__fill_active_edges_new(float *scanline, float *scanline_fill, int len, stbtt__active_edge *e, float y_top) +{ + float y_bottom = y_top+1; + + while (e) { + // brute force every pixel + + // compute intersection points with top & bottom + STBTT_assert(e->ey >= y_top); + + if (e->fdx == 0) { + float x0 = e->fx; + if (x0 < len) { + if (x0 >= 0) { + stbtt__handle_clipped_edge(scanline,(int) x0,e, x0,y_top, x0,y_bottom); + stbtt__handle_clipped_edge(scanline_fill-1,(int) x0+1,e, x0,y_top, x0,y_bottom); + } else { + stbtt__handle_clipped_edge(scanline_fill-1,0,e, x0,y_top, x0,y_bottom); + } + } + } else { + float x0 = e->fx; + float dx = e->fdx; + float xb = x0 + dx; + float x_top, x_bottom; + float sy0,sy1; + float dy = e->fdy; + STBTT_assert(e->sy <= y_bottom && e->ey >= y_top); + + // compute endpoints of line segment clipped to this scanline (if the + // line segment starts on this scanline. x0 is the intersection of the + // line with y_top, but that may be off the line segment. + if (e->sy > y_top) { + x_top = x0 + dx * (e->sy - y_top); + sy0 = e->sy; + } else { + x_top = x0; + sy0 = y_top; + } + if (e->ey < y_bottom) { + x_bottom = x0 + dx * (e->ey - y_top); + sy1 = e->ey; + } else { + x_bottom = xb; + sy1 = y_bottom; + } + + if (x_top >= 0 && x_bottom >= 0 && x_top < len && x_bottom < len) { + // from here on, we don't have to range check x values + + if ((int) x_top == (int) x_bottom) { + float height; + // simple case, only spans one pixel + int x = (int) x_top; + height = (sy1 - sy0) * e->direction; + STBTT_assert(x >= 0 && x < len); + scanline[x] += stbtt__position_trapezoid_area(height, x_top, x+1.0f, x_bottom, x+1.0f); + scanline_fill[x] += height; // everything right of this pixel is filled + } else { + int x,x1,x2; + float y_crossing, y_final, step, sign, area; + // covers 2+ pixels + if (x_top > x_bottom) { + // flip scanline vertically; signed area is the same + float t; + sy0 = y_bottom - (sy0 - y_top); + sy1 = y_bottom - (sy1 - y_top); + t = sy0, sy0 = sy1, sy1 = t; + t = x_bottom, x_bottom = x_top, x_top = t; + dx = -dx; + dy = -dy; + t = x0, x0 = xb, xb = t; + } + STBTT_assert(dy >= 0); + STBTT_assert(dx >= 0); + + x1 = (int) x_top; + x2 = (int) x_bottom; + // compute intersection with y axis at x1+1 + y_crossing = y_top + dy * (x1+1 - x0); + + // compute intersection with y axis at x2 + y_final = y_top + dy * (x2 - x0); + + // x1 x_top x2 x_bottom + // y_top +------|-----+------------+------------+--------|---+------------+ + // | | | | | | + // | | | | | | + // sy0 | Txxxxx|............|............|............|............| + // y_crossing | *xxxxx.......|............|............|............| + // | | xxxxx..|............|............|............| + // | | /- xx*xxxx........|............|............| + // | | dy < | xxxxxx..|............|............| + // y_final | | \- | xx*xxx.........|............| + // sy1 | | | | xxxxxB...|............| + // | | | | | | + // | | | | | | + // y_bottom +------------+------------+------------+------------+------------+ + // + // goal is to measure the area covered by '.' in each pixel + + // if x2 is right at the right edge of x1, y_crossing can blow up, github #1057 + // @TODO: maybe test against sy1 rather than y_bottom? + if (y_crossing > y_bottom) + y_crossing = y_bottom; + + sign = e->direction; + + // area of the rectangle covered from sy0..y_crossing + area = sign * (y_crossing-sy0); + + // area of the triangle (x_top,sy0), (x1+1,sy0), (x1+1,y_crossing) + scanline[x1] += stbtt__sized_triangle_area(area, x1+1 - x_top); + + // check if final y_crossing is blown up; no test case for this + if (y_final > y_bottom) { + int denom = (x2 - (x1+1)); + y_final = y_bottom; + if (denom != 0) { // [DEAR IMGUI] Avoid div by zero (https://github.com/nothings/stb/issues/1316) + dy = (y_final - y_crossing ) / denom; // if denom=0, y_final = y_crossing, so y_final <= y_bottom + } + } + + // in second pixel, area covered by line segment found in first pixel + // is always a rectangle 1 wide * the height of that line segment; this + // is exactly what the variable 'area' stores. it also gets a contribution + // from the line segment within it. the THIRD pixel will get the first + // pixel's rectangle contribution, the second pixel's rectangle contribution, + // and its own contribution. the 'own contribution' is the same in every pixel except + // the leftmost and rightmost, a trapezoid that slides down in each pixel. + // the second pixel's contribution to the third pixel will be the + // rectangle 1 wide times the height change in the second pixel, which is dy. + + step = sign * dy * 1; // dy is dy/dx, change in y for every 1 change in x, + // which multiplied by 1-pixel-width is how much pixel area changes for each step in x + // so the area advances by 'step' every time + + for (x = x1+1; x < x2; ++x) { + scanline[x] += area + step/2; // area of trapezoid is 1*step/2 + area += step; + } + STBTT_assert(STBTT_fabs(area) <= 1.01f); // accumulated error from area += step unless we round step down + STBTT_assert(sy1 > y_final-0.01f); + + // area covered in the last pixel is the rectangle from all the pixels to the left, + // plus the trapezoid filled by the line segment in this pixel all the way to the right edge + scanline[x2] += area + sign * stbtt__position_trapezoid_area(sy1-y_final, (float) x2, x2+1.0f, x_bottom, x2+1.0f); + + // the rest of the line is filled based on the total height of the line segment in this pixel + scanline_fill[x2] += sign * (sy1-sy0); + } + } else { + // if edge goes outside of box we're drawing, we require + // clipping logic. since this does not match the intended use + // of this library, we use a different, very slow brute + // force implementation + // note though that this does happen some of the time because + // x_top and x_bottom can be extrapolated at the top & bottom of + // the shape and actually lie outside the bounding box + int x; + for (x=0; x < len; ++x) { + // cases: + // + // there can be up to two intersections with the pixel. any intersection + // with left or right edges can be handled by splitting into two (or three) + // regions. intersections with top & bottom do not necessitate case-wise logic. + // + // the old way of doing this found the intersections with the left & right edges, + // then used some simple logic to produce up to three segments in sorted order + // from top-to-bottom. however, this had a problem: if an x edge was epsilon + // across the x border, then the corresponding y position might not be distinct + // from the other y segment, and it might ignored as an empty segment. to avoid + // that, we need to explicitly produce segments based on x positions. + + // rename variables to clearly-defined pairs + float y0 = y_top; + float x1 = (float) (x); + float x2 = (float) (x+1); + float x3 = xb; + float y3 = y_bottom; + + // x = e->x + e->dx * (y-y_top) + // (y-y_top) = (x - e->x) / e->dx + // y = (x - e->x) / e->dx + y_top + float y1 = (x - x0) / dx + y_top; + float y2 = (x+1 - x0) / dx + y_top; + + if (x0 < x1 && x3 > x2) { // three segments descending down-right + stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x1,y1); + stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x2,y2); + stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x3,y3); + } else if (x3 < x1 && x0 > x2) { // three segments descending down-left + stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x2,y2); + stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x1,y1); + stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x3,y3); + } else if (x0 < x1 && x3 > x1) { // two segments across x, down-right + stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x1,y1); + stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x3,y3); + } else if (x3 < x1 && x0 > x1) { // two segments across x, down-left + stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x1,y1); + stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x3,y3); + } else if (x0 < x2 && x3 > x2) { // two segments across x+1, down-right + stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x2,y2); + stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x3,y3); + } else if (x3 < x2 && x0 > x2) { // two segments across x+1, down-left + stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x2,y2); + stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x3,y3); + } else { // one segment + stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x3,y3); + } + } + } + } + e = e->next; + } +} + +// directly AA rasterize edges w/o supersampling +static void stbtt__rasterize_sorted_edges(stbtt__bitmap *result, stbtt__edge *e, int n, int vsubsample, int off_x, int off_y, void *userdata) +{ + stbtt__hheap hh = { 0, 0, 0 }; + stbtt__active_edge *active = NULL; + int y,j=0, i; + float scanline_data[129], *scanline, *scanline2; + + STBTT__NOTUSED(vsubsample); + + if (result->w > 64) + scanline = (float *) STBTT_malloc((result->w*2+1) * sizeof(float), userdata); + else + scanline = scanline_data; + + scanline2 = scanline + result->w; + + y = off_y; + e[n].y0 = (float) (off_y + result->h) + 1; + + while (j < result->h) { + // find center of pixel for this scanline + float scan_y_top = y + 0.0f; + float scan_y_bottom = y + 1.0f; + stbtt__active_edge **step = &active; + + STBTT_memset(scanline , 0, result->w*sizeof(scanline[0])); + STBTT_memset(scanline2, 0, (result->w+1)*sizeof(scanline[0])); + + // update all active edges; + // remove all active edges that terminate before the top of this scanline + while (*step) { + stbtt__active_edge * z = *step; + if (z->ey <= scan_y_top) { + *step = z->next; // delete from list + STBTT_assert(z->direction); + z->direction = 0; + stbtt__hheap_free(&hh, z); + } else { + step = &((*step)->next); // advance through list + } + } + + // insert all edges that start before the bottom of this scanline + while (e->y0 <= scan_y_bottom) { + if (e->y0 != e->y1) { + stbtt__active_edge *z = stbtt__new_active(&hh, e, off_x, scan_y_top, userdata); + if (z != NULL) { + if (j == 0 && off_y != 0) { + if (z->ey < scan_y_top) { + // this can happen due to subpixel positioning and some kind of fp rounding error i think + z->ey = scan_y_top; + } + } + STBTT_assert(z->ey >= scan_y_top); // if we get really unlucky a tiny bit of an edge can be out of bounds + // insert at front + z->next = active; + active = z; + } + } + ++e; + } + + // now process all active edges + if (active) + stbtt__fill_active_edges_new(scanline, scanline2+1, result->w, active, scan_y_top); + + { + float sum = 0; + for (i=0; i < result->w; ++i) { + float k; + int m; + sum += scanline2[i]; + k = scanline[i] + sum; + k = (float) STBTT_fabs(k)*255 + 0.5f; + m = (int) k; + if (m > 255) m = 255; + result->pixels[j*result->stride + i] = (unsigned char) m; + } + } + // advance all the edges + step = &active; + while (*step) { + stbtt__active_edge *z = *step; + z->fx += z->fdx; // advance to position for current scanline + step = &((*step)->next); // advance through list + } + + ++y; + ++j; + } + + stbtt__hheap_cleanup(&hh, userdata); + + if (scanline != scanline_data) + STBTT_free(scanline, userdata); +} +#else +#error "Unrecognized value of STBTT_RASTERIZER_VERSION" +#endif + +#define STBTT__COMPARE(a,b) ((a)->y0 < (b)->y0) + +static void stbtt__sort_edges_ins_sort(stbtt__edge *p, int n) +{ + int i,j; + for (i=1; i < n; ++i) { + stbtt__edge t = p[i], *a = &t; + j = i; + while (j > 0) { + stbtt__edge *b = &p[j-1]; + int c = STBTT__COMPARE(a,b); + if (!c) break; + p[j] = p[j-1]; + --j; + } + if (i != j) + p[j] = t; + } +} + +static void stbtt__sort_edges_quicksort(stbtt__edge *p, int n) +{ + /* threshold for transitioning to insertion sort */ + while (n > 12) { + stbtt__edge t; + int c01,c12,c,m,i,j; + + /* compute median of three */ + m = n >> 1; + c01 = STBTT__COMPARE(&p[0],&p[m]); + c12 = STBTT__COMPARE(&p[m],&p[n-1]); + /* if 0 >= mid >= end, or 0 < mid < end, then use mid */ + if (c01 != c12) { + /* otherwise, we'll need to swap something else to middle */ + int z; + c = STBTT__COMPARE(&p[0],&p[n-1]); + /* 0>mid && midn => n; 0 0 */ + /* 0n: 0>n => 0; 0 n */ + z = (c == c12) ? 0 : n-1; + t = p[z]; + p[z] = p[m]; + p[m] = t; + } + /* now p[m] is the median-of-three */ + /* swap it to the beginning so it won't move around */ + t = p[0]; + p[0] = p[m]; + p[m] = t; + + /* partition loop */ + i=1; + j=n-1; + for(;;) { + /* handling of equality is crucial here */ + /* for sentinels & efficiency with duplicates */ + for (;;++i) { + if (!STBTT__COMPARE(&p[i], &p[0])) break; + } + for (;;--j) { + if (!STBTT__COMPARE(&p[0], &p[j])) break; + } + /* make sure we haven't crossed */ + if (i >= j) break; + t = p[i]; + p[i] = p[j]; + p[j] = t; + + ++i; + --j; + } + /* recurse on smaller side, iterate on larger */ + if (j < (n-i)) { + stbtt__sort_edges_quicksort(p,j); + p = p+i; + n = n-i; + } else { + stbtt__sort_edges_quicksort(p+i, n-i); + n = j; + } + } +} + +static void stbtt__sort_edges(stbtt__edge *p, int n) +{ + stbtt__sort_edges_quicksort(p, n); + stbtt__sort_edges_ins_sort(p, n); +} + +typedef struct +{ + float x,y; +} stbtt__point; + +static void stbtt__rasterize(stbtt__bitmap *result, stbtt__point *pts, int *wcount, int windings, float scale_x, float scale_y, float shift_x, float shift_y, int off_x, int off_y, int invert, void *userdata) +{ + float y_scale_inv = invert ? -scale_y : scale_y; + stbtt__edge *e; + int n,i,j,k,m; +#if STBTT_RASTERIZER_VERSION == 1 + int vsubsample = result->h < 8 ? 15 : 5; +#elif STBTT_RASTERIZER_VERSION == 2 + int vsubsample = 1; +#else + #error "Unrecognized value of STBTT_RASTERIZER_VERSION" +#endif + // vsubsample should divide 255 evenly; otherwise we won't reach full opacity + + // now we have to blow out the windings into explicit edge lists + n = 0; + for (i=0; i < windings; ++i) + n += wcount[i]; + + e = (stbtt__edge *) STBTT_malloc(sizeof(*e) * (n+1), userdata); // add an extra one as a sentinel + if (e == 0) return; + n = 0; + + m=0; + for (i=0; i < windings; ++i) { + stbtt__point *p = pts + m; + m += wcount[i]; + j = wcount[i]-1; + for (k=0; k < wcount[i]; j=k++) { + int a=k,b=j; + // skip the edge if horizontal + if (p[j].y == p[k].y) + continue; + // add edge from j to k to the list + e[n].invert = 0; + if (invert ? p[j].y > p[k].y : p[j].y < p[k].y) { + e[n].invert = 1; + a=j,b=k; + } + e[n].x0 = p[a].x * scale_x + shift_x; + e[n].y0 = (p[a].y * y_scale_inv + shift_y) * vsubsample; + e[n].x1 = p[b].x * scale_x + shift_x; + e[n].y1 = (p[b].y * y_scale_inv + shift_y) * vsubsample; + ++n; + } + } + + // now sort the edges by their highest point (should snap to integer, and then by x) + //STBTT_sort(e, n, sizeof(e[0]), stbtt__edge_compare); + stbtt__sort_edges(e, n); + + // now, traverse the scanlines and find the intersections on each scanline, use xor winding rule + stbtt__rasterize_sorted_edges(result, e, n, vsubsample, off_x, off_y, userdata); + + STBTT_free(e, userdata); +} + +static void stbtt__add_point(stbtt__point *points, int n, float x, float y) +{ + if (!points) return; // during first pass, it's unallocated + points[n].x = x; + points[n].y = y; +} + +// tessellate until threshold p is happy... @TODO warped to compensate for non-linear stretching +static int stbtt__tesselate_curve(stbtt__point *points, int *num_points, float x0, float y0, float x1, float y1, float x2, float y2, float objspace_flatness_squared, int n) +{ + // midpoint + float mx = (x0 + 2*x1 + x2)/4; + float my = (y0 + 2*y1 + y2)/4; + // versus directly drawn line + float dx = (x0+x2)/2 - mx; + float dy = (y0+y2)/2 - my; + if (n > 16) // 65536 segments on one curve better be enough! + return 1; + if (dx*dx+dy*dy > objspace_flatness_squared) { // half-pixel error allowed... need to be smaller if AA + stbtt__tesselate_curve(points, num_points, x0,y0, (x0+x1)/2.0f,(y0+y1)/2.0f, mx,my, objspace_flatness_squared,n+1); + stbtt__tesselate_curve(points, num_points, mx,my, (x1+x2)/2.0f,(y1+y2)/2.0f, x2,y2, objspace_flatness_squared,n+1); + } else { + stbtt__add_point(points, *num_points,x2,y2); + *num_points = *num_points+1; + } + return 1; +} + +static void stbtt__tesselate_cubic(stbtt__point *points, int *num_points, float x0, float y0, float x1, float y1, float x2, float y2, float x3, float y3, float objspace_flatness_squared, int n) +{ + // @TODO this "flatness" calculation is just made-up nonsense that seems to work well enough + float dx0 = x1-x0; + float dy0 = y1-y0; + float dx1 = x2-x1; + float dy1 = y2-y1; + float dx2 = x3-x2; + float dy2 = y3-y2; + float dx = x3-x0; + float dy = y3-y0; + float longlen = (float) (STBTT_sqrt(dx0*dx0+dy0*dy0)+STBTT_sqrt(dx1*dx1+dy1*dy1)+STBTT_sqrt(dx2*dx2+dy2*dy2)); + float shortlen = (float) STBTT_sqrt(dx*dx+dy*dy); + float flatness_squared = longlen*longlen-shortlen*shortlen; + + if (n > 16) // 65536 segments on one curve better be enough! + return; + + if (flatness_squared > objspace_flatness_squared) { + float x01 = (x0+x1)/2; + float y01 = (y0+y1)/2; + float x12 = (x1+x2)/2; + float y12 = (y1+y2)/2; + float x23 = (x2+x3)/2; + float y23 = (y2+y3)/2; + + float xa = (x01+x12)/2; + float ya = (y01+y12)/2; + float xb = (x12+x23)/2; + float yb = (y12+y23)/2; + + float mx = (xa+xb)/2; + float my = (ya+yb)/2; + + stbtt__tesselate_cubic(points, num_points, x0,y0, x01,y01, xa,ya, mx,my, objspace_flatness_squared,n+1); + stbtt__tesselate_cubic(points, num_points, mx,my, xb,yb, x23,y23, x3,y3, objspace_flatness_squared,n+1); + } else { + stbtt__add_point(points, *num_points,x3,y3); + *num_points = *num_points+1; + } +} + +// returns number of contours +static stbtt__point *stbtt_FlattenCurves(stbtt_vertex *vertices, int num_verts, float objspace_flatness, int **contour_lengths, int *num_contours, void *userdata) +{ + stbtt__point *points=0; + int num_points=0; + + float objspace_flatness_squared = objspace_flatness * objspace_flatness; + int i,n=0,start=0, pass; + + // count how many "moves" there are to get the contour count + for (i=0; i < num_verts; ++i) + if (vertices[i].type == STBTT_vmove) + ++n; + + *num_contours = n; + if (n == 0) return 0; + + *contour_lengths = (int *) STBTT_malloc(sizeof(**contour_lengths) * n, userdata); + + if (*contour_lengths == 0) { + *num_contours = 0; + return 0; + } + + // make two passes through the points so we don't need to realloc + for (pass=0; pass < 2; ++pass) { + float x=0,y=0; + if (pass == 1) { + points = (stbtt__point *) STBTT_malloc(num_points * sizeof(points[0]), userdata); + if (points == NULL) goto error; + } + num_points = 0; + n= -1; + for (i=0; i < num_verts; ++i) { + switch (vertices[i].type) { + case STBTT_vmove: + // start the next contour + if (n >= 0) + (*contour_lengths)[n] = num_points - start; + ++n; + start = num_points; + + x = vertices[i].x, y = vertices[i].y; + stbtt__add_point(points, num_points++, x,y); + break; + case STBTT_vline: + x = vertices[i].x, y = vertices[i].y; + stbtt__add_point(points, num_points++, x, y); + break; + case STBTT_vcurve: + stbtt__tesselate_curve(points, &num_points, x,y, + vertices[i].cx, vertices[i].cy, + vertices[i].x, vertices[i].y, + objspace_flatness_squared, 0); + x = vertices[i].x, y = vertices[i].y; + break; + case STBTT_vcubic: + stbtt__tesselate_cubic(points, &num_points, x,y, + vertices[i].cx, vertices[i].cy, + vertices[i].cx1, vertices[i].cy1, + vertices[i].x, vertices[i].y, + objspace_flatness_squared, 0); + x = vertices[i].x, y = vertices[i].y; + break; + } + } + (*contour_lengths)[n] = num_points - start; + } + + return points; +error: + STBTT_free(points, userdata); + STBTT_free(*contour_lengths, userdata); + *contour_lengths = 0; + *num_contours = 0; + return NULL; +} + +STBTT_DEF void stbtt_Rasterize(stbtt__bitmap *result, float flatness_in_pixels, stbtt_vertex *vertices, int num_verts, float scale_x, float scale_y, float shift_x, float shift_y, int x_off, int y_off, int invert, void *userdata) +{ + float scale = scale_x > scale_y ? scale_y : scale_x; + int winding_count = 0; + int *winding_lengths = NULL; + stbtt__point *windings = stbtt_FlattenCurves(vertices, num_verts, flatness_in_pixels / scale, &winding_lengths, &winding_count, userdata); + if (windings) { + stbtt__rasterize(result, windings, winding_lengths, winding_count, scale_x, scale_y, shift_x, shift_y, x_off, y_off, invert, userdata); + STBTT_free(winding_lengths, userdata); + STBTT_free(windings, userdata); + } +} + +STBTT_DEF void stbtt_FreeBitmap(unsigned char *bitmap, void *userdata) +{ + STBTT_free(bitmap, userdata); +} + +STBTT_DEF unsigned char *stbtt_GetGlyphBitmapSubpixel(const stbtt_fontinfo *info, float scale_x, float scale_y, float shift_x, float shift_y, int glyph, int *width, int *height, int *xoff, int *yoff) +{ + int ix0,iy0,ix1,iy1; + stbtt__bitmap gbm; + stbtt_vertex *vertices; + int num_verts = stbtt_GetGlyphShape(info, glyph, &vertices); + + if (scale_x == 0) scale_x = scale_y; + if (scale_y == 0) { + if (scale_x == 0) { + STBTT_free(vertices, info->userdata); + return NULL; + } + scale_y = scale_x; + } + + stbtt_GetGlyphBitmapBoxSubpixel(info, glyph, scale_x, scale_y, shift_x, shift_y, &ix0,&iy0,&ix1,&iy1); + + // now we get the size + gbm.w = (ix1 - ix0); + gbm.h = (iy1 - iy0); + gbm.pixels = NULL; // in case we error + + if (width ) *width = gbm.w; + if (height) *height = gbm.h; + if (xoff ) *xoff = ix0; + if (yoff ) *yoff = iy0; + + if (gbm.w && gbm.h) { + gbm.pixels = (unsigned char *) STBTT_malloc(gbm.w * gbm.h, info->userdata); + if (gbm.pixels) { + gbm.stride = gbm.w; + + stbtt_Rasterize(&gbm, 0.35f, vertices, num_verts, scale_x, scale_y, shift_x, shift_y, ix0, iy0, 1, info->userdata); + } + } + STBTT_free(vertices, info->userdata); + return gbm.pixels; +} + +STBTT_DEF unsigned char *stbtt_GetGlyphBitmap(const stbtt_fontinfo *info, float scale_x, float scale_y, int glyph, int *width, int *height, int *xoff, int *yoff) +{ + return stbtt_GetGlyphBitmapSubpixel(info, scale_x, scale_y, 0.0f, 0.0f, glyph, width, height, xoff, yoff); +} + +STBTT_DEF void stbtt_MakeGlyphBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int glyph) +{ + int ix0,iy0; + stbtt_vertex *vertices; + int num_verts = stbtt_GetGlyphShape(info, glyph, &vertices); + stbtt__bitmap gbm; + + stbtt_GetGlyphBitmapBoxSubpixel(info, glyph, scale_x, scale_y, shift_x, shift_y, &ix0,&iy0,0,0); + gbm.pixels = output; + gbm.w = out_w; + gbm.h = out_h; + gbm.stride = out_stride; + + if (gbm.w && gbm.h) + stbtt_Rasterize(&gbm, 0.35f, vertices, num_verts, scale_x, scale_y, shift_x, shift_y, ix0,iy0, 1, info->userdata); + + STBTT_free(vertices, info->userdata); +} + +STBTT_DEF void stbtt_MakeGlyphBitmap(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, int glyph) +{ + stbtt_MakeGlyphBitmapSubpixel(info, output, out_w, out_h, out_stride, scale_x, scale_y, 0.0f,0.0f, glyph); +} + +STBTT_DEF unsigned char *stbtt_GetCodepointBitmapSubpixel(const stbtt_fontinfo *info, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint, int *width, int *height, int *xoff, int *yoff) +{ + return stbtt_GetGlyphBitmapSubpixel(info, scale_x, scale_y,shift_x,shift_y, stbtt_FindGlyphIndex(info,codepoint), width,height,xoff,yoff); +} + +STBTT_DEF void stbtt_MakeCodepointBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int oversample_x, int oversample_y, float *sub_x, float *sub_y, int codepoint) +{ + stbtt_MakeGlyphBitmapSubpixelPrefilter(info, output, out_w, out_h, out_stride, scale_x, scale_y, shift_x, shift_y, oversample_x, oversample_y, sub_x, sub_y, stbtt_FindGlyphIndex(info,codepoint)); +} + +STBTT_DEF void stbtt_MakeCodepointBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint) +{ + stbtt_MakeGlyphBitmapSubpixel(info, output, out_w, out_h, out_stride, scale_x, scale_y, shift_x, shift_y, stbtt_FindGlyphIndex(info,codepoint)); +} + +STBTT_DEF unsigned char *stbtt_GetCodepointBitmap(const stbtt_fontinfo *info, float scale_x, float scale_y, int codepoint, int *width, int *height, int *xoff, int *yoff) +{ + return stbtt_GetCodepointBitmapSubpixel(info, scale_x, scale_y, 0.0f,0.0f, codepoint, width,height,xoff,yoff); +} + +STBTT_DEF void stbtt_MakeCodepointBitmap(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, int codepoint) +{ + stbtt_MakeCodepointBitmapSubpixel(info, output, out_w, out_h, out_stride, scale_x, scale_y, 0.0f,0.0f, codepoint); +} + +////////////////////////////////////////////////////////////////////////////// +// +// bitmap baking +// +// This is SUPER-CRAPPY packing to keep source code small + +static int stbtt_BakeFontBitmap_internal(unsigned char *data, int offset, // font location (use offset=0 for plain .ttf) + float pixel_height, // height of font in pixels + unsigned char *pixels, int pw, int ph, // bitmap to be filled in + int first_char, int num_chars, // characters to bake + stbtt_bakedchar *chardata) +{ + float scale; + int x,y,bottom_y, i; + stbtt_fontinfo f; + f.userdata = NULL; + if (!stbtt_InitFont(&f, data, offset)) + return -1; + STBTT_memset(pixels, 0, pw*ph); // background of 0 around pixels + x=y=1; + bottom_y = 1; + + scale = stbtt_ScaleForPixelHeight(&f, pixel_height); + + for (i=0; i < num_chars; ++i) { + int advance, lsb, x0,y0,x1,y1,gw,gh; + int g = stbtt_FindGlyphIndex(&f, first_char + i); + stbtt_GetGlyphHMetrics(&f, g, &advance, &lsb); + stbtt_GetGlyphBitmapBox(&f, g, scale,scale, &x0,&y0,&x1,&y1); + gw = x1-x0; + gh = y1-y0; + if (x + gw + 1 >= pw) + y = bottom_y, x = 1; // advance to next row + if (y + gh + 1 >= ph) // check if it fits vertically AFTER potentially moving to next row + return -i; + STBTT_assert(x+gw < pw); + STBTT_assert(y+gh < ph); + stbtt_MakeGlyphBitmap(&f, pixels+x+y*pw, gw,gh,pw, scale,scale, g); + chardata[i].x0 = (stbtt_int16) x; + chardata[i].y0 = (stbtt_int16) y; + chardata[i].x1 = (stbtt_int16) (x + gw); + chardata[i].y1 = (stbtt_int16) (y + gh); + chardata[i].xadvance = scale * advance; + chardata[i].xoff = (float) x0; + chardata[i].yoff = (float) y0; + x = x + gw + 1; + if (y+gh+1 > bottom_y) + bottom_y = y+gh+1; + } + return bottom_y; +} + +STBTT_DEF void stbtt_GetBakedQuad(const stbtt_bakedchar *chardata, int pw, int ph, int char_index, float *xpos, float *ypos, stbtt_aligned_quad *q, int opengl_fillrule) +{ + float d3d_bias = opengl_fillrule ? 0 : -0.5f; + float ipw = 1.0f / pw, iph = 1.0f / ph; + const stbtt_bakedchar *b = chardata + char_index; + int round_x = STBTT_ifloor((*xpos + b->xoff) + 0.5f); + int round_y = STBTT_ifloor((*ypos + b->yoff) + 0.5f); + + q->x0 = round_x + d3d_bias; + q->y0 = round_y + d3d_bias; + q->x1 = round_x + b->x1 - b->x0 + d3d_bias; + q->y1 = round_y + b->y1 - b->y0 + d3d_bias; + + q->s0 = b->x0 * ipw; + q->t0 = b->y0 * iph; + q->s1 = b->x1 * ipw; + q->t1 = b->y1 * iph; + + *xpos += b->xadvance; +} + +////////////////////////////////////////////////////////////////////////////// +// +// rectangle packing replacement routines if you don't have stb_rect_pack.h +// + +#ifndef STB_RECT_PACK_VERSION + +typedef int stbrp_coord; + +//////////////////////////////////////////////////////////////////////////////////// +// // +// // +// COMPILER WARNING ?!?!? // +// // +// // +// if you get a compile warning due to these symbols being defined more than // +// once, move #include "stb_rect_pack.h" before #include "stb_truetype.h" // +// // +//////////////////////////////////////////////////////////////////////////////////// + +typedef struct +{ + int width,height; + int x,y,bottom_y; +} stbrp_context; + +typedef struct +{ + unsigned char x; +} stbrp_node; + +struct stbrp_rect +{ + stbrp_coord x,y; + int id,w,h,was_packed; +}; + +static void stbrp_init_target(stbrp_context *con, int pw, int ph, stbrp_node *nodes, int num_nodes) +{ + con->width = pw; + con->height = ph; + con->x = 0; + con->y = 0; + con->bottom_y = 0; + STBTT__NOTUSED(nodes); + STBTT__NOTUSED(num_nodes); +} + +static void stbrp_pack_rects(stbrp_context *con, stbrp_rect *rects, int num_rects) +{ + int i; + for (i=0; i < num_rects; ++i) { + if (con->x + rects[i].w > con->width) { + con->x = 0; + con->y = con->bottom_y; + } + if (con->y + rects[i].h > con->height) + break; + rects[i].x = con->x; + rects[i].y = con->y; + rects[i].was_packed = 1; + con->x += rects[i].w; + if (con->y + rects[i].h > con->bottom_y) + con->bottom_y = con->y + rects[i].h; + } + for ( ; i < num_rects; ++i) + rects[i].was_packed = 0; +} +#endif + +////////////////////////////////////////////////////////////////////////////// +// +// bitmap baking +// +// This is SUPER-AWESOME (tm Ryan Gordon) packing using stb_rect_pack.h. If +// stb_rect_pack.h isn't available, it uses the BakeFontBitmap strategy. + +STBTT_DEF int stbtt_PackBegin(stbtt_pack_context *spc, unsigned char *pixels, int pw, int ph, int stride_in_bytes, int padding, void *alloc_context) +{ + stbrp_context *context = (stbrp_context *) STBTT_malloc(sizeof(*context) ,alloc_context); + int num_nodes = pw - padding; + stbrp_node *nodes = (stbrp_node *) STBTT_malloc(sizeof(*nodes ) * num_nodes,alloc_context); + + if (context == NULL || nodes == NULL) { + if (context != NULL) STBTT_free(context, alloc_context); + if (nodes != NULL) STBTT_free(nodes , alloc_context); + return 0; + } + + spc->user_allocator_context = alloc_context; + spc->width = pw; + spc->height = ph; + spc->pixels = pixels; + spc->pack_info = context; + spc->nodes = nodes; + spc->padding = padding; + spc->stride_in_bytes = stride_in_bytes != 0 ? stride_in_bytes : pw; + spc->h_oversample = 1; + spc->v_oversample = 1; + spc->skip_missing = 0; + + stbrp_init_target(context, pw-padding, ph-padding, nodes, num_nodes); + + if (pixels) + STBTT_memset(pixels, 0, pw*ph); // background of 0 around pixels + + return 1; +} + +STBTT_DEF void stbtt_PackEnd (stbtt_pack_context *spc) +{ + STBTT_free(spc->nodes , spc->user_allocator_context); + STBTT_free(spc->pack_info, spc->user_allocator_context); +} + +STBTT_DEF void stbtt_PackSetOversampling(stbtt_pack_context *spc, unsigned int h_oversample, unsigned int v_oversample) +{ + STBTT_assert(h_oversample <= STBTT_MAX_OVERSAMPLE); + STBTT_assert(v_oversample <= STBTT_MAX_OVERSAMPLE); + if (h_oversample <= STBTT_MAX_OVERSAMPLE) + spc->h_oversample = h_oversample; + if (v_oversample <= STBTT_MAX_OVERSAMPLE) + spc->v_oversample = v_oversample; +} + +STBTT_DEF void stbtt_PackSetSkipMissingCodepoints(stbtt_pack_context *spc, int skip) +{ + spc->skip_missing = skip; +} + +#define STBTT__OVER_MASK (STBTT_MAX_OVERSAMPLE-1) + +static void stbtt__h_prefilter(unsigned char *pixels, int w, int h, int stride_in_bytes, unsigned int kernel_width) +{ + unsigned char buffer[STBTT_MAX_OVERSAMPLE]; + int safe_w = w - kernel_width; + int j; + STBTT_memset(buffer, 0, STBTT_MAX_OVERSAMPLE); // suppress bogus warning from VS2013 -analyze + for (j=0; j < h; ++j) { + int i; + unsigned int total; + STBTT_memset(buffer, 0, kernel_width); + + total = 0; + + // make kernel_width a constant in common cases so compiler can optimize out the divide + switch (kernel_width) { + case 2: + for (i=0; i <= safe_w; ++i) { + total += pixels[i] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i]; + pixels[i] = (unsigned char) (total / 2); + } + break; + case 3: + for (i=0; i <= safe_w; ++i) { + total += pixels[i] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i]; + pixels[i] = (unsigned char) (total / 3); + } + break; + case 4: + for (i=0; i <= safe_w; ++i) { + total += pixels[i] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i]; + pixels[i] = (unsigned char) (total / 4); + } + break; + case 5: + for (i=0; i <= safe_w; ++i) { + total += pixels[i] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i]; + pixels[i] = (unsigned char) (total / 5); + } + break; + default: + for (i=0; i <= safe_w; ++i) { + total += pixels[i] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i]; + pixels[i] = (unsigned char) (total / kernel_width); + } + break; + } + + for (; i < w; ++i) { + STBTT_assert(pixels[i] == 0); + total -= buffer[i & STBTT__OVER_MASK]; + pixels[i] = (unsigned char) (total / kernel_width); + } + + pixels += stride_in_bytes; + } +} + +static void stbtt__v_prefilter(unsigned char *pixels, int w, int h, int stride_in_bytes, unsigned int kernel_width) +{ + unsigned char buffer[STBTT_MAX_OVERSAMPLE]; + int safe_h = h - kernel_width; + int j; + STBTT_memset(buffer, 0, STBTT_MAX_OVERSAMPLE); // suppress bogus warning from VS2013 -analyze + for (j=0; j < w; ++j) { + int i; + unsigned int total; + STBTT_memset(buffer, 0, kernel_width); + + total = 0; + + // make kernel_width a constant in common cases so compiler can optimize out the divide + switch (kernel_width) { + case 2: + for (i=0; i <= safe_h; ++i) { + total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes]; + pixels[i*stride_in_bytes] = (unsigned char) (total / 2); + } + break; + case 3: + for (i=0; i <= safe_h; ++i) { + total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes]; + pixels[i*stride_in_bytes] = (unsigned char) (total / 3); + } + break; + case 4: + for (i=0; i <= safe_h; ++i) { + total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes]; + pixels[i*stride_in_bytes] = (unsigned char) (total / 4); + } + break; + case 5: + for (i=0; i <= safe_h; ++i) { + total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes]; + pixels[i*stride_in_bytes] = (unsigned char) (total / 5); + } + break; + default: + for (i=0; i <= safe_h; ++i) { + total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes]; + pixels[i*stride_in_bytes] = (unsigned char) (total / kernel_width); + } + break; + } + + for (; i < h; ++i) { + STBTT_assert(pixels[i*stride_in_bytes] == 0); + total -= buffer[i & STBTT__OVER_MASK]; + pixels[i*stride_in_bytes] = (unsigned char) (total / kernel_width); + } + + pixels += 1; + } +} + +static float stbtt__oversample_shift(int oversample) +{ + if (!oversample) + return 0.0f; + + // The prefilter is a box filter of width "oversample", + // which shifts phase by (oversample - 1)/2 pixels in + // oversampled space. We want to shift in the opposite + // direction to counter this. + return (float)-(oversample - 1) / (2.0f * (float)oversample); +} + +// rects array must be big enough to accommodate all characters in the given ranges +STBTT_DEF int stbtt_PackFontRangesGatherRects(stbtt_pack_context *spc, const stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects) +{ + int i,j,k; + int missing_glyph_added = 0; + + k=0; + for (i=0; i < num_ranges; ++i) { + float fh = ranges[i].font_size; + float scale = fh > 0 ? stbtt_ScaleForPixelHeight(info, fh) : stbtt_ScaleForMappingEmToPixels(info, -fh); + ranges[i].h_oversample = (unsigned char) spc->h_oversample; + ranges[i].v_oversample = (unsigned char) spc->v_oversample; + for (j=0; j < ranges[i].num_chars; ++j) { + int x0,y0,x1,y1; + int codepoint = ranges[i].array_of_unicode_codepoints == NULL ? ranges[i].first_unicode_codepoint_in_range + j : ranges[i].array_of_unicode_codepoints[j]; + int glyph = stbtt_FindGlyphIndex(info, codepoint); + if (glyph == 0 && (spc->skip_missing || missing_glyph_added)) { + rects[k].w = rects[k].h = 0; + } else { + stbtt_GetGlyphBitmapBoxSubpixel(info,glyph, + scale * spc->h_oversample, + scale * spc->v_oversample, + 0,0, + &x0,&y0,&x1,&y1); + rects[k].w = (stbrp_coord) (x1-x0 + spc->padding + spc->h_oversample-1); + rects[k].h = (stbrp_coord) (y1-y0 + spc->padding + spc->v_oversample-1); + if (glyph == 0) + missing_glyph_added = 1; + } + ++k; + } + } + + return k; +} + +STBTT_DEF void stbtt_MakeGlyphBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int prefilter_x, int prefilter_y, float *sub_x, float *sub_y, int glyph) +{ + stbtt_MakeGlyphBitmapSubpixel(info, + output, + out_w - (prefilter_x - 1), + out_h - (prefilter_y - 1), + out_stride, + scale_x, + scale_y, + shift_x, + shift_y, + glyph); + + if (prefilter_x > 1) + stbtt__h_prefilter(output, out_w, out_h, out_stride, prefilter_x); + + if (prefilter_y > 1) + stbtt__v_prefilter(output, out_w, out_h, out_stride, prefilter_y); + + *sub_x = stbtt__oversample_shift(prefilter_x); + *sub_y = stbtt__oversample_shift(prefilter_y); +} + +// rects array must be big enough to accommodate all characters in the given ranges +STBTT_DEF int stbtt_PackFontRangesRenderIntoRects(stbtt_pack_context *spc, const stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects) +{ + int i,j,k, missing_glyph = -1, return_value = 1; + + // save current values + int old_h_over = spc->h_oversample; + int old_v_over = spc->v_oversample; + + k = 0; + for (i=0; i < num_ranges; ++i) { + float fh = ranges[i].font_size; + float scale = fh > 0 ? stbtt_ScaleForPixelHeight(info, fh) : stbtt_ScaleForMappingEmToPixels(info, -fh); + float recip_h,recip_v,sub_x,sub_y; + spc->h_oversample = ranges[i].h_oversample; + spc->v_oversample = ranges[i].v_oversample; + recip_h = 1.0f / spc->h_oversample; + recip_v = 1.0f / spc->v_oversample; + sub_x = stbtt__oversample_shift(spc->h_oversample); + sub_y = stbtt__oversample_shift(spc->v_oversample); + for (j=0; j < ranges[i].num_chars; ++j) { + stbrp_rect *r = &rects[k]; + if (r->was_packed && r->w != 0 && r->h != 0) { + stbtt_packedchar *bc = &ranges[i].chardata_for_range[j]; + int advance, lsb, x0,y0,x1,y1; + int codepoint = ranges[i].array_of_unicode_codepoints == NULL ? ranges[i].first_unicode_codepoint_in_range + j : ranges[i].array_of_unicode_codepoints[j]; + int glyph = stbtt_FindGlyphIndex(info, codepoint); + stbrp_coord pad = (stbrp_coord) spc->padding; + + // pad on left and top + r->x += pad; + r->y += pad; + r->w -= pad; + r->h -= pad; + stbtt_GetGlyphHMetrics(info, glyph, &advance, &lsb); + stbtt_GetGlyphBitmapBox(info, glyph, + scale * spc->h_oversample, + scale * spc->v_oversample, + &x0,&y0,&x1,&y1); + stbtt_MakeGlyphBitmapSubpixel(info, + spc->pixels + r->x + r->y*spc->stride_in_bytes, + r->w - spc->h_oversample+1, + r->h - spc->v_oversample+1, + spc->stride_in_bytes, + scale * spc->h_oversample, + scale * spc->v_oversample, + 0,0, + glyph); + + if (spc->h_oversample > 1) + stbtt__h_prefilter(spc->pixels + r->x + r->y*spc->stride_in_bytes, + r->w, r->h, spc->stride_in_bytes, + spc->h_oversample); + + if (spc->v_oversample > 1) + stbtt__v_prefilter(spc->pixels + r->x + r->y*spc->stride_in_bytes, + r->w, r->h, spc->stride_in_bytes, + spc->v_oversample); + + bc->x0 = (stbtt_int16) r->x; + bc->y0 = (stbtt_int16) r->y; + bc->x1 = (stbtt_int16) (r->x + r->w); + bc->y1 = (stbtt_int16) (r->y + r->h); + bc->xadvance = scale * advance; + bc->xoff = (float) x0 * recip_h + sub_x; + bc->yoff = (float) y0 * recip_v + sub_y; + bc->xoff2 = (x0 + r->w) * recip_h + sub_x; + bc->yoff2 = (y0 + r->h) * recip_v + sub_y; + + if (glyph == 0) + missing_glyph = j; + } else if (spc->skip_missing) { + return_value = 0; + } else if (r->was_packed && r->w == 0 && r->h == 0 && missing_glyph >= 0) { + ranges[i].chardata_for_range[j] = ranges[i].chardata_for_range[missing_glyph]; + } else { + return_value = 0; // if any fail, report failure + } + + ++k; + } + } + + // restore original values + spc->h_oversample = old_h_over; + spc->v_oversample = old_v_over; + + return return_value; +} + +STBTT_DEF void stbtt_PackFontRangesPackRects(stbtt_pack_context *spc, stbrp_rect *rects, int num_rects) +{ + stbrp_pack_rects((stbrp_context *) spc->pack_info, rects, num_rects); +} + +STBTT_DEF int stbtt_PackFontRanges(stbtt_pack_context *spc, const unsigned char *fontdata, int font_index, stbtt_pack_range *ranges, int num_ranges) +{ + stbtt_fontinfo info; + int i, j, n, return_value; // [DEAR IMGUI] removed = 1; + //stbrp_context *context = (stbrp_context *) spc->pack_info; + stbrp_rect *rects; + + // flag all characters as NOT packed + for (i=0; i < num_ranges; ++i) + for (j=0; j < ranges[i].num_chars; ++j) + ranges[i].chardata_for_range[j].x0 = + ranges[i].chardata_for_range[j].y0 = + ranges[i].chardata_for_range[j].x1 = + ranges[i].chardata_for_range[j].y1 = 0; + + n = 0; + for (i=0; i < num_ranges; ++i) + n += ranges[i].num_chars; + + rects = (stbrp_rect *) STBTT_malloc(sizeof(*rects) * n, spc->user_allocator_context); + if (rects == NULL) + return 0; + + info.userdata = spc->user_allocator_context; + stbtt_InitFont(&info, fontdata, stbtt_GetFontOffsetForIndex(fontdata,font_index)); + + n = stbtt_PackFontRangesGatherRects(spc, &info, ranges, num_ranges, rects); + + stbtt_PackFontRangesPackRects(spc, rects, n); + + return_value = stbtt_PackFontRangesRenderIntoRects(spc, &info, ranges, num_ranges, rects); + + STBTT_free(rects, spc->user_allocator_context); + return return_value; +} + +STBTT_DEF int stbtt_PackFontRange(stbtt_pack_context *spc, const unsigned char *fontdata, int font_index, float font_size, + int first_unicode_codepoint_in_range, int num_chars_in_range, stbtt_packedchar *chardata_for_range) +{ + stbtt_pack_range range; + range.first_unicode_codepoint_in_range = first_unicode_codepoint_in_range; + range.array_of_unicode_codepoints = NULL; + range.num_chars = num_chars_in_range; + range.chardata_for_range = chardata_for_range; + range.font_size = font_size; + return stbtt_PackFontRanges(spc, fontdata, font_index, &range, 1); +} + +STBTT_DEF void stbtt_GetScaledFontVMetrics(const unsigned char *fontdata, int index, float size, float *ascent, float *descent, float *lineGap) +{ + int i_ascent, i_descent, i_lineGap; + float scale; + stbtt_fontinfo info; + stbtt_InitFont(&info, fontdata, stbtt_GetFontOffsetForIndex(fontdata, index)); + scale = size > 0 ? stbtt_ScaleForPixelHeight(&info, size) : stbtt_ScaleForMappingEmToPixels(&info, -size); + stbtt_GetFontVMetrics(&info, &i_ascent, &i_descent, &i_lineGap); + *ascent = (float) i_ascent * scale; + *descent = (float) i_descent * scale; + *lineGap = (float) i_lineGap * scale; +} + +STBTT_DEF void stbtt_GetPackedQuad(const stbtt_packedchar *chardata, int pw, int ph, int char_index, float *xpos, float *ypos, stbtt_aligned_quad *q, int align_to_integer) +{ + float ipw = 1.0f / pw, iph = 1.0f / ph; + const stbtt_packedchar *b = chardata + char_index; + + if (align_to_integer) { + float x = (float) STBTT_ifloor((*xpos + b->xoff) + 0.5f); + float y = (float) STBTT_ifloor((*ypos + b->yoff) + 0.5f); + q->x0 = x; + q->y0 = y; + q->x1 = x + b->xoff2 - b->xoff; + q->y1 = y + b->yoff2 - b->yoff; + } else { + q->x0 = *xpos + b->xoff; + q->y0 = *ypos + b->yoff; + q->x1 = *xpos + b->xoff2; + q->y1 = *ypos + b->yoff2; + } + + q->s0 = b->x0 * ipw; + q->t0 = b->y0 * iph; + q->s1 = b->x1 * ipw; + q->t1 = b->y1 * iph; + + *xpos += b->xadvance; +} + +////////////////////////////////////////////////////////////////////////////// +// +// sdf computation +// + +#define STBTT_min(a,b) ((a) < (b) ? (a) : (b)) +#define STBTT_max(a,b) ((a) < (b) ? (b) : (a)) + +static int stbtt__ray_intersect_bezier(float orig[2], float ray[2], float q0[2], float q1[2], float q2[2], float hits[2][2]) +{ + float q0perp = q0[1]*ray[0] - q0[0]*ray[1]; + float q1perp = q1[1]*ray[0] - q1[0]*ray[1]; + float q2perp = q2[1]*ray[0] - q2[0]*ray[1]; + float roperp = orig[1]*ray[0] - orig[0]*ray[1]; + + float a = q0perp - 2*q1perp + q2perp; + float b = q1perp - q0perp; + float c = q0perp - roperp; + + float s0 = 0., s1 = 0.; + int num_s = 0; + + if (a != 0.0) { + float discr = b*b - a*c; + if (discr > 0.0) { + float rcpna = -1 / a; + float d = (float) STBTT_sqrt(discr); + s0 = (b+d) * rcpna; + s1 = (b-d) * rcpna; + if (s0 >= 0.0 && s0 <= 1.0) + num_s = 1; + if (d > 0.0 && s1 >= 0.0 && s1 <= 1.0) { + if (num_s == 0) s0 = s1; + ++num_s; + } + } + } else { + // 2*b*s + c = 0 + // s = -c / (2*b) + s0 = c / (-2 * b); + if (s0 >= 0.0 && s0 <= 1.0) + num_s = 1; + } + + if (num_s == 0) + return 0; + else { + float rcp_len2 = 1 / (ray[0]*ray[0] + ray[1]*ray[1]); + float rayn_x = ray[0] * rcp_len2, rayn_y = ray[1] * rcp_len2; + + float q0d = q0[0]*rayn_x + q0[1]*rayn_y; + float q1d = q1[0]*rayn_x + q1[1]*rayn_y; + float q2d = q2[0]*rayn_x + q2[1]*rayn_y; + float rod = orig[0]*rayn_x + orig[1]*rayn_y; + + float q10d = q1d - q0d; + float q20d = q2d - q0d; + float q0rd = q0d - rod; + + hits[0][0] = q0rd + s0*(2.0f - 2.0f*s0)*q10d + s0*s0*q20d; + hits[0][1] = a*s0+b; + + if (num_s > 1) { + hits[1][0] = q0rd + s1*(2.0f - 2.0f*s1)*q10d + s1*s1*q20d; + hits[1][1] = a*s1+b; + return 2; + } else { + return 1; + } + } +} + +static int equal(float *a, float *b) +{ + return (a[0] == b[0] && a[1] == b[1]); +} + +static int stbtt__compute_crossings_x(float x, float y, int nverts, stbtt_vertex *verts) +{ + int i; + float orig[2], ray[2] = { 1, 0 }; + float y_frac; + int winding = 0; + + // make sure y never passes through a vertex of the shape + y_frac = (float) STBTT_fmod(y, 1.0f); + if (y_frac < 0.01f) + y += 0.01f; + else if (y_frac > 0.99f) + y -= 0.01f; + + orig[0] = x; + orig[1] = y; + + // test a ray from (-infinity,y) to (x,y) + for (i=0; i < nverts; ++i) { + if (verts[i].type == STBTT_vline) { + int x0 = (int) verts[i-1].x, y0 = (int) verts[i-1].y; + int x1 = (int) verts[i ].x, y1 = (int) verts[i ].y; + if (y > STBTT_min(y0,y1) && y < STBTT_max(y0,y1) && x > STBTT_min(x0,x1)) { + float x_inter = (y - y0) / (y1 - y0) * (x1-x0) + x0; + if (x_inter < x) + winding += (y0 < y1) ? 1 : -1; + } + } + if (verts[i].type == STBTT_vcurve) { + int x0 = (int) verts[i-1].x , y0 = (int) verts[i-1].y ; + int x1 = (int) verts[i ].cx, y1 = (int) verts[i ].cy; + int x2 = (int) verts[i ].x , y2 = (int) verts[i ].y ; + int ax = STBTT_min(x0,STBTT_min(x1,x2)), ay = STBTT_min(y0,STBTT_min(y1,y2)); + int by = STBTT_max(y0,STBTT_max(y1,y2)); + if (y > ay && y < by && x > ax) { + float q0[2],q1[2],q2[2]; + float hits[2][2]; + q0[0] = (float)x0; + q0[1] = (float)y0; + q1[0] = (float)x1; + q1[1] = (float)y1; + q2[0] = (float)x2; + q2[1] = (float)y2; + if (equal(q0,q1) || equal(q1,q2)) { + x0 = (int)verts[i-1].x; + y0 = (int)verts[i-1].y; + x1 = (int)verts[i ].x; + y1 = (int)verts[i ].y; + if (y > STBTT_min(y0,y1) && y < STBTT_max(y0,y1) && x > STBTT_min(x0,x1)) { + float x_inter = (y - y0) / (y1 - y0) * (x1-x0) + x0; + if (x_inter < x) + winding += (y0 < y1) ? 1 : -1; + } + } else { + int num_hits = stbtt__ray_intersect_bezier(orig, ray, q0, q1, q2, hits); + if (num_hits >= 1) + if (hits[0][0] < 0) + winding += (hits[0][1] < 0 ? -1 : 1); + if (num_hits >= 2) + if (hits[1][0] < 0) + winding += (hits[1][1] < 0 ? -1 : 1); + } + } + } + } + return winding; +} + +static float stbtt__cuberoot( float x ) +{ + if (x<0) + return -(float) STBTT_pow(-x,1.0f/3.0f); + else + return (float) STBTT_pow( x,1.0f/3.0f); +} + +// x^3 + a*x^2 + b*x + c = 0 +static int stbtt__solve_cubic(float a, float b, float c, float* r) +{ + float s = -a / 3; + float p = b - a*a / 3; + float q = a * (2*a*a - 9*b) / 27 + c; + float p3 = p*p*p; + float d = q*q + 4*p3 / 27; + if (d >= 0) { + float z = (float) STBTT_sqrt(d); + float u = (-q + z) / 2; + float v = (-q - z) / 2; + u = stbtt__cuberoot(u); + v = stbtt__cuberoot(v); + r[0] = s + u + v; + return 1; + } else { + float u = (float) STBTT_sqrt(-p/3); + float v = (float) STBTT_acos(-STBTT_sqrt(-27/p3) * q / 2) / 3; // p3 must be negative, since d is negative + float m = (float) STBTT_cos(v); + float n = (float) STBTT_cos(v-3.141592/2)*1.732050808f; + r[0] = s + u * 2 * m; + r[1] = s - u * (m + n); + r[2] = s - u * (m - n); + + //STBTT_assert( STBTT_fabs(((r[0]+a)*r[0]+b)*r[0]+c) < 0.05f); // these asserts may not be safe at all scales, though they're in bezier t parameter units so maybe? + //STBTT_assert( STBTT_fabs(((r[1]+a)*r[1]+b)*r[1]+c) < 0.05f); + //STBTT_assert( STBTT_fabs(((r[2]+a)*r[2]+b)*r[2]+c) < 0.05f); + return 3; + } +} + +STBTT_DEF unsigned char * stbtt_GetGlyphSDF(const stbtt_fontinfo *info, float scale, int glyph, int padding, unsigned char onedge_value, float pixel_dist_scale, int *width, int *height, int *xoff, int *yoff) +{ + float scale_x = scale, scale_y = scale; + int ix0,iy0,ix1,iy1; + int w,h; + unsigned char *data; + + if (scale == 0) return NULL; + + stbtt_GetGlyphBitmapBoxSubpixel(info, glyph, scale, scale, 0.0f,0.0f, &ix0,&iy0,&ix1,&iy1); + + // if empty, return NULL + if (ix0 == ix1 || iy0 == iy1) + return NULL; + + ix0 -= padding; + iy0 -= padding; + ix1 += padding; + iy1 += padding; + + w = (ix1 - ix0); + h = (iy1 - iy0); + + if (width ) *width = w; + if (height) *height = h; + if (xoff ) *xoff = ix0; + if (yoff ) *yoff = iy0; + + // invert for y-downwards bitmaps + scale_y = -scale_y; + + { + int x,y,i,j; + float *precompute; + stbtt_vertex *verts; + int num_verts = stbtt_GetGlyphShape(info, glyph, &verts); + data = (unsigned char *) STBTT_malloc(w * h, info->userdata); + precompute = (float *) STBTT_malloc(num_verts * sizeof(float), info->userdata); + + for (i=0,j=num_verts-1; i < num_verts; j=i++) { + if (verts[i].type == STBTT_vline) { + float x0 = verts[i].x*scale_x, y0 = verts[i].y*scale_y; + float x1 = verts[j].x*scale_x, y1 = verts[j].y*scale_y; + float dist = (float) STBTT_sqrt((x1-x0)*(x1-x0) + (y1-y0)*(y1-y0)); + precompute[i] = (dist == 0) ? 0.0f : 1.0f / dist; + } else if (verts[i].type == STBTT_vcurve) { + float x2 = verts[j].x *scale_x, y2 = verts[j].y *scale_y; + float x1 = verts[i].cx*scale_x, y1 = verts[i].cy*scale_y; + float x0 = verts[i].x *scale_x, y0 = verts[i].y *scale_y; + float bx = x0 - 2*x1 + x2, by = y0 - 2*y1 + y2; + float len2 = bx*bx + by*by; + if (len2 != 0.0f) + precompute[i] = 1.0f / (bx*bx + by*by); + else + precompute[i] = 0.0f; + } else + precompute[i] = 0.0f; + } + + for (y=iy0; y < iy1; ++y) { + for (x=ix0; x < ix1; ++x) { + float val; + float min_dist = 999999.0f; + float sx = (float) x + 0.5f; + float sy = (float) y + 0.5f; + float x_gspace = (sx / scale_x); + float y_gspace = (sy / scale_y); + + int winding = stbtt__compute_crossings_x(x_gspace, y_gspace, num_verts, verts); // @OPTIMIZE: this could just be a rasterization, but needs to be line vs. non-tesselated curves so a new path + + for (i=0; i < num_verts; ++i) { + float x0 = verts[i].x*scale_x, y0 = verts[i].y*scale_y; + + if (verts[i].type == STBTT_vline && precompute[i] != 0.0f) { + float x1 = verts[i-1].x*scale_x, y1 = verts[i-1].y*scale_y; + + float dist,dist2 = (x0-sx)*(x0-sx) + (y0-sy)*(y0-sy); + if (dist2 < min_dist*min_dist) + min_dist = (float) STBTT_sqrt(dist2); + + // coarse culling against bbox + //if (sx > STBTT_min(x0,x1)-min_dist && sx < STBTT_max(x0,x1)+min_dist && + // sy > STBTT_min(y0,y1)-min_dist && sy < STBTT_max(y0,y1)+min_dist) + dist = (float) STBTT_fabs((x1-x0)*(y0-sy) - (y1-y0)*(x0-sx)) * precompute[i]; + STBTT_assert(i != 0); + if (dist < min_dist) { + // check position along line + // x' = x0 + t*(x1-x0), y' = y0 + t*(y1-y0) + // minimize (x'-sx)*(x'-sx)+(y'-sy)*(y'-sy) + float dx = x1-x0, dy = y1-y0; + float px = x0-sx, py = y0-sy; + // minimize (px+t*dx)^2 + (py+t*dy)^2 = px*px + 2*px*dx*t + t^2*dx*dx + py*py + 2*py*dy*t + t^2*dy*dy + // derivative: 2*px*dx + 2*py*dy + (2*dx*dx+2*dy*dy)*t, set to 0 and solve + float t = -(px*dx + py*dy) / (dx*dx + dy*dy); + if (t >= 0.0f && t <= 1.0f) + min_dist = dist; + } + } else if (verts[i].type == STBTT_vcurve) { + float x2 = verts[i-1].x *scale_x, y2 = verts[i-1].y *scale_y; + float x1 = verts[i ].cx*scale_x, y1 = verts[i ].cy*scale_y; + float box_x0 = STBTT_min(STBTT_min(x0,x1),x2); + float box_y0 = STBTT_min(STBTT_min(y0,y1),y2); + float box_x1 = STBTT_max(STBTT_max(x0,x1),x2); + float box_y1 = STBTT_max(STBTT_max(y0,y1),y2); + // coarse culling against bbox to avoid computing cubic unnecessarily + if (sx > box_x0-min_dist && sx < box_x1+min_dist && sy > box_y0-min_dist && sy < box_y1+min_dist) { + int num=0; + float ax = x1-x0, ay = y1-y0; + float bx = x0 - 2*x1 + x2, by = y0 - 2*y1 + y2; + float mx = x0 - sx, my = y0 - sy; + float res[3] = {0.f,0.f,0.f}; + float px,py,t,it,dist2; + float a_inv = precompute[i]; + if (a_inv == 0.0) { // if a_inv is 0, it's 2nd degree so use quadratic formula + float a = 3*(ax*bx + ay*by); + float b = 2*(ax*ax + ay*ay) + (mx*bx+my*by); + float c = mx*ax+my*ay; + if (a == 0.0) { // if a is 0, it's linear + if (b != 0.0) { + res[num++] = -c/b; + } + } else { + float discriminant = b*b - 4*a*c; + if (discriminant < 0) + num = 0; + else { + float root = (float) STBTT_sqrt(discriminant); + res[0] = (-b - root)/(2*a); + res[1] = (-b + root)/(2*a); + num = 2; // don't bother distinguishing 1-solution case, as code below will still work + } + } + } else { + float b = 3*(ax*bx + ay*by) * a_inv; // could precompute this as it doesn't depend on sample point + float c = (2*(ax*ax + ay*ay) + (mx*bx+my*by)) * a_inv; + float d = (mx*ax+my*ay) * a_inv; + num = stbtt__solve_cubic(b, c, d, res); + } + dist2 = (x0-sx)*(x0-sx) + (y0-sy)*(y0-sy); + if (dist2 < min_dist*min_dist) + min_dist = (float) STBTT_sqrt(dist2); + + if (num >= 1 && res[0] >= 0.0f && res[0] <= 1.0f) { + t = res[0], it = 1.0f - t; + px = it*it*x0 + 2*t*it*x1 + t*t*x2; + py = it*it*y0 + 2*t*it*y1 + t*t*y2; + dist2 = (px-sx)*(px-sx) + (py-sy)*(py-sy); + if (dist2 < min_dist * min_dist) + min_dist = (float) STBTT_sqrt(dist2); + } + if (num >= 2 && res[1] >= 0.0f && res[1] <= 1.0f) { + t = res[1], it = 1.0f - t; + px = it*it*x0 + 2*t*it*x1 + t*t*x2; + py = it*it*y0 + 2*t*it*y1 + t*t*y2; + dist2 = (px-sx)*(px-sx) + (py-sy)*(py-sy); + if (dist2 < min_dist * min_dist) + min_dist = (float) STBTT_sqrt(dist2); + } + if (num >= 3 && res[2] >= 0.0f && res[2] <= 1.0f) { + t = res[2], it = 1.0f - t; + px = it*it*x0 + 2*t*it*x1 + t*t*x2; + py = it*it*y0 + 2*t*it*y1 + t*t*y2; + dist2 = (px-sx)*(px-sx) + (py-sy)*(py-sy); + if (dist2 < min_dist * min_dist) + min_dist = (float) STBTT_sqrt(dist2); + } + } + } + } + if (winding == 0) + min_dist = -min_dist; // if outside the shape, value is negative + val = onedge_value + pixel_dist_scale * min_dist; + if (val < 0) + val = 0; + else if (val > 255) + val = 255; + data[(y-iy0)*w+(x-ix0)] = (unsigned char) val; + } + } + STBTT_free(precompute, info->userdata); + STBTT_free(verts, info->userdata); + } + return data; +} + +STBTT_DEF unsigned char * stbtt_GetCodepointSDF(const stbtt_fontinfo *info, float scale, int codepoint, int padding, unsigned char onedge_value, float pixel_dist_scale, int *width, int *height, int *xoff, int *yoff) +{ + return stbtt_GetGlyphSDF(info, scale, stbtt_FindGlyphIndex(info, codepoint), padding, onedge_value, pixel_dist_scale, width, height, xoff, yoff); +} + +STBTT_DEF void stbtt_FreeSDF(unsigned char *bitmap, void *userdata) +{ + STBTT_free(bitmap, userdata); +} + +////////////////////////////////////////////////////////////////////////////// +// +// font name matching -- recommended not to use this +// + +// check if a utf8 string contains a prefix which is the utf16 string; if so return length of matching utf8 string +static stbtt_int32 stbtt__CompareUTF8toUTF16_bigendian_prefix(stbtt_uint8 *s1, stbtt_int32 len1, stbtt_uint8 *s2, stbtt_int32 len2) +{ + stbtt_int32 i=0; + + // convert utf16 to utf8 and compare the results while converting + while (len2) { + stbtt_uint16 ch = s2[0]*256 + s2[1]; + if (ch < 0x80) { + if (i >= len1) return -1; + if (s1[i++] != ch) return -1; + } else if (ch < 0x800) { + if (i+1 >= len1) return -1; + if (s1[i++] != 0xc0 + (ch >> 6)) return -1; + if (s1[i++] != 0x80 + (ch & 0x3f)) return -1; + } else if (ch >= 0xd800 && ch < 0xdc00) { + stbtt_uint32 c; + stbtt_uint16 ch2 = s2[2]*256 + s2[3]; + if (i+3 >= len1) return -1; + c = ((ch - 0xd800) << 10) + (ch2 - 0xdc00) + 0x10000; + if (s1[i++] != 0xf0 + (c >> 18)) return -1; + if (s1[i++] != 0x80 + ((c >> 12) & 0x3f)) return -1; + if (s1[i++] != 0x80 + ((c >> 6) & 0x3f)) return -1; + if (s1[i++] != 0x80 + ((c ) & 0x3f)) return -1; + s2 += 2; // plus another 2 below + len2 -= 2; + } else if (ch >= 0xdc00 && ch < 0xe000) { + return -1; + } else { + if (i+2 >= len1) return -1; + if (s1[i++] != 0xe0 + (ch >> 12)) return -1; + if (s1[i++] != 0x80 + ((ch >> 6) & 0x3f)) return -1; + if (s1[i++] != 0x80 + ((ch ) & 0x3f)) return -1; + } + s2 += 2; + len2 -= 2; + } + return i; +} + +static int stbtt_CompareUTF8toUTF16_bigendian_internal(char *s1, int len1, char *s2, int len2) +{ + return len1 == stbtt__CompareUTF8toUTF16_bigendian_prefix((stbtt_uint8*) s1, len1, (stbtt_uint8*) s2, len2); +} + +// returns results in whatever encoding you request... but note that 2-byte encodings +// will be BIG-ENDIAN... use stbtt_CompareUTF8toUTF16_bigendian() to compare +STBTT_DEF const char *stbtt_GetFontNameString(const stbtt_fontinfo *font, int *length, int platformID, int encodingID, int languageID, int nameID) +{ + stbtt_int32 i,count,stringOffset; + stbtt_uint8 *fc = font->data; + stbtt_uint32 offset = font->fontstart; + stbtt_uint32 nm = stbtt__find_table(fc, offset, "name"); + if (!nm) return NULL; + + count = ttUSHORT(fc+nm+2); + stringOffset = nm + ttUSHORT(fc+nm+4); + for (i=0; i < count; ++i) { + stbtt_uint32 loc = nm + 6 + 12 * i; + if (platformID == ttUSHORT(fc+loc+0) && encodingID == ttUSHORT(fc+loc+2) + && languageID == ttUSHORT(fc+loc+4) && nameID == ttUSHORT(fc+loc+6)) { + *length = ttUSHORT(fc+loc+8); + return (const char *) (fc+stringOffset+ttUSHORT(fc+loc+10)); + } + } + return NULL; +} + +static int stbtt__matchpair(stbtt_uint8 *fc, stbtt_uint32 nm, stbtt_uint8 *name, stbtt_int32 nlen, stbtt_int32 target_id, stbtt_int32 next_id) +{ + stbtt_int32 i; + stbtt_int32 count = ttUSHORT(fc+nm+2); + stbtt_int32 stringOffset = nm + ttUSHORT(fc+nm+4); + + for (i=0; i < count; ++i) { + stbtt_uint32 loc = nm + 6 + 12 * i; + stbtt_int32 id = ttUSHORT(fc+loc+6); + if (id == target_id) { + // find the encoding + stbtt_int32 platform = ttUSHORT(fc+loc+0), encoding = ttUSHORT(fc+loc+2), language = ttUSHORT(fc+loc+4); + + // is this a Unicode encoding? + if (platform == 0 || (platform == 3 && encoding == 1) || (platform == 3 && encoding == 10)) { + stbtt_int32 slen = ttUSHORT(fc+loc+8); + stbtt_int32 off = ttUSHORT(fc+loc+10); + + // check if there's a prefix match + stbtt_int32 matchlen = stbtt__CompareUTF8toUTF16_bigendian_prefix(name, nlen, fc+stringOffset+off,slen); + if (matchlen >= 0) { + // check for target_id+1 immediately following, with same encoding & language + if (i+1 < count && ttUSHORT(fc+loc+12+6) == next_id && ttUSHORT(fc+loc+12) == platform && ttUSHORT(fc+loc+12+2) == encoding && ttUSHORT(fc+loc+12+4) == language) { + slen = ttUSHORT(fc+loc+12+8); + off = ttUSHORT(fc+loc+12+10); + if (slen == 0) { + if (matchlen == nlen) + return 1; + } else if (matchlen < nlen && name[matchlen] == ' ') { + ++matchlen; + if (stbtt_CompareUTF8toUTF16_bigendian_internal((char*) (name+matchlen), nlen-matchlen, (char*)(fc+stringOffset+off),slen)) + return 1; + } + } else { + // if nothing immediately following + if (matchlen == nlen) + return 1; + } + } + } + + // @TODO handle other encodings + } + } + return 0; +} + +static int stbtt__matches(stbtt_uint8 *fc, stbtt_uint32 offset, stbtt_uint8 *name, stbtt_int32 flags) +{ + stbtt_int32 nlen = (stbtt_int32) STBTT_strlen((char *) name); + stbtt_uint32 nm,hd; + if (!stbtt__isfont(fc+offset)) return 0; + + // check italics/bold/underline flags in macStyle... + if (flags) { + hd = stbtt__find_table(fc, offset, "head"); + if ((ttUSHORT(fc+hd+44) & 7) != (flags & 7)) return 0; + } + + nm = stbtt__find_table(fc, offset, "name"); + if (!nm) return 0; + + if (flags) { + // if we checked the macStyle flags, then just check the family and ignore the subfamily + if (stbtt__matchpair(fc, nm, name, nlen, 16, -1)) return 1; + if (stbtt__matchpair(fc, nm, name, nlen, 1, -1)) return 1; + if (stbtt__matchpair(fc, nm, name, nlen, 3, -1)) return 1; + } else { + if (stbtt__matchpair(fc, nm, name, nlen, 16, 17)) return 1; + if (stbtt__matchpair(fc, nm, name, nlen, 1, 2)) return 1; + if (stbtt__matchpair(fc, nm, name, nlen, 3, -1)) return 1; + } + + return 0; +} + +static int stbtt_FindMatchingFont_internal(unsigned char *font_collection, char *name_utf8, stbtt_int32 flags) +{ + stbtt_int32 i; + for (i=0;;++i) { + stbtt_int32 off = stbtt_GetFontOffsetForIndex(font_collection, i); + if (off < 0) return off; + if (stbtt__matches((stbtt_uint8 *) font_collection, off, (stbtt_uint8*) name_utf8, flags)) + return off; + } +} + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wcast-qual" +#endif + +STBTT_DEF int stbtt_BakeFontBitmap(const unsigned char *data, int offset, + float pixel_height, unsigned char *pixels, int pw, int ph, + int first_char, int num_chars, stbtt_bakedchar *chardata) +{ + return stbtt_BakeFontBitmap_internal((unsigned char *) data, offset, pixel_height, pixels, pw, ph, first_char, num_chars, chardata); +} + +STBTT_DEF int stbtt_GetFontOffsetForIndex(const unsigned char *data, int index) +{ + return stbtt_GetFontOffsetForIndex_internal((unsigned char *) data, index); +} + +STBTT_DEF int stbtt_GetNumberOfFonts(const unsigned char *data) +{ + return stbtt_GetNumberOfFonts_internal((unsigned char *) data); +} + +STBTT_DEF int stbtt_InitFont(stbtt_fontinfo *info, const unsigned char *data, int offset) +{ + return stbtt_InitFont_internal(info, (unsigned char *) data, offset); +} + +STBTT_DEF int stbtt_FindMatchingFont(const unsigned char *fontdata, const char *name, int flags) +{ + return stbtt_FindMatchingFont_internal((unsigned char *) fontdata, (char *) name, flags); +} + +STBTT_DEF int stbtt_CompareUTF8toUTF16_bigendian(const char *s1, int len1, const char *s2, int len2) +{ + return stbtt_CompareUTF8toUTF16_bigendian_internal((char *) s1, len1, (char *) s2, len2); +} + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#endif // STB_TRUETYPE_IMPLEMENTATION + + +// FULL VERSION HISTORY +// +// 1.25 (2021-07-11) many fixes +// 1.24 (2020-02-05) fix warning +// 1.23 (2020-02-02) query SVG data for glyphs; query whole kerning table (but only kern not GPOS) +// 1.22 (2019-08-11) minimize missing-glyph duplication; fix kerning if both 'GPOS' and 'kern' are defined +// 1.21 (2019-02-25) fix warning +// 1.20 (2019-02-07) PackFontRange skips missing codepoints; GetScaleFontVMetrics() +// 1.19 (2018-02-11) OpenType GPOS kerning (horizontal only), STBTT_fmod +// 1.18 (2018-01-29) add missing function +// 1.17 (2017-07-23) make more arguments const; doc fix +// 1.16 (2017-07-12) SDF support +// 1.15 (2017-03-03) make more arguments const +// 1.14 (2017-01-16) num-fonts-in-TTC function +// 1.13 (2017-01-02) support OpenType fonts, certain Apple fonts +// 1.12 (2016-10-25) suppress warnings about casting away const with -Wcast-qual +// 1.11 (2016-04-02) fix unused-variable warning +// 1.10 (2016-04-02) allow user-defined fabs() replacement +// fix memory leak if fontsize=0.0 +// fix warning from duplicate typedef +// 1.09 (2016-01-16) warning fix; avoid crash on outofmem; use alloc userdata for PackFontRanges +// 1.08 (2015-09-13) document stbtt_Rasterize(); fixes for vertical & horizontal edges +// 1.07 (2015-08-01) allow PackFontRanges to accept arrays of sparse codepoints; +// allow PackFontRanges to pack and render in separate phases; +// fix stbtt_GetFontOFfsetForIndex (never worked for non-0 input?); +// fixed an assert() bug in the new rasterizer +// replace assert() with STBTT_assert() in new rasterizer +// 1.06 (2015-07-14) performance improvements (~35% faster on x86 and x64 on test machine) +// also more precise AA rasterizer, except if shapes overlap +// remove need for STBTT_sort +// 1.05 (2015-04-15) fix misplaced definitions for STBTT_STATIC +// 1.04 (2015-04-15) typo in example +// 1.03 (2015-04-12) STBTT_STATIC, fix memory leak in new packing, various fixes +// 1.02 (2014-12-10) fix various warnings & compile issues w/ stb_rect_pack, C++ +// 1.01 (2014-12-08) fix subpixel position when oversampling to exactly match +// non-oversampled; STBTT_POINT_SIZE for packed case only +// 1.00 (2014-12-06) add new PackBegin etc. API, w/ support for oversampling +// 0.99 (2014-09-18) fix multiple bugs with subpixel rendering (ryg) +// 0.9 (2014-08-07) support certain mac/iOS fonts without an MS platformID +// 0.8b (2014-07-07) fix a warning +// 0.8 (2014-05-25) fix a few more warnings +// 0.7 (2013-09-25) bugfix: subpixel glyph bug fixed in 0.5 had come back +// 0.6c (2012-07-24) improve documentation +// 0.6b (2012-07-20) fix a few more warnings +// 0.6 (2012-07-17) fix warnings; added stbtt_ScaleForMappingEmToPixels, +// stbtt_GetFontBoundingBox, stbtt_IsGlyphEmpty +// 0.5 (2011-12-09) bugfixes: +// subpixel glyph renderer computed wrong bounding box +// first vertex of shape can be off-curve (FreeSans) +// 0.4b (2011-12-03) fixed an error in the font baking example +// 0.4 (2011-12-01) kerning, subpixel rendering (tor) +// bugfixes for: +// codepoint-to-glyph conversion using table fmt=12 +// codepoint-to-glyph conversion using table fmt=4 +// stbtt_GetBakedQuad with non-square texture (Zer) +// updated Hello World! sample to use kerning and subpixel +// fixed some warnings +// 0.3 (2009-06-24) cmap fmt=12, compound shapes (MM) +// userdata, malloc-from-userdata, non-zero fill (stb) +// 0.2 (2009-03-11) Fix unsigned/signed char warnings +// 0.1 (2009-03-09) First public release +// + +/* +------------------------------------------------------------------------------ +This software is available under 2 licenses -- choose whichever you prefer. +------------------------------------------------------------------------------ +ALTERNATIVE A - MIT License +Copyright (c) 2017 Sean Barrett +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +------------------------------------------------------------------------------ +ALTERNATIVE B - Public Domain (www.unlicense.org) +This is free and unencumbered software released into the public domain. +Anyone is free to copy, modify, publish, use, compile, sell, or distribute this +software, either in source code form or as a compiled binary, for any purpose, +commercial or non-commercial, and by any means. +In jurisdictions that recognize copyright laws, the author or authors of this +software dedicate any and all copyright interest in the software to the public +domain. We make this dedication for the benefit of the public at large and to +the detriment of our heirs and successors. We intend this dedication to be an +overt act of relinquishment in perpetuity of all present and future rights to +this software under copyright law. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +------------------------------------------------------------------------------ +*/ diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui_notify.h b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui_notify.h new file mode 100644 index 0000000..e5cb8c4 --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/imgui_notify.h @@ -0,0 +1,368 @@ +// imgui-notify by patrickcjk +// https://github.com/patrickcjk/imgui-notify + +#ifndef IMGUI_NOTIFY +#define IMGUI_NOTIFY + +#pragma once +#include +#include +#include +#include "../resources/fa_solid_900.h" +#include "../resources//font_awesome_5.h" + +#define NOTIFY_MAX_MSG_LENGTH 4096 // Max message content length +#define NOTIFY_PADDING_X 20.f // Bottom-left X padding +#define NOTIFY_PADDING_Y 20.f // Bottom-left Y padding +#define NOTIFY_PADDING_MESSAGE_Y 10.f // Padding Y between each message +#define NOTIFY_FADE_IN_OUT_TIME 150 // Fade in and out duration +#define NOTIFY_DEFAULT_DISMISS 3000 // Auto dismiss after X ms (default, applied only of no data provided in constructors) +#define NOTIFY_OPACITY 1.0f // 0-1 Toast opacity +#define NOTIFY_TOAST_FLAGS ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoDecoration | ImGuiWindowFlags_NoInputs | ImGuiWindowFlags_NoNav | ImGuiWindowFlags_NoBringToFrontOnFocus | ImGuiWindowFlags_NoFocusOnAppearing +// Comment out if you don't want any separator between title and content +#define NOTIFY_USE_SEPARATOR + +#define NOTIFY_INLINE CS_INLINE +#define NOTIFY_NULL_OR_EMPTY(str) (str == nullptr || CRT::StringLength(str) == 0) +#define NOTIFY_FORMAT(fn, format, ...) if (format) { va_list args; va_start(args, format); fn(format, args, ##__VA_ARGS__); va_end(args); } + +typedef int ImGuiToastType; +typedef int ImGuiToastPhase; +typedef int ImGuiToastPos; + +enum ImGuiToastType_ +{ + ImGuiToastType_None, + ImGuiToastType_Success, + ImGuiToastType_Warning, + ImGuiToastType_Error, + ImGuiToastType_Info, + ImGuiToastType_COUNT +}; + +enum ImGuiToastPhase_ +{ + ImGuiToastPhase_FadeIn, + ImGuiToastPhase_Wait, + ImGuiToastPhase_FadeOut, + ImGuiToastPhase_Expired, + ImGuiToastPhase_COUNT +}; + +enum ImGuiToastPos_ +{ + ImGuiToastPos_TopLeft, + ImGuiToastPos_TopCenter, + ImGuiToastPos_TopRight, + ImGuiToastPos_BottomLeft, + ImGuiToastPos_BottomCenter, + ImGuiToastPos_BottomRight, + ImGuiToastPos_Center, + ImGuiToastPos_COUNT +}; + +class ImGuiToast +{ +private: + ImGuiToastType type = ImGuiToastType_None; + char title[NOTIFY_MAX_MSG_LENGTH]; + char content[NOTIFY_MAX_MSG_LENGTH]; + int dismiss_time = NOTIFY_DEFAULT_DISMISS; + uint64_t creation_time = 0; + +private: + // Setters + + NOTIFY_INLINE auto set_title(const char* format, va_list args){ stbsp_vsnprintf(this->title, sizeof(this->title), format, args); } + + NOTIFY_INLINE auto set_content(const char* format, va_list args) { stbsp_vsnprintf(this->content, sizeof(this->content), format, args); } + +public: + + NOTIFY_INLINE auto set_title(const char* format, ...) -> void { NOTIFY_FORMAT(this->set_title, format); } + + NOTIFY_INLINE auto set_content(const char* format, ...) -> void { NOTIFY_FORMAT(this->set_content, format); } + + NOTIFY_INLINE auto set_type(const ImGuiToastType& type) -> void { IM_ASSERT(type < ImGuiToastType_COUNT); this->type = type; }; + +public: + // Getters + + NOTIFY_INLINE auto get_title() -> char* { return this->title; }; + + NOTIFY_INLINE auto get_default_title() -> const char* + { + if (!strlen(this->title)) + { + switch (this->type) + { + case ImGuiToastType_None: + return NULL; + case ImGuiToastType_Success: + return "Success"; + case ImGuiToastType_Warning: + return "Warning"; + case ImGuiToastType_Error: + return "Error"; + case ImGuiToastType_Info: + return "Info"; + default: + return NULL; + } + } + + return this->title; + }; + + NOTIFY_INLINE auto get_type() -> const ImGuiToastType& { return this->type; }; + + NOTIFY_INLINE auto get_color() -> const ImVec4 + { + switch (this->type) + { + case ImGuiToastType_None: + return { 255, 255, 255, 255 }; // White + case ImGuiToastType_Success: + return { 0, 255, 0, 255 }; // Green + case ImGuiToastType_Warning: + return { 255, 255, 0, 255 }; // Yellow + case ImGuiToastType_Error: + return { 255, 0, 0, 255 }; // Error + case ImGuiToastType_Info: + return { 0, 157, 255, 255 }; // Blue + default: + return { 255, 255, 255, 255 }; // White + } + } + + NOTIFY_INLINE auto get_icon() -> const char* + { + switch (this->type) + { + case ImGuiToastType_None: + return NULL; + case ImGuiToastType_Success: + return ICON_FA_CHECK_CIRCLE; + case ImGuiToastType_Warning: + return ICON_FA_EXCLAMATION_TRIANGLE; + case ImGuiToastType_Error: + return ICON_FA_TIMES_CIRCLE; + case ImGuiToastType_Info: + return ICON_FA_INFO_CIRCLE; + default: + return NULL; + } + } + + NOTIFY_INLINE auto get_content() -> char* { return this->content; }; + + NOTIFY_INLINE auto get_elapsed_time() { return get_tick_count() - this->creation_time; } + + NOTIFY_INLINE auto get_phase() -> const ImGuiToastPhase + { + const auto elapsed = get_elapsed_time(); + + if (elapsed > NOTIFY_FADE_IN_OUT_TIME + this->dismiss_time + NOTIFY_FADE_IN_OUT_TIME) + { + return ImGuiToastPhase_Expired; + } + else if (elapsed > NOTIFY_FADE_IN_OUT_TIME + this->dismiss_time) + { + return ImGuiToastPhase_FadeOut; + } + else if (elapsed > NOTIFY_FADE_IN_OUT_TIME) + { + return ImGuiToastPhase_Wait; + } + else + { + return ImGuiToastPhase_FadeIn; + } + } + + NOTIFY_INLINE auto get_fade_percent() -> const float + { + const auto phase = get_phase(); + const auto elapsed = get_elapsed_time(); + + if (phase == ImGuiToastPhase_FadeIn) + { + return ((float)elapsed / (float)NOTIFY_FADE_IN_OUT_TIME) * NOTIFY_OPACITY; + } + else if (phase == ImGuiToastPhase_FadeOut) + { + return (1.f - (((float)elapsed - (float)NOTIFY_FADE_IN_OUT_TIME - (float)this->dismiss_time) / (float)NOTIFY_FADE_IN_OUT_TIME)) * NOTIFY_OPACITY; + } + + return 1.f * NOTIFY_OPACITY; + } + + NOTIFY_INLINE static auto get_tick_count() -> const unsigned long long + { + using namespace std::chrono; + return duration_cast(steady_clock::now().time_since_epoch()).count(); + } + +public: + // Constructors + + ImGuiToast(ImGuiToastType type, int dismiss_time = NOTIFY_DEFAULT_DISMISS) + { + IM_ASSERT(type < ImGuiToastType_COUNT); + + this->type = type; + this->dismiss_time = dismiss_time; + this->creation_time = get_tick_count(); + + CRT::MemorySet(this->title, 0, sizeof(this->title)); + CRT::MemorySet(this->content, 0, sizeof(this->content)); + } + + ImGuiToast(ImGuiToastType type, const char* format, ...) : ImGuiToast(type) { NOTIFY_FORMAT(this->set_content, format); } + + ImGuiToast(ImGuiToastType type, int dismiss_time, const char* format, ...) : ImGuiToast(type, dismiss_time) { NOTIFY_FORMAT(this->set_content, format); } +}; + +namespace ImGui +{ + inline std::vector notifications; + + /// + /// Insert a new toast in the list + /// + NOTIFY_INLINE std::size_t InsertNotification(const ImGuiToast& toast) + { + notifications.push_back(toast); + return notifications.size() - 1U; + } + + /// + /// Remove a toast from the list by its index + /// + /// index of the toast to remove + NOTIFY_INLINE void RemoveNotification(int index) + { + notifications.erase(notifications.begin() + index); + } + + /// + /// Render toasts, call at the end of your rendering! + /// + NOTIFY_INLINE void RenderNotifications() + { + const auto vp_size = GetMainViewport()->Size; + + float height = 0.f; + + for (auto i = 0; i < notifications.size(); i++) + { + auto* current_toast = ¬ifications[i]; + + // Remove toast if expired + if (current_toast->get_phase() == ImGuiToastPhase_Expired) + { + RemoveNotification(i); + continue; + } + + // Get icon, title and other data + const auto icon = current_toast->get_icon(); + const auto title = current_toast->get_title(); + const auto content = current_toast->get_content(); + const auto default_title = current_toast->get_default_title(); + const auto opacity = current_toast->get_fade_percent(); // Get opacity based of the current phase + + // Window rendering + auto text_color = current_toast->get_color(); + text_color.w = opacity; + + // Generate new unique name for this toast + char window_name[50]{}; + snprintf(window_name, sizeof(window_name), "##TOAST%d", i); + + //PushStyleColor(ImGuiCol_Text, text_color); + SetNextWindowBgAlpha(opacity); + SetNextWindowPos(ImVec2(vp_size.x - NOTIFY_PADDING_X, vp_size.y - NOTIFY_PADDING_Y - height), ImGuiCond_Always, ImVec2(1.0f, 1.0f)); + Begin(window_name, NULL, NOTIFY_TOAST_FLAGS); + + // Here we render the toast content + { + PushTextWrapPos(vp_size.x / 3.f); // We want to support multi-line text, this will wrap the text after 1/3 of the screen width + + bool was_title_rendered = false; + + // If an icon is set + if (!NOTIFY_NULL_OR_EMPTY(icon)) + { + //Text(icon); // Render icon text + TextColored(text_color, icon); + was_title_rendered = true; + } + + // If a title is set + if (!NOTIFY_NULL_OR_EMPTY(title)) + { + // If a title and an icon is set, we want to render on same line + if (!NOTIFY_NULL_OR_EMPTY(icon)) + SameLine(); + + Text(title); // Render title text + was_title_rendered = true; + } + else if (!NOTIFY_NULL_OR_EMPTY(default_title)) + { + if (!NOTIFY_NULL_OR_EMPTY(icon)) + SameLine(); + + Text(default_title); // Render default title text (ImGuiToastType_Success -> "Success", etc...) + was_title_rendered = true; + } + + // In case ANYTHING was rendered in the top, we want to add a small padding so the text (or icon) looks centered vertically + if (was_title_rendered && !NOTIFY_NULL_OR_EMPTY(content)) + { + SetCursorPosY(GetCursorPosY() + 5.f); // Must be a better way to do this!!!! + } + + // If a content is set + if (!NOTIFY_NULL_OR_EMPTY(content)) + { + if (was_title_rendered) + { +#ifdef NOTIFY_USE_SEPARATOR + Separator(); +#endif + } + + Text(content); // Render content text + } + + PopTextWrapPos(); + } + + // Save height for next toasts + height += GetWindowHeight() + NOTIFY_PADDING_MESSAGE_Y; + + // End + End(); + } + } + + /// + /// Adds font-awesome font, must be called ONCE on initialization + /// Fonts are loaded from read-only memory, should be set to false! + /// + NOTIFY_INLINE void MergeIconsWithLatestFont(float font_size, bool FontDataOwnedByAtlas = false) + { + static const ImWchar icons_ranges[] = { ICON_MIN_FA, ICON_MAX_FA, 0 }; + + ImFontConfig icons_config; + icons_config.MergeMode = true; + icons_config.PixelSnapH = true; + icons_config.FontDataOwnedByAtlas = FontDataOwnedByAtlas; + + GetIO().Fonts->AddFontFromMemoryTTF((void*)fa_solid_900, sizeof(fa_solid_900), font_size, &icons_config, icons_ranges); + } +} + +#endif diff --git a/examples/Axion-CS2-RAGE-CHEAT/dependencies/json.hpp b/examples/Axion-CS2-RAGE-CHEAT/dependencies/json.hpp new file mode 100644 index 0000000..4d1a37a --- /dev/null +++ b/examples/Axion-CS2-RAGE-CHEAT/dependencies/json.hpp @@ -0,0 +1,24596 @@ +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.2 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann +// SPDX-License-Identifier: MIT + +/****************************************************************************\ + * Note on documentation: The source files contain links to the online * + * documentation of the public API at https://json.nlohmann.me. This URL * + * contains the most recent documentation and should also be applicable to * + * previous versions; documentation for deprecated functions is not * + * removed, but marked deprecated. See "Generate documentation" section in * + * file docs/README.md. * +\****************************************************************************/ + +#ifndef INCLUDE_NLOHMANN_JSON_HPP_ +#define INCLUDE_NLOHMANN_JSON_HPP_ + +#include // all_of, find, for_each +#include // nullptr_t, ptrdiff_t, size_t +#include // hash, less +#include // initializer_list +#ifndef JSON_NO_IO + #include // istream, ostream +#endif // JSON_NO_IO +#include // random_access_iterator_tag +#include // unique_ptr +#include // accumulate +#include // string, stoi, to_string +#include // declval, forward, move, pair, swap +#include // vector + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.2 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +#include + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.2 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +// This file contains all macro definitions affecting or depending on the ABI + +#ifndef JSON_SKIP_LIBRARY_VERSION_CHECK + #if defined(NLOHMANN_JSON_VERSION_MAJOR) && defined(NLOHMANN_JSON_VERSION_MINOR) && defined(NLOHMANN_JSON_VERSION_PATCH) + #if NLOHMANN_JSON_VERSION_MAJOR != 3 || NLOHMANN_JSON_VERSION_MINOR != 11 || NLOHMANN_JSON_VERSION_PATCH != 2 + #warning "Already included a different version of the library!" + #endif + #endif +#endif + +#define NLOHMANN_JSON_VERSION_MAJOR 3 // NOLINT(modernize-macro-to-enum) +#define NLOHMANN_JSON_VERSION_MINOR 11 // NOLINT(modernize-macro-to-enum) +#define NLOHMANN_JSON_VERSION_PATCH 2 // NOLINT(modernize-macro-to-enum) + +#ifndef JSON_DIAGNOSTICS + #define JSON_DIAGNOSTICS 0 +#endif + +#ifndef JSON_USE_LEGACY_DISCARDED_VALUE_COMPARISON + #define JSON_USE_LEGACY_DISCARDED_VALUE_COMPARISON 0 +#endif + +#if JSON_DIAGNOSTICS + #define NLOHMANN_JSON_ABI_TAG_DIAGNOSTICS _diag +#else + #define NLOHMANN_JSON_ABI_TAG_DIAGNOSTICS +#endif + +#if JSON_USE_LEGACY_DISCARDED_VALUE_COMPARISON + #define NLOHMANN_JSON_ABI_TAG_LEGACY_DISCARDED_VALUE_COMPARISON _ldvcmp +#else + #define NLOHMANN_JSON_ABI_TAG_LEGACY_DISCARDED_VALUE_COMPARISON +#endif + +#ifndef NLOHMANN_JSON_NAMESPACE_NO_VERSION + #define NLOHMANN_JSON_NAMESPACE_NO_VERSION 0 +#endif + +// Construct the namespace ABI tags component +#define NLOHMANN_JSON_ABI_TAGS_CONCAT_EX(a, b) json_abi ## a ## b +#define NLOHMANN_JSON_ABI_TAGS_CONCAT(a, b) \ + NLOHMANN_JSON_ABI_TAGS_CONCAT_EX(a, b) + +#define NLOHMANN_JSON_ABI_TAGS \ + NLOHMANN_JSON_ABI_TAGS_CONCAT( \ + NLOHMANN_JSON_ABI_TAG_DIAGNOSTICS, \ + NLOHMANN_JSON_ABI_TAG_LEGACY_DISCARDED_VALUE_COMPARISON) + +// Construct the namespace version component +#define NLOHMANN_JSON_NAMESPACE_VERSION_CONCAT_EX(major, minor, patch) \ + _v ## major ## _ ## minor ## _ ## patch +#define NLOHMANN_JSON_NAMESPACE_VERSION_CONCAT(major, minor, patch) \ + NLOHMANN_JSON_NAMESPACE_VERSION_CONCAT_EX(major, minor, patch) + +#if NLOHMANN_JSON_NAMESPACE_NO_VERSION +#define NLOHMANN_JSON_NAMESPACE_VERSION +#else +#define NLOHMANN_JSON_NAMESPACE_VERSION \ + NLOHMANN_JSON_NAMESPACE_VERSION_CONCAT(NLOHMANN_JSON_VERSION_MAJOR, \ + NLOHMANN_JSON_VERSION_MINOR, \ + NLOHMANN_JSON_VERSION_PATCH) +#endif + +// Combine namespace components +#define NLOHMANN_JSON_NAMESPACE_CONCAT_EX(a, b) a ## b +#define NLOHMANN_JSON_NAMESPACE_CONCAT(a, b) \ + NLOHMANN_JSON_NAMESPACE_CONCAT_EX(a, b) + +#ifndef NLOHMANN_JSON_NAMESPACE +#define NLOHMANN_JSON_NAMESPACE \ + nlohmann::NLOHMANN_JSON_NAMESPACE_CONCAT( \ + NLOHMANN_JSON_ABI_TAGS, \ + NLOHMANN_JSON_NAMESPACE_VERSION) +#endif + +#ifndef NLOHMANN_JSON_NAMESPACE_BEGIN +#define NLOHMANN_JSON_NAMESPACE_BEGIN \ + namespace nlohmann \ + { \ + inline namespace NLOHMANN_JSON_NAMESPACE_CONCAT( \ + NLOHMANN_JSON_ABI_TAGS, \ + NLOHMANN_JSON_NAMESPACE_VERSION) \ + { +#endif + +#ifndef NLOHMANN_JSON_NAMESPACE_END +#define NLOHMANN_JSON_NAMESPACE_END \ + } /* namespace (inline namespace) NOLINT(readability/namespace) */ \ + } // namespace nlohmann +#endif + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.2 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +#include // transform +#include // array +#include // forward_list +#include // inserter, front_inserter, end +#include // map +#include // string +#include // tuple, make_tuple +#include // is_arithmetic, is_same, is_enum, underlying_type, is_convertible +#include // unordered_map +#include // pair, declval +#include // valarray + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.2 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +#include // nullptr_t +#include // exception +#include // runtime_error +#include // to_string +#include // vector + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.2 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +#include // array +#include // size_t +#include // uint8_t +#include // string + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.2 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +#include // declval, pair +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.2 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +#include + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.2 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +// #include + + +NLOHMANN_JSON_NAMESPACE_BEGIN +namespace detail +{ + +template struct make_void +{ + using type = void; +}; +template using void_t = typename make_void::type; + +} // namespace detail +NLOHMANN_JSON_NAMESPACE_END + + +NLOHMANN_JSON_NAMESPACE_BEGIN +namespace detail +{ + +// https://en.cppreference.com/w/cpp/experimental/is_detected +struct nonesuch +{ + nonesuch() = delete; + ~nonesuch() = delete; + nonesuch(nonesuch const&) = delete; + nonesuch(nonesuch const&&) = delete; + void operator=(nonesuch const&) = delete; + void operator=(nonesuch&&) = delete; +}; + +template class Op, + class... Args> +struct detector +{ + using value_t = std::false_type; + using type = Default; +}; + +template class Op, class... Args> +struct detector>, Op, Args...> +{ + using value_t = std::true_type; + using type = Op; +}; + +template class Op, class... Args> +using is_detected = typename detector::value_t; + +template class Op, class... Args> +struct is_detected_lazy : is_detected { }; + +template class Op, class... Args> +using detected_t = typename detector::type; + +template class Op, class... Args> +using detected_or = detector; + +template class Op, class... Args> +using detected_or_t = typename detected_or::type; + +template class Op, class... Args> +using is_detected_exact = std::is_same>; + +template class Op, class... Args> +using is_detected_convertible = + std::is_convertible, To>; + +} // namespace detail +NLOHMANN_JSON_NAMESPACE_END + +// #include + + +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.2 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann +// SPDX-FileCopyrightText: 2016-2021 Evan Nemerson +// SPDX-License-Identifier: MIT + +/* Hedley - https://nemequ.github.io/hedley + * Created by Evan Nemerson + */ + +#if !defined(JSON_HEDLEY_VERSION) || (JSON_HEDLEY_VERSION < 15) +#if defined(JSON_HEDLEY_VERSION) + #undef JSON_HEDLEY_VERSION +#endif +#define JSON_HEDLEY_VERSION 15 + +#if defined(JSON_HEDLEY_STRINGIFY_EX) + #undef JSON_HEDLEY_STRINGIFY_EX +#endif +#define JSON_HEDLEY_STRINGIFY_EX(x) #x + +#if defined(JSON_HEDLEY_STRINGIFY) + #undef JSON_HEDLEY_STRINGIFY +#endif +#define JSON_HEDLEY_STRINGIFY(x) JSON_HEDLEY_STRINGIFY_EX(x) + +#if defined(JSON_HEDLEY_CONCAT_EX) + #undef JSON_HEDLEY_CONCAT_EX +#endif +#define JSON_HEDLEY_CONCAT_EX(a,b) a##b + +#if defined(JSON_HEDLEY_CONCAT) + #undef JSON_HEDLEY_CONCAT +#endif +#define JSON_HEDLEY_CONCAT(a,b) JSON_HEDLEY_CONCAT_EX(a,b) + +#if defined(JSON_HEDLEY_CONCAT3_EX) + #undef JSON_HEDLEY_CONCAT3_EX +#endif +#define JSON_HEDLEY_CONCAT3_EX(a,b,c) a##b##c + +#if defined(JSON_HEDLEY_CONCAT3) + #undef JSON_HEDLEY_CONCAT3 +#endif +#define JSON_HEDLEY_CONCAT3(a,b,c) JSON_HEDLEY_CONCAT3_EX(a,b,c) + +#if defined(JSON_HEDLEY_VERSION_ENCODE) + #undef JSON_HEDLEY_VERSION_ENCODE +#endif +#define JSON_HEDLEY_VERSION_ENCODE(major,minor,revision) (((major) * 1000000) + ((minor) * 1000) + (revision)) + +#if defined(JSON_HEDLEY_VERSION_DECODE_MAJOR) + #undef JSON_HEDLEY_VERSION_DECODE_MAJOR +#endif +#define JSON_HEDLEY_VERSION_DECODE_MAJOR(version) ((version) / 1000000) + +#if defined(JSON_HEDLEY_VERSION_DECODE_MINOR) + #undef JSON_HEDLEY_VERSION_DECODE_MINOR +#endif +#define JSON_HEDLEY_VERSION_DECODE_MINOR(version) (((version) % 1000000) / 1000) + +#if defined(JSON_HEDLEY_VERSION_DECODE_REVISION) + #undef JSON_HEDLEY_VERSION_DECODE_REVISION +#endif +#define JSON_HEDLEY_VERSION_DECODE_REVISION(version) ((version) % 1000) + +#if defined(JSON_HEDLEY_GNUC_VERSION) + #undef JSON_HEDLEY_GNUC_VERSION +#endif +#if defined(__GNUC__) && defined(__GNUC_PATCHLEVEL__) + #define JSON_HEDLEY_GNUC_VERSION JSON_HEDLEY_VERSION_ENCODE(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__) +#elif defined(__GNUC__) + #define JSON_HEDLEY_GNUC_VERSION JSON_HEDLEY_VERSION_ENCODE(__GNUC__, __GNUC_MINOR__, 0) +#endif + +#if defined(JSON_HEDLEY_GNUC_VERSION_CHECK) + #undef JSON_HEDLEY_GNUC_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_GNUC_VERSION) + #define JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_GNUC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_MSVC_VERSION) + #undef JSON_HEDLEY_MSVC_VERSION +#endif +#if defined(_MSC_FULL_VER) && (_MSC_FULL_VER >= 140000000) && !defined(__ICL) + #define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_FULL_VER / 10000000, (_MSC_FULL_VER % 10000000) / 100000, (_MSC_FULL_VER % 100000) / 100) +#elif defined(_MSC_FULL_VER) && !defined(__ICL) + #define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_FULL_VER / 1000000, (_MSC_FULL_VER % 1000000) / 10000, (_MSC_FULL_VER % 10000) / 10) +#elif defined(_MSC_VER) && !defined(__ICL) + #define JSON_HEDLEY_MSVC_VERSION JSON_HEDLEY_VERSION_ENCODE(_MSC_VER / 100, _MSC_VER % 100, 0) +#endif + +#if defined(JSON_HEDLEY_MSVC_VERSION_CHECK) + #undef JSON_HEDLEY_MSVC_VERSION_CHECK +#endif +#if !defined(JSON_HEDLEY_MSVC_VERSION) + #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (0) +#elif defined(_MSC_VER) && (_MSC_VER >= 1400) + #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_FULL_VER >= ((major * 10000000) + (minor * 100000) + (patch))) +#elif defined(_MSC_VER) && (_MSC_VER >= 1200) + #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_FULL_VER >= ((major * 1000000) + (minor * 10000) + (patch))) +#else + #define JSON_HEDLEY_MSVC_VERSION_CHECK(major,minor,patch) (_MSC_VER >= ((major * 100) + (minor))) +#endif + +#if defined(JSON_HEDLEY_INTEL_VERSION) + #undef JSON_HEDLEY_INTEL_VERSION +#endif +#if defined(__INTEL_COMPILER) && defined(__INTEL_COMPILER_UPDATE) && !defined(__ICL) + #define JSON_HEDLEY_INTEL_VERSION JSON_HEDLEY_VERSION_ENCODE(__INTEL_COMPILER / 100, __INTEL_COMPILER % 100, __INTEL_COMPILER_UPDATE) +#elif defined(__INTEL_COMPILER) && !defined(__ICL) + #define JSON_HEDLEY_INTEL_VERSION JSON_HEDLEY_VERSION_ENCODE(__INTEL_COMPILER / 100, __INTEL_COMPILER % 100, 0) +#endif + +#if defined(JSON_HEDLEY_INTEL_VERSION_CHECK) + #undef JSON_HEDLEY_INTEL_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_INTEL_VERSION) + #define JSON_HEDLEY_INTEL_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_INTEL_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_INTEL_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_INTEL_CL_VERSION) + #undef JSON_HEDLEY_INTEL_CL_VERSION +#endif +#if defined(__INTEL_COMPILER) && defined(__INTEL_COMPILER_UPDATE) && defined(__ICL) + #define JSON_HEDLEY_INTEL_CL_VERSION JSON_HEDLEY_VERSION_ENCODE(__INTEL_COMPILER, __INTEL_COMPILER_UPDATE, 0) +#endif + +#if defined(JSON_HEDLEY_INTEL_CL_VERSION_CHECK) + #undef JSON_HEDLEY_INTEL_CL_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_INTEL_CL_VERSION) + #define JSON_HEDLEY_INTEL_CL_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_INTEL_CL_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_INTEL_CL_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_PGI_VERSION) + #undef JSON_HEDLEY_PGI_VERSION +#endif +#if defined(__PGI) && defined(__PGIC__) && defined(__PGIC_MINOR__) && defined(__PGIC_PATCHLEVEL__) + #define JSON_HEDLEY_PGI_VERSION JSON_HEDLEY_VERSION_ENCODE(__PGIC__, __PGIC_MINOR__, __PGIC_PATCHLEVEL__) +#endif + +#if defined(JSON_HEDLEY_PGI_VERSION_CHECK) + #undef JSON_HEDLEY_PGI_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_PGI_VERSION) + #define JSON_HEDLEY_PGI_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_PGI_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_PGI_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_SUNPRO_VERSION) + #undef JSON_HEDLEY_SUNPRO_VERSION +#endif +#if defined(__SUNPRO_C) && (__SUNPRO_C > 0x1000) + #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((((__SUNPRO_C >> 16) & 0xf) * 10) + ((__SUNPRO_C >> 12) & 0xf), (((__SUNPRO_C >> 8) & 0xf) * 10) + ((__SUNPRO_C >> 4) & 0xf), (__SUNPRO_C & 0xf) * 10) +#elif defined(__SUNPRO_C) + #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((__SUNPRO_C >> 8) & 0xf, (__SUNPRO_C >> 4) & 0xf, (__SUNPRO_C) & 0xf) +#elif defined(__SUNPRO_CC) && (__SUNPRO_CC > 0x1000) + #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((((__SUNPRO_CC >> 16) & 0xf) * 10) + ((__SUNPRO_CC >> 12) & 0xf), (((__SUNPRO_CC >> 8) & 0xf) * 10) + ((__SUNPRO_CC >> 4) & 0xf), (__SUNPRO_CC & 0xf) * 10) +#elif defined(__SUNPRO_CC) + #define JSON_HEDLEY_SUNPRO_VERSION JSON_HEDLEY_VERSION_ENCODE((__SUNPRO_CC >> 8) & 0xf, (__SUNPRO_CC >> 4) & 0xf, (__SUNPRO_CC) & 0xf) +#endif + +#if defined(JSON_HEDLEY_SUNPRO_VERSION_CHECK) + #undef JSON_HEDLEY_SUNPRO_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_SUNPRO_VERSION) + #define JSON_HEDLEY_SUNPRO_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_SUNPRO_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_SUNPRO_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION) + #undef JSON_HEDLEY_EMSCRIPTEN_VERSION +#endif +#if defined(__EMSCRIPTEN__) + #define JSON_HEDLEY_EMSCRIPTEN_VERSION JSON_HEDLEY_VERSION_ENCODE(__EMSCRIPTEN_major__, __EMSCRIPTEN_minor__, __EMSCRIPTEN_tiny__) +#endif + +#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK) + #undef JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_EMSCRIPTEN_VERSION) + #define JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_EMSCRIPTEN_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_EMSCRIPTEN_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_ARM_VERSION) + #undef JSON_HEDLEY_ARM_VERSION +#endif +#if defined(__CC_ARM) && defined(__ARMCOMPILER_VERSION) + #define JSON_HEDLEY_ARM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ARMCOMPILER_VERSION / 1000000, (__ARMCOMPILER_VERSION % 1000000) / 10000, (__ARMCOMPILER_VERSION % 10000) / 100) +#elif defined(__CC_ARM) && defined(__ARMCC_VERSION) + #define JSON_HEDLEY_ARM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ARMCC_VERSION / 1000000, (__ARMCC_VERSION % 1000000) / 10000, (__ARMCC_VERSION % 10000) / 100) +#endif + +#if defined(JSON_HEDLEY_ARM_VERSION_CHECK) + #undef JSON_HEDLEY_ARM_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_ARM_VERSION) + #define JSON_HEDLEY_ARM_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_ARM_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_ARM_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_IBM_VERSION) + #undef JSON_HEDLEY_IBM_VERSION +#endif +#if defined(__ibmxl__) + #define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__ibmxl_version__, __ibmxl_release__, __ibmxl_modification__) +#elif defined(__xlC__) && defined(__xlC_ver__) + #define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__xlC__ >> 8, __xlC__ & 0xff, (__xlC_ver__ >> 8) & 0xff) +#elif defined(__xlC__) + #define JSON_HEDLEY_IBM_VERSION JSON_HEDLEY_VERSION_ENCODE(__xlC__ >> 8, __xlC__ & 0xff, 0) +#endif + +#if defined(JSON_HEDLEY_IBM_VERSION_CHECK) + #undef JSON_HEDLEY_IBM_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_IBM_VERSION) + #define JSON_HEDLEY_IBM_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_IBM_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_IBM_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_VERSION) + #undef JSON_HEDLEY_TI_VERSION +#endif +#if \ + defined(__TI_COMPILER_VERSION__) && \ + ( \ + defined(__TMS470__) || defined(__TI_ARM__) || \ + defined(__MSP430__) || \ + defined(__TMS320C2000__) \ + ) +#if (__TI_COMPILER_VERSION__ >= 16000000) + #define JSON_HEDLEY_TI_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif +#endif + +#if defined(JSON_HEDLEY_TI_VERSION_CHECK) + #undef JSON_HEDLEY_TI_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_VERSION) + #define JSON_HEDLEY_TI_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CL2000_VERSION) + #undef JSON_HEDLEY_TI_CL2000_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__TMS320C2000__) + #define JSON_HEDLEY_TI_CL2000_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CL2000_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CL2000_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CL2000_VERSION) + #define JSON_HEDLEY_TI_CL2000_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL2000_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CL2000_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CL430_VERSION) + #undef JSON_HEDLEY_TI_CL430_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__MSP430__) + #define JSON_HEDLEY_TI_CL430_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CL430_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CL430_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CL430_VERSION) + #define JSON_HEDLEY_TI_CL430_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL430_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CL430_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_ARMCL_VERSION) + #undef JSON_HEDLEY_TI_ARMCL_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && (defined(__TMS470__) || defined(__TI_ARM__)) + #define JSON_HEDLEY_TI_ARMCL_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_ARMCL_VERSION_CHECK) + #undef JSON_HEDLEY_TI_ARMCL_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_ARMCL_VERSION) + #define JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_ARMCL_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CL6X_VERSION) + #undef JSON_HEDLEY_TI_CL6X_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__TMS320C6X__) + #define JSON_HEDLEY_TI_CL6X_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CL6X_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CL6X_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CL6X_VERSION) + #define JSON_HEDLEY_TI_CL6X_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL6X_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CL6X_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CL7X_VERSION) + #undef JSON_HEDLEY_TI_CL7X_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__C7000__) + #define JSON_HEDLEY_TI_CL7X_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CL7X_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CL7X_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CL7X_VERSION) + #define JSON_HEDLEY_TI_CL7X_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CL7X_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CL7X_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TI_CLPRU_VERSION) + #undef JSON_HEDLEY_TI_CLPRU_VERSION +#endif +#if defined(__TI_COMPILER_VERSION__) && defined(__PRU__) + #define JSON_HEDLEY_TI_CLPRU_VERSION JSON_HEDLEY_VERSION_ENCODE(__TI_COMPILER_VERSION__ / 1000000, (__TI_COMPILER_VERSION__ % 1000000) / 1000, (__TI_COMPILER_VERSION__ % 1000)) +#endif + +#if defined(JSON_HEDLEY_TI_CLPRU_VERSION_CHECK) + #undef JSON_HEDLEY_TI_CLPRU_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TI_CLPRU_VERSION) + #define JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TI_CLPRU_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_CRAY_VERSION) + #undef JSON_HEDLEY_CRAY_VERSION +#endif +#if defined(_CRAYC) + #if defined(_RELEASE_PATCHLEVEL) + #define JSON_HEDLEY_CRAY_VERSION JSON_HEDLEY_VERSION_ENCODE(_RELEASE_MAJOR, _RELEASE_MINOR, _RELEASE_PATCHLEVEL) + #else + #define JSON_HEDLEY_CRAY_VERSION JSON_HEDLEY_VERSION_ENCODE(_RELEASE_MAJOR, _RELEASE_MINOR, 0) + #endif +#endif + +#if defined(JSON_HEDLEY_CRAY_VERSION_CHECK) + #undef JSON_HEDLEY_CRAY_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_CRAY_VERSION) + #define JSON_HEDLEY_CRAY_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_CRAY_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_CRAY_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_IAR_VERSION) + #undef JSON_HEDLEY_IAR_VERSION +#endif +#if defined(__IAR_SYSTEMS_ICC__) + #if __VER__ > 1000 + #define JSON_HEDLEY_IAR_VERSION JSON_HEDLEY_VERSION_ENCODE((__VER__ / 1000000), ((__VER__ / 1000) % 1000), (__VER__ % 1000)) + #else + #define JSON_HEDLEY_IAR_VERSION JSON_HEDLEY_VERSION_ENCODE(__VER__ / 100, __VER__ % 100, 0) + #endif +#endif + +#if defined(JSON_HEDLEY_IAR_VERSION_CHECK) + #undef JSON_HEDLEY_IAR_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_IAR_VERSION) + #define JSON_HEDLEY_IAR_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_IAR_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_IAR_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_TINYC_VERSION) + #undef JSON_HEDLEY_TINYC_VERSION +#endif +#if defined(__TINYC__) + #define JSON_HEDLEY_TINYC_VERSION JSON_HEDLEY_VERSION_ENCODE(__TINYC__ / 1000, (__TINYC__ / 100) % 10, __TINYC__ % 100) +#endif + +#if defined(JSON_HEDLEY_TINYC_VERSION_CHECK) + #undef JSON_HEDLEY_TINYC_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_TINYC_VERSION) + #define JSON_HEDLEY_TINYC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_TINYC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_TINYC_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_DMC_VERSION) + #undef JSON_HEDLEY_DMC_VERSION +#endif +#if defined(__DMC__) + #define JSON_HEDLEY_DMC_VERSION JSON_HEDLEY_VERSION_ENCODE(__DMC__ >> 8, (__DMC__ >> 4) & 0xf, __DMC__ & 0xf) +#endif + +#if defined(JSON_HEDLEY_DMC_VERSION_CHECK) + #undef JSON_HEDLEY_DMC_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_DMC_VERSION) + #define JSON_HEDLEY_DMC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_DMC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_DMC_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_COMPCERT_VERSION) + #undef JSON_HEDLEY_COMPCERT_VERSION +#endif +#if defined(__COMPCERT_VERSION__) + #define JSON_HEDLEY_COMPCERT_VERSION JSON_HEDLEY_VERSION_ENCODE(__COMPCERT_VERSION__ / 10000, (__COMPCERT_VERSION__ / 100) % 100, __COMPCERT_VERSION__ % 100) +#endif + +#if defined(JSON_HEDLEY_COMPCERT_VERSION_CHECK) + #undef JSON_HEDLEY_COMPCERT_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_COMPCERT_VERSION) + #define JSON_HEDLEY_COMPCERT_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_COMPCERT_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_COMPCERT_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_PELLES_VERSION) + #undef JSON_HEDLEY_PELLES_VERSION +#endif +#if defined(__POCC__) + #define JSON_HEDLEY_PELLES_VERSION JSON_HEDLEY_VERSION_ENCODE(__POCC__ / 100, __POCC__ % 100, 0) +#endif + +#if defined(JSON_HEDLEY_PELLES_VERSION_CHECK) + #undef JSON_HEDLEY_PELLES_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_PELLES_VERSION) + #define JSON_HEDLEY_PELLES_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_PELLES_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_PELLES_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_MCST_LCC_VERSION) + #undef JSON_HEDLEY_MCST_LCC_VERSION +#endif +#if defined(__LCC__) && defined(__LCC_MINOR__) + #define JSON_HEDLEY_MCST_LCC_VERSION JSON_HEDLEY_VERSION_ENCODE(__LCC__ / 100, __LCC__ % 100, __LCC_MINOR__) +#endif + +#if defined(JSON_HEDLEY_MCST_LCC_VERSION_CHECK) + #undef JSON_HEDLEY_MCST_LCC_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_MCST_LCC_VERSION) + #define JSON_HEDLEY_MCST_LCC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_MCST_LCC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_MCST_LCC_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_GCC_VERSION) + #undef JSON_HEDLEY_GCC_VERSION +#endif +#if \ + defined(JSON_HEDLEY_GNUC_VERSION) && \ + !defined(__clang__) && \ + !defined(JSON_HEDLEY_INTEL_VERSION) && \ + !defined(JSON_HEDLEY_PGI_VERSION) && \ + !defined(JSON_HEDLEY_ARM_VERSION) && \ + !defined(JSON_HEDLEY_CRAY_VERSION) && \ + !defined(JSON_HEDLEY_TI_VERSION) && \ + !defined(JSON_HEDLEY_TI_ARMCL_VERSION) && \ + !defined(JSON_HEDLEY_TI_CL430_VERSION) && \ + !defined(JSON_HEDLEY_TI_CL2000_VERSION) && \ + !defined(JSON_HEDLEY_TI_CL6X_VERSION) && \ + !defined(JSON_HEDLEY_TI_CL7X_VERSION) && \ + !defined(JSON_HEDLEY_TI_CLPRU_VERSION) && \ + !defined(__COMPCERT__) && \ + !defined(JSON_HEDLEY_MCST_LCC_VERSION) + #define JSON_HEDLEY_GCC_VERSION JSON_HEDLEY_GNUC_VERSION +#endif + +#if defined(JSON_HEDLEY_GCC_VERSION_CHECK) + #undef JSON_HEDLEY_GCC_VERSION_CHECK +#endif +#if defined(JSON_HEDLEY_GCC_VERSION) + #define JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) (JSON_HEDLEY_GCC_VERSION >= JSON_HEDLEY_VERSION_ENCODE(major, minor, patch)) +#else + #define JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) (0) +#endif + +#if defined(JSON_HEDLEY_HAS_ATTRIBUTE) + #undef JSON_HEDLEY_HAS_ATTRIBUTE +#endif +#if \ + defined(__has_attribute) && \ + ( \ + (!defined(JSON_HEDLEY_IAR_VERSION) || JSON_HEDLEY_IAR_VERSION_CHECK(8,5,9)) \ + ) +# define JSON_HEDLEY_HAS_ATTRIBUTE(attribute) __has_attribute(attribute) +#else +# define JSON_HEDLEY_HAS_ATTRIBUTE(attribute) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_ATTRIBUTE) + #undef JSON_HEDLEY_GNUC_HAS_ATTRIBUTE +#endif +#if defined(__has_attribute) + #define JSON_HEDLEY_GNUC_HAS_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_HAS_ATTRIBUTE(attribute) +#else + #define JSON_HEDLEY_GNUC_HAS_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_ATTRIBUTE) + #undef JSON_HEDLEY_GCC_HAS_ATTRIBUTE +#endif +#if defined(__has_attribute) + #define JSON_HEDLEY_GCC_HAS_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_HAS_ATTRIBUTE(attribute) +#else + #define JSON_HEDLEY_GCC_HAS_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_CPP_ATTRIBUTE) + #undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE +#endif +#if \ + defined(__has_cpp_attribute) && \ + defined(__cplusplus) && \ + (!defined(JSON_HEDLEY_SUNPRO_VERSION) || JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0)) + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) __has_cpp_attribute(attribute) +#else + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) (0) +#endif + +#if defined(JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS) + #undef JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS +#endif +#if !defined(__cplusplus) || !defined(__has_cpp_attribute) + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) (0) +#elif \ + !defined(JSON_HEDLEY_PGI_VERSION) && \ + !defined(JSON_HEDLEY_IAR_VERSION) && \ + (!defined(JSON_HEDLEY_SUNPRO_VERSION) || JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0)) && \ + (!defined(JSON_HEDLEY_MSVC_VERSION) || JSON_HEDLEY_MSVC_VERSION_CHECK(19,20,0)) + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) JSON_HEDLEY_HAS_CPP_ATTRIBUTE(ns::attribute) +#else + #define JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(ns,attribute) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE) + #undef JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE +#endif +#if defined(__has_cpp_attribute) && defined(__cplusplus) + #define JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) __has_cpp_attribute(attribute) +#else + #define JSON_HEDLEY_GNUC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE) + #undef JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE +#endif +#if defined(__has_cpp_attribute) && defined(__cplusplus) + #define JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) __has_cpp_attribute(attribute) +#else + #define JSON_HEDLEY_GCC_HAS_CPP_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_BUILTIN) + #undef JSON_HEDLEY_HAS_BUILTIN +#endif +#if defined(__has_builtin) + #define JSON_HEDLEY_HAS_BUILTIN(builtin) __has_builtin(builtin) +#else + #define JSON_HEDLEY_HAS_BUILTIN(builtin) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_BUILTIN) + #undef JSON_HEDLEY_GNUC_HAS_BUILTIN +#endif +#if defined(__has_builtin) + #define JSON_HEDLEY_GNUC_HAS_BUILTIN(builtin,major,minor,patch) __has_builtin(builtin) +#else + #define JSON_HEDLEY_GNUC_HAS_BUILTIN(builtin,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_BUILTIN) + #undef JSON_HEDLEY_GCC_HAS_BUILTIN +#endif +#if defined(__has_builtin) + #define JSON_HEDLEY_GCC_HAS_BUILTIN(builtin,major,minor,patch) __has_builtin(builtin) +#else + #define JSON_HEDLEY_GCC_HAS_BUILTIN(builtin,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_FEATURE) + #undef JSON_HEDLEY_HAS_FEATURE +#endif +#if defined(__has_feature) + #define JSON_HEDLEY_HAS_FEATURE(feature) __has_feature(feature) +#else + #define JSON_HEDLEY_HAS_FEATURE(feature) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_FEATURE) + #undef JSON_HEDLEY_GNUC_HAS_FEATURE +#endif +#if defined(__has_feature) + #define JSON_HEDLEY_GNUC_HAS_FEATURE(feature,major,minor,patch) __has_feature(feature) +#else + #define JSON_HEDLEY_GNUC_HAS_FEATURE(feature,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_FEATURE) + #undef JSON_HEDLEY_GCC_HAS_FEATURE +#endif +#if defined(__has_feature) + #define JSON_HEDLEY_GCC_HAS_FEATURE(feature,major,minor,patch) __has_feature(feature) +#else + #define JSON_HEDLEY_GCC_HAS_FEATURE(feature,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_EXTENSION) + #undef JSON_HEDLEY_HAS_EXTENSION +#endif +#if defined(__has_extension) + #define JSON_HEDLEY_HAS_EXTENSION(extension) __has_extension(extension) +#else + #define JSON_HEDLEY_HAS_EXTENSION(extension) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_EXTENSION) + #undef JSON_HEDLEY_GNUC_HAS_EXTENSION +#endif +#if defined(__has_extension) + #define JSON_HEDLEY_GNUC_HAS_EXTENSION(extension,major,minor,patch) __has_extension(extension) +#else + #define JSON_HEDLEY_GNUC_HAS_EXTENSION(extension,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_EXTENSION) + #undef JSON_HEDLEY_GCC_HAS_EXTENSION +#endif +#if defined(__has_extension) + #define JSON_HEDLEY_GCC_HAS_EXTENSION(extension,major,minor,patch) __has_extension(extension) +#else + #define JSON_HEDLEY_GCC_HAS_EXTENSION(extension,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE) + #undef JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE +#endif +#if defined(__has_declspec_attribute) + #define JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) __has_declspec_attribute(attribute) +#else + #define JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE) + #undef JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE +#endif +#if defined(__has_declspec_attribute) + #define JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) __has_declspec_attribute(attribute) +#else + #define JSON_HEDLEY_GNUC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE) + #undef JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE +#endif +#if defined(__has_declspec_attribute) + #define JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) __has_declspec_attribute(attribute) +#else + #define JSON_HEDLEY_GCC_HAS_DECLSPEC_ATTRIBUTE(attribute,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_HAS_WARNING) + #undef JSON_HEDLEY_HAS_WARNING +#endif +#if defined(__has_warning) + #define JSON_HEDLEY_HAS_WARNING(warning) __has_warning(warning) +#else + #define JSON_HEDLEY_HAS_WARNING(warning) (0) +#endif + +#if defined(JSON_HEDLEY_GNUC_HAS_WARNING) + #undef JSON_HEDLEY_GNUC_HAS_WARNING +#endif +#if defined(__has_warning) + #define JSON_HEDLEY_GNUC_HAS_WARNING(warning,major,minor,patch) __has_warning(warning) +#else + #define JSON_HEDLEY_GNUC_HAS_WARNING(warning,major,minor,patch) JSON_HEDLEY_GNUC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_GCC_HAS_WARNING) + #undef JSON_HEDLEY_GCC_HAS_WARNING +#endif +#if defined(__has_warning) + #define JSON_HEDLEY_GCC_HAS_WARNING(warning,major,minor,patch) __has_warning(warning) +#else + #define JSON_HEDLEY_GCC_HAS_WARNING(warning,major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if \ + (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) || \ + defined(__clang__) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(18,4,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,7,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(2,0,1) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,0,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_CRAY_VERSION_CHECK(5,0,0) || \ + JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,17) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(8,0,0) || \ + (JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) && defined(__C99_PRAGMA_OPERATOR)) + #define JSON_HEDLEY_PRAGMA(value) _Pragma(#value) +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) + #define JSON_HEDLEY_PRAGMA(value) __pragma(value) +#else + #define JSON_HEDLEY_PRAGMA(value) +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_PUSH) + #undef JSON_HEDLEY_DIAGNOSTIC_PUSH +#endif +#if defined(JSON_HEDLEY_DIAGNOSTIC_POP) + #undef JSON_HEDLEY_DIAGNOSTIC_POP +#endif +#if defined(__clang__) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("clang diagnostic push") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("clang diagnostic pop") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("warning(push)") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("warning(pop)") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("GCC diagnostic push") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("GCC diagnostic pop") +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH __pragma(warning(push)) + #define JSON_HEDLEY_DIAGNOSTIC_POP __pragma(warning(pop)) +#elif JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("push") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("pop") +#elif \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,4,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,1,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("diag_push") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("diag_pop") +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,90,0) + #define JSON_HEDLEY_DIAGNOSTIC_PUSH _Pragma("warning(push)") + #define JSON_HEDLEY_DIAGNOSTIC_POP _Pragma("warning(pop)") +#else + #define JSON_HEDLEY_DIAGNOSTIC_PUSH + #define JSON_HEDLEY_DIAGNOSTIC_POP +#endif + +/* JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_ is for + HEDLEY INTERNAL USE ONLY. API subject to change without notice. */ +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_ +#endif +#if defined(__cplusplus) +# if JSON_HEDLEY_HAS_WARNING("-Wc++98-compat") +# if JSON_HEDLEY_HAS_WARNING("-Wc++17-extensions") +# if JSON_HEDLEY_HAS_WARNING("-Wc++1z-extensions") +# define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(xpr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wc++98-compat\"") \ + _Pragma("clang diagnostic ignored \"-Wc++17-extensions\"") \ + _Pragma("clang diagnostic ignored \"-Wc++1z-extensions\"") \ + xpr \ + JSON_HEDLEY_DIAGNOSTIC_POP +# else +# define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(xpr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wc++98-compat\"") \ + _Pragma("clang diagnostic ignored \"-Wc++17-extensions\"") \ + xpr \ + JSON_HEDLEY_DIAGNOSTIC_POP +# endif +# else +# define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(xpr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wc++98-compat\"") \ + xpr \ + JSON_HEDLEY_DIAGNOSTIC_POP +# endif +# endif +#endif +#if !defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(x) x +#endif + +#if defined(JSON_HEDLEY_CONST_CAST) + #undef JSON_HEDLEY_CONST_CAST +#endif +#if defined(__cplusplus) +# define JSON_HEDLEY_CONST_CAST(T, expr) (const_cast(expr)) +#elif \ + JSON_HEDLEY_HAS_WARNING("-Wcast-qual") || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) +# define JSON_HEDLEY_CONST_CAST(T, expr) (__extension__ ({ \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL \ + ((T) (expr)); \ + JSON_HEDLEY_DIAGNOSTIC_POP \ + })) +#else +# define JSON_HEDLEY_CONST_CAST(T, expr) ((T) (expr)) +#endif + +#if defined(JSON_HEDLEY_REINTERPRET_CAST) + #undef JSON_HEDLEY_REINTERPRET_CAST +#endif +#if defined(__cplusplus) + #define JSON_HEDLEY_REINTERPRET_CAST(T, expr) (reinterpret_cast(expr)) +#else + #define JSON_HEDLEY_REINTERPRET_CAST(T, expr) ((T) (expr)) +#endif + +#if defined(JSON_HEDLEY_STATIC_CAST) + #undef JSON_HEDLEY_STATIC_CAST +#endif +#if defined(__cplusplus) + #define JSON_HEDLEY_STATIC_CAST(T, expr) (static_cast(expr)) +#else + #define JSON_HEDLEY_STATIC_CAST(T, expr) ((T) (expr)) +#endif + +#if defined(JSON_HEDLEY_CPP_CAST) + #undef JSON_HEDLEY_CPP_CAST +#endif +#if defined(__cplusplus) +# if JSON_HEDLEY_HAS_WARNING("-Wold-style-cast") +# define JSON_HEDLEY_CPP_CAST(T, expr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wold-style-cast\"") \ + ((T) (expr)) \ + JSON_HEDLEY_DIAGNOSTIC_POP +# elif JSON_HEDLEY_IAR_VERSION_CHECK(8,3,0) +# define JSON_HEDLEY_CPP_CAST(T, expr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("diag_suppress=Pe137") \ + JSON_HEDLEY_DIAGNOSTIC_POP +# else +# define JSON_HEDLEY_CPP_CAST(T, expr) ((T) (expr)) +# endif +#else +# define JSON_HEDLEY_CPP_CAST(T, expr) (expr) +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wdeprecated-declarations") + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("clang diagnostic ignored \"-Wdeprecated-declarations\"") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("warning(disable:1478 1786)") +#elif JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED __pragma(warning(disable:1478 1786)) +#elif JSON_HEDLEY_PGI_VERSION_CHECK(20,7,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress 1215,1216,1444,1445") +#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress 1215,1444") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED __pragma(warning(disable:4996)) +#elif JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress 1215,1444") +#elif \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress 1291,1718") +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) && !defined(__cplusplus) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("error_messages(off,E_DEPRECATED_ATT,E_DEPRECATED_ATT_MESS)") +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) && defined(__cplusplus) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("error_messages(off,symdeprecated,symdeprecated2)") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("diag_suppress=Pe1444,Pe1215") +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,90,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED _Pragma("warn(disable:2241)") +#else + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_DEPRECATED +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas") + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("clang diagnostic ignored \"-Wunknown-pragmas\"") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("warning(disable:161)") +#elif JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS __pragma(warning(disable:161)) +#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 1675") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("GCC diagnostic ignored \"-Wunknown-pragmas\"") +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS __pragma(warning(disable:4068)) +#elif \ + JSON_HEDLEY_TI_VERSION_CHECK(16,9,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,0,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,3,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 163") +#elif JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 163") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress=Pe161") +#elif JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS _Pragma("diag_suppress 161") +#else + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wunknown-attributes") + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("clang diagnostic ignored \"-Wunknown-attributes\"") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(4,6,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(17,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("warning(disable:1292)") +#elif JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES __pragma(warning(disable:1292)) +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(19,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES __pragma(warning(disable:5030)) +#elif JSON_HEDLEY_PGI_VERSION_CHECK(20,7,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress 1097,1098") +#elif JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress 1097") +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,14,0) && defined(__cplusplus) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("error_messages(off,attrskipunsup)") +#elif \ + JSON_HEDLEY_TI_VERSION_CHECK(18,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,3,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress 1173") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress=Pe1097") +#elif JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES _Pragma("diag_suppress 1097") +#else + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_CPP_ATTRIBUTES +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wcast-qual") + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("clang diagnostic ignored \"-Wcast-qual\"") +#elif JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("warning(disable:2203 2331)") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL _Pragma("GCC diagnostic ignored \"-Wcast-qual\"") +#else + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_CAST_QUAL +#endif + +#if defined(JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNUSED_FUNCTION) + #undef JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNUSED_FUNCTION +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wunused-function") + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNUSED_FUNCTION _Pragma("clang diagnostic ignored \"-Wunused-function\"") +#elif JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNUSED_FUNCTION _Pragma("GCC diagnostic ignored \"-Wunused-function\"") +#elif JSON_HEDLEY_MSVC_VERSION_CHECK(1,0,0) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNUSED_FUNCTION __pragma(warning(disable:4505)) +#elif JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNUSED_FUNCTION _Pragma("diag_suppress 3142") +#else + #define JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNUSED_FUNCTION +#endif + +#if defined(JSON_HEDLEY_DEPRECATED) + #undef JSON_HEDLEY_DEPRECATED +#endif +#if defined(JSON_HEDLEY_DEPRECATED_FOR) + #undef JSON_HEDLEY_DEPRECATED_FOR +#endif +#if \ + JSON_HEDLEY_MSVC_VERSION_CHECK(14,0,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_DEPRECATED(since) __declspec(deprecated("Since " # since)) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __declspec(deprecated("Since " #since "; use " #replacement)) +#elif \ + (JSON_HEDLEY_HAS_EXTENSION(attribute_deprecated_with_message) && !defined(JSON_HEDLEY_IAR_VERSION)) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,5,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,13,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(18,1,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(18,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,3,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,3,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_DEPRECATED(since) __attribute__((__deprecated__("Since " #since))) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __attribute__((__deprecated__("Since " #since "; use " #replacement))) +#elif defined(__cplusplus) && (__cplusplus >= 201402L) + #define JSON_HEDLEY_DEPRECATED(since) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[deprecated("Since " #since)]]) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[deprecated("Since " #since "; use " #replacement)]]) +#elif \ + JSON_HEDLEY_HAS_ATTRIBUTE(deprecated) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) || \ + JSON_HEDLEY_IAR_VERSION_CHECK(8,10,0) + #define JSON_HEDLEY_DEPRECATED(since) __attribute__((__deprecated__)) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __attribute__((__deprecated__)) +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) || \ + JSON_HEDLEY_PELLES_VERSION_CHECK(6,50,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_DEPRECATED(since) __declspec(deprecated) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __declspec(deprecated) +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_DEPRECATED(since) _Pragma("deprecated") + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) _Pragma("deprecated") +#else + #define JSON_HEDLEY_DEPRECATED(since) + #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) +#endif + +#if defined(JSON_HEDLEY_UNAVAILABLE) + #undef JSON_HEDLEY_UNAVAILABLE +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(warning) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,3,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_UNAVAILABLE(available_since) __attribute__((__warning__("Not available until " #available_since))) +#else + #define JSON_HEDLEY_UNAVAILABLE(available_since) +#endif + +#if defined(JSON_HEDLEY_WARN_UNUSED_RESULT) + #undef JSON_HEDLEY_WARN_UNUSED_RESULT +#endif +#if defined(JSON_HEDLEY_WARN_UNUSED_RESULT_MSG) + #undef JSON_HEDLEY_WARN_UNUSED_RESULT_MSG +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(warn_unused_result) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0) && defined(__cplusplus)) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_WARN_UNUSED_RESULT __attribute__((__warn_unused_result__)) + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) __attribute__((__warn_unused_result__)) +#elif (JSON_HEDLEY_HAS_CPP_ATTRIBUTE(nodiscard) >= 201907L) + #define JSON_HEDLEY_WARN_UNUSED_RESULT JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]]) + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard(msg)]]) +#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE(nodiscard) + #define JSON_HEDLEY_WARN_UNUSED_RESULT JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]]) + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[nodiscard]]) +#elif defined(_Check_return_) /* SAL */ + #define JSON_HEDLEY_WARN_UNUSED_RESULT _Check_return_ + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) _Check_return_ +#else + #define JSON_HEDLEY_WARN_UNUSED_RESULT + #define JSON_HEDLEY_WARN_UNUSED_RESULT_MSG(msg) +#endif + +#if defined(JSON_HEDLEY_SENTINEL) + #undef JSON_HEDLEY_SENTINEL +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(sentinel) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,4,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_SENTINEL(position) __attribute__((__sentinel__(position))) +#else + #define JSON_HEDLEY_SENTINEL(position) +#endif + +#if defined(JSON_HEDLEY_NO_RETURN) + #undef JSON_HEDLEY_NO_RETURN +#endif +#if JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_NO_RETURN __noreturn +#elif \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_NO_RETURN __attribute__((__noreturn__)) +#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L + #define JSON_HEDLEY_NO_RETURN _Noreturn +#elif defined(__cplusplus) && (__cplusplus >= 201103L) + #define JSON_HEDLEY_NO_RETURN JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[noreturn]]) +#elif \ + JSON_HEDLEY_HAS_ATTRIBUTE(noreturn) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,2,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_IAR_VERSION_CHECK(8,10,0) + #define JSON_HEDLEY_NO_RETURN __attribute__((__noreturn__)) +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) + #define JSON_HEDLEY_NO_RETURN _Pragma("does_not_return") +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_NO_RETURN __declspec(noreturn) +#elif JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,0,0) && defined(__cplusplus) + #define JSON_HEDLEY_NO_RETURN _Pragma("FUNC_NEVER_RETURNS;") +#elif JSON_HEDLEY_COMPCERT_VERSION_CHECK(3,2,0) + #define JSON_HEDLEY_NO_RETURN __attribute((noreturn)) +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(9,0,0) + #define JSON_HEDLEY_NO_RETURN __declspec(noreturn) +#else + #define JSON_HEDLEY_NO_RETURN +#endif + +#if defined(JSON_HEDLEY_NO_ESCAPE) + #undef JSON_HEDLEY_NO_ESCAPE +#endif +#if JSON_HEDLEY_HAS_ATTRIBUTE(noescape) + #define JSON_HEDLEY_NO_ESCAPE __attribute__((__noescape__)) +#else + #define JSON_HEDLEY_NO_ESCAPE +#endif + +#if defined(JSON_HEDLEY_UNREACHABLE) + #undef JSON_HEDLEY_UNREACHABLE +#endif +#if defined(JSON_HEDLEY_UNREACHABLE_RETURN) + #undef JSON_HEDLEY_UNREACHABLE_RETURN +#endif +#if defined(JSON_HEDLEY_ASSUME) + #undef JSON_HEDLEY_ASSUME +#endif +#if \ + JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_ASSUME(expr) __assume(expr) +#elif JSON_HEDLEY_HAS_BUILTIN(__builtin_assume) + #define JSON_HEDLEY_ASSUME(expr) __builtin_assume(expr) +#elif \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(4,0,0) + #if defined(__cplusplus) + #define JSON_HEDLEY_ASSUME(expr) std::_nassert(expr) + #else + #define JSON_HEDLEY_ASSUME(expr) _nassert(expr) + #endif +#endif +#if \ + (JSON_HEDLEY_HAS_BUILTIN(__builtin_unreachable) && (!defined(JSON_HEDLEY_ARM_VERSION))) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,5,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(18,10,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(13,1,5) || \ + JSON_HEDLEY_CRAY_VERSION_CHECK(10,0,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_UNREACHABLE() __builtin_unreachable() +#elif defined(JSON_HEDLEY_ASSUME) + #define JSON_HEDLEY_UNREACHABLE() JSON_HEDLEY_ASSUME(0) +#endif +#if !defined(JSON_HEDLEY_ASSUME) + #if defined(JSON_HEDLEY_UNREACHABLE) + #define JSON_HEDLEY_ASSUME(expr) JSON_HEDLEY_STATIC_CAST(void, ((expr) ? 1 : (JSON_HEDLEY_UNREACHABLE(), 1))) + #else + #define JSON_HEDLEY_ASSUME(expr) JSON_HEDLEY_STATIC_CAST(void, expr) + #endif +#endif +#if defined(JSON_HEDLEY_UNREACHABLE) + #if \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(4,0,0) + #define JSON_HEDLEY_UNREACHABLE_RETURN(value) return (JSON_HEDLEY_STATIC_CAST(void, JSON_HEDLEY_ASSUME(0)), (value)) + #else + #define JSON_HEDLEY_UNREACHABLE_RETURN(value) JSON_HEDLEY_UNREACHABLE() + #endif +#else + #define JSON_HEDLEY_UNREACHABLE_RETURN(value) return (value) +#endif +#if !defined(JSON_HEDLEY_UNREACHABLE) + #define JSON_HEDLEY_UNREACHABLE() JSON_HEDLEY_ASSUME(0) +#endif + +JSON_HEDLEY_DIAGNOSTIC_PUSH +#if JSON_HEDLEY_HAS_WARNING("-Wpedantic") + #pragma clang diagnostic ignored "-Wpedantic" +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wc++98-compat-pedantic") && defined(__cplusplus) + #pragma clang diagnostic ignored "-Wc++98-compat-pedantic" +#endif +#if JSON_HEDLEY_GCC_HAS_WARNING("-Wvariadic-macros",4,0,0) + #if defined(__clang__) + #pragma clang diagnostic ignored "-Wvariadic-macros" + #elif defined(JSON_HEDLEY_GCC_VERSION) + #pragma GCC diagnostic ignored "-Wvariadic-macros" + #endif +#endif +#if defined(JSON_HEDLEY_NON_NULL) + #undef JSON_HEDLEY_NON_NULL +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(nonnull) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) + #define JSON_HEDLEY_NON_NULL(...) __attribute__((__nonnull__(__VA_ARGS__))) +#else + #define JSON_HEDLEY_NON_NULL(...) +#endif +JSON_HEDLEY_DIAGNOSTIC_POP + +#if defined(JSON_HEDLEY_PRINTF_FORMAT) + #undef JSON_HEDLEY_PRINTF_FORMAT +#endif +#if defined(__MINGW32__) && JSON_HEDLEY_GCC_HAS_ATTRIBUTE(format,4,4,0) && !defined(__USE_MINGW_ANSI_STDIO) + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(ms_printf, string_idx, first_to_check))) +#elif defined(__MINGW32__) && JSON_HEDLEY_GCC_HAS_ATTRIBUTE(format,4,4,0) && defined(__USE_MINGW_ANSI_STDIO) + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(gnu_printf, string_idx, first_to_check))) +#elif \ + JSON_HEDLEY_HAS_ATTRIBUTE(format) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,6,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __attribute__((__format__(__printf__, string_idx, first_to_check))) +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(6,0,0) + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) __declspec(vaformat(printf,string_idx,first_to_check)) +#else + #define JSON_HEDLEY_PRINTF_FORMAT(string_idx,first_to_check) +#endif + +#if defined(JSON_HEDLEY_CONSTEXPR) + #undef JSON_HEDLEY_CONSTEXPR +#endif +#if defined(__cplusplus) + #if __cplusplus >= 201103L + #define JSON_HEDLEY_CONSTEXPR JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(constexpr) + #endif +#endif +#if !defined(JSON_HEDLEY_CONSTEXPR) + #define JSON_HEDLEY_CONSTEXPR +#endif + +#if defined(JSON_HEDLEY_PREDICT) + #undef JSON_HEDLEY_PREDICT +#endif +#if defined(JSON_HEDLEY_LIKELY) + #undef JSON_HEDLEY_LIKELY +#endif +#if defined(JSON_HEDLEY_UNLIKELY) + #undef JSON_HEDLEY_UNLIKELY +#endif +#if defined(JSON_HEDLEY_UNPREDICTABLE) + #undef JSON_HEDLEY_UNPREDICTABLE +#endif +#if JSON_HEDLEY_HAS_BUILTIN(__builtin_unpredictable) + #define JSON_HEDLEY_UNPREDICTABLE(expr) __builtin_unpredictable((expr)) +#endif +#if \ + (JSON_HEDLEY_HAS_BUILTIN(__builtin_expect_with_probability) && !defined(JSON_HEDLEY_PGI_VERSION)) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(9,0,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) +# define JSON_HEDLEY_PREDICT(expr, value, probability) __builtin_expect_with_probability( (expr), (value), (probability)) +# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) __builtin_expect_with_probability(!!(expr), 1 , (probability)) +# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) __builtin_expect_with_probability(!!(expr), 0 , (probability)) +# define JSON_HEDLEY_LIKELY(expr) __builtin_expect (!!(expr), 1 ) +# define JSON_HEDLEY_UNLIKELY(expr) __builtin_expect (!!(expr), 0 ) +#elif \ + (JSON_HEDLEY_HAS_BUILTIN(__builtin_expect) && !defined(JSON_HEDLEY_INTEL_CL_VERSION)) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,15,0) && defined(__cplusplus)) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,7,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,1,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,27) || \ + JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) +# define JSON_HEDLEY_PREDICT(expr, expected, probability) \ + (((probability) >= 0.9) ? __builtin_expect((expr), (expected)) : (JSON_HEDLEY_STATIC_CAST(void, expected), (expr))) +# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) \ + (__extension__ ({ \ + double hedley_probability_ = (probability); \ + ((hedley_probability_ >= 0.9) ? __builtin_expect(!!(expr), 1) : ((hedley_probability_ <= 0.1) ? __builtin_expect(!!(expr), 0) : !!(expr))); \ + })) +# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) \ + (__extension__ ({ \ + double hedley_probability_ = (probability); \ + ((hedley_probability_ >= 0.9) ? __builtin_expect(!!(expr), 0) : ((hedley_probability_ <= 0.1) ? __builtin_expect(!!(expr), 1) : !!(expr))); \ + })) +# define JSON_HEDLEY_LIKELY(expr) __builtin_expect(!!(expr), 1) +# define JSON_HEDLEY_UNLIKELY(expr) __builtin_expect(!!(expr), 0) +#else +# define JSON_HEDLEY_PREDICT(expr, expected, probability) (JSON_HEDLEY_STATIC_CAST(void, expected), (expr)) +# define JSON_HEDLEY_PREDICT_TRUE(expr, probability) (!!(expr)) +# define JSON_HEDLEY_PREDICT_FALSE(expr, probability) (!!(expr)) +# define JSON_HEDLEY_LIKELY(expr) (!!(expr)) +# define JSON_HEDLEY_UNLIKELY(expr) (!!(expr)) +#endif +#if !defined(JSON_HEDLEY_UNPREDICTABLE) + #define JSON_HEDLEY_UNPREDICTABLE(expr) JSON_HEDLEY_PREDICT(expr, 1, 0.5) +#endif + +#if defined(JSON_HEDLEY_MALLOC) + #undef JSON_HEDLEY_MALLOC +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(malloc) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(12,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_MALLOC __attribute__((__malloc__)) +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) + #define JSON_HEDLEY_MALLOC _Pragma("returns_new_memory") +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(14,0,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_MALLOC __declspec(restrict) +#else + #define JSON_HEDLEY_MALLOC +#endif + +#if defined(JSON_HEDLEY_PURE) + #undef JSON_HEDLEY_PURE +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(pure) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(2,96,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) +# define JSON_HEDLEY_PURE __attribute__((__pure__)) +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) +# define JSON_HEDLEY_PURE _Pragma("does_not_write_global_data") +#elif defined(__cplusplus) && \ + ( \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(2,0,1) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(4,0,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) \ + ) +# define JSON_HEDLEY_PURE _Pragma("FUNC_IS_PURE;") +#else +# define JSON_HEDLEY_PURE +#endif + +#if defined(JSON_HEDLEY_CONST) + #undef JSON_HEDLEY_CONST +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(const) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(2,5,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_CONST __attribute__((__const__)) +#elif \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) + #define JSON_HEDLEY_CONST _Pragma("no_side_effect") +#else + #define JSON_HEDLEY_CONST JSON_HEDLEY_PURE +#endif + +#if defined(JSON_HEDLEY_RESTRICT) + #undef JSON_HEDLEY_RESTRICT +#endif +#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && !defined(__cplusplus) + #define JSON_HEDLEY_RESTRICT restrict +#elif \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_MSVC_VERSION_CHECK(14,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(17,10,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,4) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,1,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,14,0) && defined(__cplusplus)) || \ + JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) || \ + defined(__clang__) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_RESTRICT __restrict +#elif JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,3,0) && !defined(__cplusplus) + #define JSON_HEDLEY_RESTRICT _Restrict +#else + #define JSON_HEDLEY_RESTRICT +#endif + +#if defined(JSON_HEDLEY_INLINE) + #undef JSON_HEDLEY_INLINE +#endif +#if \ + (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) || \ + (defined(__cplusplus) && (__cplusplus >= 199711L)) + #define JSON_HEDLEY_INLINE inline +#elif \ + defined(JSON_HEDLEY_GCC_VERSION) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(6,2,0) + #define JSON_HEDLEY_INLINE __inline__ +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(12,0,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,1,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(3,1,0) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,2,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(8,0,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_INLINE __inline +#else + #define JSON_HEDLEY_INLINE +#endif + +#if defined(JSON_HEDLEY_ALWAYS_INLINE) + #undef JSON_HEDLEY_ALWAYS_INLINE +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(always_inline) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) || \ + JSON_HEDLEY_IAR_VERSION_CHECK(8,10,0) +# define JSON_HEDLEY_ALWAYS_INLINE __attribute__((__always_inline__)) JSON_HEDLEY_INLINE +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(12,0,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) +# define JSON_HEDLEY_ALWAYS_INLINE __forceinline +#elif defined(__cplusplus) && \ + ( \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,1,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) \ + ) +# define JSON_HEDLEY_ALWAYS_INLINE _Pragma("FUNC_ALWAYS_INLINE;") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) +# define JSON_HEDLEY_ALWAYS_INLINE _Pragma("inline=forced") +#else +# define JSON_HEDLEY_ALWAYS_INLINE JSON_HEDLEY_INLINE +#endif + +#if defined(JSON_HEDLEY_NEVER_INLINE) + #undef JSON_HEDLEY_NEVER_INLINE +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(noinline) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(10,1,0) || \ + JSON_HEDLEY_TI_VERSION_CHECK(15,12,0) || \ + (JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(4,8,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_ARMCL_VERSION_CHECK(5,2,0) || \ + (JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL2000_VERSION_CHECK(6,4,0) || \ + (JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,0,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(4,3,0) || \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) || \ + JSON_HEDLEY_TI_CL7X_VERSION_CHECK(1,2,0) || \ + JSON_HEDLEY_TI_CLPRU_VERSION_CHECK(2,1,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) || \ + JSON_HEDLEY_IAR_VERSION_CHECK(8,10,0) + #define JSON_HEDLEY_NEVER_INLINE __attribute__((__noinline__)) +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(13,10,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_NEVER_INLINE __declspec(noinline) +#elif JSON_HEDLEY_PGI_VERSION_CHECK(10,2,0) + #define JSON_HEDLEY_NEVER_INLINE _Pragma("noinline") +#elif JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,0,0) && defined(__cplusplus) + #define JSON_HEDLEY_NEVER_INLINE _Pragma("FUNC_CANNOT_INLINE;") +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) + #define JSON_HEDLEY_NEVER_INLINE _Pragma("inline=never") +#elif JSON_HEDLEY_COMPCERT_VERSION_CHECK(3,2,0) + #define JSON_HEDLEY_NEVER_INLINE __attribute((noinline)) +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(9,0,0) + #define JSON_HEDLEY_NEVER_INLINE __declspec(noinline) +#else + #define JSON_HEDLEY_NEVER_INLINE +#endif + +#if defined(JSON_HEDLEY_PRIVATE) + #undef JSON_HEDLEY_PRIVATE +#endif +#if defined(JSON_HEDLEY_PUBLIC) + #undef JSON_HEDLEY_PUBLIC +#endif +#if defined(JSON_HEDLEY_IMPORT) + #undef JSON_HEDLEY_IMPORT +#endif +#if defined(_WIN32) || defined(__CYGWIN__) +# define JSON_HEDLEY_PRIVATE +# define JSON_HEDLEY_PUBLIC __declspec(dllexport) +# define JSON_HEDLEY_IMPORT __declspec(dllimport) +#else +# if \ + JSON_HEDLEY_HAS_ATTRIBUTE(visibility) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \ + JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,11,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \ + ( \ + defined(__TI_EABI__) && \ + ( \ + (JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,2,0) && defined(__TI_GNU_ATTRIBUTE_SUPPORT__)) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(7,5,0) \ + ) \ + ) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) +# define JSON_HEDLEY_PRIVATE __attribute__((__visibility__("hidden"))) +# define JSON_HEDLEY_PUBLIC __attribute__((__visibility__("default"))) +# else +# define JSON_HEDLEY_PRIVATE +# define JSON_HEDLEY_PUBLIC +# endif +# define JSON_HEDLEY_IMPORT extern +#endif + +#if defined(JSON_HEDLEY_NO_THROW) + #undef JSON_HEDLEY_NO_THROW +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(nothrow) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,3,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_NO_THROW __attribute__((__nothrow__)) +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(13,1,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) + #define JSON_HEDLEY_NO_THROW __declspec(nothrow) +#else + #define JSON_HEDLEY_NO_THROW +#endif + +#if defined(JSON_HEDLEY_FALL_THROUGH) + #undef JSON_HEDLEY_FALL_THROUGH +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(fallthrough) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(7,0,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_FALL_THROUGH __attribute__((__fallthrough__)) +#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE_NS(clang,fallthrough) + #define JSON_HEDLEY_FALL_THROUGH JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[clang::fallthrough]]) +#elif JSON_HEDLEY_HAS_CPP_ATTRIBUTE(fallthrough) + #define JSON_HEDLEY_FALL_THROUGH JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[fallthrough]]) +#elif defined(__fallthrough) /* SAL */ + #define JSON_HEDLEY_FALL_THROUGH __fallthrough +#else + #define JSON_HEDLEY_FALL_THROUGH +#endif + +#if defined(JSON_HEDLEY_RETURNS_NON_NULL) + #undef JSON_HEDLEY_RETURNS_NON_NULL +#endif +#if \ + JSON_HEDLEY_HAS_ATTRIBUTE(returns_nonnull) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,9,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_RETURNS_NON_NULL __attribute__((__returns_nonnull__)) +#elif defined(_Ret_notnull_) /* SAL */ + #define JSON_HEDLEY_RETURNS_NON_NULL _Ret_notnull_ +#else + #define JSON_HEDLEY_RETURNS_NON_NULL +#endif + +#if defined(JSON_HEDLEY_ARRAY_PARAM) + #undef JSON_HEDLEY_ARRAY_PARAM +#endif +#if \ + defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && \ + !defined(__STDC_NO_VLA__) && \ + !defined(__cplusplus) && \ + !defined(JSON_HEDLEY_PGI_VERSION) && \ + !defined(JSON_HEDLEY_TINYC_VERSION) + #define JSON_HEDLEY_ARRAY_PARAM(name) (name) +#else + #define JSON_HEDLEY_ARRAY_PARAM(name) +#endif + +#if defined(JSON_HEDLEY_IS_CONSTANT) + #undef JSON_HEDLEY_IS_CONSTANT +#endif +#if defined(JSON_HEDLEY_REQUIRE_CONSTEXPR) + #undef JSON_HEDLEY_REQUIRE_CONSTEXPR +#endif +/* JSON_HEDLEY_IS_CONSTEXPR_ is for + HEDLEY INTERNAL USE ONLY. API subject to change without notice. */ +#if defined(JSON_HEDLEY_IS_CONSTEXPR_) + #undef JSON_HEDLEY_IS_CONSTEXPR_ +#endif +#if \ + JSON_HEDLEY_HAS_BUILTIN(__builtin_constant_p) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,19) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(4,1,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \ + JSON_HEDLEY_TI_CL6X_VERSION_CHECK(6,1,0) || \ + (JSON_HEDLEY_SUNPRO_VERSION_CHECK(5,10,0) && !defined(__cplusplus)) || \ + JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) || \ + JSON_HEDLEY_MCST_LCC_VERSION_CHECK(1,25,10) + #define JSON_HEDLEY_IS_CONSTANT(expr) __builtin_constant_p(expr) +#endif +#if !defined(__cplusplus) +# if \ + JSON_HEDLEY_HAS_BUILTIN(__builtin_types_compatible_p) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(3,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(13,1,0) || \ + JSON_HEDLEY_CRAY_VERSION_CHECK(8,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,4,0) || \ + JSON_HEDLEY_TINYC_VERSION_CHECK(0,9,24) +#if defined(__INTPTR_TYPE__) + #define JSON_HEDLEY_IS_CONSTEXPR_(expr) __builtin_types_compatible_p(__typeof__((1 ? (void*) ((__INTPTR_TYPE__) ((expr) * 0)) : (int*) 0)), int*) +#else + #include + #define JSON_HEDLEY_IS_CONSTEXPR_(expr) __builtin_types_compatible_p(__typeof__((1 ? (void*) ((intptr_t) ((expr) * 0)) : (int*) 0)), int*) +#endif +# elif \ + ( \ + defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) && \ + !defined(JSON_HEDLEY_SUNPRO_VERSION) && \ + !defined(JSON_HEDLEY_PGI_VERSION) && \ + !defined(JSON_HEDLEY_IAR_VERSION)) || \ + (JSON_HEDLEY_HAS_EXTENSION(c_generic_selections) && !defined(JSON_HEDLEY_IAR_VERSION)) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,9,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(17,0,0) || \ + JSON_HEDLEY_IBM_VERSION_CHECK(12,1,0) || \ + JSON_HEDLEY_ARM_VERSION_CHECK(5,3,0) +#if defined(__INTPTR_TYPE__) + #define JSON_HEDLEY_IS_CONSTEXPR_(expr) _Generic((1 ? (void*) ((__INTPTR_TYPE__) ((expr) * 0)) : (int*) 0), int*: 1, void*: 0) +#else + #include + #define JSON_HEDLEY_IS_CONSTEXPR_(expr) _Generic((1 ? (void*) ((intptr_t) * 0) : (int*) 0), int*: 1, void*: 0) +#endif +# elif \ + defined(JSON_HEDLEY_GCC_VERSION) || \ + defined(JSON_HEDLEY_INTEL_VERSION) || \ + defined(JSON_HEDLEY_TINYC_VERSION) || \ + defined(JSON_HEDLEY_TI_ARMCL_VERSION) || \ + JSON_HEDLEY_TI_CL430_VERSION_CHECK(18,12,0) || \ + defined(JSON_HEDLEY_TI_CL2000_VERSION) || \ + defined(JSON_HEDLEY_TI_CL6X_VERSION) || \ + defined(JSON_HEDLEY_TI_CL7X_VERSION) || \ + defined(JSON_HEDLEY_TI_CLPRU_VERSION) || \ + defined(__clang__) +# define JSON_HEDLEY_IS_CONSTEXPR_(expr) ( \ + sizeof(void) != \ + sizeof(*( \ + 1 ? \ + ((void*) ((expr) * 0L) ) : \ +((struct { char v[sizeof(void) * 2]; } *) 1) \ + ) \ + ) \ + ) +# endif +#endif +#if defined(JSON_HEDLEY_IS_CONSTEXPR_) + #if !defined(JSON_HEDLEY_IS_CONSTANT) + #define JSON_HEDLEY_IS_CONSTANT(expr) JSON_HEDLEY_IS_CONSTEXPR_(expr) + #endif + #define JSON_HEDLEY_REQUIRE_CONSTEXPR(expr) (JSON_HEDLEY_IS_CONSTEXPR_(expr) ? (expr) : (-1)) +#else + #if !defined(JSON_HEDLEY_IS_CONSTANT) + #define JSON_HEDLEY_IS_CONSTANT(expr) (0) + #endif + #define JSON_HEDLEY_REQUIRE_CONSTEXPR(expr) (expr) +#endif + +#if defined(JSON_HEDLEY_BEGIN_C_DECLS) + #undef JSON_HEDLEY_BEGIN_C_DECLS +#endif +#if defined(JSON_HEDLEY_END_C_DECLS) + #undef JSON_HEDLEY_END_C_DECLS +#endif +#if defined(JSON_HEDLEY_C_DECL) + #undef JSON_HEDLEY_C_DECL +#endif +#if defined(__cplusplus) + #define JSON_HEDLEY_BEGIN_C_DECLS extern "C" { + #define JSON_HEDLEY_END_C_DECLS } + #define JSON_HEDLEY_C_DECL extern "C" +#else + #define JSON_HEDLEY_BEGIN_C_DECLS + #define JSON_HEDLEY_END_C_DECLS + #define JSON_HEDLEY_C_DECL +#endif + +#if defined(JSON_HEDLEY_STATIC_ASSERT) + #undef JSON_HEDLEY_STATIC_ASSERT +#endif +#if \ + !defined(__cplusplus) && ( \ + (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L)) || \ + (JSON_HEDLEY_HAS_FEATURE(c_static_assert) && !defined(JSON_HEDLEY_INTEL_CL_VERSION)) || \ + JSON_HEDLEY_GCC_VERSION_CHECK(6,0,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) || \ + defined(_Static_assert) \ + ) +# define JSON_HEDLEY_STATIC_ASSERT(expr, message) _Static_assert(expr, message) +#elif \ + (defined(__cplusplus) && (__cplusplus >= 201103L)) || \ + JSON_HEDLEY_MSVC_VERSION_CHECK(16,0,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) +# define JSON_HEDLEY_STATIC_ASSERT(expr, message) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(static_assert(expr, message)) +#else +# define JSON_HEDLEY_STATIC_ASSERT(expr, message) +#endif + +#if defined(JSON_HEDLEY_NULL) + #undef JSON_HEDLEY_NULL +#endif +#if defined(__cplusplus) + #if __cplusplus >= 201103L + #define JSON_HEDLEY_NULL JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_(nullptr) + #elif defined(NULL) + #define JSON_HEDLEY_NULL NULL + #else + #define JSON_HEDLEY_NULL JSON_HEDLEY_STATIC_CAST(void*, 0) + #endif +#elif defined(NULL) + #define JSON_HEDLEY_NULL NULL +#else + #define JSON_HEDLEY_NULL ((void*) 0) +#endif + +#if defined(JSON_HEDLEY_MESSAGE) + #undef JSON_HEDLEY_MESSAGE +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas") +# define JSON_HEDLEY_MESSAGE(msg) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS \ + JSON_HEDLEY_PRAGMA(message msg) \ + JSON_HEDLEY_DIAGNOSTIC_POP +#elif \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) +# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message msg) +#elif JSON_HEDLEY_CRAY_VERSION_CHECK(5,0,0) +# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(_CRI message msg) +#elif JSON_HEDLEY_IAR_VERSION_CHECK(8,0,0) +# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message(msg)) +#elif JSON_HEDLEY_PELLES_VERSION_CHECK(2,0,0) +# define JSON_HEDLEY_MESSAGE(msg) JSON_HEDLEY_PRAGMA(message(msg)) +#else +# define JSON_HEDLEY_MESSAGE(msg) +#endif + +#if defined(JSON_HEDLEY_WARNING) + #undef JSON_HEDLEY_WARNING +#endif +#if JSON_HEDLEY_HAS_WARNING("-Wunknown-pragmas") +# define JSON_HEDLEY_WARNING(msg) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + JSON_HEDLEY_DIAGNOSTIC_DISABLE_UNKNOWN_PRAGMAS \ + JSON_HEDLEY_PRAGMA(clang warning msg) \ + JSON_HEDLEY_DIAGNOSTIC_POP +#elif \ + JSON_HEDLEY_GCC_VERSION_CHECK(4,8,0) || \ + JSON_HEDLEY_PGI_VERSION_CHECK(18,4,0) || \ + JSON_HEDLEY_INTEL_VERSION_CHECK(13,0,0) +# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_PRAGMA(GCC warning msg) +#elif \ + JSON_HEDLEY_MSVC_VERSION_CHECK(15,0,0) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) +# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_PRAGMA(message(msg)) +#else +# define JSON_HEDLEY_WARNING(msg) JSON_HEDLEY_MESSAGE(msg) +#endif + +#if defined(JSON_HEDLEY_REQUIRE) + #undef JSON_HEDLEY_REQUIRE +#endif +#if defined(JSON_HEDLEY_REQUIRE_MSG) + #undef JSON_HEDLEY_REQUIRE_MSG +#endif +#if JSON_HEDLEY_HAS_ATTRIBUTE(diagnose_if) +# if JSON_HEDLEY_HAS_WARNING("-Wgcc-compat") +# define JSON_HEDLEY_REQUIRE(expr) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wgcc-compat\"") \ + __attribute__((diagnose_if(!(expr), #expr, "error"))) \ + JSON_HEDLEY_DIAGNOSTIC_POP +# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("clang diagnostic ignored \"-Wgcc-compat\"") \ + __attribute__((diagnose_if(!(expr), msg, "error"))) \ + JSON_HEDLEY_DIAGNOSTIC_POP +# else +# define JSON_HEDLEY_REQUIRE(expr) __attribute__((diagnose_if(!(expr), #expr, "error"))) +# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) __attribute__((diagnose_if(!(expr), msg, "error"))) +# endif +#else +# define JSON_HEDLEY_REQUIRE(expr) +# define JSON_HEDLEY_REQUIRE_MSG(expr,msg) +#endif + +#if defined(JSON_HEDLEY_FLAGS) + #undef JSON_HEDLEY_FLAGS +#endif +#if JSON_HEDLEY_HAS_ATTRIBUTE(flag_enum) && (!defined(__cplusplus) || JSON_HEDLEY_HAS_WARNING("-Wbitfield-enum-conversion")) + #define JSON_HEDLEY_FLAGS __attribute__((__flag_enum__)) +#else + #define JSON_HEDLEY_FLAGS +#endif + +#if defined(JSON_HEDLEY_FLAGS_CAST) + #undef JSON_HEDLEY_FLAGS_CAST +#endif +#if JSON_HEDLEY_INTEL_VERSION_CHECK(19,0,0) +# define JSON_HEDLEY_FLAGS_CAST(T, expr) (__extension__ ({ \ + JSON_HEDLEY_DIAGNOSTIC_PUSH \ + _Pragma("warning(disable:188)") \ + ((T) (expr)); \ + JSON_HEDLEY_DIAGNOSTIC_POP \ + })) +#else +# define JSON_HEDLEY_FLAGS_CAST(T, expr) JSON_HEDLEY_STATIC_CAST(T, expr) +#endif + +#if defined(JSON_HEDLEY_EMPTY_BASES) + #undef JSON_HEDLEY_EMPTY_BASES +#endif +#if \ + (JSON_HEDLEY_MSVC_VERSION_CHECK(19,0,23918) && !JSON_HEDLEY_MSVC_VERSION_CHECK(20,0,0)) || \ + JSON_HEDLEY_INTEL_CL_VERSION_CHECK(2021,1,0) + #define JSON_HEDLEY_EMPTY_BASES __declspec(empty_bases) +#else + #define JSON_HEDLEY_EMPTY_BASES +#endif + +/* Remaining macros are deprecated. */ + +#if defined(JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK) + #undef JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK +#endif +#if defined(__clang__) + #define JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK(major,minor,patch) (0) +#else + #define JSON_HEDLEY_GCC_NOT_CLANG_VERSION_CHECK(major,minor,patch) JSON_HEDLEY_GCC_VERSION_CHECK(major,minor,patch) +#endif + +#if defined(JSON_HEDLEY_CLANG_HAS_ATTRIBUTE) + #undef JSON_HEDLEY_CLANG_HAS_ATTRIBUTE +#endif +#define JSON_HEDLEY_CLANG_HAS_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_ATTRIBUTE(attribute) + +#if defined(JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE) + #undef JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE +#endif +#define JSON_HEDLEY_CLANG_HAS_CPP_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_CPP_ATTRIBUTE(attribute) + +#if defined(JSON_HEDLEY_CLANG_HAS_BUILTIN) + #undef JSON_HEDLEY_CLANG_HAS_BUILTIN +#endif +#define JSON_HEDLEY_CLANG_HAS_BUILTIN(builtin) JSON_HEDLEY_HAS_BUILTIN(builtin) + +#if defined(JSON_HEDLEY_CLANG_HAS_FEATURE) + #undef JSON_HEDLEY_CLANG_HAS_FEATURE +#endif +#define JSON_HEDLEY_CLANG_HAS_FEATURE(feature) JSON_HEDLEY_HAS_FEATURE(feature) + +#if defined(JSON_HEDLEY_CLANG_HAS_EXTENSION) + #undef JSON_HEDLEY_CLANG_HAS_EXTENSION +#endif +#define JSON_HEDLEY_CLANG_HAS_EXTENSION(extension) JSON_HEDLEY_HAS_EXTENSION(extension) + +#if defined(JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE) + #undef JSON_HEDLEY_CLANG_HAS_DECLSPEC_DECLSPEC_ATTRIBUTE +#endif +#define JSON_HEDLEY_CLANG_HAS_DECLSPEC_ATTRIBUTE(attribute) JSON_HEDLEY_HAS_DECLSPEC_ATTRIBUTE(attribute) + +#if defined(JSON_HEDLEY_CLANG_HAS_WARNING) + #undef JSON_HEDLEY_CLANG_HAS_WARNING +#endif +#define JSON_HEDLEY_CLANG_HAS_WARNING(warning) JSON_HEDLEY_HAS_WARNING(warning) + +#endif /* !defined(JSON_HEDLEY_VERSION) || (JSON_HEDLEY_VERSION < X) */ + + +// This file contains all internal macro definitions (except those affecting ABI) +// You MUST include macro_unscope.hpp at the end of json.hpp to undef all of them + +// #include + + +// exclude unsupported compilers +#if !defined(JSON_SKIP_UNSUPPORTED_COMPILER_CHECK) + #if defined(__clang__) + #if (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__) < 30400 + #error "unsupported Clang version - see https://github.com/nlohmann/json#supported-compilers" + #endif + #elif defined(__GNUC__) && !(defined(__ICC) || defined(__INTEL_COMPILER)) + #if (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) < 40800 + #error "unsupported GCC version - see https://github.com/nlohmann/json#supported-compilers" + #endif + #endif +#endif + +// C++ language standard detection +// if the user manually specified the used c++ version this is skipped +#if !defined(JSON_HAS_CPP_20) && !defined(JSON_HAS_CPP_17) && !defined(JSON_HAS_CPP_14) && !defined(JSON_HAS_CPP_11) + #if (defined(__cplusplus) && __cplusplus >= 202002L) || (defined(_MSVC_LANG) && _MSVC_LANG >= 202002L) + #define JSON_HAS_CPP_20 + #define JSON_HAS_CPP_17 + #define JSON_HAS_CPP_14 + #elif (defined(__cplusplus) && __cplusplus >= 201703L) || (defined(_HAS_CXX17) && _HAS_CXX17 == 1) // fix for issue #464 + #define JSON_HAS_CPP_17 + #define JSON_HAS_CPP_14 + #elif (defined(__cplusplus) && __cplusplus >= 201402L) || (defined(_HAS_CXX14) && _HAS_CXX14 == 1) + #define JSON_HAS_CPP_14 + #endif + // the cpp 11 flag is always specified because it is the minimal required version + #define JSON_HAS_CPP_11 +#endif + +#ifdef __has_include + #if __has_include() + #include + #endif +#endif + +#if !defined(JSON_HAS_FILESYSTEM) && !defined(JSON_HAS_EXPERIMENTAL_FILESYSTEM) + #ifdef JSON_HAS_CPP_17 + #if defined(__cpp_lib_filesystem) + #define JSON_HAS_FILESYSTEM 1 + #elif defined(__cpp_lib_experimental_filesystem) + #define JSON_HAS_EXPERIMENTAL_FILESYSTEM 1 + #elif !defined(__has_include) + #define JSON_HAS_EXPERIMENTAL_FILESYSTEM 1 + #elif __has_include() + #define JSON_HAS_FILESYSTEM 1 + #elif __has_include() + #define JSON_HAS_EXPERIMENTAL_FILESYSTEM 1 + #endif + + // std::filesystem does not work on MinGW GCC 8: https://sourceforge.net/p/mingw-w64/bugs/737/ + #if defined(__MINGW32__) && defined(__GNUC__) && __GNUC__ == 8 + #undef JSON_HAS_FILESYSTEM + #undef JSON_HAS_EXPERIMENTAL_FILESYSTEM + #endif + + // no filesystem support before GCC 8: https://en.cppreference.com/w/cpp/compiler_support + #if defined(__GNUC__) && !defined(__clang__) && __GNUC__ < 8 + #undef JSON_HAS_FILESYSTEM + #undef JSON_HAS_EXPERIMENTAL_FILESYSTEM + #endif + + // no filesystem support before Clang 7: https://en.cppreference.com/w/cpp/compiler_support + #if defined(__clang_major__) && __clang_major__ < 7 + #undef JSON_HAS_FILESYSTEM + #undef JSON_HAS_EXPERIMENTAL_FILESYSTEM + #endif + + // no filesystem support before MSVC 19.14: https://en.cppreference.com/w/cpp/compiler_support + #if defined(_MSC_VER) && _MSC_VER < 1914 + #undef JSON_HAS_FILESYSTEM + #undef JSON_HAS_EXPERIMENTAL_FILESYSTEM + #endif + + // no filesystem support before iOS 13 + #if defined(__IPHONE_OS_VERSION_MIN_REQUIRED) && __IPHONE_OS_VERSION_MIN_REQUIRED < 130000 + #undef JSON_HAS_FILESYSTEM + #undef JSON_HAS_EXPERIMENTAL_FILESYSTEM + #endif + + // no filesystem support before macOS Catalina + #if defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED < 101500 + #undef JSON_HAS_FILESYSTEM + #undef JSON_HAS_EXPERIMENTAL_FILESYSTEM + #endif + #endif +#endif + +#ifndef JSON_HAS_EXPERIMENTAL_FILESYSTEM + #define JSON_HAS_EXPERIMENTAL_FILESYSTEM 0 +#endif + +#ifndef JSON_HAS_FILESYSTEM + #define JSON_HAS_FILESYSTEM 0 +#endif + +#ifndef JSON_HAS_THREE_WAY_COMPARISON + #if defined(__cpp_impl_three_way_comparison) && __cpp_impl_three_way_comparison >= 201907L \ + && defined(__cpp_lib_three_way_comparison) && __cpp_lib_three_way_comparison >= 201907L + #define JSON_HAS_THREE_WAY_COMPARISON 1 + #else + #define JSON_HAS_THREE_WAY_COMPARISON 0 + #endif +#endif + +#ifndef JSON_HAS_RANGES + // ranges header shipping in GCC 11.1.0 (released 2021-04-27) has syntax error + #if defined(__GLIBCXX__) && __GLIBCXX__ == 20210427 + #define JSON_HAS_RANGES 0 + #elif defined(__cpp_lib_ranges) + #define JSON_HAS_RANGES 1 + #else + #define JSON_HAS_RANGES 0 + #endif +#endif + +#ifdef JSON_HAS_CPP_17 + #define JSON_INLINE_VARIABLE inline +#else + #define JSON_INLINE_VARIABLE +#endif + +#if JSON_HEDLEY_HAS_ATTRIBUTE(no_unique_address) + #define JSON_NO_UNIQUE_ADDRESS [[no_unique_address]] +#else + #define JSON_NO_UNIQUE_ADDRESS +#endif + +// disable documentation warnings on clang +#if defined(__clang__) + #pragma clang diagnostic push + #pragma clang diagnostic ignored "-Wdocumentation" + #pragma clang diagnostic ignored "-Wdocumentation-unknown-command" +#endif + +// allow disabling exceptions +#if (defined(__cpp_exceptions) || defined(__EXCEPTIONS) || defined(_CPPUNWIND)) && !defined(JSON_NOEXCEPTION) + #define JSON_THROW(exception) throw exception + #define JSON_TRY try + #define JSON_CATCH(exception) catch(exception) + #define JSON_INTERNAL_CATCH(exception) catch(exception) +#else + #include + #define JSON_THROW(exception) std::abort() + #define JSON_TRY if(true) + #define JSON_CATCH(exception) if(false) + #define JSON_INTERNAL_CATCH(exception) if(false) +#endif + +// override exception macros +#if defined(JSON_THROW_USER) + #undef JSON_THROW + #define JSON_THROW JSON_THROW_USER +#endif +#if defined(JSON_TRY_USER) + #undef JSON_TRY + #define JSON_TRY JSON_TRY_USER +#endif +#if defined(JSON_CATCH_USER) + #undef JSON_CATCH + #define JSON_CATCH JSON_CATCH_USER + #undef JSON_INTERNAL_CATCH + #define JSON_INTERNAL_CATCH JSON_CATCH_USER +#endif +#if defined(JSON_INTERNAL_CATCH_USER) + #undef JSON_INTERNAL_CATCH + #define JSON_INTERNAL_CATCH JSON_INTERNAL_CATCH_USER +#endif + +// allow overriding assert +#if !defined(JSON_ASSERT) + #include // assert + #define JSON_ASSERT(x) assert(x) +#endif + +// allow to access some private functions (needed by the test suite) +#if defined(JSON_TESTS_PRIVATE) + #define JSON_PRIVATE_UNLESS_TESTED public +#else + #define JSON_PRIVATE_UNLESS_TESTED private +#endif + +/*! +@brief macro to briefly define a mapping between an enum and JSON +@def NLOHMANN_JSON_SERIALIZE_ENUM +@since version 3.4.0 +*/ +#define NLOHMANN_JSON_SERIALIZE_ENUM(ENUM_TYPE, ...) \ + template \ + inline void to_json(BasicJsonType& j, const ENUM_TYPE& e) \ + { \ + static_assert(std::is_enum::value, #ENUM_TYPE " must be an enum!"); \ + static const std::pair m[] = __VA_ARGS__; \ + auto it = std::find_if(std::begin(m), std::end(m), \ + [e](const std::pair& ej_pair) -> bool \ + { \ + return ej_pair.first == e; \ + }); \ + j = ((it != std::end(m)) ? it : std::begin(m))->second; \ + } \ + template \ + inline void from_json(const BasicJsonType& j, ENUM_TYPE& e) \ + { \ + static_assert(std::is_enum::value, #ENUM_TYPE " must be an enum!"); \ + static const std::pair m[] = __VA_ARGS__; \ + auto it = std::find_if(std::begin(m), std::end(m), \ + [&j](const std::pair& ej_pair) -> bool \ + { \ + return ej_pair.second == j; \ + }); \ + e = ((it != std::end(m)) ? it : std::begin(m))->first; \ + } + +// Ugly macros to avoid uglier copy-paste when specializing basic_json. They +// may be removed in the future once the class is split. + +#define NLOHMANN_BASIC_JSON_TPL_DECLARATION \ + template class ObjectType, \ + template class ArrayType, \ + class StringType, class BooleanType, class NumberIntegerType, \ + class NumberUnsignedType, class NumberFloatType, \ + template class AllocatorType, \ + template class JSONSerializer, \ + class BinaryType> + +#define NLOHMANN_BASIC_JSON_TPL \ + basic_json + +// Macros to simplify conversion from/to types + +#define NLOHMANN_JSON_EXPAND( x ) x +#define NLOHMANN_JSON_GET_MACRO(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36, _37, _38, _39, _40, _41, _42, _43, _44, _45, _46, _47, _48, _49, _50, _51, _52, _53, _54, _55, _56, _57, _58, _59, _60, _61, _62, _63, _64, NAME,...) NAME +#define NLOHMANN_JSON_PASTE(...) NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_GET_MACRO(__VA_ARGS__, \ + NLOHMANN_JSON_PASTE64, \ + NLOHMANN_JSON_PASTE63, \ + NLOHMANN_JSON_PASTE62, \ + NLOHMANN_JSON_PASTE61, \ + NLOHMANN_JSON_PASTE60, \ + NLOHMANN_JSON_PASTE59, \ + NLOHMANN_JSON_PASTE58, \ + NLOHMANN_JSON_PASTE57, \ + NLOHMANN_JSON_PASTE56, \ + NLOHMANN_JSON_PASTE55, \ + NLOHMANN_JSON_PASTE54, \ + NLOHMANN_JSON_PASTE53, \ + NLOHMANN_JSON_PASTE52, \ + NLOHMANN_JSON_PASTE51, \ + NLOHMANN_JSON_PASTE50, \ + NLOHMANN_JSON_PASTE49, \ + NLOHMANN_JSON_PASTE48, \ + NLOHMANN_JSON_PASTE47, \ + NLOHMANN_JSON_PASTE46, \ + NLOHMANN_JSON_PASTE45, \ + NLOHMANN_JSON_PASTE44, \ + NLOHMANN_JSON_PASTE43, \ + NLOHMANN_JSON_PASTE42, \ + NLOHMANN_JSON_PASTE41, \ + NLOHMANN_JSON_PASTE40, \ + NLOHMANN_JSON_PASTE39, \ + NLOHMANN_JSON_PASTE38, \ + NLOHMANN_JSON_PASTE37, \ + NLOHMANN_JSON_PASTE36, \ + NLOHMANN_JSON_PASTE35, \ + NLOHMANN_JSON_PASTE34, \ + NLOHMANN_JSON_PASTE33, \ + NLOHMANN_JSON_PASTE32, \ + NLOHMANN_JSON_PASTE31, \ + NLOHMANN_JSON_PASTE30, \ + NLOHMANN_JSON_PASTE29, \ + NLOHMANN_JSON_PASTE28, \ + NLOHMANN_JSON_PASTE27, \ + NLOHMANN_JSON_PASTE26, \ + NLOHMANN_JSON_PASTE25, \ + NLOHMANN_JSON_PASTE24, \ + NLOHMANN_JSON_PASTE23, \ + NLOHMANN_JSON_PASTE22, \ + NLOHMANN_JSON_PASTE21, \ + NLOHMANN_JSON_PASTE20, \ + NLOHMANN_JSON_PASTE19, \ + NLOHMANN_JSON_PASTE18, \ + NLOHMANN_JSON_PASTE17, \ + NLOHMANN_JSON_PASTE16, \ + NLOHMANN_JSON_PASTE15, \ + NLOHMANN_JSON_PASTE14, \ + NLOHMANN_JSON_PASTE13, \ + NLOHMANN_JSON_PASTE12, \ + NLOHMANN_JSON_PASTE11, \ + NLOHMANN_JSON_PASTE10, \ + NLOHMANN_JSON_PASTE9, \ + NLOHMANN_JSON_PASTE8, \ + NLOHMANN_JSON_PASTE7, \ + NLOHMANN_JSON_PASTE6, \ + NLOHMANN_JSON_PASTE5, \ + NLOHMANN_JSON_PASTE4, \ + NLOHMANN_JSON_PASTE3, \ + NLOHMANN_JSON_PASTE2, \ + NLOHMANN_JSON_PASTE1)(__VA_ARGS__)) +#define NLOHMANN_JSON_PASTE2(func, v1) func(v1) +#define NLOHMANN_JSON_PASTE3(func, v1, v2) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE2(func, v2) +#define NLOHMANN_JSON_PASTE4(func, v1, v2, v3) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE3(func, v2, v3) +#define NLOHMANN_JSON_PASTE5(func, v1, v2, v3, v4) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE4(func, v2, v3, v4) +#define NLOHMANN_JSON_PASTE6(func, v1, v2, v3, v4, v5) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE5(func, v2, v3, v4, v5) +#define NLOHMANN_JSON_PASTE7(func, v1, v2, v3, v4, v5, v6) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE6(func, v2, v3, v4, v5, v6) +#define NLOHMANN_JSON_PASTE8(func, v1, v2, v3, v4, v5, v6, v7) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE7(func, v2, v3, v4, v5, v6, v7) +#define NLOHMANN_JSON_PASTE9(func, v1, v2, v3, v4, v5, v6, v7, v8) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE8(func, v2, v3, v4, v5, v6, v7, v8) +#define NLOHMANN_JSON_PASTE10(func, v1, v2, v3, v4, v5, v6, v7, v8, v9) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE9(func, v2, v3, v4, v5, v6, v7, v8, v9) +#define NLOHMANN_JSON_PASTE11(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE10(func, v2, v3, v4, v5, v6, v7, v8, v9, v10) +#define NLOHMANN_JSON_PASTE12(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE11(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11) +#define NLOHMANN_JSON_PASTE13(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE12(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12) +#define NLOHMANN_JSON_PASTE14(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE13(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13) +#define NLOHMANN_JSON_PASTE15(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE14(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14) +#define NLOHMANN_JSON_PASTE16(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE15(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15) +#define NLOHMANN_JSON_PASTE17(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE16(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16) +#define NLOHMANN_JSON_PASTE18(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE17(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17) +#define NLOHMANN_JSON_PASTE19(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE18(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18) +#define NLOHMANN_JSON_PASTE20(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE19(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19) +#define NLOHMANN_JSON_PASTE21(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE20(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20) +#define NLOHMANN_JSON_PASTE22(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE21(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21) +#define NLOHMANN_JSON_PASTE23(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE22(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22) +#define NLOHMANN_JSON_PASTE24(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE23(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23) +#define NLOHMANN_JSON_PASTE25(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE24(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24) +#define NLOHMANN_JSON_PASTE26(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE25(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25) +#define NLOHMANN_JSON_PASTE27(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE26(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26) +#define NLOHMANN_JSON_PASTE28(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE27(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27) +#define NLOHMANN_JSON_PASTE29(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE28(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28) +#define NLOHMANN_JSON_PASTE30(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE29(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29) +#define NLOHMANN_JSON_PASTE31(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE30(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30) +#define NLOHMANN_JSON_PASTE32(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE31(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31) +#define NLOHMANN_JSON_PASTE33(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE32(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32) +#define NLOHMANN_JSON_PASTE34(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE33(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33) +#define NLOHMANN_JSON_PASTE35(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE34(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34) +#define NLOHMANN_JSON_PASTE36(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE35(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35) +#define NLOHMANN_JSON_PASTE37(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE36(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36) +#define NLOHMANN_JSON_PASTE38(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE37(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37) +#define NLOHMANN_JSON_PASTE39(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE38(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38) +#define NLOHMANN_JSON_PASTE40(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE39(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39) +#define NLOHMANN_JSON_PASTE41(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE40(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40) +#define NLOHMANN_JSON_PASTE42(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE41(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41) +#define NLOHMANN_JSON_PASTE43(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE42(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42) +#define NLOHMANN_JSON_PASTE44(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE43(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43) +#define NLOHMANN_JSON_PASTE45(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE44(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44) +#define NLOHMANN_JSON_PASTE46(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE45(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45) +#define NLOHMANN_JSON_PASTE47(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE46(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46) +#define NLOHMANN_JSON_PASTE48(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE47(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47) +#define NLOHMANN_JSON_PASTE49(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE48(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48) +#define NLOHMANN_JSON_PASTE50(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE49(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49) +#define NLOHMANN_JSON_PASTE51(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE50(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50) +#define NLOHMANN_JSON_PASTE52(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE51(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51) +#define NLOHMANN_JSON_PASTE53(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE52(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52) +#define NLOHMANN_JSON_PASTE54(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE53(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53) +#define NLOHMANN_JSON_PASTE55(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE54(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54) +#define NLOHMANN_JSON_PASTE56(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE55(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55) +#define NLOHMANN_JSON_PASTE57(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE56(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56) +#define NLOHMANN_JSON_PASTE58(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE57(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57) +#define NLOHMANN_JSON_PASTE59(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE58(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58) +#define NLOHMANN_JSON_PASTE60(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE59(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59) +#define NLOHMANN_JSON_PASTE61(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE60(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60) +#define NLOHMANN_JSON_PASTE62(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE61(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61) +#define NLOHMANN_JSON_PASTE63(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE62(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62) +#define NLOHMANN_JSON_PASTE64(func, v1, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62, v63) NLOHMANN_JSON_PASTE2(func, v1) NLOHMANN_JSON_PASTE63(func, v2, v3, v4, v5, v6, v7, v8, v9, v10, v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24, v25, v26, v27, v28, v29, v30, v31, v32, v33, v34, v35, v36, v37, v38, v39, v40, v41, v42, v43, v44, v45, v46, v47, v48, v49, v50, v51, v52, v53, v54, v55, v56, v57, v58, v59, v60, v61, v62, v63) + +#define NLOHMANN_JSON_TO(v1) nlohmann_json_j[#v1] = nlohmann_json_t.v1; +#define NLOHMANN_JSON_FROM(v1) nlohmann_json_j.at(#v1).get_to(nlohmann_json_t.v1); +#define NLOHMANN_JSON_FROM_WITH_DEFAULT(v1) nlohmann_json_t.v1 = nlohmann_json_j.value(#v1, nlohmann_json_default_obj.v1); + +/*! +@brief macro +@def NLOHMANN_DEFINE_TYPE_INTRUSIVE +@since version 3.9.0 +*/ +#define NLOHMANN_DEFINE_TYPE_INTRUSIVE(Type, ...) \ + friend void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) } \ + friend void from_json(const nlohmann::json& nlohmann_json_j, Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_FROM, __VA_ARGS__)) } + +#define NLOHMANN_DEFINE_TYPE_INTRUSIVE_WITH_DEFAULT(Type, ...) \ + friend void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) } \ + friend void from_json(const nlohmann::json& nlohmann_json_j, Type& nlohmann_json_t) { Type nlohmann_json_default_obj; NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_FROM_WITH_DEFAULT, __VA_ARGS__)) } + +/*! +@brief macro +@def NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE +@since version 3.9.0 +*/ +#define NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(Type, ...) \ + inline void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) } \ + inline void from_json(const nlohmann::json& nlohmann_json_j, Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_FROM, __VA_ARGS__)) } + +#define NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE_WITH_DEFAULT(Type, ...) \ + inline void to_json(nlohmann::json& nlohmann_json_j, const Type& nlohmann_json_t) { NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) } \ + inline void from_json(const nlohmann::json& nlohmann_json_j, Type& nlohmann_json_t) { Type nlohmann_json_default_obj; NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE(NLOHMANN_JSON_FROM_WITH_DEFAULT, __VA_ARGS__)) } + + +// inspired from https://stackoverflow.com/a/26745591 +// allows to call any std function as if (e.g. with begin): +// using std::begin; begin(x); +// +// it allows using the detected idiom to retrieve the return type +// of such an expression +#define NLOHMANN_CAN_CALL_STD_FUNC_IMPL(std_name) \ + namespace detail { \ + using std::std_name; \ + \ + template \ + using result_of_##std_name = decltype(std_name(std::declval()...)); \ + } \ + \ + namespace detail2 { \ + struct std_name##_tag \ + { \ + }; \ + \ + template \ + std_name##_tag std_name(T&&...); \ + \ + template \ + using result_of_##std_name = decltype(std_name(std::declval()...)); \ + \ + template \ + struct would_call_std_##std_name \ + { \ + static constexpr auto const value = ::nlohmann::detail:: \ + is_detected_exact::value; \ + }; \ + } /* namespace detail2 */ \ + \ + template \ + struct would_call_std_##std_name : detail2::would_call_std_##std_name \ + { \ + } + +#ifndef JSON_USE_IMPLICIT_CONVERSIONS + #define JSON_USE_IMPLICIT_CONVERSIONS 1 +#endif + +#if JSON_USE_IMPLICIT_CONVERSIONS + #define JSON_EXPLICIT +#else + #define JSON_EXPLICIT explicit +#endif + +#ifndef JSON_DISABLE_ENUM_SERIALIZATION + #define JSON_DISABLE_ENUM_SERIALIZATION 0 +#endif + +#ifndef JSON_USE_GLOBAL_UDLS + #define JSON_USE_GLOBAL_UDLS 1 +#endif + +#if JSON_HAS_THREE_WAY_COMPARISON + #include // partial_ordering +#endif + +NLOHMANN_JSON_NAMESPACE_BEGIN +namespace detail +{ + +/////////////////////////// +// JSON type enumeration // +/////////////////////////// + +/*! +@brief the JSON type enumeration + +This enumeration collects the different JSON types. It is internally used to +distinguish the stored values, and the functions @ref basic_json::is_null(), +@ref basic_json::is_object(), @ref basic_json::is_array(), +@ref basic_json::is_string(), @ref basic_json::is_boolean(), +@ref basic_json::is_number() (with @ref basic_json::is_number_integer(), +@ref basic_json::is_number_unsigned(), and @ref basic_json::is_number_float()), +@ref basic_json::is_discarded(), @ref basic_json::is_primitive(), and +@ref basic_json::is_structured() rely on it. + +@note There are three enumeration entries (number_integer, number_unsigned, and +number_float), because the library distinguishes these three types for numbers: +@ref basic_json::number_unsigned_t is used for unsigned integers, +@ref basic_json::number_integer_t is used for signed integers, and +@ref basic_json::number_float_t is used for floating-point numbers or to +approximate integers which do not fit in the limits of their respective type. + +@sa see @ref basic_json::basic_json(const value_t value_type) -- create a JSON +value with the default value for a given type + +@since version 1.0.0 +*/ +enum class value_t : std::uint8_t +{ + null, ///< null value + object, ///< object (unordered set of name/value pairs) + array, ///< array (ordered collection of values) + string, ///< string value + boolean, ///< boolean value + number_integer, ///< number value (signed integer) + number_unsigned, ///< number value (unsigned integer) + number_float, ///< number value (floating-point) + binary, ///< binary array (ordered collection of bytes) + discarded ///< discarded by the parser callback function +}; + +/*! +@brief comparison operator for JSON types + +Returns an ordering that is similar to Python: +- order: null < boolean < number < object < array < string < binary +- furthermore, each type is not smaller than itself +- discarded values are not comparable +- binary is represented as a b"" string in python and directly comparable to a + string; however, making a binary array directly comparable with a string would + be surprising behavior in a JSON file. + +@since version 1.0.0 +*/ +#if JSON_HAS_THREE_WAY_COMPARISON + inline std::partial_ordering operator<=>(const value_t lhs, const value_t rhs) noexcept // *NOPAD* +#else + inline bool operator<(const value_t lhs, const value_t rhs) noexcept +#endif +{ + static constexpr std::array order = {{ + 0 /* null */, 3 /* object */, 4 /* array */, 5 /* string */, + 1 /* boolean */, 2 /* integer */, 2 /* unsigned */, 2 /* float */, + 6 /* binary */ + } + }; + + const auto l_index = static_cast(lhs); + const auto r_index = static_cast(rhs); +#if JSON_HAS_THREE_WAY_COMPARISON + if (l_index < order.size() && r_index < order.size()) + { + return order[l_index] <=> order[r_index]; // *NOPAD* + } + return std::partial_ordering::unordered; +#else + return l_index < order.size() && r_index < order.size() && order[l_index] < order[r_index]; +#endif +} + +// GCC selects the built-in operator< over an operator rewritten from +// a user-defined spaceship operator +// Clang, MSVC, and ICC select the rewritten candidate +// (see GCC bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105200) +#if JSON_HAS_THREE_WAY_COMPARISON && defined(__GNUC__) +inline bool operator<(const value_t lhs, const value_t rhs) noexcept +{ + return std::is_lt(lhs <=> rhs); // *NOPAD* +} +#endif + +} // namespace detail +NLOHMANN_JSON_NAMESPACE_END + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.2 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +// #include + + +NLOHMANN_JSON_NAMESPACE_BEGIN +namespace detail +{ + +/*! +@brief replace all occurrences of a substring by another string + +@param[in,out] s the string to manipulate; changed so that all + occurrences of @a f are replaced with @a t +@param[in] f the substring to replace with @a t +@param[in] t the string to replace @a f + +@pre The search string @a f must not be empty. **This precondition is +enforced with an assertion.** + +@since version 2.0.0 +*/ +template +inline void replace_substring(StringType& s, const StringType& f, + const StringType& t) +{ + JSON_ASSERT(!f.empty()); + for (auto pos = s.find(f); // find first occurrence of f + pos != StringType::npos; // make sure f was found + s.replace(pos, f.size(), t), // replace with t, and + pos = s.find(f, pos + t.size())) // find next occurrence of f + {} +} + +/*! + * @brief string escaping as described in RFC 6901 (Sect. 4) + * @param[in] s string to escape + * @return escaped string + * + * Note the order of escaping "~" to "~0" and "/" to "~1" is important. + */ +template +inline StringType escape(StringType s) +{ + replace_substring(s, StringType{"~"}, StringType{"~0"}); + replace_substring(s, StringType{"/"}, StringType{"~1"}); + return s; +} + +/*! + * @brief string unescaping as described in RFC 6901 (Sect. 4) + * @param[in] s string to unescape + * @return unescaped string + * + * Note the order of escaping "~1" to "/" and "~0" to "~" is important. + */ +template +static void unescape(StringType& s) +{ + replace_substring(s, StringType{"~1"}, StringType{"/"}); + replace_substring(s, StringType{"~0"}, StringType{"~"}); +} + +} // namespace detail +NLOHMANN_JSON_NAMESPACE_END + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.2 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +#include // size_t + +// #include + + +NLOHMANN_JSON_NAMESPACE_BEGIN +namespace detail +{ + +/// struct to capture the start position of the current token +struct position_t +{ + /// the total number of characters read + std::size_t chars_read_total = 0; + /// the number of characters read in the current line + std::size_t chars_read_current_line = 0; + /// the number of lines read + std::size_t lines_read = 0; + + /// conversion to size_t to preserve SAX interface + constexpr operator size_t() const + { + return chars_read_total; + } +}; + +} // namespace detail +NLOHMANN_JSON_NAMESPACE_END + +// #include + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.2 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann +// SPDX-FileCopyrightText: 2018 The Abseil Authors +// SPDX-License-Identifier: MIT + + + +#include // array +#include // size_t +#include // conditional, enable_if, false_type, integral_constant, is_constructible, is_integral, is_same, remove_cv, remove_reference, true_type +#include // index_sequence, make_index_sequence, index_sequence_for + +// #include + + +NLOHMANN_JSON_NAMESPACE_BEGIN +namespace detail +{ + +template +using uncvref_t = typename std::remove_cv::type>::type; + +#ifdef JSON_HAS_CPP_14 + +// the following utilities are natively available in C++14 +using std::enable_if_t; +using std::index_sequence; +using std::make_index_sequence; +using std::index_sequence_for; + +#else + +// alias templates to reduce boilerplate +template +using enable_if_t = typename std::enable_if::type; + +// The following code is taken from https://github.com/abseil/abseil-cpp/blob/10cb35e459f5ecca5b2ff107635da0bfa41011b4/absl/utility/utility.h +// which is part of Google Abseil (https://github.com/abseil/abseil-cpp), licensed under the Apache License 2.0. + +//// START OF CODE FROM GOOGLE ABSEIL + +// integer_sequence +// +// Class template representing a compile-time integer sequence. An instantiation +// of `integer_sequence` has a sequence of integers encoded in its +// type through its template arguments (which is a common need when +// working with C++11 variadic templates). `absl::integer_sequence` is designed +// to be a drop-in replacement for C++14's `std::integer_sequence`. +// +// Example: +// +// template< class T, T... Ints > +// void user_function(integer_sequence); +// +// int main() +// { +// // user_function's `T` will be deduced to `int` and `Ints...` +// // will be deduced to `0, 1, 2, 3, 4`. +// user_function(make_integer_sequence()); +// } +template +struct integer_sequence +{ + using value_type = T; + static constexpr std::size_t size() noexcept + { + return sizeof...(Ints); + } +}; + +// index_sequence +// +// A helper template for an `integer_sequence` of `size_t`, +// `absl::index_sequence` is designed to be a drop-in replacement for C++14's +// `std::index_sequence`. +template +using index_sequence = integer_sequence; + +namespace utility_internal +{ + +template +struct Extend; + +// Note that SeqSize == sizeof...(Ints). It's passed explicitly for efficiency. +template +struct Extend, SeqSize, 0> +{ + using type = integer_sequence < T, Ints..., (Ints + SeqSize)... >; +}; + +template +struct Extend, SeqSize, 1> +{ + using type = integer_sequence < T, Ints..., (Ints + SeqSize)..., 2 * SeqSize >; +}; + +// Recursion helper for 'make_integer_sequence'. +// 'Gen::type' is an alias for 'integer_sequence'. +template +struct Gen +{ + using type = + typename Extend < typename Gen < T, N / 2 >::type, N / 2, N % 2 >::type; +}; + +template +struct Gen +{ + using type = integer_sequence; +}; + +} // namespace utility_internal + +// Compile-time sequences of integers + +// make_integer_sequence +// +// This template alias is equivalent to +// `integer_sequence`, and is designed to be a drop-in +// replacement for C++14's `std::make_integer_sequence`. +template +using make_integer_sequence = typename utility_internal::Gen::type; + +// make_index_sequence +// +// This template alias is equivalent to `index_sequence<0, 1, ..., N-1>`, +// and is designed to be a drop-in replacement for C++14's +// `std::make_index_sequence`. +template +using make_index_sequence = make_integer_sequence; + +// index_sequence_for +// +// Converts a typename pack into an index sequence of the same length, and +// is designed to be a drop-in replacement for C++14's +// `std::index_sequence_for()` +template +using index_sequence_for = make_index_sequence; + +//// END OF CODE FROM GOOGLE ABSEIL + +#endif + +// dispatch utility (taken from ranges-v3) +template struct priority_tag : priority_tag < N - 1 > {}; +template<> struct priority_tag<0> {}; + +// taken from ranges-v3 +template +struct static_const +{ + static JSON_INLINE_VARIABLE constexpr T value{}; +}; + +#ifndef JSON_HAS_CPP_17 + template + constexpr T static_const::value; +#endif + +template +inline constexpr std::array make_array(Args&& ... args) +{ + return std::array {{static_cast(std::forward(args))...}}; +} + +} // namespace detail +NLOHMANN_JSON_NAMESPACE_END + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.2 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +#include // numeric_limits +#include // false_type, is_constructible, is_integral, is_same, true_type +#include // declval +#include // tuple + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.2 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +#include // random_access_iterator_tag + +// #include + +// #include + +// #include + + +NLOHMANN_JSON_NAMESPACE_BEGIN +namespace detail +{ + +template +struct iterator_types {}; + +template +struct iterator_types < + It, + void_t> +{ + using difference_type = typename It::difference_type; + using value_type = typename It::value_type; + using pointer = typename It::pointer; + using reference = typename It::reference; + using iterator_category = typename It::iterator_category; +}; + +// This is required as some compilers implement std::iterator_traits in a way that +// doesn't work with SFINAE. See https://github.com/nlohmann/json/issues/1341. +template +struct iterator_traits +{ +}; + +template +struct iterator_traits < T, enable_if_t < !std::is_pointer::value >> + : iterator_types +{ +}; + +template +struct iterator_traits::value>> +{ + using iterator_category = std::random_access_iterator_tag; + using value_type = T; + using difference_type = ptrdiff_t; + using pointer = T*; + using reference = T&; +}; + +} // namespace detail +NLOHMANN_JSON_NAMESPACE_END + +// #include + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.2 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +// #include + + +NLOHMANN_JSON_NAMESPACE_BEGIN + +NLOHMANN_CAN_CALL_STD_FUNC_IMPL(begin); + +NLOHMANN_JSON_NAMESPACE_END + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.2 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann +// SPDX-License-Identifier: MIT + + + +// #include + + +NLOHMANN_JSON_NAMESPACE_BEGIN + +NLOHMANN_CAN_CALL_STD_FUNC_IMPL(end); + +NLOHMANN_JSON_NAMESPACE_END + +// #include + +// #include + +// #include +// __ _____ _____ _____ +// __| | __| | | | JSON for Modern C++ +// | | |__ | | | | | | version 3.11.2 +// |_____|_____|_____|_|___| https://github.com/nlohmann/json +// +// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann +// SPDX-License-Identifier: MIT + +#ifndef INCLUDE_NLOHMANN_JSON_FWD_HPP_ + #define INCLUDE_NLOHMANN_JSON_FWD_HPP_ + + #include // int64_t, uint64_t + #include // map + #include // allocator + #include // string + #include // vector + + // #include + + + /*! + @brief namespace for Niels Lohmann + @see https://github.com/nlohmann + @since version 1.0.0 + */ + NLOHMANN_JSON_NAMESPACE_BEGIN + + /*! + @brief default JSONSerializer template argument + + This serializer ignores the template arguments and uses ADL + ([argument-dependent lookup](https://en.cppreference.com/w/cpp/language/adl)) + for serialization. + */ + template + struct adl_serializer; + + /// a class to store JSON values + /// @sa https://json.nlohmann.me/api/basic_json/ + template class ObjectType = + std::map, + template class ArrayType = std::vector, + class StringType = std::string, class BooleanType = bool, + class NumberIntegerType = std::int64_t, + class NumberUnsignedType = std::uint64_t, + class NumberFloatType = double, + template class AllocatorType = std::allocator, + template class JSONSerializer = + adl_serializer, + class BinaryType = std::vector> + class basic_json; + + /// @brief JSON Pointer defines a string syntax for identifying a specific value within a JSON document + /// @sa https://json.nlohmann.me/api/json_pointer/ + template + class json_pointer; + + /*! + @brief default specialization + @sa https://json.nlohmann.me/api/json/ + */ + using json = basic_json<>; + + /// @brief a minimal map-like container that preserves insertion order + /// @sa https://json.nlohmann.me/api/ordered_map/ + template + struct ordered_map; + + /// @brief specialization that maintains the insertion order of object keys + /// @sa https://json.nlohmann.me/api/ordered_json/ + using ordered_json = basic_json; + + NLOHMANN_JSON_NAMESPACE_END + +#endif // INCLUDE_NLOHMANN_JSON_FWD_HPP_ + + +NLOHMANN_JSON_NAMESPACE_BEGIN +/*! +@brief detail namespace with internal helper functions + +This namespace collects functions that should not be exposed, +implementations of some @ref basic_json methods, and meta-programming helpers. + +@since version 2.1.0 +*/ +namespace detail +{ + +///////////// +// helpers // +///////////// + +// Note to maintainers: +// +// Every trait in this file expects a non CV-qualified type. +// The only exceptions are in the 'aliases for detected' section +// (i.e. those of the form: decltype(T::member_function(std::declval()))) +// +// In this case, T has to be properly CV-qualified to constraint the function arguments +// (e.g. to_json(BasicJsonType&, const T&)) + +template struct is_basic_json : std::false_type {}; + +NLOHMANN_BASIC_JSON_TPL_DECLARATION +struct is_basic_json : std::true_type {}; + +// used by exceptions create() member functions +// true_type for pointer to possibly cv-qualified basic_json or std::nullptr_t +// false_type otherwise +template +struct is_basic_json_context : + std::integral_constant < bool, + is_basic_json::type>::type>::value + || std::is_same::value > +{}; + +////////////////////// +// json_ref helpers // +////////////////////// + +template +class json_ref; + +template +struct is_json_ref : std::false_type {}; + +template +struct is_json_ref> : std::true_type {}; + +////////////////////////// +// aliases for detected // +////////////////////////// + +template +using mapped_type_t = typename T::mapped_type; + +template +using key_type_t = typename T::key_type; + +template +using value_type_t = typename T::value_type; + +template +using difference_type_t = typename T::difference_type; + +template +using pointer_t = typename T::pointer; + +template +using reference_t = typename T::reference; + +template +using iterator_category_t = typename T::iterator_category; + +template +using to_json_function = decltype(T::to_json(std::declval()...)); + +template +using from_json_function = decltype(T::from_json(std::declval()...)); + +template +using get_template_function = decltype(std::declval().template get()); + +// trait checking if JSONSerializer::from_json(json const&, udt&) exists +template +struct has_from_json : std::false_type {}; + +// trait checking if j.get is valid +// use this trait instead of std::is_constructible or std::is_convertible, +// both rely on, or make use of implicit conversions, and thus fail when T +// has several constructors/operator= (see https://github.com/nlohmann/json/issues/958) +template +struct is_getable +{ + static constexpr bool value = is_detected::value; +}; + +template +struct has_from_json < BasicJsonType, T, enable_if_t < !is_basic_json::value >> +{ + using serializer = typename BasicJsonType::template json_serializer; + + static constexpr bool value = + is_detected_exact::value; +}; + +// This trait checks if JSONSerializer::from_json(json const&) exists +// this overload is used for non-default-constructible user-defined-types +template +struct has_non_default_from_json : std::false_type {}; + +template +struct has_non_default_from_json < BasicJsonType, T, enable_if_t < !is_basic_json::value >> +{ + using serializer = typename BasicJsonType::template json_serializer; + + static constexpr bool value = + is_detected_exact::value; +}; + +// This trait checks if BasicJsonType::json_serializer::to_json exists +// Do not evaluate the trait when T is a basic_json type, to avoid template instantiation infinite recursion. +template +struct has_to_json : std::false_type {}; + +template +struct has_to_json < BasicJsonType, T, enable_if_t < !is_basic_json::value >> +{ + using serializer = typename BasicJsonType::template json_serializer; + + static constexpr bool value = + is_detected_exact::value; +}; + +template +using detect_key_compare = typename T::key_compare; + +template +struct has_key_compare : std::integral_constant::value> {}; + +// obtains the actual object key comparator +template +struct actual_object_comparator +{ + using object_t = typename BasicJsonType::object_t; + using object_comparator_t = typename BasicJsonType::default_object_comparator_t; + using type = typename std::conditional < has_key_compare::value, + typename object_t::key_compare, object_comparator_t>::type; +}; + +template +using actual_object_comparator_t = typename actual_object_comparator::type; + +/////////////////// +// is_ functions // +/////////////////// + +// https://en.cppreference.com/w/cpp/types/conjunction +template struct conjunction : std::true_type { }; +template struct conjunction : B { }; +template +struct conjunction +: std::conditional(B::value), conjunction, B>::type {}; + +// https://en.cppreference.com/w/cpp/types/negation +template struct negation : std::integral_constant < bool, !B::value > { }; + +// Reimplementation of is_constructible and is_default_constructible, due to them being broken for +// std::pair and std::tuple until LWG 2367 fix (see https://cplusplus.github.io/LWG/lwg-defects.html#2367). +// This causes compile errors in e.g. clang 3.5 or gcc 4.9. +template +struct is_default_constructible : std::is_default_constructible {}; + +template +struct is_default_constructible> + : conjunction, is_default_constructible> {}; + +template +struct is_default_constructible> + : conjunction, is_default_constructible> {}; + +template +struct is_default_constructible> + : conjunction...> {}; + +template +struct is_default_constructible> + : conjunction...> {}; + + +template +struct is_constructible : std::is_constructible {}; + +template +struct is_constructible> : is_default_constructible> {}; + +template +struct is_constructible> : is_default_constructible> {}; + +template +struct is_constructible> : is_default_constructible> {}; + +template +struct is_constructible> : is_default_constructible> {}; + + +template +struct is_iterator_traits : std::false_type {}; + +template +struct is_iterator_traits> +{ + private: + using traits = iterator_traits; + + public: + static constexpr auto value = + is_detected::value && + is_detected::value && + is_detected::value && + is_detected::value && + is_detected::value; +}; + +template +struct is_range +{ + private: + using t_ref = typename std::add_lvalue_reference::type; + + using iterator = detected_t; + using sentinel = detected_t; + + // to be 100% correct, it should use https://en.cppreference.com/w/cpp/iterator/input_or_output_iterator + // and https://en.cppreference.com/w/cpp/iterator/sentinel_for + // but reimplementing these would be too much work, as a lot of other concepts are used underneath + static constexpr auto is_iterator_begin = + is_iterator_traits>::value; + + public: + static constexpr bool value = !std::is_same::value && !std::is_same::value && is_iterator_begin; +}; + +template +using iterator_t = enable_if_t::value, result_of_begin())>>; + +template +using range_value_t = value_type_t>>; + +// The following implementation of is_complete_type is taken from +// https://blogs.msdn.microsoft.com/vcblog/2015/12/02/partial-support-for-expression-sfinae-in-vs-2015-update-1/ +// and is written by Xiang Fan who agreed to using it in this library. + +template +struct is_complete_type : std::false_type {}; + +template +struct is_complete_type : std::true_type {}; + +template +struct is_compatible_object_type_impl : std::false_type {}; + +template +struct is_compatible_object_type_impl < + BasicJsonType, CompatibleObjectType, + enable_if_t < is_detected::value&& + is_detected::value >> +{ + using object_t = typename BasicJsonType::object_t; + + // macOS's is_constructible does not play well with nonesuch... + static constexpr bool value = + is_constructible::value && + is_constructible::value; +}; + +template +struct is_compatible_object_type + : is_compatible_object_type_impl {}; + +template +struct is_constructible_object_type_impl : std::false_type {}; + +template +struct is_constructible_object_type_impl < + BasicJsonType, ConstructibleObjectType, + enable_if_t < is_detected::value&& + is_detected::value >> +{ + using object_t = typename BasicJsonType::object_t; + + static constexpr bool value = + (is_default_constructible::value && + (std::is_move_assignable::value || + std::is_copy_assignable::value) && + (is_constructible::value && + std::is_same < + typename object_t::mapped_type, + typename ConstructibleObjectType::mapped_type >::value)) || + (has_from_json::value || + has_non_default_from_json < + BasicJsonType, + typename ConstructibleObjectType::mapped_type >::value); +}; + +template +struct is_constructible_object_type + : is_constructible_object_type_impl {}; + +template +struct is_compatible_string_type +{ + static constexpr auto value = + is_constructible::value; +}; + +template +struct is_constructible_string_type +{ + // launder type through decltype() to fix compilation failure on ICPC +#ifdef __INTEL_COMPILER + using laundered_type = decltype(std::declval()); +#else + using laundered_type = ConstructibleStringType; +#endif + + static constexpr auto value = + conjunction < + is_constructible, + is_detected_exact>::value; +}; + +template +struct is_compatible_array_type_impl : std::false_type {}; + +template +struct is_compatible_array_type_impl < + BasicJsonType, CompatibleArrayType, + enable_if_t < + is_detected::value&& + is_iterator_traits>>::value&& +// special case for types like std::filesystem::path whose iterator's value_type are themselves +// c.f. https://github.com/nlohmann/json/pull/3073 + !std::is_same>::value >> +{ + static constexpr bool value = + is_constructible>::value; +}; + +template +struct is_compatible_array_type + : is_compatible_array_type_impl {}; + +template +struct is_constructible_array_type_impl : std::false_type {}; + +template +struct is_constructible_array_type_impl < + BasicJsonType, ConstructibleArrayType, + enable_if_t::value >> + : std::true_type {}; + +template +struct is_constructible_array_type_impl < + BasicJsonType, ConstructibleArrayType, + enable_if_t < !std::is_same::value&& + !is_compatible_string_type::value&& + is_default_constructible::value&& +(std::is_move_assignable::value || + std::is_copy_assignable::value)&& +is_detected::value&& +is_iterator_traits>>::value&& +is_detected::value&& +// special case for types like std::filesystem::path whose iterator's value_type are themselves +// c.f. https://github.com/nlohmann/json/pull/3073 +!std::is_same>::value&& + is_complete_type < + detected_t>::value >> +{ + using value_type = range_value_t; + + static constexpr bool value = + std::is_same::value || + has_from_json::value || + has_non_default_from_json < + BasicJsonType, + value_type >::value; +}; + +template +struct is_constructible_array_type + : is_constructible_array_type_impl {}; + +template +struct is_compatible_integer_type_impl : std::false_type {}; + +template +struct is_compatible_integer_type_impl < + RealIntegerType, CompatibleNumberIntegerType, + enable_if_t < std::is_integral::value&& + std::is_integral::value&& + !std::is_same::value >> +{ + // is there an assert somewhere on overflows? + using RealLimits = std::numeric_limits; + using CompatibleLimits = std::numeric_limits; + + static constexpr auto value = + is_constructible::value && + CompatibleLimits::is_integer && + RealLimits::is_signed == CompatibleLimits::is_signed; +}; + +template +struct is_compatible_integer_type + : is_compatible_integer_type_impl {}; + +template +struct is_compatible_type_impl: std::false_type {}; + +template +struct is_compatible_type_impl < + BasicJsonType, CompatibleType, + enable_if_t::value >> +{ + static constexpr bool value = + has_to_json::value; +}; + +template +struct is_compatible_type + : is_compatible_type_impl {}; + +template +struct is_constructible_tuple : std::false_type {}; + +template +struct is_constructible_tuple> : conjunction...> {}; + +template +struct is_json_iterator_of : std::false_type {}; + +template +struct is_json_iterator_of : std::true_type {}; + +template +struct is_json_iterator_of : std::true_type +{}; + +// checks if a given type T is a template specialization of Primary +template